diff --git a/Makefile b/Makefile index 43d50197c..002e21470 100644 --- a/Makefile +++ b/Makefile @@ -45,4 +45,19 @@ vis: $(GIT_SUBTREE) --prefix=lib/vis https://github.com/almende/vis.git master typeahead: - $(GIT_SUBTREE) -- prefix=lib/typeahead https://github.com/twitter/typeahead.js.git master + $(GIT_SUBTREE) --prefix=lib/typeahead https://github.com/twitter/typeahead.js.git master + +jquery-mapael: + $(GIT_SUBTREE) --prefix=lib/jQuery-Mapael https://github.com/neveldo/jQuery-Mapael.git master + +mapael-maps: + $(GIT_SUBTREE) --prefix=lib/mapael-maps https://github.com/neveldo/mapael-maps.git master + +jquery-mousewheel: + $(GIT_SUBTREE) --prefix=lib/jquery-mousewheel https://github.com/jquery/jquery-mousewheel.git master + +Leaflet.markercluster: + $(GIT_SUBTREE) --prefix=lib/Leaflet.markercluster https://github.com/Leaflet/Leaflet.markercluster.git master + +Leaflet.awesome-markers: + $(GIT_SUBTREE) --prefix=lib/Leaflet.awesome-markers https://github.com/lvoogdt/Leaflet.awesome-markers.git 2.0/develop diff --git a/doc/Extensions/Globe-Frontpage.md b/doc/Extensions/Globe-Frontpage.md index 2250079fe..638ade626 100644 --- a/doc/Extensions/Globe-Frontpage.md +++ b/doc/Extensions/Globe-Frontpage.md @@ -2,6 +2,51 @@ LibreNMS comes with a configurable geochart based frontpage to visualize where your gear is located geographically. +### Expiremental map + +An new expiremental map is available, this requires you to have properly formatted addresses in sysLocation or sysLocation override. As part of the standard poller these addresses will be Geocoded by Google and stored in the database. To enable this please set the following config: + +```php +$config['front_page'] = "pages/front/map.php"; +$config['geoloc']['latlng'] = true; +$config['geoloc']['engine'] = "google";//Only one available at present +``` + +We have two current mapping engines available: + +- Leaflet (default) +- Jquery-Mapael + + +### Leaflet config + +This is a simple engine to use yet is quite powerful, here you can see how to enable this engine and zoom to a default place. + +```php +$config['map']['engine'] = "leaflet"; +$config['leaflet']['default_lat'] = "50.898482"; +$config['leaflet']['default_lng'] = "-3.401402"; +$config['leaflet']['default_zoom'] = 8; +``` + + +### Jquery-Mapael config +Further custom options are available to load different maps of the world, set default coordinates of where the map will zoom and the zoom level by default. An example of +this is: + +```php +$config['map']['engine'] = "jquery-mapael"; +$config['mapael']['default_map'] = 'mapael-maps/united_kingdom/united_kingdom.js'; +$config['mapael']['map_width'] = 400; +$config['mapael']['default_lat'] = '50.898482'; +$config['mapael']['default_lng'] = '-3.401402'; +$config['mapael']['default_zoom'] = 20; +``` + +A list of maps can be found in html/js/maps/ or html/js/mapael-maps/. + +### Standard Globe map + To enable it, set `$config['front_page'] = "pages/front/globe.php";` in your `config.php`. You can use any of these config-parameters to adjust some aspects of it: diff --git a/html/css/MarkerCluster.Default.css b/html/css/MarkerCluster.Default.css new file mode 120000 index 000000000..01114f45d --- /dev/null +++ b/html/css/MarkerCluster.Default.css @@ -0,0 +1 @@ +../../lib/Leaflet.markercluster/dist/MarkerCluster.Default.css \ No newline at end of file diff --git a/html/css/MarkerCluster.css b/html/css/MarkerCluster.css new file mode 120000 index 000000000..79b7f4c9c --- /dev/null +++ b/html/css/MarkerCluster.css @@ -0,0 +1 @@ +../../lib/Leaflet.markercluster/dist/MarkerCluster.css \ No newline at end of file diff --git a/html/css/images/markers-matte.png b/html/css/images/markers-matte.png new file mode 120000 index 000000000..17ba00956 --- /dev/null +++ b/html/css/images/markers-matte.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-matte.png \ No newline at end of file diff --git a/html/css/images/markers-matte@2x.png b/html/css/images/markers-matte@2x.png new file mode 120000 index 000000000..d276e14ff --- /dev/null +++ b/html/css/images/markers-matte@2x.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-matte@2x.png \ No newline at end of file diff --git a/html/css/images/markers-plain.png b/html/css/images/markers-plain.png new file mode 120000 index 000000000..62a391511 --- /dev/null +++ b/html/css/images/markers-plain.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-plain.png \ No newline at end of file diff --git a/html/css/images/markers-shadow.png b/html/css/images/markers-shadow.png new file mode 120000 index 000000000..d22ffe801 --- /dev/null +++ b/html/css/images/markers-shadow.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-shadow.png \ No newline at end of file diff --git a/html/css/images/markers-shadow@2x.png b/html/css/images/markers-shadow@2x.png new file mode 120000 index 000000000..74a8a2aa7 --- /dev/null +++ b/html/css/images/markers-shadow@2x.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-shadow@2x.png \ No newline at end of file diff --git a/html/css/images/markers-soft.png b/html/css/images/markers-soft.png new file mode 120000 index 000000000..27847f966 --- /dev/null +++ b/html/css/images/markers-soft.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-soft.png \ No newline at end of file diff --git a/html/css/images/markers-soft@2x.png b/html/css/images/markers-soft@2x.png new file mode 120000 index 000000000..5d6830fc6 --- /dev/null +++ b/html/css/images/markers-soft@2x.png @@ -0,0 +1 @@ +../../../lib/Leaflet.awesome-markers/dist/images/markers-soft@2x.png \ No newline at end of file diff --git a/html/css/leaflet.awesome-markers.css b/html/css/leaflet.awesome-markers.css new file mode 120000 index 000000000..830b62957 --- /dev/null +++ b/html/css/leaflet.awesome-markers.css @@ -0,0 +1 @@ +../../lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css \ No newline at end of file diff --git a/html/css/leaflet.css b/html/css/leaflet.css new file mode 100644 index 000000000..ac0cd174d --- /dev/null +++ b/html/css/leaflet.css @@ -0,0 +1,478 @@ +/* required styles */ + +.leaflet-map-pane, +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow, +.leaflet-tile-pane, +.leaflet-tile-container, +.leaflet-overlay-pane, +.leaflet-shadow-pane, +.leaflet-marker-pane, +.leaflet-popup-pane, +.leaflet-overlay-pane svg, +.leaflet-zoom-box, +.leaflet-image-layer, +.leaflet-layer { + position: absolute; + left: 0; + top: 0; + } +.leaflet-container { + overflow: hidden; + -ms-touch-action: none; + } +.leaflet-tile, +.leaflet-marker-icon, +.leaflet-marker-shadow { + -webkit-user-select: none; + -moz-user-select: none; + user-select: none; + -webkit-user-drag: none; + } +.leaflet-marker-icon, +.leaflet-marker-shadow { + display: block; + } +/* map is broken in FF if you have max-width: 100% on tiles */ +.leaflet-container img { + max-width: none !important; + } +/* stupid Android 2 doesn't understand "max-width: none" properly */ +.leaflet-container img.leaflet-image-layer { + max-width: 15000px !important; + } +.leaflet-tile { + filter: inherit; + visibility: hidden; + } +.leaflet-tile-loaded { + visibility: inherit; + } +.leaflet-zoom-box { + width: 0; + height: 0; + } +/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */ +.leaflet-overlay-pane svg { + -moz-user-select: none; + } + +.leaflet-tile-pane { z-index: 2; } +.leaflet-objects-pane { z-index: 3; } +.leaflet-overlay-pane { z-index: 4; } +.leaflet-shadow-pane { z-index: 5; } +.leaflet-marker-pane { z-index: 6; } +.leaflet-popup-pane { z-index: 7; } + +.leaflet-vml-shape { + width: 1px; + height: 1px; + } +.lvml { + behavior: url(#default#VML); + display: inline-block; + position: absolute; + } + + +/* control positioning */ + +.leaflet-control { + position: relative; + z-index: 7; + pointer-events: auto; + } +.leaflet-top, +.leaflet-bottom { + position: absolute; + z-index: 1000; + pointer-events: none; + } +.leaflet-top { + top: 0; + } +.leaflet-right { + right: 0; + } +.leaflet-bottom { + bottom: 0; + } +.leaflet-left { + left: 0; + } +.leaflet-control { + float: left; + clear: both; + } +.leaflet-right .leaflet-control { + float: right; + } +.leaflet-top .leaflet-control { + margin-top: 10px; + } +.leaflet-bottom .leaflet-control { + margin-bottom: 10px; + } +.leaflet-left .leaflet-control { + margin-left: 10px; + } +.leaflet-right .leaflet-control { + margin-right: 10px; + } + + +/* zoom and fade animations */ + +.leaflet-fade-anim .leaflet-tile, +.leaflet-fade-anim .leaflet-popup { + opacity: 0; + -webkit-transition: opacity 0.2s linear; + -moz-transition: opacity 0.2s linear; + -o-transition: opacity 0.2s linear; + transition: opacity 0.2s linear; + } +.leaflet-fade-anim .leaflet-tile-loaded, +.leaflet-fade-anim .leaflet-map-pane .leaflet-popup { + opacity: 1; + } + +.leaflet-zoom-anim .leaflet-zoom-animated { + -webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1); + -moz-transition: -moz-transform 0.25s cubic-bezier(0,0,0.25,1); + -o-transition: -o-transform 0.25s cubic-bezier(0,0,0.25,1); + transition: transform 0.25s cubic-bezier(0,0,0.25,1); + } +.leaflet-zoom-anim .leaflet-tile, +.leaflet-pan-anim .leaflet-tile, +.leaflet-touching .leaflet-zoom-animated { + -webkit-transition: none; + -moz-transition: none; + -o-transition: none; + transition: none; + } + +.leaflet-zoom-anim .leaflet-zoom-hide { + visibility: hidden; + } + + +/* cursors */ + +.leaflet-clickable { + cursor: pointer; + } +.leaflet-container { + cursor: -webkit-grab; + cursor: -moz-grab; + } +.leaflet-popup-pane, +.leaflet-control { + cursor: auto; + } +.leaflet-dragging .leaflet-container, +.leaflet-dragging .leaflet-clickable { + cursor: move; + cursor: -webkit-grabbing; + cursor: -moz-grabbing; + } + + +/* visual tweaks */ + +.leaflet-container { + background: #ddd; + outline: 0; + } +.leaflet-container a { + color: #0078A8; + } +.leaflet-container a.leaflet-active { + outline: 2px solid orange; + } +.leaflet-zoom-box { + border: 2px dotted #38f; + background: rgba(255,255,255,0.5); + } + + +/* general typography */ +.leaflet-container { + font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif; + } + + +/* general toolbar styles */ + +.leaflet-bar { + box-shadow: 0 1px 5px rgba(0,0,0,0.65); + border-radius: 4px; + } +.leaflet-bar a, +.leaflet-bar a:hover { + background-color: #fff; + border-bottom: 1px solid #ccc; + width: 26px; + height: 26px; + line-height: 26px; + display: block; + text-align: center; + text-decoration: none; + color: black; + } +.leaflet-bar a, +.leaflet-control-layers-toggle { + background-position: 50% 50%; + background-repeat: no-repeat; + display: block; + } +.leaflet-bar a:hover { + background-color: #f4f4f4; + } +.leaflet-bar a:first-child { + border-top-left-radius: 4px; + border-top-right-radius: 4px; + } +.leaflet-bar a:last-child { + border-bottom-left-radius: 4px; + border-bottom-right-radius: 4px; + border-bottom: none; + } +.leaflet-bar a.leaflet-disabled { + cursor: default; + background-color: #f4f4f4; + color: #bbb; + } + +.leaflet-touch .leaflet-bar a { + width: 30px; + height: 30px; + line-height: 30px; + } + + +/* zoom control */ + +.leaflet-control-zoom-in, +.leaflet-control-zoom-out { + font: bold 18px 'Lucida Console', Monaco, monospace; + text-indent: 1px; + } +.leaflet-control-zoom-out { + font-size: 20px; + } + +.leaflet-touch .leaflet-control-zoom-in { + font-size: 22px; + } +.leaflet-touch .leaflet-control-zoom-out { + font-size: 24px; + } + + +/* layers control */ + +.leaflet-control-layers { + box-shadow: 0 1px 5px rgba(0,0,0,0.4); + background: #fff; + border-radius: 5px; + } +.leaflet-control-layers-toggle { + background-image: url(images/layers.png); + width: 36px; + height: 36px; + } +.leaflet-retina .leaflet-control-layers-toggle { + background-image: url(images/layers-2x.png); + background-size: 26px 26px; + } +.leaflet-touch .leaflet-control-layers-toggle { + width: 44px; + height: 44px; + } +.leaflet-control-layers .leaflet-control-layers-list, +.leaflet-control-layers-expanded .leaflet-control-layers-toggle { + display: none; + } +.leaflet-control-layers-expanded .leaflet-control-layers-list { + display: block; + position: relative; + } +.leaflet-control-layers-expanded { + padding: 6px 10px 6px 6px; + color: #333; + background: #fff; + } +.leaflet-control-layers-selector { + margin-top: 2px; + position: relative; + top: 1px; + } +.leaflet-control-layers label { + display: block; + } +.leaflet-control-layers-separator { + height: 0; + border-top: 1px solid #ddd; + margin: 5px -10px 5px -6px; + } + + +/* attribution and scale controls */ + +.leaflet-container .leaflet-control-attribution { + background: #fff; + background: rgba(255, 255, 255, 0.7); + margin: 0; + } +.leaflet-control-attribution, +.leaflet-control-scale-line { + padding: 0 5px; + color: #333; + } +.leaflet-control-attribution a { + text-decoration: none; + } +.leaflet-control-attribution a:hover { + text-decoration: underline; + } +.leaflet-container .leaflet-control-attribution, +.leaflet-container .leaflet-control-scale { + font-size: 11px; + } +.leaflet-left .leaflet-control-scale { + margin-left: 5px; + } +.leaflet-bottom .leaflet-control-scale { + margin-bottom: 5px; + } +.leaflet-control-scale-line { + border: 2px solid #777; + border-top: none; + line-height: 1.1; + padding: 2px 5px 1px; + font-size: 11px; + white-space: nowrap; + overflow: hidden; + -moz-box-sizing: content-box; + box-sizing: content-box; + + background: #fff; + background: rgba(255, 255, 255, 0.5); + } +.leaflet-control-scale-line:not(:first-child) { + border-top: 2px solid #777; + border-bottom: none; + margin-top: -2px; + } +.leaflet-control-scale-line:not(:first-child):not(:last-child) { + border-bottom: 2px solid #777; + } + +.leaflet-touch .leaflet-control-attribution, +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + box-shadow: none; + } +.leaflet-touch .leaflet-control-layers, +.leaflet-touch .leaflet-bar { + border: 2px solid rgba(0,0,0,0.2); + background-clip: padding-box; + } + + +/* popup */ + +.leaflet-popup { + position: absolute; + text-align: center; + } +.leaflet-popup-content-wrapper { + padding: 1px; + text-align: left; + border-radius: 12px; + } +.leaflet-popup-content { + margin: 13px 19px; + line-height: 1.4; + } +.leaflet-popup-content p { + margin: 18px 0; + } +.leaflet-popup-tip-container { + margin: 0 auto; + width: 40px; + height: 20px; + position: relative; + overflow: hidden; + } +.leaflet-popup-tip { + width: 17px; + height: 17px; + padding: 1px; + + margin: -10px auto 0; + + -webkit-transform: rotate(45deg); + -moz-transform: rotate(45deg); + -ms-transform: rotate(45deg); + -o-transform: rotate(45deg); + transform: rotate(45deg); + } +.leaflet-popup-content-wrapper, +.leaflet-popup-tip { + background: white; + + box-shadow: 0 3px 14px rgba(0,0,0,0.4); + } +.leaflet-container a.leaflet-popup-close-button { + position: absolute; + top: 0; + right: 0; + padding: 4px 4px 0 0; + text-align: center; + width: 18px; + height: 14px; + font: 16px/14px Tahoma, Verdana, sans-serif; + color: #c3c3c3; + text-decoration: none; + font-weight: bold; + background: transparent; + } +.leaflet-container a.leaflet-popup-close-button:hover { + color: #999; + } +.leaflet-popup-scrolled { + overflow: auto; + border-bottom: 1px solid #ddd; + border-top: 1px solid #ddd; + } + +.leaflet-oldie .leaflet-popup-content-wrapper { + zoom: 1; + } +.leaflet-oldie .leaflet-popup-tip { + width: 24px; + margin: 0 auto; + + -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)"; + filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678); + } +.leaflet-oldie .leaflet-popup-tip-container { + margin-top: -1px; + } + +.leaflet-oldie .leaflet-control-zoom, +.leaflet-oldie .leaflet-control-layers, +.leaflet-oldie .leaflet-popup-content-wrapper, +.leaflet-oldie .leaflet-popup-tip { + border: 1px solid #999; + } + + +/* div icon */ + +.leaflet-div-icon { + background: #fff; + border: 1px solid #666; + } diff --git a/html/css/styles.css b/html/css/styles.css index 69ae991a8..f8f612584 100644 --- a/html/css/styles.css +++ b/html/css/styles.css @@ -1654,3 +1654,45 @@ tr.search:nth-child(odd) { color: #FFFFFF; } +.mapTooltip { + position : fixed; + background-color : #B2B3B1; + moz-opacity:0.90; + opacity: 0.90; + filter:alpha(opacity=90); + border-radius:10px; + padding : 10px; + z-index: 1000; + max-width: 200px; + display:none; + color:#000000; +} + +.zoomIn, .zoomOut { + background-color:#fff; + border:1px solid #ccc; + color:#000; + width:15px; + height:15px; + line-height: 15px; + text-align:center; + border-radius:3px; + cursor:pointer; + position:absolute; + top : 10px; + font-weight:bold; + left : 10px; + -webkit-user-select: none; // For Webkit + -khtml-user-select: none; + -moz-user-select: none; // For Mozilla + -o-user-select: none; + user-select: none; // Default +} + +.zoomOut { + top:30px; +} + +#leaflet-map { + height: 600px; +} diff --git a/html/includes/dev-overview-data.inc.php b/html/includes/dev-overview-data.inc.php index 8065a0873..4adae6a31 100644 --- a/html/includes/dev-overview-data.inc.php +++ b/html/includes/dev-overview-data.inc.php @@ -78,6 +78,14 @@ if ($device['location']) { } } +$loc = dbFetchRow("SELECT `lat`,`lng` FROM `locations` WHERE `location`=? LIMIT 1", array($device['location'])); +if (is_array($loc)) { + echo ' + Lat / Lng + ['.$loc['lat'].','.$loc['lng'].'] + '; +} + if ($uptime) { echo ' Uptime diff --git a/html/includes/functions.inc.php b/html/includes/functions.inc.php index aa83aca1f..232d63882 100644 --- a/html/includes/functions.inc.php +++ b/html/includes/functions.inc.php @@ -736,20 +736,7 @@ function devclass($device) { function getlocations() { - $ignore_dev_location = array(); $locations = array(); - // Fetch override locations, not through get_dev_attrib, this would be a huge number of queries - $rows = dbFetchRows("SELECT attrib_type,attrib_value,device_id FROM devices_attribs WHERE attrib_type LIKE 'override_sysLocation%' ORDER BY attrib_type"); - foreach ($rows as $row) { - if ($row['attrib_type'] == 'override_sysLocation_bool' && $row['attrib_value'] == 1) { - $ignore_dev_location[$row['device_id']] = 1; - } //end if - else if ($row['attrib_type'] == 'override_sysLocation_string' && (isset($ignore_dev_location[$row['device_id']]) && $ignore_dev_location[$row['device_id']] == 1)) { - if (!in_array($row['attrib_value'], $locations)) { - $locations[] = $row['attrib_value']; - } - } - } // Fetch regular locations if ($_SESSION['userlevel'] >= '5') { @@ -761,7 +748,7 @@ function getlocations() { foreach ($rows as $row) { // Only add it as a location if it wasn't overridden (and not already there) - if ($row['location'] != '' && !isset($ignore_dev_location[$row['device_id']])) { + if ($row['location'] != '') { if (!in_array($row['location'], $locations)) { $locations[] = $row['location']; } diff --git a/html/includes/hostbox-public.inc.php b/html/includes/hostbox-public.inc.php index 161ad34f1..437344529 100644 --- a/html/includes/hostbox-public.inc.php +++ b/html/includes/hostbox-public.inc.php @@ -64,10 +64,6 @@ echo ''; echo ' '.$device['hardware'].' '.$device['features'].''; echo ' '.formatUptime($device['uptime'], 'short').'
'; -if (get_dev_attrib($device, 'override_sysLocation_bool')) { - $device['location'] = get_dev_attrib($device, 'override_sysLocation_string'); -} - echo ' '.truncate($device['location'], 32, '').''; echo ' '; diff --git a/html/includes/object-cache.inc.php b/html/includes/object-cache.inc.php index 023730758..fd7a9977d 100644 --- a/html/includes/object-cache.inc.php +++ b/html/includes/object-cache.inc.php @@ -6,11 +6,6 @@ require_once $config['install_dir'].'/includes/object-cache.inc.php'; // FIXME: This appears to keep a complete cache of device details in memory for every page load. // It would be interesting to know where this is used. It probably should have its own API. foreach (dbFetchRows('SELECT * FROM `devices` ORDER BY `hostname`') as $device) { - if (get_dev_attrib($device, 'override_sysLocation_bool')) { - $device['real_location'] = $device['location']; - $device['location'] = get_dev_attrib($device, 'override_sysLocation_string'); - } - $cache['devices']['hostname'][$device['hostname']] = $device['device_id']; $cache['devices']['id'][$device['device_id']] = $device; diff --git a/html/includes/table/devices.inc.php b/html/includes/table/devices.inc.php index 129e198f2..55f09d9f5 100644 --- a/html/includes/table/devices.inc.php +++ b/html/includes/table/devices.inc.php @@ -78,7 +78,7 @@ if (!empty($_POST['location']) && $_POST['location'] == 'Unset') { } if (!empty($_POST['location'])) { - $sql .= " AND (((`DB`.`attrib_value`='1' AND `DA`.`attrib_type`='override_sysLocation_string' AND `DA`.`attrib_value` = ?)) OR `location` = ?)"; + $sql .= " AND `location` = ?"; $param[] = mres($_POST['location']); $param[] = mres($_POST['location']); } @@ -167,10 +167,6 @@ foreach (dbFetchRows($sql, $param) as $device) { $port_count = dbFetchCell('SELECT COUNT(*) FROM `ports` WHERE `device_id` = ?', array($device['device_id'])); $sensor_count = dbFetchCell('SELECT COUNT(*) FROM `sensors` WHERE `device_id` = ?', array($device['device_id'])); - if (get_dev_attrib($device, 'override_sysLocation_bool')) { - $device['location'] = get_dev_attrib($device, 'override_sysLocation_string'); - } - $actions = ('
'); $actions .= ' View device '; diff --git a/html/index.php b/html/index.php index 9dc7a454a..202be6834 100644 --- a/html/index.php +++ b/html/index.php @@ -138,6 +138,10 @@ else { + + + + diff --git a/html/js/jquery.mapael.js b/html/js/jquery.mapael.js new file mode 120000 index 000000000..41cd56582 --- /dev/null +++ b/html/js/jquery.mapael.js @@ -0,0 +1 @@ +../../lib/jQuery-Mapael/js/jquery.mapael.js \ No newline at end of file diff --git a/html/js/jquery.mousewheel.min.js b/html/js/jquery.mousewheel.min.js new file mode 120000 index 000000000..a8463d582 --- /dev/null +++ b/html/js/jquery.mousewheel.min.js @@ -0,0 +1 @@ +../../lib/jquery-mousewheel/jquery.mousewheel.min.js \ No newline at end of file diff --git a/html/js/leaflet.awesome-markers.min.js b/html/js/leaflet.awesome-markers.min.js new file mode 120000 index 000000000..1ae33291c --- /dev/null +++ b/html/js/leaflet.awesome-markers.min.js @@ -0,0 +1 @@ +../../lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.min.js \ No newline at end of file diff --git a/html/js/leaflet.js b/html/js/leaflet.js new file mode 100644 index 000000000..03434b77d --- /dev/null +++ b/html/js/leaflet.js @@ -0,0 +1,9 @@ +/* + Leaflet, a JavaScript library for mobile-friendly interactive maps. http://leafletjs.com + (c) 2010-2013, Vladimir Agafonkin + (c) 2010-2011, CloudMade +*/ +!function(t,e,i){var n=t.L,o={};o.version="0.7.3","object"==typeof module&&"object"==typeof module.exports?module.exports=o:"function"==typeof define&&define.amd&&define(o),o.noConflict=function(){return t.L=n,this},t.L=o,o.Util={extend:function(t){var e,i,n,o,s=Array.prototype.slice.call(arguments,1);for(i=0,n=s.length;n>i;i++){o=s[i]||{};for(e in o)o.hasOwnProperty(e)&&(t[e]=o[e])}return t},bind:function(t,e){var i=arguments.length>2?Array.prototype.slice.call(arguments,2):null;return function(){return t.apply(e,i||arguments)}},stamp:function(){var t=0,e="_leaflet_id";return function(i){return i[e]=i[e]||++t,i[e]}}(),invokeEach:function(t,e,i){var n,o;if("object"==typeof t){o=Array.prototype.slice.call(arguments,3);for(n in t)e.apply(i,[n,t[n]].concat(o));return!0}return!1},limitExecByInterval:function(t,e,i){var n,o;return function s(){var a=arguments;return n?void(o=!0):(n=!0,setTimeout(function(){n=!1,o&&(s.apply(i,a),o=!1)},e),void t.apply(i,a))}},falseFn:function(){return!1},formatNum:function(t,e){var i=Math.pow(10,e||5);return Math.round(t*i)/i},trim:function(t){return t.trim?t.trim():t.replace(/^\s+|\s+$/g,"")},splitWords:function(t){return o.Util.trim(t).split(/\s+/)},setOptions:function(t,e){return t.options=o.extend({},t.options,e),t.options},getParamString:function(t,e,i){var n=[];for(var o in t)n.push(encodeURIComponent(i?o.toUpperCase():o)+"="+encodeURIComponent(t[o]));return(e&&-1!==e.indexOf("?")?"&":"?")+n.join("&")},template:function(t,e){return t.replace(/\{ *([\w_]+) *\}/g,function(t,n){var o=e[n];if(o===i)throw new Error("No value provided for variable "+t);return"function"==typeof o&&(o=o(e)),o})},isArray:Array.isArray||function(t){return"[object Array]"===Object.prototype.toString.call(t)},emptyImageUrl:"data:image/gif;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs="},function(){function e(e){var i,n,o=["webkit","moz","o","ms"];for(i=0;it;t++)n._initHooks[t].call(this)}},e},o.Class.include=function(t){o.extend(this.prototype,t)},o.Class.mergeOptions=function(t){o.extend(this.prototype.options,t)},o.Class.addInitHook=function(t){var e=Array.prototype.slice.call(arguments,1),i="function"==typeof t?t:function(){this[t].apply(this,e)};this.prototype._initHooks=this.prototype._initHooks||[],this.prototype._initHooks.push(i)};var s="_leaflet_events";o.Mixin={},o.Mixin.Events={addEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d=this[s]=this[s]||{},p=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)r={action:e,context:i||this},h=t[n],p?(l=h+"_idx",u=l+"_len",c=d[l]=d[l]||{},c[p]||(c[p]=[],d[u]=(d[u]||0)+1),c[p].push(r)):(d[h]=d[h]||[],d[h].push(r));return this},hasEventListeners:function(t){var e=this[s];return!!e&&(t in e&&e[t].length>0||t+"_idx"in e&&e[t+"_idx_len"]>0)},removeEventListener:function(t,e,i){if(!this[s])return this;if(!t)return this.clearAllEventListeners();if(o.Util.invokeEach(t,this.removeEventListener,this,e,i))return this;var n,a,r,h,l,u,c,d,p,_=this[s],m=i&&i!==this&&o.stamp(i);for(t=o.Util.splitWords(t),n=0,a=t.length;a>n;n++)if(r=t[n],u=r+"_idx",c=u+"_len",d=_[u],e){if(h=m&&d?d[m]:_[r]){for(l=h.length-1;l>=0;l--)h[l].action!==e||i&&h[l].context!==i||(p=h.splice(l,1),p[0].action=o.Util.falseFn);i&&d&&0===h.length&&(delete d[m],_[c]--)}}else delete _[r],delete _[u],delete _[c];return this},clearAllEventListeners:function(){return delete this[s],this},fireEvent:function(t,e){if(!this.hasEventListeners(t))return this;var i,n,a,r,h,l=o.Util.extend({},e,{type:t,target:this}),u=this[s];if(u[t])for(i=u[t].slice(),n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);r=u[t+"_idx"];for(h in r)if(i=r[h].slice())for(n=0,a=i.length;a>n;n++)i[n].action.call(i[n].context,l);return this},addOneTimeEventListener:function(t,e,i){if(o.Util.invokeEach(t,this.addOneTimeEventListener,this,e,i))return this;var n=o.bind(function(){this.removeEventListener(t,e,i).removeEventListener(t,n,i)},this);return this.addEventListener(t,e,i).addEventListener(t,n,i)}},o.Mixin.Events.on=o.Mixin.Events.addEventListener,o.Mixin.Events.off=o.Mixin.Events.removeEventListener,o.Mixin.Events.once=o.Mixin.Events.addOneTimeEventListener,o.Mixin.Events.fire=o.Mixin.Events.fireEvent,function(){var n="ActiveXObject"in t,s=n&&!e.addEventListener,a=navigator.userAgent.toLowerCase(),r=-1!==a.indexOf("webkit"),h=-1!==a.indexOf("chrome"),l=-1!==a.indexOf("phantom"),u=-1!==a.indexOf("android"),c=-1!==a.search("android [23]"),d=-1!==a.indexOf("gecko"),p=typeof orientation!=i+"",_=t.navigator&&t.navigator.msPointerEnabled&&t.navigator.msMaxTouchPoints&&!t.PointerEvent,m=t.PointerEvent&&t.navigator.pointerEnabled&&t.navigator.maxTouchPoints||_,f="devicePixelRatio"in t&&t.devicePixelRatio>1||"matchMedia"in t&&t.matchMedia("(min-resolution:144dpi)")&&t.matchMedia("(min-resolution:144dpi)").matches,g=e.documentElement,v=n&&"transition"in g.style,y="WebKitCSSMatrix"in t&&"m11"in new t.WebKitCSSMatrix&&!c,P="MozPerspective"in g.style,L="OTransition"in g.style,x=!t.L_DISABLE_3D&&(v||y||P||L)&&!l,w=!t.L_NO_TOUCH&&!l&&function(){var t="ontouchstart";if(m||t in g)return!0;var i=e.createElement("div"),n=!1;return i.setAttribute?(i.setAttribute(t,"return;"),"function"==typeof i[t]&&(n=!0),i.removeAttribute(t),i=null,n):!1}();o.Browser={ie:n,ielt9:s,webkit:r,gecko:d&&!r&&!t.opera&&!n,android:u,android23:c,chrome:h,ie3d:v,webkit3d:y,gecko3d:P,opera3d:L,any3d:x,mobile:p,mobileWebkit:p&&r,mobileWebkit3d:p&&y,mobileOpera:p&&t.opera,touch:w,msPointer:_,pointer:m,retina:f}}(),o.Point=function(t,e,i){this.x=i?Math.round(t):t,this.y=i?Math.round(e):e},o.Point.prototype={clone:function(){return new o.Point(this.x,this.y)},add:function(t){return this.clone()._add(o.point(t))},_add:function(t){return this.x+=t.x,this.y+=t.y,this},subtract:function(t){return this.clone()._subtract(o.point(t))},_subtract:function(t){return this.x-=t.x,this.y-=t.y,this},divideBy:function(t){return this.clone()._divideBy(t)},_divideBy:function(t){return this.x/=t,this.y/=t,this},multiplyBy:function(t){return this.clone()._multiplyBy(t)},_multiplyBy:function(t){return this.x*=t,this.y*=t,this},round:function(){return this.clone()._round()},_round:function(){return this.x=Math.round(this.x),this.y=Math.round(this.y),this},floor:function(){return this.clone()._floor()},_floor:function(){return this.x=Math.floor(this.x),this.y=Math.floor(this.y),this},distanceTo:function(t){t=o.point(t);var e=t.x-this.x,i=t.y-this.y;return Math.sqrt(e*e+i*i)},equals:function(t){return t=o.point(t),t.x===this.x&&t.y===this.y},contains:function(t){return t=o.point(t),Math.abs(t.x)<=Math.abs(this.x)&&Math.abs(t.y)<=Math.abs(this.y)},toString:function(){return"Point("+o.Util.formatNum(this.x)+", "+o.Util.formatNum(this.y)+")"}},o.point=function(t,e,n){return t instanceof o.Point?t:o.Util.isArray(t)?new o.Point(t[0],t[1]):t===i||null===t?t:new o.Point(t,e,n)},o.Bounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.Bounds.prototype={extend:function(t){return t=o.point(t),this.min||this.max?(this.min.x=Math.min(t.x,this.min.x),this.max.x=Math.max(t.x,this.max.x),this.min.y=Math.min(t.y,this.min.y),this.max.y=Math.max(t.y,this.max.y)):(this.min=t.clone(),this.max=t.clone()),this},getCenter:function(t){return new o.Point((this.min.x+this.max.x)/2,(this.min.y+this.max.y)/2,t)},getBottomLeft:function(){return new o.Point(this.min.x,this.max.y)},getTopRight:function(){return new o.Point(this.max.x,this.min.y)},getSize:function(){return this.max.subtract(this.min)},contains:function(t){var e,i;return t="number"==typeof t[0]||t instanceof o.Point?o.point(t):o.bounds(t),t instanceof o.Bounds?(e=t.min,i=t.max):e=i=t,e.x>=this.min.x&&i.x<=this.max.x&&e.y>=this.min.y&&i.y<=this.max.y},intersects:function(t){t=o.bounds(t);var e=this.min,i=this.max,n=t.min,s=t.max,a=s.x>=e.x&&n.x<=i.x,r=s.y>=e.y&&n.y<=i.y;return a&&r},isValid:function(){return!(!this.min||!this.max)}},o.bounds=function(t,e){return!t||t instanceof o.Bounds?t:new o.Bounds(t,e)},o.Transformation=function(t,e,i,n){this._a=t,this._b=e,this._c=i,this._d=n},o.Transformation.prototype={transform:function(t,e){return this._transform(t.clone(),e)},_transform:function(t,e){return e=e||1,t.x=e*(this._a*t.x+this._b),t.y=e*(this._c*t.y+this._d),t},untransform:function(t,e){return e=e||1,new o.Point((t.x/e-this._b)/this._a,(t.y/e-this._d)/this._c)}},o.DomUtil={get:function(t){return"string"==typeof t?e.getElementById(t):t},getStyle:function(t,i){var n=t.style[i];if(!n&&t.currentStyle&&(n=t.currentStyle[i]),(!n||"auto"===n)&&e.defaultView){var o=e.defaultView.getComputedStyle(t,null);n=o?o[i]:null}return"auto"===n?null:n},getViewportOffset:function(t){var i,n=0,s=0,a=t,r=e.body,h=e.documentElement;do{if(n+=a.offsetTop||0,s+=a.offsetLeft||0,n+=parseInt(o.DomUtil.getStyle(a,"borderTopWidth"),10)||0,s+=parseInt(o.DomUtil.getStyle(a,"borderLeftWidth"),10)||0,i=o.DomUtil.getStyle(a,"position"),a.offsetParent===r&&"absolute"===i)break;if("fixed"===i){n+=r.scrollTop||h.scrollTop||0,s+=r.scrollLeft||h.scrollLeft||0;break}if("relative"===i&&!a.offsetLeft){var l=o.DomUtil.getStyle(a,"width"),u=o.DomUtil.getStyle(a,"max-width"),c=a.getBoundingClientRect();("none"!==l||"none"!==u)&&(s+=c.left+a.clientLeft),n+=c.top+(r.scrollTop||h.scrollTop||0);break}a=a.offsetParent}while(a);a=t;do{if(a===r)break;n-=a.scrollTop||0,s-=a.scrollLeft||0,a=a.parentNode}while(a);return new o.Point(s,n)},documentIsLtr:function(){return o.DomUtil._docIsLtrCached||(o.DomUtil._docIsLtrCached=!0,o.DomUtil._docIsLtr="ltr"===o.DomUtil.getStyle(e.body,"direction")),o.DomUtil._docIsLtr},create:function(t,i,n){var o=e.createElement(t);return o.className=i,n&&n.appendChild(o),o},hasClass:function(t,e){if(t.classList!==i)return t.classList.contains(e);var n=o.DomUtil._getClass(t);return n.length>0&&new RegExp("(^|\\s)"+e+"(\\s|$)").test(n)},addClass:function(t,e){if(t.classList!==i)for(var n=o.Util.splitWords(e),s=0,a=n.length;a>s;s++)t.classList.add(n[s]);else if(!o.DomUtil.hasClass(t,e)){var r=o.DomUtil._getClass(t);o.DomUtil._setClass(t,(r?r+" ":"")+e)}},removeClass:function(t,e){t.classList!==i?t.classList.remove(e):o.DomUtil._setClass(t,o.Util.trim((" "+o.DomUtil._getClass(t)+" ").replace(" "+e+" "," ")))},_setClass:function(t,e){t.className.baseVal===i?t.className=e:t.className.baseVal=e},_getClass:function(t){return t.className.baseVal===i?t.className:t.className.baseVal},setOpacity:function(t,e){if("opacity"in t.style)t.style.opacity=e;else if("filter"in t.style){var i=!1,n="DXImageTransform.Microsoft.Alpha";try{i=t.filters.item(n)}catch(o){if(1===e)return}e=Math.round(100*e),i?(i.Enabled=100!==e,i.Opacity=e):t.style.filter+=" progid:"+n+"(opacity="+e+")"}},testProp:function(t){for(var i=e.documentElement.style,n=0;ni||i===e?e:t),new o.LatLng(this.lat,i)}},o.latLng=function(t,e){return t instanceof o.LatLng?t:o.Util.isArray(t)?"number"==typeof t[0]||"string"==typeof t[0]?new o.LatLng(t[0],t[1],t[2]):null:t===i||null===t?t:"object"==typeof t&&"lat"in t?new o.LatLng(t.lat,"lng"in t?t.lng:t.lon):e===i?null:new o.LatLng(t,e)},o.LatLngBounds=function(t,e){if(t)for(var i=e?[t,e]:t,n=0,o=i.length;o>n;n++)this.extend(i[n])},o.LatLngBounds.prototype={extend:function(t){if(!t)return this;var e=o.latLng(t);return t=null!==e?e:o.latLngBounds(t),t instanceof o.LatLng?this._southWest||this._northEast?(this._southWest.lat=Math.min(t.lat,this._southWest.lat),this._southWest.lng=Math.min(t.lng,this._southWest.lng),this._northEast.lat=Math.max(t.lat,this._northEast.lat),this._northEast.lng=Math.max(t.lng,this._northEast.lng)):(this._southWest=new o.LatLng(t.lat,t.lng),this._northEast=new o.LatLng(t.lat,t.lng)):t instanceof o.LatLngBounds&&(this.extend(t._southWest),this.extend(t._northEast)),this},pad:function(t){var e=this._southWest,i=this._northEast,n=Math.abs(e.lat-i.lat)*t,s=Math.abs(e.lng-i.lng)*t;return new o.LatLngBounds(new o.LatLng(e.lat-n,e.lng-s),new o.LatLng(i.lat+n,i.lng+s))},getCenter:function(){return new o.LatLng((this._southWest.lat+this._northEast.lat)/2,(this._southWest.lng+this._northEast.lng)/2)},getSouthWest:function(){return this._southWest},getNorthEast:function(){return this._northEast},getNorthWest:function(){return new o.LatLng(this.getNorth(),this.getWest())},getSouthEast:function(){return new o.LatLng(this.getSouth(),this.getEast())},getWest:function(){return this._southWest.lng},getSouth:function(){return this._southWest.lat},getEast:function(){return this._northEast.lng},getNorth:function(){return this._northEast.lat},contains:function(t){t="number"==typeof t[0]||t instanceof o.LatLng?o.latLng(t):o.latLngBounds(t);var e,i,n=this._southWest,s=this._northEast;return t instanceof o.LatLngBounds?(e=t.getSouthWest(),i=t.getNorthEast()):e=i=t,e.lat>=n.lat&&i.lat<=s.lat&&e.lng>=n.lng&&i.lng<=s.lng},intersects:function(t){t=o.latLngBounds(t);var e=this._southWest,i=this._northEast,n=t.getSouthWest(),s=t.getNorthEast(),a=s.lat>=e.lat&&n.lat<=i.lat,r=s.lng>=e.lng&&n.lng<=i.lng;return a&&r},toBBoxString:function(){return[this.getWest(),this.getSouth(),this.getEast(),this.getNorth()].join(",")},equals:function(t){return t?(t=o.latLngBounds(t),this._southWest.equals(t.getSouthWest())&&this._northEast.equals(t.getNorthEast())):!1},isValid:function(){return!(!this._southWest||!this._northEast)}},o.latLngBounds=function(t,e){return!t||t instanceof o.LatLngBounds?t:new o.LatLngBounds(t,e)},o.Projection={},o.Projection.SphericalMercator={MAX_LATITUDE:85.0511287798,project:function(t){var e=o.LatLng.DEG_TO_RAD,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=t.lng*e,a=n*e;return a=Math.log(Math.tan(Math.PI/4+a/2)),new o.Point(s,a)},unproject:function(t){var e=o.LatLng.RAD_TO_DEG,i=t.x*e,n=(2*Math.atan(Math.exp(t.y))-Math.PI/2)*e;return new o.LatLng(n,i)}},o.Projection.LonLat={project:function(t){return new o.Point(t.lng,t.lat)},unproject:function(t){return new o.LatLng(t.y,t.x)}},o.CRS={latLngToPoint:function(t,e){var i=this.projection.project(t),n=this.scale(e);return this.transformation._transform(i,n)},pointToLatLng:function(t,e){var i=this.scale(e),n=this.transformation.untransform(t,i);return this.projection.unproject(n)},project:function(t){return this.projection.project(t)},scale:function(t){return 256*Math.pow(2,t)},getSize:function(t){var e=this.scale(t);return o.point(e,e)}},o.CRS.Simple=o.extend({},o.CRS,{projection:o.Projection.LonLat,transformation:new o.Transformation(1,0,-1,0),scale:function(t){return Math.pow(2,t)}}),o.CRS.EPSG3857=o.extend({},o.CRS,{code:"EPSG:3857",projection:o.Projection.SphericalMercator,transformation:new o.Transformation(.5/Math.PI,.5,-.5/Math.PI,.5),project:function(t){var e=this.projection.project(t),i=6378137;return e.multiplyBy(i)}}),o.CRS.EPSG900913=o.extend({},o.CRS.EPSG3857,{code:"EPSG:900913"}),o.CRS.EPSG4326=o.extend({},o.CRS,{code:"EPSG:4326",projection:o.Projection.LonLat,transformation:new o.Transformation(1/360,.5,-1/360,.5)}),o.Map=o.Class.extend({includes:o.Mixin.Events,options:{crs:o.CRS.EPSG3857,fadeAnimation:o.DomUtil.TRANSITION&&!o.Browser.android23,trackResize:!0,markerZoomAnimation:o.DomUtil.TRANSITION&&o.Browser.any3d},initialize:function(t,e){e=o.setOptions(this,e),this._initContainer(t),this._initLayout(),this._onResize=o.bind(this._onResize,this),this._initEvents(),e.maxBounds&&this.setMaxBounds(e.maxBounds),e.center&&e.zoom!==i&&this.setView(o.latLng(e.center),e.zoom,{reset:!0}),this._handlers=[],this._layers={},this._zoomBoundLayers={},this._tileLayersNum=0,this.callInitHooks(),this._addLayers(e.layers)},setView:function(t,e){return e=e===i?this.getZoom():e,this._resetView(o.latLng(t),this._limitZoom(e)),this},setZoom:function(t,e){return this._loaded?this.setView(this.getCenter(),t,{zoom:e}):(this._zoom=this._limitZoom(t),this)},zoomIn:function(t,e){return this.setZoom(this._zoom+(t||1),e)},zoomOut:function(t,e){return this.setZoom(this._zoom-(t||1),e)},setZoomAround:function(t,e,i){var n=this.getZoomScale(e),s=this.getSize().divideBy(2),a=t instanceof o.Point?t:this.latLngToContainerPoint(t),r=a.subtract(s).multiplyBy(1-1/n),h=this.containerPointToLatLng(s.add(r));return this.setView(h,e,{zoom:i})},fitBounds:function(t,e){e=e||{},t=t.getBounds?t.getBounds():o.latLngBounds(t);var i=o.point(e.paddingTopLeft||e.padding||[0,0]),n=o.point(e.paddingBottomRight||e.padding||[0,0]),s=this.getBoundsZoom(t,!1,i.add(n)),a=n.subtract(i).divideBy(2),r=this.project(t.getSouthWest(),s),h=this.project(t.getNorthEast(),s),l=this.unproject(r.add(h).divideBy(2).add(a),s);return s=e&&e.maxZoom?Math.min(e.maxZoom,s):s,this.setView(l,s,e)},fitWorld:function(t){return this.fitBounds([[-90,-180],[90,180]],t)},panTo:function(t,e){return this.setView(t,this._zoom,{pan:e})},panBy:function(t){return this.fire("movestart"),this._rawPanBy(o.point(t)),this.fire("move"),this.fire("moveend")},setMaxBounds:function(t){return t=o.latLngBounds(t),this.options.maxBounds=t,t?(this._loaded&&this._panInsideMaxBounds(),this.on("moveend",this._panInsideMaxBounds,this)):this.off("moveend",this._panInsideMaxBounds,this)},panInsideBounds:function(t,e){var i=this.getCenter(),n=this._limitCenter(i,this._zoom,t);return i.equals(n)?this:this.panTo(n,e)},addLayer:function(t){var e=o.stamp(t);return this._layers[e]?this:(this._layers[e]=t,!t.options||isNaN(t.options.maxZoom)&&isNaN(t.options.minZoom)||(this._zoomBoundLayers[e]=t,this._updateZoomLevels()),this.options.zoomAnimation&&o.TileLayer&&t instanceof o.TileLayer&&(this._tileLayersNum++,this._tileLayersToLoad++,t.on("load",this._onTileLayerLoad,this)),this._loaded&&this._layerAdd(t),this)},removeLayer:function(t){var e=o.stamp(t);return this._layers[e]?(this._loaded&&t.onRemove(this),delete this._layers[e],this._loaded&&this.fire("layerremove",{layer:t}),this._zoomBoundLayers[e]&&(delete this._zoomBoundLayers[e],this._updateZoomLevels()),this.options.zoomAnimation&&o.TileLayer&&t instanceof o.TileLayer&&(this._tileLayersNum--,this._tileLayersToLoad--,t.off("load",this._onTileLayerLoad,this)),this):this},hasLayer:function(t){return t?o.stamp(t)in this._layers:!1},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},invalidateSize:function(t){if(!this._loaded)return this;t=o.extend({animate:!1,pan:!0},t===!0?{animate:!0}:t);var e=this.getSize();this._sizeChanged=!0,this._initialCenter=null;var i=this.getSize(),n=e.divideBy(2).round(),s=i.divideBy(2).round(),a=n.subtract(s);return a.x||a.y?(t.animate&&t.pan?this.panBy(a):(t.pan&&this._rawPanBy(a),this.fire("move"),t.debounceMoveend?(clearTimeout(this._sizeTimer),this._sizeTimer=setTimeout(o.bind(this.fire,this,"moveend"),200)):this.fire("moveend")),this.fire("resize",{oldSize:e,newSize:i})):this},addHandler:function(t,e){if(!e)return this;var i=this[t]=new e(this);return this._handlers.push(i),this.options[t]&&i.enable(),this},remove:function(){this._loaded&&this.fire("unload"),this._initEvents("off");try{delete this._container._leaflet}catch(t){this._container._leaflet=i}return this._clearPanes(),this._clearControlPos&&this._clearControlPos(),this._clearHandlers(),this},getCenter:function(){return this._checkIfLoaded(),this._initialCenter&&!this._moved()?this._initialCenter:this.layerPointToLatLng(this._getCenterLayerPoint())},getZoom:function(){return this._zoom},getBounds:function(){var t=this.getPixelBounds(),e=this.unproject(t.getBottomLeft()),i=this.unproject(t.getTopRight());return new o.LatLngBounds(e,i)},getMinZoom:function(){return this.options.minZoom===i?this._layersMinZoom===i?0:this._layersMinZoom:this.options.minZoom},getMaxZoom:function(){return this.options.maxZoom===i?this._layersMaxZoom===i?1/0:this._layersMaxZoom:this.options.maxZoom},getBoundsZoom:function(t,e,i){t=o.latLngBounds(t);var n,s=this.getMinZoom()-(e?1:0),a=this.getMaxZoom(),r=this.getSize(),h=t.getNorthWest(),l=t.getSouthEast(),u=!0;i=o.point(i||[0,0]);do s++,n=this.project(l,s).subtract(this.project(h,s)).add(i),u=e?n.x=s);return u&&e?null:e?s:s-1},getSize:function(){return(!this._size||this._sizeChanged)&&(this._size=new o.Point(this._container.clientWidth,this._container.clientHeight),this._sizeChanged=!1),this._size.clone()},getPixelBounds:function(){var t=this._getTopLeftPoint();return new o.Bounds(t,t.add(this.getSize()))},getPixelOrigin:function(){return this._checkIfLoaded(),this._initialTopLeftPoint},getPanes:function(){return this._panes},getContainer:function(){return this._container},getZoomScale:function(t){var e=this.options.crs;return e.scale(t)/e.scale(this._zoom)},getScaleZoom:function(t){return this._zoom+Math.log(t)/Math.LN2},project:function(t,e){return e=e===i?this._zoom:e,this.options.crs.latLngToPoint(o.latLng(t),e)},unproject:function(t,e){return e=e===i?this._zoom:e,this.options.crs.pointToLatLng(o.point(t),e)},layerPointToLatLng:function(t){var e=o.point(t).add(this.getPixelOrigin());return this.unproject(e)},latLngToLayerPoint:function(t){var e=this.project(o.latLng(t))._round();return e._subtract(this.getPixelOrigin())},containerPointToLayerPoint:function(t){return o.point(t).subtract(this._getMapPanePos())},layerPointToContainerPoint:function(t){return o.point(t).add(this._getMapPanePos())},containerPointToLatLng:function(t){var e=this.containerPointToLayerPoint(o.point(t));return this.layerPointToLatLng(e)},latLngToContainerPoint:function(t){return this.layerPointToContainerPoint(this.latLngToLayerPoint(o.latLng(t)))},mouseEventToContainerPoint:function(t){return o.DomEvent.getMousePosition(t,this._container)},mouseEventToLayerPoint:function(t){return this.containerPointToLayerPoint(this.mouseEventToContainerPoint(t))},mouseEventToLatLng:function(t){return this.layerPointToLatLng(this.mouseEventToLayerPoint(t))},_initContainer:function(t){var e=this._container=o.DomUtil.get(t);if(!e)throw new Error("Map container not found.");if(e._leaflet)throw new Error("Map container is already initialized.");e._leaflet=!0},_initLayout:function(){var t=this._container;o.DomUtil.addClass(t,"leaflet-container"+(o.Browser.touch?" leaflet-touch":"")+(o.Browser.retina?" leaflet-retina":"")+(o.Browser.ielt9?" leaflet-oldie":"")+(this.options.fadeAnimation?" leaflet-fade-anim":""));var e=o.DomUtil.getStyle(t,"position");"absolute"!==e&&"relative"!==e&&"fixed"!==e&&(t.style.position="relative"),this._initPanes(),this._initControlPos&&this._initControlPos()},_initPanes:function(){var t=this._panes={};this._mapPane=t.mapPane=this._createPane("leaflet-map-pane",this._container),this._tilePane=t.tilePane=this._createPane("leaflet-tile-pane",this._mapPane),t.objectsPane=this._createPane("leaflet-objects-pane",this._mapPane),t.shadowPane=this._createPane("leaflet-shadow-pane"),t.overlayPane=this._createPane("leaflet-overlay-pane"),t.markerPane=this._createPane("leaflet-marker-pane"),t.popupPane=this._createPane("leaflet-popup-pane");var e=" leaflet-zoom-hide";this.options.markerZoomAnimation||(o.DomUtil.addClass(t.markerPane,e),o.DomUtil.addClass(t.shadowPane,e),o.DomUtil.addClass(t.popupPane,e))},_createPane:function(t,e){return o.DomUtil.create("div",t,e||this._panes.objectsPane)},_clearPanes:function(){this._container.removeChild(this._mapPane)},_addLayers:function(t){t=t?o.Util.isArray(t)?t:[t]:[];for(var e=0,i=t.length;i>e;e++)this.addLayer(t[e])},_resetView:function(t,e,i,n){var s=this._zoom!==e;n||(this.fire("movestart"),s&&this.fire("zoomstart")),this._zoom=e,this._initialCenter=t,this._initialTopLeftPoint=this._getNewTopLeftPoint(t),i?this._initialTopLeftPoint._add(this._getMapPanePos()):o.DomUtil.setPosition(this._mapPane,new o.Point(0,0)),this._tileLayersToLoad=this._tileLayersNum;var a=!this._loaded;this._loaded=!0,this.fire("viewreset",{hard:!i}),a&&(this.fire("load"),this.eachLayer(this._layerAdd,this)),this.fire("move"),(s||n)&&this.fire("zoomend"),this.fire("moveend",{hard:!i})},_rawPanBy:function(t){o.DomUtil.setPosition(this._mapPane,this._getMapPanePos().subtract(t))},_getZoomSpan:function(){return this.getMaxZoom()-this.getMinZoom()},_updateZoomLevels:function(){var t,e=1/0,n=-1/0,o=this._getZoomSpan();for(t in this._zoomBoundLayers){var s=this._zoomBoundLayers[t];isNaN(s.options.minZoom)||(e=Math.min(e,s.options.minZoom)),isNaN(s.options.maxZoom)||(n=Math.max(n,s.options.maxZoom))}t===i?this._layersMaxZoom=this._layersMinZoom=i:(this._layersMaxZoom=n,this._layersMinZoom=e),o!==this._getZoomSpan()&&this.fire("zoomlevelschange")},_panInsideMaxBounds:function(){this.panInsideBounds(this.options.maxBounds)},_checkIfLoaded:function(){if(!this._loaded)throw new Error("Set map center and zoom first.")},_initEvents:function(e){if(o.DomEvent){e=e||"on",o.DomEvent[e](this._container,"click",this._onMouseClick,this);var i,n,s=["dblclick","mousedown","mouseup","mouseenter","mouseleave","mousemove","contextmenu"];for(i=0,n=s.length;n>i;i++)o.DomEvent[e](this._container,s[i],this._fireMouseEvent,this);this.options.trackResize&&o.DomEvent[e](t,"resize",this._onResize,this)}},_onResize:function(){o.Util.cancelAnimFrame(this._resizeRequest),this._resizeRequest=o.Util.requestAnimFrame(function(){this.invalidateSize({debounceMoveend:!0})},this,!1,this._container)},_onMouseClick:function(t){!this._loaded||!t._simulated&&(this.dragging&&this.dragging.moved()||this.boxZoom&&this.boxZoom.moved())||o.DomEvent._skipped(t)||(this.fire("preclick"),this._fireMouseEvent(t))},_fireMouseEvent:function(t){if(this._loaded&&!o.DomEvent._skipped(t)){var e=t.type;if(e="mouseenter"===e?"mouseover":"mouseleave"===e?"mouseout":e,this.hasEventListeners(e)){"contextmenu"===e&&o.DomEvent.preventDefault(t);var i=this.mouseEventToContainerPoint(t),n=this.containerPointToLayerPoint(i),s=this.layerPointToLatLng(n);this.fire(e,{latlng:s,layerPoint:n,containerPoint:i,originalEvent:t})}}},_onTileLayerLoad:function(){this._tileLayersToLoad--,this._tileLayersNum&&!this._tileLayersToLoad&&this.fire("tilelayersload")},_clearHandlers:function(){for(var t=0,e=this._handlers.length;e>t;t++)this._handlers[t].disable()},whenReady:function(t,e){return this._loaded?t.call(e||this,this):this.on("load",t,e),this},_layerAdd:function(t){t.onAdd(this),this.fire("layeradd",{layer:t})},_getMapPanePos:function(){return o.DomUtil.getPosition(this._mapPane)},_moved:function(){var t=this._getMapPanePos();return t&&!t.equals([0,0])},_getTopLeftPoint:function(){return this.getPixelOrigin().subtract(this._getMapPanePos())},_getNewTopLeftPoint:function(t,e){var i=this.getSize()._divideBy(2);return this.project(t,e)._subtract(i)._round()},_latLngToNewLayerPoint:function(t,e,i){var n=this._getNewTopLeftPoint(i,e).add(this._getMapPanePos());return this.project(t,e)._subtract(n)},_getCenterLayerPoint:function(){return this.containerPointToLayerPoint(this.getSize()._divideBy(2))},_getCenterOffset:function(t){return this.latLngToLayerPoint(t).subtract(this._getCenterLayerPoint())},_limitCenter:function(t,e,i){if(!i)return t;var n=this.project(t,e),s=this.getSize().divideBy(2),a=new o.Bounds(n.subtract(s),n.add(s)),r=this._getBoundsOffset(a,i,e);return this.unproject(n.add(r),e)},_limitOffset:function(t,e){if(!e)return t;var i=this.getPixelBounds(),n=new o.Bounds(i.min.add(t),i.max.add(t));return t.add(this._getBoundsOffset(n,e))},_getBoundsOffset:function(t,e,i){var n=this.project(e.getNorthWest(),i).subtract(t.min),s=this.project(e.getSouthEast(),i).subtract(t.max),a=this._rebound(n.x,-s.x),r=this._rebound(n.y,-s.y);return new o.Point(a,r)},_rebound:function(t,e){return t+e>0?Math.round(t-e)/2:Math.max(0,Math.ceil(t))-Math.max(0,Math.floor(e))},_limitZoom:function(t){var e=this.getMinZoom(),i=this.getMaxZoom();return Math.max(e,Math.min(i,t))}}),o.map=function(t,e){return new o.Map(t,e)},o.Projection.Mercator={MAX_LATITUDE:85.0840591556,R_MINOR:6356752.314245179,R_MAJOR:6378137,project:function(t){var e=o.LatLng.DEG_TO_RAD,i=this.MAX_LATITUDE,n=Math.max(Math.min(i,t.lat),-i),s=this.R_MAJOR,a=this.R_MINOR,r=t.lng*e*s,h=n*e,l=a/s,u=Math.sqrt(1-l*l),c=u*Math.sin(h);c=Math.pow((1-c)/(1+c),.5*u);var d=Math.tan(.5*(.5*Math.PI-h))/c;return h=-s*Math.log(d),new o.Point(r,h)},unproject:function(t){for(var e,i=o.LatLng.RAD_TO_DEG,n=this.R_MAJOR,s=this.R_MINOR,a=t.x*i/n,r=s/n,h=Math.sqrt(1-r*r),l=Math.exp(-t.y/n),u=Math.PI/2-2*Math.atan(l),c=15,d=1e-7,p=c,_=.1;Math.abs(_)>d&&--p>0;)e=h*Math.sin(u),_=Math.PI/2-2*Math.atan(l*Math.pow((1-e)/(1+e),.5*h))-u,u+=_; +return new o.LatLng(u*i,a)}},o.CRS.EPSG3395=o.extend({},o.CRS,{code:"EPSG:3395",projection:o.Projection.Mercator,transformation:function(){var t=o.Projection.Mercator,e=t.R_MAJOR,i=.5/(Math.PI*e);return new o.Transformation(i,.5,-i,.5)}()}),o.TileLayer=o.Class.extend({includes:o.Mixin.Events,options:{minZoom:0,maxZoom:18,tileSize:256,subdomains:"abc",errorTileUrl:"",attribution:"",zoomOffset:0,opacity:1,unloadInvisibleTiles:o.Browser.mobile,updateWhenIdle:o.Browser.mobile},initialize:function(t,e){e=o.setOptions(this,e),e.detectRetina&&o.Browser.retina&&e.maxZoom>0&&(e.tileSize=Math.floor(e.tileSize/2),e.zoomOffset++,e.minZoom>0&&e.minZoom--,this.options.maxZoom--),e.bounds&&(e.bounds=o.latLngBounds(e.bounds)),this._url=t;var i=this.options.subdomains;"string"==typeof i&&(this.options.subdomains=i.split(""))},onAdd:function(t){this._map=t,this._animated=t._zoomAnimated,this._initContainer(),t.on({viewreset:this._reset,moveend:this._update},this),this._animated&&t.on({zoomanim:this._animateZoom,zoomend:this._endZoomAnim},this),this.options.updateWhenIdle||(this._limitedUpdate=o.Util.limitExecByInterval(this._update,150,this),t.on("move",this._limitedUpdate,this)),this._reset(),this._update()},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){this._container.parentNode.removeChild(this._container),t.off({viewreset:this._reset,moveend:this._update},this),this._animated&&t.off({zoomanim:this._animateZoom,zoomend:this._endZoomAnim},this),this.options.updateWhenIdle||t.off("move",this._limitedUpdate,this),this._container=null,this._map=null},bringToFront:function(){var t=this._map._panes.tilePane;return this._container&&(t.appendChild(this._container),this._setAutoZIndex(t,Math.max)),this},bringToBack:function(){var t=this._map._panes.tilePane;return this._container&&(t.insertBefore(this._container,t.firstChild),this._setAutoZIndex(t,Math.min)),this},getAttribution:function(){return this.options.attribution},getContainer:function(){return this._container},setOpacity:function(t){return this.options.opacity=t,this._map&&this._updateOpacity(),this},setZIndex:function(t){return this.options.zIndex=t,this._updateZIndex(),this},setUrl:function(t,e){return this._url=t,e||this.redraw(),this},redraw:function(){return this._map&&(this._reset({hard:!0}),this._update()),this},_updateZIndex:function(){this._container&&this.options.zIndex!==i&&(this._container.style.zIndex=this.options.zIndex)},_setAutoZIndex:function(t,e){var i,n,o,s=t.children,a=-e(1/0,-1/0);for(n=0,o=s.length;o>n;n++)s[n]!==this._container&&(i=parseInt(s[n].style.zIndex,10),isNaN(i)||(a=e(a,i)));this.options.zIndex=this._container.style.zIndex=(isFinite(a)?a:0)+e(1,-1)},_updateOpacity:function(){var t,e=this._tiles;if(o.Browser.ielt9)for(t in e)o.DomUtil.setOpacity(e[t],this.options.opacity);else o.DomUtil.setOpacity(this._container,this.options.opacity)},_initContainer:function(){var t=this._map._panes.tilePane;if(!this._container){if(this._container=o.DomUtil.create("div","leaflet-layer"),this._updateZIndex(),this._animated){var e="leaflet-tile-container";this._bgBuffer=o.DomUtil.create("div",e,this._container),this._tileContainer=o.DomUtil.create("div",e,this._container)}else this._tileContainer=this._container;t.appendChild(this._container),this.options.opacity<1&&this._updateOpacity()}},_reset:function(t){for(var e in this._tiles)this.fire("tileunload",{tile:this._tiles[e]});this._tiles={},this._tilesToLoad=0,this.options.reuseTiles&&(this._unusedTiles=[]),this._tileContainer.innerHTML="",this._animated&&t&&t.hard&&this._clearBgBuffer(),this._initContainer()},_getTileSize:function(){var t=this._map,e=t.getZoom()+this.options.zoomOffset,i=this.options.maxNativeZoom,n=this.options.tileSize;return i&&e>i&&(n=Math.round(t.getZoomScale(e)/t.getZoomScale(i)*n)),n},_update:function(){if(this._map){var t=this._map,e=t.getPixelBounds(),i=t.getZoom(),n=this._getTileSize();if(!(i>this.options.maxZoom||in;n++)this._addTile(a[n],l);this._tileContainer.appendChild(l)}},_tileShouldBeLoaded:function(t){if(t.x+":"+t.y in this._tiles)return!1;var e=this.options;if(!e.continuousWorld){var i=this._getWrapTileNum();if(e.noWrap&&(t.x<0||t.x>=i.x)||t.y<0||t.y>=i.y)return!1}if(e.bounds){var n=e.tileSize,o=t.multiplyBy(n),s=o.add([n,n]),a=this._map.unproject(o),r=this._map.unproject(s);if(e.continuousWorld||e.noWrap||(a=a.wrap(),r=r.wrap()),!e.bounds.intersects([a,r]))return!1}return!0},_removeOtherTiles:function(t){var e,i,n,o;for(o in this._tiles)e=o.split(":"),i=parseInt(e[0],10),n=parseInt(e[1],10),(it.max.x||nt.max.y)&&this._removeTile(o)},_removeTile:function(t){var e=this._tiles[t];this.fire("tileunload",{tile:e,url:e.src}),this.options.reuseTiles?(o.DomUtil.removeClass(e,"leaflet-tile-loaded"),this._unusedTiles.push(e)):e.parentNode===this._tileContainer&&this._tileContainer.removeChild(e),o.Browser.android||(e.onload=null,e.src=o.Util.emptyImageUrl),delete this._tiles[t]},_addTile:function(t,e){var i=this._getTilePos(t),n=this._getTile();o.DomUtil.setPosition(n,i,o.Browser.chrome),this._tiles[t.x+":"+t.y]=n,this._loadTile(n,t),n.parentNode!==this._tileContainer&&e.appendChild(n)},_getZoomForUrl:function(){var t=this.options,e=this._map.getZoom();return t.zoomReverse&&(e=t.maxZoom-e),e+=t.zoomOffset,t.maxNativeZoom?Math.min(e,t.maxNativeZoom):e},_getTilePos:function(t){var e=this._map.getPixelOrigin(),i=this._getTileSize();return t.multiplyBy(i).subtract(e)},getTileUrl:function(t){return o.Util.template(this._url,o.extend({s:this._getSubdomain(t),z:t.z,x:t.x,y:t.y},this.options))},_getWrapTileNum:function(){var t=this._map.options.crs,e=t.getSize(this._map.getZoom());return e.divideBy(this._getTileSize())._floor()},_adjustTilePoint:function(t){var e=this._getWrapTileNum();this.options.continuousWorld||this.options.noWrap||(t.x=(t.x%e.x+e.x)%e.x),this.options.tms&&(t.y=e.y-t.y-1),t.z=this._getZoomForUrl()},_getSubdomain:function(t){var e=Math.abs(t.x+t.y)%this.options.subdomains.length;return this.options.subdomains[e]},_getTile:function(){if(this.options.reuseTiles&&this._unusedTiles.length>0){var t=this._unusedTiles.pop();return this._resetTile(t),t}return this._createTile()},_resetTile:function(){},_createTile:function(){var t=o.DomUtil.create("img","leaflet-tile");return t.style.width=t.style.height=this._getTileSize()+"px",t.galleryimg="no",t.onselectstart=t.onmousemove=o.Util.falseFn,o.Browser.ielt9&&this.options.opacity!==i&&o.DomUtil.setOpacity(t,this.options.opacity),o.Browser.mobileWebkit3d&&(t.style.WebkitBackfaceVisibility="hidden"),t},_loadTile:function(t,e){t._layer=this,t.onload=this._tileOnLoad,t.onerror=this._tileOnError,this._adjustTilePoint(e),t.src=this.getTileUrl(e),this.fire("tileloadstart",{tile:t,url:t.src})},_tileLoaded:function(){this._tilesToLoad--,this._animated&&o.DomUtil.addClass(this._tileContainer,"leaflet-zoom-animated"),this._tilesToLoad||(this.fire("load"),this._animated&&(clearTimeout(this._clearBgBufferTimer),this._clearBgBufferTimer=setTimeout(o.bind(this._clearBgBuffer,this),500)))},_tileOnLoad:function(){var t=this._layer;this.src!==o.Util.emptyImageUrl&&(o.DomUtil.addClass(this,"leaflet-tile-loaded"),t.fire("tileload",{tile:this,url:this.src})),t._tileLoaded()},_tileOnError:function(){var t=this._layer;t.fire("tileerror",{tile:this,url:this.src});var e=t.options.errorTileUrl;e&&(this.src=e),t._tileLoaded()}}),o.tileLayer=function(t,e){return new o.TileLayer(t,e)},o.TileLayer.WMS=o.TileLayer.extend({defaultWmsParams:{service:"WMS",request:"GetMap",version:"1.1.1",layers:"",styles:"",format:"image/jpeg",transparent:!1},initialize:function(t,e){this._url=t;var i=o.extend({},this.defaultWmsParams),n=e.tileSize||this.options.tileSize;i.width=i.height=e.detectRetina&&o.Browser.retina?2*n:n;for(var s in e)this.options.hasOwnProperty(s)||"crs"===s||(i[s]=e[s]);this.wmsParams=i,o.setOptions(this,e)},onAdd:function(t){this._crs=this.options.crs||t.options.crs,this._wmsVersion=parseFloat(this.wmsParams.version);var e=this._wmsVersion>=1.3?"crs":"srs";this.wmsParams[e]=this._crs.code,o.TileLayer.prototype.onAdd.call(this,t)},getTileUrl:function(t){var e=this._map,i=this.options.tileSize,n=t.multiplyBy(i),s=n.add([i,i]),a=this._crs.project(e.unproject(n,t.z)),r=this._crs.project(e.unproject(s,t.z)),h=this._wmsVersion>=1.3&&this._crs===o.CRS.EPSG4326?[r.y,a.x,a.y,r.x].join(","):[a.x,r.y,r.x,a.y].join(","),l=o.Util.template(this._url,{s:this._getSubdomain(t)});return l+o.Util.getParamString(this.wmsParams,l,!0)+"&BBOX="+h},setParams:function(t,e){return o.extend(this.wmsParams,t),e||this.redraw(),this}}),o.tileLayer.wms=function(t,e){return new o.TileLayer.WMS(t,e)},o.TileLayer.Canvas=o.TileLayer.extend({options:{async:!1},initialize:function(t){o.setOptions(this,t)},redraw:function(){this._map&&(this._reset({hard:!0}),this._update());for(var t in this._tiles)this._redrawTile(this._tiles[t]);return this},_redrawTile:function(t){this.drawTile(t,t._tilePoint,this._map._zoom)},_createTile:function(){var t=o.DomUtil.create("canvas","leaflet-tile");return t.width=t.height=this.options.tileSize,t.onselectstart=t.onmousemove=o.Util.falseFn,t},_loadTile:function(t,e){t._layer=this,t._tilePoint=e,this._redrawTile(t),this.options.async||this.tileDrawn(t)},drawTile:function(){},tileDrawn:function(t){this._tileOnLoad.call(t)}}),o.tileLayer.canvas=function(t){return new o.TileLayer.Canvas(t)},o.ImageOverlay=o.Class.extend({includes:o.Mixin.Events,options:{opacity:1},initialize:function(t,e,i){this._url=t,this._bounds=o.latLngBounds(e),o.setOptions(this,i)},onAdd:function(t){this._map=t,this._image||this._initImage(),t._panes.overlayPane.appendChild(this._image),t.on("viewreset",this._reset,this),t.options.zoomAnimation&&o.Browser.any3d&&t.on("zoomanim",this._animateZoom,this),this._reset()},onRemove:function(t){t.getPanes().overlayPane.removeChild(this._image),t.off("viewreset",this._reset,this),t.options.zoomAnimation&&t.off("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},setOpacity:function(t){return this.options.opacity=t,this._updateOpacity(),this},bringToFront:function(){return this._image&&this._map._panes.overlayPane.appendChild(this._image),this},bringToBack:function(){var t=this._map._panes.overlayPane;return this._image&&t.insertBefore(this._image,t.firstChild),this},setUrl:function(t){this._url=t,this._image.src=this._url},getAttribution:function(){return this.options.attribution},_initImage:function(){this._image=o.DomUtil.create("img","leaflet-image-layer"),this._map.options.zoomAnimation&&o.Browser.any3d?o.DomUtil.addClass(this._image,"leaflet-zoom-animated"):o.DomUtil.addClass(this._image,"leaflet-zoom-hide"),this._updateOpacity(),o.extend(this._image,{galleryimg:"no",onselectstart:o.Util.falseFn,onmousemove:o.Util.falseFn,onload:o.bind(this._onImageLoad,this),src:this._url})},_animateZoom:function(t){var e=this._map,i=this._image,n=e.getZoomScale(t.zoom),s=this._bounds.getNorthWest(),a=this._bounds.getSouthEast(),r=e._latLngToNewLayerPoint(s,t.zoom,t.center),h=e._latLngToNewLayerPoint(a,t.zoom,t.center)._subtract(r),l=r._add(h._multiplyBy(.5*(1-1/n)));i.style[o.DomUtil.TRANSFORM]=o.DomUtil.getTranslateString(l)+" scale("+n+") "},_reset:function(){var t=this._image,e=this._map.latLngToLayerPoint(this._bounds.getNorthWest()),i=this._map.latLngToLayerPoint(this._bounds.getSouthEast())._subtract(e);o.DomUtil.setPosition(t,e),t.style.width=i.x+"px",t.style.height=i.y+"px"},_onImageLoad:function(){this.fire("load")},_updateOpacity:function(){o.DomUtil.setOpacity(this._image,this.options.opacity)}}),o.imageOverlay=function(t,e,i){return new o.ImageOverlay(t,e,i)},o.Icon=o.Class.extend({options:{className:""},initialize:function(t){o.setOptions(this,t)},createIcon:function(t){return this._createIcon("icon",t)},createShadow:function(t){return this._createIcon("shadow",t)},_createIcon:function(t,e){var i=this._getIconUrl(t);if(!i){if("icon"===t)throw new Error("iconUrl not set in Icon options (see the docs).");return null}var n;return n=e&&"IMG"===e.tagName?this._createImg(i,e):this._createImg(i),this._setIconStyles(n,t),n},_setIconStyles:function(t,e){var i,n=this.options,s=o.point(n[e+"Size"]);i=o.point("shadow"===e?n.shadowAnchor||n.iconAnchor:n.iconAnchor),!i&&s&&(i=s.divideBy(2,!0)),t.className="leaflet-marker-"+e+" "+n.className,i&&(t.style.marginLeft=-i.x+"px",t.style.marginTop=-i.y+"px"),s&&(t.style.width=s.x+"px",t.style.height=s.y+"px")},_createImg:function(t,i){return i=i||e.createElement("img"),i.src=t,i},_getIconUrl:function(t){return o.Browser.retina&&this.options[t+"RetinaUrl"]?this.options[t+"RetinaUrl"]:this.options[t+"Url"]}}),o.icon=function(t){return new o.Icon(t)},o.Icon.Default=o.Icon.extend({options:{iconSize:[25,41],iconAnchor:[12,41],popupAnchor:[1,-34],shadowSize:[41,41]},_getIconUrl:function(t){var e=t+"Url";if(this.options[e])return this.options[e];o.Browser.retina&&"icon"===t&&(t+="-2x");var i=o.Icon.Default.imagePath;if(!i)throw new Error("Couldn't autodetect L.Icon.Default.imagePath, set it manually.");return i+"/marker-"+t+".png"}}),o.Icon.Default.imagePath=function(){var t,i,n,o,s,a=e.getElementsByTagName("script"),r=/[\/^]leaflet[\-\._]?([\w\-\._]*)\.js\??/;for(t=0,i=a.length;i>t;t++)if(n=a[t].src,o=n.match(r))return s=n.split(r)[0],(s?s+"/":"")+"images"}(),o.Marker=o.Class.extend({includes:o.Mixin.Events,options:{icon:new o.Icon.Default,title:"",alt:"",clickable:!0,draggable:!1,keyboard:!0,zIndexOffset:0,opacity:1,riseOnHover:!1,riseOffset:250},initialize:function(t,e){o.setOptions(this,e),this._latlng=o.latLng(t)},onAdd:function(t){this._map=t,t.on("viewreset",this.update,this),this._initIcon(),this.update(),this.fire("add"),t.options.zoomAnimation&&t.options.markerZoomAnimation&&t.on("zoomanim",this._animateZoom,this)},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){this.dragging&&this.dragging.disable(),this._removeIcon(),this._removeShadow(),this.fire("remove"),t.off({viewreset:this.update,zoomanim:this._animateZoom},this),this._map=null},getLatLng:function(){return this._latlng},setLatLng:function(t){return this._latlng=o.latLng(t),this.update(),this.fire("move",{latlng:this._latlng})},setZIndexOffset:function(t){return this.options.zIndexOffset=t,this.update(),this},setIcon:function(t){return this.options.icon=t,this._map&&(this._initIcon(),this.update()),this._popup&&this.bindPopup(this._popup),this},update:function(){if(this._icon){var t=this._map.latLngToLayerPoint(this._latlng).round();this._setPos(t)}return this},_initIcon:function(){var t=this.options,e=this._map,i=e.options.zoomAnimation&&e.options.markerZoomAnimation,n=i?"leaflet-zoom-animated":"leaflet-zoom-hide",s=t.icon.createIcon(this._icon),a=!1;s!==this._icon&&(this._icon&&this._removeIcon(),a=!0,t.title&&(s.title=t.title),t.alt&&(s.alt=t.alt)),o.DomUtil.addClass(s,n),t.keyboard&&(s.tabIndex="0"),this._icon=s,this._initInteraction(),t.riseOnHover&&o.DomEvent.on(s,"mouseover",this._bringToFront,this).on(s,"mouseout",this._resetZIndex,this);var r=t.icon.createShadow(this._shadow),h=!1;r!==this._shadow&&(this._removeShadow(),h=!0),r&&o.DomUtil.addClass(r,n),this._shadow=r,t.opacity<1&&this._updateOpacity();var l=this._map._panes;a&&l.markerPane.appendChild(this._icon),r&&h&&l.shadowPane.appendChild(this._shadow)},_removeIcon:function(){this.options.riseOnHover&&o.DomEvent.off(this._icon,"mouseover",this._bringToFront).off(this._icon,"mouseout",this._resetZIndex),this._map._panes.markerPane.removeChild(this._icon),this._icon=null},_removeShadow:function(){this._shadow&&this._map._panes.shadowPane.removeChild(this._shadow),this._shadow=null},_setPos:function(t){o.DomUtil.setPosition(this._icon,t),this._shadow&&o.DomUtil.setPosition(this._shadow,t),this._zIndex=t.y+this.options.zIndexOffset,this._resetZIndex()},_updateZIndex:function(t){this._icon.style.zIndex=this._zIndex+t},_animateZoom:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center).round();this._setPos(e)},_initInteraction:function(){if(this.options.clickable){var t=this._icon,e=["dblclick","mousedown","mouseover","mouseout","contextmenu"];o.DomUtil.addClass(t,"leaflet-clickable"),o.DomEvent.on(t,"click",this._onMouseClick,this),o.DomEvent.on(t,"keypress",this._onKeyPress,this);for(var i=0;is?(e.height=s+"px",o.DomUtil.addClass(t,a)):o.DomUtil.removeClass(t,a),this._containerWidth=this._container.offsetWidth},_updatePosition:function(){if(this._map){var t=this._map.latLngToLayerPoint(this._latlng),e=this._animated,i=o.point(this.options.offset);e&&o.DomUtil.setPosition(this._container,t),this._containerBottom=-i.y-(e?0:t.y),this._containerLeft=-Math.round(this._containerWidth/2)+i.x+(e?0:t.x),this._container.style.bottom=this._containerBottom+"px",this._container.style.left=this._containerLeft+"px"}},_zoomAnimation:function(t){var e=this._map._latLngToNewLayerPoint(this._latlng,t.zoom,t.center);o.DomUtil.setPosition(this._container,e)},_adjustPan:function(){if(this.options.autoPan){var t=this._map,e=this._container.offsetHeight,i=this._containerWidth,n=new o.Point(this._containerLeft,-e-this._containerBottom);this._animated&&n._add(o.DomUtil.getPosition(this._container));var s=t.layerPointToContainerPoint(n),a=o.point(this.options.autoPanPadding),r=o.point(this.options.autoPanPaddingTopLeft||a),h=o.point(this.options.autoPanPaddingBottomRight||a),l=t.getSize(),u=0,c=0;s.x+i+h.x>l.x&&(u=s.x+i-l.x+h.x),s.x-u-r.x<0&&(u=s.x-r.x),s.y+e+h.y>l.y&&(c=s.y+e-l.y+h.y),s.y-c-r.y<0&&(c=s.y-r.y),(u||c)&&t.fire("autopanstart").panBy([u,c])}},_onCloseButtonClick:function(t){this._close(),o.DomEvent.stop(t)}}),o.popup=function(t,e){return new o.Popup(t,e)},o.Map.include({openPopup:function(t,e,i){if(this.closePopup(),!(t instanceof o.Popup)){var n=t;t=new o.Popup(i).setLatLng(e).setContent(n)}return t._isOpen=!0,this._popup=t,this.addLayer(t)},closePopup:function(t){return t&&t!==this._popup||(t=this._popup,this._popup=null),t&&(this.removeLayer(t),t._isOpen=!1),this}}),o.Marker.include({openPopup:function(){return this._popup&&this._map&&!this._map.hasLayer(this._popup)&&(this._popup.setLatLng(this._latlng),this._map.openPopup(this._popup)),this},closePopup:function(){return this._popup&&this._popup._close(),this},togglePopup:function(){return this._popup&&(this._popup._isOpen?this.closePopup():this.openPopup()),this},bindPopup:function(t,e){var i=o.point(this.options.icon.options.popupAnchor||[0,0]);return i=i.add(o.Popup.prototype.options.offset),e&&e.offset&&(i=i.add(e.offset)),e=o.extend({offset:i},e),this._popupHandlersAdded||(this.on("click",this.togglePopup,this).on("remove",this.closePopup,this).on("move",this._movePopup,this),this._popupHandlersAdded=!0),t instanceof o.Popup?(o.setOptions(t,e),this._popup=t):this._popup=new o.Popup(e,this).setContent(t),this},setPopupContent:function(t){return this._popup&&this._popup.setContent(t),this},unbindPopup:function(){return this._popup&&(this._popup=null,this.off("click",this.togglePopup,this).off("remove",this.closePopup,this).off("move",this._movePopup,this),this._popupHandlersAdded=!1),this},getPopup:function(){return this._popup},_movePopup:function(t){this._popup.setLatLng(t.latlng)}}),o.LayerGroup=o.Class.extend({initialize:function(t){this._layers={};var e,i;if(t)for(e=0,i=t.length;i>e;e++)this.addLayer(t[e])},addLayer:function(t){var e=this.getLayerId(t);return this._layers[e]=t,this._map&&this._map.addLayer(t),this},removeLayer:function(t){var e=t in this._layers?t:this.getLayerId(t);return this._map&&this._layers[e]&&this._map.removeLayer(this._layers[e]),delete this._layers[e],this},hasLayer:function(t){return t?t in this._layers||this.getLayerId(t)in this._layers:!1},clearLayers:function(){return this.eachLayer(this.removeLayer,this),this},invoke:function(t){var e,i,n=Array.prototype.slice.call(arguments,1);for(e in this._layers)i=this._layers[e],i[t]&&i[t].apply(i,n);return this},onAdd:function(t){this._map=t,this.eachLayer(t.addLayer,t)},onRemove:function(t){this.eachLayer(t.removeLayer,t),this._map=null},addTo:function(t){return t.addLayer(this),this},eachLayer:function(t,e){for(var i in this._layers)t.call(e,this._layers[i]);return this},getLayer:function(t){return this._layers[t]},getLayers:function(){var t=[];for(var e in this._layers)t.push(this._layers[e]);return t},setZIndex:function(t){return this.invoke("setZIndex",t)},getLayerId:function(t){return o.stamp(t)}}),o.layerGroup=function(t){return new o.LayerGroup(t)},o.FeatureGroup=o.LayerGroup.extend({includes:o.Mixin.Events,statics:{EVENTS:"click dblclick mouseover mouseout mousemove contextmenu popupopen popupclose"},addLayer:function(t){return this.hasLayer(t)?this:("on"in t&&t.on(o.FeatureGroup.EVENTS,this._propagateEvent,this),o.LayerGroup.prototype.addLayer.call(this,t),this._popupContent&&t.bindPopup&&t.bindPopup(this._popupContent,this._popupOptions),this.fire("layeradd",{layer:t}))},removeLayer:function(t){return this.hasLayer(t)?(t in this._layers&&(t=this._layers[t]),t.off(o.FeatureGroup.EVENTS,this._propagateEvent,this),o.LayerGroup.prototype.removeLayer.call(this,t),this._popupContent&&this.invoke("unbindPopup"),this.fire("layerremove",{layer:t})):this},bindPopup:function(t,e){return this._popupContent=t,this._popupOptions=e,this.invoke("bindPopup",t,e)},openPopup:function(t){for(var e in this._layers){this._layers[e].openPopup(t);break}return this},setStyle:function(t){return this.invoke("setStyle",t)},bringToFront:function(){return this.invoke("bringToFront")},bringToBack:function(){return this.invoke("bringToBack")},getBounds:function(){var t=new o.LatLngBounds;return this.eachLayer(function(e){t.extend(e instanceof o.Marker?e.getLatLng():e.getBounds())}),t},_propagateEvent:function(t){t=o.extend({layer:t.target,target:this},t),this.fire(t.type,t)}}),o.featureGroup=function(t){return new o.FeatureGroup(t)},o.Path=o.Class.extend({includes:[o.Mixin.Events],statics:{CLIP_PADDING:function(){var e=o.Browser.mobile?1280:2e3,i=(e/Math.max(t.outerWidth,t.outerHeight)-1)/2;return Math.max(0,Math.min(.5,i))}()},options:{stroke:!0,color:"#0033ff",dashArray:null,lineCap:null,lineJoin:null,weight:5,opacity:.5,fill:!1,fillColor:null,fillOpacity:.2,clickable:!0},initialize:function(t){o.setOptions(this,t)},onAdd:function(t){this._map=t,this._container||(this._initElements(),this._initEvents()),this.projectLatlngs(),this._updatePath(),this._container&&this._map._pathRoot.appendChild(this._container),this.fire("add"),t.on({viewreset:this.projectLatlngs,moveend:this._updatePath},this)},addTo:function(t){return t.addLayer(this),this},onRemove:function(t){t._pathRoot.removeChild(this._container),this.fire("remove"),this._map=null,o.Browser.vml&&(this._container=null,this._stroke=null,this._fill=null),t.off({viewreset:this.projectLatlngs,moveend:this._updatePath},this)},projectLatlngs:function(){},setStyle:function(t){return o.setOptions(this,t),this._container&&this._updateStyle(),this},redraw:function(){return this._map&&(this.projectLatlngs(),this._updatePath()),this}}),o.Map.include({_updatePathViewport:function(){var t=o.Path.CLIP_PADDING,e=this.getSize(),i=o.DomUtil.getPosition(this._mapPane),n=i.multiplyBy(-1)._subtract(e.multiplyBy(t)._round()),s=n.add(e.multiplyBy(1+2*t)._round());this._pathViewport=new o.Bounds(n,s)}}),o.Path.SVG_NS="http://www.w3.org/2000/svg",o.Browser.svg=!(!e.createElementNS||!e.createElementNS(o.Path.SVG_NS,"svg").createSVGRect),o.Path=o.Path.extend({statics:{SVG:o.Browser.svg},bringToFront:function(){var t=this._map._pathRoot,e=this._container;return e&&t.lastChild!==e&&t.appendChild(e),this},bringToBack:function(){var t=this._map._pathRoot,e=this._container,i=t.firstChild;return e&&i!==e&&t.insertBefore(e,i),this},getPathString:function(){},_createElement:function(t){return e.createElementNS(o.Path.SVG_NS,t)},_initElements:function(){this._map._initPathRoot(),this._initPath(),this._initStyle()},_initPath:function(){this._container=this._createElement("g"),this._path=this._createElement("path"),this.options.className&&o.DomUtil.addClass(this._path,this.options.className),this._container.appendChild(this._path)},_initStyle:function(){this.options.stroke&&(this._path.setAttribute("stroke-linejoin","round"),this._path.setAttribute("stroke-linecap","round")),this.options.fill&&this._path.setAttribute("fill-rule","evenodd"),this.options.pointerEvents&&this._path.setAttribute("pointer-events",this.options.pointerEvents),this.options.clickable||this.options.pointerEvents||this._path.setAttribute("pointer-events","none"),this._updateStyle()},_updateStyle:function(){this.options.stroke?(this._path.setAttribute("stroke",this.options.color),this._path.setAttribute("stroke-opacity",this.options.opacity),this._path.setAttribute("stroke-width",this.options.weight),this.options.dashArray?this._path.setAttribute("stroke-dasharray",this.options.dashArray):this._path.removeAttribute("stroke-dasharray"),this.options.lineCap&&this._path.setAttribute("stroke-linecap",this.options.lineCap),this.options.lineJoin&&this._path.setAttribute("stroke-linejoin",this.options.lineJoin)):this._path.setAttribute("stroke","none"),this.options.fill?(this._path.setAttribute("fill",this.options.fillColor||this.options.color),this._path.setAttribute("fill-opacity",this.options.fillOpacity)):this._path.setAttribute("fill","none")},_updatePath:function(){var t=this.getPathString();t||(t="M0 0"),this._path.setAttribute("d",t)},_initEvents:function(){if(this.options.clickable){(o.Browser.svg||!o.Browser.vml)&&o.DomUtil.addClass(this._path,"leaflet-clickable"),o.DomEvent.on(this._container,"click",this._onMouseClick,this);for(var t=["dblclick","mousedown","mouseover","mouseout","mousemove","contextmenu"],e=0;e';var i=t.firstChild;return i.style.behavior="url(#default#VML)",i&&"object"==typeof i.adj}catch(n){return!1}}(),o.Path=o.Browser.svg||!o.Browser.vml?o.Path:o.Path.extend({statics:{VML:!0,CLIP_PADDING:.02},_createElement:function(){try{return e.namespaces.add("lvml","urn:schemas-microsoft-com:vml"),function(t){return e.createElement("')}}catch(t){return function(t){return e.createElement("<"+t+' xmlns="urn:schemas-microsoft.com:vml" class="lvml">')}}}(),_initPath:function(){var t=this._container=this._createElement("shape");o.DomUtil.addClass(t,"leaflet-vml-shape"+(this.options.className?" "+this.options.className:"")),this.options.clickable&&o.DomUtil.addClass(t,"leaflet-clickable"),t.coordsize="1 1",this._path=this._createElement("path"),t.appendChild(this._path),this._map._pathRoot.appendChild(t)},_initStyle:function(){this._updateStyle()},_updateStyle:function(){var t=this._stroke,e=this._fill,i=this.options,n=this._container;n.stroked=i.stroke,n.filled=i.fill,i.stroke?(t||(t=this._stroke=this._createElement("stroke"),t.endcap="round",n.appendChild(t)),t.weight=i.weight+"px",t.color=i.color,t.opacity=i.opacity,t.dashStyle=i.dashArray?o.Util.isArray(i.dashArray)?i.dashArray.join(" "):i.dashArray.replace(/( *, *)/g," "):"",i.lineCap&&(t.endcap=i.lineCap.replace("butt","flat")),i.lineJoin&&(t.joinstyle=i.lineJoin)):t&&(n.removeChild(t),this._stroke=null),i.fill?(e||(e=this._fill=this._createElement("fill"),n.appendChild(e)),e.color=i.fillColor||i.color,e.opacity=i.fillOpacity):e&&(n.removeChild(e),this._fill=null)},_updatePath:function(){var t=this._container.style;t.display="none",this._path.v=this.getPathString()+" ",t.display=""}}),o.Map.include(o.Browser.svg||!o.Browser.vml?{}:{_initPathRoot:function(){if(!this._pathRoot){var t=this._pathRoot=e.createElement("div");t.className="leaflet-vml-container",this._panes.overlayPane.appendChild(t),this.on("moveend",this._updatePathViewport),this._updatePathViewport()}}}),o.Browser.canvas=function(){return!!e.createElement("canvas").getContext}(),o.Path=o.Path.SVG&&!t.L_PREFER_CANVAS||!o.Browser.canvas?o.Path:o.Path.extend({statics:{CANVAS:!0,SVG:!1},redraw:function(){return this._map&&(this.projectLatlngs(),this._requestUpdate()),this},setStyle:function(t){return o.setOptions(this,t),this._map&&(this._updateStyle(),this._requestUpdate()),this},onRemove:function(t){t.off("viewreset",this.projectLatlngs,this).off("moveend",this._updatePath,this),this.options.clickable&&(this._map.off("click",this._onClick,this),this._map.off("mousemove",this._onMouseMove,this)),this._requestUpdate(),this.fire("remove"),this._map=null},_requestUpdate:function(){this._map&&!o.Path._updateRequest&&(o.Path._updateRequest=o.Util.requestAnimFrame(this._fireMapMoveEnd,this._map))},_fireMapMoveEnd:function(){o.Path._updateRequest=null,this.fire("moveend")},_initElements:function(){this._map._initPathRoot(),this._ctx=this._map._canvasCtx},_updateStyle:function(){var t=this.options;t.stroke&&(this._ctx.lineWidth=t.weight,this._ctx.strokeStyle=t.color),t.fill&&(this._ctx.fillStyle=t.fillColor||t.color)},_drawPath:function(){var t,e,i,n,s,a;for(this._ctx.beginPath(),t=0,i=this._parts.length;i>t;t++){for(e=0,n=this._parts[t].length;n>e;e++)s=this._parts[t][e],a=(0===e?"move":"line")+"To",this._ctx[a](s.x,s.y);this instanceof o.Polygon&&this._ctx.closePath()}},_checkIfEmpty:function(){return!this._parts.length},_updatePath:function(){if(!this._checkIfEmpty()){var t=this._ctx,e=this.options;this._drawPath(),t.save(),this._updateStyle(),e.fill&&(t.globalAlpha=e.fillOpacity,t.fill()),e.stroke&&(t.globalAlpha=e.opacity,t.stroke()),t.restore()}},_initEvents:function(){this.options.clickable&&(this._map.on("mousemove",this._onMouseMove,this),this._map.on("click",this._onClick,this))},_onClick:function(t){this._containsPoint(t.layerPoint)&&this.fire("click",t)},_onMouseMove:function(t){this._map&&!this._map._animatingZoom&&(this._containsPoint(t.layerPoint)?(this._ctx.canvas.style.cursor="pointer",this._mouseInside=!0,this.fire("mouseover",t)):this._mouseInside&&(this._ctx.canvas.style.cursor="",this._mouseInside=!1,this.fire("mouseout",t)))}}),o.Map.include(o.Path.SVG&&!t.L_PREFER_CANVAS||!o.Browser.canvas?{}:{_initPathRoot:function(){var t,i=this._pathRoot;i||(i=this._pathRoot=e.createElement("canvas"),i.style.position="absolute",t=this._canvasCtx=i.getContext("2d"),t.lineCap="round",t.lineJoin="round",this._panes.overlayPane.appendChild(i),this.options.zoomAnimation&&(this._pathRoot.className="leaflet-zoom-animated",this.on("zoomanim",this._animatePathZoom),this.on("zoomend",this._endPathZoom)),this.on("moveend",this._updateCanvasViewport),this._updateCanvasViewport())},_updateCanvasViewport:function(){if(!this._pathZooming){this._updatePathViewport();var t=this._pathViewport,e=t.min,i=t.max.subtract(e),n=this._pathRoot;o.DomUtil.setPosition(n,e),n.width=i.x,n.height=i.y,n.getContext("2d").translate(-e.x,-e.y)}}}),o.LineUtil={simplify:function(t,e){if(!e||!t.length)return t.slice();var i=e*e;return t=this._reducePoints(t,i),t=this._simplifyDP(t,i)},pointToSegmentDistance:function(t,e,i){return Math.sqrt(this._sqClosestPointOnSegment(t,e,i,!0))},closestPointOnSegment:function(t,e,i){return this._sqClosestPointOnSegment(t,e,i)},_simplifyDP:function(t,e){var n=t.length,o=typeof Uint8Array!=i+""?Uint8Array:Array,s=new o(n);s[0]=s[n-1]=1,this._simplifyDPStep(t,s,e,0,n-1);var a,r=[];for(a=0;n>a;a++)s[a]&&r.push(t[a]);return r},_simplifyDPStep:function(t,e,i,n,o){var s,a,r,h=0;for(a=n+1;o-1>=a;a++)r=this._sqClosestPointOnSegment(t[a],t[n],t[o],!0),r>h&&(s=a,h=r);h>i&&(e[s]=1,this._simplifyDPStep(t,e,i,n,s),this._simplifyDPStep(t,e,i,s,o))},_reducePoints:function(t,e){for(var i=[t[0]],n=1,o=0,s=t.length;s>n;n++)this._sqDist(t[n],t[o])>e&&(i.push(t[n]),o=n);return s-1>o&&i.push(t[s-1]),i},clipSegment:function(t,e,i,n){var o,s,a,r=n?this._lastCode:this._getBitCode(t,i),h=this._getBitCode(e,i);for(this._lastCode=h;;){if(!(r|h))return[t,e];if(r&h)return!1;o=r||h,s=this._getEdgeIntersection(t,e,o,i),a=this._getBitCode(s,i),o===r?(t=s,r=a):(e=s,h=a)}},_getEdgeIntersection:function(t,e,i,n){var s=e.x-t.x,a=e.y-t.y,r=n.min,h=n.max;return 8&i?new o.Point(t.x+s*(h.y-t.y)/a,h.y):4&i?new o.Point(t.x+s*(r.y-t.y)/a,r.y):2&i?new o.Point(h.x,t.y+a*(h.x-t.x)/s):1&i?new o.Point(r.x,t.y+a*(r.x-t.x)/s):void 0},_getBitCode:function(t,e){var i=0;return t.xe.max.x&&(i|=2),t.ye.max.y&&(i|=8),i},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n},_sqClosestPointOnSegment:function(t,e,i,n){var s,a=e.x,r=e.y,h=i.x-a,l=i.y-r,u=h*h+l*l;return u>0&&(s=((t.x-a)*h+(t.y-r)*l)/u,s>1?(a=i.x,r=i.y):s>0&&(a+=h*s,r+=l*s)),h=t.x-a,l=t.y-r,n?h*h+l*l:new o.Point(a,r)}},o.Polyline=o.Path.extend({initialize:function(t,e){o.Path.prototype.initialize.call(this,e),this._latlngs=this._convertLatLngs(t)},options:{smoothFactor:1,noClip:!1},projectLatlngs:function(){this._originalPoints=[];for(var t=0,e=this._latlngs.length;e>t;t++)this._originalPoints[t]=this._map.latLngToLayerPoint(this._latlngs[t])},getPathString:function(){for(var t=0,e=this._parts.length,i="";e>t;t++)i+=this._getPathPartStr(this._parts[t]);return i},getLatLngs:function(){return this._latlngs},setLatLngs:function(t){return this._latlngs=this._convertLatLngs(t),this.redraw()},addLatLng:function(t){return this._latlngs.push(o.latLng(t)),this.redraw()},spliceLatLngs:function(){var t=[].splice.apply(this._latlngs,arguments);return this._convertLatLngs(this._latlngs,!0),this.redraw(),t},closestLayerPoint:function(t){for(var e,i,n=1/0,s=this._parts,a=null,r=0,h=s.length;h>r;r++)for(var l=s[r],u=1,c=l.length;c>u;u++){e=l[u-1],i=l[u];var d=o.LineUtil._sqClosestPointOnSegment(t,e,i,!0);n>d&&(n=d,a=o.LineUtil._sqClosestPointOnSegment(t,e,i))}return a&&(a.distance=Math.sqrt(n)),a},getBounds:function(){return new o.LatLngBounds(this.getLatLngs())},_convertLatLngs:function(t,e){var i,n,s=e?t:[];for(i=0,n=t.length;n>i;i++){if(o.Util.isArray(t[i])&&"number"!=typeof t[i][0])return;s[i]=o.latLng(t[i])}return s},_initEvents:function(){o.Path.prototype._initEvents.call(this)},_getPathPartStr:function(t){for(var e,i=o.Path.VML,n=0,s=t.length,a="";s>n;n++)e=t[n],i&&e._round(),a+=(n?"L":"M")+e.x+" "+e.y;return a},_clipPoints:function(){var t,e,i,n=this._originalPoints,s=n.length;if(this.options.noClip)return void(this._parts=[n]);this._parts=[];var a=this._parts,r=this._map._pathViewport,h=o.LineUtil;for(t=0,e=0;s-1>t;t++)i=h.clipSegment(n[t],n[t+1],r,t),i&&(a[e]=a[e]||[],a[e].push(i[0]),(i[1]!==n[t+1]||t===s-2)&&(a[e].push(i[1]),e++))},_simplifyPoints:function(){for(var t=this._parts,e=o.LineUtil,i=0,n=t.length;n>i;i++)t[i]=e.simplify(t[i],this.options.smoothFactor)},_updatePath:function(){this._map&&(this._clipPoints(),this._simplifyPoints(),o.Path.prototype._updatePath.call(this))}}),o.polyline=function(t,e){return new o.Polyline(t,e)},o.PolyUtil={},o.PolyUtil.clipPolygon=function(t,e){var i,n,s,a,r,h,l,u,c,d=[1,4,2,8],p=o.LineUtil;for(n=0,l=t.length;l>n;n++)t[n]._code=p._getBitCode(t[n],e);for(a=0;4>a;a++){for(u=d[a],i=[],n=0,l=t.length,s=l-1;l>n;s=n++)r=t[n],h=t[s],r._code&u?h._code&u||(c=p._getEdgeIntersection(h,r,u,e),c._code=p._getBitCode(c,e),i.push(c)):(h._code&u&&(c=p._getEdgeIntersection(h,r,u,e),c._code=p._getBitCode(c,e),i.push(c)),i.push(r));t=i}return t},o.Polygon=o.Polyline.extend({options:{fill:!0},initialize:function(t,e){o.Polyline.prototype.initialize.call(this,t,e),this._initWithHoles(t)},_initWithHoles:function(t){var e,i,n;if(t&&o.Util.isArray(t[0])&&"number"!=typeof t[0][0])for(this._latlngs=this._convertLatLngs(t[0]),this._holes=t.slice(1),e=0,i=this._holes.length;i>e;e++)n=this._holes[e]=this._convertLatLngs(this._holes[e]),n[0].equals(n[n.length-1])&&n.pop();t=this._latlngs,t.length>=2&&t[0].equals(t[t.length-1])&&t.pop()},projectLatlngs:function(){if(o.Polyline.prototype.projectLatlngs.call(this),this._holePoints=[],this._holes){var t,e,i,n;for(t=0,i=this._holes.length;i>t;t++)for(this._holePoints[t]=[],e=0,n=this._holes[t].length;n>e;e++)this._holePoints[t][e]=this._map.latLngToLayerPoint(this._holes[t][e])}},setLatLngs:function(t){return t&&o.Util.isArray(t[0])&&"number"!=typeof t[0][0]?(this._initWithHoles(t),this.redraw()):o.Polyline.prototype.setLatLngs.call(this,t)},_clipPoints:function(){var t=this._originalPoints,e=[];if(this._parts=[t].concat(this._holePoints),!this.options.noClip){for(var i=0,n=this._parts.length;n>i;i++){var s=o.PolyUtil.clipPolygon(this._parts[i],this._map._pathViewport);s.length&&e.push(s)}this._parts=e}},_getPathPartStr:function(t){var e=o.Polyline.prototype._getPathPartStr.call(this,t);return e+(o.Browser.svg?"z":"x")}}),o.polygon=function(t,e){return new o.Polygon(t,e)},function(){function t(t){return o.FeatureGroup.extend({initialize:function(t,e){this._layers={},this._options=e,this.setLatLngs(t)},setLatLngs:function(e){var i=0,n=e.length;for(this.eachLayer(function(t){n>i?t.setLatLngs(e[i++]):this.removeLayer(t)},this);n>i;)this.addLayer(new t(e[i++],this._options));return this},getLatLngs:function(){var t=[];return this.eachLayer(function(e){t.push(e.getLatLngs())}),t}})}o.MultiPolyline=t(o.Polyline),o.MultiPolygon=t(o.Polygon),o.multiPolyline=function(t,e){return new o.MultiPolyline(t,e)},o.multiPolygon=function(t,e){return new o.MultiPolygon(t,e)}}(),o.Rectangle=o.Polygon.extend({initialize:function(t,e){o.Polygon.prototype.initialize.call(this,this._boundsToLatLngs(t),e)},setBounds:function(t){this.setLatLngs(this._boundsToLatLngs(t))},_boundsToLatLngs:function(t){return t=o.latLngBounds(t),[t.getSouthWest(),t.getNorthWest(),t.getNorthEast(),t.getSouthEast()]}}),o.rectangle=function(t,e){return new o.Rectangle(t,e)},o.Circle=o.Path.extend({initialize:function(t,e,i){o.Path.prototype.initialize.call(this,i),this._latlng=o.latLng(t),this._mRadius=e},options:{fill:!0},setLatLng:function(t){return this._latlng=o.latLng(t),this.redraw()},setRadius:function(t){return this._mRadius=t,this.redraw()},projectLatlngs:function(){var t=this._getLngRadius(),e=this._latlng,i=this._map.latLngToLayerPoint([e.lat,e.lng-t]);this._point=this._map.latLngToLayerPoint(e),this._radius=Math.max(this._point.x-i.x,1)},getBounds:function(){var t=this._getLngRadius(),e=this._mRadius/40075017*360,i=this._latlng;return new o.LatLngBounds([i.lat-e,i.lng-t],[i.lat+e,i.lng+t])},getLatLng:function(){return this._latlng},getPathString:function(){var t=this._point,e=this._radius;return this._checkIfEmpty()?"":o.Browser.svg?"M"+t.x+","+(t.y-e)+"A"+e+","+e+",0,1,1,"+(t.x-.1)+","+(t.y-e)+" z":(t._round(),e=Math.round(e),"AL "+t.x+","+t.y+" "+e+","+e+" 0,23592600")},getRadius:function(){return this._mRadius},_getLatRadius:function(){return this._mRadius/40075017*360},_getLngRadius:function(){return this._getLatRadius()/Math.cos(o.LatLng.DEG_TO_RAD*this._latlng.lat)},_checkIfEmpty:function(){if(!this._map)return!1;var t=this._map._pathViewport,e=this._radius,i=this._point;return i.x-e>t.max.x||i.y-e>t.max.y||i.x+ei;i++)for(l=this._parts[i],n=0,r=l.length,s=r-1;r>n;s=n++)if((e||0!==n)&&(h=o.LineUtil.pointToSegmentDistance(t,l[s],l[n]),u>=h))return!0;return!1}}:{}),o.Polygon.include(o.Path.CANVAS?{_containsPoint:function(t){var e,i,n,s,a,r,h,l,u=!1;if(o.Polyline.prototype._containsPoint.call(this,t,!0))return!0;for(s=0,h=this._parts.length;h>s;s++)for(e=this._parts[s],a=0,l=e.length,r=l-1;l>a;r=a++)i=e[a],n=e[r],i.y>t.y!=n.y>t.y&&t.x<(n.x-i.x)*(t.y-i.y)/(n.y-i.y)+i.x&&(u=!u);return u}}:{}),o.Circle.include(o.Path.CANVAS?{_drawPath:function(){var t=this._point;this._ctx.beginPath(),this._ctx.arc(t.x,t.y,this._radius,0,2*Math.PI,!1)},_containsPoint:function(t){var e=this._point,i=this.options.stroke?this.options.weight/2:0;return t.distanceTo(e)<=this._radius+i}}:{}),o.CircleMarker.include(o.Path.CANVAS?{_updateStyle:function(){o.Path.prototype._updateStyle.call(this)}}:{}),o.GeoJSON=o.FeatureGroup.extend({initialize:function(t,e){o.setOptions(this,e),this._layers={},t&&this.addData(t)},addData:function(t){var e,i,n,s=o.Util.isArray(t)?t:t.features;if(s){for(e=0,i=s.length;i>e;e++)n=s[e],(n.geometries||n.geometry||n.features||n.coordinates)&&this.addData(s[e]);return this}var a=this.options;if(!a.filter||a.filter(t)){var r=o.GeoJSON.geometryToLayer(t,a.pointToLayer,a.coordsToLatLng,a);return r.feature=o.GeoJSON.asFeature(t),r.defaultOptions=r.options,this.resetStyle(r),a.onEachFeature&&a.onEachFeature(t,r),this.addLayer(r)}},resetStyle:function(t){var e=this.options.style;e&&(o.Util.extend(t.options,t.defaultOptions),this._setLayerStyle(t,e))},setStyle:function(t){this.eachLayer(function(e){this._setLayerStyle(e,t)},this)},_setLayerStyle:function(t,e){"function"==typeof e&&(e=e(t.feature)),t.setStyle&&t.setStyle(e)}}),o.extend(o.GeoJSON,{geometryToLayer:function(t,e,i,n){var s,a,r,h,l="Feature"===t.type?t.geometry:t,u=l.coordinates,c=[];switch(i=i||this.coordsToLatLng,l.type){case"Point":return s=i(u),e?e(t,s):new o.Marker(s);case"MultiPoint":for(r=0,h=u.length;h>r;r++)s=i(u[r]),c.push(e?e(t,s):new o.Marker(s));return new o.FeatureGroup(c);case"LineString":return a=this.coordsToLatLngs(u,0,i),new o.Polyline(a,n);case"Polygon":if(2===u.length&&!u[1].length)throw new Error("Invalid GeoJSON object.");return a=this.coordsToLatLngs(u,1,i),new o.Polygon(a,n);case"MultiLineString":return a=this.coordsToLatLngs(u,1,i),new o.MultiPolyline(a,n);case"MultiPolygon":return a=this.coordsToLatLngs(u,2,i),new o.MultiPolygon(a,n);case"GeometryCollection":for(r=0,h=l.geometries.length;h>r;r++)c.push(this.geometryToLayer({geometry:l.geometries[r],type:"Feature",properties:t.properties},e,i,n));return new o.FeatureGroup(c);default:throw new Error("Invalid GeoJSON object.")}},coordsToLatLng:function(t){return new o.LatLng(t[1],t[0],t[2])},coordsToLatLngs:function(t,e,i){var n,o,s,a=[];for(o=0,s=t.length;s>o;o++)n=e?this.coordsToLatLngs(t[o],e-1,i):(i||this.coordsToLatLng)(t[o]),a.push(n);return a},latLngToCoords:function(t){var e=[t.lng,t.lat];return t.alt!==i&&e.push(t.alt),e},latLngsToCoords:function(t){for(var e=[],i=0,n=t.length;n>i;i++)e.push(o.GeoJSON.latLngToCoords(t[i]));return e},getFeature:function(t,e){return t.feature?o.extend({},t.feature,{geometry:e}):o.GeoJSON.asFeature(e)},asFeature:function(t){return"Feature"===t.type?t:{type:"Feature",properties:{},geometry:t}}});var a={toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:"Point",coordinates:o.GeoJSON.latLngToCoords(this.getLatLng())})}};o.Marker.include(a),o.Circle.include(a),o.CircleMarker.include(a),o.Polyline.include({toGeoJSON:function(){return o.GeoJSON.getFeature(this,{type:"LineString",coordinates:o.GeoJSON.latLngsToCoords(this.getLatLngs())})}}),o.Polygon.include({toGeoJSON:function(){var t,e,i,n=[o.GeoJSON.latLngsToCoords(this.getLatLngs())];if(n[0].push(n[0][0]),this._holes)for(t=0,e=this._holes.length;e>t;t++)i=o.GeoJSON.latLngsToCoords(this._holes[t]),i.push(i[0]),n.push(i);return o.GeoJSON.getFeature(this,{type:"Polygon",coordinates:n})}}),function(){function t(t){return function(){var e=[];return this.eachLayer(function(t){e.push(t.toGeoJSON().geometry.coordinates)}),o.GeoJSON.getFeature(this,{type:t,coordinates:e})}}o.MultiPolyline.include({toGeoJSON:t("MultiLineString")}),o.MultiPolygon.include({toGeoJSON:t("MultiPolygon")}),o.LayerGroup.include({toGeoJSON:function(){var e,i=this.feature&&this.feature.geometry,n=[];if(i&&"MultiPoint"===i.type)return t("MultiPoint").call(this);var s=i&&"GeometryCollection"===i.type;return this.eachLayer(function(t){t.toGeoJSON&&(e=t.toGeoJSON(),n.push(s?e.geometry:o.GeoJSON.asFeature(e)))}),s?o.GeoJSON.getFeature(this,{geometries:n,type:"GeometryCollection"}):{type:"FeatureCollection",features:n}}})}(),o.geoJson=function(t,e){return new o.GeoJSON(t,e)},o.DomEvent={addListener:function(t,e,i,n){var s,a,r,h=o.stamp(i),l="_leaflet_"+e+h;return t[l]?this:(s=function(e){return i.call(n||t,e||o.DomEvent._getEvent())},o.Browser.pointer&&0===e.indexOf("touch")?this.addPointerListener(t,e,s,h):(o.Browser.touch&&"dblclick"===e&&this.addDoubleTapListener&&this.addDoubleTapListener(t,s,h),"addEventListener"in t?"mousewheel"===e?(t.addEventListener("DOMMouseScroll",s,!1),t.addEventListener(e,s,!1)):"mouseenter"===e||"mouseleave"===e?(a=s,r="mouseenter"===e?"mouseover":"mouseout",s=function(e){return o.DomEvent._checkMouse(t,e)?a(e):void 0},t.addEventListener(r,s,!1)):"click"===e&&o.Browser.android?(a=s,s=function(t){return o.DomEvent._filterClick(t,a)},t.addEventListener(e,s,!1)):t.addEventListener(e,s,!1):"attachEvent"in t&&t.attachEvent("on"+e,s),t[l]=s,this))},removeListener:function(t,e,i){var n=o.stamp(i),s="_leaflet_"+e+n,a=t[s];return a?(o.Browser.pointer&&0===e.indexOf("touch")?this.removePointerListener(t,e,n):o.Browser.touch&&"dblclick"===e&&this.removeDoubleTapListener?this.removeDoubleTapListener(t,n):"removeEventListener"in t?"mousewheel"===e?(t.removeEventListener("DOMMouseScroll",a,!1),t.removeEventListener(e,a,!1)):"mouseenter"===e||"mouseleave"===e?t.removeEventListener("mouseenter"===e?"mouseover":"mouseout",a,!1):t.removeEventListener(e,a,!1):"detachEvent"in t&&t.detachEvent("on"+e,a),t[s]=null,this):this},stopPropagation:function(t){return t.stopPropagation?t.stopPropagation():t.cancelBubble=!0,o.DomEvent._skipped(t),this},disableScrollPropagation:function(t){var e=o.DomEvent.stopPropagation;return o.DomEvent.on(t,"mousewheel",e).on(t,"MozMousePixelScroll",e)},disableClickPropagation:function(t){for(var e=o.DomEvent.stopPropagation,i=o.Draggable.START.length-1;i>=0;i--)o.DomEvent.on(t,o.Draggable.START[i],e);return o.DomEvent.on(t,"click",o.DomEvent._fakeStop).on(t,"dblclick",e)},preventDefault:function(t){return t.preventDefault?t.preventDefault():t.returnValue=!1,this},stop:function(t){return o.DomEvent.preventDefault(t).stopPropagation(t)},getMousePosition:function(t,e){if(!e)return new o.Point(t.clientX,t.clientY);var i=e.getBoundingClientRect();return new o.Point(t.clientX-i.left-e.clientLeft,t.clientY-i.top-e.clientTop)},getWheelDelta:function(t){var e=0;return t.wheelDelta&&(e=t.wheelDelta/120),t.detail&&(e=-t.detail/3),e},_skipEvents:{},_fakeStop:function(t){o.DomEvent._skipEvents[t.type]=!0},_skipped:function(t){var e=this._skipEvents[t.type];return this._skipEvents[t.type]=!1,e},_checkMouse:function(t,e){var i=e.relatedTarget;if(!i)return!0;try{for(;i&&i!==t;)i=i.parentNode}catch(n){return!1}return i!==t},_getEvent:function(){var e=t.event;if(!e)for(var i=arguments.callee.caller;i&&(e=i.arguments[0],!e||t.Event!==e.constructor);)i=i.caller;return e},_filterClick:function(t,e){var i=t.timeStamp||t.originalEvent.timeStamp,n=o.DomEvent._lastClick&&i-o.DomEvent._lastClick;return n&&n>100&&500>n||t.target._simulatedClick&&!t._simulated?void o.DomEvent.stop(t):(o.DomEvent._lastClick=i,e(t))}},o.DomEvent.on=o.DomEvent.addListener,o.DomEvent.off=o.DomEvent.removeListener,o.Draggable=o.Class.extend({includes:o.Mixin.Events,statics:{START:o.Browser.touch?["touchstart","mousedown"]:["mousedown"],END:{mousedown:"mouseup",touchstart:"touchend",pointerdown:"touchend",MSPointerDown:"touchend"},MOVE:{mousedown:"mousemove",touchstart:"touchmove",pointerdown:"touchmove",MSPointerDown:"touchmove"}},initialize:function(t,e){this._element=t,this._dragStartTarget=e||t},enable:function(){if(!this._enabled){for(var t=o.Draggable.START.length-1;t>=0;t--)o.DomEvent.on(this._dragStartTarget,o.Draggable.START[t],this._onDown,this);this._enabled=!0}},disable:function(){if(this._enabled){for(var t=o.Draggable.START.length-1;t>=0;t--)o.DomEvent.off(this._dragStartTarget,o.Draggable.START[t],this._onDown,this);this._enabled=!1,this._moved=!1}},_onDown:function(t){if(this._moved=!1,!(t.shiftKey||1!==t.which&&1!==t.button&&!t.touches||(o.DomEvent.stopPropagation(t),o.Draggable._disabled||(o.DomUtil.disableImageDrag(),o.DomUtil.disableTextSelection(),this._moving)))){var i=t.touches?t.touches[0]:t;this._startPoint=new o.Point(i.clientX,i.clientY),this._startPos=this._newPos=o.DomUtil.getPosition(this._element),o.DomEvent.on(e,o.Draggable.MOVE[t.type],this._onMove,this).on(e,o.Draggable.END[t.type],this._onUp,this)}},_onMove:function(t){if(t.touches&&t.touches.length>1)return void(this._moved=!0);var i=t.touches&&1===t.touches.length?t.touches[0]:t,n=new o.Point(i.clientX,i.clientY),s=n.subtract(this._startPoint);(s.x||s.y)&&(o.Browser.touch&&Math.abs(s.x)+Math.abs(s.y)<3||(o.DomEvent.preventDefault(t),this._moved||(this.fire("dragstart"),this._moved=!0,this._startPos=o.DomUtil.getPosition(this._element).subtract(s),o.DomUtil.addClass(e.body,"leaflet-dragging"),this._lastTarget=t.target||t.srcElement,o.DomUtil.addClass(this._lastTarget,"leaflet-drag-target")),this._newPos=this._startPos.add(s),this._moving=!0,o.Util.cancelAnimFrame(this._animRequest),this._animRequest=o.Util.requestAnimFrame(this._updatePosition,this,!0,this._dragStartTarget)))},_updatePosition:function(){this.fire("predrag"),o.DomUtil.setPosition(this._element,this._newPos),this.fire("drag")},_onUp:function(){o.DomUtil.removeClass(e.body,"leaflet-dragging"),this._lastTarget&&(o.DomUtil.removeClass(this._lastTarget,"leaflet-drag-target"),this._lastTarget=null);for(var t in o.Draggable.MOVE)o.DomEvent.off(e,o.Draggable.MOVE[t],this._onMove).off(e,o.Draggable.END[t],this._onUp);o.DomUtil.enableImageDrag(),o.DomUtil.enableTextSelection(),this._moved&&this._moving&&(o.Util.cancelAnimFrame(this._animRequest),this.fire("dragend",{distance:this._newPos.distanceTo(this._startPos)})),this._moving=!1}}),o.Handler=o.Class.extend({initialize:function(t){this._map=t},enable:function(){this._enabled||(this._enabled=!0,this.addHooks())},disable:function(){this._enabled&&(this._enabled=!1,this.removeHooks())},enabled:function(){return!!this._enabled}}),o.Map.mergeOptions({dragging:!0,inertia:!o.Browser.android23,inertiaDeceleration:3400,inertiaMaxSpeed:1/0,inertiaThreshold:o.Browser.touch?32:18,easeLinearity:.25,worldCopyJump:!1}),o.Map.Drag=o.Handler.extend({addHooks:function(){if(!this._draggable){var t=this._map;this._draggable=new o.Draggable(t._mapPane,t._container),this._draggable.on({dragstart:this._onDragStart,drag:this._onDrag,dragend:this._onDragEnd},this),t.options.worldCopyJump&&(this._draggable.on("predrag",this._onPreDrag,this),t.on("viewreset",this._onViewReset,this),t.whenReady(this._onViewReset,this))}this._draggable.enable()},removeHooks:function(){this._draggable.disable()},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){var t=this._map;t._panAnim&&t._panAnim.stop(),t.fire("movestart").fire("dragstart"),t.options.inertia&&(this._positions=[],this._times=[])},_onDrag:function(){if(this._map.options.inertia){var t=this._lastTime=+new Date,e=this._lastPos=this._draggable._newPos;this._positions.push(e),this._times.push(t),t-this._times[0]>200&&(this._positions.shift(),this._times.shift())}this._map.fire("move").fire("drag")},_onViewReset:function(){var t=this._map.getSize()._divideBy(2),e=this._map.latLngToLayerPoint([0,0]);this._initialWorldOffset=e.subtract(t).x,this._worldWidth=this._map.project([0,180]).x},_onPreDrag:function(){var t=this._worldWidth,e=Math.round(t/2),i=this._initialWorldOffset,n=this._draggable._newPos.x,o=(n-e+i)%t+e-i,s=(n+e+i)%t-e-i,a=Math.abs(o+i)i.inertiaThreshold||!this._positions[0];if(e.fire("dragend",t),s)e.fire("moveend");else{var a=this._lastPos.subtract(this._positions[0]),r=(this._lastTime+n-this._times[0])/1e3,h=i.easeLinearity,l=a.multiplyBy(h/r),u=l.distanceTo([0,0]),c=Math.min(i.inertiaMaxSpeed,u),d=l.multiplyBy(c/u),p=c/(i.inertiaDeceleration*h),_=d.multiplyBy(-p/2).round();_.x&&_.y?(_=e._limitOffset(_,e.options.maxBounds),o.Util.requestAnimFrame(function(){e.panBy(_,{duration:p,easeLinearity:h,noMoveStart:!0})})):e.fire("moveend")}}}),o.Map.addInitHook("addHandler","dragging",o.Map.Drag),o.Map.mergeOptions({doubleClickZoom:!0}),o.Map.DoubleClickZoom=o.Handler.extend({addHooks:function(){this._map.on("dblclick",this._onDoubleClick,this)},removeHooks:function(){this._map.off("dblclick",this._onDoubleClick,this)},_onDoubleClick:function(t){var e=this._map,i=e.getZoom()+(t.originalEvent.shiftKey?-1:1);"center"===e.options.doubleClickZoom?e.setZoom(i):e.setZoomAround(t.containerPoint,i)}}),o.Map.addInitHook("addHandler","doubleClickZoom",o.Map.DoubleClickZoom),o.Map.mergeOptions({scrollWheelZoom:!0}),o.Map.ScrollWheelZoom=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"mousewheel",this._onWheelScroll,this),o.DomEvent.on(this._map._container,"MozMousePixelScroll",o.DomEvent.preventDefault),this._delta=0},removeHooks:function(){o.DomEvent.off(this._map._container,"mousewheel",this._onWheelScroll),o.DomEvent.off(this._map._container,"MozMousePixelScroll",o.DomEvent.preventDefault)},_onWheelScroll:function(t){var e=o.DomEvent.getWheelDelta(t);this._delta+=e,this._lastMousePos=this._map.mouseEventToContainerPoint(t),this._startTime||(this._startTime=+new Date);var i=Math.max(40-(+new Date-this._startTime),0);clearTimeout(this._timer),this._timer=setTimeout(o.bind(this._performZoom,this),i),o.DomEvent.preventDefault(t),o.DomEvent.stopPropagation(t)},_performZoom:function(){var t=this._map,e=this._delta,i=t.getZoom();e=e>0?Math.ceil(e):Math.floor(e),e=Math.max(Math.min(e,4),-4),e=t._limitZoom(i+e)-i,this._delta=0,this._startTime=null,e&&("center"===t.options.scrollWheelZoom?t.setZoom(i+e):t.setZoomAround(this._lastMousePos,i+e))}}),o.Map.addInitHook("addHandler","scrollWheelZoom",o.Map.ScrollWheelZoom),o.extend(o.DomEvent,{_touchstart:o.Browser.msPointer?"MSPointerDown":o.Browser.pointer?"pointerdown":"touchstart",_touchend:o.Browser.msPointer?"MSPointerUp":o.Browser.pointer?"pointerup":"touchend",addDoubleTapListener:function(t,i,n){function s(t){var e;if(o.Browser.pointer?(_.push(t.pointerId),e=_.length):e=t.touches.length,!(e>1)){var i=Date.now(),n=i-(r||i);h=t.touches?t.touches[0]:t,l=n>0&&u>=n,r=i}}function a(t){if(o.Browser.pointer){var e=_.indexOf(t.pointerId);if(-1===e)return;_.splice(e,1)}if(l){if(o.Browser.pointer){var n,s={};for(var a in h)n=h[a],s[a]="function"==typeof n?n.bind(h):n;h=s}h.type="dblclick",i(h),r=null}}var r,h,l=!1,u=250,c="_leaflet_",d=this._touchstart,p=this._touchend,_=[];t[c+d+n]=s,t[c+p+n]=a;var m=o.Browser.pointer?e.documentElement:t;return t.addEventListener(d,s,!1),m.addEventListener(p,a,!1),o.Browser.pointer&&m.addEventListener(o.DomEvent.POINTER_CANCEL,a,!1),this},removeDoubleTapListener:function(t,i){var n="_leaflet_";return t.removeEventListener(this._touchstart,t[n+this._touchstart+i],!1),(o.Browser.pointer?e.documentElement:t).removeEventListener(this._touchend,t[n+this._touchend+i],!1),o.Browser.pointer&&e.documentElement.removeEventListener(o.DomEvent.POINTER_CANCEL,t[n+this._touchend+i],!1),this}}),o.extend(o.DomEvent,{POINTER_DOWN:o.Browser.msPointer?"MSPointerDown":"pointerdown",POINTER_MOVE:o.Browser.msPointer?"MSPointerMove":"pointermove",POINTER_UP:o.Browser.msPointer?"MSPointerUp":"pointerup",POINTER_CANCEL:o.Browser.msPointer?"MSPointerCancel":"pointercancel",_pointers:[],_pointerDocumentListener:!1,addPointerListener:function(t,e,i,n){switch(e){case"touchstart":return this.addPointerListenerStart(t,e,i,n);case"touchend":return this.addPointerListenerEnd(t,e,i,n);case"touchmove":return this.addPointerListenerMove(t,e,i,n);default:throw"Unknown touch event type"}},addPointerListenerStart:function(t,i,n,s){var a="_leaflet_",r=this._pointers,h=function(t){o.DomEvent.preventDefault(t);for(var e=!1,i=0;i1))&&(this._moved||(o.DomUtil.addClass(e._mapPane,"leaflet-touching"),e.fire("movestart").fire("zoomstart"),this._moved=!0),o.Util.cancelAnimFrame(this._animRequest),this._animRequest=o.Util.requestAnimFrame(this._updateOnMove,this,!0,this._map._container),o.DomEvent.preventDefault(t))}},_updateOnMove:function(){var t=this._map,e=this._getScaleOrigin(),i=t.layerPointToLatLng(e),n=t.getScaleZoom(this._scale);t._animateZoom(i,n,this._startCenter,this._scale,this._delta,!1,!0)},_onTouchEnd:function(){if(!this._moved||!this._zooming)return void(this._zooming=!1);var t=this._map;this._zooming=!1,o.DomUtil.removeClass(t._mapPane,"leaflet-touching"),o.Util.cancelAnimFrame(this._animRequest),o.DomEvent.off(e,"touchmove",this._onTouchMove).off(e,"touchend",this._onTouchEnd);var i=this._getScaleOrigin(),n=t.layerPointToLatLng(i),s=t.getZoom(),a=t.getScaleZoom(this._scale)-s,r=a>0?Math.ceil(a):Math.floor(a),h=t._limitZoom(s+r),l=t.getZoomScale(h)/this._scale;t._animateZoom(n,h,i,l)},_getScaleOrigin:function(){var t=this._centerOffset.subtract(this._delta).divideBy(this._scale);return this._startCenter.add(t)}}),o.Map.addInitHook("addHandler","touchZoom",o.Map.TouchZoom),o.Map.mergeOptions({tap:!0,tapTolerance:15}),o.Map.Tap=o.Handler.extend({addHooks:function(){o.DomEvent.on(this._map._container,"touchstart",this._onDown,this)},removeHooks:function(){o.DomEvent.off(this._map._container,"touchstart",this._onDown,this)},_onDown:function(t){if(t.touches){if(o.DomEvent.preventDefault(t),this._fireClick=!0,t.touches.length>1)return this._fireClick=!1,void clearTimeout(this._holdTimeout);var i=t.touches[0],n=i.target;this._startPos=this._newPos=new o.Point(i.clientX,i.clientY),n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.addClass(n,"leaflet-active"),this._holdTimeout=setTimeout(o.bind(function(){this._isTapValid()&&(this._fireClick=!1,this._onUp(),this._simulateEvent("contextmenu",i))},this),1e3),o.DomEvent.on(e,"touchmove",this._onMove,this).on(e,"touchend",this._onUp,this)}},_onUp:function(t){if(clearTimeout(this._holdTimeout),o.DomEvent.off(e,"touchmove",this._onMove,this).off(e,"touchend",this._onUp,this),this._fireClick&&t&&t.changedTouches){var i=t.changedTouches[0],n=i.target;n&&n.tagName&&"a"===n.tagName.toLowerCase()&&o.DomUtil.removeClass(n,"leaflet-active"),this._isTapValid()&&this._simulateEvent("click",i)}},_isTapValid:function(){return this._newPos.distanceTo(this._startPos)<=this._map.options.tapTolerance},_onMove:function(t){var e=t.touches[0];this._newPos=new o.Point(e.clientX,e.clientY)},_simulateEvent:function(i,n){var o=e.createEvent("MouseEvents");o._simulated=!0,n.target._simulatedClick=!0,o.initMouseEvent(i,!0,!0,t,1,n.screenX,n.screenY,n.clientX,n.clientY,!1,!1,!1,!1,0,null),n.target.dispatchEvent(o)}}),o.Browser.touch&&!o.Browser.pointer&&o.Map.addInitHook("addHandler","tap",o.Map.Tap),o.Map.mergeOptions({boxZoom:!0}),o.Map.BoxZoom=o.Handler.extend({initialize:function(t){this._map=t,this._container=t._container,this._pane=t._panes.overlayPane,this._moved=!1},addHooks:function(){o.DomEvent.on(this._container,"mousedown",this._onMouseDown,this)},removeHooks:function(){o.DomEvent.off(this._container,"mousedown",this._onMouseDown),this._moved=!1},moved:function(){return this._moved},_onMouseDown:function(t){return this._moved=!1,!t.shiftKey||1!==t.which&&1!==t.button?!1:(o.DomUtil.disableTextSelection(),o.DomUtil.disableImageDrag(),this._startLayerPoint=this._map.mouseEventToLayerPoint(t),void o.DomEvent.on(e,"mousemove",this._onMouseMove,this).on(e,"mouseup",this._onMouseUp,this).on(e,"keydown",this._onKeyDown,this))},_onMouseMove:function(t){this._moved||(this._box=o.DomUtil.create("div","leaflet-zoom-box",this._pane),o.DomUtil.setPosition(this._box,this._startLayerPoint),this._container.style.cursor="crosshair",this._map.fire("boxzoomstart"));var e=this._startLayerPoint,i=this._box,n=this._map.mouseEventToLayerPoint(t),s=n.subtract(e),a=new o.Point(Math.min(n.x,e.x),Math.min(n.y,e.y));o.DomUtil.setPosition(i,a),this._moved=!0,i.style.width=Math.max(0,Math.abs(s.x)-4)+"px",i.style.height=Math.max(0,Math.abs(s.y)-4)+"px"},_finish:function(){this._moved&&(this._pane.removeChild(this._box),this._container.style.cursor=""),o.DomUtil.enableTextSelection(),o.DomUtil.enableImageDrag(),o.DomEvent.off(e,"mousemove",this._onMouseMove).off(e,"mouseup",this._onMouseUp).off(e,"keydown",this._onKeyDown)},_onMouseUp:function(t){this._finish();var e=this._map,i=e.mouseEventToLayerPoint(t);if(!this._startLayerPoint.equals(i)){var n=new o.LatLngBounds(e.layerPointToLatLng(this._startLayerPoint),e.layerPointToLatLng(i));e.fitBounds(n),e.fire("boxzoomend",{boxZoomBounds:n})}},_onKeyDown:function(t){27===t.keyCode&&this._finish()}}),o.Map.addInitHook("addHandler","boxZoom",o.Map.BoxZoom),o.Map.mergeOptions({keyboard:!0,keyboardPanOffset:80,keyboardZoomOffset:1}),o.Map.Keyboard=o.Handler.extend({keyCodes:{left:[37],right:[39],down:[40],up:[38],zoomIn:[187,107,61,171],zoomOut:[189,109,173]},initialize:function(t){this._map=t,this._setPanOffset(t.options.keyboardPanOffset),this._setZoomOffset(t.options.keyboardZoomOffset)},addHooks:function(){var t=this._map._container;-1===t.tabIndex&&(t.tabIndex="0"),o.DomEvent.on(t,"focus",this._onFocus,this).on(t,"blur",this._onBlur,this).on(t,"mousedown",this._onMouseDown,this),this._map.on("focus",this._addHooks,this).on("blur",this._removeHooks,this)},removeHooks:function(){this._removeHooks();var t=this._map._container;o.DomEvent.off(t,"focus",this._onFocus,this).off(t,"blur",this._onBlur,this).off(t,"mousedown",this._onMouseDown,this),this._map.off("focus",this._addHooks,this).off("blur",this._removeHooks,this)},_onMouseDown:function(){if(!this._focused){var i=e.body,n=e.documentElement,o=i.scrollTop||n.scrollTop,s=i.scrollLeft||n.scrollLeft;this._map._container.focus(),t.scrollTo(s,o)}},_onFocus:function(){this._focused=!0,this._map.fire("focus")},_onBlur:function(){this._focused=!1,this._map.fire("blur")},_setPanOffset:function(t){var e,i,n=this._panKeys={},o=this.keyCodes;for(e=0,i=o.left.length;i>e;e++)n[o.left[e]]=[-1*t,0];for(e=0,i=o.right.length;i>e;e++)n[o.right[e]]=[t,0];for(e=0,i=o.down.length;i>e;e++)n[o.down[e]]=[0,t];for(e=0,i=o.up.length;i>e;e++)n[o.up[e]]=[0,-1*t]},_setZoomOffset:function(t){var e,i,n=this._zoomKeys={},o=this.keyCodes;for(e=0,i=o.zoomIn.length;i>e;e++)n[o.zoomIn[e]]=t;for(e=0,i=o.zoomOut.length;i>e;e++)n[o.zoomOut[e]]=-t},_addHooks:function(){o.DomEvent.on(e,"keydown",this._onKeyDown,this)},_removeHooks:function(){o.DomEvent.off(e,"keydown",this._onKeyDown,this)},_onKeyDown:function(t){var e=t.keyCode,i=this._map;if(e in this._panKeys){if(i._panAnim&&i._panAnim._inProgress)return;i.panBy(this._panKeys[e]),i.options.maxBounds&&i.panInsideBounds(i.options.maxBounds)}else{if(!(e in this._zoomKeys))return;i.setZoom(i.getZoom()+this._zoomKeys[e])}o.DomEvent.stop(t)}}),o.Map.addInitHook("addHandler","keyboard",o.Map.Keyboard),o.Handler.MarkerDrag=o.Handler.extend({initialize:function(t){this._marker=t},addHooks:function(){var t=this._marker._icon;this._draggable||(this._draggable=new o.Draggable(t,t)),this._draggable.on("dragstart",this._onDragStart,this).on("drag",this._onDrag,this).on("dragend",this._onDragEnd,this),this._draggable.enable(),o.DomUtil.addClass(this._marker._icon,"leaflet-marker-draggable")},removeHooks:function(){this._draggable.off("dragstart",this._onDragStart,this).off("drag",this._onDrag,this).off("dragend",this._onDragEnd,this),this._draggable.disable(),o.DomUtil.removeClass(this._marker._icon,"leaflet-marker-draggable")},moved:function(){return this._draggable&&this._draggable._moved},_onDragStart:function(){this._marker.closePopup().fire("movestart").fire("dragstart")},_onDrag:function(){var t=this._marker,e=t._shadow,i=o.DomUtil.getPosition(t._icon),n=t._map.layerPointToLatLng(i);e&&o.DomUtil.setPosition(e,i),t._latlng=n,t.fire("move",{latlng:n}).fire("drag")},_onDragEnd:function(t){this._marker.fire("moveend").fire("dragend",t)}}),o.Control=o.Class.extend({options:{position:"topright"},initialize:function(t){o.setOptions(this,t)},getPosition:function(){return this.options.position},setPosition:function(t){var e=this._map;return e&&e.removeControl(this),this.options.position=t,e&&e.addControl(this),this},getContainer:function(){return this._container},addTo:function(t){this._map=t;var e=this._container=this.onAdd(t),i=this.getPosition(),n=t._controlCorners[i];return o.DomUtil.addClass(e,"leaflet-control"),-1!==i.indexOf("bottom")?n.insertBefore(e,n.firstChild):n.appendChild(e),this},removeFrom:function(t){var e=this.getPosition(),i=t._controlCorners[e];return i.removeChild(this._container),this._map=null,this.onRemove&&this.onRemove(t),this},_refocusOnMap:function(){this._map&&this._map.getContainer().focus()}}),o.control=function(t){return new o.Control(t)},o.Map.include({addControl:function(t){return t.addTo(this),this},removeControl:function(t){return t.removeFrom(this),this},_initControlPos:function(){function t(t,s){var a=i+t+" "+i+s;e[t+s]=o.DomUtil.create("div",a,n)}var e=this._controlCorners={},i="leaflet-",n=this._controlContainer=o.DomUtil.create("div",i+"control-container",this._container);t("top","left"),t("top","right"),t("bottom","left"),t("bottom","right")},_clearControlPos:function(){this._container.removeChild(this._controlContainer)}}),o.Control.Zoom=o.Control.extend({options:{position:"topleft",zoomInText:"+",zoomInTitle:"Zoom in",zoomOutText:"-",zoomOutTitle:"Zoom out"},onAdd:function(t){var e="leaflet-control-zoom",i=o.DomUtil.create("div",e+" leaflet-bar");return this._map=t,this._zoomInButton=this._createButton(this.options.zoomInText,this.options.zoomInTitle,e+"-in",i,this._zoomIn,this),this._zoomOutButton=this._createButton(this.options.zoomOutText,this.options.zoomOutTitle,e+"-out",i,this._zoomOut,this),this._updateDisabled(),t.on("zoomend zoomlevelschange",this._updateDisabled,this),i},onRemove:function(t){t.off("zoomend zoomlevelschange",this._updateDisabled,this)},_zoomIn:function(t){this._map.zoomIn(t.shiftKey?3:1)},_zoomOut:function(t){this._map.zoomOut(t.shiftKey?3:1)},_createButton:function(t,e,i,n,s,a){var r=o.DomUtil.create("a",i,n);r.innerHTML=t,r.href="#",r.title=e;var h=o.DomEvent.stopPropagation;return o.DomEvent.on(r,"click",h).on(r,"mousedown",h).on(r,"dblclick",h).on(r,"click",o.DomEvent.preventDefault).on(r,"click",s,a).on(r,"click",this._refocusOnMap,a),r},_updateDisabled:function(){var t=this._map,e="leaflet-disabled";o.DomUtil.removeClass(this._zoomInButton,e),o.DomUtil.removeClass(this._zoomOutButton,e),t._zoom===t.getMinZoom()&&o.DomUtil.addClass(this._zoomOutButton,e),t._zoom===t.getMaxZoom()&&o.DomUtil.addClass(this._zoomInButton,e)}}),o.Map.mergeOptions({zoomControl:!0}),o.Map.addInitHook(function(){this.options.zoomControl&&(this.zoomControl=new o.Control.Zoom,this.addControl(this.zoomControl))}),o.control.zoom=function(t){return new o.Control.Zoom(t)},o.Control.Attribution=o.Control.extend({options:{position:"bottomright",prefix:'Leaflet'},initialize:function(t){o.setOptions(this,t),this._attributions={}},onAdd:function(t){this._container=o.DomUtil.create("div","leaflet-control-attribution"),o.DomEvent.disableClickPropagation(this._container);for(var e in t._layers)t._layers[e].getAttribution&&this.addAttribution(t._layers[e].getAttribution());return t.on("layeradd",this._onLayerAdd,this).on("layerremove",this._onLayerRemove,this),this._update(),this._container},onRemove:function(t){t.off("layeradd",this._onLayerAdd).off("layerremove",this._onLayerRemove)},setPrefix:function(t){return this.options.prefix=t,this._update(),this},addAttribution:function(t){return t?(this._attributions[t]||(this._attributions[t]=0),this._attributions[t]++,this._update(),this):void 0},removeAttribution:function(t){return t?(this._attributions[t]&&(this._attributions[t]--,this._update()),this):void 0},_update:function(){if(this._map){var t=[];for(var e in this._attributions)this._attributions[e]&&t.push(e);var i=[];this.options.prefix&&i.push(this.options.prefix),t.length&&i.push(t.join(", ")),this._container.innerHTML=i.join(" | ")}},_onLayerAdd:function(t){t.layer.getAttribution&&this.addAttribution(t.layer.getAttribution())},_onLayerRemove:function(t){t.layer.getAttribution&&this.removeAttribution(t.layer.getAttribution())}}),o.Map.mergeOptions({attributionControl:!0}),o.Map.addInitHook(function(){this.options.attributionControl&&(this.attributionControl=(new o.Control.Attribution).addTo(this))}),o.control.attribution=function(t){return new o.Control.Attribution(t)},o.Control.Scale=o.Control.extend({options:{position:"bottomleft",maxWidth:100,metric:!0,imperial:!0,updateWhenIdle:!1},onAdd:function(t){this._map=t;var e="leaflet-control-scale",i=o.DomUtil.create("div",e),n=this.options;return this._addScales(n,e,i),t.on(n.updateWhenIdle?"moveend":"move",this._update,this),t.whenReady(this._update,this),i},onRemove:function(t){t.off(this.options.updateWhenIdle?"moveend":"move",this._update,this)},_addScales:function(t,e,i){t.metric&&(this._mScale=o.DomUtil.create("div",e+"-line",i)),t.imperial&&(this._iScale=o.DomUtil.create("div",e+"-line",i))},_update:function(){var t=this._map.getBounds(),e=t.getCenter().lat,i=6378137*Math.PI*Math.cos(e*Math.PI/180),n=i*(t.getNorthEast().lng-t.getSouthWest().lng)/180,o=this._map.getSize(),s=this.options,a=0;o.x>0&&(a=n*(s.maxWidth/o.x)),this._updateScales(s,a)},_updateScales:function(t,e){t.metric&&e&&this._updateMetric(e),t.imperial&&e&&this._updateImperial(e)},_updateMetric:function(t){var e=this._getRoundNum(t);this._mScale.style.width=this._getScaleWidth(e/t)+"px",this._mScale.innerHTML=1e3>e?e+" m":e/1e3+" km"},_updateImperial:function(t){var e,i,n,o=3.2808399*t,s=this._iScale;o>5280?(e=o/5280,i=this._getRoundNum(e),s.style.width=this._getScaleWidth(i/e)+"px",s.innerHTML=i+" mi"):(n=this._getRoundNum(o),s.style.width=this._getScaleWidth(n/o)+"px",s.innerHTML=n+" ft")},_getScaleWidth:function(t){return Math.round(this.options.maxWidth*t)-10},_getRoundNum:function(t){var e=Math.pow(10,(Math.floor(t)+"").length-1),i=t/e;return i=i>=10?10:i>=5?5:i>=3?3:i>=2?2:1,e*i}}),o.control.scale=function(t){return new o.Control.Scale(t)},o.Control.Layers=o.Control.extend({options:{collapsed:!0,position:"topright",autoZIndex:!0},initialize:function(t,e,i){o.setOptions(this,i),this._layers={},this._lastZIndex=0,this._handlingClick=!1;for(var n in t)this._addLayer(t[n],n);for(n in e)this._addLayer(e[n],n,!0)},onAdd:function(t){return this._initLayout(),this._update(),t.on("layeradd",this._onLayerChange,this).on("layerremove",this._onLayerChange,this),this._container},onRemove:function(t){t.off("layeradd",this._onLayerChange,this).off("layerremove",this._onLayerChange,this)},addBaseLayer:function(t,e){return this._addLayer(t,e),this._update(),this},addOverlay:function(t,e){return this._addLayer(t,e,!0),this._update(),this},removeLayer:function(t){var e=o.stamp(t);return delete this._layers[e],this._update(),this},_initLayout:function(){var t="leaflet-control-layers",e=this._container=o.DomUtil.create("div",t);e.setAttribute("aria-haspopup",!0),o.Browser.touch?o.DomEvent.on(e,"click",o.DomEvent.stopPropagation):o.DomEvent.disableClickPropagation(e).disableScrollPropagation(e);var i=this._form=o.DomUtil.create("form",t+"-list");if(this.options.collapsed){o.Browser.android||o.DomEvent.on(e,"mouseover",this._expand,this).on(e,"mouseout",this._collapse,this);var n=this._layersLink=o.DomUtil.create("a",t+"-toggle",e);n.href="#",n.title="Layers",o.Browser.touch?o.DomEvent.on(n,"click",o.DomEvent.stop).on(n,"click",this._expand,this):o.DomEvent.on(n,"focus",this._expand,this),o.DomEvent.on(i,"click",function(){setTimeout(o.bind(this._onInputClick,this),0)},this),this._map.on("click",this._collapse,this)}else this._expand();this._baseLayersList=o.DomUtil.create("div",t+"-base",i),this._separator=o.DomUtil.create("div",t+"-separator",i),this._overlaysList=o.DomUtil.create("div",t+"-overlays",i),e.appendChild(i)},_addLayer:function(t,e,i){var n=o.stamp(t);this._layers[n]={layer:t,name:e,overlay:i},this.options.autoZIndex&&t.setZIndex&&(this._lastZIndex++,t.setZIndex(this._lastZIndex))},_update:function(){if(this._container){this._baseLayersList.innerHTML="",this._overlaysList.innerHTML="";var t,e,i=!1,n=!1;for(t in this._layers)e=this._layers[t],this._addItem(e),n=n||e.overlay,i=i||!e.overlay;this._separator.style.display=n&&i?"":"none"}},_onLayerChange:function(t){var e=this._layers[o.stamp(t.layer)];if(e){this._handlingClick||this._update();var i=e.overlay?"layeradd"===t.type?"overlayadd":"overlayremove":"layeradd"===t.type?"baselayerchange":null;i&&this._map.fire(i,e)}},_createRadioElement:function(t,i){var n='t;t++)e=n[t],i=this._layers[e.layerId],e.checked&&!this._map.hasLayer(i.layer)?this._map.addLayer(i.layer):!e.checked&&this._map.hasLayer(i.layer)&&this._map.removeLayer(i.layer);this._handlingClick=!1,this._refocusOnMap()},_expand:function(){o.DomUtil.addClass(this._container,"leaflet-control-layers-expanded")},_collapse:function(){this._container.className=this._container.className.replace(" leaflet-control-layers-expanded","")}}),o.control.layers=function(t,e,i){return new o.Control.Layers(t,e,i)},o.PosAnimation=o.Class.extend({includes:o.Mixin.Events,run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._newPos=e,this.fire("start"),t.style[o.DomUtil.TRANSITION]="all "+(i||.25)+"s cubic-bezier(0,0,"+(n||.5)+",1)",o.DomEvent.on(t,o.DomUtil.TRANSITION_END,this._onTransitionEnd,this),o.DomUtil.setPosition(t,e),o.Util.falseFn(t.offsetWidth),this._stepTimer=setInterval(o.bind(this._onStep,this),50)},stop:function(){this._inProgress&&(o.DomUtil.setPosition(this._el,this._getPos()),this._onTransitionEnd(),o.Util.falseFn(this._el.offsetWidth))},_onStep:function(){var t=this._getPos();return t?(this._el._leaflet_pos=t,void this.fire("step")):void this._onTransitionEnd()},_transformRe:/([-+]?(?:\d*\.)?\d+)\D*, ([-+]?(?:\d*\.)?\d+)\D*\)/,_getPos:function(){var e,i,n,s=this._el,a=t.getComputedStyle(s);if(o.Browser.any3d){if(n=a[o.DomUtil.TRANSFORM].match(this._transformRe),!n)return;e=parseFloat(n[1]),i=parseFloat(n[2])}else e=parseFloat(a.left),i=parseFloat(a.top);return new o.Point(e,i,!0)},_onTransitionEnd:function(){o.DomEvent.off(this._el,o.DomUtil.TRANSITION_END,this._onTransitionEnd,this),this._inProgress&&(this._inProgress=!1,this._el.style[o.DomUtil.TRANSITION]="",this._el._leaflet_pos=this._newPos,clearInterval(this._stepTimer),this.fire("step").fire("end"))}}),o.Map.include({setView:function(t,e,n){if(e=e===i?this._zoom:this._limitZoom(e),t=this._limitCenter(o.latLng(t),e,this.options.maxBounds),n=n||{},this._panAnim&&this._panAnim.stop(),this._loaded&&!n.reset&&n!==!0){n.animate!==i&&(n.zoom=o.extend({animate:n.animate},n.zoom),n.pan=o.extend({animate:n.animate},n.pan));var s=this._zoom!==e?this._tryAnimatedZoom&&this._tryAnimatedZoom(t,e,n.zoom):this._tryAnimatedPan(t,n.pan);if(s)return clearTimeout(this._sizeTimer),this}return this._resetView(t,e),this},panBy:function(t,e){if(t=o.point(t).round(),e=e||{},!t.x&&!t.y)return this;if(this._panAnim||(this._panAnim=new o.PosAnimation,this._panAnim.on({step:this._onPanTransitionStep,end:this._onPanTransitionEnd},this)),e.noMoveStart||this.fire("movestart"),e.animate!==!1){o.DomUtil.addClass(this._mapPane,"leaflet-pan-anim");var i=this._getMapPanePos().subtract(t);this._panAnim.run(this._mapPane,i,e.duration||.25,e.easeLinearity)}else this._rawPanBy(t),this.fire("move").fire("moveend");return this},_onPanTransitionStep:function(){this.fire("move")},_onPanTransitionEnd:function(){o.DomUtil.removeClass(this._mapPane,"leaflet-pan-anim"),this.fire("moveend")},_tryAnimatedPan:function(t,e){var i=this._getCenterOffset(t)._floor();return(e&&e.animate)===!0||this.getSize().contains(i)?(this.panBy(i,e),!0):!1}}),o.PosAnimation=o.DomUtil.TRANSITION?o.PosAnimation:o.PosAnimation.extend({run:function(t,e,i,n){this.stop(),this._el=t,this._inProgress=!0,this._duration=i||.25,this._easeOutPower=1/Math.max(n||.5,.2),this._startPos=o.DomUtil.getPosition(t),this._offset=e.subtract(this._startPos),this._startTime=+new Date,this.fire("start"),this._animate()},stop:function(){this._inProgress&&(this._step(),this._complete())},_animate:function(){this._animId=o.Util.requestAnimFrame(this._animate,this),this._step()},_step:function(){var t=+new Date-this._startTime,e=1e3*this._duration;e>t?this._runFrame(this._easeOut(t/e)):(this._runFrame(1),this._complete())},_runFrame:function(t){var e=this._startPos.add(this._offset.multiplyBy(t));o.DomUtil.setPosition(this._el,e),this.fire("step")},_complete:function(){o.Util.cancelAnimFrame(this._animId),this._inProgress=!1,this.fire("end")},_easeOut:function(t){return 1-Math.pow(1-t,this._easeOutPower)}}),o.Map.mergeOptions({zoomAnimation:!0,zoomAnimationThreshold:4}),o.DomUtil.TRANSITION&&o.Map.addInitHook(function(){this._zoomAnimated=this.options.zoomAnimation&&o.DomUtil.TRANSITION&&o.Browser.any3d&&!o.Browser.android23&&!o.Browser.mobileOpera,this._zoomAnimated&&o.DomEvent.on(this._mapPane,o.DomUtil.TRANSITION_END,this._catchTransitionEnd,this)}),o.Map.include(o.DomUtil.TRANSITION?{_catchTransitionEnd:function(t){this._animatingZoom&&t.propertyName.indexOf("transform")>=0&&this._onZoomTransitionEnd()},_nothingToAnimate:function(){return!this._container.getElementsByClassName("leaflet-zoom-animated").length},_tryAnimatedZoom:function(t,e,i){if(this._animatingZoom)return!0;if(i=i||{},!this._zoomAnimated||i.animate===!1||this._nothingToAnimate()||Math.abs(e-this._zoom)>this.options.zoomAnimationThreshold)return!1;var n=this.getZoomScale(e),o=this._getCenterOffset(t)._divideBy(1-1/n),s=this._getCenterLayerPoint()._add(o);return i.animate===!0||this.getSize().contains(o)?(this.fire("movestart").fire("zoomstart"),this._animateZoom(t,e,s,n,null,!0),!0):!1},_animateZoom:function(t,e,i,n,s,a,r){r||(this._animatingZoom=!0),o.DomUtil.addClass(this._mapPane,"leaflet-zoom-anim"),this._animateToCenter=t,this._animateToZoom=e,o.Draggable&&(o.Draggable._disabled=!0),o.Util.requestAnimFrame(function(){this.fire("zoomanim",{center:t,zoom:e,origin:i,scale:n,delta:s,backwards:a})},this)},_onZoomTransitionEnd:function(){this._animatingZoom=!1,o.DomUtil.removeClass(this._mapPane,"leaflet-zoom-anim"),this._resetView(this._animateToCenter,this._animateToZoom,!0,!0),o.Draggable&&(o.Draggable._disabled=!1)}}:{}),o.TileLayer.include({_animateZoom:function(t){this._animating||(this._animating=!0,this._prepareBgBuffer());var e=this._bgBuffer,i=o.DomUtil.TRANSFORM,n=t.delta?o.DomUtil.getTranslateString(t.delta):e.style[i],s=o.DomUtil.getScaleString(t.scale,t.origin);e.style[i]=t.backwards?s+" "+n:n+" "+s},_endZoomAnim:function(){var t=this._tileContainer,e=this._bgBuffer;t.style.visibility="",t.parentNode.appendChild(t),o.Util.falseFn(e.offsetWidth),this._animating=!1},_clearBgBuffer:function(){var t=this._map;!t||t._animatingZoom||t.touchZoom._zooming||(this._bgBuffer.innerHTML="",this._bgBuffer.style[o.DomUtil.TRANSFORM]="")},_prepareBgBuffer:function(){var t=this._tileContainer,e=this._bgBuffer,i=this._getLoadedTilesPercentage(e),n=this._getLoadedTilesPercentage(t);return e&&i>.5&&.5>n?(t.style.visibility="hidden",void this._stopLoadingImages(t)):(e.style.visibility="hidden",e.style[o.DomUtil.TRANSFORM]="",this._tileContainer=e,e=this._bgBuffer=t,this._stopLoadingImages(e),void clearTimeout(this._clearBgBufferTimer))},_getLoadedTilesPercentage:function(t){var e,i,n=t.getElementsByTagName("img"),o=0;for(e=0,i=n.length;i>e;e++)n[e].complete&&o++;return o/i},_stopLoadingImages:function(t){var e,i,n,s=Array.prototype.slice.call(t.getElementsByTagName("img"));for(e=0,i=s.length;i>e;e++)n=s[e],n.complete||(n.onload=o.Util.falseFn,n.onerror=o.Util.falseFn,n.src=o.Util.emptyImageUrl,n.parentNode.removeChild(n))}}),o.Map.include({_defaultLocateOptions:{watch:!1,setView:!1,maxZoom:1/0,timeout:1e4,maximumAge:0,enableHighAccuracy:!1},locate:function(t){if(t=this._locateOptions=o.extend(this._defaultLocateOptions,t),!navigator.geolocation)return this._handleGeolocationError({code:0,message:"Geolocation not supported."}),this;var e=o.bind(this._handleGeolocationResponse,this),i=o.bind(this._handleGeolocationError,this);return t.watch?this._locationWatchId=navigator.geolocation.watchPosition(e,i,t):navigator.geolocation.getCurrentPosition(e,i,t),this},stopLocate:function(){return navigator.geolocation&&navigator.geolocation.clearWatch(this._locationWatchId),this._locateOptions&&(this._locateOptions.setView=!1),this},_handleGeolocationError:function(t){var e=t.code,i=t.message||(1===e?"permission denied":2===e?"position unavailable":"timeout");this._locateOptions.setView&&!this._loaded&&this.fitWorld(),this.fire("locationerror",{code:e,message:"Geolocation error: "+i+"."})},_handleGeolocationResponse:function(t){var e=t.coords.latitude,i=t.coords.longitude,n=new o.LatLng(e,i),s=180*t.coords.accuracy/40075017,a=s/Math.cos(o.LatLng.DEG_TO_RAD*e),r=o.latLngBounds([e-s,i-a],[e+s,i+a]),h=this._locateOptions;if(h.setView){var l=Math.min(this.getBoundsZoom(r),h.maxZoom);this.setView(n,l)}var u={latlng:n,bounds:r,timestamp:t.timestamp};for(var c in t.coords)"number"==typeof t.coords[c]&&(u[c]=t.coords[c]);this.fire("locationfound",u)}})}(window,document); \ No newline at end of file diff --git a/html/js/leaflet.markercluster-src.js b/html/js/leaflet.markercluster-src.js new file mode 120000 index 000000000..cdf387aae --- /dev/null +++ b/html/js/leaflet.markercluster-src.js @@ -0,0 +1 @@ +../../lib/Leaflet.markercluster/dist/leaflet.markercluster-src.js \ No newline at end of file diff --git a/html/js/mapael-maps b/html/js/mapael-maps new file mode 120000 index 000000000..29886b738 --- /dev/null +++ b/html/js/mapael-maps @@ -0,0 +1 @@ +../../lib/mapael-maps/ \ No newline at end of file diff --git a/html/js/maps b/html/js/maps new file mode 120000 index 000000000..0c94a228a --- /dev/null +++ b/html/js/maps @@ -0,0 +1 @@ +../../lib/jQuery-Mapael/js/maps/ \ No newline at end of file diff --git a/html/js/raphael-min.js b/html/js/raphael-min.js new file mode 100644 index 000000000..1f8a3059b --- /dev/null +++ b/html/js/raphael-min.js @@ -0,0 +1,11 @@ +// ┌────────────────────────────────────────────────────────────────────┠\\ +// │ Raphaël 2.1.4 - JavaScript Vector Library │ \\ +// ├────────────────────────────────────────────────────────────────────┤ \\ +// │ Copyright © 2008-2012 Dmitry Baranovskiy (http://raphaeljs.com) │ \\ +// │ Copyright © 2008-2012 Sencha Labs (http://sencha.com) │ \\ +// ├────────────────────────────────────────────────────────────────────┤ \\ +// │ Licensed under the MIT (http://raphaeljs.com/license.html) license.│ \\ +// └────────────────────────────────────────────────────────────────────┘ \\ +!function(a){var b,c,d="0.4.2",e="hasOwnProperty",f=/[\.\/]/,g="*",h=function(){},i=function(a,b){return a-b},j={n:{}},k=function(a,d){a=String(a);var e,f=c,g=Array.prototype.slice.call(arguments,2),h=k.listeners(a),j=0,l=[],m={},n=[],o=b;b=a,c=0;for(var p=0,q=h.length;q>p;p++)"zIndex"in h[p]&&(l.push(h[p].zIndex),h[p].zIndex<0&&(m[h[p].zIndex]=h[p]));for(l.sort(i);l[j]<0;)if(e=m[l[j++]],n.push(e.apply(d,g)),c)return c=f,n;for(p=0;q>p;p++)if(e=h[p],"zIndex"in e)if(e.zIndex==l[j]){if(n.push(e.apply(d,g)),c)break;do if(j++,e=m[l[j]],e&&n.push(e.apply(d,g)),c)break;while(e)}else m[e.zIndex]=e;else if(n.push(e.apply(d,g)),c)break;return c=f,b=o,n.length?n:null};k._events=j,k.listeners=function(a){var b,c,d,e,h,i,k,l,m=a.split(f),n=j,o=[n],p=[];for(e=0,h=m.length;h>e;e++){for(l=[],i=0,k=o.length;k>i;i++)for(n=o[i].n,c=[n[m[e]],n[g]],d=2;d--;)b=c[d],b&&(l.push(b),p=p.concat(b.f||[]));o=l}return p},k.on=function(a,b){if(a=String(a),"function"!=typeof b)return function(){};for(var c=a.split(f),d=j,e=0,g=c.length;g>e;e++)d=d.n,d=d.hasOwnProperty(c[e])&&d[c[e]]||(d[c[e]]={n:{}});for(d.f=d.f||[],e=0,g=d.f.length;g>e;e++)if(d.f[e]==b)return h;return d.f.push(b),function(a){+a==+a&&(b.zIndex=+a)}},k.f=function(a){var b=[].slice.call(arguments,1);return function(){k.apply(null,[a,null].concat(b).concat([].slice.call(arguments,0)))}},k.stop=function(){c=1},k.nt=function(a){return a?new RegExp("(?:\\.|\\/|^)"+a+"(?:\\.|\\/|$)").test(b):b},k.nts=function(){return b.split(f)},k.off=k.unbind=function(a,b){if(!a)return void(k._events=j={n:{}});var c,d,h,i,l,m,n,o=a.split(f),p=[j];for(i=0,l=o.length;l>i;i++)for(m=0;mi;i++)for(c=p[i];c.n;){if(b){if(c.f){for(m=0,n=c.f.length;n>m;m++)if(c.f[m]==b){c.f.splice(m,1);break}!c.f.length&&delete c.f}for(d in c.n)if(c.n[e](d)&&c.n[d].f){var q=c.n[d].f;for(m=0,n=q.length;n>m;m++)if(q[m]==b){q.splice(m,1);break}!q.length&&delete c.n[d].f}}else{delete c.f;for(d in c.n)c.n[e](d)&&c.n[d].f&&delete c.n[d].f}c=c.n}},k.once=function(a,b){var c=function(){return k.unbind(a,c),b.apply(this,arguments)};return k.on(a,c)},k.version=d,k.toString=function(){return"You are running Eve "+d},"undefined"!=typeof module&&module.exports?module.exports=k:"undefined"!=typeof define?define("eve",[],function(){return k}):a.eve=k}(window||this),function(a,b){"function"==typeof define&&define.amd?define(["eve"],function(c){return b(a,c)}):b(a,a.eve||"function"==typeof require&&require("eve"))}(this,function(a,b){function c(a){if(c.is(a,"function"))return u?a():b.on("raphael.DOMload",a);if(c.is(a,V))return c._engine.create[D](c,a.splice(0,3+c.is(a[0],T))).add(a);var d=Array.prototype.slice.call(arguments,0);if(c.is(d[d.length-1],"function")){var e=d.pop();return u?e.call(c._engine.create[D](c,d)):b.on("raphael.DOMload",function(){e.call(c._engine.create[D](c,d))})}return c._engine.create[D](c,arguments)}function d(a){if("function"==typeof a||Object(a)!==a)return a;var b=new a.constructor;for(var c in a)a[z](c)&&(b[c]=d(a[c]));return b}function e(a,b){for(var c=0,d=a.length;d>c;c++)if(a[c]===b)return a.push(a.splice(c,1)[0])}function f(a,b,c){function d(){var f=Array.prototype.slice.call(arguments,0),g=f.join("â€"),h=d.cache=d.cache||{},i=d.count=d.count||[];return h[z](g)?(e(i,g),c?c(h[g]):h[g]):(i.length>=1e3&&delete h[i.shift()],i.push(g),h[g]=a[D](b,f),c?c(h[g]):h[g])}return d}function g(){return this.hex}function h(a,b){for(var c=[],d=0,e=a.length;e-2*!b>d;d+=2){var f=[{x:+a[d-2],y:+a[d-1]},{x:+a[d],y:+a[d+1]},{x:+a[d+2],y:+a[d+3]},{x:+a[d+4],y:+a[d+5]}];b?d?e-4==d?f[3]={x:+a[0],y:+a[1]}:e-2==d&&(f[2]={x:+a[0],y:+a[1]},f[3]={x:+a[2],y:+a[3]}):f[0]={x:+a[e-2],y:+a[e-1]}:e-4==d?f[3]=f[2]:d||(f[0]={x:+a[d],y:+a[d+1]}),c.push(["C",(-f[0].x+6*f[1].x+f[2].x)/6,(-f[0].y+6*f[1].y+f[2].y)/6,(f[1].x+6*f[2].x-f[3].x)/6,(f[1].y+6*f[2].y-f[3].y)/6,f[2].x,f[2].y])}return c}function i(a,b,c,d,e){var f=-3*b+9*c-9*d+3*e,g=a*f+6*b-12*c+6*d;return a*g-3*b+3*c}function j(a,b,c,d,e,f,g,h,j){null==j&&(j=1),j=j>1?1:0>j?0:j;for(var k=j/2,l=12,m=[-.1252,.1252,-.3678,.3678,-.5873,.5873,-.7699,.7699,-.9041,.9041,-.9816,.9816],n=[.2491,.2491,.2335,.2335,.2032,.2032,.1601,.1601,.1069,.1069,.0472,.0472],o=0,p=0;l>p;p++){var q=k*m[p]+k,r=i(q,a,c,e,g),s=i(q,b,d,f,h),t=r*r+s*s;o+=n[p]*N.sqrt(t)}return k*o}function k(a,b,c,d,e,f,g,h,i){if(!(0>i||j(a,b,c,d,e,f,g,h)o;)m/=2,n+=(i>k?1:-1)*m,k=j(a,b,c,d,e,f,g,h,n);return n}}function l(a,b,c,d,e,f,g,h){if(!(O(a,c)O(e,g)||O(b,d)O(f,h))){var i=(a*d-b*c)*(e-g)-(a-c)*(e*h-f*g),j=(a*d-b*c)*(f-h)-(b-d)*(e*h-f*g),k=(a-c)*(f-h)-(b-d)*(e-g);if(k){var l=i/k,m=j/k,n=+l.toFixed(2),o=+m.toFixed(2);if(!(n<+P(a,c).toFixed(2)||n>+O(a,c).toFixed(2)||n<+P(e,g).toFixed(2)||n>+O(e,g).toFixed(2)||o<+P(b,d).toFixed(2)||o>+O(b,d).toFixed(2)||o<+P(f,h).toFixed(2)||o>+O(f,h).toFixed(2)))return{x:l,y:m}}}}function m(a,b,d){var e=c.bezierBBox(a),f=c.bezierBBox(b);if(!c.isBBoxIntersect(e,f))return d?0:[];for(var g=j.apply(0,a),h=j.apply(0,b),i=O(~~(g/5),1),k=O(~~(h/5),1),m=[],n=[],o={},p=d?0:[],q=0;i+1>q;q++){var r=c.findDotsAtSegment.apply(c,a.concat(q/i));m.push({x:r.x,y:r.y,t:q/i})}for(q=0;k+1>q;q++)r=c.findDotsAtSegment.apply(c,b.concat(q/k)),n.push({x:r.x,y:r.y,t:q/k});for(q=0;i>q;q++)for(var s=0;k>s;s++){var t=m[q],u=m[q+1],v=n[s],w=n[s+1],x=Q(u.x-t.x)<.001?"y":"x",y=Q(w.x-v.x)<.001?"y":"x",z=l(t.x,t.y,u.x,u.y,v.x,v.y,w.x,w.y);if(z){if(o[z.x.toFixed(4)]==z.y.toFixed(4))continue;o[z.x.toFixed(4)]=z.y.toFixed(4);var A=t.t+Q((z[x]-t[x])/(u[x]-t[x]))*(u.t-t.t),B=v.t+Q((z[y]-v[y])/(w[y]-v[y]))*(w.t-v.t);A>=0&&1.001>=A&&B>=0&&1.001>=B&&(d?p++:p.push({x:z.x,y:z.y,t1:P(A,1),t2:P(B,1)}))}}return p}function n(a,b,d){a=c._path2curve(a),b=c._path2curve(b);for(var e,f,g,h,i,j,k,l,n,o,p=d?0:[],q=0,r=a.length;r>q;q++){var s=a[q];if("M"==s[0])e=i=s[1],f=j=s[2];else{"C"==s[0]?(n=[e,f].concat(s.slice(1)),e=n[6],f=n[7]):(n=[e,f,e,f,i,j,i,j],e=i,f=j);for(var t=0,u=b.length;u>t;t++){var v=b[t];if("M"==v[0])g=k=v[1],h=l=v[2];else{"C"==v[0]?(o=[g,h].concat(v.slice(1)),g=o[6],h=o[7]):(o=[g,h,g,h,k,l,k,l],g=k,h=l);var w=m(n,o,d);if(d)p+=w;else{for(var x=0,y=w.length;y>x;x++)w[x].segment1=q,w[x].segment2=t,w[x].bez1=n,w[x].bez2=o;p=p.concat(w)}}}}}return p}function o(a,b,c,d,e,f){null!=a?(this.a=+a,this.b=+b,this.c=+c,this.d=+d,this.e=+e,this.f=+f):(this.a=1,this.b=0,this.c=0,this.d=1,this.e=0,this.f=0)}function p(){return this.x+H+this.y+H+this.width+" × "+this.height}function q(a,b,c,d,e,f){function g(a){return((l*a+k)*a+j)*a}function h(a,b){var c=i(a,b);return((o*c+n)*c+m)*c}function i(a,b){var c,d,e,f,h,i;for(e=a,i=0;8>i;i++){if(f=g(e)-a,Q(f)e)return c;if(e>d)return d;for(;d>c;){if(f=g(e),Q(f-a)f?c=e:d=e,e=(d-c)/2+c}return e}var j=3*b,k=3*(d-b)-j,l=1-j-k,m=3*c,n=3*(e-c)-m,o=1-m-n;return h(a,1/(200*f))}function r(a,b){var c=[],d={};if(this.ms=b,this.times=1,a){for(var e in a)a[z](e)&&(d[_(e)]=a[e],c.push(_(e)));c.sort(lb)}this.anim=d,this.top=c[c.length-1],this.percents=c}function s(a,d,e,f,g,h){e=_(e);var i,j,k,l,m,n,p=a.ms,r={},s={},t={};if(f)for(v=0,x=ic.length;x>v;v++){var u=ic[v];if(u.el.id==d.id&&u.anim==a){u.percent!=e?(ic.splice(v,1),k=1):j=u,d.attr(u.totalOrigin);break}}else f=+s;for(var v=0,x=a.percents.length;x>v;v++){if(a.percents[v]==e||a.percents[v]>f*a.top){e=a.percents[v],m=a.percents[v-1]||0,p=p/a.top*(e-m),l=a.percents[v+1],i=a.anim[e];break}f&&d.attr(a.anim[a.percents[v]])}if(i){if(j)j.initstatus=f,j.start=new Date-j.ms*f;else{for(var y in i)if(i[z](y)&&(db[z](y)||d.paper.customAttributes[z](y)))switch(r[y]=d.attr(y),null==r[y]&&(r[y]=cb[y]),s[y]=i[y],db[y]){case T:t[y]=(s[y]-r[y])/p;break;case"colour":r[y]=c.getRGB(r[y]);var A=c.getRGB(s[y]);t[y]={r:(A.r-r[y].r)/p,g:(A.g-r[y].g)/p,b:(A.b-r[y].b)/p};break;case"path":var B=Kb(r[y],s[y]),C=B[1];for(r[y]=B[0],t[y]=[],v=0,x=r[y].length;x>v;v++){t[y][v]=[0];for(var D=1,F=r[y][v].length;F>D;D++)t[y][v][D]=(C[v][D]-r[y][v][D])/p}break;case"transform":var G=d._,H=Pb(G[y],s[y]);if(H)for(r[y]=H.from,s[y]=H.to,t[y]=[],t[y].real=!0,v=0,x=r[y].length;x>v;v++)for(t[y][v]=[r[y][v][0]],D=1,F=r[y][v].length;F>D;D++)t[y][v][D]=(s[y][v][D]-r[y][v][D])/p;else{var K=d.matrix||new o,L={_:{transform:G.transform},getBBox:function(){return d.getBBox(1)}};r[y]=[K.a,K.b,K.c,K.d,K.e,K.f],Nb(L,s[y]),s[y]=L._.transform,t[y]=[(L.matrix.a-K.a)/p,(L.matrix.b-K.b)/p,(L.matrix.c-K.c)/p,(L.matrix.d-K.d)/p,(L.matrix.e-K.e)/p,(L.matrix.f-K.f)/p]}break;case"csv":var M=I(i[y])[J](w),N=I(r[y])[J](w);if("clip-rect"==y)for(r[y]=N,t[y]=[],v=N.length;v--;)t[y][v]=(M[v]-r[y][v])/p;s[y]=M;break;default:for(M=[][E](i[y]),N=[][E](r[y]),t[y]=[],v=d.paper.customAttributes[y].length;v--;)t[y][v]=((M[v]||0)-(N[v]||0))/p}var O=i.easing,P=c.easing_formulas[O];if(!P)if(P=I(O).match(Z),P&&5==P.length){var Q=P;P=function(a){return q(a,+Q[1],+Q[2],+Q[3],+Q[4],p)}}else P=nb;if(n=i.start||a.start||+new Date,u={anim:a,percent:e,timestamp:n,start:n+(a.del||0),status:0,initstatus:f||0,stop:!1,ms:p,easing:P,from:r,diff:t,to:s,el:d,callback:i.callback,prev:m,next:l,repeat:h||a.times,origin:d.attr(),totalOrigin:g},ic.push(u),f&&!j&&!k&&(u.stop=!0,u.start=new Date-p*f,1==ic.length))return kc();k&&(u.start=new Date-u.ms*f),1==ic.length&&jc(kc)}b("raphael.anim.start."+d.id,d,a)}}function t(a){for(var b=0;be;e++)for(i=a[e],f=1,h=i.length;h>f;f+=2)c=b.x(i[f],i[f+1]),d=b.y(i[f],i[f+1]),i[f]=c,i[f+1]=d;return a};if(c._g=A,c.type=A.win.SVGAngle||A.doc.implementation.hasFeature("http://www.w3.org/TR/SVG11/feature#BasicStructure","1.1")?"SVG":"VML","VML"==c.type){var sb,tb=A.doc.createElement("div");if(tb.innerHTML='',sb=tb.firstChild,sb.style.behavior="url(#default#VML)",!sb||"object"!=typeof sb.adj)return c.type=G;tb=null}c.svg=!(c.vml="VML"==c.type),c._Paper=C,c.fn=v=C.prototype=c.prototype,c._id=0,c._oid=0,c.is=function(a,b){return b=M.call(b),"finite"==b?!Y[z](+a):"array"==b?a instanceof Array:"null"==b&&null===a||b==typeof a&&null!==a||"object"==b&&a===Object(a)||"array"==b&&Array.isArray&&Array.isArray(a)||W.call(a).slice(8,-1).toLowerCase()==b},c.angle=function(a,b,d,e,f,g){if(null==f){var h=a-d,i=b-e;return h||i?(180+180*N.atan2(-i,-h)/S+360)%360:0}return c.angle(a,b,f,g)-c.angle(d,e,f,g)},c.rad=function(a){return a%360*S/180},c.deg=function(a){return Math.round(180*a/S%360*1e3)/1e3},c.snapTo=function(a,b,d){if(d=c.is(d,"finite")?d:10,c.is(a,V)){for(var e=a.length;e--;)if(Q(a[e]-b)<=d)return a[e]}else{a=+a;var f=b%a;if(d>f)return b-f;if(f>a-d)return b-f+a}return b};c.createUUID=function(a,b){return function(){return"xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx".replace(a,b).toUpperCase()}}(/[xy]/g,function(a){var b=16*N.random()|0,c="x"==a?b:3&b|8;return c.toString(16)});c.setWindow=function(a){b("raphael.setWindow",c,A.win,a),A.win=a,A.doc=A.win.document,c._engine.initWin&&c._engine.initWin(A.win)};var ub=function(a){if(c.vml){var b,d=/^\s+|\s+$/g;try{var e=new ActiveXObject("htmlfile");e.write(""),e.close(),b=e.body}catch(g){b=createPopup().document.body}var h=b.createTextRange();ub=f(function(a){try{b.style.color=I(a).replace(d,G);var c=h.queryCommandValue("ForeColor");return c=(255&c)<<16|65280&c|(16711680&c)>>>16,"#"+("000000"+c.toString(16)).slice(-6)}catch(e){return"none"}})}else{var i=A.doc.createElement("i");i.title="Raphaël Colour Picker",i.style.display="none",A.doc.body.appendChild(i),ub=f(function(a){return i.style.color=a,A.doc.defaultView.getComputedStyle(i,G).getPropertyValue("color")})}return ub(a)},vb=function(){return"hsb("+[this.h,this.s,this.b]+")"},wb=function(){return"hsl("+[this.h,this.s,this.l]+")"},xb=function(){return this.hex},yb=function(a,b,d){if(null==b&&c.is(a,"object")&&"r"in a&&"g"in a&&"b"in a&&(d=a.b,b=a.g,a=a.r),null==b&&c.is(a,U)){var e=c.getRGB(a);a=e.r,b=e.g,d=e.b}return(a>1||b>1||d>1)&&(a/=255,b/=255,d/=255),[a,b,d]},zb=function(a,b,d,e){a*=255,b*=255,d*=255;var f={r:a,g:b,b:d,hex:c.rgb(a,b,d),toString:xb};return c.is(e,"finite")&&(f.opacity=e),f};c.color=function(a){var b;return c.is(a,"object")&&"h"in a&&"s"in a&&"b"in a?(b=c.hsb2rgb(a),a.r=b.r,a.g=b.g,a.b=b.b,a.hex=b.hex):c.is(a,"object")&&"h"in a&&"s"in a&&"l"in a?(b=c.hsl2rgb(a),a.r=b.r,a.g=b.g,a.b=b.b,a.hex=b.hex):(c.is(a,"string")&&(a=c.getRGB(a)),c.is(a,"object")&&"r"in a&&"g"in a&&"b"in a?(b=c.rgb2hsl(a),a.h=b.h,a.s=b.s,a.l=b.l,b=c.rgb2hsb(a),a.v=b.b):(a={hex:"none"},a.r=a.g=a.b=a.h=a.s=a.v=a.l=-1)),a.toString=xb,a},c.hsb2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"b"in a&&(c=a.b,b=a.s,d=a.o,a=a.h),a*=360;var e,f,g,h,i;return a=a%360/60,i=c*b,h=i*(1-Q(a%2-1)),e=f=g=c-i,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a],zb(e,f,g,d)},c.hsl2rgb=function(a,b,c,d){this.is(a,"object")&&"h"in a&&"s"in a&&"l"in a&&(c=a.l,b=a.s,a=a.h),(a>1||b>1||c>1)&&(a/=360,b/=100,c/=100),a*=360;var e,f,g,h,i;return a=a%360/60,i=2*b*(.5>c?c:1-c),h=i*(1-Q(a%2-1)),e=f=g=c-i/2,a=~~a,e+=[i,h,0,0,h,i][a],f+=[h,i,i,h,0,0][a],g+=[0,0,h,i,i,h][a],zb(e,f,g,d)},c.rgb2hsb=function(a,b,c){c=yb(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g;return f=O(a,b,c),g=f-P(a,b,c),d=0==g?null:f==a?(b-c)/g:f==b?(c-a)/g+2:(a-b)/g+4,d=(d+360)%6*60/360,e=0==g?0:g/f,{h:d,s:e,b:f,toString:vb}},c.rgb2hsl=function(a,b,c){c=yb(a,b,c),a=c[0],b=c[1],c=c[2];var d,e,f,g,h,i;return g=O(a,b,c),h=P(a,b,c),i=g-h,d=0==i?null:g==a?(b-c)/i:g==b?(c-a)/i+2:(a-b)/i+4,d=(d+360)%6*60/360,f=(g+h)/2,e=0==i?0:.5>f?i/(2*f):i/(2-2*f),{h:d,s:e,l:f,toString:wb}},c._path2string=function(){return this.join(",").replace(gb,"$1")};c._preload=function(a,b){var c=A.doc.createElement("img");c.style.cssText="position:absolute;left:-9999em;top:-9999em",c.onload=function(){b.call(this),this.onload=null,A.doc.body.removeChild(this)},c.onerror=function(){A.doc.body.removeChild(this)},A.doc.body.appendChild(c),c.src=a};c.getRGB=f(function(a){if(!a||(a=I(a)).indexOf("-")+1)return{r:-1,g:-1,b:-1,hex:"none",error:1,toString:g};if("none"==a)return{r:-1,g:-1,b:-1,hex:"none",toString:g};!(fb[z](a.toLowerCase().substring(0,2))||"#"==a.charAt())&&(a=ub(a));var b,d,e,f,h,i,j=a.match(X);return j?(j[2]&&(e=ab(j[2].substring(5),16),d=ab(j[2].substring(3,5),16),b=ab(j[2].substring(1,3),16)),j[3]&&(e=ab((h=j[3].charAt(3))+h,16),d=ab((h=j[3].charAt(2))+h,16),b=ab((h=j[3].charAt(1))+h,16)),j[4]&&(i=j[4][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),"rgba"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100)),j[5]?(i=j[5][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),("deg"==i[0].slice(-3)||"°"==i[0].slice(-1))&&(b/=360),"hsba"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100),c.hsb2rgb(b,d,e,f)):j[6]?(i=j[6][J](eb),b=_(i[0]),"%"==i[0].slice(-1)&&(b*=2.55),d=_(i[1]),"%"==i[1].slice(-1)&&(d*=2.55),e=_(i[2]),"%"==i[2].slice(-1)&&(e*=2.55),("deg"==i[0].slice(-3)||"°"==i[0].slice(-1))&&(b/=360),"hsla"==j[1].toLowerCase().slice(0,4)&&(f=_(i[3])),i[3]&&"%"==i[3].slice(-1)&&(f/=100),c.hsl2rgb(b,d,e,f)):(j={r:b,g:d,b:e,toString:g},j.hex="#"+(16777216|e|d<<8|b<<16).toString(16).slice(1),c.is(f,"finite")&&(j.opacity=f),j)):{r:-1,g:-1,b:-1,hex:"none",error:1,toString:g}},c),c.hsb=f(function(a,b,d){return c.hsb2rgb(a,b,d).hex}),c.hsl=f(function(a,b,d){return c.hsl2rgb(a,b,d).hex}),c.rgb=f(function(a,b,c){return"#"+(16777216|c|b<<8|a<<16).toString(16).slice(1)}),c.getColor=function(a){var b=this.getColor.start=this.getColor.start||{h:0,s:1,b:a||.75},c=this.hsb2rgb(b.h,b.s,b.b);return b.h+=.075,b.h>1&&(b.h=0,b.s-=.2,b.s<=0&&(this.getColor.start={h:0,s:1,b:b.b})),c.hex},c.getColor.reset=function(){delete this.start},c.parsePathString=function(a){if(!a)return null;var b=Ab(a);if(b.arr)return Cb(b.arr);var d={a:7,c:6,h:1,l:2,m:2,r:4,q:4,s:4,t:2,v:1,z:0},e=[];return c.is(a,V)&&c.is(a[0],V)&&(e=Cb(a)),e.length||I(a).replace(hb,function(a,b,c){var f=[],g=b.toLowerCase();if(c.replace(jb,function(a,b){b&&f.push(+b)}),"m"==g&&f.length>2&&(e.push([b][E](f.splice(0,2))),g="l",b="m"==b?"l":"L"),"r"==g)e.push([b][E](f));else for(;f.length>=d[g]&&(e.push([b][E](f.splice(0,d[g]))),d[g]););}),e.toString=c._path2string,b.arr=Cb(e),e},c.parseTransformString=f(function(a){if(!a)return null;var b=[];return c.is(a,V)&&c.is(a[0],V)&&(b=Cb(a)),b.length||I(a).replace(ib,function(a,c,d){{var e=[];M.call(c)}d.replace(jb,function(a,b){b&&e.push(+b)}),b.push([c][E](e))}),b.toString=c._path2string,b});var Ab=function(a){var b=Ab.ps=Ab.ps||{};return b[a]?b[a].sleep=100:b[a]={sleep:100},setTimeout(function(){for(var c in b)b[z](c)&&c!=a&&(b[c].sleep--,!b[c].sleep&&delete b[c])}),b[a]};c.findDotsAtSegment=function(a,b,c,d,e,f,g,h,i){var j=1-i,k=R(j,3),l=R(j,2),m=i*i,n=m*i,o=k*a+3*l*i*c+3*j*i*i*e+n*g,p=k*b+3*l*i*d+3*j*i*i*f+n*h,q=a+2*i*(c-a)+m*(e-2*c+a),r=b+2*i*(d-b)+m*(f-2*d+b),s=c+2*i*(e-c)+m*(g-2*e+c),t=d+2*i*(f-d)+m*(h-2*f+d),u=j*a+i*c,v=j*b+i*d,w=j*e+i*g,x=j*f+i*h,y=90-180*N.atan2(q-s,r-t)/S;return(q>s||t>r)&&(y+=180),{x:o,y:p,m:{x:q,y:r},n:{x:s,y:t},start:{x:u,y:v},end:{x:w,y:x},alpha:y}},c.bezierBBox=function(a,b,d,e,f,g,h,i){c.is(a,"array")||(a=[a,b,d,e,f,g,h,i]);var j=Jb.apply(null,a);return{x:j.min.x,y:j.min.y,x2:j.max.x,y2:j.max.y,width:j.max.x-j.min.x,height:j.max.y-j.min.y}},c.isPointInsideBBox=function(a,b,c){return b>=a.x&&b<=a.x2&&c>=a.y&&c<=a.y2},c.isBBoxIntersect=function(a,b){var d=c.isPointInsideBBox;return d(b,a.x,a.y)||d(b,a.x2,a.y)||d(b,a.x,a.y2)||d(b,a.x2,a.y2)||d(a,b.x,b.y)||d(a,b.x2,b.y)||d(a,b.x,b.y2)||d(a,b.x2,b.y2)||(a.xb.x||b.xa.x)&&(a.yb.y||b.ya.y)},c.pathIntersection=function(a,b){return n(a,b)},c.pathIntersectionNumber=function(a,b){return n(a,b,1)},c.isPointInsidePath=function(a,b,d){var e=c.pathBBox(a);return c.isPointInsideBBox(e,b,d)&&n(a,[["M",b,d],["H",e.x2+10]],1)%2==1},c._removedFactory=function(a){return function(){b("raphael.log",null,"Raphaël: you are calling to method “"+a+"†of removed object",a)}};var Bb=c.pathBBox=function(a){var b=Ab(a);if(b.bbox)return d(b.bbox);if(!a)return{x:0,y:0,width:0,height:0,x2:0,y2:0};a=Kb(a);for(var c,e=0,f=0,g=[],h=[],i=0,j=a.length;j>i;i++)if(c=a[i],"M"==c[0])e=c[1],f=c[2],g.push(e),h.push(f);else{var k=Jb(e,f,c[1],c[2],c[3],c[4],c[5],c[6]);g=g[E](k.min.x,k.max.x),h=h[E](k.min.y,k.max.y),e=c[5],f=c[6]}var l=P[D](0,g),m=P[D](0,h),n=O[D](0,g),o=O[D](0,h),p=n-l,q=o-m,r={x:l,y:m,x2:n,y2:o,width:p,height:q,cx:l+p/2,cy:m+q/2};return b.bbox=d(r),r},Cb=function(a){var b=d(a);return b.toString=c._path2string,b},Db=c._pathToRelative=function(a){var b=Ab(a);if(b.rel)return Cb(b.rel);c.is(a,V)&&c.is(a&&a[0],V)||(a=c.parsePathString(a));var d=[],e=0,f=0,g=0,h=0,i=0;"M"==a[0][0]&&(e=a[0][1],f=a[0][2],g=e,h=f,i++,d.push(["M",e,f]));for(var j=i,k=a.length;k>j;j++){var l=d[j]=[],m=a[j];if(m[0]!=M.call(m[0]))switch(l[0]=M.call(m[0]),l[0]){case"a":l[1]=m[1],l[2]=m[2],l[3]=m[3],l[4]=m[4],l[5]=m[5],l[6]=+(m[6]-e).toFixed(3),l[7]=+(m[7]-f).toFixed(3);break;case"v":l[1]=+(m[1]-f).toFixed(3);break;case"m":g=m[1],h=m[2];default:for(var n=1,o=m.length;o>n;n++)l[n]=+(m[n]-(n%2?e:f)).toFixed(3)}else{l=d[j]=[],"m"==m[0]&&(g=m[1]+e,h=m[2]+f);for(var p=0,q=m.length;q>p;p++)d[j][p]=m[p]}var r=d[j].length;switch(d[j][0]){case"z":e=g,f=h;break;case"h":e+=+d[j][r-1];break;case"v":f+=+d[j][r-1];break;default:e+=+d[j][r-2],f+=+d[j][r-1]}}return d.toString=c._path2string,b.rel=Cb(d),d},Eb=c._pathToAbsolute=function(a){var b=Ab(a);if(b.abs)return Cb(b.abs);if(c.is(a,V)&&c.is(a&&a[0],V)||(a=c.parsePathString(a)),!a||!a.length)return[["M",0,0]];var d=[],e=0,f=0,g=0,i=0,j=0;"M"==a[0][0]&&(e=+a[0][1],f=+a[0][2],g=e,i=f,j++,d[0]=["M",e,f]);for(var k,l,m=3==a.length&&"M"==a[0][0]&&"R"==a[1][0].toUpperCase()&&"Z"==a[2][0].toUpperCase(),n=j,o=a.length;o>n;n++){if(d.push(k=[]),l=a[n],l[0]!=bb.call(l[0]))switch(k[0]=bb.call(l[0]),k[0]){case"A":k[1]=l[1],k[2]=l[2],k[3]=l[3],k[4]=l[4],k[5]=l[5],k[6]=+(l[6]+e),k[7]=+(l[7]+f);break;case"V":k[1]=+l[1]+f;break;case"H":k[1]=+l[1]+e;break;case"R":for(var p=[e,f][E](l.slice(1)),q=2,r=p.length;r>q;q++)p[q]=+p[q]+e,p[++q]=+p[q]+f;d.pop(),d=d[E](h(p,m));break;case"M":g=+l[1]+e,i=+l[2]+f;default:for(q=1,r=l.length;r>q;q++)k[q]=+l[q]+(q%2?e:f)}else if("R"==l[0])p=[e,f][E](l.slice(1)),d.pop(),d=d[E](h(p,m)),k=["R"][E](l.slice(-2));else for(var s=0,t=l.length;t>s;s++)k[s]=l[s];switch(k[0]){case"Z":e=g,f=i;break;case"H":e=k[1];break;case"V":f=k[1];break;case"M":g=k[k.length-2],i=k[k.length-1];default:e=k[k.length-2],f=k[k.length-1]}}return d.toString=c._path2string,b.abs=Cb(d),d},Fb=function(a,b,c,d){return[a,b,c,d,c,d]},Gb=function(a,b,c,d,e,f){var g=1/3,h=2/3;return[g*a+h*c,g*b+h*d,g*e+h*c,g*f+h*d,e,f]},Hb=function(a,b,c,d,e,g,h,i,j,k){var l,m=120*S/180,n=S/180*(+e||0),o=[],p=f(function(a,b,c){var d=a*N.cos(c)-b*N.sin(c),e=a*N.sin(c)+b*N.cos(c);return{x:d,y:e}});if(k)y=k[0],z=k[1],w=k[2],x=k[3];else{l=p(a,b,-n),a=l.x,b=l.y,l=p(i,j,-n),i=l.x,j=l.y;var q=(N.cos(S/180*e),N.sin(S/180*e),(a-i)/2),r=(b-j)/2,s=q*q/(c*c)+r*r/(d*d);s>1&&(s=N.sqrt(s),c=s*c,d=s*d);var t=c*c,u=d*d,v=(g==h?-1:1)*N.sqrt(Q((t*u-t*r*r-u*q*q)/(t*r*r+u*q*q))),w=v*c*r/d+(a+i)/2,x=v*-d*q/c+(b+j)/2,y=N.asin(((b-x)/d).toFixed(9)),z=N.asin(((j-x)/d).toFixed(9));y=w>a?S-y:y,z=w>i?S-z:z,0>y&&(y=2*S+y),0>z&&(z=2*S+z),h&&y>z&&(y-=2*S),!h&&z>y&&(z-=2*S)}var A=z-y;if(Q(A)>m){var B=z,C=i,D=j;z=y+m*(h&&z>y?1:-1),i=w+c*N.cos(z),j=x+d*N.sin(z),o=Hb(i,j,c,d,e,0,h,C,D,[z,B,w,x])}A=z-y;var F=N.cos(y),G=N.sin(y),H=N.cos(z),I=N.sin(z),K=N.tan(A/4),L=4/3*c*K,M=4/3*d*K,O=[a,b],P=[a+L*G,b-M*F],R=[i+L*I,j-M*H],T=[i,j];if(P[0]=2*O[0]-P[0],P[1]=2*O[1]-P[1],k)return[P,R,T][E](o);o=[P,R,T][E](o).join()[J](",");for(var U=[],V=0,W=o.length;W>V;V++)U[V]=V%2?p(o[V-1],o[V],n).y:p(o[V],o[V+1],n).x;return U},Ib=function(a,b,c,d,e,f,g,h,i){var j=1-i;return{x:R(j,3)*a+3*R(j,2)*i*c+3*j*i*i*e+R(i,3)*g,y:R(j,3)*b+3*R(j,2)*i*d+3*j*i*i*f+R(i,3)*h}},Jb=f(function(a,b,c,d,e,f,g,h){var i,j=e-2*c+a-(g-2*e+c),k=2*(c-a)-2*(e-c),l=a-c,m=(-k+N.sqrt(k*k-4*j*l))/2/j,n=(-k-N.sqrt(k*k-4*j*l))/2/j,o=[b,h],p=[a,g];return Q(m)>"1e12"&&(m=.5),Q(n)>"1e12"&&(n=.5),m>0&&1>m&&(i=Ib(a,b,c,d,e,f,g,h,m),p.push(i.x),o.push(i.y)),n>0&&1>n&&(i=Ib(a,b,c,d,e,f,g,h,n),p.push(i.x),o.push(i.y)),j=f-2*d+b-(h-2*f+d),k=2*(d-b)-2*(f-d),l=b-d,m=(-k+N.sqrt(k*k-4*j*l))/2/j,n=(-k-N.sqrt(k*k-4*j*l))/2/j,Q(m)>"1e12"&&(m=.5),Q(n)>"1e12"&&(n=.5),m>0&&1>m&&(i=Ib(a,b,c,d,e,f,g,h,m),p.push(i.x),o.push(i.y)),n>0&&1>n&&(i=Ib(a,b,c,d,e,f,g,h,n),p.push(i.x),o.push(i.y)),{min:{x:P[D](0,p),y:P[D](0,o)},max:{x:O[D](0,p),y:O[D](0,o)}}}),Kb=c._path2curve=f(function(a,b){var c=!b&&Ab(a);if(!b&&c.curve)return Cb(c.curve);for(var d=Eb(a),e=b&&Eb(b),f={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},g={x:0,y:0,bx:0,by:0,X:0,Y:0,qx:null,qy:null},h=(function(a,b,c){var d,e,f={T:1,Q:1};if(!a)return["C",b.x,b.y,b.x,b.y,b.x,b.y];switch(!(a[0]in f)&&(b.qx=b.qy=null),a[0]){case"M":b.X=a[1],b.Y=a[2];break;case"A":a=["C"][E](Hb[D](0,[b.x,b.y][E](a.slice(1))));break;case"S":"C"==c||"S"==c?(d=2*b.x-b.bx,e=2*b.y-b.by):(d=b.x,e=b.y),a=["C",d,e][E](a.slice(1));break;case"T":"Q"==c||"T"==c?(b.qx=2*b.x-b.qx,b.qy=2*b.y-b.qy):(b.qx=b.x,b.qy=b.y),a=["C"][E](Gb(b.x,b.y,b.qx,b.qy,a[1],a[2]));break;case"Q":b.qx=a[1],b.qy=a[2],a=["C"][E](Gb(b.x,b.y,a[1],a[2],a[3],a[4]));break;case"L":a=["C"][E](Fb(b.x,b.y,a[1],a[2]));break;case"H":a=["C"][E](Fb(b.x,b.y,a[1],b.y));break;case"V":a=["C"][E](Fb(b.x,b.y,b.x,a[1]));break;case"Z":a=["C"][E](Fb(b.x,b.y,b.X,b.Y))}return a}),i=function(a,b){if(a[b].length>7){a[b].shift();for(var c=a[b];c.length;)k[b]="A",e&&(l[b]="A"),a.splice(b++,0,["C"][E](c.splice(0,6)));a.splice(b,1),p=O(d.length,e&&e.length||0)}},j=function(a,b,c,f,g){a&&b&&"M"==a[g][0]&&"M"!=b[g][0]&&(b.splice(g,0,["M",f.x,f.y]),c.bx=0,c.by=0,c.x=a[g][1],c.y=a[g][2],p=O(d.length,e&&e.length||0))},k=[],l=[],m="",n="",o=0,p=O(d.length,e&&e.length||0);p>o;o++){d[o]&&(m=d[o][0]),"C"!=m&&(k[o]=m,o&&(n=k[o-1])),d[o]=h(d[o],f,n),"A"!=k[o]&&"C"==m&&(k[o]="C"),i(d,o),e&&(e[o]&&(m=e[o][0]),"C"!=m&&(l[o]=m,o&&(n=l[o-1])),e[o]=h(e[o],g,n),"A"!=l[o]&&"C"==m&&(l[o]="C"),i(e,o)),j(d,e,f,g,o),j(e,d,g,f,o);var q=d[o],r=e&&e[o],s=q.length,t=e&&r.length;f.x=q[s-2],f.y=q[s-1],f.bx=_(q[s-4])||f.x,f.by=_(q[s-3])||f.y,g.bx=e&&(_(r[t-4])||g.x),g.by=e&&(_(r[t-3])||g.y),g.x=e&&r[t-2],g.y=e&&r[t-1]}return e||(c.curve=Cb(d)),e?[d,e]:d},null,Cb),Lb=(c._parseDots=f(function(a){for(var b=[],d=0,e=a.length;e>d;d++){var f={},g=a[d].match(/^([^:]*):?([\d\.]*)/);if(f.color=c.getRGB(g[1]),f.color.error)return null;f.color=f.color.hex,g[2]&&(f.offset=g[2]+"%"),b.push(f)}for(d=1,e=b.length-1;e>d;d++)if(!b[d].offset){for(var h=_(b[d-1].offset||0),i=0,j=d+1;e>j;j++)if(b[j].offset){i=b[j].offset;break}i||(i=100,j=e),i=_(i);for(var k=(i-h)/(j-d+1);j>d;d++)h+=k,b[d].offset=h+"%"}return b}),c._tear=function(a,b){a==b.top&&(b.top=a.prev),a==b.bottom&&(b.bottom=a.next),a.next&&(a.next.prev=a.prev),a.prev&&(a.prev.next=a.next)}),Mb=(c._tofront=function(a,b){b.top!==a&&(Lb(a,b),a.next=null,a.prev=b.top,b.top.next=a,b.top=a)},c._toback=function(a,b){b.bottom!==a&&(Lb(a,b),a.next=b.bottom,a.prev=null,b.bottom.prev=a,b.bottom=a)},c._insertafter=function(a,b,c){Lb(a,c),b==c.top&&(c.top=a),b.next&&(b.next.prev=a),a.next=b.next,a.prev=b,b.next=a},c._insertbefore=function(a,b,c){Lb(a,c),b==c.bottom&&(c.bottom=a),b.prev&&(b.prev.next=a),a.prev=b.prev,b.prev=a,a.next=b},c.toMatrix=function(a,b){var c=Bb(a),d={_:{transform:G},getBBox:function(){return c}};return Nb(d,b),d.matrix}),Nb=(c.transformPath=function(a,b){return rb(a,Mb(a,b))},c._extractTransform=function(a,b){if(null==b)return a._.transform;b=I(b).replace(/\.{3}|\u2026/g,a._.transform||G);var d=c.parseTransformString(b),e=0,f=0,g=0,h=1,i=1,j=a._,k=new o;if(j.transform=d||[],d)for(var l=0,m=d.length;m>l;l++){var n,p,q,r,s,t=d[l],u=t.length,v=I(t[0]).toLowerCase(),w=t[0]!=v,x=w?k.invert():0;"t"==v&&3==u?w?(n=x.x(0,0),p=x.y(0,0),q=x.x(t[1],t[2]),r=x.y(t[1],t[2]),k.translate(q-n,r-p)):k.translate(t[1],t[2]):"r"==v?2==u?(s=s||a.getBBox(1),k.rotate(t[1],s.x+s.width/2,s.y+s.height/2),e+=t[1]):4==u&&(w?(q=x.x(t[2],t[3]),r=x.y(t[2],t[3]),k.rotate(t[1],q,r)):k.rotate(t[1],t[2],t[3]),e+=t[1]):"s"==v?2==u||3==u?(s=s||a.getBBox(1),k.scale(t[1],t[u-1],s.x+s.width/2,s.y+s.height/2),h*=t[1],i*=t[u-1]):5==u&&(w?(q=x.x(t[3],t[4]),r=x.y(t[3],t[4]),k.scale(t[1],t[2],q,r)):k.scale(t[1],t[2],t[3],t[4]),h*=t[1],i*=t[2]):"m"==v&&7==u&&k.add(t[1],t[2],t[3],t[4],t[5],t[6]),j.dirtyT=1,a.matrix=k}a.matrix=k,j.sx=h,j.sy=i,j.deg=e,j.dx=f=k.e,j.dy=g=k.f,1==h&&1==i&&!e&&j.bbox?(j.bbox.x+=+f,j.bbox.y+=+g):j.dirtyT=1}),Ob=function(a){var b=a[0];switch(b.toLowerCase()){case"t":return[b,0,0];case"m":return[b,1,0,0,1,0,0];case"r":return 4==a.length?[b,0,a[2],a[3]]:[b,0];case"s":return 5==a.length?[b,1,1,a[3],a[4]]:3==a.length?[b,1,1]:[b,1]}},Pb=c._equaliseTransform=function(a,b){b=I(b).replace(/\.{3}|\u2026/g,a),a=c.parseTransformString(a)||[],b=c.parseTransformString(b)||[]; +for(var d,e,f,g,h=O(a.length,b.length),i=[],j=[],k=0;h>k;k++){if(f=a[k]||Ob(b[k]),g=b[k]||Ob(f),f[0]!=g[0]||"r"==f[0].toLowerCase()&&(f[2]!=g[2]||f[3]!=g[3])||"s"==f[0].toLowerCase()&&(f[3]!=g[3]||f[4]!=g[4]))return;for(i[k]=[],j[k]=[],d=0,e=O(f.length,g.length);e>d;d++)d in f&&(i[k][d]=f[d]),d in g&&(j[k][d]=g[d])}return{from:i,to:j}};c._getContainer=function(a,b,d,e){var f;return f=null!=e||c.is(a,"object")?a:A.doc.getElementById(a),null!=f?f.tagName?null==b?{container:f,width:f.style.pixelWidth||f.offsetWidth,height:f.style.pixelHeight||f.offsetHeight}:{container:f,width:b,height:d}:{container:1,x:a,y:b,width:d,height:e}:void 0},c.pathToRelative=Db,c._engine={},c.path2curve=Kb,c.matrix=function(a,b,c,d,e,f){return new o(a,b,c,d,e,f)},function(a){function b(a){return a[0]*a[0]+a[1]*a[1]}function d(a){var c=N.sqrt(b(a));a[0]&&(a[0]/=c),a[1]&&(a[1]/=c)}a.add=function(a,b,c,d,e,f){var g,h,i,j,k=[[],[],[]],l=[[this.a,this.c,this.e],[this.b,this.d,this.f],[0,0,1]],m=[[a,c,e],[b,d,f],[0,0,1]];for(a&&a instanceof o&&(m=[[a.a,a.c,a.e],[a.b,a.d,a.f],[0,0,1]]),g=0;3>g;g++)for(h=0;3>h;h++){for(j=0,i=0;3>i;i++)j+=l[g][i]*m[i][h];k[g][h]=j}this.a=k[0][0],this.b=k[1][0],this.c=k[0][1],this.d=k[1][1],this.e=k[0][2],this.f=k[1][2]},a.invert=function(){var a=this,b=a.a*a.d-a.b*a.c;return new o(a.d/b,-a.b/b,-a.c/b,a.a/b,(a.c*a.f-a.d*a.e)/b,(a.b*a.e-a.a*a.f)/b)},a.clone=function(){return new o(this.a,this.b,this.c,this.d,this.e,this.f)},a.translate=function(a,b){this.add(1,0,0,1,a,b)},a.scale=function(a,b,c,d){null==b&&(b=a),(c||d)&&this.add(1,0,0,1,c,d),this.add(a,0,0,b,0,0),(c||d)&&this.add(1,0,0,1,-c,-d)},a.rotate=function(a,b,d){a=c.rad(a),b=b||0,d=d||0;var e=+N.cos(a).toFixed(9),f=+N.sin(a).toFixed(9);this.add(e,f,-f,e,b,d),this.add(1,0,0,1,-b,-d)},a.x=function(a,b){return a*this.a+b*this.c+this.e},a.y=function(a,b){return a*this.b+b*this.d+this.f},a.get=function(a){return+this[I.fromCharCode(97+a)].toFixed(4)},a.toString=function(){return c.svg?"matrix("+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)].join()+")":[this.get(0),this.get(2),this.get(1),this.get(3),0,0].join()},a.toFilter=function(){return"progid:DXImageTransform.Microsoft.Matrix(M11="+this.get(0)+", M12="+this.get(2)+", M21="+this.get(1)+", M22="+this.get(3)+", Dx="+this.get(4)+", Dy="+this.get(5)+", sizingmethod='auto expand')"},a.offset=function(){return[this.e.toFixed(4),this.f.toFixed(4)]},a.split=function(){var a={};a.dx=this.e,a.dy=this.f;var e=[[this.a,this.c],[this.b,this.d]];a.scalex=N.sqrt(b(e[0])),d(e[0]),a.shear=e[0][0]*e[1][0]+e[0][1]*e[1][1],e[1]=[e[1][0]-e[0][0]*a.shear,e[1][1]-e[0][1]*a.shear],a.scaley=N.sqrt(b(e[1])),d(e[1]),a.shear/=a.scaley;var f=-e[0][1],g=e[1][1];return 0>g?(a.rotate=c.deg(N.acos(g)),0>f&&(a.rotate=360-a.rotate)):a.rotate=c.deg(N.asin(f)),a.isSimple=!(+a.shear.toFixed(9)||a.scalex.toFixed(9)!=a.scaley.toFixed(9)&&a.rotate),a.isSuperSimple=!+a.shear.toFixed(9)&&a.scalex.toFixed(9)==a.scaley.toFixed(9)&&!a.rotate,a.noRotation=!+a.shear.toFixed(9)&&!a.rotate,a},a.toTransformString=function(a){var b=a||this[J]();return b.isSimple?(b.scalex=+b.scalex.toFixed(4),b.scaley=+b.scaley.toFixed(4),b.rotate=+b.rotate.toFixed(4),(b.dx||b.dy?"t"+[b.dx,b.dy]:G)+(1!=b.scalex||1!=b.scaley?"s"+[b.scalex,b.scaley,0,0]:G)+(b.rotate?"r"+[b.rotate,0,0]:G)):"m"+[this.get(0),this.get(1),this.get(2),this.get(3),this.get(4),this.get(5)]}}(o.prototype);var Qb=navigator.userAgent.match(/Version\/(.*?)\s/)||navigator.userAgent.match(/Chrome\/(\d+)/);v.safari="Apple Computer, Inc."==navigator.vendor&&(Qb&&Qb[1]<4||"iP"==navigator.platform.slice(0,2))||"Google Inc."==navigator.vendor&&Qb&&Qb[1]<8?function(){var a=this.rect(-99,-99,this.width+99,this.height+99).attr({stroke:"none"});setTimeout(function(){a.remove()})}:mb;for(var Rb=function(){this.returnValue=!1},Sb=function(){return this.originalEvent.preventDefault()},Tb=function(){this.cancelBubble=!0},Ub=function(){return this.originalEvent.stopPropagation()},Vb=function(a){var b=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,c=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft;return{x:a.clientX+c,y:a.clientY+b}},Wb=function(){return A.doc.addEventListener?function(a,b,c,d){var e=function(a){var b=Vb(a);return c.call(d,a,b.x,b.y)};if(a.addEventListener(b,e,!1),F&&L[b]){var f=function(b){for(var e=Vb(b),f=b,g=0,h=b.targetTouches&&b.targetTouches.length;h>g;g++)if(b.targetTouches[g].target==a){b=b.targetTouches[g],b.originalEvent=f,b.preventDefault=Sb,b.stopPropagation=Ub;break}return c.call(d,b,e.x,e.y)};a.addEventListener(L[b],f,!1)}return function(){return a.removeEventListener(b,e,!1),F&&L[b]&&a.removeEventListener(L[b],f,!1),!0}}:A.doc.attachEvent?function(a,b,c,d){var e=function(a){a=a||A.win.event;var b=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,e=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft,f=a.clientX+e,g=a.clientY+b;return a.preventDefault=a.preventDefault||Rb,a.stopPropagation=a.stopPropagation||Tb,c.call(d,a,f,g)};a.attachEvent("on"+b,e);var f=function(){return a.detachEvent("on"+b,e),!0};return f}:void 0}(),Xb=[],Yb=function(a){for(var c,d=a.clientX,e=a.clientY,f=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,g=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft,h=Xb.length;h--;){if(c=Xb[h],F&&a.touches){for(var i,j=a.touches.length;j--;)if(i=a.touches[j],i.identifier==c.el._drag.id){d=i.clientX,e=i.clientY,(a.originalEvent?a.originalEvent:a).preventDefault();break}}else a.preventDefault();var k,l=c.el.node,m=l.nextSibling,n=l.parentNode,o=l.style.display;A.win.opera&&n.removeChild(l),l.style.display="none",k=c.el.paper.getElementByPoint(d,e),l.style.display=o,A.win.opera&&(m?n.insertBefore(l,m):n.appendChild(l)),k&&b("raphael.drag.over."+c.el.id,c.el,k),d+=g,e+=f,b("raphael.drag.move."+c.el.id,c.move_scope||c.el,d-c.el._drag.x,e-c.el._drag.y,d,e,a)}},Zb=function(a){c.unmousemove(Yb).unmouseup(Zb);for(var d,e=Xb.length;e--;)d=Xb[e],d.el._drag={},b("raphael.drag.end."+d.el.id,d.end_scope||d.start_scope||d.move_scope||d.el,a);Xb=[]},$b=c.el={},_b=K.length;_b--;)!function(a){c[a]=$b[a]=function(b,d){return c.is(b,"function")&&(this.events=this.events||[],this.events.push({name:a,f:b,unbind:Wb(this.shape||this.node||A.doc,a,b,d||this)})),this},c["un"+a]=$b["un"+a]=function(b){for(var d=this.events||[],e=d.length;e--;)d[e].name!=a||!c.is(b,"undefined")&&d[e].f!=b||(d[e].unbind(),d.splice(e,1),!d.length&&delete this.events);return this}}(K[_b]);$b.data=function(a,d){var e=kb[this.id]=kb[this.id]||{};if(0==arguments.length)return e;if(1==arguments.length){if(c.is(a,"object")){for(var f in a)a[z](f)&&this.data(f,a[f]);return this}return b("raphael.data.get."+this.id,this,e[a],a),e[a]}return e[a]=d,b("raphael.data.set."+this.id,this,d,a),this},$b.removeData=function(a){return null==a?kb[this.id]={}:kb[this.id]&&delete kb[this.id][a],this},$b.getData=function(){return d(kb[this.id]||{})},$b.hover=function(a,b,c,d){return this.mouseover(a,c).mouseout(b,d||c)},$b.unhover=function(a,b){return this.unmouseover(a).unmouseout(b)};var ac=[];$b.drag=function(a,d,e,f,g,h){function i(i){(i.originalEvent||i).preventDefault();var j=i.clientX,k=i.clientY,l=A.doc.documentElement.scrollTop||A.doc.body.scrollTop,m=A.doc.documentElement.scrollLeft||A.doc.body.scrollLeft;if(this._drag.id=i.identifier,F&&i.touches)for(var n,o=i.touches.length;o--;)if(n=i.touches[o],this._drag.id=n.identifier,n.identifier==this._drag.id){j=n.clientX,k=n.clientY;break}this._drag.x=j+m,this._drag.y=k+l,!Xb.length&&c.mousemove(Yb).mouseup(Zb),Xb.push({el:this,move_scope:f,start_scope:g,end_scope:h}),d&&b.on("raphael.drag.start."+this.id,d),a&&b.on("raphael.drag.move."+this.id,a),e&&b.on("raphael.drag.end."+this.id,e),b("raphael.drag.start."+this.id,g||f||this,i.clientX+m,i.clientY+l,i)}return this._drag={},ac.push({el:this,start:i}),this.mousedown(i),this},$b.onDragOver=function(a){a?b.on("raphael.drag.over."+this.id,a):b.unbind("raphael.drag.over."+this.id)},$b.undrag=function(){for(var a=ac.length;a--;)ac[a].el==this&&(this.unmousedown(ac[a].start),ac.splice(a,1),b.unbind("raphael.drag.*."+this.id));!ac.length&&c.unmousemove(Yb).unmouseup(Zb),Xb=[]},v.circle=function(a,b,d){var e=c._engine.circle(this,a||0,b||0,d||0);return this.__set__&&this.__set__.push(e),e},v.rect=function(a,b,d,e,f){var g=c._engine.rect(this,a||0,b||0,d||0,e||0,f||0);return this.__set__&&this.__set__.push(g),g},v.ellipse=function(a,b,d,e){var f=c._engine.ellipse(this,a||0,b||0,d||0,e||0);return this.__set__&&this.__set__.push(f),f},v.path=function(a){a&&!c.is(a,U)&&!c.is(a[0],V)&&(a+=G);var b=c._engine.path(c.format[D](c,arguments),this);return this.__set__&&this.__set__.push(b),b},v.image=function(a,b,d,e,f){var g=c._engine.image(this,a||"about:blank",b||0,d||0,e||0,f||0);return this.__set__&&this.__set__.push(g),g},v.text=function(a,b,d){var e=c._engine.text(this,a||0,b||0,I(d));return this.__set__&&this.__set__.push(e),e},v.set=function(a){!c.is(a,"array")&&(a=Array.prototype.splice.call(arguments,0,arguments.length));var b=new mc(a);return this.__set__&&this.__set__.push(b),b.paper=this,b.type="set",b},v.setStart=function(a){this.__set__=a||this.set()},v.setFinish=function(){var a=this.__set__;return delete this.__set__,a},v.getSize=function(){var a=this.canvas.parentNode;return{width:a.offsetWidth,height:a.offsetHeight}},v.setSize=function(a,b){return c._engine.setSize.call(this,a,b)},v.setViewBox=function(a,b,d,e,f){return c._engine.setViewBox.call(this,a,b,d,e,f)},v.top=v.bottom=null,v.raphael=c;var bc=function(a){var b=a.getBoundingClientRect(),c=a.ownerDocument,d=c.body,e=c.documentElement,f=e.clientTop||d.clientTop||0,g=e.clientLeft||d.clientLeft||0,h=b.top+(A.win.pageYOffset||e.scrollTop||d.scrollTop)-f,i=b.left+(A.win.pageXOffset||e.scrollLeft||d.scrollLeft)-g;return{y:h,x:i}};v.getElementByPoint=function(a,b){var c=this,d=c.canvas,e=A.doc.elementFromPoint(a,b);if(A.win.opera&&"svg"==e.tagName){var f=bc(d),g=d.createSVGRect();g.x=a-f.x,g.y=b-f.y,g.width=g.height=1;var h=d.getIntersectionList(g,null);h.length&&(e=h[h.length-1])}if(!e)return null;for(;e.parentNode&&e!=d.parentNode&&!e.raphael;)e=e.parentNode;return e==c.canvas.parentNode&&(e=d),e=e&&e.raphael?c.getById(e.raphaelid):null},v.getElementsByBBox=function(a){var b=this.set();return this.forEach(function(d){c.isBBoxIntersect(d.getBBox(),a)&&b.push(d)}),b},v.getById=function(a){for(var b=this.bottom;b;){if(b.id==a)return b;b=b.next}return null},v.forEach=function(a,b){for(var c=this.bottom;c;){if(a.call(b,c)===!1)return this;c=c.next}return this},v.getElementsByPoint=function(a,b){var c=this.set();return this.forEach(function(d){d.isPointInside(a,b)&&c.push(d)}),c},$b.isPointInside=function(a,b){var d=this.realPath=qb[this.type](this);return this.attr("transform")&&this.attr("transform").length&&(d=c.transformPath(d,this.attr("transform"))),c.isPointInsidePath(d,a,b)},$b.getBBox=function(a){if(this.removed)return{};var b=this._;return a?((b.dirty||!b.bboxwt)&&(this.realPath=qb[this.type](this),b.bboxwt=Bb(this.realPath),b.bboxwt.toString=p,b.dirty=0),b.bboxwt):((b.dirty||b.dirtyT||!b.bbox)&&((b.dirty||!this.realPath)&&(b.bboxwt=0,this.realPath=qb[this.type](this)),b.bbox=Bb(rb(this.realPath,this.matrix)),b.bbox.toString=p,b.dirty=b.dirtyT=0),b.bbox)},$b.clone=function(){if(this.removed)return null;var a=this.paper[this.type]().attr(this.attr());return this.__set__&&this.__set__.push(a),a},$b.glow=function(a){if("text"==this.type)return null;a=a||{};var b={width:(a.width||10)+(+this.attr("stroke-width")||1),fill:a.fill||!1,opacity:a.opacity||.5,offsetx:a.offsetx||0,offsety:a.offsety||0,color:a.color||"#000"},c=b.width/2,d=this.paper,e=d.set(),f=this.realPath||qb[this.type](this);f=this.matrix?rb(f,this.matrix):f;for(var g=1;c+1>g;g++)e.push(d.path(f).attr({stroke:b.color,fill:b.fill?b.color:"none","stroke-linejoin":"round","stroke-linecap":"round","stroke-width":+(b.width/c*g).toFixed(3),opacity:+(b.opacity/c).toFixed(3)}));return e.insertBefore(this).translate(b.offsetx,b.offsety)};var cc=function(a,b,d,e,f,g,h,i,l){return null==l?j(a,b,d,e,f,g,h,i):c.findDotsAtSegment(a,b,d,e,f,g,h,i,k(a,b,d,e,f,g,h,i,l))},dc=function(a,b){return function(d,e,f){d=Kb(d);for(var g,h,i,j,k,l="",m={},n=0,o=0,p=d.length;p>o;o++){if(i=d[o],"M"==i[0])g=+i[1],h=+i[2];else{if(j=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6]),n+j>e){if(b&&!m.start){if(k=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),l+=["C"+k.start.x,k.start.y,k.m.x,k.m.y,k.x,k.y],f)return l;m.start=l,l=["M"+k.x,k.y+"C"+k.n.x,k.n.y,k.end.x,k.end.y,i[5],i[6]].join(),n+=j,g=+i[5],h=+i[6];continue}if(!a&&!b)return k=cc(g,h,i[1],i[2],i[3],i[4],i[5],i[6],e-n),{x:k.x,y:k.y,alpha:k.alpha}}n+=j,g=+i[5],h=+i[6]}l+=i.shift()+i}return m.end=l,k=a?n:b?m:c.findDotsAtSegment(g,h,i[0],i[1],i[2],i[3],i[4],i[5],1),k.alpha&&(k={x:k.x,y:k.y,alpha:k.alpha}),k}},ec=dc(1),fc=dc(),gc=dc(0,1);c.getTotalLength=ec,c.getPointAtLength=fc,c.getSubpath=function(a,b,c){if(this.getTotalLength(a)-c<1e-6)return gc(a,b).end;var d=gc(a,c,1);return b?gc(d,b).end:d},$b.getTotalLength=function(){var a=this.getPath();if(a)return this.node.getTotalLength?this.node.getTotalLength():ec(a)},$b.getPointAtLength=function(a){var b=this.getPath();if(b)return fc(b,a)},$b.getPath=function(){var a,b=c._getPath[this.type];if("text"!=this.type&&"set"!=this.type)return b&&(a=b(this)),a},$b.getSubpath=function(a,b){var d=this.getPath();if(d)return c.getSubpath(d,a,b)};var hc=c.easing_formulas={linear:function(a){return a},"<":function(a){return R(a,1.7)},">":function(a){return R(a,.48)},"<>":function(a){var b=.48-a/1.04,c=N.sqrt(.1734+b*b),d=c-b,e=R(Q(d),1/3)*(0>d?-1:1),f=-c-b,g=R(Q(f),1/3)*(0>f?-1:1),h=e+g+.5;return 3*(1-h)*h*h+h*h*h},backIn:function(a){var b=1.70158;return a*a*((b+1)*a-b)},backOut:function(a){a-=1;var b=1.70158;return a*a*((b+1)*a+b)+1},elastic:function(a){return a==!!a?a:R(2,-10*a)*N.sin(2*(a-.075)*S/.3)+1},bounce:function(a){var b,c=7.5625,d=2.75;return 1/d>a?b=c*a*a:2/d>a?(a-=1.5/d,b=c*a*a+.75):2.5/d>a?(a-=2.25/d,b=c*a*a+.9375):(a-=2.625/d,b=c*a*a+.984375),b}};hc.easeIn=hc["ease-in"]=hc["<"],hc.easeOut=hc["ease-out"]=hc[">"],hc.easeInOut=hc["ease-in-out"]=hc["<>"],hc["back-in"]=hc.backIn,hc["back-out"]=hc.backOut;var ic=[],jc=a.requestAnimationFrame||a.webkitRequestAnimationFrame||a.mozRequestAnimationFrame||a.oRequestAnimationFrame||a.msRequestAnimationFrame||function(a){setTimeout(a,16)},kc=function(){for(var a=+new Date,d=0;dh))if(i>h){var q=j(h/i);for(var r in k)if(k[z](r)){switch(db[r]){case T:f=+k[r]+q*i*l[r];break;case"colour":f="rgb("+[lc($(k[r].r+q*i*l[r].r)),lc($(k[r].g+q*i*l[r].g)),lc($(k[r].b+q*i*l[r].b))].join(",")+")";break;case"path":f=[];for(var t=0,u=k[r].length;u>t;t++){f[t]=[k[r][t][0]];for(var v=1,w=k[r][t].length;w>v;v++)f[t][v]=+k[r][t][v]+q*i*l[r][t][v];f[t]=f[t].join(H)}f=f.join(H);break;case"transform":if(l[r].real)for(f=[],t=0,u=k[r].length;u>t;t++)for(f[t]=[k[r][t][0]],v=1,w=k[r][t].length;w>v;v++)f[t][v]=k[r][t][v]+q*i*l[r][t][v];else{var x=function(a){return+k[r][a]+q*i*l[r][a]};f=[["m",x(0),x(1),x(2),x(3),x(4),x(5)]]}break;case"csv":if("clip-rect"==r)for(f=[],t=4;t--;)f[t]=+k[r][t]+q*i*l[r][t];break;default:var y=[][E](k[r]);for(f=[],t=n.paper.customAttributes[r].length;t--;)f[t]=+y[t]+q*i*l[r][t]}o[r]=f}n.attr(o),function(a,c,d){setTimeout(function(){b("raphael.anim.frame."+a,c,d)})}(n.id,n,e.anim)}else{if(function(a,d,e){setTimeout(function(){b("raphael.anim.frame."+d.id,d,e),b("raphael.anim.finish."+d.id,d,e),c.is(a,"function")&&a.call(d)})}(e.callback,n,e.anim),n.attr(m),ic.splice(d--,1),e.repeat>1&&!e.next){for(g in m)m[z](g)&&(p[g]=e.totalOrigin[g]);e.el.attr(p),s(e.anim,e.el,e.anim.percents[0],null,e.totalOrigin,e.repeat-1)}e.next&&!e.stop&&s(e.anim,e.el,e.next,null,e.totalOrigin,e.repeat)}}}c.svg&&n&&n.paper&&n.paper.safari(),ic.length&&jc(kc)},lc=function(a){return a>255?255:0>a?0:a};$b.animateWith=function(a,b,d,e,f,g){var h=this;if(h.removed)return g&&g.call(h),h;var i=d instanceof r?d:c.animation(d,e,f,g);s(i,h,i.percents[0],null,h.attr());for(var j=0,k=ic.length;k>j;j++)if(ic[j].anim==b&&ic[j].el==a){ic[k-1].start=ic[j].start;break}return h},$b.onAnimation=function(a){return a?b.on("raphael.anim.frame."+this.id,a):b.unbind("raphael.anim.frame."+this.id),this},r.prototype.delay=function(a){var b=new r(this.anim,this.ms);return b.times=this.times,b.del=+a||0,b},r.prototype.repeat=function(a){var b=new r(this.anim,this.ms);return b.del=this.del,b.times=N.floor(O(a,0))||1,b},c.animation=function(a,b,d,e){if(a instanceof r)return a;(c.is(d,"function")||!d)&&(e=e||d||null,d=null),a=Object(a),b=+b||0;var f,g,h={};for(g in a)a[z](g)&&_(g)!=g&&_(g)+"%"!=g&&(f=!0,h[g]=a[g]);if(f)return d&&(h.easing=d),e&&(h.callback=e),new r({100:h},b);if(e){var i=0;for(var j in a){var k=ab(j);a[z](j)&&k>i&&(i=k)}i+="%",!a[i].callback&&(a[i].callback=e)}return new r(a,b)},$b.animate=function(a,b,d,e){var f=this;if(f.removed)return e&&e.call(f),f;var g=a instanceof r?a:c.animation(a,b,d,e);return s(g,f,g.percents[0],null,f.attr()),f},$b.setTime=function(a,b){return a&&null!=b&&this.status(a,P(b,a.ms)/a.ms),this},$b.status=function(a,b){var c,d,e=[],f=0;if(null!=b)return s(a,this,-1,P(b,1)),this;for(c=ic.length;c>f;f++)if(d=ic[f],d.el.id==this.id&&(!a||d.anim==a)){if(a)return d.status;e.push({anim:d.anim,status:d.status})}return a?0:e},$b.pause=function(a){for(var c=0;cb;b++)!a[b]||a[b].constructor!=$b.constructor&&a[b].constructor!=mc||(this[this.items.length]=this.items[this.items.length]=a[b],this.length++)},nc=mc.prototype;nc.push=function(){for(var a,b,c=0,d=arguments.length;d>c;c++)a=arguments[c],!a||a.constructor!=$b.constructor&&a.constructor!=mc||(b=this.items.length,this[b]=this.items[b]=a,this.length++);return this},nc.pop=function(){return this.length&&delete this[this.length--],this.items.pop()},nc.forEach=function(a,b){for(var c=0,d=this.items.length;d>c;c++)if(a.call(b,this.items[c],c)===!1)return this;return this};for(var oc in $b)$b[z](oc)&&(nc[oc]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a][D](c,b)})}}(oc));return nc.attr=function(a,b){if(a&&c.is(a,V)&&c.is(a[0],"object"))for(var d=0,e=a.length;e>d;d++)this.items[d].attr(a[d]);else for(var f=0,g=this.items.length;g>f;f++)this.items[f].attr(a,b);return this},nc.clear=function(){for(;this.length;)this.pop()},nc.splice=function(a,b){a=0>a?O(this.length+a,0):a,b=O(0,P(this.length-a,b));var c,d=[],e=[],f=[];for(c=2;cc;c++)e.push(this[a+c]);for(;cc?f[c]:d[c-g];for(c=this.items.length=this.length-=b-g;this[c];)delete this[c++];return new mc(e)},nc.exclude=function(a){for(var b=0,c=this.length;c>b;b++)if(this[b]==a)return this.splice(b,1),!0},nc.animate=function(a,b,d,e){(c.is(d,"function")||!d)&&(e=d||null);var f,g,h=this.items.length,i=h,j=this;if(!h)return this;e&&(g=function(){!--h&&e.call(j)}),d=c.is(d,U)?d:g;var k=c.animation(a,b,d,g);for(f=this.items[--i].animate(k);i--;)this.items[i]&&!this.items[i].removed&&this.items[i].animateWith(f,k,k),this.items[i]&&!this.items[i].removed||h--;return this},nc.insertAfter=function(a){for(var b=this.items.length;b--;)this.items[b].insertAfter(a);return this},nc.getBBox=function(){for(var a=[],b=[],c=[],d=[],e=this.items.length;e--;)if(!this.items[e].removed){var f=this.items[e].getBBox();a.push(f.x),b.push(f.y),c.push(f.x+f.width),d.push(f.y+f.height)}return a=P[D](0,a),b=P[D](0,b),c=O[D](0,c),d=O[D](0,d),{x:a,y:b,x2:c,y2:d,width:c-a,height:d-b}},nc.clone=function(a){a=this.paper.set();for(var b=0,c=this.items.length;c>b;b++)a.push(this.items[b].clone());return a},nc.toString=function(){return"Raphaël‘s set"},nc.glow=function(a){var b=this.paper.set();return this.forEach(function(c){var d=c.glow(a);null!=d&&d.forEach(function(a){b.push(a)})}),b},nc.isPointInside=function(a,b){var c=!1;return this.forEach(function(d){return d.isPointInside(a,b)?(c=!0,!1):void 0}),c},c.registerFont=function(a){if(!a.face)return a;this.fonts=this.fonts||{};var b={w:a.w,face:{},glyphs:{}},c=a.face["font-family"];for(var d in a.face)a.face[z](d)&&(b.face[d]=a.face[d]);if(this.fonts[c]?this.fonts[c].push(b):this.fonts[c]=[b],!a.svg){b.face["units-per-em"]=ab(a.face["units-per-em"],10);for(var e in a.glyphs)if(a.glyphs[z](e)){var f=a.glyphs[e];if(b.glyphs[e]={w:f.w,k:{},d:f.d&&"M"+f.d.replace(/[mlcxtrv]/g,function(a){return{l:"L",c:"C",x:"z",t:"m",r:"l",v:"c"}[a]||"M"})+"z"},f.k)for(var g in f.k)f[z](g)&&(b.glyphs[e].k[g]=f.k[g])}}return a},v.getFont=function(a,b,d,e){if(e=e||"normal",d=d||"normal",b=+b||{normal:400,bold:700,lighter:300,bolder:800}[b]||400,c.fonts){var f=c.fonts[a];if(!f){var g=new RegExp("(^|\\s)"+a.replace(/[^\w\d\s+!~.:_-]/g,G)+"(\\s|$)","i");for(var h in c.fonts)if(c.fonts[z](h)&&g.test(h)){f=c.fonts[h];break}}var i;if(f)for(var j=0,k=f.length;k>j&&(i=f[j],i.face["font-weight"]!=b||i.face["font-style"]!=d&&i.face["font-style"]||i.face["font-stretch"]!=e);j++);return i}},v.print=function(a,b,d,e,f,g,h,i){g=g||"middle",h=O(P(h||0,1),-1),i=O(P(i||1,3),1);var j,k=I(d)[J](G),l=0,m=0,n=G;if(c.is(e,"string")&&(e=this.getFont(e)),e){j=(f||16)/e.face["units-per-em"];for(var o=e.face.bbox[J](w),p=+o[0],q=o[3]-o[1],r=0,s=+o[1]+("baseline"==g?q+ +e.face.descent:q/2),t=0,u=k.length;u>t;t++){if("\n"==k[t])l=0,x=0,m=0,r+=q*i;else{var v=m&&e.glyphs[k[t-1]]||{},x=e.glyphs[k[t]];l+=m?(v.w||e.w)+(v.k&&v.k[k[t]]||0)+e.w*h:0,m=1}x&&x.d&&(n+=c.transformPath(x.d,["t",l*j,r*j,"s",j,j,p,s,"t",(a-p)/j,(b-s)/j]))}}return this.path(n).attr({fill:"#000",stroke:"none"})},v.add=function(a){if(c.is(a,"array"))for(var b,d=this.set(),e=0,f=a.length;f>e;e++)b=a[e]||{},x[z](b.type)&&d.push(this[b.type]().attr(b));return d},c.format=function(a,b){var d=c.is(b,V)?[0][E](b):arguments;return a&&c.is(a,U)&&d.length-1&&(a=a.replace(y,function(a,b){return null==d[++b]?G:d[b]})),a||G},c.fullfill=function(){var a=/\{([^\}]+)\}/g,b=/(?:(?:^|\.)(.+?)(?=\[|\.|$|\()|\[('|")(.+?)\2\])(\(\))?/g,c=function(a,c,d){var e=d;return c.replace(b,function(a,b,c,d,f){b=b||d,e&&(b in e&&(e=e[b]),"function"==typeof e&&f&&(e=e()))}),e=(null==e||e==d?a:e)+""};return function(b,d){return String(b).replace(a,function(a,b){return c(a,b,d)})}}(),c.ninja=function(){return B.was?A.win.Raphael=B.is:delete Raphael,c},c.st=nc,b.on("raphael.DOMload",function(){u=!0}),function(a,b,d){function e(){/in/.test(a.readyState)?setTimeout(e,9):c.eve("raphael.DOMload")}null==a.readyState&&a.addEventListener&&(a.addEventListener(b,d=function(){a.removeEventListener(b,d,!1),a.readyState="complete"},!1),a.readyState="loading"),e()}(document,"DOMContentLoaded"),function(){if(c.svg){var a="hasOwnProperty",b=String,d=parseFloat,e=parseInt,f=Math,g=f.max,h=f.abs,i=f.pow,j=/[, ]+/,k=c.eve,l="",m=" ",n="http://www.w3.org/1999/xlink",o={block:"M5,0 0,2.5 5,5z",classic:"M5,0 0,2.5 5,5 3.5,3 3.5,2z",diamond:"M2.5,0 5,2.5 2.5,5 0,2.5z",open:"M6,1 1,3.5 6,6",oval:"M2.5,0A2.5,2.5,0,0,1,2.5,5 2.5,2.5,0,0,1,2.5,0z"},p={};c.toString=function(){return"Your browser supports SVG.\nYou are running Raphaël "+this.version};var q=function(d,e){if(e){"string"==typeof d&&(d=q(d));for(var f in e)e[a](f)&&("xlink:"==f.substring(0,6)?d.setAttributeNS(n,f.substring(6),b(e[f])):d.setAttribute(f,b(e[f])))}else d=c._g.doc.createElementNS("http://www.w3.org/2000/svg",d),d.style&&(d.style.webkitTapHighlightColor="rgba(0,0,0,0)");return d},r=function(a,e){var j="linear",k=a.id+e,m=.5,n=.5,o=a.node,p=a.paper,r=o.style,s=c._g.doc.getElementById(k);if(!s){if(e=b(e).replace(c._radial_gradient,function(a,b,c){if(j="radial",b&&c){m=d(b),n=d(c);var e=2*(n>.5)-1;i(m-.5,2)+i(n-.5,2)>.25&&(n=f.sqrt(.25-i(m-.5,2))*e+.5)&&.5!=n&&(n=n.toFixed(5)-1e-5*e)}return l}),e=e.split(/\s*\-\s*/),"linear"==j){var t=e.shift();if(t=-d(t),isNaN(t))return null;var u=[0,0,f.cos(c.rad(t)),f.sin(c.rad(t))],v=1/(g(h(u[2]),h(u[3]))||1);u[2]*=v,u[3]*=v,u[2]<0&&(u[0]=-u[2],u[2]=0),u[3]<0&&(u[1]=-u[3],u[3]=0)}var w=c._parseDots(e);if(!w)return null;if(k=k.replace(/[\(\)\s,\xb0#]/g,"_"),a.gradient&&k!=a.gradient.id&&(p.defs.removeChild(a.gradient),delete a.gradient),!a.gradient){s=q(j+"Gradient",{id:k}),a.gradient=s,q(s,"radial"==j?{fx:m,fy:n}:{x1:u[0],y1:u[1],x2:u[2],y2:u[3],gradientTransform:a.matrix.invert()}),p.defs.appendChild(s);for(var x=0,y=w.length;y>x;x++)s.appendChild(q("stop",{offset:w[x].offset?w[x].offset:x?"100%":"0%","stop-color":w[x].color||"#fff"}))}}return q(o,{fill:"url('"+document.location+"#"+k+"')",opacity:1,"fill-opacity":1}),r.fill=l,r.opacity=1,r.fillOpacity=1,1},s=function(a){var b=a.getBBox(1);q(a.pattern,{patternTransform:a.matrix.invert()+" translate("+b.x+","+b.y+")"})},t=function(d,e,f){if("path"==d.type){for(var g,h,i,j,k,m=b(e).toLowerCase().split("-"),n=d.paper,r=f?"end":"start",s=d.node,t=d.attrs,u=t["stroke-width"],v=m.length,w="classic",x=3,y=3,z=5;v--;)switch(m[v]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":w=m[v];break;case"wide":y=5;break;case"narrow":y=2;break;case"long":x=5;break;case"short":x=2}if("open"==w?(x+=2,y+=2,z+=2,i=1,j=f?4:1,k={fill:"none",stroke:t.stroke}):(j=i=x/2,k={fill:t.stroke,stroke:"none"}),d._.arrows?f?(d._.arrows.endPath&&p[d._.arrows.endPath]--,d._.arrows.endMarker&&p[d._.arrows.endMarker]--):(d._.arrows.startPath&&p[d._.arrows.startPath]--,d._.arrows.startMarker&&p[d._.arrows.startMarker]--):d._.arrows={},"none"!=w){var A="raphael-marker-"+w,B="raphael-marker-"+r+w+x+y+"-obj"+d.id;c._g.doc.getElementById(A)?p[A]++:(n.defs.appendChild(q(q("path"),{"stroke-linecap":"round",d:o[w],id:A})),p[A]=1);var C,D=c._g.doc.getElementById(B);D?(p[B]++,C=D.getElementsByTagName("use")[0]):(D=q(q("marker"),{id:B,markerHeight:y,markerWidth:x,orient:"auto",refX:j,refY:y/2}),C=q(q("use"),{"xlink:href":"#"+A,transform:(f?"rotate(180 "+x/2+" "+y/2+") ":l)+"scale("+x/z+","+y/z+")","stroke-width":(1/((x/z+y/z)/2)).toFixed(4)}),D.appendChild(C),n.defs.appendChild(D),p[B]=1),q(C,k);var E=i*("diamond"!=w&&"oval"!=w);f?(g=d._.arrows.startdx*u||0,h=c.getTotalLength(t.path)-E*u):(g=E*u,h=c.getTotalLength(t.path)-(d._.arrows.enddx*u||0)),k={},k["marker-"+r]="url(#"+B+")",(h||g)&&(k.d=c.getSubpath(t.path,g,h)),q(s,k),d._.arrows[r+"Path"]=A,d._.arrows[r+"Marker"]=B,d._.arrows[r+"dx"]=E,d._.arrows[r+"Type"]=w,d._.arrows[r+"String"]=e}else f?(g=d._.arrows.startdx*u||0,h=c.getTotalLength(t.path)-g):(g=0,h=c.getTotalLength(t.path)-(d._.arrows.enddx*u||0)),d._.arrows[r+"Path"]&&q(s,{d:c.getSubpath(t.path,g,h)}),delete d._.arrows[r+"Path"],delete d._.arrows[r+"Marker"],delete d._.arrows[r+"dx"],delete d._.arrows[r+"Type"],delete d._.arrows[r+"String"];for(k in p)if(p[a](k)&&!p[k]){var F=c._g.doc.getElementById(k);F&&F.parentNode.removeChild(F)}}},u={"":[0],none:[0],"-":[3,1],".":[1,1],"-.":[3,1,1,1],"-..":[3,1,1,1,1,1],". ":[1,3],"- ":[4,3],"--":[8,3],"- .":[4,3,1,3],"--.":[8,3,1,3],"--..":[8,3,1,3,1,3]},v=function(a,c,d){if(c=u[b(c).toLowerCase()]){for(var e=a.attrs["stroke-width"]||"1",f={round:e,square:e,butt:0}[a.attrs["stroke-linecap"]||d["stroke-linecap"]]||0,g=[],h=c.length;h--;)g[h]=c[h]*e+(h%2?1:-1)*f;q(a.node,{"stroke-dasharray":g.join(",")})}},w=function(d,f){var i=d.node,k=d.attrs,m=i.style.visibility;i.style.visibility="hidden";for(var o in f)if(f[a](o)){if(!c._availableAttrs[a](o))continue;var p=f[o];switch(k[o]=p,o){case"blur":d.blur(p);break;case"title":var u=i.getElementsByTagName("title");if(u.length&&(u=u[0]))u.firstChild.nodeValue=p;else{u=q("title");var w=c._g.doc.createTextNode(p);u.appendChild(w),i.appendChild(u)}break;case"href":case"target":var x=i.parentNode;if("a"!=x.tagName.toLowerCase()){var z=q("a");x.insertBefore(z,i),z.appendChild(i),x=z}"target"==o?x.setAttributeNS(n,"show","blank"==p?"new":p):x.setAttributeNS(n,o,p);break;case"cursor":i.style.cursor=p;break;case"transform":d.transform(p);break;case"arrow-start":t(d,p);break;case"arrow-end":t(d,p,1);break;case"clip-rect":var A=b(p).split(j);if(4==A.length){d.clip&&d.clip.parentNode.parentNode.removeChild(d.clip.parentNode);var B=q("clipPath"),C=q("rect");B.id=c.createUUID(),q(C,{x:A[0],y:A[1],width:A[2],height:A[3]}),B.appendChild(C),d.paper.defs.appendChild(B),q(i,{"clip-path":"url(#"+B.id+")"}),d.clip=C}if(!p){var D=i.getAttribute("clip-path");if(D){var E=c._g.doc.getElementById(D.replace(/(^url\(#|\)$)/g,l));E&&E.parentNode.removeChild(E),q(i,{"clip-path":l}),delete d.clip}}break;case"path":"path"==d.type&&(q(i,{d:p?k.path=c._pathToAbsolute(p):"M0,0"}),d._.dirty=1,d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1)));break;case"width":if(i.setAttribute(o,p),d._.dirty=1,!k.fx)break;o="x",p=k.x;case"x":k.fx&&(p=-k.x-(k.width||0));case"rx":if("rx"==o&&"rect"==d.type)break;case"cx":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"height":if(i.setAttribute(o,p),d._.dirty=1,!k.fy)break;o="y",p=k.y;case"y":k.fy&&(p=-k.y-(k.height||0));case"ry":if("ry"==o&&"rect"==d.type)break;case"cy":i.setAttribute(o,p),d.pattern&&s(d),d._.dirty=1;break;case"r":"rect"==d.type?q(i,{rx:p,ry:p}):i.setAttribute(o,p),d._.dirty=1;break;case"src":"image"==d.type&&i.setAttributeNS(n,"href",p);break;case"stroke-width":(1!=d._.sx||1!=d._.sy)&&(p/=g(h(d._.sx),h(d._.sy))||1),i.setAttribute(o,p),k["stroke-dasharray"]&&v(d,k["stroke-dasharray"],f),d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"stroke-dasharray":v(d,p,f);break;case"fill":var F=b(p).match(c._ISURL);if(F){B=q("pattern");var G=q("image");B.id=c.createUUID(),q(B,{x:0,y:0,patternUnits:"userSpaceOnUse",height:1,width:1}),q(G,{x:0,y:0,"xlink:href":F[1]}),B.appendChild(G),function(a){c._preload(F[1],function(){var b=this.offsetWidth,c=this.offsetHeight;q(a,{width:b,height:c}),q(G,{width:b,height:c}),d.paper.safari()})}(B),d.paper.defs.appendChild(B),q(i,{fill:"url(#"+B.id+")"}),d.pattern=B,d.pattern&&s(d);break}var H=c.getRGB(p);if(H.error){if(("circle"==d.type||"ellipse"==d.type||"r"!=b(p).charAt())&&r(d,p)){if("opacity"in k||"fill-opacity"in k){var I=c._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l));if(I){var J=I.getElementsByTagName("stop");q(J[J.length-1],{"stop-opacity":("opacity"in k?k.opacity:1)*("fill-opacity"in k?k["fill-opacity"]:1)})}}k.gradient=p,k.fill="none";break}}else delete f.gradient,delete k.gradient,!c.is(k.opacity,"undefined")&&c.is(f.opacity,"undefined")&&q(i,{opacity:k.opacity}),!c.is(k["fill-opacity"],"undefined")&&c.is(f["fill-opacity"],"undefined")&&q(i,{"fill-opacity":k["fill-opacity"]});H[a]("opacity")&&q(i,{"fill-opacity":H.opacity>1?H.opacity/100:H.opacity});case"stroke":H=c.getRGB(p),i.setAttribute(o,H.hex),"stroke"==o&&H[a]("opacity")&&q(i,{"stroke-opacity":H.opacity>1?H.opacity/100:H.opacity}),"stroke"==o&&d._.arrows&&("startString"in d._.arrows&&t(d,d._.arrows.startString),"endString"in d._.arrows&&t(d,d._.arrows.endString,1));break;case"gradient":("circle"==d.type||"ellipse"==d.type||"r"!=b(p).charAt())&&r(d,p);break; +case"opacity":k.gradient&&!k[a]("stroke-opacity")&&q(i,{"stroke-opacity":p>1?p/100:p});case"fill-opacity":if(k.gradient){I=c._g.doc.getElementById(i.getAttribute("fill").replace(/^url\(#|\)$/g,l)),I&&(J=I.getElementsByTagName("stop"),q(J[J.length-1],{"stop-opacity":p}));break}default:"font-size"==o&&(p=e(p,10)+"px");var K=o.replace(/(\-.)/g,function(a){return a.substring(1).toUpperCase()});i.style[K]=p,d._.dirty=1,i.setAttribute(o,p)}}y(d,f),i.style.visibility=m},x=1.2,y=function(d,f){if("text"==d.type&&(f[a]("text")||f[a]("font")||f[a]("font-size")||f[a]("x")||f[a]("y"))){var g=d.attrs,h=d.node,i=h.firstChild?e(c._g.doc.defaultView.getComputedStyle(h.firstChild,l).getPropertyValue("font-size"),10):10;if(f[a]("text")){for(g.text=f.text;h.firstChild;)h.removeChild(h.firstChild);for(var j,k=b(f.text).split("\n"),m=[],n=0,o=k.length;o>n;n++)j=q("tspan"),n&&q(j,{dy:i*x,x:g.x}),j.appendChild(c._g.doc.createTextNode(k[n])),h.appendChild(j),m[n]=j}else for(m=h.getElementsByTagName("tspan"),n=0,o=m.length;o>n;n++)n?q(m[n],{dy:i*x,x:g.x}):q(m[0],{dy:0});q(h,{x:g.x,y:g.y}),d._.dirty=1;var p=d._getBBox(),r=g.y-(p.y+p.height/2);r&&c.is(r,"finite")&&q(m[0],{dy:r})}},z=function(a){return a.parentNode&&"a"===a.parentNode.tagName.toLowerCase()?a.parentNode:a},A=function(a,b){this[0]=this.node=a,a.raphael=!0,this.id=c._oid++,a.raphaelid=this.id,this.matrix=c.matrix(),this.realPath=null,this.paper=b,this.attrs=this.attrs||{},this._={transform:[],sx:1,sy:1,deg:0,dx:0,dy:0,dirty:1},!b.bottom&&(b.bottom=this),this.prev=b.top,b.top&&(b.top.next=this),b.top=this,this.next=null},B=c.el;A.prototype=B,B.constructor=A,c._engine.path=function(a,b){var c=q("path");b.canvas&&b.canvas.appendChild(c);var d=new A(c,b);return d.type="path",w(d,{fill:"none",stroke:"#000",path:a}),d},B.rotate=function(a,c,e){if(this.removed)return this;if(a=b(a).split(j),a.length-1&&(c=d(a[1]),e=d(a[2])),a=d(a[0]),null==e&&(c=e),null==c||null==e){var f=this.getBBox(1);c=f.x+f.width/2,e=f.y+f.height/2}return this.transform(this._.transform.concat([["r",a,c,e]])),this},B.scale=function(a,c,e,f){if(this.removed)return this;if(a=b(a).split(j),a.length-1&&(c=d(a[1]),e=d(a[2]),f=d(a[3])),a=d(a[0]),null==c&&(c=a),null==f&&(e=f),null==e||null==f)var g=this.getBBox(1);return e=null==e?g.x+g.width/2:e,f=null==f?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,c,e,f]])),this},B.translate=function(a,c){return this.removed?this:(a=b(a).split(j),a.length-1&&(c=d(a[1])),a=d(a[0])||0,c=+c||0,this.transform(this._.transform.concat([["t",a,c]])),this)},B.transform=function(b){var d=this._;if(null==b)return d.transform;if(c._extractTransform(this,b),this.clip&&q(this.clip,{transform:this.matrix.invert()}),this.pattern&&s(this),this.node&&q(this.node,{transform:this.matrix}),1!=d.sx||1!=d.sy){var e=this.attrs[a]("stroke-width")?this.attrs["stroke-width"]:1;this.attr({"stroke-width":e})}return this},B.hide=function(){return!this.removed&&this.paper.safari(this.node.style.display="none"),this},B.show=function(){return!this.removed&&this.paper.safari(this.node.style.display=""),this},B.remove=function(){var a=z(this.node);if(!this.removed&&a.parentNode){var b=this.paper;b.__set__&&b.__set__.exclude(this),k.unbind("raphael.*.*."+this.id),this.gradient&&b.defs.removeChild(this.gradient),c._tear(this,b),a.parentNode.removeChild(a),this.removeData();for(var d in this)this[d]="function"==typeof this[d]?c._removedFactory(d):null;this.removed=!0}},B._getBBox=function(){if("none"==this.node.style.display){this.show();var a=!0}var b,c=!1;this.paper.canvas.parentElement?b=this.paper.canvas.parentElement.style:this.paper.canvas.parentNode&&(b=this.paper.canvas.parentNode.style),b&&"none"==b.display&&(c=!0,b.display="");var d={};try{d=this.node.getBBox()}catch(e){d={x:this.node.clientLeft,y:this.node.clientTop,width:this.node.clientWidth,height:this.node.clientHeight}}finally{d=d||{},c&&(b.display="none")}return a&&this.hide(),d},B.attr=function(b,d){if(this.removed)return this;if(null==b){var e={};for(var f in this.attrs)this.attrs[a](f)&&(e[f]=this.attrs[f]);return e.gradient&&"none"==e.fill&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform,e}if(null==d&&c.is(b,"string")){if("fill"==b&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;if("transform"==b)return this._.transform;for(var g=b.split(j),h={},i=0,l=g.length;l>i;i++)b=g[i],h[b]=b in this.attrs?this.attrs[b]:c.is(this.paper.customAttributes[b],"function")?this.paper.customAttributes[b].def:c._availableAttrs[b];return l-1?h:h[g[0]]}if(null==d&&c.is(b,"array")){for(h={},i=0,l=b.length;l>i;i++)h[b[i]]=this.attr(b[i]);return h}if(null!=d){var m={};m[b]=d}else null!=b&&c.is(b,"object")&&(m=b);for(var n in m)k("raphael.attr."+n+"."+this.id,this,m[n]);for(n in this.paper.customAttributes)if(this.paper.customAttributes[a](n)&&m[a](n)&&c.is(this.paper.customAttributes[n],"function")){var o=this.paper.customAttributes[n].apply(this,[].concat(m[n]));this.attrs[n]=m[n];for(var p in o)o[a](p)&&(m[p]=o[p])}return w(this,m),this},B.toFront=function(){if(this.removed)return this;var a=z(this.node);a.parentNode.appendChild(a);var b=this.paper;return b.top!=this&&c._tofront(this,b),this},B.toBack=function(){if(this.removed)return this;var a=z(this.node),b=a.parentNode;b.insertBefore(a,b.firstChild),c._toback(this,this.paper);this.paper;return this},B.insertAfter=function(a){if(this.removed||!a)return this;var b=z(this.node),d=z(a.node||a[a.length-1].node);return d.nextSibling?d.parentNode.insertBefore(b,d.nextSibling):d.parentNode.appendChild(b),c._insertafter(this,a,this.paper),this},B.insertBefore=function(a){if(this.removed||!a)return this;var b=z(this.node),d=z(a.node||a[0].node);return d.parentNode.insertBefore(b,d),c._insertbefore(this,a,this.paper),this},B.blur=function(a){var b=this;if(0!==+a){var d=q("filter"),e=q("feGaussianBlur");b.attrs.blur=a,d.id=c.createUUID(),q(e,{stdDeviation:+a||1.5}),d.appendChild(e),b.paper.defs.appendChild(d),b._blur=d,q(b.node,{filter:"url(#"+d.id+")"})}else b._blur&&(b._blur.parentNode.removeChild(b._blur),delete b._blur,delete b.attrs.blur),b.node.removeAttribute("filter");return b},c._engine.circle=function(a,b,c,d){var e=q("circle");a.canvas&&a.canvas.appendChild(e);var f=new A(e,a);return f.attrs={cx:b,cy:c,r:d,fill:"none",stroke:"#000"},f.type="circle",q(e,f.attrs),f},c._engine.rect=function(a,b,c,d,e,f){var g=q("rect");a.canvas&&a.canvas.appendChild(g);var h=new A(g,a);return h.attrs={x:b,y:c,width:d,height:e,rx:f||0,ry:f||0,fill:"none",stroke:"#000"},h.type="rect",q(g,h.attrs),h},c._engine.ellipse=function(a,b,c,d,e){var f=q("ellipse");a.canvas&&a.canvas.appendChild(f);var g=new A(f,a);return g.attrs={cx:b,cy:c,rx:d,ry:e,fill:"none",stroke:"#000"},g.type="ellipse",q(f,g.attrs),g},c._engine.image=function(a,b,c,d,e,f){var g=q("image");q(g,{x:c,y:d,width:e,height:f,preserveAspectRatio:"none"}),g.setAttributeNS(n,"href",b),a.canvas&&a.canvas.appendChild(g);var h=new A(g,a);return h.attrs={x:c,y:d,width:e,height:f,src:b},h.type="image",h},c._engine.text=function(a,b,d,e){var f=q("text");a.canvas&&a.canvas.appendChild(f);var g=new A(f,a);return g.attrs={x:b,y:d,"text-anchor":"middle",text:e,"font-family":c._availableAttrs["font-family"],"font-size":c._availableAttrs["font-size"],stroke:"none",fill:"#000"},g.type="text",w(g,g.attrs),g},c._engine.setSize=function(a,b){return this.width=a||this.width,this.height=b||this.height,this.canvas.setAttribute("width",this.width),this.canvas.setAttribute("height",this.height),this._viewBox&&this.setViewBox.apply(this,this._viewBox),this},c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a&&a.container,d=a.x,e=a.y,f=a.width,g=a.height;if(!b)throw new Error("SVG container not found.");var h,i=q("svg"),j="overflow:hidden;";return d=d||0,e=e||0,f=f||512,g=g||342,q(i,{height:g,version:1.1,width:f,xmlns:"http://www.w3.org/2000/svg","xmlns:xlink":"http://www.w3.org/1999/xlink"}),1==b?(i.style.cssText=j+"position:absolute;left:"+d+"px;top:"+e+"px",c._g.doc.body.appendChild(i),h=1):(i.style.cssText=j+"position:relative",b.firstChild?b.insertBefore(i,b.firstChild):b.appendChild(i)),b=new c._Paper,b.width=f,b.height=g,b.canvas=i,b.clear(),b._left=b._top=0,h&&(b.renderfix=function(){}),b.renderfix(),b},c._engine.setViewBox=function(a,b,c,d,e){k("raphael.setViewBox",this,this._viewBox,[a,b,c,d,e]);var f,h,i=this.getSize(),j=g(c/i.width,d/i.height),l=this.top,n=e?"xMidYMid meet":"xMinYMin";for(null==a?(this._vbSize&&(j=1),delete this._vbSize,f="0 0 "+this.width+m+this.height):(this._vbSize=j,f=a+m+b+m+c+m+d),q(this.canvas,{viewBox:f,preserveAspectRatio:n});j&&l;)h="stroke-width"in l.attrs?l.attrs["stroke-width"]:1,l.attr({"stroke-width":h}),l._.dirty=1,l._.dirtyT=1,l=l.prev;return this._viewBox=[a,b,c,d,!!e],this},c.prototype.renderfix=function(){var a,b=this.canvas,c=b.style;try{a=b.getScreenCTM()||b.createSVGMatrix()}catch(d){a=b.createSVGMatrix()}var e=-a.e%1,f=-a.f%1;(e||f)&&(e&&(this._left=(this._left+e)%1,c.left=this._left+"px"),f&&(this._top=(this._top+f)%1,c.top=this._top+"px"))},c.prototype.clear=function(){c.eve("raphael.clear",this);for(var a=this.canvas;a.firstChild;)a.removeChild(a.firstChild);this.bottom=this.top=null,(this.desc=q("desc")).appendChild(c._g.doc.createTextNode("Created with Raphaël "+c.version)),a.appendChild(this.desc),a.appendChild(this.defs=q("defs"))},c.prototype.remove=function(){k("raphael.remove",this),this.canvas.parentNode&&this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null};var C=c.st;for(var D in B)B[a](D)&&!C[a](D)&&(C[D]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(D))}}(),function(){if(c.vml){var a="hasOwnProperty",b=String,d=parseFloat,e=Math,f=e.round,g=e.max,h=e.min,i=e.abs,j="fill",k=/[, ]+/,l=c.eve,m=" progid:DXImageTransform.Microsoft",n=" ",o="",p={M:"m",L:"l",C:"c",Z:"x",m:"t",l:"r",c:"v",z:"x"},q=/([clmz]),?([^clmz]*)/gi,r=/ progid:\S+Blur\([^\)]+\)/g,s=/-?[^,\s-]+/g,t="position:absolute;left:0;top:0;width:1px;height:1px;behavior:url(#default#VML)",u=21600,v={path:1,rect:1,image:1},w={circle:1,ellipse:1},x=function(a){var d=/[ahqstv]/gi,e=c._pathToAbsolute;if(b(a).match(d)&&(e=c._path2curve),d=/[clmz]/g,e==c._pathToAbsolute&&!b(a).match(d)){var g=b(a).replace(q,function(a,b,c){var d=[],e="m"==b.toLowerCase(),g=p[b];return c.replace(s,function(a){e&&2==d.length&&(g+=d+p["m"==b?"l":"L"],d=[]),d.push(f(a*u))}),g+d});return g}var h,i,j=e(a);g=[];for(var k=0,l=j.length;l>k;k++){h=j[k],i=j[k][0].toLowerCase(),"z"==i&&(i="x");for(var m=1,r=h.length;r>m;m++)i+=f(h[m]*u)+(m!=r-1?",":o);g.push(i)}return g.join(n)},y=function(a,b,d){var e=c.matrix();return e.rotate(-a,.5,.5),{dx:e.x(b,d),dy:e.y(b,d)}},z=function(a,b,c,d,e,f){var g=a._,h=a.matrix,k=g.fillpos,l=a.node,m=l.style,o=1,p="",q=u/b,r=u/c;if(m.visibility="hidden",b&&c){if(l.coordsize=i(q)+n+i(r),m.rotation=f*(0>b*c?-1:1),f){var s=y(f,d,e);d=s.dx,e=s.dy}if(0>b&&(p+="x"),0>c&&(p+=" y")&&(o=-1),m.flip=p,l.coordorigin=d*-q+n+e*-r,k||g.fillsize){var t=l.getElementsByTagName(j);t=t&&t[0],l.removeChild(t),k&&(s=y(f,h.x(k[0],k[1]),h.y(k[0],k[1])),t.position=s.dx*o+n+s.dy*o),g.fillsize&&(t.size=g.fillsize[0]*i(b)+n+g.fillsize[1]*i(c)),l.appendChild(t)}m.visibility="visible"}};c.toString=function(){return"Your browser doesn’t support SVG. Falling down to VML.\nYou are running Raphaël "+this.version};var A=function(a,c,d){for(var e=b(c).toLowerCase().split("-"),f=d?"end":"start",g=e.length,h="classic",i="medium",j="medium";g--;)switch(e[g]){case"block":case"classic":case"oval":case"diamond":case"open":case"none":h=e[g];break;case"wide":case"narrow":j=e[g];break;case"long":case"short":i=e[g]}var k=a.node.getElementsByTagName("stroke")[0];k[f+"arrow"]=h,k[f+"arrowlength"]=i,k[f+"arrowwidth"]=j},B=function(e,i){e.attrs=e.attrs||{};var l=e.node,m=e.attrs,p=l.style,q=v[e.type]&&(i.x!=m.x||i.y!=m.y||i.width!=m.width||i.height!=m.height||i.cx!=m.cx||i.cy!=m.cy||i.rx!=m.rx||i.ry!=m.ry||i.r!=m.r),r=w[e.type]&&(m.cx!=i.cx||m.cy!=i.cy||m.r!=i.r||m.rx!=i.rx||m.ry!=i.ry),s=e;for(var t in i)i[a](t)&&(m[t]=i[t]);if(q&&(m.path=c._getPath[e.type](e),e._.dirty=1),i.href&&(l.href=i.href),i.title&&(l.title=i.title),i.target&&(l.target=i.target),i.cursor&&(p.cursor=i.cursor),"blur"in i&&e.blur(i.blur),(i.path&&"path"==e.type||q)&&(l.path=x(~b(m.path).toLowerCase().indexOf("r")?c._pathToAbsolute(m.path):m.path),e._.dirty=1,"image"==e.type&&(e._.fillpos=[m.x,m.y],e._.fillsize=[m.width,m.height],z(e,1,1,0,0,0))),"transform"in i&&e.transform(i.transform),r){var y=+m.cx,B=+m.cy,D=+m.rx||+m.r||0,E=+m.ry||+m.r||0;l.path=c.format("ar{0},{1},{2},{3},{4},{1},{4},{1}x",f((y-D)*u),f((B-E)*u),f((y+D)*u),f((B+E)*u),f(y*u)),e._.dirty=1}if("clip-rect"in i){var G=b(i["clip-rect"]).split(k);if(4==G.length){G[2]=+G[2]+ +G[0],G[3]=+G[3]+ +G[1];var H=l.clipRect||c._g.doc.createElement("div"),I=H.style;I.clip=c.format("rect({1}px {2}px {3}px {0}px)",G),l.clipRect||(I.position="absolute",I.top=0,I.left=0,I.width=e.paper.width+"px",I.height=e.paper.height+"px",l.parentNode.insertBefore(H,l),H.appendChild(l),l.clipRect=H)}i["clip-rect"]||l.clipRect&&(l.clipRect.style.clip="auto")}if(e.textpath){var J=e.textpath.style;i.font&&(J.font=i.font),i["font-family"]&&(J.fontFamily='"'+i["font-family"].split(",")[0].replace(/^['"]+|['"]+$/g,o)+'"'),i["font-size"]&&(J.fontSize=i["font-size"]),i["font-weight"]&&(J.fontWeight=i["font-weight"]),i["font-style"]&&(J.fontStyle=i["font-style"])}if("arrow-start"in i&&A(s,i["arrow-start"]),"arrow-end"in i&&A(s,i["arrow-end"],1),null!=i.opacity||null!=i["stroke-width"]||null!=i.fill||null!=i.src||null!=i.stroke||null!=i["stroke-width"]||null!=i["stroke-opacity"]||null!=i["fill-opacity"]||null!=i["stroke-dasharray"]||null!=i["stroke-miterlimit"]||null!=i["stroke-linejoin"]||null!=i["stroke-linecap"]){var K=l.getElementsByTagName(j),L=!1;if(K=K&&K[0],!K&&(L=K=F(j)),"image"==e.type&&i.src&&(K.src=i.src),i.fill&&(K.on=!0),(null==K.on||"none"==i.fill||null===i.fill)&&(K.on=!1),K.on&&i.fill){var M=b(i.fill).match(c._ISURL);if(M){K.parentNode==l&&l.removeChild(K),K.rotate=!0,K.src=M[1],K.type="tile";var N=e.getBBox(1);K.position=N.x+n+N.y,e._.fillpos=[N.x,N.y],c._preload(M[1],function(){e._.fillsize=[this.offsetWidth,this.offsetHeight]})}else K.color=c.getRGB(i.fill).hex,K.src=o,K.type="solid",c.getRGB(i.fill).error&&(s.type in{circle:1,ellipse:1}||"r"!=b(i.fill).charAt())&&C(s,i.fill,K)&&(m.fill="none",m.gradient=i.fill,K.rotate=!1)}if("fill-opacity"in i||"opacity"in i){var O=((+m["fill-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+c.getRGB(i.fill).o+1||2)-1);O=h(g(O,0),1),K.opacity=O,K.src&&(K.color="none")}l.appendChild(K);var P=l.getElementsByTagName("stroke")&&l.getElementsByTagName("stroke")[0],Q=!1;!P&&(Q=P=F("stroke")),(i.stroke&&"none"!=i.stroke||i["stroke-width"]||null!=i["stroke-opacity"]||i["stroke-dasharray"]||i["stroke-miterlimit"]||i["stroke-linejoin"]||i["stroke-linecap"])&&(P.on=!0),("none"==i.stroke||null===i.stroke||null==P.on||0==i.stroke||0==i["stroke-width"])&&(P.on=!1);var R=c.getRGB(i.stroke);P.on&&i.stroke&&(P.color=R.hex),O=((+m["stroke-opacity"]+1||2)-1)*((+m.opacity+1||2)-1)*((+R.o+1||2)-1);var S=.75*(d(i["stroke-width"])||1);if(O=h(g(O,0),1),null==i["stroke-width"]&&(S=m["stroke-width"]),i["stroke-width"]&&(P.weight=S),S&&1>S&&(O*=S)&&(P.weight=1),P.opacity=O,i["stroke-linejoin"]&&(P.joinstyle=i["stroke-linejoin"]||"miter"),P.miterlimit=i["stroke-miterlimit"]||8,i["stroke-linecap"]&&(P.endcap="butt"==i["stroke-linecap"]?"flat":"square"==i["stroke-linecap"]?"square":"round"),"stroke-dasharray"in i){var T={"-":"shortdash",".":"shortdot","-.":"shortdashdot","-..":"shortdashdotdot",". ":"dot","- ":"dash","--":"longdash","- .":"dashdot","--.":"longdashdot","--..":"longdashdotdot"};P.dashstyle=T[a](i["stroke-dasharray"])?T[i["stroke-dasharray"]]:o}Q&&l.appendChild(P)}if("text"==s.type){s.paper.canvas.style.display=o;var U=s.paper.span,V=100,W=m.font&&m.font.match(/\d+(?:\.\d*)?(?=px)/);p=U.style,m.font&&(p.font=m.font),m["font-family"]&&(p.fontFamily=m["font-family"]),m["font-weight"]&&(p.fontWeight=m["font-weight"]),m["font-style"]&&(p.fontStyle=m["font-style"]),W=d(m["font-size"]||W&&W[0])||10,p.fontSize=W*V+"px",s.textpath.string&&(U.innerHTML=b(s.textpath.string).replace(/"));var X=U.getBoundingClientRect();s.W=m.w=(X.right-X.left)/V,s.H=m.h=(X.bottom-X.top)/V,s.X=m.x,s.Y=m.y+s.H/2,("x"in i||"y"in i)&&(s.path.v=c.format("m{0},{1}l{2},{1}",f(m.x*u),f(m.y*u),f(m.x*u)+1));for(var Y=["x","y","text","font","font-family","font-weight","font-style","font-size"],Z=0,$=Y.length;$>Z;Z++)if(Y[Z]in i){s._.dirty=1;break}switch(m["text-anchor"]){case"start":s.textpath.style["v-text-align"]="left",s.bbx=s.W/2;break;case"end":s.textpath.style["v-text-align"]="right",s.bbx=-s.W/2;break;default:s.textpath.style["v-text-align"]="center",s.bbx=0}s.textpath.style["v-text-kern"]=!0}},C=function(a,f,g){a.attrs=a.attrs||{};var h=(a.attrs,Math.pow),i="linear",j=".5 .5";if(a.attrs.gradient=f,f=b(f).replace(c._radial_gradient,function(a,b,c){return i="radial",b&&c&&(b=d(b),c=d(c),h(b-.5,2)+h(c-.5,2)>.25&&(c=e.sqrt(.25-h(b-.5,2))*(2*(c>.5)-1)+.5),j=b+n+c),o}),f=f.split(/\s*\-\s*/),"linear"==i){var k=f.shift();if(k=-d(k),isNaN(k))return null}var l=c._parseDots(f);if(!l)return null;if(a=a.shape||a.node,l.length){a.removeChild(g),g.on=!0,g.method="none",g.color=l[0].color,g.color2=l[l.length-1].color;for(var m=[],p=0,q=l.length;q>p;p++)l[p].offset&&m.push(l[p].offset+n+l[p].color);g.colors=m.length?m.join():"0% "+g.color,"radial"==i?(g.type="gradientTitle",g.focus="100%",g.focussize="0 0",g.focusposition=j,g.angle=0):(g.type="gradient",g.angle=(270-k)%360),a.appendChild(g)}return 1},D=function(a,b){this[0]=this.node=a,a.raphael=!0,this.id=c._oid++,a.raphaelid=this.id,this.X=0,this.Y=0,this.attrs={},this.paper=b,this.matrix=c.matrix(),this._={transform:[],sx:1,sy:1,dx:0,dy:0,deg:0,dirty:1,dirtyT:1},!b.bottom&&(b.bottom=this),this.prev=b.top,b.top&&(b.top.next=this),b.top=this,this.next=null},E=c.el;D.prototype=E,E.constructor=D,E.transform=function(a){if(null==a)return this._.transform;var d,e=this.paper._viewBoxShift,f=e?"s"+[e.scale,e.scale]+"-1-1t"+[e.dx,e.dy]:o;e&&(d=a=b(a).replace(/\.{3}|\u2026/g,this._.transform||o)),c._extractTransform(this,f+a);var g,h=this.matrix.clone(),i=this.skew,j=this.node,k=~b(this.attrs.fill).indexOf("-"),l=!b(this.attrs.fill).indexOf("url(");if(h.translate(1,1),l||k||"image"==this.type)if(i.matrix="1 0 0 1",i.offset="0 0",g=h.split(),k&&g.noRotation||!g.isSimple){j.style.filter=h.toFilter();var m=this.getBBox(),p=this.getBBox(1),q=m.x-p.x,r=m.y-p.y;j.coordorigin=q*-u+n+r*-u,z(this,1,1,q,r,0)}else j.style.filter=o,z(this,g.scalex,g.scaley,g.dx,g.dy,g.rotate);else j.style.filter=o,i.matrix=b(h),i.offset=h.offset();return null!==d&&(this._.transform=d,c._extractTransform(this,d)),this},E.rotate=function(a,c,e){if(this.removed)return this;if(null!=a){if(a=b(a).split(k),a.length-1&&(c=d(a[1]),e=d(a[2])),a=d(a[0]),null==e&&(c=e),null==c||null==e){var f=this.getBBox(1);c=f.x+f.width/2,e=f.y+f.height/2}return this._.dirtyT=1,this.transform(this._.transform.concat([["r",a,c,e]])),this}},E.translate=function(a,c){return this.removed?this:(a=b(a).split(k),a.length-1&&(c=d(a[1])),a=d(a[0])||0,c=+c||0,this._.bbox&&(this._.bbox.x+=a,this._.bbox.y+=c),this.transform(this._.transform.concat([["t",a,c]])),this)},E.scale=function(a,c,e,f){if(this.removed)return this;if(a=b(a).split(k),a.length-1&&(c=d(a[1]),e=d(a[2]),f=d(a[3]),isNaN(e)&&(e=null),isNaN(f)&&(f=null)),a=d(a[0]),null==c&&(c=a),null==f&&(e=f),null==e||null==f)var g=this.getBBox(1);return e=null==e?g.x+g.width/2:e,f=null==f?g.y+g.height/2:f,this.transform(this._.transform.concat([["s",a,c,e,f]])),this._.dirtyT=1,this},E.hide=function(){return!this.removed&&(this.node.style.display="none"),this},E.show=function(){return!this.removed&&(this.node.style.display=o),this},E.auxGetBBox=c.el.getBBox,E.getBBox=function(){var a=this.auxGetBBox();if(this.paper&&this.paper._viewBoxShift){var b={},c=1/this.paper._viewBoxShift.scale;return b.x=a.x-this.paper._viewBoxShift.dx,b.x*=c,b.y=a.y-this.paper._viewBoxShift.dy,b.y*=c,b.width=a.width*c,b.height=a.height*c,b.x2=b.x+b.width,b.y2=b.y+b.height,b}return a},E._getBBox=function(){return this.removed?{}:{x:this.X+(this.bbx||0)-this.W/2,y:this.Y-this.H,width:this.W,height:this.H}},E.remove=function(){if(!this.removed&&this.node.parentNode){this.paper.__set__&&this.paper.__set__.exclude(this),c.eve.unbind("raphael.*.*."+this.id),c._tear(this,this.paper),this.node.parentNode.removeChild(this.node),this.shape&&this.shape.parentNode.removeChild(this.shape);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;this.removed=!0}},E.attr=function(b,d){if(this.removed)return this;if(null==b){var e={};for(var f in this.attrs)this.attrs[a](f)&&(e[f]=this.attrs[f]);return e.gradient&&"none"==e.fill&&(e.fill=e.gradient)&&delete e.gradient,e.transform=this._.transform,e}if(null==d&&c.is(b,"string")){if(b==j&&"none"==this.attrs.fill&&this.attrs.gradient)return this.attrs.gradient;for(var g=b.split(k),h={},i=0,m=g.length;m>i;i++)b=g[i],h[b]=b in this.attrs?this.attrs[b]:c.is(this.paper.customAttributes[b],"function")?this.paper.customAttributes[b].def:c._availableAttrs[b];return m-1?h:h[g[0]]}if(this.attrs&&null==d&&c.is(b,"array")){for(h={},i=0,m=b.length;m>i;i++)h[b[i]]=this.attr(b[i]);return h}var n;null!=d&&(n={},n[b]=d),null==d&&c.is(b,"object")&&(n=b);for(var o in n)l("raphael.attr."+o+"."+this.id,this,n[o]);if(n){for(o in this.paper.customAttributes)if(this.paper.customAttributes[a](o)&&n[a](o)&&c.is(this.paper.customAttributes[o],"function")){var p=this.paper.customAttributes[o].apply(this,[].concat(n[o]));this.attrs[o]=n[o];for(var q in p)p[a](q)&&(n[q]=p[q])}n.text&&"text"==this.type&&(this.textpath.string=n.text),B(this,n)}return this},E.toFront=function(){return!this.removed&&this.node.parentNode.appendChild(this.node),this.paper&&this.paper.top!=this&&c._tofront(this,this.paper),this},E.toBack=function(){return this.removed?this:(this.node.parentNode.firstChild!=this.node&&(this.node.parentNode.insertBefore(this.node,this.node.parentNode.firstChild),c._toback(this,this.paper)),this)},E.insertAfter=function(a){return this.removed?this:(a.constructor==c.st.constructor&&(a=a[a.length-1]),a.node.nextSibling?a.node.parentNode.insertBefore(this.node,a.node.nextSibling):a.node.parentNode.appendChild(this.node),c._insertafter(this,a,this.paper),this)},E.insertBefore=function(a){return this.removed?this:(a.constructor==c.st.constructor&&(a=a[0]),a.node.parentNode.insertBefore(this.node,a.node),c._insertbefore(this,a,this.paper),this)},E.blur=function(a){var b=this.node.runtimeStyle,d=b.filter;return d=d.replace(r,o),0!==+a?(this.attrs.blur=a,b.filter=d+n+m+".Blur(pixelradius="+(+a||1.5)+")",b.margin=c.format("-{0}px 0 0 -{0}px",f(+a||1.5))):(b.filter=d,b.margin=0,delete this.attrs.blur),this},c._engine.path=function(a,b){var c=F("shape");c.style.cssText=t,c.coordsize=u+n+u,c.coordorigin=b.coordorigin;var d=new D(c,b),e={fill:"none",stroke:"#000"};a&&(e.path=a),d.type="path",d.path=[],d.Path=o,B(d,e),b.canvas.appendChild(c);var f=F("skew");return f.on=!0,c.appendChild(f),d.skew=f,d.transform(o),d},c._engine.rect=function(a,b,d,e,f,g){var h=c._rectPath(b,d,e,f,g),i=a.path(h),j=i.attrs;return i.X=j.x=b,i.Y=j.y=d,i.W=j.width=e,i.H=j.height=f,j.r=g,j.path=h,i.type="rect",i},c._engine.ellipse=function(a,b,c,d,e){{var f=a.path();f.attrs}return f.X=b-d,f.Y=c-e,f.W=2*d,f.H=2*e,f.type="ellipse",B(f,{cx:b,cy:c,rx:d,ry:e}),f},c._engine.circle=function(a,b,c,d){{var e=a.path();e.attrs}return e.X=b-d,e.Y=c-d,e.W=e.H=2*d,e.type="circle",B(e,{cx:b,cy:c,r:d}),e},c._engine.image=function(a,b,d,e,f,g){var h=c._rectPath(d,e,f,g),i=a.path(h).attr({stroke:"none"}),k=i.attrs,l=i.node,m=l.getElementsByTagName(j)[0];return k.src=b,i.X=k.x=d,i.Y=k.y=e,i.W=k.width=f,i.H=k.height=g,k.path=h,i.type="image",m.parentNode==l&&l.removeChild(m),m.rotate=!0,m.src=b,m.type="tile",i._.fillpos=[d,e],i._.fillsize=[f,g],l.appendChild(m),z(i,1,1,0,0,0),i},c._engine.text=function(a,d,e,g){var h=F("shape"),i=F("path"),j=F("textpath");d=d||0,e=e||0,g=g||"",i.v=c.format("m{0},{1}l{2},{1}",f(d*u),f(e*u),f(d*u)+1),i.textpathok=!0,j.string=b(g),j.on=!0,h.style.cssText=t,h.coordsize=u+n+u,h.coordorigin="0 0";var k=new D(h,a),l={fill:"#000",stroke:"none",font:c._availableAttrs.font,text:g};k.shape=h,k.path=i,k.textpath=j,k.type="text",k.attrs.text=b(g),k.attrs.x=d,k.attrs.y=e,k.attrs.w=1,k.attrs.h=1,B(k,l),h.appendChild(j),h.appendChild(i),a.canvas.appendChild(h);var m=F("skew");return m.on=!0,h.appendChild(m),k.skew=m,k.transform(o),k},c._engine.setSize=function(a,b){var d=this.canvas.style;return this.width=a,this.height=b,a==+a&&(a+="px"),b==+b&&(b+="px"),d.width=a,d.height=b,d.clip="rect(0 "+a+" "+b+" 0)",this._viewBox&&c._engine.setViewBox.apply(this,this._viewBox),this},c._engine.setViewBox=function(a,b,d,e,f){c.eve("raphael.setViewBox",this,this._viewBox,[a,b,d,e,f]);var g,h,i=this.getSize(),j=i.width,k=i.height;return f&&(g=k/e,h=j/d,j>d*g&&(a-=(j-d*g)/2/g),k>e*h&&(b-=(k-e*h)/2/h)),this._viewBox=[a,b,d,e,!!f],this._viewBoxShift={dx:-a,dy:-b,scale:i},this.forEach(function(a){a.transform("...")}),this};var F;c._engine.initWin=function(a){var b=a.document;b.styleSheets.length<31?b.createStyleSheet().addRule(".rvml","behavior:url(#default#VML)"):b.styleSheets[0].addRule(".rvml","behavior:url(#default#VML)");try{!b.namespaces.rvml&&b.namespaces.add("rvml","urn:schemas-microsoft-com:vml"),F=function(a){return b.createElement("')}}catch(c){F=function(a){return b.createElement("<"+a+' xmlns="urn:schemas-microsoft.com:vml" class="rvml">')}}},c._engine.initWin(c._g.win),c._engine.create=function(){var a=c._getContainer.apply(0,arguments),b=a.container,d=a.height,e=a.width,f=a.x,g=a.y;if(!b)throw new Error("VML container not found.");var h=new c._Paper,i=h.canvas=c._g.doc.createElement("div"),j=i.style;return f=f||0,g=g||0,e=e||512,d=d||342,h.width=e,h.height=d,e==+e&&(e+="px"),d==+d&&(d+="px"),h.coordsize=1e3*u+n+1e3*u,h.coordorigin="0 0",h.span=c._g.doc.createElement("span"),h.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;",i.appendChild(h.span),j.cssText=c.format("top:0;left:0;width:{0};height:{1};display:inline-block;position:relative;clip:rect(0 {0} {1} 0);overflow:hidden",e,d),1==b?(c._g.doc.body.appendChild(i),j.left=f+"px",j.top=g+"px",j.position="absolute"):b.firstChild?b.insertBefore(i,b.firstChild):b.appendChild(i),h.renderfix=function(){},h},c.prototype.clear=function(){c.eve("raphael.clear",this),this.canvas.innerHTML=o,this.span=c._g.doc.createElement("span"),this.span.style.cssText="position:absolute;left:-9999em;top:-9999em;padding:0;margin:0;line-height:1;display:inline;",this.canvas.appendChild(this.span),this.bottom=this.top=null},c.prototype.remove=function(){c.eve("raphael.remove",this),this.canvas.parentNode.removeChild(this.canvas);for(var a in this)this[a]="function"==typeof this[a]?c._removedFactory(a):null;return!0};var G=c.st;for(var H in E)E[a](H)&&!G[a](H)&&(G[H]=function(a){return function(){var b=arguments;return this.forEach(function(c){c[a].apply(c,b)})}}(H))}}(),B.was?A.win.Raphael=c:Raphael=c,"object"==typeof exports&&(module.exports=c),c}); \ No newline at end of file diff --git a/html/pages/device/edit/device.inc.php b/html/pages/device/edit/device.inc.php index 17af0cbaf..b1705eab1 100644 --- a/html/pages/device/edit/device.inc.php +++ b/html/pages/device/edit/device.inc.php @@ -9,20 +9,22 @@ if ($_POST['editing']) { $override_sysLocation_string = mres($_POST['sysLocation']); } - if (get_dev_attrib($device,'override_sysLocation_bool') != $override_sysLocation_bool - || get_dev_attrib($device,'override_sysLocation_string') != $override_sysLocation_string) { - $updated = 1; - } + if ($device['override_sysLocation'] != $override_sysLocation_bool || $device['location'] != $override_sysLocation_string) { + $updated = 1; + } if ($override_sysLocation_bool) { - set_dev_attrib($device, 'override_sysLocation_bool', '1'); + $override_sysLocation = 1; } else { - del_dev_attrib($device, 'override_sysLocation_bool'); + $override_sysLocation = 0; } + + dbUpdate(array('override_sysLocation'=>$override_sysLocation), 'devices', '`device_id`=?' ,array($device['device_id'])); + if (isset($override_sysLocation_string)) { - set_dev_attrib($device, 'override_sysLocation_string', $override_sysLocation_string); - }; + dbUpdate(array('location'=>$override_sysLocation_string), 'devices', '`device_id`=?' ,array($device['device_id'])); + } #FIXME needs more sanity checking! and better feedback @@ -50,8 +52,8 @@ if ($_POST['editing']) { $descr = $device['purpose']; -$override_sysLocation_bool = get_dev_attrib($device,'override_sysLocation_bool'); -$override_sysLocation_string = get_dev_attrib($device,'override_sysLocation_string'); +$override_sysLocation = $device['override_sysLocation']; +$override_sysLocation_string = $device['location']; if ($updated && $update_message) { print_message($update_message); @@ -116,7 +118,7 @@ if ($unknown) {
- /> + />
@@ -124,7 +126,7 @@ if ($unknown) {
- value="" /> + value="" />
diff --git a/html/pages/devices.inc.php b/html/pages/devices.inc.php index a51358762..aaac360e3 100644 --- a/html/pages/devices.inc.php +++ b/html/pages/devices.inc.php @@ -181,8 +181,7 @@ if($format == "graph") { } if (device_permitted($device['device_id'])) { - if (!$location_filter || ((get_dev_attrib($device,'override_sysLocation_bool') && get_dev_attrib($device,'override_sysLocation_string') == $location_filter) - || $device['location'] == $location_filter)) { + if (!$location_filter || $device['location'] == $location_filter) { $graph_type = "device_".$subformat; if ($_SESSION['widescreen']) { diff --git a/html/pages/front/globe.php b/html/pages/front/globe.php index 9884b402f..95172f9ed 100644 --- a/html/pages/front/globe.php +++ b/html/pages/front/globe.php @@ -43,7 +43,7 @@ foreach (getlocations() as $location) { $devices_up = array(); $count = 0; $down = 0; - foreach (dbFetchRows("SELECT devices.device_id,devices.hostname,devices.status FROM devices LEFT JOIN devices_attribs ON devices.device_id = devices_attribs.device_id WHERE ( devices.location = ? || ( devices_attribs.attrib_type = 'override_sysLocation_string' && devices_attribs.attrib_value = ? ) ) && devices.disabled = 0 && devices.ignore = 0 GROUP BY devices.hostname", array($location,$location)) as $device) { + foreach (dbFetchRows("SELECT devices.device_id,devices.hostname,devices.status FROM devices LEFT JOIN devices_attribs ON devices.device_id = devices_attribs.device_id WHERE devices.location = ? && devices.disabled = 0 && devices.ignore = 0 GROUP BY devices.hostname", array($location)) as $device) { if( $config['frontpage_globe']['markers'] == 'devices' || empty($config['frontpage_globe']['markers']) ) { $devices[] = $device['hostname']; $count++; diff --git a/html/pages/front/map.php b/html/pages/front/map.php new file mode 100644 index 000000000..b29ac7bc3 --- /dev/null +++ b/html/pages/front/map.php @@ -0,0 +1,264 @@ + + * This program is free software: you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation, either version 3 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ + +/** + * Custom Frontpage + * @author f0o + * @copyright 2014 f0o, LibreNMS + * @license GPL + * @package LibreNMS + * @subpackage Frontpage + */ + +if ($config['map']['engine'] == 'leaflet') { +?> + + + +
+ + + + + + + + + +
+
+
+ Alternative content for the map +
+
+
+ +
+
'; + include_once("includes/front/boxes.inc.php"); +echo '
+
+
+
'; + include_once("includes/device-summary-vert.inc.php"); +echo '
+
+
+
'; + $device['device_id'] = '-1'; + require_once('includes/print-alerts.php'); + unset($device['device_id']); +echo '
+
+
'; + +//From default.php - This code is not part of above license. +if ($config['enable_syslog']) { +$sql = "SELECT *, DATE_FORMAT(timestamp, '".$config['dateformat']['mysql']['compact']."') AS date from syslog ORDER BY seq DESC LIMIT 20"; +$query = mysql_query($sql); +echo('
+
+
+   +
+
+
+
+
+
+ Syslog entries +
+ '); + + foreach (dbFetchRows($sql) as $entry) + { + $entry = array_merge($entry, device_by_id_cache($entry['device_id'])); + + include("includes/print-syslog.inc.php"); + } + echo("
"); + echo("
"); + echo("
"); + echo("
"); + echo("
"); + +} else { + + if ($_SESSION['userlevel'] == '10') + { + $query = "SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `eventlog` ORDER BY `datetime` DESC LIMIT 0,15"; + } else { + $query = "SELECT *,DATE_FORMAT(datetime, '".$config['dateformat']['mysql']['compact']."') as humandate FROM `eventlog` AS E, devices_perms AS P WHERE E.host = + P.device_id AND P.user_id = " . $_SESSION['user_id'] . " ORDER BY `datetime` DESC LIMIT 0,15"; + } + + $data = mysql_query($query); + + echo('
+
+
+   +
+
+
+
+
+
+ Eventlog entries +
+ '); + + foreach (dbFetchRows($query) as $entry) + { + include("includes/print-event.inc.php"); + } + + echo("
"); + echo("
"); + echo("
"); + echo("
"); + echo("
"); +} +?> diff --git a/includes/common.php b/includes/common.php index 9f4f182bd..1049c7538 100644 --- a/includes/common.php +++ b/includes/common.php @@ -296,10 +296,6 @@ function device_by_id_cache($device_id, $refresh = '0') { } else { $device = dbFetchRow("SELECT * FROM `devices` WHERE `device_id` = ?", array($device_id)); - if (get_dev_attrib($device,'override_sysLocation_bool')) { - $device['real_location'] = $device['location']; - $device['location'] = get_dev_attrib($device,'override_sysLocation_string'); - } $cache['devices']['id'][$device_id] = $device; } return $device; diff --git a/includes/defaults.inc.php b/includes/defaults.inc.php index d25e6b445..af6b937dc 100644 --- a/includes/defaults.inc.php +++ b/includes/defaults.inc.php @@ -733,3 +733,12 @@ $config['unix-agent-connection-time-out'] = 10; // seconds $config['unix-agent-read-time-out'] = 10; // seconds + +// Lat / Lon support for maps +$config['geoloc']['latlng'] = false; // True to enable translation of location to latlng co-ordinates +$config['geoloc']['engine'] = 'google'; +$config['map']['engine'] = 'leaflet'; +$config['mapael']['default_map'] = 'maps/world_countries.js'; +$config['leaflet']['default_lat'] = '50.898482'; +$config['leaflet']['default_lng'] = '-3.401402'; +$config['leaflet']['default_zoom'] = 2; diff --git a/includes/functions.php b/includes/functions.php index b24797e22..1a399a702 100644 --- a/includes/functions.php +++ b/includes/functions.php @@ -1278,3 +1278,7 @@ function fping($host,$params) { $response = array('xmt'=>$xmt,'rcv'=>$rcv,'loss'=>$loss,'min'=>$min,'max'=>$max,'avg'=>$avg); return $response; } + +function function_check($function) { + return function_exists($function); +} diff --git a/includes/polling/functions.inc.php b/includes/polling/functions.inc.php index 16b3a2b5d..63668771f 100644 --- a/includes/polling/functions.inc.php +++ b/includes/polling/functions.inc.php @@ -416,3 +416,60 @@ function get_main_serial($device) { } }//end get_main_serial() + + +function location_to_latlng($device) { + global $config; + if (function_check('curl_version') !== true) { + d_echo("Curl support for PHP not enabled\n"); + return false; + } + $bad_loc = false; + $device_location = $device['location']; + if (!empty($device_location)) { + $new_device_location = preg_replace("/ /","+",$device_location); + // We have a location string for the device. + $loc = dbFetchRow("SELECT `lat`,`lng` FROM `locations` WHERE `location`=? LIMIT 1", array($device_location)); + if (is_array($loc) === false) { + // Grab data from which ever Geocode service we use. + switch ($config['geoloc']['engine']) { + case "google": + default: + d_echo("Google geocode engine being used\n"); + $api_url = "https://maps.googleapis.com/maps/api/geocode/json?address=$new_device_location"; + break; + } + $curl_init = curl_init($api_url); + set_curl_proxy($curl_init); + curl_setopt($curl_init, CURLOPT_RETURNTRANSFER, true); + $data = json_decode(curl_exec($curl_init),true); + // Parse the data from the specific Geocode services. + switch ($config['geoloc']['engine']) { + case "google": + default: + if ($data['status'] == 'OK') { + $loc = $data['results'][0]['geometry']['location']; + } else { + $bad_loc = true; + } + break; + } + if ($bad_loc === true) { + d_echo("Bad lat / lng received\n"); + } + else { + $loc['timestamp'] = array('NOW()'); + $loc['location'] = $device_location; + if (dbInsert($loc, 'locations')) { + d_echo("Device lat/lng created\n"); + } + else { + d_echo("Device lat/lng could not be created\n"); + } + } + } + else { + d_echo("Using cached lat/lng from other device\n"); + } + } +}// end location_to_latlng() diff --git a/includes/polling/system.inc.php b/includes/polling/system.inc.php index 51494d530..700f7046d 100644 --- a/includes/polling/system.inc.php +++ b/includes/polling/system.inc.php @@ -114,9 +114,11 @@ foreach (array('sysContact', 'sysObjectID', 'sysName', 'sysDescr') as $elem) { } } -if ($poll_device['sysLocation'] && $device['location'] != $poll_device['sysLocation']) { - if (!get_dev_attrib($device, 'override_sysLocation_bool')) { - $update_array['location'] = $poll_device['sysLocation']; - log_event('Location -> '.$poll_device['sysLocation'], $device, 'system'); - } +if ($poll_device['sysLocation'] && $device['location'] != $poll_device['sysLocation'] && $device['override_sysLocation'] == 0) { + $update_array['location'] = $poll_device['sysLocation']; + log_event('Location -> '.$poll_device['sysLocation'], $device, 'system'); +} + +if ($config['geoloc']['latlng'] === true) { + location_to_latlng($device); } diff --git a/lib/Leaflet.awesome-markers/.gitignore b/lib/Leaflet.awesome-markers/.gitignore new file mode 100644 index 000000000..7cd61c4d1 --- /dev/null +++ b/lib/Leaflet.awesome-markers/.gitignore @@ -0,0 +1,3 @@ +.DS_Store +*~ +.codekit-config.json diff --git a/lib/Leaflet.awesome-markers/LICENSE b/lib/Leaflet.awesome-markers/LICENSE new file mode 100644 index 000000000..a8654fe70 --- /dev/null +++ b/lib/Leaflet.awesome-markers/LICENSE @@ -0,0 +1,7 @@ +Copyright (C) 2013 L. Voogdt + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. \ No newline at end of file diff --git a/lib/Leaflet.awesome-markers/README.md b/lib/Leaflet.awesome-markers/README.md new file mode 100644 index 000000000..3e4cbda9b --- /dev/null +++ b/lib/Leaflet.awesome-markers/README.md @@ -0,0 +1,120 @@ +# Leaflet.awesome-markers plugin v2.0 +Colorful iconic & retina-proof markers for Leaflet, based on the Glyphicons / Font-Awesome icons + +Version 2.0 of Leaflet.awesome-markers is tested with: +- Bootstrap 3 +- Font Awesome 4.0 +- Ionicons 1.5.2 +- Leaflet 0.5-Latest + +For bootstrap 2.x & Fontawesome 3.x use Leaflet.awesome-markers v1.0 + +## Screenshots +![AwesomeMarkers screenshot](https://raw.github.com/lvoogdt/Leaflet.awesome-markers/master/screenshots/screenshot-soft.png "Screenshot of AwesomeMarkers") + +JSfiddle demo + +### Twitter Bootstrap/Font-Awesome icons +This plugin depends on either Bootstrap or Font-Awesome for the rendering of the icons. See these urls for more information: + +For Font-Awesome +- http://fortawesome.github.com/Font-Awesome/ +- http://fortawesome.github.com/Font-Awesome/#integration + +For Twitter bootstrap: +- http://twitter.github.com/bootstrap/ + +For Ionicons: +- http://ionicons.com + + +## Using the plugin +- 1) First, follow the steps for including Font-Awesome or Twitter bootstrap or Ionicons into your application. + +For Font-Awesome, steps are located here: + +http://fortawesome.github.io/Font-Awesome/get-started/ + +For Twitter bootstrap, steps are here: + +http://getbootstrap.com/getting-started/ + +For Ionicons: + +Add the ionicon stylesheet from a [CDN](http://code.ionicframework.com/ionicons/1.5.2/css/ionicons.min.css) or [download ionicons](http://ionicons.com). + +````xml + +```` + +- 2) Next, copy the dist/images directory, awesome-markers.css, and awesome-markers.js to your project and include them: +````xml + +```` +````xml + +```` + +- 3) Now use the plugin to create a marker like this: +````js + // Creates a red marker with the coffee icon + var redMarker = L.AwesomeMarkers.icon({ + icon: 'coffee', + markerColor: 'red' + }); + + L.marker([51.941196,4.512291], {icon: redMarker}).addTo(map); +```` + +### Properties + +| Property | Description | Default Value | Possible values | +| --------------- | ---------------------- | ------------- | ---------------------------------------------------- | +| icon | Name of the icon | 'home' | See glyphicons or font-awesome | +| prefix | Select de icon library | 'glyphicon' | 'fa' for font-awesome or 'glyphicon' for bootstrap 3 | +| markerColor | Color of the marker | 'blue' | 'red', 'darkred', 'orange', 'green', 'darkgreen', 'blue', 'purple', 'darkpuple', 'cadetblue' | +| iconColor | Color of the icon | 'white' | 'white', 'black' or css code (hex, rgba etc) | +| spin | Make the icon spin | false | true or false. Font-awesome required | +| extraClasses | Additional classes in the created tag | '' | 'fa-rotate90 myclass' eller other custom configuration | + + +### Supported icons +The 'icon' property supports these strings: +- 'home' +- 'glass' +- 'flag' +- 'star' +- 'bookmark' +- .... and many more, see: http://fortawesome.github.io/Font-Awesome/icons/ +- Or: http://getbootstrap.com/components/#glyphicons +- Or: http://ionicons.com + +### Tips & Tricks + +Tweak size and positioning of the icons: + +````css + .awesome-marker i { + font-size: 18px; + margin-top: 8px; + } +```` + +Set default prefix to something other than `glypicon` + +````js + L.AwesomeMarkers.Icon.prototype.options.prefix = 'ion'; +```` + +See [JSFIddle](http://jsfiddle.net/markmarijnissen/VPzu4/286/) + +## License +- Leaflet.AwesomeMarkers and colored markers are licensed under the MIT License - http://opensource.org/licenses/mit-license.html. +- Font Awesome: http://fortawesome.github.io/Font-Awesome/license/ +- Twitter Bootstrap: http://getbootstrap.com/ + +## Contact +- Email: lvoogdt@gmail.com +- Website: http://lennardvoogdt.nl + +[![Bitdeli Badge](https://d2weczhvl823v0.cloudfront.net/lvoogdt/leaflet.awesome-markers/trend.png)](https://bitdeli.com/free "Bitdeli Badge") diff --git a/lib/Leaflet.awesome-markers/bower.json b/lib/Leaflet.awesome-markers/bower.json new file mode 100644 index 000000000..4589cc323 --- /dev/null +++ b/lib/Leaflet.awesome-markers/bower.json @@ -0,0 +1,21 @@ +{ + "name": "Leaflet.awesome-markers", + "version": "2.0.2", + "homepage": "https://github.com/lvoogdt/Leaflet.awesome-markers", + "authors": [ + "Lennard Voogdt " + ], + "description": "Colorful iconic & retina-proof markers for Leaflet, based on the Glyphicons / Font-Awesome icons", + "main": [ + "dist/leaflet.awesome-markers.css", + "dist/leaflet.awesome-markers.js" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "test", + "tests" + ] +} diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-matte.png b/lib/Leaflet.awesome-markers/dist/images/markers-matte.png new file mode 100644 index 000000000..178258665 Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-matte.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-matte@2x.png b/lib/Leaflet.awesome-markers/dist/images/markers-matte@2x.png new file mode 100644 index 000000000..c981244dd Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-matte@2x.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-plain.png b/lib/Leaflet.awesome-markers/dist/images/markers-plain.png new file mode 100644 index 000000000..763f35893 Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-plain.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-shadow.png b/lib/Leaflet.awesome-markers/dist/images/markers-shadow.png new file mode 100644 index 000000000..33cf95504 Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-shadow.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-shadow@2x.png b/lib/Leaflet.awesome-markers/dist/images/markers-shadow@2x.png new file mode 100644 index 000000000..1116503f6 Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-shadow@2x.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-soft.png b/lib/Leaflet.awesome-markers/dist/images/markers-soft.png new file mode 100644 index 000000000..9ee4c348d Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-soft.png differ diff --git a/lib/Leaflet.awesome-markers/dist/images/markers-soft@2x.png b/lib/Leaflet.awesome-markers/dist/images/markers-soft@2x.png new file mode 100644 index 000000000..540ce6375 Binary files /dev/null and b/lib/Leaflet.awesome-markers/dist/images/markers-soft@2x.png differ diff --git a/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css new file mode 100644 index 000000000..588a99c85 --- /dev/null +++ b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.css @@ -0,0 +1,124 @@ +/* +Author: L. Voogdt +License: MIT +Version: 1.0 +*/ + +/* Marker setup */ +.awesome-marker { + background: url('images/markers-soft.png') no-repeat 0 0; + width: 35px; + height: 46px; + position:absolute; + left:0; + top:0; + display: block; + text-align: center; +} + +.awesome-marker-shadow { + background: url('images/markers-shadow.png') no-repeat 0 0; + width: 36px; + height: 16px; +} + +/* Retina displays */ +@media (min--moz-device-pixel-ratio: 1.5),(-o-min-device-pixel-ratio: 3/2), +(-webkit-min-device-pixel-ratio: 1.5),(min-device-pixel-ratio: 1.5),(min-resolution: 1.5dppx) { + .awesome-marker { + background-image: url('images/markers-soft@2x.png'); + background-size: 720px 46px; + } + .awesome-marker-shadow { + background-image: url('images/markers-shadow@2x.png'); + background-size: 35px 16px; + } +} + +.awesome-marker i { + color: #333; + margin-top: 10px; + display: inline-block; + font-size: 14px; +} + +.awesome-marker .icon-white { + color: #fff; +} + +/* Colors */ +.awesome-marker-icon-red { + background-position: 0 0; +} + +.awesome-marker-icon-darkred { + background-position: -180px 0; +} + +.awesome-marker-icon-lightred { + background-position: -360px 0; +} + +.awesome-marker-icon-orange { + background-position: -36px 0; +} + +.awesome-marker-icon-beige { + background-position: -396px 0; +} + +.awesome-marker-icon-green { + background-position: -72px 0; +} + +.awesome-marker-icon-darkgreen { + background-position: -252px 0; +} + +.awesome-marker-icon-lightgreen { + background-position: -432px 0; +} + +.awesome-marker-icon-blue { + background-position: -108px 0; +} + +.awesome-marker-icon-darkblue { + background-position: -216px 0; +} + +.awesome-marker-icon-lightblue { + background-position: -468px 0; +} + +.awesome-marker-icon-purple { + background-position: -144px 0; +} + +.awesome-marker-icon-darkpurple { + background-position: -288px 0; +} + +.awesome-marker-icon-pink { + background-position: -504px 0; +} + +.awesome-marker-icon-cadetblue { + background-position: -324px 0; +} + +.awesome-marker-icon-white { + background-position: -574px 0; +} + +.awesome-marker-icon-gray { + background-position: -648px 0; +} + +.awesome-marker-icon-lightgray { + background-position: -612px 0; +} + +.awesome-marker-icon-black { + background-position: -682px 0; +} diff --git a/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.js b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.js new file mode 100644 index 000000000..7505b6f26 --- /dev/null +++ b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.js @@ -0,0 +1,125 @@ +/* + Leaflet.AwesomeMarkers, a plugin that adds colorful iconic markers for Leaflet, based on the Font Awesome icons + (c) 2012-2013, Lennard Voogdt + + http://leafletjs.com + https://github.com/lvoogdt +*/ + +/*global L*/ + +(function (window, document, undefined) { + "use strict"; + /* + * Leaflet.AwesomeMarkers assumes that you have already included the Leaflet library. + */ + + L.AwesomeMarkers = {}; + + L.AwesomeMarkers.version = '2.0.1'; + + L.AwesomeMarkers.Icon = L.Icon.extend({ + options: { + iconSize: [35, 45], + iconAnchor: [17, 42], + popupAnchor: [1, -32], + shadowAnchor: [10, 12], + shadowSize: [36, 16], + className: 'awesome-marker', + prefix: 'glyphicon', + spinClass: 'fa-spin', + extraClasses: '', + icon: 'home', + markerColor: 'blue', + iconColor: 'white' + }, + + initialize: function (options) { + options = L.Util.setOptions(this, options); + }, + + createIcon: function () { + var div = document.createElement('div'), + options = this.options; + + if (options.icon) { + div.innerHTML = this._createInner(); + } + + if (options.bgPos) { + div.style.backgroundPosition = + (-options.bgPos.x) + 'px ' + (-options.bgPos.y) + 'px'; + } + + this._setIconStyles(div, 'icon-' + options.markerColor); + return div; + }, + + _createInner: function() { + var iconClass, iconSpinClass = "", iconColorClass = "", iconColorStyle = "", options = this.options; + + if(options.icon.slice(0,options.prefix.length+1) === options.prefix + "-") { + iconClass = options.icon; + } else { + iconClass = options.prefix + "-" + options.icon; + } + + if(options.spin && typeof options.spinClass === "string") { + iconSpinClass = options.spinClass; + } + + if(options.iconColor) { + if(options.iconColor === 'white' || options.iconColor === 'black') { + iconColorClass = "icon-" + options.iconColor; + } else { + iconColorStyle = "style='color: " + options.iconColor + "' "; + } + } + + return ""; + }, + + _setIconStyles: function (img, name) { + var options = this.options, + size = L.point(options[name === 'shadow' ? 'shadowSize' : 'iconSize']), + anchor; + + if (name === 'shadow') { + anchor = L.point(options.shadowAnchor || options.iconAnchor); + } else { + anchor = L.point(options.iconAnchor); + } + + if (!anchor && size) { + anchor = size.divideBy(2, true); + } + + img.className = 'awesome-marker-' + name + ' ' + options.className; + + if (anchor) { + img.style.marginLeft = (-anchor.x) + 'px'; + img.style.marginTop = (-anchor.y) + 'px'; + } + + if (size) { + img.style.width = size.x + 'px'; + img.style.height = size.y + 'px'; + } + }, + + createShadow: function () { + var div = document.createElement('div'); + + this._setIconStyles(div, 'shadow'); + return div; + } + }); + + L.AwesomeMarkers.icon = function (options) { + return new L.AwesomeMarkers.Icon(options); + }; + +}(this, document)); + + + diff --git a/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.min.js b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.min.js new file mode 100644 index 000000000..376e57e68 --- /dev/null +++ b/lib/Leaflet.awesome-markers/dist/leaflet.awesome-markers.min.js @@ -0,0 +1,7 @@ +/* + Leaflet.AwesomeMarkers, a plugin that adds colorful iconic markers for Leaflet, based on the Font Awesome icons + (c) 2012-2013, Lennard Voogdt + + http://leafletjs.com + https://github.com/lvoogdt +*//*global L*/(function(e,t,n){"use strict";L.AwesomeMarkers={};L.AwesomeMarkers.version="2.0.1";L.AwesomeMarkers.Icon=L.Icon.extend({options:{iconSize:[35,45],iconAnchor:[17,42],popupAnchor:[1,-32],shadowAnchor:[10,12],shadowSize:[36,16],className:"awesome-marker",prefix:"glyphicon",spinClass:"fa-spin",icon:"home",markerColor:"blue",iconColor:"white"},initialize:function(e){e=L.Util.setOptions(this,e)},createIcon:function(){var e=t.createElement("div"),n=this.options;n.icon&&(e.innerHTML=this._createInner());n.bgPos&&(e.style.backgroundPosition=-n.bgPos.x+"px "+ -n.bgPos.y+"px");this._setIconStyles(e,"icon-"+n.markerColor);return e},_createInner:function(){var e,t="",n="",r="",i=this.options;i.icon.slice(0,i.prefix.length+1)===i.prefix+"-"?e=i.icon:e=i.prefix+"-"+i.icon;i.spin&&typeof i.spinClass=="string"&&(t=i.spinClass);i.iconColor&&(i.iconColor==="white"||i.iconColor==="black"?n="icon-"+i.iconColor:r="style='color: "+i.iconColor+"' ");return""},_setIconStyles:function(e,t){var n=this.options,r=L.point(n[t==="shadow"?"shadowSize":"iconSize"]),i;t==="shadow"?i=L.point(n.shadowAnchor||n.iconAnchor):i=L.point(n.iconAnchor);!i&&r&&(i=r.divideBy(2,!0));e.className="awesome-marker-"+t+" "+n.className;if(i){e.style.marginLeft=-i.x+"px";e.style.marginTop=-i.y+"px"}if(r){e.style.width=r.x+"px";e.style.height=r.y+"px"}},createShadow:function(){var e=t.createElement("div");this._setIconStyles(e,"shadow");return e}});L.AwesomeMarkers.icon=function(e){return new L.AwesomeMarkers.Icon(e)}})(this,document); diff --git a/lib/Leaflet.awesome-markers/examples/basic-example.html b/lib/Leaflet.awesome-markers/examples/basic-example.html new file mode 100644 index 000000000..f031b6100 --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/basic-example.html @@ -0,0 +1,45 @@ + + + + Awesome Markers Example: Basic + + + + + + + + + + +
+ + + + + + diff --git a/lib/Leaflet.awesome-markers/examples/css/font-awesome-ie7.min.css b/lib/Leaflet.awesome-markers/examples/css/font-awesome-ie7.min.css new file mode 100755 index 000000000..ae301609e --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/css/font-awesome-ie7.min.css @@ -0,0 +1,22 @@ +/*! + * Font Awesome 3.0.2 + * the iconic font designed for use with Twitter Bootstrap + * ------------------------------------------------------- + * The full suite of pictographic icons, examples, and documentation + * can be found at: http://fortawesome.github.com/Font-Awesome/ + * + * License + * ------------------------------------------------------- + * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - + * http://opensource.org/licenses/mit-license.html + * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" + + * Contact + * ------------------------------------------------------- + * Email: dave@davegandy.com + * Twitter: http://twitter.com/fortaweso_me + * Work: Lead Product Designer @ http://kyruus.com + */.icon-large{font-size:1.3333333333333333em;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px;vertical-align:middle}.nav [class^="icon-"],.nav [class*=" icon-"]{vertical-align:inherit;margin-top:-4px;padding-top:3px;margin-bottom:-4px;padding-bottom:3px}.nav [class^="icon-"].icon-large,.nav [class*=" icon-"].icon-large{vertical-align:-25%}.nav-pills [class^="icon-"].icon-large,.nav-tabs [class^="icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large{line-height:.75em;margin-top:-7px;padding-top:5px;margin-bottom:-5px;padding-bottom:4px}.btn [class^="icon-"].pull-left,.btn [class*=" icon-"].pull-left,.btn [class^="icon-"].pull-right,.btn [class*=" icon-"].pull-right{vertical-align:inherit}.btn [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large{margin-top:-0.5em}a [class^="icon-"],a [class*=" icon-"]{cursor:pointer}ul.icons{text-indent:-1.5em;margin-left:3em}.icon-glass{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-music{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-search{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-film{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-large{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-th-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-in{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-zoom-out{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cog{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trash{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-home{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-time{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-road{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-inbox{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-repeat{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-refresh{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-flag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-headphones{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-off{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-volume-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-qrcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-barcode{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tag{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tags{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-book{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-print{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-font{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bold{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-italic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-height{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-text-width{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-center{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-align-justify{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-indent-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facetime-video{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-picture{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pencil{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-map-marker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-adjust{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tint{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-edit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-move{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-backward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-play{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pause{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fast-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-step-forward{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eject{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-question-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-info-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-screenshot{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-remove-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ok-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ban-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-share-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-full{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-small{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-minus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-asterisk{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exclamation-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-gift{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-leaf{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fire{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-eye-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-warning-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plane{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-calendar{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-random{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magnet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-chevron-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-retweet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-shopping-cart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-vertical{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-resize-horizontal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bar-chart{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-camera-retro{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-key{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cogs{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-thumbs-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-star-half{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-heart-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signout{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pushpin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-external-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-signin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-trophy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-upload-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lemon{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-check-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bookmark-empty{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-phone-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-twitter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-facebook{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-unlock{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-credit-card{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-rss{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hdd{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bullhorn{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-certificate{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hand-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-arrow-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-globe{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-wrench{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tasks{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-filter{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-briefcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fullscreen{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-group{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-link{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beaker{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cut{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-copy{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paper-clip{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-save{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sign-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reorder{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ul{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-list-ol{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-strikethrough{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-underline{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-table{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-magic{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-truck{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-pinterest-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-google-plus{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-money{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-caret-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-columns{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sort-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-envelope-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-linkedin{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-undo{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-legal{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-dashboard{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comment-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-comments-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bolt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-sitemap{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-umbrella{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-paste{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-lightbulb{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-exchange{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-download{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-cloud-upload{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-user-md{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-stethoscope{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-suitcase{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-bell-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-coffee{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-food{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-file-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-building{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-hospital{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-ambulance{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-medkit{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-fighter-jet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-beer{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-h-sign{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-plus-sign-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-double-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-up{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-angle-down{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-desktop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-laptop{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-tablet{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-mobile-phone{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle-blank{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-left{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-quote-right{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-spinner{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-circle{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-reply{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-github-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-close-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')}.icon-folder-open-alt{*zoom:expression(this.runtimeStyle['zoom'] = '1',this.innerHTML = '')} \ No newline at end of file diff --git a/lib/Leaflet.awesome-markers/examples/css/font-awesome.min.css b/lib/Leaflet.awesome-markers/examples/css/font-awesome.min.css new file mode 100755 index 000000000..d4e45b3c9 --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/css/font-awesome.min.css @@ -0,0 +1,33 @@ +/*! + * Font Awesome 3.0.2 + * the iconic font designed for use with Twitter Bootstrap + * ------------------------------------------------------- + * The full suite of pictographic icons, examples, and documentation + * can be found at: http://fortawesome.github.com/Font-Awesome/ + * + * License + * ------------------------------------------------------- + * - The Font Awesome font is licensed under the SIL Open Font License - http://scripts.sil.org/OFL + * - Font Awesome CSS, LESS, and SASS files are licensed under the MIT License - + * http://opensource.org/licenses/mit-license.html + * - The Font Awesome pictograms are licensed under the CC BY 3.0 License - http://creativecommons.org/licenses/by/3.0/ + * - Attribution is no longer required in Font Awesome 3.0, but much appreciated: + * "Font Awesome by Dave Gandy - http://fortawesome.github.com/Font-Awesome" + + * Contact + * ------------------------------------------------------- + * Email: dave@davegandy.com + * Twitter: http://twitter.com/fortaweso_me + * Work: Lead Product Designer @ http://kyruus.com + */ + +@font-face{ + font-family:'FontAwesome'; + src:url('../font/fontawesome-webfont.eot?v=3.0.1'); + src:url('../font/fontawesome-webfont.eot?#iefix&v=3.0.1') format('embedded-opentype'), + url('../font/fontawesome-webfont.woff?v=3.0.1') format('woff'), + url('../font/fontawesome-webfont.ttf?v=3.0.1') format('truetype'); + font-weight:normal; + font-style:normal } + +[class^="icon-"],[class*=" icon-"]{font-family:FontAwesome;font-weight:normal;font-style:normal;text-decoration:inherit;-webkit-font-smoothing:antialiased;display:inline;width:auto;height:auto;line-height:normal;vertical-align:baseline;background-image:none;background-position:0 0;background-repeat:repeat;margin-top:0}.icon-white,.nav-pills>.active>a>[class^="icon-"],.nav-pills>.active>a>[class*=" icon-"],.nav-list>.active>a>[class^="icon-"],.nav-list>.active>a>[class*=" icon-"],.navbar-inverse .nav>.active>a>[class^="icon-"],.navbar-inverse .nav>.active>a>[class*=" icon-"],.dropdown-menu>li>a:hover>[class^="icon-"],.dropdown-menu>li>a:hover>[class*=" icon-"],.dropdown-menu>.active>a>[class^="icon-"],.dropdown-menu>.active>a>[class*=" icon-"],.dropdown-submenu:hover>a>[class^="icon-"],.dropdown-submenu:hover>a>[class*=" icon-"]{background-image:none}[class^="icon-"]:before,[class*=" icon-"]:before{text-decoration:inherit;display:inline-block;speak:none}a [class^="icon-"],a [class*=" icon-"]{display:inline-block}.icon-large:before{vertical-align:-10%;font-size:1.3333333333333333em}.btn [class^="icon-"],.nav [class^="icon-"],.btn [class*=" icon-"],.nav [class*=" icon-"]{display:inline}.btn [class^="icon-"].icon-large,.nav [class^="icon-"].icon-large,.btn [class*=" icon-"].icon-large,.nav [class*=" icon-"].icon-large{line-height:.9em}.btn [class^="icon-"].icon-spin,.nav [class^="icon-"].icon-spin,.btn [class*=" icon-"].icon-spin,.nav [class*=" icon-"].icon-spin{display:inline-block}.nav-tabs [class^="icon-"],.nav-pills [class^="icon-"],.nav-tabs [class*=" icon-"],.nav-pills [class*=" icon-"],.nav-tabs [class^="icon-"].icon-large,.nav-pills [class^="icon-"].icon-large,.nav-tabs [class*=" icon-"].icon-large,.nav-pills [class*=" icon-"].icon-large{line-height:.9em}li [class^="icon-"],.nav li [class^="icon-"],li [class*=" icon-"],.nav li [class*=" icon-"]{display:inline-block;width:1.25em;text-align:center}li [class^="icon-"].icon-large,.nav li [class^="icon-"].icon-large,li [class*=" icon-"].icon-large,.nav li [class*=" icon-"].icon-large{width:1.5625em}ul.icons{list-style-type:none;text-indent:-0.75em}ul.icons li [class^="icon-"],ul.icons li [class*=" icon-"]{width:.75em}.icon-muted{color:#eee}.icon-border{border:solid 1px #eee;padding:.2em .25em .15em;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px}.icon-2x{font-size:2em}.icon-2x.icon-border{border-width:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px}.icon-3x{font-size:3em}.icon-3x.icon-border{border-width:3px;-webkit-border-radius:5px;-moz-border-radius:5px;border-radius:5px}.icon-4x{font-size:4em}.icon-4x.icon-border{border-width:4px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px}.pull-right{float:right}.pull-left{float:left}[class^="icon-"].pull-left,[class*=" icon-"].pull-left{margin-right:.3em}[class^="icon-"].pull-right,[class*=" icon-"].pull-right{margin-left:.3em}.btn [class^="icon-"].pull-left.icon-2x,.btn [class*=" icon-"].pull-left.icon-2x,.btn [class^="icon-"].pull-right.icon-2x,.btn [class*=" icon-"].pull-right.icon-2x{margin-top:.18em}.btn [class^="icon-"].icon-spin.icon-large,.btn [class*=" icon-"].icon-spin.icon-large{line-height:.8em}.btn.btn-small [class^="icon-"].pull-left.icon-2x,.btn.btn-small [class*=" icon-"].pull-left.icon-2x,.btn.btn-small [class^="icon-"].pull-right.icon-2x,.btn.btn-small [class*=" icon-"].pull-right.icon-2x{margin-top:.25em}.btn.btn-large [class^="icon-"],.btn.btn-large [class*=" icon-"]{margin-top:0}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x,.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-top:.05em}.btn.btn-large [class^="icon-"].pull-left.icon-2x,.btn.btn-large [class*=" icon-"].pull-left.icon-2x{margin-right:.2em}.btn.btn-large [class^="icon-"].pull-right.icon-2x,.btn.btn-large [class*=" icon-"].pull-right.icon-2x{margin-left:.2em}.icon-spin{display:inline-block;-moz-animation:spin 2s infinite linear;-o-animation:spin 2s infinite linear;-webkit-animation:spin 2s infinite linear;animation:spin 2s infinite linear}@-moz-keyframes spin{0%{-moz-transform:rotate(0deg)}100%{-moz-transform:rotate(359deg)}}@-webkit-keyframes spin{0%{-webkit-transform:rotate(0deg)}100%{-webkit-transform:rotate(359deg)}}@-o-keyframes spin{0%{-o-transform:rotate(0deg)}100%{-o-transform:rotate(359deg)}}@-ms-keyframes spin{0%{-ms-transform:rotate(0deg)}100%{-ms-transform:rotate(359deg)}}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(359deg)}}@-moz-document url-prefix(){.icon-spin{height:.9em}.btn .icon-spin{height:auto}.icon-spin.icon-large{height:1.25em}.btn .icon-spin.icon-large{height:.75em}}.icon-glass:before{content:"\f000"}.icon-music:before{content:"\f001"}.icon-search:before{content:"\f002"}.icon-envelope:before{content:"\f003"}.icon-heart:before{content:"\f004"}.icon-star:before{content:"\f005"}.icon-star-empty:before{content:"\f006"}.icon-user:before{content:"\f007"}.icon-film:before{content:"\f008"}.icon-th-large:before{content:"\f009"}.icon-th:before{content:"\f00a"}.icon-th-list:before{content:"\f00b"}.icon-ok:before{content:"\f00c"}.icon-remove:before{content:"\f00d"}.icon-zoom-in:before{content:"\f00e"}.icon-zoom-out:before{content:"\f010"}.icon-off:before{content:"\f011"}.icon-signal:before{content:"\f012"}.icon-cog:before{content:"\f013"}.icon-trash:before{content:"\f014"}.icon-home:before{content:"\f015"}.icon-file:before{content:"\f016"}.icon-time:before{content:"\f017"}.icon-road:before{content:"\f018"}.icon-download-alt:before{content:"\f019"}.icon-download:before{content:"\f01a"}.icon-upload:before{content:"\f01b"}.icon-inbox:before{content:"\f01c"}.icon-play-circle:before{content:"\f01d"}.icon-repeat:before{content:"\f01e"}.icon-refresh:before{content:"\f021"}.icon-list-alt:before{content:"\f022"}.icon-lock:before{content:"\f023"}.icon-flag:before{content:"\f024"}.icon-headphones:before{content:"\f025"}.icon-volume-off:before{content:"\f026"}.icon-volume-down:before{content:"\f027"}.icon-volume-up:before{content:"\f028"}.icon-qrcode:before{content:"\f029"}.icon-barcode:before{content:"\f02a"}.icon-tag:before{content:"\f02b"}.icon-tags:before{content:"\f02c"}.icon-book:before{content:"\f02d"}.icon-bookmark:before{content:"\f02e"}.icon-print:before{content:"\f02f"}.icon-camera:before{content:"\f030"}.icon-font:before{content:"\f031"}.icon-bold:before{content:"\f032"}.icon-italic:before{content:"\f033"}.icon-text-height:before{content:"\f034"}.icon-text-width:before{content:"\f035"}.icon-align-left:before{content:"\f036"}.icon-align-center:before{content:"\f037"}.icon-align-right:before{content:"\f038"}.icon-align-justify:before{content:"\f039"}.icon-list:before{content:"\f03a"}.icon-indent-left:before{content:"\f03b"}.icon-indent-right:before{content:"\f03c"}.icon-facetime-video:before{content:"\f03d"}.icon-picture:before{content:"\f03e"}.icon-pencil:before{content:"\f040"}.icon-map-marker:before{content:"\f041"}.icon-adjust:before{content:"\f042"}.icon-tint:before{content:"\f043"}.icon-edit:before{content:"\f044"}.icon-share:before{content:"\f045"}.icon-check:before{content:"\f046"}.icon-move:before{content:"\f047"}.icon-step-backward:before{content:"\f048"}.icon-fast-backward:before{content:"\f049"}.icon-backward:before{content:"\f04a"}.icon-play:before{content:"\f04b"}.icon-pause:before{content:"\f04c"}.icon-stop:before{content:"\f04d"}.icon-forward:before{content:"\f04e"}.icon-fast-forward:before{content:"\f050"}.icon-step-forward:before{content:"\f051"}.icon-eject:before{content:"\f052"}.icon-chevron-left:before{content:"\f053"}.icon-chevron-right:before{content:"\f054"}.icon-plus-sign:before{content:"\f055"}.icon-minus-sign:before{content:"\f056"}.icon-remove-sign:before{content:"\f057"}.icon-ok-sign:before{content:"\f058"}.icon-question-sign:before{content:"\f059"}.icon-info-sign:before{content:"\f05a"}.icon-screenshot:before{content:"\f05b"}.icon-remove-circle:before{content:"\f05c"}.icon-ok-circle:before{content:"\f05d"}.icon-ban-circle:before{content:"\f05e"}.icon-arrow-left:before{content:"\f060"}.icon-arrow-right:before{content:"\f061"}.icon-arrow-up:before{content:"\f062"}.icon-arrow-down:before{content:"\f063"}.icon-share-alt:before{content:"\f064"}.icon-resize-full:before{content:"\f065"}.icon-resize-small:before{content:"\f066"}.icon-plus:before{content:"\f067"}.icon-minus:before{content:"\f068"}.icon-asterisk:before{content:"\f069"}.icon-exclamation-sign:before{content:"\f06a"}.icon-gift:before{content:"\f06b"}.icon-leaf:before{content:"\f06c"}.icon-fire:before{content:"\f06d"}.icon-eye-open:before{content:"\f06e"}.icon-eye-close:before{content:"\f070"}.icon-warning-sign:before{content:"\f071"}.icon-plane:before{content:"\f072"}.icon-calendar:before{content:"\f073"}.icon-random:before{content:"\f074"}.icon-comment:before{content:"\f075"}.icon-magnet:before{content:"\f076"}.icon-chevron-up:before{content:"\f077"}.icon-chevron-down:before{content:"\f078"}.icon-retweet:before{content:"\f079"}.icon-shopping-cart:before{content:"\f07a"}.icon-folder-close:before{content:"\f07b"}.icon-folder-open:before{content:"\f07c"}.icon-resize-vertical:before{content:"\f07d"}.icon-resize-horizontal:before{content:"\f07e"}.icon-bar-chart:before{content:"\f080"}.icon-twitter-sign:before{content:"\f081"}.icon-facebook-sign:before{content:"\f082"}.icon-camera-retro:before{content:"\f083"}.icon-key:before{content:"\f084"}.icon-cogs:before{content:"\f085"}.icon-comments:before{content:"\f086"}.icon-thumbs-up:before{content:"\f087"}.icon-thumbs-down:before{content:"\f088"}.icon-star-half:before{content:"\f089"}.icon-heart-empty:before{content:"\f08a"}.icon-signout:before{content:"\f08b"}.icon-linkedin-sign:before{content:"\f08c"}.icon-pushpin:before{content:"\f08d"}.icon-external-link:before{content:"\f08e"}.icon-signin:before{content:"\f090"}.icon-trophy:before{content:"\f091"}.icon-github-sign:before{content:"\f092"}.icon-upload-alt:before{content:"\f093"}.icon-lemon:before{content:"\f094"}.icon-phone:before{content:"\f095"}.icon-check-empty:before{content:"\f096"}.icon-bookmark-empty:before{content:"\f097"}.icon-phone-sign:before{content:"\f098"}.icon-twitter:before{content:"\f099"}.icon-facebook:before{content:"\f09a"}.icon-github:before{content:"\f09b"}.icon-unlock:before{content:"\f09c"}.icon-credit-card:before{content:"\f09d"}.icon-rss:before{content:"\f09e"}.icon-hdd:before{content:"\f0a0"}.icon-bullhorn:before{content:"\f0a1"}.icon-bell:before{content:"\f0a2"}.icon-certificate:before{content:"\f0a3"}.icon-hand-right:before{content:"\f0a4"}.icon-hand-left:before{content:"\f0a5"}.icon-hand-up:before{content:"\f0a6"}.icon-hand-down:before{content:"\f0a7"}.icon-circle-arrow-left:before{content:"\f0a8"}.icon-circle-arrow-right:before{content:"\f0a9"}.icon-circle-arrow-up:before{content:"\f0aa"}.icon-circle-arrow-down:before{content:"\f0ab"}.icon-globe:before{content:"\f0ac"}.icon-wrench:before{content:"\f0ad"}.icon-tasks:before{content:"\f0ae"}.icon-filter:before{content:"\f0b0"}.icon-briefcase:before{content:"\f0b1"}.icon-fullscreen:before{content:"\f0b2"}.icon-group:before{content:"\f0c0"}.icon-link:before{content:"\f0c1"}.icon-cloud:before{content:"\f0c2"}.icon-beaker:before{content:"\f0c3"}.icon-cut:before{content:"\f0c4"}.icon-copy:before{content:"\f0c5"}.icon-paper-clip:before{content:"\f0c6"}.icon-save:before{content:"\f0c7"}.icon-sign-blank:before{content:"\f0c8"}.icon-reorder:before{content:"\f0c9"}.icon-list-ul:before{content:"\f0ca"}.icon-list-ol:before{content:"\f0cb"}.icon-strikethrough:before{content:"\f0cc"}.icon-underline:before{content:"\f0cd"}.icon-table:before{content:"\f0ce"}.icon-magic:before{content:"\f0d0"}.icon-truck:before{content:"\f0d1"}.icon-pinterest:before{content:"\f0d2"}.icon-pinterest-sign:before{content:"\f0d3"}.icon-google-plus-sign:before{content:"\f0d4"}.icon-google-plus:before{content:"\f0d5"}.icon-money:before{content:"\f0d6"}.icon-caret-down:before{content:"\f0d7"}.icon-caret-up:before{content:"\f0d8"}.icon-caret-left:before{content:"\f0d9"}.icon-caret-right:before{content:"\f0da"}.icon-columns:before{content:"\f0db"}.icon-sort:before{content:"\f0dc"}.icon-sort-down:before{content:"\f0dd"}.icon-sort-up:before{content:"\f0de"}.icon-envelope-alt:before{content:"\f0e0"}.icon-linkedin:before{content:"\f0e1"}.icon-undo:before{content:"\f0e2"}.icon-legal:before{content:"\f0e3"}.icon-dashboard:before{content:"\f0e4"}.icon-comment-alt:before{content:"\f0e5"}.icon-comments-alt:before{content:"\f0e6"}.icon-bolt:before{content:"\f0e7"}.icon-sitemap:before{content:"\f0e8"}.icon-umbrella:before{content:"\f0e9"}.icon-paste:before{content:"\f0ea"}.icon-lightbulb:before{content:"\f0eb"}.icon-exchange:before{content:"\f0ec"}.icon-cloud-download:before{content:"\f0ed"}.icon-cloud-upload:before{content:"\f0ee"}.icon-user-md:before{content:"\f0f0"}.icon-stethoscope:before{content:"\f0f1"}.icon-suitcase:before{content:"\f0f2"}.icon-bell-alt:before{content:"\f0f3"}.icon-coffee:before{content:"\f0f4"}.icon-food:before{content:"\f0f5"}.icon-file-alt:before{content:"\f0f6"}.icon-building:before{content:"\f0f7"}.icon-hospital:before{content:"\f0f8"}.icon-ambulance:before{content:"\f0f9"}.icon-medkit:before{content:"\f0fa"}.icon-fighter-jet:before{content:"\f0fb"}.icon-beer:before{content:"\f0fc"}.icon-h-sign:before{content:"\f0fd"}.icon-plus-sign-alt:before{content:"\f0fe"}.icon-double-angle-left:before{content:"\f100"}.icon-double-angle-right:before{content:"\f101"}.icon-double-angle-up:before{content:"\f102"}.icon-double-angle-down:before{content:"\f103"}.icon-angle-left:before{content:"\f104"}.icon-angle-right:before{content:"\f105"}.icon-angle-up:before{content:"\f106"}.icon-angle-down:before{content:"\f107"}.icon-desktop:before{content:"\f108"}.icon-laptop:before{content:"\f109"}.icon-tablet:before{content:"\f10a"}.icon-mobile-phone:before{content:"\f10b"}.icon-circle-blank:before{content:"\f10c"}.icon-quote-left:before{content:"\f10d"}.icon-quote-right:before{content:"\f10e"}.icon-spinner:before{content:"\f110"}.icon-circle:before{content:"\f111"}.icon-reply:before{content:"\f112"}.icon-github-alt:before{content:"\f113"}.icon-folder-close-alt:before{content:"\f114"}.icon-folder-open-alt:before{content:"\f115"} \ No newline at end of file diff --git a/lib/Leaflet.awesome-markers/examples/font/FontAwesome.otf b/lib/Leaflet.awesome-markers/examples/font/FontAwesome.otf new file mode 100755 index 000000000..64049bf2e Binary files /dev/null and b/lib/Leaflet.awesome-markers/examples/font/FontAwesome.otf differ diff --git a/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.eot b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.eot new file mode 100755 index 000000000..7d81019e4 Binary files /dev/null and b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.eot differ diff --git a/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.svg b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.svg new file mode 100755 index 000000000..ba0afe5ef --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.svg @@ -0,0 +1,284 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.ttf b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.ttf new file mode 100755 index 000000000..d46172476 Binary files /dev/null and b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.ttf differ diff --git a/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.woff b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.woff new file mode 100755 index 000000000..3c89ae09b Binary files /dev/null and b/lib/Leaflet.awesome-markers/examples/font/fontawesome-webfont.woff differ diff --git a/lib/Leaflet.awesome-markers/examples/random-markers.html b/lib/Leaflet.awesome-markers/examples/random-markers.html new file mode 100644 index 000000000..11c5c0627 --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/random-markers.html @@ -0,0 +1,50 @@ + + + + Awesome Markers Example: Random Markers + + + + + + + + + + + + + +
+ + + + + + diff --git a/lib/Leaflet.awesome-markers/examples/with-bootstrap.html b/lib/Leaflet.awesome-markers/examples/with-bootstrap.html new file mode 100644 index 000000000..fa6456496 --- /dev/null +++ b/lib/Leaflet.awesome-markers/examples/with-bootstrap.html @@ -0,0 +1,50 @@ + + + + Awesome Markers Example: With Bootstrap + + + + + + + + + + + + + + + +
+ + + + + + + diff --git a/lib/Leaflet.awesome-markers/screenshots/screenshot-matte.png b/lib/Leaflet.awesome-markers/screenshots/screenshot-matte.png new file mode 100644 index 000000000..178a4fb58 Binary files /dev/null and b/lib/Leaflet.awesome-markers/screenshots/screenshot-matte.png differ diff --git a/lib/Leaflet.awesome-markers/screenshots/screenshot-soft.png b/lib/Leaflet.awesome-markers/screenshots/screenshot-soft.png new file mode 100644 index 000000000..60da65e89 Binary files /dev/null and b/lib/Leaflet.awesome-markers/screenshots/screenshot-soft.png differ diff --git a/lib/Leaflet.markercluster/.gitignore b/lib/Leaflet.markercluster/.gitignore new file mode 100644 index 000000000..07b06cbdb --- /dev/null +++ b/lib/Leaflet.markercluster/.gitignore @@ -0,0 +1,7 @@ +# Build Folders (you can keep bin if you'd like, to store dlls and pdbs) +bin +obj + +# mstest test results +TestResults +node_modules diff --git a/lib/Leaflet.markercluster/.travis.yml b/lib/Leaflet.markercluster/.travis.yml new file mode 100644 index 000000000..4cee54024 --- /dev/null +++ b/lib/Leaflet.markercluster/.travis.yml @@ -0,0 +1,3 @@ +language: node_js +node_js: + - 0.10 \ No newline at end of file diff --git a/lib/Leaflet.markercluster/CHANGELOG.md b/lib/Leaflet.markercluster/CHANGELOG.md new file mode 100644 index 000000000..007712fbe --- /dev/null +++ b/lib/Leaflet.markercluster/CHANGELOG.md @@ -0,0 +1,92 @@ +Leaflet.markercluster +===================== + +(all changes without author notice are by [@danzel](https://github.com/danzel)) + +## Master + +##0.4 (2013-12-19) + +### Improvements + + * Fix Quick Zoom in/out causing everything to disappear in Firefox (Reported by [@paulovieira](https://github.com/paulovieira)) [#140](https://github.com/Leaflet/Leaflet.markercluster/issues/140) + * Slow the expand/contract animation down from 200ms to 300ms + +### Bugfixes + + * Fix some cases zoomToShowLayer wouldn't work (Reported by [@absemetov](https://github.com/absemetov)) [#203](https://github.com/Leaflet/Leaflet.markercluster/issues/203) [#228](https://github.com/Leaflet/Leaflet.markercluster/issues/228) [#286](https://github.com/Leaflet/Leaflet.markercluster/issues/286) + +##0.3 (2013-12-18) + +### Improvements + + * Work better with custom projections (by [@andersarstrand](https://github.com/andersarstrand)) [#74](https://github.com/Leaflet/Leaflet.markercluster/issues/74) + * Add custom getBounds that works (Reported by [@2803media](https://github.com/2803media)) + * Allow spacing spiderfied icons further apart (Reported by [@stevevance](https://github.com/stevevance)) [#100](https://github.com/Leaflet/Leaflet.markercluster/issues/100) + * Add custom eachLayer that works (Reported by [@cilogi](https://github.com/cilogi)) [#102](https://github.com/Leaflet/Leaflet.markercluster/issues/102) + * Add an option (removeOutsideVisibleBounds) to prevent removing clusters that are outside of the visible bounds (by [@wildhoney](https://github.com/wildhoney)) [#103](https://github.com/Leaflet/Leaflet.markercluster/issues/103) + * Add getBounds method to cluster (Reported by [@nderambure](https://github.com/nderambure)) [#88](https://github.com/Leaflet/Leaflet.markercluster/issues/88) + * Lots of unit tests + * Support having Circle / CircleMarker as child markers + * Add factory methods (Reported by [@mourner](https://github.com/mourner)) [#21](https://github.com/Leaflet/Leaflet.markercluster/issues/21) + * Add getVisibleParent method to allow getting the visible parent cluster or the marker if it is visible. (By [@littleiffel](https://github.com/littleiffel)) [#102](https://github.com/Leaflet/Leaflet.markercluster/issues/102) + * Allow adding non-clusterable things to a MarkerClusterGroup, we don't cluster them. (Reported by [@benbalter](https://github.com/benbalter)) [#195](https://github.com/Leaflet/Leaflet.markercluster/issues/195) + * removeLayer supports taking a FeatureGroup (Reported by [@pabloalcaraz](https://github.com/pabloalcaraz)) [#236](https://github.com/Leaflet/Leaflet.markercluster/issues/236) + * DistanceGrid tests, QuickHull tests and improvements (By [@tmcw](https://github.com/tmcw)) [#247](https://github.com/Leaflet/Leaflet.markercluster/issues/247) [#248](https://github.com/Leaflet/Leaflet.markercluster/issues/248) [#249](https://github.com/Leaflet/Leaflet.markercluster/issues/249) + * Implemented getLayers (Reported by [@metajungle](https://github.com/metajungle)) [#222](https://github.com/Leaflet/Leaflet.markercluster/issues/222) + * zoomToBounds now only zooms in as far as it needs to to get all of the markers on screen if this is less zoom than zooming to the actual bounds would be (Reported by [@adamyonk](https://github.com/adamyonk)) [#185](https://github.com/Leaflet/Leaflet.markercluster/issues/185) + * Keyboard accessibility improvements (By [@Zombienaute](https://github.com/Zombienaute)) [#273](https://github.com/Leaflet/Leaflet.markercluster/issues/273) + * IE Specific css in the default styles is no longer a separate file (By [@frankrowe](https://github.com/frankrowe)) [#280](https://github.com/Leaflet/Leaflet.markercluster/issues/280) + * Improve usability with small maps (Reported by [@JSCSJSCS](https://github.com/JSCSJSCS)) [#144](https://github.com/Leaflet/Leaflet.markercluster/issues/144) + * Implement FeatureGroup.getLayer (Reported by [@newmanw](https://github.com/newmanw)) [#244](https://github.com/Leaflet/Leaflet.markercluster/issues/244) + +### Bugfixes + + * Fix singleMarkerMode when you aren't on the map (by [@duncanparkes](https://github.com/duncanparkes)) [#77](https://github.com/Leaflet/Leaflet.markercluster/issues/77) + * Fix clearLayers when you aren't on the map (by [@duncanparkes](https://github.com/duncanparkes)) [#79](https://github.com/Leaflet/Leaflet.markercluster/issues/79) + * IE10 Bug fix (Reported by [@theLundquist](https://github.com/theLundquist)) [#86](https://github.com/Leaflet/Leaflet.markercluster/issues/86) + * Fixes for hasLayer after removing a layer (Reported by [@cvisto](https://github.com/cvisto)) [#44](https://github.com/Leaflet/Leaflet.markercluster/issues/44) + * Fix clearLayers not unsetting __parent of the markers, preventing them from being re-added. (Reported by [@apuntovanini](https://github.com/apuntovanini)) [#99](https://github.com/Leaflet/Leaflet.markercluster/issues/99) + * Fix map.removeLayer(markerClusterGroup) not working (Reported by [@Driklyn](https://github.com/Driklyn)) [#108](https://github.com/Leaflet/Leaflet.markercluster/issues/108) + * Fix map.addLayers not updating cluster icons (Reported by [@Driklyn](https://github.com/Driklyn)) [#114](https://github.com/Leaflet/Leaflet.markercluster/issues/114) + * Fix spiderfied clusters breaking if a marker is added to them (Reported by [@Driklyn](https://github.com/Driklyn)) [#114](https://github.com/Leaflet/Leaflet.markercluster/issues/114) + * Don't show coverage for spiderfied clusters as it will be wrong. (Reported by [@ajbeaven](https://github.com/ajbeaven)) [#95](https://github.com/Leaflet/Leaflet.markercluster/issues/95) + * Improve zoom in/out immediately making all everything disappear, still issues in Firefox [#140](https://github.com/Leaflet/Leaflet.markercluster/issues/140) + * Fix animation not stopping with only one marker. (Reported by [@Driklyn](https://github.com/Driklyn)) [#146](https://github.com/Leaflet/Leaflet.markercluster/issues/146) + * Various fixes for new leaflet (Reported by [@PeterAronZentai](https://github.com/PeterAronZentai)) [#159](https://github.com/Leaflet/Leaflet.markercluster/issues/159) + * Fix clearLayers when we are spiderfying (Reported by [@skullbooks](https://github.com/skullbooks)) [#162](https://github.com/Leaflet/Leaflet.markercluster/issues/162) + * Fix removing layers in certain situations (Reported by [@bpavot](https://github.com/bpavot)) [#160](https://github.com/Leaflet/Leaflet.markercluster/issues/160) + * Support calling hasLayer with null (by [@l0c0luke](https://github.com/l0c0luke)) [#170](https://github.com/Leaflet/Leaflet.markercluster/issues/170) + * Lots of fixes for removing a MarkerClusterGroup from the map (Reported by [@annetdeboer](https://github.com/annetdeboer)) [#200](https://github.com/Leaflet/Leaflet.markercluster/issues/200) + * Throw error when being added to a map with no maxZoom. + * Fixes for markers not appearing after a big zoom (Reported by [@arnoldbird](https://github.com/annetdeboer)) [#216](https://github.com/Leaflet/Leaflet.markercluster/issues/216) (Reported by [@mathilde-pellerin](https://github.com/mathilde-pellerin)) [#260](https://github.com/Leaflet/Leaflet.markercluster/issues/260) + * Fix coverage polygon not being removed when a MarkerClusterGroup is removed (Reported by [@ZeusTheTrueGod](https://github.com/ZeusTheTrueGod)) [#245](https://github.com/Leaflet/Leaflet.markercluster/issues/245) + * Fix getVisibleParent when no parent is visible (Reported by [@ajbeaven](https://github.com/ajbeaven)) [#265](https://github.com/Leaflet/Leaflet.markercluster/issues/265) + * Fix spiderfied markers not hiding on a big zoom (Reported by [@Vaesive](https://github.com/Vaesive)) [#268](https://github.com/Leaflet/Leaflet.markercluster/issues/268) + * Fix clusters not hiding on a big zoom (Reported by [@versusvoid](https://github.com/versusvoid)) [#281](https://github.com/Leaflet/Leaflet.markercluster/issues/281) + * Don't fire multiple clustermouseover/off events due to child divs in the cluster marker (Reported by [@heidemn](https://github.com/heidemn)) [#252](https://github.com/Leaflet/Leaflet.markercluster/issues/252) + +## 0.2 (2012-10-11) + +### Improvements + + * Add addLayers/removeLayers bulk add and remove functions that perform better than the individual methods + * Allow customising the polygon generated for showing the area a cluster covers (by [@yohanboniface](https://github.com/yohanboniface)) [#68](https://github.com/Leaflet/Leaflet.markercluster/issues/68) + * Add zoomToShowLayer method to zoom down to a marker then call a callback once it is visible + * Add animateAddingMarkers to allow disabling animations caused when adding/removing markers + * Add hasLayer + * Pass the L.MarkerCluster to iconCreateFunction to give more flexibility deciding the icon + * Make addLayers support geojson layers + * Allow disabling clustering at a given zoom level + * Allow styling markers that are added like they were clusters of size 1 + + +### Bugfixes + + * Support when leaflet is configured to use canvas rather than SVG + * Fix some potential crashes in zoom handlers + * Tidy up when we are removed from the map + +## 0.1 (2012-08-16) + +Initial Release! diff --git a/lib/Leaflet.markercluster/Jakefile.js b/lib/Leaflet.markercluster/Jakefile.js new file mode 100644 index 000000000..4af806db4 --- /dev/null +++ b/lib/Leaflet.markercluster/Jakefile.js @@ -0,0 +1,26 @@ +/* +Leaflet.markercluster building, testing and linting scripts. + +To use, install Node, then run the following commands in the project root: + + npm install -g jake + npm install + +To check the code for errors and build Leaflet from source, run "jake". +To run the tests, run "jake test". + +For a custom build, open build/build.html in the browser and follow the instructions. +*/ + +var build = require('./build/build.js'); + +desc('Check Leaflet.markercluster source for errors with JSHint'); +task('lint', build.lint); + +desc('Combine and compress Leaflet.markercluster source files'); +task('build', ['lint'], build.build); + +desc('Run PhantomJS tests'); +task('test', ['lint'], build.test); + +task('default', ['build']); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/MIT-LICENCE.txt b/lib/Leaflet.markercluster/MIT-LICENCE.txt new file mode 100644 index 000000000..19af06829 --- /dev/null +++ b/lib/Leaflet.markercluster/MIT-LICENCE.txt @@ -0,0 +1,20 @@ +Copyright 2012 David Leaver + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/Leaflet.markercluster/README.md b/lib/Leaflet.markercluster/README.md new file mode 100644 index 000000000..8a5fdf106 --- /dev/null +++ b/lib/Leaflet.markercluster/README.md @@ -0,0 +1,150 @@ +Leaflet.markercluster +===================== + +Provides Beautiful Animated Marker Clustering functionality for [Leaflet](http://leafletjs.com), a JS library for interactive maps. + +*Requires Leaflet 0.7.0 or newer.* + +For a Leaflet 0.5 compatible version, [Download b128e950](https://github.com/Leaflet/Leaflet.markercluster/archive/b128e950d8f5d7da5b60bd0aa9a88f6d3dd17c98.zip)
+For a Leaflet 0.4 compatible version, [Download the 0.2 release](https://github.com/Leaflet/Leaflet.markercluster/archive/0.2.zip) + +## Using the plugin + +Install with Bower: `bower install leaflet.markercluster` + +See the included examples for usage. + +The [realworld example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-realworld.388.html) is a good place to start, it uses all of the defaults of the clusterer. +Or check out the [custom example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-custom.html) for how to customise the behaviour and appearance of the clusterer + +### Usage +Create a new MarkerClusterGroup, add your markers to it, then add it to the map + +```javascript +var markers = new L.MarkerClusterGroup(); +markers.addLayer(new L.Marker(getRandomLatLng(map))); +... Add more layers ... +map.addLayer(markers); +``` + +### Defaults +By default the Clusterer enables some nice defaults for you: +* **showCoverageOnHover**: When you mouse over a cluster it shows the bounds of its markers. +* **zoomToBoundsOnClick**: When you click a cluster we zoom to its bounds. +* **spiderfyOnMaxZoom**: When you click a cluster at the bottom zoom level we spiderfy it so you can see all of its markers. (*Note: the spiderfy occurs at the current zoom level if all items within the cluster are physically located at the same latitude and longitude.*) +* **removeOutsideVisibleBounds**: Clusters and markers too far from the viewport are removed from the map for performance. +* **spiderLegPolylineOptions**: Allows you to specify [PolylineOptions](http://leafletjs.com/reference.html#polyline-options) to style spider legs. By default, they are `{ weight: 1.5, color: '#222' }`. + +You can disable any of these as you want in the options when you create the MarkerClusterGroup: +```javascript +var markers = new L.MarkerClusterGroup({ spiderfyOnMaxZoom: false, showCoverageOnHover: false, zoomToBoundsOnClick: false }); +``` + +### Customising the Clustered Markers +As an option to MarkerClusterGroup you can provide your own function for creating the Icon for the clustered markers. +The default implementation changes color at bounds of 10 and 100, but more advanced uses may require customising this. +You do not need to include the .Default css if you go this way. +You are passed a MarkerCluster object, you'll probably want to use getChildCount() or getAllChildMarkers() to work out the icon to show + +```javascript +var markers = new L.MarkerClusterGroup({ + iconCreateFunction: function(cluster) { + return new L.DivIcon({ html: '' + cluster.getChildCount() + '' }); + } +}); +``` +Check out the [custom example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-custom.html) for an example of this. + +### All Options +Enabled by default (boolean options): +* **showCoverageOnHover**: When you mouse over a cluster it shows the bounds of its markers. +* **zoomToBoundsOnClick**: When you click a cluster we zoom to its bounds. +* **spiderfyOnMaxZoom**: When you click a cluster at the bottom zoom level we spiderfy it so you can see all of its markers. (*Note: the spiderfy occurs at the current zoom level if all items within the cluster are physically located at the same latitude and longitude.*) +* **removeOutsideVisibleBounds**: Clusters and markers too far from the viewport are removed from the map for performance. + +Other options +* **animateAddingMarkers**: If set to true then adding individual markers to the MarkerClusterGroup after it has been added to the map will add the marker and animate it in to the cluster. Defaults to false as this gives better performance when bulk adding markers. addLayers does not support this, only addLayer with individual Markers. +* **disableClusteringAtZoom**: If set, at this zoom level and below markers will not be clustered. This defaults to disabled. [See Example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-realworld-maxzoom.388.html) +* **maxClusterRadius**: The maximum radius that a cluster will cover from the central marker (in pixels). Default 80. Decreasing will make more, smaller clusters. You can also use a function that accepts the current map zoom and returns the maximum cluster radius in pixels. +* **polygonOptions**: Options to pass when creating the L.Polygon(points, options) to show the bounds of a cluster +* **singleMarkerMode**: If set to true, overrides the icon for all added markers to make them appear as a 1 size cluster +* **spiderfyDistanceMultiplier**: Increase from 1 to increase the distance away from the center that spiderfied markers are placed. Use if you are using big marker icons (Default:1) +* **iconCreateFunction**: Function used to create the cluster icon [See default as example](https://github.com/Leaflet/Leaflet.markercluster/blob/15ed12654acdc54a4521789c498e4603fe4bf781/src/MarkerClusterGroup.js#L542). + +## Events +If you register for click, mouseover, etc events are just related to Markers in the cluster. +To receive events for clusters listen to 'cluster' + 'eventIWant', ex: 'clusterclick', 'clustermouseover'. + +Set your callback up as follows to handle both cases: + +```javascript +markers.on('click', function (a) { + console.log('marker ' + a.layer); +}); + +markers.on('clusterclick', function (a) { + console.log('cluster ' + a.layer.getAllChildMarkers().length); +}); +``` + +#### Additional MarkerClusterGroup Events + +- **animationend**: Fires when marker clustering/unclustering animation has completed +- **spiderfied**: Fires when overlapping markers get spiderified + +## Methods + +### Getting the bounds of a cluster +When you receive an event from a cluster you can query it for the bounds. +See [example/marker-clustering-convexhull.html](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-convexhull.html) for a working example. +```javascript +markers.on('clusterclick', function (a) { + map.addLayer(new L.Polygon(a.layer.getConvexHull())); +}); +``` + +### Zooming to the bounds of a cluster +When you receive an event from a cluster you can zoom to its bounds in one easy step. +If all of the markers will appear at a higher zoom level, that zoom level is zoomed to instead. +See [marker-clustering-zoomtobounds.html](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-zoomtobounds.html) for a working example. +```javascript +markers.on('clusterclick', function (a) { + a.layer.zoomToBounds(); +}); +``` + +### Getting the visible parent of a marker +If you have a marker in your MarkerClusterGroup and you want to get the visible parent of it (Either itself or a cluster it is contained in that is currently visible on the map). +This will return null if the marker and its parent clusters are not visible currently (they are not near the visible viewpoint) +``` +var visibleOne = markerClusterGroup.getVisibleParent(myMarker); +console.log(visibleOne.getLatLng()); +``` + +### Adding and removing Markers +addLayer, removeLayer and clearLayers are supported and they should work for most uses. + +### Bulk adding and removing Markers +addLayers and removeLayers are bulk methods for adding and removing markers and should be favoured over the single versions when doing bulk addition/removal of markers. Each takes an array of markers + +If you are removing a lot of markers it will almost definitely be better to call clearLayers then call addLayers to add the markers you don't want to remove back in. See [#59](https://github.com/Leaflet/Leaflet.markercluster/issues/59#issuecomment-9320628) for details. + +### Other Methods +```` +hasLayer(layer): Returns true if the given layer (marker) is in the MarkerClusterGroup +zoomToShowLayer(layer, callback): Zooms to show the given marker (spidifying if required), calls the callback when the marker is visible on the map +addLayers(layerArray): Adds the markers in the given array from the MarkerClusterGroup in an efficent bulk method. +removeLayers(layerArray): Removes the markers in the given array from the MarkerClusterGroup in an efficent bulk method. +```` + +## Handling LOTS of markers +The Clusterer can handle 10000 or even 50000 markers (in chrome). IE9 has some issues with 50000. +[realworld 10000 example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-realworld.10000.html) +[realworld 50000 example](http://leaflet.github.com/Leaflet.markercluster/example/marker-clustering-realworld.50000.html) +Performance optimizations could be done so these are handled more gracefully (Running the initial clustering over multiple JS calls rather than locking the browser for a long time) + +### License + +Leaflet.markercluster is free software, and may be redistributed under the MIT-LICENSE. + +[![Build Status](https://travis-ci.org/Leaflet/Leaflet.markercluster.png?branch=master)](https://travis-ci.org/Leaflet/Leaflet.markercluster) diff --git a/lib/Leaflet.markercluster/bower.json b/lib/Leaflet.markercluster/bower.json new file mode 100644 index 000000000..643d6d0ca --- /dev/null +++ b/lib/Leaflet.markercluster/bower.json @@ -0,0 +1,28 @@ +{ + "name": "leaflet.markercluster", + "version": "0.4.0", + "main": "dist/leaflet.markercluster-src.js", + "homepage": "https://github.com/Leaflet/Leaflet.markercluster", + "authors": [ + "Dave Leaver " + ], + "description": "Marker Clustering plugin for Leaflet.", + "main": [ + "dist/leaflet.markercluster-src.js", + "dist/MarkerCluster.css", + "dist/MarkerCluster.Default.css" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "bower_components", + "example", + "spec", + "test", + "tests" + ], + "dependencies": { + "leaflet": ">= 0.7.0" + } +} \ No newline at end of file diff --git a/lib/Leaflet.markercluster/build/build.js b/lib/Leaflet.markercluster/build/build.js new file mode 100644 index 000000000..5fd41a751 --- /dev/null +++ b/lib/Leaflet.markercluster/build/build.js @@ -0,0 +1,193 @@ +var fs = require('fs'), + jshint = require('jshint'), + UglifyJS = require('uglify-js'), + + deps = require('./deps.js').deps, + hintrc = require('./hintrc.js').config; + +function lintFiles(files) { + + var errorsFound = 0, + i, j, len, len2, src, errors, e; + + for (i = 0, len = files.length; i < len; i++) { + + jshint.JSHINT(fs.readFileSync(files[i], 'utf8'), hintrc, i ? {L: true} : null); + errors = jshint.JSHINT.errors; + + for (j = 0, len2 = errors.length; j < len2; j++) { + e = errors[j]; + console.log(files[i] + '\tline ' + e.line + '\tcol ' + e.character + '\t ' + e.reason); + } + + errorsFound += len2; + } + + return errorsFound; +} + +function getFiles(compsBase32) { + var memo = {}, + comps; + + if (compsBase32) { + comps = parseInt(compsBase32, 32).toString(2).split(''); + console.log('Managing dependencies...'); + } + + function addFiles(srcs) { + for (var j = 0, len = srcs.length; j < len; j++) { + memo[srcs[j]] = true; + } + } + + for (var i in deps) { + if (comps) { + if (parseInt(comps.pop(), 2) === 1) { + console.log('\t* ' + i); + addFiles(deps[i].src); + } else { + console.log('\t ' + i); + } + } else { + addFiles(deps[i].src); + } + } + + var files = []; + + for (var src in memo) { + files.push('src/' + src); + } + + return files; +} + +exports.getFiles = getFiles; + +exports.lint = function () { + + var files = getFiles(); + + console.log('Checking for JS errors...'); + + var errorsFound = lintFiles(files); + + if (errorsFound > 0) { + console.log(errorsFound + ' error(s) found.\n'); + fail(); + } else { + console.log('\tCheck passed'); + } +}; + + +function getSizeDelta(newContent, oldContent) { + if (!oldContent) { + return 'new'; + } + var newLen = newContent.replace(/\r\n?/g, '\n').length, + oldLen = oldContent.replace(/\r\n?/g, '\n').length, + delta = newLen - oldLen; + + return (delta >= 0 ? '+' : '') + delta; +} + +function loadSilently(path) { + try { + return fs.readFileSync(path, 'utf8'); + } catch (e) { + return null; + } +} + +function combineFiles(files) { + var content = ''; + for (var i = 0, len = files.length; i < len; i++) { + content += fs.readFileSync(files[i], 'utf8') + '\n\n'; + } + return content; +} + +exports.build = function (compsBase32, buildName) { + + var files = getFiles(compsBase32); + + console.log('Concatenating ' + files.length + ' files...'); + + var copy = fs.readFileSync('src/copyright.js', 'utf8'), + intro = '(function (window, document, undefined) {', + outro = '}(window, document));', + newSrc = copy + intro + combineFiles(files) + outro, + + pathPart = 'dist/leaflet.markercluster' + (buildName ? '-' + buildName : ''), + srcPath = pathPart + '-src.js', + + oldSrc = loadSilently(srcPath), + srcDelta = getSizeDelta(newSrc, oldSrc); + + console.log('\tUncompressed size: ' + newSrc.length + ' bytes (' + srcDelta + ')'); + + if (newSrc === oldSrc) { + console.log('\tNo changes'); + } else { + fs.writeFileSync(srcPath, newSrc); + console.log('\tSaved to ' + srcPath); + } + + console.log('Compressing...'); + + var path = pathPart + '.js', + oldCompressed = loadSilently(path), + newCompressed = copy + UglifyJS.minify(newSrc, { + warnings: true, + fromString: true + }).code, + delta = getSizeDelta(newCompressed, oldCompressed); + + console.log('\tCompressed size: ' + newCompressed.length + ' bytes (' + delta + ')'); + + if (newCompressed === oldCompressed) { + console.log('\tNo changes'); + } else { + fs.writeFileSync(path, newCompressed); + console.log('\tSaved to ' + path); + } +}; + +exports.test = function() { + var karma = require('karma'), + testConfig = {configFile : __dirname + '/../spec/karma.conf.js'}; + + testConfig.browsers = ['PhantomJS']; + + if (isArgv('--chrome')) { + testConfig.browsers.push('Chrome'); + } + if (isArgv('--safari')) { + testConfig.browsers.push('Safari'); + } + if (isArgv('--ff')) { + testConfig.browsers.push('Firefox'); + } + if (isArgv('--ie')) { + testConfig.browsers.push('IE'); + } + + if (isArgv('--cov')) { + testConfig.preprocessors = { + '../src/**/*.js': 'coverage' + }; + testConfig.coverageReporter = { + type : 'html', + dir : 'coverage/' + }; + testConfig.reporters = ['coverage']; + } + + karma.server.start(testConfig); + + function isArgv(optName) { + return process.argv.indexOf(optName) !== -1; + } +}; diff --git a/lib/Leaflet.markercluster/build/deps.js b/lib/Leaflet.markercluster/build/deps.js new file mode 100644 index 000000000..40b8b203f --- /dev/null +++ b/lib/Leaflet.markercluster/build/deps.js @@ -0,0 +1,26 @@ +var deps = { + + Core: { + src: ['MarkerClusterGroup.js', + 'MarkerCluster.js', + 'MarkerOpacity.js', + 'DistanceGrid.js'], + desc: 'The core of the library.' + }, + + QuickHull: { + src: ['MarkerCluster.QuickHull.js'], + desc: 'ConvexHull generation. Used to show the area outline of the markers within a cluster.', + heading: 'QuickHull' + }, + + Spiderfier: { + src: ['MarkerCluster.Spiderfier.js'], + desc: 'Provides the ability to show all of the child markers of a cluster.', + heading: 'Spiderfier' + } +}; + +if (typeof exports !== 'undefined') { + exports.deps = deps; +} diff --git a/lib/Leaflet.markercluster/build/hintrc.js b/lib/Leaflet.markercluster/build/hintrc.js new file mode 100644 index 000000000..55bfb3695 --- /dev/null +++ b/lib/Leaflet.markercluster/build/hintrc.js @@ -0,0 +1,37 @@ +exports.config = { + + // environment + "browser": true, + "node": true, + "predef": ['L', 'define'], + "strict": false, + + // code style + "bitwise": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "forin": false, + "immed": true, + "latedef": true, + "newcap": true, + "noarg": true, + "noempty": true, + "nonew": true, + "undef": true, + "unused": true, + //"quotmark": "single", + + // whitespace + "indent": 4, + "trailing": true, + "white": true, + "smarttabs": true, + //"maxlen": 120 + + // code simplicity - not enforced but nice to check from time to time + // "maxstatements": 20, + // "maxcomplexity": 5 + // "maxparams": 4, + // "maxdepth": 4 +}; diff --git a/lib/Leaflet.markercluster/dist/MarkerCluster.Default.css b/lib/Leaflet.markercluster/dist/MarkerCluster.Default.css new file mode 100644 index 000000000..bbc8c9fb0 --- /dev/null +++ b/lib/Leaflet.markercluster/dist/MarkerCluster.Default.css @@ -0,0 +1,60 @@ +.marker-cluster-small { + background-color: rgba(181, 226, 140, 0.6); + } +.marker-cluster-small div { + background-color: rgba(110, 204, 57, 0.6); + } + +.marker-cluster-medium { + background-color: rgba(241, 211, 87, 0.6); + } +.marker-cluster-medium div { + background-color: rgba(240, 194, 12, 0.6); + } + +.marker-cluster-large { + background-color: rgba(253, 156, 115, 0.6); + } +.marker-cluster-large div { + background-color: rgba(241, 128, 23, 0.6); + } + + /* IE 6-8 fallback colors */ +.leaflet-oldie .marker-cluster-small { + background-color: rgb(181, 226, 140); + } +.leaflet-oldie .marker-cluster-small div { + background-color: rgb(110, 204, 57); + } + +.leaflet-oldie .marker-cluster-medium { + background-color: rgb(241, 211, 87); + } +.leaflet-oldie .marker-cluster-medium div { + background-color: rgb(240, 194, 12); + } + +.leaflet-oldie .marker-cluster-large { + background-color: rgb(253, 156, 115); + } +.leaflet-oldie .marker-cluster-large div { + background-color: rgb(241, 128, 23); +} + +.marker-cluster { + background-clip: padding-box; + border-radius: 20px; + } +.marker-cluster div { + width: 30px; + height: 30px; + margin-left: 5px; + margin-top: 5px; + + text-align: center; + border-radius: 15px; + font: 12px "Helvetica Neue", Arial, Helvetica, sans-serif; + } +.marker-cluster span { + line-height: 30px; + } \ No newline at end of file diff --git a/lib/Leaflet.markercluster/dist/MarkerCluster.css b/lib/Leaflet.markercluster/dist/MarkerCluster.css new file mode 100644 index 000000000..00b0eddb9 --- /dev/null +++ b/lib/Leaflet.markercluster/dist/MarkerCluster.css @@ -0,0 +1,6 @@ +.leaflet-cluster-anim .leaflet-marker-icon, .leaflet-cluster-anim .leaflet-marker-shadow { + -webkit-transition: -webkit-transform 0.3s ease-out, opacity 0.3s ease-in; + -moz-transition: -moz-transform 0.3s ease-out, opacity 0.3s ease-in; + -o-transition: -o-transform 0.3s ease-out, opacity 0.3s ease-in; + transition: transform 0.3s ease-out, opacity 0.3s ease-in; + } diff --git a/lib/Leaflet.markercluster/dist/leaflet.markercluster-src.js b/lib/Leaflet.markercluster/dist/leaflet.markercluster-src.js new file mode 100644 index 000000000..40433162a --- /dev/null +++ b/lib/Leaflet.markercluster/dist/leaflet.markercluster-src.js @@ -0,0 +1,2163 @@ +/* + Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps. + https://github.com/Leaflet/Leaflet.markercluster + (c) 2012-2013, Dave Leaver, smartrak +*/ +(function (window, document, undefined) {/* + * L.MarkerClusterGroup extends L.FeatureGroup by clustering the markers contained within + */ + +L.MarkerClusterGroup = L.FeatureGroup.extend({ + + options: { + maxClusterRadius: 80, //A cluster will cover at most this many pixels from its center + iconCreateFunction: null, + + spiderfyOnMaxZoom: true, + showCoverageOnHover: true, + zoomToBoundsOnClick: true, + singleMarkerMode: false, + + disableClusteringAtZoom: null, + + // Setting this to false prevents the removal of any clusters outside of the viewpoint, which + // is the default behaviour for performance reasons. + removeOutsideVisibleBounds: true, + + //Whether to animate adding markers after adding the MarkerClusterGroup to the map + // If you are adding individual markers set to true, if adding bulk markers leave false for massive performance gains. + animateAddingMarkers: false, + + //Increase to increase the distance away that spiderfied markers appear from the center + spiderfyDistanceMultiplier: 1, + + // When bulk adding layers, adds markers in chunks. Means addLayers may not add all the layers in the call, others will be loaded during setTimeouts + chunkedLoading: false, + chunkInterval: 200, // process markers for a maximum of ~ n milliseconds (then trigger the chunkProgress callback) + chunkDelay: 50, // at the end of each interval, give n milliseconds back to system/browser + chunkProgress: null, // progress callback: function(processed, total, elapsed) (e.g. for a progress indicator) + + //Options to pass to the L.Polygon constructor + polygonOptions: {} + }, + + initialize: function (options) { + L.Util.setOptions(this, options); + if (!this.options.iconCreateFunction) { + this.options.iconCreateFunction = this._defaultIconCreateFunction; + } + + this._featureGroup = L.featureGroup(); + this._featureGroup.on(L.FeatureGroup.EVENTS, this._propagateEvent, this); + + this._nonPointGroup = L.featureGroup(); + this._nonPointGroup.on(L.FeatureGroup.EVENTS, this._propagateEvent, this); + + this._inZoomAnimation = 0; + this._needsClustering = []; + this._needsRemoving = []; //Markers removed while we aren't on the map need to be kept track of + //The bounds of the currently shown area (from _getExpandedVisibleBounds) Updated on zoom/move + this._currentShownBounds = null; + + this._queue = []; + }, + + addLayer: function (layer) { + + if (layer instanceof L.LayerGroup) { + var array = []; + for (var i in layer._layers) { + array.push(layer._layers[i]); + } + return this.addLayers(array); + } + + //Don't cluster non point data + if (!layer.getLatLng) { + this._nonPointGroup.addLayer(layer); + return this; + } + + if (!this._map) { + this._needsClustering.push(layer); + return this; + } + + if (this.hasLayer(layer)) { + return this; + } + + + //If we have already clustered we'll need to add this one to a cluster + + if (this._unspiderfy) { + this._unspiderfy(); + } + + this._addLayer(layer, this._maxZoom); + + //Work out what is visible + var visibleLayer = layer, + currentZoom = this._map.getZoom(); + if (layer.__parent) { + while (visibleLayer.__parent._zoom >= currentZoom) { + visibleLayer = visibleLayer.__parent; + } + } + + if (this._currentShownBounds.contains(visibleLayer.getLatLng())) { + if (this.options.animateAddingMarkers) { + this._animationAddLayer(layer, visibleLayer); + } else { + this._animationAddLayerNonAnimated(layer, visibleLayer); + } + } + return this; + }, + + removeLayer: function (layer) { + + if (layer instanceof L.LayerGroup) + { + var array = []; + for (var i in layer._layers) { + array.push(layer._layers[i]); + } + return this.removeLayers(array); + } + + //Non point layers + if (!layer.getLatLng) { + this._nonPointGroup.removeLayer(layer); + return this; + } + + if (!this._map) { + if (!this._arraySplice(this._needsClustering, layer) && this.hasLayer(layer)) { + this._needsRemoving.push(layer); + } + return this; + } + + if (!layer.__parent) { + return this; + } + + if (this._unspiderfy) { + this._unspiderfy(); + this._unspiderfyLayer(layer); + } + + //Remove the marker from clusters + this._removeLayer(layer, true); + + if (this._featureGroup.hasLayer(layer)) { + this._featureGroup.removeLayer(layer); + if (layer.setOpacity) { + layer.setOpacity(1); + } + } + + return this; + }, + + //Takes an array of markers and adds them in bulk + addLayers: function (layersArray) { + var fg = this._featureGroup, + npg = this._nonPointGroup, + chunked = this.options.chunkedLoading, + chunkInterval = this.options.chunkInterval, + chunkProgress = this.options.chunkProgress, + newMarkers, i, l, m; + + if (this._map) { + var offset = 0, + started = (new Date()).getTime(); + var process = L.bind(function () { + var start = (new Date()).getTime(); + for (; offset < layersArray.length; offset++) { + if (chunked && offset % 200 === 0) { + // every couple hundred markers, instrument the time elapsed since processing started: + var elapsed = (new Date()).getTime() - start; + if (elapsed > chunkInterval) { + break; // been working too hard, time to take a break :-) + } + } + + m = layersArray[offset]; + + //Not point data, can't be clustered + if (!m.getLatLng) { + npg.addLayer(m); + continue; + } + + if (this.hasLayer(m)) { + continue; + } + + this._addLayer(m, this._maxZoom); + + //If we just made a cluster of size 2 then we need to remove the other marker from the map (if it is) or we never will + if (m.__parent) { + if (m.__parent.getChildCount() === 2) { + var markers = m.__parent.getAllChildMarkers(), + otherMarker = markers[0] === m ? markers[1] : markers[0]; + fg.removeLayer(otherMarker); + } + } + } + + if (chunkProgress) { + // report progress and time elapsed: + chunkProgress(offset, layersArray.length, (new Date()).getTime() - started); + } + + if (offset === layersArray.length) { + //Update the icons of all those visible clusters that were affected + this._featureGroup.eachLayer(function (c) { + if (c instanceof L.MarkerCluster && c._iconNeedsUpdate) { + c._updateIcon(); + } + }); + + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._zoom, this._currentShownBounds); + } else { + setTimeout(process, this.options.chunkDelay); + } + }, this); + + process(); + } else { + newMarkers = []; + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + + //Not point data, can't be clustered + if (!m.getLatLng) { + npg.addLayer(m); + continue; + } + + if (this.hasLayer(m)) { + continue; + } + + newMarkers.push(m); + } + this._needsClustering = this._needsClustering.concat(newMarkers); + } + return this; + }, + + //Takes an array of markers and removes them in bulk + removeLayers: function (layersArray) { + var i, l, m, + fg = this._featureGroup, + npg = this._nonPointGroup; + + if (!this._map) { + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + this._arraySplice(this._needsClustering, m); + npg.removeLayer(m); + } + return this; + } + + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + + if (!m.__parent) { + npg.removeLayer(m); + continue; + } + + this._removeLayer(m, true, true); + + if (fg.hasLayer(m)) { + fg.removeLayer(m); + if (m.setOpacity) { + m.setOpacity(1); + } + } + } + + //Fix up the clusters and markers on the map + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._zoom, this._currentShownBounds); + + fg.eachLayer(function (c) { + if (c instanceof L.MarkerCluster) { + c._updateIcon(); + } + }); + + return this; + }, + + //Removes all layers from the MarkerClusterGroup + clearLayers: function () { + //Need our own special implementation as the LayerGroup one doesn't work for us + + //If we aren't on the map (yet), blow away the markers we know of + if (!this._map) { + this._needsClustering = []; + delete this._gridClusters; + delete this._gridUnclustered; + } + + if (this._noanimationUnspiderfy) { + this._noanimationUnspiderfy(); + } + + //Remove all the visible layers + this._featureGroup.clearLayers(); + this._nonPointGroup.clearLayers(); + + this.eachLayer(function (marker) { + delete marker.__parent; + }); + + if (this._map) { + //Reset _topClusterLevel and the DistanceGrids + this._generateInitialClusters(); + } + + return this; + }, + + //Override FeatureGroup.getBounds as it doesn't work + getBounds: function () { + var bounds = new L.LatLngBounds(); + + if (this._topClusterLevel) { + bounds.extend(this._topClusterLevel._bounds); + } + + for (var i = this._needsClustering.length - 1; i >= 0; i--) { + bounds.extend(this._needsClustering[i].getLatLng()); + } + + bounds.extend(this._nonPointGroup.getBounds()); + + return bounds; + }, + + //Overrides LayerGroup.eachLayer + eachLayer: function (method, context) { + var markers = this._needsClustering.slice(), + i; + + if (this._topClusterLevel) { + this._topClusterLevel.getAllChildMarkers(markers); + } + + for (i = markers.length - 1; i >= 0; i--) { + method.call(context, markers[i]); + } + + this._nonPointGroup.eachLayer(method, context); + }, + + //Overrides LayerGroup.getLayers + getLayers: function () { + var layers = []; + this.eachLayer(function (l) { + layers.push(l); + }); + return layers; + }, + + //Overrides LayerGroup.getLayer, WARNING: Really bad performance + getLayer: function (id) { + var result = null; + + this.eachLayer(function (l) { + if (L.stamp(l) === id) { + result = l; + } + }); + + return result; + }, + + //Returns true if the given layer is in this MarkerClusterGroup + hasLayer: function (layer) { + if (!layer) { + return false; + } + + var i, anArray = this._needsClustering; + + for (i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === layer) { + return true; + } + } + + anArray = this._needsRemoving; + for (i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === layer) { + return false; + } + } + + return !!(layer.__parent && layer.__parent._group === this) || this._nonPointGroup.hasLayer(layer); + }, + + //Zoom down to show the given layer (spiderfying if necessary) then calls the callback + zoomToShowLayer: function (layer, callback) { + + var showMarker = function () { + if ((layer._icon || layer.__parent._icon) && !this._inZoomAnimation) { + this._map.off('moveend', showMarker, this); + this.off('animationend', showMarker, this); + + if (layer._icon) { + callback(); + } else if (layer.__parent._icon) { + var afterSpiderfy = function () { + this.off('spiderfied', afterSpiderfy, this); + callback(); + }; + + this.on('spiderfied', afterSpiderfy, this); + layer.__parent.spiderfy(); + } + } + }; + + if (layer._icon && this._map.getBounds().contains(layer.getLatLng())) { + //Layer is visible ond on screen, immediate return + callback(); + } else if (layer.__parent._zoom < this._map.getZoom()) { + //Layer should be visible at this zoom level. It must not be on screen so just pan over to it + this._map.on('moveend', showMarker, this); + this._map.panTo(layer.getLatLng()); + } else { + var moveStart = function () { + this._map.off('movestart', moveStart, this); + moveStart = null; + }; + + this._map.on('movestart', moveStart, this); + this._map.on('moveend', showMarker, this); + this.on('animationend', showMarker, this); + layer.__parent.zoomToBounds(); + + if (moveStart) { + //Never started moving, must already be there, probably need clustering however + showMarker.call(this); + } + } + }, + + //Overrides FeatureGroup.onAdd + onAdd: function (map) { + this._map = map; + var i, l, layer; + + if (!isFinite(this._map.getMaxZoom())) { + throw "Map has no maxZoom specified"; + } + + this._featureGroup.onAdd(map); + this._nonPointGroup.onAdd(map); + + if (!this._gridClusters) { + this._generateInitialClusters(); + } + + for (i = 0, l = this._needsRemoving.length; i < l; i++) { + layer = this._needsRemoving[i]; + this._removeLayer(layer, true); + } + this._needsRemoving = []; + + //Remember the current zoom level and bounds + this._zoom = this._map.getZoom(); + this._currentShownBounds = this._getExpandedVisibleBounds(); + + this._map.on('zoomend', this._zoomEnd, this); + this._map.on('moveend', this._moveEnd, this); + + if (this._spiderfierOnAdd) { //TODO FIXME: Not sure how to have spiderfier add something on here nicely + this._spiderfierOnAdd(); + } + + this._bindEvents(); + + //Actually add our markers to the map: + l = this._needsClustering; + this._needsClustering = []; + this.addLayers(l); + }, + + //Overrides FeatureGroup.onRemove + onRemove: function (map) { + map.off('zoomend', this._zoomEnd, this); + map.off('moveend', this._moveEnd, this); + + this._unbindEvents(); + + //In case we are in a cluster animation + this._map._mapPane.className = this._map._mapPane.className.replace(' leaflet-cluster-anim', ''); + + if (this._spiderfierOnRemove) { //TODO FIXME: Not sure how to have spiderfier add something on here nicely + this._spiderfierOnRemove(); + } + + + + //Clean up all the layers we added to the map + this._hideCoverage(); + this._featureGroup.onRemove(map); + this._nonPointGroup.onRemove(map); + + this._featureGroup.clearLayers(); + + this._map = null; + }, + + getVisibleParent: function (marker) { + var vMarker = marker; + while (vMarker && !vMarker._icon) { + vMarker = vMarker.__parent; + } + return vMarker || null; + }, + + //Remove the given object from the given array + _arraySplice: function (anArray, obj) { + for (var i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === obj) { + anArray.splice(i, 1); + return true; + } + } + }, + + //Internal function for removing a marker from everything. + //dontUpdateMap: set to true if you will handle updating the map manually (for bulk functions) + _removeLayer: function (marker, removeFromDistanceGrid, dontUpdateMap) { + var gridClusters = this._gridClusters, + gridUnclustered = this._gridUnclustered, + fg = this._featureGroup, + map = this._map; + + //Remove the marker from distance clusters it might be in + if (removeFromDistanceGrid) { + for (var z = this._maxZoom; z >= 0; z--) { + if (!gridUnclustered[z].removeObject(marker, map.project(marker.getLatLng(), z))) { + break; + } + } + } + + //Work our way up the clusters removing them as we go if required + var cluster = marker.__parent, + markers = cluster._markers, + otherMarker; + + //Remove the marker from the immediate parents marker list + this._arraySplice(markers, marker); + + while (cluster) { + cluster._childCount--; + + if (cluster._zoom < 0) { + //Top level, do nothing + break; + } else if (removeFromDistanceGrid && cluster._childCount <= 1) { //Cluster no longer required + //We need to push the other marker up to the parent + otherMarker = cluster._markers[0] === marker ? cluster._markers[1] : cluster._markers[0]; + + //Update distance grid + gridClusters[cluster._zoom].removeObject(cluster, map.project(cluster._cLatLng, cluster._zoom)); + gridUnclustered[cluster._zoom].addObject(otherMarker, map.project(otherMarker.getLatLng(), cluster._zoom)); + + //Move otherMarker up to parent + this._arraySplice(cluster.__parent._childClusters, cluster); + cluster.__parent._markers.push(otherMarker); + otherMarker.__parent = cluster.__parent; + + if (cluster._icon) { + //Cluster is currently on the map, need to put the marker on the map instead + fg.removeLayer(cluster); + if (!dontUpdateMap) { + fg.addLayer(otherMarker); + } + } + } else { + cluster._recalculateBounds(); + if (!dontUpdateMap || !cluster._icon) { + cluster._updateIcon(); + } + } + + cluster = cluster.__parent; + } + + delete marker.__parent; + }, + + _isOrIsParent: function (el, oel) { + while (oel) { + if (el === oel) { + return true; + } + oel = oel.parentNode; + } + return false; + }, + + _propagateEvent: function (e) { + if (e.layer instanceof L.MarkerCluster) { + //Prevent multiple clustermouseover/off events if the icon is made up of stacked divs (Doesn't work in ie <= 8, no relatedTarget) + if (e.originalEvent && this._isOrIsParent(e.layer._icon, e.originalEvent.relatedTarget)) { + return; + } + e.type = 'cluster' + e.type; + } + + this.fire(e.type, e); + }, + + //Default functionality + _defaultIconCreateFunction: function (cluster) { + var childCount = cluster.getChildCount(); + + var c = ' marker-cluster-'; + if (childCount < 10) { + c += 'small'; + } else if (childCount < 100) { + c += 'medium'; + } else { + c += 'large'; + } + + return new L.DivIcon({ html: '
' + childCount + '
', className: 'marker-cluster' + c, iconSize: new L.Point(40, 40) }); + }, + + _bindEvents: function () { + var map = this._map, + spiderfyOnMaxZoom = this.options.spiderfyOnMaxZoom, + showCoverageOnHover = this.options.showCoverageOnHover, + zoomToBoundsOnClick = this.options.zoomToBoundsOnClick; + + //Zoom on cluster click or spiderfy if we are at the lowest level + if (spiderfyOnMaxZoom || zoomToBoundsOnClick) { + this.on('clusterclick', this._zoomOrSpiderfy, this); + } + + //Show convex hull (boundary) polygon on mouse over + if (showCoverageOnHover) { + this.on('clustermouseover', this._showCoverage, this); + this.on('clustermouseout', this._hideCoverage, this); + map.on('zoomend', this._hideCoverage, this); + } + }, + + _zoomOrSpiderfy: function (e) { + var map = this._map; + if (map.getMaxZoom() === map.getZoom()) { + if (this.options.spiderfyOnMaxZoom) { + e.layer.spiderfy(); + } + } else if (this.options.zoomToBoundsOnClick) { + e.layer.zoomToBounds(); + } + + // Focus the map again for keyboard users. + if (e.originalEvent && e.originalEvent.keyCode === 13) { + map._container.focus(); + } + }, + + _showCoverage: function (e) { + var map = this._map; + if (this._inZoomAnimation) { + return; + } + if (this._shownPolygon) { + map.removeLayer(this._shownPolygon); + } + if (e.layer.getChildCount() > 2 && e.layer !== this._spiderfied) { + this._shownPolygon = new L.Polygon(e.layer.getConvexHull(), this.options.polygonOptions); + map.addLayer(this._shownPolygon); + } + }, + + _hideCoverage: function () { + if (this._shownPolygon) { + this._map.removeLayer(this._shownPolygon); + this._shownPolygon = null; + } + }, + + _unbindEvents: function () { + var spiderfyOnMaxZoom = this.options.spiderfyOnMaxZoom, + showCoverageOnHover = this.options.showCoverageOnHover, + zoomToBoundsOnClick = this.options.zoomToBoundsOnClick, + map = this._map; + + if (spiderfyOnMaxZoom || zoomToBoundsOnClick) { + this.off('clusterclick', this._zoomOrSpiderfy, this); + } + if (showCoverageOnHover) { + this.off('clustermouseover', this._showCoverage, this); + this.off('clustermouseout', this._hideCoverage, this); + map.off('zoomend', this._hideCoverage, this); + } + }, + + _zoomEnd: function () { + if (!this._map) { //May have been removed from the map by a zoomEnd handler + return; + } + this._mergeSplitClusters(); + + this._zoom = this._map._zoom; + this._currentShownBounds = this._getExpandedVisibleBounds(); + }, + + _moveEnd: function () { + if (this._inZoomAnimation) { + return; + } + + var newBounds = this._getExpandedVisibleBounds(); + + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, this._zoom, newBounds); + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._map._zoom, newBounds); + + this._currentShownBounds = newBounds; + return; + }, + + _generateInitialClusters: function () { + var maxZoom = this._map.getMaxZoom(), + radius = this.options.maxClusterRadius, + radiusFn = radius; + + //If we just set maxClusterRadius to a single number, we need to create + //a simple function to return that number. Otherwise, we just have to + //use the function we've passed in. + if (typeof radius !== "function") { + radiusFn = function () { return radius; }; + } + + if (this.options.disableClusteringAtZoom) { + maxZoom = this.options.disableClusteringAtZoom - 1; + } + this._maxZoom = maxZoom; + this._gridClusters = {}; + this._gridUnclustered = {}; + + //Set up DistanceGrids for each zoom + for (var zoom = maxZoom; zoom >= 0; zoom--) { + this._gridClusters[zoom] = new L.DistanceGrid(radiusFn(zoom)); + this._gridUnclustered[zoom] = new L.DistanceGrid(radiusFn(zoom)); + } + + this._topClusterLevel = new L.MarkerCluster(this, -1); + }, + + //Zoom: Zoom to start adding at (Pass this._maxZoom to start at the bottom) + _addLayer: function (layer, zoom) { + var gridClusters = this._gridClusters, + gridUnclustered = this._gridUnclustered, + markerPoint, z; + + if (this.options.singleMarkerMode) { + layer.options.icon = this.options.iconCreateFunction({ + getChildCount: function () { + return 1; + }, + getAllChildMarkers: function () { + return [layer]; + } + }); + } + + //Find the lowest zoom level to slot this one in + for (; zoom >= 0; zoom--) { + markerPoint = this._map.project(layer.getLatLng(), zoom); // calculate pixel position + + //Try find a cluster close by + var closest = gridClusters[zoom].getNearObject(markerPoint); + if (closest) { + closest._addChild(layer); + layer.__parent = closest; + return; + } + + //Try find a marker close by to form a new cluster with + closest = gridUnclustered[zoom].getNearObject(markerPoint); + if (closest) { + var parent = closest.__parent; + if (parent) { + this._removeLayer(closest, false); + } + + //Create new cluster with these 2 in it + + var newCluster = new L.MarkerCluster(this, zoom, closest, layer); + gridClusters[zoom].addObject(newCluster, this._map.project(newCluster._cLatLng, zoom)); + closest.__parent = newCluster; + layer.__parent = newCluster; + + //First create any new intermediate parent clusters that don't exist + var lastParent = newCluster; + for (z = zoom - 1; z > parent._zoom; z--) { + lastParent = new L.MarkerCluster(this, z, lastParent); + gridClusters[z].addObject(lastParent, this._map.project(closest.getLatLng(), z)); + } + parent._addChild(lastParent); + + //Remove closest from this zoom level and any above that it is in, replace with newCluster + for (z = zoom; z >= 0; z--) { + if (!gridUnclustered[z].removeObject(closest, this._map.project(closest.getLatLng(), z))) { + break; + } + } + + return; + } + + //Didn't manage to cluster in at this zoom, record us as a marker here and continue upwards + gridUnclustered[zoom].addObject(layer, markerPoint); + } + + //Didn't get in anything, add us to the top + this._topClusterLevel._addChild(layer); + layer.__parent = this._topClusterLevel; + return; + }, + + //Enqueue code to fire after the marker expand/contract has happened + _enqueue: function (fn) { + this._queue.push(fn); + if (!this._queueTimeout) { + this._queueTimeout = setTimeout(L.bind(this._processQueue, this), 300); + } + }, + _processQueue: function () { + for (var i = 0; i < this._queue.length; i++) { + this._queue[i].call(this); + } + this._queue.length = 0; + clearTimeout(this._queueTimeout); + this._queueTimeout = null; + }, + + //Merge and split any existing clusters that are too big or small + _mergeSplitClusters: function () { + + //Incase we are starting to split before the animation finished + this._processQueue(); + + if (this._zoom < this._map._zoom && this._currentShownBounds.intersects(this._getExpandedVisibleBounds())) { //Zoom in, split + this._animationStart(); + //Remove clusters now off screen + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, this._zoom, this._getExpandedVisibleBounds()); + + this._animationZoomIn(this._zoom, this._map._zoom); + + } else if (this._zoom > this._map._zoom) { //Zoom out, merge + this._animationStart(); + + this._animationZoomOut(this._zoom, this._map._zoom); + } else { + this._moveEnd(); + } + }, + + //Gets the maps visible bounds expanded in each direction by the size of the screen (so the user cannot see an area we do not cover in one pan) + _getExpandedVisibleBounds: function () { + if (!this.options.removeOutsideVisibleBounds) { + return this._map.getBounds(); + } + + var map = this._map, + bounds = map.getBounds(), + sw = bounds._southWest, + ne = bounds._northEast, + latDiff = L.Browser.mobile ? 0 : Math.abs(sw.lat - ne.lat), + lngDiff = L.Browser.mobile ? 0 : Math.abs(sw.lng - ne.lng); + + return new L.LatLngBounds( + new L.LatLng(sw.lat - latDiff, sw.lng - lngDiff, true), + new L.LatLng(ne.lat + latDiff, ne.lng + lngDiff, true)); + }, + + //Shared animation code + _animationAddLayerNonAnimated: function (layer, newCluster) { + if (newCluster === layer) { + this._featureGroup.addLayer(layer); + } else if (newCluster._childCount === 2) { + newCluster._addToMap(); + + var markers = newCluster.getAllChildMarkers(); + this._featureGroup.removeLayer(markers[0]); + this._featureGroup.removeLayer(markers[1]); + } else { + newCluster._updateIcon(); + } + } +}); + +L.MarkerClusterGroup.include(!L.DomUtil.TRANSITION ? { + + //Non Animated versions of everything + _animationStart: function () { + //Do nothing... + }, + _animationZoomIn: function (previousZoomLevel, newZoomLevel) { + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel); + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + + //We didn't actually animate, but we use this event to mean "clustering animations have finished" + this.fire('animationend'); + }, + _animationZoomOut: function (previousZoomLevel, newZoomLevel) { + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel); + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + + //We didn't actually animate, but we use this event to mean "clustering animations have finished" + this.fire('animationend'); + }, + _animationAddLayer: function (layer, newCluster) { + this._animationAddLayerNonAnimated(layer, newCluster); + } +} : { + + //Animated versions here + _animationStart: function () { + this._map._mapPane.className += ' leaflet-cluster-anim'; + this._inZoomAnimation++; + }, + _animationEnd: function () { + if (this._map) { + this._map._mapPane.className = this._map._mapPane.className.replace(' leaflet-cluster-anim', ''); + } + this._inZoomAnimation--; + this.fire('animationend'); + }, + _animationZoomIn: function (previousZoomLevel, newZoomLevel) { + var bounds = this._getExpandedVisibleBounds(), + fg = this._featureGroup, + i; + + //Add all children of current clusters to map and remove those clusters from map + this._topClusterLevel._recursively(bounds, previousZoomLevel, 0, function (c) { + var startPos = c._latlng, + markers = c._markers, + m; + + if (!bounds.contains(startPos)) { + startPos = null; + } + + if (c._isSingleParent() && previousZoomLevel + 1 === newZoomLevel) { //Immediately add the new child and remove us + fg.removeLayer(c); + c._recursivelyAddChildrenToMap(null, newZoomLevel, bounds); + } else { + //Fade out old cluster + c.setOpacity(0); + c._recursivelyAddChildrenToMap(startPos, newZoomLevel, bounds); + } + + //Remove all markers that aren't visible any more + //TODO: Do we actually need to do this on the higher levels too? + for (i = markers.length - 1; i >= 0; i--) { + m = markers[i]; + if (!bounds.contains(m._latlng)) { + fg.removeLayer(m); + } + } + + }); + + this._forceLayout(); + + //Update opacities + this._topClusterLevel._recursivelyBecomeVisible(bounds, newZoomLevel); + //TODO Maybe? Update markers in _recursivelyBecomeVisible + fg.eachLayer(function (n) { + if (!(n instanceof L.MarkerCluster) && n._icon) { + n.setOpacity(1); + } + }); + + //update the positions of the just added clusters/markers + this._topClusterLevel._recursively(bounds, previousZoomLevel, newZoomLevel, function (c) { + c._recursivelyRestoreChildPositions(newZoomLevel); + }); + + //Remove the old clusters and close the zoom animation + this._enqueue(function () { + //update the positions of the just added clusters/markers + this._topClusterLevel._recursively(bounds, previousZoomLevel, 0, function (c) { + fg.removeLayer(c); + c.setOpacity(1); + }); + + this._animationEnd(); + }); + }, + + _animationZoomOut: function (previousZoomLevel, newZoomLevel) { + this._animationZoomOutSingle(this._topClusterLevel, previousZoomLevel - 1, newZoomLevel); + + //Need to add markers for those that weren't on the map before but are now + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + //Remove markers that were on the map before but won't be now + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel, this._getExpandedVisibleBounds()); + }, + _animationZoomOutSingle: function (cluster, previousZoomLevel, newZoomLevel) { + var bounds = this._getExpandedVisibleBounds(); + + //Animate all of the markers in the clusters to move to their cluster center point + cluster._recursivelyAnimateChildrenInAndAddSelfToMap(bounds, previousZoomLevel + 1, newZoomLevel); + + var me = this; + + //Update the opacity (If we immediately set it they won't animate) + this._forceLayout(); + cluster._recursivelyBecomeVisible(bounds, newZoomLevel); + + //TODO: Maybe use the transition timing stuff to make this more reliable + //When the animations are done, tidy up + this._enqueue(function () { + + //This cluster stopped being a cluster before the timeout fired + if (cluster._childCount === 1) { + var m = cluster._markers[0]; + //If we were in a cluster animation at the time then the opacity and position of our child could be wrong now, so fix it + m.setLatLng(m.getLatLng()); + if (m.setOpacity) { + m.setOpacity(1); + } + } else { + cluster._recursively(bounds, newZoomLevel, 0, function (c) { + c._recursivelyRemoveChildrenFromMap(bounds, previousZoomLevel + 1); + }); + } + me._animationEnd(); + }); + }, + _animationAddLayer: function (layer, newCluster) { + var me = this, + fg = this._featureGroup; + + fg.addLayer(layer); + if (newCluster !== layer) { + if (newCluster._childCount > 2) { //Was already a cluster + + newCluster._updateIcon(); + this._forceLayout(); + this._animationStart(); + + layer._setPos(this._map.latLngToLayerPoint(newCluster.getLatLng())); + layer.setOpacity(0); + + this._enqueue(function () { + fg.removeLayer(layer); + layer.setOpacity(1); + + me._animationEnd(); + }); + + } else { //Just became a cluster + this._forceLayout(); + + me._animationStart(); + me._animationZoomOutSingle(newCluster, this._map.getMaxZoom(), this._map.getZoom()); + } + } + }, + + //Force a browser layout of stuff in the map + // Should apply the current opacity and location to all elements so we can update them again for an animation + _forceLayout: function () { + //In my testing this works, infact offsetWidth of any element seems to work. + //Could loop all this._layers and do this for each _icon if it stops working + + L.Util.falseFn(document.body.offsetWidth); + } +}); + +L.markerClusterGroup = function (options) { + return new L.MarkerClusterGroup(options); +}; + + +L.MarkerCluster = L.Marker.extend({ + initialize: function (group, zoom, a, b) { + + L.Marker.prototype.initialize.call(this, a ? (a._cLatLng || a.getLatLng()) : new L.LatLng(0, 0), { icon: this }); + + + this._group = group; + this._zoom = zoom; + + this._markers = []; + this._childClusters = []; + this._childCount = 0; + this._iconNeedsUpdate = true; + + this._bounds = new L.LatLngBounds(); + + if (a) { + this._addChild(a); + } + if (b) { + this._addChild(b); + } + }, + + //Recursively retrieve all child markers of this cluster + getAllChildMarkers: function (storageArray) { + storageArray = storageArray || []; + + for (var i = this._childClusters.length - 1; i >= 0; i--) { + this._childClusters[i].getAllChildMarkers(storageArray); + } + + for (var j = this._markers.length - 1; j >= 0; j--) { + storageArray.push(this._markers[j]); + } + + return storageArray; + }, + + //Returns the count of how many child markers we have + getChildCount: function () { + return this._childCount; + }, + + //Zoom to the minimum of showing all of the child markers, or the extents of this cluster + zoomToBounds: function () { + var childClusters = this._childClusters.slice(), + map = this._group._map, + boundsZoom = map.getBoundsZoom(this._bounds), + zoom = this._zoom + 1, + mapZoom = map.getZoom(), + i; + + //calculate how far we need to zoom down to see all of the markers + while (childClusters.length > 0 && boundsZoom > zoom) { + zoom++; + var newClusters = []; + for (i = 0; i < childClusters.length; i++) { + newClusters = newClusters.concat(childClusters[i]._childClusters); + } + childClusters = newClusters; + } + + if (boundsZoom > zoom) { + this._group._map.setView(this._latlng, zoom); + } else if (boundsZoom <= mapZoom) { //If fitBounds wouldn't zoom us down, zoom us down instead + this._group._map.setView(this._latlng, mapZoom + 1); + } else { + this._group._map.fitBounds(this._bounds); + } + }, + + getBounds: function () { + var bounds = new L.LatLngBounds(); + bounds.extend(this._bounds); + return bounds; + }, + + _updateIcon: function () { + this._iconNeedsUpdate = true; + if (this._icon) { + this.setIcon(this); + } + }, + + //Cludge for Icon, we pretend to be an icon for performance + createIcon: function () { + if (this._iconNeedsUpdate) { + this._iconObj = this._group.options.iconCreateFunction(this); + this._iconNeedsUpdate = false; + } + return this._iconObj.createIcon(); + }, + createShadow: function () { + return this._iconObj.createShadow(); + }, + + + _addChild: function (new1, isNotificationFromChild) { + + this._iconNeedsUpdate = true; + this._expandBounds(new1); + + if (new1 instanceof L.MarkerCluster) { + if (!isNotificationFromChild) { + this._childClusters.push(new1); + new1.__parent = this; + } + this._childCount += new1._childCount; + } else { + if (!isNotificationFromChild) { + this._markers.push(new1); + } + this._childCount++; + } + + if (this.__parent) { + this.__parent._addChild(new1, true); + } + }, + + //Expand our bounds and tell our parent to + _expandBounds: function (marker) { + var addedCount, + addedLatLng = marker._wLatLng || marker._latlng; + + if (marker instanceof L.MarkerCluster) { + this._bounds.extend(marker._bounds); + addedCount = marker._childCount; + } else { + this._bounds.extend(addedLatLng); + addedCount = 1; + } + + if (!this._cLatLng) { + // when clustering, take position of the first point as the cluster center + this._cLatLng = marker._cLatLng || addedLatLng; + } + + // when showing clusters, take weighted average of all points as cluster center + var totalCount = this._childCount + addedCount; + + //Calculate weighted latlng for display + if (!this._wLatLng) { + this._latlng = this._wLatLng = new L.LatLng(addedLatLng.lat, addedLatLng.lng); + } else { + this._wLatLng.lat = (addedLatLng.lat * addedCount + this._wLatLng.lat * this._childCount) / totalCount; + this._wLatLng.lng = (addedLatLng.lng * addedCount + this._wLatLng.lng * this._childCount) / totalCount; + } + }, + + //Set our markers position as given and add it to the map + _addToMap: function (startPos) { + if (startPos) { + this._backupLatlng = this._latlng; + this.setLatLng(startPos); + } + this._group._featureGroup.addLayer(this); + }, + + _recursivelyAnimateChildrenIn: function (bounds, center, maxZoom) { + this._recursively(bounds, 0, maxZoom - 1, + function (c) { + var markers = c._markers, + i, m; + for (i = markers.length - 1; i >= 0; i--) { + m = markers[i]; + + //Only do it if the icon is still on the map + if (m._icon) { + m._setPos(center); + m.setOpacity(0); + } + } + }, + function (c) { + var childClusters = c._childClusters, + j, cm; + for (j = childClusters.length - 1; j >= 0; j--) { + cm = childClusters[j]; + if (cm._icon) { + cm._setPos(center); + cm.setOpacity(0); + } + } + } + ); + }, + + _recursivelyAnimateChildrenInAndAddSelfToMap: function (bounds, previousZoomLevel, newZoomLevel) { + this._recursively(bounds, newZoomLevel, 0, + function (c) { + c._recursivelyAnimateChildrenIn(bounds, c._group._map.latLngToLayerPoint(c.getLatLng()).round(), previousZoomLevel); + + //TODO: depthToAnimateIn affects _isSingleParent, if there is a multizoom we may/may not be. + //As a hack we only do a animation free zoom on a single level zoom, if someone does multiple levels then we always animate + if (c._isSingleParent() && previousZoomLevel - 1 === newZoomLevel) { + c.setOpacity(1); + c._recursivelyRemoveChildrenFromMap(bounds, previousZoomLevel); //Immediately remove our children as we are replacing them. TODO previousBounds not bounds + } else { + c.setOpacity(0); + } + + c._addToMap(); + } + ); + }, + + _recursivelyBecomeVisible: function (bounds, zoomLevel) { + this._recursively(bounds, 0, zoomLevel, null, function (c) { + c.setOpacity(1); + }); + }, + + _recursivelyAddChildrenToMap: function (startPos, zoomLevel, bounds) { + this._recursively(bounds, -1, zoomLevel, + function (c) { + if (zoomLevel === c._zoom) { + return; + } + + //Add our child markers at startPos (so they can be animated out) + for (var i = c._markers.length - 1; i >= 0; i--) { + var nm = c._markers[i]; + + if (!bounds.contains(nm._latlng)) { + continue; + } + + if (startPos) { + nm._backupLatlng = nm.getLatLng(); + + nm.setLatLng(startPos); + if (nm.setOpacity) { + nm.setOpacity(0); + } + } + + c._group._featureGroup.addLayer(nm); + } + }, + function (c) { + c._addToMap(startPos); + } + ); + }, + + _recursivelyRestoreChildPositions: function (zoomLevel) { + //Fix positions of child markers + for (var i = this._markers.length - 1; i >= 0; i--) { + var nm = this._markers[i]; + if (nm._backupLatlng) { + nm.setLatLng(nm._backupLatlng); + delete nm._backupLatlng; + } + } + + if (zoomLevel - 1 === this._zoom) { + //Reposition child clusters + for (var j = this._childClusters.length - 1; j >= 0; j--) { + this._childClusters[j]._restorePosition(); + } + } else { + for (var k = this._childClusters.length - 1; k >= 0; k--) { + this._childClusters[k]._recursivelyRestoreChildPositions(zoomLevel); + } + } + }, + + _restorePosition: function () { + if (this._backupLatlng) { + this.setLatLng(this._backupLatlng); + delete this._backupLatlng; + } + }, + + //exceptBounds: If set, don't remove any markers/clusters in it + _recursivelyRemoveChildrenFromMap: function (previousBounds, zoomLevel, exceptBounds) { + var m, i; + this._recursively(previousBounds, -1, zoomLevel - 1, + function (c) { + //Remove markers at every level + for (i = c._markers.length - 1; i >= 0; i--) { + m = c._markers[i]; + if (!exceptBounds || !exceptBounds.contains(m._latlng)) { + c._group._featureGroup.removeLayer(m); + if (m.setOpacity) { + m.setOpacity(1); + } + } + } + }, + function (c) { + //Remove child clusters at just the bottom level + for (i = c._childClusters.length - 1; i >= 0; i--) { + m = c._childClusters[i]; + if (!exceptBounds || !exceptBounds.contains(m._latlng)) { + c._group._featureGroup.removeLayer(m); + if (m.setOpacity) { + m.setOpacity(1); + } + } + } + } + ); + }, + + //Run the given functions recursively to this and child clusters + // boundsToApplyTo: a L.LatLngBounds representing the bounds of what clusters to recurse in to + // zoomLevelToStart: zoom level to start running functions (inclusive) + // zoomLevelToStop: zoom level to stop running functions (inclusive) + // runAtEveryLevel: function that takes an L.MarkerCluster as an argument that should be applied on every level + // runAtBottomLevel: function that takes an L.MarkerCluster as an argument that should be applied at only the bottom level + _recursively: function (boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel) { + var childClusters = this._childClusters, + zoom = this._zoom, + i, c; + + if (zoomLevelToStart > zoom) { //Still going down to required depth, just recurse to child clusters + for (i = childClusters.length - 1; i >= 0; i--) { + c = childClusters[i]; + if (boundsToApplyTo.intersects(c._bounds)) { + c._recursively(boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel); + } + } + } else { //In required depth + + if (runAtEveryLevel) { + runAtEveryLevel(this); + } + if (runAtBottomLevel && this._zoom === zoomLevelToStop) { + runAtBottomLevel(this); + } + + //TODO: This loop is almost the same as above + if (zoomLevelToStop > zoom) { + for (i = childClusters.length - 1; i >= 0; i--) { + c = childClusters[i]; + if (boundsToApplyTo.intersects(c._bounds)) { + c._recursively(boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel); + } + } + } + } + }, + + _recalculateBounds: function () { + var markers = this._markers, + childClusters = this._childClusters, + i; + + this._bounds = new L.LatLngBounds(); + delete this._wLatLng; + + for (i = markers.length - 1; i >= 0; i--) { + this._expandBounds(markers[i]); + } + for (i = childClusters.length - 1; i >= 0; i--) { + this._expandBounds(childClusters[i]); + } + }, + + + //Returns true if we are the parent of only one cluster and that cluster is the same as us + _isSingleParent: function () { + //Don't need to check this._markers as the rest won't work if there are any + return this._childClusters.length > 0 && this._childClusters[0]._childCount === this._childCount; + } +}); + + + +L.DistanceGrid = function (cellSize) { + this._cellSize = cellSize; + this._sqCellSize = cellSize * cellSize; + this._grid = {}; + this._objectPoint = { }; +}; + +L.DistanceGrid.prototype = { + + addObject: function (obj, point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + grid = this._grid, + row = grid[y] = grid[y] || {}, + cell = row[x] = row[x] || [], + stamp = L.Util.stamp(obj); + + this._objectPoint[stamp] = point; + + cell.push(obj); + }, + + updateObject: function (obj, point) { + this.removeObject(obj); + this.addObject(obj, point); + }, + + //Returns true if the object was found + removeObject: function (obj, point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + grid = this._grid, + row = grid[y] = grid[y] || {}, + cell = row[x] = row[x] || [], + i, len; + + delete this._objectPoint[L.Util.stamp(obj)]; + + for (i = 0, len = cell.length; i < len; i++) { + if (cell[i] === obj) { + + cell.splice(i, 1); + + if (len === 1) { + delete row[x]; + } + + return true; + } + } + + }, + + eachObject: function (fn, context) { + var i, j, k, len, row, cell, removed, + grid = this._grid; + + for (i in grid) { + row = grid[i]; + + for (j in row) { + cell = row[j]; + + for (k = 0, len = cell.length; k < len; k++) { + removed = fn.call(context, cell[k]); + if (removed) { + k--; + len--; + } + } + } + } + }, + + getNearObject: function (point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + i, j, k, row, cell, len, obj, dist, + objectPoint = this._objectPoint, + closestDistSq = this._sqCellSize, + closest = null; + + for (i = y - 1; i <= y + 1; i++) { + row = this._grid[i]; + if (row) { + + for (j = x - 1; j <= x + 1; j++) { + cell = row[j]; + if (cell) { + + for (k = 0, len = cell.length; k < len; k++) { + obj = cell[k]; + dist = this._sqDist(objectPoint[L.Util.stamp(obj)], point); + if (dist < closestDistSq) { + closestDistSq = dist; + closest = obj; + } + } + } + } + } + } + return closest; + }, + + _getCoord: function (x) { + return Math.floor(x / this._cellSize); + }, + + _sqDist: function (p, p2) { + var dx = p2.x - p.x, + dy = p2.y - p.y; + return dx * dx + dy * dy; + } +}; + + +/* Copyright (c) 2012 the authors listed at the following URL, and/or +the authors of referenced articles or incorporated external code: +http://en.literateprograms.org/Quickhull_(Javascript)?action=history&offset=20120410175256 + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Retrieved from: http://en.literateprograms.org/Quickhull_(Javascript)?oldid=18434 +*/ + +(function () { + L.QuickHull = { + + /* + * @param {Object} cpt a point to be measured from the baseline + * @param {Array} bl the baseline, as represented by a two-element + * array of latlng objects. + * @returns {Number} an approximate distance measure + */ + getDistant: function (cpt, bl) { + var vY = bl[1].lat - bl[0].lat, + vX = bl[0].lng - bl[1].lng; + return (vX * (cpt.lat - bl[0].lat) + vY * (cpt.lng - bl[0].lng)); + }, + + /* + * @param {Array} baseLine a two-element array of latlng objects + * representing the baseline to project from + * @param {Array} latLngs an array of latlng objects + * @returns {Object} the maximum point and all new points to stay + * in consideration for the hull. + */ + findMostDistantPointFromBaseLine: function (baseLine, latLngs) { + var maxD = 0, + maxPt = null, + newPoints = [], + i, pt, d; + + for (i = latLngs.length - 1; i >= 0; i--) { + pt = latLngs[i]; + d = this.getDistant(pt, baseLine); + + if (d > 0) { + newPoints.push(pt); + } else { + continue; + } + + if (d > maxD) { + maxD = d; + maxPt = pt; + } + } + + return { maxPoint: maxPt, newPoints: newPoints }; + }, + + + /* + * Given a baseline, compute the convex hull of latLngs as an array + * of latLngs. + * + * @param {Array} latLngs + * @returns {Array} + */ + buildConvexHull: function (baseLine, latLngs) { + var convexHullBaseLines = [], + t = this.findMostDistantPointFromBaseLine(baseLine, latLngs); + + if (t.maxPoint) { // if there is still a point "outside" the base line + convexHullBaseLines = + convexHullBaseLines.concat( + this.buildConvexHull([baseLine[0], t.maxPoint], t.newPoints) + ); + convexHullBaseLines = + convexHullBaseLines.concat( + this.buildConvexHull([t.maxPoint, baseLine[1]], t.newPoints) + ); + return convexHullBaseLines; + } else { // if there is no more point "outside" the base line, the current base line is part of the convex hull + return [baseLine[0]]; + } + }, + + /* + * Given an array of latlngs, compute a convex hull as an array + * of latlngs + * + * @param {Array} latLngs + * @returns {Array} + */ + getConvexHull: function (latLngs) { + // find first baseline + var maxLat = false, minLat = false, + maxPt = null, minPt = null, + i; + + for (i = latLngs.length - 1; i >= 0; i--) { + var pt = latLngs[i]; + if (maxLat === false || pt.lat > maxLat) { + maxPt = pt; + maxLat = pt.lat; + } + if (minLat === false || pt.lat < minLat) { + minPt = pt; + minLat = pt.lat; + } + } + var ch = [].concat(this.buildConvexHull([minPt, maxPt], latLngs), + this.buildConvexHull([maxPt, minPt], latLngs)); + return ch; + } + }; +}()); + +L.MarkerCluster.include({ + getConvexHull: function () { + var childMarkers = this.getAllChildMarkers(), + points = [], + p, i; + + for (i = childMarkers.length - 1; i >= 0; i--) { + p = childMarkers[i].getLatLng(); + points.push(p); + } + + return L.QuickHull.getConvexHull(points); + } +}); + + +//This code is 100% based on https://github.com/jawj/OverlappingMarkerSpiderfier-Leaflet +//Huge thanks to jawj for implementing it first to make my job easy :-) + +L.MarkerCluster.include({ + + _2PI: Math.PI * 2, + _circleFootSeparation: 25, //related to circumference of circle + _circleStartAngle: Math.PI / 6, + + _spiralFootSeparation: 28, //related to size of spiral (experiment!) + _spiralLengthStart: 11, + _spiralLengthFactor: 5, + + _circleSpiralSwitchover: 9, //show spiral instead of circle from this marker count upwards. + // 0 -> always spiral; Infinity -> always circle + + spiderfy: function () { + if (this._group._spiderfied === this || this._group._inZoomAnimation) { + return; + } + + var childMarkers = this.getAllChildMarkers(), + group = this._group, + map = group._map, + center = map.latLngToLayerPoint(this._latlng), + positions; + + this._group._unspiderfy(); + this._group._spiderfied = this; + + //TODO Maybe: childMarkers order by distance to center + + if (childMarkers.length >= this._circleSpiralSwitchover) { + positions = this._generatePointsSpiral(childMarkers.length, center); + } else { + center.y += 10; //Otherwise circles look wrong + positions = this._generatePointsCircle(childMarkers.length, center); + } + + this._animationSpiderfy(childMarkers, positions); + }, + + unspiderfy: function (zoomDetails) { + /// Argument from zoomanim if being called in a zoom animation or null otherwise + if (this._group._inZoomAnimation) { + return; + } + this._animationUnspiderfy(zoomDetails); + + this._group._spiderfied = null; + }, + + _generatePointsCircle: function (count, centerPt) { + var circumference = this._group.options.spiderfyDistanceMultiplier * this._circleFootSeparation * (2 + count), + legLength = circumference / this._2PI, //radius from circumference + angleStep = this._2PI / count, + res = [], + i, angle; + + res.length = count; + + for (i = count - 1; i >= 0; i--) { + angle = this._circleStartAngle + i * angleStep; + res[i] = new L.Point(centerPt.x + legLength * Math.cos(angle), centerPt.y + legLength * Math.sin(angle))._round(); + } + + return res; + }, + + _generatePointsSpiral: function (count, centerPt) { + var legLength = this._group.options.spiderfyDistanceMultiplier * this._spiralLengthStart, + separation = this._group.options.spiderfyDistanceMultiplier * this._spiralFootSeparation, + lengthFactor = this._group.options.spiderfyDistanceMultiplier * this._spiralLengthFactor, + angle = 0, + res = [], + i; + + res.length = count; + + for (i = count - 1; i >= 0; i--) { + angle += separation / legLength + i * 0.0005; + res[i] = new L.Point(centerPt.x + legLength * Math.cos(angle), centerPt.y + legLength * Math.sin(angle))._round(); + legLength += this._2PI * lengthFactor / angle; + } + return res; + }, + + _noanimationUnspiderfy: function () { + var group = this._group, + map = group._map, + fg = group._featureGroup, + childMarkers = this.getAllChildMarkers(), + m, i; + + this.setOpacity(1); + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + fg.removeLayer(m); + + if (m._preSpiderfyLatlng) { + m.setLatLng(m._preSpiderfyLatlng); + delete m._preSpiderfyLatlng; + } + if (m.setZIndexOffset) { + m.setZIndexOffset(0); + } + + if (m._spiderLeg) { + map.removeLayer(m._spiderLeg); + delete m._spiderLeg; + } + } + + group._spiderfied = null; + } +}); + +L.MarkerCluster.include(!L.DomUtil.TRANSITION ? { + //Non Animated versions of everything + _animationSpiderfy: function (childMarkers, positions) { + var group = this._group, + map = group._map, + fg = group._featureGroup, + i, m, leg, newPos; + + for (i = childMarkers.length - 1; i >= 0; i--) { + newPos = map.layerPointToLatLng(positions[i]); + m = childMarkers[i]; + + m._preSpiderfyLatlng = m._latlng; + m.setLatLng(newPos); + if (m.setZIndexOffset) { + m.setZIndexOffset(1000000); //Make these appear on top of EVERYTHING + } + + fg.addLayer(m); + + + leg = new L.Polyline([this._latlng, newPos], { weight: 1.5, color: '#222' }); + map.addLayer(leg); + m._spiderLeg = leg; + } + this.setOpacity(0.3); + group.fire('spiderfied'); + }, + + _animationUnspiderfy: function () { + this._noanimationUnspiderfy(); + } +} : { + //Animated versions here + SVG_ANIMATION: (function () { + return document.createElementNS('http://www.w3.org/2000/svg', 'animate').toString().indexOf('SVGAnimate') > -1; + }()), + + _animationSpiderfy: function (childMarkers, positions) { + var me = this, + group = this._group, + map = group._map, + fg = group._featureGroup, + thisLayerPos = map.latLngToLayerPoint(this._latlng), + i, m, leg, newPos; + + //Add markers to map hidden at our center point + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + //If it is a marker, add it now and we'll animate it out + if (m.setOpacity) { + m.setZIndexOffset(1000000); //Make these appear on top of EVERYTHING + m.setOpacity(0); + + fg.addLayer(m); + + m._setPos(thisLayerPos); + } else { + //Vectors just get immediately added + fg.addLayer(m); + } + } + + group._forceLayout(); + group._animationStart(); + + var initialLegOpacity = L.Path.SVG ? 0 : 0.3, + xmlns = L.Path.SVG_NS; + + + for (i = childMarkers.length - 1; i >= 0; i--) { + newPos = map.layerPointToLatLng(positions[i]); + m = childMarkers[i]; + + //Move marker to new position + m._preSpiderfyLatlng = m._latlng; + m.setLatLng(newPos); + + if (m.setOpacity) { + m.setOpacity(1); + } + + + //Add Legs. + leg = new L.Polyline([me._latlng, newPos], { weight: 1.5, color: '#222', opacity: initialLegOpacity }); + map.addLayer(leg); + m._spiderLeg = leg; + + //Following animations don't work for canvas + if (!L.Path.SVG || !this.SVG_ANIMATION) { + continue; + } + + //How this works: + //http://stackoverflow.com/questions/5924238/how-do-you-animate-an-svg-path-in-ios + //http://dev.opera.com/articles/view/advanced-svg-animation-techniques/ + + //Animate length + var length = leg._path.getTotalLength(); + leg._path.setAttribute("stroke-dasharray", length + "," + length); + + var anim = document.createElementNS(xmlns, "animate"); + anim.setAttribute("attributeName", "stroke-dashoffset"); + anim.setAttribute("begin", "indefinite"); + anim.setAttribute("from", length); + anim.setAttribute("to", 0); + anim.setAttribute("dur", 0.25); + leg._path.appendChild(anim); + anim.beginElement(); + + //Animate opacity + anim = document.createElementNS(xmlns, "animate"); + anim.setAttribute("attributeName", "stroke-opacity"); + anim.setAttribute("attributeName", "stroke-opacity"); + anim.setAttribute("begin", "indefinite"); + anim.setAttribute("from", 0); + anim.setAttribute("to", 0.5); + anim.setAttribute("dur", 0.25); + leg._path.appendChild(anim); + anim.beginElement(); + } + me.setOpacity(0.3); + + //Set the opacity of the spiderLegs back to their correct value + // The animations above override this until they complete. + // If the initial opacity of the spiderlegs isn't 0 then they appear before the animation starts. + if (L.Path.SVG) { + this._group._forceLayout(); + + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]._spiderLeg; + + m.options.opacity = 0.5; + m._path.setAttribute('stroke-opacity', 0.5); + } + } + + setTimeout(function () { + group._animationEnd(); + group.fire('spiderfied'); + }, 200); + }, + + _animationUnspiderfy: function (zoomDetails) { + var group = this._group, + map = group._map, + fg = group._featureGroup, + thisLayerPos = zoomDetails ? map._latLngToNewLayerPoint(this._latlng, zoomDetails.zoom, zoomDetails.center) : map.latLngToLayerPoint(this._latlng), + childMarkers = this.getAllChildMarkers(), + svg = L.Path.SVG && this.SVG_ANIMATION, + m, i, a; + + group._animationStart(); + + //Make us visible and bring the child markers back in + this.setOpacity(1); + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + //Marker was added to us after we were spidified + if (!m._preSpiderfyLatlng) { + continue; + } + + //Fix up the location to the real one + m.setLatLng(m._preSpiderfyLatlng); + delete m._preSpiderfyLatlng; + //Hack override the location to be our center + if (m.setOpacity) { + m._setPos(thisLayerPos); + m.setOpacity(0); + } else { + fg.removeLayer(m); + } + + //Animate the spider legs back in + if (svg) { + a = m._spiderLeg._path.childNodes[0]; + a.setAttribute('to', a.getAttribute('from')); + a.setAttribute('from', 0); + a.beginElement(); + + a = m._spiderLeg._path.childNodes[1]; + a.setAttribute('from', 0.5); + a.setAttribute('to', 0); + a.setAttribute('stroke-opacity', 0); + a.beginElement(); + + m._spiderLeg._path.setAttribute('stroke-opacity', 0); + } + } + + setTimeout(function () { + //If we have only <= one child left then that marker will be shown on the map so don't remove it! + var stillThereChildCount = 0; + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + if (m._spiderLeg) { + stillThereChildCount++; + } + } + + + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + if (!m._spiderLeg) { //Has already been unspiderfied + continue; + } + + + if (m.setOpacity) { + m.setOpacity(1); + m.setZIndexOffset(0); + } + + if (stillThereChildCount > 1) { + fg.removeLayer(m); + } + + map.removeLayer(m._spiderLeg); + delete m._spiderLeg; + } + group._animationEnd(); + }, 200); + } +}); + + +L.MarkerClusterGroup.include({ + //The MarkerCluster currently spiderfied (if any) + _spiderfied: null, + + _spiderfierOnAdd: function () { + this._map.on('click', this._unspiderfyWrapper, this); + + if (this._map.options.zoomAnimation) { + this._map.on('zoomstart', this._unspiderfyZoomStart, this); + } + //Browsers without zoomAnimation or a big zoom don't fire zoomstart + this._map.on('zoomend', this._noanimationUnspiderfy, this); + + if (L.Path.SVG && !L.Browser.touch) { + this._map._initPathRoot(); + //Needs to happen in the pageload, not after, or animations don't work in webkit + // http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements + //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable + } + }, + + _spiderfierOnRemove: function () { + this._map.off('click', this._unspiderfyWrapper, this); + this._map.off('zoomstart', this._unspiderfyZoomStart, this); + this._map.off('zoomanim', this._unspiderfyZoomAnim, this); + + this._unspiderfy(); //Ensure that markers are back where they should be + }, + + + //On zoom start we add a zoomanim handler so that we are guaranteed to be last (after markers are animated) + //This means we can define the animation they do rather than Markers doing an animation to their actual location + _unspiderfyZoomStart: function () { + if (!this._map) { //May have been removed from the map by a zoomEnd handler + return; + } + + this._map.on('zoomanim', this._unspiderfyZoomAnim, this); + }, + _unspiderfyZoomAnim: function (zoomDetails) { + //Wait until the first zoomanim after the user has finished touch-zooming before running the animation + if (L.DomUtil.hasClass(this._map._mapPane, 'leaflet-touching')) { + return; + } + + this._map.off('zoomanim', this._unspiderfyZoomAnim, this); + this._unspiderfy(zoomDetails); + }, + + + _unspiderfyWrapper: function () { + /// _unspiderfy but passes no arguments + this._unspiderfy(); + }, + + _unspiderfy: function (zoomDetails) { + if (this._spiderfied) { + this._spiderfied.unspiderfy(zoomDetails); + } + }, + + _noanimationUnspiderfy: function () { + if (this._spiderfied) { + this._spiderfied._noanimationUnspiderfy(); + } + }, + + //If the given layer is currently being spiderfied then we unspiderfy it so it isn't on the map anymore etc + _unspiderfyLayer: function (layer) { + if (layer._spiderLeg) { + this._featureGroup.removeLayer(layer); + + layer.setOpacity(1); + //Position will be fixed up immediately in _animationUnspiderfy + layer.setZIndexOffset(0); + + this._map.removeLayer(layer._spiderLeg); + delete layer._spiderLeg; + } + } +}); + + +}(window, document)); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/dist/leaflet.markercluster.js b/lib/Leaflet.markercluster/dist/leaflet.markercluster.js new file mode 100644 index 000000000..e7532116e --- /dev/null +++ b/lib/Leaflet.markercluster/dist/leaflet.markercluster.js @@ -0,0 +1,6 @@ +/* + Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps. + https://github.com/Leaflet/Leaflet.markercluster + (c) 2012-2013, Dave Leaver, smartrak +*/ +!function(t,e){L.MarkerClusterGroup=L.FeatureGroup.extend({options:{maxClusterRadius:80,iconCreateFunction:null,spiderfyOnMaxZoom:!0,showCoverageOnHover:!0,zoomToBoundsOnClick:!0,singleMarkerMode:!1,disableClusteringAtZoom:null,removeOutsideVisibleBounds:!0,animateAddingMarkers:!1,spiderfyDistanceMultiplier:1,chunkedLoading:!1,chunkInterval:200,chunkDelay:50,chunkProgress:null,polygonOptions:{}},initialize:function(t){L.Util.setOptions(this,t),this.options.iconCreateFunction||(this.options.iconCreateFunction=this._defaultIconCreateFunction),this._featureGroup=L.featureGroup(),this._featureGroup.on(L.FeatureGroup.EVENTS,this._propagateEvent,this),this._nonPointGroup=L.featureGroup(),this._nonPointGroup.on(L.FeatureGroup.EVENTS,this._propagateEvent,this),this._inZoomAnimation=0,this._needsClustering=[],this._needsRemoving=[],this._currentShownBounds=null,this._queue=[]},addLayer:function(t){if(t instanceof L.LayerGroup){var e=[];for(var i in t._layers)e.push(t._layers[i]);return this.addLayers(e)}if(!t.getLatLng)return this._nonPointGroup.addLayer(t),this;if(!this._map)return this._needsClustering.push(t),this;if(this.hasLayer(t))return this;this._unspiderfy&&this._unspiderfy(),this._addLayer(t,this._maxZoom);var n=t,s=this._map.getZoom();if(t.__parent)for(;n.__parent._zoom>=s;)n=n.__parent;return this._currentShownBounds.contains(n.getLatLng())&&(this.options.animateAddingMarkers?this._animationAddLayer(t,n):this._animationAddLayerNonAnimated(t,n)),this},removeLayer:function(t){if(t instanceof L.LayerGroup){var e=[];for(var i in t._layers)e.push(t._layers[i]);return this.removeLayers(e)}return t.getLatLng?this._map?t.__parent?(this._unspiderfy&&(this._unspiderfy(),this._unspiderfyLayer(t)),this._removeLayer(t,!0),this._featureGroup.hasLayer(t)&&(this._featureGroup.removeLayer(t),t.setOpacity&&t.setOpacity(1)),this):this:(!this._arraySplice(this._needsClustering,t)&&this.hasLayer(t)&&this._needsRemoving.push(t),this):(this._nonPointGroup.removeLayer(t),this)},addLayers:function(t){var e,i,n,s,r=this._featureGroup,o=this._nonPointGroup,a=this.options.chunkedLoading,h=this.options.chunkInterval,_=this.options.chunkProgress;if(this._map){var u=0,l=(new Date).getTime(),d=L.bind(function(){for(var e=(new Date).getTime();uh)break}if(s=t[u],s.getLatLng){if(!this.hasLayer(s)&&(this._addLayer(s,this._maxZoom),s.__parent&&2===s.__parent.getChildCount())){var n=s.__parent.getAllChildMarkers(),p=n[0]===s?n[1]:n[0];r.removeLayer(p)}}else o.addLayer(s)}_&&_(u,t.length,(new Date).getTime()-l),u===t.length?(this._featureGroup.eachLayer(function(t){t instanceof L.MarkerCluster&&t._iconNeedsUpdate&&t._updateIcon()}),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds)):setTimeout(d,this.options.chunkDelay)},this);d()}else{for(e=[],i=0,n=t.length;n>i;i++)s=t[i],s.getLatLng?this.hasLayer(s)||e.push(s):o.addLayer(s);this._needsClustering=this._needsClustering.concat(e)}return this},removeLayers:function(t){var e,i,n,s=this._featureGroup,r=this._nonPointGroup;if(!this._map){for(e=0,i=t.length;i>e;e++)n=t[e],this._arraySplice(this._needsClustering,n),r.removeLayer(n);return this}for(e=0,i=t.length;i>e;e++)n=t[e],n.__parent?(this._removeLayer(n,!0,!0),s.hasLayer(n)&&(s.removeLayer(n),n.setOpacity&&n.setOpacity(1))):r.removeLayer(n);return this._topClusterLevel._recursivelyAddChildrenToMap(null,this._zoom,this._currentShownBounds),s.eachLayer(function(t){t instanceof L.MarkerCluster&&t._updateIcon()}),this},clearLayers:function(){return this._map||(this._needsClustering=[],delete this._gridClusters,delete this._gridUnclustered),this._noanimationUnspiderfy&&this._noanimationUnspiderfy(),this._featureGroup.clearLayers(),this._nonPointGroup.clearLayers(),this.eachLayer(function(t){delete t.__parent}),this._map&&this._generateInitialClusters(),this},getBounds:function(){var t=new L.LatLngBounds;this._topClusterLevel&&t.extend(this._topClusterLevel._bounds);for(var e=this._needsClustering.length-1;e>=0;e--)t.extend(this._needsClustering[e].getLatLng());return t.extend(this._nonPointGroup.getBounds()),t},eachLayer:function(t,e){var i,n=this._needsClustering.slice();for(this._topClusterLevel&&this._topClusterLevel.getAllChildMarkers(n),i=n.length-1;i>=0;i--)t.call(e,n[i]);this._nonPointGroup.eachLayer(t,e)},getLayers:function(){var t=[];return this.eachLayer(function(e){t.push(e)}),t},getLayer:function(t){var e=null;return this.eachLayer(function(i){L.stamp(i)===t&&(e=i)}),e},hasLayer:function(t){if(!t)return!1;var e,i=this._needsClustering;for(e=i.length-1;e>=0;e--)if(i[e]===t)return!0;for(i=this._needsRemoving,e=i.length-1;e>=0;e--)if(i[e]===t)return!1;return!(!t.__parent||t.__parent._group!==this)||this._nonPointGroup.hasLayer(t)},zoomToShowLayer:function(t,e){var i=function(){if((t._icon||t.__parent._icon)&&!this._inZoomAnimation)if(this._map.off("moveend",i,this),this.off("animationend",i,this),t._icon)e();else if(t.__parent._icon){var n=function(){this.off("spiderfied",n,this),e()};this.on("spiderfied",n,this),t.__parent.spiderfy()}};if(t._icon&&this._map.getBounds().contains(t.getLatLng()))e();else if(t.__parent._zoome;e++)n=this._needsRemoving[e],this._removeLayer(n,!0);this._needsRemoving=[],this._zoom=this._map.getZoom(),this._currentShownBounds=this._getExpandedVisibleBounds(),this._map.on("zoomend",this._zoomEnd,this),this._map.on("moveend",this._moveEnd,this),this._spiderfierOnAdd&&this._spiderfierOnAdd(),this._bindEvents(),i=this._needsClustering,this._needsClustering=[],this.addLayers(i)},onRemove:function(t){t.off("zoomend",this._zoomEnd,this),t.off("moveend",this._moveEnd,this),this._unbindEvents(),this._map._mapPane.className=this._map._mapPane.className.replace(" leaflet-cluster-anim",""),this._spiderfierOnRemove&&this._spiderfierOnRemove(),this._hideCoverage(),this._featureGroup.onRemove(t),this._nonPointGroup.onRemove(t),this._featureGroup.clearLayers(),this._map=null},getVisibleParent:function(t){for(var e=t;e&&!e._icon;)e=e.__parent;return e||null},_arraySplice:function(t,e){for(var i=t.length-1;i>=0;i--)if(t[i]===e)return t.splice(i,1),!0},_removeLayer:function(t,e,i){var n=this._gridClusters,s=this._gridUnclustered,r=this._featureGroup,o=this._map;if(e)for(var a=this._maxZoom;a>=0&&s[a].removeObject(t,o.project(t.getLatLng(),a));a--);var h,_=t.__parent,u=_._markers;for(this._arraySplice(u,t);_&&(_._childCount--,!(_._zoom<0));)e&&_._childCount<=1?(h=_._markers[0]===t?_._markers[1]:_._markers[0],n[_._zoom].removeObject(_,o.project(_._cLatLng,_._zoom)),s[_._zoom].addObject(h,o.project(h.getLatLng(),_._zoom)),this._arraySplice(_.__parent._childClusters,_),_.__parent._markers.push(h),h.__parent=_.__parent,_._icon&&(r.removeLayer(_),i||r.addLayer(h))):(_._recalculateBounds(),i&&_._icon||_._updateIcon()),_=_.__parent;delete t.__parent},_isOrIsParent:function(t,e){for(;e;){if(t===e)return!0;e=e.parentNode}return!1},_propagateEvent:function(t){if(t.layer instanceof L.MarkerCluster){if(t.originalEvent&&this._isOrIsParent(t.layer._icon,t.originalEvent.relatedTarget))return;t.type="cluster"+t.type}this.fire(t.type,t)},_defaultIconCreateFunction:function(t){var e=t.getChildCount(),i=" marker-cluster-";return i+=10>e?"small":100>e?"medium":"large",new L.DivIcon({html:"
"+e+"
",className:"marker-cluster"+i,iconSize:new L.Point(40,40)})},_bindEvents:function(){var t=this._map,e=this.options.spiderfyOnMaxZoom,i=this.options.showCoverageOnHover,n=this.options.zoomToBoundsOnClick;(e||n)&&this.on("clusterclick",this._zoomOrSpiderfy,this),i&&(this.on("clustermouseover",this._showCoverage,this),this.on("clustermouseout",this._hideCoverage,this),t.on("zoomend",this._hideCoverage,this))},_zoomOrSpiderfy:function(t){var e=this._map;e.getMaxZoom()===e.getZoom()?this.options.spiderfyOnMaxZoom&&t.layer.spiderfy():this.options.zoomToBoundsOnClick&&t.layer.zoomToBounds(),t.originalEvent&&13===t.originalEvent.keyCode&&e._container.focus()},_showCoverage:function(t){var e=this._map;this._inZoomAnimation||(this._shownPolygon&&e.removeLayer(this._shownPolygon),t.layer.getChildCount()>2&&t.layer!==this._spiderfied&&(this._shownPolygon=new L.Polygon(t.layer.getConvexHull(),this.options.polygonOptions),e.addLayer(this._shownPolygon)))},_hideCoverage:function(){this._shownPolygon&&(this._map.removeLayer(this._shownPolygon),this._shownPolygon=null)},_unbindEvents:function(){var t=this.options.spiderfyOnMaxZoom,e=this.options.showCoverageOnHover,i=this.options.zoomToBoundsOnClick,n=this._map;(t||i)&&this.off("clusterclick",this._zoomOrSpiderfy,this),e&&(this.off("clustermouseover",this._showCoverage,this),this.off("clustermouseout",this._hideCoverage,this),n.off("zoomend",this._hideCoverage,this))},_zoomEnd:function(){this._map&&(this._mergeSplitClusters(),this._zoom=this._map._zoom,this._currentShownBounds=this._getExpandedVisibleBounds())},_moveEnd:function(){if(!this._inZoomAnimation){var t=this._getExpandedVisibleBounds();this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,this._zoom,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,this._map._zoom,t),this._currentShownBounds=t}},_generateInitialClusters:function(){var t=this._map.getMaxZoom(),e=this.options.maxClusterRadius,i=e;"function"!=typeof e&&(i=function(){return e}),this.options.disableClusteringAtZoom&&(t=this.options.disableClusteringAtZoom-1),this._maxZoom=t,this._gridClusters={},this._gridUnclustered={};for(var n=t;n>=0;n--)this._gridClusters[n]=new L.DistanceGrid(i(n)),this._gridUnclustered[n]=new L.DistanceGrid(i(n));this._topClusterLevel=new L.MarkerCluster(this,-1)},_addLayer:function(t,e){var i,n,s=this._gridClusters,r=this._gridUnclustered;for(this.options.singleMarkerMode&&(t.options.icon=this.options.iconCreateFunction({getChildCount:function(){return 1},getAllChildMarkers:function(){return[t]}}));e>=0;e--){i=this._map.project(t.getLatLng(),e);var o=s[e].getNearObject(i);if(o)return o._addChild(t),t.__parent=o,void 0;if(o=r[e].getNearObject(i)){var a=o.__parent;a&&this._removeLayer(o,!1);var h=new L.MarkerCluster(this,e,o,t);s[e].addObject(h,this._map.project(h._cLatLng,e)),o.__parent=h,t.__parent=h;var _=h;for(n=e-1;n>a._zoom;n--)_=new L.MarkerCluster(this,n,_),s[n].addObject(_,this._map.project(o.getLatLng(),n));for(a._addChild(_),n=e;n>=0&&r[n].removeObject(o,this._map.project(o.getLatLng(),n));n--);return}r[e].addObject(t,i)}this._topClusterLevel._addChild(t),t.__parent=this._topClusterLevel},_enqueue:function(t){this._queue.push(t),this._queueTimeout||(this._queueTimeout=setTimeout(L.bind(this._processQueue,this),300))},_processQueue:function(){for(var t=0;tthis._map._zoom?(this._animationStart(),this._animationZoomOut(this._zoom,this._map._zoom)):this._moveEnd()},_getExpandedVisibleBounds:function(){if(!this.options.removeOutsideVisibleBounds)return this._map.getBounds();var t=this._map,e=t.getBounds(),i=e._southWest,n=e._northEast,s=L.Browser.mobile?0:Math.abs(i.lat-n.lat),r=L.Browser.mobile?0:Math.abs(i.lng-n.lng);return new L.LatLngBounds(new L.LatLng(i.lat-s,i.lng-r,!0),new L.LatLng(n.lat+s,n.lng+r,!0))},_animationAddLayerNonAnimated:function(t,e){if(e===t)this._featureGroup.addLayer(t);else if(2===e._childCount){e._addToMap();var i=e.getAllChildMarkers();this._featureGroup.removeLayer(i[0]),this._featureGroup.removeLayer(i[1])}else e._updateIcon()}}),L.MarkerClusterGroup.include(L.DomUtil.TRANSITION?{_animationStart:function(){this._map._mapPane.className+=" leaflet-cluster-anim",this._inZoomAnimation++},_animationEnd:function(){this._map&&(this._map._mapPane.className=this._map._mapPane.className.replace(" leaflet-cluster-anim","")),this._inZoomAnimation--,this.fire("animationend")},_animationZoomIn:function(t,e){var i,n=this._getExpandedVisibleBounds(),s=this._featureGroup;this._topClusterLevel._recursively(n,t,0,function(r){var o,a=r._latlng,h=r._markers;for(n.contains(a)||(a=null),r._isSingleParent()&&t+1===e?(s.removeLayer(r),r._recursivelyAddChildrenToMap(null,e,n)):(r.setOpacity(0),r._recursivelyAddChildrenToMap(a,e,n)),i=h.length-1;i>=0;i--)o=h[i],n.contains(o._latlng)||s.removeLayer(o)}),this._forceLayout(),this._topClusterLevel._recursivelyBecomeVisible(n,e),s.eachLayer(function(t){t instanceof L.MarkerCluster||!t._icon||t.setOpacity(1)}),this._topClusterLevel._recursively(n,t,e,function(t){t._recursivelyRestoreChildPositions(e)}),this._enqueue(function(){this._topClusterLevel._recursively(n,t,0,function(t){s.removeLayer(t),t.setOpacity(1)}),this._animationEnd()})},_animationZoomOut:function(t,e){this._animationZoomOutSingle(this._topClusterLevel,t-1,e),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t,this._getExpandedVisibleBounds())},_animationZoomOutSingle:function(t,e,i){var n=this._getExpandedVisibleBounds();t._recursivelyAnimateChildrenInAndAddSelfToMap(n,e+1,i);var s=this;this._forceLayout(),t._recursivelyBecomeVisible(n,i),this._enqueue(function(){if(1===t._childCount){var r=t._markers[0];r.setLatLng(r.getLatLng()),r.setOpacity&&r.setOpacity(1)}else t._recursively(n,i,0,function(t){t._recursivelyRemoveChildrenFromMap(n,e+1)});s._animationEnd()})},_animationAddLayer:function(t,e){var i=this,n=this._featureGroup;n.addLayer(t),e!==t&&(e._childCount>2?(e._updateIcon(),this._forceLayout(),this._animationStart(),t._setPos(this._map.latLngToLayerPoint(e.getLatLng())),t.setOpacity(0),this._enqueue(function(){n.removeLayer(t),t.setOpacity(1),i._animationEnd()})):(this._forceLayout(),i._animationStart(),i._animationZoomOutSingle(e,this._map.getMaxZoom(),this._map.getZoom())))},_forceLayout:function(){L.Util.falseFn(e.body.offsetWidth)}}:{_animationStart:function(){},_animationZoomIn:function(t,e){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this.fire("animationend")},_animationZoomOut:function(t,e){this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds,t),this._topClusterLevel._recursivelyAddChildrenToMap(null,e,this._getExpandedVisibleBounds()),this.fire("animationend")},_animationAddLayer:function(t,e){this._animationAddLayerNonAnimated(t,e)}}),L.markerClusterGroup=function(t){return new L.MarkerClusterGroup(t)},L.MarkerCluster=L.Marker.extend({initialize:function(t,e,i,n){L.Marker.prototype.initialize.call(this,i?i._cLatLng||i.getLatLng():new L.LatLng(0,0),{icon:this}),this._group=t,this._zoom=e,this._markers=[],this._childClusters=[],this._childCount=0,this._iconNeedsUpdate=!0,this._bounds=new L.LatLngBounds,i&&this._addChild(i),n&&this._addChild(n)},getAllChildMarkers:function(t){t=t||[];for(var e=this._childClusters.length-1;e>=0;e--)this._childClusters[e].getAllChildMarkers(t);for(var i=this._markers.length-1;i>=0;i--)t.push(this._markers[i]);return t},getChildCount:function(){return this._childCount},zoomToBounds:function(){for(var t,e=this._childClusters.slice(),i=this._group._map,n=i.getBoundsZoom(this._bounds),s=this._zoom+1,r=i.getZoom();e.length>0&&n>s;){s++;var o=[];for(t=0;ts?this._group._map.setView(this._latlng,s):r>=n?this._group._map.setView(this._latlng,r+1):this._group._map.fitBounds(this._bounds)},getBounds:function(){var t=new L.LatLngBounds;return t.extend(this._bounds),t},_updateIcon:function(){this._iconNeedsUpdate=!0,this._icon&&this.setIcon(this)},createIcon:function(){return this._iconNeedsUpdate&&(this._iconObj=this._group.options.iconCreateFunction(this),this._iconNeedsUpdate=!1),this._iconObj.createIcon()},createShadow:function(){return this._iconObj.createShadow()},_addChild:function(t,e){this._iconNeedsUpdate=!0,this._expandBounds(t),t instanceof L.MarkerCluster?(e||(this._childClusters.push(t),t.__parent=this),this._childCount+=t._childCount):(e||this._markers.push(t),this._childCount++),this.__parent&&this.__parent._addChild(t,!0)},_expandBounds:function(t){var e,i=t._wLatLng||t._latlng;t instanceof L.MarkerCluster?(this._bounds.extend(t._bounds),e=t._childCount):(this._bounds.extend(i),e=1),this._cLatLng||(this._cLatLng=t._cLatLng||i);var n=this._childCount+e;this._wLatLng?(this._wLatLng.lat=(i.lat*e+this._wLatLng.lat*this._childCount)/n,this._wLatLng.lng=(i.lng*e+this._wLatLng.lng*this._childCount)/n):this._latlng=this._wLatLng=new L.LatLng(i.lat,i.lng)},_addToMap:function(t){t&&(this._backupLatlng=this._latlng,this.setLatLng(t)),this._group._featureGroup.addLayer(this)},_recursivelyAnimateChildrenIn:function(t,e,i){this._recursively(t,0,i-1,function(t){var i,n,s=t._markers;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(e),n.setOpacity(0))},function(t){var i,n,s=t._childClusters;for(i=s.length-1;i>=0;i--)n=s[i],n._icon&&(n._setPos(e),n.setOpacity(0))})},_recursivelyAnimateChildrenInAndAddSelfToMap:function(t,e,i){this._recursively(t,i,0,function(n){n._recursivelyAnimateChildrenIn(t,n._group._map.latLngToLayerPoint(n.getLatLng()).round(),e),n._isSingleParent()&&e-1===i?(n.setOpacity(1),n._recursivelyRemoveChildrenFromMap(t,e)):n.setOpacity(0),n._addToMap()})},_recursivelyBecomeVisible:function(t,e){this._recursively(t,0,e,null,function(t){t.setOpacity(1)})},_recursivelyAddChildrenToMap:function(t,e,i){this._recursively(i,-1,e,function(n){if(e!==n._zoom)for(var s=n._markers.length-1;s>=0;s--){var r=n._markers[s];i.contains(r._latlng)&&(t&&(r._backupLatlng=r.getLatLng(),r.setLatLng(t),r.setOpacity&&r.setOpacity(0)),n._group._featureGroup.addLayer(r))}},function(e){e._addToMap(t)})},_recursivelyRestoreChildPositions:function(t){for(var e=this._markers.length-1;e>=0;e--){var i=this._markers[e];i._backupLatlng&&(i.setLatLng(i._backupLatlng),delete i._backupLatlng)}if(t-1===this._zoom)for(var n=this._childClusters.length-1;n>=0;n--)this._childClusters[n]._restorePosition();else for(var s=this._childClusters.length-1;s>=0;s--)this._childClusters[s]._recursivelyRestoreChildPositions(t)},_restorePosition:function(){this._backupLatlng&&(this.setLatLng(this._backupLatlng),delete this._backupLatlng)},_recursivelyRemoveChildrenFromMap:function(t,e,i){var n,s;this._recursively(t,-1,e-1,function(t){for(s=t._markers.length-1;s>=0;s--)n=t._markers[s],i&&i.contains(n._latlng)||(t._group._featureGroup.removeLayer(n),n.setOpacity&&n.setOpacity(1))},function(t){for(s=t._childClusters.length-1;s>=0;s--)n=t._childClusters[s],i&&i.contains(n._latlng)||(t._group._featureGroup.removeLayer(n),n.setOpacity&&n.setOpacity(1))})},_recursively:function(t,e,i,n,s){var r,o,a=this._childClusters,h=this._zoom;if(e>h)for(r=a.length-1;r>=0;r--)o=a[r],t.intersects(o._bounds)&&o._recursively(t,e,i,n,s);else if(n&&n(this),s&&this._zoom===i&&s(this),i>h)for(r=a.length-1;r>=0;r--)o=a[r],t.intersects(o._bounds)&&o._recursively(t,e,i,n,s)},_recalculateBounds:function(){var t,e=this._markers,i=this._childClusters;for(this._bounds=new L.LatLngBounds,delete this._wLatLng,t=e.length-1;t>=0;t--)this._expandBounds(e[t]);for(t=i.length-1;t>=0;t--)this._expandBounds(i[t])},_isSingleParent:function(){return this._childClusters.length>0&&this._childClusters[0]._childCount===this._childCount}}),L.DistanceGrid=function(t){this._cellSize=t,this._sqCellSize=t*t,this._grid={},this._objectPoint={}},L.DistanceGrid.prototype={addObject:function(t,e){var i=this._getCoord(e.x),n=this._getCoord(e.y),s=this._grid,r=s[n]=s[n]||{},o=r[i]=r[i]||[],a=L.Util.stamp(t);this._objectPoint[a]=e,o.push(t)},updateObject:function(t,e){this.removeObject(t),this.addObject(t,e)},removeObject:function(t,e){var i,n,s=this._getCoord(e.x),r=this._getCoord(e.y),o=this._grid,a=o[r]=o[r]||{},h=a[s]=a[s]||[];for(delete this._objectPoint[L.Util.stamp(t)],i=0,n=h.length;n>i;i++)if(h[i]===t)return h.splice(i,1),1===n&&delete a[s],!0},eachObject:function(t,e){var i,n,s,r,o,a,h,_=this._grid;for(i in _){o=_[i];for(n in o)for(a=o[n],s=0,r=a.length;r>s;s++)h=t.call(e,a[s]),h&&(s--,r--)}},getNearObject:function(t){var e,i,n,s,r,o,a,h,_=this._getCoord(t.x),u=this._getCoord(t.y),l=this._objectPoint,d=this._sqCellSize,p=null;for(e=u-1;u+1>=e;e++)if(s=this._grid[e])for(i=_-1;_+1>=i;i++)if(r=s[i])for(n=0,o=r.length;o>n;n++)a=r[n],h=this._sqDist(l[L.Util.stamp(a)],t),d>h&&(d=h,p=a);return p},_getCoord:function(t){return Math.floor(t/this._cellSize)},_sqDist:function(t,e){var i=e.x-t.x,n=e.y-t.y;return i*i+n*n}},function(){L.QuickHull={getDistant:function(t,e){var i=e[1].lat-e[0].lat,n=e[0].lng-e[1].lng;return n*(t.lat-e[0].lat)+i*(t.lng-e[0].lng)},findMostDistantPointFromBaseLine:function(t,e){var i,n,s,r=0,o=null,a=[];for(i=e.length-1;i>=0;i--)n=e[i],s=this.getDistant(n,t),s>0&&(a.push(n),s>r&&(r=s,o=n));return{maxPoint:o,newPoints:a}},buildConvexHull:function(t,e){var i=[],n=this.findMostDistantPointFromBaseLine(t,e);return n.maxPoint?(i=i.concat(this.buildConvexHull([t[0],n.maxPoint],n.newPoints)),i=i.concat(this.buildConvexHull([n.maxPoint,t[1]],n.newPoints))):[t[0]]},getConvexHull:function(t){var e,i=!1,n=!1,s=null,r=null;for(e=t.length-1;e>=0;e--){var o=t[e];(i===!1||o.lat>i)&&(s=o,i=o.lat),(n===!1||o.lat=0;e--)t=i[e].getLatLng(),n.push(t);return L.QuickHull.getConvexHull(n)}}),L.MarkerCluster.include({_2PI:2*Math.PI,_circleFootSeparation:25,_circleStartAngle:Math.PI/6,_spiralFootSeparation:28,_spiralLengthStart:11,_spiralLengthFactor:5,_circleSpiralSwitchover:9,spiderfy:function(){if(this._group._spiderfied!==this&&!this._group._inZoomAnimation){var t,e=this.getAllChildMarkers(),i=this._group,n=i._map,s=n.latLngToLayerPoint(this._latlng);this._group._unspiderfy(),this._group._spiderfied=this,e.length>=this._circleSpiralSwitchover?t=this._generatePointsSpiral(e.length,s):(s.y+=10,t=this._generatePointsCircle(e.length,s)),this._animationSpiderfy(e,t)}},unspiderfy:function(t){this._group._inZoomAnimation||(this._animationUnspiderfy(t),this._group._spiderfied=null)},_generatePointsCircle:function(t,e){var i,n,s=this._group.options.spiderfyDistanceMultiplier*this._circleFootSeparation*(2+t),r=s/this._2PI,o=this._2PI/t,a=[];for(a.length=t,i=t-1;i>=0;i--)n=this._circleStartAngle+i*o,a[i]=new L.Point(e.x+r*Math.cos(n),e.y+r*Math.sin(n))._round();return a},_generatePointsSpiral:function(t,e){var i,n=this._group.options.spiderfyDistanceMultiplier*this._spiralLengthStart,s=this._group.options.spiderfyDistanceMultiplier*this._spiralFootSeparation,r=this._group.options.spiderfyDistanceMultiplier*this._spiralLengthFactor,o=0,a=[];for(a.length=t,i=t-1;i>=0;i--)o+=s/n+5e-4*i,a[i]=new L.Point(e.x+n*Math.cos(o),e.y+n*Math.sin(o))._round(),n+=this._2PI*r/o;return a},_noanimationUnspiderfy:function(){var t,e,i=this._group,n=i._map,s=i._featureGroup,r=this.getAllChildMarkers();for(this.setOpacity(1),e=r.length-1;e>=0;e--)t=r[e],s.removeLayer(t),t._preSpiderfyLatlng&&(t.setLatLng(t._preSpiderfyLatlng),delete t._preSpiderfyLatlng),t.setZIndexOffset&&t.setZIndexOffset(0),t._spiderLeg&&(n.removeLayer(t._spiderLeg),delete t._spiderLeg);i._spiderfied=null}}),L.MarkerCluster.include(L.DomUtil.TRANSITION?{SVG_ANIMATION:function(){return e.createElementNS("http://www.w3.org/2000/svg","animate").toString().indexOf("SVGAnimate")>-1}(),_animationSpiderfy:function(t,i){var n,s,r,o,a=this,h=this._group,_=h._map,u=h._featureGroup,l=_.latLngToLayerPoint(this._latlng);for(n=t.length-1;n>=0;n--)s=t[n],s.setOpacity?(s.setZIndexOffset(1e6),s.setOpacity(0),u.addLayer(s),s._setPos(l)):u.addLayer(s);h._forceLayout(),h._animationStart();var d=L.Path.SVG?0:.3,p=L.Path.SVG_NS;for(n=t.length-1;n>=0;n--)if(o=_.layerPointToLatLng(i[n]),s=t[n],s._preSpiderfyLatlng=s._latlng,s.setLatLng(o),s.setOpacity&&s.setOpacity(1),r=new L.Polyline([a._latlng,o],{weight:1.5,color:"#222",opacity:d}),_.addLayer(r),s._spiderLeg=r,L.Path.SVG&&this.SVG_ANIMATION){var c=r._path.getTotalLength();r._path.setAttribute("stroke-dasharray",c+","+c);var f=e.createElementNS(p,"animate");f.setAttribute("attributeName","stroke-dashoffset"),f.setAttribute("begin","indefinite"),f.setAttribute("from",c),f.setAttribute("to",0),f.setAttribute("dur",.25),r._path.appendChild(f),f.beginElement(),f=e.createElementNS(p,"animate"),f.setAttribute("attributeName","stroke-opacity"),f.setAttribute("attributeName","stroke-opacity"),f.setAttribute("begin","indefinite"),f.setAttribute("from",0),f.setAttribute("to",.5),f.setAttribute("dur",.25),r._path.appendChild(f),f.beginElement()}if(a.setOpacity(.3),L.Path.SVG)for(this._group._forceLayout(),n=t.length-1;n>=0;n--)s=t[n]._spiderLeg,s.options.opacity=.5,s._path.setAttribute("stroke-opacity",.5);setTimeout(function(){h._animationEnd(),h.fire("spiderfied")},200)},_animationUnspiderfy:function(t){var e,i,n,s=this._group,r=s._map,o=s._featureGroup,a=t?r._latLngToNewLayerPoint(this._latlng,t.zoom,t.center):r.latLngToLayerPoint(this._latlng),h=this.getAllChildMarkers(),_=L.Path.SVG&&this.SVG_ANIMATION;for(s._animationStart(),this.setOpacity(1),i=h.length-1;i>=0;i--)e=h[i],e._preSpiderfyLatlng&&(e.setLatLng(e._preSpiderfyLatlng),delete e._preSpiderfyLatlng,e.setOpacity?(e._setPos(a),e.setOpacity(0)):o.removeLayer(e),_&&(n=e._spiderLeg._path.childNodes[0],n.setAttribute("to",n.getAttribute("from")),n.setAttribute("from",0),n.beginElement(),n=e._spiderLeg._path.childNodes[1],n.setAttribute("from",.5),n.setAttribute("to",0),n.setAttribute("stroke-opacity",0),n.beginElement(),e._spiderLeg._path.setAttribute("stroke-opacity",0)));setTimeout(function(){var t=0;for(i=h.length-1;i>=0;i--)e=h[i],e._spiderLeg&&t++;for(i=h.length-1;i>=0;i--)e=h[i],e._spiderLeg&&(e.setOpacity&&(e.setOpacity(1),e.setZIndexOffset(0)),t>1&&o.removeLayer(e),r.removeLayer(e._spiderLeg),delete e._spiderLeg);s._animationEnd()},200)}}:{_animationSpiderfy:function(t,e){var i,n,s,r,o=this._group,a=o._map,h=o._featureGroup;for(i=t.length-1;i>=0;i--)r=a.layerPointToLatLng(e[i]),n=t[i],n._preSpiderfyLatlng=n._latlng,n.setLatLng(r),n.setZIndexOffset&&n.setZIndexOffset(1e6),h.addLayer(n),s=new L.Polyline([this._latlng,r],{weight:1.5,color:"#222"}),a.addLayer(s),n._spiderLeg=s;this.setOpacity(.3),o.fire("spiderfied")},_animationUnspiderfy:function(){this._noanimationUnspiderfy()}}),L.MarkerClusterGroup.include({_spiderfied:null,_spiderfierOnAdd:function(){this._map.on("click",this._unspiderfyWrapper,this),this._map.options.zoomAnimation&&this._map.on("zoomstart",this._unspiderfyZoomStart,this),this._map.on("zoomend",this._noanimationUnspiderfy,this),L.Path.SVG&&!L.Browser.touch&&this._map._initPathRoot()},_spiderfierOnRemove:function(){this._map.off("click",this._unspiderfyWrapper,this),this._map.off("zoomstart",this._unspiderfyZoomStart,this),this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._unspiderfy()},_unspiderfyZoomStart:function(){this._map&&this._map.on("zoomanim",this._unspiderfyZoomAnim,this)},_unspiderfyZoomAnim:function(t){L.DomUtil.hasClass(this._map._mapPane,"leaflet-touching")||(this._map.off("zoomanim",this._unspiderfyZoomAnim,this),this._unspiderfy(t))},_unspiderfyWrapper:function(){this._unspiderfy()},_unspiderfy:function(t){this._spiderfied&&this._spiderfied.unspiderfy(t)},_noanimationUnspiderfy:function(){this._spiderfied&&this._spiderfied._noanimationUnspiderfy()},_unspiderfyLayer:function(t){t._spiderLeg&&(this._featureGroup.removeLayer(t),t.setOpacity(1),t.setZIndexOffset(0),this._map.removeLayer(t._spiderLeg),delete t._spiderLeg)}})}(window,document); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/geojson-sample.js b/lib/Leaflet.markercluster/example/geojson-sample.js new file mode 100644 index 000000000..37a22665e --- /dev/null +++ b/lib/Leaflet.markercluster/example/geojson-sample.js @@ -0,0 +1,53 @@ +var geojsonSample = { + "type": "FeatureCollection", + "features": [ + { + "type": "Feature", + "geometry": { + "type": "Point", + "coordinates": [102.0, 0.5] + }, + "properties": { + "prop0": "value0", + "color": "blue" + } + }, + + { + "type": "Feature", + "geometry": { + "type": "LineString", + "coordinates": [[102.0, 0.0], [103.0, 1.0], [104.0, 0.0], [105.0, 1.0]] + }, + "properties": { + "color": "red", + "prop1": 0.0 + } + }, + + { + "type": "Feature", + "geometry": { + "type": "Polygon", + "coordinates": [[[100.0, 0.0], [101.0, 0.0], [101.0, 1.0], [100.0, 1.0], [100.0, 0.0]]] + }, + "properties": { + "color": "green", + "prop1": { + "this": "that" + } + } + }, + + { + "type": "Feature", + "geometry": { + "type": "MultiPolygon", + "coordinates": [[[[100.0, 1.5], [100.5, 1.5], [100.5, 2.0], [100.0, 2.0], [100.0, 1.5]]], [[[100.5, 2.0], [100.5, 2.5], [101.0, 2.5], [101.0, 2.0], [100.5, 2.0]]]] + }, + "properties": { + "color": "purple" + } + } + ] +}; diff --git a/lib/Leaflet.markercluster/example/geojson.html b/lib/Leaflet.markercluster/example/geojson.html new file mode 100644 index 000000000..a074eec0b --- /dev/null +++ b/lib/Leaflet.markercluster/example/geojson.html @@ -0,0 +1,54 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-convexhull.html b/lib/Leaflet.markercluster/example/marker-clustering-convexhull.html new file mode 100644 index 000000000..25ee56d32 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-convexhull.html @@ -0,0 +1,81 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ + + + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-custom.html b/lib/Leaflet.markercluster/example/marker-clustering-custom.html new file mode 100644 index 000000000..f53d81f09 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-custom.html @@ -0,0 +1,114 @@ + + + + Leaflet debug page + + + + + + + + + + + + + +
+ + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-everything.html b/lib/Leaflet.markercluster/example/marker-clustering-everything.html new file mode 100644 index 000000000..cd1e7271c --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-everything.html @@ -0,0 +1,80 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ + + Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-geojson.html b/lib/Leaflet.markercluster/example/marker-clustering-geojson.html new file mode 100644 index 000000000..1912ae8c0 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-geojson.html @@ -0,0 +1,70 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + +
+ Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-realworld-maxzoom.388.html b/lib/Leaflet.markercluster/example/marker-clustering-realworld-maxzoom.388.html new file mode 100644 index 000000000..669b23ab4 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-realworld-maxzoom.388.html @@ -0,0 +1,45 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + +
+ Markers will show on the bottom 2 zoom levels even though the markers would normally cluster. + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-realworld-mobile.388.html b/lib/Leaflet.markercluster/example/marker-clustering-realworld-mobile.388.html new file mode 100644 index 000000000..0a8d07fc8 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-realworld-mobile.388.html @@ -0,0 +1,44 @@ + + + + Leaflet debug page + + + + + + + + + + + + + +
+ + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-realworld.10000.html b/lib/Leaflet.markercluster/example/marker-clustering-realworld.10000.html new file mode 100644 index 000000000..ab12a80aa --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-realworld.10000.html @@ -0,0 +1,46 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + +
+ Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-realworld.388.html b/lib/Leaflet.markercluster/example/marker-clustering-realworld.388.html new file mode 100644 index 000000000..c827a51e4 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-realworld.388.html @@ -0,0 +1,45 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + +
+ Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-realworld.50000.html b/lib/Leaflet.markercluster/example/marker-clustering-realworld.50000.html new file mode 100644 index 000000000..d84a573b7 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-realworld.50000.html @@ -0,0 +1,78 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Mouse over a cluster to see the bounds of its children and click a cluster to zoom to those bounds + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-singlemarkermode.html b/lib/Leaflet.markercluster/example/marker-clustering-singlemarkermode.html new file mode 100644 index 000000000..7f5c1a2d9 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-singlemarkermode.html @@ -0,0 +1,60 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ Click a cluster to zoom to its bounds + + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-spiderfier.html b/lib/Leaflet.markercluster/example/marker-clustering-spiderfier.html new file mode 100644 index 000000000..b4cc5f04f --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-spiderfier.html @@ -0,0 +1,60 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ + + + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-zoomtobounds.html b/lib/Leaflet.markercluster/example/marker-clustering-zoomtobounds.html new file mode 100644 index 000000000..0f4e209e1 --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-zoomtobounds.html @@ -0,0 +1,60 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ Click a cluster to zoom to its bounds + + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering-zoomtoshowlayer.html b/lib/Leaflet.markercluster/example/marker-clustering-zoomtoshowlayer.html new file mode 100644 index 000000000..86a28d16e --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering-zoomtoshowlayer.html @@ -0,0 +1,59 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + +
+ + When clicked we will zoom down to a marker, spiderfying if required to show it and then open its popup + + + diff --git a/lib/Leaflet.markercluster/example/marker-clustering.html b/lib/Leaflet.markercluster/example/marker-clustering.html new file mode 100644 index 000000000..3ea2e1a1c --- /dev/null +++ b/lib/Leaflet.markercluster/example/marker-clustering.html @@ -0,0 +1,88 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ + + + + + diff --git a/lib/Leaflet.markercluster/example/mobile.css b/lib/Leaflet.markercluster/example/mobile.css new file mode 100644 index 000000000..c59a527a6 --- /dev/null +++ b/lib/Leaflet.markercluster/example/mobile.css @@ -0,0 +1,6 @@ +html, body, #map { + margin: 0; + padding: 0; + width: 100%; + height: 100%; +} \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/old-bugs/add-1000-after.html b/lib/Leaflet.markercluster/example/old-bugs/add-1000-after.html new file mode 100644 index 000000000..72b143551 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/add-1000-after.html @@ -0,0 +1,83 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #51. Click the button. It will add 1000 markers to the map. this should be fast, but previously in (non-IE browsers) it was very slow.
+ Bug #43. Improving performance more.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/add-markers-offscreen.html b/lib/Leaflet.markercluster/example/old-bugs/add-markers-offscreen.html new file mode 100644 index 000000000..eb4ffeb70 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/add-markers-offscreen.html @@ -0,0 +1,52 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+ + Bug #69. Click the button 2+ times. Zoom out. Should just be a single cluster but instead one of the child markers is still visible.
+ + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/add-remove-before-addtomap.html b/lib/Leaflet.markercluster/example/old-bugs/add-remove-before-addtomap.html new file mode 100644 index 000000000..36d6d188a --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/add-remove-before-addtomap.html @@ -0,0 +1,62 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+ Bug #64. Nothing should appear on the map.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/animationless-zoom.html b/lib/Leaflet.markercluster/example/old-bugs/animationless-zoom.html new file mode 100644 index 000000000..9d71b87b3 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/animationless-zoom.html @@ -0,0 +1,47 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #216. Click the button. It will zoom in, leaflet will not do an animation for the zoom. A marker should be visible.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/click-cluster-at-screen-edge.html b/lib/Leaflet.markercluster/example/old-bugs/click-cluster-at-screen-edge.html new file mode 100644 index 000000000..5d1ad33bb --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/click-cluster-at-screen-edge.html @@ -0,0 +1,59 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+ Bug #344. Click the cluster at the screen edge. Map will zoom to it and its markers will appear, but it will not disappear.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/disappearing-marker-from-spider.html b/lib/Leaflet.markercluster/example/old-bugs/disappearing-marker-from-spider.html new file mode 100644 index 000000000..3d3c25dbc --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/disappearing-marker-from-spider.html @@ -0,0 +1,106 @@ + + + + Leaflet debug page + + + + + + + + + + + + +
+ Click on the cluster to spiderfy and then
+
+
Note: The marker on the old cluster position comes back on next move or on map scrolling.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/doesnt-update-cluster-on-bottom-level.html b/lib/Leaflet.markercluster/example/old-bugs/doesnt-update-cluster-on-bottom-level.html new file mode 100644 index 000000000..510d7b243 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/doesnt-update-cluster-on-bottom-level.html @@ -0,0 +1,69 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #114. Markers are added to the map periodically using addLayers. Bug was that after becoming a cluster (size 2 or 3 usually) they would never change again even if more markers were added to them.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/remove-add-clustering.html b/lib/Leaflet.markercluster/example/old-bugs/remove-add-clustering.html new file mode 100644 index 000000000..60ebfa134 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/remove-add-clustering.html @@ -0,0 +1,74 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+

Whenever a marker is clicked it is removed from the clusterer and added directly to the map instead.

+

Click Marker on Left, zoom out 1 layer, click marker on right.

+

Expected behaviour: Both markers are shown. Bugged behaviour: Both markers are on map with opacity 0.

+

+
+	
+
+
diff --git a/lib/Leaflet.markercluster/example/old-bugs/remove-when-spiderfied.html b/lib/Leaflet.markercluster/example/old-bugs/remove-when-spiderfied.html
new file mode 100644
index 000000000..eb14f5547
--- /dev/null
+++ b/lib/Leaflet.markercluster/example/old-bugs/remove-when-spiderfied.html
@@ -0,0 +1,65 @@
+
+
+
+	Leaflet debug page
+
+	
+	
+	
+	
+
+	
+	
+	
+	
+	
+	
+	
+
+
+
+	
+
+ Bug #54. Spiderfy the cluster then click the button. Should result in 2 markers right beside each other on the map.
+ Bug #53. Spiderfy the cluster then click the button. Spider lines remain on the map.
+ Bug #49. Spiderfy the cluster then click the second button. Spider lines remain on the map. Click the map to get an error. + + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/removelayer-after-remove-from-map.html b/lib/Leaflet.markercluster/example/old-bugs/removelayer-after-remove-from-map.html new file mode 100644 index 000000000..48b5de45e --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/removelayer-after-remove-from-map.html @@ -0,0 +1,69 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+ 1 - Swap layers
+ 2 - Remove all markers
+ 3 - Swap layers again => Marker is still there
+ + Bug
#160. Click 1,2,3. There should be nothing on the map.
+ + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/setView-doesnt-remove.html b/lib/Leaflet.markercluster/example/old-bugs/setView-doesnt-remove.html new file mode 100644 index 000000000..05693b9d8 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/setView-doesnt-remove.html @@ -0,0 +1,69 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #63. Zoom down on the very left side untill markers are visible. Click the button. Scroll to the left in one go, those markers should be in clusters but the actual markers will still be visible.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-need-to-zoom.html b/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-need-to-zoom.html new file mode 100644 index 000000000..4a3d69dee --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-need-to-zoom.html @@ -0,0 +1,63 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #65. Click 2 then click the button. You should be scrolled to the marker, old behaviour would zoom you out.
+ + + + diff --git a/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-zoom-if-centered-on.html b/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-zoom-if-centered-on.html new file mode 100644 index 000000000..33c1e1841 --- /dev/null +++ b/lib/Leaflet.markercluster/example/old-bugs/zoomtoshowlayer-doesnt-zoom-if-centered-on.html @@ -0,0 +1,56 @@ + + + + Leaflet debug page + + + + + + + + + + + + + + + + +
+
+ Bug #286 (from @Grsmto). Click the button. The cluster should spiderfy and show the popup, old behaviour did nothing.
+ + + + diff --git a/lib/Leaflet.markercluster/example/realworld.10000.js b/lib/Leaflet.markercluster/example/realworld.10000.js new file mode 100644 index 000000000..22f1be5bd --- /dev/null +++ b/lib/Leaflet.markercluster/example/realworld.10000.js @@ -0,0 +1,10004 @@ +//An extract of address points from the LINZ bulk extract: http://www.linz.govt.nz/survey-titles/landonline-data/landonline-bde +//Should be this data set: http://data.linz.govt.nz/#/layer/779-nz-street-address-electoral/ +var addressPoints = [ +[-37.8839, 175.3745188667, "571"], +[-37.8869090667, 175.3657417333, "486"], +[-37.8894207167, 175.4015351167, "807"], +[-37.8927369333, 175.4087452333, "899"], +[-37.90585105, 175.4453463833, "1273"], +[-37.9064188833, 175.4441556833, "1258"], +[-37.90584715, 175.4463564333, "1279"], +[-37.9033391333, 175.4244005667, "1078"], +[-37.9061991333, 175.4492620333, "1309"], +[-37.9058955167, 175.4445613167, "1261"], +[-37.88888045, 175.39146475, "734"], +[-37.8950811333, 175.41079175, "928"], +[-37.88909235, 175.3922956333, "740"], +[-37.8889259667, 175.3938591667, "759"], +[-37.8876576333, 175.3859563833, "687"], +[-37.89027155, 175.3973178833, "778"], +[-37.8864473667, 175.3806136833, "631"], +[-37.9000262833, 175.4183242167, "1012"], +[-37.90036495, 175.4189457, "1024"], +[-37.9000976833, 175.4197312167, "1027"], +[-37.90239975, 175.42371165, "1067"], +[-37.9043379667, 175.42430325, "1080"], +[-37.9026441, 175.4231055167, "1068"], +[-37.8883536333, 175.3888573833, "718"], +[-37.9029948833, 175.4237386167, "1070"], +[-37.89824135, 175.4150421667, "982"], +[-37.8976067833, 175.41510265, "983"], +[-37.9023491333, 175.4225495, "1066"], +[-37.8856157167, 175.3775632833, "608"], +[-37.8963032667, 175.4132068, "951"], +[-37.8922813667, 175.4073402333, "1/898"], +[-37.88933345, 175.3956084333, "769"], +[-37.8936148833, 175.4090577, "906"], +[-37.8939398, 175.4094444833, "914"], +[-37.8857355333, 175.3722297667, "542"], +[-37.8931092167, 175.4083014, "898"], +[-37.9008253167, 175.4198128, "1030"], +[-37.9045052333, 175.4260735, "1100"], +[-37.9053927167, 175.42822265, "1130"], +[-37.90507935, 175.4313065, "1147"], +[-37.9055749667, 175.4319092167, "1154"], +[-37.9039034833, 175.4274736667, "1/1105"], +[-37.9037633, 175.4261181833, "1093"], +[-37.9038755, 175.42871045, "3/1105"], +[-37.90369555, 175.4285285, "2/1105"], +[-37.9056626, 175.4341078833, "1170"], +[-37.9018736833, 175.438852, "1/1213"], +[-37.9057596167, 175.4356650167, "1180"], +[-37.9053502, 175.4361049333, "1185"], +[-37.9053379167, 175.4366986167, "1195"], +[-37.9058892333, 175.4381450333, "1204"], +[-37.9060264167, 175.4400763167, "1220"], +[-37.9056766833, 175.4412592, "1233"], +[-37.9057312167, 175.4418380333, "1235"], +[-37.9061575833, 175.4421068667, "1242"], +[-37.9063946167, 175.4438004667, "1256"], +[-37.8996027667, 175.43995055, "4/1215"], +[-37.9006449667, 175.4395556833, "3/1215"], +[-37.9009138167, 175.4394061333, "2/1215"], +[-37.9034547, 175.4396315, "1219"], +[-37.9055243, 175.4396033, "1221"], +[-37.89952325, 175.4406619167, "5/1215"], +[-37.90561525, 175.4404853167, "1225"], +[-37.9045602333, 175.4477690333, "1285"], +[-37.9040051667, 175.4388491833, "1213"], +[-37.90588145, 175.4440349167, "1257"], +[-37.90595915, 175.4389286833, "1212"], +[-37.9059939667, 175.4398068833, "1218"], +[-37.8868631833, 175.37991055, "630"], +[-37.8878744833, 175.382179, "650"], +[-37.8880764, 175.3839845667, "670"], +[-37.8850457333, 175.3759821, "594"], +[-37.88446045, 175.3762872667, "587"], +[-37.8880782667, 175.38423415, "1/670"], +[-37.8863533833, 175.3690698667, "515"], +[-37.8861783167, 175.3710009833, "530"], +[-37.885424, 175.3716677833, "541"], +[-37.88524065, 175.3722141167, "547"], +[-37.9022371333, 175.47991035, "10"], +[-37.9020014833, 175.4799581667, "1"], +[-37.9020824, 175.4802630167, "2"], +[-37.9018589833, 175.4804760833, "3"], +[-37.9018211333, 175.4806769667, "4"], +[-37.9021543667, 175.4805538833, "5"], +[-37.9022658, 175.4807579333, "6"], +[-37.9024517833, 175.4806480667, "7"], +[-37.9024251167, 175.48041985, "8"], +[-37.9023317833, 175.4802119667, "9"], +[-37.9321212167, 175.4555088, "39"], +[-37.8956185167, 175.4719458667, "4"], +[-37.8954566, 175.4728120333, "20"], +[-37.8957231833, 175.4727906, "22A"], +[-37.8956085833, 175.4726702, "22"], +[-37.8956460167, 175.4718485167, "2"], +[-37.8953487167, 175.47202915, "5"], +[-37.8800121167, 175.4865467167, "9"], +[-37.8803487833, 175.48595255, "3"], +[-37.8802064167, 175.4861004, "5"], +[-37.8800705167, 175.4862671167, "7"], +[-37.8798887333, 175.4863712333, "7A"], +[-37.8801676667, 175.4866722667, "10"], +[-37.88029245, 175.4868499667, "8"], +[-37.8803302167, 175.4865822167, "6"], +[-37.88038715, 175.4864004167, "4"], +[-37.8805029333, 175.4862314167, "2"], +[-37.9127148667, 175.4710607833, "51"], +[-37.9118609667, 175.4668648, "20"], +[-37.9122010667, 175.47078695, "49A"], +[-37.91191245, 175.4682913833, "29"], +[-37.9112774333, 175.4668027333, "17A"], +[-37.91244995, 175.4700709833, "41"], +[-37.9149636, 175.4772568333, "98"], +[-37.9128421833, 175.4702103167, "42"], +[-37.91130515, 175.4650217667, "2"], +[-37.9140405333, 175.4754503833, "85"], +[-37.91155815, 175.4670938833, "21"], +[-37.9144416167, 175.4754564, "86"], +[-37.91149715, 175.4668828667, "19"], +[-37.9155068167, 175.4784839167, "116"], +[-37.9135311667, 175.4736794833, "69"], +[-37.9146717667, 175.4773664833, "103"], +[-37.9135175667, 175.4724437333, "62"], +[-37.9117463, 175.4676612167, "23"], +[-37.9136108833, 175.47263915, "64"], +[-37.9118005167, 175.46788515, "25"], +[-37.9142630167, 175.4748833333, "80"], +[-37.9118481833, 175.4680930167, "27"], +[-37.91519165, 175.47727755, "100"], +[-37.9121701, 175.4679073167, "28"], +[-37.9152358167, 175.4780924833, "112"], +[-37.9122425667, 175.4681859167, "30"], +[-37.9150027167, 175.47843285, "107"], +[-37.91196865, 175.4684916833, "31"], +[-37.9132330333, 175.4726685333, "61"], +[-37.9123722, 175.4685087667, "32"], +[-37.9151754667, 175.4790262, "113"], +[-37.9120319833, 175.46868985, "33"], +[-37.9151328167, 175.4788729, "111"], +[-37.9124617167, 175.4687799833, "34"], +[-37.9150617167, 175.4786454167, "109"], +[-37.9120926, 175.4688931667, "35"], +[-37.9132881333, 175.47285965, "63"], +[-37.9119984333, 175.4691844, "37A"], +[-37.9120311, 175.4673706667, "24"], +[-37.91214925, 175.46909885, "37"], +[-37.91408025, 175.4759690833, "91B"], +[-37.9125366, 175.4691343, "38"], +[-37.9134794833, 175.4739836167, "71A"], +[-37.9122081167, 175.4674649333, "26A"], +[-37.9140814333, 175.4736708667, "72A"], +[-37.9120801, 175.4675947333, "26"], +[-37.9113324167, 175.46512405, "4"], +[-37.91185795, 175.4686138167, "31A"], +[-37.9144403167, 175.4767387667, "101"], +[-37.9125054167, 175.46896025, "36A"], +[-37.9151334833, 175.4778022667, "106"], +[-37.9126167833, 175.4688409667, "36B"], +[-37.9111576, 175.4663765167, "13A"], +[-37.9112960833, 175.4662379, "13"], +[-37.9116252167, 175.46602135, "14"], +[-37.9113666167, 175.4664507833, "15"], +[-37.9117068333, 175.466336, "16"], +[-37.9114338333, 175.4666576, "17"], +[-37.9119338667, 175.4665694167, "18A"], +[-37.9117808333, 175.4665752, "18"], +[-37.9110205, 175.4652438667, "3"], +[-37.9110742833, 175.4654501167, "5"], +[-37.9111370833, 175.4656566833, "7"], +[-37.9111865833, 175.4658542667, "9"], +[-37.9112390333, 175.46602075, "11"], +[-37.9118135167, 175.46543705, "6A"], +[-37.9118572167, 175.46556135, "6B"], +[-37.91145615, 175.4655286, "6"], +[-37.9115389167, 175.4657957167, "8"], +[-37.9127748333, 175.4699760667, "40"], +[-37.9125127167, 175.4703133, "43"], +[-37.9129274, 175.4704172833, "44"], +[-37.9125759833, 175.4705303667, "45"], +[-37.9129758667, 175.4706118, "46"], +[-37.9126359667, 175.4707644, "47"], +[-37.91226225, 175.47106665, "49"], +[-37.9130937833, 175.4709588833, "50"], +[-37.9131644667, 175.4711523, "52"], +[-37.9132299667, 175.4713462167, "60"], +[-37.9127690833, 175.4712279667, "53"], +[-37.9133607167, 175.4730695833, "65"], +[-37.91367805, 175.4728816667, "66"], +[-37.9134211, 175.4732760667, "67"], +[-37.9137477833, 175.4731176, "68"], +[-37.9138932333, 175.4736511667, "70"], +[-37.9135950667, 175.4738879833, "71"], +[-37.9139430167, 175.4737982333, "72"], +[-37.9136486, 175.4740868667, "73"], +[-37.91400415, 175.4740125833, "74"], +[-37.9140350333, 175.4741693833, "76"], +[-37.91432385, 175.475081, "82"], +[-37.9139975333, 175.47523055, "83"], +[-37.9143889667, 175.47526065, "84"], +[-37.9137640333, 175.47575135, "87"], +[-37.91449875, 175.4756521167, "88"], +[-37.9141123, 175.4756848833, "89"], +[-37.9145492167, 175.4758458667, "90"], +[-37.9141779667, 175.4758650667, "91"], +[-37.9146104833, 175.4760345, "92"], +[-37.9142320333, 175.4760478833, "93"], +[-37.9146642167, 175.47621125, "94"], +[-37.9142896667, 175.4762277667, "95"], +[-37.9147136833, 175.4764402833, "96"], +[-37.9143434167, 175.47639805, "97"], +[-37.9143937167, 175.4765685, "99"], +[-37.91501315, 175.4774403667, "102"], +[-37.9154860667, 175.4774428167, "104"], +[-37.9149432667, 175.4782801, "105"], +[-37.9152651667, 175.47833035, "114"], +[-37.9299333167, 175.55909085, "128"], +[-37.9286782833, 175.5545978, "181"], +[-37.9300747333, 175.5497311333, "3/193"], +[-37.9276611167, 175.5543011333, "192"], +[-37.9305557833, 175.5594630333, "129"], +[-37.9280362, 175.5517895, "2/193"], +[-37.9284764, 175.5616764333, "103"], +[-37.93143935, 175.55390345, "165"], +[-37.9288132, 175.5647016167, "61"], +[-37.9275235, 175.5619954833, "94"], +[-37.93081245, 175.5577222333, "149"], +[-37.9300416667, 175.5566331333, "161"], +[-37.92921255, 175.5684947, "16"], +[-37.9304111667, 175.5673126333, "35"], +[-37.9291729667, 175.5653647333, "55"], +[-37.9289266333, 175.5656691333, "56"], +[-37.92751825, 175.5531413167, "1/193"], +[-37.9323321667, 175.5512635167, "1/165"], +[-37.9045377667, 175.4827770167, "3"], +[-37.9051343333, 175.4829339167, "10"], +[-37.9045625, 175.4832139167, "4"], +[-37.9052854167, 175.4828661667, "12"], +[-37.9045012833, 175.4825234, "3A"], +[-37.9054383, 175.4831963, "14"], +[-37.9048575167, 175.4826078167, "7"], +[-37.9050790667, 175.4825558167, "9A"], +[-37.90496205, 175.4830191667, "8"], +[-37.9050431833, 175.4823803833, "9B"], +[-37.9047063167, 175.4826914667, "5"], +[-37.9051649333, 175.4825182667, "11"], +[-37.9047697333, 175.4831092667, "6"], +[-37.9044120833, 175.4828407333, "1"], +[-37.8987653333, 175.4845873667, "12"], +[-37.89849935, 175.4843253333, "8"], +[-37.8989808833, 175.4835699333, "13"], +[-37.8982670333, 175.4839818167, "5"], +[-37.89792805, 175.4841291833, "1"], +[-37.8990696333, 175.48395625, "18"], +[-37.8983429167, 175.4837488833, "7A"], +[-37.8986908667, 175.4846387167, "10"], +[-37.8985086333, 175.48330895, "9A"], +[-37.8980756833, 175.4840675333, "3"], +[-37.8984572667, 175.4838707, "7"], +[-37.8988333833, 175.48411825, "16"], +[-37.89797735, 175.4845139167, "2"], +[-37.8988639833, 175.4832473, "9B"], +[-37.8985740667, 175.4844548333, "8A"], +[-37.8983953667, 175.4832022167, "9"], +[-37.898132, 175.48448765, "4"], +[-37.8983169333, 175.48441905, "6"], +[-37.898835, 175.4848386, "12A"], +[-37.8982524667, 175.4837739667, "5A"], +[-37.7992683667, 175.4068494, "44D"], +[-37.7973138333, 175.40680895, "37"], +[-37.79798795, 175.4063265667, "41"], +[-37.7983426667, 175.4060350833, "38"], +[-37.7981863, 175.40728095, "45"], +[-37.7985252667, 175.4070533167, "46"], +[-37.7991710833, 175.4079073667, "44A"], +[-37.7994488333, 175.4084595333, "44B"], +[-37.7998703833, 175.4089765833, "44C"], +[-37.7969343667, 175.4040572333, "15"], +[-37.7991115833, 175.406026, "44E"], +[-37.9108972667, 175.4737860333, "1"], +[-37.9109227833, 175.4740157167, "3"], +[-37.9110122167, 175.47419315, "5"], +[-37.91133475, 175.4740478833, "6"], +[-37.91125305, 175.4738936667, "4"], +[-37.9111422333, 175.4736767667, "2"], +[-37.9110952167, 175.47448295, "7"], +[-37.9112131667, 175.4741245667, "8"], +[-37.8804519333, 175.4809153167, "16A"], +[-37.8808188333, 175.4804471833, "8"], +[-37.8805619667, 175.4804252833, "10"], +[-37.8810451833, 175.4809865167, "11"], +[-37.8806955167, 175.4806394, "12"], +[-37.8808969, 175.48108405, "13"], +[-37.8806416, 175.4807763833, "14"], +[-37.8807567, 175.48110125, "15"], +[-37.8806444167, 175.4809707333, "16"], +[-37.8805414833, 175.4812062167, "17"], +[-37.8812994167, 175.4798864833, "1"], +[-37.8810411333, 175.4798769333, "2"], +[-37.8812669, 175.4801150167, "3"], +[-37.8810092333, 175.4800721333, "4"], +[-37.8811867333, 175.48041535, "5"], +[-37.8809235, 175.4802776833, "6"], +[-37.8811437833, 175.4806999667, "7"], +[-37.8811760167, 175.4808741333, "9"], +[-37.8778504833, 175.5246844167, "102"], +[-37.8819230667, 175.52038225, "37"], +[-37.8838481333, 175.5190955, "15"], +[-37.8825636667, 175.5211268, "42"], +[-37.8789988, 175.5217598167, "79"], +[-37.8729074667, 175.5286693667, "167"], +[-37.8760724333, 175.52502585, "127"], +[-37.8745184833, 175.5278637167, "148"], +[-37.8744641, 175.5268869667, "145"], +[-37.8971449, 175.3967563, "82"], +[-37.8943781833, 175.3977300667, "44"], +[-37.9004613, 175.47640765, "13"], +[-37.9004093667, 175.4762205333, "11"], +[-37.9002790833, 175.4769703167, "16"], +[-37.9003597167, 175.4772565, "20"], +[-37.90090275, 175.4763007167, "15"], +[-37.90094715, 175.4764403167, "17"], +[-37.9006751333, 175.4771785333, "27"], +[-37.90107225, 175.4768541333, "25"], +[-37.9001119667, 175.4749271333, "1"], +[-37.9006160667, 175.4769211667, "23"], +[-37.9002628, 175.4757354, "3"], +[-37.9005473333, 175.4767056, "19"], +[-37.9002167333, 175.4750815167, "2"], +[-37.8998862167, 175.4772123833, "18"], +[-37.9003037333, 175.47596475, "9"], +[-37.9000952167, 175.4752010833, "2A"], +[-37.9006044167, 175.475943, "9A"], +[-37.9085414, 175.47102025, "1"], +[-37.90831215, 175.4705452333, "4"], +[-37.9085338333, 175.4706769667, "2"], +[-37.90815565, 175.470603, "5"], +[-37.9082244667, 175.4708460167, "6"], +[-37.9083062, 175.4711227667, "7"], +[-37.9084509833, 175.47045035, "3"], +[-37.8911392333, 175.4583220667, "8"], +[-37.891127, 175.4585561667, "10"], +[-37.8912095833, 175.4581187333, "7"], +[-37.8910674833, 175.4575599333, "2"], +[-37.8913220333, 175.4574411833, "1"], +[-37.89159775, 175.4573200333, "1A"], +[-37.8910451833, 175.4580652333, "6"], +[-37.8913072667, 175.4576702667, "3"], +[-37.8913322, 175.4579054333, "5"], +[-37.8910210167, 175.45784865, "4"], +[-37.8853014, 175.4629564833, "3"], +[-37.88554135, 175.4629736, "2"], +[-37.88541785, 175.46296925, "1"], +[-37.9193531833, 175.54385725, "354"], +[-37.9188882667, 175.5420886333, "355"], +[-37.9192738333, 175.5435102833, "356"], +[-37.9192985333, 175.5429392833, "358"], +[-37.9193181167, 175.54233135, "360"], +[-37.9192005, 175.5403558833, "130"], +[-37.9186817333, 175.5404104667, "109"], +[-37.9199342167, 175.5412764833, "260"], +[-37.9193768333, 175.5412782167, "223"], +[-37.91831485, 175.5400403333, "103"], +[-37.91961875, 175.5408546833, "200"], +[-37.9176805, 175.5413459167, "105"], +[-37.9190955, 175.5408870167, "171"], +[-37.9182861833, 175.5408937167, "107"], +[-37.9195153, 175.5433797, "352"], +[-37.92030865, 175.54192075, "264"], +[-37.920463, 175.5417725, "262"], +[-37.9197269667, 175.5432480167, "350"], +[-37.9197592167, 175.5415707667, "266"], +[-37.9195913167, 175.54231935, "348"], +[-37.9183186167, 175.5393124667, "2"], +[-37.9187989667, 175.53988695, "70"], +[-37.9185694, 175.5418133, "353"], +[-37.8994012, 175.3657659333, "821"], +[-37.89971895, 175.3645648833, "835"], +[-37.9139332167, 175.4090271667, "332"], +[-37.8988464667, 175.3659825667, "828"], +[-37.9022981, 175.38067085, "685"], +[-37.9065350333, 175.4018221167, "434"], +[-37.90028885, 175.3798328667, "697"], +[-37.9084945333, 175.4050759167, "410"], +[-37.89922135, 175.3740981833, "747"], +[-37.9232422167, 175.4145657333, "185"], +[-37.9245097667, 175.41242555, "187"], +[-37.9159503333, 175.40778185, "303"], +[-37.9094665, 175.4069157667, "388"], +[-37.9231998333, 175.4170489, "158"], +[-37.9102601, 175.4072221667, "383"], +[-37.9207001, 175.4065603167, "257"], +[-37.9102264, 175.4082195, "372"], +[-37.9217580667, 175.4087488, "233"], +[-37.9021599833, 175.3911428167, "598"], +[-37.9229502667, 175.4127942667, "197"], +[-37.90296435, 175.3924815167, "583"], +[-37.9255960833, 175.4136194333, "2/187"], +[-37.9245176, 175.4278129833, "59"], +[-37.9249067167, 175.4263146667, "75"], +[-37.92534045, 175.4130770333, "1/187"], +[-37.9077678, 175.4038107833, "424"], +[-37.9244162333, 175.4258990667, "76"], +[-37.9237273333, 175.4194401833, "138"], +[-37.9019339833, 175.3879181167, "625"], +[-37.90920365, 175.4053418167, "397"], +[-37.9057407667, 175.39478875, "540"], +[-37.9243174333, 175.4220341833, "112"], +[-37.8992012333, 175.3666729333, "815"], +[-37.9110874833, 175.4102195833, "360"], +[-37.9027096, 175.3913196333, "591"], +[-37.9011183833, 175.38410915, "655"], +[-37.9234701333, 175.4155696333, "181"], +[-37.90254175, 175.3926162167, "582"], +[-37.92450575, 175.4246711167, "90"], +[-37.9242924167, 175.4289432833, "47"], +[-37.8986079833, 175.3685293333, "801"], +[-37.9030857, 175.3932839, "577"], +[-37.90235535, 175.3894401667, "613"], +[-37.9008578833, 175.3826145667, "675"], +[-37.90071405, 175.3818195, "681"], +[-37.8820639667, 175.4856738333, "4"], +[-37.8811382833, 175.4847224333, "17"], +[-37.8820705, 175.4859065167, "2"], +[-37.8822594167, 175.4854946333, "5"], +[-37.88230695, 175.4860176667, "1"], +[-37.8816572833, 175.4846057667, "14"], +[-37.8822931167, 175.4857413833, "3"], +[-37.8820614833, 175.4849636833, "10"], +[-37.8814784167, 175.4853259333, "20"], +[-37.8820341167, 175.4854254, "6"], +[-37.8814562667, 175.4855579, "22"], +[-37.8820407667, 175.4852060167, "8"], +[-37.88139725, 175.4857370167, "24"], +[-37.8819474, 175.4846312, "12"], +[-37.8812179833, 175.4855291833, "23"], +[-37.8811665833, 175.4849644, "19"], +[-37.8822871333, 175.4850344167, "9"], +[-37.8822664667, 175.4852611, "7"], +[-37.8813914667, 175.4847524, "16"], +[-37.8812347667, 175.4852638167, "21"], +[-37.8814556, 175.48509055, "18"], +[-37.8811484833, 175.4844946, "15"], +[-37.8823244833, 175.4848154333, "11"], +[-37.8823452833, 175.4845833667, "13"], +[-37.9599893167, 175.5018972167, "82"], +[-37.9618358833, 175.4874459667, "18"], +[-37.9618619, 175.50776785, "90"], +[-37.9616283333, 175.4929460167, "64"], +[-37.9611726167, 175.4984393667, "80"], +[-37.9607851, 175.5016190333, "86"], +[-37.9608416167, 175.4971466, "78"], +[-37.9614436333, 175.5080607667, "92"], +[-37.9643050333, 175.4953529167, "2/84"], +[-37.9610803, 175.4864609, "7"], +[-37.9606146667, 175.4939399, "83"], +[-37.9609926167, 175.4857235333, "3"], +[-37.96113465, 175.4948554, "84"], +[-37.9613254333, 175.5047791833, "88"], +[-37.8593059833, 175.5330650333, "10"], +[-37.8596072333, 175.533587, "19"], +[-37.90423375, 175.4844148, "107B"], +[-37.9020309333, 175.4769959167, "49A"], +[-37.9029281167, 175.4805014167, "81A"], +[-37.9016197667, 175.4756437833, "37"], +[-37.90101005, 175.4735379833, "21"], +[-37.9016823667, 175.4760847833, "39A"], +[-37.90178185, 175.4761837333, "41"], +[-37.9011922667, 175.4725514167, "8"], +[-37.9015593833, 175.4738315333, "26"], +[-37.9015446833, 175.473388, "18A"], +[-37.9024291, 175.4783928, "57"], +[-37.9010319, 175.4736316167, "23"], +[-37.9039576333, 175.4835641667, "103"], +[-37.9011953333, 175.4741573333, "29A"], +[-37.9042121, 175.4828802833, "100"], +[-37.9010152, 175.4741578667, "29B"], +[-37.9019761833, 175.4752665167, "34"], +[-37.90256225, 175.4788024667, "71"], +[-37.9031558833, 175.4793385, "68"], +[-37.9043412833, 175.48477025, "109A-109D"], +[-37.9030168667, 175.4803624833, "81"], +[-37.9054432333, 175.48740955, "114"], +[-37.9032955667, 175.4821555167, "93B"], +[-37.9052043, 175.4875160667, "118"], +[-37.9040282167, 175.4838154167, "105"], +[-37.90498365, 175.4875592167, "120"], +[-37.90388715, 175.4833244, "101"], +[-37.90156105, 175.47306285, "1/14-5/14"], +[-37.9028688, 175.4798400167, "77"], +[-37.9017512, 175.4730746667, "16A"], +[-37.9034353833, 175.48239905, "95A"], +[-37.9018501333, 175.47294875, "16B"], +[-37.9065120667, 175.4873521833, "114A"], +[-37.9027523, 175.47799015, "58"], +[-37.9029325833, 175.4801074833, "79"], +[-37.9032525167, 175.4811784, "87"], +[-37.9031822833, 175.4809204, "85"], +[-37.9033394667, 175.4814522333, "89"], +[-37.9011077167, 175.4738625833, "25"], +[-37.9024641, 175.4756984333, "40"], +[-37.9044449, 175.4836965167, "104"], +[-37.9023471833, 175.47810245, "55"], +[-37.9029669667, 175.4787094167, "62"], +[-37.90442275, 175.4850982, "115"], +[-37.9026089, 175.47587495, "44"], +[-37.90264365, 175.4790681667, "73"], +[-37.9035878333, 175.4823534, "95"], +[-37.9024915, 175.4786270833, "67"], +[-37.9031010167, 175.4812452667, "87A"], +[-37.9030982, 175.47913305, "66"], +[-37.9035099167, 175.4821307, "93A"], +[-37.90079465, 175.4741973833, "33"], +[-37.9040185667, 175.48229025, "96"], +[-37.9023384167, 175.4765524833, "50"], +[-37.9022154167, 175.4786401833, "59"], +[-37.9018837333, 175.4765543333, "45"], +[-37.9029163333, 175.4785064167, "60"], +[-37.9022748167, 175.4763478167, "48"], +[-37.9041422, 175.4826398833, "98"], +[-37.9022017333, 175.4761212333, "46A"], +[-37.9034542333, 175.4818904, "91"], +[-37.9019505833, 175.4767386667, "47"], +[-37.9018310833, 175.4763711167, "43"], +[-37.9022245, 175.4761991, "46B"], +[-37.9022058833, 175.4776710667, "51"], +[-37.9011141167, 175.4738904667, "31"], +[-37.90381365, 175.48307595, "99"], +[-37.9013508667, 175.4731568833, "14"], +[-37.9026744667, 175.4776618667, "54"], +[-37.9013012667, 175.4729456, "12"], +[-37.9016709167, 175.4758279833, "39"], +[-37.9012509333, 175.4727291833, "10"], +[-37.902262, 175.4778573167, "53"], +[-37.9011626167, 175.4723885667, "6"], +[-37.9015607167, 175.4753714333, "35"], +[-37.9007910667, 175.47417145, "27"], +[-37.9020738833, 175.47565455, "36"], +[-37.9010502667, 175.4719555, "4"], +[-37.9036689667, 175.4826166, "97"], +[-37.90165275, 175.4742215833, "28"], +[-37.9043576, 175.4834127, "102"], +[-37.9014172833, 175.4734044167, "18"], +[-37.90310965, 175.4806441333, "83"], +[-37.90305305, 175.4810779, "85A"], +[-37.9041825833, 175.4842419667, "107A"], +[-37.9018864667, 175.4749266667, "32"], +[-37.9018503333, 175.47696095, "49"], +[-37.9030326167, 175.47892515, "64"], +[-37.9017621333, 175.4733169667, "20"], +[-37.89705485, 175.4732848667, "5"], +[-37.8972060833, 175.4727957833, "1A"], +[-37.8950392167, 175.47373745, "28B"], +[-37.8965514333, 175.4726139833, "6"], +[-37.8952181167, 175.4744414833, "33B"], +[-37.8952637167, 175.47354965, "26A"], +[-37.8951086667, 175.4742331167, "33A"], +[-37.8966904333, 175.4729455, "11A"], +[-37.8962754333, 175.4733100167, "17"], +[-37.8968641333, 175.4728138667, "1/3-5/3"], +[-37.8949580667, 175.4743396167, "35"], +[-37.8973106167, 175.4729746, "1B"], +[-37.8949376167, 175.47388345, "30"], +[-37.89572315, 175.4732895, "18"], +[-37.8958303167, 175.4731749333, "16"], +[-37.8969656167, 175.4732634, "7"], +[-37.896495, 175.4731159833, "13"], +[-37.8968125667, 175.4731199333, "11B"], +[-37.89640605, 175.4732035667, "15"], +[-37.8952445667, 175.4736735667, "26"], +[-37.8960091167, 175.47303035, "14"], +[-37.896205, 175.47289145, "10"], +[-37.8956152, 175.4738212833, "29"], +[-37.8950829667, 175.4737896, "28A"], +[-37.8955509167, 175.4734385333, "22"], +[-37.8972144833, 175.4729756, "1C"], +[-37.8970069167, 175.4727237833, "1D"], +[-37.8964112667, 175.4727309333, "8"], +[-37.89685155, 175.4723649167, "2"], +[-37.8959909833, 175.4735371333, "19"], +[-37.8968653333, 175.4732429833, "9"], +[-37.8952936, 175.4740853667, "31"], +[-37.8956491833, 175.47335855, "20"], +[-37.8971588833, 175.4725988, "1"], +[-37.95948505, 175.3813743167, "3/362"], +[-37.9267924667, 175.3947664833, "790"], +[-37.95374205, 175.3785110333, "417"], +[-37.9270906333, 175.3962139333, "802"], +[-37.95208085, 175.3790772833, "435"], +[-37.9537863833, 175.37916715, "418"], +[-37.9336977167, 175.3872475333, "660"], +[-37.9370890667, 175.3861055333, "610"], +[-37.9632177167, 175.37745245, "310"], +[-37.9552044167, 175.3775981, "391"], +[-37.95356905, 175.3785904167, "419"], +[-37.9658669167, 175.3737947167, "273"], +[-37.9591853, 175.37834395, "360"], +[-37.95818485, 175.3776341167, "1/362"], +[-37.9264044, 175.3933694833, "770"], +[-37.94279195, 175.3830579333, "541"], +[-37.9358610167, 175.3856405, "623"], +[-37.92604605, 175.39188825, "762"], +[-37.95893715, 175.3798225167, "2/362"], +[-37.9257693333, 175.3904065167, "750"], +[-37.9654268167, 175.3769618333, "308"], +[-37.9323014833, 175.3868321333, "743"], +[-37.93764955, 175.3850314, "599"], +[-37.9095889, 175.4694829333, "13"], +[-37.9099912333, 175.4694063167, "4"], +[-37.9101332, 175.4693430167, "2"], +[-37.90943375, 175.4691617333, "9"], +[-37.90960705, 175.46916755, "7"], +[-37.9100405, 175.4689760667, "1"], +[-37.9095270167, 175.4693311, "11"], +[-37.9098948167, 175.4690437, "3"], +[-37.9097340167, 175.4696952667, "10"], +[-37.9095571, 175.4697117833, "12"], +[-37.90975285, 175.4691024667, "5"], +[-37.9018515667, 175.47956045, "10"], +[-37.9025733333, 175.4796073833, "1A"], +[-37.90234615, 175.4792779, "4"], +[-37.9027908167, 175.4795601333, "1"], +[-37.9024103667, 175.47967745, "3"], +[-37.90205615, 175.4794369167, "8"], +[-37.89827985, 175.4664433333, "25"], +[-37.8990345167, 175.4670508, "11"], +[-37.8989251667, 175.4664513667, "17"], +[-37.8990204833, 175.4665540333, "15"], +[-37.8996123667, 175.4678836167, "10"], +[-37.89873215, 175.4672828, "18"], +[-37.89858465, 175.4666028667, "21"], +[-37.8990743833, 175.4675788, "12A"], +[-37.8984592, 175.4665057, "23"], +[-37.89889965, 175.467451, "12"], +[-37.9002081667, 175.46756315, "1"], +[-37.9001357167, 175.4679316667, "4"], +[-37.898277, 175.46726385, "24"], +[-37.89978315, 175.46793515, "8"], +[-37.8983929667, 175.4669553667, "26"], +[-37.8991940667, 175.4672154167, "9"], +[-37.8980936167, 175.4664998167, "27"], +[-37.8995042, 175.4674747167, "7"], +[-37.898334, 175.46731845, "22"], +[-37.8999632833, 175.4679440333, "6"], +[-37.89794665, 175.4665422333, "29"], +[-37.8988821167, 175.4669019167, "13"], +[-37.8980275167, 175.4668801333, "30"], +[-37.89871525, 175.4676048667, "14"], +[-37.8977558667, 175.4665362333, "31"], +[-37.8986535, 175.4675602667, "16"], +[-37.8979195833, 175.4667739667, "32"], +[-37.89979585, 175.4675336833, "5"], +[-37.8974943167, 175.46652485, "33"], +[-37.8987147333, 175.46672835, "19"], +[-37.8977257333, 175.4666500833, "34"], +[-37.8985690333, 175.4671123833, "20"], +[-37.9003081667, 175.46791995, "2"], +[-37.8981989167, 175.4668991, "28"], +[-37.8999918333, 175.4675733167, "3"], +[-37.9085979, 175.47228295, "6"], +[-37.9082979333, 175.4727952, "1"], +[-37.9084415, 175.4723396833, "4"], +[-37.9085185333, 175.4726990667, "3"], +[-37.90870765, 175.4724272833, "8"], +[-37.9082453167, 175.4725341667, "2"], +[-37.9087162, 175.4725830333, "5"], +[-37.8992527333, 175.46141755, "5A"], +[-37.8974537333, 175.4597499, "30"], +[-37.8990513167, 175.461357, "5"], +[-37.89854655, 175.4618827833, "2"], +[-37.8962418167, 175.4614646667, "69"], +[-37.89729515, 175.4597868833, "32"], +[-37.8986072, 175.4598125833, "18"], +[-37.8990041, 175.4601224, "17"], +[-37.8986801, 175.46007825, "16"], +[-37.8976013667, 175.4596983333, "28"], +[-37.8987992333, 175.4607934667, "10"], +[-37.8961486, 175.4612296167, "65"], +[-37.8987145333, 175.4602998667, "14"], +[-37.8986250667, 175.4616027833, "6"], +[-37.8985372, 175.4606703, "12A"], +[-37.8990944833, 175.4618171167, "3A"], +[-37.8987547833, 175.4605145833, "12"], +[-37.8989327667, 175.46174375, "3"], +[-37.89940475, 175.4614229833, "5B"], +[-37.8981109833, 175.4595815167, "22"], +[-37.8992761667, 175.4612548833, "7A"], +[-37.89858635, 175.4617420167, "4"], +[-37.89615355, 175.4610093667, "63"], +[-37.8960633167, 175.4614357, "67"], +[-37.8970480833, 175.4594701667, "47"], +[-37.8964719167, 175.4610726, "46"], +[-37.89942805, 175.4612639, "7B"], +[-37.8969129333, 175.4595048833, "49"], +[-37.8983810333, 175.4595983, "20"], +[-37.8966503, 175.4601548, "40"], +[-37.8965228167, 175.4605625667, "42"], +[-37.8979410167, 175.4596252, "24"], +[-37.89698365, 175.45986105, "36"], +[-37.89909445, 175.46094265, "9"], +[-37.8990747, 175.4611943333, "7"], +[-37.8968194333, 175.4598978167, "38"], +[-37.8990957833, 175.4607578667, "11"], +[-37.8993121167, 175.4605309833, "13A"], +[-37.8993347667, 175.4606526667, "11A"], +[-37.8977427333, 175.4596749667, "26"], +[-37.8964422833, 175.4608866833, "44"], +[-37.897148, 175.4598171667, "34"], +[-37.8964457667, 175.4614839667, "50"], +[-37.8965226, 175.4613232333, "48"], +[-37.89666225, 175.4616268167, "50A"], +[-37.8967215667, 175.4614938667, "48A"], +[-37.8961699833, 175.4606764833, "61"], +[-37.8990274167, 175.4594845333, "21A"], +[-37.8978044833, 175.4592938, "37"], +[-37.89765145, 175.45932785, "39"], +[-37.8972011167, 175.4594360833, "45"], +[-37.89748945, 175.45936165, "41"], +[-37.8973585333, 175.4594078333, "43"], +[-37.8989135833, 175.4593674167, "23A"], +[-37.8982502167, 175.4591910333, "31"], +[-37.8980929167, 175.4592136833, "33"], +[-37.8979576667, 175.4592540667, "35"], +[-37.8987865, 175.459442, "23"], +[-37.8983624667, 175.4591781333, "29"], +[-37.89859365, 175.4592542667, "25"], +[-37.8984648833, 175.4592043833, "27"], +[-37.89599285, 175.4605853833, "61A"], +[-37.8967193667, 175.4595488167, "51"], +[-37.89895945, 175.45991735, "19"], +[-37.8988903667, 175.4596039833, "21"], +[-37.8991762833, 175.4598346833, "19A"], +[-37.8990309833, 175.4603212, "15"], +[-37.8992306667, 175.4600061667, "17A"], +[-37.8990798333, 175.46053775, "13"], +[-37.8960234, 175.46042255, "59A"], +[-37.8961819167, 175.4595465333, "55A"], +[-37.8965562167, 175.4596334167, "53"], +[-37.8962467833, 175.4604475, "59"], +[-37.8961687167, 175.459936, "57A"], +[-37.8963601167, 175.4599881167, "57"], +[-37.8964266, 175.4598209333, "55"], +[-37.89876895, 175.4610164333, "8"], +[-37.89888655, 175.46191985, "1"], +[-37.8992657, 175.4618445667, "3B"], +[-37.89942775, 175.46177925, "3C"], +[-37.8994213333, 175.461939, "3D"], +[-37.8877845667, 175.4769104167, "15A"], +[-37.8884691333, 175.47652905, "9"], +[-37.8876236833, 175.4762465333, "14"], +[-37.8881092667, 175.4765359833, "11"], +[-37.8870282333, 175.47689615, "21"], +[-37.8878168667, 175.4761862, "12"], +[-37.8869641167, 175.4766908333, "20"], +[-37.88876965, 175.4761694167, "7"], +[-37.8866340667, 175.4762948167, "20D"], +[-37.8875209833, 175.4767726667, "17"], +[-37.8878835333, 175.4766054, "13"], +[-37.8870823167, 175.4763955, "18"], +[-37.8885070833, 175.4758756667, "6"], +[-37.8880108, 175.4760921833, "10"], +[-37.8888735667, 175.4758855333, "5"], +[-37.8879635, 175.4768245333, "13A"], +[-37.8890102, 175.4753934667, "1"], +[-37.887397, 175.4763382, "16"], +[-37.8867165333, 175.4763817833, "20C"], +[-37.8881819, 175.4760513167, "8"], +[-37.886801, 175.4764408667, "20B"], +[-37.8873439167, 175.4769787167, "19A"], +[-37.88688675, 175.47651985, "20A"], +[-37.8872187, 175.4769650667, "19"], +[-37.8874603333, 175.4770461667, "19B"], +[-37.8877107667, 175.4766732833, "15"], +[-37.9028793667, 175.4694345, "9"], +[-37.9027742, 175.4691508167, "5"], +[-37.9027706333, 175.46934705, "7"], +[-37.9030670833, 175.4689651833, "4"], +[-37.903068, 175.4692231333, "6"], +[-37.90282975, 175.4689251167, "2"], +[-37.9030033, 175.4694327333, "8"], +[-37.7979216167, 175.3709623333, "40"], +[-37.7901529, 175.3755824, "144"], +[-37.7907598333, 175.3744419, "134"], +[-37.7937929667, 175.3664199167, "59C"], +[-37.79439395, 175.3674624167, "59B"], +[-37.7944289667, 175.3725634167, "82A"], +[-37.7904513167, 175.3738425333, "131"], +[-37.794607, 175.3745403833, "82B"], +[-37.7921551167, 175.3768403, "132"], +[-37.7926399833, 175.3722763, "102"], +[-37.7967557, 175.3729791333, "60A"], +[-37.7921326333, 175.37322975, "110"], +[-37.8012874, 175.3703331, "14"], +[-37.7948232167, 175.3716246, "74"], +[-37.7979944667, 175.3703715167, "35"], +[-37.7956465, 175.3714636167, "66"], +[-37.7911951833, 175.3732412833, "123B"], +[-37.7987651833, 175.3708161667, "32"], +[-37.79171095, 175.3736367667, "112"], +[-37.7976371833, 175.3704513833, "41"], +[-37.7911877333, 175.3732945667, "123A"], +[-37.7913029167, 175.37306835, "121"], +[-37.7906186667, 175.3755869, "140"], +[-37.7931244667, 175.3712613167, "93A"], +[-37.7974290667, 175.3711039667, "42"], +[-37.7936148167, 175.3719375667, "84"], +[-37.8005517667, 175.3700387, "9"], +[-37.7938986667, 175.3710440333, "77"], +[-37.7965492333, 175.3713085167, "54"], +[-37.8001176167, 175.3701064333, "13"], +[-37.7930191667, 175.37129215, "93B"], +[-37.7926151667, 175.37155955, "99A"], +[-37.7950692833, 175.3686159167, "59A"], +[-37.7969088, 175.37462925, "60B"], +[-37.7951773167, 175.37087185, "75"], +[-37.7921505, 175.3713529333, "99B"], +[-37.7904565167, 175.3749809333, "138"], +[-37.8006982167, 175.3700011, "7"], +[-37.7991912, 175.3699700833, "29"], +[-37.7967847667, 175.3705662167, "47"], +[-37.792296, 175.3720602333, "99C"], +[-37.7980087167, 175.36967245, "31"], +[-37.7982152833, 175.3709274, "34"], +[-37.9155702167, 175.4723301167, "4"], +[-37.9159029, 175.4721897167, "8"], +[-37.9157610833, 175.4726929667, "3"], +[-37.9160956333, 175.4725375333, "7"], +[-37.9153328, 175.4724436667, "2"], +[-37.9164312667, 175.4723669167, "11"], +[-37.9165995, 175.4722833833, "13"], +[-37.9162671833, 175.4724523333, "9"], +[-37.9162124833, 175.4720273, "12"], +[-37.9160704833, 175.4720950333, "10"], +[-37.9170187667, 175.4717177667, "22"], +[-37.9164956667, 175.4718994167, "16"], +[-37.9163615667, 175.4719599333, "14"], +[-37.9155396833, 175.4728079667, "1"], +[-37.9157325833, 175.4722579833, "6"], +[-37.9159316, 175.47261835, "5"], +[-37.8914888167, 175.4620999667, "21"], +[-37.8837548, 175.4623328, "77B"], +[-37.8930618833, 175.4622745, "11"], +[-37.8852888667, 175.46116795, "76"], +[-37.8913069667, 175.4621727167, "23"], +[-37.8839160167, 175.4615298167, "75"], +[-37.8883285167, 175.4618738833, "47"], +[-37.8858521667, 175.46093185, "68B"], +[-37.8853005333, 175.4610670333, "76A"], +[-37.88383285, 175.4621270167, "75A"], +[-37.8823235167, 175.4605504833, "110A"], +[-37.8914899333, 175.46174725, "22"], +[-37.8818567333, 175.4608746167, "116"], +[-37.88353235, 175.4618320333, "77A"], +[-37.88134175, 175.4613161333, "95"], +[-37.8879809, 175.4618373667, "49"], +[-37.88152115, 175.46131485, "93"], +[-37.8885148667, 175.4618976167, "45"], +[-37.8872325667, 175.4613256333, "54"], +[-37.8877582, 175.4620199, "51A"], +[-37.8837208833, 175.4615252, "77"], +[-37.8879695167, 175.4611445833, "50A"], +[-37.8933130333, 175.46192685, "6"], +[-37.88794035, 175.46146015, "50"], +[-37.8911399667, 175.4621445, "25"], +[-37.8927127, 175.4625991167, "15"], +[-37.8898722833, 175.4620120667, "37"], +[-37.8817498333, 175.4605830833, "118A"], +[-37.8856498167, 175.4611874667, "70"], +[-37.8818152333, 175.4605837833, "118B"], +[-37.8834546167, 175.4619323333, "1/79-3/79"], +[-37.8817077833, 175.46087495, "120"], +[-37.88566165, 175.4608763667, "70B"], +[-37.8881064833, 175.4614714667, "48"], +[-37.8883276833, 175.4614909, "46"], +[-37.8900726, 175.4616307167, "34"], +[-37.8824921167, 175.4614109333, "85"], +[-37.8902574, 175.4620445833, "33"], +[-37.8821857333, 175.4613799, "89"], +[-37.8909901, 175.4620973667, "27"], +[-37.8906249333, 175.4624066333, "31A"], +[-37.8909031667, 175.4623998167, "27A"], +[-37.8823715333, 175.4609577, "110"], +[-37.8885618333, 175.4615104, "44"], +[-37.8907907, 175.4624375833, "29A"], +[-37.8911051167, 175.4615235333, "26A"], +[-37.8912843667, 175.46171725, "24"], +[-37.88775155, 175.4618187333, "51"], +[-37.88202465, 175.4608939, "114"], +[-37.8877833167, 175.4614137, "52"], +[-37.8907810833, 175.462108, "29"], +[-37.8910314667, 175.4617401833, "26"], +[-37.882292, 175.4613977333, "87"], +[-37.8906141333, 175.4621064667, "31"], +[-37.8892757667, 175.4615758167, "38"], +[-37.8904495, 175.4624898833, "33B"], +[-37.8868235333, 175.461296, "58"], +[-37.8904039167, 175.4622297, "33A"], +[-37.8826623167, 175.4609461833, "106"], +[-37.89295465, 175.4615430167, "14B"], +[-37.8907016, 175.46165145, "28"], +[-37.89291045, 175.4618812167, "14"], +[-37.8854757, 175.461181, "74"], +[-37.8930916667, 175.46189575, "12"], +[-37.8856999, 175.4605845, "70A"], +[-37.8928368667, 175.4622630833, "13"], +[-37.8899615833, 175.4616178167, "36"], +[-37.8925096667, 175.4618395167, "16A"], +[-37.8927205667, 175.4618461, "16"], +[-37.8925576333, 175.4622484333, "17"], +[-37.8887964167, 175.4615352, "42"], +[-37.8887897667, 175.4619157667, "43"], +[-37.8813160833, 175.46082205, "124"], +[-37.88148945, 175.46084125, "122"], +[-37.8822301, 175.4605952667, "112B"], +[-37.8821928667, 175.4609133167, "112A"], +[-37.8825255, 175.4609447167, "108"], +[-37.886356, 175.4607633833, "62A"], +[-37.88384855, 175.46107535, "84"], +[-37.8844810833, 175.46111955, "78"], +[-37.8865957833, 175.4612863167, "60"], +[-37.8870465333, 175.4613338333, "56"], +[-37.8840136833, 175.4610932, "82"], +[-37.8840612333, 175.4615617667, "73"], +[-37.8858403667, 175.4612416667, "68A"], +[-37.8863992833, 175.4612464333, "62"], +[-37.88602145, 175.4612203, "66"], +[-37.8862464, 175.4607918667, "64A"], +[-37.8859472, 175.4606057333, "66A"], +[-37.88617885, 175.4612264667, "64"], +[-37.8841155833, 175.4606926667, "82A"], +[-37.8842170667, 175.46156725, "71"], +[-37.8843494167, 175.4615815167, "69"], +[-37.8845482333, 175.4615789, "61"], +[-37.8832313667, 175.4614822, "81"], +[-37.8833854333, 175.46147585, "79"], +[-37.8842273333, 175.4610982667, "80"], +[-37.8842230833, 175.4607088333, "80A"], +[-37.88898595, 175.4619261, "41"], +[-37.8836924167, 175.4610583833, "86"], +[-37.88897595, 175.4615556167, "40"], +[-37.8835485833, 175.4610374, "88"], +[-37.8812029, 175.4608328833, "126"], +[-37.8834193333, 175.4610251833, "90"], +[-37.8174314833, 175.3761889833, "28"], +[-37.8175173333, 175.3745060667, "41A"], +[-37.8189801, 175.3767644333, "19"], +[-37.81721685, 175.3746944667, "40A"], +[-37.8184217833, 175.3785756333, "7"], +[-37.81727655, 175.3739209, "41C"], +[-37.8169354333, 175.3751527667, "40B"], +[-37.8183142667, 175.3745782, "39"], +[-37.8177220333, 175.3774063833, "18"], +[-37.8181192333, 175.3734650333, "41B"], +[-37.8182567, 175.37774445, "15"], +[-37.8177787833, 175.3756114, "31"], +[-37.8171698, 175.37896375, "14"], +[-37.8179103833, 175.3762068167, "27"], +[-37.81816045, 175.3773152167, "17"], +[-37.8187562833, 175.3765890167, "21"], +[-37.81804885, 175.3788571, "6"], +[-37.8184971667, 175.3750758833, "49"], +[-37.8173303, 175.3796556667, "12"], +[-37.8177653667, 175.3776830167, "16"], +[-37.81610655, 175.3744603333, "40C"], +[-37.8175659833, 175.3767630167, "24"], +[-37.8857427167, 175.4668167833, "6"], +[-37.8842291667, 175.46713325, "21"], +[-37.88552105, 175.46728075, "7"], +[-37.8822557833, 175.4671910833, "41A"], +[-37.88573115, 175.4665300333, "6A"], +[-37.8841256167, 175.4667261, "22"], +[-37.8855689, 175.4668563667, "8"], +[-37.8833609167, 175.4664140667, "30A"], +[-37.8819612833, 175.4662849167, "42A"], +[-37.8854916667, 175.4665621167, "8A"], +[-37.88355305, 175.4666830167, "28"], +[-37.8858997833, 175.46683345, "2"], +[-37.88529365, 175.4675717333, "9A"], +[-37.8853087167, 175.46724515, "9"], +[-37.8858362167, 175.4668311, "4"], +[-37.88501735, 175.4672261167, "13"], +[-37.88173245, 175.4665125833, "44"], +[-37.8819903833, 175.4669395333, "43"], +[-37.8819599, 175.46652035, "42"], +[-37.8821801667, 175.4669412, "41"], +[-37.8820951, 175.4665340833, "40"], +[-37.8822636667, 175.4665534167, "36"], +[-37.8836934333, 175.4671131833, "27"], +[-37.8817733333, 175.4669241, "45"], +[-37.8811819833, 175.46709535, "49A"], +[-37.8812991667, 175.4664858167, "48"], +[-37.8815565333, 175.4668967167, "47"], +[-37.8815367, 175.46651585, "46"], +[-37.8837635333, 175.4667121, "26"], +[-37.8811047333, 175.466856, "51"], +[-37.8810985833, 175.4664679167, "50"], +[-37.8813315833, 175.46687885, "49"], +[-37.8838189667, 175.4665006, "26A"], +[-37.8840672667, 175.46711675, "23"], +[-37.8838811667, 175.4670993333, "25"], +[-37.8839458833, 175.4667205667, "24"], +[-37.8832529, 175.4673047167, "33A"], +[-37.88359175, 175.4664604333, "28A"], +[-37.8830642667, 175.4666342167, "32"], +[-37.8835364167, 175.4675321, "29"], +[-37.8834683333, 175.4670743667, "31"], +[-37.883317, 175.4666640833, "30"], +[-37.8851499333, 175.4667468, "12"], +[-37.8851338167, 175.46723935, "11"], +[-37.8828958667, 175.4666283167, "34"], +[-37.88325825, 175.46707095, "33"], +[-37.8853570333, 175.4667731167, "10"], +[-37.88494775, 175.4672146833, "15"], +[-37.8854012333, 175.466548, "10A"], +[-37.88298215, 175.4670794667, "35"], +[-37.9137448167, 175.4769976167, "9"], +[-37.9139995, 175.4769421167, "1"], +[-37.9137195833, 175.4762766333, "5"], +[-37.9136874333, 175.4768144167, "8"], +[-37.9138555833, 175.4762229167, "4"], +[-37.9139553833, 175.4765034, "3"], +[-37.9139429833, 175.4767303, "2"], +[-37.91357485, 175.4763857833, "6"], +[-37.91363055, 175.47658545, "7"], +[-37.9070534333, 175.4673664667, "26"], +[-37.9051596, 175.4668419167, "13"], +[-37.9107910167, 175.4652498167, "70"], +[-37.9049454167, 175.4681745833, "8"], +[-37.9086697833, 175.466192, "46A"], +[-37.9049889333, 175.4680154333, "8A"], +[-37.90506145, 175.4674941833, "7"], +[-37.9106372333, 175.4652995167, "68"], +[-37.9083611333, 175.4663507667, "42"], +[-37.9062177333, 175.4681393167, "16B"], +[-37.91076535, 175.46463305, "71"], +[-37.90610465, 175.46785555, "16A"], +[-37.9054751167, 175.4677389667, "12"], +[-37.9058089833, 175.4680032167, "14A"], +[-37.9054853667, 175.4672854833, "17"], +[-37.90856345, 175.4665805333, "44"], +[-37.9088263, 175.4661217333, "48"], +[-37.9101238833, 175.4655415667, "62"], +[-37.908529, 175.4662483167, "46"], +[-37.9056721833, 175.46797, "12A"], +[-37.9057461833, 175.4675941167, "14"], +[-37.90600145, 175.4670439167, "23"], +[-37.9076178833, 175.4673104167, "34A"], +[-37.90463895, 175.46807945, "3"], +[-37.9049602667, 175.4669330833, "9"], +[-37.90673685, 175.4671040833, "22"], +[-37.907098, 175.4676191667, "32"], +[-37.9076081833, 175.46671515, "38"], +[-37.90916225, 175.4659552667, "52"], +[-37.90454345, 175.4684433, "1"], +[-37.90512805, 175.4671995667, "11A"], +[-37.9059193, 175.4674994, "16"], +[-37.9073133167, 175.4668277667, "34"], +[-37.9102952667, 175.4654520833, "64"], +[-37.9092774833, 175.46591125, "52A"], +[-37.9052165167, 175.4674315333, "11"], +[-37.9053672, 175.4671046, "17B"], +[-37.9048409833, 175.46859545, "4"], +[-37.905671, 175.46720995, "19"], +[-37.9048928333, 175.4683727167, "6"], +[-37.9058366833, 175.4671128, "21"], +[-37.9071612667, 175.4678683, "30"], +[-37.9089840667, 175.4660592667, "50"], +[-37.90527545, 175.4667925333, "15"], +[-37.90715615, 175.466917, "32A"], +[-37.9061779167, 175.4669647333, "25"], +[-37.9077133333, 175.4674576833, "36A"], +[-37.9104661667, 175.4653805167, "66"], +[-37.9051668667, 175.4678703167, "10"], +[-37.89370395, 175.47271155, "11"], +[-37.8921716167, 175.4721017, "26"], +[-37.8935424167, 175.4728224833, "13A"], +[-37.8935212, 175.4727174167, "13"], +[-37.8937888333, 175.4722797667, "12"], +[-37.89444175, 175.4723851667, "2"], +[-37.89426415, 175.4731979833, "8/7"], +[-37.8944458167, 175.4722873333, "1/2"], +[-37.8940236833, 175.4722967667, "8"], +[-37.8944464167, 175.47217745, "2/2"], +[-37.89289535, 175.4722046, "20"], +[-37.8940564, 175.4721777667, "1/8"], +[-37.89387485, 175.47305145, "9A"], +[-37.8941962833, 175.4734008333, "7/7"], +[-37.8940251167, 175.4729672167, "3/7"], +[-37.8940147167, 175.4733695833, "5/7"], +[-37.8927664833, 175.4726649, "21"], +[-37.8940957833, 175.4733820167, "6/7"], +[-37.8942063833, 175.47275275, "11/7"], +[-37.8938730167, 175.4727318667, "9"], +[-37.8940384833, 175.4727499833, "1/7"], +[-37.8916949833, 175.47255425, "29"], +[-37.8940345667, 175.4728609333, "2/7"], +[-37.8920309, 175.4720907167, "28"], +[-37.8942669167, 175.4723162, "6"], +[-37.8920657333, 175.4725813667, "27"], +[-37.8924789, 175.4721364167, "22"], +[-37.89162635, 175.4720620167, "34"], +[-37.89420475, 175.4728706, "10/7"], +[-37.8924279, 175.4726186167, "25"], +[-37.89427175, 175.4730613833, "9/7"], +[-37.8917478833, 175.4720685333, "32"], +[-37.89359425, 175.4722612333, "14"], +[-37.8919238167, 175.4717851167, "30A"], +[-37.89358685, 175.47297855, "11A"], +[-37.8917815667, 175.4717468667, "32A"], +[-37.8940195667, 175.4730878667, "4/7"], +[-37.89188475, 175.4720793833, "30"], +[-37.8766258167, 175.4531757333, "63"], +[-37.8793250667, 175.4531694667, "33"], +[-37.87557575, 175.4531778333, "71"], +[-37.8649285167, 175.4537918667, "194"], +[-37.8758193333, 175.4536709167, "72"], +[-37.8730099333, 175.4536885167, "104"], +[-37.87537995, 175.4536875833, "76"], +[-37.866365, 175.4537908667, "182"], +[-37.8773983, 175.4531370667, "53"], +[-37.8663474333, 175.4540325167, "182A"], +[-37.8765353, 175.4536952667, "68"], +[-37.8633266833, 175.4532383833, "213"], +[-37.8748418833, 175.4536900667, "86"], +[-37.8723979667, 175.4536811667, "112"], +[-37.8789557167, 175.4531799167, "37"], +[-37.8744338333, 175.45543435, "88"], +[-37.8780606333, 175.4531695167, "49"], +[-37.8613876667, 175.4533495833, "1/233"], +[-37.8779126333, 175.449236, "4/51"], +[-37.86132765, 175.4526138667, "2/233"], +[-37.8779974333, 175.45063155, "3/51"], +[-37.8629783167, 175.4532700667, "215"], +[-37.8777104167, 175.4515755167, "2/51"], +[-37.8811745, 175.4555028167, "4"], +[-37.8779778833, 175.4521171, "1/51"], +[-37.8619675333, 175.4532946667, "227"], +[-37.8786639833, 175.4493194167, "5/51"], +[-37.88057795, 175.4544579, "18"], +[-37.86531615, 175.4531001833, "191"], +[-37.8655207167, 175.4536965333, "186"], +[-37.8646614333, 175.4537639667, "198"], +[-37.8647871333, 175.4541422833, "196"], +[-37.86771765, 175.4537268, "162"], +[-37.8711387333, 175.4536879167, "124"], +[-37.8611343167, 175.45330145, "235"], +[-37.8624900167, 175.4532548833, "221"], +[-37.86872715, 175.4532476, "151"], +[-37.8703843667, 175.4532525, "131"], +[-37.8692643833, 175.45371825, "150"], +[-37.8699453833, 175.4537083667, "142"], +[-37.88075845, 175.4546889, "14"], +[-37.8810108833, 175.45510075, "8"], +[-37.8808800833, 175.45486695, "12"], +[-37.8810951, 175.45531175, "6"], +[-37.8812414333, 175.4557114167, "2"], +[-37.8737279833, 175.4537149833, "90"], +[-37.8804315833, 175.4547993833, "2/16"], +[-37.8806571333, 175.4551276833, "2/10"], +[-37.8807296667, 175.4552756333, "1/10"], +[-37.8805078333, 175.4548978667, "1/16"], +[-37.8305417667, 175.4407137167, "106"], +[-37.8305758833, 175.4444438667, "78"], +[-37.8305754, 175.45156825, "18"], +[-37.83063965, 175.45322105, "2"], +[-37.8305728333, 175.4437875667, "82"], +[-37.8690497667, 175.4740093167, "7"], +[-37.86952375, 175.4790699, "60"], +[-37.8713118667, 175.4763685667, "42"], +[-37.8690602667, 175.4767549167, "47"], +[-37.8957648333, 175.4773709167, "4A"], +[-37.8971239167, 175.47716665, "16"], +[-37.89663135, 175.4774846833, "10"], +[-37.8972863333, 175.4770748833, "18"], +[-37.8969474167, 175.4772745667, "14"], +[-37.8963529167, 175.4776375333, "8"], +[-37.8982169667, 175.4746382667, "44"], +[-37.8958142, 175.4771743333, "4B"], +[-37.89577995, 175.4770061667, "4C"], +[-37.8956352667, 175.4772386167, "4"], +[-37.89679325, 175.4773878, "12"], +[-37.8956875333, 175.4769206, "4D"], +[-37.8955368, 175.4771246333, "2"], +[-37.9075869833, 175.4681207167, "5"], +[-37.9076935833, 175.4688911, "1"], +[-37.9078046833, 175.4683225333, "7"], +[-37.9077261333, 175.4681354833, "6"], +[-37.9078473333, 175.4685627833, "8"], +[-37.9075310167, 175.46846565, "3"], +[-37.9079180333, 175.46879245, "9"], +[-37.90762245, 175.4686683, "2"], +[-37.9074934833, 175.4682448, "4"], +[-37.8065385167, 175.3969116167, "26"], +[-37.8052316167, 175.3947853833, "1"], +[-37.8054979333, 175.3951090333, "5"], +[-37.8061355333, 175.3955903667, "12"], +[-37.8057016167, 175.3950258333, "6"], +[-37.8059893667, 175.3953958833, "10"], +[-37.8068311167, 175.3965807, "22"], +[-37.80583815, 175.3952011167, "8"], +[-37.8067129833, 175.3967156, "24"], +[-37.8062816833, 175.39578495, "14"], +[-37.8056595, 175.3953378, "7"], +[-37.80642775, 175.3959857667, "16"], +[-37.8067297167, 175.39640035, "20"], +[-37.8063663, 175.3962931167, "13"], +[-37.8053626333, 175.3949338333, "3"], +[-37.8065366, 175.3965265333, "15"], +[-37.80539065, 175.394573, "2"], +[-37.8065884, 175.39621225, "18"], +[-37.8055506833, 175.39481855, "4"], +[-37.8062047667, 175.3961045, "11"], +[-37.91218215, 175.4768794167, "8"], +[-37.9120288167, 175.4765747, "7B"], +[-37.9122875167, 175.4765784167, "3"], +[-37.9123338833, 175.4771329833, "6B"], +[-37.9120254167, 175.4764380167, "5"], +[-37.91246155, 175.4769255333, "4"], +[-37.9125897333, 175.4768015, "2"], +[-37.9121711333, 175.4767164667, "7"], +[-37.9122827167, 175.4769958667, "6A"], +[-37.8527505833, 175.53393255, "617"], +[-37.8826752167, 175.5025520333, "9"], +[-37.81291845, 175.5447496, "1161"], +[-37.8788362167, 175.510149, "1/88"], +[-37.81259405, 175.5447376, "1163"], +[-37.8763215167, 175.5110032333, "115"], +[-37.8751193167, 175.51276665, "134"], +[-37.86748695, 175.5219444167, "272"], +[-37.8793489167, 175.5093666167, "80"], +[-37.8249454833, 175.5459290333, "1021"], +[-37.87870795, 175.5090378667, "81"], +[-37.8802461667, 175.5019911, "1/37"], +[-37.8790009333, 175.5095332, "84"], +[-37.8675435167, 175.51850165, "243"], +[-37.8783544, 175.5094524833, "97"], +[-37.8785864667, 175.5105412333, "2/88"], +[-37.8565379167, 175.5340265667, "567"], +[-37.8790696167, 175.5117932, "98"], +[-37.8579882167, 175.5332226833, "557"], +[-37.8228546333, 175.5478497667, "1043"], +[-37.8111895167, 175.5446341667, "1177"], +[-37.8670294, 175.5209776667, "265"], +[-37.8111449, 175.5438866, "1179"], +[-37.8810532167, 175.50530935, "39"], +[-37.8107934667, 175.5438973833, "1183"], +[-37.8766940333, 175.51263885, "2/110"], +[-37.8094178833, 175.5439488333, "1195"], +[-37.8484587833, 175.5342090667, "663"], +[-37.81064835, 175.5445837167, "1187"], +[-37.8744863, 175.5115857333, "139"], +[-37.8099838, 175.54453645, "1191"], +[-37.8787071333, 175.5051437667, "2/39"], +[-37.8092644167, 175.54453125, "1199"], +[-37.8361982667, 175.5463852167, "890"], +[-37.8389412667, 175.5464548, "858"], +[-37.8789616667, 175.5121996833, "100"], +[-37.8336715167, 175.5454231, "919"], +[-37.8289189, 175.5478054833, "986"], +[-37.8323492833, 175.5460591, "928"], +[-37.8320521833, 175.5459855, "930"], +[-37.8251348833, 175.5480670667, "1016"], +[-37.8561845167, 175.5327450833, "581"], +[-37.8262207333, 175.5482595333, "996"], +[-37.8083614833, 175.5449377833, "1211"], +[-37.8172147667, 175.5457622333, "1107"], +[-37.8461716667, 175.5348015333, "688"], +[-37.8159882, 175.5454072833, "1119"], +[-37.8801261, 175.5011647833, "37"], +[-37.8788507333, 175.5071659, "5/39"], +[-37.86353225, 175.5262979167, "392"], +[-37.8087557667, 175.5460182, "1208"], +[-37.8799249, 175.50989025, "70"], +[-37.8087391167, 175.5453725167, "1206"], +[-37.8368114333, 175.5449542167, "881"], +[-37.8278101833, 175.5479474667, "990"], +[-37.8144593833, 175.5446729333, "1143"], +[-37.8763691667, 175.51261455, "1/110"], +[-37.8141157667, 175.5446296, "1145"], +[-37.8675668333, 175.5223205667, "276"], +[-37.86875635, 175.5151021667, "207"], +[-37.8785670167, 175.5058547667, "3/39"], +[-37.8766803833, 175.5140811167, "6/110"], +[-37.86696285, 175.5258656667, "302"], +[-37.81135475, 175.5425439833, "1/1181"], +[-37.8809864833, 175.5057107, "8/39"], +[-37.8788209, 175.5065659833, "4/39"], +[-37.8792938833, 175.5065692167, "7/39"], +[-37.8139674667, 175.5456240667, "1146"], +[-37.8611906333, 175.5269748, "432"], +[-37.8402324, 175.5411414667, "809"], +[-37.82010205, 175.5480512333, "1070"], +[-37.8771378833, 175.51029235, "1/103"], +[-37.8213269333, 175.54882125, "1052"], +[-37.8089942, 175.5452704833, "1202"], +[-37.8212039667, 175.5500653333, "1/1052"], +[-37.86704345, 175.5199686167, "257"], +[-37.8211860833, 175.55188125, "2/1052"], +[-37.8732234167, 175.51193365, "151"], +[-37.8231706667, 175.5483519, "1040"], +[-37.8129427333, 175.54544965, "1158"], +[-37.8398410833, 175.5429798, "817"], +[-37.8774619667, 175.5081401333, "4/103"], +[-37.8413094333, 175.5414880333, "796"], +[-37.8734242333, 175.5114266833, "149"], +[-37.8116329167, 175.54465065, "1173"], +[-37.8790814667, 175.505419, "6/39"], +[-37.8402537, 175.54399925, "830"], +[-37.87415495, 175.5111152667, "1/139"], +[-37.8090223833, 175.5446570333, "1201"], +[-37.8809561333, 175.5036574833, "35"], +[-37.8085440167, 175.5454961667, "1210"], +[-37.8413132, 175.5395747333, "773"], +[-37.87539025, 175.5146704167, "1/138"], +[-37.83847385, 175.54218775, "2/815"], +[-37.87580405, 175.5118973167, "126"], +[-37.86917495, 175.5157794167, "1/208"], +[-37.8082772667, 175.5455867333, "1212"], +[-37.8096694667, 175.5450804833, "1194"], +[-37.8787073667, 175.5083375, "79"], +[-37.8763409333, 175.51340955, "3/110"], +[-37.8080369167, 175.5450349667, "1213"], +[-37.8093666167, 175.5451384833, "1196"], +[-37.82245505, 175.5477440333, "1047"], +[-37.8775422667, 175.5104792, "2/103"], +[-37.8236463333, 175.5474525, "1033"], +[-37.8814960667, 175.50479415, "33"], +[-37.8245330667, 175.5471272667, "1023"], +[-37.8403625, 175.5402170167, "1/809"], +[-37.8678366667, 175.5195366167, "254"], +[-37.8790242333, 175.5103504333, "4/88"], +[-37.8218208, 175.5477814333, "1049"], +[-37.8789700833, 175.5084782833, "77/1"], +[-37.8704926333, 175.5137601667, "188"], +[-37.87878565, 175.5106821667, "3/88"], +[-37.871913, 175.5121444333, "163"], +[-37.87933595, 175.5101975333, "6/88"], +[-37.8748227833, 175.5121225, "136"], +[-37.87947495, 175.5108712167, "5/88"], +[-37.8753615167, 175.5127019833, "132"], +[-37.8109761333, 175.5426080167, "1181"], +[-37.8773393667, 175.5116264833, "104"], +[-37.8370667667, 175.5458885833, "879"], +[-37.8765559833, 175.5101962833, "103"], +[-37.8253379167, 175.5472683, "989"], +[-37.8793315833, 175.5086546167, "77"], +[-37.8661602, 175.52487915, "316"], +[-37.8776637333, 175.50929225, "3/103"], +[-37.8092819667, 175.5456565833, "2/1200"], +[-37.87534805, 175.5120049833, "128"], +[-37.81204605, 175.5446423333, "1169"], +[-37.8752625833, 175.5140794833, "138"], +[-37.8766464333, 175.5134206667, "4/110"], +[-37.8770230167, 175.5108992333, "113"], +[-37.8406207, 175.5394538167, "2/809"], +[-37.8770699833, 175.5116503167, "106"], +[-37.8122078667, 175.5440270833, "1165"], +[-37.87518925, 175.5112472667, "129"], +[-37.8507412333, 175.5347013833, "633"], +[-37.8759461833, 175.5110732833, "117"], +[-37.8210931833, 175.5477387333, "1055"], +[-37.87555235, 175.5111759667, "127"], +[-37.8180744833, 175.5471867333, "1092"], +[-37.8761638, 175.5118200833, "120"], +[-37.8714445, 175.5188348833, "2/208"], +[-37.8738533, 175.5117649, "141"], +[-37.8083899, 175.5443001833, "1209"], +[-37.8672468667, 175.5243000167, "295"], +[-37.8395333333, 175.54262905, "1/815"], +[-37.8093977833, 175.5456164833, "1/1200"], +[-37.86778915, 175.5240579167, "290"], +[-37.8151683, 175.5450954333, "1133"], +[-37.8676913333, 175.5179285833, "235"], +[-37.87977015, 175.5090145833, "66"], +[-37.8785379333, 175.5043763, "1/39"], +[-37.8764341333, 175.51407215, "5/110"], +[-37.8740516, 175.5125295667, "146"], +[-37.87401495, 175.47760185, "16"], +[-37.8739528333, 175.4764705667, "31"], +[-37.8739846167, 175.4768385667, "33"], +[-37.8748585167, 175.4767720333, "11"], +[-37.8736880333, 175.4772042167, "37"], +[-37.8747492333, 175.4769483667, "9"], +[-37.87503235, 175.4775088667, "3"], +[-37.87489515, 175.4779213833, "6"], +[-37.8748158667, 175.4774378, "5"], +[-37.8750760667, 175.4779026, "4"], +[-37.8746501167, 175.4773401167, "7"], +[-37.8741460667, 175.4765724167, "27"], +[-37.8739166167, 175.477184, "35"], +[-37.8741975833, 175.47717515, "23"], +[-37.8738094, 175.47760075, "18"], +[-37.8749257833, 175.4765688833, "13"], +[-37.8741402667, 175.4763856, "29"], +[-37.8742506833, 175.4775977, "14"], +[-37.8741505, 175.47681925, "25"], +[-37.8747261167, 175.4778583667, "8"], +[-37.8745555, 175.4777541667, "10"], +[-37.8743982667, 175.4777232, "12"], +[-37.87440735, 175.4772111833, "21"], +[-37.8745958667, 175.47674675, "19"], +[-37.8747628333, 175.47645865, "15"], +[-37.8745715333, 175.4764928667, "17"], +[-37.9116880667, 175.4711713833, "3"], +[-37.9116604333, 175.4715114333, "1"], +[-37.9118500667, 175.4714183, "5"], +[-37.9122240667, 175.4713923, "11"], +[-37.9118788833, 175.4710693167, "7"], +[-37.9123174667, 175.4714676167, "10"], +[-37.91227905, 175.4716167167, "8"], +[-37.9117270667, 175.4718080667, "2"], +[-37.91205, 175.4713633167, "9"], +[-37.912161, 175.4717712, "6"], +[-37.8859179333, 175.4582119667, "1"], +[-37.8865885333, 175.4581321667, "6A"], +[-37.88640305, 175.45807455, "6"], +[-37.8860451667, 175.4578916833, "4D"], +[-37.8863091167, 175.45790615, "5"], +[-37.8861527, 175.4579021833, "4A"], +[-37.8859058833, 175.4578780333, "3"], +[-37.8861333333, 175.4577295167, "4B"], +[-37.8859079333, 175.45834695, "1A"], +[-37.8861985, 175.4582370667, "7"], +[-37.8860742333, 175.4577260833, "4C"], +[-37.8858135, 175.4580266333, "2"], +[-37.8856798, 175.4576616167, "3B"], +[-37.8857954333, 175.45773405, "3A"], +[-37.8039755167, 175.3924264333, "588"], +[-37.8024268333, 175.3891336167, "555"], +[-37.80621375, 175.3790952, "476A"], +[-37.8035793667, 175.3898201333, "565"], +[-37.8041731333, 175.3674844, "348"], +[-37.8035751833, 175.38904805, "559"], +[-37.8013125167, 175.390194, "569A"], +[-37.8039518333, 175.3880558333, "550"], +[-37.7993036333, 175.3774681, "447B"], +[-37.80163095, 175.39138825, "577"], +[-37.8035939833, 175.3922268667, "583"], +[-37.8034719167, 175.3864473333, "535A"], +[-37.80612815, 175.3786574833, "476C"], +[-37.80604375, 175.3653441833, "320"], +[-37.8030940833, 175.3837668333, "515"], +[-37.8017065167, 175.37966555, "471"], +[-37.8032808167, 175.3824573833, "496C"], +[-37.8023511333, 175.3675479833, "361"], +[-37.8029974167, 175.38875325, "553B"], +[-37.8013158, 175.3713298333, "400"], +[-37.8069269167, 175.38494245, "522A"], +[-37.8041518333, 175.3666512333, "342"], +[-37.8035926, 175.3904181, "569B"], +[-37.8022781333, 175.3782524667, "450A"], +[-37.8010726667, 175.3710681167, "395"], +[-37.80130715, 175.37668905, "445"], +[-37.8010362667, 175.3712212667, "399"], +[-37.8032196333, 175.36794415, "358"], +[-37.80095265, 175.3727210333, "409"], +[-37.8021615667, 175.3808655833, "481B"], +[-37.80149165, 175.3733540167, "418"], +[-37.8010327833, 175.3739455167, "419"], +[-37.8037261333, 175.3859318333, "530"], +[-37.8019531333, 175.36978095, "382"], +[-37.8035854333, 175.3674296167, "352"], +[-37.8035820667, 175.3681635, "358B"], +[-37.8044532833, 175.3898220167, "562A"], +[-37.8030543167, 175.3681729333, "360"], +[-37.80023085, 175.3753558333, "429B"], +[-37.8029366333, 175.3683441833, "362"], +[-37.8046987, 175.38796795, "548"], +[-37.80282455, 175.3684962, "364"], +[-37.8016347167, 175.3738360667, "420"], +[-37.8031052333, 175.3689649333, "366"], +[-37.8026689, 175.3687241167, "368"], +[-37.8025527333, 175.3689042333, "370"], +[-37.8037381333, 175.3672040667, "350B"], +[-37.8015959333, 175.37030475, "384"], +[-37.8037429667, 175.3861631667, "532"], +[-37.8056256, 175.3854121, "522D"], +[-37.8074032833, 175.37890055, "476D"], +[-37.8033627833, 175.3941313, "601"], +[-37.8035645833, 175.3885777333, "553A"], +[-37.8037265833, 175.3751864333, "438"], +[-37.80393295, 175.3820938333, "496B"], +[-37.8039961667, 175.3937407167, "600"], +[-37.8016335, 175.3785741333, "455B"], +[-37.8028840667, 175.3674978, "357"], +[-37.8009541833, 175.3783785, "455C"], +[-37.8061105, 175.3849712833, "518"], +[-37.8041071, 175.3675672667, "350A"], +[-37.8039732667, 175.3922047667, "586"], +[-37.7970054833, 175.3806949833, "475B"], +[-37.80154115, 175.3776200833, "455A"], +[-37.7968634833, 175.3813122667, "475C"], +[-37.8040230333, 175.3951761833, "610"], +[-37.8004082667, 175.3807690333, "475D"], +[-37.8020559, 175.3804593667, "481A"], +[-37.8029026667, 175.3814678667, "490"], +[-37.79877225, 175.3804673833, "475A"], +[-37.8024990833, 175.3803016, "478"], +[-37.80798195, 175.3848864167, "522B"], +[-37.8032268667, 175.3820611833, "496A"], +[-37.8039424333, 175.3900004667, "566"], +[-37.8055885667, 175.3849529667, "508"], +[-37.8039439833, 175.3902647333, "568"], +[-37.8044673167, 175.3791537667, "476B"], +[-37.8034701, 175.3861407833, "531"], +[-37.80394855, 175.3905212833, "570"], +[-37.8033434667, 175.3677650667, "356"], +[-37.8039541167, 175.3897445, "564"], +[-37.8044864833, 175.3894950833, "562B"], +[-37.8023883667, 175.3792474, "468"], +[-37.8037905667, 175.3868461833, "538"], +[-37.80376065, 175.3848380167, "516"], +[-37.8037788333, 175.3866195333, "536"], +[-37.8013236667, 175.3867703833, "535B"], +[-37.80376085, 175.3863884, "534"], +[-37.8038128667, 175.38531645, "524"], +[-37.8038359, 175.3875590667, "546"], +[-37.8053126, 175.3651698, "328"], +[-37.8038053833, 175.3870689, "540"], +[-37.80589585, 175.3892222167, "560"], +[-37.8035248667, 175.3876434167, "545"], +[-37.8037198, 175.3949872, "609"], +[-37.80381955, 175.38729175, "542"], +[-37.8075598333, 175.3855587, "522C"], +[-37.8039602167, 175.3917614333, "582"], +[-37.80139505, 175.3727005667, "414"], +[-37.8036690667, 175.3910398667, "575"], +[-37.8039518833, 175.3910117167, "574"], +[-37.80395405, 175.3914879333, "580"], +[-37.8002672167, 175.3771908, "447A"], +[-37.8039521833, 175.3907747167, "572"], +[-37.8036402667, 175.3914460167, "579"], +[-37.803952, 175.3912312333, "578"], +[-37.8015263667, 175.3694650333, "383"], +[-37.80400045, 175.3949203833, "608"], +[-37.8039955333, 175.3935219167, "598"], +[-37.8039738167, 175.3926465167, "590"], +[-37.8034657167, 175.3675994, "354"], +[-37.8039642833, 175.3919945, "584"], +[-37.8039832667, 175.3932899167, "596"], +[-37.7988289, 175.3754860833, "429C"], +[-37.80369095, 175.3927310167, "591"], +[-37.80233225, 175.3911433833, "571"], +[-37.8039846667, 175.3930810833, "594"], +[-37.8013068333, 175.37155805, "402"], +[-37.80397775, 175.3928504167, "592"], +[-37.8040068833, 175.3948069833, "608A"], +[-37.8037325167, 175.3941101167, "603"], +[-37.8021858833, 175.3685292167, "369"], +[-37.8039958, 175.3939723167, "602"], +[-37.8048039833, 175.3657911, "336"], +[-37.80368355, 175.39362055, "599"], +[-37.8039906833, 175.3668667833, "344"], +[-37.8037408333, 175.39457725, "607"], +[-37.8040022167, 175.3941957, "604"], +[-37.80357305, 175.3683457167, "358A"], +[-37.80400475, 175.3944321167, "606"], +[-37.8037340667, 175.3943487167, "605"], +[-37.8021156667, 175.3876556833, "543"], +[-37.8012321, 175.3754553833, "429A"], +[-37.8018551667, 175.3752511, "430"], +[-37.8038677333, 175.3670357333, "346"], +[-37.8037207167, 175.3857282667, "528"], +[-37.89186715, 175.4802623167, "40"], +[-37.8923304833, 175.4777135167, "13"], +[-37.8929612833, 175.4756593333, "1"], +[-37.8918642, 175.4800987833, "38"], +[-37.8926700333, 175.4763031833, "5"], +[-37.89194195, 175.47893395, "28A"], +[-37.8924575833, 175.4767435167, "9"], +[-37.8918917333, 175.47938125, "32"], +[-37.8922351667, 175.4796796333, "27"], +[-37.8916363333, 175.47957795, "34A"], +[-37.8922002833, 175.48006775, "29"], +[-37.8918962833, 175.4796114333, "34"], +[-37.8923002333, 175.4783952667, "21"], +[-37.89225505, 175.4790280833, "25"], +[-37.8920123333, 175.4773945167, "10"], +[-37.8919046167, 175.4791651833, "30"], +[-37.89170475, 175.4789158833, "28B"], +[-37.89166225, 175.4793545667, "32A"], +[-37.8919418833, 175.4787236, "26"], +[-37.89187395, 175.4798382833, "36"], +[-37.89226945, 175.4788097167, "23"], +[-37.8919833667, 175.47800955, "14"], +[-37.88193185, 175.4866305833, "1"], +[-37.8812478, 175.4878395, "20"], +[-37.8819307, 175.48686775, "3"], +[-37.8823734333, 175.4877629833, "8B"], +[-37.8821842833, 175.48700355, "4"], +[-37.8818976833, 175.4871309333, "5"], +[-37.8821982333, 175.4867615167, "2"], +[-37.8821772, 175.48722635, "6"], +[-37.8809340667, 175.4875154, "24"], +[-37.8815621333, 175.4870228333, "11B"], +[-37.88080855, 175.4873367167, "26"], +[-37.8810877167, 175.4876951, "22"], +[-37.8806647833, 175.4872178, "25"], +[-37.8815580667, 175.4875735333, "9"], +[-37.88050695, 175.48709835, "23"], +[-37.8823652833, 175.48799725, "10B"], +[-37.8817490333, 175.4878626667, "12"], +[-37.88214405, 175.4874454833, "8"], +[-37.8816923833, 175.4878766167, "14"], +[-37.8823520667, 175.4875880667, "8A"], +[-37.8814424167, 175.48790665, "16"], +[-37.8819485333, 175.48774405, "10"], +[-37.8813723833, 175.4878899, "18"], +[-37.8822010167, 175.4879131167, "10A"], +[-37.8825377667, 175.48796795, "8C"], +[-37.8808839, 175.4866251333, "17"], +[-37.8807889, 175.4868384833, "19"], +[-37.8806788833, 175.4869695333, "21"], +[-37.8818035, 175.48743315, "7"], +[-37.8810684667, 175.4871791, "13"], +[-37.8809503667, 175.4869225, "15"], +[-37.8812931167, 175.4874573167, "11"], +[-37.8812351167, 175.4869114833, "13A"], +[-37.8814375667, 175.4871747, "11A"], +[-37.8813577333, 175.4869692333, "13B"], +[-37.9359592833, 175.5576784333, "1/21"], +[-37.9380472167, 175.5564234833, "20"], +[-37.9388147833, 175.5583222333, "2/21"], +[-37.9370746333, 175.55679275, "21"], +[-37.9396807833, 175.5590516333, "4/21"], +[-37.9321653667, 175.5586632333, "15"], +[-37.93777925, 175.5607732333, "3/21"], +[-37.93261665, 175.5577030167, "22"], +[-37.9350610667, 175.5544772, "18"], +[-37.9324680333, 175.55825425, "17"], +[-37.93286725, 175.5580919667, "19"], +[-37.9655341, 175.48344125, "228"], +[-37.9662557833, 175.4823937167, "238"], +[-37.9551121167, 175.4819800167, "74"], +[-37.97145005, 175.4810869667, "298"], +[-37.96511045, 175.4842071167, "226"], +[-37.9597843, 175.4837558833, "1/144"], +[-37.9542875333, 175.4787352833, "46"], +[-37.96095, 175.4848569, "156"], +[-37.9608395667, 175.4825922167, "144"], +[-37.9665397, 175.4859805667, "227"], +[-37.9546337667, 175.4780326167, "44"], +[-37.9662588833, 175.48466365, "229"], +[-37.9774811333, 175.4827824167, "367"], +[-37.9532187667, 175.4778035833, "25"], +[-37.9779600167, 175.4820124333, "380"], +[-37.96688945, 175.4825700833, "244"], +[-37.9724996333, 175.4816797, "317"], +[-37.9551293333, 175.4882803333, "2/81"], +[-37.9544212167, 175.4829611333, "79"], +[-37.9552378333, 175.4835594, "3/81"], +[-37.9551674833, 175.4873534333, "1/81"], +[-37.8177678333, 175.36481165, "23"], +[-37.8176856667, 175.36528815, "21"], +[-37.81793065, 175.36431665, "24"], +[-37.8188466, 175.3655251167, "13"], +[-37.8183913167, 175.3654774833, "14"], +[-37.8186506667, 175.3663757833, "8"], +[-37.9091586833, 175.4806199667, "8"], +[-37.9097846667, 175.4804238833, "5"], +[-37.9095970833, 175.4803937333, "6"], +[-37.90949585, 175.48088805, "2"], +[-37.9097125667, 175.4807851667, "3"], +[-37.9090767333, 175.4810419167, "1"], +[-37.9098378, 175.4806015167, "4"], +[-37.9094125333, 175.48047265, "7"], +[-37.8987957167, 175.4867648167, "4"], +[-37.8993040833, 175.48608325, "13A"], +[-37.8986618667, 175.4863548, "3"], +[-37.8990157167, 175.4866799667, "8"], +[-37.8988486167, 175.48625515, "11"], +[-37.89940275, 175.48652375, "12"], +[-37.8990940333, 175.4857358333, "15"], +[-37.8994477, 175.4860294167, "13"], +[-37.8984905333, 175.4864897167, "1"], +[-37.8910458667, 175.4604486167, "4A"], +[-37.8909012833, 175.4603024667, "1"], +[-37.8912700667, 175.4604892667, "4B"], +[-37.8909202167, 175.4608893333, "3C"], +[-37.8912779333, 175.4605982333, "4C"], +[-37.8909172, 175.4610096, "3D"], +[-37.8910309833, 175.46058295, "4D"], +[-37.8909275167, 175.4607770667, "3B"], +[-37.8908830667, 175.46040695, "2"], +[-37.8907294667, 175.4603703, "2B"], +[-37.8909360167, 175.4606728333, "3A"], +[-37.8910318, 175.46011345, "5"], +[-37.9038995167, 175.4740167833, "1"], +[-37.9040010833, 175.4744881, "3"], +[-37.9039700667, 175.4742456667, "2"], +[-37.9041160333, 175.4738995667, "9"], +[-37.9042205, 175.4746609667, "5"], +[-37.90408835, 175.4746666167, "4"], +[-37.9043300333, 175.4745611833, "6"], +[-37.9042862667, 175.47435, "7"], +[-37.9041895, 175.4741327333, "8"], +[-37.8412972333, 175.51498905, "2/370"], +[-37.85380915, 175.5048969, "197"], +[-37.8393792167, 175.5185004833, "4/370"], +[-37.8356004, 175.5155473833, "1/446"], +[-37.8516975167, 175.5088596333, "230"], +[-37.83493705, 175.5162245, "2/446"], +[-37.8630868833, 175.5013258667, "77"], +[-37.8341336333, 175.5147212667, "454"], +[-37.8317585167, 175.511789, "495"], +[-37.8378645667, 175.51179665, "422"], +[-37.8482979667, 175.5057717167, "2/277"], +[-37.8384529, 175.5107566, "1/413"], +[-37.8543168833, 175.5057733167, "200"], +[-37.8382859, 175.51004915, "2/413"], +[-37.8302591667, 175.51099635, "520"], +[-37.8430264833, 175.5117441667, "361"], +[-37.8569890167, 175.50014995, "145"], +[-37.8546612333, 175.51046255, "4/210"], +[-37.8291138167, 175.5100652833, "537"], +[-37.8644712, 175.5010749167, "57"], +[-37.8537165667, 175.5061015667, "1/210"], +[-37.8561494333, 175.5002218833, "151"], +[-37.8531273167, 175.50591205, "207"], +[-37.8661337333, 175.50044185, "39"], +[-37.8572501333, 175.50068855, "142"], +[-37.86749845, 175.4999983667, "31"], +[-37.8311046167, 175.5124198667, "504"], +[-37.8610681167, 175.5009140667, "99"], +[-37.86009745, 175.5013829333, "110"], +[-37.8635882333, 175.5025296333, "2/72"], +[-37.8381455333, 175.5095623833, "415"], +[-37.86345265, 175.5022295333, "1/72"], +[-37.8535591333, 175.5063429, "3/210"], +[-37.8428438667, 175.5239404333, "8/370"], +[-37.8425296667, 175.5133880833, "1/370"], +[-37.8415704667, 175.5230515333, "7/370"], +[-37.8607450167, 175.5008543833, "101"], +[-37.8402798167, 175.5220041667, "6/370"], +[-37.8540611833, 175.5052768833, "198"], +[-37.8457524833, 175.5094666, "314"], +[-37.8379597667, 175.51065885, "417"], +[-37.83947605, 175.5206863, "5/370"], +[-37.8301105, 175.5103759, "521"], +[-37.84097385, 175.5217665167, "9/370"], +[-37.8408829167, 175.5157633333, "3/370"], +[-37.8540650833, 175.5067036667, "2/210"], +[-37.8541100167, 175.5042267333, "191"], +[-37.8426532167, 175.5117339667, "365"], +[-37.8483104167, 175.50609355, "1/277"], +[-37.8610126167, 175.5014974, "98"], +[-37.8409556, 175.5110372667, "383"], +[-37.8563855167, 175.4999012333, "149"], +[-37.8591389167, 175.5012515167, "118"], +[-37.8622922667, 175.5017081, "86"], +[-37.8279955333, 175.5107170333, "548"], +[-37.8293633667, 175.5100288667, "535"], +[-37.87412315, 175.36871325, "20"], +[-37.8741985167, 175.3678984333, "25"], +[-37.8744552833, 175.36791385, "23"], +[-37.82354435, 175.3645601333, "31"], +[-37.81426245, 175.3697857667, "140B"], +[-37.8249820167, 175.36436295, "18A"], +[-37.8247545333, 175.3644630667, "18B"], +[-37.8196718, 175.3690864167, "74B"], +[-37.8141992167, 175.3685047667, "140D"], +[-37.8202965167, 175.3688420833, "74C"], +[-37.8180317333, 175.3670563833, "97"], +[-37.8166606, 175.3680389833, "116"], +[-37.81378495, 175.3674693667, "143"], +[-37.8140329833, 175.36750105, "141"], +[-37.8230129333, 175.36477085, "33"], +[-37.8181065333, 175.367528, "96A"], +[-37.822355, 175.3651528333, "43"], +[-37.8207430167, 175.37001735, "72"], +[-37.8175852333, 175.36768535, "104"], +[-37.8240652167, 175.3643383167, "25"], +[-37.8208649167, 175.3708165167, "72C"], +[-37.8158759333, 175.3699935167, "124A"], +[-37.81611735, 175.3726213833, "124D"], +[-37.8141102833, 175.3710208167, "140E"], +[-37.8158552833, 175.3725671, "126C"], +[-37.8172870667, 175.3672759333, "105"], +[-37.8149043167, 175.3680942, "126A"], +[-37.8156860667, 175.3714600667, "126B"], +[-37.82234555, 175.3676551167, "58C"], +[-37.8229201, 175.3663306333, "42B"], +[-37.8217244667, 175.36615365, "56"], +[-37.82168065, 175.3671740333, "58A"], +[-37.8226533, 175.3656960667, "42A"], +[-37.81969495, 175.3671185, "74A"], +[-37.8139910833, 175.3680670333, "142"], +[-37.8222810667, 175.36812165, "58B"], +[-37.8160942833, 175.3717498333, "124C"], +[-37.8210101167, 175.3697359333, "72D"], +[-37.8199424667, 175.3700336667, "72A"], +[-37.8162840333, 175.36763115, "115"], +[-37.8169082, 175.3674243667, "109"], +[-37.8231334167, 175.3666729833, "42C"], +[-37.8211535833, 175.3664307, "66"], +[-37.8159958, 175.3710006, "124B"], +[-37.8230926333, 175.3654223667, "40"], +[-37.8142580167, 175.3692795333, "140C"], +[-37.8184104667, 175.3677529833, "96B"], +[-37.8232137667, 175.3664941667, "42D"], +[-37.8238653167, 175.3649438333, "30"], +[-37.8210668833, 175.3659746167, "59"], +[-37.8204322833, 175.3668945833, "70"], +[-37.8141750667, 175.3703629167, "140A"], +[-37.8203761167, 175.3663, "69"], +[-37.8190875, 175.3666263, "83"], +[-37.8206303833, 175.37079745, "72B"], +[-37.8159921167, 175.36829495, "120"], +[-37.8702900833, 175.4823576, "129"], +[-37.8691575833, 175.4875552167, "174"], +[-37.8752810167, 175.4785701333, "29"], +[-37.8739353333, 175.4787035333, "71"], +[-37.8694349833, 175.4853619333, "150"], +[-37.86819925, 175.4904272667, "203"], +[-37.8739757333, 175.4791716, "36"], +[-37.8743164833, 175.47849545, "69"], +[-37.8764327833, 175.4784211167, "18"], +[-37.8772371, 175.47724965, "11"], +[-37.8711581167, 175.4812798, "99"], +[-37.8774015333, 175.4771253167, "9"], +[-37.8747281, 175.4786202833, "35"], +[-37.8769075, 175.47753225, "15"], +[-37.8764091, 175.4779333667, "21"], +[-37.8751066833, 175.47903655, "28"], +[-37.8755713333, 175.4789569333, "24"], +[-37.8767426833, 175.4776735667, "17"], +[-37.87754365, 175.4769945167, "7"], +[-37.8749176, 175.4790524, "30"], +[-37.86789545, 175.4922832833, "215"], +[-37.8762449333, 175.4780463833, "23"], +[-37.8746104333, 175.4786632333, "37"], +[-37.87535045, 175.4789887, "26"], +[-37.8690190833, 175.4889257667, "188"], +[-37.8766569, 175.4782477833, "16"], +[-37.8777791667, 175.4743660833, "3F"], +[-37.8760992833, 175.4781375667, "25"], +[-37.8735414833, 175.4792975667, "40"], +[-37.8749123833, 175.4786099333, "33"], +[-37.8778868667, 175.4755309333, "3B"], +[-37.8757382667, 175.4789290833, "22"], +[-37.8690839, 175.4882992333, "182"], +[-37.8778719167, 175.4752090167, "3C"], +[-37.8692440333, 175.487114, "168"], +[-37.87786735, 175.4759980333, "3A"], +[-37.8750885833, 175.4785857167, "31"], +[-37.8778593, 175.4767417, "1"], +[-37.8770541, 175.4774016167, "13"], +[-37.8693264333, 175.4864033167, "160"], +[-37.8776720667, 175.47687455, "5"], +[-37.87418305, 175.4791450333, "34"], +[-37.8772782167, 175.4778079333, "12"], +[-37.8694907, 175.48387845, "139"], +[-37.8737682833, 175.4792036833, "38"], +[-37.8780202167, 175.4743749, "3E"], +[-37.87657365, 175.4778033833, "19"], +[-37.8769227, 175.4780192833, "14"], +[-37.8778372, 175.4747625833, "3D"], +[-37.9058634167, 175.4818391833, "11"], +[-37.90651765, 175.4816564, "7"], +[-37.90600205, 175.4817922833, "10"], +[-37.9065382667, 175.4819836667, "6"], +[-37.9064549667, 175.48231495, "4"], +[-37.9065751, 175.4821868667, "5"], +[-37.9062895, 175.4822382667, "3"], +[-37.9061909, 175.4817668, "9"], +[-37.9058636333, 175.4821877667, "1"], +[-37.90609375, 175.48208955, "2"], +[-37.9063477667, 175.4818540833, "8"], +[-37.9028285, 175.4830620667, "10"], +[-37.9033403333, 175.4828242833, "4"], +[-37.9026557833, 175.4836036833, "11"], +[-37.9026651667, 175.4831392167, "12"], +[-37.9024793, 175.4836898833, "13"], +[-37.9024864833, 175.4832286333, "14"], +[-37.9022771167, 175.4837931167, "15"], +[-37.9023275333, 175.48331475, "16"], +[-37.9021481167, 175.4833864333, "18"], +[-37.9034164167, 175.48324155, "3"], +[-37.9020819667, 175.4837508833, "17"], +[-37.9032251, 175.4833323833, "5"], +[-37.9031833833, 175.4829241667, "6"], +[-37.9030398667, 175.4834288667, "7"], +[-37.9030060333, 175.4827531167, "8A"], +[-37.90303195, 175.4830065, "8"], +[-37.90285465, 175.48352545, "9"], +[-37.9030180333, 175.4855010667, "50"], +[-37.90297345, 175.4847805333, "52"], +[-37.90302055, 175.4852138333, "50A"], +[-37.9006098833, 175.4854521833, "33"], +[-37.9029307667, 175.485268, "48"], +[-37.9014686667, 175.48551475, "36"], +[-37.9017719833, 175.4853557833, "40"], +[-37.9016177667, 175.4854306833, "38"], +[-37.9023493667, 175.48468465, "47"], +[-37.9027064667, 175.4842364667, "51A"], +[-37.9019256667, 175.4852900333, "42"], +[-37.9016388667, 175.4849819167, "41"], +[-37.9014681667, 175.485061, "39"], +[-37.9033233167, 175.48461845, "56"], +[-37.9037893833, 175.4839462667, "63"], +[-37.9031498833, 175.4846976667, "54"], +[-37.9026018, 175.48495995, "44"], +[-37.9030769833, 175.4842938, "55"], +[-37.9027864167, 175.4848613, "46"], +[-37.9037959667, 175.4843982667, "62"], +[-37.90251565, 175.4845560333, "49"], +[-37.9039613167, 175.4843144, "64"], +[-37.9027125667, 175.4844694167, "51"], +[-37.9034637167, 175.4841226, "59"], +[-37.9028946833, 175.4843869, "53"], +[-37.9036489333, 175.4840298833, "61"], +[-37.90327315, 175.4842082833, "57"], +[-37.90046945, 175.4855198667, "29"], +[-37.9010344833, 175.4856939833, "34"], +[-37.9013283667, 175.4851346333, "37"], +[-37.9017672167, 175.4849186, "43"], +[-37.8611247, 175.4102509167, "175"], +[-37.8499004667, 175.4102191667, "47"], +[-37.86802365, 175.4100161, "251"], +[-37.8527479167, 175.4097375667, "82"], +[-37.84663775, 175.41026955, "13"], +[-37.8556193, 175.4102112167, "113"], +[-37.8623374833, 175.4096021667, "188"], +[-37.8570313833, 175.4097304667, "128"], +[-37.8508672833, 175.4096890333, "58"], +[-37.8633539667, 175.4102016833, "197"], +[-37.8624295167, 175.4113314833, "187"], +[-37.8643999167, 175.4142555167, "211A"], +[-37.8674836667, 175.4109264333, "245A"], +[-37.8645949333, 175.4142231333, "211B"], +[-37.863722, 175.4116543667, "203"], +[-37.8652689, 175.4102405667, "217"], +[-37.8674028167, 175.4119272333, "245B"], +[-37.8688986, 175.4071594333, "283"], +[-37.8626189667, 175.4102669333, "191"], +[-37.86890705, 175.4066821333, "285"], +[-37.8638613833, 175.4102196333, "205"], +[-37.8520415333, 175.4096858833, "74"], +[-37.85366185, 175.4103740333, "91"], +[-37.8541498167, 175.4102157, "99"], +[-37.8481882167, 175.4096517333, "32"], +[-37.8998180833, 175.4671585833, "1"], +[-37.8994876333, 175.46689395, "4"], +[-37.8995568833, 175.4671854, "2"], +[-37.89982245, 175.4669492, "3"], +[-37.8997823167, 175.4667780333, "5"], +[-37.8993499, 175.4665456333, "6"], +[-37.8994541, 175.4664421167, "8"], +[-37.8996415, 175.4667272333, "7"], +[-37.8916384833, 175.4630697, "40"], +[-37.8913306, 175.4610441333, "24"], +[-37.89161595, 175.4716677667, "133"], +[-37.8914569167, 175.4754211833, "149"], +[-37.89160835, 175.4718250167, "135"], +[-37.89234715, 175.4585814667, "9"], +[-37.8915247667, 175.4732450833, "137"], +[-37.8916493667, 175.4628682, "36"], +[-37.89127365, 175.4608001667, "1/20-3/20"], +[-37.8922152167, 175.4605929667, "17"], +[-37.89145415, 175.4607833333, "4/20-7/20"], +[-37.8917261333, 175.4624021, "32"], +[-37.8919335167, 175.45821125, "4C"], +[-37.8922107833, 175.4609609833, "21"], +[-37.8919453667, 175.4579664333, "4B"], +[-37.8915077, 175.4658864333, "66"], +[-37.8919506333, 175.4577320333, "4A"], +[-37.8916613167, 175.4626608667, "34"], +[-37.8919576833, 175.4575137, "2C"], +[-37.89126035, 175.4701749167, "92"], +[-37.8922950667, 175.4588386, "11"], +[-37.8921412333, 175.4623956833, "31"], +[-37.8918877167, 175.4588751167, "10"], +[-37.8912372, 175.4708680333, "98"], +[-37.8920993333, 175.4636887167, "43"], +[-37.89223965, 175.4603451, "15"], +[-37.8920777333, 175.4638900667, "43A"], +[-37.89235135, 175.4580704, "5"], +[-37.8916213667, 175.4634083333, "44"], +[-37.8913535, 175.4751499333, "147"], +[-37.8911645667, 175.4634580167, "46"], +[-37.89154565, 175.460355, "16A"], +[-37.8916286667, 175.4636265667, "48"], +[-37.8914890667, 175.4661530833, "68"], +[-37.8916243333, 175.46377045, "50A"], +[-37.8921945667, 175.4613726833, "25"], +[-37.8916212333, 175.4638566667, "50"], +[-37.8917585833, 175.4617233333, "28"], +[-37.8916201, 175.4640203, "52"], +[-37.89219925, 175.46119465, "23"], +[-37.891597, 175.46425765, "54"], +[-37.8918353, 175.46017655, "14"], +[-37.8919748667, 175.4649644667, "53"], +[-37.8917905667, 175.4608055333, "22"], +[-37.89131955, 175.4756406, "153"], +[-37.8923704333, 175.4576240833, "3"], +[-37.8905614333, 175.4758690167, "154"], +[-37.8916816167, 175.4707503, "97"], +[-37.8913018667, 175.4759012333, "155"], +[-37.89253265, 175.4612154167, "23B"], +[-37.8909466833, 175.4760167333, "156"], +[-37.8920906167, 175.4634921, "41"], +[-37.8912217, 175.4774480833, "165"], +[-37.8921237833, 175.46277795, "35"], +[-37.8908697333, 175.477294, "162"], +[-37.8920948667, 175.4632665833, "39"], +[-37.8912003333, 175.47770905, "167"], +[-37.8914414833, 175.4678414, "76"], +[-37.8908453833, 175.4777106667, "168"], +[-37.8912160667, 175.4629456833, "38"], +[-37.8911874, 175.4779408167, "169"], +[-37.8919186333, 175.4584176833, "6"], +[-37.89118215, 175.4781761167, "171"], +[-37.8916446833, 175.4632172667, "42"], +[-37.8911654333, 175.4784059833, "173"], +[-37.8918217333, 175.4603906, "16"], +[-37.8911525333, 175.47862755, "175"], +[-37.8924511333, 175.4606313, "17B"], +[-37.8907954, 175.4784089, "176"], +[-37.8915381333, 175.46524225, "58"], +[-37.8911355667, 175.478864, "177"], +[-37.892167, 175.4617876833, "29"], +[-37.8911190667, 175.4790793167, "179"], +[-37.89148925, 175.47413605, "141"], +[-37.891102, 175.4793148833, "181"], +[-37.89174025, 175.4622023, "30"], +[-37.8910930167, 175.4795416333, "183"], +[-37.8923048, 175.4605938667, "17A"], +[-37.8907614, 175.4793265833, "184"], +[-37.8919164833, 175.45868485, "8"], +[-37.89108015, 175.4797723833, "185"], +[-37.8905659667, 175.4757830667, "152"], +[-37.8910595667, 175.4800169167, "187"], +[-37.8923372333, 175.4582542, "7"], +[-37.8917307333, 175.46930505, "83"], +[-37.8909663333, 175.4756883833, "150"], +[-37.8909111167, 175.47660485, "160"], +[-37.8916525667, 175.47116215, "129"], +[-37.8909366167, 175.4762755333, "158"], +[-37.8911956, 175.4715676333, "104"], +[-37.8915429, 175.4650714667, "56"], +[-37.8916859833, 175.45866365, "8A"], +[-37.8919523, 175.4651683833, "55"], +[-37.8915248667, 175.4654342167, "60"], +[-37.8917482, 175.4613051333, "26"], +[-37.89101255, 175.4753879, "148"], +[-37.8925110833, 175.4608349833, "19"], +[-37.89179885, 175.4605882333, "18"], +[-37.8918582667, 175.4680386, "79"], +[-37.8921763167, 175.461584, "27"], +[-37.8914747833, 175.4665362167, "70"], +[-37.8923905833, 175.4611956167, "23A"], +[-37.8919975333, 175.4651655, "55A-55E"], +[-37.8920026167, 175.45729865, "2B"], +[-37.8920162667, 175.4570673, "2A"], +[-37.8916384333, 175.4713722, "131"], +[-37.8912288333, 175.4711408333, "102"], +[-37.8915248167, 175.4656389833, "62"], +[-37.8917611667, 175.46114545, "26A"], +[-37.8921091, 175.4630288167, "37"], +[-37.8209873167, 175.3760669333, "191C"], +[-37.8249917, 175.3656036667, "91A"], +[-37.8190006167, 175.3860204167, "254B"], +[-37.818206, 175.38533, "254C"], +[-37.8061591667, 175.3983436, "462"], +[-37.8056489333, 175.3937574167, "423"], +[-37.79713005, 175.40084965, "545"], +[-37.79324805, 175.4048036667, "601"], +[-37.8186617833, 175.3815952, "248A"], +[-37.8090422833, 175.3906621333, "383B"], +[-37.8183971667, 175.3818555667, "248B"], +[-37.8027335833, 175.3963706167, "471"], +[-37.8167087, 175.3801758333, "267D"], +[-37.7975265333, 175.4015703333, "548"], +[-37.8190651167, 175.3786646333, "229"], +[-37.7903981, 175.4069922833, "639B"], +[-37.8253436333, 175.3662536, "91B"], +[-37.8085089, 175.3916918167, "406"], +[-37.82507135, 175.36734685, "107A"], +[-37.8243141667, 175.3677190167, "107B"], +[-37.8240930167, 175.3684544333, "107C"], +[-37.82428045, 175.3692349, "107D"], +[-37.79320855, 175.4054745333, "606"], +[-37.8210957833, 175.3758549, "191A"], +[-37.8220672667, 175.3711244167, "155B"], +[-37.7905658333, 175.40715725, "639A"], +[-37.8219987167, 175.37182365, "155C"], +[-37.79282425, 175.4050586, "605"], +[-37.8217745833, 175.37222335, "155D"], +[-37.80515685, 175.3938695, "437"], +[-37.8076407333, 175.3900775, "397"], +[-37.8237106, 175.3712966333, "131"], +[-37.8015971, 175.3955181667, "479"], +[-37.8227929, 175.3730921167, "157"], +[-37.7961391167, 175.4003037, "549"], +[-37.8233609833, 175.37310895, "152"], +[-37.8219492667, 175.3745148667, "167"], +[-37.8247903833, 175.3685883333, "109"], +[-37.8248283, 175.3705193167, "126"], +[-37.8109710333, 175.3856751167, "341"], +[-37.82605485, 175.3651553667, "80"], +[-37.8107359, 175.3894516833, "368"], +[-37.8120085667, 175.3845064, "321"], +[-37.8128636833, 175.38379265, "310"], +[-37.81208235, 175.3843228, "319"], +[-37.8046513333, 175.3956590833, "452"], +[-37.8144067333, 175.3816008667, "275"], +[-37.8102773, 175.3874213, "345B"], +[-37.8144369, 175.38227185, "280"], +[-37.8164895333, 175.3782892333, "267C"], +[-37.8182382167, 175.3800216667, "240"], +[-37.8173681833, 175.3806125, "248C"], +[-37.8181792333, 175.3832736333, "254A"], +[-37.8095723, 175.3899326833, "383A"], +[-37.81761125, 175.3835261667, "254D"], +[-37.8028805167, 175.3962506667, "469"], +[-37.8185789, 175.3845444, "254"], +[-37.8163547167, 175.3812859833, "258"], +[-37.7930282167, 175.40572125, "608"], +[-37.821138, 175.38039485, "216D"], +[-37.81606355, 175.3793317167, "267B"], +[-37.81934515, 175.3785087833, "225"], +[-37.8050155667, 175.3943832667, "443A"], +[-37.81861015, 175.379036, "235A"], +[-37.8121421833, 175.3842917833, "317"], +[-37.7913696833, 175.4063793, "623"], +[-37.8205651167, 175.3768472333, "201"], +[-37.8205108, 175.37795785, "212"], +[-37.8231057, 175.3725295333, "155A"], +[-37.8046846167, 175.3939956333, "443B"], +[-37.7964915667, 175.40187745, "559"], +[-37.80485815, 175.39453205, "443C"], +[-37.8060723667, 175.3939798167, "428"], +[-37.8047227, 175.3946713167, "445"], +[-37.8048381667, 175.3949814667, "448"], +[-37.8045786833, 175.3947850833, "449"], +[-37.7981357, 175.3900883333, "461B"], +[-37.8099047, 175.39060605, "388"], +[-37.8043014333, 175.3950148, "453"], +[-37.8043075833, 175.3954701167, "456"], +[-37.79168895, 175.4068591833, "626"], +[-37.8021525833, 175.39678165, "481"], +[-37.8034197833, 175.39575665, "463"], +[-37.8032362167, 175.3959217833, "467"], +[-37.80216475, 175.3974925167, "484"], +[-37.8203596833, 175.3755115833, "191B"], +[-37.7993380667, 175.3999904667, "522"], +[-37.8085763833, 175.3912222, "391"], +[-37.7981168833, 175.4004628, "533"], +[-37.7969743333, 175.4013795333, "553"], +[-37.7970796333, 175.4021227667, "554"], +[-37.7943688833, 175.4045175833, "590"], +[-37.8073738833, 175.39222815, "419"], +[-37.7955603667, 175.4027828667, "569"], +[-37.8102608, 175.3842148333, "345A"], +[-37.7958160167, 175.4031990833, "570"], +[-37.7924329333, 175.4084768167, "630"], +[-37.7956436833, 175.4033528333, "572"], +[-37.7960458333, 175.4022678, "563"], +[-37.8030297833, 175.3966600167, "472"], +[-37.7963875, 175.4000470667, "547"], +[-37.8052467, 175.39419005, "439"], +[-37.8103165333, 175.38810555, "345C"], +[-37.7987565833, 175.3998819167, "531A"], +[-37.7982830833, 175.40023825, "531B"], +[-37.79918855, 175.4000808833, "524"], +[-37.7944693667, 175.4027557167, "577"], +[-37.7950937833, 175.4031431333, "575"], +[-37.7927918333, 175.4046828167, "603"], +[-37.7947576333, 175.4034387833, "579"], +[-37.8117228167, 175.38764085, "346B"], +[-37.7911496667, 175.40664935, "629"], +[-37.81588535, 175.3807131667, "267A"], +[-37.7912028, 175.40724595, "634"], +[-37.7908960167, 175.4074944, "638"], +[-37.8108278167, 175.3873807333, "346A"], +[-37.8109458667, 175.3868272333, "346"], +[-37.8861902333, 175.4912457, "146"], +[-37.8868429667, 175.4923818, "242"], +[-37.8863162333, 175.4914635667, "150"], +[-37.8866134167, 175.4930928167, "281"], +[-37.8857069333, 175.49160115, "115"], +[-37.88701045, 175.4928565167, "282"], +[-37.8865745167, 175.4918085333, "196"], +[-37.8847997667, 175.49160355, "1"], +[-37.88530765, 175.49159645, "65"], +[-37.8858858, 175.4924325333, "195"], +[-37.88625505, 175.4922030167, "201"], +[-37.8858815167, 175.49117815, "140"], +[-37.8870972167, 175.4937585167, "370"], +[-37.8871422667, 175.4932273333, "330"], +[-37.8867199333, 175.4935654, "331"], +[-37.88711285, 175.4670386167, "6"], +[-37.8867336333, 175.4670516667, "3"], +[-37.8867436833, 175.4669519, "1"], +[-37.8869533833, 175.4669386667, "2"], +[-37.8869398667, 175.46704125, "4"], +[-37.8871175, 175.46692505, "5"], +[-37.9008030333, 175.4861118167, "2"], +[-37.90075285, 175.4859038833, "1"], +[-37.9009336167, 175.4865805833, "4"], +[-37.9008800167, 175.4863431167, "3"], +[-37.90100455, 175.4868142, "5"], +[-37.9014235667, 175.4873154667, "7B"], +[-37.9010728, 175.4870406333, "6"], +[-37.9012685833, 175.4873578833, "7A"], +[-37.9011401833, 175.4872876833, "7"], +[-37.8158733667, 175.37666665, "18A"], +[-37.8161566833, 175.3760580333, "16"], +[-37.8161400333, 175.3766246833, "18B"], +[-37.81564025, 175.3760005833, "20"], +[-37.9147940667, 175.4781293167, "2"], +[-37.91445275, 175.477954, "5"], +[-37.91432165, 175.4780204333, "7"], +[-37.9142254833, 175.4781627667, "9"], +[-37.9142594833, 175.4783362167, "11"], +[-37.9140805833, 175.4785308167, "11A"], +[-37.9141151333, 175.47861905, "10A"], +[-37.91436635, 175.4784698833, "10"], +[-37.9144396667, 175.4784653667, "8"], +[-37.9147089667, 175.47783895, "1"], +[-37.9145894, 175.4778914333, "3"], +[-37.9146597833, 175.4781811833, "4"], +[-37.9145286, 175.4783673833, "6"], +[-37.9030873667, 175.47210575, "3"], +[-37.9032704833, 175.472054, "5"], +[-37.9032275333, 175.4724681, "4"], +[-37.9029155167, 175.4722868333, "1"], +[-37.9029878333, 175.4725947167, "2"], +[-37.9033794333, 175.4723403167, "6"], +[-37.9033877, 175.4721768833, "8"], +[-37.9026622333, 175.5342312833, "2/60"], +[-37.8962902167, 175.5377237833, "3/157"], +[-37.9056577833, 175.5300138, "24"], +[-37.8978118667, 175.53526435, "1/157"], +[-37.9036869333, 175.5324068, "46"], +[-37.8976678167, 175.5356030833, "2/157"], +[-37.9025187, 175.53438235, "3/60"], +[-37.8981575333, 175.5358635, "1/158"], +[-37.9027801667, 175.5340282833, "1/60"], +[-37.8979776333, 175.536204, "2/158"], +[-37.9023776667, 175.5345600167, "4/60"], +[-37.8853151833, 175.4743354167, "6"], +[-37.8839096667, 175.4747028, "17"], +[-37.8826408833, 175.4741236667, "44"], +[-37.8835314167, 175.4746655333, "21"], +[-37.88308945, 175.4737775333, "28"], +[-37.8814453833, 175.4749238167, "41"], +[-37.8829200333, 175.4741641167, "40"], +[-37.8804728833, 175.4739323833, "66"], +[-37.8824228667, 175.47455335, "33"], +[-37.8849254333, 175.4748141333, "9"], +[-37.8815074833, 175.4735321333, "54A"], +[-37.8829310333, 175.4736918167, "38"], +[-37.8836627167, 175.47426195, "20"], +[-37.8818192, 175.4745435833, "35"], +[-37.8816592833, 175.4740403, "48"], +[-37.8816905333, 175.4745296167, "37"], +[-37.8835084, 175.47420785, "22"], +[-37.8810922833, 175.4739643833, "58"], +[-37.8814526, 175.4737812167, "52"], +[-37.8813118333, 175.4739949167, "56"], +[-37.88347125, 175.4749025167, "21A"], +[-37.88493785, 175.4743158, "10"], +[-37.88273915, 175.4748604167, "29A"], +[-37.8837637667, 175.4746886167, "19"], +[-37.8833199667, 175.47417425, "24"], +[-37.8838467, 175.4742672333, "18"], +[-37.8833191167, 175.4746548333, "23"], +[-37.8845514833, 175.4742861, "14"], +[-37.8853397, 175.4748736833, "5"], +[-37.8847559333, 175.4748089167, "11"], +[-37.8829521167, 175.47379525, "36"], +[-37.88450605, 175.4747736667, "13"], +[-37.8851099333, 175.4747525667, "7"], +[-37.8847199, 175.4743100333, "12"], +[-37.8831416, 175.4741727333, "26"], +[-37.8808951333, 175.47394745, "60"], +[-37.8808293167, 175.4744251333, "49"], +[-37.8806857667, 175.4739440333, "62"], +[-37.8815219, 175.4745206667, "39"], +[-37.88054725, 175.47393465, "64"], +[-37.8851369667, 175.4743293333, "8"], +[-37.8829415167, 175.4735765833, "34"], +[-37.8813163167, 175.4745132667, "45"], +[-37.8825621, 175.4745672, "31"], +[-37.882743, 175.4745888, "29"], +[-37.8849588833, 175.4740735333, "10A"], +[-37.8830033833, 175.47362085, "32"], +[-37.8814134833, 175.4735401, "54"], +[-37.8829174167, 175.4746101833, "27"], +[-37.881329, 175.4749196167, "43"], +[-37.8818477833, 175.4741495167, "46"], +[-37.8806645833, 175.474444, "51"], +[-37.8835542, 175.4740686833, "22A"], +[-37.8815817333, 175.4735421833, "54B"], +[-37.8840175333, 175.4742836, "16"], +[-37.8827733167, 175.4741382833, "42"], +[-37.8831040167, 175.4746167333, "25"], +[-37.88152945, 175.47402335, "50"], +[-37.8810197, 175.4744641667, "47"], +[-37.90035815, 175.4810595167, "6"], +[-37.9004626167, 175.48148175, "5"], +[-37.9004783333, 175.4807893167, "8"], +[-37.90053035, 175.48110305, "10"], +[-37.9001194333, 175.4813414167, "1"], +[-37.9002854167, 175.4813794, "3"], +[-37.9005929833, 175.4812279167, "12"], +[-37.9005808667, 175.4813900667, "7"], +[-37.90019795, 175.4810457333, "4"], +[-37.9000177833, 175.4810738667, "2"], +[-37.8970709833, 175.471412, "47"], +[-37.8962267, 175.4699139833, "25"], +[-37.8957546, 175.46976195, "14"], +[-37.8960248333, 175.4695108167, "15"], +[-37.8958360833, 175.4699171167, "16"], +[-37.8960595667, 175.4695834167, "17"], +[-37.8956411833, 175.46957925, "12"], +[-37.8955700333, 175.46945925, "10"], +[-37.8957725, 175.4690580833, "13"], +[-37.8957180833, 175.4689838167, "11"], +[-37.89593735, 175.4700870667, "18"], +[-37.8960019667, 175.4702152333, "20"], +[-37.8960897167, 175.4696367833, "21"], +[-37.8960816667, 175.4703379833, "22"], +[-37.8961728667, 175.4698312667, "23"], +[-37.89611545, 175.4703987167, "24"], +[-37.89616535, 175.4704619, "26"], +[-37.8965143333, 175.4704345833, "31"], +[-37.8965995, 175.4706005, "33"], +[-37.8952596167, 175.46889415, "2"], +[-37.8954856333, 175.4693051333, "8"], +[-37.8953389167, 175.4690297167, "4"], +[-37.8953875833, 175.469136, "6"], +[-37.9194040167, 175.4783079, "10"], +[-37.9197726333, 175.4782003, "12"], +[-37.9194026167, 175.4796128167, "133"], +[-37.9197761667, 175.47866625, "40"], +[-37.9199951833, 175.4798155667, "148"], +[-37.91981195, 175.47907645, "78"], +[-37.9194262833, 175.4788171833, "59"], +[-37.9196759333, 175.4798573833, "154"], +[-37.9193148667, 175.48000435, "155"], +[-37.9194418667, 175.479248, "95"], +[-37.91985945, 175.47946575, "114"], +[-37.8948282, 175.4632178833, "7"], +[-37.8948541333, 175.4634539, "11"], +[-37.8946653333, 175.46382725, "6A"], +[-37.8942238167, 175.4629336667, "1A"], +[-37.8942486167, 175.4635523667, "2"], +[-37.8942641667, 175.4631693, "1"], +[-37.8950186, 175.4640242, "8C"], +[-37.8944589, 175.4631798333, "3"], +[-37.8946294333, 175.4631902, "5"], +[-37.89450815, 175.4635785333, "4"], +[-37.8946479, 175.4635948, "6"], +[-37.89498065, 175.4637099667, "8B"], +[-37.8948863333, 175.4637035833, "8A"], +[-37.89496985, 175.46325115, "9"], +[-37.8947899667, 175.4637024167, "8"], +[-37.89513905, 175.4640248667, "8D"], +[-37.9428737167, 175.4654487167, "80"], +[-37.9435976167, 175.4662367333, "85"], +[-37.9406954, 175.4650713667, "60"], +[-37.9443210167, 175.466494, "91"], +[-37.9430113833, 175.4661685167, "79"], +[-37.9423613, 175.4660200167, "73"], +[-37.9217937167, 175.54130465, "1"], +[-37.9214646833, 175.5409056667, "41"], +[-37.9210630667, 175.5409307333, "86"], +[-37.9211853667, 175.5410841, "66"], +[-37.92096145, 175.5405598333, "83"], +[-37.9206217333, 175.54086065, "133"], +[-37.9216795, 175.5411416833, "21"], +[-37.9213075167, 175.5412473167, "48"], +[-37.9214208167, 175.54139905, "26"], +[-37.9204421, 175.5405807833, "127"], +[-37.8771340667, 175.4766456167, "17"], +[-37.87582545, 175.4764970667, "2"], +[-37.8772717167, 175.47651465, "19"], +[-37.87616025, 175.47643495, "6"], +[-37.87713215, 175.4761358333, "20"], +[-37.8763702833, 175.4764765, "10"], +[-37.8768617333, 175.4759845333, "18A"], +[-37.87599415, 175.4764346167, "4"], +[-37.8767086, 175.4760073, "18B"], +[-37.8762125167, 175.4761083833, "8"], +[-37.8771747, 175.4758428833, "22"], +[-37.8774091, 175.4763950167, "21"], +[-37.8764912333, 175.4760901, "18C"], +[-37.8775394167, 175.47599195, "25"], +[-37.8765312333, 175.47650495, "12"], +[-37.8774804667, 175.47621635, "23"], +[-37.8767157833, 175.4764832833, "14"], +[-37.8776499, 175.4754748667, "26B"], +[-37.8769073667, 175.4763486167, "16"], +[-37.8774781667, 175.4755253167, "26A"], +[-37.8769741333, 175.4767701, "15"], +[-37.8761039, 175.4768351333, "3"], +[-37.8767738333, 175.4768931333, "13"], +[-37.8775332833, 175.4757816833, "27"], +[-37.87661205, 175.4769204667, "11"], +[-37.8773297333, 175.4756777167, "24"], +[-37.8761442833, 175.47743145, "5B"], +[-37.8761289667, 175.4772156167, "5A"], +[-37.87642575, 175.47690055, "7"], +[-37.87587225, 175.4768522667, "1"], +[-37.8762655667, 175.4774301667, "5C"], +[-37.8765258167, 175.4771421167, "9"], +[-37.8775364167, 175.48049705, "9"], +[-37.87721065, 175.48073405, "3"], +[-37.8773645167, 175.48035315, "6"], +[-37.8769231833, 175.4805237833, "2"], +[-37.8776686, 175.4807239333, "7"], +[-37.87711275, 175.4803929167, "4"], +[-37.8774604167, 175.4807430667, "5"], +[-37.87709625, 175.4808098667, "1"], +[-37.8775519167, 175.48027995, "8"], +[-37.8028734167, 175.5544968333, "64"], +[-37.7908094, 175.55717225, "231"], +[-37.8020794667, 175.5538755, "79"], +[-37.8025875667, 175.5538326167, "73"], +[-37.8788754667, 175.4246207833, "26"], +[-37.8579076333, 175.423369, "257A"], +[-37.8799908833, 175.4247353667, "14"], +[-37.8576267333, 175.4217187, "257D"], +[-37.8792310833, 175.4241302167, "21"], +[-37.8560683833, 175.4248801833, "278"], +[-37.8737989833, 175.42415875, "79"], +[-37.8813433667, 175.42936065, "8/8"], +[-37.8734102333, 175.4246495, "86"], +[-37.8605645333, 175.42419905, "229"], +[-37.8719786333, 175.4241769, "91"], +[-37.8781270333, 175.4246374167, "34"], +[-37.8720274833, 175.4248217833, "94"], +[-37.8578687167, 175.4212873833, "257C"], +[-37.87800375, 175.4263720167, "40"], +[-37.8618965833, 175.4242119333, "213"], +[-37.8801869167, 175.42773835, "1/8"], +[-37.8779240167, 175.42463595, "36"], +[-37.8743793333, 175.4246104667, "76"], +[-37.8578661, 175.4218172, "257B"], +[-37.8539269833, 175.4240546833, "293"], +[-37.8767564, 175.4218264667, "49"], +[-37.8598008833, 175.4242299667, "235"], +[-37.8584386667, 175.42421145, "249"], +[-37.8570034667, 175.4213275, "265"], +[-37.8800888, 175.42631445, "10"], +[-37.8771395667, 175.4240152, "43"], +[-37.8781435167, 175.4240972, "33"], +[-37.8767499333, 175.4247563, "52"], +[-37.87567625, 175.42459055, "60"], +[-37.8807013, 175.4246087167, "6"], +[-37.8764337167, 175.42402455, "55"], +[-37.8645742, 175.4242096833, "183"], +[-37.88046835, 175.4241622833, "7"], +[-37.8700695833, 175.4241415, "109"], +[-37.87820565, 175.4227695333, "31"], +[-37.86436995, 175.42472575, "184"], +[-37.8712348833, 175.4199563167, "129"], +[-37.8655708833, 175.4241920833, "163"], +[-37.866108, 175.4247113333, "168"], +[-37.85758825, 175.4248484667, "258"], +[-37.8806747167, 175.4289119667, "3/8"], +[-37.8808697333, 175.4291759167, "5/8"], +[-37.8805498667, 175.4315314333, "7/8"], +[-37.8805142333, 175.4283195667, "8"], +[-37.8642561, 175.4211131, "185B"], +[-37.8642016333, 175.4241768167, "185C"], +[-37.8584019167, 175.4247333, "254"], +[-37.8579075, 175.4247216333, "256"], +[-37.85733205, 175.4242334, "261"], +[-37.8572177833, 175.4231895, "263"], +[-37.8643650167, 175.4220877667, "185A"], +[-37.89998625, 175.4831132833, "33"], +[-37.9028015, 175.4824331833, "62A"], +[-37.9027069833, 175.4824823167, "60A"], +[-37.8999237833, 175.48395105, "28"], +[-37.8998797667, 175.4835940667, "30"], +[-37.9000587333, 175.4835154167, "32"], +[-37.9016412667, 175.48230395, "51"], +[-37.901574, 175.4827421167, "52"], +[-37.90194355, 175.4826111667, "54"], +[-37.90215485, 175.4824878833, "56"], +[-37.9003890667, 175.48224575, "41"], +[-37.9005753833, 175.4833095667, "42"], +[-37.9004801833, 175.4824322, "43"], +[-37.90073175, 175.48323555, "44"], +[-37.9007203833, 175.4827551667, "45"], +[-37.9008984833, 175.4831199, "46"], +[-37.9010707, 175.4830293333, "48"], +[-37.9010407167, 175.4825866833, "49"], +[-37.90236485, 175.4823782167, "58"], +[-37.9025425, 175.4818774167, "59"], +[-37.9025757167, 175.4822757667, "60"], +[-37.9029402833, 175.4816723667, "61"], +[-37.90278895, 175.4821800333, "62"], +[-37.9031374667, 175.4822319333, "64A"], +[-37.9030315833, 175.4820359667, "64"], +[-37.9032178667, 175.4819789333, "66"], +[-37.9019434, 175.48286115, "54A"], +[-37.8818104333, 175.4707039833, "12"], +[-37.8814851833, 175.4704820167, "9"], +[-37.8810768333, 175.4699034, "5B"], +[-37.8818488, 175.4702216, "1"], +[-37.8816215667, 175.47092875, "11"], +[-37.8816941833, 175.4701273667, "2"], +[-37.8811842333, 175.4704525667, "7"], +[-37.8813522667, 175.47002245, "4"], +[-37.88194605, 175.4707180167, "13"], +[-37.8813308, 175.4704956333, "8"], +[-37.88115305, 175.4702513333, "6"], +[-37.8811936167, 175.4700739, "5A"], +[-37.8815373167, 175.4700831, "3"], +[-37.8816521333, 175.4705540833, "10"], +[-37.8088981167, 175.36906915, "77"], +[-37.8088042833, 175.3655253833, "80"], +[-37.8066999167, 175.3689073333, "52"], +[-37.8042113, 175.3710341667, "21"], +[-37.8035833, 175.3699288833, "17"], +[-37.8043107833, 175.3697591667, "23"], +[-37.8108776667, 175.3698460833, "87B"], +[-37.8045451333, 175.3697163333, "25"], +[-37.8104246167, 175.365628, "94B"], +[-37.8047750833, 175.3692679333, "30"], +[-37.80400095, 175.3716803333, "19B"], +[-37.8025388833, 175.3693096833, "2"], +[-37.8032552333, 175.3718025, "19A"], +[-37.8027435333, 175.3695240333, "4"], +[-37.8105842, 175.3663406667, "94A"], +[-37.8028778167, 175.3696653833, "6"], +[-37.8095059667, 175.37026555, "81"], +[-37.8055475667, 175.3691296833, "36"], +[-37.8101165833, 175.3695157, "87A"], +[-37.8055532333, 175.3695431833, "41"], +[-37.8068988, 175.3688744333, "54"], +[-37.8059911667, 175.3690365333, "44"], +[-37.8074588333, 175.36921695, "59"], +[-37.8075005667, 175.3687474667, "60"], +[-37.80836585, 175.3685797833, "64"], +[-37.8060896833, 175.3724944167, "67A"], +[-37.8079139, 175.3722770833, "67B"], +[-37.8089385167, 175.3721465167, "67C"], +[-37.81012905, 175.37175445, "67D"], +[-37.8110090333, 175.3680073333, "96"], +[-37.8103251, 175.3687031333, "89"], +[-37.8101581667, 175.36820355, "88"], +[-37.8097519333, 175.36879765, "85"], +[-37.8084821, 175.37132025, "69"], +[-37.8818073167, 175.4679643, "6"], +[-37.8823003833, 175.4676866167, "1"], +[-37.8818464333, 175.4675593, "5"], +[-37.8822481333, 175.4679646833, "2"], +[-37.8817913833, 175.4677682167, "7"], +[-37.8821612333, 175.4674131167, "3A"], +[-37.8821403, 175.46766325, "3"], +[-37.8821458833, 175.4679535, "4"], +[-37.9077193667, 175.4708605833, "32"], +[-37.9105951, 175.4793621667, "98A"], +[-37.9066916333, 175.4685963, "19"], +[-37.9104376833, 175.4794448167, "98"], +[-37.9064596833, 175.4678557333, "11"], +[-37.9103041333, 175.479528, "100"], +[-37.9090584167, 175.477976, "83"], +[-37.9088679, 175.4779112, "81B"], +[-37.90751235, 175.4701317833, "26"], +[-37.9085779167, 175.4748978833, "57B"], +[-37.9077844167, 175.4710735, "34"], +[-37.9088840833, 175.4747589333, "60"], +[-37.9063916833, 175.4676261333, "9"], +[-37.9091791167, 175.47510015, "64A"], +[-37.9090063, 175.4778273167, "81"], +[-37.9094076667, 175.4749288167, "66"], +[-37.9104649333, 175.4812665333, "111"], +[-37.9094658167, 175.47513735, "66A"], +[-37.9106371667, 175.4806045833, "108"], +[-37.9085164667, 175.47469955, "57A"], +[-37.9065306333, 175.4680931667, "13B"], +[-37.90744655, 175.46992735, "24"], +[-37.90669875, 175.4675042833, "10"], +[-37.9063321167, 175.467451, "7"], +[-37.9068232667, 175.4690555333, "23"], +[-37.9064476333, 175.4682054167, "13A"], +[-37.90728695, 175.4687101167, "20A"], +[-37.90564665, 175.4665080833, "1B"], +[-37.9095425167, 175.4780996, "87"], +[-37.9055099333, 175.4665785667, "1C"], +[-37.9064278333, 175.4685453667, "17"], +[-37.9087755667, 175.4730346, "48A"], +[-37.9092946833, 175.4772395333, "77"], +[-37.9089289833, 175.4729708, "48B"], +[-37.9070766, 175.4680242167, "14A"], +[-37.9099299333, 175.4794760167, "97"], +[-37.9060196667, 175.4664193167, "3"], +[-37.9093701833, 175.4764340333, "78"], +[-37.9088882, 175.4759446333, "71"], +[-37.9071022833, 175.4688659833, "20"], +[-37.9087805333, 175.4732292667, "50A"], +[-37.9101438333, 175.4802177167, "103"], +[-37.9100409167, 175.4805634167, "105A"], +[-37.9103943, 175.4797851, "102"], +[-37.9097405333, 175.4787679167, "95"], +[-37.9093126667, 175.4762224667, "76"], +[-37.9076596, 175.4706490167, "30"], +[-37.9090636667, 175.4764674667, "75"], +[-37.9091701167, 175.47836235, "89"], +[-37.9089457333, 175.4761631167, "73"], +[-37.9085522833, 175.4736826, "52"], +[-37.9092411833, 175.4760100667, "74"], +[-37.9079714833, 175.4729381333, "45"], +[-37.9080979833, 175.4733453333, "49"], +[-37.9069515333, 175.4683180833, "16"], +[-37.9066421833, 175.4673182, "8"], +[-37.90937045, 175.47757155, "79"], +[-37.9081895333, 175.47364565, "51"], +[-37.9086237333, 175.4750583333, "59"], +[-37.9091840167, 175.4757918333, "72"], +[-37.9087522333, 175.47547835, "63"], +[-37.90689515, 175.46927105, "25"], +[-37.9078795, 175.4713550833, "36"], +[-37.9056039, 175.4664057333, "1A"], +[-37.9106886833, 175.4808305833, "110"], +[-37.9059434167, 175.4661582833, "1"], +[-37.90686465, 175.4680447333, "14"], +[-37.9100754167, 175.4799441333, "101"], +[-37.9096307667, 175.4784052167, "93"], +[-37.9103163333, 175.4807391667, "107"], +[-37.9099907833, 175.47967445, "99"], +[-37.9102545333, 175.4804980667, "105"], +[-37.9067854667, 175.46778495, "12"], +[-37.9087875, 175.4761555333, "73A"], +[-37.9088226667, 175.4757288667, "69"], +[-37.90860015, 175.4738656333, "54"], +[-37.9084004667, 175.4731332667, "48"], +[-37.9086524, 175.4734778333, "52A"], +[-37.9070271167, 175.4685905333, "18"], +[-37.9075912333, 175.47002045, "26A"], +[-37.9089373833, 175.4749522333, "62"], +[-37.90542545, 175.4648276667, "2"], +[-37.9075973667, 175.4703872167, "28"], +[-37.9084245, 175.4757077667, "65"], +[-37.90912645, 175.4755800667, "70"], +[-37.90927015, 175.4751967833, "68A"], +[-37.9094690167, 175.4778629667, "85"], +[-37.90713625, 175.4682970167, "16A"], +[-37.9084881667, 175.4734576333, "50"], +[-37.9071228167, 175.4684523333, "18A"], +[-37.9066047833, 175.4683209, "15"], +[-37.9086888833, 175.4752875667, "61"], +[-37.9092166833, 175.4785048333, "91"], +[-37.90675295, 175.4688188167, "21"], +[-37.9089505167, 175.4731089667, "50B"], +[-37.9090581667, 175.4753575833, "68"], +[-37.9086879167, 175.47334805, "50C"], +[-37.91039185, 175.48101575, "109"], +[-37.9091127833, 175.4786399833, "91A"], +[-37.90897975, 175.4751060667, "64"], +[-37.8717186833, 175.4615598167, "102"], +[-37.8620697167, 175.4558799667, "224"], +[-37.8767515, 175.4619986833, "42"], +[-37.8664140333, 175.4578848167, "168"], +[-37.8778354833, 175.46234395, "32"], +[-37.8624631167, 175.456142, "216"], +[-37.8639001667, 175.4568719667, "194"], +[-37.8719572167, 175.4602589, "100"], +[-37.87530725, 175.46140325, "60"], +[-37.86265385, 175.4563095333, "214"], +[-37.8736987167, 175.46078595, "80"], +[-37.8899623167, 175.4632323, "57A"], +[-37.8891142333, 175.4571846167, "4"], +[-37.8896277, 175.4633464833, "59"], +[-37.88913275, 175.4644998167, "60"], +[-37.8891977, 175.46335, "1/52"], +[-37.8902417, 175.4604661, "25A"], +[-37.8892224667, 175.4630494333, "50"], +[-37.8904468333, 175.4604248, "25"], +[-37.8899309167, 175.45755835, "7"], +[-37.8893669667, 175.4601698, "26"], +[-37.8891862667, 175.4573128833, "4B"], +[-37.8897543167, 175.4603741167, "27A"], +[-37.8895259333, 175.4573211667, "4A"], +[-37.8899523167, 175.4603841667, "27B"], +[-37.8887959333, 175.4610821833, "34"], +[-37.8901048833, 175.4603943833, "27C"], +[-37.8891028833, 175.4650312333, "64"], +[-37.88868315, 175.4633466833, "52B"], +[-37.8896881, 175.4624856667, "43"], +[-37.8899772333, 175.46296325, "53"], +[-37.8893557167, 175.4604985333, "28"], +[-37.8887644667, 175.46359225, "54A"], +[-37.8887913667, 175.46338915, "52A"], +[-37.8891714, 175.4635651833, "54B"], +[-37.8898920167, 175.4582737, "13"], +[-37.8891619167, 175.46382635, "56"], +[-37.8902644667, 175.4602963, "23B"], +[-37.8903580333, 175.4578762167, "9A"], +[-37.8895457333, 175.4571203833, "2"], +[-37.8899171667, 175.4577745667, "9"], +[-37.8891239833, 175.4610409833, "32"], +[-37.8886105167, 175.4627844833, "48A"], +[-37.8897850667, 175.4601521667, "23"], +[-37.8885782833, 175.4630716, "48B"], +[-37.8895879667, 175.4639701, "65"], +[-37.88875245, 175.4628892667, "48C"], +[-37.8897637667, 175.46090555, "29"], +[-37.8898831667, 175.4584686167, "15"], +[-37.8900645833, 175.4630566333, "57"], +[-37.8894477833, 175.4587900667, "20"], +[-37.8898162, 175.4597956833, "21"], +[-37.8903147667, 175.4585830833, "15A"], +[-37.8899451, 175.4573311, "5"], +[-37.8892625, 175.46226515, "42"], +[-37.88959655, 175.4636994833, "63"], +[-37.8888289, 175.4626433167, "46B"], +[-37.8897502167, 175.4611882333, "31"], +[-37.8890874833, 175.4653801667, "66"], +[-37.8896453667, 175.4629410333, "51"], +[-37.88871155, 175.4626789833, "46A"], +[-37.8889027, 175.4648962833, "64A"], +[-37.8888759167, 175.4633533167, "2/52"], +[-37.8903299167, 175.4581553, "13A"], +[-37.8890716, 175.4657335833, "68"], +[-37.8894647167, 175.4584316167, "16"], +[-37.8889404333, 175.4574026, "6B"], +[-37.8896737667, 175.4626918667, "45"], +[-37.8899074, 175.4580168, "11"], +[-37.8898575333, 175.4588148833, "17"], +[-37.8896982167, 175.46224375, "1/41-7/41"], +[-37.8895164167, 175.4575203, "6"], +[-37.8899765333, 175.4602187333, "23A"], +[-37.8891143, 175.4647213833, "62"], +[-37.8892440667, 175.46252665, "46"], +[-37.88890735, 175.4607073833, "30A"], +[-37.88930945, 175.4612971, "36"], +[-37.8892202667, 175.4574350833, "6A"], +[-37.8891678667, 175.4639653333, "58"], +[-37.8898663667, 175.4589170833, "19"], +[-37.88937355, 175.4599354833, "24"], +[-37.8893259833, 175.4609626833, "32A"], +[-37.8899845333, 175.4624851, "49"], +[-37.8700170667, 175.4425962167, "35"], +[-37.87002395, 175.4440538333, "45"], +[-37.8703417167, 175.4408183833, "19"], +[-37.8704475833, 175.44446245, "48"], +[-37.8705703667, 175.44211805, "32"], +[-37.8712876167, 175.4401329, "8"], +[-37.8706072, 175.4431831333, "40"], +[-37.88103245, 175.43996055, "74"], +[-37.8810238833, 175.44054185, "144"], +[-37.8819540833, 175.44341985, "444"], +[-37.8810368167, 175.4414257833, "218"], +[-37.8836569833, 175.4449454, "695"], +[-37.8805499, 175.44146635, "219"], +[-37.88153545, 175.4435217, "409"], +[-37.8805337667, 175.4422020167, "277"], +[-37.8810820333, 175.4423189667, "302"], +[-37.8826985333, 175.4431283833, "503"], +[-37.8825451667, 175.4439081167, "533"], +[-37.8834376, 175.4454858167, "694"], +[-37.8806721167, 175.44412345, "397"], +[-37.81387095, 175.45409265, "1"], +[-37.821195, 175.4616223833, "104"], +[-37.8211624833, 175.4682833, "181"], +[-37.8178846167, 175.4588240333, "65"], +[-37.8149536667, 175.4553629333, "15"], +[-37.8197732667, 175.4671436, "167"], +[-37.8161526333, 175.4563465, "35"], +[-37.8209648833, 175.4674674, "178"], +[-37.820487, 175.4606511167, "86"], +[-37.9711954833, 175.3673120333, "66"], +[-37.8927382667, 175.4630076, "2A"], +[-37.8930191833, 175.4631100333, "1"], +[-37.89302745, 175.4629626333, "1A"], +[-37.8927669333, 175.46308965, "2"], +[-37.8929038667, 175.46322235, "5"], +[-37.8926603333, 175.4633015, "3A"], +[-37.89273305, 175.4631913833, "3"], +[-37.8928261167, 175.4632172333, "4"], +[-37.8863257333, 175.3892431333, "29"], +[-37.8828649833, 175.3942711333, "76"], +[-37.88740485, 175.3880108167, "3"], +[-37.8816477833, 175.39495895, "85"], +[-37.9193026667, 175.46865615, "27"], +[-37.9191047667, 175.4689871, "21"], +[-37.9190031667, 175.4685222, "29"], +[-37.9191244667, 175.4666619167, "55"], +[-37.9187559333, 175.4673880833, "43"], +[-37.9191856, 175.4667804333, "49"], +[-37.9183846667, 175.4653317833, "75"], +[-37.9186045833, 175.46662185, "59"], +[-37.9191840167, 175.4678865167, "35"], +[-37.9191584333, 175.4662006333, "61"], +[-37.9188624, 175.4676419833, "39"], +[-37.9184419667, 175.4657698, "69"], +[-37.9178364167, 175.4627168667, "111"], +[-37.9185242667, 175.4661814167, "63"], +[-37.9191998, 175.4694479333, "17"], +[-37.9190388167, 175.4654450833, "71"], +[-37.91796485, 175.4632720833, "103"], +[-37.91880005, 175.4653678333, "73"], +[-37.9182357167, 175.4645811, "93"], +[-37.9177229333, 175.4619539, "119"], +[-37.91802955, 175.4624559167, "115"], +[-37.9176650833, 175.4616779667, "123"], +[-37.91870075, 175.4670770833, "45"], +[-37.9176143667, 175.4613274, "125"], +[-37.9189086667, 175.468155, "33"], +[-37.9174097167, 175.4613318833, "127"], +[-37.9190924, 175.4675234333, "41"], +[-37.8068523167, 175.3939250833, "5"], +[-37.8144720167, 175.4032648333, "122"], +[-37.8070121667, 175.3941206333, "7"], +[-37.8135841833, 175.40160315, "114"], +[-37.8071723, 175.39433025, "9"], +[-37.8073319667, 175.3945375, "13"], +[-37.8088248333, 175.39658935, "35"], +[-37.8150867, 175.4041908167, "138"], +[-37.8087098667, 175.39797025, "45"], +[-37.8153430833, 175.4043867333, "140"], +[-37.8113713333, 175.3997835833, "77"], +[-37.8128633667, 175.4026050333, "103"], +[-37.8153182333, 175.404702, "142"], +[-37.8136947667, 175.4026962667, "113"], +[-37.8146717833, 175.4042277167, "133"], +[-37.8132897167, 175.40224345, "105"], +[-37.87318525, 175.5752061, "783"], +[-37.87086625, 175.5605686167, "3/668"], +[-37.8736095333, 175.5759500667, "791"], +[-37.8846973333, 175.5128454333, "105"], +[-37.882909, 175.5284399, "295"], +[-37.8854251167, 175.50715345, "42"], +[-37.8730277, 175.5735052333, "768"], +[-37.8852305667, 175.5138063667, "116"], +[-37.8765950833, 175.5441586167, "457"], +[-37.8854819167, 175.51593135, "130"], +[-37.8793962333, 175.5400538, "398"], +[-37.8856814667, 175.5176310333, "146"], +[-37.8850541667, 175.5122725, "94"], +[-37.8859048, 175.5196622667, "158"], +[-37.8839926333, 175.5070946667, "44"], +[-37.8828246833, 175.5299873833, "300"], +[-37.8835640333, 175.5073463, "47"], +[-37.8812550167, 175.53308795, "338"], +[-37.87624165, 175.5468433, "472"], +[-37.8735672333, 175.5726554167, "2/766"], +[-37.8756854833, 175.5468615167, "483"], +[-37.8855889333, 175.5069699, "1/42"], +[-37.8764352833, 175.55027325, "508"], +[-37.88626155, 175.5222170833, "2/182"], +[-37.8739916667, 175.5532237833, "537"], +[-37.8790302167, 175.5397931667, "396"], +[-37.8750138, 175.5530649833, "542"], +[-37.8839209333, 175.5106114167, "79"], +[-37.8790556833, 175.5364847667, "371"], +[-37.8804106667, 175.5347674167, "348"], +[-37.8843208, 175.50806425, "50"], +[-37.8835448667, 175.50621025, "37"], +[-37.8789683667, 175.5407611667, "400"], +[-37.8819428333, 175.5302822333, "307"], +[-37.8838573833, 175.5041196833, "26"], +[-37.8728271833, 175.5730276667, "1/766"], +[-37.8862517333, 175.5218569167, "1/182"], +[-37.88592065, 175.52030825, "170"], +[-37.8804488333, 175.5336723833, "345"], +[-37.8724145667, 175.5722238833, "756"], +[-37.8710689167, 175.5600702167, "2/668"], +[-37.8749418667, 175.5762505333, "808"], +[-37.88330185, 175.5037989167, "25"], +[-37.8742985667, 175.5709469667, "766"], +[-37.8855461833, 175.5169524167, "138"], +[-37.8840771833, 175.5086316, "57"], +[-37.8799641333, 175.5345286833, "351"], +[-37.8747767833, 175.5703700833, "4/766"], +[-37.8712547, 175.5595212, "1/668"], +[-37.8852620333, 175.5203346333, "167"], +[-37.87846535, 175.5402971, "407"], +[-37.87451705, 175.5722616833, "3/766"], +[-37.8865716667, 175.5064284333, "2/42"], +[-37.8699697833, 175.5701625667, "725"], +[-37.8850022833, 175.5119347333, "92"], +[-37.9141589833, 175.4676254, "19"], +[-37.9155973833, 175.46772575, "11/2"], +[-37.91552955, 175.4660865, "36/2"], +[-37.9156190333, 175.4673462667, "9/2"], +[-37.9154039167, 175.4660434167, "35/2"], +[-37.9155738333, 175.4664463167, "5/2"], +[-37.91535915, 175.4658985167, "34/2"], +[-37.9155678833, 175.4667106333, "6/2"], +[-37.91544365, 175.4658299, "33/2"], +[-37.9160503333, 175.4675822, "21/2"], +[-37.9156064333, 175.4657751333, "32/2"], +[-37.9147495167, 175.4662775167, "5"], +[-37.9157566167, 175.46569785, "31/2"], +[-37.9154667667, 175.4679029167, "12/2"], +[-37.91585185, 175.4657343333, "30/2"], +[-37.9152016333, 175.4653091167, "1"], +[-37.9153522167, 175.4663997833, "4"], +[-37.9156452333, 175.4675400833, "10/2"], +[-37.9153521167, 175.4665981833, "4A"], +[-37.91558475, 175.4671245833, "8/2"], +[-37.9153486333, 175.4667996333, "6"], +[-37.9155721333, 175.4669092, "7/2"], +[-37.9152996667, 175.4669875833, "6A"], +[-37.9150243, 175.46636625, "5A"], +[-37.9162041333, 175.4675381333, "22/2"], +[-37.9162005, 175.4673120333, "23/2"], +[-37.9161440167, 175.4671061, "24/2"], +[-37.9160962667, 175.4669004667, "25/2"], +[-37.9160486333, 175.4666893333, "26/2"], +[-37.9159963833, 175.46648905, "27/2"], +[-37.91591785, 175.4662933333, "28/2"], +[-37.9157758667, 175.4662000667, "38/2"], +[-37.9157248667, 175.4659447167, "37/2"], +[-37.9158606, 175.46592755, "29/2"], +[-37.9159540833, 175.4673968833, "20/2"], +[-37.91578295, 175.4674348167, "17/2"], +[-37.91584205, 175.4677180167, "18/2"], +[-37.9156962333, 175.4664396833, "13/2"], +[-37.915699, 175.4667043333, "14/2"], +[-37.9157030167, 175.4669139, "15/2"], +[-37.9157118833, 175.4671016, "16/2"], +[-37.9158802833, 175.4671848, "19/2"], +[-37.9146419333, 175.4678385333, "16"], +[-37.9149667, 175.46605435, "3"], +[-37.9150279333, 175.4667922833, "7"], +[-37.9141704333, 175.4678512833, "21"], +[-37.9142653, 175.4673118833, "15"], +[-37.91450075, 175.4674330833, "13"], +[-37.9147242667, 175.46734925, "11"], +[-37.9148913167, 175.4671297667, "9"], +[-37.9151929833, 175.4672369167, "8"], +[-37.9144812833, 175.4679524833, "18"], +[-37.9149502167, 175.4675873667, "12"], +[-37.9147979333, 175.4677301167, "14"], +[-37.9140953833, 175.4682407667, "22"], +[-37.9143135333, 175.4679806667, "20"], +[-37.9139027667, 175.4673990667, "17"], +[-37.91508455, 175.46743825, "10"], +[-37.8207364833, 175.3925286333, "110"], +[-37.8140913167, 175.3867786167, "31"], +[-37.82388165, 175.3961648833, "164"], +[-37.8149241833, 175.3869723167, "38"], +[-37.8341317167, 175.4133935833, "364"], +[-37.8244762167, 175.39859475, "186"], +[-37.82108675, 175.3928284333, "112"], +[-37.8257318, 175.4028302167, "236"], +[-37.8213587333, 175.3930749333, "114"], +[-37.8245402667, 175.3979335833, "184"], +[-37.8216469333, 175.3939728667, "129"], +[-37.8287610333, 175.4083265833, "302"], +[-37.82049075, 175.3882675333, "92"], +[-37.8209210167, 175.3876718333, "90B"], +[-37.8243807167, 175.4009181, "207"], +[-37.8210754833, 175.3869467167, "90A"], +[-37.8142259167, 175.3862871667, "26"], +[-37.8142241, 175.3891889667, "43"], +[-37.8355967167, 175.4144058667, "382"], +[-37.8263508333, 175.4048937333, "251"], +[-37.8237985833, 175.3972016667, "173"], +[-37.82187925, 175.3941376333, "137"], +[-37.8159891667, 175.3862058833, "42"], +[-37.8233059333, 175.3950369833, "156"], +[-37.8224871333, 175.3939314167, "148"], +[-37.8194135833, 175.3914179833, "100"], +[-37.8149244, 175.38763835, "41"], +[-37.8192395667, 175.3919598167, "103"], +[-37.8202387167, 175.3879586, "90D"], +[-37.81610515, 175.3888637333, "59"], +[-37.8282481667, 175.4077297, "290"], +[-37.81714775, 175.3892465833, "68"], +[-37.8196078, 175.3887699667, "90"], +[-37.817284, 175.39001715, "77"], +[-37.81837465, 175.39045065, "86"], +[-37.8277749, 175.4071191667, "272"], +[-37.8265916333, 175.4056707167, "251A"], +[-37.8128841167, 175.3855143833, "11"], +[-37.8291297, 175.4098336167, "313"], +[-37.8329969667, 175.4126325333, "358"], +[-37.8322266, 175.4129321167, "347"], +[-37.8348266833, 175.4139054, "372"], +[-37.9099726167, 175.4757886667, "71"], +[-37.9101903333, 175.4760631833, "73"], +[-37.9152217167, 175.47371395, "131"], +[-37.9059390167, 175.47854405, "32"], +[-37.9097995667, 175.4753924833, "71B"], +[-37.9044269833, 175.4792423333, "12"], +[-37.9084252667, 175.4764496833, "49"], +[-37.9086711167, 175.4772269833, "52"], +[-37.9116987, 175.4759278667, "92"], +[-37.9098638167, 175.47581795, "69"], +[-37.9117964333, 175.4757621167, "94"], +[-37.90989485, 175.47559865, "71A"], +[-37.9073590833, 175.4778494167, "40A"], +[-37.91330765, 175.47552755, "108"], +[-37.9057401833, 175.4781938167, "25"], +[-37.911296, 175.4748848167, "89"], +[-37.9121108667, 175.4758530667, "98A"], +[-37.9043787833, 175.4787889167, "13"], +[-37.9083076667, 175.4766785667, "47A"], +[-37.9036909333, 175.4791402667, "3"], +[-37.91220345, 175.4755294, "100"], +[-37.9053728833, 175.4783509333, "1/23"], +[-37.90519915, 175.4784179, "21"], +[-37.9052690667, 175.4783896667, "21A"], +[-37.9114245, 175.4759148333, "88"], +[-37.9081505833, 175.4774655, "46"], +[-37.9142982833, 175.4745833, "120"], +[-37.9131166, 175.4751412333, "106"], +[-37.9083510667, 175.47694365, "47"], +[-37.9065192667, 175.4778253667, "31"], +[-37.9083240333, 175.47739375, "48"], +[-37.9149526833, 175.4742867833, "126"], +[-37.9103091667, 175.476032, "75"], +[-37.9118749833, 175.4749764833, "101A"], +[-37.9042161667, 175.4788623333, "11"], +[-37.9129278167, 175.4752157333, "104"], +[-37.9121256667, 175.4751926333, "103"], +[-37.9112547, 175.4755432667, "85"], +[-37.9142550667, 175.4741810667, "121"], +[-37.9106238667, 175.4759059667, "77A"], +[-37.9104479, 175.4759570167, "77"], +[-37.9114070667, 175.4754850833, "87"], +[-37.9113298833, 175.47516835, "87A"], +[-37.9148737833, 175.4738503833, "127"], +[-37.9112868667, 175.4759815833, "86"], +[-37.9111339667, 175.4760538, "82"], +[-37.91156375, 175.4758556833, "90"], +[-37.9151142, 175.4742192667, "128"], +[-37.9151403167, 175.4737436, "129"], +[-37.915375, 175.4740628167, "130"], +[-37.9144834167, 175.4745128333, "122"], +[-37.9144913, 175.4737651167, "123A"], +[-37.9144983167, 175.4740186167, "123"], +[-37.9146270167, 175.4744201833, "124"], +[-37.9126748, 175.4749461833, "105"], +[-37.9128134833, 175.4748703333, "107"], +[-37.9129492333, 175.4747718167, "109"], +[-37.9131005833, 175.4746998, "111"], +[-37.9132571833, 175.4746269833, "113"], +[-37.9135018833, 175.4749717, "114"], +[-37.91340395, 175.4745515, "115"], +[-37.9136698, 175.4748826167, "116"], +[-37.91356065, 175.4744797, "117"], +[-37.91379245, 175.4748357, "118"], +[-37.9136715833, 175.4744300167, "119"], +[-37.9085906833, 175.4768593, "53"], +[-37.9089448167, 175.47752235, "54A"], +[-37.9088353, 175.4771584333, "54"], +[-37.9087287167, 175.4767663333, "55"], +[-37.9090036667, 175.4770825167, "56"], +[-37.9065108833, 175.4773228833, "33"], +[-37.90671225, 175.4781606833, "34"], +[-37.90673975, 175.4777032, "35"], +[-37.9068835, 175.4780653833, "36"], +[-37.9067380833, 175.4772301167, "37"], +[-37.9070569167, 175.47798485, "38"], +[-37.9070025333, 175.4775753333, "39"], +[-37.90721945, 175.47790165, "40"], +[-37.9072522667, 175.4774842833, "41"], +[-37.9073576167, 175.47744775, "43"], +[-37.9055054167, 175.4782415167, "23"], +[-37.9146826833, 175.4739228, "125"], +[-37.9048823167, 175.4785375333, "17"], +[-37.9120084333, 175.4756561667, "98"], +[-37.9086973167, 175.4775292833, "52A"], +[-37.90495545, 175.4780925667, "19A"], +[-37.9115964667, 175.4754098667, "91"], +[-37.9117456333, 175.4753338667, "93"], +[-37.9047131167, 175.47861435, "15"], +[-37.9166350333, 175.47304345, "141"], +[-37.9119624833, 175.4752623, "101"], +[-37.9039384833, 175.4785719, "9A"], +[-37.9040451, 175.4789520667, "9"], +[-37.9159567333, 175.4733394833, "133"], +[-37.9133416833, 175.4750525833, "112"], +[-37.9164713167, 175.4731105667, "139"], +[-37.9162964833, 175.4731911, "137"], +[-37.91611805, 175.4732665833, "135"], +[-37.9050444167, 175.4785102333, "19"], +[-37.9084974833, 175.47730975, "50"], +[-37.9168131667, 175.4729816333, "143"], +[-37.9088890667, 175.47665875, "51"], +[-37.9169769833, 175.47291525, "145"], +[-37.91109855, 175.4756779833, "83"], +[-37.9036883833, 175.47891485, "5"], +[-37.9038746333, 175.4790332667, "7"], +[-37.9098547333, 175.4762237333, "67"], +[-37.9134471167, 175.47558925, "110"], +[-37.9091846167, 175.4769739333, "58"], +[-37.9041253333, 175.47834505, "67"], +[-37.9031156667, 175.47324245, "30"], +[-37.9039179333, 175.4771832667, "57"], +[-37.9027583833, 175.4732321833, "31"], +[-37.9039296333, 175.4759913167, "1/48-5/48"], +[-37.9031900333, 175.4735082833, "32"], +[-37.9034018667, 175.4743276167, "36"], +[-37.9023766833, 175.47196845, "7"], +[-37.9032458833, 175.47560575, "49A"], +[-37.9020863667, 175.4722218833, "9"], +[-37.9043371833, 175.4768388333, "56B"], +[-37.902459, 175.47222945, "15"], +[-37.9037351, 175.47533715, "44"], +[-37.9034826333, 175.4756647333, "51"], +[-37.9036591, 175.47507465, "42"], +[-37.90418945, 175.4769539167, "56"], +[-37.9032979333, 175.4750164, "45"], +[-37.9034232167, 175.47544545, "49"], +[-37.9033578, 175.4752311833, "47"], +[-37.9038201667, 175.4756474167, "46"], +[-37.9022973167, 175.4729606, "25"], +[-37.90414875, 175.4768183, "52"], +[-37.90349885, 175.4745345833, "38"], +[-37.9026894, 175.4730117167, "29"], +[-37.9021493667, 175.47246275, "17"], +[-37.9026062167, 175.47272955, "23"], +[-37.9025311667, 175.4725057, "21"], +[-37.9030380667, 175.47297935, "28"], +[-37.9024547167, 175.4734671, "33"], +[-37.9025374333, 175.4713386333, "2"], +[-37.9032365, 175.4747976667, "43"], +[-37.903545, 175.4758786333, "53"], +[-37.9036348667, 175.47615225, "55"], +[-37.9040838167, 175.4777189667, "61"], +[-37.9044308, 175.4778047833, "62A"], +[-37.9045770833, 175.4776408667, "62"], +[-37.9041435833, 175.4779421667, "63"], +[-37.9045395167, 175.4780827833, "64"], +[-37.9042280667, 175.4782127, "65"], +[-37.9046025833, 175.4783325333, "66"], +[-37.9027241, 175.4719824833, "6"], +[-37.9031429167, 175.4744526833, "41"], +[-37.90234395, 175.4730909833, "27"], +[-37.9035807667, 175.474814, "40"], +[-37.9024965667, 175.4735884667, "35"], +[-37.9028375333, 175.4735153, "37"], +[-37.90263765, 175.4716923333, "4"], +[-37.9021975, 175.47257235, "19"], +[-37.9043748667, 175.4775318, "60"], +[-37.90399325, 175.4774612167, "59"], +[-37.9042882333, 175.4772585333, "58"], +[-37.8844172167, 175.4672121, "84"], +[-37.88526725, 175.4677498167, "89"], +[-37.88475025, 175.4713889167, "129A"], +[-37.8850106, 175.4704196167, "119B"], +[-37.8848693167, 175.4653303833, "67A"], +[-37.8849946167, 175.47052095, "119A"], +[-37.8853588667, 175.4594981667, "21A"], +[-37.8840973667, 175.4733293833, "140"], +[-37.88468505, 175.4712750833, "127B"], +[-37.8848600667, 175.47296205, "141"], +[-37.8846001333, 175.4600292833, "26A"], +[-37.8836016167, 175.4733639667, "142"], +[-37.8834011333, 175.4735009333, "144A"], +[-37.8836620833, 175.4735234, "144"], +[-37.8836292333, 175.4677762333, "92A"], +[-37.8848011, 175.4732428833, "145"], +[-37.8848537, 175.4655050667, "67B"], +[-37.8840610333, 175.4737371333, "146"], +[-37.884338, 175.4684939, "106"], +[-37.8844335167, 175.4733986333, "147"], +[-37.88444615, 175.4731180167, "1/143"], +[-37.8840384, 175.4739760167, "148"], +[-37.8846361, 175.4730721, "2/143"], +[-37.8847583667, 175.4735201333, "149"], +[-37.8847493833, 175.4736688167, "151"], +[-37.8846399333, 175.4737421667, "153A"], +[-37.8844193833, 175.4737101333, "153"], +[-37.8844016, 175.4739577167, "155"], +[-37.8846051, 175.4703118167, "117"], +[-37.8842630167, 175.4702309167, "118"], +[-37.8845899833, 175.4706008833, "119"], +[-37.8839889, 175.4702975, "120"], +[-37.8845767833, 175.4708850333, "121"], +[-37.8848939667, 175.471153, "125"], +[-37.8845648, 175.4711997833, "127A"], +[-37.8845397333, 175.4714559833, "129"], +[-37.8845394, 175.4715708167, "131"], +[-37.88370185, 175.4681742833, "100A"], +[-37.8839465, 175.4681139833, "100"], +[-37.8839286333, 175.4682708, "102"], +[-37.8847414667, 175.4683697167, "101"], +[-37.8843311333, 175.4683495167, "104"], +[-37.8850005167, 175.468632, "105"], +[-37.8847132167, 175.4687043167, "107"], +[-37.88432375, 175.4686693, "108A"], +[-37.8841027333, 175.4686521333, "108B"], +[-37.8837668333, 175.4686217667, "108C"], +[-37.8843156167, 175.4690232667, "110"], +[-37.8844019333, 175.4676185833, "88"], +[-37.8839683, 175.4676575, "90"], +[-37.8839636333, 175.4677862833, "92"], +[-37.8847523333, 175.4678389667, "93"], +[-37.8843878667, 175.4678844833, "94"], +[-37.8843912, 175.46807835, "96"], +[-37.88488445, 175.4681411333, "97A"], +[-37.8847461167, 175.4681295167, "97"], +[-37.8850594333, 175.46849965, "103"], +[-37.88521615, 175.46866015, "105A"], +[-37.8852093833, 175.4680692333, "95B"], +[-37.8844562, 175.4666664667, "82"], +[-37.8844693167, 175.4664959833, "80"], +[-37.8850079167, 175.4663639833, "77"], +[-37.8850347667, 175.4662661667, "75A"], +[-37.8845094, 175.46511225, "70"], +[-37.8848360833, 175.46580235, "71"], +[-37.8845048333, 175.4652718333, "72"], +[-37.88484705, 175.4659848667, "73"], +[-37.8846077667, 175.4632926667, "56"], +[-37.8849583, 175.4636067667, "57"], +[-37.8849358667, 175.46389605, "59"], +[-37.8846143167, 175.4635059, "60"], +[-37.8849265833, 175.4640693333, "61"], +[-37.88458485, 175.4638039167, "62"], +[-37.8846887167, 175.4620028833, "40"], +[-37.8846763667, 175.4622161, "42"], +[-37.88439555, 175.46253885, "50A"], +[-37.8843140667, 175.4625245333, "50B"], +[-37.8846659833, 175.4626401167, "50"], +[-37.8843395, 175.4756649667, "165"], +[-37.8843288167, 175.4758768167, "167"], +[-37.8847458167, 175.47598175, "169"], +[-37.8839907333, 175.4754077667, "154"], +[-37.8832283833, 175.4761336167, "158A"], +[-37.8834749667, 175.4760305, "158"], +[-37.8839257333, 175.4761204333, "160"], +[-37.8839105, 175.4763266167, "162"], +[-37.8839068667, 175.4765393833, "164"], +[-37.8839006667, 175.4766556333, "166A"], +[-37.8838300333, 175.4766482833, "166B"], +[-37.8837648667, 175.4766430667, "166C"], +[-37.88370985, 175.4766495333, "166D"], +[-37.88450305, 175.4759053833, "167A"], +[-37.8843063833, 175.47627465, "173"], +[-37.88481905, 175.4593686833, "20"], +[-37.8848109, 175.4595419, "22"], +[-37.8847686333, 175.4602303333, "28"], +[-37.8847849, 175.4600010333, "26"], +[-37.8847695, 175.4604640833, "30"], +[-37.8847524167, 175.4606697667, "32A"], +[-37.8846032167, 175.4607054667, "32"], +[-37.8847437, 175.4609159, "34"], +[-37.8847367167, 175.4610480333, "36"], +[-37.8846226, 175.4597085, "24A"], +[-37.88480055, 175.4597682833, "24"], +[-37.8849988, 175.45680165, "4"], +[-37.88498305, 175.4570515667, "6"], +[-37.8852893167, 175.45737525, "9A"], +[-37.8856279667, 175.4573165333, "9"], +[-37.8852346167, 175.4583441167, "17"], +[-37.8846999, 175.46184155, "38"], +[-37.8842668333, 175.4699965667, "116"], +[-37.8849434, 175.4633167, "55"], +[-37.8849201333, 175.4582107833, "14"], +[-37.8841963333, 175.4680842833, "98"], +[-37.8850626333, 175.4680435333, "95A"], +[-37.8849265167, 175.4579232, "12"], +[-37.8849416333, 175.4576479667, "10"], +[-37.88464885, 175.4628154667, "52"], +[-37.88495495, 175.4630154, "53"], +[-37.8841566, 175.46306945, "54C"], +[-37.8843828833, 175.4631118167, "54B"], +[-37.8846277833, 175.4630559167, "54A"], +[-37.8852737333, 175.4576375667, "11"], +[-37.8849684, 175.4572897333, "8"], +[-37.8842156, 175.4664696, "80A"], +[-37.8852629167, 175.4609307833, "31A"], +[-37.88407215, 175.4664618, "80B"], +[-37.8853292833, 175.4658178167, "69D"], +[-37.8845638833, 175.4761256667, "171A"], +[-37.8843256167, 175.4761031333, "171"], +[-37.88461985, 175.4700835333, "115"], +[-37.8852249667, 175.4591643, "19"], +[-37.8850024667, 175.4655843667, "69A"], +[-37.8853347667, 175.4565859833, "3"], +[-37.8849291167, 175.4710324667, "123"], +[-37.8850487333, 175.46776055, "91"], +[-37.88518005, 175.4657751833, "69B"], +[-37.8847597, 175.4703240833, "117A"], +[-37.8838148667, 175.4733438, "140A"], +[-37.8852627, 175.4581414167, "15"], +[-37.8852686333, 175.4578723833, "13"], +[-37.8843833333, 175.4628765333, "52A"], +[-37.8846312667, 175.47258135, "135A"], +[-37.8841268, 175.4727441333, "134"], +[-37.8841223833, 175.4729087, "136"], +[-37.8844595167, 175.4725233833, "135"], +[-37.8844608, 175.4728356, "139"], +[-37.88411085, 175.4730945167, "138"], +[-37.8844061, 175.4674269333, "86"], +[-37.8846697, 175.4623996833, "44"], +[-37.8843516833, 175.4624326667, "46"], +[-37.8845218833, 175.4609426833, "34A"], +[-37.8845623833, 175.4649360333, "68"], +[-37.8852556667, 175.46580475, "69C"], +[-37.8853163833, 175.4638318667, "57A"], +[-37.8841402833, 175.4725588333, "132"], +[-37.8845058, 175.46627115, "78"], +[-37.88520865, 175.4594427, "21"], +[-37.88518675, 175.4597238, "23"], +[-37.88516405, 175.4602253833, "27A"], +[-37.8851860333, 175.4600092, "25"], +[-37.8851601667, 175.4603894167, "27B"], +[-37.8851518333, 175.4606064167, "29"], +[-37.8851348833, 175.4608605667, "31"], +[-37.8850809, 175.4610533333, "33"], +[-37.8856552, 175.4571406667, "7A"], +[-37.8853045167, 175.4571108167, "7"], +[-37.88540295, 175.4658220667, "69E"], +[-37.8853268167, 175.459619, "23A"], +[-37.8836866, 175.4760956667, "160A"], +[-37.8847632333, 175.4673442, "83"], +[-37.8847711333, 175.4675412167, "85"], +[-37.8848386167, 175.4661800667, "75"], +[-37.8845198, 175.4660549333, "76"], +[-37.8848257667, 175.46637395, "79"], +[-37.88481345, 175.4665570333, "81"], +[-37.8850432333, 175.4640734333, "61A"], +[-37.8854814333, 175.46382035, "57B"], +[-37.8853202, 175.45681275, "5"], +[-37.88467615, 175.4756712, "165A"], +[-37.8843590833, 175.4753791667, "163"], +[-37.8854775, 175.4568292667, "5A"], +[-37.8846230833, 175.4699498, "113"], +[-37.8840125667, 175.47500995, "150"], +[-37.8840018667, 175.4752078667, "152"], +[-37.8846837667, 175.4753169, "163A"], +[-37.8843619333, 175.4750396667, "161"], +[-37.8840304667, 175.4794188333, "2A"], +[-37.8807723833, 175.4785762167, "38"], +[-37.8832733667, 175.4785025167, "14"], +[-37.8805087833, 175.4795802, "39"], +[-37.8825106167, 175.4792898667, "22"], +[-37.8807048667, 175.4788063333, "40"], +[-37.88040735, 175.47993645, "41"], +[-37.8802707, 175.4795716333, "43"], +[-37.8806401833, 175.4791473833, "46"], +[-37.8805187667, 175.4791179667, "48"], +[-37.8803874167, 175.47910085, "52A"], +[-37.8832278833, 175.4793638667, "16"], +[-37.8830907167, 175.4793476833, "18"], +[-37.8821391833, 175.4796965667, "27"], +[-37.8822759, 175.4797246333, "25"], +[-37.88156645, 175.4792199667, "26"], +[-37.88154905, 175.4796941667, "29"], +[-37.8814046333, 175.4791842167, "28"], +[-37.8841534, 175.4798770333, "1"], +[-37.88124075, 175.47917795, "30"], +[-37.8811993833, 175.4787023, "32"], +[-37.8809580167, 175.4791391833, "34"], +[-37.8809750667, 175.4788466833, "34A"], +[-37.8835383667, 175.4798388, "9"], +[-37.8831311167, 175.4801495667, "15"], +[-37.88322745, 175.47980485, "13"], +[-37.8806638833, 175.4795858667, "37"], +[-37.88084555, 175.4786213833, "36"], +[-37.88399585, 175.4798779833, "3"], +[-37.8839041667, 175.4794138833, "2"], +[-37.8837673333, 175.4794031833, "4"], +[-37.8837132667, 175.4798593833, "7"], +[-37.8808555833, 175.47961625, "35"], +[-37.8835850167, 175.47938365, "8"], +[-37.8838495167, 175.4798612, "5"], +[-37.8837031833, 175.4801284167, "7A"], +[-37.8836938167, 175.47892395, "6"], +[-37.8833948833, 175.4788199167, "12"], +[-37.8832576167, 175.4787911, "14A"], +[-37.8834012333, 175.4798226333, "11"], +[-37.8834290167, 175.4793790167, "10"], +[-37.9152153667, 175.5551235833, "3/5"], +[-37.91650135, 175.5636650667, "82"], +[-37.9161045333, 175.5591854333, "41"], +[-37.9154124667, 175.5548626, "2/5"], +[-37.9166862333, 175.55784235, "32"], +[-37.91602365, 175.5560715, "21"], +[-37.91628925, 175.5653876833, "94"], +[-37.9160243833, 175.55493095, "1/5"], +[-37.91517585, 175.5660481167, "109"], +[-37.91440645, 175.5544777167, "9"], +[-37.9154713667, 175.56556335, "105"], +[-37.9123841333, 175.5769109, "1/239"], +[-37.9138841833, 175.5671444, "127"], +[-37.916035, 175.5569371167, "25"], +[-37.91497065, 175.5671545333, "1/114"], +[-37.9146378167, 175.5673035, "2/114"], +[-37.9176808667, 175.5727210167, "192"], +[-37.91296825, 175.57312245, "1/192"], +[-37.9165331, 175.56259155, "70"], +[-37.9128700167, 175.5676242167, "135"], +[-37.9127302333, 175.5677905167, "137"], +[-37.9138889, 175.57603805, "212"], +[-37.8834204167, 175.4653173333, "2/67"], +[-37.8829550167, 175.4680045, "93A"], +[-37.8815600333, 175.4786609667, "164C"], +[-37.8830218167, 175.4623102, "41"], +[-37.8817898333, 175.47891525, "166A"], +[-37.8827127167, 175.46177765, "40"], +[-37.8822979167, 175.4663795167, "74A"], +[-37.8828493167, 175.4591475, "16"], +[-37.88142475, 175.4786348833, "164D"], +[-37.88306005, 175.4616891167, "37"], +[-37.8820609167, 175.4740814833, "122"], +[-37.8826992167, 175.4619383167, "42"], +[-37.8821519667, 175.4815448333, "209A"], +[-37.883041, 175.4620756167, "39"], +[-37.8832654167, 175.4652926667, "1/67"], +[-37.88272565, 175.4616287, "38"], +[-37.8830076333, 175.4626069, "43"], +[-37.8831357, 175.4601246167, "27"], +[-37.8817307, 175.4761582, "146A"], +[-37.8831685833, 175.4596908, "25"], +[-37.8815906167, 175.4788964667, "166B"], +[-37.88278065, 175.4602865167, "26"], +[-37.8835589833, 175.4653321833, "3/67"], +[-37.8825282667, 175.4646378, "60"], +[-37.8813641333, 175.4755528333, "136A"], +[-37.8823392167, 175.4748610333, "155"], +[-37.8833277833, 175.46261325, "43A"], +[-37.8815676833, 175.4731547, "114B"], +[-37.8819471167, 175.4816728, "211"], +[-37.8829108333, 175.4730159, "139"], +[-37.8831197, 175.4654452, "69A"], +[-37.8827723, 175.4605280167, "28"], +[-37.8829114, 175.4647714833, "59"], +[-37.88250115, 175.4649823, "64"], +[-37.8829076, 175.46497065, "61"], +[-37.88293875, 175.4727218, "135"], +[-37.8824690167, 175.4726854833, "133"], +[-37.88310945, 175.4604659833, "31"], +[-37.8831059, 175.4608415833, "35"], +[-37.8827654333, 175.4607287333, "30"], +[-37.8831227667, 175.4602889167, "29"], +[-37.8825220833, 175.4621568833, "44A"], +[-37.88299765, 175.4628680167, "45"], +[-37.8832516833, 175.4628885167, "45A"], +[-37.8826944667, 175.46216875, "44"], +[-37.8825202167, 175.46254835, "48A"], +[-37.8833442667, 175.45699385, "5"], +[-37.8829708667, 175.4632570667, "51"], +[-37.8824811, 175.4725087833, "131"], +[-37.8829959833, 175.4630565833, "49"], +[-37.8826675833, 175.4625577, "48"], +[-37.88331805, 175.45745235, "9"], +[-37.8824531333, 175.47297485, "141"], +[-37.8827041833, 175.45734235, "8"], +[-37.8833336167, 175.4572248667, "7"], +[-37.8829612, 175.4728780167, "137"], +[-37.8823318333, 175.4686371167, "86"], +[-37.8824054833, 175.4672578333, "78"], +[-37.8823379667, 175.4683863333, "84A-84D"], +[-37.8823962167, 175.4674496167, "80"], +[-37.8824414833, 175.46633525, "74"], +[-37.8827537667, 175.4672953, "85"], +[-37.8822319333, 175.4661475333, "72"], +[-37.8824802, 175.4658691833, "70"], +[-37.8827660833, 175.4671242167, "83"], +[-37.8823372667, 175.47505315, "157"], +[-37.8826545167, 175.4751218167, "157A"], +[-37.8820193333, 175.4750065167, "128"], +[-37.8818626167, 175.4777718333, "152"], +[-37.8819736, 175.47592125, "140"], +[-37.8819698, 175.4757241667, "138"], +[-37.8823149, 175.4754510833, "165"], +[-37.8823264833, 175.4752907833, "163"], +[-37.8827581167, 175.4752805833, "161"], +[-37.8829257833, 175.4751779333, "159"], +[-37.8822762, 175.4760006333, "167"], +[-37.8821834, 175.4777217333, "177"], +[-37.8822236833, 175.4803508667, "199"], +[-37.8815487833, 175.4799515, "172A"], +[-37.8821390333, 175.4785808167, "185"], +[-37.8821657167, 175.4779489667, "179"], +[-37.8821615, 175.47814015, "181"], +[-37.8821482167, 175.4783480833, "183"], +[-37.88205545, 175.4801785, "197"], +[-37.8817139833, 175.48044315, "176"], +[-37.8817403667, 175.4799308667, "172"], +[-37.8817075, 175.4806324333, "176A"], +[-37.8816647167, 175.4814856333, "184"], +[-37.8817027333, 175.4808254167, "178"], +[-37.8816651167, 175.48128865, "182"], +[-37.8816775833, 175.4810764167, "180"], +[-37.8821253667, 175.4788135833, "187"], +[-37.88211265, 175.4790205167, "189"], +[-37.88210465, 175.4792012833, "191"], +[-37.8820355, 175.4804062667, "201"], +[-37.88222755, 175.4806704167, "203A"], +[-37.8820247167, 175.4806337333, "203"], +[-37.8821983833, 175.4809817, "205A"], +[-37.8820063, 175.4808974, "205"], +[-37.8819872, 175.4811870167, "207"], +[-37.88197265, 175.4814592667, "209"], +[-37.8831150167, 175.4606360833, "33"], +[-37.8827381667, 175.4614688333, "36"], +[-37.88168275, 175.4731685667, "114A"], +[-37.8825469333, 175.4624433, "46A"], +[-37.8827017167, 175.4623766, "46"], +[-37.8828950667, 175.4652071, "65"], +[-37.88223365, 175.4708144, "98"], +[-37.8826632333, 175.46886835, "99"], +[-37.88294545, 175.4574472333, "10"], +[-37.8820008, 175.47545635, "132"], +[-37.8815931167, 175.4754940333, "134"], +[-37.8815807333, 175.4756172833, "136"], +[-37.8820043167, 175.4752607833, "130"], +[-37.88218895, 175.4774782333, "175"], +[-37.88172165, 175.4801884, "174"], +[-37.8830567667, 175.4618380833, "37A"], +[-37.88330235, 175.4576792167, "11"], +[-37.8818654333, 175.4775383667, "150"], +[-37.8826391333, 175.4630505, "50C"], +[-37.8826306167, 175.4631781333, "50D"], +[-37.8822323333, 175.46476475, "62"], +[-37.8818249833, 175.4749363833, "128A"], +[-37.8826051333, 175.4701299167, "109"], +[-37.8822580667, 175.47622145, "169"], +[-37.8821165333, 175.4729660833, "112"], +[-37.8826087833, 175.4699331333, "107"], +[-37.8819629, 175.4761853, "146"], +[-37.8820175833, 175.4748403667, "126"], +[-37.8825933333, 175.4704919167, "113"], +[-37.8825976, 175.4703054667, "111"], +[-37.8815316833, 175.4759537667, "142"], +[-37.8815485667, 175.4760951167, "144"], +[-37.8826667167, 175.4685696833, "97A"], +[-37.8823006, 175.4698174167, "90"], +[-37.8822800167, 175.4702989667, "96"], +[-37.8819513333, 175.47633525, "148"], +[-37.8828277833, 175.4687268667, "97"], +[-37.8822974333, 175.469983, "92"], +[-37.8828276667, 175.4593929667, "18"], +[-37.8823263167, 175.4688898, "88"], +[-37.8832137, 175.4589384833, "17"], +[-37.8822883667, 175.4701519667, "94"], +[-37.8826732, 175.4684589667, "97B"], +[-37.8822189833, 175.47111545, "100"], +[-37.8820588, 175.4799191833, "195"], +[-37.8817857167, 175.4791120667, "168"], +[-37.8815184167, 175.4779607667, "156"], +[-37.8831976333, 175.4593128167, "21"], +[-37.8823417833, 175.4681742167, "82"], +[-37.8827111, 175.4679744667, "93"], +[-37.8832019667, 175.4591213833, "19"], +[-37.8815556333, 175.4802543833, "174A"], +[-37.88215085, 175.4723449167, "108"], +[-37.8815176167, 175.4778254833, "154"], +[-37.8820986333, 175.4731788833, "114"], +[-37.8820722833, 175.47386775, "120"], +[-37.8821363667, 175.4725972667, "110"], +[-37.8818740833, 175.47394495, "120A"], +[-37.8820951167, 175.4734228167, "116"], +[-37.88208125, 175.4736554333, "118"], +[-37.8816796667, 175.4786736667, "164B"], +[-37.88313585, 175.4678512667, "91"], +[-37.8824046833, 175.4740707, "153"], +[-37.8829457667, 175.45767015, "12A"], +[-37.8825498667, 175.45756275, "12"], +[-37.8832922167, 175.4578983333, "13"], +[-37.8829356167, 175.4578815, "14"], +[-37.8832731833, 175.4580626167, "15"], +[-37.8833720833, 175.4564383833, "1"], +[-37.8833604167, 175.4567315167, "3"], +[-37.8828452833, 175.4659509, "75"], +[-37.88283615, 175.4661431333, "77"], +[-37.8828280833, 175.4662871833, "79"], +[-37.8831762333, 175.4650671667, "63A"], +[-37.8832807333, 175.4650862667, "63B"], +[-37.8828784, 175.4654325333, "69"], +[-37.88286845, 175.4656069833, "71"], +[-37.8828541167, 175.4657729833, "73"], +[-37.88225265, 175.4763298333, "171"], +[-37.88244025, 175.4731903833, "143"], +[-37.88277745, 175.4714596167, "123A"], +[-37.8825218833, 175.4714168, "123"], +[-37.8826166167, 175.4697419333, "105"], +[-37.88317465, 175.4595099667, "23"], +[-37.88146045, 175.47846145, "162"], +[-37.8818026833, 175.47869275, "164A"], +[-37.8825380333, 175.47125165, "121"], +[-37.8821686667, 175.4812678167, "207A"], +[-37.8825423167, 175.47107055, "119"], +[-37.8818212833, 175.4783825, "160"], +[-37.8825595667, 175.4708636, "117"], +[-37.8822055167, 175.4713504167, "104"], +[-37.8821969167, 175.4715105167, "106"], +[-37.88270855, 175.4681556333, "95"], +[-37.8818339, 175.4781130167, "158"], +[-37.88248225, 175.4723453, "129"], +[-37.8825806, 175.4706828667, "115"], +[-37.8824171833, 175.47368635, "149"], +[-37.8830100833, 175.4662410333, "77A"], +[-37.88294835, 175.4681855, "95A"], +[-37.8824262667, 175.4734592, "147"], +[-37.88256465, 175.4739109667, "151A"], +[-37.88265405, 175.4627631667, "50A"], +[-37.88273475, 175.4676983, "89"], +[-37.8826450667, 175.4629121333, "50B"], +[-37.8827506167, 175.4674962833, "87"], +[-37.8824087, 175.4738996167, "151"], +[-37.8752754167, 175.4687945, "5"], +[-37.8762403, 175.4685664667, "17"], +[-37.8754141333, 175.46920485, "7"], +[-37.87579005, 175.4687529833, "11B"], +[-37.8756581167, 175.4691656167, "9"], +[-37.8765213333, 175.4682912, "19D"], +[-37.8756935167, 175.46956425, "10"], +[-37.87642715, 175.46787445, "19B"], +[-37.8755152333, 175.4695951833, "8"], +[-37.8764289167, 175.46891995, "20"], +[-37.8753332833, 175.4696019833, "6"], +[-37.8751625833, 175.4692038167, "3"], +[-37.8751427, 175.4696164667, "4"], +[-37.8764386833, 175.46867495, "21"], +[-37.87496015, 175.4696499, "2"], +[-37.8756744167, 175.4688181667, "11A"], +[-37.8749777333, 175.4692451667, "1"], +[-37.8763775667, 175.4681980333, "19A"], +[-37.87626605, 175.46911145, "16"], +[-37.8765451333, 175.4678920167, "19C"], +[-37.87614825, 175.4692725667, "14"], +[-37.87655055, 175.4693377, "18"], +[-37.8760211, 175.4693800167, "12"], +[-37.87610675, 175.46867635, "15"], +[-37.8759566833, 175.4689563167, "13"], +[-37.8746548333, 175.4923337833, "108"], +[-37.8761834667, 175.4925171833, "86"], +[-37.8786149333, 175.4916796167, "61"], +[-37.8767351, 175.4913667333, "83"], +[-37.8802232333, 175.49233165, "48"], +[-37.8775048833, 175.4913709, "75"], +[-37.8754266, 175.4923112333, "98"], +[-37.8778063333, 175.4924615667, "72"], +[-37.8803238667, 175.49186235, "45"], +[-37.8723323333, 175.49117315, "131"], +[-37.8718419, 175.4924310167, "138"], +[-37.8711135, 175.4946030167, "148"], +[-37.8697698833, 175.4923552333, "166"], +[-37.8688831, 175.4922950167, "176"], +[-37.8789681333, 175.4925074, "58"], +[-37.8820738333, 175.4926333167, "30"], +[-37.8812172, 175.49178955, "37"], +[-37.88069745, 175.4925708333, "42"], +[-37.8787213167, 175.4903820667, "63"], +[-37.8789726667, 175.4909397833, "59"], +[-37.8796000667, 175.4917581167, "53"], +[-37.8795261833, 175.49247645, "54"], +[-37.8736368167, 175.4923986833, "124"], +[-37.8727232333, 175.4924140333, "126"], +[-37.87437165, 175.4674392167, "27"], +[-37.8746732167, 175.4701863, "7"], +[-37.8744574833, 175.4691624667, "17"], +[-37.8743822167, 175.47024785, "9A"], +[-37.8749997667, 175.4700487, "12"], +[-37.8743498667, 175.4700893333, "9B"], +[-37.8752501333, 175.4707564333, "4"], +[-37.8746036167, 175.46989845, "11"], +[-37.8744127333, 175.4663752333, "33"], +[-37.87455375, 175.4696726333, "13"], +[-37.87442195, 175.4683011333, "21"], +[-37.87475005, 175.4704344167, "5"], +[-37.8747738, 175.4664531833, "32"], +[-37.8747376833, 175.4677991, "24"], +[-37.8748038833, 175.4662112833, "34"], +[-37.8743485, 175.4672374833, "29"], +[-37.87475315, 175.4683317, "22"], +[-37.8747034167, 175.4672897833, "28"], +[-37.8751725667, 175.4705402833, "6"], +[-37.8743703, 175.46656865, "31"], +[-37.8747061667, 175.4675099333, "26"], +[-37.8749663833, 175.4711516, "1"], +[-37.8750729167, 175.4702726833, "10"], +[-37.8747800333, 175.4687326833, "20"], +[-37.8747974333, 175.468992, "18"], +[-37.87484445, 175.4707471667, "3"], +[-37.8754537333, 175.47035305, "8A"], +[-37.8753716, 175.4710875, "2"], +[-37.8749196, 175.4697604667, "14"], +[-37.8744452, 175.4661277667, "35"], +[-37.8744961833, 175.46941455, "15"], +[-37.8747449667, 175.4666386167, "30"], +[-37.87482605, 175.4692223833, "16"], +[-37.8754105667, 175.4702048167, "8B"], +[-37.8743849167, 175.4676931, "25"], +[-37.8744337, 175.4689042667, "19"], +[-37.8743984167, 175.4679389167, "23"], +[-37.8778069667, 175.4712312167, "25"], +[-37.8763120333, 175.4717215833, "44"], +[-37.87672545, 175.4712506833, "41"], +[-37.8772550667, 175.4717175167, "32"], +[-37.8668511333, 175.4718110667, "166"], +[-37.8767613667, 175.4717327167, "40"], +[-37.8733181333, 175.47092935, "81"], +[-37.86564525, 175.47179185, "172"], +[-37.866566, 175.47182225, "170"], +[-37.8709313833, 175.472052, "102"], +[-37.8773583833, 175.4709902333, "33A"], +[-37.8718238, 175.4719052833, "100"], +[-37.8636636, 175.4713474333, "185"], +[-37.8639432, 175.4718744833, "180"], +[-37.87639895, 175.4712276333, "43"], +[-37.86320725, 175.47180795, "190"], +[-37.87736335, 175.4707706667, "33B"], +[-37.8635744667, 175.4721996167, "1/186"], +[-37.8770291667, 175.4712897833, "37"], +[-37.8744578833, 175.4712959833, "63"], +[-37.87760745, 175.4717249167, "30"], +[-37.8748192, 175.47130365, "59"], +[-37.8647013333, 175.4717920833, "174"], +[-37.8754668167, 175.4712709333, "55"], +[-37.8748770833, 175.4717543167, "62"], +[-37.863631, 175.4717906, "186"], +[-37.8759205833, 175.4712616667, "51"], +[-37.86283285, 175.4713374833, "195"], +[-37.8773474667, 175.4713414333, "35"], +[-37.87610145, 175.4712462667, "47"], +[-37.8736575, 175.4709245667, "75"], +[-37.8743432333, 175.4718551833, "66"], +[-37.86451155, 175.47179665, "176"], +[-37.8735859667, 175.4719257333, "74"], +[-37.8734058167, 175.47132365, "79"], +[-37.8742359, 175.4712991333, "67"], +[-37.87358325, 175.4713242167, "77"], +[-37.87305765, 175.4719396833, "82"], +[-37.8727949333, 175.4719115167, "86"], +[-37.8722028667, 175.4741686, "90"], +[-37.8675567167, 175.4711739833, "137"], +[-37.8725890333, 175.46970215, "2/95"], +[-37.8726248333, 175.4710150833, "1/95"], +[-37.8702623, 175.4720475333, "116"], +[-37.8780759667, 175.4717211333, "24"], +[-37.8738727167, 175.4713038, "73"], +[-37.8739672333, 175.4710486167, "71"], +[-37.8935260167, 175.4748064, "10"], +[-37.89273555, 175.4747373, "16"], +[-37.8919345833, 175.4746388833, "24"], +[-37.89328595, 175.4747852667, "12"], +[-37.8938477333, 175.47430505, "8A"], +[-37.8936160833, 175.47481635, "8"], +[-37.8920694833, 175.4757293833, "23A"], +[-37.89206575, 175.4752388667, "23"], +[-37.8923724, 175.4746924667, "18"], +[-37.89353315, 175.47444375, "10A"], +[-37.8899805167, 175.4750166667, "41"], +[-37.89167325, 175.4757043333, "27A"], +[-37.89028415, 175.47505045, "39"], +[-37.892463, 175.47526755, "17"], +[-37.8918398667, 175.4752066, "25"], +[-37.8908128167, 175.4750707333, "33"], +[-37.8904636333, 175.4750504333, "37"], +[-37.8906359833, 175.47507655, "35"], +[-37.8916253, 175.47516515, "27"], +[-37.8909492333, 175.47507265, "31"], +[-37.8905761667, 175.4744542167, "1/30-5/30"], +[-37.8881462333, 175.4754198167, "57"], +[-37.88850555, 175.47524575, "53"], +[-37.8894041667, 175.47498115, "45"], +[-37.9014205, 175.4676039667, "9"], +[-37.9052175667, 175.4691138833, "53"], +[-37.90503895, 175.46905685, "51"], +[-37.90533595, 175.4686957333, "55"], +[-37.90163855, 175.46769255, "17"], +[-37.9033958, 175.4683840167, "35"], +[-37.9053689667, 175.46858075, "57"], +[-37.9012599667, 175.4679458667, "12"], +[-37.9014051333, 175.46801755, "14"], +[-37.9015679, 175.4680723333, "16"], +[-37.9031653, 175.4679986833, "31A"], +[-37.9007696333, 175.46734585, "1"], +[-37.9017356333, 175.4681344333, "18"], +[-37.9019312333, 175.46780625, "19"], +[-37.9019026, 175.4682113333, "20"], +[-37.9023515833, 175.4679880667, "23"], +[-37.9025247833, 175.4680511, "25"], +[-37.9019499, 175.46872425, "26"], +[-37.9027011167, 175.4680964167, "27"], +[-37.90322595, 175.4683034667, "33"], +[-37.9022090667, 175.46834225, "28"], +[-37.9028740333, 175.4681630167, "29"], +[-37.9009473167, 175.4678397833, "2"], +[-37.9030474, 175.46823325, "31"], +[-37.9024255333, 175.4684154833, "32"], +[-37.9024751, 175.4690537, "34A"], +[-37.9025607, 175.4684754, "34"], +[-37.9047760167, 175.4688679333, "49"], +[-37.9035690833, 175.46844705, "37"], +[-37.9032248, 175.4687414833, "38"], +[-37.9037398833, 175.4685398, "39"], +[-37.90425835, 175.4687235833, "45"], +[-37.9039185, 175.4686071, "41"], +[-37.9040853333, 175.4686607667, "43"], +[-37.9044377833, 175.46879205, "47"], +[-37.9027932167, 175.4685815833, "36"], +[-37.90099425, 175.46709335, "3"], +[-37.90111195, 175.4678951333, "4"], +[-37.9010127333, 175.4674434667, "5"], +[-37.9012417333, 175.4675368333, "7"], +[-37.9054492167, 175.4684984667, "59"], +[-37.9055391, 175.4685278333, "61"], +[-37.90550535, 175.46878055, "63"], +[-37.9054566667, 175.46921805, "65"], +[-37.90230745, 175.4676206667, "21A"], +[-37.90216175, 175.4679036667, "21"], +[-37.8808262333, 175.4773818, "55A"], +[-37.8830005833, 175.4767448167, "16"], +[-37.8828296667, 175.4767286, "18"], +[-37.88259875, 175.4772334333, "31"], +[-37.8824754, 175.47721195, "33"], +[-37.8831398167, 175.4779190333, "17"], +[-37.8825963167, 175.4777829, "29"], +[-37.8842646833, 175.4768462333, "2"], +[-37.8810851333, 175.476127, "36"], +[-37.8806964, 175.47760075, "57"], +[-37.8805952167, 175.4775984333, "59"], +[-37.8813687667, 175.4765958833, "32"], +[-37.8824115167, 175.4772049833, "35"], +[-37.8811797, 175.4765765833, "34"], +[-37.8815471667, 175.4766046333, "30"], +[-37.88417235, 175.4773933667, "3"], +[-37.88174695, 175.4772075667, "39"], +[-37.8809885833, 175.47654575, "38"], +[-37.8814635333, 175.4771838167, "43"], +[-37.8816058667, 175.4771958, "41"], +[-37.88064845, 175.4765253, "42"], +[-37.8808178333, 175.4765337333, "40"], +[-37.883982, 175.4773589667, "5"], +[-37.8834955667, 175.4767355667, "10"], +[-37.88350755, 175.4765409, "10A"], +[-37.8836987667, 175.47736385, "7"], +[-37.88321935, 175.4767625833, "12"], +[-37.8833260667, 175.4773372, "13"], +[-37.8830089, 175.4772931833, "19A"], +[-37.8831393167, 175.4773106833, "19"], +[-37.88264695, 175.47671705, "20"], +[-37.88292945, 175.4775952333, "21"], +[-37.8824614333, 175.4767002833, "22"], +[-37.8828817167, 175.4779039, "23"], +[-37.8823059167, 175.4766897833, "24"], +[-37.8827997667, 175.4772721833, "25A"], +[-37.8828034167, 175.4775536833, "25B"], +[-37.8827016667, 175.4777941, "27"], +[-37.8828062, 175.47779805, "27A"], +[-37.8817341833, 175.4766062333, "28"], +[-37.8813136167, 175.4771594167, "45"], +[-37.8811630667, 175.4771457, "47"], +[-37.8809942833, 175.4776755833, "51"], +[-37.8804464667, 175.4764969833, "44"], +[-37.8810737, 175.4776356667, "49"], +[-37.8809778333, 175.4774265, "53A"], +[-37.8810030333, 175.4771406667, "53"], +[-37.88079105, 175.47712645, "55"], +[-37.8835414333, 175.4773520667, "9"], +[-37.8805955667, 175.4771014667, "61"], +[-37.8804778167, 175.4770884667, "63"], +[-37.8802896833, 175.4770558, "65"], +[-37.8834467833, 175.4778119333, "11"], +[-37.8878083, 175.4623779167, "49A"], +[-37.8872817833, 175.45737585, "10"], +[-37.8877537333, 175.4595533, "27A"], +[-37.8884375167, 175.45748685, "11B"], +[-37.8878958, 175.4596416167, "27B"], +[-37.88824535, 175.45746395, "11A"], +[-37.8875099833, 175.4575973667, "14"], +[-37.8866716167, 175.4603215333, "36B"], +[-37.8871296333, 175.4604902833, "36C"], +[-37.8873681333, 175.4599526667, "30"], +[-37.8880297, 175.4601033833, "31A"], +[-37.8881606833, 175.4601333667, "31B"], +[-37.8869335833, 175.4608386833, "40A"], +[-37.8873096333, 175.4609038, "40"], +[-37.8878578167, 175.4576188333, "13"], +[-37.8871150667, 175.4574956333, "12"], +[-37.8878406333, 175.45785455, "15"], +[-37.8871478667, 175.4578061667, "16A"], +[-37.8869680833, 175.4578044667, "16B"], +[-37.8874965167, 175.4577967, "16"], +[-37.8872507333, 175.4580158333, "18A"], +[-37.88747815, 175.4580365167, "18"], +[-37.8880638833, 175.45810725, "19A"], +[-37.88784345, 175.4580772667, "19"], +[-37.8877572333, 175.45932705, "25"], +[-37.8879145667, 175.45669455, "1"], +[-37.8873702833, 175.4595467333, "26"], +[-37.8879238167, 175.4569262833, "1A"], +[-37.8874736, 175.4582577833, "20"], +[-37.8878260333, 175.4583038167, "21"], +[-37.8873656333, 175.4597425833, "28"], +[-37.8879435667, 175.4597720333, "29A"], +[-37.8881376167, 175.45977945, "29B"], +[-37.8883413667, 175.4597758333, "29C"], +[-37.8884945333, 175.45978905, "29D"], +[-37.8877360167, 175.45978725, "29"], +[-37.8871679167, 175.4598937333, "30A"], +[-37.8877368167, 175.45999715, "31"], +[-37.8873456, 175.4602082167, "32"], +[-37.8877073333, 175.4602192333, "33"], +[-37.88687805, 175.4602032667, "34A"], +[-37.8866636, 175.4602061833, "34B"], +[-37.8868802667, 175.4603641333, "36A"], +[-37.8877013333, 175.4604213, "35"], +[-37.8875414167, 175.4568279333, "2"], +[-37.8873298167, 175.4604643167, "36"], +[-37.8876929833, 175.4606236833, "37"], +[-37.8869503167, 175.4606911333, "38A"], +[-37.8873173833, 175.46064935, "38"], +[-37.8880788167, 175.46095015, "39A"], +[-37.8876923833, 175.4607943167, "39"], +[-37.88767155, 175.4610391833, "41"], +[-37.8876050833, 175.4618428, "43"], +[-37.8876116333, 175.4619894, "45"], +[-37.88820765, 175.4571291333, "3A"], +[-37.88840855, 175.4571648833, "3B"], +[-37.8875992833, 175.4621293167, "47"], +[-37.88757835, 175.4622876333, "49"], +[-37.8875702, 175.4625005667, "51"], +[-37.8875504, 175.46284035, "53"], +[-37.8875351833, 175.46302475, "55"], +[-37.88811905, 175.4635122, "57E"], +[-37.88825965, 175.46351715, "57F"], +[-37.8882625, 175.4633885, "57G"], +[-37.8882589333, 175.4632448167, "57H"], +[-37.8875218833, 175.4632180167, "57"], +[-37.8875030667, 175.4634566667, "59"], +[-37.8871363, 175.4643333667, "64"], +[-37.88744265, 175.4645542333, "65"], +[-37.8871286333, 175.4645791667, "66"], +[-37.8876065667, 175.4648085833, "67A"], +[-37.88744175, 175.4647992167, "67"], +[-37.88711895, 175.4648136, "68"], +[-37.8885710333, 175.4571354, "5A"], +[-37.8886647667, 175.4571676667, "5B"], +[-37.8874510667, 175.4649796333, "69A"], +[-37.8875224833, 175.4649906833, "69B"], +[-37.8878563833, 175.4571620833, "7A"], +[-37.8880328667, 175.4571656833, "7B"], +[-37.8875264167, 175.4573541, "8"], +[-37.88804485, 175.4574312167, "9B"], +[-37.8875345667, 175.4570015833, "6"], +[-37.8878647667, 175.45740435, "9A"], +[-37.8879745833, 175.4634900667, "57D"], +[-37.8878037333, 175.4633596833, "57B"], +[-37.8878387167, 175.4631928333, "57A"], +[-37.8878102333, 175.46349065, "57C"], +[-37.9019538167, 175.4671126833, "7A"], +[-37.903244, 175.4676256333, "14A"], +[-37.9020871667, 175.4668353167, "7"], +[-37.9027623667, 175.4671213167, "11"], +[-37.9025892667, 175.4670505333, "10"], +[-37.9024684667, 175.4672691667, "10A"], +[-37.90241945, 175.4669742667, "9"], +[-37.9029300667, 175.4671840333, "12"], +[-37.90311145, 175.4672579333, "13"], +[-37.9032782833, 175.4673314833, "14"], +[-37.9036218833, 175.4674643167, "16"], +[-37.9037919667, 175.46753785, "17"], +[-37.90344895, 175.4673941667, "15"], +[-37.9039705667, 175.4676045333, "18"], +[-37.9041435833, 175.467671, "19"], +[-37.9010125167, 175.4664210333, "1A"], +[-37.9007809667, 175.4663229167, "1"], +[-37.9043140333, 175.4677303167, "20"], +[-37.90448985, 175.46780755, "21"], +[-37.9046493333, 175.4670530667, "23"], +[-37.9048533833, 175.4675182833, "24"], +[-37.9012388167, 175.46653205, "2"], +[-37.9014534667, 175.46660645, "4"], +[-37.9017320167, 175.4669518333, "5"], +[-37.9018944667, 175.4667655333, "6"], +[-37.9022384667, 175.46689735, "8"], +[-37.90570045, 175.46976825, "72/91"], +[-37.9051381333, 175.4722857333, "96"], +[-37.9032204, 175.4703621333, "53"], +[-37.9053162167, 175.4723414, "98"], +[-37.9037962833, 175.4711215833, "5/91"], +[-37.9055880667, 175.4707876167, "108/91"], +[-37.9045404333, 175.4699855167, "46/91"], +[-37.9016813667, 175.4703439167, "17"], +[-37.9047542667, 175.4700433333, "48/91"], +[-37.9038862333, 175.4703755167, "31/91"], +[-37.9046661667, 175.4695472667, "56/91"], +[-37.9033795167, 175.4706831, "10/91"], +[-37.9049449167, 175.4696617167, "54/91"], +[-37.90342665, 175.4705010167, "26/91"], +[-37.9042283333, 175.4698824, "43/91"], +[-37.9034820167, 175.4702482, "27/91"], +[-37.9041029833, 175.471257, "3/91"], +[-37.9035045167, 175.47071685, "11/91"], +[-37.9034292833, 175.4709543667, "8/91"], +[-37.9035455167, 175.4705136333, "25/91"], +[-37.9044278, 175.4696974167, "52/91"], +[-37.9036199667, 175.4702949333, "28/91"], +[-37.9050604833, 175.4696742167, "53/91"], +[-37.9035777167, 175.4701138, "29/91"], +[-37.9047726833, 175.46981425, "49/91"], +[-37.9037153, 175.4701772333, "30/91"], +[-37.90366135, 175.4710693333, "6/91"], +[-37.9036912333, 175.4708029167, "12/91"], +[-37.9039544333, 175.4701398833, "39/91"], +[-37.90384865, 175.4708670667, "13/91"], +[-37.90441965, 175.4694715667, "58/91"], +[-37.9039537167, 175.4709042667, "14/91"], +[-37.9048014667, 175.46941845, "66/91"], +[-37.90397155, 175.4704078333, "32/91"], +[-37.9046743167, 175.4697731167, "50/91"], +[-37.9040982, 175.4709554167, "15/91"], +[-37.9049822333, 175.4694750833, "67/91"], +[-37.9042064833, 175.4709969, "16/91"], +[-37.9039450167, 175.4711861667, "4/91"], +[-37.9043704167, 175.47106545, "17/91"], +[-37.9045624167, 175.4693054333, "64/91"], +[-37.90449515, 175.4711117167, "18/91"], +[-37.9040047, 175.46996625, "40/91"], +[-37.9038797333, 175.4706635, "24/91"], +[-37.9035451833, 175.4710177667, "7/91"], +[-37.9039780833, 175.4707046333, "23/91"], +[-37.9045066833, 175.46972115, "51/91"], +[-37.9041615833, 175.4707864333, "22/91"], +[-37.9060640333, 175.4699358833, "91/91"], +[-37.9042534333, 175.47082315, "21/91"], +[-37.9047130333, 175.4693776833, "65/91"], +[-37.9044305, 175.47089635, "20/91"], +[-37.9043041167, 175.46989765, "44/91"], +[-37.9041919167, 175.4691500833, "61/91"], +[-37.9044746667, 175.46996645, "45/91"], +[-37.9042904667, 175.4691828667, "62/91"], +[-37.9040487167, 175.4697756833, "41/91"], +[-37.90415055, 175.4693699833, "60/91"], +[-37.90446065, 175.46926835, "63/91"], +[-37.9042810333, 175.46945405, "59/91"], +[-37.9032851, 175.4708958667, "9/91"], +[-37.90451895, 175.4709371333, "19/91"], +[-37.9045116833, 175.4694999333, "57/91"], +[-37.9040854167, 175.4704954667, "33/91"], +[-37.9043916, 175.4713621667, "1/91"], +[-37.9041970167, 175.4705370833, "34/91"], +[-37.9050893833, 175.46956665, "68/91"], +[-37.9043310833, 175.4706087333, "35/91"], +[-37.9040848, 175.4696433167, "42/91"], +[-37.90443305, 175.4706374667, "36/91"], +[-37.90476785, 175.4695885167, "55/91"], +[-37.9045282833, 175.4706701333, "37/91"], +[-37.9042286667, 175.471303, "2/91"], +[-37.90462665, 175.4707112667, "38/91"], +[-37.9046719667, 175.4700236667, "47/91"], +[-37.9063787833, 175.47006835, "93/91"], +[-37.9052918833, 175.4698329167, "76/91"], +[-37.9052114833, 175.4700221833, "77/91"], +[-37.9050883833, 175.4701973667, "79/91"], +[-37.9053839167, 175.4698613, "75/91"], +[-37.9052999333, 175.47006295, "78/91"], +[-37.9051933667, 175.47023875, "80/91"], +[-37.9052919167, 175.4702715333, "81/91"], +[-37.9055609, 175.4699386667, "74/91"], +[-37.9056495333, 175.4699711, "73/91"], +[-37.9054736, 175.4701402167, "82/91"], +[-37.9063660167, 175.4715132167, "102/91"], +[-37.9062675667, 175.4719148667, "118/91"], +[-37.9062345, 175.4720598833, "134/91"], +[-37.9061993167, 175.4712732833, "104/91"], +[-37.9061410333, 175.4715093, "117/91"], +[-37.90608265, 175.4717494667, "119/91"], +[-37.9060274833, 175.47199395, "133/91"], +[-37.9059191, 175.4719566333, "132/91"], +[-37.9059778667, 175.47169975, "120/91"], +[-37.90603625, 175.4714595667, "116/91"], +[-37.9061060667, 175.4711529667, "105/91"], +[-37.9053162667, 175.4716843, "137/91"], +[-37.9055131833, 175.4717582167, "136/91"], +[-37.9055088, 175.471073, "112/91"], +[-37.9056170833, 175.4711144833, "113/91"], +[-37.9057647667, 175.4711699333, "114/91"], +[-37.9058762667, 175.4712157167, "115/91"], +[-37.9054861167, 175.4707589, "109/91"], +[-37.9055522167, 175.4701764667, "83/91"], +[-37.9057089833, 175.4702698167, "84/91"], +[-37.9058203833, 175.4703197833, "85/91"], +[-37.90590455, 175.4701097667, "89/91"], +[-37.9059963, 175.4701506667, "88/91"], +[-37.90573235, 175.4708471167, "107/91"], +[-37.9061820167, 175.4702237333, "87/91"], +[-37.9062864333, 175.4702866167, "86/91"], +[-37.9058177667, 175.47087525, "106/91"], +[-37.9064954833, 175.4701769667, "94/91"], +[-37.9065182667, 175.4703407, "95/91"], +[-37.90647405, 175.4705396167, "96/91"], +[-37.906434, 175.4707011, "97/91"], +[-37.9064003667, 175.47087115, "98/91"], +[-37.9065184833, 175.4709171667, "100/91"], +[-37.9053462, 175.4696260167, "69/91"], +[-37.9054348333, 175.46965845, "70/91"], +[-37.9056151167, 175.4697359333, "71/91"], +[-37.9065477667, 175.4707929167, "99/91"], +[-37.9063361667, 175.4716625167, "103/91"], +[-37.9064024833, 175.47136415, "101/91"], +[-37.9062771167, 175.4700270833, "92/91"], +[-37.90561825, 175.4717954167, "135/91"], +[-37.9052021167, 175.4714629667, "127/91"], +[-37.9053039667, 175.4714958833, "128/91"], +[-37.9055797833, 175.4715935333, "130/91"], +[-37.9057338, 175.4716617333, "131/91"], +[-37.9054388, 175.47153415, "129/91"], +[-37.90521165, 175.4711876167, "126/91"], +[-37.9053168167, 175.47122065, "125/91"], +[-37.9054577833, 175.4712800167, "124/91"], +[-37.9055496333, 175.47131675, "123/91"], +[-37.9057004333, 175.47138065, "122/91"], +[-37.9057989, 175.4714176167, "121/91"], +[-37.9052758833, 175.4709810667, "110/91"], +[-37.9053744333, 175.4710138667, "111/91"], +[-37.9029642833, 175.4708119167, "49"], +[-37.9013200667, 175.47020055, "9"], +[-37.9059721, 175.4699033333, "90/91"], +[-37.9009692833, 175.4700359167, "1"], +[-37.9020093333, 175.4704903167, "25"], +[-37.9028505, 175.4713808167, "42"], +[-37.9026220667, 175.4707023167, "41"], +[-37.9030775167, 175.47144105, "44"], +[-37.9032627, 175.4715188333, "46"], +[-37.90279945, 175.4707535, "47"], +[-37.9034596333, 175.4715854667, "48"], +[-37.9046305667, 175.4720644, "90"], +[-37.9048369667, 175.472151, "92"], +[-37.9049919, 175.4722146, "94"], +[-37.9036494333, 175.4716701167, "50"], +[-37.90358525, 175.4846141, "12"], +[-37.9037579, 175.4852529, "6"], +[-37.9038024667, 175.4850978, "7"], +[-37.9037217667, 175.4849037333, "8"], +[-37.90347035, 175.4850285667, "2"], +[-37.9032276333, 175.48546265, "3"], +[-37.9035196167, 175.4852706167, "4"], +[-37.9036445667, 175.4853146167, "5"], +[-37.893842, 175.4658828667, "14"], +[-37.8942232167, 175.4658869, "10"], +[-37.8942694, 175.4655608, "10A"], +[-37.8939012167, 175.46629055, "11"], +[-37.89414105, 175.46563135, "12A"], +[-37.89403175, 175.4658608667, "12"], +[-37.8928791667, 175.4657609, "18"], +[-37.8920411833, 175.4656866167, "26"], +[-37.8947138333, 175.46562585, "4A"], +[-37.89482635, 175.4656405333, "4B"], +[-37.8943928667, 175.4659067667, "8"], +[-37.89417895, 175.4666384333, "7A"], +[-37.8941652333, 175.4663256, "7"], +[-37.8930164333, 175.4657825333, "16"], +[-37.8945337167, 175.46636655, "3"], +[-37.8947049667, 175.4662976667, "1"], +[-37.8943467167, 175.4663510667, "5"], +[-37.8945939667, 175.46589925, "6A"], +[-37.8946026667, 175.4655432, "6B"], +[-37.89400605, 175.4666357, "9A"], +[-37.89400415, 175.4663002333, "9"], +[-37.8947237, 175.4659225, "4"], +[-37.8948905833, 175.4659464167, "2"], +[-37.8926863, 175.465739, "20"], +[-37.8923385, 175.4654623833, "24B"], +[-37.89249375, 175.4657308833, "22"], +[-37.8923111667, 175.4657147167, "24"], +[-37.8815449167, 175.4655157, "12"], +[-37.8822096833, 175.4655813667, "2"], +[-37.88233595, 175.4651839667, "1"], +[-37.8816413667, 175.4648852333, "9B"], +[-37.88217595, 175.4651827, "3"], +[-37.8816216167, 175.4650913833, "9A"], +[-37.8814350167, 175.4653094667, "13"], +[-37.8813971333, 175.4649169833, "11B"], +[-37.8814120833, 175.4650868167, "11A"], +[-37.8819977833, 175.4651571333, "5"], +[-37.8818037833, 175.46516125, "7"], +[-37.9272509333, 175.5707935167, "17"], +[-37.92487165, 175.5688565167, "50"], +[-37.9279805, 175.5715888167, "2/4"], +[-37.9281482167, 175.57159225, "3/4"], +[-37.9277371667, 175.5716141833, "1/4"], +[-37.9283277667, 175.5715995333, "4/4"], +[-37.9259907667, 175.5697310833, "41"], +[-37.9139028667, 175.4794934333, "16"], +[-37.9131072667, 175.4784122, "5"], +[-37.913859, 175.4793484, "14"], +[-37.9137596833, 175.4789706167, "10"], +[-37.9129783833, 175.4779572167, "1"], +[-37.9134818333, 175.4796230333, "13"], +[-37.9134313, 175.47942965, "11"], +[-37.9130481833, 175.4781893667, "3"], +[-37.9136100333, 175.4785928, "8"], +[-37.9137780667, 175.47816635, "6A"], +[-37.9134069333, 175.4779523167, "2"], +[-37.9134797167, 175.4781646167, "4"], +[-37.9135479833, 175.4783853833, "6"], +[-37.9074968667, 175.4759960667, "26"], +[-37.90790835, 175.4788683333, "53"], +[-37.9077523333, 175.47593355, "26A"], +[-37.9075665667, 175.47624025, "30"], +[-37.9073841167, 175.47837545, "45"], +[-37.90830365, 175.4786741167, "52"], +[-37.9087247333, 175.4801247333, "64"], +[-37.9075075667, 175.4788175333, "51"], +[-37.9088166, 175.4804266333, "66"], +[-37.9082595167, 175.4801578667, "65"], +[-37.9082304, 175.47843325, "50"], +[-37.90781645, 175.4785779, "49"], +[-37.9083352333, 175.48044785, "67"], +[-37.9065845333, 175.4744138667, "15"], +[-37.9069974, 175.47423525, "12"], +[-37.9065571167, 175.4727805333, "2"], +[-37.9066387833, 175.47305845, "4"], +[-37.9068011, 175.4735746167, "8"], +[-37.90669225, 175.47329415, "6"], +[-37.9072826667, 175.4752864833, "18"], +[-37.9081420333, 175.47812825, "44"], +[-37.9076585, 175.47803815, "43"], +[-37.9079773, 175.4776514, "42"], +[-37.9080697, 175.4779212, "42A"], +[-37.90758785, 175.4777916167, "41"], +[-37.90774285, 175.4783192, "47"], +[-37.9085469333, 175.47804035, "46"], +[-37.907853, 175.4771642833, "40"], +[-37.90694245, 175.4762600833, "27A"], +[-37.90714115, 175.4762523167, "27"], +[-37.9085940333, 175.4781931, "48"], +[-37.90842915, 175.4807205833, "69"], +[-37.90889165, 175.4806537667, "68"], +[-37.9090825167, 175.4813461833, "72"], +[-37.9085069833, 175.48098455, "71"], +[-37.9091493333, 175.4815615167, "74"], +[-37.9085867333, 175.4812446833, "73"], +[-37.90638345, 175.4737115833, "9"], +[-37.9073718833, 175.4770443667, "35"], +[-37.9076616333, 175.47651175, "34"], +[-37.9070147167, 175.4757612667, "19"], +[-37.9080529667, 175.4794295333, "61"], +[-37.9081081167, 175.4796110667, "63"], +[-37.9067812333, 175.4766508667, "29"], +[-37.90727425, 175.4767382167, "33"], +[-37.9080598, 175.4763364, "32"], +[-37.9080013, 175.4761604, "32A"], +[-37.9072168667, 175.4765151833, "31"], +[-37.9069078, 175.47611375, "21A"], +[-37.9070925167, 175.4759961167, "21"], +[-37.9073595833, 175.4755532, "20"], +[-37.9078311, 175.47552015, "22"], +[-37.9066715333, 175.4762365333, "23"], +[-37.9074292167, 175.4757909, "24"], +[-37.9067200667, 175.4763614333, "25"], +[-37.9079507667, 175.47594195, "28"], +[-37.9077839333, 175.4769487333, "38"], +[-37.9087032167, 175.478581, "54"], +[-37.90755175, 175.4791360667, "55"], +[-37.9087507167, 175.47871815, "56"], +[-37.9075607333, 175.4792694833, "57"], +[-37.9085885667, 175.4789704, "58A"], +[-37.908387, 175.47897535, "58"], +[-37.9078259667, 175.4793328833, "59A"], +[-37.90801855, 175.47915195, "59"], +[-37.90845065, 175.4792147, "60"], +[-37.9086727, 175.4815190333, "75"], +[-37.9092022333, 175.4817325833, "76"], +[-37.9087436333, 175.4817835, "77"], +[-37.9068335333, 175.475831, "19A"], +[-37.9064835, 175.4740658167, "11"], +[-37.9068924667, 175.4738985333, "10"], +[-37.90772245, 175.47673845, "36"], +[-37.9153057833, 175.4700439333, "8"], +[-37.9151920167, 175.470103, "7"], +[-37.9154897833, 175.4704254667, "4"], +[-37.91544255, 175.4701449833, "6"], +[-37.9152406333, 175.4705098833, "3"], +[-37.9155660833, 175.47067085, "2"], +[-37.9153145667, 175.470762, "1"], +[-37.915152, 175.4703036833, "5"], +[-37.8753657, 175.4666292833, "7"], +[-37.8752355833, 175.4664042833, "5"], +[-37.8751239167, 175.4667343, "3"], +[-37.8749005333, 175.4667724833, "1"], +[-37.8759491, 175.4666146833, "13"], +[-37.8761423333, 175.4666642667, "15"], +[-37.8757443667, 175.46657535, "11"], +[-37.8755500833, 175.4665719333, "9"], +[-37.8762191, 175.4673812833, "18"], +[-37.8764603333, 175.4671767333, "22"], +[-37.87631595, 175.4667095833, "17"], +[-37.8765421, 175.4670481833, "23"], +[-37.8764974333, 175.4666557, "19"], +[-37.8765351667, 175.46685605, "21"], +[-37.8763332, 175.4671934833, "20"], +[-37.8761136667, 175.4670612333, "16"], +[-37.8759115833, 175.4670291, "14"], +[-37.8757069333, 175.4669862167, "12"], +[-37.87555015, 175.4673181667, "10"], +[-37.8754323167, 175.4670474333, "8"], +[-37.8752163333, 175.4671320667, "6"], +[-37.8750437, 175.4671685, "4"], +[-37.87486615, 175.4671727833, "2"], +[-37.8836992833, 175.4725036, "23A"], +[-37.8827955833, 175.47167325, "34"], +[-37.88383525, 175.47247865, "21B"], +[-37.8836711, 175.4721970333, "23"], +[-37.88384845, 175.4721985333, "21A"], +[-37.8832467333, 175.4721379, "31"], +[-37.8852774167, 175.4718275333, "10"], +[-37.8841115833, 175.4722314667, "17"], +[-37.882555, 175.4720817333, "41"], +[-37.8814569667, 175.4715107167, "46"], +[-37.8826952667, 175.4720762667, "39"], +[-37.8834193, 175.4725388, "27"], +[-37.8834190667, 175.47216485, "29"], +[-37.8835037667, 175.4725855, "25"], +[-37.88308205, 175.4721211333, "33"], +[-37.88081245, 175.47212895, "67A"], +[-37.8808169167, 175.4719355833, "67"], +[-37.8854703, 175.4715485833, "8A"], +[-37.8854802667, 175.4723117333, "7"], +[-37.8819775333, 175.4720601833, "45"], +[-37.8820338, 175.4715768333, "38"], +[-37.88505425, 175.4725552, "11A"], +[-37.8816020167, 175.4715219833, "44"], +[-37.8818502167, 175.4715604167, "40"], +[-37.8817451, 175.4715327167, "42"], +[-37.8817693333, 175.4720335, "47"], +[-37.8826490167, 175.4716679, "36"], +[-37.882937, 175.4720998667, "35"], +[-37.8828116667, 175.4720924167, "37"], +[-37.8851022, 175.4718166333, "12"], +[-37.8817387667, 175.47236985, "49"], +[-37.8812409667, 175.4710926333, "50"], +[-37.8815675333, 175.4723074, "51A"], +[-37.8816046833, 175.4720110833, "51"], +[-37.8812419, 175.4709490833, "52"], +[-37.8811635333, 175.4709188667, "54"], +[-37.8814256833, 175.47197785, "55"], +[-37.8811236333, 175.4712705167, "56"], +[-37.8811993, 175.4719696333, "57"], +[-37.88108405, 175.4714977167, "58"], +[-37.8809842667, 175.4719474833, "59"], +[-37.8809340167, 175.4725577, "61"], +[-37.8808571667, 175.47147535, "62A"], +[-37.8808698167, 175.4712961833, "62B"], +[-37.88095885, 175.4727073167, "63"], +[-37.8805953667, 175.471471, "64"], +[-37.8808394, 175.4727179833, "65"], +[-37.8856441667, 175.4723274, "5"], +[-37.8856559833, 175.47193445, "6A"], +[-37.8858045667, 175.4719521, "6"], +[-37.8854608833, 175.4718410833, "8"], +[-37.8852512333, 175.4722922833, "9"], +[-37.8812897833, 175.47150895, "48"], +[-37.8846497167, 175.4717921833, "18"], +[-37.8850509167, 175.4722740667, "11"], +[-37.8849657833, 175.4718045667, "14"], +[-37.8863145, 175.47202075, "4"], +[-37.8863136833, 175.4724193333, "3"], +[-37.8848130833, 175.4725039833, "13A"], +[-37.8848266333, 175.47225735, "13"], +[-37.8839960167, 175.4722167, "19"], +[-37.8848076833, 175.47180565, "16"], +[-37.8847455833, 175.4722526833, "15"], +[-37.8850477, 175.4726911167, "11B"], +[-37.8941738167, 175.4707689, "84D"], +[-37.8940840667, 175.4708939333, "84C"], +[-37.8941785, 175.4709219, "84B"], +[-37.8941324333, 175.47094385, "84A"], +[-37.8935136, 175.4612187667, "11"], +[-37.8939243167, 175.4608987333, "10"], +[-37.8933340667, 175.4717043167, "100"], +[-37.8936952, 175.4650319333, "42"], +[-37.8932683, 175.4655177833, "41"], +[-37.8936863667, 175.46521985, "44"], +[-37.8936738833, 175.4655087667, "46"], +[-37.8938362667, 175.4624257833, "22"], +[-37.8937817, 175.4635414833, "30"], +[-37.8938118, 175.4643993167, "40A"], +[-37.8937340833, 175.4643627, "40"], +[-37.8935297167, 175.4682022667, "68"], +[-37.8932907833, 175.4653249667, "39"], +[-37.8935900167, 175.4670001333, "54"], +[-37.89330695, 175.4650841, "37"], +[-37.8927154833, 175.4709052, "65B"], +[-37.8927901, 175.4708936667, "65A"], +[-37.8927898667, 175.4705552833, "63A"], +[-37.8930308333, 175.461289, "13A"], +[-37.8932869167, 175.46127415, "13"], +[-37.89365705, 175.4657872833, "48"], +[-37.8939401, 175.46390025, "32A"], +[-37.8936144167, 175.4665801333, "52"], +[-37.89383355, 175.4665993833, "52A"], +[-37.8932530667, 175.47349375, "120"], +[-37.8934369833, 175.4623886667, "19"], +[-37.8942868333, 175.4610974, "12"], +[-37.89390075, 175.46130575, "14"], +[-37.8934877, 175.4615844, "15"], +[-37.89438475, 175.4619340667, "16A"], +[-37.89440795, 175.46167145, "16"], +[-37.89348165, 175.4617730167, "17"], +[-37.8938709333, 175.46165795, "18"], +[-37.8933871167, 175.4633617, "27"], +[-37.8934256333, 175.46270255, "21"], +[-37.8934101, 175.4630095833, "23"], +[-37.8938231667, 175.4626998167, "24"], +[-37.8938185, 175.4629043667, "26"], +[-37.8933327, 175.4599851667, "1"], +[-37.8938655, 175.4619277667, "20"], +[-37.8933737667, 175.4636349, "29"], +[-37.8933599167, 175.4638405667, "31"], +[-37.8937605833, 175.4638030667, "32"], +[-37.8933501333, 175.4640728, "33"], +[-37.89409735, 175.4639711333, "34"], +[-37.89333535, 175.46433465, "35"], +[-37.8937382833, 175.4641705, "36"], +[-37.8938094833, 175.46310885, "28"], +[-37.8937422833, 175.4642690333, "38"], +[-37.8932706, 175.46028355, "3A"], +[-37.8934162167, 175.4602382333, "3"], +[-37.8935366333, 175.4605623667, "5"], +[-37.8935312, 175.4607884833, "7"], +[-37.89396845, 175.4602069333, "8"], +[-37.8935128167, 175.4609781167, "9"], +[-37.8932981167, 175.47301005, "108"], +[-37.8932691667, 175.4732267667, "110"], +[-37.8936267667, 175.47335325, "112A"], +[-37.8938256167, 175.4733656, "112B"], +[-37.8936103333, 175.4733669833, "112"], +[-37.8937215333, 175.4735637667, "114"], +[-37.89365715, 175.4738653167, "116"], +[-37.8935390333, 175.4735507333, "118"], +[-37.8934577667, 175.4693120833, "70"], +[-37.8929881833, 175.4703184667, "59"], +[-37.8929812667, 175.4706668833, "63"], +[-37.8929615667, 175.47086305, "65"], +[-37.8929371167, 175.4712434167, "69"], +[-37.8929520667, 175.47105645, "67"], +[-37.89367425, 175.46743525, "58A"], +[-37.8937744667, 175.4673928, "58B"], +[-37.8935667833, 175.46736855, "58"], +[-37.89367375, 175.4675524167, "60A"], +[-37.8937666333, 175.4676028333, "60B"], +[-37.8935516833, 175.46756615, "60"], +[-37.8935477333, 175.4677751333, "62"], +[-37.8935387833, 175.4679283333, "64"], +[-37.8935372333, 175.4680373167, "66"], +[-37.8934518, 175.4694155833, "72"], +[-37.8934506167, 175.4695295167, "74"], +[-37.8934785833, 175.4697087167, "76"], +[-37.8934174, 175.4705130167, "82"], +[-37.8934133, 175.4707143833, "84"], +[-37.89339765, 175.4708925667, "86"], +[-37.8937520167, 175.4710181667, "88"], +[-37.8933705, 175.47113315, "90"], +[-37.8934223167, 175.4702347833, "78"], +[-37.8933635, 175.4712602167, "92"], +[-37.8933623333, 175.4713753167, "94"], +[-37.89334455, 175.4715971333, "98"], +[-37.8933610333, 175.4714828333, "96"], +[-37.89307625, 175.4690541333, "2/53"], +[-37.8930733667, 175.46912325, "3/53"], +[-37.8930706333, 175.4691856, "4/53"], +[-37.89306775, 175.4692547333, "5/53"], +[-37.8930755833, 175.4687906833, "47"], +[-37.8930806333, 175.4689783167, "1/53"], +[-37.8937726, 175.46406345, "36A"], +[-37.8940399167, 175.4626443667, "24A"], +[-37.89306665, 175.4694318, "57A"], +[-37.8929485833, 175.4694292, "57B"], +[-37.893691, 175.4662858833, "50"], +[-37.892929, 175.4695717833, "57C"], +[-37.8818993667, 175.48831235, "10"], +[-37.8819047, 175.4884493667, "9"], +[-37.8818925167, 175.4887367833, "8"], +[-37.8817909833, 175.4886448, "7"], +[-37.88156225, 175.4884151333, "5"], +[-37.8816410667, 175.4884968833, "6"], +[-37.8817882667, 175.4881434333, "12"], +[-37.8820450667, 175.4880255, "14"], +[-37.8820399833, 175.4881601833, "13"], +[-37.8817013833, 175.48815045, "11"], +[-37.8814522333, 175.4882864667, "4"], +[-37.88135345, 175.4881963833, "3"], +[-37.89047955, 175.3660982833, "48"], +[-37.8939863833, 175.3676102167, "84"], +[-37.8908236333, 175.3668215167, "57"], +[-37.8927242667, 175.3669994667, "72"], +[-37.89707325, 175.3696241833, "111"], +[-37.8951834, 175.3681841167, "96"], +[-37.8891679333, 175.3661342, "25"], +[-37.8990757167, 175.4813831667, "12"], +[-37.8990598, 175.4826089667, "27"], +[-37.8996862, 175.48382855, "34"], +[-37.8998746167, 175.4868621833, "99"], +[-37.9001283, 175.4864203833, "97"], +[-37.90028175, 175.4875789833, "111"], +[-37.9004845333, 175.4875032167, "113"], +[-37.9005451667, 175.4877341667, "115"], +[-37.8987095167, 175.48150085, "15"], +[-37.8987892, 175.4817609, "17"], +[-37.8991357, 175.48159105, "14"], +[-37.89891375, 175.4808869667, "10"], +[-37.8985199667, 175.4808965667, "11"], +[-37.8985627833, 175.4811206333, "13"], +[-37.8992842667, 175.4821156167, "18-20"], +[-37.8988612333, 175.48195285, "19"], +[-37.8993973833, 175.4824338, "22"], +[-37.8989453833, 175.48216625, "23"], +[-37.8994684833, 175.4826182833, "24"], +[-37.8989983, 175.48239085, "25"], +[-37.8995365667, 175.4828116833, "26"], +[-37.8982566833, 175.4800233833, "1"], +[-37.8995900333, 175.48303525, "28"], +[-37.8991642833, 175.4829475167, "29"], +[-37.8996510167, 175.4832267667, "30"], +[-37.899284, 175.4832051333, "31"], +[-37.8983305, 175.4802590667, "3"], +[-37.8985982333, 175.4800186167, "2"], +[-37.8995170333, 175.4845078667, "49"], +[-37.8987404667, 175.4802334667, "4"], +[-37.89943635, 175.4849588167, "77"], +[-37.8983839667, 175.4804605, "5"], +[-37.8987906833, 175.4804517, "6"], +[-37.89971175, 175.4849414, "81"], +[-37.8984425333, 175.4806757, "7"], +[-37.8988546833, 175.4806650333, "8"], +[-37.8982073167, 175.4808983833, "9"], +[-37.9002304333, 175.4868039667, "101"], +[-37.8997452667, 175.48737465, "103"], +[-37.9001569667, 175.4873521333, "105A"], +[-37.90035675, 175.4871693, "105"], +[-37.89977645, 175.4853644833, "85"], +[-37.8998911833, 175.4857328667, "93"], +[-37.89830875, 175.4810073667, "11A"], +[-37.8991998, 175.4818039833, "16"], +[-37.9000736, 175.48765565, "109"], +[-37.8998738833, 175.4877091, "107"], +[-37.8584179167, 175.3917306, "28C"], +[-37.8604560167, 175.3943771, "27"], +[-37.8594062, 175.39328765, "22"], +[-37.8602464667, 175.3945281333, "25"], +[-37.8580738, 175.3913907167, "28B"], +[-37.8588583833, 175.3948410167, "10"], +[-37.8597253167, 175.3943257167, "20"], +[-37.8594598667, 175.3949546667, "17"], +[-37.85742675, 175.3934756833, "28D"], +[-37.85779025, 175.3909575667, "28A"], +[-37.8602461333, 175.39392145, "24"], +[-37.8615513167, 175.3930931833, "30"], +[-37.8615702833, 175.3936576333, "41"], +[-37.8648762167, 175.391556, "85"], +[-37.8669371833, 175.38969465, "116"], +[-37.8656294833, 175.39053055, "96"], +[-37.8627939333, 175.3928152833, "57"], +[-37.8642163, 175.3938465167, "63B"], +[-37.8633075167, 175.3925197167, "63A"], +[-37.8752946833, 175.47600165, "16"], +[-37.8752789, 175.4745710667, "26"], +[-37.8752698667, 175.4741175667, "30"], +[-37.8752788833, 175.4747855667, "24"], +[-37.8753729833, 175.4773013667, "4"], +[-37.8752503333, 175.47339515, "36"], +[-37.8753239, 175.4768918333, "8"], +[-37.8752590667, 175.4736461333, "34"], +[-37.8756213167, 175.4747827833, "25"], +[-37.8752682333, 175.4738759333, "32"], +[-37.8752943, 175.47621685, "14"], +[-37.8755946667, 175.4783229167, "2"], +[-37.8757436, 175.47737735, "7"], +[-37.8758519, 175.4778569167, "3"], +[-37.8756174833, 175.4745228, "27"], +[-37.8756574833, 175.4762356, "15"], +[-37.8756050833, 175.4734895, "33"], +[-37.875302, 175.4766701833, "10"], +[-37.8756027333, 175.4736947333, "31"], +[-37.8752780667, 175.4758057, "18"], +[-37.8757905833, 175.477583, "5"], +[-37.8756395833, 175.4758414333, "19"], +[-37.8756402, 175.4760084333, "17"], +[-37.8752715833, 175.4751979, "20"], +[-37.8757130167, 175.4771411333, "9"], +[-37.8752756833, 175.47501635, "22"], +[-37.87527695, 175.47433525, "28"], +[-37.8756425833, 175.4752112667, "21"], +[-37.8752937833, 175.4764377, "12"], +[-37.87559675, 175.4732172, "35"], +[-37.8753504333, 175.477108, "6"], +[-37.8755737333, 175.4729657167, "37"], +[-37.8756244333, 175.4743205667, "29"], +[-37.8755172667, 175.4727099833, "39"], +[-37.8756327333, 175.4750188, "23"], +[-37.8754463333, 175.4724567833, "41"], +[-37.8753804667, 175.4721916167, "43"], +[-37.8753413, 175.4719123167, "45"], +[-37.8751775167, 175.4728065, "40"], +[-37.87523985, 175.4731198167, "38"], +[-37.9129636333, 175.47354695, "15"], +[-37.9129915667, 175.4741582833, "10"], +[-37.9130924, 175.4741147667, "12"], +[-37.91301345, 175.4738697833, "14"], +[-37.9125089, 175.47363755, "3"], +[-37.9126150667, 175.4743185833, "4"], +[-37.9126618333, 175.4735482833, "5"], +[-37.9125892, 175.47392305, "6"], +[-37.9127883167, 175.47388245, "8"], +[-37.9126731333, 175.473192, "7"], +[-37.91275485, 175.47314795, "9"], +[-37.9128106333, 175.4733799667, "11"], +[-37.9123932, 175.4739944667, "2"], +[-37.9123316833, 175.4737106167, "1"], +[-37.9838611667, 175.5750239333, "209"], +[-37.9690023333, 175.5700330333, "12"], +[-37.9711171, 175.5702027833, "25"], +[-37.9779899, 175.570433, "1/122"], +[-37.97820695, 175.57005845, "2/122"], +[-37.9800575, 175.5723918333, "153"], +[-37.9811843, 175.5731835, "177"], +[-37.9754233167, 175.57078555, "95"], +[-37.8838929167, 175.4818853167, "12"], +[-37.8837344667, 175.4818862, "14"], +[-37.8835817667, 175.4818741, "16"], +[-37.8834241, 175.4818550667, "18"], +[-37.8832506167, 175.48183555, "20"], +[-37.8830817667, 175.4818428833, "22"], +[-37.8828965167, 175.48182015, "24"], +[-37.8827122833, 175.4817928, "26"], +[-37.8814133667, 175.4817274333, "44"], +[-37.8813040833, 175.48171155, "46"], +[-37.8810746667, 175.4817141833, "48"], +[-37.8809023, 175.4816841, "50"], +[-37.8807272167, 175.4816891167, "52"], +[-37.8805686833, 175.4816589167, "54"], +[-37.8803979167, 175.4816530833, "56"], +[-37.8801843833, 175.48158535, "58"], +[-37.8825403667, 175.4813836167, "32A"], +[-37.88253505, 175.4817773, "32"], +[-37.8825069167, 175.48115065, "34"], +[-37.88240895, 175.4812873333, "36"], +[-37.8823411, 175.4817443167, "38"], +[-37.8822324, 175.4817659167, "40"], +[-37.8852853, 175.4825293667, "1"], +[-37.8852325667, 175.4820864167, "2"], +[-37.8856616, 175.4830290667, "3"], +[-37.8851546, 175.4819058667, "4"], +[-37.8853310833, 175.4831131333, "5"], +[-37.8851287833, 175.4816127333, "6"], +[-37.8827869667, 175.4815392833, "26B"], +[-37.88484925, 175.4820581167, "8"], +[-37.9024855, 175.4814230667, "6"], +[-37.9027508667, 175.48132635, "2"], +[-37.90267385, 175.4810493833, "3"], +[-37.902509, 175.4810477333, "4"], +[-37.90239855, 175.4812007, "5"], +[-37.8861399167, 175.4659005167, "2A"], +[-37.8858972, 175.4701092167, "36"], +[-37.8867484667, 175.4678494333, "19"], +[-37.8861574833, 175.46575525, "2"], +[-37.8864493167, 175.4662703167, "3"], +[-37.88622685, 175.47015215, "39"], +[-37.88624375, 175.4699778833, "37"], +[-37.8863943167, 175.4703065667, "39A"], +[-37.8858773667, 175.4704395333, "38"], +[-37.8866652833, 175.4663845667, "3A"], +[-37.8862623667, 175.4706270167, "41"], +[-37.8856218833, 175.4704532333, "40"], +[-37.8854065833, 175.4706356333, "42B"], +[-37.88625425, 175.4707564167, "43"], +[-37.88541165, 175.4704709667, "42A"], +[-37.8861368333, 175.47271145, "55"], +[-37.886122, 175.4661553833, "4"], +[-37.8863355167, 175.4685020667, "27"], +[-37.8865969667, 175.4687519167, "29A"], +[-37.8865831, 175.4689422667, "31A"], +[-37.8860333167, 175.46789315, "20"], +[-37.8858932167, 175.4702396667, "36A"], +[-37.88643745, 175.4660770167, "1"], +[-37.8857492, 175.46868685, "30A"], +[-37.8855154167, 175.4686515333, "30B"], +[-37.8856861, 175.46828205, "24A"], +[-37.8860060667, 175.4682543333, "24"], +[-37.8863518833, 175.4681365167, "23"], +[-37.8860244, 175.4680726833, "22"], +[-37.8860988667, 175.4665564833, "10"], +[-37.8863865333, 175.4673575, "11"], +[-37.8863826833, 175.4675404, "13"], +[-37.8863788667, 175.4677124167, "15"], +[-37.8860585833, 175.4674608333, "14"], +[-37.8856044667, 175.46749745, "16A"], +[-37.8857502, 175.46754885, "16"], +[-37.8864570833, 175.4677168333, "17"], +[-37.8860457333, 175.4676692, "18"], +[-37.8867451667, 175.4680089167, "19A"], +[-37.8858168333, 175.4717908, "58"], +[-37.8866057333, 175.4666266833, "5A"], +[-37.8864473333, 175.4665519333, "5"], +[-37.88573305, 175.4662191833, "6"], +[-37.8861234333, 175.4729670667, "57"], +[-37.8861040833, 175.4732588, "59"], +[-37.8857812833, 175.4727290333, "62"], +[-37.8860733167, 175.47367975, "63"], +[-37.8853214167, 175.47302445, "64A"], +[-37.8857647, 175.4729568833, "64"], +[-37.8860630667, 175.4741376333, "65"], +[-37.8855514167, 175.4731432833, "66A"], +[-37.8857605333, 175.4732639667, "66"], +[-37.88604615, 175.4744234333, "67"], +[-37.8857253333, 175.4734757667, "68"], +[-37.8860271667, 175.4749003, "71"], +[-37.8864273833, 175.4668194167, "7"], +[-37.8861134167, 175.4663483833, "8"], +[-37.88530955, 175.4734951667, "72A"], +[-37.8853649167, 175.4735031333, "72"], +[-37.8857145667, 175.47370235, "74"], +[-37.88570935, 175.4738793833, "76"], +[-37.8856962833, 175.4740871833, "78"], +[-37.8855425, 175.4740492667, "80"], +[-37.8855359667, 175.47421665, "82"], +[-37.8856920333, 175.4742632667, "84"], +[-37.88567285, 175.4743871833, "86"], +[-37.8856348, 175.47498665, "88"], +[-37.8864008667, 175.4671270833, "9"], +[-37.8859601833, 175.47522375, "73"], +[-37.8859930167, 175.4754003167, "75"], +[-37.88563045, 175.4752063667, "90"], +[-37.8856196667, 175.4754834167, "94"], +[-37.8855985333, 175.4757720333, "98"], +[-37.8852094333, 175.4756059333, "96"], +[-37.8856225333, 175.4706336667, "44"], +[-37.8863443167, 175.4711711167, "45A"], +[-37.8862241333, 175.47112885, "45"], +[-37.8858591, 175.4707636333, "46"], +[-37.8862151, 175.4713376833, "47"], +[-37.88584785, 175.4710055, "48"], +[-37.8863784667, 175.4716221167, "49A"], +[-37.88619305, 175.4716161667, "49"], +[-37.8854010167, 175.4710779333, "50A"], +[-37.8855194, 175.4710888, "50"], +[-37.8861586167, 175.4718484, "51"], +[-37.8855134333, 175.4712143833, "52"], +[-37.8858417833, 175.4713232833, "54"], +[-37.8858254, 175.4715816333, "56"], +[-37.8859913, 175.4685190667, "28"], +[-37.8863223167, 175.4686848833, "29"], +[-37.8859773333, 175.46879095, "30"], +[-37.8863225167, 175.4688814167, "31"], +[-37.8859628333, 175.4690224667, "32"], +[-37.8863278333, 175.4690195667, "33"], +[-37.8860351333, 175.4746824, "69"], +[-37.88563915, 175.4684005167, "26"], +[-37.8863489, 175.4683084, "25"], +[-37.8866069, 175.4673016, "11A"], +[-37.8868120167, 175.4673208833, "11B"], +[-37.88578115, 175.4680634667, "22A"], +[-37.8863727, 175.4679364, "21"], +[-37.8858363, 175.4659994, "4A"], +[-37.88658795, 175.4674919167, "13A"], +[-37.92234345, 175.4747052, "199"], +[-37.92177305, 175.4769218333, "2"], +[-37.9221347833, 175.47694995, "1"], +[-37.9222941667, 175.47512075, "165"], +[-37.9219244667, 175.4755311667, "126"], +[-37.92194885, 175.4751084333, "164"], +[-37.92227225, 175.4756573333, "109"], +[-37.9226473833, 175.47590455, "105"], +[-37.9217738833, 175.4766539667, "38"], +[-37.9226126333, 175.4765605333, "45"], +[-37.9221432333, 175.4762786, "51"], +[-37.92185925, 175.4759778667, "80"], +[-37.9219880167, 175.4744712833, "230"], +[-37.9213271, 175.4744695667, "200"], +[-37.9210363333, 175.4743909167, "210"], +[-37.9206876333, 175.4744863, "220"], +[-37.9212772667, 175.4748825167, "184"], +[-37.9213329, 175.4754072167, "194"], +[-37.92179965, 175.4763127667, "50"], +[-37.9226488667, 175.4760626667, "101"], +[-37.9224377167, 175.4742912, "231"], +[-37.9222663833, 175.4741209667, "253"], +[-37.9220891, 175.4742094833, "250"], +[-37.8763709833, 175.4737251167, "6"], +[-37.8762928, 175.4740830833, "7"], +[-37.8757872, 175.47372185, "2"], +[-37.8759274833, 175.4737143667, "4"], +[-37.8761889833, 175.4744309833, "5B"], +[-37.8760917667, 175.4744256833, "5A"], +[-37.8760035, 175.47408515, "3"], +[-37.8758006, 175.4741481167, "1"], +[-37.8945807833, 175.4731283, "92"], +[-37.8952838, 175.4659743667, "9"], +[-37.8945913667, 175.47286075, "88"], +[-37.8948307167, 175.4678840833, "26"], +[-37.8946495333, 175.4715883833, "68"], +[-37.8955784167, 175.4666195833, "17"], +[-37.8950308833, 175.4707890333, "55"], +[-37.8950268333, 175.4708643, "57"], +[-37.8950210333, 175.4709645333, "59"], +[-37.8950726167, 175.4692980667, "35"], +[-37.8948167167, 175.4681206667, "28"], +[-37.89480715, 175.4683576167, "30"], +[-37.89448235, 175.47392275, "100"], +[-37.8949025833, 175.4736886667, "101"], +[-37.8944604833, 175.4740989333, "102"], +[-37.8940345667, 175.4741795333, "104"], +[-37.8948037, 175.4748156667, "105"], +[-37.8944383833, 175.4744140333, "106"], +[-37.8949698833, 175.4659329667, "10"], +[-37.8949612167, 175.4663892333, "12"], +[-37.8949153, 175.46660965, "14"], +[-37.8948991667, 175.46678365, "16"], +[-37.8947661, 175.46694865, "18A"], +[-37.8944432333, 175.4669301, "18B"], +[-37.8948852, 175.4669605667, "18"], +[-37.8948780167, 175.46712785, "20"], +[-37.8944023, 175.4672810833, "22B"], +[-37.8947610167, 175.46729965, "22A"], +[-37.8948679667, 175.46733215, "22"], +[-37.8948783833, 175.46748345, "1/24-7/24"], +[-37.8947230167, 175.4702766667, "42"], +[-37.8946909667, 175.4707959333, "54"], +[-37.8946726833, 175.4711023333, "60"], +[-37.8946703833, 175.4712066833, "62"], +[-37.8946656, 175.4712626667, "64"], +[-37.8949888833, 175.4656431, "6"], +[-37.89493175, 175.4729810833, "93"], +[-37.8945739333, 175.47341895, "94"], +[-37.8949277, 175.4731673, "95"], +[-37.89438165, 175.4736724333, "96A"], +[-37.8945503667, 175.4736765833, "96"], +[-37.8949105333, 175.47340155, "97A"], +[-37.8942335833, 175.4737639667, "98"], +[-37.8946295667, 175.4718361, "72"], +[-37.89462675, 175.4719766167, "74"], +[-37.8949939167, 175.4719069333, "77"], +[-37.8946185167, 175.4722803667, "82"], +[-37.8949549, 175.4725255167, "87"], +[-37.8949826333, 175.4657729, "8"], +[-37.8952739667, 175.4662657333, "11"], +[-37.8954714167, 175.4664023833, "13A"], +[-37.8955781667, 175.46640275, "13B"], +[-37.8952808167, 175.4663722, "13"], +[-37.89527365, 175.4665192833, "15"], +[-37.8956551167, 175.4661953667, "11B"], +[-37.8953330833, 175.4650771, "1"], +[-37.8950785667, 175.4691175167, "33"], +[-37.8950110333, 175.4654238667, "2"], +[-37.8950599167, 175.4704818, "45"], +[-37.8950526167, 175.4705562667, "47"], +[-37.8950517333, 175.4706304167, "49"], +[-37.8950748667, 175.4694276667, "41"], +[-37.8953314667, 175.4653118333, "3"], +[-37.8950057833, 175.46551395, "4"], +[-37.8950353, 175.4734756833, "97"], +[-37.8950013, 175.4717792, "75"], +[-37.8950426833, 175.4706778167, "51"], +[-37.89503905, 175.4707278833, "53"], +[-37.8950147333, 175.4710415167, "61"], +[-37.8950166833, 175.4711306, "63"], +[-37.8950141, 175.4712134833, "65"], +[-37.8950130833, 175.4712694167, "67"], +[-37.8950105, 175.4713271, "69"], +[-37.8950101667, 175.4713877667, "71"], +[-37.8950061333, 175.4714993167, "73"], +[-37.8953044, 175.4655703333, "5"], +[-37.8953043, 175.4657896167, "7"], +[-37.8948314667, 175.46896985, "36"], +[-37.8944233667, 175.4670945167, "20B"], +[-37.89476705, 175.4671119, "20A"], +[-37.8948155167, 175.46873695, "34"], +[-37.8785435, 175.4391193, "108"], +[-37.85482825, 175.43943885, "372"], +[-37.8843674667, 175.44077705, "44"], +[-37.8514708333, 175.44301855, "414"], +[-37.8786210833, 175.4386722333, "107"], +[-37.8536346167, 175.43854, "2/377"], +[-37.88482555, 175.43861845, "37"], +[-37.85393405, 175.4384665833, "1/377"], +[-37.87792065, 175.43870995, "115"], +[-37.8616766, 175.43942835, "296"], +[-37.8758269167, 175.439114, "136"], +[-37.8611102167, 175.4393358, "302"], +[-37.8630311167, 175.4365396167, "279"], +[-37.8653560833, 175.4373495833, "253"], +[-37.8757949833, 175.4386379333, "137"], +[-37.8786179833, 175.4342996333, "2/105"], +[-37.8874004, 175.4391212667, "1/10-2/10"], +[-37.8447363167, 175.43930545, "482"], +[-37.88403545, 175.4386151333, "45"], +[-37.8717442667, 175.4349390667, "183"], +[-37.8767875333, 175.4386578667, "127"], +[-37.8797060833, 175.4386293833, "93"], +[-37.8866638167, 175.4390628, "18"], +[-37.8791973, 175.4386315, "97"], +[-37.88585575, 175.4362985167, "19"], +[-37.8790987667, 175.4391399833, "100"], +[-37.8771662, 175.43926595, "124"], +[-37.8838361, 175.4391195833, "48"], +[-37.8857025667, 175.4423457333, "30"], +[-37.8854774667, 175.4423092, "3/30"], +[-37.8449495333, 175.43932215, "480"], +[-37.8540070333, 175.4394581833, "376"], +[-37.8831838833, 175.4385145, "55"], +[-37.8588749833, 175.4393561333, "326"], +[-37.86279375, 175.4385341667, "281"], +[-37.8445601333, 175.43930445, "484"], +[-37.84437095, 175.43930065, "486"], +[-37.8788133833, 175.4351573667, "1/105"], +[-37.8800643333, 175.4356186, "1/93"], +[-37.87918835, 175.4355875333, "2/93"], +[-37.88086735, 175.4358693833, "83"], +[-37.88697085, 175.4385406333, "15"], +[-37.8505857167, 175.4386953333, "425"], +[-37.8857656333, 175.4386266333, "21"], +[-37.8517299333, 175.43952155, "404"], +[-37.8859354667, 175.4391316833, "20"], +[-37.8643110167, 175.43852915, "269"], +[-37.8638944167, 175.4352222, "271"], +[-37.8629044167, 175.4394276667, "280"], +[-37.8636698333, 175.4384519167, "273"], +[-37.87065885, 175.4387204333, "197"], +[-37.870552, 175.4392104333, "198"], +[-37.86847865, 175.4362560333, "215"], +[-37.8682894833, 175.4387331667, "221"], +[-37.8723437333, 175.4386659167, "179"], +[-37.8713473833, 175.4386830333, "191"], +[-37.8803684, 175.4391223, "84"], +[-37.8801818167, 175.4386532333, "89"], +[-37.8795138833, 175.4391232667, "98"], +[-37.88233015, 175.4385688167, "67"], +[-37.8822730833, 175.439127, "68"], +[-37.8815140333, 175.4385229167, "75"], +[-37.88161725, 175.43921275, "76"], +[-37.88298115, 175.4391210167, "60"], +[-37.88356985, 175.44183935, "54"], +[-37.88688885, 175.4390723333, "16"], +[-37.8854630667, 175.44062525, "1/30"], +[-37.8857315833, 175.4406345667, "2/30"], +[-37.8850814333, 175.4391024667, "32"], +[-37.85615335, 175.4394051333, "358"], +[-37.8484322833, 175.4386304333, "451"], +[-37.849595, 175.4395278833, "438"], +[-37.8685579333, 175.43929385, "222"], +[-37.8673376667, 175.4387301333, "231"], +[-37.8672263, 175.4391822833, "234"], +[-37.8658104, 175.4384541833, "249"], +[-37.8650818333, 175.4384285833, "257"], +[-37.8572850833, 175.4388435667, "345"], +[-37.8695889833, 175.4385987333, "207"], +[-37.8444514833, 175.4388799167, "483"], +[-37.8828889333, 175.4356993, "51"], +[-37.8832340833, 175.4358504, "1/51"], +[-37.8573635, 175.4392901833, "342"], +[-37.86163445, 175.43881845, "295"], +[-37.8624819833, 175.438809, "287"], +[-37.84347995, 175.4385449833, "495"], +[-37.85704685, 175.4422632333, "346"], +[-37.8881785167, 175.4536787833, "11"], +[-37.8876931833, 175.4532197833, "5"], +[-37.8877175833, 175.4536870667, "7"], +[-37.8883681, 175.4535562333, "2/10"], +[-37.88862675, 175.4537201667, "4/10"], +[-37.88857235, 175.4536184167, "3/10"], +[-37.88834935, 175.45339255, "1/10"], +[-37.8880737833, 175.4534382833, "9"], +[-37.88862905, 175.4582377167, "8"], +[-37.888388, 175.4577553167, "5A"], +[-37.8890413167, 175.4584074, "10A"], +[-37.8890455167, 175.45818135, "10"], +[-37.8893714, 175.4579083667, "1"], +[-37.8891550333, 175.4579009333, "2"], +[-37.8889156, 175.45789245, "3"], +[-37.8887209667, 175.4578687833, "4"], +[-37.8885121, 175.45785425, "5"], +[-37.8884355167, 175.4579579333, "6"], +[-37.8884670667, 175.4581608667, "7"], +[-37.88885115, 175.4581993167, "9"], +[-37.88829695, 175.4581456, "7A"], +[-37.89493095, 175.50293945, "2/207"], +[-37.8939846833, 175.4919359167, "1/143"], +[-37.9326599333, 175.5720857333, "946"], +[-37.8940428667, 175.4929087, "2/143"], +[-37.93985015, 175.5776648, "1006"], +[-37.9234984333, 175.5621109333, "816"], +[-37.9374057, 175.57533755, "1004"], +[-37.92045495, 175.5594362667, "773"], +[-37.9370037333, 175.5752245333, "1002"], +[-37.9233134, 175.5619061667, "814"], +[-37.9247701333, 175.5642938333, "838"], +[-37.9091874667, 175.5318147333, "504"], +[-37.90968075, 175.53436585, "525"], +[-37.9100798667, 175.53351915, "518"], +[-37.9137304333, 175.5349179, "560"], +[-37.9131590333, 175.53488155, "558"], +[-37.9072097667, 175.5257719, "458"], +[-37.89594205, 175.4996267667, "178"], +[-37.9372702, 175.57594035, "1013"], +[-37.89638255, 175.5065894833, "246"], +[-37.8968645833, 175.50876055, "259"], +[-37.8980340833, 175.5096747833, "276"], +[-37.8986749667, 175.5105449167, "280"], +[-37.89924075, 175.5129982667, "295"], +[-37.9015737, 175.515433, "324"], +[-37.91571275, 175.5534373, "705"], +[-37.9162442833, 175.5534827, "706"], +[-37.9148016833, 175.54767885, "648"], +[-37.9148501, 175.5499118333, "673"], +[-37.9151485667, 175.5495203167, "660"], +[-37.9197264, 175.5575957333, "748"], +[-37.9212959167, 175.5604435167, "787"], +[-37.9255722167, 175.5660694167, "852"], +[-37.9026268333, 175.5172354667, "356"], +[-37.8950368333, 175.5025268833, "1/207"], +[-37.9122779833, 175.5393717167, "2/573"], +[-37.9114679667, 175.5398593333, "3/573"], +[-37.91540075, 175.5527015167, "699"], +[-37.9012012167, 175.51619825, "335"], +[-37.9168711667, 175.5553676, "719"], +[-37.9175395667, 175.5561893167, "723"], +[-37.9180392833, 175.5566833, "739"], +[-37.9130946167, 175.5474586167, "637"], +[-37.8940036333, 175.4831404833, "29"], +[-37.8943207667, 175.4865820833, "69"], +[-37.8943952833, 175.4886118, "71"], +[-37.8951511833, 175.4905976667, "112"], +[-37.90356905, 175.5202661333, "379"], +[-37.9042539, 175.5213877833, "391"], +[-37.9058724667, 175.5242790667, "427"], +[-37.9355250333, 175.57499645, "987"], +[-37.9134563333, 175.5426692667, "603"], +[-37.9135913667, 175.54315755, "607"], +[-37.91401355, 175.5428852833, "608"], +[-37.9106131167, 175.5359661167, "539"], +[-37.9111353167, 175.53571595, "542"], +[-37.9113920167, 175.5360293167, "546"], +[-37.9121793167, 175.5377621, "568"], +[-37.9346634, 175.5743922333, "979"], +[-37.9374423833, 175.5674758833, "972"], +[-37.9156359, 175.55118655, "692"], +[-37.9155415167, 175.5508029, "690"], +[-37.90281625, 175.51905675, "373"], +[-37.9027791333, 175.5175252833, "358"], +[-37.8958690833, 175.5018481167, "190"], +[-37.9789857333, 175.4405075667, "168"], +[-37.9695422, 175.4324544167, "23"], +[-37.9694634, 175.4313197333, "12"], +[-37.9734056167, 175.4391843667, "105"], +[-37.9748037833, 175.4419470833, "123"], +[-37.9775236, 175.4415263333, "155"], +[-37.9782757667, 175.44079755, "166"], +[-37.9718126167, 175.4347789833, "54"], +[-37.8974829, 175.4523839667, "11"], +[-37.896949, 175.4538974333, "10"], +[-37.8973599167, 175.4533428167, "3"], +[-37.89717915, 175.4544804167, "4"], +[-37.8973309833, 175.45308765, "5"], +[-37.8972213833, 175.4542655167, "6"], +[-37.8972975167, 175.452858, "7"], +[-37.8971736167, 175.4540106333, "8"], +[-37.8972301333, 175.4525011667, "9"], +[-37.8962831, 175.4514132833, "40"], +[-37.8962904167, 175.4509267333, "42"], +[-37.8964889167, 175.4515006167, "44"], +[-37.8966648, 175.4514576667, "46"], +[-37.8963241333, 175.4516917333, "38"], +[-37.8971486, 175.4537583167, "12"], +[-37.8974914833, 175.4522686333, "13"], +[-37.8968280167, 175.4517962167, "32"], +[-37.8965602833, 175.4518541, "34"], +[-37.8963553, 175.4518366333, "36"], +[-37.8972173667, 175.4551419333, "2"], +[-37.8970665667, 175.45323925, "14"], +[-37.8971966, 175.4522688167, "15"], +[-37.8968064, 175.4532278167, "16"], +[-37.8967456833, 175.4531232333, "18"], +[-37.8974595167, 175.4539856833, "1"], +[-37.89702105, 175.4529966167, "20"], +[-37.89697325, 175.4525840667, "22"], +[-37.8966754833, 175.45262025, "24"], +[-37.8965024, 175.4525581333, "26"], +[-37.8967277167, 175.4524711167, "28"], +[-37.8969411167, 175.4523854, "30"], +[-37.8971252667, 175.4517190167, "17"], +[-37.8973954333, 175.4516434667, "19"], +[-37.89734885, 175.4512056667, "27"], +[-37.8975603333, 175.4513639167, "23"], +[-37.8975662667, 175.45155165, "21"], +[-37.89758735, 175.45118755, "25"], +[-37.8976514, 175.4505551833, "25A"], +[-37.93618265, 175.4679452833, "99"], +[-37.9364427, 175.47434405, "47"], +[-37.93602995, 175.4635648833, "143"], +[-37.9363754167, 175.4732709667, "55"], +[-37.9364611, 175.47575415, "37"], +[-37.9362570167, 175.4694700833, "89"], +[-37.9356639667, 175.4542221333, "225"], +[-37.9365317333, 175.4564987833, "201"], +[-37.9357644333, 175.45652615, "1/201"], +[-37.9356391667, 175.4555529667, "209"], +[-37.9359229, 175.4614506167, "157"], +[-37.9354519, 175.4510958, "245"], +[-37.8043647667, 175.3646767, "9"], +[-37.8033645333, 175.3644417333, "14"], +[-37.8041373, 175.3641572833, "11"], +[-37.9559902833, 175.4358548667, "1/3116"], +[-37.9541933, 175.43567675, "3126"], +[-37.9159823833, 175.4458315667, "2/3627"], +[-37.91406535, 175.4497318167, "3668"], +[-37.9555601667, 175.4360378833, "2/3116"], +[-37.9139425833, 175.4497730667, "3666"], +[-37.9160902, 175.4453786667, "1/3627"], +[-37.9619189333, 175.4331309167, "3032"], +[-37.9609963833, 175.4328218833, "3039"], +[-37.9616219333, 175.4333006833, "3036"], +[-37.9329983333, 175.4291615333, "3361"], +[-37.9152040667, 175.4487561167, "3654"], +[-37.9319928333, 175.4302175167, "3384"], +[-37.91578065, 175.4478569, "3642"], +[-37.9157454833, 175.4465326333, "3635"], +[-37.9151056, 175.4479749833, "3643"], +[-37.91545865, 175.4473662167, "3639"], +[-37.9155843167, 175.4470310167, "3637"], +[-37.9027715667, 175.45210165, "3794"], +[-37.9032760833, 175.4549883, "3784"], +[-37.9748930833, 175.4242103667, "2855"], +[-37.9773033833, 175.42065365, "2829"], +[-37.9444458667, 175.4188207667, "3217"], +[-37.9012992833, 175.4500824333, "3807"], +[-37.9127339333, 175.4503371, "3682"], +[-37.90071495, 175.4536467833, "3829"], +[-37.9048702167, 175.45171675, "2/3774"], +[-37.9001265, 175.4627736833, "3910"], +[-37.8984810667, 175.4580702, "2/3879"], +[-37.8987156833, 175.45782225, "3/3879"], +[-37.8996284833, 175.4598028333, "3886"], +[-37.91662675, 175.4488524167, "3648"], +[-37.9105417167, 175.4505777, "3714"], +[-37.9047285333, 175.4517519, "1/3774"], +[-37.98387015, 175.4128784667, "2/2724"], +[-37.9836752333, 175.4125610667, "1/2724"], +[-37.8997874, 175.4596524, "2/3886"], +[-37.8999206167, 175.4595150667, "3/3886"], +[-37.9052384833, 175.4516238333, "3/3774"], +[-37.9009602667, 175.4546291667, "3846"], +[-37.89997485, 175.4588545167, "3890"], +[-37.9160101833, 175.4469321333, "3636"], +[-37.9504464333, 175.43548145, "3164"], +[-37.90139465, 175.4518174, "3808"], +[-37.9003306333, 175.4547485333, "3831"], +[-37.9150642, 175.4457459, "3631"], +[-37.9700292833, 175.4302066, "2954"], +[-37.9719347833, 175.4284579333, "2920"], +[-37.9684611833, 175.4302354667, "2959"], +[-37.9638249667, 175.4310026333, "3011"], +[-37.9635499667, 175.4311723667, "3013"], +[-37.9621262833, 175.4321201167, "3025"], +[-37.9599553667, 175.4336584667, "3059"], +[-37.9593913167, 175.4346581667, "3072"], +[-37.9671775, 175.4315904833, "2978"], +[-37.9654828167, 175.4323972833, "2996"], +[-37.9304655333, 175.4298457167, "3403"], +[-37.9397400667, 175.4320840667, "3292"], +[-37.9397871333, 175.4311546, "3299"], +[-37.93902, 175.4299714, "3301"], +[-37.93884655, 175.4297564667, "3311"], +[-37.9378664, 175.42977575, "3320"], +[-37.9375432, 175.42891805, "3321"], +[-37.9370408, 175.4289005833, "3331"], +[-37.9364621167, 175.4289989833, "3337"], +[-37.9358432667, 175.4290959667, "3339"], +[-37.95477045, 175.4310178833, "3103"], +[-37.9508932667, 175.4345944, "3163"], +[-37.9502843833, 175.4345016333, "3169"], +[-37.9476339333, 175.4348761333, "1/3200"], +[-37.9459382167, 175.4300649167, "3215"], +[-37.9294075333, 175.4304862, "3414"], +[-37.9292768667, 175.4300710167, "3415"], +[-37.9481910333, 175.43494365, "2/3200"], +[-37.9276201333, 175.4302237167, "3433"], +[-37.9263022167, 175.4323864333, "3456"], +[-37.9577552167, 175.43514095, "3090"], +[-37.9559199, 175.4356498167, "3110"], +[-37.9556312, 175.4352157667, "3111"], +[-37.9541667833, 175.4350528333, "3127"], +[-37.924353, 175.43477375, "3488"], +[-37.92140285, 175.4361990333, "3521"], +[-37.9216205, 175.4367220333, "3522"], +[-37.9199150167, 175.4372039667, "3537"], +[-37.9191848333, 175.4377457167, "3553"], +[-37.91800785, 175.4398907667, "3571"], +[-37.9175554, 175.4427753167, "3596"], +[-37.9167918667, 175.4434860333, "3611"], +[-37.9154718333, 175.4484893833, "3650"], +[-37.91254, 175.4489284667, "3693"], +[-37.9096463167, 175.4500162167, "3715"], +[-37.9095109, 175.45076725, "3718"], +[-37.90312135, 175.4513793, "3791"], +[-37.9025248833, 175.4514848833, "3797"], +[-37.9027026, 175.4521118333, "3796"], +[-37.9012756, 175.4523393333, "3809"], +[-37.9000247833, 175.4550734667, "3847"], +[-37.8996109167, 175.45623955, "3853"], +[-37.8990466, 175.4570460167, "3861"], +[-37.8982341833, 175.4584695333, "1/3879"], +[-37.9037354333, 175.4513122, "3783"], +[-37.9164707667, 175.4457016833, "3626"], +[-37.9005404, 175.4554475167, "3838"], +[-37.92350345, 175.4354481833, "3498"], +[-37.92093435, 175.4372154, "3528"], +[-37.9733884167, 175.4270654167, "2900"], +[-37.9735011833, 175.426221, "2883"], +[-37.9737880333, 175.4258421667, "2881"], +[-37.9736479167, 175.4268099667, "2882"], +[-37.8857180167, 175.4319128667, "1/1699"], +[-37.8762356, 175.4124507167, "1498"], +[-37.8760383833, 175.4119469333, "1494"], +[-37.8881260667, 175.4328696, "2/1715"], +[-37.8866376, 175.4333463667, "1/1715"], +[-37.8884282, 175.4323350167, "1714"], +[-37.8881726667, 175.44522875, "1835A"], +[-37.8828618833, 175.42668015, "1643"], +[-37.8875062667, 175.4321305667, "1713"], +[-37.8891637, 175.4487508333, "1863"], +[-37.8890458667, 175.4450934833, "1835"], +[-37.8893503667, 175.4505826167, "1881"], +[-37.8892833167, 175.4493800333, "1871"], +[-37.88967995, 175.44903065, "1866"], +[-37.8897650833, 175.45173775, "1894"], +[-37.88972655, 175.4509517833, "1886"], +[-37.8893972, 175.4519753167, "1895"], +[-37.8893728833, 175.4515209833, "1891"], +[-37.8893832667, 175.4517583333, "1893"], +[-37.88975065, 175.4512729833, "1888"], +[-37.8897555167, 175.4524542333, "1896"], +[-37.8789651833, 175.4203288667, "1567"], +[-37.8891086, 175.4330816833, "1716"], +[-37.8749076, 175.4095179667, "1466"], +[-37.8766546833, 175.41371075, "1510"], +[-37.87762145, 175.4159128833, "1532"], +[-37.8778396333, 175.41638935, "1534"], +[-37.8784475833, 175.4175476, "1544"], +[-37.8789228667, 175.4189449833, "1560"], +[-37.8838774833, 175.4277925667, "1659"], +[-37.8865829, 175.4310726667, "2/1699"], +[-37.8869873, 175.4315526833, "1705"], +[-37.8887145167, 175.4342103167, "1735"], +[-37.8886082667, 175.4386434, "1786"], +[-37.8888977833, 175.4397067833, "1788"], +[-37.8889447833, 175.4399386, "1790"], +[-37.8891184, 175.4403393, "1800"], +[-37.8886052167, 175.44114285, "1811"], +[-37.8890688833, 175.4442045667, "1829"], +[-37.8894286667, 175.4442416167, "1830"], +[-37.8894495167, 175.4447870333, "1832"], +[-37.8894350833, 175.4526888167, "1903"], +[-37.8898216167, 175.45284305, "1902"], +[-37.8898244333, 175.45305355, "1906"], +[-37.8895077667, 175.4534430333, "1907"], +[-37.8895153, 175.4539427833, "1913"], +[-37.8820731, 175.4246370667, "1/1628"], +[-37.8829790333, 175.42515415, "2/1628"], +[-37.8829182333, 175.42331235, "3/1628"], +[-37.8846927167, 175.4287510833, "1669"], +[-37.8857990667, 175.4293535333, "1682"], +[-37.8859693167, 175.4303029167, "1/1689"], +[-37.8861213333, 175.4304782, "1689"], +[-37.9054227833, 175.4822613, "5"], +[-37.90567515, 175.4819121167, "6"], +[-37.9058446667, 175.4825176167, "10"], +[-37.9057151167, 175.4832514, "11"], +[-37.9059177, 175.4827449333, "12"], +[-37.9062382833, 175.48278225, "14"], +[-37.9059932667, 175.4830166333, "16"], +[-37.90537935, 175.4821119, "3"], +[-37.9055974, 175.4816880167, "4"], +[-37.9055800167, 175.4827762667, "7"], +[-37.9053443333, 175.4819134167, "1"], +[-37.9056483167, 175.4830068333, "9"], +[-37.9687541667, 175.5740302667, "1149"], +[-37.9203192833, 175.5148173833, "4/319"], +[-37.9566814833, 175.5624372, "1/978"], +[-37.95688745, 175.5621776167, "2/978"], +[-37.9580920167, 175.5647472333, "995"], +[-37.92775475, 175.5378236667, "2/568"], +[-37.92609085, 175.5347061333, "1/542"], +[-37.9266186167, 175.5349056333, "2/542"], +[-37.9269626167, 175.5353566167, "3/542"], +[-37.9208396833, 175.5299344667, "422"], +[-37.9207653333, 175.5242669667, "387"], +[-37.9178039333, 175.49454775, "140"], +[-37.9456599, 175.5548334167, "2/836"], +[-37.9455115167, 175.5542481167, "1/836"], +[-37.9194724833, 175.5061424833, "238"], +[-37.9193864333, 175.5055969833, "232"], +[-37.9175102167, 175.49730755, "159"], +[-37.9307227667, 175.53812715, "1/618-10/618"], +[-37.9369806, 175.5416204833, "648A"], +[-37.93400485, 175.5405088167, "648"], +[-37.9352812167, 175.5418752167, "656"], +[-37.9261541333, 175.5367970667, "564"], +[-37.9276279, 175.5381303167, "1/568"], +[-37.9461318333, 175.5545134167, "842"], +[-37.94315595, 175.5537148, "806"], +[-37.9464287167, 175.5549129667, "844"], +[-37.9713060833, 175.57780675, "1198"], +[-37.9403528, 175.5492173333, "748"], +[-37.9406445667, 175.5496667833, "1/750"], +[-37.9282707, 175.5363209167, "7/568"], +[-37.9188207333, 175.505113, "225"], +[-37.9388163333, 175.5467693, "714"], +[-37.9405476, 175.5503991667, "749"], +[-37.94102555, 175.55021985, "750"], +[-37.94425745, 175.5552436333, "819"], +[-37.9459448333, 175.55501645, "838"], +[-37.9465835833, 175.5559441, "845"], +[-37.9472323167, 175.5550552833, "850"], +[-37.9479511833, 175.5562512667, "1/861"], +[-37.9481898667, 175.55635715, "2/861"], +[-37.9500993333, 175.5559819167, "888"], +[-37.95089095, 175.5580154, "899"], +[-37.9289862833, 175.5364012833, "6/568"], +[-37.9653755, 175.5702818667, "1099"], +[-37.9299398667, 175.5377803667, "3/610"], +[-37.9297131333, 175.5382649, "2/610"], +[-37.92950415, 175.5389677333, "1/610"], +[-37.9285464333, 175.53936505, "601"], +[-37.92981565, 175.5365770833, "568"], +[-37.9335473333, 175.5403341667, "646"], +[-37.9331034167, 175.5400956, "642"], +[-37.9327759167, 175.538732, "640"], +[-37.9334526333, 175.5387036667, "638"], +[-37.93320675, 175.5383744833, "636"], +[-37.9336129167, 175.5375626, "634"], +[-37.93288865, 175.5381226667, "632"], +[-37.9327198833, 175.53720065, "630"], +[-37.93255565, 175.53790585, "628"], +[-37.93178035, 175.5394509333, "626"], +[-37.9186410667, 175.5002110833, "182"], +[-37.9172343667, 175.4951996667, "139"], +[-37.9180053667, 175.5002946167, "183"], +[-37.9174022167, 175.4964858167, "151"], +[-37.9234301333, 175.5355513833, "516"], +[-37.9434775667, 175.5532109833, "808"], +[-37.93984305, 175.5484721667, "742"], +[-37.9705266833, 175.57732895, "1175"], +[-37.9272626167, 175.53717615, "3/568"], +[-37.9532905667, 175.5580751833, "926"], +[-37.9528798333, 175.5576940667, "924"], +[-37.9659760333, 175.5710443833, "1/1111"], +[-37.9396966667, 175.5481831, "740"], +[-37.9128371, 175.4832793167, "19"], +[-37.9140123833, 175.4838446333, "26"], +[-37.9172423167, 175.4912675833, "106"], +[-37.91736885, 175.4918037833, "110"], +[-37.91754985, 175.4930980167, "120"], +[-37.9169178833, 175.4926386, "121"], +[-37.9163286667, 175.4889877833, "85"], +[-37.9169649167, 175.4891728833, "86"], +[-37.9165898167, 175.4905852833, "97"], +[-37.9139972667, 175.4850735, "37"], +[-37.9158482667, 175.48707945, "68"], +[-37.9195504667, 175.5065384833, "240"], +[-37.9197355333, 175.5077362, "256"], +[-37.9187252667, 175.5091617167, "263"], +[-37.9196476833, 175.5108055333, "277"], +[-37.9202849333, 175.5111623667, "300"], +[-37.9206995667, 175.5135292833, "1/314"], +[-37.9207361, 175.5138259667, "2/314"], +[-37.9562101, 175.5616106, "972"], +[-37.9204318667, 175.5155629167, "1/319"], +[-37.9203768167, 175.5151516333, "2/319"], +[-37.91788475, 175.51599185, "3/319"], +[-37.9208983667, 175.5150343667, "322"], +[-37.9207446167, 175.5174052333, "355"], +[-37.9213706667, 175.5182903833, "364"], +[-37.9209673667, 175.5228385667, "381"], +[-37.9121427, 175.48111095, "1"], +[-37.9210744167, 175.526721, "398"], +[-37.92060065, 175.5267811333, "421"], +[-37.9203042167, 175.53031625, "441"], +[-37.9205438667, 175.5322192667, "472"], +[-37.95440025, 175.5603198167, "949"], +[-37.9549745833, 175.5610077, "955"], +[-37.9557622833, 175.5620862333, "971"], +[-37.95699575, 175.56162575, "976"], +[-37.96071475, 175.5671597833, "1043"], +[-37.95945125, 175.5654647667, "1048"], +[-37.9618459333, 175.56799375, "1/1049"], +[-37.9616152833, 175.5678077833, "2/1049"], +[-37.9661303667, 175.5708020833, "2/1111"], +[-37.9667493333, 175.57131025, "1115"], +[-37.96711415, 175.5715806667, "1117"], +[-37.9675804833, 175.5719935, "1121"], +[-37.9684296167, 175.5727105333, "1133"], +[-37.9470393333, 175.5592361, "859"], +[-37.91908795, 175.5034454, "1/222"], +[-37.9190107333, 175.5030951833, "2/222"], +[-37.9182063667, 175.4975724833, "162"], +[-37.9215276333, 175.5398657167, "338"], +[-37.9214903, 175.5403513167, "347"], +[-37.9192073833, 175.5385113667, "60"], +[-37.9194124167, 175.53863005, "70"], +[-37.9202965333, 175.5390272333, "170"], +[-37.9202201333, 175.5394256333, "187"], +[-37.9200427667, 175.5393355, "165"], +[-37.9196745333, 175.5387265333, "110"], +[-37.9196443833, 175.5391287333, "113"], +[-37.9200210333, 175.5388776, "148"], +[-37.9198508167, 175.5392385667, "139"], +[-37.9198443833, 175.53880195, "130"], +[-37.92078415, 175.5393372, "240"], +[-37.9203728, 175.5395211833, "205"], +[-37.92054995, 175.5391807, "218"], +[-37.9207016833, 175.53928345, "222"], +[-37.9204983167, 175.5396219333, "225"], +[-37.9206377, 175.5392380167, "220"], +[-37.9209028833, 175.53941765, "1/258"], +[-37.9206256667, 175.5397483667, "243"], +[-37.92098855, 175.5394799, "2/258"], +[-37.9211211, 175.54010905, "303"], +[-37.9207808, 175.5398586, "261"], +[-37.9209433167, 175.5399736333, "285"], +[-37.9210710833, 175.53953355, "3/258"], +[-37.9213220667, 175.54020665, "325"], +[-37.9213740167, 175.5397642, "320"], +[-37.9216746167, 175.5399703333, "356"], +[-37.9217735667, 175.5401128333, "370"], +[-37.9216458, 175.5405448833, "373"], +[-37.92187255, 175.54025525, "386"], +[-37.9219284333, 175.5408441667, "401"], +[-37.9103304833, 175.4721328333, "10"], +[-37.9102787167, 175.4719914, "11"], +[-37.9108774833, 175.4715148, "1"], +[-37.91067615, 175.4716186, "3"], +[-37.9107711833, 175.4719261333, "4"], +[-37.9105010667, 175.4716637167, "5"], +[-37.9106344833, 175.4720128, "6"], +[-37.9103480333, 175.4717653333, "7"], +[-37.91015655, 175.4718258167, "9"], +[-37.9104869167, 175.47212505, "8"], +[-37.8164228, 175.5139775667, "1"], +[-37.8062942167, 175.5133165, "174"], +[-37.8153860333, 175.5132536167, "21"], +[-37.8101489667, 175.5102431, "70"], +[-37.81422025, 175.5124331667, "36"], +[-37.8662685833, 175.38685585, "101"], +[-37.8696932667, 175.3909689667, "156"], +[-37.86591225, 175.38439815, "82"], +[-37.8665148, 175.3851989333, "100"], +[-37.8672423833, 175.385944, "102"], +[-37.8633081833, 175.3778155667, "18"], +[-37.8628883333, 175.3783555833, "20"], +[-37.8633668167, 175.3794526667, "34"], +[-37.8687968833, 175.3875604333, "124"], +[-37.87375745, 175.4073473, "309"], +[-37.871102, 175.3963777667, "206"], +[-37.8643377167, 175.3813198167, "48A"], +[-37.8647317667, 175.38235055, "62"], +[-37.8653946, 175.3839015333, "72"], +[-37.8691804167, 175.3885183, "136"], +[-37.8695428667, 175.3900536333, "150"], +[-37.8708532667, 175.3954820167, "200"], +[-37.8696376833, 175.3931483, "165"], +[-37.8708364167, 175.3980991167, "221"], +[-37.8769260167, 175.3983096333, "256B"], +[-37.8739190333, 175.4060778667, "298"], +[-37.8736307833, 175.4070128, "307"], +[-37.8743770667, 175.4077305, "316"], +[-37.8703100667, 175.3894640833, "146"], +[-37.8697010667, 175.39052375, "154"], +[-37.8641413167, 175.3808931667, "48E"], +[-37.8673080333, 175.3779883667, "48B"], +[-37.8673718333, 175.3785550833, "48C"], +[-37.8674977833, 175.3793694333, "48D"], +[-37.86895095, 175.3799414833, "66B"], +[-37.8626150667, 175.3776425167, "14"], +[-37.87166565, 175.3986665667, "254A"], +[-37.8723313833, 175.4007501, "256A"], +[-37.8728116833, 175.4024396333, "276A"], +[-37.8735445333, 175.4044031333, "276B"], +[-37.8788183833, 175.3998753, "276C"], +[-37.8700288, 175.39251035, "170"], +[-37.8700618833, 175.3926480833, "172"], +[-37.87032565, 175.3935790167, "182"], +[-37.87129395, 175.3971019667, "210"], +[-37.8684687167, 175.3787688, "66A"], +[-37.86917345, 175.3816180667, "66"], +[-37.8994036333, 175.46781995, "2"], +[-37.89908445, 175.46789945, "3"], +[-37.8992924, 175.46819555, "4"], +[-37.8990193667, 175.4681169167, "5"], +[-37.8994638333, 175.46840135, "6"], +[-37.8988995167, 175.4683006333, "7"], +[-37.8992033, 175.46852295, "8"], +[-37.8866583833, 175.4532039667, "33F"], +[-37.8864233833, 175.4521969667, "32"], +[-37.8866203333, 175.4534927833, "33E"], +[-37.88746175, 175.45179065, "24A"], +[-37.8826686, 175.4521089833, "48"], +[-37.8871881167, 175.4517683, "26A"], +[-37.8891620833, 175.4522299333, "2A"], +[-37.8870288833, 175.4517563333, "28A"], +[-37.8847421333, 175.4521349667, "46"], +[-37.8866198667, 175.4517700333, "30A"], +[-37.8847517, 175.4530716833, "49"], +[-37.8864979167, 175.4517625333, "32A"], +[-37.8877413167, 175.4522157, "22"], +[-37.8875273, 175.4522017833, "24"], +[-37.8886485, 175.4522158667, "10"], +[-37.8863276167, 175.4526999167, "39"], +[-37.8872459167, 175.4521917333, "26"], +[-37.8869694333, 175.4521850167, "28"], +[-37.8884949833, 175.4526693667, "11"], +[-37.8884365167, 175.4522167833, "12"], +[-37.8883604667, 175.45266065, "13"], +[-37.88909265, 175.4527732833, "1A"], +[-37.8890918, 175.4526509167, "1"], +[-37.8892247667, 175.4522300833, "2"], +[-37.8889543167, 175.4526548333, "3"], +[-37.88878835, 175.4526679667, "5"], +[-37.8879826333, 175.4526516667, "17"], +[-37.8879732333, 175.4522717, "18"], +[-37.8876465167, 175.4529919333, "21"], +[-37.8874666333, 175.4526953333, "23"], +[-37.88718005, 175.45269155, "27"], +[-37.88667215, 175.4527091167, "35"], +[-37.8865333667, 175.452713, "37"], +[-37.8869211167, 175.4527025667, "31"], +[-37.8889064667, 175.45167665, "6"], +[-37.8887104, 175.4530365333, "7"], +[-37.8888331333, 175.45221635, "8"], +[-37.8886320167, 175.4530411167, "9"], +[-37.8866415, 175.4537552833, "33D"], +[-37.8868032, 175.4537838167, "33C"], +[-37.8868312167, 175.45354015, "33B"], +[-37.88685175, 175.4532279333, "33A"], +[-37.8867126, 175.4521915667, "30"], +[-37.89138475, 175.4647044, "31"], +[-37.8884147667, 175.4636648, "60B"], +[-37.8944636333, 175.4644644833, "10A"], +[-37.8944416833, 175.4645756833, "10"], +[-37.8941219, 175.46491495, "11"], +[-37.8943222167, 175.4642833333, "12A"], +[-37.8930367667, 175.4648168, "15A"], +[-37.8931255, 175.4648136167, "15B"], +[-37.8931035167, 175.4644127333, "18"], +[-37.89292315, 175.4648254167, "19"], +[-37.8942371, 175.4645572667, "12"], +[-37.89397735, 175.4649136, "13"], +[-37.89409845, 175.4643458667, "14"], +[-37.89391375, 175.4645277333, "16"], +[-37.8929680833, 175.4643951, "20"], +[-37.8927348833, 175.46480795, "21"], +[-37.8928157667, 175.46437875, "22A"], +[-37.8927337833, 175.4643644833, "22"], +[-37.8925561167, 175.46478985, "23"], +[-37.8923608833, 175.4647155, "25A"], +[-37.8924641833, 175.46493565, "25"], +[-37.8949511, 175.4649854, "1A"], +[-37.8922117333, 175.4647047167, "27"], +[-37.8915681667, 175.4646986833, "29"], +[-37.8913701667, 175.4642759667, "30A-30D"], +[-37.8913990167, 175.4642620667, "30"], +[-37.8913092333, 175.46425895, "32"], +[-37.8912003667, 175.46469755, "33"], +[-37.8911230333, 175.4642383333, "34A"], +[-37.8911486667, 175.46399235, "34B"], +[-37.8911019, 175.4642380167, "34"], +[-37.89098895, 175.4646725333, "35"], +[-37.89084255, 175.4642192333, "36A"], +[-37.8909496167, 175.46422895, "36B"], +[-37.8908606333, 175.4642211667, "36"], +[-37.8948280833, 175.46498935, "3"], +[-37.8908666333, 175.4646632833, "37"], +[-37.8907759333, 175.4646549833, "39A"], +[-37.8907216667, 175.4646473167, "39B"], +[-37.8906578833, 175.4646450333, "39C"], +[-37.8905375667, 175.4646237167, "41"], +[-37.8904761833, 175.4646328667, "43"], +[-37.8902941833, 175.4641657667, "44A"], +[-37.8902406833, 175.46415805, "44B"], +[-37.8903436667, 175.4641675667, "44"], +[-37.89028625, 175.46460345, "45"], +[-37.8901877167, 175.4641515667, "46A"], +[-37.89013315, 175.4641537667, "46B"], +[-37.8949605167, 175.4645740333, "4"], +[-37.8900607167, 175.4645841333, "47"], +[-37.8900176, 175.4641449833, "48"], +[-37.8899419667, 175.464572, "49A"], +[-37.88987475, 175.4645733833, "49B"], +[-37.8898110667, 175.4645667333, "49C"], +[-37.8896632167, 175.4645695333, "49D"], +[-37.8898541333, 175.46475255, "49E"], +[-37.8897567333, 175.4647629, "49F"], +[-37.8896634667, 175.4647669667, "49G"], +[-37.8898924167, 175.4641263833, "50"], +[-37.8897574667, 175.4641326833, "52"], +[-37.8889242333, 175.4640623167, "54"], +[-37.88865535, 175.4644431167, "55"], +[-37.8887946833, 175.4638054667, "56A"], +[-37.8946296667, 175.4649645, "5"], +[-37.8887812167, 175.4640600833, "56"], +[-37.8884208167, 175.46442915, "57"], +[-37.8886385667, 175.4637760833, "58A"], +[-37.8886053667, 175.4640482, "58"], +[-37.8882043667, 175.4644158333, "59"], +[-37.8885028333, 175.463677, "60A"], +[-37.88839355, 175.4640293333, "60"], +[-37.8879652167, 175.4644074, "61"], +[-37.8877446333, 175.46437685, "63"], +[-37.8881502667, 175.4640036667, "64"], +[-37.8879700167, 175.4639859333, "66"], +[-37.8878033167, 175.4639686667, "68"], +[-37.8947931167, 175.4646081167, "6A"], +[-37.8948649333, 175.4643251333, "6"], +[-37.8944518833, 175.4649523167, "7"], +[-37.8946088333, 175.4645449667, "8"], +[-37.89429465, 175.4649376, "9"], +[-37.8951769667, 175.4645875167, "2"], +[-37.88757625, 175.46390195, "70"], +[-37.8940272667, 175.4652238, "11A"], +[-37.8929316167, 175.4651907833, "19A"], +[-37.8910516167, 175.4651865667, "35A"], +[-37.8950131667, 175.4649995667, "1"], +[-37.8946681667, 175.4642288167, "8A"], +[-37.8950832, 175.4643562167, "2A"], +[-37.89289445, 175.4639297667, "1/22-11/22"], +[-37.8839810833, 175.4856866167, "3"], +[-37.8839609167, 175.4862087667, "4"], +[-37.8813706667, 175.4859932667, "25"], +[-37.8815762, 175.4860593167, "23"], +[-37.88176925, 175.48611695, "21"], +[-37.8819291833, 175.4861440667, "19"], +[-37.8812535167, 175.48626755, "28"], +[-37.8814419833, 175.486341, "26"], +[-37.8816454, 175.486407, "24"], +[-37.8817836833, 175.4864573167, "22"], +[-37.8823392667, 175.4866145167, "20"], +[-37.8824710167, 175.4866385333, "18"], +[-37.8823897, 175.4862189833, "17"], +[-37.8810208833, 175.4857673833, "27"], +[-37.8809241333, 175.4860744, "32"], +[-37.8810838833, 175.4862027833, "30"], +[-37.8807501667, 175.4855223, "35"], +[-37.8809029, 175.48565165, "33"], +[-37.88077235, 175.4859607667, "34"], +[-37.8805942833, 175.48538215, "37"], +[-37.8806738833, 175.48500715, "39"], +[-37.8804429167, 175.4856392833, "36"], +[-37.8806746667, 175.48474885, "41"], +[-37.8802171333, 175.4854475, "38"], +[-37.8800456167, 175.4853260167, "40"], +[-37.8805906167, 175.4847991833, "43"], +[-37.8803164833, 175.4846505, "49"], +[-37.8803990833, 175.4851850833, "45"], +[-37.8802597333, 175.4850626167, "47"], +[-37.8800347333, 175.4849136333, "53"], +[-37.88023585, 175.4846241, "51"], +[-37.87911725, 175.4844298333, "63"], +[-37.8793032, 175.4845327167, "61"], +[-37.8794998, 175.48456245, "59"], +[-37.8796728333, 175.48464225, "57"], +[-37.8798386, 175.4844502667, "55B"], +[-37.87985855, 175.4847564333, "55"], +[-37.8798501167, 175.4851561333, "42"], +[-37.8792051, 175.48470885, "65"], +[-37.8796635, 175.4850343667, "44"], +[-37.8834352333, 175.4858534667, "5"], +[-37.8832857667, 175.4859341667, "7"], +[-37.88359745, 175.4863355833, "8"], +[-37.8830905833, 175.4860275333, "9"], +[-37.88377265, 175.48624865, "6"], +[-37.8826329333, 175.4866849167, "16"], +[-37.8825409333, 175.4862091167, "15"], +[-37.8827294333, 175.4862135, "13"], +[-37.8834279333, 175.4864298333, "10"], +[-37.8832412, 175.4865308833, "12"], +[-37.883058, 175.4865957667, "14"], +[-37.8828529667, 175.4861158333, "11"], +[-37.8834473167, 175.3733817, "7"], +[-37.8821477, 175.3739511333, "17"], +[-37.8835727833, 175.3742963167, "4"], +[-37.8829996167, 175.37376495, "11"], +[-37.8799677333, 175.3744603833, "49"], +[-37.8801634167, 175.37443835, "43"], +[-37.8131783667, 175.38169875, "10"], +[-37.8129868833, 175.3819189, "8"], +[-37.8122474333, 175.3825065833, "6C"], +[-37.8130850833, 175.3823078833, "6A"], +[-37.8124561333, 175.38300715, "6B"], +[-37.81348525, 175.3804658333, "12"], +[-37.81168165, 175.3801314, "16B"], +[-37.8110145667, 175.3801371167, "16C"], +[-37.8106325333, 175.3808725167, "16D"], +[-37.8105196, 175.3799175, "16E"], +[-37.8134586333, 175.37986425, "16A"], +[-37.8608434833, 175.4499011, "43"], +[-37.8612150667, 175.44990305, "45"], +[-37.8618689167, 175.4498981167, "47"], +[-37.86239125, 175.4505662333, "49"], +[-37.8626794667, 175.4498931333, "51"], +[-37.86272035, 175.4492676833, "53"], +[-37.86160045, 175.4492898833, "55"], +[-37.8830900667, 175.48706325, "2"], +[-37.8833400667, 175.4873493167, "3"], +[-37.88330455, 175.4870247333, "4"], +[-37.8835654833, 175.4872303, "5"], +[-37.8835200667, 175.48693185, "6"], +[-37.8837668167, 175.4872335833, "7"], +[-37.88372005, 175.48686615, "8"], +[-37.88385335, 175.4870479667, "9"], +[-37.8831409167, 175.4873846167, "1"], +[-37.8838673, 175.4868328833, "10"], +[-37.88305215, 175.4682743333, "2"], +[-37.8832460833, 175.4683237, "3"], +[-37.8833727333, 175.4683497167, "4"], +[-37.8833539333, 175.4684306333, "5"], +[-37.8832353667, 175.4684359833, "6"], +[-37.8356606333, 175.4259896, "44"], +[-37.8361144333, 175.4254149667, "39"], +[-37.8298011333, 175.4247086333, "97"], +[-37.8328783, 175.4254824333, "73"], +[-37.8326006333, 175.42427305, "71"], +[-37.831938, 175.42577585, "85"], +[-37.8296909667, 175.4253358667, "98A"], +[-37.8304079333, 175.42640705, "98B"], +[-37.9136688833, 175.47027315, "11"], +[-37.9136547333, 175.47069685, "10"], +[-37.9138316333, 175.4708094833, "12"], +[-37.9137826667, 175.4703954167, "16"], +[-37.91318695, 175.4705625333, "1"], +[-37.9132175333, 175.4701367, "3"], +[-37.9134621167, 175.47077345, "4"], +[-37.9134043833, 175.47044285, "5"], +[-37.9136208, 175.4710819333, "6"], +[-37.91350565, 175.47029995, "7"], +[-37.9137004667, 175.4710525667, "8"], +[-37.9135834833, 175.4699601167, "9"], +[-37.8994691333, 175.46256515, "2"], +[-37.8995118667, 175.4628252833, "2A"], +[-37.8995123, 175.4630041667, "2B"], +[-37.8994579333, 175.4622181667, "1"], +[-37.8974378833, 175.4617671667, "28"], +[-37.8974075167, 175.4619900333, "26"], +[-37.89761855, 175.4608725333, "25"], +[-37.8977565167, 175.4606562, "27"], +[-37.8979072833, 175.4605283333, "29"], +[-37.89808565, 175.4603934333, "31"], +[-37.8982804333, 175.46037375, "33"], +[-37.89837375, 175.4602651333, "35"], +[-37.89802395, 175.46003665, "50"], +[-37.8978844167, 175.4601356167, "48"], +[-37.8977532, 175.4602402333, "46"], +[-37.8976160167, 175.4603286167, "44"], +[-37.89819545, 175.4599255167, "52"], +[-37.8974890167, 175.4604333667, "42"], +[-37.8973825833, 175.46056285, "40"], +[-37.8984307833, 175.4623306333, "14"], +[-37.8993176, 175.46225845, "3"], +[-37.8982570167, 175.4622604, "16"], +[-37.89807915, 175.4621847167, "18"], +[-37.8979096167, 175.46211465, "20"], +[-37.8977295167, 175.4620442, "22"], +[-37.8983868833, 175.4619344833, "11"], +[-37.8982446, 175.4618734, "13"], +[-37.8980852, 175.46182235, "15"], +[-37.8979221167, 175.4617471667, "17"], +[-37.8977388167, 175.4616313167, "19"], +[-37.8975900833, 175.4619512333, "24"], +[-37.8976432833, 175.4613693, "21"], +[-37.8976362833, 175.4611184667, "23"], +[-37.8973338667, 175.4610383, "34"], +[-37.89734735, 175.46128405, "32"], +[-37.8973671167, 175.4615326833, "30"], +[-37.8983740833, 175.4600625, "37"], +[-37.8973341333, 175.46074505, "38"], +[-37.8971390333, 175.46087135, "36"], +[-37.8986548667, 175.4624186833, "12"], +[-37.89883265, 175.462497, "10"], +[-37.8990063167, 175.46257255, "8"], +[-37.8991676833, 175.4626289833, "6"], +[-37.8993200333, 175.4626184667, "4"], +[-37.8990043833, 175.4621885667, "7"], +[-37.8988871333, 175.4621417, "9"], +[-37.8991505333, 175.4622658, "5"], +[-37.9839604, 175.45833975, "21"], +[-37.9833674167, 175.4588416833, "15"], +[-37.8359882667, 175.4393378167, "84"], +[-37.81988195, 175.4304131333, "303"], +[-37.8180250667, 175.4265244667, "359"], +[-37.8183922667, 175.42604195, "361"], +[-37.8176359333, 175.4250678167, "377"], +[-37.8345467667, 175.4387839833, "99"], +[-37.83385615, 175.4387189, "107"], +[-37.80686185, 175.4025271167, "621E"], +[-37.8072254833, 175.4031670833, "621F"], +[-37.8157959333, 175.4221578, "401B"], +[-37.8061875667, 175.401462, "621A"], +[-37.8058821833, 175.4010980167, "621B"], +[-37.81469335, 175.4231989, "406"], +[-37.8174082667, 175.4176129667, "413"], +[-37.8141161167, 175.4226544167, "416"], +[-37.8138467167, 175.4215990833, "419"], +[-37.8135359833, 175.4220777667, "424"], +[-37.81227475, 175.4238289333, "426"], +[-37.81351715, 175.4209686667, "431"], +[-37.8344727, 175.43943635, "100"], +[-37.8341482167, 175.4394138833, "102"], +[-37.8335249, 175.4387248167, "111"], +[-37.8332444167, 175.4386937167, "113"], +[-37.8258899667, 175.4354216333, "201"], +[-37.8207155167, 175.4310458, "287"], +[-37.82205395, 175.4322644, "273"], +[-37.82211345, 175.4333285833, "268"], +[-37.8116728667, 175.4194537167, "440A"], +[-37.8113214333, 175.4130010333, "491A"], +[-37.8163042833, 175.4288074167, "348B"], +[-37.81563165, 175.4286594, "348A"], +[-37.8059561833, 175.41024335, "566"], +[-37.8054795833, 175.3996853333, "621D"], +[-37.8049338667, 175.4001146333, "621C"], +[-37.8194743833, 175.42997115, "315"], +[-37.8179959833, 175.4296346167, "328"], +[-37.8184434333, 175.4287788333, "327"], +[-37.8064376833, 175.406161, "597B"], +[-37.8062919333, 175.4056468333, "597C"], +[-37.8165707167, 175.4301424, "336B"], +[-37.8172738, 175.4285947167, "336A"], +[-37.8189469333, 175.4303026167, "312A"], +[-37.81940555, 175.4307701833, "312B"], +[-37.8199143667, 175.4312459, "300"], +[-37.8175767667, 175.4291582, "334"], +[-37.8152067667, 175.4162956667, "441B"], +[-37.8142325667, 175.4148164667, "441D"], +[-37.8149509, 175.4159546667, "441C"], +[-37.815999, 175.4175927333, "441A"], +[-37.80413515, 175.4042530167, "612"], +[-37.8036285, 175.4024796333, "627B"], +[-37.8014316833, 175.4040596333, "636"], +[-37.8026355333, 175.4024570667, "638"], +[-37.8046866167, 175.4038756333, "613"], +[-37.8028006833, 175.4016926167, "639A"], +[-37.8015622167, 175.4017531, "652"], +[-37.8004875333, 175.4008727667, "670"], +[-37.7997891, 175.40002805, "676"], +[-37.8083442333, 175.4139592833, "509"], +[-37.8074935333, 175.4139840667, "532"], +[-37.8072659167, 175.4124669333, "543"], +[-37.8081279, 175.40823995, "567A"], +[-37.8087099667, 175.4071535667, "567C"], +[-37.804962, 175.4071512, "586"], +[-37.8046189167, 175.4061273333, "598"], +[-37.8052894167, 175.4083249, "576"], +[-37.8060052167, 175.4083508333, "571"], +[-37.8053679167, 175.4062368, "597A"], +[-37.8051049667, 175.4051947167, "607"], +[-37.8089437667, 175.4076931167, "567B"], +[-37.8113679833, 175.4200005667, "440B"], +[-37.8112042667, 175.4175891, "463"], +[-37.8114033, 175.4191389167, "442"], +[-37.81667955, 175.4240415167, "387"], +[-37.8160871, 175.4248795, "390"], +[-37.81503135, 175.4226562, "401A"], +[-37.8158879667, 175.42335465, "393"], +[-37.8104159333, 175.41701115, "477"], +[-37.84176295, 175.4387852167, "25"], +[-37.8394856333, 175.43871765, "53"], +[-37.84315575, 175.4396268667, "4"], +[-37.8382764833, 175.4387401333, "65"], +[-37.8365486833, 175.4387233, "81"], +[-37.83550145, 175.4387130167, "91"], +[-37.8063373333, 175.40984385, "565A"], +[-37.8068884167, 175.4101122333, "553"], +[-37.8073266833, 175.40938595, "565B"], +[-37.8022880667, 175.4015246833, "647"], +[-37.8032717167, 175.3994722333, "649"], +[-37.8125184833, 175.4206463, "432A"], +[-37.8131087167, 175.4214898833, "432D"], +[-37.81219155, 175.4220903333, "432B"], +[-37.8123494833, 175.4226102667, "432C"], +[-37.8323999167, 175.4388484167, "113/1"], +[-37.8137884667, 175.4184721333, "439B"], +[-37.8128705833, 175.4202196333, "439A"], +[-37.8030845, 175.4029651, "634"], +[-37.80229035, 175.4038689333, "634A"], +[-37.8016416, 175.4044987167, "634B"], +[-37.8040659833, 175.4028728333, "627A"], +[-37.8039385667, 175.4012164167, "627C"], +[-37.8041331833, 175.4011953333, "627D"], +[-37.8104539833, 175.4114936333, "501"], +[-37.8095276, 175.41551535, "491C"], +[-37.8104942333, 175.4142607333, "491B"], +[-37.8118822333, 175.4251615167, "426A"], +[-37.9146426833, 175.46333945, "8"], +[-37.9146966667, 175.4641698333, "12"], +[-37.9148385667, 175.4646229167, "14"], +[-37.9145846833, 175.4637018, "10"], +[-37.9148759167, 175.4632119667, "6"], +[-37.9150353667, 175.4631399, "4"], +[-37.8791983833, 175.48491125, "1"], +[-37.8794456833, 175.4852828333, "4"], +[-37.8795405, 175.4855742333, "6"], +[-37.8796772167, 175.4856965, "8"], +[-37.87980185, 175.4857916833, "10"], +[-37.8796864, 175.4861288, "15"], +[-37.8797264167, 175.4859489333, "12"], +[-37.8795614, 175.4860496167, "13"], +[-37.8794049667, 175.4858653167, "11"], +[-37.8792908167, 175.4856798667, "9"], +[-37.8791893, 175.4854042167, "5"], +[-37.879194, 175.4855697, "7"], +[-37.87919295, 175.4851510333, "3"], +[-37.9021503333, 175.4819923833, "1"], +[-37.9020893333, 175.4817469667, "2"], +[-37.90202325, 175.4814764333, "3"], +[-37.90189885, 175.4813368167, "4"], +[-37.9017681, 175.4813746667, "5"], +[-37.9017408667, 175.4815826667, "6"], +[-37.9018523, 175.4818607167, "7"], +[-37.90192475, 175.4821145, "8"], +[-37.91226175, 175.46593575, "11"], +[-37.9122654667, 175.4666392333, "2"], +[-37.9124824333, 175.4664875, "1"], +[-37.9126646667, 175.4661762167, "3"], +[-37.9121691, 175.4663371, "4"], +[-37.9126312167, 175.4661364333, "5"], +[-37.9121084167, 175.46614215, "6"], +[-37.91239705, 175.46620525, "7"], +[-37.912165, 175.4659997167, "8"], +[-37.91234125, 175.4659673167, "9"], +[-37.8640527833, 175.4896800333, "1/239"], +[-37.8637439833, 175.4893278333, "2/239"], +[-37.8399393, 175.4691242833, "563"], +[-37.8403040167, 175.4695932333, "555"], +[-37.8626741167, 175.4890199667, "250"], +[-37.86235545, 175.4877547333, "263"], +[-37.8621190833, 175.4881775833, "260"], +[-37.8697908333, 175.4976855333, "2/143"], +[-37.8696097167, 175.50222845, "109"], +[-37.8650994667, 175.4906942667, "217"], +[-37.8587062667, 175.4842270833, "308"], +[-37.8585393667, 175.4832368167, "323"], +[-37.856982, 175.4821791333, "337"], +[-37.8557220333, 175.4813075, "357"], +[-37.87269675, 175.51109805, "9"], +[-37.86818685, 175.4965807167, "154"], +[-37.8391881333, 175.4691244833, "570"], +[-37.8392424167, 175.4682793833, "573"], +[-37.8384787167, 175.4682486667, "580"], +[-37.8380699833, 175.4677177667, "586"], +[-37.83591845, 175.4652008167, "1/620"], +[-37.8356297, 175.4656015333, "2/620"], +[-37.85443655, 175.48126465, "362"], +[-37.8543465667, 175.4803770667, "363"], +[-37.8533677, 175.4796417833, "383"], +[-37.8400570333, 175.4693165167, "559"], +[-37.8701502, 175.5066921333, "58"], +[-37.8688167, 175.5031792667, "94"], +[-37.8633276833, 175.48971255, "240"], +[-37.84499075, 175.47397555, "489"], +[-37.8390078667, 175.4675286, "579"], +[-37.8615817667, 175.4874484667, "272"], +[-37.8611261, 175.48692335, "1/276"], +[-37.8609821, 175.48677485, "2/276"], +[-37.8443942167, 175.4735167, "491"], +[-37.84453425, 175.4741157833, "490"], +[-37.8728439333, 175.5114111333, "5"], +[-37.8479137833, 175.47588805, "449"], +[-37.8694130667, 175.5004653167, "118"], +[-37.8381128333, 175.4689194667, "578"], +[-37.8387493167, 175.4686557833, "576"], +[-37.834946, 175.4616395, "648"], +[-37.8355279667, 175.4648596667, "626"], +[-37.8352287, 175.46082495, "670"], +[-37.84359945, 175.4735256167, "500"], +[-37.8437138833, 175.4730056833, "501"], +[-37.8433661667, 175.4727594167, "511"], +[-37.8429640667, 175.4725448333, "513"], +[-37.8424090833, 175.4720656833, "517"], +[-37.8419261, 175.4716311333, "529"], +[-37.84138045, 175.4707106667, "535"], +[-37.8407243, 175.4700550167, "551"], +[-37.84032605, 175.4702964, "552"], +[-37.8397895, 175.46968935, "562"], +[-37.83966945, 175.4688137833, "567"], +[-37.8458821833, 175.4743360167, "479"], +[-37.8523557667, 175.4795548667, "394"], +[-37.8519909833, 175.4785619833, "401"], +[-37.85128865, 175.4790768167, "408"], +[-37.8505837, 175.4777973667, "419"], +[-37.8494416833, 175.4767902167, "429"], +[-37.8501747833, 175.478082, "422"], +[-37.8487495333, 175.477303, "446"], +[-37.8613924167, 175.4866768333, "275"], +[-37.8612592667, 175.48651665, "277"], +[-37.8606625, 175.4863779, "280"], +[-37.8602587667, 175.4860168333, "288"], +[-37.8662275, 175.4932509, "192"], +[-37.8656668, 175.4925030333, "206"], +[-37.8718011, 175.50936105, "31"], +[-37.871327, 175.50837775, "41"], +[-37.8481012833, 175.4755436333, "455"], +[-37.8662202833, 175.4971715833, "2/164"], +[-37.8665327833, 175.4968656167, "1/164"], +[-37.87262005, 175.5101317, "11"], +[-37.8407464167, 175.4693628, "553"], +[-37.8687301, 175.50368985, "92"], +[-37.8576066333, 175.4826215667, "331"], +[-37.867679, 175.4952846833, "164"], +[-37.8698948833, 175.4990379333, "133"], +[-37.8639344, 175.49046205, "230"], +[-37.8645916667, 175.4912248333, "224"], +[-37.8710460833, 175.50036065, "125"], +[-37.8694796667, 175.4976021667, "1/143"], +[-37.8733131, 175.4691004333, "3A"], +[-37.87406055, 175.4694125667, "6A"], +[-37.8735341167, 175.469327, "5"], +[-37.8735109667, 175.46960345, "7"], +[-37.87351105, 175.4698807333, "11"], +[-37.8735358667, 175.47009225, "13"], +[-37.8736709667, 175.4702864167, "17"], +[-37.8737941667, 175.47025885, "16"], +[-37.8738211333, 175.4693453167, "4"], +[-37.8737987667, 175.46968045, "8"], +[-37.8738769167, 175.4699632, "10"], +[-37.8739402833, 175.4701521167, "12"], +[-37.8732443833, 175.4692419333, "3B"], +[-37.8740679833, 175.4695514833, "6B"], +[-37.8739830167, 175.4704122667, "14"], +[-37.8735580667, 175.4702317, "15"], +[-37.87328745, 175.4697687167, "9"], +[-37.8738628167, 175.46909085, "2"], +[-37.8735833, 175.4690007, "1"], +[-37.9140601833, 175.4734438833, "1"], +[-37.91414235, 175.4726753, "7A"], +[-37.9148196333, 175.4729240333, "4"], +[-37.9145959167, 175.4727449, "5"], +[-37.9144294, 175.4728081667, "6"], +[-37.9142862333, 175.4729454, "7"], +[-37.9140804667, 175.4729594, "8"], +[-37.91442545, 175.4732771, "2A"], +[-37.9146292, 175.47320695, "3"], +[-37.9142898833, 175.4733283333, "2"], +[-37.8924708, 175.4694829667, "3"], +[-37.8921866833, 175.4690726, "4-6"], +[-37.8744290667, 175.4729675333, "16"], +[-37.8747743333, 175.4729266667, "17"], +[-37.8743306833, 175.4749814667, "2"], +[-37.8743712167, 175.4747777167, "4"], +[-37.8743979833, 175.4745281667, "6"], +[-37.8744096167, 175.47429405, "8"], +[-37.8744245167, 175.4740094333, "10"], +[-37.8744545333, 175.4736160667, "12"], +[-37.8742322333, 175.47382395, "10A"], +[-37.87422675, 175.47369315, "12A"], +[-37.8742394, 175.4730406667, "16A"], +[-37.8742450667, 175.4731634667, "14A"], +[-37.8744790667, 175.4732784833, "14"], +[-37.8747754833, 175.4731559, "15"], +[-37.8747613167, 175.4734085833, "13"], +[-37.8747389, 175.4736529667, "11"], +[-37.8747211167, 175.47387885, "9"], +[-37.8747006167, 175.4741313, "7"], +[-37.8746909667, 175.4743708167, "5"], +[-37.8746798167, 175.4746769, "3"], +[-37.8748711167, 175.4748117167, "3A"], +[-37.8748328833, 175.4749142833, "1A"], +[-37.874621, 175.4750391, "1"], +[-37.8755351667, 175.4795168667, "6A"], +[-37.8754681, 175.4798997667, "6"], +[-37.8756842833, 175.4798735833, "8"], +[-37.8756412167, 175.4794951833, "8A"], +[-37.8758023167, 175.4803141667, "5"], +[-37.8757598667, 175.4801058, "7"], +[-37.8757471833, 175.4799721833, "9"], +[-37.8755322, 175.4802420833, "3"], +[-37.8753549833, 175.47993535, "4"], +[-37.8817592, 175.4617109667, "4A"], +[-37.8820907333, 175.4622059833, "5"], +[-37.8815066, 175.4617161667, "4B"], +[-37.8817534333, 175.4618948333, "6A"], +[-37.8815026667, 175.46184895, "6B"], +[-37.8815932167, 175.46217415, "10A"], +[-37.8817450167, 175.46226225, "10"], +[-37.8818722667, 175.4626555167, "11"], +[-37.8817309, 175.4624690333, "12"], +[-37.8821211333, 175.4617608833, "1"], +[-37.8817646833, 175.4615252167, "2A"], +[-37.8815099, 175.4615357667, "2B"], +[-37.88209615, 175.4619084, "3"], +[-37.8820657333, 175.4624910833, "7"], +[-37.8817491333, 175.4620671833, "8A"], +[-37.8814882667, 175.4620343, "8B"], +[-37.8820256333, 175.4626954, "9"], +[-37.9011387, 175.4845455833, "11A"], +[-37.9004465667, 175.4842316167, "6"], +[-37.9006268333, 175.4836419, "1"], +[-37.9005414333, 175.4845609667, "10"], +[-37.9009292833, 175.4847187667, "11"], +[-37.90099175, 175.48493945, "13"], +[-37.900608, 175.4848214333, "14"], +[-37.9002908667, 175.4835936167, "2"], +[-37.9003859333, 175.4839906667, "4"], +[-37.9007548667, 175.4840674, "5"], +[-37.9008090833, 175.4842714333, "7"], +[-37.90027845, 175.4844867667, "8"], +[-37.90087325, 175.4844819167, "9"], +[-37.9010882333, 175.4852001, "15"], +[-37.9007465833, 175.4850981333, "16"], +[-37.9008384, 175.48536275, "18"], +[-37.9009003833, 175.4836903667, "3A"], +[-37.9006948, 175.48386545, "3"], +[-37.8352114167, 175.3932620667, "614"], +[-37.8358616, 175.3932373667, "607"], +[-37.8527932167, 175.4481416, "66"], +[-37.8535776833, 175.4477748333, "59"], +[-37.8513053333, 175.4468875167, "88"], +[-37.8367923167, 175.39439545, "597"], +[-37.8356857333, 175.39511535, "594"], +[-37.8338485, 175.3905351667, "644"], +[-37.8342344833, 175.3914293833, "636"], +[-37.8349352, 175.39110985, "631"], +[-37.8340942167, 175.3894187167, "647"], +[-37.8361288, 175.3943564333, "603"], +[-37.835456, 175.3923533167, "621"], +[-37.8316758833, 175.3851704333, "690"], +[-37.82606465, 175.3729124, "823A"], +[-37.8360247333, 175.40845075, "472"], +[-37.8367576167, 175.4058547167, "499"], +[-37.8307850333, 175.3833224167, "716"], +[-37.8297911333, 175.3838338167, "722A"], +[-37.82856305, 175.3853371, "722B"], +[-37.8366530833, 175.4158296167, "407"], +[-37.8343563333, 175.3899946667, "645"], +[-37.83378605, 175.3887814833, "649"], +[-37.8383438833, 175.4167502667, "403A"], +[-37.8269138333, 175.3707719, "823B"], +[-37.8262433167, 175.37126425, "823C"], +[-37.8278735833, 175.3745076, "791C"], +[-37.82803615, 175.3751116833, "791B"], +[-37.8284354167, 175.3743400333, "791D"], +[-37.8283312333, 175.3722626167, "803H"], +[-37.8308135833, 175.3857800333, "700A"], +[-37.83039575, 175.3861873667, "700B"], +[-37.8297918, 175.3866039833, "700C"], +[-37.8323622833, 175.3869592167, "680A"], +[-37.8317271833, 175.3872918333, "680B"], +[-37.8320544167, 175.3863078833, "680C"], +[-37.8265114833, 175.3737262, "811A"], +[-37.8268406667, 175.37269475, "811B"], +[-37.8272920833, 175.3716203, "811C"], +[-37.8537437333, 175.4489413667, "62"], +[-37.83192005, 175.3841341833, "695"], +[-37.8368657833, 175.4028889833, "525"], +[-37.83376425, 175.3968886333, "590B"], +[-37.8299130333, 175.3859233667, "702C"], +[-37.8305810833, 175.38512625, "702B"], +[-37.8360455333, 175.4081179333, "474"], +[-37.8276760833, 175.3808082167, "756C"], +[-37.8283299333, 175.3802092167, "756B"], +[-37.85043345, 175.4461019, "100"], +[-37.8297131833, 175.38286445, "724A"], +[-37.82929325, 175.383521, "724B"], +[-37.8369757, 175.3983033667, "571"], +[-37.8376989333, 175.4166211, "403B"], +[-37.8368311167, 175.4050104667, "505"], +[-37.8412127667, 175.4050228833, "491A"], +[-37.83852105, 175.4062947, "491B"], +[-37.8338348833, 175.3934827333, "622B"], +[-37.8330032, 175.3939467333, "622C"], +[-37.8282068, 175.376844, "775A"], +[-37.8295163167, 175.3755049667, "775B"], +[-37.828404, 175.37718215, "775C"], +[-37.8362426, 175.39711805, "578"], +[-37.8361603, 175.39675875, "580"], +[-37.8424267833, 175.4340512167, "232"], +[-37.84114775, 175.4311295833, "272"], +[-37.82872315, 175.3709866833, "803A"], +[-37.8285930667, 175.3703004167, "803B"], +[-37.8294768667, 175.3691337, "803C"], +[-37.8292017, 175.36888125, "803D"], +[-37.8285291333, 175.36580345, "803E"], +[-37.8298995333, 175.3673114167, "803F"], +[-37.8302568833, 175.36760835, "803G"], +[-37.8267714167, 175.3742385167, "807"], +[-37.83126665, 175.3844291833, "702A"], +[-37.83016355, 175.3818740833, "734"], +[-37.8296635167, 175.3807643167, "742"], +[-37.82974665, 175.3798092, "747"], +[-37.829114, 175.3799039833, "752"], +[-37.8288072833, 175.3779985667, "765"], +[-37.8278203667, 175.3760339333, "789"], +[-37.8274609333, 175.3753562, "791A"], +[-37.8320049, 175.39796425, "592B"], +[-37.8304380667, 175.3993220667, "592C"], +[-37.8323366667, 175.3982387333, "592D"], +[-37.8332103167, 175.39666495, "590A"], +[-37.8362232667, 175.4049506333, "504"], +[-37.83689715, 175.4034307333, "523"], +[-37.8362677, 175.4030851833, "522"], +[-37.8363718333, 175.4003976167, "548"], +[-37.836423, 175.3953457167, "585"], +[-37.83596855, 175.3959414667, "586"], +[-37.8392194, 175.4133888333, "439"], +[-37.8367003667, 175.4102236167, "461"], +[-37.83586315, 175.4121175333, "442"], +[-37.8387438833, 175.4244664667, "318"], +[-37.8382094333, 175.42266185, "346"], +[-37.8366223667, 175.4173578167, "396"], +[-37.8405799833, 175.4294097167, "284"], +[-37.8409799, 175.4286117333, "289"], +[-37.8404157, 175.4273133667, "291"], +[-37.8448297, 175.4386074, "188"], +[-37.8445996333, 175.4385307833, "190"], +[-37.8445953833, 175.4381869167, "192"], +[-37.8462362333, 175.4406972, "162"], +[-37.8453950333, 175.4394750167, "180"], +[-37.8561178167, 175.4522334, "11"], +[-37.8560307, 175.4511923667, "17"], +[-37.8361288, 175.4061807167, "492"], +[-37.83609445, 175.40683275, "490"], +[-37.8545275667, 175.44950565, "40"], +[-37.8375230333, 175.4199872333, "372"], +[-37.8388781167, 175.4226393667, "343"], +[-37.83701825, 175.41844345, "378"], +[-37.8371192833, 175.4187303167, "376"], +[-37.8373785667, 175.4194973167, "374"], +[-37.8367387167, 175.4085570167, "473"], +[-37.8318677333, 175.3858444, "688"], +[-37.8327873167, 175.3878064833, "674"], +[-37.83304365, 175.3883507667, "664"], +[-37.8366133333, 175.4130614667, "427"], +[-37.8508733333, 175.44641935, "94"], +[-37.8433085667, 175.4359371667, "212"], +[-37.8376679667, 175.3994774833, "549"], +[-37.8388004167, 175.3998009833, "549C"], +[-37.8369648167, 175.40033875, "549B"], +[-37.8376661833, 175.3999770333, "549A"], +[-37.8368055667, 175.3968196667, "575"], +[-37.8369513667, 175.39729965, "573"], +[-37.836328, 175.3975344167, "576"], +[-37.8419685667, 175.4332863667, "240"], +[-37.83147865, 175.3703224333, "781A"], +[-37.8302962167, 175.3727004833, "781B"], +[-37.8300511833, 175.3734676833, "781C"], +[-37.9155750333, 175.4788872333, "103"], +[-37.9080710333, 175.4815503833, "39C"], +[-37.9081354167, 175.48171275, "39B"], +[-37.90819845, 175.4819203833, "39A"], +[-37.9165609667, 175.4784770333, "115"], +[-37.91497395, 175.4792572167, "99"], +[-37.9096164833, 175.4817164167, "49"], +[-37.9116786667, 175.48074935, "69"], +[-37.9140226, 175.479658, "85"], +[-37.9069150833, 175.4829900333, "27A"], +[-37.9069469833, 175.4828211667, "27B"], +[-37.9141799333, 175.4796010667, "87"], +[-37.9148269, 175.4793132333, "95"], +[-37.9148061667, 175.47892315, "97"], +[-37.9052287833, 175.4834456667, "7A"], +[-37.9157397167, 175.4785532167, "107A"], +[-37.9164115167, 175.4783404167, "113"], +[-37.9162113333, 175.4786140333, "109"], +[-37.9159243667, 175.4787397833, "107B"], +[-37.91564195, 175.4783057333, "107"], +[-37.9095836167, 175.48142755, "49A"], +[-37.9097563, 175.4813824667, "51A"], +[-37.9142505167, 175.47917545, "89A"], +[-37.9143203667, 175.4795241, "89"], +[-37.9143582167, 175.4791171833, "91A"], +[-37.90809605, 175.4820482833, "37A"], +[-37.9080426833, 175.4818123, "37B"], +[-37.9079928333, 175.4816048, "37C"], +[-37.9144982167, 175.4794426833, "91"], +[-37.9146732833, 175.4793797, "93"], +[-37.9046052333, 175.48406395, "1"], +[-37.90479665, 175.4839646833, "3"], +[-37.9049845333, 175.4838759833, "5"], +[-37.9061106, 175.4833581667, "17"], +[-37.9062431667, 175.4833112333, "19"], +[-37.9063920333, 175.4832255333, "21"], +[-37.9065708, 175.48314765, "23"], +[-37.9067455333, 175.4830679333, "25"], +[-37.90686575, 175.4825972667, "29"], +[-37.9053759667, 175.4837128167, "11"], +[-37.9055325, 175.4836456167, "13"], +[-37.9057146333, 175.4835634667, "15"], +[-37.9080300333, 175.4824985, "35"], +[-37.9081798333, 175.4824187833, "37"], +[-37.90842625, 175.4822687667, "39"], +[-37.90871305, 175.4821525333, "43"], +[-37.9071454167, 175.4828962333, "31"], +[-37.90945405, 175.4818068167, "47"], +[-37.9097787167, 175.4816407833, "51"], +[-37.9101221667, 175.48147745, "55"], +[-37.9099619333, 175.4815613833, "53"], +[-37.9108703, 175.48113905, "57"], +[-37.9111010167, 175.4810227833, "61"], +[-37.9113033333, 175.4806476167, "63A"], +[-37.9113063333, 175.4809305333, "63"], +[-37.9113486333, 175.48054435, "65"], +[-37.9115162333, 175.4808384167, "67"], +[-37.9118321, 175.4806828667, "71"], +[-37.912005, 175.4805931333, "73"], +[-37.9126924, 175.4801856167, "75"], +[-37.9128904333, 175.48013955, "77"], +[-37.91306105, 175.4801038667, "79"], +[-37.91323275, 175.4800307667, "81"], +[-37.90504305, 175.48350075, "7"], +[-37.9161411, 175.4791161, "104"], +[-37.9052017167, 175.4837928833, "9"], +[-37.9048593333, 175.4837002833, "5A"], +[-37.9134008167, 175.4799760333, "83"], +[-37.91608025, 175.4781871, "111A"], +[-37.9159769333, 175.4778862, "111B"], +[-37.91609255, 175.4778227833, "111C"], +[-37.9162477333, 175.4781089667, "111D"], +[-37.8954434833, 175.47689195, "1"], +[-37.7968509833, 175.4409205333, "218"], +[-37.7967954, 175.4415974333, "226"], +[-37.79061135, 175.4311808833, "105"], +[-37.7936930167, 175.4323678167, "144"], +[-37.7936793, 175.4341171833, "169"], +[-37.7906754167, 175.4300550333, "101"], +[-37.7923387667, 175.4305234833, "114"], +[-37.7921506667, 175.4312033333, "119"], +[-37.79638115, 175.44350555, "244"], +[-37.9026378, 175.4249371167, "6"], +[-37.9018287167, 175.4251090167, "15"], +[-37.9005140167, 175.4267575167, "32"], +[-37.90030005, 175.4272810167, "36"], +[-37.9000367833, 175.4266413167, "1/45"], +[-37.8999172167, 175.4269248667, "2/45"], +[-37.8998128167, 175.42722285, "3/45"], +[-37.8997664167, 175.4278138333, "46"], +[-37.89874045, 175.42933485, "47"], +[-37.90246715, 175.4251130833, "8"], +[-37.98415945, 175.5440391833, "1/398"], +[-37.9842023, 175.5446759833, "398"], +[-37.9673053833, 175.5493618, "1/200"], +[-37.9595488167, 175.5503643667, "2/94"], +[-37.9548066833, 175.5547442167, "41"], +[-37.975043, 175.5502804667, "288"], +[-37.9674483333, 175.54948405, "2/200"], +[-37.9675936167, 175.54960055, "3/200"], +[-37.9536896833, 175.5558200833, "21"], +[-37.9537523333, 175.5551846667, "24"], +[-37.9758721, 175.55151395, "297"], +[-37.9715911333, 175.5505416, "246"], +[-37.97615305, 175.5531409833, "1/299"], +[-37.9759959833, 175.5531752167, "2/299"], +[-37.9762314333, 175.5517778833, "3/299"], +[-37.9789959667, 175.5511051167, "1/317"], +[-37.9791978667, 175.5509703167, "2/317"], +[-37.97016405, 175.5511682333, "233"], +[-37.9840100667, 175.5422511833, "3/398"], +[-37.9832081667, 175.5409176, "4/398"], +[-37.9626150333, 175.5485202333, "1/142"], +[-37.9620708667, 175.5493090333, "139"], +[-37.9646945333, 175.5484742, "164"], +[-37.95884865, 175.5515776333, "91"], +[-37.9588039667, 175.5510064, "1/94"], +[-37.9794108833, 175.5497014333, "332"], +[-37.9806783167, 175.5477771, "352"], +[-37.8757744167, 175.46972585, "1"], +[-37.8758043667, 175.4700843, "3"], +[-37.8758559833, 175.4703261667, "5"], +[-37.8759855667, 175.4703921667, "7"], +[-37.8761207333, 175.4703036833, "9"], +[-37.8763731833, 175.4703581, "8B"], +[-37.8763879, 175.4701746167, "8A"], +[-37.8760971833, 175.4699428, "6"], +[-37.8763947, 175.46978015, "4"], +[-37.8760231167, 175.4695721, "2"], +[-37.84887105, 175.5612401333, "268"], +[-37.8480716667, 175.5605471, "1/271"], +[-37.8481743833, 175.5599216, "2/271"], +[-37.8475651333, 175.5602482833, "273"], +[-37.8549548833, 175.5645155167, "187"], +[-37.8590531333, 175.56929455, "111"], +[-37.8579502, 175.5697828667, "1/128"], +[-37.8577433333, 175.5697812167, "2/128"], +[-37.8663423167, 175.5687757833, "25"], +[-37.8659378833, 175.5701593333, "1/32"], +[-37.8656144667, 175.5703594167, "2/32"], +[-37.9075306667, 175.4735409, "8"], +[-37.90741835, 175.4736250333, "12"], +[-37.9077710167, 175.4736747, "3"], +[-37.90756245, 175.4735306833, "7"], +[-37.90776065, 175.4736345167, "4"], +[-37.9076790833, 175.4734552333, "6"], +[-37.90770165, 175.4734532167, "5"], +[-37.90742555, 175.4736053833, "11"], +[-37.9074725833, 175.4739170833, "14"], +[-37.9074575333, 175.47388525, "13"], +[-37.90752205, 175.4737226167, "10"], +[-37.9075427667, 175.4737034667, "9"], +[-37.9078406167, 175.4738848333, "1"], +[-37.9078192667, 175.4738328667, "2"], +[-37.9079175667, 175.4742687333, "19"], +[-37.9076409333, 175.4739459, "15"], +[-37.9077643333, 175.4742689, "18"], +[-37.9077539833, 175.4742287, "17"], +[-37.9076577333, 175.47400055, "16"], +[-37.9079030333, 175.4742141667, "20"], +[-37.9156256167, 175.4748749833, "78"], +[-37.9146128333, 175.4721344167, "56A"], +[-37.9151661833, 175.4733835167, "66"], +[-37.9140138, 175.4694897, "30"], +[-37.9140857167, 175.46969035, "32"], +[-37.9144033, 175.4695158, "33"], +[-37.91414165, 175.4698978167, "34"], +[-37.91444875, 175.4697295833, "35"], +[-37.9142653833, 175.4703260667, "38"], +[-37.9142211667, 175.4701128667, "36"], +[-37.9155440833, 175.4732913, "65"], +[-37.9134283, 175.4674369333, "14"], +[-37.9155934667, 175.4735220833, "67"], +[-37.9151737667, 175.4721487333, "57"], +[-37.9155787333, 175.4746912167, "76"], +[-37.9143332167, 175.4693118167, "29"], +[-37.9151155, 175.4718793167, "55"], +[-37.9134783167, 175.4676862167, "16"], +[-37.91350365, 175.4678403, "18"], +[-37.9135371667, 175.4680652, "20"], +[-37.9135827167, 175.4682467, "22"], +[-37.9136676, 175.4684140667, "24"], +[-37.91375, 175.4685284833, "26"], +[-37.9144983333, 175.4699386333, "39"], +[-37.9145579833, 175.4701247833, "41"], +[-37.9146344333, 175.4703215833, "43"], +[-37.9140692167, 175.4706085833, "46"], +[-37.91469445, 175.47051275, "47"], +[-37.9143359333, 175.4705744833, "48"], +[-37.9147432833, 175.47069995, "49"], +[-37.9146982, 175.4717894167, "54"], +[-37.9147643333, 175.47204645, "56"], +[-37.91485235, 175.4723157167, "58"], +[-37.9149395167, 175.4725939833, "60"], +[-37.9144000333, 175.4707812, "50"], +[-37.9148043167, 175.4709096, "51"], +[-37.9157513167, 175.4752532333, "82"], +[-37.9158039333, 175.47545195, "84"], +[-37.9156901667, 175.4750640167, "80"], +[-37.9158563833, 175.4756482667, "86"], +[-37.91508355, 175.4731087, "64"], +[-37.9154807667, 175.4730812167, "63"], +[-37.9154616667, 175.4742882833, "72"], +[-37.91552175, 175.47449895, "74"], +[-37.9790357333, 175.4624267667, "19"], +[-37.9791358667, 175.4611471, "6"], +[-37.9797030333, 175.4636025333, "30"], +[-37.9790060167, 175.4621910833, "17"], +[-37.9786417667, 175.4608476833, "5"], +[-37.9804888333, 175.4691719, "83"], +[-37.9793757333, 175.4644864667, "37"], +[-37.9794654667, 175.4649678833, "39"], +[-37.9815936, 175.4721696167, "104"], +[-37.9806346333, 175.46753305, "62"], +[-37.9801957667, 175.4694512667, "1/83"], +[-37.9813943, 175.4789249667, "2/172"], +[-37.9811831333, 175.4791219167, "1/172"], +[-37.9815603333, 175.4787492833, "3/172"], +[-37.9817079333, 175.4785843667, "4/172"], +[-37.98098455, 175.4692836, "84"], +[-37.9797661167, 175.4828635833, "209"], +[-37.9819302167, 175.4751814833, "130"], +[-37.9810331167, 175.4792768333, "172"], +[-37.9791101833, 175.4807109667, "193"], +[-37.9211995833, 175.54297615, "118"], +[-37.9213446, 175.5421832, "105"], +[-37.9211681167, 175.54216685, "107"], +[-37.9209082667, 175.5425332333, "111"], +[-37.9208103667, 175.542655, "113"], +[-37.92117155, 175.5424739667, "109"], +[-37.9206148667, 175.5429439167, "119"], +[-37.9207782667, 175.5431801, "117"], +[-37.9210005833, 175.542809, "115"], +[-37.9223620333, 175.5419011, "44"], +[-37.9221513667, 175.5414861833, "22"], +[-37.9220122833, 175.54171955, "48"], +[-37.9214541667, 175.5419499167, "103"], +[-37.9216856333, 175.54226385, "110"], +[-37.92188255, 175.54189345, "70"], +[-37.9216037833, 175.5417236667, "79"], +[-37.9217873667, 175.5420768833, "90"], +[-37.9207292667, 175.5435594333, "127"], +[-37.9215061833, 175.5424147833, "112"], +[-37.9214096333, 175.5425683833, "114"], +[-37.9212674167, 175.5427841667, "116"], +[-37.9211160833, 175.5431952167, "120"], +[-37.9210373167, 175.5434004167, "122"], +[-37.9209575167, 175.5435602167, "124"], +[-37.9206745667, 175.5433710667, "125"], +[-37.92082745, 175.54361115, "128"], +[-37.9209216, 175.5437402667, "126"], +[-37.9205988167, 175.5431733333, "123"], +[-37.9204654167, 175.54300295, "121"], +[-37.9059849833, 175.4685779333, "10"], +[-37.9063778167, 175.4688591, "11"], +[-37.9057737333, 175.4693218333, "2"], +[-37.9064842, 175.4693450167, "7"], +[-37.9060801333, 175.46881255, "12"], +[-37.9060230333, 175.46940395, "1"], +[-37.9060816167, 175.4691977833, "3"], +[-37.90581185, 175.4691003833, "4"], +[-37.9063729333, 175.4693653667, "5"], +[-37.9058748833, 175.4689197333, "6"], +[-37.90586325, 175.46860955, "8"], +[-37.9064269833, 175.4690855667, "9"], +[-37.8955635667, 175.4714488333, "3"], +[-37.89574055, 175.4716702667, "6"], +[-37.8760291333, 175.4752209667, "4"], +[-37.8761012667, 175.4756677333, "5"], +[-37.8761172, 175.4749063833, "6A"], +[-37.8762485667, 175.4748657167, "6B"], +[-37.8765363167, 175.4750690167, "10"], +[-37.87633255, 175.4751297667, "8"], +[-37.8767972333, 175.4754502, "13"], +[-37.8767630833, 175.4749863833, "12"], +[-37.87581215, 175.4752698833, "2"], +[-37.8757609167, 175.4757446833, "1"], +[-37.8774312833, 175.4746756833, "25"], +[-37.87757445, 175.4749078, "23"], +[-37.8773315167, 175.4749104, "21"], +[-37.8772196833, 175.4750822833, "19"], +[-37.8771222167, 175.47521495, "17"], +[-37.8769752, 175.4753515167, "15"], +[-37.8766353, 175.47550835, "11"], +[-37.8764627667, 175.4755687833, "9"], +[-37.8762885333, 175.4756105, "7"], +[-37.8759247333, 175.4757173667, "3"], +[-37.8769794333, 175.4747672167, "14"], +[-37.97891525, 175.4601520333, "772"], +[-37.9464645333, 175.4822205167, "329"], +[-37.9470361333, 175.4829135, "337"], +[-37.9713491167, 175.4612835833, "684"], +[-37.9615547167, 175.4636732, "578"], +[-37.9642195, 175.4617228, "606"], +[-37.9214648167, 175.4783231833, "49"], +[-37.9212708833, 175.47781485, "1/49"], +[-37.9230265, 175.478089, "65"], +[-37.9669955167, 175.46143295, "653"], +[-37.9801441, 175.4596936833, "784"], +[-37.91909305, 175.4782088, "27"], +[-37.9278700667, 175.4760814333, "122"], +[-37.9393246667, 175.4798381833, "256"], +[-37.98099395, 175.4594168167, "788"], +[-37.9235198, 175.4765764833, "76"], +[-37.9838248833, 175.4507092333, "885"], +[-37.9840650667, 175.4492086167, "893"], +[-37.9819271833, 175.4584667833, "812"], +[-37.97680425, 175.4605180667, "746"], +[-37.9772555, 175.4612509, "751"], +[-37.9553357833, 175.4689185833, "484"], +[-37.9549016, 175.4705773167, "469"], +[-37.9549819, 175.4681984167, "492"], +[-37.95610765, 175.4687586833, "495"], +[-37.9558325167, 175.4681527833, "496"], +[-37.9563786, 175.4673479667, "506"], +[-37.9588897333, 175.4662872333, "549"], +[-37.9374805167, 175.4792935833, "232"], +[-37.9385204667, 175.4796240833, "250"], +[-37.9418827167, 175.48053625, "282"], +[-37.9422215667, 175.4814613667, "291"], +[-37.9452781, 175.4815002, "318"], +[-37.9482466667, 175.4790639833, "372"], +[-37.9497215167, 175.47691875, "396"], +[-37.9341688833, 175.4782591167, "196"], +[-37.9265146833, 175.4765383667, "109"], +[-37.93050445, 175.4778804333, "151"], +[-37.9283181, 175.4771124167, "129"], +[-37.9251162, 175.4762160667, "98"], +[-37.92343355, 175.4771558167, "73"], +[-37.9239441667, 175.4794231667, "75"], +[-37.9241087667, 175.4769972833, "83"], +[-37.9222823667, 175.4774759333, "61"], +[-37.9199369167, 175.4774060333, "34"], +[-37.9203899333, 175.475518, "36"], +[-37.9203777167, 175.4773256, "40"], +[-37.9206612167, 175.4765307833, "42"], +[-37.9210448, 175.4771433833, "44"], +[-37.9220389167, 175.47755095, "57"], +[-37.91929535, 175.4775611167, "26"], +[-37.9216718667, 175.4775874667, "55"], +[-37.98317275, 175.4515617, "874"], +[-37.9834542667, 175.449681, "890"], +[-37.94112955, 175.48040145, "278"], +[-37.9511382833, 175.4768400333, "401"], +[-37.9529536833, 175.4734404167, "447"], +[-37.9818127667, 175.4589793667, "794"], +[-37.9216345833, 175.4771334167, "50"], +[-37.9817718333, 175.4597500333, "789"], +[-37.8840469167, 175.4595505333, "3A"], +[-37.8836735833, 175.4604158333, "4B"], +[-37.88403835, 175.4600429333, "5"], +[-37.8834882, 175.4601379, "1A"], +[-37.88367125, 175.4597893667, "1"], +[-37.8835863, 175.4604458167, "2A"], +[-37.8835968, 175.4601401333, "2"], +[-37.88386135, 175.4597867, "3"], +[-37.88376075, 175.4601527667, "4"], +[-37.8838918833, 175.4601641667, "6"], +[-37.8842726667, 175.4597851667, "5A"], +[-37.8840725833, 175.4598049333, "3B"], +[-37.8976647333, 175.4710761333, "3"], +[-37.8975512333, 175.4708644667, "7"], +[-37.8973241167, 175.4703941833, "15"], +[-37.8972415667, 175.4702575667, "17"], +[-37.8973903333, 175.4705850167, "13"], +[-37.8974731667, 175.4707213, "9"], +[-37.8976014, 175.4709784167, "5"], +[-37.8973658833, 175.4713826333, "1"], +[-37.88263055, 175.4789374667, "2"], +[-37.88295785, 175.4787557167, "3"], +[-37.88262705, 175.4787408333, "4"], +[-37.8828655833, 175.47856665, "5"], +[-37.8826968, 175.4785708667, "6"], +[-37.8829381167, 175.4790952, "1"], +[-37.8829405833, 175.4789477, "1A"], +[-37.9471062833, 175.4443811, "285"], +[-37.9482693333, 175.4618783667, "129"], +[-37.9477489, 175.4616306833, "134"], +[-37.94778825, 175.4623992333, "120"], +[-37.9476318333, 175.4527723667, "205"], +[-37.9487271, 175.47377555, "22"], +[-37.9483278667, 175.4699560333, "64"], +[-37.9505486833, 175.475507, "3"], +[-37.9471956833, 175.45408385, "192"], +[-37.9474878167, 175.4494432167, "241"], +[-37.9465419167, 175.4494655333, "240"], +[-37.8980432167, 175.4818800667, "20"], +[-37.8980799167, 175.4813788167, "11"], +[-37.8979071, 175.4814689833, "11A"], +[-37.8976527, 175.4820540667, "10"], +[-37.8978225833, 175.48198855, "12"], +[-37.8980157833, 175.4823010833, "14"], +[-37.8981133, 175.4825153333, "18"], +[-37.8972657167, 175.48179755, "1"], +[-37.8982001167, 175.4818174667, "22"], +[-37.89831945, 175.48166055, "26"], +[-37.8974300667, 175.4821601, "2"], +[-37.8976037833, 175.4823142833, "6"], +[-37.8975959167, 175.4816213167, "7"], +[-37.8977532667, 175.48153515, "9"], +[-37.8985379, 175.4825481, "24"], +[-37.8966536667, 175.4826586833, "25A"], +[-37.8984072, 175.48528765, "54A"], +[-37.8960960167, 175.4812310167, "5"], +[-37.8976620167, 175.4837889667, "38"], +[-37.8957596833, 175.4808671833, "1"], +[-37.896049, 175.4808353333, "1A"], +[-37.89630705, 175.4808317833, "3"], +[-37.8980094, 175.4834140167, "34"], +[-37.89804835, 175.4835438167, "36"], +[-37.8978337, 175.483244, "30"], +[-37.8977234667, 175.4828271167, "26"], +[-37.8974671333, 175.4832206833, "28"], +[-37.89729555, 175.4826933167, "22"], +[-37.8982734, 175.4859548167, "60"], +[-37.8993387167, 175.4873577333, "76"], +[-37.8971479167, 175.4808783833, "10"], +[-37.8959557167, 175.48164725, "11"], +[-37.8973392833, 175.4807942, "12"], +[-37.8973916333, 175.4808756, "14"], +[-37.8966921833, 175.4822478333, "21"], +[-37.89642605, 175.4824713833, "23"], +[-37.8967609167, 175.4825135833, "25"], +[-37.8971820833, 175.4809704667, "16"], +[-37.89693775, 175.4814169833, "18A"], +[-37.8968612333, 175.4812093333, "18"], +[-37.8968348, 175.4827666333, "27"], +[-37.8969158833, 175.4829914167, "29"], +[-37.8969838333, 175.4832029333, "31"], +[-37.89760075, 175.4835397, "32"], +[-37.8970568167, 175.48351615, "33"], +[-37.8967365, 175.4807273, "2"], +[-37.8979339167, 175.4848533, "44"], +[-37.8967854, 175.4809565833, "4"], +[-37.8958402333, 175.481278, "7"], +[-37.8964383667, 175.4812642667, "9"], +[-37.8980381167, 175.4851460667, "48"], +[-37.8985301167, 175.4851492, "52"], +[-37.8981529, 175.4855380167, "54"], +[-37.8986448333, 175.4855899833, "56"], +[-37.8985807833, 175.4870328333, "66"], +[-37.8986987667, 175.4873079333, "68"], +[-37.8987788167, 175.4875430667, "74"], +[-37.89890085, 175.4879704667, "80"], +[-37.8966231333, 175.4820502667, "17A"], +[-37.8964502667, 175.4821239667, "17B"], +[-37.896275, 175.48221365, "17"], +[-37.8964864333, 175.4816180167, "15"], +[-37.89829765, 175.4849233667, "48A"], +[-37.8983503, 175.4862882, "62"], +[-37.8963564333, 175.4817611, "15A"], +[-37.8961816167, 175.4819250833, "15B"], +[-37.8838324667, 175.4758307667, "1"], +[-37.8836433833, 175.4758399333, "2"], +[-37.8833977167, 175.47575535, "3"], +[-37.8833314667, 175.4755896167, "4"], +[-37.8834651, 175.4752073, "5A"], +[-37.8833988833, 175.4754131, "5"], +[-37.8836138833, 175.4754014333, "6"], +[-37.88376315, 175.4754688833, "7"], +[-37.8453489, 175.4520246, "12"], +[-37.8453374333, 175.44998695, "30"], +[-37.8456579, 175.4496963667, "33"], +[-37.84527125, 175.4440318, "40"], +[-37.8447595167, 175.4494073667, "38"], +[-37.8453093333, 175.4489722667, "40"], +[-37.8453195333, 175.4515149667, "16"], +[-37.8833522167, 175.4662158833, "2/13"], +[-37.8838213, 175.46524815, "10A"], +[-37.88380855, 175.46613485, "7A"], +[-37.8832769, 175.4662041167, "1/13"], +[-37.88379275, 175.4654513833, "10"], +[-37.88377815, 175.4658082667, "11"], +[-37.88342395, 175.4662276833, "3/13"], +[-37.883518, 175.4662264667, "4/13"], +[-37.8836896667, 175.4656703833, "14"], +[-37.8834471333, 175.4658730667, "15"], +[-37.88344295, 175.46574735, "16"], +[-37.8843819333, 175.4658316167, "1"], +[-37.8844031667, 175.4655400167, "2"], +[-37.8841441667, 175.4660546, "3A"], +[-37.8841592333, 175.46611295, "3B"], +[-37.8842008167, 175.4658206, "3"], +[-37.8841960167, 175.4655438833, "4"], +[-37.8840714, 175.4658066333, "5"], +[-37.8840438, 175.4655440333, "6"], +[-37.8839425167, 175.46582275, "7"], +[-37.8839567167, 175.4654131167, "8"], +[-37.8837516, 175.4660999833, "9"], +[-37.883711, 175.4655393167, "12"], +[-37.9413734667, 175.4995142833, "306"], +[-37.9264553167, 175.4927426, "101"], +[-37.9263942667, 175.495421, "93"], +[-37.9367796667, 175.49396525, "218"], +[-37.9306420333, 175.4927391167, "147"], +[-37.9314740333, 175.4922045333, "156"], +[-37.9346698333, 175.4939321167, "195"], +[-37.9210469167, 175.49473535, "45"], +[-37.9244517667, 175.4930819833, "76"], +[-37.92482195, 175.4937379833, "85"], +[-37.9278428667, 175.49133405, "116"], +[-37.928097, 175.4920060333, "117"], +[-37.9259406, 175.4921851333, "98"], +[-37.9432639333, 175.5024320833, "321"], +[-37.9478774167, 175.50590725, "360"], +[-37.9006717, 175.3709368333, "24"], +[-37.90793765, 175.3650150333, "121"], +[-37.9056018833, 175.3671315333, "89"], +[-37.9073516833, 175.3655189333, "119"], +[-37.8986494833, 175.4611173667, "1"], +[-37.8984617833, 175.4610480667, "3"], +[-37.8983073667, 175.4609003333, "5"], +[-37.8985554833, 175.4614893833, "2"], +[-37.8983680333, 175.4614087, "4"], +[-37.8981331333, 175.4608315333, "7"], +[-37.8982140167, 175.4613434833, "6"], +[-37.8979873167, 175.4611021667, "10"], +[-37.8980203833, 175.4609355833, "9"], +[-37.89806, 175.4612782333, "8"], +[-37.9028616833, 175.4335225667, "29"], +[-37.9031164833, 175.4331062, "27"], +[-37.9017570667, 175.4336130833, "43"], +[-37.9018962667, 175.4342030167, "42"], +[-37.9035645333, 175.4334544, "21"], +[-37.8997075167, 175.4313605167, "63"], +[-37.9028940667, 175.4339966333, "28"], +[-37.90126025, 175.43430315, "54"], +[-37.9009420667, 175.4335351333, "57"], +[-37.8997543667, 175.4328163667, "67"], +[-37.9042664833, 175.4334384833, "9"], +[-37.9004958, 175.4365008, "56"], +[-37.8999357667, 175.4364970167, "58"], +[-37.9193787167, 175.4035627667, "29"], +[-37.9187184, 175.40134295, "50"], +[-37.91970595, 175.4043742667, "21"], +[-37.93012645, 175.3979479333, "179"], +[-37.9287776167, 175.3984838, "167"], +[-37.9244404833, 175.40003235, "125"], +[-37.9182969, 175.4015440667, "46"], +[-37.9198358, 175.4009195, "62"], +[-37.9214928833, 175.4003147333, "82"], +[-37.9276005833, 175.3979560333, "156"], +[-37.9090980833, 175.47152255, "112B"], +[-37.9100087667, 175.47027605, "121A"], +[-37.90817245, 175.47139345, "103"], +[-37.90884805, 175.4719748, "108A"], +[-37.9089414167, 175.4722395833, "108B"], +[-37.9084711833, 175.47177935, "104"], +[-37.90863345, 175.47171425, "106"], +[-37.9083213167, 175.47131235, "105"], +[-37.9090004, 175.472447, "108C"], +[-37.9028464833, 175.4753390167, "26B"], +[-37.9078277833, 175.4723944833, "4/96"], +[-37.90357775, 175.4740898333, "36"], +[-37.90385065, 175.473554, "35A"], +[-37.9035803667, 175.47369605, "35"], +[-37.90815455, 175.4719365833, "100"], +[-37.91190955, 175.4702316833, "138"], +[-37.90756, 175.4722275333, "7/96"], +[-37.9089549167, 175.47103335, "111"], +[-37.9044076167, 175.4737216, "42"], +[-37.9011103, 175.4747561, "13"], +[-37.9113504333, 175.46916605, "135B"], +[-37.90916025, 175.4717170833, "112A"], +[-37.9104814167, 175.4713397667, "124B"], +[-37.9113419667, 175.4696552833, "133A"], +[-37.9116247167, 175.4707302833, "134A"], +[-37.9118128833, 175.4706304, "134B"], +[-37.9117777333, 175.46919275, "139A"], +[-37.91172915, 175.4689741333, "139B"], +[-37.9091821167, 175.47238525, "110C"], +[-37.9112748167, 175.46989875, "131A"], +[-37.9112112333, 175.46968315, "131B"], +[-37.9018407333, 175.474509, "17"], +[-37.9021059167, 175.4747859167, "18"], +[-37.9022214333, 175.4747533667, "20"], +[-37.9021081667, 175.4743658667, "21"], +[-37.9024045833, 175.4746604333, "22"], +[-37.90227905, 175.4742904, "23"], +[-37.9025434333, 175.4745909167, "24"], +[-37.9033884667, 175.4737883, "33"], +[-37.9029568833, 175.4739659833, "31"], +[-37.90244755, 175.4742011333, "25"], +[-37.9026128, 175.4741282667, "27"], +[-37.9027832333, 175.4740469833, "29"], +[-37.9027372833, 175.4744949833, "30"], +[-37.9028963667, 175.4744151167, "32"], +[-37.9039784167, 175.4735005167, "39"], +[-37.9041466, 175.47341055, "41"], +[-37.9043180167, 175.4733317667, "43"], +[-37.9044306, 175.4732717, "45"], +[-37.9002813333, 175.4746537333, "3A"], +[-37.9003363333, 175.4746345833, "3B"], +[-37.9003208833, 175.4742427, "3C"], +[-37.9004106, 175.47457215, "3D"], +[-37.9008182333, 175.4749564333, "7"], +[-37.9008622667, 175.4745689333, "9A"], +[-37.9087553333, 175.47168745, "108"], +[-37.9087847167, 175.47111335, "109"], +[-37.9090482, 175.4718688667, "110A"], +[-37.9089821833, 175.47162705, "110"], +[-37.9097564, 175.47064845, "117"], +[-37.90991065, 175.4711398333, "118"], +[-37.9098192, 175.4703204, "119A"], +[-37.9100781833, 175.4710667, "120"], +[-37.9102616, 175.4713288833, "120A"], +[-37.91019675, 175.4704249667, "121"], +[-37.9102786333, 175.47095955, "122"], +[-37.91061325, 175.47114525, "124A"], +[-37.9104595333, 175.4709259167, "124"], +[-37.9103273167, 175.4703685833, "125"], +[-37.9009658333, 175.47489005, "9"], +[-37.9106314167, 175.47081795, "126"], +[-37.9105098833, 175.4702934833, "127"], +[-37.9115283, 175.47038715, "132"], +[-37.9114078, 175.4698388833, "133"], +[-37.9117353833, 175.4702887167, "136"], +[-37.91165515, 175.4697282333, "137"], +[-37.91209905, 175.4701214833, "140"], +[-37.91192095, 175.46961505, "141"], +[-37.91209585, 175.4695346667, "143"], +[-37.91223925, 175.4694837833, "145"], +[-37.9129544, 175.46972655, "148"], +[-37.9127850833, 175.46918905, "149"], +[-37.9131046167, 175.4696231333, "150"], +[-37.9129241667, 175.4691591333, "151"], +[-37.9133420333, 175.4695050167, "152"], +[-37.9134355667, 175.4694691333, "154"], +[-37.9136254167, 175.4688124833, "155"], +[-37.9135736667, 175.4693978333, "156"], +[-37.9137485167, 175.4693549667, "158"], +[-37.9144754, 175.46902505, "164"], +[-37.9147488833, 175.4695174667, "166"], +[-37.9147467167, 175.4689613833, "168"], +[-37.9053532, 175.4735344167, "44A"], +[-37.9052717667, 175.4733045167, "44"], +[-37.90506265, 175.4729767833, "49"], +[-37.9052035667, 175.4729156167, "51"], +[-37.9053496, 175.4728617833, "53"], +[-37.9054862667, 175.47279975, "55"], +[-37.9071557, 175.47249445, "88"], +[-37.9011584833, 175.47587265, "10"], +[-37.9012260167, 175.4757750333, "12"], +[-37.9011779333, 175.47526505, "14"], +[-37.9024628, 175.4750374833, "22A"], +[-37.9024647, 175.4751844167, "22B"], +[-37.9004774333, 175.4751149333, "1"], +[-37.9028335, 175.4750389333, "28"], +[-37.9004664333, 175.4755579667, "2"], +[-37.9005692, 175.4755242167, "4"], +[-37.9006539333, 175.4750368333, "5"], +[-37.9010841833, 175.4755968, "8A"], +[-37.9008984167, 175.4753584833, "8"], +[-37.9091240667, 175.4721442833, "110B"], +[-37.9097632833, 175.47034635, "117A"], +[-37.9082253333, 175.4719109833, "102"], +[-37.9114097833, 175.4693441333, "135A"], +[-37.9112057333, 175.4692141667, "135C"], +[-37.91167365, 175.4687884833, "139D"], +[-37.9112668833, 175.4694056333, "135"], +[-37.9111444667, 175.4690280333, "135D"], +[-37.9115951667, 175.4692708167, "139"], +[-37.9115359, 175.4690900833, "139C"], +[-37.9106014, 175.4702607333, "129"], +[-37.9076115833, 175.4723767833, "98"], +[-37.9075872333, 175.4722996, "8/96"], +[-37.9076397833, 175.4724662167, "10/96"], +[-37.9076588167, 175.4725362667, "11/96"], +[-37.9076818333, 175.47261165, "12/96"], +[-37.90787275, 175.4725516833, "6/96"], +[-37.9078548167, 175.4724749, "5/96"], +[-37.9078033833, 175.47231415, "3/96"], +[-37.9077763833, 175.4722320833, "2/96"], +[-37.9077493833, 175.4721500167, "1/96"], +[-37.9027466667, 175.4750991167, "26A"], +[-37.9013304167, 175.4746607667, "13A"], +[-37.9012675, 175.4744082333, "13B"], +[-37.9010857333, 175.4744788167, "13C"], +[-37.91033795, 175.47011845, "125A"], +[-37.90225545, 175.4739976167, "23A"], +[-37.9099696333, 175.4705395667, "119"], +[-37.9152684167, 175.4687266333, "176"], +[-37.8767274167, 175.4498122333, "31"], +[-37.8753801, 175.4141292833, "347"], +[-37.8749301667, 175.4229940833, "269"], +[-37.8780543667, 175.4318462667, "2/193"], +[-37.87844965, 175.4315496667, "4/193"], +[-37.877916, 175.4313673167, "3/193"], +[-37.8772684667, 175.4313525833, "1/193"], +[-37.8745261, 175.41460525, "336"], +[-37.8730149167, 175.4139278833, "348"], +[-37.8749023333, 175.4133807833, "357"], +[-37.8748893, 175.4158492, "331"], +[-37.87500415, 175.4305876333, "199"], +[-37.8762052667, 175.4298853667, "209"], +[-37.876837, 175.4272319333, "231"], +[-37.8750526167, 175.4337470333, "173"], +[-37.8750786167, 175.4326617667, "185"], +[-37.8765961833, 175.4422767333, "1/101"], +[-37.8765928833, 175.44146825, "2/101"], +[-37.8766094667, 175.4450663167, "1/75"], +[-37.8751227667, 175.4479436, "47"], +[-37.8785082667, 175.4463698333, "59"], +[-37.8749291833, 175.42188625, "275"], +[-37.8750447, 175.4367026, "145"], +[-37.8746106333, 175.4284329, "218"], +[-37.8745961333, 175.4294403, "210"], +[-37.8729241167, 175.4301093, "204"], +[-37.8730751833, 175.4315361667, "192"], +[-37.8764695333, 175.4360706167, "2/151"], +[-37.8750668667, 175.4352073833, "161"], +[-37.8745754667, 175.4496806333, "32"], +[-37.87504855, 175.4370912, "141"], +[-37.8745623, 175.4221763333, "276"], +[-37.8745616667, 175.4217338333, "278"], +[-37.8749560667, 175.4206555833, "291"], +[-37.87457185, 175.42039215, "292"], +[-37.8749318, 175.4195155667, "297"], +[-37.8749193167, 175.4189609333, "301"], +[-37.8745523667, 175.4178998833, "314"], +[-37.87555895, 175.4169412167, "317"], +[-37.8727607, 175.4172541833, "320"], +[-37.87489075, 175.41689625, "325"], +[-37.8762137833, 175.4211919167, "283"], +[-37.8773094667, 175.4190741833, "295"], +[-37.8766782167, 175.4177899333, "307"], +[-37.87495795, 175.4292900167, "211"], +[-37.87496815, 175.4277122333, "229"], +[-37.87496315, 175.4270601833, "235"], +[-37.87495715, 175.4262284667, "243"], +[-37.87466625, 175.4340618833, "166"], +[-37.8731281333, 175.43353715, "176"], +[-37.8746368667, 175.43285965, "180"], +[-37.8746353667, 175.4320823333, "188"], +[-37.8746651833, 175.43837135, "134"], +[-37.8746581, 175.4361343333, "152"], +[-37.8766056667, 175.4444213667, "2/75"], +[-37.8750381333, 175.4425046833, "95"], +[-37.8758251333, 175.4478232833, "49"], +[-37.87515175, 175.4469793167, "51"], +[-37.8771227333, 175.4464864167, "57"], +[-37.8750768, 175.445912, "61"], +[-37.8750693833, 175.4452335333, "71"], +[-37.8765724333, 175.4321372667, "191"], +[-37.876819, 175.4318101833, "1/191"], +[-37.8750694, 175.4518701667, "15"], +[-37.8750833, 175.4512497167, "21"], +[-37.87511365, 175.4491755667, "37"], +[-37.8744741833, 175.4113393, "372"], +[-37.87448925, 175.4111035167, "374"], +[-37.8749085333, 175.4183780667, "309"], +[-37.8748987, 175.4119560833, "371"], +[-37.8754877, 175.4485419667, "43"], +[-37.87489105, 175.4142969333, "1/347"], +[-37.87509285, 175.4505922, "23"], +[-37.8746456667, 175.4350032667, "162"], +[-37.8817882333, 175.46555605, "1"], +[-37.8817762333, 175.4657047, "2"], +[-37.88177495, 175.4658300167, "3"], +[-37.8818317167, 175.4659088333, "4"], +[-37.8818769833, 175.4658514167, "5"], +[-37.881892, 175.4657157833, "6"], +[-37.8819030667, 175.4655528667, "7"], +[-37.8249572667, 175.3822644167, "62C"], +[-37.8241013167, 175.3830562833, "62B"], +[-37.8235533667, 175.3836837833, "62A"], +[-37.8232282333, 175.38113915, "42"], +[-37.8216185167, 175.3801976167, "24"], +[-37.8233693667, 175.3818881167, "50"], +[-37.8238237167, 175.38163785, "48"], +[-37.8223544167, 175.3807860167, "34"], +[-37.8221907167, 175.38064385, "32"], +[-37.7917540833, 175.4757575167, "369"], +[-37.7917070167, 175.4768378667, "371"], +[-37.7976220833, 175.4791485667, "310"], +[-37.8026816667, 175.4738649167, "241"], +[-37.8063079833, 175.4719216833, "198"], +[-37.8127222, 175.46321975, "88"], +[-37.79851905, 175.4782582, "298"], +[-37.7982161667, 175.4784413833, "300"], +[-37.7979628667, 175.4785954333, "304"], +[-37.7989472167, 175.4770213333, "289"], +[-37.8124759, 175.46149895, "66"], +[-37.80813105, 175.4692921667, "133"], +[-37.80903515, 175.4695616333, "164"], +[-37.81169535, 175.4617913167, "77"], +[-37.7931904667, 175.4771456167, "359"], +[-37.90154435, 175.4820577833, "17A"], +[-37.9023211333, 175.4866221333, "50"], +[-37.9029791167, 175.4860176833, "43"], +[-37.9018640167, 175.4839159667, "29"], +[-37.9017065667, 175.4845584, "32"], +[-37.9013472667, 175.4832850333, "20"], +[-37.9022597667, 175.4852180667, "37"], +[-37.90235635, 175.4855437333, "39"], +[-37.9020226167, 175.48626825, "48A"], +[-37.90219835, 175.4862075833, "48"], +[-37.9028144833, 175.4859300667, "41A"], +[-37.9019145833, 175.4857036333, "38"], +[-37.9012494167, 175.4836438333, "22A"], +[-37.90117625, 175.4832889167, "20A"], +[-37.9013004333, 175.4831083, "18A"], +[-37.9018345667, 175.48310725, "23A"], +[-37.9014717833, 175.4845211, "30A"], +[-37.9011141833, 175.4813179833, "11"], +[-37.9012595833, 175.4829706167, "18"], +[-37.9012063333, 175.4815285167, "13"], +[-37.90106015, 175.48224675, "14"], +[-37.9014018333, 175.4835019, "22"], +[-37.90164195, 175.4831019333, "23"], +[-37.9014562667, 175.4837066, "24"], +[-37.9017002833, 175.48331585, "25"], +[-37.9013501333, 175.4820586167, "17"], +[-37.9017979167, 175.48370115, "27A"], +[-37.9017437333, 175.4834995, "27"], +[-37.9015959833, 175.4841416, "28"], +[-37.9016565333, 175.4843582167, "30"], +[-37.9019526833, 175.4841925, "31"], +[-37.90202855, 175.4844477667, "33"], +[-37.9008982667, 175.4817133, "8"], +[-37.9024487833, 175.4858792167, "41"], +[-37.9020930667, 175.4858615167, "42"], +[-37.9025991167, 175.4863993167, "49"], +[-37.9021011667, 175.4846921667, "35"], +[-37.9014189333, 175.4823503167, "19"], +[-37.90126485, 175.4817892167, "15"], +[-37.9015360333, 175.4839226833, "26"], +[-37.83531625, 175.4933037333, "196"], +[-37.8352276167, 175.4927147833, "195"], +[-37.8360773, 175.4912368, "187"], +[-37.8346867167, 175.49328105, "201"], +[-37.82529725, 175.5052682333, "361"], +[-37.8370500167, 175.4896684, "163"], +[-37.8396963333, 175.4849568, "1/133"], +[-37.8292152667, 175.4972928333, "281"], +[-37.8293017833, 175.4982716333, "300"], +[-37.8282765333, 175.4989055, "307"], +[-37.8274501333, 175.5007519833, "333"], +[-37.8273441167, 175.5024751333, "2/336"], +[-37.8261453167, 175.5047067667, "360"], +[-37.8301054, 175.4958695333, "275"], +[-37.8271283667, 175.5028555, "1/336"], +[-37.8369560667, 175.4905711833, "172"], +[-37.81904615, 175.5025335167, "7/369"], +[-37.8218408167, 175.50377335, "4/369"], +[-37.8209456333, 175.5022760833, "6/369"], +[-37.8208349667, 175.5044007, "5/369"], +[-37.8238658, 175.50523275, "2/369"], +[-37.8190694, 175.5003232333, "8/369"], +[-37.8120237667, 175.5010552833, "10/369"], +[-37.8118820833, 175.50392555, "11/369"], +[-37.8356394, 175.4927849, "192"], +[-37.8452920167, 175.4770441167, "6"], +[-37.8332265167, 175.4939223333, "232"], +[-37.8297708, 175.4960635, "253"], +[-37.8393579167, 175.4857046667, "2/133"], +[-37.83878395, 175.48766725, "142"], +[-37.8379286333, 175.4890502, "152"], +[-37.8364941, 175.4914751, "186"], +[-37.8248432833, 175.5066992833, "369"], +[-37.82553745, 175.5068898833, "380"], +[-37.83202985, 175.4941239333, "240"], +[-37.82194035, 175.5057576833, "3/369"], +[-37.8227608167, 175.5063209333, "1/369"], +[-37.8141088167, 175.5037792333, "9/369"], +[-37.8382942833, 175.48852635, "148"], +[-37.8603913833, 175.4492696, "57"], +[-37.8592938167, 175.42099095, "308C"], +[-37.85984295, 175.42067725, "308B"], +[-37.8598229167, 175.4210151667, "308A"], +[-37.8598344333, 175.3976947833, "508"], +[-37.8603243333, 175.4140272833, "369"], +[-37.8603184, 175.4123881167, "385"], +[-37.86106375, 175.4477743833, "67"], +[-37.861365, 175.4476857667, "73"], +[-37.8613431833, 175.4479565167, "69"], +[-37.86191185, 175.44788405, "71"], +[-37.8603987333, 175.4502737667, "53"], +[-37.86045645, 175.4319935167, "209"], +[-37.8603551333, 175.4258720333, "263"], +[-37.8599289833, 175.4315900833, "210"], +[-37.8604198833, 175.4334522667, "195"], +[-37.8627496167, 175.42078385, "309B"], +[-37.8609723167, 175.4515878667, "37"], +[-37.8603717833, 175.4514413333, "39"], +[-37.8609809, 175.4517044667, "35"], +[-37.86096795, 175.45250335, "27"], +[-37.8604741333, 175.4530975833, "17"], +[-37.8603852667, 175.451807, "33"], +[-37.8572038, 175.42770555, "246"], +[-37.8604631667, 175.4363373667, "171"], +[-37.8591713833, 175.4484903833, "62"], +[-37.8604119667, 175.4340429333, "191"], +[-37.8603663667, 175.4354625167, "179"], +[-37.8603935, 175.4373993667, "161"], +[-37.8600009, 175.44318935, "108"], +[-37.8599224167, 175.4265426167, "256"], +[-37.8612047333, 175.4464131333, "81B"], +[-37.8599028667, 175.4231039167, "288"], +[-37.8602706, 175.4220058333, "295"], +[-37.8602638667, 175.4191497333, "323"], +[-37.8609657667, 175.4187969, "327"], +[-37.8602931, 175.4179491333, "329"], +[-37.8598848667, 175.4176532167, "338"], +[-37.8632475167, 175.4173751333, "339"], +[-37.8599251667, 175.4255647333, "1/264"], +[-37.8599279667, 175.4253799333, "2/264"], +[-37.86045495, 175.4383567333, "157"], +[-37.8604267333, 175.4421660333, "113"], +[-37.8617114333, 175.4414719167, "125"], +[-37.8603943167, 175.43982245, "143"], +[-37.8604978, 175.4449393667, "89"], +[-37.8603957167, 175.4488193667, "59"], +[-37.8599959167, 175.4481568167, "64"], +[-37.8603463333, 175.4481201667, "65"], +[-37.8603207833, 175.44708855, "75"], +[-37.8617075, 175.4464497667, "85"], +[-37.8603354667, 175.4458761167, "87"], +[-37.8603924833, 175.4529279333, "21"], +[-37.8603805, 175.4522459167, "31"], +[-37.8603894333, 175.4465241, "81"], +[-37.8624513667, 175.4464558667, "2/85"], +[-37.8603426, 175.42038605, "309A"], +[-37.8597382167, 175.4030150833, "468"], +[-37.8600008333, 175.4468853333, "78"], +[-37.8600151833, 175.4476529333, "70"], +[-37.8619444167, 175.4473194667, "77"], +[-37.8604090333, 175.4206673167, "309"], +[-37.8599482667, 175.4450833833, "90"], +[-37.8599667333, 175.4439503167, "102"], +[-37.8599639167, 175.4443829333, "98"], +[-37.8604016667, 175.4435244167, "107"], +[-37.8602872667, 175.4157777167, "357C"], +[-37.8619551667, 175.4154903667, "357B"], +[-37.8602759333, 175.41535695, "357"], +[-37.8599460833, 175.4464074167, "82"], +[-37.8585100167, 175.4461918667, "84"], +[-37.8604238667, 175.4437588667, "105"], +[-37.86030515, 175.4229068167, "289"], +[-37.9165466667, 175.5400699667, "47"], +[-37.9163835, 175.5395208667, "52"], +[-37.9162024833, 175.5415235333, "4/35"], +[-37.9138618, 175.5389959167, "20"], +[-37.9147363, 175.5367299167, "4"], +[-37.9171924833, 175.5398619667, "53"], +[-37.9156216333, 175.5400467167, "1/35"], +[-37.9156090167, 175.5406467667, "2/35"], +[-37.9155483, 175.54130355, "3/35"], +[-37.9161911333, 175.5412111333, "5/35"], +[-37.9177019333, 175.5406090667, "57"], +[-37.9172073167, 175.5390771667, "56"], +[-37.8413934333, 175.3669168333, "185"], +[-37.8417850333, 175.3689200833, "199"], +[-37.8428339667, 175.3706989, "216"], +[-37.8416074, 175.36479145, "164"], +[-37.8409904167, 175.3645986833, "157"], +[-37.84092815, 175.3644066167, "161"], +[-37.8749487833, 175.4757354167, "4"], +[-37.8748824667, 175.4752927333, "3"], +[-37.8746354, 175.475246, "5"], +[-37.8742075167, 175.4755986333, "10"], +[-37.8743622667, 175.4759894667, "8A"], +[-37.8744567667, 175.4756695333, "8"], +[-37.8748683833, 175.4760352167, "4A"], +[-37.8742254333, 175.47601205, "10A"], +[-37.8747158167, 175.4760297167, "6A"], +[-37.8746737833, 175.4757186333, "6"], +[-37.9465236167, 175.3809737667, "672"], +[-37.9005455, 175.4730509333, "22"], +[-37.9003672167, 175.4684980833, "17"], +[-37.9003614667, 175.4682696667, "13"], +[-37.9009926333, 175.4714326, "18B"], +[-37.9004931, 175.4733237333, "24"], +[-37.90023555, 175.4663222333, "3"], +[-37.9003731333, 175.4738848333, "30"], +[-37.90041915, 175.4736641333, "28A"], +[-37.9008516833, 175.47143275, "18A"], +[-37.9009989333, 175.4716885333, "18C"], +[-37.9011166833, 175.4715942833, "18D"], +[-37.9013468667, 175.4716314833, "18E"], +[-37.9013142333, 175.4713999333, "18F"], +[-37.9007320667, 175.4678888833, "12"], +[-37.9007490333, 175.4682728833, "14"], +[-37.9002906, 175.4672436333, "11"], +[-37.9005921667, 175.4728228833, "20"], +[-37.9012265333, 175.4713549, "18G"], +[-37.8998487333, 175.4663062167, "1"], +[-37.9004667833, 175.4734721, "26"], +[-37.9007287833, 175.4668388, "4"], +[-37.9002529667, 175.4665572, "5"], +[-37.9002680333, 175.4668009667, "7"], +[-37.9002738833, 175.4670198667, "9"], +[-37.90052665, 175.4737441167, "28B"], +[-37.9202440833, 175.4647199333, "59"], +[-37.9186491, 175.4631960333, "74"], +[-37.9197376, 175.46404755, "63"], +[-37.9209585333, 175.4715133667, "31"], +[-37.92198325, 175.4719067667, "32"], +[-37.9200168333, 175.4637374167, "64"], +[-37.9199907667, 175.4714465333, "9"], +[-37.91941015, 175.4649217833, "65"], +[-37.9196411667, 175.4633694333, "66"], +[-37.91916365, 175.4639929833, "67A"], +[-37.9194144667, 175.4637018833, "67"], +[-37.9193556833, 175.4631293833, "70"], +[-37.9191286667, 175.4630976, "72"], +[-37.9189485833, 175.4635427667, "69"], +[-37.9201641167, 175.4662894167, "55"], +[-37.9211940333, 175.4656174833, "56A"], +[-37.920671, 175.4657966667, "56"], +[-37.92006415, 175.4658042, "57A"], +[-37.9213706, 175.4727426833, "23"], +[-37.9214441667, 175.4732278667, "24"], +[-37.9202821667, 175.4732763833, "18"], +[-37.9204884667, 175.4729263, "19"], +[-37.9211967, 175.47098555, "33"], +[-37.92094835, 175.4706909167, "35"], +[-37.9219078167, 175.47147535, "34"], +[-37.9197843667, 175.46309625, "68"], +[-37.9210935333, 175.46484215, "60A"], +[-37.9212236167, 175.4704147167, "40"], +[-37.9197908, 175.4659149333, "55A"], +[-37.92033405, 175.4655102, "57"], +[-37.9211895167, 175.46547285, "58A"], +[-37.9207404, 175.46524515, "58"], +[-37.91857275, 175.4635986167, "71"], +[-37.9182674667, 175.46367495, "73"], +[-37.9195246333, 175.4715611, "11"], +[-37.9216761833, 175.4729861167, "26"], +[-37.92162375, 175.4721619667, "27"], +[-37.9218544, 175.4726169833, "28"], +[-37.9215389333, 175.4715153167, "29"], +[-37.9219467167, 175.4722808333, "30"], +[-37.9193754, 175.4726740833, "12"], +[-37.9195867667, 175.4721921667, "13"], +[-37.9196743333, 175.4735581167, "14A"], +[-37.91978385, 175.4729767167, "14"], +[-37.9200549833, 175.4726106667, "15"], +[-37.9197512333, 175.4737709, "16"], +[-37.9204467, 175.4722458667, "17"], +[-37.9199559, 175.4736553667, "18A"], +[-37.9193368833, 175.4700432833, "1"], +[-37.9218013667, 175.4711677833, "36"], +[-37.9204076, 175.4708148667, "37"], +[-37.9217517833, 175.4702188667, "38A"], +[-37.9215826, 175.4708205333, "38"], +[-37.9207000333, 175.4703961167, "39"], +[-37.9205687167, 175.4700339833, "41"], +[-37.9208976, 175.46987095, "42"], +[-37.92033355, 175.4687946, "45"], +[-37.91982325, 175.4679912667, "47A"], +[-37.9209613833, 175.4677278167, "48A"], +[-37.92131875, 175.4676346167, "48B"], +[-37.9205986, 175.4680208, "48"], +[-37.9196399667, 175.4679596667, "49B"], +[-37.9202544833, 175.4681937167, "47"], +[-37.9198937833, 175.4678851833, "49A"], +[-37.9205374667, 175.46738275, "50"], +[-37.9213241, 175.4675107, "50B"], +[-37.9201188667, 175.4669429, "51"], +[-37.92103205, 175.4665559333, "52A"], +[-37.9205449167, 175.4668373833, "52"], +[-37.9198923833, 175.46667, "53"], +[-37.9210808167, 175.4664227833, "54A"], +[-37.920561, 175.4662841333, "54"], +[-37.91946705, 175.4707291667, "5"], +[-37.9193920833, 175.47035955, "3"], +[-37.9195288167, 175.4710633833, "7"], +[-37.92069515, 175.4648828167, "60"], +[-37.9209773667, 175.4675400333, "50A"], +[-37.9201842667, 175.46752845, "49"], +[-37.9200461167, 175.4643875333, "61"], +[-37.9205402833, 175.4644506333, "62"], +[-37.9196651333, 175.4646621833, "63A"], +[-37.9211008833, 175.4733943, "22"], +[-37.9207025167, 175.4734697333, "20"], +[-37.9209406667, 175.47297795, "21"], +[-37.9211156333, 175.4720907167, "25"], +[-37.9221545333, 175.4731278833, "26A"], +[-37.8946718167, 175.4691448667, "53"], +[-37.8945620667, 175.46918055, "55"], +[-37.8942623667, 175.4697152833, "52"], +[-37.894203, 175.4688735167, "65"], +[-37.89425415, 175.4689361333, "63"], +[-37.89414905, 175.4688349167, "67"], +[-37.8939181333, 175.4694227167, "64"], +[-37.8938391333, 175.4693460667, "66"], +[-37.8907021167, 175.4667148333, "93"], +[-37.8906039, 175.4666683167, "95"], +[-37.8902027167, 175.4664942833, "103"], +[-37.8905652, 175.4673196167, "92"], +[-37.8898694, 175.4663493333, "107"], +[-37.8897077333, 175.4662881167, "113"], +[-37.8897784833, 175.4663228, "111"], +[-37.8956830333, 175.4710189333, "32"], +[-37.8955352667, 175.4709092833, "36"], +[-37.8954734333, 175.4708266833, "38"], +[-37.8960418333, 175.47138995, "28"], +[-37.8820345667, 175.46329545, "3/201"], +[-37.8822174333, 175.46335335, "1/201"], +[-37.8821085167, 175.4633248, "2/201"], +[-37.8823766667, 175.4634171667, "197"], +[-37.8841371, 175.46403415, "175A"], +[-37.8841525333, 175.4636656, "175B"], +[-37.8864762667, 175.4645354333, "151"], +[-37.8863782833, 175.4644388833, "153"], +[-37.8862153, 175.4648985833, "155"], +[-37.8860901, 175.4648409833, "157"], +[-37.8880628167, 175.4656834833, "133"], +[-37.8878619333, 175.4655976667, "135"], +[-37.8906979667, 175.4673655, "90"], +[-37.8907991, 175.4667608667, "91"], +[-37.8961849167, 175.4707743833, "25"], +[-37.8836823667, 175.4638652167, "181"], +[-37.8836385667, 175.4632253833, "183"], +[-37.8838402, 175.4639201167, "179"], +[-37.8982437333, 175.4734017333, "1"], +[-37.8849776167, 175.46438955, "171"], +[-37.8843719833, 175.4641355167, "173"], +[-37.8839963167, 175.4632512833, "177"], +[-37.88393085, 175.4634884, "179B"], +[-37.8837384333, 175.4634720333, "181A"], +[-37.8834786833, 175.4638174667, "185"], +[-37.8834804667, 175.46322915, "187"], +[-37.8833056667, 175.4637555833, "189"], +[-37.88310485, 175.4633649667, "191A"], +[-37.8831340833, 175.4636871, "191"], +[-37.8830253167, 175.4636718333, "193"], +[-37.8819504, 175.4632695667, "203"], +[-37.88170725, 175.4631031, "205"], +[-37.88149825, 175.4630156833, "207"], +[-37.8813178333, 175.4626260667, "209A"], +[-37.8813002167, 175.4629425167, "209"], +[-37.8810862833, 175.4628550167, "211"], +[-37.8884475, 175.46494685, "125A"], +[-37.88836565, 175.4649932, "127A"], +[-37.88680255, 175.4645032, "145"], +[-37.8866910333, 175.4647031667, "147A"], +[-37.8863981167, 175.4649715167, "149"], +[-37.8859491, 175.4647828333, "159"], +[-37.8857348333, 175.4647021333, "161"], +[-37.8856289833, 175.4642462833, "163"], +[-37.8854787333, 175.4646066833, "165"], +[-37.8853169667, 175.4645344833, "167"], +[-37.8851657167, 175.4644626667, "169"], +[-37.89008265, 175.4664379167, "105"], +[-37.8888476167, 175.4659953167, "117"], +[-37.88862475, 175.4659086167, "121"], +[-37.8884613833, 175.4658299, "123"], +[-37.8884445167, 175.4652906, "125"], +[-37.8883496833, 175.46527395, "127"], +[-37.8882554833, 175.46575415, "129"], +[-37.8881798833, 175.4652017833, "131"], +[-37.8876298667, 175.4655107667, "137"], +[-37.8874722667, 175.4654312667, "139"], +[-37.8870441833, 175.4652550333, "141"], +[-37.8868197, 175.46516795, "143"], +[-37.8865865, 175.46503135, "147"], +[-37.8944378167, 175.4698605333, "48"], +[-37.8943299667, 175.4697972167, "50"], +[-37.8946586167, 175.46927655, "51"], +[-37.8942089833, 175.4696627, "54"], +[-37.89410215, 175.46963495, "56"], +[-37.8944861833, 175.4691251333, "57"], +[-37.89410185, 175.4695671167, "58"], +[-37.89440395, 175.4690316833, "59"], +[-37.8940363833, 175.4695254833, "60"], +[-37.8943071333, 175.4689793333, "61"], +[-37.8939694333, 175.4694826, "62"], +[-37.8937483667, 175.4692441333, "68"], +[-37.8940153, 175.4687127667, "69"], +[-37.8936944333, 175.4691774333, "70"], +[-37.8939444833, 175.4686454167, "71"], +[-37.8914311167, 175.4676565833, "78"], +[-37.8914605833, 175.4668025833, "81"], +[-37.8911125833, 175.467531, "82"], +[-37.8913374667, 175.46691925, "83"], +[-37.8909541667, 175.4674899167, "84"], +[-37.8912424167, 175.4668760167, "85"], +[-37.89086865, 175.4674540833, "86"], +[-37.8911290333, 175.46682535, "87"], +[-37.8908065333, 175.4674188167, "88"], +[-37.8909961333, 175.4667623333, "89"], +[-37.89043345, 175.4672657667, "98"], +[-37.8976105333, 175.47313585, "10"], +[-37.8975240667, 175.47213955, "17"], +[-37.8964341, 175.4719897, "18"], +[-37.8965768167, 175.4718193667, "20"], +[-37.8964536167, 175.47098525, "21"], +[-37.8965168, 175.4717821667, "22"], +[-37.8963066833, 175.4708868167, "23"], +[-37.8964117, 175.4716877833, "24"], +[-37.8973729833, 175.4718744167, "19"], +[-37.8961056167, 175.4707024167, "27"], +[-37.89606105, 175.4706588333, "29"], +[-37.8957499, 175.4710900333, "30"], +[-37.8960081167, 175.4706084667, "31"], +[-37.89595535, 175.4705515167, "33"], +[-37.8962650667, 175.4715582333, "26"], +[-37.8977395833, 175.4736163833, "2A"], +[-37.8976182167, 175.4734736333, "2"], +[-37.8950879167, 175.4697355, "49"], +[-37.8953451167, 175.47080125, "40"], +[-37.8952480833, 175.4706864833, "42"], +[-37.8953311333, 175.4699905167, "43"], +[-37.8951690167, 175.4705682833, "44"], +[-37.8952598667, 175.4699087, "45"], +[-37.8951447333, 175.4705209333, "46"], +[-37.8951409333, 175.4698058667, "47"], +[-37.8954689333, 175.4701014167, "41A"], +[-37.8958601667, 175.4704608833, "35"], +[-37.8957632833, 175.4703618, "37"], +[-37.89565655, 175.4702728333, "39"], +[-37.8955528, 175.4701858833, "41"], +[-37.8976127167, 175.4736873167, "4A"], +[-37.8974748, 175.4735857667, "4"], +[-37.8973855833, 175.4735356667, "6"], +[-37.8974473167, 175.4733615667, "8"], +[-37.8896038, 175.4662530833, "115"], +[-37.8938700833, 175.46857325, "73"], +[-37.8913213333, 175.4676180667, "80"], +[-37.89351535, 175.4690702167, "76"], +[-37.8936501, 175.4683802833, "77"], +[-37.8937599333, 175.4684853667, "75"], +[-37.8935794833, 175.4691255, "72"], +[-37.88384375, 175.4636547333, "179A"], +[-37.8877088, 175.4661684833, "104"], +[-37.8853223833, 175.4655525667, "128B"], +[-37.88438085, 175.4648718667, "136C"], +[-37.8841924667, 175.46482515, "138"], +[-37.8840040333, 175.4647229667, "140"], +[-37.8838259833, 175.4646471667, "142"], +[-37.8836846833, 175.4645814167, "144"], +[-37.8833978167, 175.4647726167, "146A"], +[-37.88347465, 175.46450515, "146"], +[-37.8832495667, 175.4646684333, "148B"], +[-37.8833107333, 175.4644183167, "148A"], +[-37.8830987333, 175.4643600833, "150"], +[-37.88243095, 175.4641342, "152"], +[-37.8822347333, 175.4643721667, "154A"], +[-37.88231865, 175.4640810833, "154"], +[-37.8820192, 175.4644994833, "156"], +[-37.8820541833, 175.46428995, "158A"], +[-37.8821268, 175.4640207, "158"], +[-37.88190465, 175.4639371333, "160"], +[-37.8817260167, 175.4638787833, "162"], +[-37.8814407667, 175.4640942167, "164A"], +[-37.8815740333, 175.46375875, "164"], +[-37.8814061667, 175.4637101333, "166"], +[-37.8812219167, 175.4636397667, "168"], +[-37.8810714, 175.4635707167, "170"], +[-37.8849612333, 175.4651687333, "134"], +[-37.8867657833, 175.46587165, "116"], +[-37.8873525667, 175.4663687, "108A"], +[-37.8875141333, 175.46643145, "108B"], +[-37.88740205, 175.4660429667, "108"], +[-37.8872605, 175.46600665, "110"], +[-37.8870516667, 175.4659278333, "114"], +[-37.8859261833, 175.4657479333, "122A"], +[-37.8859050667, 175.4659105167, "122B"], +[-37.8859588, 175.4655614, "122"], +[-37.88575615, 175.4657199833, "124A"], +[-37.8857864167, 175.4655019333, "124"], +[-37.8855956333, 175.46541875, "126"], +[-37.8854599, 175.4652737833, "128"], +[-37.8852678333, 175.46529905, "130"], +[-37.8850946667, 175.4652269667, "132"], +[-37.8878558833, 175.4662192833, "100"], +[-37.88434005, 175.4648704833, "136B"], +[-37.88430585, 175.4648585667, "136A"], +[-37.9102085667, 175.47267125, "50B"], +[-37.9116658, 175.4774299167, "86A"], +[-37.91171815, 175.4771741167, "82A"], +[-37.90942125, 175.47189105, "37"], +[-37.91030625, 175.47526205, "63B"], +[-37.9104127167, 175.4752166, "63A"], +[-37.9095648833, 175.47290545, "49A"], +[-37.9093032333, 175.4714794833, "35A"], +[-37.90934235, 175.47164185, "35B"], +[-37.9093857333, 175.4728978167, "47B"], +[-37.9095356333, 175.4723232833, "43"], +[-37.9094703333, 175.4721117667, "39"], +[-37.9096594333, 175.4715342167, "40"], +[-37.9080098833, 175.4672010667, "5"], +[-37.9083293833, 175.4682696833, "13"], +[-37.9089423167, 175.4690827667, "20"], +[-37.9089409167, 175.4702961167, "29"], +[-37.9081540667, 175.46658445, "2"], +[-37.9097415167, 175.4717528833, "42"], +[-37.9101694333, 175.4746051167, "57"], +[-37.9080884, 175.4674672833, "7"], +[-37.91215875, 175.4797119167, "102"], +[-37.9118344667, 175.4799542, "103"], +[-37.9106944, 175.4744461, "62A"], +[-37.9113962667, 175.4772112333, "82"], +[-37.90982995, 175.4733563, "51A"], +[-37.9115914833, 175.4801362333, "107A"], +[-37.9092558833, 175.4696357, "26B"], +[-37.91002055, 175.4726635167, "50A"], +[-37.90847515, 175.46755925, "10"], +[-37.9082532667, 175.4680019333, "11"], +[-37.9088822833, 175.4688571833, "18"], +[-37.9086208167, 175.4692152333, "19"], +[-37.9085374333, 175.4677686333, "12"], +[-37.9086063833, 175.4679739333, "14"], +[-37.9086596833, 175.4681819, "16"], +[-37.9086889667, 175.4694297167, "21"], +[-37.9089948667, 175.4692835833, "22"], +[-37.9087513667, 175.4696475333, "23"], +[-37.9090557667, 175.4694965167, "24"], +[-37.9088116333, 175.4698680667, "25"], +[-37.9091091, 175.46969345, "26"], +[-37.907833, 175.4666559167, "1"], +[-37.9091789833, 175.4699557667, "28"], +[-37.9096087, 175.4713450667, "38"], +[-37.9092433833, 175.4701392333, "30"], +[-37.9090019833, 175.47051235, "31"], +[-37.9093068333, 175.4703555833, "32"], +[-37.9090940833, 175.4707707667, "33"], +[-37.90938145, 175.4705582833, "34"], +[-37.9094346667, 175.4707651333, "36"], +[-37.9088761167, 175.47007805, "27"], +[-37.9098069333, 175.4719604833, "44"], +[-37.9098796833, 175.4721707667, "46"], +[-37.909607, 175.4725725667, "45"], +[-37.90920615, 175.4729688333, "47A"], +[-37.9093402667, 175.4728171, "47"], +[-37.9099493833, 175.4724105167, "48"], +[-37.9096936333, 175.47284265, "49"], +[-37.9079234833, 175.4669311833, "3"], +[-37.9082463667, 175.4668155333, "4"], +[-37.9097714167, 175.4731308333, "51"], +[-37.9100506833, 175.4729631167, "52"], +[-37.9101362833, 175.473234, "54"], +[-37.9105130333, 175.4743347667, "60"], +[-37.91028125, 175.4747888167, "59"], +[-37.9105830167, 175.4745966167, "62"], +[-37.9106531, 175.4748493333, "64"], +[-37.90835855, 175.4671917333, "8"], +[-37.9081653833, 175.4677261, "9"], +[-37.9120752833, 175.4794866167, "100"], +[-37.9117925167, 175.47970425, "101"], +[-37.91190545, 175.4801769333, "105"], +[-37.9122550333, 175.4799224833, "106"], +[-37.9116940333, 175.48024145, "107"], +[-37.9124476, 175.4801052833, "108"], +[-37.9117246833, 175.4803671833, "109"], +[-37.9103405167, 175.4750005667, "61"], +[-37.9104726833, 175.4754203667, "65"], +[-37.9107200333, 175.47506155, "66"], +[-37.91053305, 175.4756331, "67"], +[-37.9111229833, 175.476363, "74"], +[-37.9114657833, 175.4764926, "76A"], +[-37.911183, 175.4765541167, "76"], +[-37.91150505, 175.47660575, "78A"], +[-37.9112499833, 175.4767965667, "78"], +[-37.9115982333, 175.4769201167, "80A"], +[-37.9113175167, 175.4769843333, "80"], +[-37.91152935, 175.4777795, "88"], +[-37.9117877, 175.4784990667, "92"], +[-37.9118644667, 175.4787878833, "94"], +[-37.9121825833, 175.4787955833, "96A"], +[-37.9119467333, 175.47904265, "96"], +[-37.9119913167, 175.4792895833, "98"], +[-37.9117365667, 175.47948695, "99"], +[-37.9107912667, 175.4752822833, "68"], +[-37.9108477833, 175.4754937167, "70"], +[-37.9118233, 175.4773533, "86B"], +[-37.9119954167, 175.47727035, "86C"], +[-37.9115303833, 175.4774913167, "86"], +[-37.9082149, 175.4684349833, "13A"], +[-37.8870698333, 175.4663411167, "1-13"], +[-37.8871554667, 175.4663601, "2-12"], +[-37.9016082667, 175.4806621, "30"], +[-37.9010984667, 175.4803028833, "22"], +[-37.9012443833, 175.4808339333, "24"], +[-37.9013056667, 175.4802206, "26"], +[-37.90149895, 175.4805675833, "28"], +[-37.9015629833, 175.4800562667, "32"], +[-37.90147835, 175.4797437167, "45"], +[-37.8996289167, 175.4806158667, "2A"], +[-37.89956085, 175.4797871333, "11"], +[-37.9009366167, 175.4793407667, "37"], +[-37.9010581667, 175.4795131167, "39"], +[-37.8992862833, 175.4802488833, "5"], +[-37.90020145, 175.4797472, "10"], +[-37.9003469333, 175.47964355, "12"], +[-37.89972725, 175.47967295, "13"], +[-37.9006396, 175.4794276, "14"], +[-37.8998769167, 175.47947625, "15"], +[-37.9007610667, 175.4795863833, "16"], +[-37.9008528833, 175.47974655, "18"], +[-37.9009693167, 175.4799194, "20"], +[-37.90002065, 175.47947515, "17"], +[-37.9001685333, 175.4793572, "19"], +[-37.8993512667, 175.4806693, "1"], +[-37.9003158833, 175.479241, "21"], +[-37.9004667167, 175.4791244167, "23"], +[-37.9006037, 175.4790302167, "25"], +[-37.90070445, 175.4786061667, "27"], +[-37.9007410667, 175.4788370167, "29"], +[-37.9008196333, 175.4791513333, "31"], +[-37.901124, 175.4788828667, "33"], +[-37.90119195, 175.4790490333, "35"], +[-37.9013381833, 175.4794026, "41"], +[-37.8997734, 175.4805030333, "2"], +[-37.8992978333, 175.4804472333, "3"], +[-37.9012097667, 175.4797523667, "43"], +[-37.8996789, 175.48033335, "4"], +[-37.8998323667, 175.4800290167, "6"], +[-37.8993387167, 175.4800615833, "7"], +[-37.9000414667, 175.4798654, "8"], +[-37.8994266333, 175.47991435, "9"], +[-37.8172086167, 175.36975015, "17"], +[-37.8189982167, 175.3714596333, "28C"], +[-37.8174889333, 175.3716284333, "35"], +[-37.8180339667, 175.3717238667, "36"], +[-37.8172767, 175.3702897333, "25"], +[-37.8183033167, 175.3704190333, "28A"], +[-37.8177806167, 175.3709889833, "30"], +[-37.8184724667, 175.3714858167, "34"], +[-37.8172573833, 175.3723560333, "37"], +[-37.8175974333, 175.3697317, "18"], +[-37.8189201833, 175.3708153, "28B"], +[-37.8170975, 175.3688759833, "7"], +[-37.8174008333, 175.3711639167, "31"], +[-37.8177271333, 175.3719905167, "39"], +[-37.9105104667, 175.4696305667, "29"], +[-37.9105738333, 175.4698784833, "33"], +[-37.9119496333, 175.4744651, "75"], +[-37.9124263667, 175.4747625167, "76"], +[-37.9120037833, 175.47464375, "77A"], +[-37.9103653167, 175.4676619667, "20"], +[-37.9108393333, 175.4707173, "41"], +[-37.91176765, 175.4719875333, "58A"], +[-37.9116183, 175.4720772, "58"], +[-37.9128712, 175.4761248167, "86"], +[-37.9124839333, 175.47629265, "85"], +[-37.9104650167, 175.4694600667, "27"], +[-37.9109299, 175.4697178333, "40"], +[-37.9109971667, 175.4699570333, "42"], +[-37.9097695, 175.4672281333, "11"], +[-37.9100539667, 175.4665771, "10"], +[-37.91041835, 175.4666636, "12A"], +[-37.9101176333, 175.4667979833, "12"], +[-37.90983315, 175.4674340333, "13"], +[-37.9104875, 175.4669176667, "14A"], +[-37.9101736833, 175.4670051, "14"], +[-37.9098833833, 175.46762845, "15"], +[-37.9102367667, 175.4672218833, "16"], +[-37.9099549667, 175.46780795, "17"], +[-37.9105899, 175.46737165, "18A"], +[-37.9102941833, 175.4674259333, "18"], +[-37.91020335, 175.4685710333, "21"], +[-37.9102757167, 175.4688396333, "23"], +[-37.9105438167, 175.46821955, "22"], +[-37.9105772667, 175.4685320333, "26"], +[-37.9104076167, 175.4692623833, "25"], +[-37.9094199667, 175.4660506333, "1"], +[-37.9106404167, 175.4687469667, "28"], +[-37.9107060667, 175.4689637167, "30"], +[-37.9103114167, 175.4698414333, "31"], +[-37.9110137167, 175.4690528333, "34A"], +[-37.9107613667, 175.4691689333, "34"], +[-37.91081495, 175.4693474, "36A"], +[-37.9110468333, 175.46924275, "36B"], +[-37.9108736, 175.4695344167, "38A"], +[-37.9111242, 175.46941945, "38B"], +[-37.9098216167, 175.4658393167, "2"], +[-37.91088605, 175.4708887833, "43"], +[-37.9112278167, 175.4705661167, "44"], +[-37.9109336667, 175.47106555, "45"], +[-37.91129165, 175.4707536333, "46"], +[-37.9109882333, 175.4712586667, "47"], +[-37.9113449167, 175.47095045, "48"], +[-37.9110579667, 175.4714307833, "49"], +[-37.9094612667, 175.4662574167, "3"], +[-37.9114052833, 175.4711525333, "50"], +[-37.9114515333, 175.4713499667, "52"], +[-37.9111246333, 175.47187335, "51"], +[-37.91170175, 175.4723085667, "60"], +[-37.9117521667, 175.4724906333, "62"], +[-37.91170015, 175.47359465, "63"], +[-37.91175395, 175.4737979833, "65"], +[-37.9120630333, 175.4735410667, "66A"], +[-37.9122263, 175.47353625, "66B"], +[-37.9118108167, 175.4740034667, "67"], +[-37.9113339, 175.4743958833, "69"], +[-37.90952435, 175.4664596667, "5"], +[-37.90970875, 175.4670344667, "9"], +[-37.91152875, 175.4743488, "71"], +[-37.9123023, 175.47433295, "72"], +[-37.9118344167, 175.4742989833, "73A"], +[-37.9118896667, 175.4742717333, "73"], +[-37.9123685833, 175.4745438, "74"], +[-37.91204505, 175.4747885167, "77B"], +[-37.9124726167, 175.4749395667, "78"], +[-37.9120965167, 175.47493145, "79"], +[-37.9099235167, 175.46615755, "6"], +[-37.9099866, 175.4663651333, "8"], +[-37.9126461, 175.4754722667, "80"], +[-37.9123464833, 175.4758373333, "81"], +[-37.9124222167, 175.4761109333, "83"], +[-37.9129424833, 175.47629755, "88A"], +[-37.91334525, 175.4762585833, "90A"], +[-37.9134976667, 175.4761915, "90B"], +[-37.9133118333, 175.47629305, "90"], +[-37.9127142, 175.4769782833, "87"], +[-37.9127630833, 175.4771701667, "89"], +[-37.9131761, 175.47644985, "92A"], +[-37.9131949667, 175.47653455, "92B"], +[-37.9130077167, 175.4766852167, "94"], +[-37.9131084667, 175.4770053833, "96"], +[-37.9133594333, 175.4770784833, "98"], +[-37.91309155, 175.4760073833, "86B"], +[-37.9127336333, 175.4757125833, "82"], +[-37.9128152667, 175.4759342833, "84"], +[-37.9129075333, 175.4763391333, "88"], +[-37.8906112, 175.4636290667, "8"], +[-37.8906010667, 175.4641357833, "1A"], +[-37.8905902667, 175.4639329, "4"], +[-37.8905940833, 175.4640698, "2"], +[-37.8906316167, 175.4632836667, "13"], +[-37.8907058, 175.4633735833, "17"], +[-37.8905923, 175.4640024833, "3"], +[-37.8907071833, 175.4634437667, "18"], +[-37.8906947667, 175.4635948667, "20"], +[-37.8906874333, 175.4636836833, "21"], +[-37.890681, 175.4637655167, "22"], +[-37.8906765333, 175.4638413833, "23"], +[-37.8906641, 175.4639166833, "24"], +[-37.8906549, 175.4639912667, "25"], +[-37.8906532333, 175.4640676833, "26"], +[-37.8906518667, 175.46414095, "27"], +[-37.8906011167, 175.4638605167, "5"], +[-37.8906079667, 175.4637939167, "6"], +[-37.8906326167, 175.4634340333, "11"], +[-37.8906169667, 175.4635610833, "9"], +[-37.8906290333, 175.46349725, "10"], +[-37.8906352333, 175.4633559333, "12"], +[-37.8906300833, 175.4632139167, "14"], +[-37.8906897167, 175.4632274, "15"], +[-37.8905997667, 175.46420885, "1"], +[-37.8906515667, 175.4642292333, "28"], +[-37.8905993833, 175.4637104667, "7"], +[-37.8905424667, 175.4641317333, "1B"], +[-37.8906997833, 175.4632963667, "16"], +[-37.89069985, 175.4635183333, "19"], +[-37.82488245, 175.3937114333, "107"], +[-37.82511735, 175.3936415, "105"], +[-37.8241600833, 175.3938937, "115"], +[-37.8257229, 175.3934403167, "95"], +[-37.8311935833, 175.39119285, "34"], +[-37.8312837167, 175.3938057, "44"], +[-37.8302991667, 175.3911272833, "39"], +[-37.8298778833, 175.38838305, "33"], +[-37.8260734, 175.3947714167, "94C"], +[-37.8263358833, 175.3938421667, "94A"], +[-37.8279937667, 175.394307, "72C"], +[-37.8246244833, 175.3942836667, "110"], +[-37.82928665, 175.3931185833, "58"], +[-37.8239608833, 175.3939572, "117"], +[-37.8307863167, 175.3929875333, "46B"], +[-37.83183475, 175.3898969167, "19"], +[-37.82823865, 175.3933544333, "72A"], +[-37.82829215, 175.3941929833, "72B"], +[-37.8278144167, 175.3934866833, "72D"], +[-37.8263441833, 175.3946904167, "94B"], +[-37.8258577167, 175.3939724833, "94D"], +[-37.8252182667, 175.3953295167, "108"], +[-37.8301352667, 175.3922486833, "46A"], +[-37.8325430167, 175.3898667667, "14"], +[-37.8327221167, 175.3897138833, "12"], +[-37.91482215, 175.4749911167, "3"], +[-37.9154439833, 175.4755851833, "12"], +[-37.9151334833, 175.4758027, "13"], +[-37.9152983167, 175.4757077333, "14"], +[-37.9150524833, 175.4746568833, "2"], +[-37.9147571833, 175.4747972, "1"], +[-37.9151202833, 175.4748550667, "4"], +[-37.9149427, 175.4758335, "11"], +[-37.91488335, 175.4751902167, "5"], +[-37.9149361833, 175.4753859667, "7"], +[-37.9149649167, 175.475589, "9"], +[-37.9153104333, 175.4754419667, "10"], +[-37.9151775667, 175.4750489, "6"], +[-37.91523395, 175.4752497167, "8"], +[-37.8190687333, 175.3738382833, "23"], +[-37.8189306833, 175.3733703333, "25"], +[-37.8190215667, 175.37468215, "15"], +[-37.8191251667, 175.3740887167, "21"], +[-37.81873305, 175.3726976833, "27A-27C"], +[-37.8806986667, 175.4693562667, "63"], +[-37.8809032, 175.46938395, "61"], +[-37.88419255, 175.4697289167, "25"], +[-37.8840685833, 175.4692688833, "26A"], +[-37.8849148667, 175.4692615167, "24"], +[-37.8847644833, 175.4697682667, "23"], +[-37.8813066833, 175.4696684167, "55A"], +[-37.8841734833, 175.4692622667, "26"], +[-37.8840862833, 175.46972585, "27"], +[-37.883927, 175.46906515, "28A"], +[-37.8838748833, 175.4692541667, "28"], +[-37.8838499, 175.4696946333, "29"], +[-37.88359805, 175.4692251167, "30"], +[-37.8837043833, 175.4696835, "31"], +[-37.8834259333, 175.4692035833, "32"], +[-37.88355905, 175.4696786667, "33"], +[-37.8832160667, 175.4691627833, "34"], +[-37.8834721833, 175.4701433, "35"], +[-37.8829353667, 175.4691514, "36"], +[-37.8833598667, 175.4701280667, "37"], +[-37.8821233833, 175.4690720167, "44"], +[-37.8818720333, 175.4690515667, "46"], +[-37.8816436667, 175.4690230167, "48"], +[-37.8815636667, 175.4686263, "50"], +[-37.8818555333, 175.4695200333, "51"], +[-37.8812979333, 175.4689347, "52A"], +[-37.8814706833, 175.46880395, "52"], +[-37.8816095333, 175.46944925, "53"], +[-37.8816625, 175.4696671833, "53A"], +[-37.8811724833, 175.46894365, "54"], +[-37.8833521, 175.46965845, "39"], +[-37.882727, 175.4691108167, "40"], +[-37.88320755, 175.4696409167, "41"], +[-37.8830678333, 175.4696227833, "43"], +[-37.8828830167, 175.4695893333, "45"], +[-37.8827233167, 175.4695686167, "47"], +[-37.88095035, 175.4689156, "56"], +[-37.8811470667, 175.4694376833, "57"], +[-37.8807286167, 175.4689006167, "58"], +[-37.8809772667, 175.4695997, "59"], +[-37.8855099667, 175.4700903333, "11A"], +[-37.8863533667, 175.4694588667, "10"], +[-37.8855251167, 175.46980435, "11"], +[-37.8858918167, 175.4693764333, "12"], +[-37.88541135, 175.46981195, "13"], +[-37.8857694833, 175.4693831333, "14"], +[-37.8853156333, 175.4697983, "15"], +[-37.88556005, 175.4693647167, "16"], +[-37.8851626, 175.4697849833, "17"], +[-37.8853764833, 175.4693362333, "18"], +[-37.8850294167, 175.4700537333, "19A"], +[-37.8850045667, 175.4697427167, "19"], +[-37.88522955, 175.4692991667, "20"], +[-37.8869080667, 175.4699470333, "1"], +[-37.8866734833, 175.4699262833, "3"], +[-37.8868586667, 175.46949025, "4"], +[-37.8866564167, 175.4694635, "6"], +[-37.8864874833, 175.4690444333, "8A"], +[-37.8864948, 175.4694661333, "8"], +[-37.8857426, 175.4698434167, "9"], +[-37.8813893667, 175.46946355, "55"], +[-37.8757085833, 175.4720279333, "14"], +[-37.8760134667, 175.4732799333, "4"], +[-37.8762548333, 175.4722784667, "9"], +[-37.87627795, 175.47290345, "5"], +[-37.8759331333, 175.4720918833, "16"], +[-37.8759628833, 175.47273515, "8"], +[-37.8762970167, 175.4732576833, "3"], +[-37.8762245833, 175.47260565, "7"], +[-37.8760141333, 175.4735054833, "2"], +[-37.87599385, 175.4730087667, "6"], +[-37.8759230167, 175.4724739333, "10"], +[-37.8762960167, 175.4734868833, "1"], +[-37.8760504333, 175.4719608, "18"], +[-37.8759146, 175.4722788167, "12"], +[-37.8741210833, 175.4688841833, "4"], +[-37.874194, 175.4684628667, "3"], +[-37.8738320667, 175.467738, "7C"], +[-37.8739506833, 175.4677262667, "7B"], +[-37.8738354667, 175.4680554, "7D"], +[-37.8739794167, 175.4680445667, "7A"], +[-37.8738342833, 175.46848195, "9"], +[-37.8740206, 175.4684673, "5"], +[-37.8739604167, 175.4688864, "6"], +[-37.8735957167, 175.4683405333, "11"], +[-37.8734235667, 175.4681024, "13"], +[-37.87339585, 175.4678321167, "15"], +[-37.8733727667, 175.46763935, "17"], +[-37.8728499833, 175.46814045, "18B"], +[-37.8728848, 175.468283, "18A"], +[-37.8730660667, 175.4686787667, "12B"], +[-37.8734160167, 175.4687180167, "10"], +[-37.87312285, 175.4687848, "12A"], +[-37.8730669833, 175.4679829333, "20"], +[-37.8731389833, 175.4682574833, "16"], +[-37.8732649167, 175.4684832833, "14"], +[-37.8732605833, 175.4675842167, "19"], +[-37.8729366833, 175.4674852167, "24"], +[-37.8730152333, 175.4677481333, "22"], +[-37.87312065, 175.4675707, "21"], +[-37.7940869167, 175.4650218, "53"], +[-37.7987550833, 175.46275265, "10"], +[-37.7930822167, 175.4661922833, "60"], +[-37.9811612, 175.51623075, "170"], +[-37.980836, 175.5157299167, "171"], +[-37.9807136667, 175.5162809333, "172"], +[-37.8615888667, 175.47847875, "25"], +[-37.8612666833, 175.4791558, "31"], +[-37.86047605, 175.48172545, "60"], +[-37.8620611333, 175.4774431167, "13"], +[-37.8607505167, 175.4799311167, "41"], +[-37.8611511833, 175.4794658167, "35"], +[-37.86108515, 175.4796282, "37"], +[-37.8604406, 175.48091835, "55"], +[-37.8595911333, 175.483664, "72"], +[-37.8582950167, 175.4794636833, "1/55"], +[-37.8599109167, 175.4805425167, "49"], +[-37.86081285, 175.4790711333, "33"], +[-37.9125544667, 175.4795344, "6A"], +[-37.9129032667, 175.479114, "8"], +[-37.9131012, 175.4790179333, "10"], +[-37.9132466667, 175.4789829167, "11"], +[-37.9130141, 175.4787519333, "1"], +[-37.9128543833, 175.4788087167, "2"], +[-37.9126783167, 175.47889955, "3"], +[-37.9125031333, 175.47905685, "4"], +[-37.91254025, 175.4792764833, "5"], +[-37.9127399333, 175.4793322333, "7"], +[-37.9130969667, 175.47952775, "9"], +[-37.9126911167, 175.4796185, "6"], +[-37.8188045667, 175.445279, "356B"], +[-37.8182903167, 175.4447447333, "356A"], +[-37.8086473833, 175.4195512167, "27"], +[-37.8137567, 175.4426504333, "299"], +[-37.8131862167, 175.4434878167, "297"], +[-37.8157127333, 175.43953285, "300A"], +[-37.8094742167, 175.4189907, "19"], +[-37.80933355, 175.4191978667, "23"], +[-37.8084224833, 175.4207951, "41"], +[-37.8095742167, 175.43605105, "226"], +[-37.81325255, 175.4410722, "291"], +[-37.8149016667, 175.44148445, "310"], +[-37.8155769667, 175.44213865, "316"], +[-37.8161747167, 175.4426252167, "326A"], +[-37.81712155, 175.4417707667, "326B"], +[-37.8169698833, 175.4434206167, "332"], +[-37.81770375, 175.4442239833, "346"], +[-37.81930575, 175.4457899333, "370"], +[-37.82310865, 175.4495740167, "422"], +[-37.8103162667, 175.4344773833, "224B"], +[-37.8100267333, 175.4348309167, "224A"], +[-37.8072155167, 175.4256129167, "88B"], +[-37.8070962167, 175.42278495, "59"], +[-37.8044940333, 175.4270097, "105"], +[-37.8046275667, 175.4276069, "110"], +[-37.8047349, 175.43229485, "165"], +[-37.8073398, 175.4232142167, "68"], +[-37.8064126167, 175.4330381167, "188"], +[-37.8063987833, 175.4339707667, "209"], +[-37.8103206333, 175.4378506833, "241"], +[-37.8117777667, 175.4393874, "269"], +[-37.8074375833, 175.43233545, "192"], +[-37.8099668167, 175.4365891667, "236"], +[-37.8038524, 175.4307279167, "156"], +[-37.808759, 175.4183171167, "17"], +[-37.805885, 175.4246946333, "81"], +[-37.8072272, 175.4225943333, "57"], +[-37.8056120333, 175.4262290333, "98"], +[-37.80400575, 175.4287991167, "122"], +[-37.8162936333, 175.43817215, "300B"], +[-37.80809795, 175.4212756, "49"], +[-37.8102496667, 175.4184802, "8"], +[-37.8057899167, 175.43198855, "174"], +[-37.8060113, 175.4256459333, "88A"], +[-37.8183982, 175.4416558, "336"], +[-37.8108804, 175.4393530667, "257"], +[-37.81106865, 175.4386178, "255"], +[-37.816436, 175.4370654, "298"], +[-37.8152743833, 175.4390058833, "298A"], +[-37.8136452667, 175.44031535, "288"], +[-37.8123581, 175.44091935, "285"], +[-37.81283995, 175.4401099833, "283"], +[-37.8198763333, 175.4462982, "382"], +[-37.8164479167, 175.44390175, "331"], +[-37.80775795, 175.4225746667, "62"], +[-37.8039981833, 175.43163845, "161"], +[-37.81343775, 175.4401047167, "286"], +[-37.92047495, 175.46336425, "9"], +[-37.9203008333, 175.4618285667, "10"], +[-37.9198670667, 175.4617700333, "6"], +[-37.9207259667, 175.4627925167, "18"], +[-37.9204614, 175.4619784833, "12"], +[-37.9205793667, 175.4621705667, "14"], +[-37.9207471167, 175.463665, "22"], +[-37.9208443, 175.4640230833, "24"], +[-37.9207801667, 175.4632019667, "20"], +[-37.919291, 175.4622796167, "1"], +[-37.92066135, 175.4624384833, "16"], +[-37.9203523333, 175.4637463, "11"], +[-37.9192657167, 175.4618642833, "2"], +[-37.9197237333, 175.4622129, "3"], +[-37.91957955, 175.4618272333, "4"], +[-37.9201776333, 175.4622242, "5"], +[-37.9203935, 175.4628145667, "7"], +[-37.9201192, 175.46174985, "8"], +[-37.9031613333, 175.4779369333, "8"], +[-37.90302285, 175.47799245, "9"], +[-37.9033285333, 175.4778655833, "7"], +[-37.90346695, 175.4777957167, "6B"], +[-37.9031769667, 175.4783186167, "1"], +[-37.9034699667, 175.47848295, "2A"], +[-37.90334345, 175.4782583833, "2"], +[-37.9035249833, 175.4781788667, "3"], +[-37.9037982667, 175.4780497167, "4A"], +[-37.9037089833, 175.4781017333, "4"], +[-37.9035266667, 175.4777643667, "6A"], +[-37.9036756833, 175.4778188333, "5"], +[-37.9129985333, 175.4689246333, "3"], +[-37.9132911, 175.4686436333, "4"], +[-37.9127876667, 175.4680122167, "13"], +[-37.9126336667, 175.46802445, "13A"], +[-37.91304995, 175.4678746833, "10"], +[-37.91280555, 175.4681958333, "11"], +[-37.9127504833, 175.4677229167, "15"], +[-37.9133710167, 175.4688942167, "2"], +[-37.9129377, 175.4687422333, "5"], +[-37.9128397333, 175.4683664833, "9"], +[-37.9125584, 175.4677322333, "15A"], +[-37.9132129833, 175.4683870333, "6"], +[-37.9128774667, 175.4685356, "7"], +[-37.9131322833, 175.4681105167, "8"], +[-37.9164839667, 175.4695277167, "2/205"], +[-37.9167949333, 175.4782119333, "287"], +[-37.9086755, 175.4537326833, "37"], +[-37.91527815, 175.4546945333, "2/88"], +[-37.9142658167, 175.4551371, "1/88"], +[-37.9145371, 175.4555229667, "88"], +[-37.9167784167, 175.4698118167, "209"], +[-37.91671315, 175.4695459, "207"], +[-37.916654, 175.4692565, "203"], +[-37.9168566667, 175.4764833167, "269"], +[-37.9170098667, 175.4835371333, "332"], +[-37.9109654167, 175.455206, "60"], +[-37.9170810333, 175.4814135167, "310"], +[-37.9168965667, 175.4758632667, "263"], +[-37.9154102833, 175.46304445, "149"], +[-37.9154961, 175.4634764667, "153"], +[-37.9152487667, 175.4638892333, "157"], +[-37.9156422333, 175.4641169833, "159"], +[-37.9158050167, 175.4648025333, "165"], +[-37.91375215, 175.4584178167, "106"], +[-37.9147696833, 175.4594047833, "114"], +[-37.91474835, 175.46019985, "121"], +[-37.9158845167, 175.4586385833, "112"], +[-37.9150857, 175.459884, "120"], +[-37.9126885833, 175.4573289333, "82"], +[-37.91648165, 175.4694261333, "1/205"], +[-37.9168508333, 175.4701398833, "211"], +[-37.9169940167, 175.4708593833, "219"], +[-37.9170359, 175.4710790167, "221"], +[-37.91708375, 175.4713339, "223"], +[-37.9170401, 175.4721885167, "231"], +[-37.9170336667, 175.4724657667, "233"], +[-37.9169188667, 175.4749939667, "249"], +[-37.9168660833, 175.4760673333, "265"], +[-37.91686435, 175.4768689833, "271"], +[-37.9166818667, 175.4769821, "273"], +[-37.9168443333, 175.4772235167, "275"], +[-37.9166369667, 175.4773580167, "277"], +[-37.9165761667, 175.4777388, "279"], +[-37.9168418833, 175.47757295, "281"], +[-37.9168319167, 175.47791855, "283"], +[-37.9165834833, 175.47804975, "285"], +[-37.91697015, 175.4853758167, "344"], +[-37.9180125667, 175.4811616, "316"], +[-37.9169954833, 175.48221265, "318"], +[-37.9157653333, 175.4543129833, "3/88"], +[-37.9154571667, 175.4552445, "4/88"], +[-37.8827312167, 175.4872892833, "5"], +[-37.8831903667, 175.4877676167, "8"], +[-37.8828024333, 175.4875113, "7"], +[-37.8831045, 175.4875104167, "6"], +[-37.8828241, 175.4877701, "9"], +[-37.88302025, 175.4867592333, "2"], +[-37.8827238667, 175.4870656, "3"], +[-37.8832792333, 175.48802495, "10"], +[-37.88271135, 175.4868632, "1"], +[-37.8830189167, 175.4869722, "4"], +[-37.8828316667, 175.4879782167, "11"], +[-37.8831031667, 175.4879840167, "12"], +[-37.8829747, 175.4879948833, "13"], +[-37.88274605, 175.48484915, "21"], +[-37.8834571667, 175.4855031833, "4"], +[-37.8834955333, 175.4856944167, "2"], +[-37.8838132333, 175.4854477333, "3"], +[-37.8835369833, 175.4848281833, "11"], +[-37.88336725, 175.48485965, "13"], +[-37.8831959833, 175.48485645, "15"], +[-37.8828621167, 175.48476675, "19"], +[-37.8838400833, 175.4849657333, "7"], +[-37.8837638167, 175.4848016167, "9"], +[-37.8829594167, 175.4854216, "10"], +[-37.8827830667, 175.4855451, "12"], +[-37.88274165, 175.4853534, "14"], +[-37.8827611667, 175.4850917, "16"], +[-37.8830644, 175.48501895, "17"], +[-37.8838288, 175.4856380833, "1"], +[-37.8838275, 175.4852247167, "5"], +[-37.883443, 175.4852514667, "6"], +[-37.8831229667, 175.4853610833, "8"], +[-37.8145997, 175.4058182333, "13"], +[-37.8147182333, 175.4078123, "28"], +[-37.81457405, 175.4067919, "23"], +[-37.8140701667, 175.4071422833, "27"], +[-37.8142806667, 175.4076163167, "29"], +[-37.8149311167, 175.4068842833, "22"], +[-37.8150038333, 175.4059631, "16"], +[-37.7951609167, 175.3942458333, "200"], +[-37.7911471333, 175.3929187167, "159B"], +[-37.7905987667, 175.3938164667, "159C"], +[-37.7912155833, 175.3932714167, "159A"], +[-37.79397065, 175.3941075167, "190"], +[-37.7944302667, 175.3943967333, "196"], +[-37.7902842667, 175.3925200667, "151"], +[-37.79289115, 175.3931896, "174"], +[-37.7936966833, 175.3937764, "188"], +[-37.7941318167, 175.3948274667, "191"], +[-37.7978721333, 175.3984214333, "249"], +[-37.7981105667, 175.39574825, "232A"], +[-37.7938025333, 175.3924897, "178"], +[-37.7985639333, 175.3952936333, "232B"], +[-37.7918765, 175.3926438167, "162"], +[-37.7908330333, 175.39227155, "154"], +[-37.7962404, 175.3968673, "225"], +[-37.7923051, 175.3933906333, "171A"], +[-37.7927951833, 175.3942652333, "171B"], +[-37.7901405833, 175.3919332833, "146"], +[-37.7965292833, 175.396445, "226"], +[-37.7989539333, 175.3987508667, "258"], +[-37.7975085, 175.3942399167, "218A"], +[-37.7982403667, 175.3938506167, "218B"], +[-37.7947115833, 175.3953049, "203"], +[-37.7925679167, 175.3935303833, "171C"], +[-37.7951510667, 175.3951699667, "206"], +[-37.7942058167, 175.39426, "192"], +[-37.8151522, 175.3671718, "2"], +[-37.8124476333, 175.3641774667, "38C"], +[-37.8142324833, 175.3640258333, "36"], +[-37.8147477833, 175.3658554333, "18"], +[-37.8149241, 175.3663270333, "14"], +[-37.8127630333, 175.3645959667, "38D"], +[-37.8802473333, 175.4761364833, "161"], +[-37.8803540333, 175.4775673167, "169A"], +[-37.8808955167, 175.4678431, "87A"], +[-37.8812967167, 175.45925645, "22A"], +[-37.8801625833, 175.4788012833, "181"], +[-37.8801798667, 175.4784953, "179"], +[-37.8805060333, 175.4783115333, "175"], +[-37.8802037167, 175.4779421333, "171"], +[-37.8802002, 175.4782253667, "173"], +[-37.88066575, 175.4696257, "105"], +[-37.88142225, 175.4685359, "99D"], +[-37.880149, 175.4790061333, "183"], +[-37.8807033, 175.4684905333, "99A"], +[-37.8811922, 175.4685214167, "99C"], +[-37.8809802667, 175.4685055, "99B"], +[-37.88134225, 175.4657706, "69"], +[-37.8807472167, 175.46754285, "83"], +[-37.8802148333, 175.4776531667, "169"], +[-37.8802820833, 175.4763336, "163"], +[-37.8802558333, 175.4772608667, "165"], +[-37.8806246667, 175.4705465167, "113"], +[-37.88113685, 175.4643511667, "53A"], +[-37.88095905, 175.4643489, "53"], +[-37.88154715, 175.4657577833, "67"], +[-37.8809616167, 175.4639502667, "49"], +[-37.8802025833, 175.48084275, "191A"], +[-37.8806056333, 175.47098625, "117"], +[-37.88044865, 175.47329545, "127"], +[-37.8804726333, 175.47306075, "125"], +[-37.8806984167, 175.4686680667, "101"], +[-37.8805955167, 175.4711419833, "117A"], +[-37.8806145167, 175.4707781333, "115"], +[-37.88164575, 175.45804455, "16B"], +[-37.88036875, 175.4755842, "153"], +[-37.8806508333, 175.4700866667, "109"], +[-37.8815960333, 175.4577537, "14"], +[-37.88151485, 175.4579781667, "16A"], +[-37.8813847833, 175.4644447333, "55"], +[-37.8813670167, 175.4645692667, "57"], +[-37.8809571333, 175.4641156833, "51"], +[-37.8816293, 175.45738225, "10"], +[-37.8818759333, 175.4575147, "12A"], +[-37.8820464833, 175.4575854833, "12B"], +[-37.8820319167, 175.4576747167, "12C"], +[-37.8818586167, 175.4576652167, "12D"], +[-37.8810945667, 175.46145875, "36"], +[-37.8810898, 175.46167115, "38"], +[-37.8810809667, 175.461937, "40"], +[-37.8810701667, 175.4621895167, "42"], +[-37.8812240833, 175.45898385, "20"], +[-37.88121955, 175.45918975, "22"], +[-37.8811737667, 175.45983295, "24"], +[-37.88115855, 175.46004515, "26"], +[-37.8811441, 175.46023075, "28"], +[-37.8814057333, 175.4604056667, "30"], +[-37.8811296167, 175.4604632667, "32"], +[-37.88144325, 175.4580904667, "18"], +[-37.88168545, 175.4564695667, "2"], +[-37.8809346833, 175.4645998167, "59"], +[-37.8809249833, 175.4648314, "61"], +[-37.8810648667, 175.4624290833, "44"], +[-37.8816609833, 175.4570327667, "8"], +[-37.8804975333, 175.4721639167, "119"], +[-37.8804971667, 175.4724005167, "121"], +[-37.8806352, 175.4729319167, "123A"], +[-37.8804951667, 175.4726299167, "123"], +[-37.8806614, 175.4698499833, "107"], +[-37.8806724167, 175.4731077667, "125A"], +[-37.8808698667, 175.47335925, "129"], +[-37.8808554167, 175.4735094333, "131"], +[-37.8804224667, 175.4735332333, "133"], +[-37.8804913, 175.47469655, "137B"], +[-37.8803901, 175.4747040167, "137"], +[-37.8803887333, 175.47486625, "139"], +[-37.8807482167, 175.46714865, "77A"], +[-37.8807597833, 175.4669996167, "77"], +[-37.8807607667, 175.4673298667, "79"], +[-37.88104675, 175.46741105, "81"], +[-37.8812452833, 175.4676640333, "85"], +[-37.8809039167, 175.4650308333, "63"], +[-37.88112735, 175.4652241167, "65A"], +[-37.8808660833, 175.4654164833, "65"], +[-37.8811361, 175.4657563, "71"], +[-37.8808503, 175.4658921167, "73"], +[-37.8808297667, 175.4661495833, "75"], +[-37.8807330167, 175.4677691667, "87"], +[-37.8811556833, 175.46787915, "89"], +[-37.88071555, 175.4680383167, "91A"], +[-37.8807704167, 175.46804005, "91B"], +[-37.88083325, 175.4680391667, "91C"], +[-37.8809986, 175.4680511, "91"], +[-37.8807155167, 175.46826605, "93"], +[-37.8809702167, 175.4682232667, "95"], +[-37.8807815333, 175.4750173333, "143"], +[-37.8803783667, 175.4751021, "145"], +[-37.88035755, 175.4753576667, "147"], +[-37.8807471667, 175.47541785, "149"], +[-37.8807513667, 175.4755767167, "151"], +[-37.8803393, 175.4758476333, "159"], +[-37.8802462333, 175.4774083333, "167"], +[-37.8800620667, 175.4804408, "189"], +[-37.8800557667, 175.48072595, "191"], +[-37.88004135, 175.481018, "193"], +[-37.8807389667, 175.47578795, "155"], +[-37.88007905, 175.4799234833, "185"], +[-37.88086485, 175.4703347667, "111A"], +[-37.8806350333, 175.4703154167, "111"], +[-37.8800789, 175.4801471833, "187"], +[-37.8800045833, 175.4815507667, "197"], +[-37.8800214333, 175.4812237167, "195"], +[-37.8939151167, 175.4701667, "27"], +[-37.8936762, 175.4701298, "31"], +[-37.8924783167, 175.4700222667, "47"], +[-37.8918865167, 175.469973, "51"], +[-37.89367495, 175.4697996667, "24"], +[-37.8943151667, 175.4702028667, "7"], +[-37.8941286667, 175.4702044, "23"], +[-37.8942378667, 175.4698431, "2"], +[-37.8945567833, 175.47024855, "1/1-3/1"], +[-37.8935522667, 175.4697719, "28"], +[-37.8939433, 175.4703330667, "25"], +[-37.8937860667, 175.4701428667, "29"], +[-37.8935538167, 175.4701164833, "41"], +[-37.8941460167, 175.46983875, "14"], +[-37.8938438167, 175.46980825, "18"], +[-37.8937419667, 175.4698073167, "22"], +[-37.8944316, 175.4702330333, "3"], +[-37.8943035167, 175.4704350167, "9"], +[-37.8926233833, 175.4700377333, "43"], +[-37.8922256167, 175.47000115, "49"], +[-37.8917971667, 175.46961, "54"], +[-37.8926854, 175.469645, "40"], +[-37.8921227167, 175.4696225333, "48"], +[-37.8939403167, 175.4698126, "16"], +[-37.8909714667, 175.4681493667, "33"], +[-37.89113605, 175.4681601333, "31"], +[-37.8912736333, 175.4686223167, "26"], +[-37.892202, 175.4686328333, "16"], +[-37.8921055833, 175.46861625, "18"], +[-37.8912406833, 175.4681574833, "27"], +[-37.89073535, 175.4685119833, "32"], +[-37.89037515, 175.4686127333, "36"], +[-37.8907882833, 175.4681261167, "37-39"], +[-37.8905470833, 175.46806415, "41"], +[-37.8928384833, 175.4687398333, "4"], +[-37.8927622667, 175.46885875, "8"], +[-37.8926823333, 175.4687259, "10"], +[-37.89258095, 175.4687121167, "12"], +[-37.89248485, 175.4687019167, "14"], +[-37.9064365333, 175.4541838333, "29"], +[-37.9065554833, 175.4549096667, "1/35"], +[-37.9060750333, 175.4550532833, "3/35"], +[-37.9058351667, 175.4555274667, "5/35"], +[-37.9055143333, 175.4559182333, "7/35"], +[-37.9065810667, 175.4558807167, "36"], +[-37.9065682333, 175.4553069, "37"], +[-37.9064074667, 175.4522252167, "9"], +[-37.9059521, 175.45592445, "2/35"], +[-37.9108997167, 175.4805822667, "3"], +[-37.9109122833, 175.47947205, "6A"], +[-37.9109177167, 175.47936065, "8"], +[-37.9111175, 175.4797094, "10"], +[-37.9113005167, 175.4794321333, "12"], +[-37.9111916333, 175.4793347333, "12A"], +[-37.9112471833, 175.4797754667, "14"], +[-37.9112473667, 175.4800788167, "11"], +[-37.9113031333, 175.479914, "13"], +[-37.91063835, 175.4803100333, "1"], +[-37.9104951, 175.4800418667, "2"], +[-37.9107454333, 175.4798887833, "4"], +[-37.9108743667, 175.4802328833, "5"], +[-37.9109565333, 175.4797847, "6"], +[-37.9110407167, 175.4801576333, "7"], +[-37.9112238167, 175.4804073167, "9"], +[-37.921572, 175.4690554667, "8"], +[-37.9210102667, 175.4691739667, "1"], +[-37.9209054, 175.4687952333, "2"], +[-37.92139265, 175.4695081333, "3"], +[-37.9212156833, 175.4688233667, "4"], +[-37.92161785, 175.4693603333, "5"], +[-37.9215667, 175.4686771667, "6"], +[-37.8971280667, 175.3833620167, "104"], +[-37.8928069667, 175.3849023833, "58"], +[-37.8960316833, 175.3834830167, "1/84"], +[-37.8904228167, 175.38549425, "28"], +[-37.8953458333, 175.3837370167, "84"], +[-37.82145425, 175.3649986833, "7"], +[-37.81972895, 175.3640394833, "24"], +[-37.8211835333, 175.3645971667, "11"], +[-37.8207776167, 175.3647366833, "14"], +[-37.8209467167, 175.3640718167, "15"], +[-37.8203904333, 175.3652387, "12"], +[-37.9137399667, 175.3922778167, "2/73"], +[-37.91124595, 175.39246205, "46"], +[-37.9139008833, 175.3922517333, "3/73"], +[-37.91350815, 175.39233345, "1/73"], +[-37.9176178167, 175.4598785667, "19"], +[-37.9184013833, 175.4603797833, "14"], +[-37.9186543333, 175.4622474833, "6"], +[-37.9173606667, 175.46006885, "19B"], +[-37.9174988, 175.4603532, "19C"], +[-37.9177378167, 175.4601680667, "19D"], +[-37.91904695, 175.4627864167, "1"], +[-37.91872175, 175.46300145, "2"], +[-37.91901275, 175.46243355, "3"], +[-37.9186912, 175.46265345, "4"], +[-37.91856195, 175.4613744167, "10"], +[-37.91851535, 175.4609194, "12"], +[-37.9189516833, 175.4617426667, "5"], +[-37.9188849, 175.4613117333, "7"], +[-37.9186173667, 175.4618227833, "8"], +[-37.9188575667, 175.4608533167, "9"], +[-37.9173323833, 175.4597201333, "19A"], +[-37.9178891, 175.4598711167, "17"], +[-37.9180202833, 175.46025785, "16"], +[-37.9016754833, 175.4689591, "10"], +[-37.9008128667, 175.4686879833, "2"], +[-37.9009759333, 175.46843985, "1"], +[-37.9014464, 175.4685093167, "5"], +[-37.90130095, 175.4688850167, "6"], +[-37.9016211667, 175.4685312667, "7"], +[-37.9014644167, 175.4690226833, "8"], +[-37.9014864167, 175.4687479667, "9"], +[-37.9010720333, 175.4687982333, "4"], +[-37.9011746, 175.4685293333, "3"], +[-37.9013743333, 175.4862629167, "3"], +[-37.9017248, 175.48698725, "6"], +[-37.9012848, 175.4859531833, "2"], +[-37.9016014833, 175.4860586167, "10"], +[-37.9014527667, 175.4865486167, "4"], +[-37.90159855, 175.48677855, "5"], +[-37.90183005, 175.4869517667, "7"], +[-37.9017713833, 175.4866214167, "8"], +[-37.9016935, 175.4863532333, "9"], +[-37.90753, 175.46902475, "11"], +[-37.9095893167, 175.4677886667, "39B"], +[-37.9109792833, 175.4682655, "46A"], +[-37.91108275, 175.4685749667, "46B"], +[-37.91115625, 175.4686338833, "48C"], +[-37.9110050167, 175.46807085, "48A"], +[-37.91095895, 175.46781955, "48"], +[-37.9108204, 175.4678798667, "46"], +[-37.9110788833, 175.4683501, "48B"], +[-37.9113655167, 175.4678862333, "52B"], +[-37.9108344833, 175.4674433667, "45"], +[-37.9080208833, 175.4692374833, "22"], +[-37.9083263167, 175.4686353333, "27"], +[-37.90844025, 175.4697672333, "26"], +[-37.90818025, 175.4691643, "22A"], +[-37.91258895, 175.4673144833, "64"], +[-37.9123684167, 175.4671105167, "62"], +[-37.9127896, 175.4663434833, "67"], +[-37.91150695, 175.46757075, "54"], +[-37.9098419667, 175.4683599167, "40"], +[-37.91097155, 175.4673723, "47"], +[-37.9078617667, 175.4693023667, "20"], +[-37.9089053833, 175.4683338, "29"], +[-37.9099875333, 175.46828695, "42"], +[-37.9113045167, 175.4682282833, "50A"], +[-37.9107373, 175.4665437833, "47C"], +[-37.9108713, 175.4665006167, "49B"], +[-37.9129575833, 175.4665350833, "69"], +[-37.9108057333, 175.4667861, "47B"], +[-37.9108904167, 175.4670609667, "47A"], +[-37.9110041, 175.4668838667, "49A"], +[-37.9111488833, 175.4673072667, "49"], +[-37.9127369333, 175.46653495, "65"], +[-37.91122205, 175.46770665, "52"], +[-37.9113599, 175.467657, "52A"], +[-37.9075002667, 175.4694598, "12"], +[-37.9076741, 175.46939185, "14"], +[-37.9078864833, 175.4699014333, "16"], +[-37.9079676667, 175.46986515, "18"], +[-37.90833225, 175.4695654167, "24"], +[-37.9084313667, 175.4690023, "28"], +[-37.9096631167, 175.46843925, "38"], +[-37.9096189, 175.4680248667, "39"], +[-37.911315, 175.4684015667, "50"], +[-37.9073078333, 175.4691221167, "9"], +[-37.9093386167, 175.4686052333, "34"], +[-37.9091743667, 175.4682295833, "35"], +[-37.90945425, 175.4681136333, "37"], +[-37.90950645, 175.4685246333, "36"], +[-37.9091745333, 175.4686900667, "32"], +[-37.9127273333, 175.4669306667, "66"], +[-37.913043, 175.4669127667, "68"], +[-37.9113586333, 175.4672288167, "51"], +[-37.9113531667, 175.4670099667, "51A"], +[-37.9127951, 175.46667535, "71"], +[-37.884095, 175.4568770667, "69A"], +[-37.8838324333, 175.4568632333, "73A"], +[-37.8866347667, 175.4565719833, "43"], +[-37.8906992, 175.4569129667, "5"], +[-37.8905596667, 175.4568912833, "7"], +[-37.8892758333, 175.456777, "13A"], +[-37.8901881167, 175.45687625, "1/11-11/11"], +[-37.89070845, 175.4565194333, "1/4-3/4"], +[-37.8902009333, 175.4563996667, "1/6-32/6"], +[-37.8880562333, 175.4552566667, "26A"], +[-37.8844905833, 175.4563941, "65"], +[-37.8840861833, 175.45635875, "69"], +[-37.8863777, 175.45685, "45A"], +[-37.8909978167, 175.4569555833, "3"], +[-37.8863633167, 175.4571221667, "45B"], +[-37.8864835667, 175.4565624833, "45"], +[-37.8881257667, 175.4569633333, "25A"], +[-37.8905126667, 175.4574578833, "5A"], +[-37.8907166167, 175.4575558333, "5B"], +[-37.8866317167, 175.4572218, "41A"], +[-37.8873822167, 175.4566324, "33"], +[-37.8872964167, 175.4566407167, "35"], +[-37.8866143833, 175.4569883667, "41"], +[-37.8837334333, 175.45685885, "75A"], +[-37.8860936, 175.4570698167, "49"], +[-37.8855037167, 175.4564867333, "57"], +[-37.8847617833, 175.4564164833, "59"], +[-37.8844513167, 175.4566735333, "65A"], +[-37.88419435, 175.45689485, "67A"], +[-37.8842829333, 175.4563860333, "67"], +[-37.88391675, 175.4563527, "73"], +[-37.8837116667, 175.4563469333, "75"], +[-37.889394, 175.4567865833, "13"], +[-37.8890782333, 175.4567699333, "15"], +[-37.8888433833, 175.4567615833, "17"], +[-37.8886293333, 175.45674825, "19"], +[-37.8884455333, 175.4567414833, "21"], +[-37.8882809333, 175.45673085, "23"], +[-37.8881163667, 175.456655, "25"], +[-37.8880094667, 175.4562455667, "26"], +[-37.89142225, 175.4569765, "1"], +[-37.8914418, 175.4565121, "2"], +[-37.8870694, 175.4566186333, "37"], +[-37.8868689667, 175.45709495, "39A"], +[-37.8868342167, 175.4565953333, "39"], +[-37.8863517167, 175.4573732167, "45C"], +[-37.8861983667, 175.4570712667, "47A"], +[-37.8862286, 175.4568411833, "47B"], +[-37.8880125833, 175.4547576833, "26B"], +[-37.8860945833, 175.4565352167, "49A"], +[-37.8904199167, 175.4568860167, "1/9-12/9"], +[-37.8857833, 175.4565171833, "53"], +[-37.8856455167, 175.45651885, "55"], +[-37.8817373833, 175.4556858833, "72"], +[-37.88593655, 175.45653005, "51"], +[-37.8862765833, 175.4565127, "47"], +[-37.8775379833, 175.4825127167, "28A"], +[-37.87727315, 175.482376, "28"], +[-37.87729155, 175.4821068667, "26"], +[-37.8769019667, 175.4786293, "4C"], +[-37.8767004333, 175.4787606, "4B"], +[-37.8772910833, 175.4818029333, "24"], +[-37.8771890667, 175.48153255, "22"], +[-37.87708045, 175.4812278, "20"], +[-37.8775351, 175.4826397667, "30A"], +[-37.8772534167, 175.4827040167, "30"], +[-37.877579, 175.4818970667, "24A"], +[-37.876712, 175.4812017667, "21"], +[-37.8773884333, 175.4832404167, "36"], +[-37.8769804167, 175.4824093, "27"], +[-37.8766636667, 175.482704, "31B"], +[-37.8769937167, 175.4830107167, "31"], +[-37.8767516667, 175.479482, "8A"], +[-37.8769705667, 175.4818533667, "23"], +[-37.8766017167, 175.48246365, "29A"], +[-37.8764641833, 175.4825834, "29B"], +[-37.8769964667, 175.4820980833, "25"], +[-37.8769606333, 175.4826863833, "29"], +[-37.87679475, 175.4828674667, "31A"], +[-37.8770826, 175.4832520333, "33"], +[-37.8772377, 175.48334835, "35"], +[-37.8775367167, 175.48363695, "36A"], +[-37.8775890833, 175.4831116, "34"], +[-37.8773408667, 175.4829609, "32"], +[-37.8762828667, 175.4801149667, "11"], +[-37.87597055, 175.4792251167, "3"], +[-37.8760466167, 175.4794375833, "5"], +[-37.8761314, 175.4796617, "7"], +[-37.8764699833, 175.48058085, "15"], +[-37.8765455167, 175.4808159833, "17"], +[-37.8767292667, 175.48028335, "14"], +[-37.8765539833, 175.4798159833, "10"], +[-37.87646245, 175.4795675, "8"], +[-37.8763712167, 175.4793057167, "6"], +[-37.8776228167, 175.481266, "20B"], +[-37.8775729667, 175.482055, "26A"], +[-37.8776195833, 175.4814085333, "22B"], +[-37.8765414, 175.4790666667, "6A"], +[-37.8773585333, 175.48356815, "38A"], +[-37.8762120667, 175.4798686667, "9"], +[-37.8766452667, 175.4800751167, "12"], +[-37.8763675, 175.48034475, "13"], +[-37.8766347833, 175.4810402667, "19"], +[-37.8774052167, 175.4812147167, "20A"], +[-37.8774057667, 175.4814070167, "22A"], +[-37.8762723167, 175.479009, "4"], +[-37.8761971167, 175.4787850833, "2"], +[-37.8767849, 175.4796004667, "10A"], +[-37.87648555, 175.47892075, "4A"], +[-37.8767848, 175.4788595833, "6B"], +[-37.8997092333, 175.48180175, "7"], +[-37.8999472667, 175.4825543, "15"], +[-37.8999358167, 175.4815958167, "4"], +[-37.9000434833, 175.4825363833, "17"], +[-37.9002215333, 175.4828014167, "16"], +[-37.90002095, 175.4818578, "6"], +[-37.9000853167, 175.48210025, "8"], +[-37.8997820833, 175.4820087333, "9"], +[-37.8998240167, 175.4822147833, "11"], +[-37.8998576333, 175.48247455, "13"], +[-37.8996422833, 175.4815878833, "5"], +[-37.9002942833, 175.482764, "14"], +[-37.9001676167, 175.4824792667, "12"], +[-37.89953345, 175.4811912333, "1"], +[-37.8997866833, 175.4810307833, "2"], +[-37.8995802333, 175.4813792333, "3"], +[-37.9001401333, 175.4822942333, "10"], +[-37.8914648833, 175.4772108167, "7"], +[-37.8919011833, 175.47723515, "1"], +[-37.89187105, 175.47681175, "2"], +[-37.8913584, 175.4765354167, "3/6"], +[-37.8897734833, 175.47664395, "22"], +[-37.8913508, 175.47668445, "1/6"], +[-37.8915273667, 175.4762602, "12/6"], +[-37.8916285, 175.4772315333, "5"], +[-37.8913796, 175.4761122167, "7/6"], +[-37.8915023833, 175.4767099333, "8/6"], +[-37.89152, 175.4763519333, "11/6"], +[-37.8915372, 175.4760592333, "14/6"], +[-37.89153065, 175.4761616667, "13/6"], +[-37.8915142333, 175.4764663667, "10/6"], +[-37.8913717333, 175.4763199333, "5/6"], +[-37.8905254833, 175.4766904, "14"], +[-37.8903609333, 175.4766834833, "16"], +[-37.88999105, 175.4766566833, "20"], +[-37.8898741167, 175.4770700667, "21"], +[-37.88946535, 175.4766037667, "24"], +[-37.8890790333, 175.4764705833, "28"], +[-37.88883405, 175.4767525667, "29"], +[-37.8886383, 175.47663365, "31"], +[-37.8913739667, 175.47622135, "6/6"], +[-37.8913652833, 175.47641835, "4/6"], +[-37.8901779667, 175.4766671167, "18"], +[-37.8843281, 175.4794198167, "104"], +[-37.88535045, 175.4866782167, "184"], +[-37.8854485333, 175.4864475167, "182"], +[-37.8867971833, 175.4705084167, "34"], +[-37.8873998833, 175.4682775833, "20"], +[-37.8873415667, 175.46844545, "22"], +[-37.884267, 175.4871188333, "189"], +[-37.8843410333, 175.4813043, "114A"], +[-37.8836708667, 175.47833265, "90A"], +[-37.88402285, 175.4784176667, "2/92"], +[-37.8841246, 175.4784325, "1/92"], +[-37.8874953667, 175.4680249333, "18"], +[-37.8882076333, 175.4665346667, "2"], +[-37.8847749, 175.4777212667, "89"], +[-37.8847129167, 175.4883360167, "198"], +[-37.8852412667, 175.4950174167, "258"], +[-37.8851558333, 175.4809135167, "111A"], +[-37.88425915, 175.490565, "219"], +[-37.8843227167, 175.4792336667, "102"], +[-37.8853703333, 175.47613215, "70"], +[-37.8841992667, 175.4963818333, "267"], +[-37.8839456333, 175.47862415, "96"], +[-37.8849404833, 175.4785609167, "91B"], +[-37.8834439167, 175.5003043667, "309"], +[-37.8859648333, 175.4880242333, "2/194"], +[-37.88679165, 175.4708238833, "36"], +[-37.8846928333, 175.4966356667, "270"], +[-37.8843265, 175.4790500333, "100"], +[-37.8847626167, 175.48078795, "109"], +[-37.88474565, 175.4788347167, "93"], +[-37.8843263, 175.4786463833, "94"], +[-37.8847555167, 175.4792519167, "95"], +[-37.8847507833, 175.4802669333, "103"], +[-37.8877261667, 175.4675846667, "1/14-8/14"], +[-37.884759, 175.4805435333, "105"], +[-37.8843192, 175.4802557667, "108"], +[-37.8847632167, 175.4813335333, "113"], +[-37.8880664667, 175.4668566667, "4"], +[-37.8843192833, 175.4781745833, "88"], +[-37.8842179667, 175.4927192667, "239"], +[-37.8842136333, 175.4948947333, "257"], +[-37.8841869, 175.4971351, "275"], +[-37.8842592167, 175.487337, "191"], +[-37.8842746, 175.4896256667, "213"], +[-37.8842726, 175.4898100833, "1/213"], +[-37.8846939167, 175.49589215, "264"], +[-37.8847557667, 175.480013, "101"], +[-37.8847654333, 175.4817589833, "117"], +[-37.8843088167, 175.4819155, "120"], +[-37.88495845, 175.4760208167, "74A"], +[-37.8858546833, 175.48954395, "1/214"], +[-37.8847226333, 175.49078585, "222"], +[-37.8853824333, 175.4904875333, "220"], +[-37.8851609, 175.4769312833, "75"], +[-37.8832135333, 175.4966401667, "273"], +[-37.8871125333, 175.4687638667, "24A"], +[-37.8836533833, 175.49965535, "303"], +[-37.8847623833, 175.4784197, "91"], +[-37.8853003167, 175.4812587, "113B"], +[-37.8839543333, 175.4780861333, "86"], +[-37.8846811667, 175.49516135, "260"], +[-37.8856284667, 175.4877555167, "1/194"], +[-37.88470535, 175.4899576833, "1/218"], +[-37.8858448, 175.4898961, "2/218"], +[-37.8857487667, 175.4882389667, "3/194"], +[-37.8858920833, 175.4886561833, "4/194"], +[-37.8854131167, 175.4885925, "202"], +[-37.8852231333, 175.48536035, "174"], +[-37.88721395, 175.4674219167, "12A"], +[-37.8850944, 175.4812663333, "113A"], +[-37.8858759667, 175.4852820333, "172"], +[-37.8843297167, 175.4777121167, "80"], +[-37.8867259833, 175.4716590667, "42"], +[-37.8841291333, 175.4812217833, "114"], +[-37.8878423667, 175.46733415, "10"], +[-37.8873731, 175.46722755, "12"], +[-37.8873645167, 175.4677444, "16A"], +[-37.8873792, 175.4676194833, "16B"], +[-37.8871674667, 175.4675664, "16C"], +[-37.8871631333, 175.4677062, "16D"], +[-37.88761885, 175.4678307833, "16"], +[-37.8872513, 175.4677940833, "18A"], +[-37.8868627833, 175.4703096167, "32"], +[-37.8866729333, 175.4725751667, "46"], +[-37.8866649333, 175.4727545667, "48"], +[-37.8866508833, 175.4729862833, "50"], +[-37.8866308167, 175.4733044333, "52"], +[-37.8866201167, 175.4735912, "54"], +[-37.8866046, 175.4738994833, "56"], +[-37.8867646333, 175.4710940833, "38"], +[-37.8867434167, 175.4713738, "40"], +[-37.8865795333, 175.471651, "42A"], +[-37.8867192167, 175.4718726833, "44"], +[-37.8879124167, 175.4671744, "8"], +[-37.8847677333, 175.48104275, "111"], +[-37.8842908, 175.4810946667, "112"], +[-37.8847655167, 175.48152025, "115"], +[-37.8842992333, 175.4815339, "116"], +[-37.8843125167, 175.4817539167, "118"], +[-37.8847685333, 175.4795402167, "97"], +[-37.8847615667, 175.4797710333, "99"], +[-37.8849925167, 175.48009295, "101A"], +[-37.8850730167, 175.4803513167, "103A"], +[-37.8850517667, 175.4806989167, "107"], +[-37.8842659667, 175.4776982667, "80A"], +[-37.8843255167, 175.4779083833, "82"], +[-37.88372445, 175.4779537667, "84A"], +[-37.88391925, 175.4779436333, "84"], +[-37.8839372667, 175.4783140167, "90"], +[-37.8849343833, 175.47834135, "91A"], +[-37.8843215, 175.47842775, "92"], +[-37.88379995, 175.4786243333, "96A"], +[-37.8843308167, 175.47886585, "98"], +[-37.8846524333, 175.4766493167, "76"], +[-37.8845290833, 175.4764747667, "78A"], +[-37.8845141833, 175.47672525, "78"], +[-37.8847249, 175.4874558833, "192"], +[-37.88422795, 175.4880656333, "197"], +[-37.8842586167, 175.4888764, "205"], +[-37.8847152, 175.4891847, "206"], +[-37.8847452333, 175.48597775, "180"], +[-37.8842725667, 175.4862342167, "181"], +[-37.8842734167, 175.4864492, "183"], +[-37.88427415, 175.4866713, "185"], +[-37.8847306167, 175.48657095, "186"], +[-37.88426915, 175.48689685, "187"], +[-37.8842773667, 175.4856398, "179"], +[-37.8852212833, 175.4924678, "236"], +[-37.8854883167, 175.4880036333, "194"], +[-37.8854214333, 175.48956085, "212"], +[-37.8853153667, 175.4872245, "190"], +[-37.8841928667, 175.4931503833, "241"], +[-37.8844711667, 175.4984144, "290"], +[-37.8842522667, 175.4992926333, "296"], +[-37.88368415, 175.4993789667, "299"], +[-37.8852287833, 175.49615515, "268"], +[-37.8859148667, 175.4897217, "214"], +[-37.8872887667, 175.4686820167, "24"], +[-37.8862459167, 175.47553185, "66"], +[-37.884721, 175.48537045, "176"], +[-37.88427605, 175.4851847833, "175"], +[-37.8842737833, 175.4854139833, "177"], +[-37.88469795, 175.4945610167, "252"], +[-37.8853844667, 175.47677695, "73"], +[-37.8850111333, 175.4763984, "74"], +[-37.8847382167, 175.4869962333, "188"], +[-37.8872426333, 175.4689359833, "26"], +[-37.8847101833, 175.4880854667, "196"], +[-37.8850733, 175.4902483167, "218"], +[-37.8865769333, 175.4741854167, "58"], +[-37.8865507, 175.4747159333, "62"], +[-37.88798625, 175.46700445, "6"], +[-37.8865659, 175.4744709833, "60"], +[-37.8865476667, 175.4748834667, "64"], +[-37.8871864333, 175.4691891, "28"], +[-37.8871582, 175.4693788167, "30"], +[-37.8869467833, 175.4687736667, "26A"], +[-37.8856446167, 175.4771148167, "71"], +[-37.8851925333, 175.4762547833, "72"], +[-37.8869292167, 175.4689437, "26B"], +[-37.88426605, 175.48474735, "171"], +[-37.884281, 175.4849628667, "173"], +[-37.8847245167, 175.4848834667, "170"], +[-37.8680607667, 175.4844529, "318"], +[-37.86322315, 175.477174, "229"], +[-37.86023885, 175.47171045, "177"], +[-37.86190065, 175.4739293333, "200"], +[-37.8673314333, 175.4835841, "306"], +[-37.8671325167, 175.4839981167, "307"], +[-37.8657566333, 175.4825140333, "287"], +[-37.85661605, 175.4580103167, "35"], +[-37.8584986667, 175.4693192667, "151"], +[-37.86640715, 175.4833253333, "293"], +[-37.8662972, 175.48401185, "301"], +[-37.8615068, 175.4740312667, "197"], +[-37.86248105, 175.4746844667, "208"], +[-37.8654257333, 175.4789157833, "256"], +[-37.86815405, 175.4856843833, "327"], +[-37.8559617833, 175.4538523, "5"], +[-37.8560217167, 175.4541485167, "7"], +[-37.8545882, 175.4628883167, "73"], +[-37.8623530667, 175.4756642667, "211"], +[-37.8571193833, 175.46393905, "91"], +[-37.8612014833, 175.47249975, "184"], +[-37.8409288167, 175.37611985, "48"], +[-37.8396866, 175.3762834833, "52"], +[-37.840238, 175.3744657333, "75"], +[-37.84304635, 175.3783802167, "24"], +[-37.8407690333, 175.3753619333, "59"], +[-37.8447812333, 175.3774333333, "5"], +[-37.83956405, 175.3732069667, "82"], +[-37.84004855, 175.3731001333, "83"], +[-37.8401183167, 175.3739726667, "77B"], +[-37.8406453, 175.3751587333, "63"], +[-37.8435605667, 175.3793269333, "20"], +[-37.8417591667, 175.3760676667, "49"], +[-37.8413693, 175.3763867167, "46"], +[-37.8399756833, 175.3748775, "74"], +[-37.8421274167, 175.3758927833, "47"], +[-37.8433708, 175.37858675, "22"], +[-37.8410302333, 175.3737431833, "77A"], +[-37.7912387167, 175.4809981333, "33"], +[-37.7921037167, 175.48244855, "34"], +[-37.7931116833, 175.4894669167, "108"], +[-37.7922422833, 175.4888664333, "109"], +[-37.8904655, 175.4340570833, "16"], +[-37.8912684167, 175.4347386333, "38"], +[-37.8918202833, 175.4356853333, "41"], +[-37.9076504833, 175.4808292167, "2"], +[-37.9077122167, 175.4810869667, "3"], +[-37.9078427, 175.4811889667, "4"], +[-37.9079905333, 175.4810739167, "5"], +[-37.9079955, 175.4808534333, "6"], +[-37.9078875833, 175.48062165, "7"], +[-37.8624973167, 175.3995043333, "1302"], +[-37.86458815, 175.3984334333, "1302B"], +[-37.8495279667, 175.3855142, "1105"], +[-37.8409388, 175.3715485333, "965"], +[-37.8497607833, 175.3787181667, "1048D"], +[-37.8474886167, 175.3815213, "1071"], +[-37.8692470333, 175.4060449833, "1399"], +[-37.86903025, 175.4050720333, "1410"], +[-37.8720073, 175.4080915167, "1435"], +[-37.8472647, 175.3801392333, "1050"], +[-37.8484202, 175.37745075, "1048B"], +[-37.8501358167, 175.37656745, "1048C"], +[-37.8464420667, 175.3786923167, "1048A"], +[-37.8636343667, 175.3989099167, "1302A"], +[-37.86024445, 175.39640055, "1262B"], +[-37.8455550167, 175.3768668, "1032"], +[-37.8498453667, 175.3860935167, "1113"], +[-37.8508258833, 175.3877938167, "1129"], +[-37.8538246333, 175.3925789833, "1193"], +[-37.8560212667, 175.3943255167, "1209"], +[-37.8600963167, 175.39687755, "1262A"], +[-37.8619671667, 175.398902, "1292"], +[-37.8647795167, 175.4015556333, "1328A"], +[-37.8641711, 175.40119575, "1328B"], +[-37.8653665667, 175.4021896833, "1328"], +[-37.8664159, 175.4057836, "1343"], +[-37.8487010667, 175.3828026833, "1084B"], +[-37.8487082, 175.3838392667, "1095"], +[-37.84854995, 175.3826141833, "1084A"], +[-37.8614933, 175.3962749667, "1262C"], +[-37.8941389333, 175.4685426667, "1A"], +[-37.8940808333, 175.46863395, "1C"], +[-37.8941101167, 175.46858455, "1B"], +[-37.8828690833, 175.4756987833, "2"], +[-37.8829161167, 175.4758464333, "3"], +[-37.8828703333, 175.47600365, "4"], +[-37.8826165, 175.4759774167, "5"], +[-37.8827374, 175.4756385167, "1"], +[-37.8987844, 175.5778468, "196"], +[-37.894548, 175.5752196167, "249"], +[-37.8985254833, 175.5770166167, "3/207"], +[-37.8979621333, 175.5725676167, "1/207"], +[-37.9028557167, 175.5775770667, "1/159"], +[-37.8968063833, 175.5714292167, "2/209"], +[-37.8982935667, 175.5770144167, "4/207"], +[-37.9069320167, 175.5687670833, "57"], +[-37.89817425, 175.5708251167, "2/207"], +[-37.90506995, 175.5738151167, "103"], +[-37.9103484333, 175.57042275, "15"], +[-37.8938830167, 175.57586675, "1/253"], +[-37.8936416667, 175.5760817333, "2/253"], +[-37.90255875, 175.5776407833, "2/159"], +[-37.9004225167, 175.57797105, "178"], +[-37.8969604, 175.5723327, "1/209"], +[-37.8767003833, 175.4818637833, "31"], +[-37.8757476333, 175.4817359, "21A"], +[-37.87485205, 175.4797409167, "8"], +[-37.87404295, 175.47989395, "5B"], +[-37.8752598667, 175.4811949, "15A"], +[-37.8760220833, 175.4807411167, "18A"], +[-37.8743084667, 175.4802727, "7A"], +[-37.8738682667, 175.4797568167, "3C"], +[-37.8742434333, 175.47987315, "5A"], +[-37.8759584333, 175.4806079667, "16A"], +[-37.87510295, 175.48015575, "12"], +[-37.8748438833, 175.48075465, "11A"], +[-37.8763291167, 175.4819017667, "27"], +[-37.8763574333, 175.4822859833, "29A"], +[-37.8751449333, 175.48070945, "13"], +[-37.8761885667, 175.4822191333, "27A"], +[-37.8746679833, 175.4804258667, "9A"], +[-37.87496675, 175.4808899333, "13A"], +[-37.8757570833, 175.4808296833, "16"], +[-37.8758986833, 175.4809562833, "18"], +[-37.87612285, 175.4811980333, "20"], +[-37.87624255, 175.4813098333, "22"], +[-37.8748282667, 175.47948305, "4"], +[-37.875127, 175.47954055, "6"], +[-37.8765282333, 175.4819416667, "29"], +[-37.87591735, 175.48192895, "23"], +[-37.8759485667, 175.4815328667, "21"], +[-37.87574945, 175.4813294167, "19"], +[-37.8742483167, 175.4796583833, "3A"], +[-37.8745132, 175.4795744833, "3"], +[-37.8744832833, 175.4792603167, "1"], +[-37.8745364667, 175.4798557, "5"], +[-37.8746295, 175.4801628, "7"], +[-37.8747969, 175.480295, "9"], +[-37.8745014333, 175.48041985, "9B"], +[-37.8740439, 175.4796883833, "3B"], +[-37.8764163833, 175.48148435, "24"], +[-37.8753753333, 175.4813299167, "17A"], +[-37.8749682667, 175.4800068, "10"], +[-37.8761475667, 175.481741, "25"], +[-37.8755644, 175.4811591833, "17"], +[-37.8753512333, 175.4809225, "15"], +[-37.87494615, 175.4804919833, "11"], +[-37.87563925, 175.4816151667, "19A"], +[-37.8755416, 175.4806192667, "14"], +[-37.9307413833, 175.4305783833, "8"], +[-37.9316973167, 175.4500289833, "174"], +[-37.9312246333, 175.4509272167, "183"], +[-37.9317041167, 175.4519870667, "192"], +[-37.9309645833, 175.4455487, "131"], +[-37.9313707333, 175.4417409833, "106"], +[-37.93144905, 175.4439987167, "124"], +[-37.9312471833, 175.44044115, "90"], +[-37.9310525167, 175.4572123333, "249"], +[-37.9304025833, 175.4600948, "271"], +[-37.9313988167, 175.4667548167, "330"], +[-37.9317416, 175.4711342333, "370"], +[-37.9311057, 175.4496502333, "171"], +[-37.9307743333, 175.46711525, "333"], +[-37.8983426, 175.4726432167, "6"], +[-37.8982667833, 175.4723224167, "10"], +[-37.8981903, 175.4719677667, "14"], +[-37.8981034667, 175.4717559, "16"], +[-37.8979483667, 175.47163995, "18"], +[-37.8978498167, 175.4718887667, "9"], +[-37.89804025, 175.4727496, "1"], +[-37.8978692667, 175.4717117333, "11"], +[-37.8982294833, 175.4721665, "12"], +[-37.8983239333, 175.4724718833, "8"], +[-37.89833275, 175.4728329, "4"], +[-37.89817045, 175.4730263833, "2"], +[-37.8979749667, 175.4721439333, "7"], +[-37.8978645167, 175.4723602833, "5"], +[-37.8980527833, 175.4724426, "3"], +[-37.9118492167, 175.4777301333, "75"], +[-37.9071599667, 175.48024025, "27A"], +[-37.9070499833, 175.4802823167, "27"], +[-37.9133935, 175.477312, "101"], +[-37.9109577667, 175.4792493167, "58A"], +[-37.9079175667, 175.4798474167, "35"], +[-37.9057049167, 175.48129845, "18"], +[-37.9045409833, 175.4821761, "8A"], +[-37.9132981167, 175.47734815, "99"], +[-37.9151731167, 175.4762851667, "115A"], +[-37.9159149667, 175.4765031667, "128A"], +[-37.9160620833, 175.4770954, "126"], +[-37.91362925, 175.4775332333, "96"], +[-37.9161206833, 175.47737745, "124"], +[-37.9138744167, 175.4774362833, "98"], +[-37.9159982167, 175.4768568, "126A"], +[-37.9045271167, 175.4818595, "8"], +[-37.9088441167, 175.4798303833, "40"], +[-37.9080257833, 175.4798009667, "37"], +[-37.9118080833, 175.4780394667, "73"], +[-37.9120441667, 175.4783650167, "80"], +[-37.9142880667, 175.4768798167, "107B"], +[-37.9159508833, 175.4774919167, "122A"], +[-37.9050646333, 175.4819231333, "14A"], +[-37.9066002, 175.4808875, "28A"], +[-37.90519225, 175.4815441667, "16"], +[-37.91452115, 175.477165, "106"], +[-37.90746095, 175.4804961333, "32"], +[-37.91248555, 175.47814135, "86"], +[-37.9158230167, 175.4760962167, "123"], +[-37.9159919, 175.47604385, "125"], +[-37.91623445, 175.4763621, "130"], +[-37.90872535, 175.4791772, "41A"], +[-37.9044587, 175.4821471167, "6A"], +[-37.9075026667, 175.4797328167, "33A"], +[-37.9109141167, 175.4788989667, "58"], +[-37.9048600833, 175.4817091833, "12"], +[-37.9156691333, 175.4761731833, "121"], +[-37.9159156667, 175.4772401333, "120"], +[-37.9158559667, 175.4770386667, "118"], +[-37.9153897167, 175.4763100667, "117"], +[-37.9155261333, 175.4762367333, "119"], +[-37.9143680667, 175.4772159833, "104"], +[-37.9091816833, 175.4799197, "44A"], +[-37.9063697833, 175.4811747, "26B"], +[-37.9055854667, 175.4813526667, "18B"], +[-37.9140346667, 175.4774023333, "100"], +[-37.9160233167, 175.4772866833, "122B"], +[-37.9046896833, 175.4817846667, "10"], +[-37.9078630333, 175.4802907167, "34"], +[-37.9074586667, 175.4800447667, "31"], +[-37.90766965, 175.4799655333, "33"], +[-37.9121775667, 175.4782823667, "82"], +[-37.91233785, 175.4782158167, "84"], +[-37.9135061167, 175.47759595, "92"], +[-37.9141940333, 175.4769194, "107A"], +[-37.9047462167, 175.4820914167, "10A"], +[-37.9071456333, 175.4806193333, "30"], +[-37.9126591, 175.4780602, "88"], +[-37.9043394833, 175.4819642167, "6"], +[-37.9136969, 175.47784185, "96A"], +[-37.9162752167, 175.4761951167, "132"], +[-37.9120850833, 175.4778879333, "77"], +[-37.9072933667, 175.48012235, "29"], +[-37.9058775167, 175.4812227667, "20"], +[-37.9060436, 175.48114975, "22"], +[-37.90620285, 175.4810768167, "24"], +[-37.9063685833, 175.4809921833, "26"], +[-37.9065447667, 175.4809131167, "28"], +[-37.91495335, 175.47652165, "111"], +[-37.9087348, 175.4794214667, "41"], +[-37.9089801333, 175.47978555, "42"], +[-37.9089057333, 175.4793457667, "43"], +[-37.9095931667, 175.4790578, "51"], +[-37.9123723167, 175.4777452667, "81"], +[-37.9126095167, 175.47765015, "91"], +[-37.91277265, 175.4775717667, "93"], +[-37.91509955, 175.4768812333, "110"], +[-37.9152698333, 175.476794, "112"], +[-37.9154395, 175.4767326333, "114"], +[-37.91572125, 175.4765971833, "116"], +[-37.9102388667, 175.47919135, "50"], +[-37.9048902, 175.4819941833, "12A"], +[-37.9091995333, 175.47891055, "47A"], +[-37.9150900667, 175.4764547333, "113"], +[-37.91524275, 175.4763963833, "115"], +[-37.9094314833, 175.4791159333, "49"], +[-37.9096957667, 175.4794569, "48A"], +[-37.9091736667, 175.4796928333, "44"], +[-37.9104137167, 175.4791214333, "52"], +[-37.9095526333, 175.47951535, "48"], +[-37.9092440667, 175.4791909833, "47"], +[-37.905025, 175.4816333, "14"], +[-37.91218695, 175.4778348667, "77A"], +[-37.9105796, 175.4790363667, "54"], +[-37.9142164167, 175.4773281, "102"], +[-37.9093673833, 175.4796006833, "46"], +[-37.9107540667, 175.4789564333, "56"], +[-37.9090764333, 175.4792701333, "45"], +[-37.9122119833, 175.4774975, "79"], +[-37.9051519, 175.4770494, "5/37B"], +[-37.9072341833, 175.4812645, "74"], +[-37.90539015, 175.47753615, "21/37B"], +[-37.9064404833, 175.4786360667, "52"], +[-37.9053830667, 175.4751337333, "28"], +[-37.9053326, 175.4740749833, "20A"], +[-37.9055134833, 175.4740488, "20C"], +[-37.90547225, 175.47397175, "20B"], +[-37.9053470167, 175.4742053667, "20D"], +[-37.9069486333, 175.4814998167, "73"], +[-37.9051562667, 175.4778512167, "17/37B"], +[-37.9052251333, 175.4746236833, "24"], +[-37.9053746, 175.4777257833, "19/37B"], +[-37.9071479667, 175.4809996833, "72"], +[-37.9050343167, 175.47739, "24/37B"], +[-37.9049808, 175.4775142667, "25/37B"], +[-37.9051211333, 175.4773504667, "23/37B"], +[-37.9068252833, 175.4810905167, "69"], +[-37.9047089333, 175.4739594, "19"], +[-37.9040900833, 175.4718856167, "1"], +[-37.9048747833, 175.4744885333, "23"], +[-37.90479065, 175.4742263667, "21"], +[-37.905018, 175.47392355, "16"], +[-37.9063578667, 175.4783819333, "50"], +[-37.9049504167, 175.4747584333, "25"], +[-37.9050288833, 175.47502195, "27"], +[-37.9072899333, 175.48271985, "85"], +[-37.9054541333, 175.4776966667, "20/37B"], +[-37.90488845, 175.4772389833, "27/37B"], +[-37.9047877333, 175.4775819667, "13/37B"], +[-37.9049796, 175.4771942833, "28/37B"], +[-37.9073132333, 175.4815289167, "76"], +[-37.9050827, 175.47699535, "6/37B"], +[-37.9061134667, 175.4770216167, "40A"], +[-37.90611365, 175.4768269667, "38B"], +[-37.9076197, 175.4825873167, "84"], +[-37.9070038333, 175.4817050667, "75"], +[-37.9047039333, 175.47730165, "11/37B"], +[-37.9075484833, 175.4823327833, "82"], +[-37.9054264167, 175.4753033833, "30"], +[-37.9069885833, 175.47905425, "58"], +[-37.906228, 175.477926, "48"], +[-37.9058200667, 175.4765282833, "32"], +[-37.9046413667, 175.4737464333, "17"], +[-37.9050075333, 175.4778885167, "16/37B"], +[-37.90499485, 175.4768944167, "7/37B"], +[-37.9046556167, 175.4771346, "10/37B"], +[-37.90527195, 175.47690975, "1/37B"], +[-37.9052758833, 175.4771711833, "3/37B"], +[-37.9052169, 175.4771015167, "4/37B"], +[-37.90529785, 175.4770102333, "2/37B"], +[-37.9058489333, 175.47780495, "45"], +[-37.9048925167, 175.4769351667, "8/37B"], +[-37.9043826, 175.4728787667, "15"], +[-37.9049060333, 175.47352905, "12"], +[-37.9056042667, 175.47696875, "37"], +[-37.9049538167, 175.47372635, "14"], +[-37.9048069667, 175.4730782, "10"], +[-37.90405505, 175.4727157833, "11"], +[-37.9043442, 175.4726702333, "13"], +[-37.9039020833, 175.4723256667, "5"], +[-37.9046807667, 175.4726619167, "6"], +[-37.9047340667, 175.47286755, "8"], +[-37.9050737, 175.4741203667, "18"], +[-37.90621865, 175.47643995, "34"], +[-37.9055253667, 175.4767246667, "35"], +[-37.9062645167, 175.4765613333, "36"], +[-37.9059193, 175.4768274667, "38"], +[-37.90570735, 175.4773252333, "39"], +[-37.9059801833, 175.4770579, "40"], +[-37.9062604167, 175.4772333833, "42B"], +[-37.9057853667, 175.4775903, "43"], +[-37.9061028167, 175.4774772667, "44"], +[-37.90589465, 175.47796755, "47"], +[-37.9068853333, 175.48130165, "71"], +[-37.9071345833, 175.4821319833, "79"], +[-37.9074696333, 175.4820778, "80A"], +[-37.90765195, 175.4820632833, "80B"], +[-37.9071948, 175.4823366167, "81"], +[-37.90725725, 175.4825442, "83"], +[-37.9042386667, 175.4723893667, "7"], +[-37.9049427667, 175.47739025, "26/37B"], +[-37.9048325667, 175.4777169, "14/37B"], +[-37.9048868, 175.4778717167, "15/37B"], +[-37.9052664833, 175.4777734333, "18/37B"], +[-37.9053551, 175.4774051333, "22/37B"], +[-37.90398685, 175.4726027167, "9"], +[-37.9047089333, 175.4770192, "9/37B"], +[-37.9061652333, 175.4777069667, "46"], +[-37.9067892667, 175.4808744667, "67"], +[-37.9068334667, 175.47996825, "66"], +[-37.9067120833, 175.4795692, "60"], +[-37.9041594, 175.4721355, "3"], +[-37.9046192333, 175.4724616667, "4"], +[-37.9050749, 175.47524375, "29"], +[-37.9068698, 175.4786657833, "54"], +[-37.9057202, 175.4762706, "32B"], +[-37.9051451333, 175.4743827, "22"], +[-37.90625565, 175.4769934167, "40B"], +[-37.90604295, 175.4772728667, "42A"], +[-37.9047528, 175.4774456167, "12/37B"], +[-37.9073914, 175.4817937167, "78"], +[-37.9070766667, 175.4819295333, "77"], +[-37.8755341, 175.4678237, "7"], +[-37.87529185, 175.467879, "5"], +[-37.8751691333, 175.4682586333, "6"], +[-37.8759656, 175.4679058667, "13"], +[-37.87506995, 175.4678763667, "3"], +[-37.8749979833, 175.46825515, "4"], +[-37.8748353667, 175.4678732833, "1"], +[-37.8755232, 175.4682126833, "10"], +[-37.87481615, 175.4682566167, "2"], +[-37.8759362, 175.4677101333, "11"], +[-37.8756999, 175.4681576833, "12"], +[-37.87587545, 175.4680599833, "14"], +[-37.8753491, 175.4682464333, "8"], +[-37.8757606333, 175.46762115, "9"], +[-37.8187813333, 175.5099677833, "62"], +[-37.81924235, 175.5087604667, "49"], +[-37.8177396167, 175.5119011167, "86"], +[-37.8178875667, 175.51156545, "84"], +[-37.8174387167, 175.51263255, "90"], +[-37.83408825, 175.55531685, "1/1101"], +[-37.8175450333, 175.51885165, "150"], +[-37.8077506333, 175.541635, "400"], +[-37.8136809, 175.5290861, "265"], +[-37.8110874, 175.53251965, "304"], +[-37.8095875, 175.5753655167, "2/729"], +[-37.83343, 175.5554701333, "1101"], +[-37.8173373833, 175.5201625167, "160"], +[-37.80918625, 175.5753678333, "1/729"], +[-37.8101949167, 175.5340213667, "320"], +[-37.8114688333, 175.5313781167, "299"], +[-37.8110666833, 175.5317111833, "301"], +[-37.8174875833, 175.5162427833, "126"], +[-37.8121336833, 175.5303464167, "289"], +[-37.8180013167, 175.5178742, "2/138"], +[-37.81761695, 175.51742335, "1/138"], +[-37.8074874667, 175.5440482, "430"], +[-37.80752155, 175.5425832333, "416"], +[-37.8366309333, 175.5496806333, "1173"], +[-37.8169579833, 175.5214218667, "179"], +[-37.8298305, 175.5634204, "1007"], +[-37.8149217167, 175.5283630333, "247"], +[-37.8217308333, 175.5663090333, "910"], +[-37.81460935, 175.5745359167, "797"], +[-37.8234203333, 175.5658778, "924"], +[-37.8319167167, 175.5559498, "1086"], +[-37.8306048167, 175.5616193833, "1023"], +[-37.81758865, 175.57007665, "851"], +[-37.8329407, 175.55562365, "1099"], +[-37.81693675, 175.5123568167, "95"], +[-37.8182193, 175.5131360833, "88"], +[-37.8130308833, 175.5297032667, "273"], +[-37.8095776, 175.55597085, "544"], +[-37.8072376833, 175.5452215833, "443"], +[-37.81966705, 175.5090003167, "48"], +[-37.8169615333, 175.5198118833, "159"], +[-37.8169314, 175.51421915, "112"], +[-37.8080136167, 175.5463236, "452"], +[-37.807907, 175.5458772167, "448"], +[-37.80796455, 175.5461119167, "450"], +[-37.8168847833, 175.5220721833, "181"], +[-37.8354269, 175.5522720333, "1145"], +[-37.83545425, 175.5543820167, "1129"], +[-37.8082469167, 175.5385727167, "376"], +[-37.8076848, 175.5419475167, "408"], +[-37.8162252667, 175.5265092167, "225"], +[-37.8166361333, 175.52144, "1/179"], +[-37.8070565833, 175.5441373667, "429"], +[-37.8075943333, 175.5444878167, "432"], +[-37.8221778667, 175.5667572, "911"], +[-37.8179158667, 175.5105938667, "73"], +[-37.807556, 175.5460459333, "447"], +[-37.8080632333, 175.5465634, "454"], +[-37.8070305833, 175.54991865, "483"], +[-37.80831265, 175.5514465667, "526"], +[-37.80744605, 175.5634000833, "603"], +[-37.8164026833, 175.5278071167, "234"], +[-37.80656415, 175.5705962833, "665"], +[-37.81898205, 175.5685284167, "862"], +[-37.8236973167, 175.56648815, "927"], +[-37.8256295833, 175.5653636167, "965"], +[-37.8142507167, 175.57521965, "789"], +[-37.8094723167, 175.5346592, "349"], +[-37.8098434333, 175.5333155167, "319"], +[-37.8292230167, 175.5635525167, "1005"], +[-37.8173514167, 175.5221399167, "180"], +[-37.83840865, 175.5469221167, "1213"], +[-37.8379536333, 175.5475567833, "1201"], +[-37.81720545, 175.5149902333, "116"], +[-37.8085928833, 175.5380488, "370"], +[-37.80779995, 175.5386938833, "379"], +[-37.8204958333, 175.50876015, "34"], +[-37.82623815, 175.56358455, "970"], +[-37.81448725, 175.5734910333, "804"], +[-37.8222833167, 175.5659173667, "912"], +[-37.8170449333, 175.5277756167, "1/232"], +[-37.8176035333, 175.5269654167, "2/232"], +[-37.8323760333, 175.5575159333, "1078"], +[-37.83021075, 175.5612354667, "1024"], +[-37.9305489, 175.5017878333, "90"], +[-37.93116365, 175.5055481833, "122"], +[-37.9319767167, 175.5109385, "168"], +[-37.93029815, 175.4998441167, "72"], +[-37.9291897167, 175.4957679, "35"], +[-37.92986625, 175.4972463167, "50"], +[-37.9290868833, 175.4948005167, "25"], +[-37.9296040667, 175.4987881667, "63"], +[-37.9309512167, 175.5043885167, "110"], +[-37.9296868833, 175.4958722667, "38"], +[-37.9295072167, 175.4977275833, "51"], +[-37.9303624833, 175.5006042333, "74"], +[-37.9319759, 175.5106025, "166"], +[-37.9306431833, 175.5024661, "96"], +[-37.9299079167, 175.4976426667, "52"], +[-37.9312659333, 175.5064569833, "132"], +[-37.93082875, 175.50372585, "106"], +[-37.9320732833, 175.5108069, "167"], +[-37.8443465167, 175.36530835, "32"], +[-37.8448259333, 175.3650265167, "36"], +[-37.8425576167, 175.3664466333, "8"], +[-37.8925954833, 175.45710755, "3"], +[-37.8930169167, 175.45739025, "13"], +[-37.89310595, 175.4574966167, "17"], +[-37.8931706667, 175.4571386, "19"], +[-37.8930694833, 175.45792925, "15"], +[-37.892484, 175.4570883333, "1"], +[-37.8926542167, 175.4574440667, "5"], +[-37.89269795, 175.4575341667, "7"], +[-37.8926711333, 175.4579661, "9"], +[-37.8929884833, 175.4571287, "11"], +[-37.883121, 175.4810597, "11"], +[-37.8827995833, 175.4808762167, "15"], +[-37.8827993, 175.4810446833, "15A"], +[-37.88305445, 175.4806939167, "14"], +[-37.8832812833, 175.4806736333, "12"], +[-37.8829723, 175.4809516, "13"], +[-37.8836668, 175.4806524333, "8"], +[-37.88350115, 175.4806812167, "10"], +[-37.8838327667, 175.4806120333, "6"], +[-37.8836368, 175.4810848667, "5"], +[-37.8840162333, 175.4806070667, "4"], +[-37.8841447, 175.4806001167, "2"], +[-37.8837898, 175.4810769333, "3"], +[-37.8834789167, 175.4810792167, "7"], +[-37.8832999833, 175.4810661333, "9"], +[-37.8839425333, 175.4810822667, "1"], +[-37.8741644333, 175.466663, "1"], +[-37.8741701833, 175.4671011667, "2"], +[-37.8734758833, 175.4661548667, "11B"], +[-37.8730602167, 175.4660412333, "17B"], +[-37.8732532833, 175.4669407833, "12"], +[-37.8736860667, 175.4670495333, "8"], +[-37.8738914, 175.4662481167, "5B"], +[-37.8740275667, 175.46708325, "4"], +[-37.8728965, 175.4668399167, "16"], +[-37.87401705, 175.4666682333, "3"], +[-37.8740028333, 175.4662564, "5A"], +[-37.8734885167, 175.467, "10"], +[-37.8738630833, 175.4670664333, "6"], +[-37.8737826, 175.4666489667, "7"], +[-37.8735874, 175.46617485, "11A"], +[-37.8736024167, 175.4666129, "9"], +[-37.8730790167, 175.4668945167, "14"], +[-37.8729272167, 175.4664146833, "19"], +[-37.8733468333, 175.4665393167, "13"], +[-37.8731517, 175.4664815167, "15"], +[-37.8731441167, 175.4660683, "17A"], +[-37.8825944667, 175.4798169833, "2"], +[-37.8826055167, 175.4805495667, "10"], +[-37.8825809333, 175.4800131333, "4"], +[-37.8825441333, 175.4804278333, "8"], +[-37.8828469, 175.4800110667, "3"], +[-37.882842, 175.4802305333, "5"], +[-37.8825584833, 175.4801972667, "6"], +[-37.8828376, 175.4804269167, "7"], +[-37.88275275, 175.4805278667, "9"], +[-37.8828507833, 175.4798377667, "1"], +[-37.8747543667, 175.3655736, "277"], +[-37.8779646667, 175.3771985, "389"], +[-37.8791017167, 175.3701385167, "1/326"], +[-37.8809893667, 175.38422785, "458"], +[-37.8801277667, 175.3840239333, "459"], +[-37.8814240333, 175.3849688833, "468"], +[-37.8806415333, 175.38358955, "452"], +[-37.8785101, 175.3802812167, "409"], +[-37.8796759167, 175.3830951167, "445"], +[-37.8803115167, 175.3830208833, "446"], +[-37.8778165333, 175.3759684833, "373"], +[-37.88137445, 175.3862355333, "473"], +[-37.8782752833, 175.3789725, "397"], +[-37.8808287667, 175.3851571, "469"], +[-37.87896095, 175.3695827167, "326"], +[-37.8765604833, 175.3662541167, "288"], +[-37.8818931667, 175.38581595, "474"], +[-37.8775986, 175.3747133333, "2/359"], +[-37.8769582833, 175.3713375, "331"], +[-37.8843103667, 175.3914426833, "531"], +[-37.87595675, 175.3649699833, "271"], +[-37.8781325, 175.3739238833, "356"], +[-37.8763472667, 175.36476045, "270"], +[-37.87676475, 175.3676648667, "298"], +[-37.8769505833, 175.36918955, "310"], +[-37.8766704667, 175.36975, "313"], +[-37.8777166, 175.3720850333, "334"], +[-37.8773668333, 175.3733521333, "349"], +[-37.8772966667, 175.3744940833, "1/359"], +[-37.87831085, 175.3791264167, "399"], +[-37.8778886833, 175.37662545, "377"], +[-37.8784267667, 175.3770323833, "388"], +[-37.8790059333, 175.3798270667, "408"], +[-37.91994325, 175.4698456167, "5"], +[-37.9200047, 175.4693797833, "6"], +[-37.9195710333, 175.4694752833, "2"], +[-37.9203742667, 175.4697562833, "7"], +[-37.9196343, 175.4699295667, "3"], +[-37.9198162, 175.4690209, "4"], +[-37.8824037833, 175.4600990333, "5"], +[-37.88208185, 175.4598317167, "9"], +[-37.8826121667, 175.4600836333, "3"], +[-37.8826033333, 175.45961605, "2"], +[-37.8822431167, 175.4600865, "7"], +[-37.8821465833, 175.4595746, "8"], +[-37.8823125667, 175.45958745, "6"], +[-37.8824702667, 175.4595934167, "4"], +[-37.9092579167, 175.46735845, "6A"], +[-37.9089322167, 175.4674924, "10"], +[-37.90894585, 175.4672735167, "12"], +[-37.9089078333, 175.46711725, "11"], +[-37.9089631667, 175.4669939667, "9"], +[-37.90904455, 175.4673255, "8"], +[-37.9094559, 175.4668010167, "1"], +[-37.9093255, 175.4673469667, "4A"], +[-37.9093457833, 175.46717355, "4"], +[-37.9095302167, 175.4670570667, "2"], +[-37.9090935, 175.4664936667, "3"], +[-37.90917125, 175.4672602333, "6"], +[-37.90908325, 175.4669295667, "7"], +[-37.9092908333, 175.4668895333, "5"], +[-37.8593663833, 175.4539760167, "251"], +[-37.8754824, 175.4604578167, "63"], +[-37.8750289833, 175.4602931333, "67"], +[-37.7985084167, 175.4478579333, "941"], +[-37.842417, 175.4531796833, "443"], +[-37.8085080333, 175.45099665, "810"], +[-37.79048555, 175.44243815, "1063"], +[-37.8492731667, 175.4532494833, "355"], +[-37.8094198833, 175.4503523667, "819"], +[-37.8728692167, 175.4594153667, "91"], +[-37.8522977333, 175.4539347833, "344"], +[-37.8484041333, 175.45409895, "372"], +[-37.8479726833, 175.45304965, "387"], +[-37.7948086, 175.4476616833, "994"], +[-37.7914089, 175.4452872333, "1027"], +[-37.8080105, 175.4498779333, "835"], +[-37.8722349333, 175.4592175167, "99"], +[-37.8091485667, 175.45085495, "821"], +[-37.8594542833, 175.4549678833, "5/246"], +[-37.8230668667, 175.4541309833, "660"], +[-37.8316753333, 175.4539613167, "562"], +[-37.8387429833, 175.4531928, "475"], +[-37.8545740667, 175.4540875333, "294"], +[-37.7900112167, 175.4442665, "1045"], +[-37.8172833167, 175.4539773167, "724"], +[-37.83503155, 175.453934, "542"], +[-37.8607128667, 175.4548002, "2/241"], +[-37.8380142833, 175.45391425, "490"], +[-37.8275037167, 175.4529093833, "589"], +[-37.8596196, 175.4542151, "249"], +[-37.8595530167, 175.45479165, "3/246"], +[-37.85959605, 175.45471705, "2/246"], +[-37.8592503167, 175.4544837333, "252"], +[-37.8713457667, 175.4587725833, "111"], +[-37.8595053, 175.4548791833, "4/246"], +[-37.79668195, 175.4482608333, "958"], +[-37.8227231, 175.4540730167, "670"], +[-37.8750904833, 175.4593735333, "71"], +[-37.8190378833, 175.4540990167, "702"], +[-37.86957775, 175.4580359, "129"], +[-37.8662393833, 175.4567130667, "169"], +[-37.8687158167, 175.4577150333, "141"], +[-37.86791495, 175.4573792167, "151"], +[-37.8089932167, 175.4507184167, "823"], +[-37.8666422833, 175.4569389667, "167"], +[-37.8738722833, 175.4598649833, "81"], +[-37.8169442833, 175.4534629333, "727"], +[-37.8185275, 175.4534621333, "709"], +[-37.8059395833, 175.44899615, "859"], +[-37.8327434833, 175.4540100333, "550"], +[-37.8604312833, 175.4546856333, "1/241"], +[-37.8610548833, 175.4549434167, "3/241"], +[-37.8596720667, 175.45475175, "244"], +[-37.8603010167, 175.4551234333, "238"], +[-37.874473, 175.4600767667, "75"], +[-37.8192958833, 175.4546863, "698"], +[-37.80070935, 175.4483520333, "917"], +[-37.8595345, 175.4546793167, "250"], +[-37.8395576167, 175.4538942167, "470"], +[-37.8600606333, 175.4551961167, "242"], +[-37.8587876, 175.45357305, "261"], +[-37.8202505167, 175.454168, "692"], +[-37.83062305, 175.4541314, "574"], +[-37.85965015, 175.4546251667, "1/246"], +[-37.87094345, 175.4585491667, "115"], +[-37.82367025, 175.4541148167, "654"], +[-37.8761585333, 175.4607254667, "55"], +[-37.8650849833, 175.4562546333, "183"], +[-37.8104551333, 175.45176685, "803"], +[-37.8601735167, 175.4545659833, "247"], +[-37.8072936667, 175.4501624667, "842"], +[-37.81121545, 175.4523795667, "795"], +[-37.8082023667, 175.4500136333, "833"], +[-37.8088097833, 175.4505667167, "825"], +[-37.8073512333, 175.4494723833, "841"], +[-37.8180043167, 175.45347675, "713"], +[-37.8034810667, 175.44930745, "884A"], +[-37.8133904167, 175.4533446667, "767"], +[-37.7906012833, 175.4456008, "1032"], +[-37.8036063333, 175.44934055, "884"], +[-37.8086218, 175.4503990167, "827"], +[-37.7990523833, 175.4480464, "931"], +[-37.8435690667, 175.40554535, "296A"], +[-37.84511005, 175.4057523167, "282"], +[-37.8456481333, 175.4283544, "93"], +[-37.8452106, 175.4213902167, "154"], +[-37.8456685667, 175.4217703833, "151"], +[-37.8450910333, 175.4066185167, "296B"], +[-37.84556515, 175.3859519, "471"], +[-37.8456769, 175.4356176167, "29"], +[-37.8452146333, 175.4326596167, "54"], +[-37.8456379667, 175.4318747833, "59"], +[-37.8451947667, 175.4291500167, "82"], +[-37.8456449667, 175.42712405, "103"], +[-37.8452215333, 175.4202044833, "166"], +[-37.84562355, 175.4192034833, "173"], +[-37.84520295, 175.4171995667, "190"], +[-37.8451047667, 175.41595175, "204"], +[-37.84557985, 175.4160677, "201"], +[-37.8451894667, 175.4139933167, "218"], +[-37.8455275833, 175.4075856833, "277"], +[-37.8455757667, 175.40668145, "281"], +[-37.8451309667, 175.4038956667, "308"], +[-37.8455923333, 175.40336095, "313"], +[-37.8451457333, 175.4006193, "332"], +[-37.8456046667, 175.3996052667, "345"], +[-37.8450766, 175.3979973833, "362A"], +[-37.8450326167, 175.3961487833, "376"], +[-37.84556585, 175.3949421167, "389"], +[-37.84503405, 175.3928639333, "406"], +[-37.8450819, 175.3938952833, "398"], +[-37.8449702833, 175.39000315, "430"], +[-37.8455388, 175.3929698833, "403"], +[-37.8455067667, 175.389923, "431"], +[-37.8449729167, 175.38231105, "498"], +[-37.8449880833, 175.38162075, "502"], +[-37.8432495, 175.3824779667, "496"], +[-37.8441658167, 175.4248163667, "122"], +[-37.84258355, 175.3809411333, "512"], +[-37.8451205833, 175.41321575, "228"], +[-37.8454313833, 175.3813477333, "509"], +[-37.8449337333, 175.3830211333, "494"], +[-37.8456650333, 175.4344218333, "1/41"], +[-37.8450306667, 175.3974560667, "362C"], +[-37.8463207667, 175.4343822167, "2/42"], +[-37.8450416833, 175.3967473667, "372"], +[-37.8455358167, 175.4085091, "267"], +[-37.8451470333, 175.4076077167, "276"], +[-37.84420195, 175.39791495, "362B"], +[-37.8452185667, 175.4259005667, "114"], +[-37.8456212833, 175.4347298667, "39"], +[-37.8452003167, 175.40904765, "262"], +[-37.8451996667, 175.4122621833, "234"], +[-37.84515415, 175.4098542167, "256"], +[-37.8455715833, 175.4139006833, "223"], +[-37.8455915333, 175.4136348333, "225"], +[-37.8455279667, 175.3870696, "463"], +[-37.8457080167, 175.4225169667, "145"], +[-37.8450449333, 175.3784177833, "536"], +[-37.8441582, 175.3843482, "480"], +[-37.8441567667, 175.38280735, "494A"], +[-37.8450534333, 175.3804865833, "516"], +[-37.845458, 175.3819993833, "503"], +[-37.8416720667, 175.4161419167, "202"], +[-37.84561615, 175.4169546167, "193"], +[-37.8456090833, 175.4248031, "127"], +[-37.8452347167, 175.4210866, "156"], +[-37.8452366333, 175.4236209667, "136"], +[-37.8420864167, 175.3808174, "514"], +[-37.9352309167, 175.4932222, "138"], +[-37.9344554333, 175.48793725, "92"], +[-37.93352515, 175.48479765, "59"], +[-37.9333442833, 175.4806992167, "30"], +[-37.9333265, 175.4832372833, "43"], +[-37.9338463667, 175.4867482, "81"], +[-37.9349315333, 175.4913314333, "109"], +[-37.9335968833, 175.4853604, "63"], +[-37.9316883, 175.48456045, "53"], +[-37.9338528333, 175.4839506, "52"], +[-37.8310454167, 175.5756857833, "775"], +[-37.8312273667, 175.5775630667, "757"], +[-37.8293654833, 175.5685721667, "851"], +[-37.8285495833, 175.56486995, "881"], +[-37.8309590333, 175.5733609, "801"], +[-37.8305305333, 175.5736851833, "790"], +[-37.8295682333, 175.56931885, "841"], +[-37.83130275, 175.5782757167, "753"], +[-37.8283176167, 175.5655312333, "879"], +[-37.8540068167, 175.37670555, "34"], +[-37.85430545, 175.3768498167, "32"], +[-37.8549918167, 175.3798488333, "5"], +[-37.85449605, 175.37689005, "33"], +[-37.8547125333, 175.3802214167, "4"], +[-37.8545867833, 175.3781517833, "28"], +[-37.8547440667, 175.37743325, "31"], +[-37.85420255, 175.3773112333, "30"], +[-37.8879053333, 175.5233262333, "1/18"], +[-37.8881771333, 175.5232950167, "2/18"], +[-37.8834455333, 175.45836535, "92"], +[-37.8863947167, 175.4586610667, "58B"], +[-37.8866006667, 175.45961975, "55A"], +[-37.8867239167, 175.4592584167, "55"], +[-37.88667, 175.4586812, "56"], +[-37.8817044333, 175.4588333167, "113"], +[-37.8815483333, 175.4587898667, "115"], +[-37.8814229167, 175.4587740833, "117"], +[-37.8913856667, 175.4590918167, "18"], +[-37.8915707667, 175.4591145167, "16"], +[-37.8868740833, 175.4599066167, "53C"], +[-37.88889255, 175.4599269833, "37B"], +[-37.89262475, 175.4600617167, "7A"], +[-37.8889847167, 175.4594067667, "37A"], +[-37.8925890833, 175.4585589, "10B"], +[-37.8824604, 175.4588691333, "105"], +[-37.8836036333, 175.4583701, "90"], +[-37.8908670667, 175.4585197333, "24A"], +[-37.8826975167, 175.4583391, "98"], +[-37.8835235167, 175.4590010333, "95"], +[-37.8838230333, 175.4583829333, "88"], +[-37.8845143667, 175.4579167, "80A"], +[-37.8828394333, 175.4583557667, "96"], +[-37.88251835, 175.4583208667, "100"], +[-37.8926768167, 175.4583797667, "10C"], +[-37.88716595, 175.4586927333, "50"], +[-37.8883195667, 175.4593362333, "43"], +[-37.8864967833, 175.4592373833, "59"], +[-37.8871386833, 175.4592945833, "51"], +[-37.8836205667, 175.4589701333, "91"], +[-37.8870057667, 175.4587382167, "52"], +[-37.8823566667, 175.4583266833, "102"], +[-37.8867508, 175.45831015, "2/54"], +[-37.88680585, 175.4583326167, "54B"], +[-37.8869064, 175.4592745833, "53"], +[-37.8836770667, 175.45788765, "90A"], +[-37.88377685, 175.45896945, "91A"], +[-37.8844059167, 175.4593669667, "83A"], +[-37.8843895833, 175.4590283, "83"], +[-37.88413765, 175.4580580833, "84A"], +[-37.8909576167, 175.4590556833, "22"], +[-37.8932342, 175.4592408833, "4"], +[-37.8929272167, 175.45863745, "8B"], +[-37.8929735167, 175.4583677333, "8C"], +[-37.8859658167, 175.4592039, "71"], +[-37.8881317333, 175.4593295333, "45"], +[-37.88894835, 175.45890335, "36"], +[-37.88873325, 175.4588844167, "38"], +[-37.8885017167, 175.45935385, "41A"], +[-37.8888022667, 175.4593873, "39"], +[-37.88814385, 175.4586047333, "44A"], +[-37.8854610167, 175.4585890667, "66"], +[-37.89301925, 175.4597807333, "3"], +[-37.8888152167, 175.4597877833, "37C"], +[-37.88442445, 175.4579215333, "82A"], +[-37.8841846833, 175.4584516, "84"], +[-37.8858883833, 175.4596244167, "71A"], +[-37.8911121167, 175.4596169167, "21"], +[-37.8882564333, 175.4588584167, "42"], +[-37.8839837, 175.4584101, "86"], +[-37.8862705, 175.4595605667, "63"], +[-37.8878208, 175.4588156833, "46"], +[-37.8891674833, 175.4594178, "35"], +[-37.8884817, 175.4588827667, "40"], +[-37.8845497667, 175.4584736333, "80"], +[-37.8908341667, 175.45958975, "23"], +[-37.8926482, 175.4588475667, "10A"], +[-37.8846152, 175.4590487333, "81"], +[-37.8868875833, 175.4597079333, "53B"], +[-37.8867661667, 175.4580206, "1/54"], +[-37.8923631167, 175.4601005833, "11A"], +[-37.8880116333, 175.4588415167, "44"], +[-37.88179955, 175.4582856667, "108"], +[-37.8819699667, 175.4588568833, "109"], +[-37.8906476667, 175.4590157667, "28"], +[-37.8846581333, 175.4584694833, "78"], +[-37.8843345167, 175.4584402833, "82"], +[-37.8841375167, 175.4590033, "85"], +[-37.88394965, 175.4578898667, "86A"], +[-37.88396905, 175.45758895, "86B"], +[-37.8837848667, 175.4578930833, "88A"], +[-37.8839426667, 175.4589834333, "89"], +[-37.8923547333, 175.4596697667, "11"], +[-37.8916483333, 175.45965705, "13"], +[-37.89177585, 175.4591300667, "14"], +[-37.8914522167, 175.459646, "15"], +[-37.8912940833, 175.4596277667, "17"], +[-37.8923723833, 175.4592214, "12"], +[-37.8907689667, 175.4590306667, "24"], +[-37.8904437833, 175.4595327, "25A"], +[-37.8906071167, 175.4595718167, "25"], +[-37.8902158167, 175.4595238167, "27"], +[-37.8911627, 175.4590753167, "20"], +[-37.8886534333, 175.4593824833, "41"], +[-37.8930344167, 175.4600257833, "3A-3F"], +[-37.8865167167, 175.4586738833, "58"], +[-37.8863451667, 175.4592180667, "61"], +[-37.88626165, 175.45980935, "65"], +[-37.8862540167, 175.4586216, "60"], +[-37.8858030167, 175.4586246, "62"], +[-37.8856375333, 175.4586118667, "64"], +[-37.89284255, 175.4600622333, "5A"], +[-37.8928040667, 175.4597492333, "5"], +[-37.8861293, 175.4592111833, "69"], +[-37.8858680333, 175.4598526167, "71B"], +[-37.885777, 175.4599270167, "71C"], +[-37.8857422667, 175.4597478167, "71D"], +[-37.88574365, 175.45918075, "73"], +[-37.8855746833, 175.4591693833, "75"], +[-37.8930622167, 175.4592157833, "6"], +[-37.8925581, 175.4603171, "7B"], +[-37.8926518167, 175.46025555, "7C"], +[-37.8929233, 175.4588164167, "8A"], +[-37.8928556667, 175.4592156833, "8"], +[-37.8924033, 175.4602587333, "9"], +[-37.8826857833, 175.4589041167, "103"], +[-37.8868134333, 175.4586863667, "54"], +[-37.8821768333, 175.4588641833, "107"], +[-37.8925898333, 175.4596910333, "7"], +[-37.8862095667, 175.46007345, "67"], +[-37.8893183667, 175.4594386167, "33"], +[-37.88182795, 175.4588519167, "111"], +[-37.8853995, 175.4591325167, "77"], +[-37.8819874833, 175.4582899, "106"], +[-37.8868931667, 175.4594645667, "53A"], +[-37.89067275, 175.4587377333, "28A"], +[-37.88729905, 175.45870125, "48"], +[-37.8872955667, 175.4593124, "49"], +[-37.8926355167, 175.4591491667, "10"], +[-37.8821580833, 175.45830775, "104"], +[-37.8581124833, 175.3783852167, "535"], +[-37.8652348667, 175.3746078, "454"], +[-37.8528962667, 175.3764204333, "591C"], +[-37.8658603333, 175.3777156333, "466B"], +[-37.8561505333, 175.3796002833, "563"], +[-37.8574877833, 175.3782657333, "557"], +[-37.8648613667, 175.3759225833, "466A"], +[-37.8680267, 175.3758790667, "422"], +[-37.8679018667, 175.3731075, "420"], +[-37.85081775, 175.3829343167, "643"], +[-37.8671912, 175.36468055, "352"], +[-37.86727615, 175.36543555, "360"], +[-37.8501304, 175.3806456, "637"], +[-37.8673357333, 175.3661331333, "366A"], +[-37.8673979333, 175.3667809, "366B"], +[-37.8526604333, 175.3775103333, "591B"], +[-37.8590671, 175.3777331, "525"], +[-37.8604441333, 175.37691195, "511A"], +[-37.8674681167, 175.3678874333, "374"], +[-37.8677148833, 175.3698444833, "402"], +[-37.8666863, 175.3663322333, "365"], +[-37.8675554, 175.3754905167, "424A"], +[-37.8676465167, 175.37623815, "424"], +[-37.86661535, 175.37609495, "442"], +[-37.8598401833, 175.3771549167, "511B"], +[-37.8661314333, 175.3647742667, "353"], +[-37.8666274333, 175.3736697167, "434"], +[-37.8662379333, 175.3738677667, "438"], +[-37.8520614, 175.3823100833, "613"], +[-37.8521965167, 175.3812996167, "607"], +[-37.85242245, 175.3821009333, "605"], +[-37.8520654833, 175.3761835667, "591A"], +[-37.8547938667, 175.3751005167, "591D"], +[-37.8600232, 175.3780412167, "516"], +[-37.8504624833, 175.3807091333, "635B"], +[-37.86694425, 175.3698350167, "387"], +[-37.8512808, 175.3826955167, "635A"], +[-37.8626598333, 175.3763083833, "480"], +[-37.8631832667, 175.3759811, "478"], +[-37.8597738, 175.3758612333, "511"], +[-37.8669354833, 175.3734885833, "432"], +[-37.8660254333, 175.3741769333, "440"], +[-37.8677621333, 175.3708737667, "418"], +[-37.86470325, 175.3749985333, "456"], +[-37.8496086167, 175.3843649167, "660"], +[-37.8533389167, 175.3814388333, "599"], +[-37.8513108, 175.3833057167, "636"], +[-37.8582031333, 175.3789229667, "536"], +[-37.8049091167, 175.4582433833, "111"], +[-37.79217, 175.4610993667, "235"], +[-37.7912009, 175.46131515, "243"], +[-37.8073855167, 175.4519374833, "17"], +[-37.7901330667, 175.4618390333, "259"], +[-37.7979543, 175.46169615, "186"], +[-37.7953406667, 175.4605087333, "199"], +[-37.8075016167, 175.4517328833, "15"], +[-37.7944439333, 175.4604859167, "221"], +[-37.8960575333, 175.47501025, "14"], +[-37.8979342, 175.4745448, "31A"], +[-37.8968049167, 175.47448785, "24A"], +[-37.8974204333, 175.475026, "25"], +[-37.8977612, 175.47473925, "29"], +[-37.89678435, 175.4748293, "20"], +[-37.89589205, 175.4749720833, "12"], +[-37.8966669, 175.4743795667, "22"], +[-37.8958911333, 175.4761947, "5"], +[-37.8971542833, 175.4752421167, "21"], +[-37.8960713, 175.4760678, "7"], +[-37.8971206833, 175.47398845, "30"], +[-37.8959413333, 175.4751180667, "10A"], +[-37.89774365, 175.4741330667, "40"], +[-37.8964759167, 175.4757599833, "13"], +[-37.8956967, 175.4756972333, "6"], +[-37.8969728167, 175.4746339333, "24"], +[-37.8975985667, 175.4742274833, "38"], +[-37.8964206167, 175.4764929, "9"], +[-37.89591475, 175.4748164, "14A"], +[-37.8963322333, 175.4747763333, "18A"], +[-37.8962043333, 175.4746025333, "18B"], +[-37.8969914833, 175.47434705, "26A"], +[-37.8975744667, 175.4748792167, "27"], +[-37.8979075667, 175.4740015333, "42"], +[-37.89599185, 175.4754597167, "10"], +[-37.89628205, 175.4758701, "11"], +[-37.8966986167, 175.4755950667, "15"], +[-37.8954172667, 175.4758408833, "2"], +[-37.8955642833, 175.47581195, "4"], +[-37.8957927167, 175.4756119833, "8"], +[-37.8974439333, 175.4743467667, "36"], +[-37.8954518167, 175.4753103, "6A"], +[-37.89718045, 175.4745253167, "26"], +[-37.89567315, 175.4763134667, "1"], +[-37.8957657667, 175.4763043333, "3"], +[-37.8965164667, 175.4750518, "18"], +[-37.89807905, 175.47440185, "31"], +[-37.8968958, 175.4754382833, "17"], +[-37.89631735, 175.4752079667, "16"], +[-37.8972125833, 175.4741699833, "34"], +[-37.8970015667, 175.47401225, "28"], +[-37.9133573833, 175.4717484667, "287"], +[-37.9048133167, 175.47635, "104"], +[-37.9049925, 175.4762745167, "106"], +[-37.90467735, 175.4753654167, "107"], +[-37.90048465, 175.4783948167, "58"], +[-37.8992426833, 175.4793293167, "42"], +[-37.9046434667, 175.4764180667, "102"], +[-37.91292555, 175.47197745, "285"], +[-37.9061096167, 175.4751589833, "127"], +[-37.9059487333, 175.4760527167, "120B"], +[-37.9058349, 175.4758649667, "120A"], +[-37.9046025333, 175.47507605, "107A"], +[-37.9043145167, 175.4765927167, "98"], +[-37.9026473833, 175.4773607333, "80"], +[-37.8985112833, 175.4791536, "37"], +[-37.90029415, 175.4779031333, "57"], +[-37.9157889333, 175.4706511667, "307"], +[-37.9161504167, 175.4698894, "317"], +[-37.9162483333, 175.47040295, "315"], +[-37.9119694833, 175.4724158167, "273"], +[-37.9127305, 175.4727451167, "280A"], +[-37.910892, 175.4729321833, "257"], +[-37.91104955, 175.4723925167, "261"], +[-37.91155295, 175.4731748833, "260"], +[-37.9104050667, 175.4728724167, "249"], +[-37.91055955, 175.4730871, "251"], +[-37.9074686167, 175.4751091833, "188"], +[-37.9079151, 175.4751543167, "192A"], +[-37.9060373, 175.4757691167, "136"], +[-37.90429105, 175.4760343833, "97"], +[-37.9123212333, 175.4728413167, "276"], +[-37.91122575, 175.4733142333, "240"], +[-37.9028192, 175.4767472833, "83"], +[-37.8979333667, 175.4794421167, "31"], +[-37.8977516, 175.4801524833, "28"], +[-37.89934065, 175.4785610667, "47"], +[-37.9103580667, 175.4731422667, "247"], +[-37.9106933167, 175.4735704667, "238"], +[-37.90118205, 175.4774954833, "65"], +[-37.9051274833, 175.4765782667, "106A"], +[-37.9001666333, 175.4786251833, "54"], +[-37.8996917833, 175.4776611333, "53A"], +[-37.9157449833, 175.4701549667, "311"], +[-37.8998454833, 175.47809685, "53"], +[-37.8999531167, 175.4780619, "55"], +[-37.9123259333, 175.4731539833, "274"], +[-37.91203635, 175.4729645833, "262"], +[-37.9025673667, 175.4766802, "79A"], +[-37.8995076667, 175.4784470167, "49"], +[-37.9160592167, 175.4710586333, "316"], +[-37.9045513333, 175.4752828833, "105"], +[-37.901886, 175.4778055167, "74B"], +[-37.9007665833, 175.4782302, "60"], +[-37.9027685, 175.4767654333, "81"], +[-37.9042667667, 175.47545395, "99"], +[-37.90210725, 175.4776131, "76"], +[-37.914356, 175.4712761333, "299"], +[-37.9037502167, 175.4768480333, "94"], +[-37.8975508667, 175.48021795, "22"], +[-37.9126604333, 175.4720775, "281"], +[-37.90140745, 175.4783687833, "66"], +[-37.9008916333, 175.4774276833, "63"], +[-37.91678785, 175.47071965, "322"], +[-37.9088462667, 175.4738790833, "227"], +[-37.9123182167, 175.4722337, "277"], +[-37.90000635, 175.47873665, "52"], +[-37.9015533, 175.47851885, "70"], +[-37.9015025333, 175.4779211333, "72"], +[-37.9159910833, 175.4705165167, "313"], +[-37.9138507667, 175.4715170333, "293"], +[-37.9090778667, 175.4737512667, "229"], +[-37.9128195833, 175.4726191, "282"], +[-37.9131350667, 175.4724749667, "286"], +[-37.913967, 175.4720198833, "294"], +[-37.9129905, 175.4725340833, "284"], +[-37.90123535, 175.4772228667, "67"], +[-37.9143479, 175.4719130833, "298"], +[-37.9126444833, 175.4726878, "280"], +[-37.9165660167, 175.4702721167, "323"], +[-37.8989755, 175.4782464167, "45"], +[-37.9093448667, 175.47364355, "233"], +[-37.91447635, 175.4712330833, "301"], +[-37.9095208333, 175.4735786833, "235"], +[-37.9096743333, 175.4741524, "232"], +[-37.89939865, 175.47921515, "44"], +[-37.9151960833, 175.4709698167, "305"], +[-37.9097280833, 175.4745849333, "228"], +[-37.9013794667, 175.47741285, "69"], +[-37.9162268667, 175.47098265, "318"], +[-37.8990613333, 175.4787713333, "43"], +[-37.89780295, 175.4806196167, "26"], +[-37.91541455, 175.4713506833, "306"], +[-37.9097875333, 175.4748558667, "228A"], +[-37.9081311333, 175.4748058, "196A"], +[-37.9150421333, 175.4709822167, "303"], +[-37.9053254667, 175.47610225, "114"], +[-37.9065445333, 175.4749703667, "173"], +[-37.9098205333, 175.4741548833, "234"], +[-37.9081538667, 175.4750639167, "196"], +[-37.9096973, 175.4748021167, "226A"], +[-37.9093885667, 175.4742162667, "224A"], +[-37.9091188, 175.4743508333, "222A"], +[-37.90953665, 175.4733968, "235A"], +[-37.90795735, 175.4748888667, "194"], +[-37.9014723, 175.47869265, "68"], +[-37.9095686833, 175.4733282167, "237A"], +[-37.9090926833, 175.47436235, "222"], +[-37.9012697667, 175.4780105833, "64"], +[-37.9165941667, 175.4699768667, "325"], +[-37.8983101833, 175.4790199333, "35A"], +[-37.8989313833, 175.4795513167, "38"], +[-37.9020688, 175.4782522167, "74"], +[-37.91629055, 175.4698086667, "321"], +[-37.90362685, 175.4769062, "92"], +[-37.8978983167, 175.480096, "30"], +[-37.9095879, 175.4744869833, "226"], +[-37.8988477333, 175.4788966333, "41"], +[-37.9144792667, 175.47185395, "300"], +[-37.90345575, 175.4769852667, "90"], +[-37.90295525, 175.4772238333, "84"], +[-37.9155634, 175.47150915, "308A"], +[-37.9077980667, 175.4749606833, "192B"], +[-37.9024718333, 175.47689145, "79"], +[-37.9010265333, 175.4781286667, "62"], +[-37.9051546167, 175.4761810167, "108"], +[-37.9027743667, 175.4772973, "82"], +[-37.9113692333, 175.4732625, "242"], +[-37.9061175, 175.4761095667, "140"], +[-37.9126536833, 175.4718492, "283"], +[-37.89984655, 175.47884775, "50"], +[-37.8996625, 175.4783593833, "51"], +[-37.9096838, 175.4734820333, "237"], +[-37.9163971333, 175.4703382333, "319"], +[-37.9019659333, 175.47801565, "74C"], +[-37.9017677, 175.4778972667, "74A"], +[-37.9082934833, 175.4747193, "198"], +[-37.9124935167, 175.4721662833, "279"], +[-37.9112822667, 175.4727057, "263"], +[-37.9088314833, 175.4744561333, "220"], +[-37.9140193667, 175.4723065, "294A"], +[-37.9151048833, 175.4715047667, "302"], +[-37.9155721667, 175.4712705333, "308"], +[-37.91564375, 175.4698925833, "309"], +[-37.9157315333, 175.4712060333, "310"], +[-37.9158956833, 175.4711298667, "312"], +[-37.9044821667, 175.4765082167, "100"], +[-37.9045073333, 175.4759204333, "101"], +[-37.9046759167, 175.4758561667, "103"], +[-37.8983034667, 175.4792230333, "35"], +[-37.8987899833, 175.4796567167, "36"], +[-37.89867985, 175.4790447, "39"], +[-37.8990768667, 175.47943105, "40"], +[-37.8981085333, 175.4793068333, "33"], +[-37.89915065, 175.4781128333, "45A"], +[-37.8995490167, 175.4791011167, "46"], +[-37.8997315333, 175.47899365, "48"], +[-37.900319, 175.4785061, "56"], +[-37.9056642333, 175.4759370167, "118"], +[-37.9063413, 175.4756213333, "150"], +[-37.8988354833, 175.47962055, "36A"], +[-37.9029526, 175.4760132333, "87"], +[-37.90312265, 175.4771544, "86"], +[-37.9034438667, 175.4764194333, "91"], +[-37.91418395, 175.4719746167, "296"], +[-37.9140091667, 175.4714322, "295"], +[-37.9141795833, 175.4713487, "297"], +[-37.9138469333, 175.4720815833, "292"], +[-37.91351575, 175.4716747833, "289"], +[-37.9136813667, 175.4716021833, "291"], +[-37.9139259667, 175.4722800333, "292A"], +[-37.9136332, 175.4722156, "290"], +[-37.9093265, 175.4742351667, "224"], +[-37.8977406167, 175.4806423167, "24"], +[-37.9048411167, 175.4757695667, "109"], +[-37.9032051, 175.4765243833, "89"], +[-37.91528, 175.4714141667, "304"], +[-37.9032850667, 175.4770679, "88"], +[-37.9158238167, 175.4703065333, "313A"], +[-37.9064744333, 175.4758051, "150A"], +[-37.9046115, 175.4767234667, "100A"], +[-37.9076618833, 175.4744580667, "197"], +[-37.9076246167, 175.4750397167, "190"], +[-37.9026504333, 175.4768196167, "79B"], +[-37.9051801167, 175.4756040167, "115"], +[-37.89852955, 175.47974005, "34"], +[-37.9075004, 175.47452445, "187"], +[-37.90501535, 175.4756865333, "111"], +[-37.9068534667, 175.4753966333, "180"], +[-37.9029671, 175.4766338333, "85"], +[-37.9065173667, 175.4755659333, "158"], +[-37.9066938833, 175.4754834833, "166"], +[-37.9061558333, 175.4757093333, "142"], +[-37.90567525, 175.4753235167, "119"], +[-37.9124889333, 175.4727737833, "278"] +]; \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/realworld.388.js b/lib/Leaflet.markercluster/example/realworld.388.js new file mode 100644 index 000000000..4dce97f34 --- /dev/null +++ b/lib/Leaflet.markercluster/example/realworld.388.js @@ -0,0 +1,393 @@ + +//An extract of address points from the LINZ bulk extract: http://www.linz.govt.nz/survey-titles/landonline-data/landonline-bde +//Should be this data set: http://data.linz.govt.nz/#/layer/779-nz-street-address-electoral/ +var addressPoints = [ +[-37.8210922667, 175.2209316333, "2"], +[-37.8210819833, 175.2213903167, "3"], +[-37.8210881833, 175.2215004833, "3A"], +[-37.8211946833, 175.2213655333, "1"], +[-37.8209458667, 175.2214051333, "5"], +[-37.8208292333, 175.2214374833, "7"], +[-37.8325816, 175.2238798667, "537"], +[-37.8315855167, 175.2279767, "454"], +[-37.8096336833, 175.2223743833, "176"], +[-37.80970685, 175.2221815833, "178"], +[-37.8102146667, 175.2211562833, "190"], +[-37.8088037167, 175.2242227, "156"], +[-37.8112330167, 175.2193425667, "210"], +[-37.8116368667, 175.2193005167, "212"], +[-37.80812645, 175.2255449333, "146"], +[-37.8080231333, 175.2286383167, "125"], +[-37.8089538667, 175.2222222333, "174"], +[-37.8080905833, 175.2275400667, "129"], +[-37.808811, 175.2227592833, "172"], +[-37.80832975, 175.2276898167, "131"], +[-37.8089395333, 175.2281710333, "133"], +[-37.8093421, 175.2274883167, "135"], +[-37.8084820833, 175.22601925, "137"], +[-37.80881015, 175.22622865, "139"], +[-37.8090947667, 175.2263585667, "141"], +[-37.8092962333, 175.2244872333, "147"], +[-37.8091016667, 175.2249140167, "145"], +[-37.8088785167, 175.2253611667, "143"], +[-37.80825965, 175.22530115, "148"], +[-37.80995685, 175.2238554333, "153"], +[-37.80975435, 175.2238417833, "151"], +[-37.80950755, 175.2237912, "149"], +[-37.8092772667, 175.2231980833, "170"], +[-37.8082753833, 175.20672975, "4"], +[-37.8078434833, 175.211822, "56"], +[-37.8083775667, 175.2090812333, "30B"], +[-37.8084588, 175.2058838167, "174"], +[-37.8088788333, 175.2062702833, "175"], +[-37.8091632833, 175.20514875, "182A"], +[-37.8094891167, 175.20384695, "202"], +[-37.8156715667, 175.2034881667, "277"], +[-37.8109189333, 175.2024631, "220"], +[-37.8108164333, 175.2039622, "219"], +[-37.8125773667, 175.2026079667, "238"], +[-37.8125799333, 175.2032824, "241A"], +[-37.8125869, 175.2037423833, "241C"], +[-37.8140266833, 175.2025706, "256"], +[-37.80932, 175.2051094333, "182B"], +[-37.8098799667, 175.2040444167, "197"], +[-37.8094298833, 175.20561245, "189"], +[-37.8172409333, 175.2035291167, "287"], +[-37.8232166667, 175.22452865, "2028"], +[-37.8225024333, 175.2249944667, "2022"], +[-37.82334135, 175.2244748667, "2030"], +[-37.8229725333, 175.2246809333, "2026"], +[-37.8224034667, 175.22507345, "2020"], +[-37.8227806, 175.2248285833, "2024"], +[-37.8178801, 175.2181871667, "6"], +[-37.81811315, 175.2180543667, "4"], +[-37.8181739833, 175.21851995, "1"], +[-37.81797515, 175.2186312, "3"], +[-37.8181787, 175.2176995, "2A"], +[-37.8183385333, 175.21812895, "2"], +[-37.8293053167, 175.2105357833, "31"], +[-37.8309444333, 175.21208735, "16"], +[-37.8306726667, 175.2115020833, "19"], +[-37.8300903, 175.2120791, "26"], +[-37.8289416167, 175.2113778333, "33"], +[-37.8274969167, 175.2113355167, "53"], +[-37.8199192667, 175.2173622833, "5A"], +[-37.8200392833, 175.2174100167, "3"], +[-37.8196328, 175.2167642, "18"], +[-37.81752585, 175.2155467667, "22C"], +[-37.81766615, 175.2153714167, "22B"], +[-37.8179022667, 175.2151616833, "22A"], +[-37.8191980333, 175.21664245, "20A"], +[-37.81799325, 175.21565925, "20C"], +[-37.8187486333, 175.2165228667, "20B"], +[-37.81964875, 175.2172874167, "7"], +[-37.81925545, 175.2171617, "11"], +[-37.8190491667, 175.2170928333, "13"], +[-37.8194515667, 175.2172147167, "9"], +[-37.81981045, 175.21733245, "5B"], +[-37.81876595, 175.2172445167, "15B"], +[-37.8185999167, 175.2172441, "17A"], +[-37.81816745, 175.21725905, "21B"], +[-37.8182157167, 175.2164626333, "24"], +[-37.8180109667, 175.2173984167, "23A"], +[-37.8179918, 175.217159, "23B"], +[-37.8188473167, 175.2170330333, "15"], +[-37.8186481333, 175.2169800667, "17"], +[-37.8184132, 175.2169327333, "19"], +[-37.8202288333, 175.2174746333, "1"], +[-37.818193, 175.2169955667, "21"], +[-37.8178000833, 175.21733275, "25"], +[-37.8176839, 175.2168488333, "26"], +[-37.8198172, 175.2204960667, "5"], +[-37.819986, 175.22049635, "3"], +[-37.8197666, 175.2200825, "4"], +[-37.8193835833, 175.2191669667, "10"], +[-37.8193426333, 175.2198626667, "11"], +[-37.8192171667, 175.2191711, "12"], +[-37.8192621333, 175.2196364167, "13"], +[-37.8195289667, 175.2193943167, "8"], +[-37.81946, 175.2201499167, "9"], +[-37.8196037833, 175.219674, "6"], +[-37.8194712, 175.2204032, "7A"], +[-37.8196381, 175.2203709333, "7"], +[-37.8200137667, 175.2201364333, "2"], +[-37.8191725167, 175.2193772833, "14"], +[-37.8214417333, 175.2256822167, "4"], +[-37.8210291, 175.2259429667, "8"], +[-37.8212328333, 175.2258132, "6"], +[-37.8216819833, 175.2253209, "3"], +[-37.8334697167, 175.2038651667, "326"], +[-37.8322603667, 175.2028621167, "317"], +[-37.8322013667, 175.2046802667, "1/341"], +[-37.8320576167, 175.2165535833, "435"], +[-37.8319540333, 175.20506915, "2/341"], +[-37.8316975667, 175.2053442333, "3/341"], +[-37.8328229833, 175.2062598, "346"], +[-37.83161565, 175.2074915, "355"], +[-37.83219305, 175.20629425, "347"], +[-37.8328549, 175.2080619667, "362"], +[-37.8321289667, 175.2084019333, "367"], +[-37.8322225167, 175.2120427667, "397"], +[-37.8321649, 175.21119325, "393"], +[-37.8321458833, 175.2131246333, "407"], +[-37.8327043833, 175.21377405, "416"], +[-37.8321267167, 175.2144058167, "417"], +[-37.83212555, 175.2096521333, "373"], +[-37.8331028667, 175.20928495, "366"], +[-37.82866875, 175.22177625, "563"], +[-37.8295602, 175.21924335, "582"], +[-37.8304707833, 175.2182986167, "590"], +[-37.83086, 175.2180687667, "592"], +[-37.8328604833, 175.2172892167, "618"], +[-37.8342575667, 175.2168357833, "638"], +[-37.8239713, 175.2245693667, "504"], +[-37.8365260167, 175.2170911, "673"], +[-37.8233928833, 175.2249669167, "492"], +[-37.8248650167, 175.2246300833, "509"], +[-37.8191798333, 175.2265331667, "435"], +[-37.8143243333, 175.2310940167, "368"], +[-37.81459255, 175.2320046, "363"], +[-37.81127515, 175.2356499167, "311"], +[-37.8126359667, 175.2340855167, "333"], +[-37.8096158333, 175.2375218167, "293"], +[-37.8315868667, 175.2177722833, "604"], +[-37.8160177667, 175.2299268333, "391"], +[-37.8204715667, 175.2265481833, "456"], +[-37.8206352, 175.2265670333, "458"], +[-37.8208412667, 175.2265323333, "460"], +[-37.8210184333, 175.22648325, "462"], +[-37.8212643833, 175.2270422167, "465"], +[-37.82119945, 175.2264274333, "464"], +[-37.82136485, 175.2263145667, "466"], +[-37.8215261, 175.22684075, "467"], +[-37.8215301833, 175.2262078, "468"], +[-37.8217701667, 175.2266360167, "1/471"], +[-37.8218376833, 175.22686725, "2/471"], +[-37.8217084667, 175.2260839667, "472"], +[-37.8219782333, 175.2265028333, "475"], +[-37.8218988833, 175.2259723, "476"], +[-37.8223939333, 175.2262447, "479"], +[-37.8223048667, 175.2256582833, "480"], +[-37.8226657, 175.2261230833, "481"], +[-37.8224199, 175.2255487833, "482"], +[-37.8229134167, 175.2259527833, "485"], +[-37.8226937833, 175.2253693167, "486"], +[-37.8231509667, 175.2258170333, "487"], +[-37.82295265, 175.2252571167, "488"], +[-37.8233779, 175.2256743833, "489"], +[-37.8232052667, 175.2251109333, "490"], +[-37.8236200333, 175.22553395, "493"], +[-37.82385775, 175.2253390833, "495"], +[-37.8203220167, 175.22650925, "454"], +[-37.8179795333, 175.2262826, "428"], +[-37.81038215, 175.2365298167, "303"], +[-37.8161746667, 175.2297239833, "393"], +[-37.8083635333, 175.233955, "294"], +[-37.82029495, 175.2214968167, "39"], +[-37.8204754333, 175.2247793333, "12B"], +[-37.8205440833, 175.22344905, "23"], +[-37.8195974333, 175.2254019333, "2"], +[-37.8210801, 175.2237748667, "20A"], +[-37.8209057333, 175.22389775, "18"], +[-37.8208016833, 175.2221582833, "32"], +[-37.8209372667, 175.2236919, "20"], +[-37.8210586833, 175.22351925, "22B"], +[-37.82092905, 175.2234855333, "22"], +[-37.8208587333, 175.2231887667, "24"], +[-37.8210241167, 175.2230882, "24B"], +[-37.8208547833, 175.2229410667, "26"], +[-37.8209917, 175.2228447667, "26B"], +[-37.82097645, 175.2227176167, "28B"], +[-37.8208099167, 175.2226765167, "28"], +[-37.8207666833, 175.2224338833, "30"], +[-37.8209508833, 175.2222094167, "32B"], +[-37.82076515, 175.2219195167, "34A"], +[-37.8207399667, 175.2218131667, "34B"], +[-37.8203075833, 175.2240482833, "19"], +[-37.8205368167, 175.2237746667, "21"], +[-37.8205025833, 175.2231658, "25A"], +[-37.820465, 175.2229733667, "27"], +[-37.82043535, 175.2227387, "29"], +[-37.8204582, 175.2225319667, "31"], +[-37.82024115, 175.2224347833, "31B"], +[-37.8203792333, 175.2222631667, "33"], +[-37.82034095, 175.2219843, "35"], +[-37.8201566167, 175.2219446, "35B"], +[-37.82030575, 175.2217594333, "37"], +[-37.8202966833, 175.2233158167, "25"], +[-37.8192714167, 175.2253842667, "1"], +[-37.81969695, 175.22516645, "4"], +[-37.8194904667, 175.22468815, "5"], +[-37.8198524333, 175.2249096667, "6"], +[-37.8200581833, 175.2247122, "8"], +[-37.8193447, 175.2244639667, "5C"], +[-37.8208238, 175.2241340167, "16"], +[-37.8193183667, 175.22515695, "1A"], +[-37.81940575, 175.2249383333, "3"], +[-37.8211855167, 175.2242545333, "18A"], +[-37.8207094833, 175.22430275, "14"], +[-37.82027725, 175.22488135, "10A"], +[-37.8202305833, 175.2245652667, "10"], +[-37.8205049667, 175.2244201333, "12"], +[-37.8196320333, 175.2255586, "22"], +[-37.8209711, 175.2250444667, "8"], +[-37.82120665, 175.2252942833, "5"], +[-37.8210184, 175.2254290333, "7"], +[-37.8213430333, 175.2252086167, "3"], +[-37.8207887833, 175.2251555667, "10"], +[-37.82060805, 175.2257042333, "13"], +[-37.8208330333, 175.22553905, "9"], +[-37.8216988833, 175.2249665667, "1"], +[-37.8215665833, 175.2246573333, "2"], +[-37.8213729, 175.2247789333, "4"], +[-37.8211700667, 175.2249324333, "6"], +[-37.8205967667, 175.2252867, "12"], +[-37.8204008833, 175.2254234667, "14"], +[-37.82043265, 175.22582195, "15"], +[-37.8202037333, 175.2255415833, "16"], +[-37.8200154333, 175.2256547667, "18"], +[-37.8197443167, 175.2256164833, "20"], +[-37.8202814333, 175.22590955, "17"], +[-37.8202967667, 175.21462555, "98"], +[-37.82204485, 175.21819735, "61B"], +[-37.8224241, 175.2179326667, "61C"], +[-37.8215043167, 175.2227943833, "24"], +[-37.8219082, 175.2255408167, "8"], +[-37.8216963, 175.2240856667, "14"], +[-37.8213418333, 175.2188135667, "55"], +[-37.8204966333, 175.2183406333, "54A"], +[-37.8221799833, 175.21122085, "139"], +[-37.8217387, 175.22431625, "12"], +[-37.8218650167, 175.2149734167, "107"], +[-37.8214083333, 175.2220152667, "30"], +[-37.8213738333, 175.2217301, "32"], +[-37.8221598167, 175.2247839333, "9"], +[-37.8216356, 175.2235610667, "18"], +[-37.8212188167, 175.2221387333, "30B"], +[-37.8200466667, 175.2166111, "84A"], +[-37.8216679333, 175.2238393333, "16"], +[-37.8211582833, 175.22031685, "34"], +[-37.8221918667, 175.2250378333, "7"], +[-37.8187410167, 175.2067290167, "170C"], +[-37.8206532, 175.2170745667, "81"], +[-37.8212348667, 175.2181024167, "67"], +[-37.8213057667, 175.2185351167, "57"], +[-37.8214571, 175.2145877333, "110"], +[-37.82207085, 175.2136727167, "121"], +[-37.82190125, 175.2123493, "130"], +[-37.8207519667, 175.2102467333, "150"], +[-37.8212159, 175.2096407, "159"], +[-37.8208313833, 175.2067756, "172"], +[-37.8214413333, 175.2222779833, "28"], +[-37.8206921333, 175.2182549, "54"], +[-37.82043975, 175.2181215, "56"], +[-37.8218791, 175.2252452167, "10"], +[-37.82029435, 175.2169818, "84"], +[-37.8215885167, 175.22308725, "22"], +[-37.8215897333, 175.2233113167, "20"], +[-37.82167455, 175.2183345, "61A"], +[-37.8217164667, 175.2179857333, "63"], +[-37.82147385, 175.22253565, "26"], +[-37.8206765333, 175.2160304333, "86"], +[-37.8188941, 175.2069437, "170A"], +[-37.8188068333, 175.2068104833, "170B"], +[-37.8193742667, 175.2085580333, "170"], +[-37.8214388167, 175.2200072, "45"], +[-37.8209547167, 175.2157149167, "92"], +[-37.82088565, 175.2164849333, "85"], +[-37.82136235, 175.2159546667, "97"], +[-37.8219607333, 175.2232987, "19"], +[-37.8210501, 175.2179753833, "69"], +[-37.8212466667, 175.2222175833, "28A"], +[-37.8213836167, 175.22300555, "22A"], +[-37.821339, 175.2227439167, "24A"], +[-37.8208144333, 175.2173117167, "77"], +[-37.8189363667, 175.2211582333, "25"], +[-37.8196676167, 175.2209947333, "26B"], +[-37.8194113, 175.2211991, "26"], +[-37.81883205, 175.2209747, "27"], +[-37.8186925833, 175.2207728833, "29"], +[-37.8199931833, 175.2240802167, "2"], +[-37.8191759333, 175.2208279333, "30"], +[-37.81835395, 175.2196571667, "39"], +[-37.8198807333, 175.2235938167, "6"], +[-37.8194567833, 175.22349015, "7"], +[-37.8200507833, 175.21933875, "58"], +[-37.8197902167, 175.2182408, "59A"], +[-37.81991635, 175.21797195, "59B"], +[-37.8198223833, 175.2179361833, "59C"], +[-37.8201049333, 175.2197347167, "60"], +[-37.8199380333, 175.21836645, "61A"], +[-37.82003775, 175.2182443833, "61B"], +[-37.8200944167, 175.21803015, "61C"], +[-37.8201259667, 175.2185610667, "63"], +[-37.82026275, 175.2188001167, "65"], +[-37.8188917833, 175.2203729333, "34"], +[-37.8184921333, 175.2203832, "33"], +[-37.8190387167, 175.2206181333, "32"], +[-37.81968705, 175.2224253667, "16"], +[-37.81981205, 175.223119, "10"], +[-37.8193882833, 175.2229798333, "11"], +[-37.8190901167, 175.2227829833, "13B"], +[-37.8193593, 175.2227247833, "13"], +[-37.81993935, 175.2226893333, "14B"], +[-37.81842725, 175.2201474167, "35"], +[-37.8187965833, 175.2200475333, "36"], +[-37.8183878167, 175.2198735667, "37"], +[-37.8188702167, 175.2196982333, "38B"], +[-37.82027885, 175.2209890667, "82"], +[-37.8199839667, 175.2190668, "56"], +[-37.8187008333, 175.21973745, "38A"], +[-37.8196820167, 175.22262455, "14"], +[-37.8186528333, 175.2191018, "42"], +[-37.8182912167, 175.21915535, "43"], +[-37.81870525, 175.21945675, "40"], +[-37.8195044333, 175.2214081833, "24"], +[-37.81857075, 175.2205925167, "31"], +[-37.8195656167, 175.2181396, "57"], +[-37.8198411667, 175.2213911167, "24A"], +[-37.8195851667, 175.2240869667, "3"], +[-37.8192829167, 175.2239720167, "3A"], +[-37.8193257, 175.2224725667, "15"], +[-37.8197290167, 175.2224129833, "16A"], +[-37.8196499333, 175.2221262667, "18"], +[-37.8196755333, 175.2243193333, "1"], +[-37.8192091667, 175.22166805, "21"], +[-37.81957585, 175.22166585, "22"], +[-37.8199106833, 175.2238436, "4"], +[-37.81953715, 175.22372785, "5A"], +[-37.8193377833, 175.22378105, "5"], +[-37.8189702833, 175.2184597333, "46"], +[-37.8185876167, 175.21821495, "47A"], +[-37.8185706333, 175.2178869167, "47B"], +[-37.8191945667, 175.21845965, "48"], +[-37.8188482167, 175.2176680833, "49"], +[-37.8194043667, 175.21852395, "50"], +[-37.8196233333, 175.2186248333, "52"], +[-37.81920055, 175.2179787167, "53"], +[-37.8198255, 175.2188011167, "54"], +[-37.8205994333, 175.2207248667, "81"], +[-37.8193045333, 175.2222075667, "17"], +[-37.8205621167, 175.2204520167, "79"], +[-37.8180799333, 175.2194407, "41A"], +[-37.8208301833, 175.2206735833, "81A"], +[-37.8202558, 175.2206809333, "80"], +[-37.81941275, 175.21804965, "55"], +[-37.8190239, 175.2179808833, "51"], +[-37.8187854, 175.2180712167, "47"], +[-37.8187476667, 175.2186516333, "44"], +[-37.8182977, 175.21889655, "45"], +[-37.81831675, 175.2194069833, "41"], +[-37.8192735167, 175.2219502167, "19"], +[-37.8196219167, 175.22189825, "20"], +[-37.81962665, 175.2216432667, "22A"], +[-37.8192782833, 175.2209942, "28"], +[-37.8208129833, 175.2209176833, "83A"], +[-37.8206351167, 175.2209705667, "83"], +[-37.8203109333, 175.2212402667, "84"], +[-37.81909575, 175.22139795, "23"], +[-37.8197787167, 175.2228814, "12"], +[-37.8195628333, 175.21791605, "57A"], +[-37.8198373833, 175.2233606833, "8"], +[-37.8194342167, 175.22322975, "9"] +]; \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/realworld.50000.1.js b/lib/Leaflet.markercluster/example/realworld.50000.1.js new file mode 100644 index 000000000..9ff0e65bd --- /dev/null +++ b/lib/Leaflet.markercluster/example/realworld.50000.1.js @@ -0,0 +1,25006 @@ +//An extract of address points from the LINZ bulk extract: http://www.linz.govt.nz/survey-titles/landonline-data/landonline-bde +//Should be this data set: http://data.linz.govt.nz/#/layer/779-nz-street-address-electoral/ +var addressPoints = [ +[-37.8133062833, 175.2721598, "3"], +[-37.8129763667, 175.2714296333, "10"], +[-37.81369515, 175.2714571167, "11"], +[-37.81322845, 175.2715556, "12"], +[-37.8137875333, 175.2712745333, "13"], +[-37.8133246833, 175.27138025, "14"], +[-37.8140672667, 175.2712932667, "15"], +[-37.8131234, 175.2711189833, "16"], +[-37.8139215, 175.2710316333, "17"], +[-37.8131727667, 175.2710308833, "18"], +[-37.8134395667, 175.2711631167, "20"], +[-37.8135296833, 175.2710025667, "22"], +[-37.8133303667, 175.27073405, "24"], +[-37.8133810833, 175.27063775, "26"], +[-37.8136282, 175.2707724667, "28"], +[-37.8130419667, 175.2719659333, "4A"], +[-37.81290065, 175.2718571167, "4B"], +[-37.8134125833, 175.2719326833, "5"], +[-37.81313475, 175.2717726167, "6"], +[-37.81351645, 175.27175105, "7"], +[-37.8129273833, 175.2715157667, "8"], +[-37.8136015, 175.2715837, "9"], +[-37.8130001667, 175.27222795, "2B"], +[-37.7963047333, 175.2843573667, "15"], +[-37.7960874333, 175.28493215, "13"], +[-37.7971166833, 175.28128695, "82"], +[-37.7965409333, 175.28380265, "21"], +[-37.7972749167, 175.2818989333, "37"], +[-37.7966179667, 175.28248625, "66A"], +[-37.7960105667, 175.28512315, "1/11-8/11"], +[-37.7963686833, 175.282322, "66B"], +[-37.7951203167, 175.2851536667, "10"], +[-37.7961375, 175.2821672833, "68B"], +[-37.79737995, 175.2816439333, "39"], +[-37.7961730333, 175.2819618167, "70A"], +[-37.7954654333, 175.2855570667, "1/8-12/8"], +[-37.7957108167, 175.2850086333, "42"], +[-37.7948875833, 175.2850516833, "12A"], +[-37.7956505833, 175.28605455, "5"], +[-37.7972065, 175.2820973, "35"], +[-37.7955018167, 175.2864499833, "5/1"], +[-37.7969346333, 175.2816888667, "1/78-4/78"], +[-37.7967522, 175.2832171833, "25"], +[-37.7971626167, 175.2822221667, "33"], +[-37.7968251833, 175.28302085, "27"], +[-37.7967867667, 175.2820993833, "1/74-6/74"], +[-37.7968850167, 175.28285245, "29"], +[-37.7966419667, 175.2843294833, "17C"], +[-37.79694705, 175.2826199, "31"], +[-37.7960112333, 175.2818525333, "70B"], +[-37.7965130167, 175.28288325, "58"], +[-37.7963080167, 175.2820206667, "70"], +[-37.7967282, 175.2822898833, "72A"], +[-37.7964198667, 175.28209035, "72"], +[-37.7964117333, 175.2830907667, "48"], +[-37.7959014667, 175.28202835, "68C"], +[-37.7962757667, 175.2822026167, "68A"], +[-37.7968325667, 175.2834054667, "23"], +[-37.79669745, 175.2833584667, "23A"], +[-37.7966729833, 175.28341335, "23B"], +[-37.7968261167, 175.2819687, "1/76-9/76"], +[-37.7964832333, 175.2817090167, "1/76A-3/76A"], +[-37.7964363167, 175.2818914667, "1/74A-6/74A"], +[-37.7963863, 175.2841739667, "17"], +[-37.7967096333, 175.28413655, "19A"], +[-37.7964442833, 175.2839893833, "19"], +[-37.7948581833, 175.2851246333, "12B"], +[-37.7948372167, 175.2851950833, "12C"], +[-37.7948157, 175.2852641833, "12D"], +[-37.7947866, 175.2853299333, "12E"], +[-37.7947551667, 175.2854177333, "12F"], +[-37.79472555, 175.2855022333, "12G"], +[-37.7952800167, 175.2860632667, "2"], +[-37.7955754, 175.2862540333, "3"], +[-37.7953377, 175.2858847167, "4"], +[-37.7954048167, 175.2857095667, "6"], +[-37.7957263667, 175.2858485, "7"], +[-37.7954607167, 175.2865353833, "4/1"], +[-37.7954267833, 175.2866048833, "3/1"], +[-37.7953887833, 175.2866606833, "2/1"], +[-37.7957681333, 175.2862162667, "5A"], +[-37.79519595, 175.2857353167, "4A"], +[-37.7526627333, 175.2466557167, "80"], +[-37.7527228667, 175.2468167, "78"], +[-37.7510702, 175.2497441833, "40"], +[-37.7518557, 175.24804025, "59"], +[-37.7494975, 175.2515870333, "11"], +[-37.7488745, 175.2525123, "1"], +[-37.7516174, 175.2489435, "50"], +[-37.7490145833, 175.2527339167, "2"], +[-37.7500216167, 175.2513443833, "20"], +[-37.7489717833, 175.25234405, "3"], +[-37.7498205333, 175.25047655, "23"], +[-37.7491752333, 175.2526503667, "4"], +[-37.7521353333, 175.2481467667, "60"], +[-37.7492817667, 175.25250015, "6"], +[-37.7493941667, 175.2523276167, "8"], +[-37.7494920667, 175.2521781833, "10"], +[-37.7495952167, 175.2520009667, "12"], +[-37.7495977667, 175.25139355, "13"], +[-37.74969065, 175.2518314333, "14"], +[-37.7497120333, 175.2512141833, "15"], +[-37.7497965167, 175.2516658333, "16"], +[-37.7498118833, 175.2510840333, "17"], +[-37.7499014167, 175.2515144167, "18"], +[-37.7499334833, 175.2509375167, "19"], +[-37.75003865, 175.2507743833, "21"], +[-37.7501196667, 175.2511764167, "22"], +[-37.7502230833, 175.2510182333, "24"], +[-37.7498909833, 175.2503846167, "25"], +[-37.75034405, 175.2508521, "26"], +[-37.7501685, 175.2505870833, "27"], +[-37.75044925, 175.2506898833, "28"], +[-37.7502699333, 175.2504245333, "29"], +[-37.7505515667, 175.2505373333, "30"], +[-37.75036645, 175.2502829, "31"], +[-37.7506534, 175.25038355, "32"], +[-37.75047675, 175.2501133833, "33"], +[-37.7507629167, 175.2502213833, "34"], +[-37.7505923333, 175.2499560667, "35"], +[-37.7508608333, 175.2500617167, "36"], +[-37.7506927833, 175.2498010667, "37"], +[-37.7509818, 175.2499128333, "38"], +[-37.7508042667, 175.24962055, "39"], +[-37.7509054, 175.2494736833, "41"], +[-37.7511830667, 175.2495904833, "42"], +[-37.7510068833, 175.2493196, "43"], +[-37.7512917667, 175.2494322167, "44"], +[-37.7511105167, 175.24915595, "45"], +[-37.7513972667, 175.2492746833, "46"], +[-37.7512165, 175.2489969167, "47"], +[-37.75150655, 175.2491100333, "48"], +[-37.7513258833, 175.2488495833, "49"], +[-37.75142805, 175.2486987167, "51"], +[-37.7517239, 175.24877835, "52"], +[-37.7515348, 175.2485390167, "53"], +[-37.7518229833, 175.24862915, "54"], +[-37.7516359667, 175.2483720667, "55"], +[-37.7519233, 175.2484717667, "56"], +[-37.7517462167, 175.2482097333, "57"], +[-37.7520265667, 175.24830715, "58"], +[-37.75195795, 175.2478732333, "61"], +[-37.7522604167, 175.2479750833, "62"], +[-37.7520675, 175.2477102167, "63"], +[-37.75235865, 175.2478007167, "64"], +[-37.7521677167, 175.2475401333, "65"], +[-37.7524564167, 175.2476515167, "66"], +[-37.7522629333, 175.2473916667, "67"], +[-37.7525575, 175.2474802167, "68"], +[-37.7523612167, 175.2472550333, "69"], +[-37.7526606667, 175.2473022833, "70"], +[-37.7524271, 175.2468630167, "71"], +[-37.7527264667, 175.2471359833, "72"], +[-37.7528095833, 175.24698, "74"], +[-37.7529246833, 175.2468300333, "76"], +[-37.7525402333, 175.2465255667, "82"], +[-37.75231915, 175.2467507333, "83"], +[-37.7524511, 175.2464275333, "84"], +[-37.7536113167, 175.2733507, "3"], +[-37.7543608833, 175.2740104333, "17"], +[-37.7549532167, 175.2719578667, "41"], +[-37.7546922833, 175.2741483167, "21"], +[-37.7549671333, 175.27335505, "27"], +[-37.7540117167, 175.2736144667, "11"], +[-37.7549540167, 175.27131505, "45"], +[-37.7549574667, 175.2711043667, "47"], +[-37.7540807, 175.2727203667, "10"], +[-37.7541398833, 175.2728508667, "12"], +[-37.7540876667, 175.27380295, "13"], +[-37.75412675, 175.2731894, "14"], +[-37.7542233833, 175.2739503333, "15"], +[-37.7542598333, 175.2734034833, "16"], +[-37.7543831, 175.2735425167, "18"], +[-37.75454815, 175.2741038833, "19"], +[-37.7534861, 175.2733069, "1"], +[-37.7545930333, 175.27345405, "20"], +[-37.7546610667, 175.2732301833, "22"], +[-37.7548702667, 175.27377285, "23"], +[-37.75469915, 175.2730327167, "24"], +[-37.7549187833, 175.2735599833, "25"], +[-37.7547155833, 175.27283455, "26"], +[-37.7544469833, 175.2726582833, "28"], +[-37.7549879833, 175.2731278333, "29"], +[-37.7536274, 175.27287465, "2"], +[-37.7543420667, 175.2724951167, "30"], +[-37.75467205, 175.2725448167, "32"], +[-37.75465195, 175.2723182, "34"], +[-37.7549443333, 175.27239005, "37"], +[-37.7549397, 175.2721639333, "39"], +[-37.7537808333, 175.2733879833, "5"], +[-37.7537785333, 175.2729800667, "6"], +[-37.7537617, 175.2737050667, "7"], +[-37.7539356167, 175.273036, "8"], +[-37.7538403667, 175.2738664833, "9"], +[-37.7550107667, 175.2729220833, "31A"], +[-37.7551758, 175.2729029667, "31B"], +[-37.755018, 175.2727197333, "33A"], +[-37.75519515, 175.27270975, "33B"], +[-37.755163, 175.2725880833, "35A"], +[-37.7546470167, 175.2718992167, "27/36-36/36"], +[-37.7543707, 175.2729967833, "28B"], +[-37.7552872833, 175.2724920333, "35B"], +[-37.7795903, 175.2297470167, "30"], +[-37.7825523167, 175.23085105, "63"], +[-37.77806305, 175.23165185, "6"], +[-37.7801644, 175.2297846333, "31"], +[-37.7797396, 175.2296209833, "32"], +[-37.7803452833, 175.2297361833, "33"], +[-37.7815199167, 175.22991135, "51"], +[-37.77989105, 175.2295334667, "34"], +[-37.77931865, 175.2300138, "26"], +[-37.7800274333, 175.22943795, "36"], +[-37.78136135, 175.2298342833, "49"], +[-37.7800415333, 175.2290791667, "38"], +[-37.7822663167, 175.2305828333, "59"], +[-37.7802242167, 175.2293628833, "40"], +[-37.7779783333, 175.2312912, "2"], +[-37.7806955833, 175.2296979333, "41"], +[-37.7792800333, 175.23074075, "21"], +[-37.7803780167, 175.22929175, "42"], +[-37.78211445, 175.2304555833, "57"], +[-37.7808670667, 175.22969615, "43"], +[-37.7782321, 175.2320279667, "5"], +[-37.7805901, 175.22925555, "44"], +[-37.7805180167, 175.22972835, "39"], +[-37.7810437833, 175.2297161667, "45"], +[-37.78120255, 175.2297716333, "47"], +[-37.7806767667, 175.22893435, "46"], +[-37.7788864333, 175.23154295, "15"], +[-37.7808014167, 175.2292622, "48"], +[-37.7780779333, 175.23206055, "3"], +[-37.7809726167, 175.2292751, "50"], +[-37.7824011333, 175.23070225, "61"], +[-37.7813934833, 175.2293673833, "52"], +[-37.7816439333, 175.2299808167, "53"], +[-37.7815290333, 175.2294509667, "54"], +[-37.7816929167, 175.2295427833, "56"], +[-37.7818507, 175.2296487833, "58"], +[-37.7819964333, 175.2297900833, "60"], +[-37.7796188333, 175.2302287333, "27"], +[-37.7794519, 175.2298577333, "28"], +[-37.7794922667, 175.230397, "25"], +[-37.7787731833, 175.2310065667, "16"], +[-37.7790877667, 175.2310904833, "17"], +[-37.7788546667, 175.2308311667, "18"], +[-37.77917955, 175.2309151833, "19"], +[-37.7789401333, 175.2306263833, "20"], +[-37.7790161833, 175.23047935, "22"], +[-37.7793841167, 175.2305544, "23"], +[-37.782698, 175.2309923833, "65"], +[-37.78254265, 175.2303366667, "66"], +[-37.78283855, 175.23110475, "67"], +[-37.7829273, 175.23063315, "68"], +[-37.7829784333, 175.2312461167, "69"], +[-37.7831075, 175.2308823, "70"], +[-37.78311535, 175.2313907833, "71"], +[-37.7833152833, 175.2310647, "72"], +[-37.7832243833, 175.2314947833, "73"], +[-37.7833211667, 175.2315844667, "75"], +[-37.7784218333, 175.23149885, "10"], +[-37.7786796667, 175.2317781, "11"], +[-37.7785651667, 175.2313681833, "12"], +[-37.778805, 175.2316531833, "13"], +[-37.7786837167, 175.2311947167, "14"], +[-37.7783891, 175.2319812333, "7"], +[-37.7782664333, 175.2315970667, "8"], +[-37.77853655, 175.23189595, "9"], +[-37.7426022667, 175.24079325, "1"], +[-37.7423280833, 175.2408160333, "2"], +[-37.7426326333, 175.2405849167, "3"], +[-37.7422644833, 175.2406207833, "4"], +[-37.7427692167, 175.240406, "5"], +[-37.74228625, 175.2403922667, "6A"], +[-37.7421196667, 175.2403298167, "6B"], +[-37.7426181, 175.24034565, "7"], +[-37.74232865, 175.24018705, "8"], +[-37.74247115, 175.2403050333, "9"], +[-37.7382507167, 175.2868172667, "22"], +[-37.7381315, 175.2843958833, "3"], +[-37.7381262167, 175.2846988, "5"], +[-37.7381631833, 175.2841430333, "1"], +[-37.7383792833, 175.2850156167, "8"], +[-37.7383929333, 175.2844138667, "4"], +[-37.7383295167, 175.285224, "10"], +[-37.7384246667, 175.28415835, "2"], +[-37.7379851833, 175.2854345833, "11"], +[-37.73790475, 175.2864521, "19"], +[-37.7388353833, 175.2878682, "37"], +[-37.7379118833, 175.2862130333, "17"], +[-37.7377287, 175.2870766167, "25"], +[-37.7379191, 175.28596855, "15"], +[-37.7380173333, 175.2870277667, "27"], +[-37.7379464833, 175.2856687667, "13"], +[-37.7377006833, 175.28692405, "23"], +[-37.7382044667, 175.2857257333, "14"], +[-37.7381166833, 175.2849524, "7"], +[-37.7381959333, 175.2860001833, "16"], +[-37.7389513167, 175.2878800333, "39"], +[-37.7381968667, 175.2861700167, "18"], +[-37.7389547833, 175.2875131, "32"], +[-37.7382489333, 175.2854733333, "12"], +[-37.7388035833, 175.2874708333, "30"], +[-37.7383335167, 175.2870216833, "24"], +[-37.7380534, 175.28520155, "9"], +[-37.7384627, 175.2872068333, "26"], +[-37.7379309167, 175.2867162833, "21"], +[-37.7386326167, 175.2873640833, "28"], +[-37.7384240167, 175.28764175, "35"], +[-37.7382255667, 175.2874356667, "33"], +[-37.7381085333, 175.28727485, "31"], +[-37.7377695333, 175.2873247667, "29"], +[-37.74576545, 175.2801519833, "1"], +[-37.7457727667, 175.2767370833, "10"], +[-37.74578905, 175.27789395, "11"], +[-37.74588215, 175.2776111833, "13"], +[-37.7459399167, 175.27734925, "15"], +[-37.74587005, 175.2771799, "17"], +[-37.74547005, 175.2780418333, "2"], +[-37.7456102833, 175.2776749333, "4"], +[-37.7455939833, 175.279055, "5"], +[-37.7456604833, 175.2773555667, "6"], +[-37.7455210833, 175.2785293833, "7"], +[-37.7457362333, 175.2771513833, "8"], +[-37.7456594333, 175.2781711167, "9"], +[-37.7733726, 175.2283941667, "10"], +[-37.77335985, 175.2285005167, "11"], +[-37.7728150167, 175.2282918333, "1"], +[-37.7729213667, 175.22835975, "3"], +[-37.7730988667, 175.2281363333, "4"], +[-37.7730564667, 175.2284886333, "5"], +[-37.77323325, 175.228214, "6"], +[-37.7731997333, 175.2285643333, "7"], +[-37.7733738167, 175.2282473667, "8"], +[-37.7733055167, 175.2285721, "9"], +[-37.7989684833, 175.2847525, "26"], +[-37.7985329667, 175.2849760833, "21A"], +[-37.79918025, 175.2845388667, "30"], +[-37.7985672167, 175.2845534, "20"], +[-37.7992507333, 175.2849590333, "28"], +[-37.7970450667, 175.2841272667, "3"], +[-37.7969055667, 175.2840261667, "1"], +[-37.7973529, 175.28381785, "6"], +[-37.7982015167, 175.2843501, "16"], +[-37.7986101833, 175.2850249333, "21B"], +[-37.7974951167, 175.28391765, "8"], +[-37.7976571833, 175.2840513, "10"], +[-37.7976339333, 175.2835884833, "8A"], +[-37.797837, 175.2838331167, "12A"], +[-37.7984020333, 175.28446435, "18"], +[-37.797768, 175.28411735, "12"], +[-37.79721575, 175.28372695, "4"], +[-37.79809185, 175.28392875, "14B"], +[-37.7979984333, 175.2842398833, "14"], +[-37.7985361667, 175.2853427833, "21"], +[-37.79881635, 175.2851726167, "23"], +[-37.79719475, 175.2842075833, "5A-5D"], +[-37.7973529333, 175.2842807, "1/7-4/7"], +[-37.7975003, 175.2843808, "9A-9C"], +[-37.7976507833, 175.2844691167, "1/11-4/11"], +[-37.7979584667, 175.28465635, "13A-13C"], +[-37.79808345, 175.2847333167, "15"], +[-37.7982285, 175.28483635, "17"], +[-37.79832395, 175.2848904, "1/19-8/19"], +[-37.7970511, 175.2836297167, "1/2-10/2"], +[-37.79729865, 175.2834875167, "4A"], +[-37.80676245, 175.3177359833, "51"], +[-37.80649065, 175.31742755, "46"], +[-37.8065998167, 175.3188609333, "41"], +[-37.80653075, 175.3171622667, "48"], +[-37.80672665, 175.3179617667, "49"], +[-37.8065284833, 175.31690025, "50"], +[-37.80658115, 175.3186351333, "43"], +[-37.8062753667, 175.3167755, "52"], +[-37.8066606167, 175.3184348167, "45"], +[-37.8067924667, 175.3175325833, "53"], +[-37.80671325, 175.3181340833, "47A"], +[-37.80617745, 175.316522, "54"], +[-37.8068280333, 175.3173035833, "55"], +[-37.8064927833, 175.3165469667, "56"], +[-37.80683135, 175.31704925, "57"], +[-37.8064109333, 175.3162332167, "58"], +[-37.8068150833, 175.3167927333, "59"], +[-37.8058367667, 175.3166707833, "60A"], +[-37.8060613167, 175.31639555, "60"], +[-37.8062562, 175.31607395, "62"], +[-37.8064312333, 175.3180832833, "35"], +[-37.8062965833, 175.3177750833, "37"], +[-37.8067021167, 175.3191744167, "39A"], +[-37.8065654833, 175.3190530167, "39"], +[-37.8067379333, 175.3182333167, "47"], +[-37.8050866167, 175.3199349167, "8"], +[-37.8055928167, 175.31766395, "32"], +[-37.80600175, 175.3172362, "42"], +[-37.80508205, 175.32019145, "6"], +[-37.8054805833, 175.3186927167, "15"], +[-37.8050863, 175.3197238, "10"], +[-37.8050804167, 175.3190353833, "16"], +[-37.8050769333, 175.31948565, "12"], +[-37.8050786167, 175.3192836, "14"], +[-37.8049880667, 175.32071025, "2"], +[-37.8053545667, 175.318199, "26"], +[-37.80542725, 175.3180215833, "28"], +[-37.8058702333, 175.3171609667, "40"], +[-37.8055113333, 175.3178532667, "30"], +[-37.8057916667, 175.3180361, "21"], +[-37.8059676, 175.3176887167, "33"], +[-37.8058860167, 175.3178473, "23"], +[-37.8056773667, 175.3174976667, "34"], +[-37.8061824167, 175.31731425, "44"], +[-37.8057616667, 175.3173423833, "36"], +[-37.8053075833, 175.32077325, "1"], +[-37.8056852167, 175.3170727333, "38"], +[-37.8055916, 175.3184590667, "17"], +[-37.8050495833, 175.32048175, "4"], +[-37.8054006333, 175.3189210167, "11"], +[-37.8056848833, 175.3182527667, "19"], +[-37.8053598167, 175.3196988333, "9"], +[-37.8141623333, 175.2904298833, "24A"], +[-37.8137268833, 175.290981, "19A"], +[-37.8133734, 175.2900433, "7"], +[-37.81353205, 175.2910462833, "19B"], +[-37.8135730333, 175.2903496, "11A"], +[-37.8140261, 175.2911672167, "32"], +[-37.8130963667, 175.2893586333, "10"], +[-37.81263735, 175.2893969, "3"], +[-37.8126824667, 175.288822, "4A"], +[-37.81277215, 175.2889887333, "4B"], +[-37.8128708833, 175.2891007, "6"], +[-37.8129672833, 175.2892470167, "8"], +[-37.81245515, 175.2890804667, "1"], +[-37.8125490333, 175.28923525, "1A"], +[-37.8133943833, 175.2905209333, "11B"], +[-37.81325365, 175.2894801167, "12"], +[-37.8133599667, 175.2908143833, "13A"], +[-37.8133315667, 175.2906872833, "13B"], +[-37.8133791833, 175.2895916167, "14"], +[-37.8137030667, 175.2905865167, "15"], +[-37.8136513, 175.289721, "16A"], +[-37.8134869333, 175.28974655, "16"], +[-37.8137451333, 175.29078475, "17A"], +[-37.8135912167, 175.2908174333, "17B"], +[-37.8133612333, 175.2911479667, "21"], +[-37.8139377, 175.29040185, "22"], +[-37.8133652833, 175.2912957333, "23"], +[-37.8139982833, 175.29056495, "24"], +[-37.8135641833, 175.2912933167, "25"], +[-37.81404405, 175.2907543333, "26"], +[-37.8137559833, 175.2912906667, "27"], +[-37.8140468, 175.2909646667, "28"], +[-37.8141526667, 175.2912052333, "32A"], +[-37.8141375167, 175.2914799333, "34A"], +[-37.8139148333, 175.2913361333, "34"], +[-37.8133045, 175.2899200667, "5"], +[-37.8134765333, 175.2902077333, "9"], +[-37.8138246667, 175.2902012667, "20"], +[-37.8139653, 175.29010415, "20A"], +[-37.8138155833, 175.28986205, "18A"], +[-37.8136620833, 175.2899473333, "18"], +[-37.7586113167, 175.25753835, "24D"], +[-37.7571240833, 175.2548212333, "56"], +[-37.7602689167, 175.25760555, "3"], +[-37.7555469167, 175.2533705, "95"], +[-37.7591112, 175.2569735333, "24"], +[-37.7553887667, 175.2533035333, "97"], +[-37.7569315667, 175.2557194667, "50B"], +[-37.7573772667, 175.25582565, "44"], +[-37.7588874167, 175.2573692667, "24A"], +[-37.7601590833, 175.2573022167, "5A"], +[-37.7546199667, 175.2532396667, "100"], +[-37.7603773167, 175.2568975167, "9"], +[-37.7599685167, 175.2583194833, "2A"], +[-37.7566412667, 175.2543741667, "64"], +[-37.7591941667, 175.2570881833, "22"], +[-37.75652325, 175.2542734333, "66"], +[-37.7556883833, 175.2534237167, "93"], +[-37.7564108667, 175.25418385, "68"], +[-37.7558319667, 175.2534880167, "91"], +[-37.756268, 175.2540643, "70"], +[-37.75687455, 175.2546086833, "60"], +[-37.7561125333, 175.2539887167, "72"], +[-37.7573264833, 175.2545222, "71"], +[-37.7559693833, 175.2539314167, "74"], +[-37.7567536167, 175.2544992167, "62"], +[-37.7565948667, 175.25391555, "81"], +[-37.7571467333, 175.2543556667, "75"], +[-37.7564607333, 175.2538069833, "83"], +[-37.7586265167, 175.25586525, "41"], +[-37.7563280167, 175.2537102667, "85"], +[-37.7588871333, 175.2561486833, "37"], +[-37.7572607167, 175.25496085, "54"], +[-37.7558253, 175.2538713333, "76"], +[-37.7574200833, 175.2551311833, "48"], +[-37.7599127333, 175.2581977167, "4"], +[-37.7570745667, 175.2551516667, "54A"], +[-37.7588073167, 175.2574677333, "24B"], +[-37.7568505, 175.255313, "52C"], +[-37.7602110333, 175.2581551, "2"], +[-37.75701805, 175.2557526667, "50A"], +[-37.7600245333, 175.2579385, "4A"], +[-37.7571302167, 175.255552, "50"], +[-37.7577407333, 175.25552605, "40"], +[-37.7552593833, 175.2536420167, "90"], +[-37.7549178, 175.2530341, "99"], +[-37.7581930833, 175.2560164167, "34"], +[-37.7586953667, 175.2574093833, "24E"], +[-37.7579063333, 175.2559464333, "36A"], +[-37.7586811, 175.2576366667, "24C"], +[-37.75803495, 175.2558527, "36"], +[-37.7605071333, 175.2573793167, "3B"], +[-37.7579555833, 175.2556724, "38"], +[-37.7570079833, 175.2546933333, "58"], +[-37.7574056667, 175.2559671167, "42B"], +[-37.7590481667, 175.2571549833, "22A"], +[-37.7574712333, 175.2558953833, "42"], +[-37.75703985, 175.2554714333, "52A"], +[-37.7584775167, 175.25570895, "43"], +[-37.7601490167, 175.25744245, "5"], +[-37.75740395, 175.25544615, "46A"], +[-37.7587578167, 175.2560076, "39"], +[-37.7575795, 175.25529215, "46"], +[-37.75694325, 175.2553864667, "52B"], +[-37.7581807667, 175.2552247833, "67A"], +[-37.7604196, 175.2573070333, "3A"], +[-37.7585851667, 175.2556666, "43A"], +[-37.7570280667, 175.2542667833, "77"], +[-37.7577501833, 175.2558364, "38A"], +[-37.7573509833, 175.2542716167, "71A"], +[-37.75802325, 175.2552423333, "67"], +[-37.7591614167, 175.2564508333, "33"], +[-37.75450525, 175.2531347167, "102"], +[-37.7590404667, 175.2563038167, "35"], +[-37.7543890167, 175.2530281333, "104"], +[-37.7542769667, 175.2529287667, "106"], +[-37.7541506167, 175.2528202667, "108"], +[-37.7545566167, 175.2527185333, "117"], +[-37.7544476667, 175.2525956, "119"], +[-37.7548460167, 175.2528978167, "103"], +[-37.7547047333, 175.2527681333, "109"], +[-37.7543363833, 175.2524791667, "121"], +[-37.7588727, 175.2569593333, "26A"], +[-37.7590205167, 175.2568753167, "26"], +[-37.7588961167, 175.2567388667, "28"], +[-37.7587651833, 175.25730405, "24F"], +[-37.7594385167, 175.2579906167, "10"], +[-37.7598565667, 175.2571432833, "11A"], +[-37.7600053333, 175.2572754167, "11"], +[-37.7592099, 175.2577228667, "16"], +[-37.75957105, 175.2568749667, "17"], +[-37.7591164833, 175.2576102333, "18"], +[-37.7604824833, 175.2578731333, "1A"], +[-37.7605092167, 175.2576746, "1B"], +[-37.7603786667, 175.2577308667, "1"], +[-37.7593307667, 175.2572254833, "20"], +[-37.7598655167, 175.2577671, "6"], +[-37.7605607167, 175.25676785, "7A"], +[-37.76044655, 175.25699705, "7"], +[-37.7595336167, 175.2580825167, "8"], +[-37.75952055, 175.2574059667, "1/14-3/14"], +[-37.7596735667, 175.2575873167, "1/12-4/12"], +[-37.7598675833, 175.25684825, "15A"], +[-37.7596844833, 175.2570270167, "15"], +[-37.7927420333, 175.32180325, "36"], +[-37.7946345333, 175.32099075, "2"], +[-37.7911877, 175.3225938667, "61"], +[-37.7922202333, 175.3224650167, "50"], +[-37.7906811167, 175.32319335, "69"], +[-37.7919921, 175.3215613, "51"], +[-37.7899161333, 175.3247164333, "90"], +[-37.7944911833, 175.3209721167, "4"], +[-37.7922346667, 175.32034385, "37A"], +[-37.7904824833, 175.32392205, "76"], +[-37.7895439, 175.32404335, "2/81"], +[-37.7899860167, 175.3239205333, "77"], +[-37.7893835667, 175.3244414, "85A"], +[-37.7903414333, 175.3240391667, "78"], +[-37.7906375167, 175.324218, "80B"], +[-37.7898679, 175.3241003, "79"], +[-37.7946248667, 175.3205589833, "3"], +[-37.7939062333, 175.3204353667, "13"], +[-37.7901524333, 175.32434235, "86"], +[-37.7935053833, 175.3207978, "14"], +[-37.7907746833, 175.3230754667, "67"], +[-37.7910763667, 175.3224897, "61A"], +[-37.7904843833, 175.3243333333, "80A"], +[-37.7914462667, 175.3222593, "57"], +[-37.7911225667, 175.32327275, "66"], +[-37.7916632333, 175.32258335, "56"], +[-37.7947556, 175.3205914667, "1"], +[-37.7913432167, 175.3223744167, "59"], +[-37.7904334, 175.3243948333, "82"], +[-37.7914791833, 175.32280475, "60"], +[-37.78963695, 175.3244195167, "83"], +[-37.7913585, 175.3229734, "62"], +[-37.7910183667, 175.3234151667, "68"], +[-37.79123905, 175.3231277167, "64"], +[-37.7897601167, 175.3242590167, "81"], +[-37.7938083667, 175.32084825, "10"], +[-37.7902519833, 175.3247503833, "84"], +[-37.7940631167, 175.3204462333, "11"], +[-37.78945415, 175.32418005, "1/81"], +[-37.79365105, 175.3208285833, "12"], +[-37.7895323667, 175.3246038333, "85"], +[-37.7937639167, 175.3204068833, "15"], +[-37.7900115833, 175.3245532, "88"], +[-37.7933329667, 175.3207723167, "16"], +[-37.7944859667, 175.3205233333, "5"], +[-37.79361575, 175.3203867167, "17"], +[-37.79435185, 175.3204993667, "7"], +[-37.793131, 175.3208101167, "18"], +[-37.7921364, 175.3204147167, "39A"], +[-37.7935049167, 175.3203682167, "19"], +[-37.7932720667, 175.3212142, "20"], +[-37.7932684, 175.3201657667, "21A"], +[-37.7933115167, 175.3203977167, "21"], +[-37.7931664667, 175.3212763167, "22"], +[-37.7931661167, 175.3203576333, "23"], +[-37.7928709333, 175.3210089333, "24"], +[-37.79301595, 175.3204172167, "25"], +[-37.7927706833, 175.3211338167, "26"], +[-37.79291145, 175.3205166167, "27"], +[-37.79299285, 175.3214695, "28"], +[-37.7927581333, 175.3205879833, "29"], +[-37.7929192, 175.3215631, "30"], +[-37.7926372167, 175.32132275, "32"], +[-37.7926270167, 175.3207435667, "33"], +[-37.7925304833, 175.3214679, "34"], +[-37.7925363167, 175.320954, "35"], +[-37.7923002667, 175.3205889167, "37"], +[-37.7922253333, 175.32068265, "39"], +[-37.7923946667, 175.3216380167, "40"], +[-37.7923920833, 175.3210697, "41"], +[-37.7922846167, 175.3217596167, "42"], +[-37.7922734, 175.32122255, "43"], +[-37.7921770667, 175.3219029667, "44"], +[-37.79204235, 175.3209740333, "45"], +[-37.7920811333, 175.3220287667, "46"], +[-37.7919452833, 175.32105085, "47"], +[-37.7922866833, 175.3223795167, "48"], +[-37.79210275, 175.3214329333, "49"], +[-37.7919408333, 175.3222175, "52"], +[-37.79190795, 175.321681, "53"], +[-37.7918473833, 175.3223407167, "54"], +[-37.7942028, 175.3204831333, "9"], +[-37.7928066333, 175.3220568333, "38A"], +[-37.7926785333, 175.3218895333, "38"], +[-37.7925051, 175.32031085, "31"], +[-37.7926162, 175.3203231667, "29A"], +[-37.7927861167, 175.3202612833, "27A"], +[-37.7909124833, 175.32354485, "70"], +[-37.79056375, 175.3233634, "71"], +[-37.7907993833, 175.3237157833, "72"], +[-37.79064825, 175.3238347167, "74"], +[-37.7898076333, 175.3248360167, "92"], +[-37.8241965167, 175.27681875, "55B"], +[-37.8238684667, 175.2749384167, "94"], +[-37.8241188833, 175.27721345, "51B"], +[-37.8238838167, 175.2747305667, "96"], +[-37.8238966833, 175.2773726667, "49E"], +[-37.8218008667, 175.2823195167, "16"], +[-37.8226263333, 175.2821825667, "15B"], +[-37.82040025, 175.2827423333, "1A"], +[-37.8234818333, 175.28085245, "29"], +[-37.8205518, 175.2827457667, "1B"], +[-37.8237641167, 175.2787436833, "39"], +[-37.8229076833, 175.2815679667, "19"], +[-37.8225907167, 175.282246, "15"], +[-37.8233886167, 175.2809621167, "27"], +[-37.8242419667, 175.2763482667, "57A"], +[-37.8239443, 175.2769699, "53"], +[-37.82213865, 175.2823268167, "20"], +[-37.8216341667, 175.2823164667, "14"], +[-37.8240803833, 175.27632325, "57B"], +[-37.8219959667, 175.2823362333, "18"], +[-37.8240523667, 175.27780495, "49D"], +[-37.8204800667, 175.2829738333, "1"], +[-37.8237943833, 175.2779712833, "47"], +[-37.82062355, 175.28230815, "2"], +[-37.8238462667, 175.2777551167, "49C"], +[-37.8212182167, 175.28284695, "7"], +[-37.82403555, 175.2779547, "47A"], +[-37.8209495333, 175.2822991167, "8"], +[-37.8239795333, 175.2767899667, "55A"], +[-37.8205839667, 175.2820144333, "2A"], +[-37.82377455, 175.27812405, "45"], +[-37.8215228167, 175.28281435, "9"], +[-37.8234981833, 175.2780033, "50A"], +[-37.82170675, 175.2828187833, "9A"], +[-37.8239184333, 175.277161, "51"], +[-37.82136615, 175.2823164167, "12A"], +[-37.8236665, 175.2765521, "78"], +[-37.8213790833, 175.2821914, "12B"], +[-37.8242788, 175.2804344667, "37A"], +[-37.8213873167, 175.2820770167, "12C"], +[-37.8243306167, 175.27130215, "132"], +[-37.8213885, 175.28192755, "10F"], +[-37.8236374667, 175.2767537167, "76"], +[-37.8212561, 175.2819188667, "10E"], +[-37.8249391833, 175.2774568333, "49A"], +[-37.8211394333, 175.2819006667, "10D"], +[-37.824285, 175.2760401833, "59B"], +[-37.8212442333, 175.2820698, "10C"], +[-37.8236860333, 175.27635345, "80"], +[-37.8212307, 175.2821888167, "10B"], +[-37.8212182, 175.2823094833, "10A"], +[-37.8207353167, 175.2827611, "3"], +[-37.8207764667, 175.28230325, "4"], +[-37.8208584, 175.28277065, "5"], +[-37.8219283167, 175.2821005, "18A"], +[-37.8224730667, 175.282413, "11A"], +[-37.8226415333, 175.2825246333, "11"], +[-37.8228223333, 175.28171565, "17A"], +[-37.8227438333, 175.28187925, "17"], +[-37.8229756167, 175.2813823167, "21"], +[-37.82305845, 175.28118585, "23"], +[-37.8231947833, 175.2808778833, "25B"], +[-37.8233810333, 175.2804510333, "31"], +[-37.8235317333, 175.2801086667, "33"], +[-37.8235851, 175.2797377167, "35"], +[-37.8236495833, 175.2792095333, "37"], +[-37.8231242833, 175.2809984167, "25A"], +[-37.82337775, 175.2787403, "48"], +[-37.82340355, 175.2785112667, "50"], +[-37.8239892667, 175.2785148167, "41B"], +[-37.8240368333, 175.27821475, "47B"], +[-37.8237790667, 175.2783187833, "41A"], +[-37.82352695, 175.2778077333, "58"], +[-37.823551, 175.2776149667, "62"], +[-37.8241171167, 175.2774021167, "49F"], +[-37.8239779167, 175.2776127667, "49"], +[-37.8248249167, 175.2772896, "49B"], +[-37.8242302833, 175.2747879, "71A"], +[-37.8244543833, 175.2748572333, "71B"], +[-37.8242549667, 175.2745727333, "73A"], +[-37.82447985, 175.2746232167, "73B"], +[-37.8240596, 175.27607855, "59"], +[-37.82408805, 175.275827, "61A"], +[-37.8243140167, 175.27587395, "61B"], +[-37.8241310833, 175.2756213833, "63A"], +[-37.8243314667, 175.2756637667, "63B"], +[-37.8241535167, 175.2754153833, "65A"], +[-37.8243639333, 175.2754528833, "65B"], +[-37.8241645333, 175.2752088667, "67A"], +[-37.8243902667, 175.2752607667, "67B"], +[-37.8242001667, 175.27499485, "69A"], +[-37.82441175, 175.2750472833, "69B"], +[-37.8237114833, 175.2761449333, "82"], +[-37.8237355667, 175.2759503, "84"], +[-37.8237632833, 175.27574155, "86"], +[-37.8237882667, 175.2755390833, "88"], +[-37.82381015, 175.2753418833, "90"], +[-37.8238432667, 175.2751367667, "92"], +[-37.8239999833, 175.2738956167, "104"], +[-37.8240210667, 175.2737093333, "106"], +[-37.8240445333, 175.2735191333, "108"], +[-37.82406555, 175.2733278667, "110"], +[-37.8240905833, 175.27312475, "112"], +[-37.8241150333, 175.2729469333, "114"], +[-37.8241436833, 175.2727674667, "116"], +[-37.8241611333, 175.2725681833, "118"], +[-37.8238464667, 175.2725335, "120"], +[-37.8238849833, 175.27238585, "122"], +[-37.8239045167, 175.272067, "124"], +[-37.8241957333, 175.2723226167, "126"], +[-37.82422385, 175.2721283667, "128"], +[-37.8246887167, 175.2718511, "129"], +[-37.8242512667, 175.2719449833, "130"], +[-37.80241385, 175.2902670167, "66"], +[-37.7982149833, 175.2899073667, "15"], +[-37.7993242333, 175.28920545, "37"], +[-37.7999863833, 175.2884532167, "20"], +[-37.7991915667, 175.2889058333, "8"], +[-37.8014135, 175.2885213833, "42"], +[-37.7986741167, 175.2897048833, "23"], +[-37.799741, 175.2889629833, "43"], +[-37.7979464, 175.290065, "11"], +[-37.7996160333, 175.2890803, "41"], +[-37.8010037333, 175.2886844, "63"], +[-37.7974138167, 175.2904289833, "5"], +[-37.8006190333, 175.2886417, "57"], +[-37.8023269333, 175.2897991833, "60"], +[-37.7992245167, 175.28927225, "35"], +[-37.80090555, 175.2886665333, "61"], +[-37.8000303833, 175.2887848333, "49"], +[-37.8003163667, 175.2886968667, "53"], +[-37.7999003833, 175.2893050167, "45A"], +[-37.8004717833, 175.2886600167, "55"], +[-37.8013125, 175.28847195, "40"], +[-37.7994755167, 175.2891421833, "39"], +[-37.80155815, 175.2886235333, "44"], +[-37.79893695, 175.2890802333, "4"], +[-37.7999064833, 175.2888696167, "47"], +[-37.7969771, 175.29081325, "3"], +[-37.7995160667, 175.2887490833, "12"], +[-37.80015675, 175.2887249667, "51"], +[-37.8002581333, 175.2883439, "22A"], +[-37.8021681167, 175.2905392167, "87"], +[-37.7987309333, 175.2889455167, "2B"], +[-37.8016983667, 175.28874985, "46"], +[-37.7988048833, 175.2891518, "2A"], +[-37.8018159, 175.2888732167, "48"], +[-37.8024284667, 175.2904755667, "68"], +[-37.8019264333, 175.2889929667, "50"], +[-37.7980778833, 175.28999915, "13"], +[-37.8020141833, 175.2891377167, "52"], +[-37.7999884333, 175.2892237333, "45B"], +[-37.8021099333, 175.2892734, "54"], +[-37.8024358833, 175.2906659, "70"], +[-37.8021982167, 175.2894372667, "56"], +[-37.80031875, 175.2881210667, "24A-24E"], +[-37.8015459, 175.2890144333, "67"], +[-37.7987521833, 175.2897102833, "25"], +[-37.80165935, 175.2891381667, "69"], +[-37.7977966833, 175.2901788333, "9"], +[-37.80176665, 175.2892781667, "71"], +[-37.8003900667, 175.2883225833, "26"], +[-37.80186405, 175.2894311667, "73"], +[-37.80238325, 175.2899720833, "62"], +[-37.8019631, 175.28959135, "75"], +[-37.8024163167, 175.2908224, "72"], +[-37.8020717833, 175.2899037667, "79"], +[-37.7990409833, 175.2893947333, "33"], +[-37.8021073833, 175.29007425, "81"], +[-37.8014278833, 175.2889061167, "65"], +[-37.8018024833, 175.2901045333, "83A"], +[-37.8007812, 175.2886494833, "59"], +[-37.8017963833, 175.29031965, "83B"], +[-37.7968200167, 175.29095195, "1"], +[-37.8021533667, 175.290333, "85"], +[-37.8021686333, 175.2907345167, "89"], +[-37.8020112833, 175.2897446667, "77"], +[-37.8022641, 175.2896155167, "58"], +[-37.8024028833, 175.2900964, "64"], +[-37.7976264833, 175.2902829667, "7"], +[-37.80237385, 175.2894069333, "56A"], +[-37.7990656167, 175.2889912667, "6"], +[-37.79963685, 175.2886870167, "14"], +[-37.7990501333, 175.2894997333, "31"], +[-37.7997296833, 175.2886239333, "16"], +[-37.8000479667, 175.2883311, "22"], +[-37.7998389833, 175.2885436667, "18"], +[-37.8023825167, 175.2910089333, "74"], +[-37.8005658333, 175.2882178833, "28"], +[-37.8006798833, 175.2882838167, "30"], +[-37.8008160667, 175.2882844167, "32"], +[-37.8009701667, 175.28831155, "34"], +[-37.8011108167, 175.2883713167, "36"], +[-37.8012186333, 175.2884287667, "38"], +[-37.7993873833, 175.2888325667, "10"], +[-37.7983234333, 175.2898356667, "17"], +[-37.7984179, 175.2897796333, "19"], +[-37.7985297667, 175.2897267667, "21"], +[-37.7219535167, 175.2511597333, "6"], +[-37.7215231167, 175.25046125, "1"], +[-37.7222113833, 175.2514378, "10"], +[-37.7221116, 175.2514829333, "12"], +[-37.72193855, 175.2513528333, "14"], +[-37.7218250167, 175.25126615, "16"], +[-37.7216965167, 175.2511064, "18"], +[-37.7214676667, 175.2510194167, "20"], +[-37.72138545, 175.2506123, "3"], +[-37.7212047167, 175.2508552667, "17"], +[-37.7211835833, 175.2504155833, "5"], +[-37.7210690167, 175.2502459167, "7"], +[-37.7208944833, 175.2501883833, "9"], +[-37.7209146167, 175.25041025, "11"], +[-37.7208482167, 175.2505670833, "13"], +[-37.7210476667, 175.2506150833, "15"], +[-37.7217118833, 175.2507612333, "2"], +[-37.7854193333, 175.2509506833, "1"], +[-37.7849042833, 175.2499512667, "14"], +[-37.78509265, 175.2510832333, "2"], +[-37.7853713667, 175.2506011833, "5"], +[-37.7846935833, 175.2503870167, "10B"], +[-37.78484385, 175.2495603167, "20"], +[-37.7847210833, 175.2494100167, "24"], +[-37.7847929667, 175.2491449833, "26A"], +[-37.7848375667, 175.2489591167, "26"], +[-37.7849285, 175.2488921833, "29"], +[-37.7851256167, 175.2491535333, "23"], +[-37.78506675, 175.2489471833, "25"], +[-37.7850825333, 175.2485887833, "27"], +[-37.7845400167, 175.2496529667, "22"], +[-37.7849392833, 175.2503351, "10A"], +[-37.7849326333, 175.2501188, "12"], +[-37.7848722167, 175.2497700833, "18"], +[-37.7849728, 175.2505879833, "10"], +[-37.7852965167, 175.2500999833, "11"], +[-37.78526045, 175.2499298667, "13"], +[-37.7852280667, 175.2497654, "15"], +[-37.7851850167, 175.2495794667, "17"], +[-37.78539985, 175.25077625, "3"], +[-37.7850663667, 175.2509074833, "4"], +[-37.7850289167, 175.2507431833, "6"], +[-37.78535555, 175.2504389333, "7"], +[-37.78533195, 175.25026705, "9"], +[-37.78473725, 175.2506203167, "8"], +[-37.7848357333, 175.2508, "6A"], +[-37.7565562, 175.2549073333, "29"], +[-37.7563163667, 175.2564642, "18"], +[-37.7560147167, 175.25618045, "24"], +[-37.75660345, 175.25520185, "25"], +[-37.7567388833, 175.2568361667, "12"], +[-37.7573668833, 175.2568963167, "5"], +[-37.7564864167, 175.2560915167, "17"], +[-37.7568851667, 175.2569883167, "10"], +[-37.75588285, 175.2560645833, "28"], +[-37.7565901833, 175.25674115, "14"], +[-37.7569353167, 175.2564955333, "11"], +[-37.7566435, 175.2562171167, "15"], +[-37.75628875, 175.2558365167, "19"], +[-37.7562858167, 175.2567734333, "16B"], +[-37.7577192333, 175.2571786, "1"], +[-37.7564582167, 175.2565833667, "16"], +[-37.7561588833, 175.2563080333, "20"], +[-37.7570698, 175.25662795, "9"], +[-37.7563945333, 175.25565005, "21"], +[-37.7565108833, 175.2569899, "14B"], +[-37.7575164833, 175.2570539833, "3"], +[-37.7566524167, 175.254983, "27"], +[-37.75719065, 175.25725785, "6"], +[-37.7566467333, 175.2571579, "12A"], +[-37.7564215833, 175.2550470667, "38"], +[-37.7573353, 175.2573808, "4"], +[-37.7561433833, 175.25663765, "18A"], +[-37.7572176333, 175.25676515, "7"], +[-37.7561843333, 175.2554940167, "34"], +[-37.7559420333, 175.2565706833, "22"], +[-37.7570358, 175.2571253833, "8"], +[-37.7562800667, 175.2552719333, "36"], +[-37.7557665, 175.2563835167, "26"], +[-37.7559686, 175.2558984667, "30"], +[-37.7560761, 175.2557135833, "32"], +[-37.7565173667, 175.25548485, "23"], +[-37.75747865, 175.25750905, "2"], +[-37.75679395, 175.2563604333, "13"], +[-37.7873964833, 175.27072835, "10"], +[-37.7882581667, 175.2713297667, "18"], +[-37.7875663167, 175.2708283, "12"], +[-37.78845945, 175.27148155, "20"], +[-37.7873456667, 175.2711480167, "13"], +[-37.7884196667, 175.27198995, "23"], +[-37.7876674, 175.2709202667, "14"], +[-37.7880431833, 175.2716897833, "17"], +[-37.78747845, 175.2712319333, "15"], +[-37.7882560833, 175.2718754, "21"], +[-37.78665675, 175.2705721167, "1"], +[-37.7867616167, 175.2701457167, "2"], +[-37.7868675667, 175.27027435, "4"], +[-37.7870648667, 175.2704433667, "6"], +[-37.7872769167, 175.2705923833, "8"], +[-37.7871957, 175.2710312833, "9"], +[-37.7870168833, 175.2708793667, "7"], +[-37.7868446, 175.2707455833, "5"], +[-37.7885772, 175.27209615, "25"], +[-37.7885617667, 175.2715789167, "24"], +[-37.7886525, 175.2716503667, "26"], +[-37.7803574667, 175.2347099333, "8"], +[-37.7805958667, 175.2350436, "4"], +[-37.7804248833, 175.2347864167, "7"], +[-37.7806192333, 175.2350030667, "5"], +[-37.7803826333, 175.2348583167, "2"], +[-37.7805190667, 175.2348865833, "6"], +[-37.7803111167, 175.2348034333, "1"], +[-37.7804832667, 175.2349529833, "3"], +[-37.7957075667, 175.2612819333, "6"], +[-37.7689557167, 175.2842474, "53"], +[-37.7687314, 175.28293485, "14"], +[-37.7689229333, 175.28454675, "53A"], +[-37.76878605, 175.2825319833, "15"], +[-37.76788515, 175.28315715, "29"], +[-37.7696484833, 175.2830194333, "1"], +[-37.7677319167, 175.28351535, "33"], +[-37.7679684833, 175.2829849333, "27"], +[-37.7677982167, 175.2833376, "31"], +[-37.7680086833, 175.283931, "39"], +[-37.7681519167, 175.28325775, "30"], +[-37.7688253, 175.2842180167, "51"], +[-37.76949895, 175.2829353167, "3"], +[-37.76905455, 175.2838886667, "52"], +[-37.7691961833, 175.2827767667, "9"], +[-37.7681189833, 175.2835723833, "32"], +[-37.7677330667, 175.2837025833, "35"], +[-37.76786845, 175.2838814833, "37"], +[-37.7681792, 175.2839787833, "41"], +[-37.7684313333, 175.2836878333, "42"], +[-37.7683276833, 175.28403325, "43"], +[-37.7685635, 175.2837419167, "44"], +[-37.7684692167, 175.2840911667, "45"], +[-37.7687345167, 175.2837934667, "46"], +[-37.7686049167, 175.28413225, "47"], +[-37.76890625, 175.2838488, "48"], +[-37.7687256, 175.2841868833, "49"], +[-37.7691974, 175.2840053167, "54"], +[-37.76927025, 175.2843428167, "55A"], +[-37.7691224, 175.2843142, "55"], +[-37.7690543833, 175.2826977833, "11"], +[-37.7688631333, 175.2830089, "12"], +[-37.76891865, 175.2826187833, "13"], +[-37.7686522167, 175.2824673833, "17"], +[-37.7684149, 175.28280305, "18"], +[-37.7695927, 175.2829888833, "1B"], +[-37.7681545833, 175.2826189167, "23"], +[-37.7680299167, 175.2828420333, "25B"], +[-37.7680499167, 175.2828014333, "25"], +[-37.76822865, 175.28308795, "26"], +[-37.7692479167, 175.2832324167, "6"], +[-37.7693578833, 175.2828486167, "7"], +[-37.7692276, 175.28279765, "9B"], +[-37.7682916333, 175.2821871, "5/19"], +[-37.76822875, 175.2821507667, "6/19"], +[-37.7683530667, 175.2822222667, "4/19"], +[-37.7684112333, 175.2822535667, "3/19"], +[-37.7684672833, 175.2822848, "2/19"], +[-37.7685217833, 175.28231675, "1/19"], +[-37.7685766, 175.28234705, "19"], +[-37.7264413667, 175.2704842167, "3"], +[-37.7262753, 175.2705653167, "1"], +[-37.7266034833, 175.2704125333, "5"], +[-37.7261748333, 175.2703453833, "2"], +[-37.7266185167, 175.2702446, "7"], +[-37.7262890167, 175.2702769833, "4"], +[-37.7265913, 175.27008485, "8"], +[-37.7264353, 175.27013745, "6"], +[-37.76625535, 175.2883033, "2A"], +[-37.7667133, 175.2882284833, "1"], +[-37.76646675, 175.2882790667, "2"], +[-37.76674875, 175.2880335, "3"], +[-37.7664252, 175.2881100167, "4"], +[-37.7666560167, 175.2878922667, "5"], +[-37.76645155, 175.2879291333, "6"], +[-37.7665617333, 175.28786025, "7"], +[-37.7669872833, 175.2879954167, "3A"], +[-37.7892483333, 175.2476822333, "5"], +[-37.7886754667, 175.2480772667, "11"], +[-37.7889417, 175.2481302, "10A"], +[-37.7886138667, 175.2480838, "13"], +[-37.7886552333, 175.2481796667, "12"], +[-37.7885325333, 175.2481499167, "14"], +[-37.7895801333, 175.2475654, "1"], +[-37.78900515, 175.2478589, "7"], +[-37.7895836333, 175.2480941167, "4A"], +[-37.7890799167, 175.2480843167, "8"], +[-37.7891108, 175.24775405, "5A"], +[-37.7888457, 175.24795585, "9"], +[-37.78950565, 175.2479139667, "4"], +[-37.7893714667, 175.2480161667, "6"], +[-37.7894393667, 175.2476083833, "3"], +[-37.78961085, 175.247878, "2"], +[-37.7888148833, 175.2481658, "10B"], +[-37.7888067833, 175.2477577833, "9A"], +[-37.78846065, 175.2479731333, "16"], +[-37.7954361, 175.23245535, "10"], +[-37.7956726667, 175.2333375333, "4"], +[-37.7955275833, 175.2327195333, "8"], +[-37.7956001833, 175.2330257, "6"], +[-37.7951345167, 175.2319983833, "16"], +[-37.7958805167, 175.2328687, "7"], +[-37.7952410667, 175.2321864, "14"], +[-37.7957435667, 175.2324042833, "11"], +[-37.7953876667, 175.2318490167, "17"], +[-37.7958090667, 175.2326165167, "9"], +[-37.7949749333, 175.2310974167, "24"], +[-37.7953364333, 175.2313788667, "21"], +[-37.7950497667, 175.23096355, "26"], +[-37.7953451333, 175.2316148167, "19"], +[-37.7953311, 175.2309783667, "25"], +[-37.7950737833, 175.2316628, "20"], +[-37.7955410333, 175.2320612667, "15"], +[-37.7953750167, 175.2311444667, "23"], +[-37.7956598667, 175.2321999833, "13"], +[-37.7950444167, 175.2313353333, "22"], +[-37.77806105, 175.27260055, "1/134-6/134"], +[-37.7779618167, 175.2723044167, "146"], +[-37.7792732, 175.2733779667, "77"], +[-37.7779193333, 175.2721772, "152"], +[-37.77668515, 175.2688583333, "250"], +[-37.7778522, 175.2720227333, "158"], +[-37.7780068667, 175.2724508667, "140"], +[-37.7778009667, 175.2718908833, "164"], +[-37.7794566167, 175.2751322833, "15"], +[-37.7775095667, 175.27199715, "168"], +[-37.7769172167, 175.26653665, "1/289-9/289"], +[-37.7769946333, 175.2697600333, "230"], +[-37.7723151167, 175.2634366, "409"], +[-37.7774903333, 175.2696915667, "231"], +[-37.77280565, 175.2643724333, "394A"], +[-37.77734305, 175.2692894667, "239"], +[-37.7764569, 175.26813525, "272"], +[-37.7772767667, 175.2691028833, "243"], +[-37.7741380333, 175.2641334333, "361"], +[-37.7771414167, 175.26872935, "251"], +[-37.7739713833, 175.2645205833, "372"], +[-37.7769325667, 175.2681671, "263"], +[-37.7793928, 175.27497845, "19"], +[-37.7775162, 175.2710597667, "200"], +[-37.7795050167, 175.27525785, "13"], +[-37.77834805, 175.2706371, "201"], +[-37.7719052333, 175.26303655, "423B"], +[-37.77744365, 175.2708880667, "1/206-3/206"], +[-37.7772160667, 175.2721076833, "1/170-12/170"], +[-37.7778359333, 175.2706586667, "207"], +[-37.7772792833, 175.2714789667, "1/190-11/190"], +[-37.7777777333, 175.2705352333, "211"], +[-37.7785523333, 175.2739515167, "86"], +[-37.7762632667, 175.2676083667, "280"], +[-37.7770673833, 175.271835, "186A"], +[-37.7765956333, 175.2672531333, "281"], +[-37.7783686333, 175.2735391833, "96"], +[-37.7765632833, 175.2671658833, "283"], +[-37.7785116833, 175.27074105, "1/197-10/197"], +[-37.7769089667, 175.2669267667, "285"], +[-37.7796338333, 175.2755272833, "9"], +[-37.7768822333, 175.2667941667, "287"], +[-37.7785249167, 175.2705192833, "201A"], +[-37.7768367833, 175.26662735, "289"], +[-37.77821485, 175.2715911333, "165"], +[-37.7760664833, 175.2670891167, "290"], +[-37.7796801833, 175.2756950333, "3"], +[-37.7764670167, 175.2669104167, "293"], +[-37.7784511, 175.27237695, "135"], +[-37.7764235167, 175.26677645, "295"], +[-37.7795780833, 175.2753854333, "11"], +[-37.7763645, 175.2666005167, "297"], +[-37.7780409833, 175.2712146833, "181-185"], +[-37.7759101667, 175.2666793167, "298"], +[-37.7757170333, 175.2660994, "310S-310Z"], +[-37.7757662833, 175.2662868333, "306"], +[-37.77806565, 175.2710126833, "191A"], +[-37.7787013667, 175.2743455667, "70"], +[-37.7781408, 175.27097835, "191B"], +[-37.7783815833, 175.27218385, "143"], +[-37.7779913, 175.27106545, "1/191-12/191"], +[-37.7773921167, 175.2706910667, "212"], +[-37.77191945, 175.2633138, "421"], +[-37.7717948667, 175.2632552833, "423"], +[-37.7716891167, 175.2636951167, "424"], +[-37.77159965, 175.2631996167, "425"], +[-37.7713255333, 175.2640482833, "426"], +[-37.77119215, 175.2638932667, "428"], +[-37.7713892667, 175.2631138333, "429"], +[-37.7715486167, 175.26362025, "430"], +[-37.77138325, 175.2635631333, "432"], +[-37.7711213, 175.26298075, "433"], +[-37.7708975833, 175.26290435, "437"], +[-37.7709875667, 175.2634453167, "440"], +[-37.7706803833, 175.2628191333, "441"], +[-37.7707357167, 175.2638584167, "444B"], +[-37.7708450333, 175.26337905, "444"], +[-37.7705038333, 175.2627379167, "445"], +[-37.7705829833, 175.2636845167, "448B"], +[-37.7706767833, 175.2633299333, "448"], +[-37.7702537167, 175.2626596333, "451"], +[-37.7704243333, 175.2632540667, "452"], +[-37.7700278333, 175.2625759833, "455"], +[-37.7699441, 175.2623479833, "457A"], +[-37.7698136667, 175.2625214667, "457"], +[-37.7696846333, 175.26241605, "459"], +[-37.7701806333, 175.2631464167, "460"], +[-37.7712989, 175.2629037, "429A"], +[-37.7711630333, 175.2637152, "434A"], +[-37.7712070667, 175.26349195, "434"], +[-37.7695411, 175.2623663333, "467"], +[-37.76959725, 175.2623843667, "461"], +[-37.7733431333, 175.2649868833, "378"], +[-37.7733774167, 175.2645942333, "380"], +[-37.7733159, 175.2642773667, "382"], +[-37.7730548333, 175.2648932333, "384"], +[-37.7728261, 175.26474495, "386"], +[-37.7731582667, 175.2642292667, "388"], +[-37.7729186333, 175.2644374833, "390"], +[-37.7729553333, 175.2641564167, "392"], +[-37.77339625, 175.2638673333, "393"], +[-37.7727008667, 175.2642997167, "394"], +[-37.7731655333, 175.2637924167, "395"], +[-37.7725186167, 175.2645420333, "396"], +[-37.7730619, 175.2637069667, "397A"], +[-37.7731431667, 175.2633785333, "397B"], +[-37.77234945, 175.2647650833, "398"], +[-37.77285765, 175.2632969167, "399A"], +[-37.77283605, 175.2636262333, "399"], +[-37.77248425, 175.2643265833, "400"], +[-37.7726300167, 175.2635409, "401"], +[-37.7726206167, 175.2640333333, "402"], +[-37.7724302667, 175.2639772167, "404"], +[-37.77242785, 175.2634712667, "407"], +[-37.7736638667, 175.2643968333, "374A"], +[-37.7738218, 175.2644906333, "374B"], +[-37.7734434667, 175.2647026333, "376B"], +[-37.7735642333, 175.2643923833, "376"], +[-37.7759846833, 175.2668556667, "1/294-5/294"], +[-37.7761361333, 175.2659973833, "305"], +[-37.7762756167, 175.2663586833, "299"], +[-37.7766458167, 175.2674025667, "1/279-6/279"], +[-37.7767168833, 175.2675726, "275A-275C"], +[-37.7770191333, 175.2669380167, "1/285-4/285"], +[-37.77560225, 175.265793, "314"], +[-37.7768906833, 175.26945575, "240-242"], +[-37.7771291667, 175.2700716667, "222"], +[-37.7770111333, 175.2683557, "1/259-8/259"], +[-37.7770750333, 175.26856185, "257"], +[-37.77721605, 175.2689352333, "1/245-4/245"], +[-37.7775850667, 175.2686209833, "1/247-14/247"], +[-37.7776380333, 175.26856595, "249"], +[-37.7777013167, 175.26894275, "1/241-4/241"], +[-37.7777133167, 175.2716772167, "174"], +[-37.7776665, 175.2714881167, "180"], +[-37.7773273667, 175.2716138167, "184"], +[-37.77704165, 175.2717566833, "186"], +[-37.7770142167, 175.2716727667, "188"], +[-37.7775872667, 175.2712347833, "194"], +[-37.7783193, 175.2720064667, "1/149-3/149"], +[-37.77874925, 175.2717084, "157"], +[-37.7788713833, 175.2719909667, "1/139A-5/139A"], +[-37.7790757167, 175.2718492833, "1/139-5/139"], +[-37.77789015, 175.2708477, "203"], +[-37.7788819, 175.2748489, "54"], +[-37.7795766333, 175.27401755, "53"], +[-37.7309293667, 175.23869755, "21"], +[-37.7306773, 175.2398879333, "4"], +[-37.7305127333, 175.2389552167, "20"], +[-37.7310225833, 175.23888665, "19"], +[-37.7311029333, 175.2390859, "17"], +[-37.7312001167, 175.2392910667, "15"], +[-37.73129305, 175.2394961833, "13"], +[-37.7313772167, 175.23971685, "11"], +[-37.73128515, 175.23988395, "9"], +[-37.7311484833, 175.2399592667, "7"], +[-37.73098145, 175.2400761, "5"], +[-37.7308268, 175.24020925, "3"], +[-37.7307505833, 175.238676, "24"], +[-37.7306487333, 175.2388055333, "22"], +[-37.7305700833, 175.2399936333, "2"], +[-37.7308401333, 175.2397683, "6"], +[-37.7310245667, 175.2396255333, "8"], +[-37.7308733333, 175.2392751833, "10"], +[-37.73067175, 175.23912245, "12"], +[-37.73043445, 175.2392742, "14"], +[-37.7303055167, 175.23928325, "16"], +[-37.7303809667, 175.2390997333, "18"], +[-37.7822368, 175.3108352167, "4"], +[-37.7822203333, 175.3105817167, "3"], +[-37.7821170667, 175.31051225, "5"], +[-37.7821022667, 175.3106959333, "7"], +[-37.78207485, 175.3108572333, "6"], +[-37.7512927, 175.2909601833, "29"], +[-37.7509862833, 175.2912234833, "42"], +[-37.7503944833, 175.29072055, "50"], +[-37.7526149333, 175.29050945, "10"], +[-37.7502427833, 175.2906005833, "52"], +[-37.7526516167, 175.2895155667, "1"], +[-37.7506804833, 175.2909798333, "46"], +[-37.75258115, 175.2896835833, "3"], +[-37.7518754833, 175.2904692667, "11A"], +[-37.7529098, 175.2898792333, "4"], +[-37.7508419, 175.2911027167, "44"], +[-37.7524647167, 175.2899122833, "5"], +[-37.7494571833, 175.2898548167, "62"], +[-37.75281445, 175.29008895, "6"], +[-37.7491797167, 175.2896162167, "64"], +[-37.75236915, 175.2901319333, "7"], +[-37.75259825, 175.2910912333, "20"], +[-37.7527166, 175.2903113333, "8"], +[-37.7500487667, 175.2900083167, "37"], +[-37.7522534333, 175.2903542, "9"], +[-37.7496774, 175.2900684333, "60"], +[-37.7521578833, 175.2905196667, "11"], +[-37.75112795, 175.2913879667, "40"], +[-37.7525009, 175.2907131167, "12"], +[-37.75038275, 175.2901997167, "35"], +[-37.7526892, 175.2908421167, "14"], +[-37.7505283667, 175.290843, "48"], +[-37.7518509833, 175.2906219167, "15"], +[-37.7529528833, 175.2910669833, "16"], +[-37.7520652667, 175.2907597667, "17"], +[-37.7527215667, 175.2910171167, "18"], +[-37.7519390333, 175.2909577667, "19"], +[-37.7517724667, 175.2911266, "21"], +[-37.7523344667, 175.2909823833, "22"], +[-37.7515521333, 175.2911443667, "23"], +[-37.7522878833, 175.2911538667, "24"], +[-37.7515447167, 175.2908726833, "25"], +[-37.7521799667, 175.2913290667, "26"], +[-37.7514398, 175.2908264333, "27"], +[-37.7520662333, 175.2914655833, "28"], +[-37.7519197667, 175.2915750167, "30A"], +[-37.7519510333, 175.2918584333, "30"], +[-37.7517576, 175.2916392, "32"], +[-37.7515936333, 175.2916297333, "34"], +[-37.7514167833, 175.2915911167, "36"], +[-37.751265, 175.2914957167, "38"], +[-37.7500941, 175.2904627333, "54"], +[-37.7499502333, 175.29032465, "56"], +[-37.7498348333, 175.2901869667, "58"], +[-37.7497958, 175.2899136167, "39"], +[-37.7489069167, 175.28917725, "66"], +[-37.7403295167, 175.2646919167, "4"], +[-37.7404460667, 175.2645717167, "6"], +[-37.7406758, 175.2649056667, "7"], +[-37.7405704667, 175.2647141667, "8"], +[-37.74050535, 175.2650883333, "3"], +[-37.7407121833, 175.2650950167, "5"], +[-37.7441485667, 175.25045015, "20"], +[-37.7437584833, 175.2501734833, "9"], +[-37.7440913333, 175.2497238667, "10"], +[-37.7437747167, 175.2506416167, "13"], +[-37.74380095, 175.250413, "11"], +[-37.7440343333, 175.2499923167, "12"], +[-37.7443062, 175.2499213, "14"], +[-37.7437229167, 175.2508685833, "15"], +[-37.7443559333, 175.2500781833, "16"], +[-37.7436756833, 175.25107975, "17"], +[-37.7441038833, 175.2502418333, "18"], +[-37.7436359833, 175.2512795333, "19"], +[-37.7433673833, 175.2510893, "21"], +[-37.7441262167, 175.2506433333, "22"], +[-37.7433116667, 175.2512018167, "23"], +[-37.7440809333, 175.2508558167, "24"], +[-37.7434611, 175.2514757333, "25"], +[-37.7440376167, 175.2510732167, "26"], +[-37.7433139, 175.2516257333, "27"], +[-37.7439897667, 175.2512904167, "28"], +[-37.7431777333, 175.2517559167, "29"], +[-37.7439326, 175.2514953667, "30"], +[-37.7438279, 175.2516680833, "32"], +[-37.7436994333, 175.2518158167, "34"], +[-37.7435592, 175.2519095833, "36"], +[-37.7436770667, 175.252204, "38"], +[-37.7433920833, 175.2496676, "3"], +[-37.7436070667, 175.2523353333, "40"], +[-37.7435071667, 175.2523720667, "42"], +[-37.7433733833, 175.2521188833, "44"], +[-37.7432319167, 175.2522489167, "46"], +[-37.74365085, 175.2494152167, "4"], +[-37.7435106833, 175.2498409333, "5"], +[-37.7437579333, 175.24957735, "6"], +[-37.7436397833, 175.2499933667, "7"], +[-37.7438974833, 175.2497524, "8"], +[-37.7432230167, 175.2459411667, "12"], +[-37.74362145, 175.2469889, "3"], +[-37.7437158833, 175.2462881167, "9"], +[-37.7433524667, 175.2465965667, "6"], +[-37.7434397167, 175.2460712, "10"], +[-37.74365115, 175.246761, "5"], +[-37.74330965, 175.2468357333, "4"], +[-37.7433865167, 175.2463444333, "8"], +[-37.7436805333, 175.2465238167, "7"], +[-37.7438036667, 175.2458584333, "13"], +[-37.7434414833, 175.2457885167, "16"], +[-37.7437718833, 175.2460777, "11"], +[-37.7439256, 175.2455483667, "15"], +[-37.74371025, 175.2456471833, "17"], +[-37.7432677833, 175.24703855, "2"], +[-37.74356235, 175.2456663333, "18"], +[-37.7293063667, 175.28474425, "32"], +[-37.7307130167, 175.28534775, "11"], +[-37.7277847833, 175.2828710667, "45"], +[-37.7305297833, 175.2852835667, "13"], +[-37.7281378, 175.2836762833, "46"], +[-37.73035515, 175.2851761, "15"], +[-37.7274715167, 175.2825895667, "49"], +[-37.7316691, 175.2852294, "1"], +[-37.7241880667, 175.2832744333, "98"], +[-37.731498, 175.28532055, "3"], +[-37.7298640667, 175.28475555, "21"], +[-37.7313200333, 175.28537275, "5"], +[-37.7276303833, 175.2827158667, "47"], +[-37.7311156667, 175.28539985, "7"], +[-37.73017375, 175.2850248333, "17"], +[-37.73091595, 175.2853883833, "9"], +[-37.7282964333, 175.28384125, "44"], +[-37.729332, 175.2842731167, "27"], +[-37.73001105, 175.2848984, "19"], +[-37.7254023667, 175.2817191333, "85"], +[-37.7277778167, 175.2833671333, "50"], +[-37.7255327833, 175.2820917167, "74"], +[-37.7279647333, 175.2835286167, "48"], +[-37.7254951333, 175.2824787, "76"], +[-37.7271467333, 175.2823077, "53"], +[-37.7254003167, 175.2826696833, "78"], +[-37.7294717333, 175.28439395, "25"], +[-37.7252782167, 175.2828518, "80"], +[-37.7291612667, 175.28460635, "34"], +[-37.7251930667, 175.2830856167, "82"], +[-37.7244948667, 175.2830452333, "94"], +[-37.7266602, 175.28130155, "65"], +[-37.7234053, 175.283213, "107"], +[-37.72643105, 175.2814101333, "67"], +[-37.7243549667, 175.2831709167, "96"], +[-37.7263485333, 175.2816785167, "69"], +[-37.7240217833, 175.2833432667, "100"], +[-37.7246493333, 175.2828977, "92"], +[-37.72845885, 175.2839930333, "42"], +[-37.7245231333, 175.2825577167, "93"], +[-37.73172905, 175.2856719667, "2"], +[-37.7247254333, 175.28229155, "91"], +[-37.7238684167, 175.28340465, "102"], +[-37.7241077333, 175.2829059667, "97"], +[-37.72945175, 175.28486885, "30"], +[-37.7239576833, 175.2829895167, "99"], +[-37.7296111167, 175.28499835, "28"], +[-37.72375465, 175.28269305, "101"], +[-37.7286108667, 175.2836367667, "35"], +[-37.7237638667, 175.2830716833, "103"], +[-37.72976335, 175.2851320667, "26"], +[-37.7235836167, 175.2831423167, "105"], +[-37.7298811, 175.2852291333, "24"], +[-37.7264732333, 175.2822326, "66"], +[-37.7296566833, 175.28455985, "23"], +[-37.7267022, 175.2824043167, "64"], +[-37.7287506167, 175.2837575833, "33"], +[-37.72685825, 175.28252485, "62"], +[-37.72793545, 175.2830213, "43"], +[-37.7270002833, 175.2826404667, "60"], +[-37.7285937667, 175.28411285, "40"], +[-37.7271384167, 175.2827736667, "58"], +[-37.7290296167, 175.28449995, "36"], +[-37.7272661833, 175.2828976833, "56"], +[-37.7269885833, 175.2821475333, "55"], +[-37.72679205, 175.2819836833, "57"], +[-37.72843765, 175.2834615667, "37"], +[-37.7265795, 175.2818507667, "63"], +[-37.7273054833, 175.2824388333, "51"], +[-37.7266253, 175.2816828333, "61"], +[-37.7267054, 175.2815305833, "59"], +[-37.73076045, 175.2859385667, "14"], +[-37.7306224167, 175.2858009333, "16"], +[-37.7304858333, 175.28567885, "18"], +[-37.7303413167, 175.28559865, "20"], +[-37.73156655, 175.2857198333, "4"], +[-37.7313962667, 175.2857722833, "6"], +[-37.7232571333, 175.2828899167, "109"], +[-37.7231497333, 175.2829326, "111"], +[-37.72319385, 175.2832832833, "113"], +[-37.7230271333, 175.2833494333, "115"], +[-37.7228829, 175.2833955333, "117"], +[-37.7227404167, 175.2834463, "119"], +[-37.72284955, 175.2838476167, "120"], +[-37.7229642333, 175.2838098, "118"], +[-37.723131, 175.28374365, "116"], +[-37.7233091, 175.2836593833, "114"], +[-37.7234665667, 175.2835952667, "112"], +[-37.7480726167, 175.2531335833, "15"], +[-37.7478108667, 175.2533926833, "14"], +[-37.7485421, 175.2539624833, "5"], +[-37.7479963, 175.2529517833, "17"], +[-37.7482915667, 175.25358965, "9"], +[-37.7486854167, 175.25415875, "3"], +[-37.7479359167, 175.2536313, "12"], +[-37.7484068333, 175.2537731167, "7"], +[-37.74831965, 175.2542524, "6"], +[-37.7477128667, 175.2532242833, "16"], +[-37.7481836667, 175.2533354667, "11"], +[-37.7481696667, 175.2540299667, "8"], +[-37.7487801, 175.25431495, "1"], +[-37.7484637167, 175.25445995, "4"], +[-37.7480566333, 175.2538423167, "10"], +[-37.7430796, 175.2798237333, "10"], +[-37.7432166, 175.2797430667, "8"], +[-37.7435844, 175.2792003667, "1"], +[-37.7434171833, 175.2793049667, "3"], +[-37.7432845667, 175.2794128, "5"], +[-37.7431295, 175.2794887167, "7"], +[-37.7429656667, 175.2795103167, "9"], +[-37.7429282667, 175.27972105, "14"], +[-37.7429541333, 175.2799047833, "12"], +[-37.7433677167, 175.2796982, "6"], +[-37.7435530333, 175.2796752333, "4"], +[-37.7436792667, 175.2794778333, "2"], +[-37.74275105, 175.2795541167, "11"], +[-37.7810198167, 175.29086135, "12"], +[-37.7812772833, 175.2901953333, "8"], +[-37.7805807833, 175.29202735, "22"], +[-37.7804112, 175.2925084, "28"], +[-37.7810792667, 175.2907068333, "10A"], +[-37.7802159833, 175.2928159333, "30"], +[-37.7811197833, 175.2905919, "10"], +[-37.7814172167, 175.2898309833, "4"], +[-37.7813491833, 175.2900031667, "6"], +[-37.7809563167, 175.29105125, "1/14-8/14"], +[-37.7808939333, 175.2912502667, "16"], +[-37.7808276333, 175.2914292333, "18"], +[-37.7806300667, 175.2918746, "20"], +[-37.7807402833, 175.2922788833, "24A"], +[-37.7805119167, 175.2921873167, "24"], +[-37.7807785833, 175.29246115, "26A"], +[-37.7804584333, 175.2923547833, "26"], +[-37.7802391, 175.2919393333, "29C"], +[-37.7801984667, 175.29206355, "29D"], +[-37.78144195, 175.30616705, "4"], +[-37.7812811667, 175.30621655, "8"], +[-37.7815957667, 175.3061722, "2"], +[-37.7812764667, 175.30643965, "9"], +[-37.78131985, 175.3060348833, "6"], +[-37.7811503167, 175.30663665, "7"], +[-37.7813277333, 175.3066243, "5"], +[-37.7814770833, 175.3065671, "3"], +[-37.7816232167, 175.30652445, "1"], +[-37.76676235, 175.3019131333, "1"], +[-37.7665998833, 175.3041292667, "20"], +[-37.7662771833, 175.30363495, "15"], +[-37.7656389333, 175.3069982667, "50"], +[-37.7658495333, 175.3043604667, "23"], +[-37.7652612167, 175.3072851, "51"], +[-37.7655846667, 175.3071779833, "52"], +[-37.7652124, 175.3074548667, "53"], +[-37.7651514167, 175.3077225167, "55"], +[-37.7668942667, 175.3024032667, "2"], +[-37.7667218833, 175.3020518833, "3"], +[-37.7666961667, 175.3031633833, "10"], +[-37.7663827167, 175.3032041, "11"], +[-37.7666411833, 175.3033436333, "12"], +[-37.7663182333, 175.3034386833, "13"], +[-37.7665936167, 175.3035314333, "14"], +[-37.76654745, 175.30373045, "16"], +[-37.7662147667, 175.30383935, "17"], +[-37.7664807333, 175.30390945, "18"], +[-37.7661510667, 175.3041025333, "19"], +[-37.7660833333, 175.3042914833, "21"], +[-37.7664244, 175.3041277667, "22"], +[-37.7662679833, 175.3046923667, "24"], +[-37.7659911833, 175.3046584833, "25"], +[-37.7664178667, 175.3048511333, "26"], +[-37.7659471833, 175.3048353167, "27"], +[-37.7662061833, 175.3049114167, "28"], +[-37.7668464167, 175.3026177833, "4"], +[-37.7667999667, 175.3027898167, "6"], +[-37.7667515, 175.30297025, "8"], +[-37.7664587167, 175.3029575667, "9"], +[-37.7658874667, 175.3050237167, "29"], +[-37.7661577667, 175.3050975833, "30"], +[-37.7658375667, 175.3052151, "31"], +[-37.7661002333, 175.3052986667, "32"], +[-37.76578095, 175.3054197667, "33"], +[-37.7660611833, 175.3054821167, "34"], +[-37.7657275333, 175.3056082333, "35"], +[-37.7659812667, 175.3056985333, "36"], +[-37.765465, 175.3056305167, "37"], +[-37.7659449667, 175.3058747667, "38"], +[-37.7654280333, 175.3057650167, "39"], +[-37.7658965333, 175.3060597, "40"], +[-37.7656186833, 175.3059634, "41"], +[-37.76584855, 175.3062442833, "42"], +[-37.7655839, 175.3061278667, "43"], +[-37.7657931667, 175.3064324333, "44"], +[-37.76574975, 175.3066322, "46"], +[-37.76489375, 175.30765635, "57"], +[-37.7648844167, 175.3077509667, "59"], +[-37.765367, 175.3069102167, "47"], +[-37.7656938333, 175.3067971833, "48"], +[-37.76531325, 175.3070994333, "49"], +[-37.7653833167, 175.3079216333, "60"], +[-37.7650905667, 175.3079282667, "61"], +[-37.7653447833, 175.3080905, "62"], +[-37.7757224167, 175.3024432, "89A"], +[-37.7769083167, 175.2944929333, "12"], +[-37.7757835833, 175.3013196833, "81A"], +[-37.77652665, 175.29348595, "7"], +[-37.7768621167, 175.3009023833, "74D"], +[-37.7765186, 175.2932965333, "5"], +[-37.7760193667, 175.3005925833, "75A"], +[-37.7769739333, 175.2978485833, "38"], +[-37.7758314833, 175.3033100667, "112"], +[-37.7766497833, 175.29715425, "39"], +[-37.7765548167, 175.3006548833, "74"], +[-37.77655105, 175.2994439833, "63"], +[-37.7764919, 175.2928972667, "1"], +[-37.7764899833, 175.2996610167, "65"], +[-37.7762452833, 175.30051785, "73"], +[-37.77643685, 175.2998842167, "67"], +[-37.7763066167, 175.3003132167, "71"], +[-37.7767667, 175.3002368333, "68"], +[-37.7764713667, 175.3025313, "100"], +[-37.7763464333, 175.3001059667, "69"], +[-37.7755292167, 175.3023681167, "89"], +[-37.7762028833, 175.2998672167, "67A"], +[-37.7768986833, 175.2941935667, "10"], +[-37.7761310333, 175.3009503667, "77"], +[-37.7765831, 175.2952409667, "23"], +[-37.7764230167, 175.3011317, "78"], +[-37.7759021167, 175.3017627833, "83"], +[-37.7760410167, 175.3012361667, "79"], +[-37.7764825, 175.3022002667, "84B"], +[-37.7763692833, 175.3013488, "80"], +[-37.7766138333, 175.3011264, "78A"], +[-37.77596965, 175.3014770833, "81"], +[-37.77663035, 175.2966682167, "33"], +[-37.7763113167, 175.3015863167, "82"], +[-37.7763531833, 175.2947881667, "19A"], +[-37.7759195167, 175.3009129833, "77A"], +[-37.776871, 175.2936018, "6"], +[-37.7761866667, 175.3007662, "75"], +[-37.77675435, 175.3024363, "90B"], +[-37.7760580833, 175.3004518333, "73A"], +[-37.7764116167, 175.3028583667, "106"], +[-37.7769515167, 175.2970046167, "30"], +[-37.7755278833, 175.3021895667, "87A"], +[-37.7769604667, 175.2971701833, "32"], +[-37.7765673333, 175.3023564833, "90A"], +[-37.7769548667, 175.29742095, "34"], +[-37.7760623667, 175.3024412, "102"], +[-37.7766458, 175.2969190667, "35"], +[-37.7764705833, 175.3009193667, "76"], +[-37.7769572833, 175.2976239167, "36"], +[-37.7768370167, 175.29299145, "2"], +[-37.7769753833, 175.2980894333, "40"], +[-37.7769117167, 175.2949973, "16"], +[-37.77665065, 175.2973233833, "41"], +[-37.77635295, 175.2951169667, "21B"], +[-37.7769847667, 175.298284, "42"], +[-37.7765905, 175.2954776333, "25"], +[-37.77665415, 175.2974956, "43"], +[-37.7770099667, 175.30276725, "98"], +[-37.7763126667, 175.2977307, "45A"], +[-37.7766322167, 175.2964096167, "31"], +[-37.7766611, 175.2976584833, "45"], +[-37.7765544833, 175.29411955, "13"], +[-37.7762150667, 175.2978584333, "47A"], +[-37.7768636167, 175.2932974, "4"], +[-37.7766687833, 175.29787305, "47"], +[-37.7764227167, 175.2966724333, "33A"], +[-37.77650755, 175.2981332333, "49A"], +[-37.77691015, 175.2947504167, "14"], +[-37.77669515, 175.2980603, "49"], +[-37.77658275, 175.2947889833, "19"], +[-37.7769530667, 175.29568965, "20"], +[-37.7768251667, 175.2927893833, "2A"], +[-37.77695775, 175.2958608, "22"], +[-37.7770437833, 175.2929616, "2B"], +[-37.7769713333, 175.2960484833, "24"], +[-37.77659075, 175.2950257333, "21A"], +[-37.7764053, 175.2955603167, "25A"], +[-37.77697315, 175.2962540167, "26"], +[-37.7764016667, 175.2957972333, "27B"], +[-37.7765954833, 175.2957098333, "27"], +[-37.7769696833, 175.2964116333, "28"], +[-37.7766236333, 175.2961655667, "29A"], +[-37.7764054667, 175.29616715, "29B"], +[-37.77661255, 175.29593325, "29"], +[-37.7762656167, 175.2939254667, "11A"], +[-37.7765471667, 175.2938997, "11"], +[-37.7763729333, 175.2940430833, "13A"], +[-37.7765680333, 175.2943225667, "15"], +[-37.77634975, 175.2946342833, "17A"], +[-37.77656945, 175.2945578667, "17"], +[-37.7770022667, 175.2940211167, "8A"], +[-37.7768602333, 175.29396495, "8"], +[-37.7762871, 175.2936982, "9A"], +[-37.7765398167, 175.2936761333, "9"], +[-37.77691715, 175.2952019333, "18"], +[-37.7760111333, 175.30262395, "104"], +[-37.77592425, 175.30296, "110"], +[-37.7761837167, 175.3020566, "84"], +[-37.7758309, 175.3020262, "85"], +[-37.7757648333, 175.3022742667, "87"], +[-37.7769087, 175.3027209167, "96"], +[-37.7769285333, 175.3025147167, "88"], +[-37.7296621167, 175.27143615, "1"], +[-37.7298851333, 175.2720173667, "10"], +[-37.7290987, 175.2717928167, "11"], +[-37.72976555, 175.2720632833, "12"], +[-37.7295886667, 175.2720663833, "14"], +[-37.7294263333, 175.2720378167, "16"], +[-37.7292292, 175.272008, "18"], +[-37.72968615, 175.2717386, "3"], +[-37.7299348333, 175.2716353833, "4"], +[-37.7293941, 175.2716823333, "5"], +[-37.72994495, 175.2718231667, "6"], +[-37.7292352167, 175.27160395, "7"], +[-37.7299418333, 175.2719753167, "8"], +[-37.7291144, 175.2715999667, "9"], +[-37.78658625, 175.2303451667, "11"], +[-37.7866440333, 175.2314600167, "10"], +[-37.7867124167, 175.23108665, "12"], +[-37.7864314667, 175.2304906167, "13"], +[-37.7864887667, 175.23109145, "14"], +[-37.7863100833, 175.2305961833, "15"], +[-37.7863502167, 175.2309667833, "16"], +[-37.7861261667, 175.2306506333, "17"], +[-37.7862820333, 175.2308004, "18"], +[-37.7871636667, 175.2308057333, "3"], +[-37.7871094667, 175.2312945667, "4"], +[-37.7870169167, 175.23071455, "5"], +[-37.7869467167, 175.2312456333, "6"], +[-37.7868609, 175.2306001667, "7"], +[-37.7867092, 175.23156325, "8"], +[-37.7866933167, 175.23052095, "9"], +[-37.74387105, 175.2863416833, "2"], +[-37.7456406, 175.2863399667, "22"], +[-37.7462440333, 175.2863183167, "34"], +[-37.7444890333, 175.2867379, "9"], +[-37.7461497167, 175.2865266833, "36"], +[-37.7449234, 175.2863618167, "14"], +[-37.7453287833, 175.2867645333, "17"], +[-37.7442735667, 175.2867720667, "5"], +[-37.7455122, 175.2867441833, "19"], +[-37.74622135, 175.2872545, "27"], +[-37.7456955667, 175.2867305833, "21"], +[-37.7462986667, 175.2861500333, "32"], +[-37.7459130833, 175.2867983167, "23"], +[-37.74599625, 175.2864082833, "26"], +[-37.74610375, 175.2870048333, "25"], +[-37.7444006, 175.2871180667, "7"], +[-37.7460940333, 175.2880398167, "33"], +[-37.7440256833, 175.2863619, "4"], +[-37.7460469833, 175.2882799833, "35"], +[-37.7458174667, 175.2863532, "24"], +[-37.7459940667, 175.2885124333, "37"], +[-37.7445719167, 175.2863425333, "10"], +[-37.7459648333, 175.2887645333, "39"], +[-37.74510485, 175.2863828667, "16"], +[-37.7462577833, 175.2888082, "60"], +[-37.7462251833, 175.28607225, "30"], +[-37.746286, 175.288609, "58"], +[-37.7461421167, 175.2861751667, "28"], +[-37.74617115, 175.2877891167, "31"], +[-37.7447477167, 175.28634845, "12"], +[-37.7463231833, 175.2884063, "56"], +[-37.7462195667, 175.2890326833, "62"], +[-37.7463726167, 175.2881964, "54"], +[-37.7452417333, 175.2900561, "76"], +[-37.74643055, 175.2880095167, "52"], +[-37.7455344333, 175.2899967167, "72"], +[-37.746489, 175.287792, "50"], +[-37.7462338, 175.2875193, "29"], +[-37.7465322167, 175.2875896333, "48"], +[-37.7440829167, 175.2867658167, "3"], +[-37.7465454, 175.2873937833, "46"], +[-37.74480485, 175.28675225, "13"], +[-37.7465398333, 175.2872274, "44"], +[-37.7446589833, 175.28673995, "11"], +[-37.74647555, 175.2870137667, "42"], +[-37.7442012333, 175.2863827667, "6"], +[-37.7463956167, 175.28681445, "40"], +[-37.745405, 175.2900269167, "74"], +[-37.7463357833, 175.2866650333, "38"], +[-37.7461683333, 175.28926235, "64"], +[-37.7460940167, 175.2894832667, "66"], +[-37.7438868833, 175.2867254, "1"], +[-37.7460019667, 175.289645, "68"], +[-37.7454773167, 175.2863652167, "20"], +[-37.7459004667, 175.2897505667, "70"], +[-37.7452839667, 175.2863738, "18"], +[-37.7459267333, 175.2890016833, "41"], +[-37.74438065, 175.2863587, "8"], +[-37.74562255, 175.2889065, "43"], +[-37.7454751167, 175.2888882167, "45"], +[-37.74545875, 175.2890658167, "47"], +[-37.7454574167, 175.2892306333, "49"], +[-37.7458356667, 175.2893177167, "51"], +[-37.7456602, 175.2895326333, "53"], +[-37.7454557333, 175.2896162, "55"], +[-37.7452964, 175.2896614333, "57"], +[-37.7446244667, 175.2847766833, "4"], +[-37.7447013, 175.28513835, "2"], +[-37.7443806, 175.28471805, "6"], +[-37.7449582, 175.2849567667, "3"], +[-37.7444894667, 175.284461, "8"], +[-37.74495885, 175.2852069667, "1"], +[-37.74443615, 175.2842571667, "10"], +[-37.74435595, 175.2840259, "12"], +[-37.7442517167, 175.2838706833, "14"], +[-37.7440981333, 175.28374855, "16"], +[-37.74427085, 175.2836691167, "18"], +[-37.7443887667, 175.2835825333, "19"], +[-37.7445739167, 175.2834264167, "17"], +[-37.7445778333, 175.2836631333, "15"], +[-37.7446247167, 175.28385885, "13"], +[-37.74467695, 175.2840840333, "11"], +[-37.7447165333, 175.2842956667, "9"], +[-37.7447923, 175.2845268833, "7"], +[-37.7548842333, 175.2814905167, "9"], +[-37.7547934833, 175.2814420667, "11"], +[-37.7546228833, 175.2813183667, "13"], +[-37.75444935, 175.2812225833, "17"], +[-37.7546454667, 175.2818319833, "14"], +[-37.75436635, 175.2816478333, "18"], +[-37.7545206333, 175.2817490833, "16"], +[-37.75420695, 175.2815444833, "20"], +[-37.7537046, 175.28078065, "25"], +[-37.7540461167, 175.2814676333, "22"], +[-37.7546914833, 175.2809209167, "15"], +[-37.75389005, 175.2813651833, "24"], +[-37.7549861833, 175.2819329167, "10"], +[-37.7553499333, 175.2816785667, "1"], +[-37.7543065167, 175.2811733167, "19"], +[-37.7552037167, 175.2815920833, "3"], +[-37.7548394333, 175.2818967667, "12"], +[-37.7554342667, 175.28211625, "4"], +[-37.7550543, 175.2815536333, "5"], +[-37.7552660833, 175.2820625, "6"], +[-37.7550667, 175.2811614167, "7"], +[-37.7551380167, 175.2820036167, "8"], +[-37.7537332833, 175.28125985, "26"], +[-37.75354, 175.2806847833, "27"], +[-37.7530602667, 175.2808125833, "34"], +[-37.7528798833, 175.28025465, "35"], +[-37.7528839833, 175.2806787833, "36"], +[-37.752611, 175.2805334, "40"], +[-37.7524564833, 175.280464, "42"], +[-37.81959845, 175.2690306833, "5"], +[-37.81938775, 175.2684903333, "16"], +[-37.819197, 175.2683517167, "12"], +[-37.8196453833, 175.26840815, "13"], +[-37.819717, 175.2684315167, "11"], +[-37.81928335, 175.26835875, "14"], +[-37.8196725833, 175.2688208333, "7"], +[-37.8195895667, 175.2685880333, "15"], +[-37.8193685667, 175.2686873, "8"], +[-37.8193295333, 175.26923, "2"], +[-37.8193361667, 175.2685516167, "10"], +[-37.8195543667, 175.2692313333, "3"], +[-37.8194389667, 175.2688428833, "6"], +[-37.8194009667, 175.2690704167, "4"], +[-37.8196956167, 175.26864785, "9"], +[-37.7867902167, 175.23496915, "38"], +[-37.7854057667, 175.23723985, "10"], +[-37.7858176, 175.2369948667, "11"], +[-37.78545595, 175.2370520667, "12"], +[-37.785876, 175.2367934167, "13"], +[-37.7855144667, 175.2368499333, "14"], +[-37.7859782667, 175.2366118167, "15"], +[-37.7855758333, 175.2366726833, "16"], +[-37.7861053333, 175.2364594, "17"], +[-37.7856505667, 175.2365033333, "18"], +[-37.7862143, 175.2363116833, "19"], +[-37.7857538333, 175.23633055, "20"], +[-37.7863281, 175.2361751833, "21"], +[-37.7858734667, 175.2361867833, "22"], +[-37.7864365667, 175.2360294333, "23"], +[-37.7859872333, 175.2360578333, "24"], +[-37.7865574333, 175.23588005, "25"], +[-37.78609885, 175.2359232667, "26"], +[-37.7866685667, 175.23572475, "27"], +[-37.7862160333, 175.2357690667, "28"], +[-37.7868002333, 175.2356423167, "29"], +[-37.7863240833, 175.2356344333, "30"], +[-37.7868778333, 175.23546905, "31"], +[-37.7864412333, 175.2354835833, "32"], +[-37.7869944833, 175.2353066333, "33"], +[-37.7865281167, 175.2353194, "34"], +[-37.7866628333, 175.2351971167, "36"], +[-37.7855808833, 175.23780265, "3"], +[-37.7868223833, 175.2352501833, "40"], +[-37.7852497833, 175.2377882167, "4"], +[-37.7856596833, 175.2375863333, "5"], +[-37.7852942833, 175.2376177167, "6"], +[-37.78571075, 175.2374038167, "7"], +[-37.7853479833, 175.2374301333, "8"], +[-37.7857626667, 175.2371877333, "9"], +[-37.7246301333, 175.2870253333, "2"], +[-37.72523645, 175.2870286667, "10"], +[-37.7248223167, 175.287283, "3"], +[-37.7246591333, 175.2873589833, "1"], +[-37.72478, 175.28695125, "4"], +[-37.725495, 175.2875771667, "11"], +[-37.7250879, 175.2869589167, "8"], +[-37.7256390333, 175.2876897, "13"], +[-37.72494755, 175.2869400667, "6"], +[-37.7255557333, 175.2872187667, "14"], +[-37.72572445, 175.2873345167, "16"], +[-37.7258818667, 175.2874451, "18"], +[-37.7260168, 175.2875381833, "20"], +[-37.72621585, 175.2874777667, "22"], +[-37.7261533167, 175.2877412833, "24"], +[-37.7261268833, 175.2880971833, "23"], +[-37.7260062167, 175.2881386333, "21"], +[-37.7258481667, 175.2881478333, "19"], +[-37.72504785, 175.2873168167, "5"], +[-37.7252135333, 175.2873966, "7"], +[-37.7254075667, 175.2871205, "12"], +[-37.7256694667, 175.2882351833, "17"], +[-37.7257839333, 175.2878536333, "15"], +[-37.8234030333, 175.2730928, "13"], +[-37.82370695, 175.2732011333, "9"], +[-37.8231314333, 175.2736778667, "2"], +[-37.8233861333, 175.2736027833, "3"], +[-37.8234395333, 175.2733400667, "5"], +[-37.8231579, 175.2734726167, "6"], +[-37.8233043167, 175.2730130333, "12"], +[-37.8231489667, 175.2732541333, "8"], +[-37.8236935833, 175.27330215, "7"], +[-37.8235460333, 175.2731466833, "11"], +[-37.8228575667, 175.2733401833, "4"], +[-37.8231904167, 175.2730467333, "10"], +[-37.75542115, 175.242323, "5"], +[-37.7555688167, 175.2420933833, "7"], +[-37.7559741167, 175.2408727333, "22"], +[-37.7567791, 175.2395826, "38D"], +[-37.7556692, 175.24135275, "16"], +[-37.75718645, 175.2395816, "39A"], +[-37.75557365, 175.24150665, "14"], +[-37.7559780667, 175.2414672, "25C"], +[-37.7554676667, 175.2416728167, "12"], +[-37.75535685, 175.2418258, "10"], +[-37.7552607167, 175.24196735, "8"], +[-37.7559337667, 175.2415316, "25B"], +[-37.7558945, 175.24158385, "25A"], +[-37.7557200167, 175.2418452167, "9"], +[-37.7558535, 175.2416465333, "25"], +[-37.7556877167, 175.2402769333, "26"], +[-37.7563137833, 175.2409292, "27"], +[-37.7561772667, 175.24055495, "28"], +[-37.7564011667, 175.2407722833, "29"], +[-37.7563768167, 175.2402311167, "30"], +[-37.75655415, 175.2405534, "31"], +[-37.7566930667, 175.2403288667, "33"], +[-37.75683175, 175.2401444167, "35"], +[-37.7565838, 175.2399115, "36"], +[-37.7569254333, 175.23999255, "37"], +[-37.7562309333, 175.2393246333, "38A"], +[-37.7559831833, 175.2391119167, "38B"], +[-37.75566645, 175.2387994167, "38C"], +[-37.7566785333, 175.23975315, "38"], +[-37.7570393167, 175.2398176333, "39"], +[-37.7568934667, 175.2394213, "40"], +[-37.75699315, 175.2392799333, "42"], +[-37.7571054167, 175.2391041, "44"], +[-37.7573265, 175.2387665167, "46"], +[-37.7575352833, 175.2390258333, "47"], +[-37.7575181, 175.2384748667, "48"], +[-37.75774905, 175.2385281, "49"], +[-37.7575945833, 175.2384578667, "50"], +[-37.7323481, 175.2760956167, "19"], +[-37.7324862667, 175.2766499167, "23"], +[-37.7326088167, 175.2763427833, "16"], +[-37.73202675, 175.274031, "1"], +[-37.732423, 175.2752029, "8"], +[-37.7323521667, 175.276345, "21"], +[-37.7321195333, 175.2750102833, "9"], +[-37.7322618667, 175.2756331667, "15"], +[-37.7321556167, 175.2751612167, "11"], +[-37.7323126167, 175.2758685333, "17"], +[-37.7322108667, 175.2754094833, "13"], +[-37.7319931, 175.2744041833, "5"], +[-37.7324796333, 175.2754261667, "10"], +[-37.7322682333, 175.2741571667, "2"], +[-37.73251935, 175.27559885, "12"], +[-37.7320050333, 175.2742113, "3"], +[-37.7322621167, 175.2744503167, "4"], +[-37.7762197833, 175.2511285333, "11"], +[-37.7755695167, 175.2502475833, "21"], +[-37.77570225, 175.2503891833, "19"], +[-37.7750773667, 175.2504532333, "28A"], +[-37.7749960333, 175.2500832, "30A"], +[-37.77614325, 175.2515713, "12"], +[-37.7749580167, 175.2502708667, "30B"], +[-37.7767704167, 175.2523904, "2"], +[-37.77513765, 175.2502617667, "28"], +[-37.7759346, 175.2517512333, "12A"], +[-37.7761448, 175.2507391667, "13B"], +[-37.7763453833, 175.2513048167, "9"], +[-37.7760659167, 175.2509336167, "13"], +[-37.7769741833, 175.25211685, "1"], +[-37.7758681833, 175.2515903833, "14A"], +[-37.7759155333, 175.2507447833, "15"], +[-37.7760182833, 175.2514070667, "14"], +[-37.7752681167, 175.2504205, "26"], +[-37.7758960167, 175.2512485167, "16"], +[-37.77549205, 175.2510574, "20A"], +[-37.7758352333, 175.2506260667, "17"], +[-37.77635105, 175.2521647, "6A"], +[-37.7756679667, 175.2513030333, "18A"], +[-37.77507085, 175.2494870167, "25A"], +[-37.7757529833, 175.2510955167, "18"], +[-37.7770569, 175.2518002, "3A"], +[-37.7755056833, 175.25075155, "22"], +[-37.7756318833, 175.2509215, "20"], +[-37.7753871, 175.25058495, "24"], +[-37.77687375, 175.25250865, "2A"], +[-37.7751930667, 175.2506225333, "26A"], +[-37.7757162833, 175.2501662833, "21A"], +[-37.7768806333, 175.2520028833, "3"], +[-37.7751454167, 175.24955865, "25B"], +[-37.77663565, 175.2522429667, "4"], +[-37.7754410167, 175.2509417833, "22A"], +[-37.7767454, 175.2518118333, "5"], +[-37.7762794, 175.2517268833, "10"], +[-37.7765120333, 175.2520860333, "6"], +[-37.7766231833, 175.2516609167, "7"], +[-37.77708975, 175.252252, "1B"], +[-37.7763980333, 175.2519063, "8A"], +[-37.77631935, 175.2521013833, "8"], +[-37.7769746667, 175.2516292667, "5A"], +[-37.77726035, 175.2519009833, "1A"], +[-37.7764721333, 175.2524625833, "4A"], +[-37.7765958167, 175.2526166667, "2B"], +[-37.7487424667, 175.2838460833, "43"], +[-37.7493232, 175.28466795, "29"], +[-37.7506055, 175.28567955, "11"], +[-37.75032115, 175.28599615, "28"], +[-37.7509527833, 175.2858156167, "7"], +[-37.7493008333, 175.2852029833, "42"], +[-37.7503008667, 175.2863898167, "24"], +[-37.7480014, 175.2829442333, "61"], +[-37.7494473333, 175.2853026, "40"], +[-37.7481661333, 175.2835733, "62A"], +[-37.7491684833, 175.2850822833, "44"], +[-37.7480551667, 175.2834815833, "62"], +[-37.7484028167, 175.2832894167, "55"], +[-37.7478651667, 175.2827992, "63"], +[-37.7515004167, 175.2857261167, "5"], +[-37.7479128167, 175.2833624667, "64"], +[-37.7490271, 175.2849653167, "46"], +[-37.7478744333, 175.2824126333, "65"], +[-37.7484277833, 175.2839580333, "58"], +[-37.7477666167, 175.2832855667, "66"], +[-37.7482441833, 175.2843810333, "54"], +[-37.7477799167, 175.2823943667, "67"], +[-37.74827625, 175.2845063167, "52"], +[-37.7475802833, 175.2832285333, "68"], +[-37.7486590667, 175.2830864833, "53"], +[-37.7477366667, 175.28265935, "69"], +[-37.7502150833, 175.28629675, "26"], +[-37.7476062667, 175.2830271667, "70"], +[-37.7488522, 175.28407095, "37"], +[-37.7488344833, 175.2834235, "47"], +[-37.7489843667, 175.2836898333, "41"], +[-37.7487739333, 175.2833045333, "49"], +[-37.74945065, 175.2856660333, "36"], +[-37.75060715, 175.2861662667, "20"], +[-37.7498427667, 175.2854113167, "32"], +[-37.7490165167, 175.2838290833, "39"], +[-37.74851625, 175.2841497833, "56"], +[-37.7502644833, 175.2851377333, "17"], +[-37.7501244833, 175.2850511667, "19"], +[-37.7508039333, 175.2857778333, "9"], +[-37.7497882833, 175.2849787, "23"], +[-37.7504047333, 175.2852693333, "15"], +[-37.7482827167, 175.2831977333, "57"], +[-37.7488879167, 175.2842879333, "35"], +[-37.7496560833, 175.28541335, "34"], +[-37.74859775, 175.2843427667, "50"], +[-37.7491821833, 175.2845609667, "31"], +[-37.7516575167, 175.2856892333, "3"], +[-37.7499699, 175.28499115, "21"], +[-37.74764485, 175.2828571333, "71"], +[-37.7494691, 175.2847974333, "27"], +[-37.7502360333, 175.2857386333, "30"], +[-37.7489269, 175.2848622333, "48"], +[-37.75045145, 175.2860574167, "22"], +[-37.7507874, 175.28621335, "18"], +[-37.7481327667, 175.2830760667, "59"], +[-37.75152355, 175.2861441167, "14"], +[-37.7489563167, 175.2844838833, "33"], +[-37.7496274, 175.2849257, "25"], +[-37.7485358667, 175.2834556833, "51"], +[-37.7483042, 175.2837623833, "60"], +[-37.7486607333, 175.2836669333, "45"], +[-37.7491401, 175.2841111667, "35A"], +[-37.7492746667, 175.28564455, "38"], +[-37.7504990333, 175.2854346333, "13"], +[-37.7254454333, 175.2106104833, "338"], +[-37.7324029167, 175.2146054, "424"], +[-37.7251840167, 175.20615675, "284"], +[-37.7281058833, 175.2120095333, "368"], +[-37.7241025833, 175.2088597667, "311"], +[-37.7235483167, 175.20459735, "263"], +[-37.7918875667, 175.2381892, "18"], +[-37.7921108, 175.2384372333, "15"], +[-37.7918441833, 175.2386593, "14"], +[-37.7919409333, 175.2388707667, "12"], +[-37.7920015333, 175.2390666667, "10"], +[-37.7924312, 175.23964295, "1"], +[-37.7922742167, 175.2388571167, "11"], +[-37.7920385, 175.2392615167, "8"], +[-37.7923931, 175.2394760167, "3"], +[-37.7923477333, 175.23927415, "5"], +[-37.7921408667, 175.2396558833, "4"], +[-37.7920191333, 175.2382646667, "17"], +[-37.79189155, 175.238399, "16"], +[-37.7922040833, 175.2386138833, "13"], +[-37.79230235, 175.2390793667, "7"], +[-37.7920898, 175.2394574, "6"], +[-37.77593995, 175.2091134833, "21"], +[-37.77511715, 175.210869, "7"], +[-37.7763119667, 175.2083128833, "29"], +[-37.774758, 175.2107147333, "6"], +[-37.77632215, 175.2244724667, "16"], +[-37.7770329333, 175.2244188167, "8"], +[-37.7773319667, 175.2240069667, "3"], +[-37.7771889, 175.22439405, "6"], +[-37.7762815333, 175.2239772667, "15"], +[-37.77737215, 175.2243574, "4"], +[-37.7771321, 175.2240303, "5"], +[-37.7775218667, 175.2243068833, "2"], +[-37.7766669833, 175.2244665833, "12"], +[-37.7775022167, 175.2239443333, "1"], +[-37.7769389833, 175.2240538667, "7"], +[-37.7763250833, 175.2243278, "18"], +[-37.776484, 175.2244904833, "14"], +[-37.7765089333, 175.2242613667, "20"], +[-37.7765783, 175.22400815, "11"], +[-37.7767606, 175.2240183, "9"], +[-37.7763711667, 175.22389075, "13"], +[-37.77685005, 175.22443845, "10"], +[-37.7685416333, 175.2706794333, "34B"], +[-37.7691192167, 175.2700747667, "25"], +[-37.7685078333, 175.2697110667, "39"], +[-37.7688997667, 175.2706645167, "28"], +[-37.7689611, 175.27073265, "24"], +[-37.7676728333, 175.2694506667, "52"], +[-37.76907415, 175.2705287833, "24A"], +[-37.7674270833, 175.26936395, "54"], +[-37.76843265, 175.2696539, "41"], +[-37.7682795, 175.26959265, "43"], +[-37.7681760333, 175.26954035, "45"], +[-37.7694483333, 175.2702887, "17"], +[-37.76931525, 175.2702001833, "19"], +[-37.7700391167, 175.2706754833, "1"], +[-37.7688926, 175.2699641833, "29"], +[-37.7686713667, 175.2707659667, "30"], +[-37.76876345, 175.2703687, "32"], +[-37.7685739667, 175.27030205, "34"], +[-37.7686963667, 175.2698716833, "35"], +[-37.7686994667, 175.2696307167, "37"], +[-37.76844985, 175.2702284, "38"], +[-37.7682994167, 175.27013945, "40"], +[-37.7681473333, 175.2700324167, "44"], +[-37.7679955667, 175.26994185, "46"], +[-37.76786815, 175.2698194333, "48"], +[-37.7680423, 175.2693063, "49"], +[-37.7677450667, 175.2696818833, "50"], +[-37.76768675, 175.2692146833, "56"], +[-37.7677458, 175.2690579333, "58"], +[-37.7681015333, 175.2691387333, "59"], +[-37.7697145, 175.27046085, "5"], +[-37.76781835, 175.26888205, "60"], +[-37.7678906833, 175.26870075, "64"], +[-37.7698649833, 175.2705603333, "3"], +[-37.7680757167, 175.2703161167, "42"], +[-37.7685193167, 175.2705771333, "34C"], +[-37.7695456833, 175.2703530833, "7"], +[-37.7296456667, 175.2575588833, "57"], +[-37.7309970833, 175.2549402167, "27"], +[-37.7294181333, 175.2569519333, "36"], +[-37.7301655667, 175.2557096167, "26"], +[-37.7297419333, 175.2562235333, "30"], +[-37.7304, 175.257009, "50A"], +[-37.7295966, 175.25642265, "32"], +[-37.7307417833, 175.2572254833, "50"], +[-37.7295141667, 175.2566529333, "34"], +[-37.7307413333, 175.2569531167, "52"], +[-37.7309871167, 175.2574939, "79"], +[-37.7307541833, 175.2567165833, "54"], +[-37.7310393833, 175.2572750833, "81"], +[-37.7308039, 175.2565088333, "56"], +[-37.7306350167, 175.2579787333, "69"], +[-37.7308752667, 175.2563083167, "58"], +[-37.7294679167, 175.2574540667, "55"], +[-37.7309199333, 175.2560932833, "60"], +[-37.7301580833, 175.2578116667, "63"], +[-37.7309271, 175.2558706, "62"], +[-37.7307906667, 175.2578821833, "73"], +[-37.7306521667, 175.2557808, "64"], +[-37.7306036167, 175.2575667, "48"], +[-37.7310814667, 175.2570732667, "85"], +[-37.7297753667, 175.2571846167, "38"], +[-37.7311376833, 175.2568676833, "87"], +[-37.73089265, 175.25772725, "75"], +[-37.7311984167, 175.2566533667, "89"], +[-37.7308303333, 175.25813795, "71"], +[-37.7312219167, 175.2564209167, "91"], +[-37.7299210833, 175.2569210167, "40"], +[-37.7312322667, 175.2561813667, "93"], +[-37.7298052167, 175.25764425, "59"], +[-37.7312447667, 175.2559621167, "95"], +[-37.7295406333, 175.2559909167, "39"], +[-37.73123605, 175.2557320167, "97"], +[-37.7292933833, 175.25736815, "53"], +[-37.7311570833, 175.2545973, "25"], +[-37.7299799, 175.2577208667, "61"], +[-37.7308278833, 175.2549348333, "29"], +[-37.73048775, 175.2579788, "67"], +[-37.7309283667, 175.2553789833, "18"], +[-37.7303257833, 175.2579234833, "65"], +[-37.7307395667, 175.2553880833, "20"], +[-37.73031975, 175.2555683167, "24"], +[-37.7305841667, 175.2554003667, "22"], +[-37.72942785, 175.25618, "41"], +[-37.7299902667, 175.2558993833, "28"], +[-37.730102, 175.2553475833, "35"], +[-37.7299770667, 175.2554161667, "37"], +[-37.7300142167, 175.2573110167, "42"], +[-37.7292038, 175.25662865, "43"], +[-37.7301850333, 175.25740795, "44"], +[-37.7291260167, 175.2568337333, "45"], +[-37.7303535833, 175.2575286167, "46"], +[-37.7290608, 175.25700655, "47"], +[-37.7289524667, 175.2571732167, "49"], +[-37.729101, 175.2572440167, "51"], +[-37.7319777667, 175.2547310333, "9"], +[-37.7324296667, 175.2549282833, "3"], +[-37.7324257167, 175.25545885, "6"], +[-37.7320899667, 175.2546476833, "7"], +[-37.7322794, 175.2555237167, "8"], +[-37.7320654833, 175.2551773, "11"], +[-37.7316379, 175.2556393167, "12"], +[-37.73160845, 175.2548450333, "17"], +[-37.7312137167, 175.2549810167, "23"], +[-37.7314942, 175.2547839, "19"], +[-37.73257975, 175.2553595, "4"], +[-37.7318784167, 175.2552061167, "13"], +[-37.7313990333, 175.2551120333, "21"], +[-37.7314645167, 175.2555906333, "14"], +[-37.7322822667, 175.2550452167, "5"], +[-37.73164375, 175.2552283333, "15"], +[-37.7862054667, 175.2634637, "3A-3D"], +[-37.78568235, 175.2633524833, "12"], +[-37.7860689333, 175.2632756167, "7A-7D"], +[-37.7855602667, 175.2627758833, "18"], +[-37.78597625, 175.2637335, "6"], +[-37.7858822, 175.2636185, "8"], +[-37.7857782333, 175.2634878, "10"], +[-37.7858907167, 175.2630460667, "11"], +[-37.7858540667, 175.2627733833, "13"], +[-37.7856102167, 175.2631262167, "14"], +[-37.78582245, 175.2625388167, "15"], +[-37.7855810667, 175.26294145, "16"], +[-37.7855389333, 175.26265585, "20"], +[-37.78615305, 175.2639965, "2"], +[-37.7860691667, 175.2638696, "4"], +[-37.7861262667, 175.26336265, "5A-5D"], +[-37.7860010667, 175.26318825, "9A-9D"], +[-37.78627535, 175.2636586, "1"], +[-37.7982657833, 175.2507699667, "24A"], +[-37.7989231833, 175.2536169333, "2"], +[-37.7990445, 175.2530425833, "5"], +[-37.7982866, 175.2527619667, "10"], +[-37.7987088333, 175.2512462833, "21"], +[-37.7982134167, 175.25264425, "12"], +[-37.7987989333, 175.2508576167, "23A"], +[-37.7983256667, 175.2510515, "22"], +[-37.7986481667, 175.2510067667, "23"], +[-37.7980196167, 175.2527208167, "12A"], +[-37.7980683167, 175.25078435, "24"], +[-37.7993905833, 175.25333885, "1A"], +[-37.79876105, 175.2506246667, "25A"], +[-37.79898885, 175.2511343167, "21A"], +[-37.79859105, 175.25077135, "25"], +[-37.79818875, 175.2504571167, "26"], +[-37.7987883, 175.2504386333, "27A"], +[-37.7985330167, 175.25054505, "27"], +[-37.7984985833, 175.2503677333, "29"], +[-37.7986090833, 175.2524049667, "14"], +[-37.7992330167, 175.2535027167, "1"], +[-37.7993266333, 175.2530977167, "3A"], +[-37.7991324167, 175.2533071, "3"], +[-37.7988087833, 175.2532900667, "4"], +[-37.7992634333, 175.2530309333, "5A"], +[-37.7987025833, 175.25296465, "6"], +[-37.7986689333, 175.2527252833, "8"], +[-37.7985174333, 175.2520238833, "16"], +[-37.7985619833, 175.2534646667, "4A"], +[-37.7990128833, 175.2538026333, "2A"], +[-37.7234866167, 175.25639165, "22"], +[-37.7236353167, 175.25670765, "14"], +[-37.72345815, 175.2561846667, "21"], +[-37.7234753833, 175.2569907833, "16"], +[-37.7240531333, 175.2573897167, "3"], +[-37.7234693667, 175.2568270167, "18"], +[-37.7235055333, 175.256601, "20"], +[-37.7239020833, 175.2579664333, "4"], +[-37.7238847667, 175.256396, "15"], +[-37.7237376, 175.2562897833, "17"], +[-37.7237913, 175.2573746667, "8"], +[-37.7237986167, 175.2571629, "10"], +[-37.7235860167, 175.2562553167, "19"], +[-37.7238137, 175.2567882, "12"], +[-37.7239730167, 175.258042, "2"], +[-37.7240758667, 175.25766515, "1"], +[-37.7241213833, 175.2569218167, "7"], +[-37.7241634333, 175.2567296167, "9"], +[-37.7241674333, 175.2565361667, "11"], +[-37.7240421833, 175.2565025667, "13"], +[-37.7240862667, 175.2571326833, "5"], +[-37.7956486833, 175.23527545, "9"], +[-37.7957797, 175.2349173833, "5"], +[-37.7952774167, 175.2352831167, "13"], +[-37.7955337167, 175.2354279833, "12"], +[-37.7956801333, 175.2349313667, "7"], +[-37.7954449, 175.2351623833, "11"], +[-37.7952960167, 175.2355653, "10"], +[-37.7956984167, 175.2357590667, "4"], +[-37.7958057167, 175.2352816167, "3"], +[-37.79589535, 175.2354610333, "1"], +[-37.7955595333, 175.23565785, "6"], +[-37.7958912833, 175.2357982667, "2"], +[-37.7953108, 175.2357070167, "8"], +[-37.7853266833, 175.2393697833, "11B"], +[-37.78610295, 175.2394980667, "8"], +[-37.78548795, 175.2394398833, "11A"], +[-37.7855341, 175.2390217333, "7B"], +[-37.78637485, 175.2387410167, "2A"], +[-37.7859804333, 175.2398129667, "12"], +[-37.7853516667, 175.2390394667, "9B"], +[-37.7863270667, 175.23900365, "2"], +[-37.7857328, 175.2392602167, "5"], +[-37.78584265, 175.2393268167, "3B"], +[-37.7853986667, 175.2392678667, "9A"], +[-37.78588, 175.23969695, "16"], +[-37.7861801167, 175.2392393667, "6"], +[-37.7859612667, 175.2390538, "3A"], +[-37.78593545, 175.2400230667, "14"], +[-37.7860062167, 175.2388694167, "1"], +[-37.7860562, 175.2396485167, "10"], +[-37.7855373333, 175.2396753333, "20"], +[-37.7854299833, 175.2396044167, "22"], +[-37.7855798, 175.2392957833, "7A"], +[-37.7864069333, 175.2392064167, "4B"], +[-37.78572845, 175.23970495, "18"], +[-37.78635625, 175.23941285, "4"], +[-37.7816693167, 175.2908548333, "4/2"], +[-37.7814157167, 175.2903436667, "7"], +[-37.7818218, 175.2909465667, "1/2"], +[-37.7816112667, 175.2904355333, "5"], +[-37.7813069667, 175.2906328667, "8"], +[-37.7813948667, 175.2906904, "1/6"], +[-37.7818808333, 175.2906319833, "1"], +[-37.78133175, 175.2908490667, "4/6"], +[-37.7817579667, 175.2903471833, "1/3-6/3"], +[-37.7813511833, 175.2908056333, "3/6"], +[-37.7814910833, 175.29080805, "4"], +[-37.7813743167, 175.29074945, "2/6"], +[-37.7817681167, 175.2909122667, "2/2"], +[-37.7817159333, 175.2908856167, "3/2"], +[-37.7927557, 175.2968395833, "43D"], +[-37.7931554833, 175.2964575667, "40A"], +[-37.7928041167, 175.29663305, "41D"], +[-37.79186245, 175.3035494667, "102A"], +[-37.7926889667, 175.2939010167, "11A"], +[-37.7919756333, 175.3032626, "98A"], +[-37.7937462, 175.2924920333, "1"], +[-37.7917828333, 175.3024929, "92A"], +[-37.7926965333, 175.2984657667, "60"], +[-37.7919745167, 175.3024410333, "92B"], +[-37.7923780667, 175.2984632167, "61"], +[-37.7917045833, 175.30280185, "94A"], +[-37.7921992167, 175.3006852833, "82"], +[-37.7936774333, 175.29300625, "3A"], +[-37.7918546, 175.3006394167, "83A"], +[-37.7909073, 175.3047517167, "109"], +[-37.79174285, 175.3011117167, "83"], +[-37.7914552667, 175.3039167667, "106"], +[-37.79237465, 175.30091305, "84B"], +[-37.7930217667, 175.2941205333, "11B"], +[-37.7911172167, 175.3038752167, "103"], +[-37.7918535333, 175.3020922833, "90A"], +[-37.7908615167, 175.3049333667, "111"], +[-37.7946278667, 175.2922721333, "2"], +[-37.7913230667, 175.3044977333, "108"], +[-37.7915693333, 175.3034795, "102"], +[-37.7911571667, 175.3052013333, "114A"], +[-37.7914831833, 175.3022793333, "91"], +[-37.7911132, 175.30539985, "114B"], +[-37.7912772333, 175.3047305833, "110"], +[-37.7909489833, 175.3045263, "107"], +[-37.79160775, 175.3033214167, "100"], +[-37.7929148333, 175.2952664167, "29B"], +[-37.7923594, 175.2998811833, "72"], +[-37.7927895167, 175.2952161833, "29C"], +[-37.7929998, 175.29718255, "48A"], +[-37.7932374667, 175.2947173, "1/21-6/21"], +[-37.79239395, 175.2997079833, "70"], +[-37.79336605, 175.2940578667, "7"], +[-37.7911843667, 175.3035940333, "101"], +[-37.7923935333, 175.2951991167, "33A"], +[-37.7930913, 175.29683955, "44"], +[-37.7926228167, 175.2951542667, "31"], +[-37.793322, 175.29428905, "11"], +[-37.7923966667, 175.2951298, "31A"], +[-37.7936085333, 175.2929800667, "3B"], +[-37.7919047, 175.30043285, "81A"], +[-37.7919849667, 175.3034456667, "100A"], +[-37.7915247, 175.30210115, "89"], +[-37.79196935, 175.30232395, "90"], +[-37.7913033833, 175.3030921167, "93"], +[-37.7925192667, 175.2978515667, "1/51-4/51"], +[-37.7919219, 175.3018804, "88"], +[-37.7932929167, 175.2944824, "15"], +[-37.7912251667, 175.3034282167, "99"], +[-37.7921187333, 175.2995713, "71"], +[-37.7916506667, 175.3030808167, "98"], +[-37.79151955, 175.30370265, "104A"], +[-37.7912658667, 175.3032609667, "95"], +[-37.7926587833, 175.2986134, "62"], +[-37.7915737333, 175.3019264167, "87"], +[-37.7931058333, 175.2952938333, "29"], +[-37.7916981167, 175.30375615, "104B"], +[-37.7926906, 175.2970389167, "45"], +[-37.7916393333, 175.3017268, "85"], +[-37.7930490333, 175.29700225, "46"], +[-37.7917706167, 175.3038971667, "104C"], +[-37.7924409, 175.2994706333, "68"], +[-37.7921224333, 175.3010112333, "86"], +[-37.79272675, 175.2943308, "17"], +[-37.79206565, 175.2997594, "73"], +[-37.7926719667, 175.2944778167, "19"], +[-37.7912063833, 175.3049597167, "112"], +[-37.7941823833, 175.2920503167, "8"], +[-37.7917246, 175.3027033833, "94B"], +[-37.7931480167, 175.29513165, "27"], +[-37.7922032333, 175.2991494667, "67"], +[-37.7926509167, 175.2972702667, "47"], +[-37.7908143667, 175.3051284167, "113"], +[-37.7921588167, 175.2993634167, "69"], +[-37.7922550833, 175.29895135, "65"], +[-37.7925925333, 175.2975136667, "1/47A-8/47A"], +[-37.7924769833, 175.2992779167, "64"], +[-37.7922335667, 175.3005189833, "80"], +[-37.7917933667, 175.30010255, "77B"], +[-37.7920135667, 175.29997405, "75"], +[-37.7923252333, 175.30004845, "74"], +[-37.7914683667, 175.3003408833, "79"], +[-37.79199185, 175.3001118, "77"], +[-37.7916691333, 175.3000336333, "79A"], +[-37.7922710667, 175.3003565833, "78"], +[-37.7926533333, 175.2948771333, "25"], +[-37.7924317667, 175.2982219333, "57"], +[-37.7932173833, 175.2972469333, "48B"], +[-37.7917381833, 175.30035085, "81B"], +[-37.7931167833, 175.2967016333, "42"], +[-37.7921650333, 175.3008494, "84A"], +[-37.7928260333, 175.2964270167, "39"], +[-37.7922994167, 175.3001829, "76"], +[-37.7927981167, 175.2980780167, "56"], +[-37.7929606667, 175.2974220667, "50"], +[-37.79317425, 175.2974730667, "50A"], +[-37.7925525167, 175.2977013167, "49"], +[-37.7924635333, 175.2981003, "55"], +[-37.79290175, 175.29767895, "52"], +[-37.7928383167, 175.2978993167, "54"], +[-37.7924982, 175.2979789667, "53"], +[-37.7932082167, 175.2949059, "23"], +[-37.79270335, 175.2968142667, "43C"], +[-37.7924037333, 175.298345, "59"], +[-37.7927491, 175.2982805333, "58"], +[-37.7927482167, 175.2966143833, "41C"], +[-37.7923487833, 175.2985833, "63"], +[-37.7926807, 175.2965841333, "41B"], +[-37.7926068167, 175.2965591167, "41A"], +[-37.7933577833, 175.2967433, "40F"], +[-37.7925672667, 175.29675365, "43A"], +[-37.7926401, 175.29678615, "43B"], +[-37.7933199333, 175.2967315333, "40E"], +[-37.7932395, 175.2964813667, "40B"], +[-37.7933814667, 175.2965221167, "40D"], +[-37.79331395, 175.29650635, "40C"], +[-37.793062, 175.2955376333, "35"], +[-37.79288115, 175.2954080667, "35A"], +[-37.7925743333, 175.2952990167, "33"], +[-37.7943707333, 175.29208495, "10"], +[-37.79368205, 175.2927449167, "3"], +[-37.7930187333, 175.29570625, "37"], +[-37.7944691333, 175.2919010167, "12"], +[-37.8092556667, 175.2746375833, "3"], +[-37.8091707167, 175.27470225, "2"], +[-37.8090094833, 175.27461225, "1"], +[-37.8091102667, 175.2745229167, "4"], +[-37.8089876667, 175.2745019667, "5"], +[-37.7945125333, 175.2888061, "3A"], +[-37.7950930833, 175.2877535167, "11"], +[-37.7945783833, 175.2886830833, "3B"], +[-37.7952219167, 175.2875686333, "13"], +[-37.7946638667, 175.2889494167, "3C"], +[-37.7940883167, 175.2885952333, "6G"], +[-37.7947120167, 175.2888141, "3D"], +[-37.7944119167, 175.2889652667, "1/1-7/1"], +[-37.7945848667, 175.2880359, "8"], +[-37.7942318667, 175.2886513, "2"], +[-37.7949002833, 175.2881874, "7"], +[-37.7954074, 175.2877512167, "19"], +[-37.7947026333, 175.2884871667, "5"], +[-37.7945137667, 175.28737605, "12"], +[-37.79442455, 175.2883266333, "4"], +[-37.7952882, 175.2874503167, "21"], +[-37.79437955, 175.2877119167, "1/8A"], +[-37.7940362667, 175.2889614, "2A"], +[-37.7942312833, 175.2883323333, "6D"], +[-37.7953566667, 175.2877032667, "17"], +[-37.7943973333, 175.2880757167, "6A"], +[-37.7952848333, 175.2876315667, "15"], +[-37.79428105, 175.28825665, "6C"], +[-37.7950250167, 175.2879195167, "9"], +[-37.7941705833, 175.2884297333, "6E"], +[-37.7947560167, 175.2877242667, "10"], +[-37.7943308, 175.2881741167, "6B"], +[-37.7946689167, 175.2874852333, "10A"], +[-37.79412595, 175.2885146333, "6F"], +[-37.794234, 175.2875925667, "3/8A"], +[-37.7942996333, 175.2876555167, "2/8A"], +[-37.7941813, 175.2875489667, "4/8A"], +[-37.7653856333, 175.2719018333, "2"], +[-37.7655041167, 175.27142455, "6"], +[-37.7657606, 175.2716635, "5"], +[-37.7655667167, 175.2712055833, "8"], +[-37.7656724833, 175.2721095333, "1"], +[-37.7658254333, 175.2714428833, "7"], +[-37.7657166333, 175.2718856167, "3"], +[-37.7654434167, 175.2716593667, "4"], +[-37.77409915, 175.3019557833, "32"], +[-37.7743259333, 175.3016017833, "28A"], +[-37.7723756, 175.3004587333, "53"], +[-37.7740146667, 175.3003255333, "39"], +[-37.7737419333, 175.3009362333, "41A"], +[-37.7740174333, 175.30091575, "33B"], +[-37.77436285, 175.30190085, "30B"], +[-37.7742174, 175.3008162167, "31"], +[-37.77429855, 175.30123375, "27"], +[-37.7728915833, 175.3007345, "47B"], +[-37.7741737167, 175.3012082167, "29"], +[-37.7725745333, 175.3003605, "51A"], +[-37.7744756833, 175.3012265833, "25"], +[-37.7727248333, 175.3006456167, "49"], +[-37.7742964833, 175.3016479667, "28"], +[-37.7727297667, 175.3010842167, "48"], +[-37.7722073, 175.3003173833, "55"], +[-37.7730491167, 175.3008017833, "47"], +[-37.7732424833, 175.3008688, "45"], +[-37.7730610667, 175.3011639167, "46"], +[-37.7734501333, 175.3009493, "43"], +[-37.7738414333, 175.3011176167, "35"], +[-37.7721005167, 175.3006778667, "54A"], +[-37.7740593333, 175.3015469833, "34"], +[-37.7743716167, 175.3014372167, "23"], +[-37.77398655, 175.3011839667, "33"], +[-37.7742484833, 175.3019425167, "30A"], +[-37.7735443833, 175.3013959, "42"], +[-37.77205715, 175.3006738667, "54"], +[-37.7736453, 175.3010270667, "41"], +[-37.77288295, 175.3011244, "46A"], +[-37.7739623667, 175.3006068667, "37"], +[-37.7725311333, 175.3005623833, "51"], +[-37.77194235, 175.3004798833, "56"], +[-37.7718325, 175.3002503, "58"], +[-37.77204005, 175.3002767, "57"], +[-37.762444, 175.3069074833, "7"], +[-37.76248725, 175.3066434333, "5"], +[-37.7623726333, 175.3076375833, "6"], +[-37.7625185, 175.3076152167, "4"], +[-37.7620109667, 175.3077980333, "10"], +[-37.7623865167, 175.3070416333, "9"], +[-37.7626009833, 175.30738595, "2"], +[-37.7625517, 175.3069927333, "3"], +[-37.76212205, 175.3076281833, "12"], +[-37.7623222833, 175.30729325, "16"], +[-37.7622695, 175.3074782333, "14"], +[-37.7622287833, 175.3077071667, "8"], +[-37.80547825, 175.2781217167, "12"], +[-37.80488015, 175.2766726167, "26"], +[-37.8051553667, 175.2766548667, "24"], +[-37.8051631, 175.2761703, "33"], +[-37.80540035, 175.2773868667, "18"], +[-37.80596835, 175.2790678167, "3A"], +[-37.8054538833, 175.2785148, "8"], +[-37.8050060667, 175.2764787333, "28"], +[-37.8053179333, 175.2786439, "6B"], +[-37.8050875, 175.2763391, "31"], +[-37.8054627, 175.27831005, "10"], +[-37.8056958833, 175.27925785, "1"], +[-37.8054125667, 175.27906615, "2A"], +[-37.8053433833, 175.2782675667, "10A"], +[-37.8053944833, 175.27921335, "2"], +[-37.8054308333, 175.2789099167, "4"], +[-37.8057531667, 175.2789548167, "3"], +[-37.8054354833, 175.2787003833, "6A"], +[-37.8054486333, 175.2776815167, "16"], +[-37.80516065, 175.27762265, "16A"], +[-37.8054688333, 175.2778882, "14"], +[-37.8053151167, 175.2768378, "22"], +[-37.8051576667, 175.2775239833, "18A"], +[-37.8052102333, 175.2769574333, "22A"], +[-37.8053598333, 175.2771198, "20"], +[-37.8053150333, 175.2784504, "8A"], +[-37.7120489333, 175.2087129, "6"], +[-37.7141403167, 175.2055224333, "37"], +[-37.71359655, 175.2054367667, "36"], +[-37.7123419, 175.2089573333, "5"], +[-37.7854506167, 175.2824138667, "16"], +[-37.7858427167, 175.2825679667, "10"], +[-37.7857099, 175.2827642833, "12"], +[-37.78586865, 175.28251895, "6A"], +[-37.78560325, 175.2825374833, "14"], +[-37.7860793, 175.2827081667, "7"], +[-37.78523975, 175.28271435, "18"], +[-37.7859031167, 175.2824583167, "6"], +[-37.7856615833, 175.2828909667, "20"], +[-37.76495695, 175.2562608833, "9"], +[-37.7650377667, 175.2566587167, "8"], +[-37.7654319667, 175.2561631167, "4"], +[-37.7653155, 175.2558090167, "5"], +[-37.7648819667, 175.25676235, "10"], +[-37.7651349833, 175.2560338, "7"], +[-37.7646983667, 175.2566941, "11B"], +[-37.7652743833, 175.2563758, "6"], +[-37.7655095667, 175.2555644833, "3"], +[-37.7647354667, 175.2564317333, "11"], +[-37.74485935, 175.2358600833, "91A"], +[-37.7441348333, 175.2362668167, "101"], +[-37.7446735667, 175.2358666833, "91B"], +[-37.74521445, 175.23933415, "13A"], +[-37.7441112333, 175.2367025333, "92"], +[-37.7454819, 175.23806445, "6"], +[-37.7447058167, 175.236173, "93"], +[-37.7446748333, 175.2369611333, "86A"], +[-37.7439251167, 175.236653, "94"], +[-37.7462203667, 175.2378457833, "68B"], +[-37.7444458333, 175.2358853, "95A"], +[-37.7454581667, 175.2384728833, "10"], +[-37.7443999333, 175.23574425, "95B"], +[-37.7461994, 175.23941575, "25"], +[-37.7458927, 175.2383734667, "18"], +[-37.7453979667, 175.2393627833, "15A"], +[-37.7463980333, 175.2370626833, "69"], +[-37.7452297667, 175.2387458167, "4"], +[-37.745667, 175.2380234667, "6A"], +[-37.7446288833, 175.236678, "86"], +[-37.7454690667, 175.2382943, "8"], +[-37.7452007333, 175.2362881167, "85"], +[-37.7459438333, 175.2373237333, "74"], +[-37.7435847, 175.2365686833, "98"], +[-37.7443005667, 175.23672915, "90"], +[-37.74480965, 175.2365859, "84"], +[-37.7448834167, 175.2361649333, "89"], +[-37.74377175, 175.2366065167, "96"], +[-37.7434952667, 175.23611095, "105"], +[-37.7460030167, 175.2376770333, "68"], +[-37.7429986167, 175.2365197167, "104"], +[-37.7434114167, 175.2365252, "100"], +[-37.7436432, 175.2361531167, "103"], +[-37.7432148333, 175.2364763, "102"], +[-37.7444582333, 175.23672885, "88"], +[-37.74292075, 175.2367843333, "110"], +[-37.74314655, 175.2360330667, "109"], +[-37.7433137333, 175.2360549, "107"], +[-37.7426166, 175.236485, "117"], +[-37.7429606333, 175.2360526667, "111"], +[-37.74269685, 175.23627935, "115"], +[-37.7428051667, 175.2361583167, "113"], +[-37.7460858667, 175.23686085, "73"], +[-37.7472162833, 175.23814975, "53"], +[-37.7473338833, 175.2389605, "41"], +[-37.7444029, 175.2355717833, "95C"], +[-37.7470654, 175.23893135, "37"], +[-37.7445438833, 175.2362195333, "97"], +[-37.74505205, 175.23621105, "87"], +[-37.7442960167, 175.23630075, "99"], +[-37.7474579833, 175.2382716167, "51"], +[-37.7471700667, 175.2386819667, "45"], +[-37.7473905667, 175.2388537, "43"], +[-37.7467529833, 175.23864275, "42"], +[-37.746834, 175.2382281333, "50"], +[-37.7468223167, 175.238439, "46"], +[-37.7474846667, 175.2384014167, "49"], +[-37.7471969833, 175.23846525, "47"], +[-37.7457559167, 175.2375390833, "72B"], +[-37.7469478833, 175.2375010167, "59"], +[-37.7473460333, 175.2378284167, "55A"], +[-37.7467887, 175.2380084833, "54"], +[-37.7465386833, 175.2376932333, "58"], +[-37.7471826167, 175.2379074, "55"], +[-37.7470998333, 175.2376906, "57"], +[-37.7466747667, 175.2378234667, "56"], +[-37.74557925, 175.2376951667, "72A"], +[-37.7463318333, 175.2375877833, "62"], +[-37.74675475, 175.2373303, "61"], +[-37.7463714833, 175.2379675167, "60"], +[-37.7462192833, 175.2369623167, "71"], +[-37.7465519833, 175.2371764167, "63"], +[-37.7458922, 175.2376348667, "70"], +[-37.7461552, 175.23746275, "66"], +[-37.7455537833, 175.2392704667, "17"], +[-37.7456430333, 175.2365850833, "79"], +[-37.7456505667, 175.2371001, "78"], +[-37.7459335667, 175.2367554833, "75"], +[-37.74579675, 175.2366754333, "77"], +[-37.7458011167, 175.2372280167, "76"], +[-37.74590355, 175.2381652333, "16"], +[-37.7453594833, 175.2363748833, "83"], +[-37.74549425, 175.2364786, "81"], +[-37.74548615, 175.2369373, "80"], +[-37.7453698833, 175.23923375, "15"], +[-37.7454670167, 175.2387852333, "12"], +[-37.74564125, 175.2388487833, "14"], +[-37.7451857, 175.2391776333, "13"], +[-37.7462389167, 175.2397394833, "27"], +[-37.74589065, 175.2385765667, "20"], +[-37.7457106667, 175.2393199, "19"], +[-37.74608455, 175.2389396833, "24"], +[-37.7458696, 175.2393547667, "21"], +[-37.7460355167, 175.2393935333, "23"], +[-37.7458917, 175.2388828333, "22"], +[-37.7462879333, 175.23895105, "30"], +[-37.7463414667, 175.23977205, "29"], +[-37.7462874833, 175.23856075, "28"], +[-37.7466000833, 175.2388495167, "36"], +[-37.7464180833, 175.2394160667, "31"], +[-37.7464418333, 175.2389299, "34"], +[-37.7465622, 175.2393916, "33"], +[-37.7496203833, 175.2923087333, "2"], +[-37.7500245667, 175.2928151833, "8"], +[-37.7496583, 175.29287165, "5"], +[-37.7495412667, 175.2927586667, "3"], +[-37.7497754, 175.2926360167, "6"], +[-37.7494789833, 175.2924588167, "1"], +[-37.7496544167, 175.2924428833, "4"], +[-37.74977275, 175.2928077167, "7"], +[-37.80311855, 175.2923105167, "1"], +[-37.8039144, 175.2927435333, "10"], +[-37.8040224167, 175.2929730833, "14"], +[-37.8032477833, 175.2923346833, "3"], +[-37.8033880167, 175.2923759333, "5"], +[-37.7664567167, 175.2487353, "1-7"], +[-37.76614465, 175.24857255, "14-16"], +[-37.7663416833, 175.2489869833, "2-12"], +[-37.8210922667, 175.2209316333, "2"], +[-37.8210819833, 175.2213903167, "3"], +[-37.8210881833, 175.2215004833, "3A"], +[-37.8211946833, 175.2213655333, "1"], +[-37.8209458667, 175.2214051333, "5"], +[-37.8208292333, 175.2214374833, "7"], +[-37.76420795, 175.29500475, "4C"], +[-37.7635158333, 175.2947452167, "22D"], +[-37.7640998667, 175.2949755833, "4D"], +[-37.7636824667, 175.2944336167, "11D"], +[-37.7636893833, 175.2948334833, "12B"], +[-37.76342485, 175.2946975167, "22C"], +[-37.7641864333, 175.2945995, "7B"], +[-37.7638140667, 175.2944944, "11B"], +[-37.76446165, 175.2950601833, "4A"], +[-37.7632438, 175.2946172, "22A"], +[-37.7639978167, 175.2949304333, "8A"], +[-37.76314705, 175.2945713833, "24"], +[-37.7643177667, 175.2950272667, "4B"], +[-37.7633446333, 175.2946699333, "22B"], +[-37.76411605, 175.2945759167, "7C"], +[-37.7638935667, 175.2945088, "11A"], +[-37.7637490333, 175.2944657333, "11C"], +[-37.7637652167, 175.2948630333, "12A"], +[-37.7643562333, 175.2946475167, "3C"], +[-37.7646114, 175.2947177833, "3"], +[-37.7640735333, 175.2943091, "9"], +[-37.7638670667, 175.2949061167, "8B"], +[-37.7644461167, 175.2946660667, "3B"], +[-37.7642628333, 175.2946281833, "7A"], +[-37.7645200667, 175.2946960167, "3A"], +[-37.7239147167, 175.2761968167, "4"], +[-37.72404055, 175.27615045, "5"], +[-37.72434005, 175.2761154333, "3"], +[-37.7244359833, 175.2762196667, "1"], +[-37.7243130833, 175.2763391167, "2"], +[-37.72272205, 175.2217257333, "24"], +[-37.7199564833, 175.22046875, "60"], +[-37.7219616833, 175.2209965833, "37"], +[-37.7237856333, 175.2214039167, "14"], +[-37.7196296667, 175.2193513, "65"], +[-37.7178550833, 175.2206524167, "80"], +[-37.7243311667, 175.2213412333, "8"], +[-37.7240752667, 175.2208883667, "11"], +[-37.7233972667, 175.2214706667, "16"], +[-37.8129782, 175.2904374333, "8"], +[-37.8128637833, 175.2911629333, "18"], +[-37.8123128, 175.2905050833, "15"], +[-37.8126624333, 175.2897380833, "3"], +[-37.8124578167, 175.2910840167, "19"], +[-37.8125569167, 175.2898599, "5"], +[-37.8127339667, 175.2910244833, "16A"], +[-37.8124475167, 175.2899994833, "7"], +[-37.8127420167, 175.2915571167, "23"], +[-37.8128963, 175.2899336833, "4"], +[-37.8131001, 175.29215285, "27C"], +[-37.8124459333, 175.2909968833, "19A"], +[-37.8127867, 175.2900821833, "6"], +[-37.8129234833, 175.2915978833, "24"], +[-37.8129409167, 175.2924579833, "27A"], +[-37.8129324833, 175.29058805, "10"], +[-37.8125801333, 175.2904557, "12"], +[-37.8120718167, 175.2900608333, "11B"], +[-37.8126895667, 175.2908350333, "16"], +[-37.8131933667, 175.2920249167, "24C"], +[-37.8125377167, 175.2914511333, "21B"], +[-37.81250175, 175.2912415667, "21A"], +[-37.8129628667, 175.291735, "22"], +[-37.8123687833, 175.2907171833, "17"], +[-37.8129227667, 175.291402, "20"], +[-37.81209855, 175.2903906667, "13"], +[-37.81226755, 175.29028885, "11A"], +[-37.81263975, 175.29066345, "14"], +[-37.8123347333, 175.29013, "9"], +[-37.8128364667, 175.2917973333, "25"], +[-37.8128738167, 175.2920789833, "27B"], +[-37.8129834, 175.2898425833, "2"], +[-37.7418935333, 175.2761217833, "7"], +[-37.7424625333, 175.2764976667, "1"], +[-37.7416950333, 175.27620745, "8"], +[-37.7421841, 175.2762291333, "5"], +[-37.7419027167, 175.2765715333, "4"], +[-37.74240645, 175.2763343833, "3"], +[-37.7420637833, 175.2765192, "2"], +[-37.7415982833, 175.2755698833, "9"], +[-37.7417738667, 175.27638295, "6"], +[-37.7953286167, 175.2325327833, "2"], +[-37.79505865, 175.2327341333, "5"], +[-37.7952353667, 175.23279665, "4"], +[-37.7951218333, 175.2325090333, "3"], +[-37.7952362167, 175.232314, "1"], +[-37.7954188167, 175.23308085, "6"], +[-37.7954601833, 175.2332610833, "8"], +[-37.79542455, 175.2333507833, "10"], +[-37.7953112167, 175.233384, "12"], +[-37.7950780833, 175.2335468, "13"], +[-37.7950398833, 175.2334319833, "11"], +[-37.7951371833, 175.2331909667, "9"], +[-37.7950649833, 175.2329756667, "7"], +[-37.7308668667, 175.2837675, "3"], +[-37.7308645333, 175.28351165, "4"], +[-37.7310092667, 175.2837434, "5"], +[-37.7311404667, 175.2835238833, "10"], +[-37.73096425, 175.2834702167, "6"], +[-37.7310908, 175.283353, "8"], +[-37.7311686333, 175.28375815, "7"], +[-37.7908968833, 175.2680656167, "7"], +[-37.7910172, 175.2682385833, "5"], +[-37.7912920833, 175.26864525, "1A"], +[-37.7905711167, 175.26852825, "6B"], +[-37.7907728667, 175.2674800333, "15B"], +[-37.7907491333, 175.2686185167, "4"], +[-37.7903893667, 175.26803375, "12A"], +[-37.7912326833, 175.2685499333, "1C"], +[-37.7902587667, 175.2682009, "12B"], +[-37.79045525, 175.2681845, "10"], +[-37.7905918667, 175.2676665167, "13"], +[-37.7903524, 175.2683013833, "10A"], +[-37.7907807833, 175.2679253, "9"], +[-37.79133305, 175.2685065833, "1D"], +[-37.7905606, 175.2683459667, "8"], +[-37.7906610333, 175.2684262667, "6A"], +[-37.7911142, 175.2683881, "3"], +[-37.7913647833, 175.2685583, "1B"], +[-37.7908374167, 175.2687767667, "2"], +[-37.7911602833, 175.2681427333, "5A"], +[-37.7906862167, 175.26780065, "11"], +[-37.7907218667, 175.2674376167, "15A"], +[-37.7687654, 175.2761194833, "63"], +[-37.7703735833, 175.2720351167, "10"], +[-37.76902915, 175.2807896333, "123"], +[-37.7698466833, 175.2720742, "15"], +[-37.7697190333, 175.27988485, "112"], +[-37.7693565333, 175.2797992333, "109"], +[-37.7692940333, 175.2811485667, "128"], +[-37.7692226, 175.28023825, "117"], +[-37.7694888667, 175.28054305, "120"], +[-37.7695488333, 175.28041465, "118"], +[-37.7689425333, 175.28101145, "127"], +[-37.76819635, 175.2770728167, "75"], +[-37.7706958167, 175.2718138, "8A"], +[-37.76864885, 175.27725335, "76"], +[-37.77069145, 175.27226575, "16C"], +[-37.7679192167, 175.2772364, "77A"], +[-37.7696464333, 175.27213625, "15A"], +[-37.7681898833, 175.2772812, "77"], +[-37.7678488667, 175.2775787167, "81A"], +[-37.7686818167, 175.2774855333, "78"], +[-37.76989495, 175.2737144833, "32"], +[-37.7693080667, 175.2795513, "105"], +[-37.7689232167, 175.2775729833, "80A"], +[-37.76974435, 175.2792254333, "104"], +[-37.77019545, 175.2725858, "18"], +[-37.7696508333, 175.2791175, "102"], +[-37.77008885, 175.2715135167, "3"], +[-37.7691676, 175.27938855, "101"], +[-37.7704528, 175.2717247, "8"], +[-37.7695210333, 175.2789862333, "100"], +[-37.7697638167, 175.2741724, "34"], +[-37.76797425, 175.27749835, "79"], +[-37.7694441167, 175.2806783667, "122"], +[-37.76921, 175.2787360333, "96"], +[-37.7682281833, 175.2768758, "73"], +[-37.7684372167, 175.27800835, "85"], +[-37.7681519167, 175.2774871, "79A"], +[-37.76983465, 175.2795317167, "108"], +[-37.76978595, 175.2723601833, "17"], +[-37.76981535, 175.2793719333, "106"], +[-37.7688411833, 175.2789550333, "95"], +[-37.7691109167, 175.2785848333, "94"], +[-37.7701185167, 175.27297355, "26"], +[-37.7689284167, 175.2782421333, "88"], +[-37.7693636667, 175.2758199833, "56"], +[-37.7685303, 175.2782812333, "87"], +[-37.76870255, 175.2769694333, "70"], +[-37.7688675667, 175.2780499667, "86"], +[-37.7682852167, 175.2766857833, "71"], +[-37.7687324833, 175.2788196167, "93"], +[-37.7687584, 175.2777011333, "80"], +[-37.7685786333, 175.27845425, "89"], +[-37.7688537667, 175.2766643667, "64"], +[-37.76900215, 175.2784302, "92"], +[-37.7681028667, 175.27770145, "81"], +[-37.7686475, 175.2786318667, "91"], +[-37.7688134833, 175.2778705, "82"], +[-37.7705723833, 175.2714504333, "2"], +[-37.7692181167, 175.2764290667, "62"], +[-37.7695951333, 175.2802532667, "116"], +[-37.7698338667, 175.2739034167, "32A"], +[-37.7689373, 175.2790996667, "97"], +[-37.7688220667, 175.2760471333, "61"], +[-37.7696493333, 175.28007395, "114"], +[-37.7688673333, 175.27590825, "59"], +[-37.7693587833, 175.2788671167, "98"], +[-37.7696595833, 175.2728536667, "23"], +[-37.76928935, 175.2800399, "113"], +[-37.7701761333, 175.2726785, "22"], +[-37.7690551667, 175.2792353, "99"], +[-37.7697899667, 175.2796951833, "110"], +[-37.7706767, 175.27275875, "16"], +[-37.7702499833, 175.2723892667, "14"], +[-37.76916945, 175.27505605, "43"], +[-37.76955165, 175.2809803667, "124A"], +[-37.7693332667, 175.2809910833, "126"], +[-37.7692792167, 175.2761483167, "60"], +[-37.7693928333, 175.2808162833, "124"], +[-37.7695946667, 175.2722970667, "17A"], +[-37.7707884333, 175.27235385, "16B"], +[-37.7698937833, 175.27180655, "11"], +[-37.7705123833, 175.2726673, "16A"], +[-37.7697307333, 175.2726107667, "21"], +[-37.7729674167, 175.2824591667, "10"], +[-37.7731951333, 175.2799221167, "37"], +[-37.7730542167, 175.2820603667, "14"], +[-37.7728867333, 175.2812993333, "17"], +[-37.7724924, 175.28298095, "1"], +[-37.7732759833, 175.2810602667, "24"], +[-37.7730570167, 175.28055095, "27"], +[-37.7728717167, 175.2828537333, "6"], +[-37.7733826167, 175.2806532667, "28"], +[-37.7730998167, 175.2818764333, "16"], +[-37.7725518333, 175.2827365833, "3"], +[-37.77323885, 175.2796664333, "39"], +[-37.7726356667, 175.2823198833, "7"], +[-37.7727243833, 175.2819232167, "11"], +[-37.7726833833, 175.2821236667, "9"], +[-37.7734958667, 175.2800430833, "34"], +[-37.77259475, 175.2825266, "5"], +[-37.7726122333, 175.28182525, "11A"], +[-37.7732358667, 175.28126945, "22"], +[-37.7729241, 175.28112245, "19"], +[-37.77297355, 175.2809296333, "21"], +[-37.77332625, 175.2808531333, "26"], +[-37.7734628333, 175.2802596167, "32"], +[-37.77341415, 175.2804757167, "30"], +[-37.7729264667, 175.28266255, "8"], +[-37.77319205, 175.281458, "20"], +[-37.7731069167, 175.2803215833, "29"], +[-37.7727643833, 175.2817276333, "15"], +[-37.7728526333, 175.2798969167, "33"], +[-37.77342225, 175.2797008167, "41"], +[-37.7731449833, 175.2801412333, "31"], +[-37.7730077167, 175.2807296833, "23"], +[-37.7735402, 175.2798801, "36"], +[-37.7724264167, 175.2825300833, "5A"], +[-37.77301, 175.2822608667, "12"], +[-37.7731464667, 175.2816616167, "18"], +[-37.7888017333, 175.2533162667, "16"], +[-37.7882054, 175.2523588167, "5"], +[-37.7885216167, 175.2522475, "6"], +[-37.78884845, 175.25283765, "12B"], +[-37.788377, 175.2530238, "11"], +[-37.7884166167, 175.25325815, "13"], +[-37.7887251333, 175.25312115, "14"], +[-37.7884565333, 175.2534724, "15"], +[-37.7884137667, 175.2518129667, "2"], +[-37.7884659333, 175.2520175, "4"], +[-37.7881492167, 175.2521542667, "3"], +[-37.78862945, 175.2526819667, "10"], +[-37.7883230333, 175.2513414667, "2A"], +[-37.7883133, 175.25279345, "9"], +[-37.78856575, 175.2524517667, "8"], +[-37.7882531667, 175.2525834833, "7"], +[-37.7886731667, 175.2529065, "12"], +[-37.7880973833, 175.2519346, "1"], +[-37.7883722333, 175.25159555, "2D"], +[-37.7245617, 175.2762952, "5"], +[-37.7244553, 175.27669565, "8"], +[-37.7246034333, 175.27653785, "6"], +[-37.72475525, 175.2762034167, "3"], +[-37.7243204, 175.2767529167, "10"], +[-37.7244030167, 175.2765312167, "7"], +[-37.72488155, 175.2761318333, "1"], +[-37.7262463, 175.2502552, "9"], +[-37.7264919, 175.2499943833, "11"], +[-37.7258391333, 175.2501087833, "8"], +[-37.7258747333, 175.2500292333, "10"], +[-37.7260336833, 175.2500578833, "12"], +[-37.7258843, 175.2506371333, "4"], +[-37.7260190167, 175.250939, "3"], +[-37.7259886333, 175.2502962, "6"], +[-37.7257541833, 175.25092245, "2"], +[-37.7261634833, 175.2504560167, "7"], +[-37.7261148167, 175.25070995, "5"], +[-37.72623135, 175.2500694667, "13"], +[-37.7594080667, 175.2166196333, "52"], +[-37.76179305, 175.2138603667, "19"], +[-37.7589843667, 175.2159919833, "53"], +[-37.7613166333, 175.2142937333, "23"], +[-37.7604896833, 175.2153022667, "37"], +[-37.7574600667, 175.2174018667, "75"], +[-37.75838115, 175.21686375, "60"], +[-37.81838745, 175.2754942667, "79"], +[-37.8236772167, 175.26462115, "174"], +[-37.8220281167, 175.2673935667, "1/144"], +[-37.8325816, 175.2238798667, "537"], +[-37.8276477833, 175.2542120833, "278"], +[-37.8191918167, 175.2738994333, "95"], +[-37.8174297, 175.2782602333, "44"], +[-37.8192776833, 175.2737448333, "97"], +[-37.8307158, 175.2454783667, "357"], +[-37.8193577, 175.2735818667, "99"], +[-37.81719925, 175.2805992667, "18"], +[-37.82357545, 175.2648032667, "172"], +[-37.8207819833, 175.2701079167, "132"], +[-37.8234830667, 175.2649741, "170"], +[-37.8181803833, 175.2765132667, "63"], +[-37.8174655333, 175.2798774667, "27"], +[-37.8180002, 175.2755538833, "68"], +[-37.8179766833, 175.2774790167, "53"], +[-37.8189264167, 175.2743676833, "89"], +[-37.8175277, 175.2777825833, "52"], +[-37.8175655833, 175.27758975, "54"], +[-37.81803695, 175.2753346333, "70"], +[-37.8190921667, 175.2740483333, "93"], +[-37.8176931167, 175.2814230833, "5"], +[-37.82963075, 175.2477342833, "334"], +[-37.831065, 175.2443475833, "371"], +[-37.8315855167, 175.2279767, "454"], +[-37.8180611333, 175.2751190333, "72"], +[-37.83008965, 175.2458276167, "350"], +[-37.8197722167, 175.2727835667, "109"], +[-37.8177519, 175.2817532333, "1"], +[-37.8196691667, 175.2722771667, "110"], +[-37.8179444333, 175.2790163, "37A"], +[-37.8203098833, 175.2710663833, "124"], +[-37.8207026167, 175.2702416167, "130"], +[-37.8203797833, 175.2709405, "126"], +[-37.82086645, 175.2699459833, "134"], +[-37.8211339667, 175.2702718167, "127"], +[-37.8210514833, 175.2694977, "138"], +[-37.8206244667, 175.27048285, "128"], +[-37.82095635, 175.2697388, "136"], +[-37.82189415, 175.2687493167, "137"], +[-37.8175972333, 175.2791367333, "35"], +[-37.8171124, 175.2780800167, "46"], +[-37.81835145, 175.2756983833, "77"], +[-37.81733945, 175.2814951833, "4"], +[-37.8182844167, 175.2760626667, "73"], +[-37.817711, 175.2785614333, "41"], +[-37.8185046167, 175.2764479833, "67"], +[-37.8171409833, 175.2779531, "48"], +[-37.8176346167, 175.2789532167, "37"], +[-37.8173859667, 175.2784513167, "40"], +[-37.8190128167, 175.2742141167, "91"], +[-37.8169212, 175.2780037, "46A"], +[-37.81883935, 175.2745291667, "87"], +[-37.8177296333, 175.2815839667, "3"], +[-37.81958275, 175.2724426, "108"], +[-37.8176752333, 175.27875675, "39"], +[-37.8175252667, 175.2795070667, "31"], +[-37.8197552, 175.2721289667, "112"], +[-37.8178209167, 175.2763711, "62"], +[-37.8198493333, 175.2726325333, "111"], +[-37.8306845, 175.2456957, "355"], +[-37.8201092167, 175.2721379667, "117"], +[-37.8195031667, 175.2725923667, "106"], +[-37.8199405, 175.272466, "113"], +[-37.82131145, 175.2690412, "152"], +[-37.82002495, 175.2723093667, "115"], +[-37.8196852167, 175.2729433333, "107"], +[-37.8198324167, 175.2719592333, "114"], +[-37.8301454, 175.2479504667, "335"], +[-37.8273535667, 175.2570583167, "251"], +[-37.8174786167, 175.2801035, "25"], +[-37.8238842667, 175.2642339, "178"], +[-37.8171562, 175.2803047333, "20"], +[-37.8237697833, 175.2644387333, "176"], +[-37.8178756333, 175.2776562, "51"], +[-37.8268175833, 175.2568371833, "250"], +[-37.8181449167, 175.2776554833, "51A"], +[-37.8244318667, 175.2642240833, "183"], +[-37.8178361167, 175.2779107667, "49"], +[-37.8260891, 175.2591781833, "226"], +[-37.8260423833, 175.2607154167, "217A-217C"], +[-37.82431905, 175.2631307, "188"], +[-37.8183188667, 175.2758711833, "75"], +[-37.8221890167, 175.2674446167, "2/144"], +[-37.8182197667, 175.2763169, "65"], +[-37.8202106833, 175.2712166667, "122"], +[-37.8177471833, 175.2784237333, "43"], +[-37.8217109, 175.2683067667, "160"], +[-37.8185389667, 175.2762664167, "69"], +[-37.8204896667, 175.2714257167, "125"], +[-37.8187639167, 175.2746943167, "85"], +[-37.8257275167, 175.2603873167, "218"], +[-37.8181389, 175.27672365, "61"], +[-37.8194425833, 175.2734258667, "101"], +[-37.8175017333, 175.2803636667, "23"], +[-37.8193047333, 175.2729219333, "102"], +[-37.8194057833, 175.2727582333, "104"], +[-37.8207062, 175.2683333, "154"], +[-37.8185769, 175.2760219, "71"], +[-37.8175596167, 175.27932265, "33"], +[-37.81748555, 175.2779904, "50"], +[-37.8227396833, 175.2673103167, "143"], +[-37.8195231667, 175.2732632333, "103"], +[-37.8204787167, 175.2691213167, "140"], +[-37.8178892167, 175.2792019833, "35A"], +[-37.8184382333, 175.2752989, "81"], +[-37.8316310333, 175.2414161167, "389"], +[-37.81960195, 175.27309575, "105"], +[-37.8174914167, 175.2796890667, "29"], +[-37.8175408667, 175.2805592333, "21"], +[-37.7967512333, 175.2647495333, "4"], +[-37.7966087833, 175.2642058, "2"], +[-37.79634555, 175.2643816, "1"], +[-37.79638795, 175.2652800167, "10"], +[-37.7959908833, 175.2653260833, "12"], +[-37.7966837833, 175.2651748, "8"], +[-37.79608465, 175.2648784333, "7"], +[-37.7964542333, 175.2648480167, "3"], +[-37.7959245667, 175.2651287, "11"], +[-37.7962885667, 175.2649596833, "5"], +[-37.7959705333, 175.2649492, "9"], +[-37.80188285, 175.2491708667, "5"], +[-37.8023209, 175.2491323, "1"], +[-37.8020593, 175.2495946833, "8"], +[-37.8019904833, 175.2493613667, "7"], +[-37.8022751167, 175.24958815, "4"], +[-37.8021647667, 175.24976555, "6B"], +[-37.8020074, 175.2498387833, "6A"], +[-37.8019772833, 175.2491144, "5A"], +[-37.8023960833, 175.2494273333, "2"], +[-37.8021575667, 175.2491380833, "3"], +[-37.8015099667, 175.3349443333, "66"], +[-37.8030280167, 175.3358344, "40"], +[-37.8028457, 175.3343918667, "55"], +[-37.8001098167, 175.3353304333, "72"], +[-37.80105715, 175.3390314167, "78"], +[-37.8018326333, 175.3391008333, "7"], +[-37.8021706333, 175.3349595833, "60"], +[-37.8024269667, 175.3344605, "59"], +[-37.8046850333, 175.33458185, "47C"], +[-37.80407595, 175.3348316333, "47B"], +[-37.8026579833, 175.3344264167, "57"], +[-37.8042866667, 175.33360505, "51A"], +[-37.8033488167, 175.33457795, "49"], +[-37.8046328333, 175.3343956833, "47D"], +[-37.8035949, 175.3338063333, "53"], +[-37.8044321167, 175.3332468333, "51B"], +[-37.8039995833, 175.3333218167, "51D"], +[-37.80451245, 175.3329427833, "51C"], +[-37.8033981667, 175.3353697833, "41"], +[-37.80094735, 175.33458005, "75"], +[-37.8016915, 175.3344227167, "67"], +[-37.8008259167, 175.33475925, "74"], +[-37.8011254167, 175.33501015, "68"], +[-37.8010924333, 175.33435835, "73"], +[-37.8011981333, 175.3336921833, "71"], +[-37.8033884167, 175.336087, "37"], +[-37.8020916333, 175.3379314167, "20"], +[-37.80210295, 175.3386423167, "15"], +[-37.8017665833, 175.3384741, "12"], +[-37.8033141333, 175.3367110167, "33"], +[-37.80248915, 175.3380553667, "21"], +[-37.8035733833, 175.3367742, "33B"], +[-37.80235725, 175.3374902333, "22"], +[-37.8003952833, 175.3353204, "70"], +[-37.8044939, 175.3356355, "47A"], +[-37.8148910333, 175.2987967167, "10"], +[-37.814808, 175.2984514, "11A"], +[-37.8146689333, 175.2986204667, "9"], +[-37.81479775, 175.2989277667, "8"], +[-37.8145530167, 175.2987382167, "7"], +[-37.8149598167, 175.2982763333, "17"], +[-37.8147110833, 175.2980785667, "15"], +[-37.8145673833, 175.2983605833, "11"], +[-37.8147003833, 175.2990624333, "6"], +[-37.8143763, 175.2990383833, "3"], +[-37.81444685, 175.2988827333, "5"], +[-37.814611, 175.2992104833, "4"], +[-37.8154255833, 175.2981542333, "20"], +[-37.81499895, 175.2986845333, "12"], +[-37.8150569167, 175.2980778333, "19"], +[-37.8151041667, 175.2985464, "14"], +[-37.8153047167, 175.2982939, "18"], +[-37.8152133667, 175.2984211167, "16"], +[-37.8149904, 175.2975224167, "23"], +[-37.81555415, 175.2980678167, "22"], +[-37.8151443333, 175.2979004167, "21"], +[-37.81524485, 175.2976643, "27"], +[-37.815425, 175.29795895, "24"], +[-37.81532445, 175.2978344167, "26"], +[-37.8150600167, 175.2974503833, "25"], +[-37.7524995667, 175.27947805, "11"], +[-37.7527309833, 175.27983545, "14"], +[-37.7526404, 175.2788474167, "5"], +[-37.7528825833, 175.27924895, "8"], +[-37.7528298667, 175.2794586, "10"], +[-37.7529252167, 175.2790488333, "6"], +[-37.75269635, 175.27999575, "16"], +[-37.75259505, 175.2790568667, "7"], +[-37.7524520167, 175.2796798667, "13"], +[-37.75236485, 175.2800806167, "19"], +[-37.7523359167, 175.280282, "21"], +[-37.7527849, 175.2796437167, "12"], +[-37.7526787833, 175.2786188667, "3"], +[-37.7525463167, 175.27927195, "9"], +[-37.7524151333, 175.2798929, "17"], +[-37.7530093333, 175.2786515333, "2"], +[-37.7529700333, 175.27883095, "4"], +[-37.7350536667, 175.2743353, "8"], +[-37.7346715167, 175.2741829667, "15"], +[-37.7348546833, 175.27447385, "10"], +[-37.7346183667, 175.2749165833, "14"], +[-37.7346841, 175.27465235, "12"], +[-37.7345680833, 175.2751012333, "16"], +[-37.73446865, 175.2745889, "21"], +[-37.7354514833, 175.2739022, "5"], +[-37.7354755667, 175.2742333167, "4"], +[-37.7352815, 175.2738879333, "7"], +[-37.7352639833, 175.2742328333, "6"], +[-37.7348131, 175.2740750333, "13"], +[-37.7345399833, 175.2743854833, "19"], +[-37.73495435, 175.27398435, "11"], +[-37.7356780167, 175.2743428833, "2"], +[-37.73574365, 175.2739995667, "1"], +[-37.7344676, 175.27414485, "17"], +[-37.735112, 175.2739310667, "9"], +[-37.7356192833, 175.2739402333, "3"], +[-37.7342883667, 175.2750670833, "22"], +[-37.7344129333, 175.2751167, "18"], +[-37.7343558833, 175.2747996333, "23"], +[-37.7343499333, 175.2750864333, "20"], +[-37.73331835, 175.2503557833, "7"], +[-37.7326874, 175.2508078667, "21"], +[-37.7329484167, 175.25010085, "15"], +[-37.7322089333, 175.25219625, "16"], +[-37.7331507333, 175.2501612667, "13"], +[-37.7322580833, 175.2513608833, "27"], +[-37.7335490333, 175.2500796333, "9"], +[-37.7313156833, 175.2523697667, "28"], +[-37.7328082833, 175.2511896333, "6"], +[-37.7332462167, 175.2507446667, "3"], +[-37.7325324833, 175.2515722667, "10"], +[-37.7321462667, 175.2515739667, "29"], +[-37.7324102667, 175.2517584833, "12"], +[-37.7314868, 175.2523888667, "26"], +[-37.7318392167, 175.25245435, "22"], +[-37.73288355, 175.2506521833, "19"], +[-37.7326648667, 175.2513876167, "8"], +[-37.73238, 175.2511624, "25"], +[-37.7316680833, 175.2524353, "24"], +[-37.7320751833, 175.25244845, "20"], +[-37.7329325333, 175.2503567833, "17"], +[-37.7310516833, 175.252172, "32"], +[-37.7333442833, 175.2501270167, "11"], +[-37.7320282667, 175.2517897833, "31"], +[-37.73227625, 175.2525764, "18"], +[-37.7311229, 175.25236405, "30"], +[-37.7314313, 175.25194155, "37"], +[-37.7319113667, 175.2519870333, "33"], +[-37.7311973833, 175.2518666, "39"], +[-37.7329688833, 175.2510632667, "4"], +[-37.7325233833, 175.2509645667, "23"], +[-37.731655, 175.25202975, "35"], +[-37.7332933667, 175.2505303, "5"], +[-37.7322964833, 175.2520265, "14"], +[-37.7310769, 175.2519841667, "41"], +[-37.745491, 175.2837592333, "17"], +[-37.7452984167, 175.2840838667, "8"], +[-37.7453850833, 175.2844698333, "6"], +[-37.7451296667, 175.2845077, "4"], +[-37.7449203333, 175.28456045, "2"], +[-37.745554, 175.28396855, "15"], +[-37.7450972667, 175.2832021167, "16"], +[-37.7456591, 175.2846394333, "9"], +[-37.7452351833, 175.2838743667, "10"], +[-37.7451325167, 175.2834347333, "14"], +[-37.7456734, 175.2844248667, "11"], +[-37.7451742667, 175.2836542833, "12"], +[-37.7456298333, 175.2841813833, "13"], +[-37.7448389, 175.2819592333, "28"], +[-37.7455072, 175.2847943333, "5"], +[-37.7453077167, 175.2848489167, "3"], +[-37.7450909, 175.2848654833, "1"], +[-37.7450158667, 175.2819490833, "30"], +[-37.7457110667, 175.2848490167, "7"], +[-37.7447568667, 175.28214335, "26"], +[-37.7451937167, 175.28194175, "33"], +[-37.7453002333, 175.2828765167, "25"], +[-37.7454340667, 175.2835471667, "19"], +[-37.7453378833, 175.2830997833, "23"], +[-37.7453836, 175.2833379667, "21"], +[-37.7448119667, 175.2823553, "24"], +[-37.7451938333, 175.28242845, "29"], +[-37.7452501667, 175.2826487, "27"], +[-37.7449343167, 175.2825561167, "22"], +[-37.7451087833, 175.2821650167, "31"], +[-37.74499755, 175.2827683167, "20"], +[-37.7450508833, 175.28298255, "18"], +[-37.75410555, 175.2859869667, "12"], +[-37.7539360333, 175.2859799333, "11"], +[-37.7546001667, 175.2854328333, "4"], +[-37.754398, 175.2851708833, "1"], +[-37.7542647667, 175.2854179333, "5"], +[-37.7544107667, 175.2859177167, "8"], +[-37.7540557167, 175.2855789667, "7"], +[-37.7540198333, 175.2857628667, "9"], +[-37.7542696833, 175.2860413833, "10"], +[-37.7544995667, 175.28563205, "6"], +[-37.7285104, 175.2409692, "5"], +[-37.7284251333, 175.24079145, "4"], +[-37.72835535, 175.2401037167, "1"], +[-37.7283915833, 175.2405578333, "3"], +[-37.7283696, 175.2403427333, "2"], +[-37.77840635, 175.26893785, "1/36-8/36"], +[-37.77590695, 175.2703388167, "14"], +[-37.77803805, 175.2697361333, "32B"], +[-37.7761792167, 175.2708294167, "16"], +[-37.7785705833, 175.2694921333, "38"], +[-37.7756828333, 175.27219015, "13"], +[-37.7770177333, 175.2708793667, "31"], +[-37.7757085833, 175.2719901167, "15"], +[-37.77594345, 175.2715671167, "19"], +[-37.7765885333, 175.2706266667, "22"], +[-37.7753827333, 175.2713930167, "10"], +[-37.7767183833, 175.27056665, "24"], +[-37.77926835, 175.2691444833, "50"], +[-37.7760897167, 175.27147945, "21"], +[-37.7757287167, 175.2717795833, "17"], +[-37.7763848833, 175.2712205167, "25"], +[-37.7752530333, 175.27134205, "4B"], +[-37.7766348833, 175.271071, "27"], +[-37.7783211, 175.2700955167, "37"], +[-37.7786927, 175.2694368167, "40"], +[-37.7757711333, 175.2716572, "17A"], +[-37.7787942667, 175.2693783333, "42"], +[-37.7791363167, 175.2691939167, "48A-48D"], +[-37.7788947333, 175.2693157833, "44"], +[-37.7781366167, 175.2697041333, "32"], +[-37.7790476667, 175.2697183167, "45"], +[-37.7752638, 175.2714654, "4A"], +[-37.77901095, 175.2692564667, "46"], +[-37.77798675, 175.2698742, "30"], +[-37.7785134, 175.2699777833, "39"], +[-37.7763310167, 175.27076245, "18"], +[-37.77835825, 175.2695743, "34B"], +[-37.7780134833, 175.27028065, "33"], +[-37.7782670167, 175.2696281833, "34A"], +[-37.7781609333, 175.2701832333, "35"], +[-37.7784721167, 175.2692172167, "38B"], +[-37.7784373833, 175.2702381333, "37A"], +[-37.7787910667, 175.2690286, "44A"], +[-37.7789042, 175.2689684167, "46A"], +[-37.7785765833, 175.2702132833, "39A"], +[-37.7764506667, 175.2706923333, "20A-20C"], +[-37.77689905, 175.2709845, "1/29-6/29"], +[-37.7761094167, 175.2706749, "16A"], +[-37.7760457167, 175.2704634167, "16B"], +[-37.7760319333, 175.27093245, "3/12-6/12"], +[-37.7762204167, 175.2713286167, "1/23-5/23"], +[-37.7765578833, 175.2714912833, "25C"], +[-37.7767560167, 175.2720306, "1/25B"], +[-37.7768203667, 175.2721904, "25B"], +[-37.77662345, 175.2722173167, "2/25B"], +[-37.7764954667, 175.2721708667, "3/25B"], +[-37.7766220333, 175.2717893167, "1/25A-10/25A"], +[-37.7786722167, 175.26837905, "15/36-20/36"], +[-37.7787667167, 175.268753, "9/36-14/36"], +[-37.7784097833, 175.2685062, "21/36-26/36"], +[-37.7782019, 175.2686020667, "27/36-32/36"], +[-37.7784842333, 175.2703458333, "37B"], +[-37.7785338, 175.3054464833, "1"], +[-37.75891565, 175.2845079333, "1"], +[-37.7591196167, 175.2848628167, "2"], +[-37.7587103667, 175.2844236667, "3A"], +[-37.7589656833, 175.28505535, "4"], +[-37.7586502333, 175.2848341833, "5"], +[-37.7588154, 175.2852533833, "6"], +[-37.7588149, 175.2846463167, "3"], +[-37.73321585, 175.28162745, "29"], +[-37.7329165667, 175.2814271667, "23"], +[-37.7333599, 175.2816566667, "31A"], +[-37.7329159167, 175.2815270667, "25"], +[-37.7330479833, 175.281574, "27"], +[-37.7333743333, 175.2810295, "40"], +[-37.7339238833, 175.2801995833, "44"], +[-37.7317698667, 175.2804258333, "4-18"], +[-37.7329805, 175.2812273667, "21"], +[-37.7335077833, 175.2808211167, "42"], +[-37.7314335333, 175.2806701667, "5B"], +[-37.7326068833, 175.2810738, "19"], +[-37.7318113333, 175.2807806833, "7"], +[-37.7322680333, 175.2809317833, "13"], +[-37.7314471333, 175.2803707833, "2"], +[-37.7336190667, 175.2808883833, "46"], +[-37.7313825833, 175.2806560833, "5A"], +[-37.7320323, 175.2808728333, "9"], +[-37.7315605333, 175.2808606, "5C"], +[-37.7315792833, 175.2810511, "5D"], +[-37.7331340667, 175.2812443167, "33"], +[-37.7334243667, 175.2814990167, "31C"], +[-37.7335184833, 175.28164855, "31B"], +[-37.7336475667, 175.2813334667, "39"], +[-37.7335069333, 175.2812549, "37"], +[-37.7333096667, 175.2812617, "35"], +[-37.7337866833, 175.2813514667, "41"], +[-37.7337261167, 175.2810783667, "45"], +[-37.7338245833, 175.2812568167, "43"], +[-37.73437915, 175.2201077833, "5"], +[-37.7346557667, 175.2194035667, "11"], +[-37.7342799167, 175.2195747333, "10"], +[-37.7340067833, 175.2203030833, "4"], +[-37.7343963, 175.2191214833, "14"], +[-37.7346940333, 175.2192108, "13"], +[-37.73434235, 175.2193414333, "12"], +[-37.73426995, 175.22034285, "3"], +[-37.7345555167, 175.2191301833, "15"], +[-37.7339031333, 175.22054205, "2"], +[-37.7341741333, 175.22060235, "1"], +[-37.7344527667, 175.2198608667, "7"], +[-37.73409715, 175.2200497833, "6"], +[-37.73419295, 175.2197968167, "8"], +[-37.7345570833, 175.2196010667, "9"], +[-37.7668515667, 175.24805015, "G15/2-G20/2"], +[-37.7666871167, 175.2510577, "1"], +[-37.76628735, 175.2482339333, "201/2-214/2"], +[-37.7664911167, 175.2480490167, "115/2-120/2"], +[-37.7665688167, 175.2481047667, "101/2-114/2"], +[-37.76621195, 175.2482030833, "215/2-220/2"], +[-37.7669263167, 175.2481129, "G5/2-G14/2"], +[-37.76661095, 175.2496344833, "2"], +[-37.7933023, 175.2683375167, "10"], +[-37.79344025, 175.2687352333, "15"], +[-37.7939704333, 175.2679611, "16"], +[-37.79312625, 175.2695031833, "5B"], +[-37.7932479333, 175.2694546, "5A"], +[-37.7931708, 175.2684135, "8"], +[-37.7942380667, 175.2685288167, "25A"], +[-37.7933174167, 175.2688207667, "9"], +[-37.79434175, 175.2690570333, "23A"], +[-37.7933861167, 175.26930965, "11"], +[-37.7930355833, 175.2695509667, "5C"], +[-37.7931854667, 175.2689170333, "7"], +[-37.7943425833, 175.26877135, "25"], +[-37.7938231167, 175.2684818667, "19"], +[-37.79408145, 175.2685905, "23"], +[-37.7927080667, 175.2689977333, "2"], +[-37.7942586167, 175.2682184, "27"], +[-37.7929598167, 175.26938095, "3"], +[-37.7939925667, 175.2683713167, "21"], +[-37.7930458167, 175.2685020667, "6"], +[-37.7929567667, 175.2687628833, "4"], +[-37.7935191, 175.26820395, "14"], +[-37.7936479833, 175.2685883833, "17"], +[-37.7934186833, 175.2682620333, "12"], +[-37.7928519833, 175.2686628, "4A"], +[-37.79283505, 175.2690016, "1"], +[-37.7942528833, 175.2691927833, "23B"], +[-37.8156573, 175.2726158667, "14"], +[-37.8161929667, 175.2714698167, "34"], +[-37.81571975, 175.2725333333, "16"], +[-37.8160473667, 175.2732016167, "9"], +[-37.8157295167, 175.2736272667, "3"], +[-37.8157288333, 175.2731252833, "10"], +[-37.8163091167, 175.2719050833, "28"], +[-37.8161279833, 175.2730659, "11"], +[-37.8165280167, 175.2715930333, "29"], +[-37.81586265, 175.2729566167, "12"], +[-37.8164702833, 175.2726556, "17"], +[-37.8162473667, 175.2729271167, "13"], +[-37.8155683333, 175.2733439667, "4"], +[-37.8158421, 175.2734319833, "5"], +[-37.81635275, 175.2727762333, "15"], +[-37.8153887, 175.2729444667, "6"], +[-37.8159433167, 175.2733240667, "7"], +[-37.8154509833, 175.2728765167, "8"], +[-37.8165774, 175.272472, "19"], +[-37.8160107167, 175.2727506, "18"], +[-37.8166406167, 175.2722905833, "21"], +[-37.81612695, 175.2726004, "20"], +[-37.8156741667, 175.2738346333, "1"], +[-37.8154761333, 175.2735542667, "2"], +[-37.8165692333, 175.2717596, "27"], +[-37.8159202167, 175.2722575333, "22"], +[-37.8163588167, 175.2721843, "26"], +[-37.81625215, 175.2724353667, "24"], +[-37.8162516333, 175.2716647167, "32"], +[-37.8164797167, 175.27141525, "31"], +[-37.815974, 175.2719122, "30"], +[-37.8160024167, 175.2709524833, "38"], +[-37.8164449, 175.2712481333, "33"], +[-37.8161223, 175.2712083, "36"], +[-37.8163978667, 175.27106555, "35"], +[-37.7654375167, 175.2610917833, "7"], +[-37.7652853833, 175.2614271333, "8"], +[-37.7650721333, 175.2615848667, "8A"], +[-37.7659639333, 175.2613978667, "1"], +[-37.7652885667, 175.26120555, "10"], +[-37.76581735, 175.26128885, "1A"], +[-37.76563695, 175.26126765, "3A"], +[-37.7655563, 175.2615934833, "4"], +[-37.7657352833, 175.26105135, "3"], +[-37.7657429833, 175.2616641333, "2"], +[-37.76556315, 175.2611281167, "5"], +[-37.8027113667, 175.2570559833, "12"], +[-37.8022876833, 175.2567281833, "7"], +[-37.802525, 175.2576434333, "17"], +[-37.8022405833, 175.2565436833, "5"], +[-37.80247625, 175.2561661167, "4"], +[-37.8021302, 175.2560576333, "3A-3E"], +[-37.8028633667, 175.2576087667, "18"], +[-37.8024710167, 175.2574690833, "15"], +[-37.8028130667, 175.2574284167, "16"], +[-37.8023309667, 175.2568981167, "9"], +[-37.8027602333, 175.2572341167, "14"], +[-37.8026619333, 175.2568754333, "10"], +[-37.8024289167, 175.2572719667, "13"], +[-37.8023794, 175.2570933667, "11"], +[-37.8026169167, 175.25668175, "8"], +[-37.8030985667, 175.25870355, "26"], +[-37.80289365, 175.2578259833, "20"], +[-37.8025664333, 175.2578312667, "19"], +[-37.8030179833, 175.25834435, "24"], +[-37.8026140167, 175.2580234833, "21"], +[-37.8026502, 175.2582335167, "23"], +[-37.8029741667, 175.2580628667, "22"], +[-37.8025525333, 175.2564279333, "6"], +[-37.8032810333, 175.2591885, "34"], +[-37.8029358333, 175.2592324667, "33"], +[-37.8024276667, 175.2559737667, "2"], +[-37.8032021667, 175.2594600833, "40"], +[-37.8029859833, 175.2594317, "35"], +[-37.8022015167, 175.2563618, "3"], +[-37.8037373167, 175.2593224, "38"], +[-37.7528491167, 175.25756705, "6"], +[-37.7530272167, 175.2578278, "7"], +[-37.7528251, 175.2583800667, "1"], +[-37.7532498167, 175.25746825, "11"], +[-37.7530683667, 175.2574498833, "8"], +[-37.752967, 175.2574453333, "10"], +[-37.7527980667, 175.2578031833, "4"], +[-37.7528659333, 175.2582491333, "3"], +[-37.7527174, 175.2580295833, "2"], +[-37.75295355, 175.2580220167, "5"], +[-37.7531397833, 175.2576111, "9"], +[-37.7901155667, 175.2811822333, "101"], +[-37.7898994333, 175.2815029333, "89"], +[-37.79025905, 175.2809430833, "109"], +[-37.7922012, 175.27769925, "221A"], +[-37.79039805, 175.2807377, "113"], +[-37.7923345833, 175.2778193667, "221B"], +[-37.7910082333, 175.27895575, "170"], +[-37.7893581333, 175.2817748, "54"], +[-37.7910876, 175.2788222333, "174"], +[-37.7923476833, 175.2776992, "225"], +[-37.7914549833, 175.2789494, "179"], +[-37.7922784833, 175.2779123833, "221C"], +[-37.7911663667, 175.27869045, "180"], +[-37.7891885167, 175.28204895, "50"], +[-37.7920345333, 175.2794485333, "181"], +[-37.7890849, 175.2822118833, "44"], +[-37.7915276833, 175.2788401167, "183"], +[-37.7900595, 175.2812680333, "95"], +[-37.7916111, 175.2786865, "189A"], +[-37.7906113667, 175.2804121, "133"], +[-37.7917463333, 175.2788809167, "189"], +[-37.7913767833, 175.2783565333, "192"], +[-37.7922780667, 175.2776098333, "227"], +[-37.7910846333, 175.2782113667, "190"], +[-37.7923613167, 175.2774384833, "229"], +[-37.7901121833, 175.2813828167, "95A"], +[-37.7924520167, 175.2772771333, "233"], +[-37.7917710833, 175.2784252167, "195"], +[-37.7892733, 175.2819220667, "52"], +[-37.79031425, 175.2808455, "111"], +[-37.7900949833, 175.2814211833, "93"], +[-37.7894453, 175.2822315167, "43"], +[-37.7923739333, 175.2785608167, "209"], +[-37.7923334333, 175.2786574833, "207"], +[-37.7917001667, 175.2778007167, "206"], +[-37.7922558, 175.27888765, "197"], +[-37.7901530333, 175.2811161167, "105"], +[-37.7907025333, 175.2802292167, "127"], +[-37.7905012833, 175.2805556667, "119"], +[-37.7886822667, 175.2829014833, "20"], +[-37.7920987167, 175.2778906167, "219"], +[-37.7920394833, 175.2772317167, "214"], +[-37.7918163333, 175.2775963333, "210"], +[-37.7887183167, 175.2828504167, "22"], +[-37.7915157667, 175.2781134, "200"], +[-37.7924713, 175.2774646333, "229A"], +[-37.7887461333, 175.2828014833, "26"], +[-37.78888035, 175.2831830667, "27"], +[-37.788774, 175.28275295, "24"], +[-37.7886945833, 175.2834786333, "7"], +[-37.78862095, 175.2830058167, "16"], +[-37.78865255, 175.28295355, "18"], +[-37.7885937, 175.2830562, "14"], +[-37.78834665, 175.2834833833, "2"], +[-37.7324906333, 175.2419492333, "2"], +[-37.7312790167, 175.2420186, "13"], +[-37.7322821833, 175.2414834333, "1"], +[-37.7317145667, 175.2424019, "12"], +[-37.7316444833, 175.2427070833, "14"], +[-37.7314602667, 175.2419771167, "11"], +[-37.7315176667, 175.2424758667, "16"], +[-37.7313217, 175.2425026167, "18"], +[-37.7321488, 175.2415737, "3"], +[-37.7321862667, 175.2421286, "6"], +[-37.7320336833, 175.2422371167, "8"], +[-37.7318701333, 175.2423312, "10"], +[-37.7319886333, 175.2416868333, "5"], +[-37.7323419333, 175.2420485167, "4"], +[-37.7318211667, 175.2417902, "7"], +[-37.7316422833, 175.2418978667, "9"], +[-37.7908948167, 175.3113601167, "14"], +[-37.7907470667, 175.3113075167, "12"], +[-37.7903063833, 175.3117068667, "1"], +[-37.7912692, 175.3116399667, "20A"], +[-37.7916217833, 175.3124456, "28"], +[-37.7908202667, 175.3108386167, "10A"], +[-37.7919681667, 175.3134065167, "40"], +[-37.79111345, 175.3122614833, "11"], +[-37.7906176333, 175.31166325, "3"], +[-37.7912066333, 175.3117969167, "20"], +[-37.79199, 175.3132437667, "38"], +[-37.79130985, 175.31196625, "22"], +[-37.7922639667, 175.31319745, "38A"], +[-37.7906755833, 175.3111685333, "10"], +[-37.7916359, 175.3130323167, "23"], +[-37.7908031667, 175.3117791833, "5"], +[-37.7915382, 175.3128826167, "21"], +[-37.79025285, 175.3113411833, "4"], +[-37.79122185, 175.3124057833, "15"], +[-37.7914376667, 175.3127225167, "19"], +[-37.7913339667, 175.3125720667, "17"], +[-37.7919733667, 175.3130654667, "36"], +[-37.7915175667, 175.3122838, "26"], +[-37.7917026667, 175.3132300667, "25"], +[-37.79141255, 175.3121105167, "24"], +[-37.79215755, 175.3129611333, "36A"], +[-37.7917312833, 175.3126063, "30"], +[-37.7919113167, 175.31292485, "34"], +[-37.7918261333, 175.3127646833, "32"], +[-37.7909058333, 175.3119310833, "7"], +[-37.7919045833, 175.3135633, "42"], +[-37.7903926667, 175.3113118833, "6"], +[-37.79179545, 175.3136785833, "44"], +[-37.7911058667, 175.3116406833, "18"], +[-37.7910124, 175.3114794167, "16"], +[-37.79101405, 175.3120959667, "9"], +[-37.7905419167, 175.3113045833, "8"], +[-37.7250860667, 175.2659465667, "14"], +[-37.7250307167, 175.2648496167, "1"], +[-37.72501015, 175.2650270333, "3"], +[-37.7249158, 175.26611375, "13"], +[-37.7249590833, 175.26586, "11"], +[-37.7249991333, 175.2652526, "5"], +[-37.72494645, 175.2656549, "9"], +[-37.7249972167, 175.2654465833, "7"], +[-37.7254354167, 175.2658995833, "10"], +[-37.72522815, 175.2659167, "12"], +[-37.7252707333, 175.2650861, "2"], +[-37.7253062333, 175.2657145833, "8"], +[-37.7252664833, 175.2652906333, "4"], +[-37.72527645, 175.2655222167, "6"], +[-37.7819240167, 175.30638635, "24"], +[-37.7816534, 175.3071585167, "33"], +[-37.78192755, 175.3062135, "22"], +[-37.7816544, 175.3058189833, "23"], +[-37.7822274, 175.3055728833, "17"], +[-37.7811546667, 175.3089463333, "56"], +[-37.78237995, 175.3059917833, "18"], +[-37.78316975, 175.3064839833, "8"], +[-37.7820736, 175.3055037, "19"], +[-37.78334725, 175.3065537833, "6"], +[-37.7821643667, 175.3058830833, "20"], +[-37.7819381167, 175.3082066167, "42"], +[-37.78168545, 175.3081968833, "41"], +[-37.78277045, 175.3060123167, "13"], +[-37.7819267667, 175.30843555, "44"], +[-37.7819435333, 175.30795065, "40"], +[-37.7816527, 175.3084557167, "43"], +[-37.7813119833, 175.3089336167, "54"], +[-37.7813536833, 175.3085562833, "45"], +[-37.78363605, 175.3067326167, "2"], +[-37.7811743167, 175.3085585, "47"], +[-37.7816612, 175.3069283, "31"], +[-37.78103975, 175.3085641333, "49"], +[-37.7828794833, 175.3060798167, "11"], +[-37.7836097167, 175.3062881667, "3"], +[-37.78282525, 175.3063938833, "12"], +[-37.78352995, 175.3066689, "4"], +[-37.7816631333, 175.3066979, "29"], +[-37.78306965, 175.30612745, "9"], +[-37.7834190333, 175.3061989167, "5"], +[-37.7821749, 175.3076374667, "36"], +[-37.7825171833, 175.3061355333, "16"], +[-37.78217355, 175.30750485, "34"], +[-37.7816682167, 175.3074002333, "35"], +[-37.78194165, 175.3077173333, "38"], +[-37.7819339, 175.3073802, "32"], +[-37.78167215, 175.3076208667, "37"], +[-37.78300025, 175.3064483, "10"], +[-37.7816696667, 175.3059734167, "25"], +[-37.7826717167, 175.3063136667, "14"], +[-37.7809404333, 175.3089499333, "58"], +[-37.7832328667, 175.3061478333, "7"], +[-37.79063045, 175.2461985333, "3"], +[-37.7903000333, 175.2463246, "3A"], +[-37.7907107667, 175.2464033333, "7"], +[-37.79083265, 175.2464422667, "9"], +[-37.7907394, 175.24657705, "7A"], +[-37.7909884333, 175.2462297667, "6"], +[-37.7904913667, 175.2464876167, "5"], +[-37.7909237833, 175.24636745, "8"], +[-37.7908790667, 175.2458221667, "2"], +[-37.7906741667, 175.2459963833, "1"], +[-37.7909682833, 175.2460631, "4"], +[-37.7601266167, 175.30018825, "8"], +[-37.7597264667, 175.3010344333, "16"], +[-37.7595644, 175.3013941167, "20"], +[-37.7607046333, 175.3000330167, "1"], +[-37.7599265833, 175.3004921, "10"], +[-37.7596020833, 175.3005305333, "19"], +[-37.7597625167, 175.2999814833, "13"], +[-37.7598684167, 175.3006884333, "12"], +[-37.7598919833, 175.2998073, "11"], +[-37.7596316833, 175.3012209833, "18"], +[-37.75979395, 175.30086705, "14"], +[-37.7596418667, 175.3003445667, "17"], +[-37.7596932, 175.3001551667, "15"], +[-37.7600273333, 175.2997419333, "9"], +[-37.7592576333, 175.30121775, "27"], +[-37.7595364833, 175.30073565, "21"], +[-37.759391, 175.3010491333, "25"], +[-37.7594677167, 175.30152755, "22"], +[-37.7593169167, 175.3015519333, "24"], +[-37.7594622, 175.30090455, "23"], +[-37.7601862667, 175.2997779333, "7"], +[-37.7591000833, 175.3017205167, "31"], +[-37.7606268167, 175.3003325, "2"], +[-37.7592322667, 175.3014056667, "29"], +[-37.7603071167, 175.30024225, "6"], +[-37.7605977333, 175.2999896, "3"], +[-37.7603355167, 175.2998305, "5"], +[-37.7604465, 175.3002926833, "4"], +[-37.81422485, 175.3348265833, "34"], +[-37.8127017667, 175.3354958833, "25"], +[-37.8140467667, 175.3355489167, "35"], +[-37.8123913833, 175.3350858667, "21"], +[-37.8108384667, 175.3345007167, "11B"], +[-37.8120310833, 175.3358975833, "23"], +[-37.8108584167, 175.3339313833, "11A"], +[-37.8119806, 175.3345035333, "15A"], +[-37.81376505, 175.3358645667, "33"], +[-37.8121924333, 175.3334683833, "3"], +[-37.8134187, 175.3358173833, "31"], +[-37.8130391333, 175.3357265167, "27"], +[-37.8133294667, 175.3352626333, "30"], +[-37.8136773167, 175.3352465, "32"], +[-37.8127826, 175.3348622167, "24"], +[-37.811362, 175.3342760833, "15"], +[-37.7822014, 175.2587022833, "4"], +[-37.7824903, 175.25861455, "3"], +[-37.7825081167, 175.258842, "1"], +[-37.7822390333, 175.2588792333, "2"], +[-37.7701062667, 175.2867455667, "32"], +[-37.77015275, 175.2892548333, "65"], +[-37.7698241667, 175.28649775, "31"], +[-37.7706730667, 175.2842650833, "10B"], +[-37.7700214833, 175.287126, "36"], +[-37.7705752833, 175.2847288667, "14"], +[-37.7703853333, 175.2888754667, "56"], +[-37.7705604333, 175.2832066667, "1"], +[-37.7700611, 175.2887137167, "52"], +[-37.7704003, 175.2839940667, "9"], +[-37.7703734833, 175.2855499667, "20"], +[-37.7699263, 175.2860655, "27"], +[-37.7694853333, 175.2903915667, "84A"], +[-37.7696861167, 175.2871313167, "37"], +[-37.76943155, 175.29058715, "86A"], +[-37.76941935, 175.28828625, "49"], +[-37.7697220333, 175.2869363667, "35"], +[-37.7707069167, 175.2889461333, "60"], +[-37.7705244833, 175.2849172, "16"], +[-37.76985835, 175.2890397333, "61"], +[-37.7698234833, 175.2898760667, "75"], +[-37.7704416333, 175.28991495, "70"], +[-37.76914125, 175.29057565, "85"], +[-37.7701848167, 175.28979515, "71"], +[-37.7705303333, 175.2889387333, "58"], +[-37.7703965167, 175.2901188333, "72"], +[-37.7708517167, 175.28410205, "8A"], +[-37.77011185, 175.2900037333, "73"], +[-37.7706546167, 175.2843392333, "10"], +[-37.7703513333, 175.2902805, "74"], +[-37.7698428667, 175.2886575833, "50"], +[-37.770578, 175.2893273333, "64"], +[-37.7704469833, 175.28379795, "7"], +[-37.7702211333, 175.2847782167, "17"], +[-37.7700610833, 175.2869286333, "34"], +[-37.7708050833, 175.28372355, "4"], +[-37.7697432, 175.2896633333, "77A"], +[-37.7704856, 175.2835962, "5"], +[-37.7705160667, 175.2833969667, "3"], +[-37.7707069667, 175.2841297833, "8"], +[-37.7695115667, 175.2891161833, "57A"], +[-37.7699758667, 175.2858602833, "25"], +[-37.7707611, 175.28391685, "6"], +[-37.7698312667, 175.287833, "42"], +[-37.769506, 175.2879071333, "45"], +[-37.7702921167, 175.2859390833, "24"], +[-37.77030055, 175.2904668, "76"], +[-37.7700185667, 175.2856549167, "23"], +[-37.7695490833, 175.2901845333, "82"], +[-37.7694728833, 175.2887896833, "55"], +[-37.7691849167, 175.2903494167, "83"], +[-37.7697185667, 175.2882630333, "46"], +[-37.7693784667, 175.2908331333, "88A"], +[-37.7697845333, 175.2880276167, "44"], +[-37.7697680167, 175.2867068833, "33"], +[-37.7694188667, 175.28864055, "53"], +[-37.770259, 175.2845892833, "15"], +[-37.76945145, 175.2880998167, "47"], +[-37.7708540333, 175.2835199833, "2"], +[-37.7693881167, 175.2884694667, "51"], +[-37.7701985333, 175.2887988833, "54"], +[-37.7697061167, 175.28849985, "48"], +[-37.77061565, 175.2845400167, "12"], +[-37.7703327667, 175.2857420667, "22"], +[-37.7703454, 175.2842089333, "11"], +[-37.7695847167, 175.2868686, "35B"], +[-37.77025165, 175.2861245667, "26"], +[-37.7696551667, 175.2869043, "35A"], +[-37.7696127833, 175.29066775, "86B"], +[-37.7695863167, 175.2889120333, "57"], +[-37.7696575667, 175.29050885, "84B"], +[-37.7700618, 175.2854392167, "21"], +[-37.7698840333, 175.2876413333, "40"], +[-37.7695128, 175.2868434, "35C"], +[-37.7703003833, 175.2844056333, "13"], +[-37.770123, 175.2852232667, "19"], +[-37.7706372667, 175.2830419, "1A"], +[-37.7694439167, 175.2868096, "35D"], +[-37.7702018167, 175.2863267167, "28"], +[-37.7701546667, 175.28654365, "30"], +[-37.769877, 175.2862832167, "29"], +[-37.7696731667, 175.2898125167, "77"], +[-37.7702433667, 175.2895975333, "69"], +[-37.770621, 175.2891132833, "62"], +[-37.7697053667, 175.2889796833, "59"], +[-37.7704823167, 175.2897176, "68"], +[-37.7699989, 175.2890858167, "63"], +[-37.7703035167, 175.2893064667, "67"], +[-37.7705330167, 175.2895231333, "66"], +[-37.7700478833, 175.2903238667, "78C"], +[-37.7701148833, 175.2903677667, "78B"], +[-37.7702036667, 175.2903996167, "78A"], +[-37.76992645, 175.29029275, "80"], +[-37.7695248333, 175.2897600167, "79"], +[-37.7380774667, 175.2483516667, "45"], +[-37.7378779833, 175.2484657167, "49"], +[-37.7383504333, 175.2484297333, "41"], +[-37.7379627333, 175.248316, "47"], +[-37.73823675, 175.2484118333, "43"], +[-37.7377991167, 175.2488080167, "46"], +[-37.7378173667, 175.2486055833, "48"], +[-37.7378119, 175.2489396333, "44"], +[-37.7378356333, 175.2490858, "42"], +[-37.7459423333, 175.2452009167, "35"], +[-37.7458837, 175.2449926667, "39"], +[-37.7460344333, 175.2449737667, "37"], +[-37.7447664833, 175.2474601667, "5A"], +[-37.7451445833, 175.2474825167, "11"], +[-37.74535595, 175.2460220333, "14"], +[-37.7452263333, 175.2464031333, "10"], +[-37.7453148167, 175.2471872, "15"], +[-37.74539345, 175.2458954833, "14A"], +[-37.7452344333, 175.2473469333, "13"], +[-37.7458197, 175.24560895, "31"], +[-37.7451700333, 175.2465980167, "8"], +[-37.7450041, 175.2473653833, "7"], +[-37.7457946667, 175.2458309333, "29"], +[-37.7454482667, 175.24681975, "19"], +[-37.7453909167, 175.2470071667, "17"], +[-37.7452999, 175.2462088667, "12"], +[-37.7445688833, 175.2469061667, "1"], +[-37.7459296167, 175.2448391333, "39A"], +[-37.7447303833, 175.24712775, "3"], +[-37.74563385, 175.2462632667, "25"], +[-37.7448737667, 175.2467275667, "4"], +[-37.7456676, 175.2453804, "41"], +[-37.7448711, 175.24725565, "5"], +[-37.7458614167, 175.2454042, "33"], +[-37.7450583833, 175.2476380333, "9"], +[-37.74511905, 175.2468596333, "6"], +[-37.7455719167, 175.2464487, "23"], +[-37.74551495, 175.2466455667, "21"], +[-37.7456926833, 175.24604305, "27"], +[-37.77438655, 175.2699106, "3"], +[-37.7756151167, 175.26927645, "15E"], +[-37.77573605, 175.2694868333, "15"], +[-37.77564745, 175.2693659667, "15F"], +[-37.7752221167, 175.2689354167, "8B"], +[-37.7750850333, 175.2689902, "1/8-8/8"], +[-37.7753699167, 175.2688659667, "8A"], +[-37.77539695, 175.26929565, "11"], +[-37.77528655, 175.2693553833, "9"], +[-37.7746696667, 175.2692281167, "4"], +[-37.7760647, 175.2691472667, "19D"], +[-37.7759829833, 175.26889835, "19A"], +[-37.7759926, 175.26836015, "12B"], +[-37.7745746, 175.26928745, "2B"], +[-37.7758566333, 175.2690327833, "17"], +[-37.7745097833, 175.2693285333, "2A"], +[-37.7759682, 175.2682804, "12C"], +[-37.7757519, 175.2693254667, "15C"], +[-37.7759441, 175.2682219833, "12D"], +[-37.7756754333, 175.2691168333, "15A"], +[-37.7757163333, 175.2692339833, "15B"], +[-37.7755784167, 175.2691698167, "15D"], +[-37.7760335667, 175.2690647667, "19C"], +[-37.7747962833, 175.26910625, "6B"], +[-37.7745933667, 175.2697699333, "5"], +[-37.7746508667, 175.2688513667, "6"], +[-37.7761413833, 175.2688697667, "1/21-6/21"], +[-37.7760188333, 175.2684532667, "12A"], +[-37.7749316167, 175.2690655833, "6A"], +[-37.7760092833, 175.2689894667, "19B"], +[-37.7818692667, 175.2795244, "10A"], +[-37.7816833833, 175.2793946167, "12A"], +[-37.78210895, 175.2796224167, "6"], +[-37.7816416333, 175.2793295833, "14"], +[-37.7822930333, 175.2797041833, "4"], +[-37.7819965333, 175.2795677167, "8"], +[-37.7818045167, 175.2794458167, "12"], +[-37.7817529833, 175.2794240833, "12B"], +[-37.7819037333, 175.2795286, "10B"], +[-37.7890305167, 175.3009687, "14"], +[-37.7883358, 175.3018066333, "25"], +[-37.7880264167, 175.3010322833, "26A"], +[-37.7893156, 175.3009242333, "6"], +[-37.7879051333, 175.3014246667, "26"], +[-37.7876770667, 175.3017913667, "35"], +[-37.7882276333, 175.3018433833, "27"], +[-37.78966535, 175.3012285833, "1"], +[-37.7895079667, 175.3012840833, "3"], +[-37.7888927667, 175.3010266667, "16"], +[-37.7884545667, 175.3013519333, "20"], +[-37.7891408833, 175.3009437167, "12"], +[-37.78855495, 175.3016690167, "19"], +[-37.7894304167, 175.3009059, "4"], +[-37.7886443667, 175.30160915, "17"], +[-37.7893589167, 175.3012852167, "5"], +[-37.7882691667, 175.3014657, "22"], +[-37.7877845167, 175.3018431833, "33"], +[-37.7884950167, 175.3017289833, "21"], +[-37.7888913667, 175.3014176333, "11"], +[-37.7884951, 175.3019509667, "23"], +[-37.7895910833, 175.3009012, "2"], +[-37.7887350333, 175.3015430167, "15"], +[-37.7877886333, 175.3013952167, "28"], +[-37.7888168333, 175.3014758167, "13"], +[-37.7891881833, 175.3013200833, "7"], +[-37.78809485, 175.3014704167, "24"], +[-37.7880885167, 175.3018844167, "29"], +[-37.7890222833, 175.3013480667, "9"], +[-37.7879305333, 175.3018869667, "31A"], +[-37.7887677333, 175.3011155167, "18"], +[-37.7718485833, 175.2523702667, "18A"], +[-37.7733413667, 175.2529081, "3"], +[-37.7732586, 175.2527218167, "5"], +[-37.7732854, 175.2531964333, "2"], +[-37.7731720167, 175.2532104333, "4"], +[-37.77299285, 175.2522429667, "11"], +[-37.7733620667, 175.2530693833, "1"], +[-37.7731731167, 175.2521061, "9A"], +[-37.7724844167, 175.2519129667, "17"], +[-37.7732364833, 175.2522217167, "11A"], +[-37.7725140833, 175.2523299833, "12"], +[-37.7730393167, 175.2530299833, "6"], +[-37.7730875333, 175.2524112167, "9"], +[-37.7731761, 175.2525678833, "7"], +[-37.7721015333, 175.2521182167, "16"], +[-37.7728427167, 175.25206335, "13"], +[-37.7726550167, 175.2519789, "15"], +[-37.7722833833, 175.2522418167, "14"], +[-37.7719875, 175.2517654167, "23"], +[-37.7722561, 175.2518757333, "19"], +[-37.77177925, 175.2524468167, "18B"], +[-37.7717307333, 175.2520246667, "22"], +[-37.77172275, 175.2522207833, "20A"], +[-37.77211185, 175.2518276667, "21"], +[-37.7718308, 175.2521460667, "20"], +[-37.77164705, 175.2519017167, "26A"], +[-37.7718719833, 175.2517622833, "25"], +[-37.7715415833, 175.2520485167, "24"], +[-37.77157755, 175.251724, "26B"], +[-37.7715833, 175.2515291833, "27B"], +[-37.7717677, 175.2518175667, "27A"], +[-37.7441693167, 175.28290565, "9"], +[-37.7444670667, 175.2831181333, "14"], +[-37.7443254167, 175.2819716333, "4"], +[-37.7442824167, 175.281697, "2"], +[-37.74415215, 175.28267795, "7"], +[-37.7443962833, 175.2824190667, "8"], +[-37.7443597167, 175.2821937667, "6"], +[-37.7441466667, 175.2831719167, "11"], +[-37.7443247833, 175.28304285, "13"], +[-37.7440444, 175.28187055, "1"], +[-37.7440939667, 175.2821942167, "3"], +[-37.7441298167, 175.2824623833, "5"], +[-37.74444515, 175.2826508667, "10"], +[-37.7444769833, 175.2828789833, "12"], +[-37.7987330833, 175.2631995667, "175"], +[-37.7944276167, 175.2640886833, "56"], +[-37.7982217833, 175.2647497, "153D"], +[-37.7939919, 175.2643672833, "49"], +[-37.7989954, 175.2625736, "184"], +[-37.7938769167, 175.2639908167, "48"], +[-37.7976069667, 175.2644181333, "153-155"], +[-37.7937587667, 175.2639601167, "46"], +[-37.8020438667, 175.2629535167, "221"], +[-37.7938552667, 175.2643558333, "45"], +[-37.79924, 175.2646106833, "175E"], +[-37.7935061333, 175.26391355, "40"], +[-37.80054265, 175.2620973333, "224"], +[-37.7932479667, 175.26386045, "38"], +[-37.7956299333, 175.26389375, "118"], +[-37.79911395, 175.26253345, "186"], +[-37.79224675, 175.2641144667, "23"], +[-37.7930794, 175.2642533833, "35"], +[-37.7942297, 175.2643977833, "69"], +[-37.7929903333, 175.2638250833, "32-36"], +[-37.79874235, 175.2621010667, "180"], +[-37.7972624, 175.2637359667, "151"], +[-37.7991748, 175.2619027, "188-200"], +[-37.7935425333, 175.2643064667, "43"], +[-37.7987889833, 175.2645699833, "175C"], +[-37.7985274333, 175.2621165333, "178"], +[-37.79235345, 175.2637254333, "24"], +[-37.7984177, 175.2622368167, "176"], +[-37.7980091667, 175.2629526, "166"], +[-37.7969326, 175.2633488167, "148"], +[-37.79528745, 175.2644757167, "113"], +[-37.7971583, 175.2632629167, "150"], +[-37.7989770167, 175.26451135, "175D"], +[-37.8022724, 175.26282995, "223"], +[-37.7917538167, 175.2636525167, "18C"], +[-37.7976591167, 175.2630343667, "154-158"], +[-37.8008753333, 175.2626972333, "213"], +[-37.7973666167, 175.2631261667, "152"], +[-37.79656125, 175.2628879333, "138-146"], +[-37.8007979833, 175.2641906667, "205D"], +[-37.8014877, 175.2623557, "232"], +[-37.7999722833, 175.2630631333, "195"], +[-37.8012711167, 175.2623118333, "230"], +[-37.7999430333, 175.2634026833, "199"], +[-37.80146, 175.2631975333, "217"], +[-37.7999689, 175.2632262833, "197"], +[-37.8016936, 175.2630184, "219"], +[-37.8011288667, 175.2641165, "205C"], +[-37.7979341667, 175.26347145, "163"], +[-37.80088605, 175.263608, "205E"], +[-37.7953384833, 175.2640141, "114"], +[-37.7941538333, 175.2640280667, "52"], +[-37.7954753667, 175.2643804667, "115"], +[-37.7956823667, 175.2643010333, "121"], +[-37.7984203, 175.2627933667, "172"], +[-37.7957753833, 175.2638465833, "122"], +[-37.79859505, 175.2632619333, "171"], +[-37.7961743333, 175.2641293833, "123"], +[-37.7982505, 175.2633784, "167"], +[-37.7959460833, 175.2637930833, "126"], +[-37.7964435833, 175.2635240833, "136"], +[-37.7960391333, 175.2637353167, "128"], +[-37.8022619667, 175.2622774667, "238"], +[-37.7990341833, 175.2630307333, "177"], +[-37.7944156333, 175.2644286667, "101"], +[-37.7988551667, 175.2626164667, "182"], +[-37.7940117333, 175.2640110833, "50"], +[-37.7993565167, 175.2629479, "183"], +[-37.7985553333, 175.2627224167, "174"], +[-37.7978273667, 175.26351095, "157"], +[-37.7999709167, 175.26285725, "193"], +[-37.8006521833, 175.2645105167, "203"], +[-37.80126845, 175.26471225, "205B"], +[-37.7999616, 175.2622694167, "220"], +[-37.7988678667, 175.26396895, "175B"], +[-37.7922764, 175.26336975, "22"], +[-37.7961701667, 175.2636754667, "130"], +[-37.7927342333, 175.2637956167, "30"], +[-37.7984279833, 175.2633165167, "169"], +[-37.7978697, 175.2629954333, "164"], +[-37.7963223, 175.26360025, "132"], +[-37.7981522, 175.2628915833, "168"], +[-37.7969196333, 175.2638989167, "145"], +[-37.7943146333, 175.2640625833, "54"], +[-37.8010233333, 175.26219105, "228"], +[-37.7919447333, 175.2636736167, "18F"], +[-37.7926836167, 175.2641865167, "27"], +[-37.7999818167, 175.2626568667, "191"], +[-37.8017573833, 175.2624367333, "234"], +[-37.7907196333, 175.2638887667, "3"], +[-37.79548455, 175.2639409833, "116"], +[-37.7994983167, 175.2628970167, "185"], +[-37.7971307833, 175.26380135, "147"], +[-37.7952823, 175.2640527, "112"], +[-37.8004739667, 175.2625082333, "205"], +[-37.8004735, 175.2641324667, "201"], +[-37.8003562, 175.26210865, "222"], +[-37.7986360167, 175.2638471, "175A"], +[-37.79809755, 175.2639869167, "153E"], +[-37.7926069833, 175.2637672333, "28"], +[-37.7924756, 175.26375425, "26"], +[-37.8009415833, 175.2647918333, "205A"], +[-37.7982876667, 175.2628462333, "170A"], +[-37.791873, 175.2636717167, "18E"], +[-37.7966238833, 175.2639383667, "143"], +[-37.7918158167, 175.2636642833, "18D"], +[-37.7907494, 175.2634859833, "4"], +[-37.7996437333, 175.2628462, "187"], +[-37.7915563167, 175.26401305, "15"], +[-37.80203775, 175.2623622667, "236"], +[-37.7989446833, 175.3137178333, "10"], +[-37.7994371333, 175.3137674, "4"], +[-37.7996224167, 175.3140337667, "4A"], +[-37.79920825, 175.3134389, "3"], +[-37.7993525833, 175.3134435833, "1"], +[-37.7993172167, 175.3137641667, "6"], +[-37.7990304333, 175.31342675, "5"], +[-37.7988575833, 175.3133982833, "7"], +[-37.7991265167, 175.3137491833, "8"], +[-37.7719880667, 175.2668422833, "3"], +[-37.7720199167, 175.2670131, "5"], +[-37.7717289333, 175.2670568667, "6"], +[-37.7717472833, 175.2668846333, "2"], +[-37.7721537167, 175.2668676, "4"], +[-37.7216967, 175.26299815, "3"], +[-37.7216060667, 175.2637057167, "9"], +[-37.72193095, 175.2635251667, "8"], +[-37.7218277667, 175.2636791333, "10"], +[-37.7215124667, 175.2639544167, "14"], +[-37.7214683, 175.26385855, "11"], +[-37.7219406333, 175.26333665, "6"], +[-37.7216257, 175.2635477833, "7"], +[-37.7219207667, 175.2630890833, "4"], +[-37.7216865833, 175.26381005, "12"], +[-37.7217356667, 175.2633456167, "5"], +[-37.7814013667, 175.3076769833, "4"], +[-37.7815723667, 175.3076824833, "2"], +[-37.7813216167, 175.3070522333, "8"], +[-37.7811084, 175.30724635, "15"], +[-37.7811939167, 175.30704795, "10"], +[-37.7811089, 175.3074988667, "13"], +[-37.7810986833, 175.3077071, "11"], +[-37.7810953167, 175.3078717167, "9"], +[-37.7810866167, 175.3081421667, "7"], +[-37.7813779333, 175.3072736833, "6"], +[-37.78158525, 175.30802685, "1"], +[-37.7814115, 175.308025, "3"], +[-37.78125455, 175.3080270167, "5"], +[-37.7475419333, 175.2539563, "11"], +[-37.7474175667, 175.2537225667, "13"], +[-37.7472767167, 175.2542259333, "12"], +[-37.7470465, 175.25395755, "14"], +[-37.7473332833, 175.2535169333, "15"], +[-37.7471661833, 175.2539978333, "14A"], +[-37.7470796333, 175.2538447333, "16"], +[-37.74804035, 175.25465705, "5B"], +[-37.7480480667, 175.2549094667, "3"], +[-37.7479055167, 175.2543034167, "7"], +[-37.7477621833, 175.2551424667, "4"], +[-37.7477815333, 175.2544615167, "7A"], +[-37.7475213667, 175.2546963667, "8"], +[-37.7476445167, 175.2541817, "9"], +[-37.7479097167, 175.2546812167, "5A"], +[-37.7476438333, 175.2549473167, "6"], +[-37.7473994833, 175.2544618667, "10"], +[-37.7479056833, 175.2552726833, "2"], +[-37.7603444333, 175.2875714833, "1/4-4/4"], +[-37.76001665, 175.2874223667, "3"], +[-37.7601212333, 175.2877902, "19/4-27/4"], +[-37.7591855833, 175.2883137833, "17"], +[-37.7596946667, 175.28823825, "12"], +[-37.7597824167, 175.2876737667, "7"], +[-37.7590553, 175.2884430833, "19"], +[-37.75990535, 175.2875437, "5"], +[-37.76016395, 175.2872958333, "1"], +[-37.7599306167, 175.2879898167, "8"], +[-37.7598078333, 175.28811795, "10"], +[-37.7596649667, 175.2877929333, "9"], +[-37.7595438333, 175.2879166833, "11"], +[-37.7586642167, 175.2888463167, "25"], +[-37.7587946833, 175.2891805833, "24"], +[-37.7588097333, 175.2886924333, "23"], +[-37.7589382833, 175.2885652333, "21"], +[-37.7593088833, 175.2881801, "15"], +[-37.7595852, 175.2883633, "14"], +[-37.75942075, 175.2880553833, "13"], +[-37.7587034667, 175.2892409667, "26"], +[-37.75945675, 175.2884854, "16"], +[-37.79444925, 175.2235943, "530"], +[-37.7956342833, 175.2433343833, "78"], +[-37.7925724667, 175.2178586833, "584"], +[-37.7966788333, 175.2410709167, "113"], +[-37.7977081, 175.2332148333, "217"], +[-37.7949946833, 175.2431105, "84B"], +[-37.7976084, 175.2331815667, "219A"], +[-37.7960238667, 175.2443395667, "71"], +[-37.7973985833, 175.23315615, "219"], +[-37.7968032333, 175.2358763333, "180"], +[-37.7951969833, 175.2431762, "76B"], +[-37.7970526833, 175.2357801333, "182"], +[-37.7954045333, 175.2434215667, "82A"], +[-37.7970276167, 175.2355699, "184"], +[-37.79609845, 175.24330425, "83"], +[-37.7969817167, 175.2353745333, "186"], +[-37.7951869667, 175.2433445, "82B"], +[-37.7969748167, 175.2351918667, "188"], +[-37.7955013333, 175.2393701333, "134"], +[-37.7975511667, 175.23587425, "185"], +[-37.7963752167, 175.2422684667, "101"], +[-37.7967034, 175.2426871167, "97"], +[-37.79683895, 175.2404955, "119"], +[-37.7963167833, 175.2424676833, "99A"], +[-37.7964052833, 175.2425155167, "99B"], +[-37.7970288, 175.2379028833, "162"], +[-37.7950747833, 175.2454528333, "48"], +[-37.7971305833, 175.2364510333, "174"], +[-37.7947585667, 175.2467836833, "12"], +[-37.79430885, 175.22320455, "532"], +[-37.7953836333, 175.2462554167, "29"], +[-37.7956118333, 175.2040345667, "703B"], +[-37.79558845, 175.2454299333, "45"], +[-37.7947203833, 175.2469955833, "6"], +[-37.7955491333, 175.2455564667, "43"], +[-37.7955138333, 175.2456968167, "41"], +[-37.7960343333, 175.2418437333, "102"], +[-37.7954019833, 175.24618565, "31"], +[-37.7954211333, 175.246102, "33"], +[-37.7960938, 175.2416361333, "104"], +[-37.7954403167, 175.2460157167, "35"], +[-37.79545725, 175.2459292333, "37"], +[-37.7949239667, 175.24324665, "82C"], +[-37.7954834, 175.2458129667, "39"], +[-37.79759985, 175.23635415, "157"], +[-37.7969219667, 175.2401049167, "123"], +[-37.7976641, 175.2370310833, "151"], +[-37.7958095167, 175.2414173167, "106"], +[-37.797636, 175.2368094, "153"], +[-37.7950076833, 175.2456695333, "44"], +[-37.7971053833, 175.2362383667, "176"], +[-37.7958475667, 175.2400703667, "122"], +[-37.7976092167, 175.2365737333, "155"], +[-37.79663255, 175.2413040667, "111"], +[-37.7975735833, 175.2361032167, "159"], +[-37.79567855, 175.2393919833, "136"], +[-37.79478455, 175.2466948, "16"], +[-37.7947526667, 175.2468344333, "10"], +[-37.7974692333, 175.2380748833, "141"], +[-37.7929448333, 175.2147935167, "608"], +[-37.79495165, 175.24588665, "42"], +[-37.7974198333, 175.2382574167, "139"], +[-37.7969653667, 175.2349751833, "190"], +[-37.7955959667, 175.2264811, "500"], +[-37.7953034667, 175.2426387167, "90A"], +[-37.79761675, 175.2353478, "199B"], +[-37.7968699, 175.2403238167, "121"], +[-37.7967959833, 175.2311406167, "210"], +[-37.7967247333, 175.2408997333, "115"], +[-37.7946373167, 175.20737125, "679"], +[-37.7962187333, 175.2411888333, "110"], +[-37.7931360667, 175.2137464333, "614"], +[-37.7967992, 175.2314421, "204"], +[-37.7947682167, 175.2448799, "56"], +[-37.79382535, 175.2069322, "680"], +[-37.7953116167, 175.2463973167, "27"], +[-37.7958431333, 175.2272871333, "488"], +[-37.7953408833, 175.2432323, "76A"], +[-37.79597375, 175.2276742667, "484"], +[-37.7974955, 175.2354170667, "199A"], +[-37.79559445, 175.2435792167, "82"], +[-37.7974420833, 175.2341642, "207"], +[-37.7953882167, 175.2424994667, "92A"], +[-37.7977217167, 175.2333376333, "215"], +[-37.7974194333, 175.2334443333, "213"], +[-37.7975156833, 175.2356731, "195"], +[-37.7977256667, 175.2338243667, "209A"], +[-37.7963352, 175.2046114167, "703C"], +[-37.7974348167, 175.23389855, "209"], +[-37.7952502, 175.2395300833, "130"], +[-37.7976224333, 175.2338949, "209B"], +[-37.7949046, 175.2046931667, "703A"], +[-37.7946979167, 175.2471036667, "2"], +[-37.7926943833, 175.2192154333, "572"], +[-37.7957962, 175.2445443667, "67"], +[-37.7961637833, 175.2413941167, "108"], +[-37.79605145, 175.2435117, "81"], +[-37.7975236833, 175.23786435, "143"], +[-37.7973152, 175.23867235, "135"], +[-37.79765975, 175.2374713833, "147A"], +[-37.7951198333, 175.2470398, "1"], +[-37.79757365, 175.2376528, "145"], +[-37.7965406, 175.2417035, "107"], +[-37.7947022333, 175.2056696833, "699"], +[-37.79785015, 175.2372881333, "149B"], +[-37.79524055, 175.2428459333, "90D"], +[-37.7976870333, 175.2372541167, "149A"], +[-37.7965012167, 175.2398363333, "140"], +[-37.79785635, 175.2375519, "147B"], +[-37.7952083167, 175.22551105, "510"], +[-37.7954222667, 175.2395626667, "128"], +[-37.79708545, 175.2360025667, "178"], +[-37.7970239, 175.23973665, "127"], +[-37.795612, 175.2396941833, "126"], +[-37.7946841, 175.2039000833, "705"], +[-37.7952479167, 175.24480205, "66"], +[-37.7975852833, 175.23414875, "207A"], +[-37.7973678333, 175.2428393833, "95B"], +[-37.79642095, 175.2420763167, "103"], +[-37.79520325, 175.24251265, "92B"], +[-37.7965865333, 175.2415045833, "109"], +[-37.7964815, 175.24189585, "105"], +[-37.79734635, 175.243003, "95A"], +[-37.7962545833, 175.2427383333, "93"], +[-37.7958823, 175.24239925, "96"], +[-37.7958201667, 175.2425896333, "94"], +[-37.7971532167, 175.2366857, "172"], +[-37.79491595, 175.2433809833, "84"], +[-37.7964249667, 175.24020655, "120"], +[-37.7955266833, 175.2429132, "86A"], +[-37.7961563333, 175.2431207167, "85"], +[-37.7951369667, 175.2452456667, "52"], +[-37.7970387833, 175.2429015167, "95"], +[-37.7974243833, 175.2336453667, "211"], +[-37.7949908833, 175.2427603833, "90C"], +[-37.7947367, 175.2469197167, "8"], +[-37.7957084833, 175.2430727167, "86"], +[-37.79429605, 175.2126860833, "635"], +[-37.79502035, 175.2426417167, "90B"], +[-37.79745265, 175.2311870667, "461"], +[-37.7957653, 175.2428574, "88"], +[-37.79697455, 175.2399338333, "125"], +[-37.79471255, 175.2470406333, "4"], +[-37.7963711, 175.2404013167, "118"], +[-37.79550105, 175.2438847667, "74"], +[-37.7953456167, 175.2445633833, "68A"], +[-37.7970860667, 175.2376693, "164"], +[-37.7959009, 175.24415855, "73"], +[-37.7962078833, 175.2429307, "91"], +[-37.7958554, 175.2443488167, "69"], +[-37.79530255, 175.2394081, "132"], +[-37.7951436833, 175.2445704167, "68"], +[-37.79543, 175.2441019833, "72A"], +[-37.7952341333, 175.2441895, "70A"], +[-37.7947436833, 175.24499215, "54"], +[-37.7952429, 175.2439968833, "2/72"], +[-37.7969490333, 175.2347600167, "192"], +[-37.7953644667, 175.2443514167, "70"], +[-37.7956358167, 175.2399018667, "124"], +[-37.7955718333, 175.24661135, "27B"], +[-37.7944097667, 175.2278995167, "486"], +[-37.79476095, 175.2461531333, "36"], +[-37.7948063833, 175.24663305, "18"], +[-37.79685615, 175.2332430333, "202"], +[-37.7948354, 175.2464785333, "20A"], +[-37.7969437, 175.2345227333, "194"], +[-37.7947126833, 175.2461288, "38"], +[-37.7969304833, 175.2342771333, "196"], +[-37.79482315, 175.2465601833, "20"], +[-37.7951975833, 175.2450144167, "62"], +[-37.7948239333, 175.2461846667, "34"], +[-37.79736515, 175.2384589333, "137"], +[-37.7946690667, 175.246113, "40"], +[-37.79543675, 175.2464640833, "27A"], +[-37.79554915, 175.2467667167, "27F"], +[-37.7967721667, 175.2406914, "117"], +[-37.7953192167, 175.2470012, "3"], +[-37.7950907167, 175.2446555333, "66B"], +[-37.7948557167, 175.2463970667, "22"], +[-37.7948725, 175.2462995667, "24"], +[-37.7954528, 175.2467548167, "25"], +[-37.7968651833, 175.2334854, "200"], +[-37.7953389, 175.2469172833, "21"], +[-37.7939415667, 175.2195434667, "563"], +[-37.7952638833, 175.2466888667, "27C"], +[-37.797489, 175.2351507333, "203"], +[-37.7953689333, 175.246725, "27D"], +[-37.7947716667, 175.2467364167, "14"], +[-37.7257543, 175.2847337167, "1"], +[-37.7260276333, 175.28459175, "4"], +[-37.7258686833, 175.2845162667, "2"], +[-37.7260069, 175.2850165333, "5"], +[-37.7261889333, 175.2846354, "6"], +[-37.7261533667, 175.2848809833, "7"], +[-37.7262943167, 175.2847665333, "8"], +[-37.7259110667, 175.2848325333, "3"], +[-37.7215466333, 175.2709584833, "31A"], +[-37.7216902667, 175.2727314, "37"], +[-37.7223018833, 175.2709150667, "31"], +[-37.7212770667, 175.27276985, "39"], +[-37.7234412, 175.2743927167, "9"], +[-37.7220587833, 175.2725934167, "35"], +[-37.7220314167, 175.2732089333, "38"], +[-37.7225656333, 175.2725965833, "29"], +[-37.7234456833, 175.2735387667, "17"], +[-37.7214675167, 175.2731575167, "40"], +[-37.7232204667, 175.2732179, "19"], +[-37.7229068167, 175.2728158333, "27"], +[-37.80094435, 175.2369732667, "5"], +[-37.80109125, 175.2350647, "23"], +[-37.8007790833, 175.2361907333, "10"], +[-37.8011353333, 175.2371789667, "3"], +[-37.8010326667, 175.2367686833, "7"], +[-37.8007452833, 175.2364093833, "8"], +[-37.80098495, 175.2344535167, "29"], +[-37.8008000667, 175.23557645, "16"], +[-37.8008230833, 175.2357886667, "14"], +[-37.8011908667, 175.23568485, "17"], +[-37.8007690167, 175.2353791667, "18"], +[-37.8008516, 175.2371627833, "1"], +[-37.8009660167, 175.2342743, "31"], +[-37.8009676333, 175.2339791, "33"], +[-37.800818, 175.2341723667, "35"], +[-37.80114455, 175.2363326167, "11"], +[-37.80110845, 175.23655405, "9"], +[-37.8010516167, 175.2348614833, "25"], +[-37.8005651333, 175.2343726333, "28"], +[-37.8008104667, 175.2359963667, "12"], +[-37.8011226833, 175.2352675, "21"], +[-37.8011731833, 175.2361160333, "13"], +[-37.8005534333, 175.2345761, "26"], +[-37.8011907167, 175.23588665, "15"], +[-37.8006824167, 175.2342142, "30"], +[-37.8010164667, 175.2346705833, "27"], +[-37.8011619833, 175.2354615, "19"], +[-37.7338509667, 175.2576973333, "12"], +[-37.7323438, 175.2560824333, "41"], +[-37.7324622167, 175.25683055, "26"], +[-37.7343522167, 175.2572432167, "15"], +[-37.7318701667, 175.2558108833, "34"], +[-37.7327079667, 175.2558419167, "39"], +[-37.73476855, 175.2573168, "9"], +[-37.73231045, 175.2567072, "28"], +[-37.73543315, 175.25756545, "3"], +[-37.7321961667, 175.2565556167, "30"], +[-37.7328085, 175.2559929833, "37"], +[-37.7330126333, 175.256649, "29"], +[-37.7355604, 175.25741635, "1"], +[-37.7328656167, 175.25654175, "31"], +[-37.7351003167, 175.2575190667, "5"], +[-37.7332114667, 175.25682815, "27"], +[-37.7331216333, 175.2572296, "22"], +[-37.73250755, 175.2563388833, "35"], +[-37.73353005, 175.2570715667, "23"], +[-37.7322719667, 175.25588005, "43"], +[-37.73373465, 175.2577021167, "14"], +[-37.7345185167, 175.2576815833, "8"], +[-37.7325943333, 175.2568896167, "24"], +[-37.7356791833, 175.2578827833, "4"], +[-37.7342060333, 175.2572380667, "17"], +[-37.7319581167, 175.2559851667, "32"], +[-37.73489265, 175.25790145, "6"], +[-37.7335593667, 175.25758505, "16"], +[-37.7343994167, 175.25765965, "10"], +[-37.7333607333, 175.2569453833, "25"], +[-37.7326792333, 175.2564594, "33"], +[-37.7337657, 175.2572243833, "21"], +[-37.7339573167, 175.2572474, "19"], +[-37.7334044667, 175.2574434, "18"], +[-37.7345296667, 175.2569441333, "13"], +[-37.7332581667, 175.25732265, "20"], +[-37.7345990333, 175.2572681167, "11"], +[-37.7349448667, 175.2574104333, "7"], +[-37.77377215, 175.2954698, "218B"], +[-37.7680590167, 175.2908640167, "338"], +[-37.7792906167, 175.2983503167, "149"], +[-37.7628256667, 175.28868305, "413"], +[-37.7785080667, 175.2980166333, "159B"], +[-37.76285745, 175.2896257333, "414"], +[-37.7632348, 175.2894775, "410A"], +[-37.7742959833, 175.29491605, "211"], +[-37.7739055667, 175.2958416167, "214B"], +[-37.7741947667, 175.2947609, "215"], +[-37.7699550833, 175.2910001833, "293A"], +[-37.77145745, 175.2925883167, "280"], +[-37.7670605333, 175.29047255, "350"], +[-37.7713236, 175.2924525833, "284"], +[-37.7635076333, 175.28911385, "405"], +[-37.7701193, 175.2914349167, "287"], +[-37.7888871833, 175.2989551167, "20"], +[-37.76521945, 175.28999285, "382A"], +[-37.7685859167, 175.29112505, "332"], +[-37.7749996667, 175.2962675333, "203B"], +[-37.77055685, 175.2921474833, "296"], +[-37.7748811333, 175.2959169667, "205"], +[-37.77381985, 175.2955358833, "216A"], +[-37.7747708667, 175.2957002667, "207"], +[-37.7799590667, 175.2983008, "143A"], +[-37.7749355667, 175.2961328333, "203A"], +[-37.78595605, 175.2986475667, "56"], +[-37.78231605, 175.2984304167, "98"], +[-37.76761735, 175.2901786667, "347B"], +[-37.78853285, 175.2992268, "26"], +[-37.7834182833, 175.2995446667, "80"], +[-37.7897233667, 175.2991545833, "3"], +[-37.7698452167, 175.290959, "295A"], +[-37.7854016667, 175.2985369, "60"], +[-37.7698995833, 175.2912892, "293"], +[-37.7851788667, 175.29882225, "62A"], +[-37.7891446, 175.2986711333, "11"], +[-37.7852453667, 175.2985132833, "62"], +[-37.7857791667, 175.2985693667, "58"], +[-37.7690172333, 175.2919826333, "320A"], +[-37.7869949167, 175.29885055, "44-48"], +[-37.7629315667, 175.2884987, "413C"], +[-37.7755417833, 175.2976095667, "191"], +[-37.7626491667, 175.2883947, "415"], +[-37.7888382333, 175.2981158667, "15A"], +[-37.7721417333, 175.2932034667, "264"], +[-37.7721580667, 175.2926743667, "249"], +[-37.7714270167, 175.29199985, "267"], +[-37.7711703333, 175.29189665, "271"], +[-37.7697053333, 175.2912706, "295"], +[-37.7886188667, 175.2989443167, "24"], +[-37.7695506833, 175.2911406667, "299A"], +[-37.7891770167, 175.2992470667, "16A"], +[-37.7695955167, 175.2909082667, "299B"], +[-37.7630362333, 175.2894475833, "412"], +[-37.7694277333, 175.2910893, "301"], +[-37.76901335, 175.2913412, "328"], +[-37.7669228833, 175.2904397333, "352"], +[-37.7739981, 175.2956925833, "214A"], +[-37.7671271667, 175.2900332167, "353"], +[-37.7631625833, 175.28900505, "409"], +[-37.7667804833, 175.2904135, "354"], +[-37.7733347833, 175.2946061833, "230"], +[-37.7668801, 175.2899831333, "355"], +[-37.7892421333, 175.2987708167, "9A"], +[-37.7666371, 175.2903804333, "356"], +[-37.76884375, 175.2912473, "330"], +[-37.7666603667, 175.2899216167, "359"], +[-37.7794598167, 175.2983550167, "147"], +[-37.76646535, 175.2903412, "360"], +[-37.7703887, 175.29118975, "283A"], +[-37.7658836167, 175.2905252, "364A"], +[-37.76378115, 175.2889765833, "403A"], +[-37.7660655667, 175.29023215, "364"], +[-37.7707133, 175.2921605, "294"], +[-37.7657859, 175.2907248333, "368"], +[-37.7653818833, 175.2907408667, "380A"], +[-37.77324835, 175.2945209333, "232A"], +[-37.7731105167, 175.29367955, "241"], +[-37.7730481167, 175.29428385, "234"], +[-37.7659375667, 175.2897615167, "369"], +[-37.7751242833, 175.2974821667, "200"], +[-37.76306055, 175.2899564333, "410C"], +[-37.77508775, 175.2964624667, "201"], +[-37.7738074833, 175.2949644167, "224B"], +[-37.77528485, 175.2965707167, "199A"], +[-37.7766082, 175.2989938167, "180"], +[-37.7751616333, 175.2967391833, "199"], +[-37.7712960833, 175.2919700833, "269"], +[-37.7831041833, 175.2983336833, "88A"], +[-37.7737501333, 175.2943112167, "225"], +[-37.7830042833, 175.2983178167, "90"], +[-37.76298705, 175.2888838, "411"], +[-37.7836621167, 175.2983238167, "84B"], +[-37.7737125833, 175.2948750833, "224A"], +[-37.78340715, 175.29830985, "84"], +[-37.7753016333, 175.2970388333, "197"], +[-37.78369835, 175.29789385, "93"], +[-37.78878415, 175.2984864833, "15"], +[-37.7894844667, 175.2995328333, "10"], +[-37.7676804833, 175.2898998167, "347A"], +[-37.7832426333, 175.2983209833, "88"], +[-37.779711, 175.2987172667, "146"], +[-37.7676243833, 175.2909525333, "342A"], +[-37.7732973833, 175.29386115, "233"], +[-37.7682084167, 175.2909373167, "336"], +[-37.78176985, 175.2985195667, "104A"], +[-37.76801185, 175.2912227333, "338A"], +[-37.7625156833, 175.2888658333, "424"], +[-37.7680813, 175.2904716167, "341"], +[-37.766484, 175.2899227167, "361"], +[-37.7679154333, 175.2907931667, "340"], +[-37.7896922167, 175.2996541833, "2"], +[-37.7685086333, 175.2906229167, "335"], +[-37.7674634, 175.2901236667, "349"], +[-37.7741469667, 175.2945252667, "219C"], +[-37.7724466833, 175.292507, "245B"], +[-37.7810783833, 175.29857515, "112"], +[-37.7829166, 175.29835975, "92A"], +[-37.7740846333, 175.29459675, "219B"], +[-37.7731195833, 175.29455145, "232"], +[-37.7809900667, 175.2985937833, "112A"], +[-37.7721642, 175.2920945333, "257"], +[-37.7812396333, 175.2985589333, "110B"], +[-37.78981845, 175.2997689167, "6"], +[-37.7811658167, 175.2985707333, "110A"], +[-37.7688064167, 175.2907574, "331"], +[-37.7816513833, 175.2985227833, "106"], +[-37.7860108333, 175.2989536667, "54B"], +[-37.7814311833, 175.29854395, "108"], +[-37.7689702833, 175.2917742833, "326"], +[-37.7813182833, 175.29855445, "108A"], +[-37.7715910167, 175.29271215, "274"], +[-37.7740215333, 175.294705, "219A"], +[-37.77152825, 175.2920442, "265A"], +[-37.7785348833, 175.2984164, "159"], +[-37.7834581167, 175.2990968667, "82"], +[-37.7817493833, 175.2980768333, "123"], +[-37.7827326333, 175.2983830167, "94"], +[-37.7807917833, 175.2986081833, "114A"], +[-37.76624135, 175.2902794, "362C"], +[-37.7808832833, 175.2985902333, "114"], +[-37.7825571, 175.2984038167, "96A"], +[-37.7818584833, 175.2980826167, "121"], +[-37.77103275, 175.2918406667, "273"], +[-37.7806917167, 175.29860475, "116"], +[-37.7633176167, 175.2890632333, "407"], +[-37.7786799833, 175.2984005167, "157"], +[-37.7777006333, 175.2990249333, "164-166"], +[-37.7791172167, 175.2980407667, "151B"], +[-37.7824663167, 175.2984088167, "96"], +[-37.7813697833, 175.2981183167, "127"], +[-37.7738202, 175.2944728, "223A"], +[-37.7815865167, 175.2980877833, "125"], +[-37.7634604667, 175.2889121333, "405A"], +[-37.7788162, 175.2983861, "155"], +[-37.7651123, 175.2906568333, "380"], +[-37.7791339167, 175.2983598, "151"], +[-37.77391635, 175.2943199, "223C"], +[-37.7789763667, 175.2983726833, "153"], +[-37.7876299667, 175.2987909333, "38"], +[-37.7791167167, 175.2988653333, "152"], +[-37.7772428833, 175.29870295, "171"], +[-37.7740728833, 175.294345, "221D"], +[-37.7717080333, 175.2928255833, "272"], +[-37.7762300167, 175.2987277333, "184"], +[-37.7656455, 175.2901076333, "372"], +[-37.7783651, 175.29800015, "161B"], +[-37.7823860167, 175.29841415, "98A"], +[-37.7783486167, 175.29895795, "160"], +[-37.7735301167, 175.2940713, "229"], +[-37.7761274167, 175.2982356, "183"], +[-37.7707891167, 175.2926270833, "290"], +[-37.7783581833, 175.2984367167, "161"], +[-37.7860864667, 175.2986382, "54A"], +[-37.7764207667, 175.2988286833, "182"], +[-37.77660565, 175.2985157667, "179"], +[-37.7762905, 175.2983560667, "181"], +[-37.7821035833, 175.2984537167, "100A"], +[-37.7740300167, 175.2944171333, "221C"], +[-37.7659134833, 175.29073405, "366"], +[-37.7740675833, 175.2952562167, "220A"], +[-37.77649555, 175.2984376833, "179A"], +[-37.7760512167, 175.2985992, "186"], +[-37.7640112333, 175.2892401, "399"], +[-37.7759698333, 175.29809935, "185"], +[-37.7704309833, 175.2915826333, "283"], +[-37.7739749667, 175.2944888667, "221B"], +[-37.77548095, 175.2974517833, "193"], +[-37.77404705, 175.2954524333, "220B"], +[-37.7756985167, 175.29792225, "189"], +[-37.7738097333, 175.29521555, "222B"], +[-37.7739716, 175.2942374667, "223D"], +[-37.7739354833, 175.2951164333, "222A"], +[-37.7647548667, 175.2891599667, "391A"], +[-37.7643128, 175.2893148167, "395"], +[-37.7658201, 175.2901587, "370"], +[-37.7692675, 175.2914660167, "318"], +[-37.7771029, 175.2991266333, "174"], +[-37.7730293667, 175.2944470833, "234B"], +[-37.7844909, 175.2984083333, "72"], +[-37.77432465, 175.294652, "213"], +[-37.7755558833, 175.2983123833, "192"], +[-37.77419195, 175.2944685167, "219D"], +[-37.77582545, 175.2979922833, "187"], +[-37.7694369, 175.29154785, "316"], +[-37.7638337, 175.2891859333, "401"], +[-37.7727342167, 175.2939532, "242"], +[-37.78933125, 175.29844945, "9C"], +[-37.7728037333, 175.2940273167, "240"], +[-37.7724253, 175.2929801333, "243"], +[-37.7728796, 175.2941106667, "238"], +[-37.7679011667, 175.28995775, "345A"], +[-37.76958785, 175.29162415, "314"], +[-37.7888299333, 175.2993247333, "20A"], +[-37.7724978333, 175.2923161333, "245A"], +[-37.7678057833, 175.2911805667, "340A"], +[-37.7696100167, 175.2921151833, "312"], +[-37.7676043333, 175.2906081167, "344"], +[-37.77021475, 175.2919060167, "302"], +[-37.78906255, 175.2982324, "13A"], +[-37.7643371667, 175.28975375, "394"], +[-37.77412235, 175.2955025, "212B"], +[-37.7661974, 175.2906417833, "362B"], +[-37.7824919167, 175.29798215, "111"], +[-37.7677600667, 175.2906947667, "342"], +[-37.78894565, 175.29850605, "13"], +[-37.7683634667, 175.29101195, "334"], +[-37.7671302333, 175.2897485, "353B"], +[-37.76624535, 175.2904740333, "362A"], +[-37.7719840667, 175.2930834333, "268"], +[-37.7677814333, 175.29032295, "345"], +[-37.7731876667, 175.2937631167, "235"], +[-37.7683703, 175.2902622167, "337B"], +[-37.78202835, 175.2984689333, "102"], +[-37.7683258333, 175.2905224667, "337A"], +[-37.76289465, 175.2884588833, "413B"], +[-37.76447185, 175.2893558833, "393"], +[-37.7703839833, 175.2920497333, "300"], +[-37.7652247667, 175.2906870833, "378"], +[-37.78618555, 175.2981755667, "49"], +[-37.7654969667, 175.2900691167, "374"], +[-37.7739292833, 175.2945793, "221A"], +[-37.7646209667, 175.29022805, "388"], +[-37.7771313333, 175.2987105167, "173"], +[-37.7645414167, 175.2898137, "392"], +[-37.7689156667, 175.29082935, "329"], +[-37.7651891667, 175.2902184167, "382"], +[-37.7651765667, 175.2909126833, "378A"], +[-37.7646722833, 175.2893930333, "391"], +[-37.7722628, 175.2933897, "260"], +[-37.7650031167, 175.28993875, "384"], +[-37.7665600667, 175.29061995, "356A"], +[-37.7623758667, 175.28866795, "426"], +[-37.7822067333, 175.2984453167, "100"], +[-37.7641490667, 175.2890737667, "397B"], +[-37.7736942833, 175.2956162167, "218A"], +[-37.7729692333, 175.2942124833, "236"], +[-37.78844245, 175.2984514, "19"], +[-37.7641605667, 175.2892792833, "397A"], +[-37.7733998167, 175.2939607333, "231"], +[-37.7641041, 175.28968475, "396"], +[-37.7818545, 175.29851525, "104"], +[-37.7888906667, 175.2993704333, "18A"], +[-37.7895821, 175.2995563833, "4"], +[-37.7705198667, 175.2912359833, "283B"], +[-37.7890366833, 175.2990866, "18"], +[-37.789144, 175.2983431833, "11B"], +[-37.7631032, 175.2897259, "410B"], +[-37.7736280333, 175.2941908833, "227"], +[-37.789382, 175.2985088167, "9D"], +[-37.7738681333, 175.29440345, "223B"], +[-37.77393395, 175.2956272333, "216B"], +[-37.7828384167, 175.29836785, "92"], +[-37.7742328167, 175.29543005, "212A"], +[-37.7891375333, 175.2994654667, "16B"], +[-37.7826648167, 175.2983967333, "94A"], +[-37.7686696333, 175.2906964833, "333"], +[-37.7819510333, 175.2984828833, "102A"], +[-37.7720069333, 175.2925231333, "255"], +[-37.78155535, 175.2985338333, "106A"], +[-37.7796276167, 175.2983095167, "145"], +[-37.7798809333, 175.29869605, "144"], +[-37.7884784667, 175.2989010833, "28"], +[-37.7705997167, 175.2924423667, "294B"], +[-37.7892715667, 175.2986429333, "9B"], +[-37.78749865, 175.2989349333, "38A"], +[-37.7886000667, 175.2984661167, "17"], +[-37.7715685833, 175.29184235, "265B"], +[-37.7829052333, 175.2979691333, "1/93-8/93"], +[-37.7756214167, 175.2977936333, "189A"], +[-37.7633739667, 175.2895163, "408"], +[-37.7646927833, 175.2891813667, "391B"], +[-37.7698413, 175.2917320167, "1/310-20/310"], +[-37.786036, 175.2981618667, "51"], +[-37.7883352, 175.29888965, "30"], +[-37.7700629, 175.2918492, "1/304-8/304"], +[-37.77538565, 175.2972629167, "195"], +[-37.7894507167, 175.2988945667, "7"], +[-37.78959485, 175.2990448333, "5"], +[-37.7636969, 175.2891528667, "403"], +[-37.7731226333, 175.2943635667, "234A"], +[-37.7648067333, 175.2898844167, "386"], +[-37.78814915, 175.2988797667, "32"], +[-37.7709066833, 175.2922503, "292"], +[-37.7675228667, 175.2898301667, "349A"], +[-37.7886891333, 175.2989485167, "22"], +[-37.7680640333, 175.2901158333, "341A"], +[-37.767312, 175.2900849833, "351"], +[-37.7804851, 175.29861685, "118"], +[-37.7798073167, 175.2983030833, "143"], +[-37.7805865667, 175.2982080667, "135"], +[-37.7673635333, 175.2897960833, "351B"], +[-37.7691476833, 175.2918062333, "320"], +[-37.77090015, 175.2917741167, "275"], +[-37.7655543167, 175.2896153833, "371"], +[-37.7501416667, 175.2523766833, "26"], +[-37.7506206, 175.2526412333, "25"], +[-37.75078905, 175.25169025, "35"], +[-37.7504739833, 175.2523706667, "27"], +[-37.7524031167, 175.2514483667, "46"], +[-37.7513508167, 175.2542677, "5"], +[-37.7523709167, 175.25236715, "59"], +[-37.75073195, 175.2528946167, "19"], +[-37.7526566333, 175.25345175, "77"], +[-37.7522179, 175.2517113833, "55"], +[-37.7524707667, 175.2531966, "71"], +[-37.7499953, 175.2524970167, "24"], +[-37.7529522333, 175.2532799833, "70"], +[-37.7526289, 175.2527178833, "60"], +[-37.7525667333, 175.2533412667, "73"], +[-37.7520261, 175.2525257833, "63"], +[-37.7524403667, 175.2536909833, "75"], +[-37.75059865, 175.2519870167, "31"], +[-37.7527818, 175.2535969, "79"], +[-37.7506790667, 175.2513638333, "38"], +[-37.7505724333, 175.25151905, "36"], +[-37.7511639833, 175.2513798, "39"], +[-37.7511387667, 175.2538910667, "11"], +[-37.7506782333, 175.2536158833, "14"], +[-37.7523985, 175.25299335, "69"], +[-37.75056945, 175.25408495, "10"], +[-37.7506917, 175.2518370833, "33"], +[-37.7523214833, 175.2512675333, "44"], +[-37.7503019667, 175.2526567167, "22"], +[-37.7507735167, 175.2538091167, "12"], +[-37.7513680667, 175.2544852833, "3"], +[-37.7503220833, 175.2518958333, "32"], +[-37.7509637333, 175.2514978167, "37"], +[-37.7508077333, 175.25123005, "40"], +[-37.75132015, 175.2513254167, "41"], +[-37.7528035667, 175.25318765, "68"], +[-37.7520010167, 175.25133045, "47"], +[-37.7516822, 175.2512068667, "45"], +[-37.7514899167, 175.2512658, "43"], +[-37.7508727333, 175.25255155, "23"], +[-37.7502004, 175.2522511, "28"], +[-37.75259735, 175.25195245, "52"], +[-37.7514246, 175.2538299167, "9"], +[-37.7522167333, 175.2511227667, "42"], +[-37.7524780833, 175.2516409333, "48"], +[-37.7528293, 175.2520359, "54"], +[-37.7526200333, 175.2521598333, "56"], +[-37.7504748833, 175.2516743667, "34"], +[-37.7526275333, 175.25245165, "58"], +[-37.7525421167, 175.2517982667, "50"], +[-37.7508678333, 175.2540459, "8"], +[-37.7520976167, 175.2514411167, "49"], +[-37.7502305833, 175.2520798, "30"], +[-37.7509675333, 175.2542496833, "6"], +[-37.7520267333, 175.2523815333, "61"], +[-37.7505957, 175.2534284167, "16"], +[-37.7523711333, 175.2527942167, "67"], +[-37.7512730167, 175.2540856, "7"], +[-37.75196075, 175.25187, "53"], +[-37.7529938833, 175.25279805, "66"], +[-37.7508053, 175.2531087167, "17"], +[-37.75293095, 175.25270645, "64"], +[-37.7523623833, 175.2521204667, "57"], +[-37.7526479833, 175.2528854833, "62"], +[-37.75237015, 175.2526277167, "65"], +[-37.7504617333, 175.2522032667, "29"], +[-37.7509177833, 175.2526671, "21"], +[-37.7519117667, 175.25174105, "51"], +[-37.7300258333, 175.2652008667, "10"], +[-37.73025915, 175.2648713667, "4"], +[-37.7293514333, 175.2646085167, "11"], +[-37.7301498667, 175.2651790333, "8"], +[-37.7294812, 175.26463875, "9"], +[-37.72986525, 175.2651937833, "12"], +[-37.7294772833, 175.2650405333, "16"], +[-37.7302278333, 175.2650605, "6"], +[-37.7296652667, 175.2647302333, "7"], +[-37.7293234833, 175.2649619833, "18"], +[-37.72965705, 175.2651024833, "14"], +[-37.7293817167, 175.26479965, "20"], +[-37.7299711667, 175.26485355, "5"], +[-37.7300171, 175.26462165, "3"], +[-37.7300347333, 175.2644320333, "1"], +[-37.7529037333, 175.2513736333, "11"], +[-37.7528290833, 175.2512234667, "9"], +[-37.75319565, 175.2513521167, "4"], +[-37.7530138, 175.2510924833, "5"], +[-37.75328095, 175.2511623833, "2"], +[-37.7531718833, 175.2516073833, "6"], +[-37.7531045, 175.2509427167, "3"], +[-37.7527251667, 175.2509307167, "7"], +[-37.7529562833, 175.2515354333, "10"], +[-37.7530490667, 175.2516692833, "8"], +[-37.7318542333, 175.2790878833, "16"], +[-37.7315162667, 175.2789862667, "8"], +[-37.7318095833, 175.2795066333, "11"], +[-37.73133095, 175.2793631167, "4"], +[-37.7318086333, 175.2798550333, "7"], +[-37.7314737667, 175.2793013667, "6"], +[-37.7317898, 175.2796442833, "9"], +[-37.7311695667, 175.279403, "2"], +[-37.7318026333, 175.2793335167, "13"], +[-37.7318150667, 175.2789403, "14"], +[-37.7311906333, 175.27970955, "1"], +[-37.7317313, 175.2790066833, "12"], +[-37.73144355, 175.2796354833, "3"], +[-37.73171825, 175.279227, "10"], +[-37.7316483667, 175.2797406667, "5"], +[-37.7404336167, 175.2824901, "2"], +[-37.74040685, 175.2821540833, "5"], +[-37.7403109667, 175.2824966667, "4"], +[-37.7401584167, 175.28211395, "8"], +[-37.7405828167, 175.2820216, "3"], +[-37.7405688167, 175.2822871167, "1"], +[-37.7402510833, 175.2823297833, "6"], +[-37.78602585, 175.2858492, "2/5A"], +[-37.7849631167, 175.28532285, "1/27-3/27"], +[-37.7846717667, 175.2849325167, "1/33-5/33"], +[-37.7847100833, 175.28557965, "22"], +[-37.78608075, 175.2857895667, "1/5A"], +[-37.7858365167, 175.2864318167, "3A"], +[-37.7859713833, 175.2859334333, "3/5A"], +[-37.7860332333, 175.28611705, "3"], +[-37.7848405667, 175.2864180667, "16A"], +[-37.7856892833, 175.2862340333, "1/7-8/7"], +[-37.7849675667, 175.28499075, "29D"], +[-37.78517985, 175.2855742167, "1/23-6/23"], +[-37.7852965833, 175.2863771667, "12"], +[-37.78528245, 175.2850378833, "27B"], +[-37.78539695, 175.2865183333, "10A-10C"], +[-37.7856823, 175.2869133667, "4"], +[-37.7852573833, 175.2850664833, "27"], +[-37.7853482, 175.2857811, "1/17-8/17"], +[-37.7849922667, 175.2859880833, "18"], +[-37.7850210333, 175.2849268333, "29E"], +[-37.7845507, 175.285414, "24"], +[-37.78558605, 175.2861061167, "9"], +[-37.7857626, 175.2870004667, "2"], +[-37.7854864667, 175.2866501667, "8A"], +[-37.7851878167, 175.2862539667, "1/14-6/14"], +[-37.7857995667, 175.2851505667, "21"], +[-37.7855850833, 175.2867888833, "1/6-8/6"], +[-37.7856250833, 175.2854859667, "21B"], +[-37.78513385, 175.2865392167, "12A"], +[-37.7849441667, 175.28462115, "1/31-4/31"], +[-37.7850873167, 175.2861196333, "16"], +[-37.7853475167, 175.2867156333, "8"], +[-37.7848859167, 175.2850916333, "29B"], +[-37.7858524333, 175.2870960333, "2A"], +[-37.7850752, 175.2854616, "25A-25D"], +[-37.7848474833, 175.28514065, "29A"], +[-37.78443165, 175.2852690333, "24A"], +[-37.7857083167, 175.2856896667, "13"], +[-37.7855022167, 175.2853042333, "21A"], +[-37.7850759833, 175.2847845167, "31"], +[-37.7854361333, 175.28591085, "15A-15C"], +[-37.78488955, 175.2858310333, "20"], +[-37.7849056, 175.2863096, "16B"], +[-37.7857741, 175.2857699167, "11"], +[-37.7849261833, 175.2850421833, "29C"], +[-37.78819825, 175.2395510667, "16"], +[-37.7888099833, 175.2399492667, "8"], +[-37.7892875833, 175.2401065667, "2"], +[-37.7890646333, 175.2397199667, "3"], +[-37.7886659167, 175.2398751833, "10"], +[-37.78845725, 175.2397883333, "12"], +[-37.7883569333, 175.2394529333, "11"], +[-37.7883783167, 175.2396379333, "14"], +[-37.7889748, 175.2399873333, "6"], +[-37.7887393833, 175.2395501167, "7"], +[-37.78925625, 175.2397889833, "1"], +[-37.7885097, 175.2394786667, "9"], +[-37.7882267833, 175.23943695, "13"], +[-37.7888756833, 175.239646, "5"], +[-37.7891150833, 175.2400412833, "4"], +[-37.79460425, 175.3193166167, "21"], +[-37.7946162667, 175.3196481167, "8"], +[-37.7945725167, 175.3188694667, "17"], +[-37.7951602833, 175.3195371833, "5"], +[-37.7934932, 175.3197942833, "20"], +[-37.7952362167, 175.31969175, "3"], +[-37.7946596, 175.3188006833, "15"], +[-37.7944476, 175.3196929667, "10"], +[-37.7937463167, 175.3196315, "31"], +[-37.7950070833, 175.3198580667, "4"], +[-37.7947398833, 175.3192712, "19"], +[-37.7949112, 175.31966945, "6"], +[-37.7947839667, 175.3200642167, "2"], +[-37.79507185, 175.3193796667, "7"], +[-37.7944432167, 175.3193589333, "23"], +[-37.7943013, 175.31972255, "12"], +[-37.7942825667, 175.3193993, "25"], +[-37.7937763667, 175.3197699667, "18"], +[-37.7949887, 175.31928275, "9"], +[-37.79418025, 175.31978825, "14"], +[-37.7939819, 175.31954975, "29"], +[-37.7940400167, 175.3197772167, "16"], +[-37.79533015, 175.3198316333, "1"], +[-37.7947718333, 175.3189615833, "13"], +[-37.7940782833, 175.3194347667, "27"], +[-37.7948733667, 175.3191145167, "11"], +[-37.7418004667, 175.2861573333, "5"], +[-37.7421029667, 175.2862365333, "6"], +[-37.7417956833, 175.2863859167, "7"], +[-37.74234805, 175.2868351, "12"], +[-37.74183115, 175.2857008667, "1"], +[-37.7422798, 175.2866679833, "10"], +[-37.7418140333, 175.2859130833, "3"], +[-37.7421333, 175.28599815, "4"], +[-37.7421334333, 175.2857907, "2"], +[-37.7421272833, 175.2864873667, "8"], +[-37.74230675, 175.2869933333, "14"], +[-37.78977215, 175.262615, "19"], +[-37.7898575167, 175.2627006167, "15"], +[-37.7890888, 175.2620768667, "37"], +[-37.7899207833, 175.2627958, "13"], +[-37.7899765, 175.2629006833, "11"], +[-37.7891534, 175.2621607333, "33"], +[-37.7888308333, 175.2617636667, "45"], +[-37.7889818, 175.2619775667, "41"], +[-37.7902919, 175.2632683167, "1-3"], +[-37.7895308833, 175.26250825, "25"], +[-37.76294155, 175.28095495, "14A"], +[-37.7633144667, 175.2810624333, "10"], +[-37.7632021833, 175.2805633167, "13"], +[-37.7638062667, 175.2808531833, "5"], +[-37.7631252833, 175.2810203, "12"], +[-37.76382675, 175.28133255, "4"], +[-37.7633334833, 175.2806236, "11"], +[-37.7636370333, 175.281264, "6"], +[-37.7627859, 175.2808879333, "16"], +[-37.7639489167, 175.28094445, "3"], +[-37.7630317167, 175.2805192833, "15"], +[-37.7636556167, 175.2807682833, "7"], +[-37.7629106, 175.28115395, "14B"], +[-37.7635095, 175.28068925, "9"], +[-37.7628760667, 175.2804576833, "17"], +[-37.7850561667, 175.2263217333, "11"], +[-37.7853200167, 175.2271570833, "10"], +[-37.7853026167, 175.2268181, "12"], +[-37.7849824667, 175.22649625, "13"], +[-37.7857669167, 175.2266366167, "3"], +[-37.7858501, 175.2270277833, "4"], +[-37.7850820167, 175.2267032333, "14"], +[-37.7855091333, 175.2269821167, "8"], +[-37.7859370667, 175.2266728333, "1"], +[-37.7853801833, 175.2264434667, "7"], +[-37.7855664333, 175.2265878667, "5"], +[-37.7852496, 175.2262624333, "9"], +[-37.7856766167, 175.2270068333, "6"], +[-37.8187026833, 175.3004117333, "25"], +[-37.8175688833, 175.30122555, "2"], +[-37.8183862833, 175.3002285833, "24"], +[-37.8173684333, 175.3009538333, "2A"], +[-37.8184731333, 175.3011232333, "17A"], +[-37.8182013833, 175.301468, "11"], +[-37.81861775, 175.2999410833, "28A"], +[-37.8182752333, 175.3009586333, "15"], +[-37.8187508, 175.3007925333, "23A"], +[-37.8183960667, 175.2999673, "26B"], +[-37.8177686333, 175.3004860667, "12"], +[-37.81850555, 175.30009055, "26A"], +[-37.8186012, 175.3009587, "17B"], +[-37.81784635, 175.3014691333, "7"], +[-37.8181288333, 175.3011245, "13"], +[-37.8189648833, 175.3000855833, "29"], +[-37.8179277667, 175.300291, "16B"], +[-37.8184870667, 175.2997632333, "28B"], +[-37.8180036167, 175.3006871, "14"], +[-37.8185501167, 175.3005952, "21"], +[-37.8183107167, 175.3013177333, "11B"], +[-37.8180632167, 175.30009755, "20"], +[-37.8181226, 175.3005264, "16A"], +[-37.8175436333, 175.3017990833, "1"], +[-37.8188429667, 175.3002563, "27"], +[-37.8184265167, 175.3007715667, "19"], +[-37.8188962333, 175.3006138333, "23B"], +[-37.8174793667, 175.3008570833, "4A"], +[-37.8182462833, 175.3003950833, "18"], +[-37.8192367667, 175.2997307333, "35"], +[-37.8181509833, 175.2999875667, "22"], +[-37.8184870333, 175.2995380833, "30"], +[-37.8177115, 175.3005531, "10"], +[-37.8188096667, 175.2995217333, "34"], +[-37.81911475, 175.2999213, "31"], +[-37.8193957833, 175.2999049667, "33"], +[-37.8187441167, 175.2997400667, "32"], +[-37.8191293167, 175.2995487333, "44"], +[-37.8186860167, 175.2992599333, "36"], +[-37.8190316667, 175.2994104167, "42"], +[-37.8187496833, 175.2991705167, "38"], +[-37.8188634333, 175.2992511667, "40"], +[-37.8176897833, 175.3016481667, "3"], +[-37.8179065, 175.3018108, "5A"], +[-37.8173905833, 175.3007546667, "4B"], +[-37.8179826167, 175.30130595, "9"], +[-37.81796045, 175.3017378833, "5B"], +[-37.81785045, 175.3008539667, "8"], +[-37.8177155167, 175.3010166667, "6"], +[-37.7854115, 175.2881358833, "1"], +[-37.7850759833, 175.2884190333, "5"], +[-37.785086, 175.2881105333, "3A"], +[-37.7856883167, 175.2883097333, "4"], +[-37.7853821667, 175.288224, "3"], +[-37.7847913667, 175.28838825, "5A"], +[-37.78554335, 175.2883799, "9"], +[-37.7854053167, 175.2887344167, "9A"], +[-37.7855445167, 175.2887889333, "8"], +[-37.78488935, 175.28815195, "5B"], +[-37.7853182833, 175.2884445333, "7"], +[-37.7878342167, 175.3331881, "2"], +[-37.7877581667, 175.3321343333, "7"], +[-37.7873631667, 175.3314686333, "15"], +[-37.78786335, 175.3323114, "5"], +[-37.7874720833, 175.3316479, "13"], +[-37.7868044667, 175.33179815, "14"], +[-37.7870599833, 175.3317235, "12"], +[-37.78755835, 175.3317977833, "11"], +[-37.7879825167, 175.3326459833, "1"], +[-37.7876491667, 175.3327531, "6"], +[-37.7878427333, 175.3335796333, "2A"], +[-37.78772435, 175.3329756167, "4"], +[-37.7879241167, 175.33247465, "3"], +[-37.7876585833, 175.3319715667, "9"], +[-37.7867187833, 175.3313273167, "20"], +[-37.7867533, 175.3317493833, "16"], +[-37.7868535333, 175.3315562667, "18"], +[-37.7872314, 175.3313347333, "17"], +[-37.77499745, 175.3010687833, "17"], +[-37.7751545833, 175.3000084667, "9A"], +[-37.7747934, 175.3018530333, "23"], +[-37.7753499333, 175.3010852667, "18"], +[-37.7747586333, 175.3020438667, "25"], +[-37.7753875833, 175.3009199833, "16"], +[-37.7747628167, 175.3024170667, "29"], +[-37.77556295, 175.3011269833, "18A"], +[-37.77552875, 175.3003862833, "12"], +[-37.7756378167, 175.2987909667, "1"], +[-37.7752192, 175.3002419667, "11"], +[-37.7752809333, 175.3013621667, "20"], +[-37.77517545, 175.2996093333, "7B"], +[-37.7756704333, 175.29985085, "8"], +[-37.77493195, 175.3013227667, "19"], +[-37.7753421333, 175.2999573333, "9"], +[-37.7755036333, 175.3013810167, "20A"], +[-37.7755943333, 175.3001079167, "10"], +[-37.7754527833, 175.30064975, "14"], +[-37.7754591, 175.2994366667, "5"], +[-37.7752572167, 175.3020892167, "26B"], +[-37.7760173833, 175.2996636333, "6B"], +[-37.7751520167, 175.3005166667, "13"], +[-37.7758166833, 175.2993726167, "4"], +[-37.7751094833, 175.3019895833, "26A"], +[-37.7752305167, 175.3015657, "22"], +[-37.7750922833, 175.30244505, "30"], +[-37.77517495, 175.301768, "24"], +[-37.7757732333, 175.3002752833, "10A"], +[-37.7756584667, 175.30093455, "16A"], +[-37.77476445, 175.3022311167, "27"], +[-37.77485305, 175.3016009333, "21"], +[-37.7753857667, 175.2997280667, "7A"], +[-37.7750909667, 175.3022228, "28"], +[-37.7758702, 175.2991549833, "2"], +[-37.7760714, 175.2992965333, "2A"], +[-37.7753993167, 175.3019146667, "24A"], +[-37.7757400833, 175.2996007833, "6"], +[-37.7755447667, 175.29911185, "3"], +[-37.7750678833, 175.3007940667, "15"], +[-37.7759075667, 175.298999, "2B"], +[-37.8096336833, 175.2223743833, "176"], +[-37.8076232333, 175.2265894, "136"], +[-37.80970685, 175.2221815833, "178"], +[-37.8035007167, 175.2274204667, "74"], +[-37.8102146667, 175.2211562833, "190"], +[-37.8088037167, 175.2242227, "156"], +[-37.8112330167, 175.2193425667, "210"], +[-37.7974615167, 175.2290081167, "4"], +[-37.8116368667, 175.2193005167, "212"], +[-37.8072592833, 175.229359, "119"], +[-37.8073951667, 175.2282204, "121"], +[-37.8049555, 175.2290309333, "93A"], +[-37.8076780333, 175.22843545, "123"], +[-37.80812645, 175.2255449333, "146"], +[-37.8080231333, 175.2286383167, "125"], +[-37.8004625833, 175.2283294, "41"], +[-37.8078010667, 175.2273745, "127"], +[-37.8089538667, 175.2222222333, "174"], +[-37.8080905833, 175.2275400667, "129"], +[-37.808811, 175.2227592833, "172"], +[-37.80832975, 175.2276898167, "131"], +[-37.8001081333, 175.2284520333, "37"], +[-37.8089395333, 175.2281710333, "133"], +[-37.7985011667, 175.2279594667, "22"], +[-37.8093421, 175.2274883167, "135"], +[-37.8070894167, 175.2291263167, "117"], +[-37.8084820833, 175.22601925, "137"], +[-37.8074050667, 175.226939, "134"], +[-37.80881015, 175.22622865, "139"], +[-37.8015238667, 175.2273575167, "54"], +[-37.8090947667, 175.2263585667, "141"], +[-37.80107885, 175.22818525, "45"], +[-37.7992425333, 175.2288559833, "27"], +[-37.80536725, 175.2283523, "98"], +[-37.8092962333, 175.2244872333, "147"], +[-37.8033369667, 175.2281263833, "73"], +[-37.8091016667, 175.2249140167, "145"], +[-37.8069088667, 175.2288648833, "115"], +[-37.8088785167, 175.2253611667, "143"], +[-37.80825965, 175.22530115, "148"], +[-37.80995685, 175.2238554333, "153"], +[-37.7999003833, 175.2279857333, "36"], +[-37.80975435, 175.2238417833, "151"], +[-37.80950755, 175.2237912, "149"], +[-37.80211505, 175.22794775, "61"], +[-37.8092772667, 175.2231980833, "170"], +[-37.8019262667, 175.2272653, "58"], +[-37.8052292, 175.2288288667, "93B"], +[-37.7291261833, 175.2698492167, "17"], +[-37.7298021333, 175.2705862333, "3"], +[-37.7297747167, 175.2703283667, "5"], +[-37.7298215333, 175.2707878333, "1"], +[-37.7297193667, 175.26996575, "9"], +[-37.7281770667, 175.2698125333, "29"], +[-37.7287610333, 175.27012155, "12"], +[-37.7282203, 175.27010985, "18"], +[-37.72965525, 175.2699027, "11"], +[-37.7283714667, 175.2700972, "16"], +[-37.7297362833, 175.2700981167, "7"], +[-37.7281875, 175.2699798167, "20"], +[-37.7289645167, 175.2701485833, "10"], +[-37.72893615, 175.2698324833, "19"], +[-37.7293288833, 175.2698706667, "15"], +[-37.7281711333, 175.2696512667, "27"], +[-37.7291875167, 175.2701658833, "8"], +[-37.7287508167, 175.2698265333, "21"], +[-37.7295009167, 175.2698993333, "13"], +[-37.7283722, 175.26971645, "25"], +[-37.7295101, 175.2702175, "6"], +[-37.7285613667, 175.2697928833, "23"], +[-37.7295699833, 175.2704896167, "4"], +[-37.7295926167, 175.2706633333, "2"], +[-37.7285643833, 175.2700946667, "14"], +[-37.7281965333, 175.2871854833, "13"], +[-37.7288314667, 175.2875340667, "10"], +[-37.7286699167, 175.2866080167, "3"], +[-37.7289597333, 175.2863247667, "2"], +[-37.7281875833, 175.2876866667, "18"], +[-37.7289387667, 175.2865722667, "4"], +[-37.72822725, 175.2874123667, "15"], +[-37.7289251833, 175.2868448333, "6"], +[-37.7286317833, 175.2872049167, "7"], +[-37.7286700667, 175.2868835167, "5"], +[-37.7283951333, 175.28720945, "9"], +[-37.7285112, 175.2876179167, "14"], +[-37.7282410167, 175.2869437333, "11"], +[-37.7278491167, 175.2877653, "22"], +[-37.7280165, 175.2877270833, "20"], +[-37.7283308667, 175.2876626167, "16"], +[-37.7286715, 175.2875679167, "12"], +[-37.7286876667, 175.28632565, "1"], +[-37.7289765333, 175.28712205, "8"], +[-37.7775988, 175.2603754333, "54"], +[-37.7785365667, 175.2627919, "12"], +[-37.7779830333, 175.2598719, "57"], +[-37.7774672, 175.2624376667, "36"], +[-37.7781855833, 175.2632065833, "24A"], +[-37.7775597, 175.2613101333, "37"], +[-37.778265, 175.2630494, "16A"], +[-37.7773663167, 175.2622797, "38"], +[-37.7775849333, 175.2611313167, "39"], +[-37.7774065833, 175.2606461, "50"], +[-37.7779563167, 175.2595898167, "59"], +[-37.7774962667, 175.2605334333, "52"], +[-37.7776536667, 175.2601834, "56"], +[-37.7789322167, 175.2624323167, "9"], +[-37.7776474667, 175.2609358167, "41"], +[-37.77830255, 175.2628064333, "16"], +[-37.7770368667, 175.2611494333, "44B"], +[-37.7778592833, 175.2630396833, "28B"], +[-37.7771837667, 175.2611125, "44"], +[-37.7779354667, 175.2624062, "23"], +[-37.7771779667, 175.2613287, "42"], +[-37.7781125167, 175.2624613167, "21"], +[-37.77756845, 175.2599477, "58A"], +[-37.7782717, 175.2624439167, "19"], +[-37.7777408167, 175.2607674167, "43"], +[-37.7784962, 175.2623876, "15"], +[-37.7780016833, 175.2631944833, "26A"], +[-37.7784631833, 175.2627887167, "14"], +[-37.7778496167, 175.26236655, "25"], +[-37.7788303167, 175.2628938167, "10"], +[-37.7776900833, 175.2599921667, "58"], +[-37.7786328333, 175.2623583333, "13"], +[-37.77879915, 175.2623820833, "11"], +[-37.7773021, 175.26076435, "48"], +[-37.77764875, 175.2621149, "29"], +[-37.7778655667, 175.2628202, "28"], +[-37.7781142333, 175.26287315, "24"], +[-37.7777644167, 175.2622764167, "27"], +[-37.7779773667, 175.26284515, "26"], +[-37.7772336833, 175.2609288667, "46"], +[-37.77767495, 175.2626687, "32"], +[-37.7775873, 175.2618893, "31"], +[-37.7777174, 175.2627168833, "30"], +[-37.7772948, 175.2620285833, "40"], +[-37.7775676, 175.2617095333, "33"], +[-37.7775492333, 175.2615134667, "35"], +[-37.7775718667, 175.2625851333, "34"], +[-37.77768675, 175.2597988167, "60"], +[-37.7641061667, 175.2543835667, "10"], +[-37.7638550667, 175.2539958667, "9"], +[-37.7637057667, 175.2551689, "18A"], +[-37.7613667, 175.2581237333, "58A"], +[-37.7630396333, 175.25508425, "25"], +[-37.7604406833, 175.259034, "72"], +[-37.7620187333, 175.2570112167, "44"], +[-37.7602098167, 175.2593480333, "76"], +[-37.76201765, 175.2563422167, "43"], +[-37.76408385, 175.25372515, "5"], +[-37.75981195, 175.2591596333, "79"], +[-37.7643273667, 175.2541178667, "6"], +[-37.7600702667, 175.2594883667, "78"], +[-37.76067495, 175.2587386667, "68"], +[-37.7599341667, 175.2589336667, "77"], +[-37.7597367167, 175.2584685167, "75B"], +[-37.7596553167, 175.2590132833, "79A"], +[-37.76330615, 175.2553937333, "24"], +[-37.7623401, 175.2565788167, "38"], +[-37.7621232667, 175.25619815, "41"], +[-37.76223755, 175.2560784833, "39A"], +[-37.7622341667, 175.2570780167, "42A"], +[-37.7621572833, 175.2558880333, "39"], +[-37.7619066333, 175.2571413167, "46"], +[-37.7631400667, 175.2557740667, "28"], +[-37.7618440167, 175.2575397167, "50A"], +[-37.7598587167, 175.2597653833, "84"], +[-37.7616324333, 175.256789, "49"], +[-37.7595616, 175.25938825, "83"], +[-37.7617997833, 175.2572693167, "48"], +[-37.7614907, 175.2576826, "54"], +[-37.7617141833, 175.2566769833, "47"], +[-37.7599392167, 175.2596330333, "82"], +[-37.7622289333, 175.25672335, "40"], +[-37.7616270333, 175.2577845, "54A"], +[-37.7610795, 175.25662585, "51A"], +[-37.7614136333, 175.2570862, "53"], +[-37.7631858167, 175.2555412, "26"], +[-37.7615872667, 175.25754105, "52"], +[-37.7621238333, 175.2568679333, "42"], +[-37.7616954833, 175.2577438, "52A"], +[-37.76012705, 175.2587215, "73"], +[-37.7596835667, 175.2592480667, "81"], +[-37.7629113, 175.2552336667, "27A"], +[-37.7608968167, 175.2574362, "61A"], +[-37.7624481667, 175.2564689333, "36"], +[-37.7613138167, 175.2572971167, "55"], +[-37.7605608167, 175.2588815167, "70"], +[-37.7611496667, 175.25713515, "55A"], +[-37.7626426667, 175.2561971, "32"], +[-37.76100405, 175.2570979, "59"], +[-37.7628388667, 175.2550438333, "27B"], +[-37.7612784333, 175.2579404667, "58"], +[-37.7612893333, 175.2568875667, "53A"], +[-37.7611251667, 175.2572560833, "59B"], +[-37.76421785, 175.2542523, "8"], +[-37.7612264, 175.2574053833, "59A"], +[-37.7603769167, 175.2584274333, "69"], +[-37.7596127333, 175.25909545, "81B"], +[-37.7623519833, 175.25591225, "37"], +[-37.7607183, 175.2572768, "63"], +[-37.7623859833, 175.2569430833, "40A"], +[-37.7605999, 175.2571622167, "63A"], +[-37.7644268167, 175.25397445, "4"], +[-37.7610800667, 175.2576340167, "61"], +[-37.7597096667, 175.2585046, "75A"], +[-37.7607571167, 175.2579938833, "67"], +[-37.75988505, 175.2586421667, "75"], +[-37.76083045, 175.2578461167, "65A"], +[-37.7604525, 175.2593605, "74A"], +[-37.7608809, 175.2577768667, "65"], +[-37.76031265, 175.2591472333, "74"], +[-37.7607243833, 175.2577000167, "65B"], +[-37.7616873167, 175.2574170667, "50"], +[-37.76385025, 175.2547210167, "14"], +[-37.7625428167, 175.2563302667, "34"], +[-37.7636286667, 175.2542871, "13"], +[-37.7634155333, 175.2552682167, "22"], +[-37.7639592333, 175.2545701667, "12"], +[-37.7608692833, 175.2569048833, "57A"], +[-37.7594929833, 175.2595127333, "85"], +[-37.76272335, 175.2544753667, "23"], +[-37.76282365, 175.25536955, "29"], +[-37.7637436333, 175.2541333333, "11"], +[-37.7637377833, 175.25484575, "16"], +[-37.76192865, 175.2560247333, "41A"], +[-37.7638595167, 175.2549164167, "16A"], +[-37.7635105167, 175.2551248167, "20"], +[-37.7635174667, 175.2544342167, "15"], +[-37.7609797833, 175.2569396667, "55B"], +[-37.76453355, 175.2538044667, "2"], +[-37.76151745, 175.2569629167, "51"], +[-37.7634017833, 175.2545802667, "17"], +[-37.7602633667, 175.25854325, "71"], +[-37.7632156833, 175.2548315667, "21"], +[-37.7607552, 175.25858265, "66"], +[-37.76361975, 175.2549937333, "18"], +[-37.7613812, 175.2577968167, "56"], +[-37.7639759667, 175.2538471333, "7"], +[-37.7950485167, 175.3067696167, "8"], +[-37.7947822333, 175.3061632833, "1"], +[-37.79473105, 175.30635295, "5"], +[-37.7950822167, 175.3066308833, "6A"], +[-37.79468905, 175.3065387167, "7"], +[-37.79513005, 175.3064327, "6"], +[-37.7951730333, 175.3062634167, "4"], +[-37.7381816167, 175.22161755, "2"], +[-37.7378940667, 175.22234215, "8A"], +[-37.7369913167, 175.2223323333, "13"], +[-37.7381711167, 175.2223342333, "8B"], +[-37.7380413167, 175.22193335, "4"], +[-37.7370537, 175.22161455, "7"], +[-37.7375076667, 175.2227016667, "18"], +[-37.7378197167, 175.2214833333, "1"], +[-37.7379984833, 175.2220611667, "6"], +[-37.73732505, 175.2214318333, "5"], +[-37.7376300333, 175.2222163667, "20"], +[-37.7375701, 175.2215638333, "3"], +[-37.7372921833, 175.2224927667, "22"], +[-37.7366212167, 175.2221148667, "11"], +[-37.7367659333, 175.2216265167, "9"], +[-37.75181625, 175.2425471, "53"], +[-37.75172655, 175.2430420667, "94"], +[-37.7521219, 175.2431556667, "49"], +[-37.7518927667, 175.2433889167, "92"], +[-37.7522631833, 175.2434213667, "47"], +[-37.7537964833, 175.2462443667, "58"], +[-37.7516382333, 175.24213285, "59"], +[-37.7530030667, 175.2453905667, "68"], +[-37.7528586333, 175.2445761833, "39"], +[-37.75279775, 175.2451451333, "72"], +[-37.7530048667, 175.2448490167, "37"], +[-37.7547894833, 175.2472478833, "24"], +[-37.7512909, 175.2413885167, "69"], +[-37.75160775, 175.2427924, "98"], +[-37.7539219667, 175.24637095, "54"], +[-37.75529465, 175.2472295667, "15"], +[-37.7526041, 175.24408525, "43"], +[-37.7531647833, 175.24508965, "35"], +[-37.75252375, 175.2439258667, "45"], +[-37.7548996667, 175.2468104667, "25"], +[-37.751412, 175.2424775, "100"], +[-37.7525095833, 175.2445941, "78"], +[-37.7523602833, 175.2442990667, "82"], +[-37.7513097333, 175.2434264333, "96C"], +[-37.75267075, 175.2448788167, "76"], +[-37.7521013833, 175.24379105, "88"], +[-37.7535198167, 175.24538385, "33"], +[-37.7509054, 175.2413991, "110"], +[-37.7512020333, 175.2421072, "104"], +[-37.7511125833, 175.2418725667, "106"], +[-37.7522142167, 175.2440044167, "86"], +[-37.7544178167, 175.2468633, "28"], +[-37.7517587667, 175.2419988833, "2/59"], +[-37.7551372167, 175.2476177, "22"], +[-37.7513660833, 175.2415229833, "67"], +[-37.7514359, 175.2417615833, "63"], +[-37.7545962333, 175.2470345167, "26"], +[-37.7555507333, 175.2480101167, "20"], +[-37.7527360667, 175.2443460167, "41"], +[-37.7519795167, 175.2428698667, "51"], +[-37.75088155, 175.2416470167, "110A"], +[-37.7558904833, 175.2478526667, "9"], +[-37.7672695, 175.2710852833, "34"], +[-37.7682376333, 175.2711376833, "17"], +[-37.7684389333, 175.27122925, "15A"], +[-37.7676532167, 175.2712948667, "26"], +[-37.7673485, 175.27064795, "35"], +[-37.76810025, 175.2708156333, "21A"], +[-37.7684088667, 175.2710049833, "15B"], +[-37.7679973, 175.2709933667, "21B"], +[-37.76741235, 175.2703493167, "35A"], +[-37.7686330667, 175.2710674833, "9A"], +[-37.7671540167, 175.2705529167, "37"], +[-37.7681833, 175.27159015, "14"], +[-37.7688208, 175.2714514167, "5"], +[-37.7686177333, 175.2713383833, "9"], +[-37.7675094833, 175.2707132833, "33"], +[-37.7686580833, 175.2718329833, "6"], +[-37.7672968333, 175.2703292, "37A"], +[-37.7674993167, 175.2712284167, "30"], +[-37.7677365333, 175.2708508667, "27"], +[-37.7689772, 175.2715060333, "1"], +[-37.7679832, 175.2707586, "23"], +[-37.7683591, 175.27169665, "14A"], +[-37.76882165, 175.27192505, "2"], +[-37.7916847833, 175.2441093167, "39"], +[-37.7915394667, 175.2445183833, "40"], +[-37.79025085, 175.2459225333, "5"], +[-37.7915645, 175.2453934333, "19"], +[-37.7908848333, 175.2447635333, "46"], +[-37.7905330833, 175.2445419333, "51"], +[-37.7911007167, 175.24433315, "45"], +[-37.7922541167, 175.2439728667, "33A"], +[-37.7911063667, 175.2446739667, "44"], +[-37.7909903167, 175.2452392667, "10"], +[-37.7912951667, 175.2442613667, "43"], +[-37.7911885833, 175.2451625833, "14"], +[-37.7920929667, 175.2452037833, "23"], +[-37.7913611833, 175.2454821, "17A"], +[-37.7915371333, 175.2456345833, "17B"], +[-37.7922279, 175.2451073, "25"], +[-37.7909082, 175.2443982667, "47"], +[-37.7900728, 175.2459888, "3"], +[-37.79066715, 175.2448596833, "48"], +[-37.7923258667, 175.2449209167, "27"], +[-37.79072645, 175.2444654167, "49"], +[-37.7913087667, 175.24460345, "42"], +[-37.7917501333, 175.2444450333, "38"], +[-37.79043115, 175.2458571, "7"], +[-37.79000905, 175.24563965, "4"], +[-37.7906076667, 175.2453961333, "6"], +[-37.7924004333, 175.2437625833, "33B"], +[-37.7920934, 175.24475075, "26"], +[-37.7918778, 175.2440433, "37"], +[-37.7898975333, 175.2456825333, "2"], +[-37.7914124667, 175.2450863167, "16"], +[-37.7910636, 175.24558105, "13"], +[-37.7923434333, 175.24437395, "31"], +[-37.79147915, 175.24419845, "41"], +[-37.7907782333, 175.2453275333, "8"], +[-37.7918438833, 175.2449177333, "22"], +[-37.7916327167, 175.244995, "20"], +[-37.7920678, 175.24396355, "35"], +[-37.7918021667, 175.2453124167, "21"], +[-37.7912171833, 175.2455205, "15"], +[-37.79198325, 175.2443483, "30"], +[-37.8228776667, 175.2768360833, "9"], +[-37.8234842333, 175.2769742167, "1"], +[-37.8206195167, 175.2763043333, "35"], +[-37.82140325, 175.2764854167, "27"], +[-37.8193811, 175.2757496167, "56"], +[-37.8187859667, 175.27497505, "65"], +[-37.8215358667, 175.2765033333, "25"], +[-37.8205321667, 175.2766634333, "38"], +[-37.8212514833, 175.2764538167, "29"], +[-37.8204071167, 175.2761998667, "39"], +[-37.82222725, 175.2766772333, "17"], +[-37.8234137667, 175.2773405833, "2"], +[-37.8223825, 175.2766998, "15"], +[-37.82055375, 175.2758628167, "37"], +[-37.8217896, 175.2769395833, "24"], +[-37.8204020833, 175.27661055, "40"], +[-37.8206735833, 175.2766991667, "36"], +[-37.8202484833, 175.2760979833, "41"], +[-37.8208166833, 175.2767518167, "34"], +[-37.8202664667, 175.2765308, "42"], +[-37.8194967667, 175.27587885, "54"], +[-37.8201090167, 175.2764300167, "44"], +[-37.8191414167, 175.2760387167, "58"], +[-37.8199717333, 175.2763367667, "46"], +[-37.82162835, 175.2769187833, "26"], +[-37.8198559667, 175.2762286833, "48"], +[-37.8197826333, 175.2756758667, "49"], +[-37.8197318167, 175.27610605, "50"], +[-37.8210852333, 175.2764156167, "31"], +[-37.8233202167, 175.2769554167, "3"], +[-37.8222400333, 175.2770505833, "18"], +[-37.8232908, 175.2772974833, "4"], +[-37.82193665, 175.27697515, "22"], +[-37.81907015, 175.2759701167, "60A"], +[-37.8219481333, 175.2766073667, "21"], +[-37.81894555, 175.2762171167, "60B"], +[-37.8211254833, 175.2767992, "30"], +[-37.8191406667, 175.27508795, "61"], +[-37.8223789, 175.2770869833, "16"], +[-37.8191964667, 175.275604, "62"], +[-37.8193759833, 175.27529535, "57"], +[-37.8189864167, 175.2750333, "63"], +[-37.82253635, 175.2771303167, "14"], +[-37.8190694, 175.2754541833, "64"], +[-37.8230272667, 175.2768739333, "7"], +[-37.8188561, 175.2753862833, "66"], +[-37.8220858833, 175.27701095, "20"], +[-37.8231710167, 175.2769190167, "5"], +[-37.8200872833, 175.2759879333, "43"], +[-37.8231284667, 175.2772629, "6"], +[-37.822685, 175.2771661, "12"], +[-37.8192895, 175.27519845, "59"], +[-37.8209781833, 175.2767914833, "32"], +[-37.81961315, 175.2759899833, "52"], +[-37.8229781667, 175.2772321333, "8"], +[-37.8194989333, 175.2754418833, "55"], +[-37.8220720833, 175.2766338833, "19"], +[-37.8228329, 175.2771967333, "10"], +[-37.7847782, 175.27919415, "300"], +[-37.7851516167, 175.2791042333, "295"], +[-37.78415015, 175.2781228167, "313A-313F"], +[-37.7850989167, 175.2790490667, "299"], +[-37.78440405, 175.27842815, "313"], +[-37.7855277, 175.2794667167, "275"], +[-37.78491365, 175.27885355, "1/307-29/307"], +[-37.7847816167, 175.2787667833, "1/311"], +[-37.7846828333, 175.2786730667, "2/311"], +[-37.7853155667, 175.2796901167, "278"], +[-37.7845999667, 175.27859395, "3/311"], +[-37.7842007833, 175.2786534167, "342"], +[-37.7843415667, 175.27879375, "308"], +[-37.78526365, 175.2791933667, "291"], +[-37.7854293333, 175.2793760167, "285"], +[-37.7851221833, 175.2796280167, "282"], +[-37.7849969167, 175.2795035167, "298"], +[-37.7850312333, 175.27893735, "301"], +[-37.7285584667, 175.2850664667, "44"], +[-37.7280972167, 175.2850369833, "45"], +[-37.7274707333, 175.2859052667, "58"], +[-37.7278912833, 175.2851888167, "47"], +[-37.7294482, 175.28289315, "19"], +[-37.7274388333, 175.2855461, "51"], +[-37.73089945, 175.28288415, "8"], +[-37.7277865, 175.28568705, "54"], +[-37.7304966833, 175.2821669333, "7"], +[-37.7280985833, 175.285443, "50"], +[-37.73097965, 175.2824269, "4"], +[-37.7282449167, 175.2853131333, "48"], +[-37.7297493333, 175.2830658, "20"], +[-37.7309007333, 175.28205075, "3"], +[-37.7307846, 175.28248905, "10"], +[-37.73011475, 175.28277045, "16"], +[-37.7270035833, 175.2867628667, "66"], +[-37.7310693167, 175.2820004333, "1"], +[-37.7273291333, 175.28607785, "60"], +[-37.7299124333, 175.2828907833, "18"], +[-37.7286352833, 175.2842889667, "37"], +[-37.7298750167, 175.2824601167, "13"], +[-37.7272486333, 175.2856860333, "53"], +[-37.73001435, 175.2823605667, "11"], +[-37.72939935, 175.2836266, "32"], +[-37.7288329333, 175.2833149167, "29"], +[-37.7270886167, 175.2865352167, "64"], +[-37.7296840167, 175.28343755, "24"], +[-37.7270885333, 175.2858668667, "55"], +[-37.7296103, 175.2832850167, "22"], +[-37.7269690667, 175.2860579167, "57"], +[-37.7306995833, 175.2821152167, "5"], +[-37.72923615, 175.2838923167, "34"], +[-37.7289210167, 175.2831483833, "27"], +[-37.7284111167, 175.2851768167, "46"], +[-37.7297581333, 175.2835707333, "26"], +[-37.72866615, 175.28489985, "42"], +[-37.7291747333, 175.2833359333, "25"], +[-37.7288652, 175.2845394667, "38"], +[-37.7290394167, 175.28355415, "31"], +[-37.7271906167, 175.2863046, "62"], +[-37.7267999333, 175.2864689, "61"], +[-37.727635, 175.2857937167, "56"], +[-37.7279409667, 175.2855725167, "52"], +[-37.7311561667, 175.2823819333, "2"], +[-37.72688315, 175.2862607, "59"], +[-37.72975975, 175.2838612667, "28"], +[-37.7285237167, 175.2845068667, "39"], +[-37.7295649833, 175.2837967, "30"], +[-37.7282707833, 175.28488495, "43"], +[-37.73102315, 175.2828552167, "6"], +[-37.7284178333, 175.2847214167, "41"], +[-37.72877155, 175.2847083333, "40"], +[-37.7265444667, 175.2871030667, "67"], +[-37.7266105, 175.2869084833, "65"], +[-37.72670185, 175.2867147333, "63"], +[-37.7265217833, 175.2873115, "69"], +[-37.7269730833, 175.2870765333, "68"], +[-37.7241833333, 175.26634565, "1"], +[-37.7242985, 175.2662822667, "3"], +[-37.7243899333, 175.2661643167, "5"], +[-37.7244222167, 175.2659816, "7"], +[-37.7243963667, 175.26568915, "9"], +[-37.7243939833, 175.2654690167, "11"], +[-37.7242111, 175.2651942, "14"], +[-37.7243348833, 175.2652296333, "15"], +[-37.7245612167, 175.2652997667, "13"], +[-37.72399755, 175.26536195, "10"], +[-37.7240585, 175.2651712167, "12"], +[-37.7240721667, 175.265701, "6"], +[-37.7239904833, 175.2655319333, "8"], +[-37.7241193, 175.2659985167, "4"], +[-37.7239643667, 175.2660919833, "2"], +[-37.7731593333, 175.2586825, "2B"], +[-37.7730652833, 175.2586143, "2A"], +[-37.7732654667, 175.2582748167, "1"], +[-37.74469555, 175.2790573833, "9"], +[-37.7448134333, 175.2796556667, "3"], +[-37.7447352667, 175.2792893833, "7"], +[-37.7443723167, 175.2787308, "10"], +[-37.7446510167, 175.278819, "11"], +[-37.7446652333, 175.2797983167, "1"], +[-37.7443664167, 175.2790132333, "6"], +[-37.74426895, 175.2788603833, "8"], +[-37.7444974, 175.2795371333, "2"], +[-37.7447486, 175.2795205167, "5"], +[-37.7444897167, 175.27927295, "4"], +[-37.7445044667, 175.2786458, "12"], +[-37.7446647333, 175.2785575833, "13"], +[-37.7837614667, 175.2254205833, "48"], +[-37.7819234167, 175.222263, "104"], +[-37.7843895, 175.22701325, "26"], +[-37.7818307167, 175.2220358833, "106"], +[-37.7862751667, 175.2287045667, "4"], +[-37.7817616833, 175.2218257833, "108"], +[-37.7822366, 175.22319035, "94"], +[-37.7864951667, 175.2283776, "9"], +[-37.78400735, 175.2252105, "47"], +[-37.7832651667, 175.2242929, "56"], +[-37.7843249, 175.22682135, "28"], +[-37.7834276333, 175.22469925, "52"], +[-37.7824502167, 175.2239114, "76"], +[-37.7844922667, 175.22644275, "35"], +[-37.7821389667, 175.22206735, "67"], +[-37.7847524833, 175.2270592667, "29"], +[-37.7863677833, 175.2289134667, "2"], +[-37.7850476333, 175.2274508667, "25"], +[-37.7842425333, 175.22661795, "30"], +[-37.7843366, 175.2260360167, "39"], +[-37.7845744167, 175.2266577, "33"], +[-37.78523935, 175.2275583, "23"], +[-37.7855964333, 175.2276297833, "19"], +[-37.7836375667, 175.22613385, "40"], +[-37.7841648, 175.2264089, "32"], +[-37.7830064667, 175.22368795, "70"], +[-37.7850040333, 175.2279193833, "16"], +[-37.7829300833, 175.2247126667, "60"], +[-37.78614805, 175.22851285, "6"], +[-37.78296305, 175.2244408667, "58"], +[-37.7839245667, 175.2250299833, "49"], +[-37.7831253333, 175.2239655667, "68"], +[-37.78203795, 175.2218250833, "69"], +[-37.7827746667, 175.2245500833, "62"], +[-37.78586485, 175.2281515167, "10"], +[-37.7829130833, 175.22419705, "66"], +[-37.7815549167, 175.2209416, "116"], +[-37.78273115, 175.2244409833, "64"], +[-37.7848758167, 175.2272704, "27"], +[-37.78161915, 175.2211630667, "114"], +[-37.7857494667, 175.2276623667, "17"], +[-37.7828223333, 175.2233297667, "88"], +[-37.7867218, 175.2289726167, "3"], +[-37.7825297167, 175.22361715, "86"], +[-37.78238405, 175.2239092667, "78"], +[-37.78232935, 175.2237034333, "84"], +[-37.7836291, 175.2258811, "44"], +[-37.7816649833, 175.2213897167, "112"], +[-37.7863876167, 175.2281955667, "11"], +[-37.7821229333, 175.2226302833, "100"], +[-37.7836650833, 175.2252248667, "50"], +[-37.7817064667, 175.2216104, "110"], +[-37.7866666667, 175.2287742, "5"], +[-37.7820160667, 175.2224599833, "102"], +[-37.784419, 175.2262395333, "37"], +[-37.7854213833, 175.2276103833, "21"], +[-37.7865901333, 175.2285592167, "7"], +[-37.7821420667, 175.2231317167, "96"], +[-37.7866920833, 175.2291812167, "1"], +[-37.7840958667, 175.2262173667, "34"], +[-37.7837667833, 175.2262756667, "38"], +[-37.7826968667, 175.2237152667, "72"], +[-37.78627985, 175.2280155667, "13"], +[-37.7822999667, 175.22235655, "61"], +[-37.7851462667, 175.2279580167, "14"], +[-37.7821858833, 175.2238843667, "82"], +[-37.78254745, 175.2238310833, "74"], +[-37.7817218833, 175.2206061333, "77"], +[-37.7821821833, 175.22406965, "80"], +[-37.78198245, 175.22155575, "71"], +[-37.7826572667, 175.2226443667, "57"], +[-37.7842543167, 175.2258267833, "41"], +[-37.7825662667, 175.2220629667, "63"], +[-37.7825211167, 175.2229491667, "92"], +[-37.78346295, 175.2259846167, "42"], +[-37.7822959667, 175.2228027333, "98"], +[-37.78409865, 175.2254200667, "45"], +[-37.7844456667, 175.22722025, "24"], +[-37.7828256833, 175.2227878833, "55"], +[-37.7838659167, 175.2256592333, "46"], +[-37.7846569333, 175.22685555, "31"], +[-37.7826801667, 175.22308405, "90"], +[-37.7840004167, 175.2259848333, "36"], +[-37.7841721667, 175.2256117833, "43"], +[-37.7824815667, 175.2225264167, "59"], +[-37.7833581333, 175.2245265, "54"], +[-37.7860432833, 175.2283223833, "8"], +[-37.7824327, 175.2219458167, "65"], +[-37.78452945, 175.2274161167, "22"], +[-37.8082753833, 175.20672975, "4"], +[-37.8071427, 175.2101188167, "35"], +[-37.8078434833, 175.211822, "56"], +[-37.8074763167, 175.20926615, "30A"], +[-37.8077170667, 175.206735, "9"], +[-37.8083775667, 175.2090812333, "30B"], +[-37.8073162, 175.2116617, "55"], +[-37.8073937667, 175.2089320333, "30C"], +[-37.8076074667, 175.2101086833, "38"], +[-37.8057191, 175.2097868167, "31"], +[-37.8069343333, 175.2087157, "25"], +[-37.80736875, 175.2134816833, "64"], +[-37.8076841167, 175.2122638833, "58"], +[-37.7706814333, 175.2981965, "6"], +[-37.7712119667, 175.2981630167, "1"], +[-37.7710243167, 175.2980229833, "3"], +[-37.7710141833, 175.29841785, "2"], +[-37.7708546667, 175.2983158167, "4"], +[-37.7980107833, 175.2390984667, "3A"], +[-37.7972572167, 175.2395373, "14B"], +[-37.79805825, 175.2396080333, "4"], +[-37.7978416333, 175.23876615, "5"], +[-37.7978603333, 175.2390988333, "5A"], +[-37.7981882333, 175.23948305, "2"], +[-37.79770385, 175.2391217833, "7"], +[-37.7973926, 175.2391295833, "11"], +[-37.7970808833, 175.2394934, "14A"], +[-37.7974262, 175.2396154667, "12A"], +[-37.7977635833, 175.2396322667, "8"], +[-37.7974002167, 175.2398994333, "12B"], +[-37.7979141333, 175.2396144333, "6"], +[-37.7975983333, 175.2396289667, "10"], +[-37.7979872333, 175.23872735, "3B"], +[-37.7972496667, 175.2390760167, "13"], +[-37.7975491667, 175.23911795, "9"], +[-37.7975211333, 175.2461952333, "2"], +[-37.7978051833, 175.2466771833, "5"], +[-37.7981096, 175.2467981667, "9"], +[-37.7979533333, 175.2467634833, "7"], +[-37.7978794333, 175.24629555, "6"], +[-37.7980886667, 175.2471212667, "9A"], +[-37.7982855333, 175.24691355, "11"], +[-37.7974614, 175.2465773333, "1B"], +[-37.79805545, 175.24631875, "8"], +[-37.7977160167, 175.2462391, "4"], +[-37.7972862167, 175.2465139333, "1"], +[-37.7976214333, 175.2466131, "3"], +[-37.7366532667, 175.2323774667, "2"], +[-37.7367998333, 175.23237045, "4"], +[-37.7368442, 175.23281655, "5"], +[-37.73695955, 175.2323755667, "6"], +[-37.7369893333, 175.2328796667, "7"], +[-37.7371288833, 175.2323004833, "8"], +[-37.7367297333, 175.2329683833, "3B"], +[-37.7366914833, 175.2327896167, "3A"], +[-37.7374008667, 175.2324852833, "12"], +[-37.7371913667, 175.2329666333, "11"], +[-37.7372882167, 175.2323257, "10"], +[-37.7365549167, 175.23277325, "1"], +[-37.7373454333, 175.23285585, "13"], +[-37.7375904167, 175.2325970167, "17"], +[-37.7374125833, 175.2326969833, "15"], +[-37.7370426333, 175.2332189, "9"], +[-37.7295148667, 175.2827366, "2"], +[-37.7297154167, 175.28191315, "5"], +[-37.7293628833, 175.2821912667, "8"], +[-37.7296155167, 175.2821370167, "3"], +[-37.7291755333, 175.2820454833, "10"], +[-37.7293927833, 175.2823926167, "6"], +[-37.7293967667, 175.2819991667, "9"], +[-37.72944275, 175.2825839167, "4"], +[-37.7295817, 175.2823953, "1"], +[-37.7295123667, 175.2819743833, "7"], +[-37.78563835, 175.3320960167, "71"], +[-37.7860975667, 175.3321242167, "62"], +[-37.78576005, 175.33192075, "69"], +[-37.7894382667, 175.3274452667, "9"], +[-37.78995745, 175.3266412333, "1"], +[-37.78813565, 175.3303873333, "40"], +[-37.7882182333, 175.3301398, "36"], +[-37.7889961, 175.3281546667, "17"], +[-37.78657185, 175.3308650833, "55"], +[-37.7885504667, 175.3295813833, "28"], +[-37.78635, 175.3306483333, "57"], +[-37.7864154, 175.3315309167, "56B"], +[-37.78973415, 175.3275718167, "8"], +[-37.7892466667, 175.3284108, "18"], +[-37.7858156, 175.3331711, "72"], +[-37.7894707833, 175.3280849333, "14"], +[-37.7858555833, 175.3317315833, "67"], +[-37.7896615667, 175.3277732667, "10"], +[-37.78833085, 175.3299445, "34"], +[-37.7885662, 175.3288519333, "25"], +[-37.7881660833, 175.329492, "33"], +[-37.7901807833, 175.3268940667, "4"], +[-37.78842595, 175.3297841167, "32"], +[-37.7854901167, 175.3331655, "74A"], +[-37.7858850833, 175.33242925, "66"], +[-37.7880172833, 175.3304227667, "40A"], +[-37.78828645, 175.33048315, "38"], +[-37.7864392, 175.3337343667, "70B"], +[-37.78898345, 175.32888645, "22"], +[-37.7891469833, 175.3286084167, "20"], +[-37.7888304667, 175.3284257, "21"], +[-37.7867123167, 175.3307605, "53"], +[-37.7892276, 175.3277773333, "13"], +[-37.78616, 175.3312625833, "61"], +[-37.7882659167, 175.3293303667, "31"], +[-37.7868384833, 175.3306862, "51"], +[-37.7859816167, 175.3322882333, "64"], +[-37.78935885, 175.3282471333, "16"], +[-37.78603125, 175.3314556833, "63"], +[-37.7869971167, 175.3306124167, "49"], +[-37.7874182167, 175.3308749667, "46"], +[-37.78638025, 175.3309948333, "59"], +[-37.7854176333, 175.3325924667, "75"], +[-37.7896348833, 175.3271768, "7"], +[-37.7859578833, 175.3315808, "65"], +[-37.7874326667, 175.3303575833, "45"], +[-37.7855568833, 175.3322833333, "73"], +[-37.78686095, 175.3341255167, "70A"], +[-37.7858105667, 175.3325805833, "68"], +[-37.7895758333, 175.32792265, "12"], +[-37.7888048667, 175.3282478833, "19"], +[-37.78934035, 175.3276131833, "11"], +[-37.78846765, 175.3290057333, "27"], +[-37.7870843667, 175.3310290667, "50"], +[-37.7862676833, 175.3317759667, "58"], +[-37.7852282167, 175.3330851167, "76"], +[-37.7879727667, 175.3297666333, "37"], +[-37.7877516333, 175.3301243833, "41"], +[-37.78784665, 175.3300157833, "39B"], +[-37.78548955, 175.33300195, "74"], +[-37.7883672667, 175.32917475, "29"], +[-37.78617785, 175.3319549333, "60"], +[-37.7886182333, 175.33000635, "30"], +[-37.7880669167, 175.32962855, "35"], +[-37.7876048167, 175.33029125, "43"], +[-37.7865025667, 175.33140125, "56A"], +[-37.7862754333, 175.3311275167, "61A"], +[-37.7886808167, 175.3286559167, "23"], +[-37.78791465, 175.3299072333, "39A"], +[-37.7872570167, 175.3309450833, "48"], +[-37.7888454167, 175.3290596667, "24"], +[-37.7891152833, 175.32794705, "15"], +[-37.7902897667, 175.3267163667, "2"], +[-37.7687576167, 175.3230045167, "106"], +[-37.7659513167, 175.3275826667, "164"], +[-37.7682411333, 175.3238522167, "116"], +[-37.7693655, 175.3257077333, "124B"], +[-37.7731829, 175.3241276333, "34"], +[-37.7718094833, 175.3226478, "60"], +[-37.7642726, 175.3297859167, "186"], +[-37.77257095, 175.3234823833, "44"], +[-37.76542615, 175.3285316333, "166"], +[-37.7679728167, 175.3231526, "111"], +[-37.76766055, 175.3248981333, "130"], +[-37.77537785, 175.3241176667, "19"], +[-37.7687107167, 175.3267692167, "134C"], +[-37.7687565, 175.3249474167, "124A"], +[-37.7671009, 175.3257367833, "134A"], +[-37.7754149, 175.3249092, "4"], +[-37.76783465, 175.3260649667, "134B"], +[-37.7382828833, 175.2739146833, "1"], +[-37.7385754667, 175.2744695667, "8"], +[-37.7381565333, 175.27486055, "5"], +[-37.7387139667, 175.27481725, "17"], +[-37.7384398, 175.2739765167, "2"], +[-37.7384681833, 175.2746391, "11"], +[-37.7673222167, 175.2550407333, "20"], +[-37.7667967667, 175.2557949333, "6"], +[-37.7670982667, 175.25589575, "5"], +[-37.7674827333, 175.2547973, "28"], +[-37.7677559, 175.2548989333, "45"], +[-37.7670149167, 175.2541442167, "30"], +[-37.7679931667, 175.2540256167, "42"], +[-37.7679584, 175.2552044833, "43"], +[-37.7678723, 175.2542095333, "40"], +[-37.7665493333, 175.2562976667, "1"], +[-37.76776555, 175.2543675833, "38"], +[-37.7680837, 175.2550306667, "43A"], +[-37.7672854667, 175.2541136, "34D"], +[-37.7675272333, 175.2543782167, "34B"], +[-37.7674930667, 175.2541943333, "36"], +[-37.76686165, 175.2548960833, "10A"], +[-37.76714995, 175.2539747667, "34E"], +[-37.7668973, 175.2561122333, "3"], +[-37.7669194667, 175.25449275, "24"], +[-37.7667199, 175.2547341667, "12A"], +[-37.7679076167, 175.2547270167, "47"], +[-37.76647405, 175.2559320833, "2"], +[-37.7671197333, 175.2545909333, "22"], +[-37.7676332, 175.2545660833, "34A"], +[-37.7680226167, 175.2545731167, "49"], +[-37.7667203, 175.2553783667, "8"], +[-37.7671804167, 175.2552666333, "18"], +[-37.7666187333, 175.2558631, "4"], +[-37.76814155, 175.2544203667, "51"], +[-37.7674117333, 175.2542521667, "34C"], +[-37.7666265667, 175.2548444167, "12"], +[-37.76667545, 175.2562322333, "1A"], +[-37.7667634, 175.2550486167, "10"], +[-37.7670302667, 175.2554873167, "16"], +[-37.7668334167, 175.25526205, "14"], +[-37.7671414833, 175.2547359167, "26"], +[-37.7675789167, 175.25515865, "11"], +[-37.7671186833, 175.2563302, "3A"], +[-37.7804293333, 175.2799652333, "19"], +[-37.78200005, 175.2805803667, "1A"], +[-37.7817959667, 175.2804809833, "1"], +[-37.7816354167, 175.2802015667, "5A"], +[-37.7806285167, 175.2800297333, "17"], +[-37.7815431667, 175.27978575, "7A"], +[-37.7813521, 175.2803258, "7"], +[-37.7809933667, 175.2801998333, "11"], +[-37.7815436, 175.28039585, "5"], +[-37.7813413667, 175.2797945333, "9A"], +[-37.7806594833, 175.2798846, "17A"], +[-37.781183, 175.2802638333, "9"], +[-37.78068965, 175.2797379167, "17B"], +[-37.7810867333, 175.2797751333, "11A"], +[-37.78167375, 175.2804462333, "3"], +[-37.7807859667, 175.2801509667, "15"], +[-37.7809146, 175.2798647667, "11B"], +[-37.78127255, 175.2800485333, "9B"], +[-37.7492411833, 175.2437837333, "4"], +[-37.7492046, 175.24447595, "3A"], +[-37.7493304833, 175.2444184667, "5"], +[-37.7497691167, 175.2446185, "9B"], +[-37.7492495667, 175.2440075667, "4A"], +[-37.7496522667, 175.2443968, "11"], +[-37.7495880667, 175.24401325, "8"], +[-37.7490048667, 175.2442465667, "1"], +[-37.7490676333, 175.24391405, "2"], +[-37.7494889167, 175.2445080667, "7"], +[-37.7497334, 175.2440136833, "10"], +[-37.7494196833, 175.24399125, "6"], +[-37.7491778167, 175.2443237667, "3"], +[-37.7496792833, 175.24422525, "12"], +[-37.74962545, 175.24455875, "9A"], +[-37.7874239833, 175.2442014667, "9A"], +[-37.7875131333, 175.2440747833, "7"], +[-37.7872121167, 175.2443292167, "10"], +[-37.7876882167, 175.2450142167, "1"], +[-37.7875660167, 175.2443519333, "5A"], +[-37.7873979667, 175.2448586167, "4"], +[-37.7876018833, 175.2446649833, "3"], +[-37.7873112167, 175.2444908167, "8"], +[-37.7877918167, 175.2442231333, "5B"], +[-37.7872735667, 175.2442183, "9"], +[-37.78734785, 175.2446701167, "6"], +[-37.7867277167, 175.2380291, "7A"], +[-37.7867464667, 175.2370535167, "15"], +[-37.7873788333, 175.2360930333, "36"], +[-37.7874715833, 175.23575855, "34"], +[-37.7860619333, 175.2378927167, "4"], +[-37.7865995667, 175.23666755, "18"], +[-37.7871626167, 175.2359518, "28"], +[-37.7862297667, 175.2372997667, "10"], +[-37.7869921, 175.2367484, "19"], +[-37.7862970833, 175.2371283333, "12"], +[-37.786377, 175.2369513667, "14"], +[-37.7872120167, 175.2364503333, "21"], +[-37.7868321333, 175.2363773167, "22"], +[-37.7868685, 175.2369028333, "17"], +[-37.7869511667, 175.23623255, "24"], +[-37.7867178167, 175.2365171833, "20"], +[-37.7870598167, 175.2360865167, "26"], +[-37.7863952333, 175.2378535, "3"], +[-37.78617245, 175.2374991667, "8"], +[-37.7868004667, 175.2376184833, "9"], +[-37.7860323667, 175.2381216333, "2"], +[-37.7872735333, 175.23592045, "30"], +[-37.78656855, 175.23791665, "3A"], +[-37.7866213, 175.2372092333, "13"], +[-37.7867766333, 175.2377161667, "7"], +[-37.7874254, 175.2357973167, "32"], +[-37.7865304, 175.23741315, "11"], +[-37.7864900167, 175.2368108, "16"], +[-37.7864527, 175.23765515, "5"], +[-37.78612145, 175.2377038667, "6"], +[-37.77256965, 175.2564291167, "14"], +[-37.7728258, 175.25627135, "10"], +[-37.772801, 175.2557040833, "5"], +[-37.7726955667, 175.2558997, "7"], +[-37.7730656167, 175.2557068833, "4"], +[-37.7728892, 175.2555058667, "3"], +[-37.7725665833, 175.2560629667, "9"], +[-37.7729910167, 175.2558897833, "6"], +[-37.77248215, 175.2562614667, "11"], +[-37.7729028167, 175.2560673667, "8"], +[-37.7727173667, 175.2564416833, "12"], +[-37.7930520167, 175.2322835, "7"], +[-37.7930916333, 175.23247735, "5"], +[-37.7929022333, 175.2319813833, "4"], +[-37.79302295, 175.2320515333, "6"], +[-37.7927343167, 175.2320016333, "2"], +[-37.79276195, 175.2323418833, "1"], +[-37.7929318, 175.23250205, "3"], +[-37.7825250333, 175.2574516833, "2"], +[-37.7823797667, 175.2569687, "3A"], +[-37.7824834333, 175.2570538, "1"], +[-37.7823409667, 175.25707205, "3"], +[-37.7821675333, 175.2571427, "5"], +[-37.7767047333, 175.3020168, "4"], +[-37.77723835, 175.3020517, "12"], +[-37.7766181333, 175.3019533667, "3"], +[-37.7771624, 175.3020213333, "11"], +[-37.7770771833, 175.3019828833, "10"], +[-37.7773310833, 175.3020840667, "13"], +[-37.7765123, 175.3019114833, "2"], +[-37.7773922667, 175.3021230333, "14"], +[-37.77685395, 175.3020621667, "5"], +[-37.7774201, 175.3021771667, "15"], +[-37.7774338333, 175.3022241, "16"], +[-37.7764137333, 175.30187305, "1"], +[-37.7767066833, 175.3018411167, "6"], +[-37.7768139, 175.3018815, "7"], +[-37.7768900333, 175.3019107333, "8"], +[-37.7769809167, 175.3019498833, "9"], +[-37.8067381833, 175.2929219833, "49"], +[-37.8073505, 175.2951464167, "56"], +[-37.8069241333, 175.2938636833, "59"], +[-37.8070512833, 175.290089, "11"], +[-37.80668185, 175.2927375333, "47"], +[-37.8071655, 175.2934292833, "40"], +[-37.8066258667, 175.2912364667, "18"], +[-37.8076837333, 175.2900097167, "3"], +[-37.8069728167, 175.29262405, "32"], +[-37.8064669167, 175.2918593167, "37"], +[-37.8067816333, 175.2930953, "51"], +[-37.8075395333, 175.2904443167, "6"], +[-37.8072666167, 175.2942399833, "48"], +[-37.8081564, 175.2954699333, "64"], +[-37.80763635, 175.2954870333, "60"], +[-37.80833745, 175.2954309667, "66"], +[-37.8061089833, 175.2913906167, "31A"], +[-37.8065950833, 175.2923655, "43"], +[-37.8072419, 175.2940280667, "46"], +[-37.8071170333, 175.2932225667, "38"], +[-37.80722285, 175.2938143667, "44"], +[-37.8075240833, 175.29005745, "5"], +[-37.8069879, 175.2944685167, "65"], +[-37.80662755, 175.2910232333, "16"], +[-37.8066377167, 175.2925534333, "45"], +[-37.8066708, 175.2907723833, "14"], +[-37.8070183833, 175.2946873, "67"], +[-37.8084574667, 175.2954453333, "68"], +[-37.8065204833, 175.2920284333, "39"], +[-37.8063372333, 175.2913683333, "31"], +[-37.8080910833, 175.2958640833, "85"], +[-37.8069689667, 175.29425965, "63"], +[-37.80704355, 175.2948922333, "69"], +[-37.8068194333, 175.2902062833, "13"], +[-37.8079493167, 175.2958588667, "83"], +[-37.8070566833, 175.2930083167, "36"], +[-37.8078224667, 175.2905595667, "2B"], +[-37.8082362167, 175.29584605, "87"], +[-37.80689805, 175.2936584167, "57"], +[-37.8073571, 175.2900596667, "7"], +[-37.8068652167, 175.29347695, "55"], +[-37.8070125333, 175.2904910167, "10"], +[-37.80733195, 175.2948921333, "54"], +[-37.8072046167, 175.2900807833, "9"], +[-37.8072866167, 175.2944533, "50"], +[-37.8063052833, 175.2910019333, "27"], +[-37.8063913167, 175.2906047333, "19"], +[-37.8067422833, 175.2916857333, "22"], +[-37.8073509333, 175.2958176667, "79"], +[-37.8060110667, 175.2906515333, "23"], +[-37.8068252667, 175.2932993, "53"], +[-37.8069432333, 175.2940565667, "61"], +[-37.80711435, 175.2953371833, "73"], +[-37.8064700833, 175.2904595667, "17"], +[-37.8078713, 175.2899661, "1"], +[-37.8070746333, 175.2951162, "71"], +[-37.80718975, 175.2935983167, "42"], +[-37.8064137833, 175.2916839, "35"], +[-37.8063067833, 175.2911640833, "29"], +[-37.80701685, 175.29282045, "34"], +[-37.8068728833, 175.2922226833, "28"], +[-37.8071279333, 175.2955172333, "75"], +[-37.8086103333, 175.2954512167, "68A"], +[-37.8069291167, 175.2924281167, "30"], +[-37.8063259667, 175.2908344333, "25"], +[-37.80655705, 175.2922066833, "41"], +[-37.8068294667, 175.2920407167, "26"], +[-37.8067850167, 175.2918570333, "24"], +[-37.8083932667, 175.2958437333, "89"], +[-37.8063777167, 175.29151445, "33"], +[-37.8066956333, 175.2914709333, "20"], +[-37.8069375167, 175.289858, "13A"], +[-37.80778395, 175.2903881333, "2A"], +[-37.8073061833, 175.2946723667, "52"], +[-37.8072112, 175.2956797667, "77"], +[-37.80740965, 175.29546035, "58"], +[-37.8068257, 175.29056815, "12"], +[-37.8060369667, 175.2904994, "21"], +[-37.8065620833, 175.2903612167, "15"], +[-37.8061119833, 175.2912491167, "29A"], +[-37.80836195, 175.2961727833, "91"], +[-37.7985269167, 175.2958811333, "138"], +[-37.7930786833, 175.2935358, "322"], +[-37.8022878, 175.29861115, "37A"], +[-37.7933954, 175.2936475167, "310"], +[-37.7986554167, 175.2960108667, "134"], +[-37.8004618, 175.2978615833, "80"], +[-37.79136345, 175.29237625, "455"], +[-37.8006530833, 175.2970801333, "81"], +[-37.78193635, 175.2887337167, "737B"], +[-37.7928041333, 175.2934541, "390"], +[-37.802668, 175.3001029333, "8"], +[-37.7924436, 175.2937711167, "394"], +[-37.7835495, 175.28950015, "665"], +[-37.7854134833, 175.2907311167, "616"], +[-37.8025799833, 175.29852085, "31"], +[-37.7853365667, 175.2907093833, "616A"], +[-37.79003535, 175.2924615167, "502"], +[-37.7853514167, 175.2901798333, "617"], +[-37.78359415, 175.29006535, "662"], +[-37.78531235, 175.2901467667, "619"], +[-37.80216005, 175.3002279, "16A"], +[-37.78525245, 175.2897594167, "623"], +[-37.7824416833, 175.28954975, "702"], +[-37.7850779833, 175.2906184667, "624"], +[-37.7909190167, 175.2921689333, "475"], +[-37.7850943, 175.2900655333, "625"], +[-37.7909605833, 175.2927939833, "490"], +[-37.78530265, 175.2891619333, "627A"], +[-37.7918853167, 175.2925994667, "445"], +[-37.7851632333, 175.2892028833, "627B"], +[-37.8025027, 175.2992941667, "21"], +[-37.79646935, 175.2948215167, "218"], +[-37.8028023833, 175.3002401833, "4"], +[-37.7965082833, 175.2952956833, "1/212-6/212"], +[-37.8021155833, 175.29835905, "43"], +[-37.7992059833, 175.2958993833, "123"], +[-37.8022521833, 175.2980841667, "43A"], +[-37.8024381833, 175.2998771667, "16"], +[-37.7858627167, 175.2909137, "614"], +[-37.80193165, 175.29870915, "39"], +[-37.8029192, 175.3003772833, "2"], +[-37.8003476333, 175.2971100667, "87"], +[-37.7822325, 175.2889203667, "717"], +[-37.7960621833, 175.2946639167, "242"], +[-37.7833915667, 175.2894445667, "669"], +[-37.8005932167, 175.2973740167, "79"], +[-37.79285665, 175.29292755, "393"], +[-37.7817147667, 175.2891536333, "732"], +[-37.7828737167, 175.2892831167, "699"], +[-37.7964089167, 175.2936099667, "237"], +[-37.7898120667, 175.292356, "1/510"], +[-37.7961826, 175.2941649833, "243"], +[-37.7890190333, 175.2915322, "529"], +[-37.79646625, 175.2938449833, "231"], +[-37.78212755, 175.2883067, "729"], +[-37.7963899167, 175.2942024167, "231B"], +[-37.7833259333, 175.2899499833, "668"], +[-37.7963507167, 175.29478475, "226"], +[-37.7917793667, 175.29257195, "449"], +[-37.7931630333, 175.29357955, "318"], +[-37.7849351667, 175.2912088333, "624B"], +[-37.7933034, 175.2936196667, "314"], +[-37.78316095, 175.2893633167, "695A"], +[-37.7932253167, 175.29359455, "316"], +[-37.7932762, 175.2930575333, "371"], +[-37.7963425, 175.2941840167, "231A"], +[-37.7970678333, 175.2939621833, "199C"], +[-37.78456795, 175.28932405, "643"], +[-37.7872034833, 175.2913743833, "570"], +[-37.7842799167, 175.2903288, "644"], +[-37.7918425667, 175.2925925, "447"], +[-37.7844775, 175.2892781167, "645"], +[-37.7819692667, 175.288753, "731"], +[-37.7819094333, 175.2887214667, "737A"], +[-37.7854556833, 175.2897252333, "1/615-4/615"], +[-37.78186865, 175.28869135, "737"], +[-37.7823078, 175.2894875667, "704"], +[-37.793179, 175.2930486833, "375"], +[-37.7951046, 175.2937909667, "285"], +[-37.7931221667, 175.2930136, "377"], +[-37.7901692667, 175.2919431167, "505"], +[-37.7924939833, 175.29277215, "409"], +[-37.7970338, 175.2937639167, "1/191"], +[-37.7948752167, 175.2936327167, "291"], +[-37.8023249333, 175.2997564, "20"], +[-37.79461015, 175.2935458, "293"], +[-37.78482155, 175.2905362667, "630"], +[-37.7943708167, 175.2934578833, "315"], +[-37.7813816833, 175.2889831333, "776"], +[-37.7942375833, 175.2934009167, "319"], +[-37.7929785833, 175.2929646833, "381"], +[-37.78632615, 175.2910783333, "1/586"], +[-37.7844685833, 175.2903995, "1/640-8/640"], +[-37.78619475, 175.2915260333, "2/586"], +[-37.7881743, 175.2920944833, "1/542A-3/542A"], +[-37.7856151833, 175.2892605333, "613"], +[-37.8029549333, 175.29900195, "17B"], +[-37.78515515, 175.2893848833, "627"], +[-37.80255425, 175.2999848833, "12"], +[-37.7850837833, 175.2891406, "629"], +[-37.78195675, 175.2892976167, "718"], +[-37.79724545, 175.2944933167, "185"], +[-37.7928259333, 175.2926344833, "401"], +[-37.79709515, 175.2944503833, "191"], +[-37.7823939, 175.2890213667, "707"], +[-37.7968519667, 175.2949611167, "196"], +[-37.7990267667, 175.29541425, "135"], +[-37.7985582833, 175.2949917, "149B"], +[-37.7838554833, 175.28902115, "1/659-6/659"], +[-37.7983123, 175.2949464, "153"], +[-37.8003896333, 175.2981332667, "78"], +[-37.79844475, 175.2948301667, "155"], +[-37.79504075, 175.2937684333, "287"], +[-37.7981896333, 175.2948634, "157"], +[-37.7825593167, 175.2891134667, "703"], +[-37.7980195333, 175.2947100667, "159"], +[-37.78252665, 175.2890870667, "705"], +[-37.7973072667, 175.2937259, "6/191"], +[-37.7821261333, 175.2893969167, "714"], +[-37.7967851333, 175.2943471, "209"], +[-37.79988855, 175.2966370667, "103"], +[-37.7972174667, 175.2933872, "4/191"], +[-37.7970637333, 175.2936044333, "2/191"], +[-37.7973536833, 175.2934254667, "5/191"], +[-37.7865901167, 175.2911649167, "1/584-6/584"], +[-37.7839191333, 175.2901759, "1/650-7/650"], +[-37.7870588333, 175.2913384667, "572"], +[-37.7817709667, 175.2891904667, "730"], +[-37.7832117, 175.28937755, "685"], +[-37.7980048333, 175.2953188167, "154"], +[-37.78260595, 175.28915055, "701"], +[-37.79819415, 175.2954863833, "150"], +[-37.7962299, 175.2935433167, "245A-245C"], +[-37.7880826167, 175.2923400667, "544"], +[-37.7887807333, 175.2922416667, "532B"], +[-37.7882169833, 175.2919446667, "542"], +[-37.80278915, 175.2996008667, "11"], +[-37.7883367, 175.29198645, "542B"], +[-37.7989553667, 175.29563255, "133"], +[-37.7886577, 175.2926623333, "530"], +[-37.7892677, 175.291602, "525"], +[-37.7888697333, 175.2927895667, "530A"], +[-37.7889898, 175.2920668667, "528"], +[-37.78848235, 175.2913320667, "541"], +[-37.7966603, 175.2949054833, "208A"], +[-37.7886168167, 175.2913640833, "533"], +[-37.7965792, 175.2952970167, "1/210-6/210"], +[-37.7888259333, 175.2920183167, "532"], +[-37.7830474, 175.2893385333, "697"], +[-37.7887851833, 175.29143685, "531"], +[-37.7934602667, 175.2931275167, "359"], +[-37.7882921833, 175.2926723, "540"], +[-37.7833166667, 175.2894226667, "675"], +[-37.7884648333, 175.2922246333, "536"], +[-37.7831072667, 175.2893595333, "695"], +[-37.7884620167, 175.2929895333, "540A"], +[-37.7866159667, 175.2919849, "582"], +[-37.7883715167, 175.2924490333, "538"], +[-37.7869345667, 175.2912943, "576"], +[-37.79807315, 175.2953818667, "152"], +[-37.7970123, 175.2941931833, "199B"], +[-37.7984327667, 175.2951125833, "149A"], +[-37.7900300333, 175.2918808833, "509"], +[-37.7924146833, 175.29327595, "404"], +[-37.8004344333, 175.2968883667, "87A"], +[-37.7921394, 175.2926865667, "433"], +[-37.7964960333, 175.2942335833, "1/223-10/223"], +[-37.7924324333, 175.2927819, "417"], +[-37.8027517667, 175.29832535, "31A"], +[-37.7876743667, 175.29158475, "562"], +[-37.7972405167, 175.2940292167, "7/191"], +[-37.7879688167, 175.2926641667, "7/546-10/546"], +[-37.7952462167, 175.2938416167, "275"], +[-37.7883169833, 175.2912698333, "547"], +[-37.7879779833, 175.2922528333, "1/548-4/548"], +[-37.7924074333, 175.29277585, "419"], +[-37.7969646333, 175.2944018333, "199A"], +[-37.7919205333, 175.2926136167, "443"], +[-37.789128, 175.2921219667, "526"], +[-37.7921904667, 175.29322395, "418"], +[-37.7886784167, 175.2919652833, "1/534-4/534"], +[-37.7923242333, 175.29325465, "410"], +[-37.79710535, 175.2934106667, "3/191"], +[-37.7919587333, 175.2926259833, "439"], +[-37.7823506667, 175.2889959833, "711"], +[-37.79237225, 175.2927657167, "421"], +[-37.7930648667, 175.2929984167, "379"], +[-37.7922708333, 175.2934008333, "412"], +[-37.8022161833, 175.2989972833, "33"], +[-37.7922437833, 175.2927141833, "427"], +[-37.7911850667, 175.2922659167, "469"], +[-37.7920791333, 175.29266975, "433A"], +[-37.7867882333, 175.2912507667, "580"], +[-37.7920365833, 175.2926535333, "435"], +[-37.8028231167, 175.2992166833, "17A"], +[-37.7922864667, 175.2927230667, "425"], +[-37.78366245, 175.2895487667, "661"], +[-37.79199845, 175.29263745, "437"], +[-37.80294795, 175.29975675, "9"], +[-37.7923285667, 175.2927473167, "423"], +[-37.8026376667, 175.2994368167, "17"], +[-37.7921835333, 175.2926973, "431"], +[-37.7927307833, 175.2928986333, "395"], +[-37.79220865, 175.2926981333, "429"], +[-37.78967675, 175.2923156833, "512"], +[-37.7982556333, 175.2956396833, "146"], +[-37.7834488333, 175.2899905333, "666"], +[-37.7993332333, 175.2960332667, "121"], +[-37.79977895, 175.2964944, "107"], +[-37.7956756667, 175.2939489667, "265"], +[-37.7894154667, 175.2916583, "521"], +[-37.7926845833, 175.2933950667, "384"], +[-37.7935993833, 175.2931979833, "355"], +[-37.7924611333, 175.2932987167, "400"], +[-37.7820815833, 175.2888274667, "725"], +[-37.7958652, 175.2940630833, "259"], +[-37.78872225, 175.2924531333, "532A"], +[-37.7929390667, 175.2938606667, "380"], +[-37.7906485167, 175.2926680667, "494"], +[-37.7929511, 175.29372855, "378"], +[-37.79882655, 175.2954805833, "137"], +[-37.7929246667, 175.2934793167, "372"], +[-37.7933515, 175.2930873167, "369"], +[-37.7957800833, 175.2945381167, "250"], +[-37.7934730667, 175.2936814333, "300"], +[-37.79600475, 175.29409765, "249"], +[-37.7959069333, 175.2946196167, "248"], +[-37.7985629833, 175.2952533667, "145"], +[-37.7991957333, 175.2966342167, "116"], +[-37.7965899667, 175.2957260167, "202"], +[-37.7967253333, 175.2953877, "200"], +[-37.7967502833, 175.2952333833, "198"], +[-37.7973037, 175.2951025833, "180"], +[-37.7969929833, 175.29500685, "192"], +[-37.7971311667, 175.2950588667, "186"], +[-37.7983833333, 175.2957687167, "142"], +[-37.7989596833, 175.2963322667, "124"], +[-37.7969226, 175.2952725667, "194"], +[-37.7962086833, 175.2947095, "236"], +[-37.7986980667, 175.2953663333, "141"], +[-37.79908615, 175.2957784833, "129"], +[-37.79877125, 175.2961254333, "130"], +[-37.7988119667, 175.2961790833, "130A"], +[-37.7842884667, 175.2897622167, "647"], +[-37.8025454667, 175.2988669667, "27A"], +[-37.8017766667, 175.2985876167, "51"], +[-37.8003274833, 175.2977291333, "82"], +[-37.7979251667, 175.2952907333, "156"], +[-37.8007467167, 175.2975283667, "75"], +[-37.8009314, 175.2983167, "64"], +[-37.8010772333, 175.2984651333, "60"], +[-37.7977787, 175.2952689333, "160"], +[-37.8006464333, 175.29801, "72"], +[-37.8008060833, 175.2981912, "68"], +[-37.80060475, 175.2982708167, "70"], +[-37.80093155, 175.2976980333, "69"], +[-37.8020736167, 175.29950765, "26"], +[-37.8015667833, 175.2989788333, "44"], +[-37.7997587667, 175.2971403, "96"], +[-37.7999535833, 175.29734945, "94"], +[-37.80020745, 175.296958, "93"], +[-37.8004708333, 175.2972519667, "83"], +[-37.8000581333, 175.2974566333, "90"], +[-37.8001899167, 175.2975747667, "86"], +[-37.8021918833, 175.2996405167, "24"], +[-37.80169265, 175.29910455, "40"], +[-37.80191625, 175.2993420167, "30"], +[-37.8011867333, 175.2978609, "63A-63E"], +[-37.80197055, 175.3000432333, "22"], +[-37.8020655333, 175.2988460667, "37"], +[-37.8018132333, 175.2992165833, "36"], +[-37.8024200667, 175.2983933, "35"], +[-37.7840897667, 175.2907600167, "646"], +[-37.7849409, 175.2896017333, "631"], +[-37.80236535, 175.29914265, "27"], +[-37.8026681833, 175.2986173833, "29"], +[-37.7842491333, 175.2888945833, "651"], +[-37.7844976833, 175.2898255333, "641"], +[-37.7846332, 175.28989485, "637"], +[-37.78416785, 175.2897202167, "649"], +[-37.7846489333, 175.29045395, "634"], +[-37.78479475, 175.2899536, "633"], +[-37.7827455667, 175.2897068833, "694"], +[-37.7838613167, 175.2896115, "657"], +[-37.7839839667, 175.2896618333, "655"], +[-37.7841434, 175.2891526333, "653"], +[-37.78300735, 175.2898469833, "680"], +[-37.7831118, 175.2903777667, "670"], +[-37.7831305333, 175.2898874667, "676"], +[-37.78300815, 175.29030445, "674"], +[-37.7376397833, 175.2520506833, "20"], +[-37.7363745833, 175.2530919167, "17"], +[-37.7366222667, 175.2513787167, "6"], +[-37.7369032833, 175.2516454667, "10"], +[-37.7378591167, 175.2525318167, "28"], +[-37.7369978333, 175.2518236833, "12"], +[-37.73680095, 175.2530541833, "21"], +[-37.7366296, 175.2518221833, "5"], +[-37.7362449667, 175.2530259, "15"], +[-37.7367751, 175.2515073333, "8"], +[-37.7367972, 175.25243565, "9"], +[-37.7372939167, 175.25214095, "16"], +[-37.7361576667, 175.2515720167, "1"], +[-37.7368120667, 175.2521063667, "7"], +[-37.7372566667, 175.2527802667, "29"], +[-37.7364357833, 175.2512902667, "4"], +[-37.7369756167, 175.2533174333, "23"], +[-37.7365723667, 175.2530262, "19"], +[-37.7362742667, 175.2512514833, "2"], +[-37.7375351833, 175.2527687833, "30"], +[-37.73777735, 175.2521272667, "22"], +[-37.73748275, 175.2525299833, "26"], +[-37.7372051, 175.2533042333, "25"], +[-37.7374380667, 175.2523121167, "24"], +[-37.7374024667, 175.2520534167, "18"], +[-37.7372753333, 175.25178005, "14"], +[-37.73756285, 175.25301695, "32"], +[-37.7363054333, 175.2528732333, "13"], +[-37.7365445, 175.2527882167, "11"], +[-37.7363714333, 175.2516385, "3"], +[-37.7370916167, 175.2528470833, "27"], +[-37.7890542, 175.2854032667, "1"], +[-37.7631428833, 175.2818871667, "7"], +[-37.7628353, 175.28217635, "11B"], +[-37.7634200333, 175.2819921667, "8"], +[-37.7631908167, 175.28169565, "5"], +[-37.7630794833, 175.2820717, "9"], +[-37.7634848833, 175.2823783667, "12"], +[-37.7631111667, 175.2823269667, "13"], +[-37.7635199333, 175.2816075, "4A"], +[-37.7629535167, 175.2822023167, "11A"], +[-37.7633985, 175.2821735667, "10"], +[-37.76323875, 175.2814984, "3"], +[-37.7634633167, 175.281793, "6"], +[-37.7637081833, 175.2816809167, "4B"], +[-37.7632489, 175.2823682333, "14"], +[-37.7827344333, 175.2611445, "12A"], +[-37.7828146333, 175.26153955, "12B"], +[-37.7823647833, 175.2609084167, "14A"], +[-37.7830213667, 175.2612124167, "8"], +[-37.7828314, 175.26114995, "10"], +[-37.7831909833, 175.26121955, "6"], +[-37.7829387, 175.2605718, "3C"], +[-37.78323215, 175.2615043667, "6A"], +[-37.7833964333, 175.2612099667, "4"], +[-37.7831226333, 175.2605437667, "3G"], +[-37.78259555, 175.2609707833, "14"], +[-37.78292255, 175.2604541667, "3D"], +[-37.7829559167, 175.2606788167, "3B"], +[-37.7829049833, 175.2603641667, "3E"], +[-37.78298345, 175.2608181167, "3A"], +[-37.7830530667, 175.26055745, "3F"], +[-37.78285995, 175.26145635, "10A"], +[-37.78312135, 175.26083885, "1"], +[-37.7834606833, 175.2612069333, "2"], +[-37.73497785, 175.2750632667, "8"], +[-37.7349417167, 175.2752776833, "6"], +[-37.73510815, 175.2748632667, "10"], +[-37.7352639667, 175.27473795, "9"], +[-37.7352762667, 175.2750107, "7"], +[-37.7348692167, 175.27572905, "2"], +[-37.7351896, 175.2752800833, "5"], +[-37.73512985, 175.2755504333, "3"], +[-37.7348878333, 175.2754858333, "4"], +[-37.7665030333, 175.2589592833, "3"], +[-37.765757, 175.2601055, "28"], +[-37.7654685833, 175.2605918167, "34A"], +[-37.76474485, 175.2609462167, "52"], +[-37.7665227833, 175.2597771333, "12A"], +[-37.7644038667, 175.2607559, "53"], +[-37.7650663333, 175.26048995, "40A"], +[-37.7646668833, 175.2611078167, "54"], +[-37.7642995167, 175.2610022333, "55"], +[-37.7648793, 175.26064385, "42A"], +[-37.7642003667, 175.2612358167, "57"], +[-37.7648203333, 175.2601336667, "43B"], +[-37.76445585, 175.26153105, "60"], +[-37.7647275167, 175.2602155167, "45"], +[-37.7663836167, 175.2595612667, "12"], +[-37.7648171167, 175.2607983833, "44"], +[-37.7641151167, 175.26139325, "59"], +[-37.76557175, 175.2596116833, "19"], +[-37.7656416667, 175.2601320333, "30"], +[-37.76663025, 175.2588724, "1A"], +[-37.7665214667, 175.2594283, "8"], +[-37.7646067, 175.2612500333, "56"], +[-37.76524945, 175.2606826667, "40"], +[-37.7663349167, 175.2590710833, "5"], +[-37.7666919333, 175.2592574667, "2"], +[-37.7652392833, 175.2604029667, "38A"], +[-37.7662391667, 175.2596575833, "16"], +[-37.7650380667, 175.2608227333, "42"], +[-37.7645292667, 175.26138835, "58"], +[-37.7661867667, 175.25924305, "7"], +[-37.7649797167, 175.2600522, "37"], +[-37.7650316667, 175.26001035, "35"], +[-37.76559855, 175.2594376667, "19B"], +[-37.7654077, 175.2607209167, "38"], +[-37.7649192, 175.2600941333, "39"], +[-37.7657362667, 175.2594979333, "15"], +[-37.76537075, 175.2603060333, "34"], +[-37.76673905, 175.2586891167, "1"], +[-37.7655435167, 175.25927955, "19C"], +[-37.7658471667, 175.2600487667, "28A"], +[-37.7655962333, 175.2604346333, "32"], +[-37.76548075, 175.2602588333, "32A"], +[-37.7665411667, 175.25962555, "8A"], +[-37.76488585, 175.2614320333, "56A"], +[-37.7886396167, 175.2688847167, "34A-34D"], +[-37.7880198, 175.2710005167, "15"], +[-37.7882921, 175.2704429167, "23"], +[-37.78872365, 175.2704683167, "25B"], +[-37.7887160333, 175.2694514667, "35"], +[-37.7888391833, 175.2705978833, "25C"], +[-37.7873106833, 175.2724625, "1"], +[-37.7883753167, 175.2702749833, "25"], +[-37.78866055, 175.2695735667, "33"], +[-37.78748525, 175.2721296667, "5"], +[-37.78845615, 175.2692030833, "32A"], +[-37.78781345, 175.2706236167, "14"], +[-37.7877178833, 175.2698041333, "22"], +[-37.7878791333, 175.27046035, "16"], +[-37.7883689167, 175.2689686333, "32"], +[-37.7880799833, 175.2708673833, "17"], +[-37.7884839333, 175.2707418833, "21B"], +[-37.7879598333, 175.2703103333, "18"], +[-37.7880166167, 175.2701587667, "20"], +[-37.7881577167, 175.2707039333, "19"], +[-37.7882438833, 175.2705661, "21"], +[-37.7881121333, 175.2699606, "24"], +[-37.7875902, 175.2719173333, "7"], +[-37.7879663833, 175.2711126333, "13"], +[-37.7872087, 175.2718866, "6"], +[-37.7882142833, 175.2697279167, "26"], +[-37.7885978833, 175.2697314333, "31"], +[-37.7882927, 175.2695039167, "30"], +[-37.7877676833, 175.2707755333, "12"], +[-37.7885000667, 175.2699560667, "27-29"], +[-37.7872102, 175.272616, "1A"], +[-37.7887202333, 175.2709009833, "21C"], +[-37.78739505, 175.27230035, "3"], +[-37.8043845833, 175.2622579167, "16"], +[-37.8037726667, 175.2627949167, "7"], +[-37.80315525, 175.2630260667, "1"], +[-37.8043368833, 175.2626667667, "13"], +[-37.8044311167, 175.26245475, "15"], +[-37.8038856667, 175.2623003333, "10"], +[-37.7364263667, 175.2706574167, "13"], +[-37.7371956, 175.2713035833, "4"], +[-37.7368768667, 175.2712205333, "12"], +[-37.7367902333, 175.2708411333, "9"], +[-37.7361497, 175.2710846333, "20"], +[-37.7368979667, 175.2717368, "8"], +[-37.73627605, 175.2705599667, "15"], +[-37.73678655, 175.2715282833, "10"], +[-37.7366254333, 175.2714503333, "14"], +[-37.7366028, 175.2707623667, "11"], +[-37.7359803167, 175.2706428167, "19"], +[-37.7373492667, 175.2709847333, "3"], +[-37.7365900833, 175.2711187, "16"], +[-37.7363771, 175.27100605, "18"], +[-37.7361396167, 175.2705556167, "17"], +[-37.7373688, 175.2713091667, "2"], +[-37.73589705, 175.27085825, "24"], +[-37.7359409167, 175.2710249167, "22"], +[-37.7371452, 175.2709451833, "5"], +[-37.7369728333, 175.2708999333, "7"], +[-37.7370788833, 175.2716170833, "6"], +[-37.7696951, 175.2535076, "25A"], +[-37.7709994, 175.2533174833, "4"], +[-37.76955815, 175.2537834667, "25B"], +[-37.7705125, 175.2527761667, "4/7"], +[-37.7707957333, 175.2530907833, "5"], +[-37.7702438333, 175.25395025, "16"], +[-37.7706054333, 175.25364495, "1/8"], +[-37.7708670167, 175.2534104667, "6A"], +[-37.7699934167, 175.2539895667, "22"], +[-37.7707533833, 175.2540328167, "10"], +[-37.76978995, 175.2534499333, "23"], +[-37.7703605167, 175.2538299667, "14"], +[-37.7702156, 175.2530908333, "13A"], +[-37.7708224833, 175.2534486, "6B"], +[-37.7698379167, 175.2537109667, "27"], +[-37.7703284667, 175.2534367667, "17"], +[-37.770213, 175.2535528, "19"], +[-37.7704807333, 175.2537383833, "12"], +[-37.77112085, 175.2531697167, "2"], +[-37.7700241833, 175.2542294833, "20"], +[-37.7702764667, 175.25305315, "13B"], +[-37.7709440167, 175.2529760667, "1"], +[-37.7699381167, 175.25386065, "29"], +[-37.77007845, 175.2536661833, "21"], +[-37.7704527, 175.2528548833, "3/7"], +[-37.7701503333, 175.2531624667, "15"], +[-37.77097955, 175.2536651167, "6C"], +[-37.77012495, 175.254085, "18"], +[-37.7706952333, 175.2535657, "2/8"], +[-37.77063495, 175.2532222333, "9"], +[-37.7705042333, 175.2533080667, "11"], +[-37.7802299667, 175.2281767333, "3"], +[-37.7804268, 175.228582, "4"], +[-37.78007845, 175.2286732333, "17"], +[-37.7800204833, 175.22792455, "5"], +[-37.7799624833, 175.2280471, "7"], +[-37.7799107833, 175.2281421, "11"], +[-37.78038295, 175.2287580333, "6"], +[-37.7800266833, 175.2285047667, "15"], +[-37.7801257, 175.2283636833, "13"], +[-37.7802624833, 175.2287441333, "8"], +[-37.7379207167, 175.2744017667, "2"], +[-37.7374281833, 175.2749003167, "1"], +[-37.73767715, 175.2755081, "4"], +[-37.7373906167, 175.2755270833, "3"], +[-37.7373123, 175.2763386833, "5"], +[-37.7789073833, 175.2325114167, "1"], +[-37.7788206667, 175.23326035, "2"], +[-37.7787792667, 175.23230255, "3"], +[-37.7786657167, 175.2332496333, "4"], +[-37.7785784833, 175.2331652333, "6"], +[-37.7783330167, 175.2325545667, "5"], +[-37.7784792333, 175.2329842667, "8"], +[-37.7781205, 175.23279625, "14"], +[-37.77821485, 175.2325234167, "7"], +[-37.7786462833, 175.2326139667, "9"], +[-37.7786391167, 175.2323643667, "11"], +[-37.7783238167, 175.2329998333, "10"], +[-37.77819185, 175.2329342333, "12"], +[-37.7781485167, 175.2326737333, "16"], +[-37.7997437, 175.2948065667, "15"], +[-37.7966966833, 175.3070719, "99A"], +[-37.8005140333, 175.2936473, "2B"], +[-37.7995486833, 175.2955615667, "21"], +[-37.8003388667, 175.2935769167, "2"], +[-37.8000654667, 175.2947578167, "12"], +[-37.8003807667, 175.2933044333, "2A"], +[-37.79747085, 175.3060340833, "102"], +[-37.8001584667, 175.29434175, "8"], +[-37.7974563, 175.30692225, "108"], +[-37.7999137167, 175.2953415667, "16"], +[-37.79728505, 175.3054084667, "87"], +[-37.79912545, 175.297496, "27"], +[-37.8002207667, 175.2941086833, "6"], +[-37.7990978333, 175.29900265, "38"], +[-37.7993520833, 175.2978146, "30"], +[-37.7987293667, 175.29912245, "39"], +[-37.79818415, 175.3014684833, "55"], +[-37.7988651167, 175.3000699833, "48"], +[-37.7974799167, 175.3071977833, "112"], +[-37.7982476167, 175.3003673667, "49A"], +[-37.7972376333, 175.3056242333, "89"], +[-37.7982424833, 175.3027486833, "72"], +[-37.7984906833, 175.3016295, "62"], +[-37.7972368833, 175.3075598333, "101"], +[-37.7982229667, 175.3013121, "53"], +[-37.7999172, 175.29388155, "7"], +[-37.79716365, 175.3072205833, "99"], +[-37.8000462167, 175.29338565, "1"], +[-37.7971159333, 175.3067429, "93"], +[-37.7996567833, 175.29507845, "17"], +[-37.7981994667, 175.30292015, "74"], +[-37.80000005, 175.2935607667, "3A"], +[-37.7991204167, 175.29882155, "36"], +[-37.7997285167, 175.2934683667, "3B"], +[-37.7975802167, 175.3041316333, "77"], +[-37.8002731, 175.2938565333, "4"], +[-37.7975075333, 175.3074599833, "114"], +[-37.7997429833, 175.2961457, "20"], +[-37.7978010167, 175.30314045, "73"], +[-37.7992175833, 175.29709955, "23"], +[-37.798771, 175.29893035, "37"], +[-37.7994761, 175.2972350167, "24"], +[-37.7977490167, 175.3033747167, "75"], +[-37.7991734, 175.2973015333, "25"], +[-37.7986804667, 175.2993213833, "41"], +[-37.7994321333, 175.2974447, "26"], +[-37.7977617667, 175.3047896333, "90"], +[-37.7993918833, 175.29765075, "28"], +[-37.7993115, 175.29799205, "32"], +[-37.7981059667, 175.3018053167, "59"], +[-37.80002865, 175.2949656667, "12A"], +[-37.7993690167, 175.3001147833, "52D"], +[-37.79771405, 175.30497435, "92"], +[-37.7992911833, 175.3005709333, "52C"], +[-37.7973478667, 175.3051324333, "85"], +[-37.7992167333, 175.3005391, "52B"], +[-37.7992687667, 175.2981934667, "34"], +[-37.7988947667, 175.2998756667, "46"], +[-37.7971359833, 175.3069819667, "97"], +[-37.7985694, 175.2997784333, "45"], +[-37.7978514667, 175.30440395, "86"], +[-37.7989524, 175.2995785667, "42"], +[-37.79742515, 175.3062359833, "104"], +[-37.798912, 175.29970805, "44"], +[-37.7995652667, 175.2970334667, "22"], +[-37.7984095167, 175.2993860667, "43A"], +[-37.7985529667, 175.3013886167, "60"], +[-37.7986094, 175.2995686333, "43"], +[-37.7980647833, 175.3019616167, "61"], +[-37.7984466667, 175.2989908833, "43B"], +[-37.7997622667, 175.2959940167, "18"], +[-37.7984323167, 175.3003846333, "49"], +[-37.7981431833, 175.3016315833, "57"], +[-37.79802985, 175.3000289333, "47D"], +[-37.7990310333, 175.2993144167, "40"], +[-37.7981056167, 175.3000899167, "47C"], +[-37.79995355, 175.2937408167, "5"], +[-37.7981849667, 175.3001400333, "47B"], +[-37.79903215, 175.29788455, "33"], +[-37.7985007667, 175.3000746, "47"], +[-37.7977999833, 175.3045952, "88"], +[-37.7980719667, 175.29991325, "47E"], +[-37.7991198167, 175.3004878833, "52A"], +[-37.7981723333, 175.2998017167, "47G"], +[-37.7988170667, 175.3002411, "50"], +[-37.7980973, 175.2997366, "47F"], +[-37.7984428333, 175.3018453, "64"], +[-37.7978491, 175.3028836, "71"], +[-37.7976522333, 175.3052248333, "94"], +[-37.7987567333, 175.3004803167, "54"], +[-37.7995937167, 175.2953435167, "19"], +[-37.7987237167, 175.30066445, "56"], +[-37.79813535, 175.3031720833, "76"], +[-37.7992232, 175.3000878, "52E"], +[-37.7976928167, 175.30191465, "65B"], +[-37.7982838333, 175.3025248, "70"], +[-37.7978887667, 175.3042169167, "84"], +[-37.7977623167, 175.3017137667, "65"], +[-37.7974678667, 175.3046032, "81"], +[-37.7976308167, 175.3020862, "65C"], +[-37.7980214667, 175.3021340833, "63"], +[-37.7986935, 175.3008340833, "58"], +[-37.79882285, 175.29873565, "35"], +[-37.7979057, 175.3026277333, "69"], +[-37.7969185, 175.3071508333, "99B"], +[-37.7983905667, 175.30206205, "66"], +[-37.8001201167, 175.2945513333, "10"], +[-37.7983448167, 175.3022878167, "68"], +[-37.7974063167, 175.3048711667, "83"], +[-37.7979642167, 175.302382, "67"], +[-37.7973364333, 175.3042852833, "79A"], +[-37.7975335667, 175.3076502833, "116"], +[-37.7995163833, 175.2957568167, "21A"], +[-37.7975132667, 175.3058641833, "98C"], +[-37.7999960333, 175.295171, "14"], +[-37.7975386833, 175.3057412333, "98B"], +[-37.7975248833, 175.3043357667, "79"], +[-37.7975678667, 175.3056120167, "98A"], +[-37.7976071333, 175.3054349167, "96"], +[-37.7867851, 175.3114222833, "30"], +[-37.7881075833, 175.3105134167, "10"], +[-37.7864938833, 175.3115931333, "1/34-6/34"], +[-37.7871388833, 175.3104857833, "15C"], +[-37.7875730333, 175.3108864, "18"], +[-37.7870516667, 175.3105481667, "15D"], +[-37.7884975167, 175.31022895, "4B"], +[-37.7883493667, 175.31011145, "4A"], +[-37.7871619167, 175.3106578333, "15A"], +[-37.7869676, 175.3105954333, "15E"], +[-37.7862172667, 175.3117704333, "38A-38B"], +[-37.78706165, 175.3108736, "17"], +[-37.78697805, 175.3112811167, "26"], +[-37.78796565, 175.3106242167, "12"], +[-37.7878532667, 175.31085285, "14B"], +[-37.78637505, 175.3112957833, "27"], +[-37.7871532, 175.3111670833, "24"], +[-37.7871633667, 175.3105576167, "15B"], +[-37.7874279833, 175.3109695333, "20"], +[-37.7878387833, 175.3107009, "14A"], +[-37.7865052167, 175.3111930167, "25"], +[-37.7869493333, 175.3108934167, "19"], +[-37.7863620667, 175.3116870667, "1/36-6/36"], +[-37.7882062667, 175.3104150667, "8"], +[-37.7883005667, 175.3102833167, "6"], +[-37.78664765, 175.3114929167, "32"], +[-37.7877009833, 175.310786, "16"], +[-37.78729185, 175.3110584333, "22"], +[-37.7877856667, 175.3103488167, "7"], +[-37.7880726833, 175.3100611333, "3"], +[-37.7879507833, 175.31022965, "5"], +[-37.72433785, 175.2526152667, "18"], +[-37.7250726, 175.2516812333, "6"], +[-37.7249797833, 175.2519077167, "8"], +[-37.7253446333, 175.2517024, "4"], +[-37.7245911833, 175.2514362167, "7"], +[-37.72482055, 175.25162875, "9"], +[-37.7246010167, 175.2523029833, "14"], +[-37.7245951667, 175.2513424667, "5"], +[-37.7244283333, 175.2519270333, "13"], +[-37.7246592833, 175.25185055, "11"], +[-37.7244622333, 175.25237995, "16"], +[-37.7248704667, 175.2520769, "10"], +[-37.7244286667, 175.2521047667, "15"], +[-37.7247380333, 175.2522184333, "12"], +[-37.7244170833, 175.2522870167, "17"], +[-37.7251842, 175.2514585667, "2"], +[-37.7242746833, 175.25253915, "19"], +[-37.7248933, 175.2514311333, "3"], +[-37.7439360333, 175.2275136, "10-14"], +[-37.7404649333, 175.2083585333, "208"], +[-37.7405014333, 175.2076405167, "214"], +[-37.7404594833, 175.2097137167, "200"], +[-37.7401014333, 175.2046080833, "244"], +[-37.7400402333, 175.2043756167, "246"], +[-37.74499015, 175.2190959667, "99"], +[-37.7402178833, 175.2072663833, "216"], +[-37.7449488, 175.2258326667, "32-38"], +[-37.74102185, 175.2066543167, "223"], +[-37.7451301333, 175.2196119667, "97"], +[-37.7444282667, 175.2265502833, "16-22"], +[-37.7404552, 175.2090222, "206"], +[-37.74473495, 175.2203883833, "88"], +[-37.7463351, 175.2238638, "51"], +[-37.7391357833, 175.2067392667, "216B"], +[-37.7443639, 175.22811135, "13"], +[-37.7410326333, 175.2117943167, "173"], +[-37.7401319333, 175.2078084667, "212"], +[-37.7446272167, 175.2261318, "24-30"], +[-37.7456059333, 175.2219346333, "71"], +[-37.7440571167, 175.2284472, "9"], +[-37.7403707, 175.20411765, "245"], +[-37.74440195, 175.2276982333, "19"], +[-37.7453364167, 175.2268681167, "27"], +[-37.7453012833, 175.2252498, "40-50"], +[-37.7438410667, 175.2156853, "131"], +[-37.8084427667, 175.2840122833, "12A"], +[-37.8085064333, 175.2840386667, "12B"], +[-37.8083583167, 175.2847625833, "18"], +[-37.8080695667, 175.2842618667, "23"], +[-37.8080410833, 175.2844730833, "25"], +[-37.8086376333, 175.2838593167, "10C"], +[-37.8087333833, 175.2828045833, "5"], +[-37.8086557, 175.28532965, "39"], +[-37.8086112667, 175.2828711833, "7"], +[-37.8086695833, 175.2833960833, "6B"], +[-37.8086411, 175.2840972833, "12D"], +[-37.8080328, 175.2837875333, "19C"], +[-37.8081039333, 175.2853689333, "8/31"], +[-37.80810755, 175.2838226833, "19B"], +[-37.8080573833, 175.2854401667, "7/31"], +[-37.8084653, 175.2854083, "37B"], +[-37.8079819333, 175.2851084167, "3/31"], +[-37.80819085, 175.2838632, "19A"], +[-37.8079652667, 175.28529955, "5/31"], +[-37.8083464333, 175.2833137333, "13"], +[-37.8087070833, 175.2832188833, "6H"], +[-37.8079189, 175.2851595667, "4/31"], +[-37.8087603167, 175.28330055, "6G"], +[-37.8089665, 175.2830881667, "2A"], +[-37.8081478333, 175.2852896333, "9/31"], +[-37.8087339167, 175.2834514833, "6C"], +[-37.80819365, 175.2852201667, "10/31"], +[-37.8089105833, 175.28274755, "1"], +[-37.8082487167, 175.2851456667, "11/31"], +[-37.8079556833, 175.283758, "19D"], +[-37.8079985333, 175.2854932333, "6/31"], +[-37.8083141833, 175.2845027333, "16"], +[-37.8085826333, 175.2840651667, "12C"], +[-37.80844365, 175.2855846167, "37D"], +[-37.8084022667, 175.2831375667, "11"], +[-37.8083781167, 175.28423895, "14A-14D"], +[-37.8087284167, 175.2823102167, "3"], +[-37.8084730167, 175.2853047667, "37A"], +[-37.8084548833, 175.2855024667, "37C"], +[-37.8085706667, 175.2838295833, "10B"], +[-37.8081295167, 175.2840739, "21"], +[-37.8085005833, 175.2829857667, "9"], +[-37.8087017333, 175.2838916333, "10D"], +[-37.80862635, 175.2833413833, "6A"], +[-37.80850595, 175.2838053333, "10A"], +[-37.80816355, 175.2829568333, "11A"], +[-37.8088116167, 175.2833741667, "6F"], +[-37.8090562167, 175.2831923333, "2C"], +[-37.8085360333, 175.28493455, "20"], +[-37.80824255, 175.2836847333, "17"], +[-37.8080633667, 175.28505255, "2/31"], +[-37.80904475, 175.2830841, "2D"], +[-37.8080301667, 175.2846772, "27"], +[-37.80807715, 175.2848513, "29"], +[-37.8088563333, 175.2834582167, "6E"], +[-37.8083014333, 175.28350255, "15"], +[-37.8089885, 175.2831980667, "2B"], +[-37.8085627167, 175.2835983667, "8"], +[-37.8083405167, 175.2852454833, "35"], +[-37.8088089333, 175.2835019167, "6D"], +[-37.8088050833, 175.2831294, "4"], +[-37.8081314333, 175.2849962333, "1/31"], +[-37.80074145, 175.2518748333, "5"], +[-37.8019660333, 175.2505129667, "20"], +[-37.8010051, 175.25168245, "9"], +[-37.8017054667, 175.2507016, "16"], +[-37.8011451, 175.2516077167, "11"], +[-37.8022391167, 175.2503535667, "24"], +[-37.8020638, 175.2509490833, "27"], +[-37.8003374667, 175.2516627, "2"], +[-37.8025227167, 175.2501834333, "28"], +[-37.8027827167, 175.2504693667, "37"], +[-37.8008622667, 175.2517744167, "7"], +[-37.8024398, 175.2510849833, "31B"], +[-37.8020932333, 175.2504094, "22"], +[-37.80237415, 175.2507574167, "31A"], +[-37.8014094667, 175.2514195667, "15"], +[-37.8026059333, 175.2510264833, "33B"], +[-37.8026457167, 175.2501173833, "30"], +[-37.8025152667, 175.25066245, "33A"], +[-37.8004894667, 175.2520411667, "1"], +[-37.8009351667, 175.2512332, "6"], +[-37.8022203667, 175.2507918333, "29"], +[-37.8006088167, 175.2519770167, "3"], +[-37.8010657667, 175.2511451333, "10"], +[-37.8019407333, 175.2514423167, "23"], +[-37.80127715, 175.2515101, "13"], +[-37.8026376, 175.2505692167, "35"], +[-37.8018377167, 175.2515044, "21"], +[-37.8023241667, 175.2512374667, "29A"], +[-37.80165835, 175.2512246833, "19"], +[-37.8018326167, 175.2506009667, "18"], +[-37.8015493667, 175.2512772333, "17"], +[-37.8015864833, 175.2507691167, "14"], +[-37.80237565, 175.25025745, "26"], +[-37.80187645, 175.2510659, "25"], +[-37.7923888333, 175.3104034167, "66A"], +[-37.7942887167, 175.3108232333, "33"], +[-37.7833857833, 175.3143951667, "177"], +[-37.7971801167, 175.3117971, "1"], +[-37.7832426833, 175.3144801167, "179"], +[-37.78586515, 175.3127553, "1/143"], +[-37.78308035, 175.3145961167, "181"], +[-37.7914442333, 175.30983665, "67A"], +[-37.7829283667, 175.3147104833, "183"], +[-37.7912106333, 175.3100896667, "69"], +[-37.78277925, 175.3147920667, "185"], +[-37.7941387833, 175.3107381667, "35"], +[-37.7826101167, 175.3149066667, "187"], +[-37.7898078333, 175.3106522667, "90"], +[-37.7882226833, 175.3111972667, "103"], +[-37.7866018667, 175.3122534833, "129"], +[-37.7880879833, 175.3112706667, "105"], +[-37.7939843167, 175.3106816667, "37A"], +[-37.7879473333, 175.3113700167, "107"], +[-37.7964746167, 175.3112334833, "9"], +[-37.7878080667, 175.3114576833, "109"], +[-37.7940168833, 175.3111636167, "34"], +[-37.78901905, 175.3111355333, "100"], +[-37.7867906667, 175.3119493833, "125B"], +[-37.78887165, 175.31124225, "102"], +[-37.7886160167, 175.3107978167, "97A"], +[-37.7887248833, 175.3113288167, "104"], +[-37.7874036, 175.3117433, "117"], +[-37.7851505167, 175.3132240833, "147"], +[-37.7954224667, 175.3119267833, "18"], +[-37.7947457333, 175.3110913667, "27"], +[-37.7918884667, 175.3089521, "61D"], +[-37.79453165, 175.31147755, "28"], +[-37.7969438333, 175.3117177333, "3"], +[-37.7937241333, 175.3109852333, "40"], +[-37.7944452167, 175.3107173, "31A"], +[-37.7924922167, 175.30998445, "55"], +[-37.7825494333, 175.31463595, "187A"], +[-37.79229265, 175.30967645, "57A"], +[-37.7911374667, 175.30947345, "71B"], +[-37.7923021333, 175.3099877833, "57"], +[-37.7892947167, 175.3109738, "96"], +[-37.7929140333, 175.3105161, "58"], +[-37.7893322333, 175.3104756333, "87"], +[-37.7920824667, 175.3096974667, "59B"], +[-37.7932222167, 175.3111302667, "50"], +[-37.7920616167, 175.3099945, "59"], +[-37.7945993667, 175.3109977833, "29"], +[-37.7930828833, 175.3106083667, "56"], +[-37.79689225, 175.3113970167, "3B"], +[-37.79101235, 175.3101101333, "75"], +[-37.79662385, 175.31167065, "7"], +[-37.7910792833, 175.31052925, "76"], +[-37.79518485, 175.3113756, "21"], +[-37.79085955, 175.3101250333, "77"], +[-37.7919151, 175.3092674167, "61A"], +[-37.7908827, 175.3105573, "78"], +[-37.7918616, 175.3086334833, "61E"], +[-37.7959487333, 175.3115713833, "15"], +[-37.7918147667, 175.30852375, "61F"], +[-37.7966819667, 175.3121320333, "8"], +[-37.7935390333, 175.3116073167, "42A"], +[-37.7837299833, 175.31419305, "175"], +[-37.79114225, 175.3097109, "71A"], +[-37.7867085333, 175.3120314667, "127B"], +[-37.7849980167, 175.3133343833, "163A"], +[-37.78666825, 175.3119263667, "127C"], +[-37.7860491333, 175.3126712833, "133"], +[-37.7870328833, 175.3119875167, "1/123-6/123"], +[-37.7945884167, 175.3119061, "26"], +[-37.7872908333, 175.31181135, "119A-119D"], +[-37.7938914667, 175.3110927167, "38"], +[-37.7883552333, 175.3111090333, "101A-101C"], +[-37.7914103833, 175.31007325, "67"], +[-37.7932262167, 175.31068775, "54"], +[-37.7940190167, 175.3104199667, "37"], +[-37.7917293833, 175.3085095333, "61G"], +[-37.7865336333, 175.3127664833, "130"], +[-37.79269755, 175.3104037667, "62"], +[-37.7886236, 175.3109309833, "97"], +[-37.7916001667, 175.3098075167, "63A"], +[-37.7937768, 175.31054745, "39"], +[-37.7917484167, 175.3100324833, "63"], +[-37.7923892667, 175.3091605667, "53A"], +[-37.7925074167, 175.3104118667, "64"], +[-37.7853065333, 175.3131155167, "1/145-6/145"], +[-37.7914662333, 175.3094759, "65A"], +[-37.7868851167, 175.3120746333, "125A"], +[-37.7914725, 175.3096200833, "65B"], +[-37.7824473, 175.3150090333, "189"], +[-37.7890332, 175.3106560833, "91A"], +[-37.7887614167, 175.3108401167, "95"], +[-37.7889400333, 175.3105152833, "91B"], +[-37.7952068667, 175.3118367, "20"], +[-37.7848737333, 175.31326805, "163B"], +[-37.7872080667, 175.3118665, "1/121-4/121"], +[-37.7907682167, 175.3096960667, "79"], +[-37.79487015, 175.3112020833, "25"], +[-37.7910374, 175.3097114833, "73"], +[-37.7826536833, 175.3144940667, "185A"], +[-37.7910508167, 175.3094160167, "73A"], +[-37.7970787667, 175.3122015, "4"], +[-37.7884936667, 175.3110192, "99"], +[-37.7944352167, 175.31091245, "31"], +[-37.7891518167, 175.3110453167, "98"], +[-37.7944211, 175.31140405, "30"], +[-37.7931410667, 175.3110801333, "52"], +[-37.79341125, 175.31078425, "48"], +[-37.79213775, 175.3104460167, "68B"], +[-37.7956075, 175.3115359333, "19"], +[-37.7901369333, 175.3106418667, "86"], +[-37.7855195667, 175.3129545833, "6/143"], +[-37.7902916333, 175.3106221667, "84"], +[-37.79499505, 175.3110260833, "25A"], +[-37.7904578167, 175.3105929833, "82"], +[-37.79355715, 175.3108684167, "46"], +[-37.7906393167, 175.3105742833, "80"], +[-37.7857926667, 175.31279985, "2/143"], +[-37.7919344833, 175.3104565667, "70"], +[-37.7841184833, 175.3138808333, "171"], +[-37.79223005, 175.31056275, "68A"], +[-37.7928370167, 175.3109020667, "60"], +[-37.7923135333, 175.3087029833, "55A"], +[-37.79470605, 175.3115827667, "24"], +[-37.7899636833, 175.3106394, "88"], +[-37.7876688167, 175.3115462, "111"], +[-37.7923959167, 175.3107928167, "66C"], +[-37.7877938667, 175.3119804833, "110"], +[-37.792394, 175.3105898, "66B"], +[-37.7969390333, 175.3113472, "3A"], +[-37.7915533333, 175.3094501833, "65"], +[-37.7847937667, 175.31347595, "165"], +[-37.7921556, 175.3085816667, "55B"], +[-37.7891743167, 175.3105552833, "89"], +[-37.7958101667, 175.31199795, "14"], +[-37.7850406333, 175.3131073833, "147B"], +[-37.79508735, 175.3109730833, "23"], +[-37.7924542167, 175.30945865, "53"], +[-37.7957064333, 175.31222965, "14A"], +[-37.7855879833, 175.31293045, "5/143"], +[-37.79503085, 175.31132695, "23A"], +[-37.7919701167, 175.30901075, "61C"], +[-37.7961072167, 175.3116052, "13"], +[-37.7875524833, 175.3121332167, "112-118"], +[-37.7959618833, 175.3120214, "12"], +[-37.7968779333, 175.3121531167, "6"], +[-37.7956022167, 175.3123768, "16"], +[-37.7888990333, 175.310745, "93"], +[-37.7956105167, 175.3119615167, "16A"], +[-37.7867474833, 175.3121591167, "127A"], +[-37.7957725667, 175.3115437667, "17"], +[-37.7857335833, 175.31284305, "3/143"], +[-37.7845174, 175.31364625, "169"], +[-37.7919739833, 175.3091848833, "61B"], +[-37.7856586833, 175.3128779833, "4/143"], +[-37.7839507, 175.3140206167, "173A-173C"], +[-37.7851048333, 175.3130778, "147A"], +[-37.7875334667, 175.3116352667, "113"], +[-37.7896195833, 175.3107327, "92"], +[-37.78228685, 175.3151177, "191"], +[-37.78462735, 175.3135739333, "167"], +[-37.7969119667, 175.3124045, "6A"], +[-37.7967960833, 175.3116861667, "5"], +[-37.79360525, 175.3104871, "45"], +[-37.7922161833, 175.3089102, "53B"], +[-37.7934575333, 175.3112798, "44"], +[-37.7935558, 175.3113322333, "42"], +[-37.7962761167, 175.3116067167, "11"], +[-37.7965114333, 175.31209765, "10"], +[-37.79645165, 175.3116451833, "9A"], +[-37.81023945, 175.2754306667, "84"], +[-37.8095473, 175.276025, "68B"], +[-37.8095382333, 175.2747507333, "84D"], +[-37.8102508, 175.2769715167, "51"], +[-37.8094694, 175.27546845, "78A"], +[-37.8107323167, 175.2767626, "59"], +[-37.8099642167, 175.2754289, "82A"], +[-37.80982695, 175.2764851667, "66"], +[-37.8096297, 175.2756761667, "2/76"], +[-37.8105051667, 175.27664785, "57"], +[-37.8095515167, 175.2742194833, "92"], +[-37.8121883667, 175.2727438667, "101A"], +[-37.8104195, 175.2743816333, "100T"], +[-37.81226325, 175.27247295, "101"], +[-37.8108983833, 175.2727900667, "118A"], +[-37.8101579833, 175.2734865333, "104A"], +[-37.8105050833, 175.2731903167, "110B"], +[-37.8102537333, 175.2732106833, "104B"], +[-37.8107232667, 175.27337355, "110A"], +[-37.8105264833, 175.2736818833, "106A"], +[-37.8101400333, 175.27389345, "100Q"], +[-37.8102941667, 175.2734952667, "106B"], +[-37.8100341167, 175.2750120833, "86C"], +[-37.8106204333, 175.2735068833, "108A"], +[-37.80958205, 175.2767766667, "52"], +[-37.8103865, 175.2733074, "108B"], +[-37.8108341, 175.2772448833, "53"], +[-37.8104236167, 175.2741123, "100A"], +[-37.8100085, 175.2767846833, "51A"], +[-37.8107421333, 175.2744721, "77"], +[-37.8102204167, 175.2756474167, "80"], +[-37.8113781, 175.2749084, "75"], +[-37.8106578333, 175.27549585, "65"], +[-37.8103184833, 175.27793435, "35"], +[-37.8100049833, 175.2776964833, "37"], +[-37.8093481833, 175.2773280667, "46"], +[-37.8101593, 175.2746674167, "94A"], +[-37.81055995, 175.2774827667, "47A"], +[-37.8099936167, 175.2751988833, "84A"], +[-37.8097443833, 175.2760961333, "70B"], +[-37.8095183667, 175.2763999167, "64B"], +[-37.8099940333, 175.27626315, "70A"], +[-37.81030195, 175.2752694333, "88A"], +[-37.8104674, 175.2728930833, "112B"], +[-37.80967495, 175.27467715, "86"], +[-37.8104375167, 175.27724645, "49"], +[-37.8108043, 175.2729169, "116B"], +[-37.8109553167, 175.2753813833, "67"], +[-37.8096498667, 175.2749354667, "84C"], +[-37.8097521667, 175.2743866333, "94C"], +[-37.8110407333, 175.2748236667, "75A"], +[-37.8107394833, 175.2752688167, "67A"], +[-37.8107301167, 175.2748416, "71"], +[-37.8111820333, 175.2727249, "124"], +[-37.8107906667, 175.2739707333, "81"], +[-37.8108437333, 175.2732162333, "114A"], +[-37.8109984667, 175.273594, "87"], +[-37.8105611333, 175.2727393167, "112C"], +[-37.8097933167, 175.2748088667, "86A"], +[-37.81095505, 175.2726689667, "122"], +[-37.8099022833, 175.27399965, "100E"], +[-37.8105944, 175.2730119667, "114B"], +[-37.8097694333, 175.2774758167, "39A"], +[-37.8106649667, 175.2725781667, "120"], +[-37.8097046833, 175.2757290667, "1/76"], +[-37.8110295167, 175.2729335667, "118"], +[-37.8098258167, 175.27768715, "33A"], +[-37.80939925, 175.2757038333, "72B"], +[-37.8104195167, 175.2730013667, "112A"], +[-37.8094664667, 175.2750557, "82C"], +[-37.8109280333, 175.2730709667, "116A"], +[-37.8102022333, 175.2744561667, "96B"], +[-37.8094392667, 175.2771129167, "50"], +[-37.8096148333, 175.2751670167, "82B"], +[-37.8095586167, 175.2776192, "33"], +[-37.8104618667, 175.2746683833, "96A"], +[-37.8096799833, 175.2773659167, "39"], +[-37.8098149667, 175.2741766667, "96D"], +[-37.8101807667, 175.2751376333, "88"], +[-37.8100051333, 175.2743285833, "96C"], +[-37.81000105, 175.2737810333, "100P"], +[-37.8108329833, 175.277672, "47"], +[-37.8105932167, 175.2757068667, "63"], +[-37.8102342333, 175.2742512667, "100C"], +[-37.81031615, 175.2748195667, "90B"], +[-37.81028895, 175.2740046167, "100B"], +[-37.8101190167, 175.2760238667, "74A"], +[-37.8096763333, 175.27519975, "82"], +[-37.8114461833, 175.2724479, "103"], +[-37.8102420833, 175.2772447333, "45"], +[-37.8099042, 175.2748941833, "86B"], +[-37.8100806167, 175.2741274333, "100F"], +[-37.8107396667, 175.2724587667, "120A"], +[-37.8092850667, 175.2774835167, "44"], +[-37.8104432333, 175.2749816167, "90"], +[-37.8098311833, 175.2770261167, "43"], +[-37.8116151, 175.2725597667, "99"], +[-37.8095143833, 175.2760708, "68A"], +[-37.8098187333, 175.27507595, "84B"], +[-37.8096191333, 175.2758625, "72A"], +[-37.81124735, 175.2741908, "83"], +[-37.8096953833, 175.2764556667, "64A"], +[-37.8107334, 175.2741986333, "79"], +[-37.8099123833, 175.2756642667, "74C"], +[-37.8098444167, 175.2758131167, "74B"], +[-37.8101596167, 175.2758734167, "74D"], +[-37.8095059333, 175.2753164333, "78"], +[-37.81074525, 175.2750190333, "69"], +[-37.8097489833, 175.2771948833, "41"], +[-37.8101838833, 175.2765515, "55"], +[-37.8095294, 175.2756275667, "3/76"], +[-37.81118855, 175.2733264167, "91"], +[-37.8110931833, 175.2734518, "89"], +[-37.81089695, 175.2737743167, "85"], +[-37.81107235, 175.2750265333, "73"], +[-37.8099408, 175.2745057833, "94B"], +[-37.8097141, 175.2788974, "19"], +[-37.8092318333, 175.2787584333, "15B"], +[-37.8100341333, 175.2784751333, "29"], +[-37.8096753333, 175.2790294333, "17A"], +[-37.809715, 175.2781058333, "27"], +[-37.8091951, 175.2783971167, "21A"], +[-37.8094286167, 175.2783509833, "23A"], +[-37.8089696, 175.2788043333, "13"], +[-37.80992645, 175.2783953333, "29A"], +[-37.8093671667, 175.278005, "25"], +[-37.80944075, 175.2788655, "17"], +[-37.8098695, 175.2780135833, "31"], +[-37.8092691833, 175.2782306833, "23"], +[-37.8093522667, 175.2785154, "21"], +[-37.80905405, 175.2786189167, "15A"], +[-37.8095122167, 175.27871335, "19A"], +[-37.7966835667, 175.3108028167, "8"], +[-37.79651435, 175.31091675, "10"], +[-37.7970374667, 175.31052475, "3"], +[-37.7965037333, 175.3104836, "11"], +[-37.7967445333, 175.3100720167, "7A"], +[-37.7964837, 175.3107098, "12"], +[-37.7967132833, 175.3104825333, "7"], +[-37.7971877833, 175.3105985333, "1"], +[-37.7968709667, 175.3105069167, "5"], +[-37.7969968667, 175.3108489167, "4"], +[-37.7965969333, 175.3102215333, "9"], +[-37.7968304833, 175.31081555, "6"], +[-37.7835480833, 175.2975528333, "1/18-12/18"], +[-37.7834351667, 175.2964409, "3"], +[-37.7839930667, 175.29716695, "10C"], +[-37.7838151833, 175.2963947667, "2A"], +[-37.7836684833, 175.2970648833, "10A"], +[-37.7838349167, 175.2961783, "2"], +[-37.78385, 175.2971205167, "10B"], +[-37.7835589, 175.29614315, "1A"], +[-37.78304915, 175.2970590667, "11A"], +[-37.78360585, 175.2959691833, "1"], +[-37.78328635, 175.2971056167, "11"], +[-37.7839443833, 175.2973279167, "12A"], +[-37.7836288, 175.2972164833, "12"], +[-37.78325785, 175.2972386333, "15A"], +[-37.7832502333, 175.2973014833, "15B"], +[-37.78323275, 175.2973934333, "15C"], +[-37.7832051, 175.2974805333, "15D"], +[-37.7831754, 175.2976052667, "17"], +[-37.7831516167, 175.2961507167, "1C"], +[-37.7834810833, 175.2962726167, "1B"], +[-37.7831001167, 175.2964908333, "5A"], +[-37.7834051167, 175.2965971833, "5"], +[-37.783744, 175.2967370667, "6A"], +[-37.7830680167, 175.2966594333, "7B"], +[-37.7837832333, 175.2965452667, "4"], +[-37.783364, 175.2967614833, "7"], +[-37.7840408833, 175.2968298, "6B"], +[-37.7832518, 175.2967332167, "7A"], +[-37.7840709833, 175.2966583833, "4B"], +[-37.7840095667, 175.2969989167, "8A"], +[-37.7836996333, 175.2968944667, "8B"], +[-37.7833256833, 175.2969401833, "9"], +[-37.7899705667, 175.2426294333, "37A"], +[-37.7919603167, 175.2424002667, "13A"], +[-37.7920324167, 175.2431331667, "14"], +[-37.79117235, 175.2433609167, "24"], +[-37.7913416167, 175.2429278, "21"], +[-37.7906359, 175.2429673667, "29"], +[-37.7896532833, 175.2429738667, "41"], +[-37.7908775, 175.2433677, "30"], +[-37.79171415, 175.2435764333, "18"], +[-37.7904638333, 175.2429670667, "31"], +[-37.7910219167, 175.2429698333, "25"], +[-37.7912130667, 175.24295635, "23"], +[-37.7909745333, 175.2438010333, "28"], +[-37.7897895833, 175.2429714333, "39"], +[-37.7922184167, 175.2426129333, "11"], +[-37.7906907333, 175.2433527, "32A"], +[-37.7920626833, 175.2426608, "13"], +[-37.7905212667, 175.2433469667, "32"], +[-37.7925520833, 175.2433261333, "8A"], +[-37.7899245833, 175.2434013167, "38"], +[-37.7901252, 175.2429649333, "35"], +[-37.79235735, 175.24300905, "10"], +[-37.7916043167, 175.2436282167, "20"], +[-37.7923712667, 175.24254385, "9"], +[-37.7913158833, 175.2426093, "21A"], +[-37.7925174833, 175.2429483167, "8"], +[-37.7914503, 175.2433184167, "22"], +[-37.79171175, 175.2432309167, "16"], +[-37.79285595, 175.2423566167, "1"], +[-37.7917549667, 175.2428145667, "17"], +[-37.79180245, 175.2424774, "15A"], +[-37.7908179833, 175.2429678667, "27"], +[-37.7927349167, 175.2420310667, "1A"], +[-37.79108725, 175.2437608167, "26"], +[-37.7914791167, 175.2426312, "19A"], +[-37.7902932333, 175.2429616667, "33"], +[-37.79162015, 175.2425402667, "17A"], +[-37.7915697, 175.2428937667, "19"], +[-37.7930677167, 175.24266605, "2"], +[-37.7897028333, 175.2433909, "40"], +[-37.7924171, 175.2422099, "7A"], +[-37.7919134833, 175.2427341167, "15"], +[-37.7926819167, 175.2428734, "6"], +[-37.7926933167, 175.2424158667, "5"], +[-37.7903603167, 175.2427277, "33A"], +[-37.7921972833, 175.2430838833, "12"], +[-37.792537, 175.2424727833, "7"], +[-37.7929106167, 175.2427704167, "4"], +[-37.7918635167, 175.2431808833, "16A"], +[-37.7924216833, 175.24338595, "10A"], +[-37.7925887167, 175.2420114, "5A"], +[-37.7899577833, 175.2429734833, "37"], +[-37.7499285, 175.2481650667, "12"], +[-37.7499895667, 175.2463664667, "30"], +[-37.7499394333, 175.2479525, "14"], +[-37.7498036667, 175.2453743667, "36"], +[-37.7499885167, 175.2465573833, "28"], +[-37.7499444, 175.2475724667, "18"], +[-37.74997345, 175.2488781667, "4"], +[-37.7497656333, 175.24544305, "34"], +[-37.7499781, 175.2467536667, "26"], +[-37.74996185, 175.2469562167, "24"], +[-37.7502043333, 175.2482165667, "5"], +[-37.74995195, 175.2473721333, "20"], +[-37.7499165333, 175.2487190333, "6"], +[-37.74994645, 175.2477617333, "16"], +[-37.7499171, 175.2485451, "8"], +[-37.7499272667, 175.24836315, "10"], +[-37.7502216167, 175.2479575167, "7"], +[-37.7502303167, 175.24753315, "11"], +[-37.7501982833, 175.2486151167, "1"], +[-37.7499606667, 175.24716205, "22"], +[-37.7502788833, 175.2463166833, "21"], +[-37.7502062167, 175.2484473, "3"], +[-37.7502283167, 175.2477477333, "9"], +[-37.7498182333, 175.2455937333, "32"], +[-37.7497325167, 175.2449300333, "33"], +[-37.7502628, 175.2467473333, "17"], +[-37.7498642833, 175.2490623333, "4A"], +[-37.7502707667, 175.24653895, "19"], +[-37.7791073667, 175.294782, "20"], +[-37.7796872, 175.2949792833, "12"], +[-37.7803492833, 175.2947645833, "3"], +[-37.7793859833, 175.2948716167, "16"], +[-37.77924835, 175.2948184833, "18"], +[-37.7802107333, 175.2947059167, "5"], +[-37.7804999667, 175.2948293, "1"], +[-37.7800645333, 175.29466435, "7"], +[-37.77953235, 175.2949245167, "14"], +[-37.77982725, 175.2950333833, "10"], +[-37.78010115, 175.29545105, "6A"], +[-37.7803995167, 175.29525325, "2"], +[-37.77992485, 175.2946094833, "9"], +[-37.7802542333, 175.29519565, "4"], +[-37.7794923667, 175.2944429333, "15"], +[-37.7801103, 175.2951330167, "6"], +[-37.7796302667, 175.2944892833, "13"], +[-37.7799700333, 175.2950911833, "8"], +[-37.7793220667, 175.2944096333, "17"], +[-37.7797828667, 175.2945470333, "11"], +[-37.7957500667, 175.2886235, "29A"], +[-37.79509585, 175.2888036, "20"], +[-37.7946610667, 175.2893330667, "16"], +[-37.79559605, 175.28904945, "21"], +[-37.7958601667, 175.28868555, "29"], +[-37.7950830667, 175.2892689333, "18"], +[-37.795561, 175.2887567333, "1/27"], +[-37.79526925, 175.2891242, "19"], +[-37.7952041667, 175.2885967833, "22A"], +[-37.7952615667, 175.2886556667, "22"], +[-37.7961472167, 175.2886825333, "31A"], +[-37.79508285, 175.2885811333, "24"], +[-37.7954302167, 175.2886363667, "3/27"], +[-37.7958212, 175.2888882167, "25"], +[-37.7954865, 175.2886893667, "2/27"], +[-37.7960282667, 175.2887505, "31"], +[-37.7948595, 175.2892835333, "17"], +[-37.8081235167, 175.2661995833, "12"], +[-37.8086930833, 175.2679610333, "3"], +[-37.8083441167, 175.2681236833, "2"], +[-37.8087253333, 175.2674259167, "7"], +[-37.80869355, 175.2681956333, "1"], +[-37.8082884833, 175.2669492, "8"], +[-37.8081473333, 175.2665693667, "10"], +[-37.8087262833, 175.26711765, "9"], +[-37.80871875, 175.2661925167, "15"], +[-37.8087259333, 175.2668763667, "11"], +[-37.8087313833, 175.26660845, "13"], +[-37.8083390667, 175.2673328167, "6"], +[-37.80871945, 175.2677139333, "5"], +[-37.8083316667, 175.2676944333, "4"], +[-37.8183383, 175.2795438833, "9"], +[-37.819165, 175.2793048167, "10"], +[-37.8187960333, 175.2786944167, "2"], +[-37.81934285, 175.2793231833, "12B"], +[-37.8184452833, 175.2789673667, "3"], +[-37.8189344667, 175.2796129833, "17"], +[-37.8187525, 175.2789008, "4"], +[-37.81905625, 175.2797183, "19"], +[-37.818698, 175.2792683667, "6A"], +[-37.8183561167, 175.2797887667, "13"], +[-37.81893295, 175.2792727, "6B"], +[-37.8192143667, 175.27886745, "8A"], +[-37.8184024667, 175.2791791167, "5"], +[-37.8192118167, 175.2794321667, "12"], +[-37.81856625, 175.2796009833, "15"], +[-37.8190687667, 175.27921715, "8"], +[-37.8191406667, 175.27955595, "21"], +[-37.8194464833, 175.2790591167, "10A"], +[-37.8184819833, 175.2787932167, "1"], +[-37.8180482, 175.2796739833, "11"], +[-37.8183583667, 175.2793785333, "7"], +[-37.7659021667, 175.24913225, "1-9"], +[-37.7292040833, 175.2677710833, "3"], +[-37.72904845, 175.2679726667, "7"], +[-37.7290514, 175.2682042667, "6"], +[-37.7291264667, 175.2678548, "5"], +[-37.7291637667, 175.2682033833, "4"], +[-37.7819308333, 175.2200181167, "11"], +[-37.78246835, 175.21904235, "23"], +[-37.7815658333, 175.2199374667, "8"], +[-37.7821574333, 175.2194595833, "19"], +[-37.7809966, 175.2204389167, "4"], +[-37.7821163, 175.2190023333, "22"], +[-37.7822414167, 175.22007425, "13"], +[-37.7816674167, 175.2187211333, "18A"], +[-37.7816924333, 175.2197971667, "10"], +[-37.78228575, 175.2192327667, "21"], +[-37.78105715, 175.22084495, "1"], +[-37.7821126167, 175.2196371167, "17"], +[-37.78170205, 175.2202302167, "7"], +[-37.7819827333, 175.2186209833, "20"], +[-37.7818232, 175.2201301667, "9"], +[-37.7825724, 175.2188840667, "27"], +[-37.78203565, 175.2198193667, "15"], +[-37.7821630833, 175.2187267833, "24"], +[-37.7815634667, 175.2185426167, "18C"], +[-37.7823184667, 175.218749, "26"], +[-37.7812864333, 175.2206097167, "5"], +[-37.7818849167, 175.2193415167, "14"], +[-37.7808479167, 175.2205381167, "2"], +[-37.7818161667, 175.2195702, "12"], +[-37.7818744333, 175.2191736, "16"], +[-37.7811691667, 175.2207446, "3"], +[-37.7817046333, 175.2185241333, "18B"], +[-37.7824642167, 175.21879405, "28"], +[-37.7390268667, 175.2325413833, "38"], +[-37.7399440667, 175.2322623667, "41"], +[-37.7355629, 175.2349322, "6"], +[-37.7415634167, 175.2309326833, "83"], +[-37.7405473667, 175.2317809167, "73"], +[-37.7353634, 175.23510535, "4"], +[-37.7405410667, 175.2307276167, "58"], +[-37.73982985, 175.2315606667, "48"], +[-37.7401225167, 175.23164845, "50"], +[-37.7395013833, 175.2326175667, "35"], +[-37.7410169167, 175.2307491, "62"], +[-37.73964395, 175.23250225, "37"], +[-37.73826145, 175.2330059167, "32"], +[-37.7398021, 175.2323793833, "39"], +[-37.7406737333, 175.2305601, "60"], +[-37.73652065, 175.2343723333, "11"], +[-37.7371682167, 175.2340043833, "19"], +[-37.7419495667, 175.2305753167, "89"], +[-37.7373220167, 175.23392215, "19A"], +[-37.7389144333, 175.2326274167, "36"], +[-37.73741365, 175.23343665, "22"], +[-37.7356122167, 175.2353751, "1"], +[-37.7384522333, 175.2333716333, "21"], +[-37.7392207667, 175.23286, "31"], +[-37.7372482, 175.2335168833, "20"], +[-37.73665175, 175.2338687333, "14"], +[-37.7379223833, 175.2331762, "28"], +[-37.7390696167, 175.2329928167, "29"], +[-37.7386132833, 175.2332807833, "23"], +[-37.73585165, 175.235102, "5"], +[-37.7420030333, 175.2309158833, "87"], +[-37.7387691167, 175.2331987167, "25"], +[-37.74173965, 175.2307725167, "85"], +[-37.74111625, 175.2313226833, "79"], +[-37.7380878167, 175.2330959667, "30"], +[-37.7359633667, 175.2350006167, "7"], +[-37.7370382167, 175.2336258667, "18"], +[-37.7413340333, 175.2311430833, "81"], +[-37.73701035, 175.2340915167, "17"], +[-37.7409510833, 175.23147985, "77"], +[-37.7377528333, 175.2332613333, "26"], +[-37.7357271667, 175.23524755, "3"], +[-37.74077235, 175.2316193333, "75"], +[-37.7364285, 175.23398285, "12"], +[-37.7389274333, 175.2331037667, "27"], +[-37.7365673833, 175.2339070167, "14A"], +[-37.74029535, 175.2310362167, "54"], +[-37.7367088, 175.2342539333, "13"], +[-37.7398322333, 175.2318461167, "46"], +[-37.7406864833, 175.2311061167, "56"], +[-37.7393660833, 175.2327438667, "33"], +[-37.7375831, 175.2333565333, "24"], +[-37.7368586, 175.2341740167, "15"], +[-37.74038835, 175.2314039833, "52"], +[-37.7362972833, 175.2340964, "10"], +[-37.7367921, 175.2337437833, "16"], +[-37.7396888333, 175.2319744833, "44"], +[-37.7383973833, 175.2866860333, "1"], +[-37.7392950667, 175.2857422667, "17"], +[-37.7392541167, 175.2855781333, "19"], +[-37.7391411167, 175.2854084833, "20"], +[-37.7390466, 175.2855649333, "18"], +[-37.7389473333, 175.2856446167, "16"], +[-37.7387076833, 175.2855312833, "14"], +[-37.7386222333, 175.2856752833, "12"], +[-37.7386531167, 175.2858342333, "10"], +[-37.7389448833, 175.2859429167, "8"], +[-37.7387820833, 175.2861496667, "6"], +[-37.7383012, 175.2863587, "2"], +[-37.7385698333, 175.2863022167, "4"], +[-37.7389462167, 175.2864497, "9"], +[-37.7390844167, 175.2862901833, "11"], +[-37.73918255, 175.2861123167, "13"], +[-37.7392677833, 175.2859056167, "15"], +[-37.7385953667, 175.2866757167, "3"], +[-37.7387726833, 175.2865796667, "5"], +[-37.7389822667, 175.28687555, "7"], +[-37.7265368167, 175.23701755, "1"], +[-37.7263316, 175.2371973167, "3"], +[-37.7262906833, 175.2369299667, "2"], +[-37.7263159833, 175.2374563167, "4"], +[-37.7628133833, 175.2789282667, "11"], +[-37.7632678667, 175.2779150833, "1"], +[-37.76298995, 175.2788388333, "9"], +[-37.7630905667, 175.27843965, "5"], +[-37.7629941167, 175.27821735, "3"], +[-37.7634115167, 175.27867235, "6"], +[-37.7630334833, 175.2786464833, "7"], +[-37.76331685, 175.27911025, "12"], +[-37.76304475, 175.2791780167, "13"], +[-37.76345515, 175.2784275667, "4"], +[-37.7635361333, 175.2790886, "10"], +[-37.76353205, 175.2781043833, "2"], +[-37.7636058333, 175.2789567667, "8"], +[-37.7632041667, 175.2781510167, "1A"], +[-37.7632392, 175.2792681, "12A"], +[-37.79191635, 175.2682375167, "1/48-3/48"], +[-37.79596045, 175.2672024167, "1/122-6/122"], +[-37.7956727667, 175.26807285, "2/119B"], +[-37.7961110667, 175.2680569333, "4/123"], +[-37.7913517167, 175.2674583833, "1/42-6/42"], +[-37.7956817, 175.2676411833, "119A"], +[-37.7924494167, 175.2695481, "39"], +[-37.79545965, 175.2676294, "1/115-6/115"], +[-37.7911833333, 175.2701842667, "15E"], +[-37.7903578833, 175.2701176333, "10"], +[-37.7956743833, 175.2681650167, "3/119B"], +[-37.7908564, 175.26993365, "15A"], +[-37.79107255, 175.27015945, "15D"], +[-37.790934, 175.2690719333, "24"], +[-37.7921036833, 175.26811575, "54"], +[-37.7913121667, 175.2692522667, "25"], +[-37.79146785, 175.2690330833, "31"], +[-37.7915654, 175.2684760333, "38"], +[-37.7902930667, 175.2702488667, "6"], +[-37.7904787, 175.27063795, "5"], +[-37.7913442833, 175.2691885167, "29"], +[-37.7924842333, 175.2683823167, "57"], +[-37.79217625, 175.2685814, "51"], +[-37.7922595167, 175.2680146167, "58"], +[-37.7937911, 175.2672499, "92"], +[-37.7910501333, 175.2676471667, "8/40"], +[-37.7959742667, 175.2680815667, "5/123"], +[-37.7955454833, 175.2671662167, "118"], +[-37.7945168833, 175.26763905, "103"], +[-37.7957376333, 175.267169, "120"], +[-37.7913992667, 175.2680529167, "1/40"], +[-37.79600715, 175.2676413667, "123A"], +[-37.7909980833, 175.2700842, "15C"], +[-37.7913731833, 175.26984385, "1/19-3/19"], +[-37.79065155, 175.2703049333, "9"], +[-37.7907815, 175.2700878167, "11"], +[-37.7920768833, 175.2695173833, "35A"], +[-37.790419, 175.2699406833, "12"], +[-37.79177875, 175.2691716, "33B"], +[-37.7910507333, 175.26966905, "17"], +[-37.7945176833, 175.2672109667, "104"], +[-37.7907411167, 175.26942155, "18"], +[-37.79092935, 175.2700107, "15B"], +[-37.7909153833, 175.2673870833, "12/40"], +[-37.7925730667, 175.2686103, "59"], +[-37.7912811833, 175.2697132167, "21A"], +[-37.7908322333, 175.27027695, "11A"], +[-37.79109435, 175.2695543, "21"], +[-37.7923164, 175.26848, "53"], +[-37.7908413667, 175.2692341167, "22"], +[-37.7938733667, 175.26764975, "91"], +[-37.7911771167, 175.2694172167, "23"], +[-37.7960790667, 175.2679292667, "3/123"], +[-37.7910411667, 175.2688879, "26"], +[-37.7958169333, 175.2676338333, "1/121-6/121"], +[-37.7913277833, 175.2681088167, "2/40"], +[-37.7931138167, 175.2678940333, "77"], +[-37.7913589, 175.2695503667, "23A"], +[-37.7960495, 175.2677713, "123B"], +[-37.7914436167, 175.2693629667, "27"], +[-37.7918875667, 175.2677045333, "52"], +[-37.7913064667, 175.2677973167, "3/40"], +[-37.7937031, 175.26769175, "89"], +[-37.7916737833, 175.2692805, "31B"], +[-37.79525635, 175.2676327833, "107"], +[-37.7912112, 175.2678676167, "4/40"], +[-37.7943905167, 175.2672293833, "102"], +[-37.7910444, 175.2698247333, "15K"], +[-37.7920694667, 175.2691835, "41"], +[-37.7909587333, 175.26974905, "15L"], +[-37.7956119667, 175.2677527833, "2/119A"], +[-37.79127225, 175.2700382, "15H"], +[-37.79537645, 175.2671818333, "114"], +[-37.7911134667, 175.2698874, "15J"], +[-37.7910353, 175.27032395, "1/11-3/11"], +[-37.7911824167, 175.2699571833, "15I"], +[-37.7918979, 175.2693712, "35"], +[-37.7913510167, 175.27011, "15G"], +[-37.791529, 175.2679109333, "1/42A-4/42A"], +[-37.79130655, 175.2702167833, "15F"], +[-37.7916248333, 175.2689312833, "33"], +[-37.7946406, 175.2672247833, "106"], +[-37.7932289167, 175.2678171, "79"], +[-37.7911572833, 175.2678967833, "5/40"], +[-37.7956692167, 175.2679598167, "1/119B"], +[-37.7920405667, 175.2686724, "47"], +[-37.7922481333, 175.2696859833, "37"], +[-37.7917484667, 175.2683338167, "44"], +[-37.7905663, 175.27049145, "7"], +[-37.7910898167, 175.2673162667, "10/40"], +[-37.7903964667, 175.2707813167, "3"], +[-37.7919001, 175.26876185, "43"], +[-37.7951543333, 175.26724415, "112"], +[-37.7909776333, 175.2673665667, "11/40"], +[-37.79115945, 175.2672661167, "9/40"], +[-37.79287945, 175.26808845, "69"], +[-37.7942450167, 175.2672325667, "100"], +[-37.7921090667, 175.2675489, "60"], +[-37.7927469667, 175.2681764, "65"], +[-37.7911902667, 175.2675545167, "6/40"], +[-37.7925972667, 175.2682998167, "61"], +[-37.7917806167, 175.2677621, "50"], +[-37.7943805833, 175.26763365, "99"], +[-37.7946403667, 175.2676305333, "105"], +[-37.7929902167, 175.2680133833, "73"], +[-37.7911019167, 175.26761545, "7/40"], +[-37.7941003333, 175.2672356167, "98"], +[-37.79405445, 175.2676348833, "95"], +[-37.7942332167, 175.2676224667, "97"], +[-37.79393665, 175.2672376167, "96"], +[-37.7827703167, 175.2757554833, "89"], +[-37.7837858833, 175.2740150333, "121"], +[-37.7833408167, 175.2747836333, "113"], +[-37.7801259667, 175.27922785, "2D"], +[-37.78309895, 175.2752377333, "101"], +[-37.7814883167, 175.2791149, "19"], +[-37.78318675, 175.27509975, "105"], +[-37.7813093167, 175.2790530667, "19A"], +[-37.78059165, 175.2794948833, "1"], +[-37.7816781, 175.2770123667, "50"], +[-37.7813675833, 175.2788727667, "23"], +[-37.7821861, 175.2767580333, "67"], +[-37.78032175, 175.2792955167, "4"], +[-37.7819176833, 175.2764997333, "66"], +[-37.782285, 175.2758868167, "76"], +[-37.7817962667, 175.27670665, "56"], +[-37.7823684, 175.2757651667, "78"], +[-37.7829222667, 175.2747521, "102"], +[-37.7820394333, 175.2762843, "70"], +[-37.7800623167, 175.2794466333, "2A"], +[-37.7822821167, 175.2766091667, "71"], +[-37.7835645167, 175.2736346833, "126"], +[-37.7822715833, 175.27722295, "59"], +[-37.7833653167, 175.2740071833, "118"], +[-37.7831149333, 175.2744390833, "108B"], +[-37.7830159667, 175.2753589667, "97"], +[-37.78315935, 175.27434385, "108A"], +[-37.7820768167, 175.2769058, "63"], +[-37.7834294333, 175.2746224, "115"], +[-37.78140635, 175.2791298333, "19B"], +[-37.78007415, 175.2793181, "2C"], +[-37.7824388333, 175.27561705, "82"], +[-37.7836651, 175.27344465, "130"], +[-37.78250045, 175.2754344667, "86"], +[-37.7799672333, 175.2793958333, "2B"], +[-37.7832614833, 175.2749444333, "109"], +[-37.7801678833, 175.27955955, "2"], +[-37.7826659167, 175.2759428167, "85"], +[-37.78396175, 175.2736755167, "133"], +[-37.78304005, 175.2745473167, "106"], +[-37.7823411833, 175.27648695, "79"], +[-37.7809278833, 175.27888705, "3"], +[-37.78164145, 175.2763774833, "62"], +[-37.7807589667, 175.2786255167, "18"], +[-37.7811812167, 175.27921485, "21"], +[-37.7828152833, 175.2749002333, "96"], +[-37.7819725333, 175.2771041833, "57"], +[-37.78189625, 175.27723745, "55"], +[-37.78081685, 175.2785108833, "20"], +[-37.7834671, 175.2738243833, "122"], +[-37.7239198833, 175.27148345, "16"], +[-37.7247452667, 175.2720703333, "1"], +[-37.7239885, 175.2716867333, "14"], +[-37.7246577667, 175.27250215, "4"], +[-37.7240737833, 175.2718940167, "12"], +[-37.7244152833, 175.2724447833, "6"], +[-37.7238401, 175.2712798167, "18"], +[-37.7237576, 175.27107255, "20"], +[-37.7242706, 175.2722636833, "8"], +[-37.7241651, 175.2720839667, "10"], +[-37.7241171833, 175.2708868667, "13"], +[-37.7241477167, 175.2711699833, "11"], +[-37.7245397333, 175.2721174, "3"], +[-37.7236374167, 175.27092395, "22"], +[-37.7237876333, 175.2708407167, "24"], +[-37.7239325, 175.2707432333, "17"], +[-37.7240778333, 175.2706246, "15"], +[-37.72438525, 175.2718689833, "5"], +[-37.7242129167, 175.27140135, "9"], +[-37.7242947, 175.2716438333, "7"], +[-37.7662839667, 175.2772202, "10"], +[-37.7659618667, 175.2771512167, "6"], +[-37.7662609667, 175.2775189833, "11"], +[-37.7662957333, 175.2769668333, "8A"], +[-37.7660063333, 175.27758365, "7"], +[-37.7663009, 175.2777717833, "9A"], +[-37.76616235, 175.2776079667, "9"], +[-37.7657794, 175.2776253167, "5A"], +[-37.765888, 175.2774213333, "5"], +[-37.7658348333, 175.27711375, "4"], +[-37.76612355, 175.2771974167, "8"], +[-37.7662913333, 175.2773756333, "12"], +[-37.7549831833, 175.2842256167, "6"], +[-37.75494365, 175.2844956333, "4"], +[-37.7554135667, 175.2842373667, "7"], +[-37.7547601, 175.2839007333, "8"], +[-37.7550756833, 175.2840173667, "10"], +[-37.7553373333, 175.28446785, "5"], +[-37.7552207167, 175.2846069, "3"], +[-37.7552723167, 175.2840099333, "11"], +[-37.7551435833, 175.2838281167, "12"], +[-37.7554813833, 175.2840351667, "9"], +[-37.7892188667, 175.3117060833, "3B"], +[-37.7891601667, 175.3123515667, "11B"], +[-37.7893374333, 175.3117824, "3A"], +[-37.7890800833, 175.3123454667, "11C"], +[-37.7891498333, 175.31156775, "3C"], +[-37.7890036333, 175.31233835, "11D"], +[-37.7892393167, 175.31236545, "11"], +[-37.78949775, 175.3122867333, "6"], +[-37.7895234333, 175.31205085, "4"], +[-37.7892574, 175.3119845167, "7"], +[-37.7892592333, 175.31258385, "13"], +[-37.7892287833, 175.3121683, "9"], +[-37.7889618167, 175.31169605, "5"], +[-37.8148969333, 175.2788027167, "30"], +[-37.8144606833, 175.27880785, "19"], +[-37.8145767667, 175.2789331667, "21"], +[-37.8147172167, 175.2791550167, "25"], +[-37.81489795, 175.27835505, "11"], +[-37.8149729, 175.2777916667, "5"], +[-37.8154205, 175.2781995167, "14"], +[-37.81555365, 175.27812485, "12"], +[-37.8146102167, 175.2787736667, "17"], +[-37.8151217667, 175.27881515, "26"], +[-37.81482945, 175.2789882667, "31"], +[-37.81501055, 175.2781873, "9"], +[-37.8148505667, 175.2792816833, "27"], +[-37.81500695, 175.2785655, "24"], +[-37.8156645, 175.2780344833, "10"], +[-37.81502995, 175.2773959, "2"], +[-37.8149227667, 175.27919015, "29"], +[-37.8150829667, 175.2788797333, "28"], +[-37.81506655, 175.2779875833, "7"], +[-37.8151271667, 175.2776158833, "4"], +[-37.8153147167, 175.27853075, "20"], +[-37.8152664667, 175.27801965, "8"], +[-37.8146629833, 175.2789956667, "23"], +[-37.8148371833, 175.2774928, "1"], +[-37.81535905, 175.2784704333, "18"], +[-37.8147963833, 175.2784924, "13"], +[-37.81510465, 175.2784298833, "22"], +[-37.8152063, 175.2782917333, "16"], +[-37.8149040167, 175.2776417333, "3"], +[-37.8146915, 175.2786370667, "15"], +[-37.7807526, 175.2990082333, "2-10"], +[-37.7805855, 175.2990496, "1-9"], +[-37.7136616, 175.22160315, "9A"], +[-37.7132008667, 175.2219325, "8"], +[-37.7136887, 175.22204565, "7"], +[-37.7134017667, 175.2206790833, "9C"], +[-37.71333595, 175.22137835, "9D"], +[-37.7136913167, 175.2209027167, "9B"], +[-37.78313015, 175.2914858, "12"], +[-37.7827276167, 175.2913105833, "6B-6D"], +[-37.7835126833, 175.2913909833, "16"], +[-37.7836565333, 175.2906243, "11A"], +[-37.7829981667, 175.2910630833, "5"], +[-37.7826090167, 175.2907938167, "1A"], +[-37.7833578167, 175.2905910333, "7B"], +[-37.7833663333, 175.2910217167, "9A"], +[-37.7831854667, 175.2910557833, "7"], +[-37.7835435667, 175.290964, "11"], +[-37.78347975, 175.2906324, "9"], +[-37.78297825, 175.2917786333, "10B"], +[-37.78246775, 175.29177905, "4"], +[-37.7825798833, 175.2912038667, "1/2-8/2"], +[-37.7828589, 175.2909540333, "3"], +[-37.7836642333, 175.2913615, "18"], +[-37.78333395, 175.2914333, "14"], +[-37.7826191333, 175.2918635333, "8"], +[-37.7839921333, 175.2912919667, "17"], +[-37.78388595, 175.2910484833, "15"], +[-37.7828756, 175.2913988833, "1/10-3/10"], +[-37.7827235667, 175.290864, "1"], +[-37.7828583167, 175.2918027, "10A"], +[-37.7837450667, 175.2910205667, "13"], +[-37.7249383333, 175.2541014333, "8"], +[-37.7240065, 175.2539636, "26"], +[-37.72508445, 175.2534047333, "3"], +[-37.725267, 175.2536731167, "2"], +[-37.7250161667, 175.2536071833, "5"], +[-37.7241675167, 175.254038, "24"], +[-37.72433, 175.25359355, "17"], +[-37.7247732167, 175.2542009167, "14"], +[-37.72449785, 175.2544383333, "18"], +[-37.7241891, 175.2538772667, "21"], +[-37.7246213, 175.2542227333, "16"], +[-37.7249176333, 175.25447935, "12"], +[-37.72441635, 175.2537753333, "15"], +[-37.7242498833, 175.2541617667, "22"], +[-37.72426225, 175.25377895, "19"], +[-37.7251817, 175.2538364167, "4"], +[-37.72440145, 175.25421125, "20"], +[-37.7252304167, 175.2532047833, "1"], +[-37.7247523833, 175.2534113833, "7"], +[-37.7248963167, 175.25378805, "11"], +[-37.7246916333, 175.2534728167, "9"], +[-37.7249836833, 175.2544719167, "10"], +[-37.7246675833, 175.2538843667, "13"], +[-37.72507345, 175.2539922333, "6"], +[-37.8002455, 175.3136966167, "8"], +[-37.80024395, 175.3144086833, "18"], +[-37.8003081833, 175.3138471833, "10"], +[-37.7998512667, 175.3137626833, "3"], +[-37.79970085, 175.3150372333, "26"], +[-37.8001491833, 175.3135594167, "6"], +[-37.7995287, 175.3150324167, "15"], +[-37.7995631333, 175.3148070833, "13"], +[-37.7996735, 175.3146263167, "11"], +[-37.7994016333, 175.3153082667, "28"], +[-37.8003408167, 175.3140236, "12"], +[-37.7996107667, 175.31360865, "1"], +[-37.7998489333, 175.31445505, "9"], +[-37.7998619333, 175.3148988667, "24"], +[-37.8000247667, 175.3139924, "5"], +[-37.8006700667, 175.3141597167, "14"], +[-37.7999724833, 175.3142788833, "7"], +[-37.8000327333, 175.31346055, "4"], +[-37.8005167167, 175.3142229, "16A"], +[-37.7999907833, 175.314709, "22"], +[-37.8001291333, 175.3145418333, "20"], +[-37.8003126, 175.3142357667, "16"], +[-37.78885495, 175.2735004667, "10"], +[-37.7901544167, 175.27215365, "25B"], +[-37.7892536333, 175.2730783833, "15"], +[-37.79000185, 175.2722717833, "23B"], +[-37.7889424667, 175.2729855167, "16"], +[-37.78918945, 175.2735859, "9"], +[-37.7914312, 175.2711653167, "37"], +[-37.79010295, 175.2721902667, "25A"], +[-37.7911885, 175.2707938833, "38"], +[-37.7902104, 175.27211575, "25C"], +[-37.7915682167, 175.2710397333, "39"], +[-37.7899298333, 175.2723273167, "23A"], +[-37.7910460833, 175.2709293833, "36"], +[-37.7902444333, 175.2723212833, "23D"], +[-37.7913611167, 175.2706459167, "40"], +[-37.7899949333, 175.27250895, "25F"], +[-37.7915784833, 175.2707989667, "42"], +[-37.7903071167, 175.27228645, "23C"], +[-37.7897697333, 175.2729252167, "19A"], +[-37.7901940667, 175.2723593667, "23E"], +[-37.7891390833, 175.273922, "1/5-4/5"], +[-37.7891621167, 175.2737629333, "7A-7E"], +[-37.78909265, 175.2725066833, "1/22-4/22"], +[-37.7892262167, 175.2734017333, "11A-11C"], +[-37.7888884833, 175.2733265, "12"], +[-37.7892641667, 175.2732126667, "13"], +[-37.7889095, 175.2731548833, "14"], +[-37.7892912167, 175.2728799833, "17"], +[-37.7889638833, 175.272841, "18"], +[-37.7894179, 175.2727353667, "19"], +[-37.7909314667, 175.2715319, "31"], +[-37.7898038, 175.2724135667, "21"], +[-37.7896245667, 175.2720619167, "26"], +[-37.7902952, 175.2719803, "27"], +[-37.7897108167, 175.2719891167, "28"], +[-37.7899573167, 175.2717767167, "30A"], +[-37.79002715, 175.2717223167, "30B"], +[-37.7898296333, 175.2718851167, "30"], +[-37.7893361333, 175.2742695333, "1"], +[-37.7889762833, 175.2726871833, "20"], +[-37.78924175, 175.2723841833, "24"], +[-37.7887457167, 175.2741801167, "2"], +[-37.7907036667, 175.2711820167, "32"], +[-37.7911647, 175.2713539167, "33A"], +[-37.7909687167, 175.2709976167, "34"], +[-37.7913017333, 175.2712809667, "35"], +[-37.7891068667, 175.2740943833, "3"], +[-37.7887795833, 175.2740051, "4"], +[-37.7888301333, 175.27367415, "8"], +[-37.7888011167, 175.2738423667, "6"], +[-37.7900464833, 175.2724680667, "25E"], +[-37.7901172167, 175.2724249667, "25D"], +[-37.7639403333, 175.2934941, "20"], +[-37.7646583167, 175.2925798167, "2"], +[-37.7640293333, 175.2924089667, "9B"], +[-37.7644390667, 175.2921865833, "3"], +[-37.7641108167, 175.2929091833, "14"], +[-37.7634897167, 175.2939862167, "29"], +[-37.7637414833, 175.2931214667, "19"], +[-37.7635471667, 175.2938032833, "27"], +[-37.7638352333, 175.2927996833, "15"], +[-37.76382905, 175.2938208, "24"], +[-37.7641188333, 175.29233105, "9A"], +[-37.7636447167, 175.2934710167, "23"], +[-37.7642709, 175.2917994667, "5"], +[-37.7634394833, 175.2941685167, "31"], +[-37.7636930167, 175.2932922667, "21"], +[-37.7640403, 175.29316345, "16"], +[-37.764229, 175.2922408167, "7"], +[-37.7637826167, 175.292972, "17"], +[-37.7638821, 175.29365255, "22"], +[-37.7639664667, 175.29250645, "13"], +[-37.7639864, 175.2933321667, "18"], +[-37.7643781333, 175.29257985, "6"], +[-37.7641907333, 175.29273335, "8"], +[-37.7635971, 175.29364475, "25"], +[-37.76378135, 175.2940164333, "26"], +[-37.76390105, 175.2926451333, "13A"], +[-37.7645931833, 175.29221365, "1"], +[-37.8011497, 175.3296237333, "9"], +[-37.80146805, 175.32934505, "11"], +[-37.8007821333, 175.3290436333, "3"], +[-37.80095575, 175.3287142333, "8"], +[-37.8005507667, 175.3289899167, "1"], +[-37.80160875, 175.3301769833, "28"], +[-37.8006340333, 175.3286077, "4"], +[-37.8016484667, 175.3299560667, "26"], +[-37.8008100667, 175.3286602167, "6"], +[-37.8013336833, 175.3299783, "15"], +[-37.8011745667, 175.3291571167, "7"], +[-37.8014156667, 175.3288905667, "14"], +[-37.8011174833, 175.3287697333, "10"], +[-37.8014505833, 175.3296971, "13"], +[-37.8010002, 175.3291148167, "5"], +[-37.80126715, 175.3288189, "12"], +[-37.8017091667, 175.3297177333, "24"], +[-37.80156115, 175.3289774667, "16"], +[-37.8017381167, 175.3295378667, "22"], +[-37.8013405167, 175.3301829, "17"], +[-37.8017662667, 175.32931895, "20"], +[-37.8014402, 175.3302708833, "19"], +[-37.8015818667, 175.3304075, "30"], +[-37.8015291833, 175.3306733333, "32"], +[-37.7886942667, 175.2405420667, "7"], +[-37.7876744833, 175.2404734333, "20"], +[-37.7878169667, 175.24013195, "17"], +[-37.7874860167, 175.2399905833, "21"], +[-37.7888683333, 175.2406222667, "5"], +[-37.7875181333, 175.24039775, "22"], +[-37.7887506667, 175.2409972, "6"], +[-37.7872996333, 175.23995555, "23"], +[-37.7878001167, 175.2408883, "16"], +[-37.7873714, 175.2403368, "24"], +[-37.7885023833, 175.24045635, "9A"], +[-37.7892844833, 175.2406952333, "1"], +[-37.789027, 175.2410425167, "4"], +[-37.78712445, 175.2398495333, "25"], +[-37.78904235, 175.2406618667, "3"], +[-37.78853235, 175.2402295333, "9B"], +[-37.7880518, 175.2406392333, "12"], +[-37.7876619167, 175.2400424333, "19"], +[-37.7879751833, 175.2402135333, "15"], +[-37.7878484833, 175.2405496833, "18"], +[-37.7883260667, 175.2403598667, "11"], +[-37.7878925333, 175.2409355333, "14"], +[-37.78872845, 175.2403182667, "7A"], +[-37.7881516167, 175.2402877833, "13"], +[-37.7883651167, 175.24079835, "8"], +[-37.7882148833, 175.2407191833, "10"], +[-37.8160055667, 175.2774338, "13"], +[-37.8158597167, 175.2773998667, "12"], +[-37.8161017333, 175.2771943833, "15"], +[-37.8154761667, 175.2775767167, "6"], +[-37.8158403833, 175.2775652167, "11"], +[-37.8158288333, 175.27771295, "9"], +[-37.8159607833, 175.27729095, "14"], +[-37.8153088, 175.2779126, "1"], +[-37.8157236167, 175.2774656667, "10"], +[-37.8152416333, 175.2776918833, "2"], +[-37.8154419, 175.2778501333, "3"], +[-37.81538715, 175.2775846667, "4"], +[-37.8155764667, 175.2777877333, "5"], +[-37.8157491, 175.2778259333, "7"], +[-37.8156513667, 175.27749395, "8"], +[-37.8069594, 175.2685303, "2"], +[-37.8062556833, 175.2690607333, "11A"], +[-37.8062944167, 175.2679471, "12"], +[-37.8044939667, 175.3272021333, "13"], +[-37.8045931, 175.3276193833, "9"], +[-37.80438035, 175.3270964, "14"], +[-37.8047302167, 175.3279371, "7A"], +[-37.8042132333, 175.3277522333, "8"], +[-37.8041559667, 175.32793015, "6"], +[-37.8046050667, 175.3273994667, "11"], +[-37.8042697, 175.3275627167, "10"], +[-37.8043202667, 175.3284247, "1"], +[-37.8041135333, 175.3281098333, "4"], +[-37.8043792167, 175.32822765, "3"], +[-37.8044295333, 175.3280239333, "5"], +[-37.80450075, 175.3278400167, "7"], +[-37.8043302167, 175.327339, "12"], +[-37.7340044667, 175.2472420167, "27"], +[-37.7348691167, 175.2478856833, "2"], +[-37.7349954333, 175.2473596167, "9"], +[-37.7345827333, 175.2470909, "21"], +[-37.7347293833, 175.2472834667, "8"], +[-37.7341923333, 175.24715885, "25"], +[-37.73486645, 175.2470755, "17"], +[-37.7351003833, 175.2478876, "1"], +[-37.7350791167, 175.2476877667, "7"], +[-37.7350423, 175.2471040333, "13"], +[-37.7336662167, 175.2473412833, "31"], +[-37.7352892167, 175.24767185, "5"], +[-37.7343826, 175.2470932333, "23"], +[-37.7350645833, 175.24716945, "11"], +[-37.73530555, 175.2477581, "3"], +[-37.7347904167, 175.2474754833, "6"], +[-37.7348454667, 175.24769495, "4"], +[-37.7338269333, 175.247294, "29"], +[-37.7347252333, 175.2471181667, "19"], +[-37.7350307, 175.2468593333, "15"], +[-37.8124290167, 175.2674306833, "42A"], +[-37.8111133833, 175.2667286333, "30"], +[-37.8124544167, 175.2670662667, "42B"], +[-37.8129702, 175.2670294667, "44"], +[-37.8084651833, 175.2687039333, "3"], +[-37.8114274, 175.2678838667, "32"], +[-37.81272505, 175.2691750667, "45-59"], +[-37.8117699, 175.26786855, "36"], +[-37.8130366167, 175.2676921, "46-56"], +[-37.8089714833, 175.2686535167, "5"], +[-37.8080597167, 175.2687379, "1"], +[-37.8094529667, 175.2686597333, "11"], +[-37.81161525, 175.2678826, "34"], +[-37.8091106833, 175.2686505667, "7"], +[-37.80903875, 175.2682470167, "4"], +[-37.8097744167, 175.2686419333, "13"], +[-37.8080532833, 175.2683017667, "2"], +[-37.8099940333, 175.2702677667, "15"], +[-37.8122299833, 175.2669239667, "40"], +[-37.8096283667, 175.2680797833, "10-16"], +[-37.8104993167, 175.2679168667, "18-28"], +[-37.8110279333, 175.2687686, "17-43"], +[-37.768327, 175.2921241, "1B"], +[-37.7680356667, 175.2918367333, "6"], +[-37.7681538167, 175.2922896333, "2"], +[-37.7682919, 175.2917504, "5"], +[-37.7680744, 175.29206785, "4"], +[-37.7683411, 175.2919405, "3"], +[-37.7684871667, 175.2916184667, "5A"], +[-37.7683465833, 175.2922047833, "1A"], +[-37.7681686667, 175.2917113667, "7"], +[-37.7709671833, 175.25259695, "34"], +[-37.7718123, 175.2528370833, "25A"], +[-37.7734864167, 175.2556808, "4"], +[-37.77063955, 175.2515822667, "54"], +[-37.7728613333, 175.2551050833, "8"], +[-37.7708400167, 175.2510260333, "53"], +[-37.7736729833, 175.25535415, "3"], +[-37.7714519, 175.25345365, "20A"], +[-37.7733678, 175.25555885, "6"], +[-37.7715517333, 175.25366905, "20"], +[-37.7708773833, 175.25241665, "36"], +[-37.7718699333, 175.2535255333, "21"], +[-37.7727050667, 175.2550639, "10"], +[-37.7713617667, 175.2533202833, "22"], +[-37.7719894667, 175.2532317333, "23A"], +[-37.7717699667, 175.2533462333, "23"], +[-37.7716587, 175.2532086167, "25"], +[-37.7720813, 175.2546938667, "14"], +[-37.7724544667, 175.2545055833, "15"], +[-37.7719532, 175.2544958833, "16"], +[-37.7721588167, 175.2540961333, "17A"], +[-37.7722213333, 175.2542298, "17"], +[-37.7721110167, 175.2540098667, "19"], +[-37.7726727333, 175.2545935667, "11"], +[-37.7712922833, 175.2524330333, "37"], +[-37.7707682, 175.25222145, "38"], +[-37.7712074, 175.2522744667, "39"], +[-37.7711164333, 175.2521159333, "41"], +[-37.7710370333, 175.2519642833, "43"], +[-37.7715677833, 175.2529289833, "27"], +[-37.7714714, 175.2527448833, "31"], +[-37.77138645, 175.2526016667, "35"], +[-37.7706887, 175.2520163833, "40"], +[-37.7706551333, 175.2518252, "42"], +[-37.77034525, 175.2518351667, "44"], +[-37.7709796167, 175.2517509833, "45"], +[-37.77095305, 175.2515343833, "47"], +[-37.7700803667, 175.25192185, "48"], +[-37.7701550167, 175.25179165, "50"], +[-37.7703374667, 175.25169785, "52"], +[-37.7709271667, 175.2513855167, "49"], +[-37.7709109, 175.2511291833, "51"], +[-37.7725115667, 175.2549435, "12"], +[-37.7701637, 175.2519207833, "46"], +[-37.7341245833, 175.2629773167, "19"], +[-37.7356053, 175.2636571667, "1"], +[-37.7336428, 175.2636822, "26"], +[-37.7314505833, 175.2625772, "39"], +[-37.7354910833, 175.2636131667, "3"], +[-37.73508275, 175.2642359333, "8"], +[-37.7337941, 175.2636819333, "24"], +[-37.7340827167, 175.2633577167, "20"], +[-37.7336308833, 175.26293865, "25"], +[-37.7349824833, 175.2638037833, "12"], +[-37.7326103833, 175.2629621833, "31"], +[-37.7340320667, 175.2637745667, "18"], +[-37.7336754833, 175.2633178167, "28"], +[-37.7332982333, 175.2634033333, "32"], +[-37.7334766333, 175.2633749, "30"], +[-37.7346434167, 175.2631974167, "15"], +[-37.73165115, 175.262625, "37"], +[-37.7348942167, 175.2633254, "13"], +[-37.7324260167, 175.26287085, "33"], +[-37.73511965, 175.2634555, "7"], +[-37.7350541667, 175.2630893167, "11"], +[-37.7351494833, 175.2642457667, "6"], +[-37.7354369667, 175.2640081333, "2"], +[-37.7338776333, 175.2633032833, "22"], +[-37.7353096167, 175.2635497833, "5"], +[-37.7337379333, 175.2629278667, "23"], +[-37.7328653333, 175.2630740167, "29"], +[-37.7351243833, 175.2638670833, "10"], +[-37.7339069333, 175.26292965, "21"], +[-37.7351206333, 175.2631105833, "9"], +[-37.73427925, 175.2634171333, "16"], +[-37.7353041833, 175.2639711667, "4"], +[-37.734385, 175.2630772833, "17"], +[-37.7290235, 175.2646583833, "7"], +[-37.72910415, 175.2641864167, "6"], +[-37.7291252667, 175.2639436, "4"], +[-37.7289199333, 175.2645457833, "5"], +[-37.7288258833, 175.2643585, "3"], +[-37.7290757333, 175.264388, "8"], +[-37.7588509333, 175.2969767833, "268A"], +[-37.7644889, 175.2981353333, "181A"], +[-37.7586950333, 175.296483, "272"], +[-37.7609789167, 175.2979222167, "236"], +[-37.7669424333, 175.2996978333, "143"], +[-37.7618659167, 175.2978759, "220"], +[-37.7668029167, 175.29963795, "145"], +[-37.7598018333, 175.2969661667, "260"], +[-37.7668538167, 175.3000888333, "146A"], +[-37.76457735, 175.2982527333, "173A"], +[-37.7671301, 175.2995010833, "141A"], +[-37.7596399667, 175.2964372667, "253"], +[-37.7670981167, 175.2998213833, "141"], +[-37.7636016, 175.2981934333, "191"], +[-37.7670269, 175.3001812833, "144"], +[-37.7655191667, 175.2990501167, "161"], +[-37.7654445833, 175.2999038667, "2/166"], +[-37.7680794833, 175.3006768833, "134A"], +[-37.7711368, 175.3015653667, "89"], +[-37.7672632833, 175.3003074833, "142A"], +[-37.7661658333, 175.2991396, "155A"], +[-37.7662336, 175.2993818167, "153"], +[-37.76235215, 175.2976554, "213"], +[-37.7625514, 175.2981813667, "204B"], +[-37.7592177167, 175.2971405, "264A"], +[-37.7604433167, 175.2967902333, "239"], +[-37.7594298333, 175.296794, "264"], +[-37.75799925, 175.29615675, "284"], +[-37.7587836833, 175.2960558333, "265"], +[-37.7566940667, 175.2955854833, "308"], +[-37.76730495, 175.3007122, "140A"], +[-37.7635229333, 175.29863355, "196A"], +[-37.7592303333, 175.2967150167, "266A"], +[-37.7581477833, 175.2962341667, "280"], +[-37.7585053333, 175.2959301167, "269"], +[-37.7599679667, 175.29703895, "258"], +[-37.7588618833, 175.29655645, "270"], +[-37.7626756333, 175.2982192667, "204A"], +[-37.7711699, 175.3013887167, "89A"], +[-37.7744440833, 175.3024470333, "31"], +[-37.7642478167, 175.2990077333, "182A"], +[-37.7599874833, 175.2965940833, "245"], +[-37.7643392333, 175.2989661833, "182B"], +[-37.7718710667, 175.30189175, "65A"], +[-37.7623069833, 175.2982793167, "212"], +[-37.7593238667, 175.29630445, "257"], +[-37.7695002833, 175.3008188333, "109"], +[-37.76671155, 175.3003003, "146"], +[-37.7583751, 175.2958639, "271"], +[-37.7731718, 175.3022458833, "47B"], +[-37.7672011833, 175.3004948, "142"], +[-37.76816825, 175.30024905, "123"], +[-37.76344635, 175.2981494333, "193"], +[-37.7594649833, 175.2963604167, "255"], +[-37.7636277167, 175.2986872167, "194"], +[-37.7596021333, 175.29687355, "262"], +[-37.7634152167, 175.29779045, "195"], +[-37.7503132, 175.2943536333, "386"], +[-37.763399, 175.2988579333, "196"], +[-37.7515105667, 175.2946544833, "370"], +[-37.7632532833, 175.2980442667, "197"], +[-37.7608281333, 175.29658095, "235"], +[-37.7633533667, 175.2985594, "198"], +[-37.7666592667, 175.29956515, "147"], +[-37.76308445, 175.2979624667, "199"], +[-37.7742877667, 175.3024496333, "33"], +[-37.7637954, 175.29876385, "192"], +[-37.7726443167, 175.3022193, "55"], +[-37.7615849333, 175.2981923833, "224"], +[-37.7620079167, 175.29793995, "218"], +[-37.7612824833, 175.2971708833, "225"], +[-37.7568321, 175.295642, "306"], +[-37.76148075, 175.2981573333, "226"], +[-37.76462175, 175.2991134333, "178A"], +[-37.7615283167, 175.29773265, "228"], +[-37.7643911, 175.2985533, "181"], +[-37.7610265833, 175.2970544667, "229"], +[-37.77286465, 175.30231815, "49A"], +[-37.76139315, 175.2976782667, "230"], +[-37.7570106833, 175.29571715, "302"], +[-37.7612525667, 175.2976214667, "232"], +[-37.75776265, 175.2964289833, "286"], +[-37.7607907333, 175.2969666667, "233"], +[-37.7732309333, 175.3025009667, "45"], +[-37.76110085, 175.29753955, "234"], +[-37.77239625, 175.3021127167, "57"], +[-37.7632087, 175.2984132, "202"], +[-37.7625644667, 175.2977356667, "209"], +[-37.7684508167, 175.30036, "119"], +[-37.7571707, 175.2957727, "300"], +[-37.768357, 175.3009787167, "130A"], +[-37.7605976667, 175.29689515, "237"], +[-37.7683206333, 175.30114495, "130B"], +[-37.7565723, 175.2955304, "310"], +[-37.7682950167, 175.3012526333, "130C"], +[-37.75991695, 175.2961979833, "249"], +[-37.7683203, 175.3003087833, "121"], +[-37.7696512167, 175.3008929167, "107"], +[-37.76845165, 175.3008389833, "130"], +[-37.7645334833, 175.2986108833, "173"], +[-37.76825105, 175.3007448, "132"], +[-37.7573111333, 175.29584905, "298"], +[-37.7679009667, 175.3005792833, "136"], +[-37.7588626667, 175.29591875, "265B"], +[-37.7685956833, 175.3004180833, "117"], +[-37.76408525, 175.2988856667, "184A"], +[-37.7676767833, 175.3004846167, "138"], +[-37.7649083333, 175.2992521667, "174"], +[-37.76725325, 175.2998422, "139"], +[-37.7600255167, 175.29624275, "247"], +[-37.7653955167, 175.29900605, "163"], +[-37.7640251833, 175.2990612833, "184"], +[-37.7657956167, 175.2996476, "164"], +[-37.7715530833, 175.3017556333, "87A"], +[-37.7653548167, 175.2998265167, "166A"], +[-37.7676327667, 175.299646, "131A"], +[-37.76523775, 175.2998006333, "166B"], +[-37.759582, 175.2973053, "260A"], +[-37.76560195, 175.29955585, "166"], +[-37.7741037833, 175.3024542167, "35"], +[-37.7653891333, 175.2995980667, "168A"], +[-37.7661712167, 175.2998057, "152"], +[-37.7653638333, 175.2994516833, "168"], +[-37.76171785, 175.29780865, "222"], +[-37.7651908167, 175.2993839, "170"], +[-37.7659959167, 175.29973795, "162"], +[-37.7650437667, 175.2993134, "172"], +[-37.7654964333, 175.2997200667, "1/166"], +[-37.77098, 175.3014932667, "91A"], +[-37.7676420167, 175.3000055333, "131C"], +[-37.7711290667, 175.3013507833, "91B"], +[-37.7730534833, 175.3023945833, "47"], +[-37.7709057833, 175.3011963, "93A"], +[-37.7659607667, 175.3001113833, "160"], +[-37.77082365, 175.3014245, "93"], +[-37.7739503667, 175.3024666667, "37"], +[-37.7706981833, 175.30135725, "95"], +[-37.7678033333, 175.2996484167, "131D"], +[-37.7705573667, 175.3012942167, "99"], +[-37.7646694, 175.29866935, "175"], +[-37.7636619, 175.2990193667, "192B"], +[-37.7591917833, 175.2962470167, "259"], +[-37.7642298667, 175.2984821167, "183"], +[-37.7629388333, 175.2979036333, "203"], +[-37.7657687, 175.2991710333, "159"], +[-37.7624561667, 175.2983342, "204C"], +[-37.7642840167, 175.2981923667, "183B"], +[-37.7589108333, 175.2959323833, "265A"], +[-37.7621636167, 175.2980162167, "216"], +[-37.7665132667, 175.2995051167, "149"], +[-37.7623523833, 175.29810585, "214"], +[-37.77170605, 175.3018191, "65B"], +[-37.7582329, 175.2958079167, "273"], +[-37.7679713333, 175.3010374333, "134C"], +[-37.7658485333, 175.2989765667, "159A"], +[-37.7663776667, 175.2994414, "151"], +[-37.7644786667, 175.2990640833, "180"], +[-37.7611716167, 175.29712715, "225A"], +[-37.7659222667, 175.29923305, "157"], +[-37.75905655, 175.29617285, "261"], +[-37.7639269833, 175.2983433833, "187"], +[-37.7622423833, 175.2976069833, "215"], +[-37.76409, 175.2984239167, "185"], +[-37.76211265, 175.2975521333, "217"], +[-37.7645932167, 175.2994317667, "178"], +[-37.7674399667, 175.2999311833, "137"], +[-37.75905945, 175.2966435667, "268"], +[-37.7608565833, 175.2978768833, "238"], +[-37.7591452, 175.2968511667, "266B"], +[-37.7670350333, 175.3004376, "144A"], +[-37.7672369167, 175.30065855, "142B"], +[-37.7599493333, 175.2974751833, "256"], +[-37.7601510167, 175.29711875, "254"], +[-37.7638144667, 175.2992105833, "186A"], +[-37.7674855, 175.30039865, "140"], +[-37.7700038333, 175.3010443, "101"], +[-37.77164615, 175.3016662667, "87"], +[-37.7700326833, 175.30067175, "103"], +[-37.7713139667, 175.3016566, "87B"], +[-37.7622761333, 175.2983974333, "210"], +[-37.7589196333, 175.2961092333, "263"], +[-37.7601894167, 175.2963822833, "243B"], +[-37.7603174333, 175.2971956667, "252"], +[-37.7623691167, 175.2984063167, "204"], +[-37.7603054833, 175.29671785, "241"], +[-37.7578285667, 175.2964743167, "282"], +[-37.7609196333, 175.2974525167, "240"], +[-37.7597869667, 175.2964963833, "251"], +[-37.7602511167, 175.2975905167, "250"], +[-37.767801, 175.3000635167, "129"], +[-37.7607958833, 175.2973917333, "242"], +[-37.7679999667, 175.30084425, "134B"], +[-37.7603527, 175.2976306667, "248"], +[-37.7738107667, 175.3024726167, "39"], +[-37.7606409167, 175.2973262833, "244"], +[-37.7639413667, 175.2992288167, "184B"], +[-37.75833165, 175.29677235, "276"], +[-37.7627983167, 175.29783165, "205"], +[-37.7585219, 175.2964108, "274"], +[-37.7680507167, 175.3001877833, "125"], +[-37.7586550167, 175.2959973, "267"], +[-37.7520680333, 175.2948297833, "360"], +[-37.75809585, 175.2957390833, "275"], +[-37.7642150333, 175.2992847333, "182"], +[-37.75721455, 175.2962374667, "296"], +[-37.7666718667, 175.3000208333, "148"], +[-37.7583026167, 175.296309, "278"], +[-37.7660767667, 175.2993023, "155"], +[-37.7579582833, 175.2956784333, "277"], +[-37.7736563, 175.302463, "41"], +[-37.7572948, 175.2962850833, "294"], +[-37.76244415, 175.2976786833, "211"], +[-37.7578092333, 175.2960723333, "288"], +[-37.7697945833, 175.3009617667, "105"], +[-37.7574933167, 175.2959288333, "292"], +[-37.76375285, 175.2982616, "189"], +[-37.7576482333, 175.2960032167, "290"], +[-37.75681385, 175.2961005333, "304"], +[-37.7604870333, 175.2972682167, "246"], +[-37.7601551833, 175.29665645, "243"], +[-37.7679248167, 175.3001231167, "127"], +[-37.7639297833, 175.2988213333, "186"], +[-37.7626531833, 175.2977811333, "207"], +[-37.7647644833, 175.2991871667, "176"], +[-37.77299045, 175.30213005, "49B"], +[-37.7717393, 175.3012416833, "69"], +[-37.77349245, 175.3024598, "43"], +[-37.8006395667, 175.2526954167, "2"], +[-37.8008960333, 175.2526032167, "6"], +[-37.8014613833, 175.25215395, "16"], +[-37.8013825833, 175.2526134833, "9"], +[-37.8018182667, 175.2523962, "15"], +[-37.8013097167, 175.2522904167, "14"], +[-37.8009737333, 175.2523386, "8"], +[-37.8007578167, 175.25264895, "4"], +[-37.8010805333, 175.2527794, "5"], +[-37.8016733833, 175.2520316667, "20"], +[-37.80093055, 175.2528610167, "3"], +[-37.8015698333, 175.2520844667, "18"], +[-37.8012258333, 175.2527060167, "7"], +[-37.8011220333, 175.2524768667, "12"], +[-37.8015348833, 175.2525208333, "11"], +[-37.8016129833, 175.2522780833, "19"], +[-37.80181615, 175.25229015, "17"], +[-37.8010483833, 175.2523014667, "10"], +[-37.8016537, 175.2524466, "13"], +[-37.7935973167, 175.3268901, "138"], +[-37.79638135, 175.3194421333, "38"], +[-37.79447015, 175.3225966333, "77"], +[-37.7962226667, 175.3195601, "40"], +[-37.79430865, 175.3232726833, "79"], +[-37.79311675, 175.32811405, "150"], +[-37.79822325, 175.31826515, "18A"], +[-37.7983581333, 175.3172458167, "11"], +[-37.7980784167, 175.3180147333, "18"], +[-37.7940793333, 175.3259792167, "128A"], +[-37.7977644833, 175.3182757, "22"], +[-37.7976048833, 175.3184019833, "1/24-3/24"], +[-37.79635245, 175.3189847667, "33"], +[-37.7940421333, 175.3253912, "124"], +[-37.7944445667, 175.3240981, "114"], +[-37.7946733833, 175.3231585833, "104"], +[-37.7943894333, 175.32426015, "116"], +[-37.79357585, 175.3278846333, "146A"], +[-37.7943343167, 175.3244452667, "118"], +[-37.7959314833, 175.3198194, "48"], +[-37.7941984833, 175.3249166667, "120"], +[-37.7950684, 175.3201658667, "51"], +[-37.79467155, 175.3216649167, "67"], +[-37.7990228167, 175.31714585, "4"], +[-37.7946356167, 175.32185675, "69"], +[-37.7939768167, 175.3256, "126"], +[-37.7945934, 175.3220553667, "71"], +[-37.7985362167, 175.3175801167, "8"], +[-37.7945537667, 175.3222365667, "73"], +[-37.7947552667, 175.3212824, "63"], +[-37.7945101333, 175.3224118, "75"], +[-37.7949512833, 175.3218702667, "90"], +[-37.794268, 175.3234426167, "81"], +[-37.7934042667, 175.3282648167, "150A"], +[-37.7942404167, 175.3236128667, "83"], +[-37.7939151667, 175.3258230167, "128"], +[-37.7941960167, 175.3237986, "85"], +[-37.7950047, 175.3216812667, "88"], +[-37.7941485167, 175.3239706333, "87"], +[-37.7947502833, 175.3227856833, "100"], +[-37.7940908333, 175.32415585, "89"], +[-37.79458445, 175.3235313167, "108"], +[-37.7936644167, 175.3266741333, "136"], +[-37.7930371, 175.3283121333, "152A"], +[-37.79374315, 175.32718815, "140A"], +[-37.7969142333, 175.3184704, "25"], +[-37.7937240167, 175.3264533167, "134"], +[-37.7987982333, 175.31687135, "5"], +[-37.7937691, 175.3270455667, "138A"], +[-37.79662555, 175.3184028333, "27A"], +[-37.7938933167, 175.3266078167, "134A"], +[-37.7982202833, 175.3173826333, "13"], +[-37.79777465, 175.3170738833, "17"], +[-37.7950196667, 175.3215538667, "86"], +[-37.79662605, 175.3187213333, "29"], +[-37.7941679, 175.3257087333, "126A"], +[-37.7960536833, 175.3197039667, "46"], +[-37.7928607667, 175.3278750667, "153"], +[-37.79568865, 175.3200301667, "52"], +[-37.7932903667, 175.3277009, "146"], +[-37.7947885, 175.3226051167, "98"], +[-37.7985818, 175.3165344833, "5A"], +[-37.7948348833, 175.3224245667, "96"], +[-37.7941105, 175.3251708167, "122"], +[-37.7963121833, 175.3199885667, "44"], +[-37.7949914333, 175.3203399, "53"], +[-37.7955565667, 175.3201385833, "54"], +[-37.7964935333, 175.3188479667, "31"], +[-37.7963692833, 175.3199026333, "42"], +[-37.79403455, 175.3243290333, "91"], +[-37.7962004833, 175.3191144167, "35"], +[-37.7952706333, 175.3214175333, "84"], +[-37.7937897833, 175.3262374333, "132"], +[-37.7946324333, 175.3233374333, "106"], +[-37.7978593333, 175.3176844, "21"], +[-37.7939918667, 175.3262810333, "132A"], +[-37.7982300333, 175.3178830667, "16"], +[-37.7942781667, 175.3254286333, "124A"], +[-37.7978746333, 175.3169809667, "15"], +[-37.7947157833, 175.32146875, "65"], +[-37.7979965167, 175.3175630833, "19"], +[-37.7936555333, 175.3276763167, "144A"], +[-37.7968898333, 175.3190029833, "32"], +[-37.7992068333, 175.3169916667, "2"], +[-37.79783405, 175.3173500667, "19A"], +[-37.7955969833, 175.3196471167, "39"], +[-37.7970883, 175.3188340667, "30"], +[-37.7934822167, 175.3280697833, "148B"], +[-37.7938619667, 175.3260334333, "130"], +[-37.79337715, 175.3275030667, "144"], +[-37.7940085167, 175.3261483333, "130A"], +[-37.7989779667, 175.3167221, "3"], +[-37.7979120167, 175.3185479333, "22A"], +[-37.7949633333, 175.3228657167, "100A"], +[-37.7974936667, 175.3179879, "23"], +[-37.7988629333, 175.3172758167, "6"], +[-37.7977104667, 175.3178024167, "23A"], +[-37.7954275, 175.3206656333, "58"], +[-37.7934584833, 175.3273161167, "142"], +[-37.7983922, 175.3177009333, "10"], +[-37.7935320167, 175.32710525, "140"], +[-37.7938496, 175.3267635667, "136A"], +[-37.79309095, 175.3284541833, "152B"], +[-37.7979194833, 175.3181445, "20"], +[-37.7944992833, 175.3239225833, "112"], +[-37.7953398333, 175.3210624, "82"], +[-37.7967865333, 175.3185821333, "27"], +[-37.7985018, 175.3171416167, "9"], +[-37.7947080333, 175.32296365, "102"], +[-37.7986494167, 175.31700325, "7"], +[-37.7932029667, 175.3279011667, "148"], +[-37.7960943, 175.3186713833, "33A"], +[-37.7945377, 175.323739, "110"], +[-37.7958221167, 175.3199259333, "50"], +[-37.7949083667, 175.3220627833, "92"], +[-37.79487075, 175.3222417167, "94"], +[-37.72860685, 175.2827264667, "7"], +[-37.7285422333, 175.2825064667, "9"], +[-37.7284994667, 175.2823452833, "11"], +[-37.7284094667, 175.2822357833, "13"], +[-37.7282618833, 175.2821219667, "15"], +[-37.7280839167, 175.2819901833, "17"], +[-37.7279345667, 175.2817770667, "19"], +[-37.7279448667, 175.2814675667, "21"], +[-37.7277460667, 175.2815965333, "23"], +[-37.7275850833, 175.2815718333, "25"], +[-37.7274198667, 175.28156635, "27"], +[-37.7272526, 175.2814736667, "24"], +[-37.7270814167, 175.2817536333, "20"], +[-37.7273032667, 175.2818094, "18"], +[-37.72715755, 175.2816060833, "22"], +[-37.7285373667, 175.2831066167, "3"], +[-37.7279085667, 175.2822845333, "10"], +[-37.7283024167, 175.2827575167, "4"], +[-37.7277693333, 175.2821395167, "12"], +[-37.7276061167, 175.2820372833, "14"], +[-37.7274744667, 175.2818973667, "16"], +[-37.7286299, 175.2829112, "5"], +[-37.7280676333, 175.2824011667, "8"], +[-37.7282191, 175.2825126833, "6"], +[-37.7282076333, 175.2830381, "2"], +[-37.8207523167, 175.2980282667, "65"], +[-37.8198018167, 175.2991495167, "47"], +[-37.8191412167, 175.29795775, "32A"], +[-37.81940835, 175.2991188333, "41A"], +[-37.8184705333, 175.2972138833, "22"], +[-37.8199475667, 175.2993582, "49"], +[-37.8186215833, 175.2956657, "11"], +[-37.8197978333, 175.2987186833, "46"], +[-37.8189048167, 175.2979057167, "30"], +[-37.8196727667, 175.2994933333, "45"], +[-37.8182142, 175.29667565, "27"], +[-37.8184536333, 175.2958293167, "15"], +[-37.8193585, 175.2986425, "40"], +[-37.8190599333, 175.2988624167, "39"], +[-37.8185932333, 175.2973905833, "24"], +[-37.8202158833, 175.29811575, "54"], +[-37.8193452667, 175.2954568, "1"], +[-37.8189777167, 175.2957563, "7"], +[-37.8199836333, 175.2990715833, "51"], +[-37.8199912833, 175.2985484, "48"], +[-37.8182846833, 175.2964725833, "23"], +[-37.8190047167, 175.2980822167, "32"], +[-37.8192320167, 175.2990408167, "41"], +[-37.81830725, 175.2976288667, "33"], +[-37.8191165667, 175.2983063833, "36"], +[-37.81821505, 175.2974630667, "31"], +[-37.8195719333, 175.29874015, "44"], +[-37.8203229667, 175.2986544167, "57"], +[-37.81840575, 175.2977947167, "35"], +[-37.8203146, 175.29792695, "56"], +[-37.81871365, 175.2965414333, "14"], +[-37.8202357167, 175.2988267, "55"], +[-37.8192540333, 175.2955340333, "3"], +[-37.8205046333, 175.29831995, "61"], +[-37.8192321, 175.2984773833, "38"], +[-37.8204138333, 175.2984849667, "59"], +[-37.8195976333, 175.29921285, "43"], +[-37.8204874833, 175.2977337333, "58"], +[-37.81869965, 175.2975758333, "26"], +[-37.82061335, 175.2981422, "63"], +[-37.8188688, 175.2964165833, "12"], +[-37.8188042833, 175.2977339667, "28"], +[-37.8191152167, 175.2956667833, "5"], +[-37.8198993, 175.2982768667, "50"], +[-37.8188453667, 175.2958948833, "9"], +[-37.8195894667, 175.29580505, "2"], +[-37.8182881, 175.2959568667, "19"], +[-37.81893845, 175.2968078667, "16B"], +[-37.819536, 175.2983961167, "42"], +[-37.8192358833, 175.2980526833, "34"], +[-37.8186659667, 175.2960524167, "13"], +[-37.8185245333, 175.2979343333, "37"], +[-37.8185242667, 175.2961689, "17"], +[-37.81802235, 175.2964696, "25"], +[-37.8201195167, 175.2989560333, "53"], +[-37.8185688667, 175.2967135, "18"], +[-37.8183772667, 175.2963059333, "21"], +[-37.8188115667, 175.2968616, "16A"], +[-37.8184570167, 175.2969600333, "20"], +[-37.8194714667, 175.2958905, "4"], +[-37.8201155167, 175.2982733333, "52"], +[-37.7411189333, 175.28244365, "2"], +[-37.7415708, 175.28467155, "22"], +[-37.7405378333, 175.28296165, "11"], +[-37.7416843333, 175.2848987333, "24"], +[-37.74079565, 175.2835606667, "17"], +[-37.7423107333, 175.2855944333, "43"], +[-37.7424241667, 175.28542265, "45"], +[-37.7417410667, 175.2855648833, "37"], +[-37.74205435, 175.2853305833, "28"], +[-37.74153155, 175.2856856, "35"], +[-37.7409393167, 175.2825494, "4"], +[-37.7422565167, 175.2857628667, "41"], +[-37.7410519167, 175.28403195, "21"], +[-37.7411276833, 175.28424725, "23"], +[-37.7425246, 175.2852664, "47"], +[-37.741203, 175.2844838, "25"], +[-37.7405712667, 175.28318085, "13"], +[-37.7412908667, 175.2847261, "27"], +[-37.7418181833, 175.28510995, "26"], +[-37.7414705, 175.2844182167, "20"], +[-37.7415971, 175.2853792333, "33"], +[-37.7408734333, 175.28307385, "8"], +[-37.7406603333, 175.2833646833, "15"], +[-37.74149315, 175.28515305, "31"], +[-37.7405475333, 175.28269865, "9"], +[-37.7413835, 175.28494195, "29"], +[-37.7422184333, 175.2851604833, "30"], +[-37.74104155, 175.2821032833, "1"], +[-37.74093905, 175.2837728667, "19"], +[-37.7407281667, 175.2823429167, "5"], +[-37.7423365333, 175.2849675667, "32"], +[-37.74090425, 175.28220515, "3"], +[-37.7409707333, 175.2832685833, "10"], +[-37.7413923167, 175.2841177167, "18"], +[-37.7410979333, 175.28344835, "12"], +[-37.7413170833, 175.28387585, "16"], +[-37.7412203333, 175.2836545333, "14"], +[-37.7408111, 175.2828217833, "6"], +[-37.80389235, 175.32715425, "8"], +[-37.8037698167, 175.3277285667, "7"], +[-37.80386915, 175.3274910667, "9"], +[-37.8035952833, 175.3274303333, "4"], +[-37.8033529833, 175.32742695, "2"], +[-37.8032169, 175.3276946667, "1"], +[-37.8036064333, 175.3278136333, "5"], +[-37.8033943333, 175.3277503, "3"], +[-37.8039997833, 175.3272825333, "11"], +[-37.80368335, 175.3271383167, "6"], +[-37.76865835, 175.2945824333, "8"], +[-37.76714485, 175.2967737667, "37"], +[-37.7683302833, 175.2958390333, "20"], +[-37.7673658667, 175.29711375, "38"], +[-37.7680856667, 175.2964593667, "28"], +[-37.76691315, 175.2971741, "44"], +[-37.7669939833, 175.2967909833, "39"], +[-37.7670541333, 175.2971856833, "42"], +[-37.7685329667, 175.2951377167, "12"], +[-37.7683219833, 175.2948163833, "11"], +[-37.7682440667, 175.2950410167, "13"], +[-37.76684155, 175.29679375, "41"], +[-37.7684652833, 175.2953158833, "14"], +[-37.7666984667, 175.2967746, "43"], +[-37.7682036667, 175.2952083167, "15"], +[-37.76653285, 175.2967196333, "45"], +[-37.7684231667, 175.2954913833, "16"], +[-37.76730135, 175.2967159833, "35"], +[-37.7683733333, 175.2956564667, "18"], +[-37.7687345667, 175.2942147, "4"], +[-37.7682817667, 175.2959909333, "22"], +[-37.7683733833, 175.2946340833, "9"], +[-37.7681609167, 175.2963299167, "26"], +[-37.7674743667, 175.2970477, "36"], +[-37.7680044667, 175.2965562333, "32"], +[-37.7662039167, 175.2969548, "50"], +[-37.7682270833, 175.2961735833, "24"], +[-37.7672075167, 175.2971549667, "40"], +[-37.76677735, 175.2971707667, "46"], +[-37.7676029833, 175.2965180333, "31"], +[-37.76634685, 175.29663965, "47"], +[-37.7674549833, 175.2966381, "33"], +[-37.7686972, 175.2944146833, "6"], +[-37.7684611167, 175.2942803167, "5"], +[-37.76842, 175.2944584833, "7"], +[-37.7655189333, 175.2951747667, "77"], +[-37.76632275, 175.2939002, "53A"], +[-37.76684465, 175.2932685833, "44A"], +[-37.7658475333, 175.2950901, "75B"], +[-37.7677007, 175.2914211, "10B"], +[-37.7655551833, 175.2954153833, "79A"], +[-37.7677962833, 175.2915022333, "10C"], +[-37.7657061833, 175.2972628333, "106"], +[-37.7674182, 175.2926254, "32"], +[-37.7671482833, 175.2908998, "7"], +[-37.76685345, 175.2943658667, "60"], +[-37.7662860167, 175.2952286833, "70A"], +[-37.7665171667, 175.2944419667, "60B"], +[-37.7665067333, 175.2931950667, "45"], +[-37.7665508667, 175.2942929167, "60A"], +[-37.7647405833, 175.29742905, "109A"], +[-37.7662000333, 175.29429425, "59"], +[-37.7664289333, 175.2936199833, "53"], +[-37.76598025, 175.2942643333, "61"], +[-37.7668687833, 175.2931887167, "44"], +[-37.7659368333, 175.2943907167, "65"], +[-37.7653602667, 175.29728235, "105"], +[-37.7665919167, 175.2954930167, "72"], +[-37.7674325, 175.2920995167, "22B"], +[-37.7661894167, 175.2955602833, "74"], +[-37.76531075, 175.29746345, "107B"], +[-37.7664378333, 175.29552935, "78"], +[-37.7674155, 175.2912675, "10A"], +[-37.7661144833, 175.2945524, "63"], +[-37.7660024333, 175.2963201167, "86"], +[-37.76568525, 175.29432905, "67"], +[-37.7666005, 175.2928631167, "39"], +[-37.7653829, 175.2958046333, "83B"], +[-37.7677564, 175.29171865, "14A"], +[-37.7657404833, 175.2950584333, "75C"], +[-37.7648597833, 175.2979653167, "121A"], +[-37.7661356833, 175.2957841833, "80"], +[-37.76465045, 175.2975536, "109B"], +[-37.7658274833, 175.2956838, "81"], +[-37.7659402833, 175.2952437833, "75A"], +[-37.7654150833, 175.2956731667, "83A"], +[-37.7671979333, 175.2925101333, "28A"], +[-37.76588225, 175.2954708833, "79"], +[-37.7660324333, 175.2940856, "57A"], +[-37.76563195, 175.2955496333, "81A"], +[-37.7660720667, 175.2948054333, "69A"], +[-37.7663712, 175.29598015, "82"], +[-37.7658789667, 175.2946465333, "69B"], +[-37.7675737833, 175.2918634, "20"], +[-37.7664487, 175.2934107833, "47"], +[-37.7672344333, 175.2919176, "22"], +[-37.7667170167, 175.2925025333, "37"], +[-37.7671544333, 175.29217925, "26"], +[-37.7663591167, 175.2949546667, "70"], +[-37.7670876333, 175.29239515, "28"], +[-37.7674715333, 175.29104345, "8"], +[-37.7666464167, 175.2920557833, "31A"], +[-37.76688655, 175.2931030167, "42"], +[-37.7668182167, 175.2920777333, "31"], +[-37.76643555, 175.29468535, "64"], +[-37.7666007167, 175.29228195, "33A"], +[-37.7668250333, 175.29335345, "50"], +[-37.7667729167, 175.29224945, "33"], +[-37.7660175, 175.2949893, "71"], +[-37.7665800167, 175.2923925167, "35A"], +[-37.7657628, 175.29707375, "100"], +[-37.7664244833, 175.2922945667, "35"], +[-37.7669001333, 175.2946928667, "62"], +[-37.7656678167, 175.2974455833, "108"], +[-37.76673175, 175.2949271333, "66"], +[-37.7651663, 175.2979505667, "117"], +[-37.7672049333, 175.2907253333, "3"], +[-37.7654188667, 175.2983123, "120"], +[-37.76506425, 175.29738935, "107A"], +[-37.7651056167, 175.2981672333, "121"], +[-37.7662547333, 175.29411715, "57"], +[-37.7653905833, 175.2984837, "122"], +[-37.7650506, 175.298344, "123"], +[-37.76500345, 175.2985440167, "129"], +[-37.7652978833, 175.2987934, "130B"], +[-37.7653354, 175.2986284167, "130C"], +[-37.76563625, 175.2963565833, "91"], +[-37.7651809333, 175.2962588333, "93"], +[-37.76580575, 175.2968783833, "98"], +[-37.7654942833, 175.2968084667, "99"], +[-37.7655592667, 175.2965920833, "97"], +[-37.7663345, 175.2961037, "84A"], +[-37.7673027833, 175.2916636667, "18"], +[-37.76645, 175.2961258333, "84B"], +[-37.7673561667, 175.2914642333, "14"], +[-37.7656236333, 175.2957921667, "85"], +[-37.7657541667, 175.2959213167, "85A"], +[-37.7656141167, 175.2976200833, "110"], +[-37.7645102833, 175.29773665, "111"], +[-37.7647059833, 175.29781295, "111B"], +[-37.76472385, 175.29765425, "111A"], +[-37.7656827667, 175.2961592667, "89"], +[-37.76542655, 175.2960931833, "89A"], +[-37.7676303, 175.2916521667, "14B"], +[-37.7652325, 175.2977409333, "115"], +[-37.7655185833, 175.29797155, "114"], +[-37.7654823, 175.2981302, "116"], +[-37.7655737667, 175.2977940167, "112"], +[-37.7868462667, 175.2647960167, "6"], +[-37.7871691167, 175.2644294, "12"], +[-37.7869560667, 175.2646620833, "8"], +[-37.7870593333, 175.2645456833, "10"], +[-37.7866305167, 175.2650468833, "2"], +[-37.7867471833, 175.2649143833, "4"], +[-37.81471545, 175.2755070667, "18"], +[-37.8149832167, 175.2750389833, "12"], +[-37.8140811167, 175.2759325333, "19"], +[-37.8142041, 175.27577415, "17"], +[-37.81441645, 175.2759873, "24"], +[-37.81474555, 175.27580545, "20"], +[-37.8149067667, 175.2746230167, "5"], +[-37.8146118667, 175.2756812833, "20A"], +[-37.8150847167, 175.2748877667, "10"], +[-37.8148955833, 175.27519515, "14"], +[-37.8152749, 175.2745605667, "6"], +[-37.81543695, 175.2742846, "2"], +[-37.8151713833, 175.2747126667, "8"], +[-37.8142515167, 175.2763286667, "28"], +[-37.8143239833, 175.27616985, "26"], +[-37.8143099167, 175.2756033333, "15"], +[-37.8145223167, 175.2758334667, "22"], +[-37.8145183, 175.2752440167, "11"], +[-37.81440455, 175.27543495, "13"], +[-37.8150147, 175.2744497, "3"], +[-37.8140126167, 175.2762349, "23"], +[-37.8148097667, 175.2753553333, "16"], +[-37.8139955333, 175.27606945, "21"], +[-37.8153649333, 175.2744034833, "4"], +[-37.8141190833, 175.2763476, "30"], +[-37.7823655, 175.2565563833, "2"], +[-37.7821583833, 175.2566036167, "4"], +[-37.7820147, 175.2566387167, "6"], +[-37.78185215, 175.256466, "8"], +[-37.7950552167, 175.23201995, "2"], +[-37.7949014833, 175.2320461833, "4"], +[-37.7947566833, 175.23207555, "6"], +[-37.7946382333, 175.2319184, "8"], +[-37.7945242833, 175.23165065, "10"], +[-37.79426205, 175.2318039833, "12"], +[-37.7941832667, 175.2315799667, "14"], +[-37.7943703333, 175.2314667833, "11"], +[-37.7945703833, 175.23126885, "9"], +[-37.79469555, 175.2312076, "7"], +[-37.79474935, 175.2314421667, "5"], +[-37.7948412833, 175.2317943833, "3"], +[-37.7950419, 175.2317895333, "1"], +[-37.80021605, 175.2456132667, "67"], +[-37.8015478833, 175.24368645, "96"], +[-37.79672815, 175.2436480167, "10A"], +[-37.8015646667, 175.2440993333, "97A"], +[-37.8019042833, 175.24356185, "100"], +[-37.8016783, 175.24427435, "97B"], +[-37.7967593, 175.2431031167, "6A"], +[-37.8017226833, 175.2436629167, "98"], +[-37.7978073333, 175.2447009333, "23"], +[-37.8005170333, 175.2451672333, "75"], +[-37.7989976667, 175.24443825, "50"], +[-37.8006488333, 175.2454757167, "77"], +[-37.7962404833, 175.24388525, "2A"], +[-37.8017844, 175.2440737167, "103"], +[-37.7967623667, 175.24338505, "8"], +[-37.8020373167, 175.24341515, "104"], +[-37.8011835667, 175.2437773167, "90"], +[-37.8018001167, 175.24320665, "102"], +[-37.79667385, 175.2443806833, "7"], +[-37.80199845, 175.2439864833, "105"], +[-37.80083385, 175.2448204833, "83"], +[-37.8021652833, 175.2431794833, "106"], +[-37.7979203667, 175.2442964333, "28"], +[-37.8022689667, 175.2441006, "107"], +[-37.7972360667, 175.24458215, "15"], +[-37.8022255333, 175.2437665833, "109"], +[-37.7974390167, 175.24417755, "22"], +[-37.7967136, 175.24392545, "10"], +[-37.7999983, 175.24520965, "63"], +[-37.79698135, 175.2444765333, "11"], +[-37.7975928667, 175.2446514167, "19"], +[-37.79697265, 175.2435888833, "12A"], +[-37.7971218667, 175.2437277333, "18A"], +[-37.7968506, 175.2439863833, "12"], +[-37.7989938, 175.2451491, "39B"], +[-37.8023767667, 175.2436000333, "111"], +[-37.79683415, 175.24300845, "6B"], +[-37.7969619667, 175.2447746667, "11A"], +[-37.8019279667, 175.2445205167, "99"], +[-37.8024511333, 175.24382155, "111A"], +[-37.7983723667, 175.2447441667, "33"], +[-37.8008019167, 175.2442370167, "84"], +[-37.80159345, 175.2448697333, "91B"], +[-37.8009598333, 175.2446389833, "85"], +[-37.8003556667, 175.2452800667, "73"], +[-37.8009064, 175.2440828667, "86"], +[-37.7961809333, 175.2442140333, "1"], +[-37.8010731333, 175.2444810167, "87"], +[-37.7977554167, 175.2442497167, "26"], +[-37.8010134, 175.24392505, "88"], +[-37.8007024167, 175.24434745, "82"], +[-37.8012061, 175.2442951333, "89"], +[-37.7965226667, 175.2443390833, "5"], +[-37.80158975, 175.2445467167, "93"], +[-37.7961066, 175.2438258, "2"], +[-37.8013748833, 175.2437182, "94"], +[-37.7970815833, 175.2440402667, "18"], +[-37.8013810833, 175.2441397167, "95"], +[-37.7963638, 175.24430325, "3"], +[-37.79958795, 175.2446255667, "58"], +[-37.7992094167, 175.2449308667, "51"], +[-37.7985307667, 175.2447677, "35"], +[-37.7988581, 175.2448371333, "37"], +[-37.7994503667, 175.2445795667, "56"], +[-37.8005624333, 175.24459935, "80"], +[-37.7988144833, 175.24438585, "44"], +[-37.7966635833, 175.2433469667, "6"], +[-37.7992896833, 175.2445299167, "54"], +[-37.8007415667, 175.24537525, "79"], +[-37.7993538, 175.2449879833, "53"], +[-37.7971644667, 175.2434729333, "16"], +[-37.7981875833, 175.24475325, "31"], +[-37.7972746833, 175.2441564333, "20A"], +[-37.7975849667, 175.24421335, "24"], +[-37.7991583333, 175.2444806833, "52"], +[-37.8003932333, 175.2456859833, "71"], +[-37.7971431167, 175.2431649, "14A"], +[-37.797044, 175.2434537, "14"], +[-37.8001608333, 175.2452457833, "65"], +[-37.8015100667, 175.2446354, "91A"], +[-37.7980038833, 175.2447371833, "27"], +[-37.7968315333, 175.2444324667, "9"], +[-37.8024375, 175.2434283833, "115"], +[-37.7990366167, 175.2448893833, "39A"], +[-37.8007162667, 175.2449963833, "81"], +[-37.7973071667, 175.2438916667, "20B"], +[-37.8019167, 175.2443358333, "101"], +[-37.7997082, 175.24510085, "59"], +[-37.8011862333, 175.24341435, "92"], +[-37.7995010333, 175.2450382333, "55"], +[-37.7998500333, 175.2451434, "61"], +[-37.796471, 175.2438704667, "4"], +[-37.8018187, 175.2443785167, "99B"], +[-37.8003813, 175.24585635, "69"], +[-37.8003265667, 175.2448377667, "78"], +[-37.7280825833, 175.2580447167, "9"], +[-37.7277187, 175.2585041833, "4"], +[-37.7281671667, 175.2581720167, "7"], +[-37.7279425833, 175.2586984333, "1"], +[-37.7283440833, 175.2583324667, "5"], +[-37.7276845167, 175.25872745, "2"], +[-37.7280073667, 175.2584336833, "3"], +[-37.7278544167, 175.2580648, "8"], +[-37.7278704333, 175.2578658333, "10"], +[-37.7277806833, 175.2582818333, "6"], +[-37.77362155, 175.2621905167, "21A"], +[-37.7735746333, 175.26330595, "4"], +[-37.7730081833, 175.2624435333, "27"], +[-37.7737139167, 175.2626423833, "19"], +[-37.773977, 175.2630530333, "9"], +[-37.7734103333, 175.2633449833, "4A"], +[-37.7739875667, 175.262841, "11"], +[-37.7742968833, 175.2634866167, "7A"], +[-37.7738838833, 175.2635099667, "5"], +[-37.7742500333, 175.2632557833, "9A"], +[-37.7731321667, 175.2624833833, "25"], +[-37.7740477833, 175.2625342833, "15"], +[-37.77349925, 175.2635686167, "2"], +[-37.7741546833, 175.262731, "11B"], +[-37.7726814167, 175.2629403667, "14"], +[-37.7733298, 175.26251325, "23"], +[-37.7745612667, 175.2626736667, "13"], +[-37.7735518667, 175.2629747333, "6A"], +[-37.7738138, 175.2623882167, "19A"], +[-37.7741712, 175.26369535, "5A"], +[-37.7735402167, 175.2625749, "21"], +[-37.7739304, 175.2632999333, "7"], +[-37.7740767167, 175.2638866, "1/3"], +[-37.7734238833, 175.2629325833, "6"], +[-37.77262215, 175.2626838167, "16"], +[-37.7733517833, 175.26226625, "23A"], +[-37.7743548833, 175.2639575833, "2/3"], +[-37.7738532833, 175.2636938, "3"], +[-37.7730014667, 175.2628384833, "10"], +[-37.7739427, 175.2625365667, "17"], +[-37.77458765, 175.2635317, "7B"], +[-37.7743763167, 175.26331695, "9B"], +[-37.7731939167, 175.2628678667, "8"], +[-37.77291235, 175.2630870167, "10A"], +[-37.7738142167, 175.2639140833, "1"], +[-37.7730905333, 175.2631360667, "8A"], +[-37.7739564667, 175.2621890167, "17A"], +[-37.7727910333, 175.2627584667, "12"], +[-37.7743067167, 175.26256835, "15C"], +[-37.77429155, 175.2628549667, "11A"], +[-37.7743402333, 175.2626705333, "13A"], +[-37.7499440333, 175.253445, "12"], +[-37.75036945, 175.2533015833, "2"], +[-37.74980055, 175.2532290667, "14"], +[-37.7496768833, 175.2528375667, "20"], +[-37.7501230667, 175.25313045, "3"], +[-37.7495693667, 175.2530035, "18"], +[-37.7502078333, 175.25340495, "4"], +[-37.75009615, 175.2536021667, "10"], +[-37.7499656167, 175.2528097833, "5"], +[-37.7497058333, 175.25307325, "16"], +[-37.75028275, 175.2537550333, "6"], +[-37.7503373667, 175.2529851333, "1"], +[-37.749795, 175.25272295, "7"], +[-37.7502125167, 175.2538178333, "8"], +[-37.78871595, 175.3309414333, "10E"], +[-37.78937185, 175.33007535, "9"], +[-37.7894434667, 175.3298671833, "11A"], +[-37.7890517833, 175.3301277833, "16"], +[-37.7891105167, 175.32957875, "15"], +[-37.7892697833, 175.3305781, "6"], +[-37.7890386, 175.3294105, "17"], +[-37.7892804333, 175.3298995667, "11"], +[-37.7889670667, 175.3292621833, "19"], +[-37.78864995, 175.3307729, "10C"], +[-37.7888676333, 175.3297896, "20"], +[-37.7889570333, 175.3299516, "18"], +[-37.7887642333, 175.3295953167, "22"], +[-37.7887609167, 175.33071545, "10B"], +[-37.7887903333, 175.3308241833, "10F"], +[-37.78882115, 175.3304303833, "14"], +[-37.78896295, 175.3307062833, "10G"], +[-37.7892022667, 175.3309162, "4A"], +[-37.7889608, 175.3305531667, "10A"], +[-37.7886521, 175.3308647667, "10D"], +[-37.7895541833, 175.3304155, "5"], +[-37.78936215, 175.3307940167, "4"], +[-37.7891395167, 175.3303494667, "12"], +[-37.7892129333, 175.3297554833, "13"], +[-37.7896387833, 175.3305775167, "3"], +[-37.7894555167, 175.3302423333, "7"], +[-37.7563922833, 175.2954819333, "2"], +[-37.7563185, 175.2959207833, "6"], +[-37.7555760167, 175.2973766667, "25"], +[-37.7557410167, 175.2980210333, "32"], +[-37.75552035, 175.2976124, "27"], +[-37.7563664833, 175.29571475, "4"], +[-37.7561177167, 175.2967525833, "8"], +[-37.7693396833, 175.2862325667, "10"], +[-37.7690617667, 175.2859474667, "5"], +[-37.7691646333, 175.2863221, "9"], +[-37.7689658667, 175.2864178, "7A"], +[-37.7692149167, 175.2863225667, "11"], +[-37.7693959833, 175.28606415, "8"], +[-37.76897705, 175.2858090333, "3"], +[-37.7693058333, 175.2858922833, "6"], +[-37.7691179667, 175.2861454833, "7"], +[-37.8178811667, 175.2669117667, "9"], +[-37.8172998, 175.2668348167, "18"], +[-37.8177780167, 175.2671733667, "7"], +[-37.8174109833, 175.2668894667, "21"], +[-37.8176837167, 175.2677394333, "1"], +[-37.8175775667, 175.2668723, "19"], +[-37.817783, 175.2673422833, "5"], +[-37.8170738833, 175.2668953333, "12"], +[-37.8175405667, 175.2674327667, "15"], +[-37.8169623167, 175.2666424667, "14"], +[-37.8178232667, 175.2675406333, "3"], +[-37.8171797333, 175.2667742333, "16"], +[-37.8177523333, 175.2668950667, "11"], +[-37.8174914667, 175.2671243167, "17"], +[-37.8172144167, 175.2672681, "8"], +[-37.8171194, 175.2670837333, "10"], +[-37.8172686833, 175.2674681167, "6"], +[-37.8173185667, 175.2676623333, "4"], +[-37.7400054167, 175.2440195167, "8B"], +[-37.739788, 175.2439696833, "12"], +[-37.7403148833, 175.2437545, "4"], +[-37.7396660833, 175.2433981, "23"], +[-37.7398976833, 175.2441669833, "10"], +[-37.739561, 175.24367355, "16"], +[-37.7405684833, 175.2435201333, "11"], +[-37.7401776667, 175.2433172667, "15"], +[-37.7401417167, 175.2436534333, "6"], +[-37.73980245, 175.2433705333, "21"], +[-37.7404661333, 175.2438939, "2"], +[-37.73967925, 175.2438462667, "14"], +[-37.7399796667, 175.2433031667, "19"], +[-37.7404130833, 175.2434094833, "13"], +[-37.73990415, 175.24378585, "8A"], +[-37.73956915, 175.2435113167, "25"], +[-37.8004751833, 175.2484067667, "29"], +[-37.7998409333, 175.2492714667, "37"], +[-37.80115435, 175.24750075, "19A"], +[-37.8001018667, 175.2491966333, "41"], +[-37.8003431667, 175.2485761333, "31"], +[-37.8002312, 175.24918655, "41A"], +[-37.8016840333, 175.2473435667, "6"], +[-37.7999843167, 175.2491978333, "39"], +[-37.80204055, 175.2468345667, "1"], +[-37.8016585667, 175.2466731333, "5"], +[-37.80155305, 175.2474752833, "8"], +[-37.8015601167, 175.2467143, "11"], +[-37.8006961167, 175.2481263, "25"], +[-37.8016293333, 175.2464243833, "7A"], +[-37.8004172167, 175.2489524, "43"], +[-37.8013957667, 175.2461662167, "9"], +[-37.8005936333, 175.2482790833, "27"], +[-37.8015452667, 175.2460760333, "7B"], +[-37.8013018667, 175.2472924333, "17"], +[-37.80145325, 175.2476147833, "10"], +[-37.79993815, 175.2490126167, "35"], +[-37.80131815, 175.2477987667, "12"], +[-37.80103675, 175.2476603833, "19"], +[-37.8009225667, 175.2478117833, "21"], +[-37.8019568833, 175.2471959667, "2"], +[-37.8014864833, 175.2470727, "15"], +[-37.8018220667, 175.24689175, "3"], +[-37.8008135333, 175.2479576167, "23"], +[-37.8018356, 175.2472418333, "4"], +[-37.72337575, 175.26475145, "95"], +[-37.7255492, 175.2691172333, "13"], +[-37.7247068, 175.2691393333, "2"], +[-37.7260067167, 175.2678823833, "20"], +[-37.72619925, 175.2663714333, "45"], +[-37.7246181, 175.269637, "1"], +[-37.7262875333, 175.2672724333, "37"], +[-37.72356475, 175.2651742167, "66"], +[-37.7248233333, 175.2643268667, "77"], +[-37.7236426667, 175.2649014833, "64"], +[-37.7264926, 175.2685589667, "25"], +[-37.7252375833, 175.2693090333, "9"], +[-37.7238179333, 175.2642441167, "89"], +[-37.7247723, 175.2696023833, "3"], +[-37.72537985, 175.2687764833, "10"], +[-37.7253911667, 175.2692130667, "11"], +[-37.72582575, 175.2660203167, "34"], +[-37.7259714333, 175.2681577667, "18"], +[-37.7237007333, 175.2643025, "91"], +[-37.72569665, 175.2651172667, "42"], +[-37.7262823667, 175.2683780333, "27"], +[-37.7249167167, 175.2695173667, "5"], +[-37.7263408333, 175.2679253, "31"], +[-37.72506585, 175.26942125, "7"], +[-37.7235162667, 175.26540245, "68"], +[-37.7256493167, 175.26451225, "67"], +[-37.72570965, 175.26855865, "14"], +[-37.7232126333, 175.2654642667, "105"], +[-37.7248836667, 175.2690738833, "4"], +[-37.7232533667, 175.2652429833, "103"], +[-37.7249894, 175.2643615667, "75"], +[-37.7239654333, 175.26456445, "60"], +[-37.7263407167, 175.2681442, "29"], +[-37.7241602667, 175.2645363, "58"], +[-37.7258813667, 175.2684260333, "16"], +[-37.7245281167, 175.26461485, "54"], +[-37.7233007833, 175.2649740167, "97"], +[-37.7248325, 175.2646993, "50"], +[-37.723973, 175.26419415, "87"], +[-37.7247024, 175.26466045, "52"], +[-37.7262611333, 175.2670414167, "39"], +[-37.7241045667, 175.2641769333, "85"], +[-37.7243453833, 175.2645689667, "56"], +[-37.7237770167, 175.26469115, "62"], +[-37.72644525, 175.2686921333, "23"], +[-37.7243024, 175.2641980833, "83"], +[-37.72505905, 175.268968, "6"], +[-37.7260112333, 175.26447365, "63"], +[-37.7262433, 175.2668275333, "41"], +[-37.7259854833, 175.2676849, "22"], +[-37.7253293167, 175.2648800833, "46"], +[-37.72581605, 175.2646412333, "65"], +[-37.7251701333, 175.2644020667, "73"], +[-37.7244747, 175.2642383, "81"], +[-37.7262166, 175.2666077333, "43"], +[-37.72586105, 175.2689142167, "17"], +[-37.7262963333, 175.2674916167, "35"], +[-37.7261370833, 175.2654993667, "53"], +[-37.7257031333, 175.2690044333, "15"], +[-37.7257676667, 175.2653589333, "40"], +[-37.72301165, 175.2650698333, "101"], +[-37.7257928, 175.2655724833, "38"], +[-37.7260330333, 175.2687907833, "19"], +[-37.7261547, 175.2657244667, "51"], +[-37.7263272, 175.2677227833, "33"], +[-37.7261593, 175.2659323, "49"], +[-37.72555125, 175.2686598, "12"], +[-37.7258048333, 175.2658068833, "36"], +[-37.7261701833, 175.2686269167, "21"], +[-37.7261864167, 175.2661296333, "47"], +[-37.7246492, 175.2642732833, "79"], +[-37.7255147667, 175.2649250833, "44"], +[-37.7252258833, 175.2688671333, "8"], +[-37.72612015, 175.2652406, "55"], +[-37.7230124333, 175.2649406, "99"], +[-37.7259594667, 175.26481995, "59"], +[-37.72534265, 175.26443165, "71"], +[-37.72605365, 175.2650082833, "57"], +[-37.7254961833, 175.2644606333, "69"], +[-37.7261062333, 175.2646227167, "61"], +[-37.7259318833, 175.2672151167, "26"], +[-37.7259609, 175.2674447667, "24"], +[-37.7914084667, 175.3309270667, "29A"], +[-37.7911349333, 175.3324756, "55A"], +[-37.7914144, 175.3323590333, "40"], +[-37.7908691667, 175.3316845833, "45"], +[-37.7920232, 175.3288729333, "6"], +[-37.7908316333, 175.3318087, "43"], +[-37.7910082167, 175.3318611833, "49"], +[-37.7911724333, 175.33169445, "41"], +[-37.79192485, 175.3290139, "8"], +[-37.7911035667, 175.3323625667, "53A"], +[-37.7916205833, 175.3307814167, "25"], +[-37.7914905833, 175.3318552833, "36"], +[-37.7919464833, 175.3308326667, "24"], +[-37.791357, 175.3314045167, "37"], +[-37.7916088833, 175.3305740833, "23"], +[-37.7913249667, 175.3321946667, "55"], +[-37.79220645, 175.3285315333, "2"], +[-37.7915113, 175.3294747667, "11"], +[-37.79191575, 175.3310389833, "26"], +[-37.791802, 175.3293554667, "12"], +[-37.7911401167, 175.33287415, "40B"], +[-37.7915225167, 175.3296948167, "13"], +[-37.7921212333, 175.3287166167, "4"], +[-37.7918317, 175.3291707333, "10"], +[-37.7915026667, 175.3292521167, "9"], +[-37.7915596667, 175.3300603167, "15"], +[-37.7916201167, 175.3309982167, "29"], +[-37.7915850667, 175.33027935, "17"], +[-37.7917878833, 175.3286126667, "3"], +[-37.7913045333, 175.3303849167, "19"], +[-37.7910018, 175.3308799667, "33A"], +[-37.7919174, 175.3304994833, "20"], +[-37.7913113, 175.3304826, "21"], +[-37.7920497167, 175.3307357167, "22A"], +[-37.7923819333, 175.33093045, "22B"], +[-37.79185215, 175.3312382, "28"], +[-37.79176025, 175.3314017667, "30"], +[-37.7914955833, 175.3311783833, "31"], +[-37.7916665333, 175.3315665333, "32"], +[-37.7911538833, 175.33106255, "33"], +[-37.7915771167, 175.3317167167, "34"], +[-37.7910871333, 175.3312100833, "35"], +[-37.7914165167, 175.33199875, "38A"], +[-37.7915431667, 175.33226845, "38B"], +[-37.7912658, 175.3315552, "39"], +[-37.7911001167, 175.33195185, "51"], +[-37.7912176, 175.33205495, "53"], +[-37.7602691, 175.2885226833, "7"], +[-37.7602563, 175.2891339333, "10"], +[-37.7599225833, 175.2889315167, "13"], +[-37.7601336833, 175.2886615333, "9"], +[-37.7600795, 175.28902235, "14"], +[-37.7604810833, 175.2887792667, "6"], +[-37.7603757, 175.2890009, "8"], +[-37.7601448667, 175.2891518167, "12"], +[-37.7605940833, 175.2886309833, "4"], +[-37.76057715, 175.28814355, "9/3-18/3"], +[-37.76002175, 175.2887668167, "11"], +[-37.7982336167, 175.3353683333, "22"], +[-37.8021141667, 175.33986995, "96A"], +[-37.8033833833, 175.3381704833, "96B"], +[-37.8040359, 175.33770245, "98"], +[-37.8007210167, 175.3386938333, "74"], +[-37.8007350667, 175.3393018, "77"], +[-37.8006740167, 175.3399099333, "83A"], +[-37.8007514333, 175.3405138, "85B"], +[-37.8009199333, 175.3394420833, "83"], +[-37.8040056167, 175.34601905, "158"], +[-37.8012101, 175.3398617667, "85A"], +[-37.79754055, 175.33522155, "21"], +[-37.80016245, 175.3380236, "62B"], +[-37.7998542, 175.3385017833, "69A"], +[-37.7988460833, 175.33693075, "50"], +[-37.8043009, 175.3413715667, "112"], +[-37.8033397667, 175.3414021833, "110"], +[-37.80305785, 175.3404196167, "108"], +[-37.8037314167, 175.3443996167, "142"], +[-37.7996031, 175.3393135333, "69B"], +[-37.8030830833, 175.34276695, "125"], +[-37.7970184333, 175.3357292333, "7B"], +[-37.8001904333, 175.3388213, "71"], +[-37.8034038667, 175.3425023833, "122"], +[-37.8022394167, 175.3406482833, "105"], +[-37.80314845, 175.34360205, "131"], +[-37.7994480333, 175.3372908, "62A"], +[-37.8033159667, 175.3449413667, "145"], +[-37.8036196667, 175.3434291667, "130"], +[-37.7997826833, 175.3395964167, "69C"], +[-37.7586491833, 175.2729790667, "15"], +[-37.7582698167, 175.2720735333, "2"], +[-37.7585253333, 175.2724008333, "6"], +[-37.7588320333, 175.2720701667, "8"], +[-37.7587786667, 175.27273575, "14"], +[-37.7584490833, 175.2730793333, "9"], +[-37.7583089833, 175.2727054667, "5"], +[-37.75886015, 175.2722732833, "10"], +[-37.7583909667, 175.2729107333, "7"], +[-37.7584037333, 175.2722550167, "4"], +[-37.7580709, 175.2724633333, "1"], +[-37.7586813333, 175.2725815, "12"], +[-37.7585140833, 175.2733106167, "11"], +[-37.7581976833, 175.2725948333, "3"], +[-37.7589216833, 175.273012, "18"], +[-37.75884405, 175.2728967167, "16"], +[-37.7585515667, 175.2731026167, "13"], +[-37.7823941333, 175.29257775, "11"], +[-37.7809572833, 175.2919393167, "1"], +[-37.7827965, 175.2931382667, "19"], +[-37.7833281167, 175.2927948333, "35"], +[-37.7828604833, 175.2932713167, "21"], +[-37.7811569167, 175.2915859833, "2"], +[-37.7832083333, 175.2933056833, "23"], +[-37.78247685, 175.292683, "9B"], +[-37.7833966833, 175.29333995, "25"], +[-37.7812580333, 175.2920279, "5"], +[-37.7820843333, 175.2919502167, "6"], +[-37.78250345, 175.29314715, "15"], +[-37.7830162833, 175.2927297667, "39"], +[-37.78224525, 175.2920019833, "8"], +[-37.7836836, 175.2934475333, "29"], +[-37.7834955667, 175.2930443833, "31"], +[-37.7809798, 175.2915241, "2A"], +[-37.7835398333, 175.2928729833, "33"], +[-37.7825632667, 175.29293905, "13"], +[-37.7822863833, 175.2924419667, "9"], +[-37.7811042167, 175.29197345, "3"], +[-37.7826631833, 175.2933199833, "17"], +[-37.7831734833, 175.2930197833, "37"], +[-37.7835363167, 175.2934006, "27"], +[-37.7614372167, 175.2514508167, "15"], +[-37.7617503667, 175.2519476167, "19"], +[-37.8101225667, 175.2821253167, "4"], +[-37.8102344, 175.2821794667, "12"], +[-37.8101850833, 175.28229805, "11"], +[-37.80998665, 175.2822993, "5"], +[-37.8100965333, 175.2824700333, "8"], +[-37.8100602167, 175.2824485833, "7"], +[-37.8102774833, 175.2820661833, "14"], +[-37.8102558167, 175.28179905, "1"], +[-37.810235, 175.2824317667, "10"], +[-37.8099671833, 175.2823929, "6"], +[-37.81021645, 175.2824998, "9"], +[-37.7384795333, 175.2348546667, "10"], +[-37.7387328167, 175.2351214167, "7"], +[-37.7392299333, 175.2341967167, "19"], +[-37.7384518, 175.2350641833, "8"], +[-37.7390621167, 175.2337377667, "25"], +[-37.7387406167, 175.2338780667, "22"], +[-37.7388712667, 175.2342871333, "17"], +[-37.7391486667, 175.2346223167, "13"], +[-37.7385879, 175.2342672, "16"], +[-37.73838395, 175.2354565667, "4"], +[-37.7385500667, 175.2344655333, "14"], +[-37.7384179833, 175.2340593667, "18"], +[-37.7387026667, 175.23532465, "5"], +[-37.7386185333, 175.2340383833, "20"], +[-37.73928465, 175.2340733833, "21"], +[-37.7387902333, 175.2347148667, "11"], +[-37.7388358833, 175.2344634833, "15"], +[-37.73852465, 175.23467365, "12"], +[-37.7384112167, 175.23526345, "6"], +[-37.7386668333, 175.2355240833, "3"], +[-37.7388672167, 175.2338302667, "24"], +[-37.7387629, 175.23492185, "9"], +[-37.7389883, 175.23396505, "23"], +[-37.7827661333, 175.2625085333, "12"], +[-37.78242825, 175.2621751, "11"], +[-37.78227695, 175.2621954333, "17"], +[-37.7826557167, 175.2619494167, "9A"], +[-37.78263855, 175.2621091833, "9"], +[-37.78278365, 175.2620738333, "7"], +[-37.7818240167, 175.2626613333, "26"], +[-37.7819281167, 175.2622848667, "21"], +[-37.7822425667, 175.2617896, "15A-15D"], +[-37.7820554167, 175.2626555833, "22"], +[-37.7833226, 175.26195295, "1A"], +[-37.78321785, 175.2623894333, "6"], +[-37.7823895333, 175.2626014167, "18"], +[-37.7829072833, 175.2624661333, "10"], +[-37.7833724333, 175.2623485167, "4"], +[-37.782986, 175.26204025, "5"], +[-37.7834396833, 175.2619305333, "1"], +[-37.78222875, 175.2626229, "20"], +[-37.78349585, 175.2623111833, "2"], +[-37.7823424833, 175.26177945, "13"], +[-37.7830598333, 175.26243515, "8"], +[-37.7818047833, 175.2624510833, "23"], +[-37.7829173167, 175.2618404333, "5A"], +[-37.7831583833, 175.2620028, "3"], +[-37.7826569667, 175.2625472167, "14"], +[-37.7825312833, 175.26255705, "16"], +[-37.7818890667, 175.2628695833, "24"], +[-37.7821123667, 175.2622327333, "19"], +[-37.7513838333, 175.2931556667, "27"], +[-37.7528319167, 175.2939421, "24"], +[-37.7521236167, 175.2938497833, "34"], +[-37.75252885, 175.2937422167, "30"], +[-37.7519208, 175.2938431, "36"], +[-37.7531275167, 175.2939724333, "18"], +[-37.75174415, 175.2937648167, "38"], +[-37.7522282, 175.2934354833, "15"], +[-37.7523109, 175.29381105, "32"], +[-37.7533104667, 175.2936158833, "10"], +[-37.7513103167, 175.2933981833, "46"], +[-37.75295375, 175.2936215167, "22"], +[-37.7514759833, 175.29307925, "25"], +[-37.7530393167, 175.2926610167, "5"], +[-37.75171665, 175.2931115, "21"], +[-37.7513378, 175.29325775, "29"], +[-37.75273335, 175.2936730167, "28"], +[-37.7531382167, 175.2935895, "20"], +[-37.7518176333, 175.2932667167, "19"], +[-37.75292645, 175.2922880667, "1"], +[-37.7532120333, 175.2921247, "2"], +[-37.7515970833, 175.2930557333, "23"], +[-37.7514510667, 175.29362045, "42"], +[-37.7515978667, 175.2936907333, "40"], +[-37.7513546, 175.29350685, "44"], +[-37.7519890167, 175.2934656333, "17"], +[-37.7529692667, 175.2924724333, "3"], +[-37.7527605833, 175.2940778333, "26"], +[-37.75312555, 175.2928674833, "7"], +[-37.75326025, 175.2937903333, "12"], +[-37.7531835833, 175.2941848667, "16"], +[-37.7534006333, 175.2927415833, "6"], +[-37.7532287667, 175.2939861333, "14"], +[-37.7529872333, 175.2932014667, "9"], +[-37.7528297, 175.2932584667, "11"], +[-37.7532817333, 175.2923850167, "4"], +[-37.8019232, 175.27053335, "6"], +[-37.8020890667, 175.26979005, "44"], +[-37.8023265833, 175.2706025, "11"], +[-37.8020240833, 175.2695598833, "42"], +[-37.8026057, 175.2695801167, "18"], +[-37.80222925, 175.2689074667, "36A"], +[-37.8020316, 175.2691600833, "38"], +[-37.8018214667, 175.2698725333, "79"], +[-37.8032485667, 175.2688537, "37"], +[-37.8021060167, 175.2708660167, "7"], +[-37.80220845, 175.27073, "9"], +[-37.8025946, 175.2688638, "32"], +[-37.8026379667, 175.2703352333, "15"], +[-37.8017493833, 175.2689132333, "69"], +[-37.8023295167, 175.2701263167, "12"], +[-37.8017344, 175.2690746333, "71"], +[-37.8034036833, 175.26849945, "41"], +[-37.8024036167, 175.2688882, "34"], +[-37.80211975, 175.2685347167, "57"], +[-37.8017658167, 175.2695852667, "77"], +[-37.80224845, 175.2685528, "55"], +[-37.8027544333, 175.2688787333, "30"], +[-37.8026270167, 175.2699227333, "16"], +[-37.8021102667, 175.26891225, "36"], +[-37.8024262833, 175.26854075, "53"], +[-37.8032183667, 175.26941855, "31"], +[-37.8029406, 175.2695201333, "24"], +[-37.8032397, 175.2692345167, "33"], +[-37.8024741833, 175.2700198, "14"], +[-37.8017937833, 175.26860115, "61"], +[-37.8018447333, 175.27112975, "3"], +[-37.8020214, 175.2693421333, "40"], +[-37.80326625, 175.2701809, "23"], +[-37.8017527, 175.2694059833, "73"], +[-37.8029359333, 175.2697491833, "22"], +[-37.8024610167, 175.2704812667, "13"], +[-37.8014726, 175.2687842833, "67"], +[-37.80161335, 175.2686131, "63"], +[-37.8019820667, 175.2709954833, "5"], +[-37.80324365, 175.2690424333, "35"], +[-37.8017478333, 175.2707476833, "4"], +[-37.8018926, 175.27006085, "81"], +[-37.8030850333, 175.2700973333, "21"], +[-37.8020822, 175.2703724167, "83"], +[-37.8014524167, 175.2686250167, "65"], +[-37.8015013833, 175.2694943167, "75"], +[-37.8026446167, 175.2694156833, "20"], +[-37.8029268333, 175.2701679833, "19"], +[-37.8025910167, 175.2685246, "51"], +[-37.8029096667, 175.2688718167, "28"], +[-37.8027514833, 175.2685163667, "49"], +[-37.8031923833, 175.2698249833, "27"], +[-37.8029507167, 175.2693136, "26"], +[-37.8032068, 175.2699794667, "25"], +[-37.80292075, 175.26851295, "47"], +[-37.8032572333, 175.2686924, "39"], +[-37.8032146333, 175.2696033333, "29"], +[-37.80307565, 175.2685134333, "45"], +[-37.80321985, 175.26851595, "43"], +[-37.7689922, 175.2492623667, "27"], +[-37.76822935, 175.2488401833, "43"], +[-37.7686511667, 175.2492796833, "23"], +[-37.7680957167, 175.2487648667, "45"], +[-37.7689090833, 175.2491957833, "29"], +[-37.7679587, 175.2487178, "47"], +[-37.7684486333, 175.2492695333, "19"], +[-37.7677863167, 175.2486092833, "51"], +[-37.76856105, 175.2492803, "21"], +[-37.7678838833, 175.2486586, "49"], +[-37.7687575167, 175.2493115167, "25"], +[-37.76841335, 175.2489313333, "39"], +[-37.7685135, 175.2489913833, "37"], +[-37.7683185333, 175.2488856667, "41"], +[-37.7683529333, 175.2492664, "17"], +[-37.7687389833, 175.2491157833, "33"], +[-37.7686333167, 175.2490520167, "35"], +[-37.7688310333, 175.2491577833, "31"], +[-37.7675206833, 175.2492001667, "1"], +[-37.76763585, 175.2492145833, "3"], +[-37.76773415, 175.2492284333, "5"], +[-37.7678350167, 175.2492530167, "7"], +[-37.7679276, 175.2492702333, "9"], +[-37.76776615, 175.24904145, "2"], +[-37.76789865, 175.2490351333, "4"], +[-37.768025, 175.2490534667, "6"], +[-37.7680514333, 175.2492742833, "11"], +[-37.7681332, 175.2492698667, "13"], +[-37.7682571833, 175.2492668167, "15"], +[-37.7629508833, 175.2873304333, "298"], +[-37.7634751667, 175.2860948667, "280"], +[-37.7674457833, 175.2701076833, "28"], +[-37.7652588167, 175.2810427833, "192A"], +[-37.7628755167, 175.2867623333, "293"], +[-37.7662211333, 175.2744545333, "94"], +[-37.7627849333, 175.2869425333, "295"], +[-37.76586595, 175.27598395, "116"], +[-37.76323555, 175.2868017333, "290"], +[-37.7642330333, 175.2815201667, "201"], +[-37.7631514, 175.2869583833, "292"], +[-37.7668975333, 175.2729748333, "70B"], +[-37.76306275, 175.2871163333, "296"], +[-37.76652545, 175.2706365333, "39A"], +[-37.762687, 175.28708995, "297"], +[-37.7664093, 175.2767571333, "126C"], +[-37.76743795, 175.2689026, "10"], +[-37.76485425, 175.2803110667, "184A"], +[-37.7651748167, 175.27489235, "111B"], +[-37.76613795, 175.2748902667, "100"], +[-37.7667730667, 175.2696855333, "17"], +[-37.7644442667, 175.2819509833, "204"], +[-37.7658825333, 175.2691644333, "25"], +[-37.7656857333, 175.27503255, "103A"], +[-37.7672364167, 175.2699462667, "26"], +[-37.7650266667, 175.2753605167, "115"], +[-37.76565815, 175.269017, "27"], +[-37.76366405, 175.2854676167, "270"], +[-37.7667255333, 175.2706328833, "39"], +[-37.7621729833, 175.2876463, "303E"], +[-37.7668449333, 175.2716658833, "52"], +[-37.76475585, 175.2807023167, "190A"], +[-37.7665046333, 175.2731430333, "72"], +[-37.7662745167, 175.2740506167, "88"], +[-37.76670925, 175.2733341667, "74"], +[-37.7667965833, 175.27190655, "56"], +[-37.7665594333, 175.2729014833, "70A"], +[-37.7667660333, 175.2703572, "35"], +[-37.76537765, 175.2753023333, "109"], +[-37.7657183, 175.2766018833, "126"], +[-37.7651863167, 175.2754313, "117A"], +[-37.7640558333, 175.2822566, "229A"], +[-37.7651645667, 175.2757288, "117B"], +[-37.7640700833, 175.2788905667, "167A"], +[-37.7653590833, 175.2754906833, "119"], +[-37.7649183333, 175.2764388167, "129"], +[-37.7652982167, 175.27577115, "119A"], +[-37.7623398, 175.2874499833, "303B"], +[-37.7653785667, 175.27822675, "150"], +[-37.7662488, 175.2767195, "126B"], +[-37.7625916667, 175.2879560833, "310"], +[-37.76409595, 175.28206895, "227"], +[-37.7647823667, 175.2805940333, "190"], +[-37.7672687833, 175.2681924667, "1"], +[-37.7653641333, 175.2784662667, "152"], +[-37.76378505, 175.2823285333, "229B"], +[-37.7655067, 175.2785113667, "152B"], +[-37.7669726, 175.2711951833, "44A"], +[-37.7656258, 175.2785482833, "152C"], +[-37.7664256833, 175.2718618833, "59A"], +[-37.7657991167, 175.2784512, "152D"], +[-37.7638804333, 175.2788504667, "167B"], +[-37.76579165, 175.2786415333, "152E"], +[-37.7637456833, 175.28251485, "231A"], +[-37.76595055, 175.27554545, "112"], +[-37.7639848833, 175.2792250333, "175"], +[-37.7655862167, 175.2777510833, "140A"], +[-37.7670446667, 175.2694207167, "15"], +[-37.7661483667, 175.2693184667, "23"], +[-37.7638599333, 175.2845441, "260"], +[-37.7669191833, 175.2697671333, "31"], +[-37.76607255, 175.2733373, "77"], +[-37.7668387167, 175.2700640667, "33"], +[-37.7636230667, 175.2841183833, "253"], +[-37.7655134667, 175.2747979333, "4/103"], +[-37.76365685, 175.2839406, "251"], +[-37.7653788333, 175.2747574, "3/103"], +[-37.7666890833, 175.2708997167, "41A"], +[-37.76624255, 175.2717512, "59B"], +[-37.7648984667, 175.2785627833, "159"], +[-37.76618775, 175.2719783833, "61B"], +[-37.7667024833, 175.2736055167, "78C"], +[-37.7663693667, 175.2720994333, "61"], +[-37.7635660333, 175.2836439333, "249A"], +[-37.7666891333, 175.2723436, "62"], +[-37.7631067, 175.28519005, "269A"], +[-37.7661198833, 175.27223185, "63B"], +[-37.7644277667, 175.2804518333, "189"], +[-37.7663114167, 175.2723217167, "63"], +[-37.7635950833, 175.2843207833, "261"], +[-37.7662628833, 175.2725194167, "65"], +[-37.7625980333, 175.28725775, "301"], +[-37.7666346, 175.2725628, "66"], +[-37.76453255, 175.2788429167, "163A"], +[-37.7662218, 175.27269655, "67"], +[-37.76483365, 175.2787284333, "161"], +[-37.7668860167, 175.2728504833, "68"], +[-37.7647368, 175.2808205333, "190B"], +[-37.7674884333, 175.2686646667, "8"], +[-37.7664465833, 175.2733993667, "76"], +[-37.7672131667, 175.2686932667, "7"], +[-37.7637722667, 175.2834136, "243"], +[-37.7672040167, 175.2684443667, "5"], +[-37.7626564833, 175.2851257833, "271A"], +[-37.76703355, 175.2684371333, "5A"], +[-37.7660214667, 175.2766491667, "126A"], +[-37.76448275, 175.2802128833, "187"], +[-37.7649567833, 175.2752072, "113"], +[-37.7626682, 175.2878154167, "308"], +[-37.7623026833, 175.2875288667, "303C"], +[-37.7637064167, 175.28375115, "249"], +[-37.7650385333, 175.28097345, "192"], +[-37.7656586333, 175.2769547333, "130"], +[-37.7637419667, 175.28355545, "245"], +[-37.7652945667, 175.2767411167, "131"], +[-37.7656874667, 175.2748715833, "5/103"], +[-37.7652490833, 175.2769544333, "133A"], +[-37.7633704333, 175.2852761667, "269"], +[-37.7651942833, 175.27716455, "137"], +[-37.7640124167, 175.2824212, "229C"], +[-37.7655366667, 175.2773938167, "138"], +[-37.7661351, 175.2760868333, "116A"], +[-37.7654934167, 175.2776195167, "140"], +[-37.76400915, 175.2791436167, "173"], +[-37.7651456333, 175.2774414167, "141"], +[-37.7656443, 175.2753014333, "107"], +[-37.7659277333, 175.2779668, "142"], +[-37.76450425, 175.2817132167, "202"], +[-37.7657173667, 175.2779126667, "144"], +[-37.7660287833, 175.27354425, "79"], +[-37.7650993667, 175.2807498, "186B"], +[-37.7631541, 175.2862004, "285"], +[-37.7651143333, 175.2806581333, "186"], +[-37.7649614, 175.2798607167, "178B"], +[-37.7632567667, 175.2857150333, "275"], +[-37.7630478333, 175.2864251833, "287"], +[-37.7627549833, 175.2876335333, "304"], +[-37.7646382833, 175.2795636, "179"], +[-37.7640584833, 175.2796669, "183B"], +[-37.7672188667, 175.2713317833, "44B"], +[-37.7659854667, 175.2737666167, "83"], +[-37.7623868167, 175.2873667833, "303A"], +[-37.76516405, 175.2764298167, "127A"], +[-37.7641424, 175.28188175, "207"], +[-37.7642298333, 175.27971535, "183A"], +[-37.7650359167, 175.2752143167, "111"], +[-37.7654105333, 175.2761762, "123"], +[-37.76516645, 175.2752474833, "111A"], +[-37.76578415, 175.2763568667, "122"], +[-37.7633199833, 175.2866457, "288"], +[-37.7663163333, 175.2738945, "86"], +[-37.7659107833, 175.27575675, "114"], +[-37.76601225, 175.2764222667, "122A"], +[-37.7629625667, 175.2865960333, "291"], +[-37.7659210833, 175.2739578167, "87"], +[-37.7664904667, 175.2695494, "19"], +[-37.7655177667, 175.2758634667, "121B"], +[-37.7657364667, 175.27356855, "81"], +[-37.76557745, 175.2755908833, "121A"], +[-37.7653535167, 175.2749581667, "2/103"], +[-37.7646028667, 175.2797559667, "181"], +[-37.7661697833, 175.2746882833, "96"], +[-37.7642337667, 175.2789564167, "167"], +[-37.76639525, 175.2694968, "21"], +[-37.7656837, 175.27678515, "128"], +[-37.7634072167, 175.2864933167, "286"], +[-37.7653422667, 175.2764814, "127"], +[-37.7654252333, 175.2778346333, "146A"], +[-37.76492325, 175.2800681, "180"], +[-37.7673022667, 175.2713857333, "44C"], +[-37.76488735, 175.2801868, "180B"], +[-37.7631916167, 175.2860124, "281"], +[-37.7622197, 175.2876940667, "303D"], +[-37.7646918333, 175.27931675, "169"], +[-37.7646089333, 175.2813085167, "196"], +[-37.76499605, 175.2796980333, "178"], +[-37.76453995, 175.2799972, "185"], +[-37.7639245, 175.2828140333, "233"], +[-37.7648241833, 175.2804231667, "184B"], +[-37.7667393167, 175.2721269333, "58"], +[-37.763709, 175.27954465, "183D"], +[-37.7664986333, 175.27086565, "41"], +[-37.7638220167, 175.2795815667, "183C"], +[-37.7643458667, 175.2792426333, "171"], +[-37.7625516, 175.2880349, "312"], +[-37.7629280833, 175.2852121167, "271"], +[-37.7642934667, 175.2810867167, "195"], +[-37.7655219167, 175.2778711333, "146"], +[-37.7643341167, 175.28090565, "193"], +[-37.76589315, 175.2732714833, "77A"], +[-37.7643730667, 175.28071805, "191"], +[-37.765825, 175.2761583333, "120"], +[-37.7630296333, 175.2856175333, "275B"], +[-37.7621276, 175.2875939333, "303F"], +[-37.7647034667, 175.2810032333, "194"], +[-37.7664373667, 175.2766316167, "124A"], +[-37.7638453, 175.2830861833, "235"], +[-37.7662054167, 175.2745407833, "94B"], +[-37.76468015, 175.281108, "194B"], +[-37.7660887333, 175.27510325, "102"], +[-37.7673953, 175.2691723, "12"], +[-37.76475275, 175.27910535, "165B"], +[-37.7642779167, 175.2803665667, "189A"], +[-37.7649701, 175.2770725, "137A"], +[-37.76431425, 175.2793762167, "177"], +[-37.7650397333, 175.2768805, "133B"], +[-37.76332045, 175.2855137, "273"], +[-37.7662042833, 175.27655445, "124"], +[-37.7628361333, 175.28581695, "279"], +[-37.7639663333, 175.2826154333, "231"], +[-37.7651611833, 175.2788263, "156-174"], +[-37.7660383667, 175.2762439333, "120A"], +[-37.7669214167, 175.27141955, "48"], +[-37.7641876, 175.2798528333, "1/187-27/187"], +[-37.7647819667, 175.2789643833, "165A"], +[-37.7641841833, 175.2817030667, "205"], +[-37.7634539, 175.28629695, "284"], +[-37.76440115, 175.2788133167, "163"], +[-37.76653775, 175.2735143833, "78"], +[-37.75958885, 175.2665846333, "2"], +[-37.7602835667, 175.26491825, "19"], +[-37.7601955167, 175.2665624333, "5A"], +[-37.7597876333, 175.2656001667, "12"], +[-37.7600951833, 175.26464385, "22"], +[-37.7602484, 175.2651402, "17"], +[-37.7599886333, 175.26631035, "7"], +[-37.7601383333, 175.26682645, "5"], +[-37.7602856667, 175.2647084667, "21"], +[-37.7600070333, 175.26481995, "20"], +[-37.7596936333, 175.2660037, "8"], +[-37.7598334333, 175.2654075333, "14"], +[-37.7598048, 175.2645874667, "22A"], +[-37.7600672667, 175.2659585333, "11"], +[-37.7599071, 175.2666486167, "3"], +[-37.75973805, 175.2658006167, "10"], +[-37.75986505, 175.2652037, "16"], +[-37.76002965, 175.2661328167, "9"], +[-37.7596212333, 175.2664079167, "4"], +[-37.75966675, 175.26621175, "6"], +[-37.7602119667, 175.2664642333, "7A"], +[-37.7601621, 175.2655049333, "15"], +[-37.77621445, 175.2738606167, "4"], +[-37.7759163, 175.27433785, "2"], +[-37.7759315333, 175.2736288333, "1"], +[-37.7762841333, 175.2737339667, "6"], +[-37.7759864667, 175.2742414, "2A"], +[-37.77584425, 175.27386655, "3"], +[-37.7763825667, 175.2497029, "15"], +[-37.7753877667, 175.249857, "2"], +[-37.7768187833, 175.2494185167, "25A"], +[-37.7758705167, 175.2498236833, "3B"], +[-37.77565115, 175.2487332, "16"], +[-37.7760360833, 175.2500524667, "3"], +[-37.7755287667, 175.24968545, "4"], +[-37.77623805, 175.2498282667, "11"], +[-37.7760115, 175.2490250667, "26"], +[-37.7763331833, 175.2492285833, "19"], +[-37.7758911667, 175.2491796333, "14"], +[-37.7756587, 175.24946015, "8"], +[-37.7761734833, 175.250226, "3A"], +[-37.7759565, 175.2497060667, "7"], +[-37.7760696167, 175.2495186333, "13"], +[-37.7757876833, 175.2493145833, "12"], +[-37.7764808667, 175.2490508, "21"], +[-37.7762424, 175.2501946, "7C"], +[-37.7766321, 175.2491995333, "23"], +[-37.7768423667, 175.2491227833, "27A"], +[-37.77667155, 175.2495416667, "25B"], +[-37.7766691833, 175.2488842, "27B"], +[-37.7761605833, 175.2500548333, "7B"], +[-37.7756457667, 175.24886675, "24"], +[-37.77559535, 175.2488346167, "18"], +[-37.7752952167, 175.2492798, "6B"], +[-37.7753981, 175.2493938333, "6A"], +[-37.7762117333, 175.2493650167, "17"], +[-37.7757399333, 175.2489555833, "20"], +[-37.7754028333, 175.24926145, "8A"], +[-37.73863995, 175.2845882, "4"], +[-37.7387022667, 175.2849162, "3"], +[-37.73903965, 175.2847935, "9"], +[-37.73897975, 175.28488285, "7"], +[-37.7384608333, 175.28458225, "2"], +[-37.7388745167, 175.2849645, "5"], +[-37.73904725, 175.28468595, "10"], +[-37.73853135, 175.2849052167, "1"], +[-37.7388494667, 175.28454595, "6"], +[-37.7390412167, 175.2845709333, "8"], +[-37.7249575167, 175.2765885333, "8"], +[-37.7251193333, 175.2766065167, "6"], +[-37.7248353667, 175.2765685333, "7"], +[-37.7251684667, 175.2764454, "1"], +[-37.7248914167, 175.2764646333, "5"], +[-37.7249925667, 175.27646885, "3"], +[-37.72527685, 175.2765013167, "2"], +[-37.72525755, 175.27661575, "4"], +[-37.75170345, 175.2900433333, "11"], +[-37.7516966, 175.2896420167, "7"], +[-37.7519093833, 175.2892589833, "3"], +[-37.7519659167, 175.2899378, "8"], +[-37.7521693167, 175.2894476167, "4"], +[-37.7519623833, 175.2901544833, "10A"], +[-37.751837, 175.2894327333, "5"], +[-37.75181545, 175.2901227667, "10"], +[-37.75170555, 175.2898437167, "9"], +[-37.7520906667, 175.28970325, "6"], +[-37.8216050333, 175.2737265, "40"], +[-37.8219975333, 175.2743684167, "23"], +[-37.8218729333, 175.27387305, "42"], +[-37.82112305, 175.27600545, "3"], +[-37.8217637167, 175.274092, "36"], +[-37.82085775, 175.2758725167, "4"], +[-37.8213107667, 175.2742820167, "30"], +[-37.82123895, 175.2757998667, "5"], +[-37.8214136, 175.2747988333, "24"], +[-37.8209128833, 175.2757325333, "6"], +[-37.8221752333, 175.2740453, "27"], +[-37.8213302, 175.2756295833, "7"], +[-37.8216876167, 175.2742535, "34"], +[-37.8207123333, 175.2754224, "8"], +[-37.8214927, 175.2753042667, "11"], +[-37.8216568, 175.2750087, "15"], +[-37.8216173833, 175.2744431833, "32"], +[-37.82182835, 175.27468385, "19"], +[-37.822266, 175.2739117333, "31"], +[-37.8209830167, 175.2749019333, "18"], +[-37.82140465, 175.2754700167, "9"], +[-37.8212088, 175.2751717167, "16"], +[-37.82207295, 175.2742131333, "25"], +[-37.8214990667, 175.2746362167, "26"], +[-37.8210379833, 175.2754869, "12"], +[-37.8207571667, 175.2753422167, "10"], +[-37.8211206833, 175.2753232, "14"], +[-37.8212742667, 175.2743546, "28"], +[-37.8219145, 175.27452875, "21"], +[-37.8219553333, 175.2737194333, "44"], +[-37.8215447, 175.2738282167, "38"], +[-37.8215778833, 175.2751550667, "13"], +[-37.8217451167, 175.2748425, "17"], +[-37.8213259667, 175.2749583667, "22"], +[-37.82102615, 175.2748102333, "20"], +[-37.8017143667, 175.2814802, "1"], +[-37.8082946667, 175.3050489, "137"], +[-37.8355985167, 175.3148162167, "632"], +[-37.8125428333, 175.3025471333, "82C"], +[-37.8322744667, 175.3188263, "578"], +[-37.8229360833, 175.321044, "461"], +[-37.8385998333, 175.31684325, "3/625"], +[-37.8115322333, 175.3028358, "91"], +[-37.8379255167, 175.31590605, "5/625"], +[-37.8122827, 175.3029160833, "90A"], +[-37.8378761833, 175.3162701333, "4/625"], +[-37.8119569167, 175.3021887667, "83"], +[-37.8119627667, 175.3028579167, "94A"], +[-37.81184745, 175.30132355, "73"], +[-37.8113439167, 175.3031271167, "95"], +[-37.8252779833, 175.3189480167, "492"], +[-37.8117520667, 175.30317425, "98"], +[-37.8132929, 175.3082575, "274B"], +[-37.8118604167, 175.3030125167, "96"], +[-37.8116297667, 175.3026842333, "89"], +[-37.8145216333, 175.3191019333, "362B"], +[-37.8120957667, 175.3015834333, "77"], +[-37.8141672167, 175.3189519167, "362A"], +[-37.8116554, 175.3033363333, "100"], +[-37.81508385, 175.3171866167, "362"], +[-37.8123001833, 175.3022756, "86A"], +[-37.8112236167, 175.3039569333, "110"], +[-37.8124485167, 175.3150823667, "309"], +[-37.8111177667, 175.3041120667, "112"], +[-37.80820255, 175.3080466833, "221"], +[-37.8353176333, 175.31562635, "624"], +[-37.8127223, 175.3022649, "82A"], +[-37.8120653667, 175.3026922833, "90"], +[-37.8117293833, 175.3011841667, "71"], +[-37.8107695333, 175.30918805, "240"], +[-37.8114317667, 175.30298585, "93"], +[-37.83582365, 175.3144251667, "634"], +[-37.8129732, 175.3166583333, "322"], +[-37.8110024167, 175.3042786167, "114"], +[-37.8123664, 175.3186825167, "337"], +[-37.81118245, 175.3032717667, "97"], +[-37.8354618833, 175.3160449667, "621"], +[-37.8375615, 175.3165903167, "2/625"], +[-37.83667075, 175.31680705, "615"], +[-37.8336583333, 175.3186743833, "588"], +[-37.82614735, 175.3188677, "504"], +[-37.8117330667, 175.3025518667, "87"], +[-37.8351244, 175.3170938, "605"], +[-37.8120511, 175.30323635, "96A"], +[-37.8356626667, 175.31666265, "611"], +[-37.8223148667, 175.3180917, "462"], +[-37.8353978, 175.3163249, "619"], +[-37.8333342, 175.3187708833, "586"], +[-37.8364983667, 175.3150231833, "633"], +[-37.8124431667, 175.3020369167, "84A"], +[-37.8363283333, 175.3144986833, "635"], +[-37.8128526167, 175.3091091333, "274A"], +[-37.8374001167, 175.3139378, "645"], +[-37.8360750833, 175.3148384667, "631"], +[-37.8403450333, 175.3102611667, "702"], +[-37.8136598667, 175.3183870833, "354"], +[-37.81206175, 175.3020318833, "81"], +[-37.8115498833, 175.3035055333, "102"], +[-37.8116001833, 175.3010372667, "69"], +[-37.8085775667, 175.3089225833, "229"], +[-37.8121804833, 175.3030866167, "94B"], +[-37.8100061667, 175.3096120833, "245"], +[-37.8124753667, 175.3023859333, "86B"], +[-37.81114415, 175.3102519667, "261"], +[-37.8276497667, 175.3180944, "520"], +[-37.8118316167, 175.3103757, "266"], +[-37.8122076, 175.3016891167, "79"], +[-37.8116517333, 175.3109281667, "269"], +[-37.8098874167, 175.30601075, "138"], +[-37.8119708833, 175.30145145, "75"], +[-37.8090332667, 175.3066159667, "211"], +[-37.8122242333, 175.3011596833, "74"], +[-37.8091331833, 175.3072934667, "214"], +[-37.8125891333, 175.3022207333, "84B"], +[-37.8103584, 175.3053035, "130"], +[-37.81217655, 175.3025343833, "88"], +[-37.81021395, 175.3055037, "132"], +[-37.8114447, 175.3036563667, "104"], +[-37.8099633167, 175.30524625, "133"], +[-37.8141062833, 175.3194760167, "361"], +[-37.8100778833, 175.3057118833, "134"], +[-37.8360526, 175.3159577333, "1/625"], +[-37.8104673833, 175.3051339667, "128"], +[-37.8126171333, 175.3023906167, "82B"], +[-37.82410165, 175.3195436333, "476"], +[-37.8084966667, 175.3074199, "217"], +[-37.8225035333, 175.31676285, "442"], +[-37.8113423667, 175.30381095, "108"], +[-37.8227674167, 175.3159220667, "438"], +[-37.825067, 175.3190004167, "490"], +[-37.8259244, 175.3128453333, "440"], +[-37.8237722, 175.3197559833, "474"], +[-37.8342690833, 175.3186826833, "593"], +[-37.8157874667, 175.31831505, "378"], +[-37.8281351, 175.3194134333, "523"], +[-37.8103274833, 175.3046962333, "99"], +[-37.73335045, 175.2444268167, "21"], +[-37.7323912, 175.2452453833, "7"], +[-37.7328660167, 175.24371115, "20"], +[-37.73252325, 175.2450959833, "9"], +[-37.73202495, 175.2448612, "1"], +[-37.73267465, 175.24498995, "11"], +[-37.7321977833, 175.2445867667, "4"], +[-37.7328174833, 175.24488785, "13"], +[-37.73206585, 175.2444981167, "2"], +[-37.73296545, 175.2447838, "15"], +[-37.7327785, 175.2445019667, "10"], +[-37.7331136, 175.2446712, "17"], +[-37.7326249333, 175.2446149333, "8"], +[-37.7332568833, 175.2445498833, "19"], +[-37.7326085167, 175.2438905833, "16"], +[-37.7332772667, 175.2442712167, "23"], +[-37.7321521667, 175.2449609833, "3"], +[-37.73295375, 175.2443169167, "12"], +[-37.7332078333, 175.2440655833, "25"], +[-37.7327496667, 175.2440607333, "14"], +[-37.73239965, 175.2447395, "6"], +[-37.7322873833, 175.2450801333, "5"], +[-37.7327393833, 175.2438025, "18"], +[-37.7330283833, 175.2436445833, "29"], +[-37.7330962, 175.2438410667, "27"], +[-37.79567375, 175.3108859833, "5"], +[-37.79488475, 175.31017995, "14"], +[-37.79462005, 175.31001105, "18"], +[-37.7949897667, 175.30976875, "29"], +[-37.79543095, 175.3100252667, "23"], +[-37.7951849167, 175.3103410333, "10"], +[-37.7955609333, 175.3100965333, "21"], +[-37.7950885167, 175.3096757, "27A"], +[-37.7954008667, 175.3108277833, "4"], +[-37.7954612667, 175.3105144, "8"], +[-37.79446935, 175.3099658, "20"], +[-37.7956005667, 175.3112632333, "1"], +[-37.7950242667, 175.3102601333, "12"], +[-37.7953260333, 175.3110496333, "2"], +[-37.7948379667, 175.3097043833, "31"], +[-37.7952707667, 175.3099518, "25"], +[-37.795625, 175.3111029833, "3"], +[-37.7951160667, 175.3099534667, "27"], +[-37.7947294333, 175.3098455, "22"], +[-37.7947451, 175.3101042333, "16"], +[-37.7957291167, 175.31066385, "7"], +[-37.7962068333, 175.31005055, "13A"], +[-37.7958788, 175.3101683833, "17"], +[-37.7961577167, 175.3103640167, "13"], +[-37.79570955, 175.3101700833, "19"], +[-37.7960166167, 175.31028055, "15"], +[-37.7961481333, 175.3105045833, "11"], +[-37.7959569667, 175.31101065, "9B"], +[-37.7959890667, 175.3105186333, "9"], +[-37.8011898167, 175.3247016, "4"], +[-37.80213305, 175.3248972833, "14"], +[-37.8020059333, 175.3250907833, "9"], +[-37.8019182833, 175.3252112, "9A"], +[-37.8018499833, 175.3250076, "7"], +[-37.8024310167, 175.3250983167, "18"], +[-37.8010372833, 175.3250063667, "2"], +[-37.8020207833, 175.3246839167, "12"], +[-37.8013638667, 175.32494155, "3"], +[-37.8023081, 175.32500805, "16"], +[-37.80167485, 175.3248592833, "5"], +[-37.8015952667, 175.3251236667, "3A"], +[-37.8012651, 175.3244159333, "6"], +[-37.8013349667, 175.3241166833, "6A"], +[-37.8014790667, 175.3244389833, "8"], +[-37.801808, 175.3245961167, "10"], +[-37.76040345, 175.2788149167, "12"], +[-37.76001555, 175.2783026667, "17"], +[-37.7609344167, 175.2786267833, "9"], +[-37.75989135, 175.2787023167, "18"], +[-37.7611045167, 175.2780185667, "7"], +[-37.7600422167, 175.2787483, "16"], +[-37.7597164, 175.2786052667, "20"], +[-37.7602088, 175.2787689, "14"], +[-37.7612034167, 175.27811935, "5"], +[-37.7601906833, 175.2783213667, "15"], +[-37.7612038667, 175.2791689, "2"], +[-37.76071325, 175.2789560167, "8"], +[-37.7605567167, 175.2788818667, "10"], +[-37.7610268667, 175.2791011, "4"], +[-37.7611353667, 175.2784529833, "3A"], +[-37.7608715167, 175.2790267667, "6"], +[-37.7607712833, 175.2785457833, "11"], +[-37.7595767833, 175.2785466833, "22"], +[-37.7612753167, 175.2777651833, "5A"], +[-37.761103, 175.2787544667, "3"], +[-37.8126386167, 175.2838861833, "4"], +[-37.8124171667, 175.2841802167, "5"], +[-37.8126618, 175.2843267833, "8"], +[-37.8125779333, 175.2847019, "12"], +[-37.8126398667, 175.28404675, "6"], +[-37.8121641, 175.2848230167, "13A"], +[-37.8123723667, 175.2843815833, "7"], +[-37.8120967167, 175.2848306667, "13B"], +[-37.8126323667, 175.2835305167, "2"], +[-37.8124299333, 175.2847180333, "15"], +[-37.8124213, 175.2838621167, "3"], +[-37.8124085, 175.2835326667, "1"], +[-37.8119602833, 175.28478725, "11"], +[-37.81199825, 175.2846092167, "9A"], +[-37.8127178667, 175.2846361667, "10"], +[-37.8120881833, 175.2843863167, "7A"], +[-37.8123138, 175.28457945, "9"], +[-37.7656041, 175.2498978667, "1-49"], +[-37.7656548833, 175.2497629667, "2-36"], +[-37.7755381, 175.2803654167, "13"], +[-37.7756476667, 175.2789638667, "3A"], +[-37.77420915, 175.28517155, "63A"], +[-37.7730344833, 175.2926143, "66A"], +[-37.7740741833, 175.2917792167, "54A"], +[-37.7738640333, 175.28646075, "75A"], +[-37.7729003833, 175.2916684667, "133"], +[-37.7737662, 175.28679615, "77A"], +[-37.7761646833, 175.2791164167, "2"], +[-37.7734066333, 175.2912393667, "50"], +[-37.7744288667, 175.2809704, "27B"], +[-37.7732027667, 175.2921536333, "62"], +[-37.7747942833, 175.28284095, "49A"], +[-37.7734176833, 175.29224435, "62A"], +[-37.7755613833, 175.2801490833, "11"], +[-37.7733426667, 175.2898411667, "107A"], +[-37.7734787667, 175.2885600833, "93B"], +[-37.772808, 175.2920626, "139"], +[-37.7753057667, 175.28031985, "13A"], +[-37.7742958333, 175.2808991833, "27"], +[-37.7738455167, 175.2918341333, "54B"], +[-37.7748670667, 175.2831548167, "51"], +[-37.7749303333, 175.2802610167, "17B"], +[-37.7758299, 175.28070975, "18"], +[-37.77353725, 175.2915592667, "52A"], +[-37.7758760167, 175.2805008, "16"], +[-37.77471585, 175.28311895, "51B"], +[-37.7750553333, 175.2804537333, "17"], +[-37.77362955, 175.29230135, "56C"], +[-37.7753300167, 175.2811451167, "23"], +[-37.7746495333, 175.28103445, "29"], +[-37.7755846, 175.28169725, "24"], +[-37.7725580833, 175.2917325667, "137"], +[-37.7752746, 175.2814152833, "35"], +[-37.7743691, 175.2852942333, "63"], +[-37.7753647667, 175.2826382667, "32"], +[-37.7724900333, 175.2919600833, "1/137A"], +[-37.77530245, 175.2828495333, "34"], +[-37.7750109833, 175.2809030167, "23A"], +[-37.7750478167, 175.2840185333, "46"], +[-37.7757458, 175.2826934, "32C"], +[-37.7756521667, 175.2799428667, "9"], +[-37.7754493333, 175.28222185, "1/28-8/28"], +[-37.7726230333, 175.2921755167, "139B"], +[-37.77582455, 175.2790800333, "3"], +[-37.7729623667, 175.2913718, "129"], +[-37.7731654667, 175.29056275, "117"], +[-37.7732450667, 175.2919455167, "60"], +[-37.77320175, 175.2904089667, "115"], +[-37.7738931667, 175.286091, "71A"], +[-37.77369195, 175.2922268, "56B"], +[-37.7741618333, 175.2861633, "71"], +[-37.77324985, 175.2902561333, "113"], +[-37.7730997833, 175.2926430833, "66B"], +[-37.7737185667, 175.2916463833, "54"], +[-37.7734741333, 175.28924315, "99A"], +[-37.7726573333, 175.2920105833, "139A"], +[-37.7730156333, 175.2912044833, "127"], +[-37.77470055, 175.2807635167, "23B"], +[-37.7730697, 175.2909719333, "123"], +[-37.774194, 175.2810831333, "27C"], +[-37.7733172833, 175.2899589333, "109"], +[-37.7762823, 175.27921395, "2A"], +[-37.7731959667, 175.2891159833, "99B"], +[-37.7728638167, 175.2918172667, "135"], +[-37.77304445, 175.2910986833, "125"], +[-37.77540885, 175.2824227833, "30"], +[-37.7756265, 175.2814293833, "22"], +[-37.7757843333, 175.2824943167, "28B"], +[-37.77376255, 175.2921369, "56A"], +[-37.7748259667, 175.2803749167, "17A"], +[-37.7732839667, 175.2926439, "66E"], +[-37.77335465, 175.2914322167, "52"], +[-37.7733292667, 175.29257835, "66F"], +[-37.77525745, 175.2841510333, "46B"], +[-37.7733898833, 175.2925079833, "66G"], +[-37.7733914333, 175.28968005, "105"], +[-37.7734526667, 175.2924558, "66H"], +[-37.7738699167, 175.28623565, "73"], +[-37.7731016, 175.2923153, "64A"], +[-37.7733518833, 175.2878727333, "87A"], +[-37.7731737667, 175.292339, "64B"], +[-37.7732749667, 175.2901584833, "111"], +[-37.7732451, 175.2923616, "64C"], +[-37.7743158833, 175.2854922167, "65A"], +[-37.7733164333, 175.2923852667, "64D"], +[-37.7741550333, 175.28539255, "65B"], +[-37.7749903333, 175.2812398333, "33"], +[-37.7734424, 175.2894113833, "101"], +[-37.7750057667, 175.2826276833, "45"], +[-37.7735773333, 175.2923734167, "56D"], +[-37.77495575, 175.2827817167, "47"], +[-37.7763573, 175.2796406167, "8A"], +[-37.7749063333, 175.2829683167, "49"], +[-37.7751093167, 175.2837754667, "42"], +[-37.77482225, 175.2833300667, "53"], +[-37.7751713667, 175.2818055667, "39"], +[-37.7747850167, 175.2835085333, "55"], +[-37.77507995, 175.2821813333, "43"], +[-37.7746701667, 175.2840409167, "59"], +[-37.7752247333, 175.2816213167, "37"], +[-37.7746210667, 175.2842688833, "61"], +[-37.7736209333, 175.2886047667, "93C"], +[-37.7740882333, 175.2856982167, "67B"], +[-37.7727385333, 175.2911793167, "127A"], +[-37.77396005, 175.2856679167, "67A"], +[-37.7729394667, 175.2915098, "131"], +[-37.7742648667, 175.2857095667, "67C"], +[-37.77541145, 175.2808090833, "21"], +[-37.7742077833, 175.2859454833, "69"], +[-37.77466965, 175.28031375, "19"], +[-37.7732869, 175.2917431, "58A"], +[-37.7731391667, 175.2906929, "119"], +[-37.7734882667, 175.2918115167, "58B"], +[-37.773159, 175.2892988167, "101A"], +[-37.7730172333, 175.2928515333, "68"], +[-37.7757459, 175.2818286333, "24A"], +[-37.7737498667, 175.2870429333, "79A"], +[-37.77514455, 175.28411275, "46A"], +[-37.7739683667, 175.2870415, "79"], +[-37.7752806667, 175.2838218333, "1/42A-4/42A"], +[-37.7737349167, 175.28726345, "81A"], +[-37.7740285167, 175.2853507833, "65C"], +[-37.7736108167, 175.2872165333, "81B"], +[-37.7731036667, 175.2908378, "121"], +[-37.77391705, 175.2872682833, "81"], +[-37.7743636667, 175.2812021333, "27A"], +[-37.7736323333, 175.2874744, "83A"], +[-37.7765522833, 175.2795971833, "6"], +[-37.7738223, 175.2876946167, "85"], +[-37.7733455333, 175.2885024167, "93A"], +[-37.7737722333, 175.2879250833, "87"], +[-37.775117, 175.2834625833, "40"], +[-37.7735964333, 175.28803255, "89A"], +[-37.7736612167, 175.2884034, "91"], +[-37.7737080167, 175.2881831667, "89"], +[-37.77340965, 175.2895604833, "103"], +[-37.7740276333, 175.2867959, "77"], +[-37.77611305, 175.2793539, "4"], +[-37.7738674667, 175.287482, "83"], +[-37.7741192333, 175.2863673167, "73A"], +[-37.7740730833, 175.2865998667, "75"], +[-37.7734596, 175.2909804167, "48"], +[-37.7731634, 175.2926718, "66C"], +[-37.7748209, 175.28113765, "31A"], +[-37.7764854333, 175.2799403667, "6A"], +[-37.7754195, 175.2797809667, "9B"], +[-37.77661725, 175.27999985, "6B"], +[-37.7747649, 175.2813277, "31B"], +[-37.7753907833, 175.28001095, "11A"], +[-37.77365655, 175.2913102167, "50B"], +[-37.7759856167, 175.2799511333, "10"], +[-37.7758670667, 175.2788934833, "1"], +[-37.7763454, 175.2804821167, "14"], +[-37.7757189167, 175.2795147833, "5"], +[-37.7759271667, 175.2802061667, "12"], +[-37.7734250333, 175.2883104, "1/91"], +[-37.7760502833, 175.2796111, "8"], +[-37.7755222, 175.2819344667, "1/26-6/26"], +[-37.7732175167, 175.2927098, "66D"], +[-37.7737390667, 175.291899, "56"], +[-37.7733076833, 175.28858915, "95C"], +[-37.7728985833, 175.2904239, "117A"], +[-37.7750520667, 175.2807629833, "1/21A"], +[-37.7734196, 175.2886536, "95B"], +[-37.7748426333, 175.2806661833, "2/21A"], +[-37.7758462667, 175.2822547833, "28A"], +[-37.7752659167, 175.28067875, "21C"], +[-37.77547015, 175.2805621, "15"], +[-37.7744922, 175.2806942833, "4/23C"], +[-37.7756637833, 175.2797143667, "7"], +[-37.7746017833, 175.28056965, "3/21A"], +[-37.7731429667, 175.2896961, "107"], +[-37.7745237833, 175.2805608667, "21B"], +[-37.7752243333, 175.2831649667, "36"], +[-37.7731370333, 175.2894322833, "103B"], +[-37.7755885167, 175.282648, "32B"], +[-37.7743006333, 175.2805959333, "3/23C"], +[-37.7751226833, 175.2820026167, "41"], +[-37.7740745833, 175.28060625, "2/23C"], +[-37.7753446, 175.2841896833, "46C"], +[-37.7741143, 175.2804938667, "1/23C"], +[-37.7722960333, 175.2918738667, "137A"], +[-37.7735196, 175.2890320833, "97"], +[-37.7723442, 175.2918940167, "2/137A"], +[-37.7735650167, 175.2888253, "95"], +[-37.7727087833, 175.2925760333, "147"], +[-37.7727461, 175.2923328167, "141"], +[-37.7800536667, 175.22133325, "8"], +[-37.77944625, 175.22156555, "5"], +[-37.780186, 175.2211000167, "6"], +[-37.7802203833, 175.2212068167, "6A"], +[-37.7798570833, 175.2215823667, "9"], +[-37.779709, 175.2215243667, "7"], +[-37.7798910667, 175.2211576667, "4"], +[-37.77974875, 175.2209543833, "2"], +[-37.7795959167, 175.2212687833, "3"], +[-37.7794986333, 175.22106695, "1"], +[-37.7799799833, 175.2214940833, "10"], +[-37.7796738667, 175.2439552, "30"], +[-37.77797465, 175.2442385, "13A"], +[-37.7773958833, 175.2440478833, "7A"], +[-37.7794325833, 175.2433293667, "28"], +[-37.7775231, 175.2441799, "9A"], +[-37.7781137667, 175.2443353333, "15"], +[-37.7783710833, 175.2446283833, "19"], +[-37.7795566, 175.2442885667, "25"], +[-37.7782144833, 175.2449296667, "19A"], +[-37.77761615, 175.2445166333, "11A"], +[-37.7790092667, 175.2441787, "20A"], +[-37.7777765333, 175.24431275, "11B"], +[-37.7791673833, 175.2440244167, "22"], +[-37.7783247167, 175.2440723167, "10"], +[-37.7772223333, 175.2440911833, "5A"], +[-37.7778267333, 175.24411115, "11"], +[-37.7777048667, 175.2439938833, "9"], +[-37.7796510833, 175.2432707333, "28E"], +[-37.7774349667, 175.2437376667, "5"], +[-37.7780946833, 175.24484275, "17B"], +[-37.7772984, 175.2436119, "3"], +[-37.7794686667, 175.2435178333, "28D"], +[-37.77720675, 175.2430477, "2"], +[-37.7773892667, 175.2431869, "2A"], +[-37.7784445667, 175.2439837167, "10A"], +[-37.7784987167, 175.2438253833, "10B/10"], +[-37.7785592167, 175.2440683667, "14A"], +[-37.7787761, 175.2435395333, "14D"], +[-37.7788344167, 175.2433712833, "14E"], +[-37.7785167167, 175.2442627667, "14"], +[-37.7777181333, 175.2446117167, "13"], +[-37.77788015, 175.24447685, "13B"], +[-37.7787494833, 175.2433381667, "12B"], +[-37.77817575, 175.2446613833, "17A"], +[-37.7788343667, 175.2439283333, "16"], +[-37.7780305, 175.2446165833, "15A"], +[-37.7781906833, 175.2439007667, "6"], +[-37.7782342667, 175.2445135, "17"], +[-37.7788545, 175.2443171667, "18"], +[-37.7786862667, 175.2444084167, "18A"], +[-37.7786528833, 175.2434832833, "12A"], +[-37.7785684167, 175.2436221833, "12"], +[-37.7786369833, 175.24392945, "14B"], +[-37.7786830833, 175.24370675, "14C"], +[-37.7771743833, 175.2434925333, "1"], +[-37.77919005, 175.2445001333, "21"], +[-37.7791153, 175.2445528833, "21A"], +[-37.7789215833, 175.2440946833, "20B"], +[-37.7775838167, 175.2438555667, "7"], +[-37.7793335333, 175.24392835, "24A"], +[-37.7793375833, 175.2443814333, "23"], +[-37.7794982167, 175.2446983, "23A"], +[-37.7790474833, 175.2437945667, "22A"], +[-37.77932055, 175.2434058333, "26B"], +[-37.7792501333, 175.2435879167, "26A"], +[-37.7792952167, 175.2437078833, "24B"], +[-37.7795258667, 175.2439197833, "28A"], +[-37.7795009167, 175.2433152167, "28C"], +[-37.7795433167, 175.2436449, "28B"], +[-37.7774833167, 175.2432666, "2B"], +[-37.8205178333, 175.2941448833, "37"], +[-37.8210199167, 175.2932812, "21"], +[-37.82096285, 175.2931192333, "19"], +[-37.8208582833, 175.2938149167, "27"], +[-37.8207616167, 175.2925797, "11"], +[-37.8207790833, 175.2941650333, "35"], +[-37.8206425667, 175.2942668167, "39"], +[-37.8211335833, 175.2943109, "45"], +[-37.82105345, 175.2923171667, "10"], +[-37.8206703333, 175.2923948833, "7"], +[-37.82140625, 175.2932786667, "20"], +[-37.8212296667, 175.2928400667, "16"], +[-37.8207877667, 175.29370535, "25"], +[-37.8217068, 175.2934538, "24"], +[-37.82109715, 175.2934655667, "23"], +[-37.8214673833, 175.2934659667, "22"], +[-37.82057055, 175.2930120667, "15"], +[-37.8212764167, 175.2938644, "31"], +[-37.8211753167, 175.29367355, "29"], +[-37.8215683, 175.2937252667, "26"], +[-37.8211877167, 175.2926711167, "14"], +[-37.8212320667, 175.2940557, "33"], +[-37.8208178, 175.29274025, "13"], +[-37.8211062833, 175.2924899667, "12"], +[-37.82099125, 175.29216245, "8"], +[-37.8208972667, 175.2929466833, "17"], +[-37.8212359167, 175.2918845, "6"], +[-37.8205343, 175.2920237333, "3"], +[-37.8205889, 175.2922123333, "5"], +[-37.8208868833, 175.2919155833, "4"], +[-37.8209439, 175.2943130333, "43"], +[-37.8207842833, 175.29428535, "41"], +[-37.8204472833, 175.2926183833, "9"], +[-37.82126575, 175.2944011333, "47"], +[-37.7255504167, 175.2673677, "14"], +[-37.7249159167, 175.2679167667, "6"], +[-37.7254828167, 175.2676213833, "16"], +[-37.7245756167, 175.2680416833, "2"], +[-37.72554195, 175.26777605, "15"], +[-37.72474045, 175.2679975833, "4"], +[-37.7255569833, 175.2679993833, "13"], +[-37.7254088333, 175.2680275667, "11"], +[-37.7252462167, 175.2681252833, "9"], +[-37.7250897167, 175.2682359667, "7"], +[-37.72494015, 175.26832605, "5"], +[-37.7247588833, 175.2683738, "3"], +[-37.7246075167, 175.2684018, "1"], +[-37.72536095, 175.2674935833, "12"], +[-37.7252250167, 175.2675675167, "10"], +[-37.7250630167, 175.2677892333, "8"], +[-37.7761864667, 175.2969422333, "36A"], +[-37.7757650667, 175.2940795, "12"], +[-37.7754619333, 175.2943796, "9"], +[-37.7757720167, 175.2944294, "16"], +[-37.77615465, 175.29676625, "34A"], +[-37.7757617833, 175.2939553667, "10"], +[-37.7761278833, 175.2963738, "32A"], +[-37.7757723, 175.2942366, "14"], +[-37.7759735167, 175.2967013333, "34"], +[-37.7757791833, 175.2946361, "16A"], +[-37.7757457, 175.2933556, "4"], +[-37.7754733167, 175.29500025, "15"], +[-37.7754273833, 175.2937442333, "5"], +[-37.7759259833, 175.29441545, "16B"], +[-37.77598625, 175.2964581333, "32"], +[-37.7760244333, 175.2947562, "18A"], +[-37.77594895, 175.2962147, "30"], +[-37.7754697, 175.2947766833, "13"], +[-37.7761283667, 175.2962757167, "30A"], +[-37.7757909, 175.2948443167, "18"], +[-37.7754234833, 175.2935414333, "3A"], +[-37.7752033333, 175.2936955333, "3B"], +[-37.7757139833, 175.2931867167, "2"], +[-37.7750631167, 175.2937271667, "3C"], +[-37.7760443833, 175.2969532333, "36"], +[-37.7757525667, 175.2935832667, "6"], +[-37.7754583833, 175.2945521667, "11"], +[-37.7757541, 175.2937884, "8"], +[-37.7759405333, 175.2971816667, "38"], +[-37.77553555, 175.2959109, "19A"], +[-37.77603645, 175.2933294333, "4A"], +[-37.7755089, 175.2957643167, "19"], +[-37.77547705, 175.2951878167, "17"], +[-37.77599615, 175.29497235, "20A"], +[-37.7758083167, 175.29507285, "20"], +[-37.7755578, 175.2961222833, "21"], +[-37.7756006333, 175.2963769833, "23"], +[-37.7756436, 175.2966487833, "25"], +[-37.7760850333, 175.2957468, "26A"], +[-37.7758698333, 175.2957546833, "26"], +[-37.7756888333, 175.2969924167, "27"], +[-37.7759134667, 175.2959773833, "28"], +[-37.7758115833, 175.29526415, "22"], +[-37.77585435, 175.29551, "24"], +[-37.73186465, 175.27457365, "1"], +[-37.7318683833, 175.2758574833, "12"], +[-37.7317351167, 175.27445615, "3"], +[-37.7318834833, 175.27617755, "14"], +[-37.7315549, 175.2763701167, "25"], +[-37.7318414333, 175.2761796167, "16"], +[-37.7314424333, 175.2756860667, "15"], +[-37.7316878833, 175.2758157833, "18"], +[-37.7315547667, 175.276149, "21"], +[-37.7315514667, 175.27589615, "17"], +[-37.7315519833, 175.2760239, "19"], +[-37.7315565833, 175.2762729167, "23"], +[-37.7317088, 175.27544135, "8"], +[-37.73144465, 175.2751021167, "9"], +[-37.73171795, 175.2751016167, "6"], +[-37.7318343333, 175.27491595, "4"], +[-37.7319952, 175.2748518667, "2"], +[-37.7315692167, 175.2748304833, "7"], +[-37.73171345, 175.2746599667, "5"], +[-37.73142065, 175.2754893333, "13"], +[-37.7314086167, 175.27530085, "11"], +[-37.7317524333, 175.2756445667, "10"], +[-37.7639373333, 175.2902145, "1"], +[-37.7643169667, 175.2906565333, "9"], +[-37.76422445, 175.2906450667, "7"], +[-37.7643882833, 175.29045205, "10"], +[-37.7644122167, 175.2902204833, "8"], +[-37.7643091667, 175.2901199, "6"], +[-37.7642319333, 175.2903412167, "5"], +[-37.7640969, 175.2902789667, "3"], +[-37.7639733333, 175.29004395, "2"], +[-37.7641454833, 175.29009615, "4"], +[-37.7832141167, 175.2511636, "16"], +[-37.7822889667, 175.2507497, "32"], +[-37.7824224, 175.2508538, "30"], +[-37.7815448667, 175.2500158, "36D"], +[-37.7837695, 175.2509568833, "10"], +[-37.78400595, 175.2507602167, "11"], +[-37.7831758333, 175.2507779833, "35"], +[-37.7834108667, 175.251037, "14"], +[-37.7839259, 175.25160445, "4"], +[-37.7838183333, 175.24995565, "19"], +[-37.7818744333, 175.25039325, "36B"], +[-37.78413885, 175.2513096, "5"], +[-37.78265735, 175.2510996333, "26"], +[-37.7838196167, 175.2511719333, "8"], +[-37.7837069167, 175.2505752, "23"], +[-37.7831507167, 175.2503110833, "33"], +[-37.7824783667, 175.2503716667, "43"], +[-37.7825827167, 175.2505183667, "41C"], +[-37.7840579667, 175.2509092333, "9"], +[-37.7827095167, 175.2506440667, "41"], +[-37.78227265, 175.2503726167, "43A"], +[-37.7841796333, 175.2515210667, "3"], +[-37.7838666333, 175.25138375, "6"], +[-37.78201075, 175.2505472667, "36"], +[-37.7838740333, 175.2504109667, "15"], +[-37.78289015, 175.2508621667, "39"], +[-37.7827763167, 175.2511754833, "24"], +[-37.7830484667, 175.2508516167, "37"], +[-37.7839141833, 175.2506079333, "13"], +[-37.7821547833, 175.25041495, "38"], +[-37.7835256167, 175.2501859, "25"], +[-37.7841018667, 175.2511090333, "7"], +[-37.7836738167, 175.2500901333, "21"], +[-37.7833779167, 175.2507089667, "29"], +[-37.7817195833, 175.2502193833, "36C"], +[-37.7829890167, 175.2514020833, "20"], +[-37.7828973333, 175.2512525333, "22"], +[-37.7835589333, 175.2513614, "12"], +[-37.7830569167, 175.2512539667, "18"], +[-37.7822232833, 175.2505957167, "34"], +[-37.7835318167, 175.2506348167, "27"], +[-37.7825461833, 175.2509922833, "28"], +[-37.7838353167, 175.2501948, "17"], +[-37.7839551, 175.2518102333, "2"], +[-37.7567798667, 175.2880060667, "6"], +[-37.75661855, 175.2875022333, "3A"], +[-37.7566912667, 175.2873278167, "1"], +[-37.7565628167, 175.2876444167, "3B"], +[-37.7568938167, 175.287783, "4"], +[-37.75628925, 175.2879828667, "9"], +[-37.7561358167, 175.2878449333, "7"], +[-37.7564556667, 175.2879352833, "11"], +[-37.75658805, 175.28793465, "8"], +[-37.7563474667, 175.2877481667, "5"], +[-37.7569009833, 175.2875670167, "2"], +[-37.7825338333, 175.26423555, "15"], +[-37.78354505, 175.2641881, "3"], +[-37.7827647, 175.2643368167, "13"], +[-37.7831443, 175.2643132833, "9"], +[-37.7820581167, 175.2647502333, "22"], +[-37.78371795, 175.26452075, "2B"], +[-37.7820935833, 175.2650172, "20"], +[-37.7835977, 175.2646243, "2"], +[-37.7827057333, 175.2647467, "10"], +[-37.7832735833, 175.2642451, "7"], +[-37.7838526667, 175.264484, "2A"], +[-37.7819915667, 175.26429185, "26"], +[-37.78288655, 175.2647693667, "8"], +[-37.7822125167, 175.2651900333, "18"], +[-37.7822681333, 175.2641541833, "19"], +[-37.7825596833, 175.2646787833, "12"], +[-37.7834147167, 175.2642233333, "5"], +[-37.7830037167, 175.2643495833, "11"], +[-37.7820150333, 175.2643902, "24"], +[-37.7836909333, 175.2641636667, "1"], +[-37.7826261667, 175.2642794167, "13A"], +[-37.7822486333, 175.2645416667, "16"], +[-37.7823488333, 175.2650412333, "16A"], +[-37.7824127333, 175.2646216333, "14"], +[-37.7824642, 175.2642002833, "17"], +[-37.7829972833, 175.2647553, "6"], +[-37.7858456333, 175.26435845, "30"], +[-37.7904069167, 175.2712156833, "96"], +[-37.7873020167, 175.26689285, "55A"], +[-37.7911476167, 175.2716781, "102"], +[-37.7873632667, 175.2669850833, "55B"], +[-37.7848700167, 175.2631192833, "11"], +[-37.7874230167, 175.2670693167, "55C"], +[-37.7849654333, 175.26365885, "17"], +[-37.7853175, 175.2642575833, "25"], +[-37.7906957167, 175.27264395, "101"], +[-37.78987315, 175.27155275, "93"], +[-37.7849306667, 175.2618209, "6"], +[-37.78541865, 175.2643796, "27"], +[-37.7900704833, 175.2705242333, "92"], +[-37.7857540333, 175.26419855, "28"], +[-37.7900184167, 175.2713135833, "93A"], +[-37.7861631667, 175.2653747667, "37"], +[-37.7907237833, 175.2717967667, "100"], +[-37.78640565, 175.2650672167, "38"], +[-37.7846261667, 175.2618230167, "7"], +[-37.7875315167, 175.2672078, "57"], +[-37.7848668333, 175.2616308167, "4"], +[-37.7880688167, 175.2673154167, "56"], +[-37.7855229667, 175.2661663667, "39A"], +[-37.7876276167, 175.2673297167, "59"], +[-37.7851521167, 175.2628933, "10"], +[-37.7895463, 175.26915815, "80A"], +[-37.7867131833, 175.2655957167, "40"], +[-37.7894793167, 175.2693912167, "80"], +[-37.7904514, 175.2721491667, "97B"], +[-37.7895790667, 175.2695592667, "82"], +[-37.78487055, 175.2629752833, "9C"], +[-37.7896504333, 175.2705656167, "83"], +[-37.7902959, 175.2710120667, "94"], +[-37.7896766167, 175.26977335, "84"], +[-37.7917169667, 175.27238985, "112H"], +[-37.7896437833, 175.2708936167, "87A"], +[-37.78743155, 175.2665340667, "42A"], +[-37.7895650833, 175.2707466833, "85A"], +[-37.7849272333, 175.2635036167, "15"], +[-37.79011425, 175.2714774, "95"], +[-37.7846471833, 175.2619991833, "7A"], +[-37.7909342833, 175.27310835, "105A-105L"], +[-37.7912229, 175.2721641333, "104B"], +[-37.7908204167, 175.2728760667, "1/103-3/103"], +[-37.7852361333, 175.2641495, "23"], +[-37.7904535, 175.27256905, "99A"], +[-37.7845452333, 175.26159955, "5"], +[-37.7884565333, 175.2678126333, "60"], +[-37.7918497167, 175.27376285, "128A"], +[-37.7844571167, 175.2613023, "1C"], +[-37.7856341, 175.2640606667, "24"], +[-37.7845594833, 175.2612605833, "1B"], +[-37.7851743667, 175.2630499333, "12"], +[-37.78464155, 175.2612279833, "1A"], +[-37.7882876833, 175.2681491833, "65"], +[-37.7844986167, 175.2614364833, "3"], +[-37.7904916333, 175.272113, "97A"], +[-37.78479775, 175.2614034667, "2"], +[-37.7909205333, 175.27218045, "104"], +[-37.7852253333, 175.2633869667, "16"], +[-37.7849960833, 175.2620167833, "8"], +[-37.7917758667, 175.2732225, "120"], +[-37.7868239333, 175.26575415, "40B"], +[-37.79186525, 175.2731209833, "122"], +[-37.79048665, 175.27134855, "98"], +[-37.7918917833, 175.2733321167, "124"], +[-37.7848365, 175.2627450667, "9A"], +[-37.79157145, 175.2736403333, "126"], +[-37.7905808333, 175.2724107, "99"], +[-37.7916770167, 175.2738445333, "128"], +[-37.7848968, 175.2632851833, "13"], +[-37.7859452667, 175.2650956667, "33"], +[-37.7854957167, 175.2638616167, "22"], +[-37.78606245, 175.2652327833, "35"], +[-37.7911963, 175.2718047167, "104C"], +[-37.78625155, 175.2654801, "39"], +[-37.7899654167, 175.2703332333, "90"], +[-37.7863729667, 175.2656729, "41"], +[-37.7862815, 175.2649663167, "36"], +[-37.78735755, 175.2664333167, "40A"], +[-37.78520275, 175.2632276167, "14"], +[-37.7875194, 175.2666318833, "44"], +[-37.7895218667, 175.2702420167, "1/79-6/79"], +[-37.78759705, 175.26677145, "46"], +[-37.78994635, 175.2711457167, "91"], +[-37.7876601, 175.2668647, "48"], +[-37.7850187667, 175.26384315, "19"], +[-37.7877672833, 175.2670170667, "50"], +[-37.79018345, 175.2716081, "97"], +[-37.7871624833, 175.26671235, "51"], +[-37.791083, 175.2721517, "104A"], +[-37.7878974667, 175.2671183333, "52"], +[-37.7864718333, 175.26581585, "43"], +[-37.78799115, 175.2672434333, "54"], +[-37.7885636167, 175.26801875, "62"], +[-37.7888868833, 175.26784935, "64"], +[-37.7887117333, 175.2681907333, "66"], +[-37.7887903667, 175.2682973167, "68"], +[-37.78888455, 175.2684244, "70"], +[-37.7890208833, 175.2686426333, "72"], +[-37.7893112667, 175.2698396167, "77B"], +[-37.7890207833, 175.2693529167, "75"], +[-37.7891989167, 175.2705112, "77D"], +[-37.7894376833, 175.2700821167, "77A"], +[-37.7892235833, 175.2702821, "77C"], +[-37.7898773333, 175.2696699, "86A"], +[-37.7897013, 175.2707015333, "85"], +[-37.78978505, 175.2708548, "87"], +[-37.78977905, 175.2699578667, "86"], +[-37.7898682833, 175.2701464667, "88"], +[-37.7898739167, 175.2709933167, "89"], +[-37.7851041, 175.26397325, "21A"], +[-37.7914431167, 175.2728314167, "112C"], +[-37.7915832667, 175.27256515, "112A"], +[-37.7916177167, 175.2727981667, "112B"], +[-37.7911588167, 175.27269475, "110"], +[-37.7859281, 175.2657816333, "37B"], +[-37.7857188, 175.2659874667, "37D"], +[-37.7910685167, 175.2725113333, "108"], +[-37.7884876667, 175.2684242667, "67"], +[-37.79129765, 175.2725090167, "108A"], +[-37.7910004167, 175.2723456333, "106"], +[-37.7912538667, 175.2728615333, "112"], +[-37.7915693833, 175.2724169167, "112E"], +[-37.7916180833, 175.27218855, "112K"], +[-37.7918248833, 175.2726822, "112F"], +[-37.7914552667, 175.27221725, "112J"], +[-37.79172245, 175.2725425167, "112G"], +[-37.7914020833, 175.2732439333, "116"], +[-37.7913396333, 175.2730573833, "114"], +[-37.79147255, 175.2733828833, "118"], +[-37.7853924167, 175.2637303333, "20C"], +[-37.78526035, 175.2635529667, "20"], +[-37.8179427667, 175.2678648333, "37"], +[-37.8194216167, 175.2700213333, "16"], +[-37.8184101333, 175.2691958333, "42"], +[-37.8197929, 175.2703336, "10"], +[-37.8195398333, 175.2701179, "14"], +[-37.8197090333, 175.2698853333, "11"], +[-37.8188991333, 175.2695222333, "24"], +[-37.8196666667, 175.2702334833, "12"], +[-37.8187456333, 175.2696165, "26"], +[-37.8191568, 175.2698028833, "20"], +[-37.8192850833, 175.2699040833, "18"], +[-37.8186441833, 175.2687572667, "36"], +[-37.81901415, 175.2690800833, "19"], +[-37.818484, 175.26879665, "38"], +[-37.81847245, 175.2691720833, "40"], +[-37.81878125, 175.2692091167, "32"], +[-37.81741885, 175.2680441, "43"], +[-37.8187246167, 175.2690747667, "34"], +[-37.8179587667, 175.2682338833, "56"], +[-37.8185231167, 175.2679771333, "31"], +[-37.8172445167, 175.2681040167, "45"], +[-37.8183174, 175.2689111333, "44"], +[-37.8181329333, 175.2682186, "54"], +[-37.8202999, 175.2702997, "3"], +[-37.8186648333, 175.2696409, "28"], +[-37.8201918167, 175.2706177333, "4"], +[-37.81959375, 175.2697804, "13"], +[-37.8182843667, 175.2688205333, "46"], +[-37.8187369167, 175.2695032, "30"], +[-37.8184755833, 175.2686511, "48"], +[-37.8189206, 175.2688618167, "21"], +[-37.8174955, 175.26841875, "62"], +[-37.8186768167, 175.2682028333, "27"], +[-37.8173234167, 175.2684785833, "64"], +[-37.8190342333, 175.2697040167, "22"], +[-37.8177978167, 175.2683045, "58"], +[-37.8188664167, 175.2686504167, "23"], +[-37.82005835, 175.2705367, "6"], +[-37.8194971833, 175.2696419, "15"], +[-37.81998135, 175.2700920667, "7"], +[-37.8187994333, 175.2684355667, "25"], +[-37.8176490167, 175.2683686167, "60"], +[-37.81992205, 175.2704402167, "8"], +[-37.8201203167, 175.2701982667, "5"], +[-37.8198450833, 175.2699841, "9"], +[-37.8185197333, 175.2684371167, "50"], +[-37.8183184167, 175.2682521167, "52"], +[-37.7561141833, 175.2342459667, "69"], +[-37.7587278167, 175.2355586, "33"], +[-37.7620416333, 175.2346714167, "2"], +[-37.7579655333, 175.2351262333, "48"], +[-37.7574431, 175.2345767167, "37"], +[-37.7580932667, 175.2352667, "46"], +[-37.7568749, 175.2351534333, "58"], +[-37.7593451, 175.2368760667, "28B"], +[-37.7572089167, 175.2351189, "56"], +[-37.7567608333, 175.2346182, "39"], +[-37.7566192, 175.2351054, "60"], +[-37.7581629167, 175.23447195, "35"], +[-37.7612181667, 175.2355768333, "11"], +[-37.75777635, 175.2351257667, "50"], +[-37.7605859333, 175.23674075, "12"], +[-37.7615652667, 175.2348009833, "7"], +[-37.7607937667, 175.2362334, "17"], +[-37.75888425, 175.2353536833, "31"], +[-37.7605337333, 175.2362176, "19"], +[-37.75815115, 175.2355182333, "44"], +[-37.7603008333, 175.2361836667, "21"], +[-37.7592454833, 175.2357671667, "29"], +[-37.7596468167, 175.23649615, "22"], +[-37.7558867, 175.2346641, "70"], +[-37.7600942, 175.2360790167, "23"], +[-37.75761865, 175.2351263833, "52"], +[-37.7598869667, 175.2360249667, "25"], +[-37.7595835333, 175.23589685, "27"], +[-37.7592308167, 175.2363170833, "28"], +[-37.7587651167, 175.2361515333, "36"], +[-37.7585462667, 175.2360377167, "38"], +[-37.7583492333, 175.2358319833, "40"], +[-37.758041, 175.235905, "42"], +[-37.7616888833, 175.2354798333, "4"], +[-37.7573801833, 175.2351130333, "54"], +[-37.7583420167, 175.2939317167, "28"], +[-37.75765725, 175.2946472, "14"], +[-37.7604117833, 175.2910301667, "51"], +[-37.7603761333, 175.2911873833, "49"], +[-37.7594488, 175.2934256667, "27"], +[-37.76182655, 175.2893913667, "79"], +[-37.7595477, 175.2933117833, "29"], +[-37.7573839333, 175.2945764167, "12"], +[-37.7581736333, 175.2940846833, "26"], +[-37.7585563667, 175.29424725, "13"], +[-37.75801015, 175.2942288167, "24"], +[-37.75752235, 175.2941885, "18"], +[-37.7593310333, 175.2935280167, "25"], +[-37.75993345, 175.2926088333, "35"], +[-37.7592311667, 175.2930641167, "38"], +[-37.76023265, 175.2915328, "45"], +[-37.7593785833, 175.2929093833, "40"], +[-37.7570835167, 175.2949180833, "2F"], +[-37.7580356, 175.2947067667, "9"], +[-37.7575539833, 175.2940836333, "20"], +[-37.7577789833, 175.2954532667, "1"], +[-37.76007595, 175.2908332167, "52"], +[-37.7572336, 175.2949963333, "2E"], +[-37.7584893, 175.2937847, "30"], +[-37.7571704, 175.2952370833, "2C"], +[-37.7586767667, 175.294129, "15"], +[-37.7570279, 175.2951404833, "2D"], +[-37.7590516, 175.29377395, "21"], +[-37.7573311833, 175.2952971167, "2B"], +[-37.7607961167, 175.2899589167, "63"], +[-37.7608659167, 175.2893434, "72"], +[-37.7578764667, 175.2943439167, "22"], +[-37.7617290833, 175.2884156667, "86"], +[-37.7598947167, 175.2915685833, "46A"], +[-37.76017855, 175.2904516167, "56"], +[-37.75747255, 175.295357, "2A"], +[-37.7604775667, 175.29067115, "55"], +[-37.7575248833, 175.2951179, "6"], +[-37.7601316, 175.29064915, "54"], +[-37.75734625, 175.2947025667, "10"], +[-37.7603105333, 175.2913523167, "47"], +[-37.75985235, 175.2917274167, "46B"], +[-37.7618506833, 175.2888252333, "85"], +[-37.7577327667, 175.2945092, "16"], +[-37.76074265, 175.28946295, "70"], +[-37.7579558833, 175.2948458667, "7"], +[-37.7604362833, 175.28983165, "64"], +[-37.7578325667, 175.2952496333, "3"], +[-37.7605269333, 175.2905102, "57"], +[-37.7578947, 175.2950408333, "5"], +[-37.76068235, 175.2901385833, "61"], +[-37.7586739167, 175.2936166, "32"], +[-37.76023465, 175.2902811667, "58"], +[-37.7575851, 175.29489905, "8"], +[-37.7602930333, 175.2901157, "60"], +[-37.7603655167, 175.2899700333, "62"], +[-37.76059985, 175.29031515, "59"], +[-37.7604342167, 175.2908217833, "53"], +[-37.7616163, 175.2885323, "84"], +[-37.75998245, 175.2923852333, "37"], +[-37.7606276333, 175.2895805333, "68"], +[-37.7615764667, 175.28911325, "77"], +[-37.76053485, 175.28970215, "66"], +[-37.7619083833, 175.2893000667, "81"], +[-37.7609318667, 175.2898070667, "65"], +[-37.7614638667, 175.28923645, "75"], +[-37.7617235, 175.2889460333, "83"], +[-37.7587948333, 175.2940194333, "17"], +[-37.7610411833, 175.2896924667, "67"], +[-37.7589207167, 175.29389385, "19"], +[-37.7609860833, 175.2892016833, "74"], +[-37.759875, 175.2928182333, "33"], +[-37.7613427333, 175.2893529167, "73"], +[-37.76149815, 175.2886473333, "82"], +[-37.7619609667, 175.28871075, "87"], +[-37.7592053833, 175.2936407167, "23"], +[-37.7621015, 175.2886125667, "89"], +[-37.7618289167, 175.2883024333, "88"], +[-37.7276516333, 175.2696516333, "6"], +[-37.7273148, 175.2700460667, "1"], +[-37.7276923, 175.2700066333, "7"], +[-37.7275662167, 175.2701404167, "3"], +[-37.7274651333, 175.2697231, "4"], +[-37.7277366333, 175.27018055, "5"], +[-37.7276825, 175.2698165333, "8"], +[-37.7273073667, 175.2697352833, "2"], +[-37.7646946167, 175.2937879333, "33"], +[-37.7654632167, 175.2920706333, "14"], +[-37.7647363833, 175.2962504, "62"], +[-37.7649870333, 175.2938222, "32"], +[-37.7649776333, 175.2966273833, "66"], +[-37.7650658833, 175.2971011833, "69"], +[-37.76478015, 175.2969607833, "65"], +[-37.7651584, 175.2919422833, "18B"], +[-37.7645275333, 175.2965406167, "61"], +[-37.7652168667, 175.2914559167, "13A-13F"], +[-37.7649551167, 175.29458375, "42"], +[-37.7658474167, 175.2911724333, "9B"], +[-37.7646767667, 175.29427295, "41"], +[-37.7657470167, 175.2916209333, "10D"], +[-37.7648929667, 175.2917901333, "17"], +[-37.7654513333, 175.2917426333, "10A"], +[-37.7645148167, 175.2955469333, "51"], +[-37.7656266167, 175.2916593167, "10C"], +[-37.7644534333, 175.2961618333, "57"], +[-37.7655391333, 175.2916935167, "10B"], +[-37.7649405667, 175.2948200833, "46"], +[-37.7650842167, 175.2920387333, "18A"], +[-37.76447775, 175.2963555667, "59"], +[-37.7654916667, 175.2913393333, "11D"], +[-37.7649713167, 175.2941044833, "36"], +[-37.7659185833, 175.2911439, "9A"], +[-37.7648809667, 175.29518375, "50"], +[-37.7670209333, 175.2913193, "1A"], +[-37.7644906, 175.2957109, "53"], +[-37.7669477, 175.2912777167, "1B"], +[-37.7652459, 175.2946947833, "44"], +[-37.7668359333, 175.29123265, "3A"], +[-37.7648911167, 175.2970163667, "67"], +[-37.76673235, 175.29118965, "3B"], +[-37.7643688667, 175.2939778667, "37"], +[-37.7668033, 175.2915943, "2B"], +[-37.7643780167, 175.2938328667, "35"], +[-37.7669022167, 175.29164985, "2A"], +[-37.7647073833, 175.2935779833, "31"], +[-37.7666431167, 175.29114775, "3C"], +[-37.7649216167, 175.2949927333, "48"], +[-37.7665643, 175.29111855, "3D"], +[-37.7648368667, 175.2953972333, "54"], +[-37.7664963667, 175.2910868167, "3E"], +[-37.7652933833, 175.2944827333, "40"], +[-37.7660970833, 175.2910868, "7B"], +[-37.7648306333, 175.2964746667, "64"], +[-37.7661661667, 175.29106965, "7A"], +[-37.7662383833, 175.29104095, "5B"], +[-37.7646598333, 175.2944456833, "43"], +[-37.7649822333, 175.2936383, "30"], +[-37.7645338, 175.2953845833, "49"], +[-37.7645651, 175.2951945, "47"], +[-37.7666291167, 175.2915068667, "4A"], +[-37.7664941167, 175.2914509667, "4B"], +[-37.764809, 175.29196785, "19"], +[-37.7647130667, 175.2932150167, "27A"], +[-37.7647107333, 175.2933704333, "29"], +[-37.7647227667, 175.2928802167, "25"], +[-37.7647217, 175.2930719167, "27B"], +[-37.7649641, 175.2943381, "38"], +[-37.7646836667, 175.2940556, "39"], +[-37.7650297, 175.2924324833, "22"], +[-37.7650176667, 175.29260095, "24"], +[-37.7650311333, 175.2922338333, "20"], +[-37.7649948833, 175.2927743833, "26"], +[-37.7653388167, 175.2939455833, "34A"], +[-37.7653095833, 175.2940552167, "34"], +[-37.7651902333, 175.2953954, "52"], +[-37.7662411333, 175.2914217167, "8A"], +[-37.76632055, 175.2914108833, "6B"], +[-37.7661647833, 175.29144965, "8B"], +[-37.76557305, 175.2912929, "11C"], +[-37.7663979833, 175.2910633833, "3F"], +[-37.7657636333, 175.2912028, "11A"], +[-37.7663192667, 175.2910515833, "5A"], +[-37.7647597667, 175.2957998, "58"], +[-37.7647997667, 175.2955959667, "56"], +[-37.7656602667, 175.2912491333, "11B"], +[-37.7647357333, 175.2960050833, "60"], +[-37.76640155, 175.2914148833, "6A"], +[-37.7796087667, 175.23915045, "25"], +[-37.7801937167, 175.2402615167, "8"], +[-37.7795243833, 175.2401471333, "18"], +[-37.7803241833, 175.2398505167, "7"], +[-37.7800401, 175.24012145, "12"], +[-37.7802197333, 175.2397494667, "11"], +[-37.7797879667, 175.2398888333, "16"], +[-37.7796438167, 175.23973305, "20"], +[-37.77927815, 175.2399114, "24"], +[-37.77930355, 175.23937515, "26"], +[-37.7795246, 175.2396314, "22"], +[-37.7793764333, 175.2395046667, "26A"], +[-37.7797101667, 175.2392348, "19"], +[-37.7799216333, 175.2399995167, "14"], +[-37.7801676833, 175.2407536167, "4"], +[-37.7803194, 175.2403636, "6"], +[-37.7799246667, 175.240507, "10"], +[-37.7303653667, 175.2616655833, "10"], +[-37.7311013, 175.2594354167, "29"], +[-37.7306099833, 175.2592154167, "38"], +[-37.7307663167, 175.2592885, "40"], +[-37.7304727333, 175.2612469333, "9"], +[-37.7309094, 175.2593385167, "31"], +[-37.7305798, 175.2593900667, "36"], +[-37.7307329833, 175.2600823167, "19"], +[-37.730282, 175.2615256833, "12"], +[-37.7304086, 175.2602581, "26"], +[-37.7304944833, 175.2609860333, "11"], +[-37.7308463167, 175.26208515, "2"], +[-37.7306460833, 175.2596642167, "34"], +[-37.7307098167, 175.2620237667, "4"], +[-37.7305395333, 175.25959845, "32"], +[-37.7305379833, 175.26076995, "13"], +[-37.7308246833, 175.2597324333, "25"], +[-37.7302263667, 175.2614306667, "14"], +[-37.7305727, 175.2614911, "7"], +[-37.7305916333, 175.26055935, "15"], +[-37.73126155, 175.2595367, "27"], +[-37.7302078, 175.2613238833, "16"], +[-37.73091025, 175.2617712333, "3"], +[-37.7306435333, 175.2603331667, "17"], +[-37.7302179833, 175.2611300667, "18"], +[-37.73025345, 175.2609059333, "20"], +[-37.7308154833, 175.2599849167, "21"], +[-37.7303113167, 175.2606901833, "22"], +[-37.7308302833, 175.2599211167, "23"], +[-37.7303587667, 175.2604726667, "24"], +[-37.7304604833, 175.2600322, "28"], +[-37.7305099833, 175.2598239333, "30"], +[-37.7307232833, 175.2616642167, "5"], +[-37.7375760333, 175.2504495167, "60"], +[-37.7378151333, 175.2505991667, "64"], +[-37.7378059, 175.24995435, "67"], +[-37.73808765, 175.2507676667, "52"], +[-37.7378993333, 175.2501347167, "63"], +[-37.7381772167, 175.2508627833, "50"], +[-37.73804755, 175.2501856667, "61"], +[-37.7379383833, 175.2506315667, "66"], +[-37.7381144, 175.2503580667, "57"], +[-37.7381427333, 175.25069145, "54"], +[-37.7375518667, 175.2499824, "68"], +[-37.73769535, 175.2503310667, "58"], +[-37.7376822167, 175.2504210667, "62"], +[-37.7378976833, 175.2504884, "56"], +[-37.7377742667, 175.2500543833, "65"], +[-37.7383184333, 175.2505012667, "53"], +[-37.7380062833, 175.25027475, "59"], +[-37.73842615, 175.2506040833, "51"], +[-37.7383541833, 175.2504066833, "55"], +[-37.7378011333, 175.2508682167, "93"], +[-37.73757345, 175.2500965833, "70"], +[-37.7373122833, 175.2501288333, "69"], +[-37.7372411667, 175.2503002667, "73"], +[-37.73735075, 175.2502435667, "72"], +[-37.7374566, 175.2501636833, "71"], +[-37.7370945167, 175.2504470667, "83"], +[-37.73726715, 175.25054225, "85"], +[-37.7373948833, 175.2506297667, "87"], +[-37.73752425, 175.2507066833, "89"], +[-37.73765095, 175.2507764333, "91"], +[-37.7379083167, 175.2509284667, "95"], +[-37.7369594333, 175.2503735, "81"], +[-37.7797946333, 175.2476377667, "13"], +[-37.7799414, 175.2475029833, "11"], +[-37.78064015, 175.2467394667, "1"], +[-37.77981445, 175.24790405, "19"], +[-37.7803332833, 175.24823855, "16"], +[-37.7803646833, 175.2470236333, "5"], +[-37.7802042, 175.24795715, "10B"], +[-37.7803467, 175.2475130667, "8"], +[-37.78007315, 175.2473498333, "9"], +[-37.7800571167, 175.24800685, "12"], +[-37.7806853167, 175.2471555167, "4"], +[-37.7796071333, 175.24767755, "15"], +[-37.7805271667, 175.2468436333, "3"], +[-37.7808174667, 175.24702995, "2"], +[-37.7805198, 175.2473237833, "6"], +[-37.7802212667, 175.2471951167, "7"], +[-37.7801901667, 175.2481220833, "14"], +[-37.77971965, 175.24779025, "17"], +[-37.7799399667, 175.24795435, "18"], +[-37.7801825167, 175.2477068667, "10"], +[-37.7325327167, 175.2690790333, "16"], +[-37.7316382333, 175.2693885333, "1"], +[-37.7320577333, 175.2686943, "6"], +[-37.7319882833, 175.2694075167, "5"], +[-37.7318144333, 175.2693950333, "3"], +[-37.7321707833, 175.26869055, "8"], +[-37.7321995, 175.2690836667, "10"], +[-37.7323811, 175.26902035, "12"], +[-37.73216475, 175.2694477833, "7"], +[-37.7325168, 175.2692592833, "18"], +[-37.7324721167, 175.26965015, "11"], +[-37.7320042333, 175.2690692333, "4"], +[-37.7323318833, 175.2694839833, "9"], +[-37.7324799333, 175.2694196, "13"], +[-37.7325279667, 175.2688635833, "14"], +[-37.7770061167, 175.2843900333, "5/19"], +[-37.7770445167, 175.2842971667, "2/19"], +[-37.7773651, 175.2840147333, "15A-15E"], +[-37.7769299333, 175.2842303333, "3/19"], +[-37.7777549333, 175.2829784333, "5"], +[-37.77762015, 175.28331495, "1/9"], +[-37.77729265, 175.28517295, "1/18-6/18"], +[-37.77768915, 175.28319125, "7A"], +[-37.7769584167, 175.2851427, "23A"], +[-37.7774992667, 175.2831254, "7B"], +[-37.77791975, 175.2825803333, "1"], +[-37.7773763167, 175.28308665, "7C"], +[-37.7772817, 175.2842108167, "1/17-10/17"], +[-37.7781809333, 175.2833062833, "6A"], +[-37.7771137, 175.2844543, "4/19"], +[-37.7783061167, 175.2826044, "2A"], +[-37.7775258833, 175.2835926167, "11"], +[-37.7773485333, 175.28315155, "5/9"], +[-37.77816285, 175.28294915, "4"], +[-37.7774287, 175.2831988667, "4/9"], +[-37.7775921167, 175.2844557667, "14"], +[-37.7774867667, 175.2832354667, "3/9"], +[-37.7770173667, 175.2848513, "21"], +[-37.77755285, 175.2832674333, "2/9"], +[-37.77827325, 175.2827039, "2"], +[-37.7777425167, 175.2840219833, "10"], +[-37.7776557833, 175.2842477333, "12"], +[-37.7770979667, 175.2846668667, "19A"], +[-37.7771467333, 175.28435845, "1/19"], +[-37.7780928, 175.2831639333, "6"], +[-37.7771889167, 175.2857361833, "22B"], +[-37.7771189167, 175.28559445, "22"], +[-37.7768883833, 175.2843148333, "6/19"], +[-37.7769025, 175.28508895, "23"], +[-37.7778421167, 175.2827869833, "3"], +[-37.7780239833, 175.2833382333, "8"], +[-37.7774393667, 175.28380635, "1/13-10/13"], +[-37.77719075, 175.2853428833, "20"], +[-37.77688185, 175.2853002167, "25"], +[-37.7770412167, 175.28580785, "24"], +[-37.7766438167, 175.2849521833, "1/21A"], +[-37.7767397333, 175.2847123, "2/21A"], +[-37.7772850167, 175.2855169333, "20A"], +[-37.7773815167, 175.2849513, "1/16-8/16"], +[-37.7414677667, 175.2495113333, "6"], +[-37.7416849833, 175.2485066333, "9"], +[-37.7409928, 175.2486198, "16"], +[-37.7416557333, 175.2491609333, "1"], +[-37.74105965, 175.2481926833, "17"], +[-37.7407213833, 175.24810815, "23"], +[-37.7413532, 175.2493693333, "8"], +[-37.740848, 175.2478721333, "21"], +[-37.7414431, 175.2497192833, "4"], +[-37.7411992667, 175.2489961167, "12"], +[-37.7409177167, 175.2481082, "19"], +[-37.74154855, 175.2489990833, "3"], +[-37.7414402833, 175.2482943, "13"], +[-37.7413942833, 175.24854205, "11"], +[-37.7414765667, 175.2487445167, "7"], +[-37.7412752667, 175.2491718333, "10"], +[-37.74111955, 175.2488201167, "14"], +[-37.7417915833, 175.2487101833, "5"], +[-37.7405531667, 175.2477951333, "25"], +[-37.74121805, 175.248319, "15"], +[-37.7826990667, 175.2849554667, "2"], +[-37.7813013167, 175.2879256167, "30"], +[-37.7823746333, 175.2849814167, "3"], +[-37.7822826333, 175.2851391667, "5"], +[-37.7823655333, 175.2857521167, "1/10-8/10"], +[-37.7818354667, 175.2860785833, "11"], +[-37.7820609167, 175.2863593333, "1/16-8/16"], +[-37.78170355, 175.2863593, "13"], +[-37.7826205333, 175.2851677667, "1/4-3/4"], +[-37.78227465, 175.28593485, "12"], +[-37.7817155, 175.2871066, "1/22-6/22"], +[-37.7821723167, 175.2861349833, "14"], +[-37.7825514667, 175.2853811667, "1/6-9/6"], +[-37.7819397667, 175.2865849333, "18"], +[-37.7818275833, 175.28682515, "20"], +[-37.7816134, 175.2873074833, "24"], +[-37.78119555, 175.28743975, "25"], +[-37.7811130667, 175.2875969167, "27"], +[-37.7814464333, 175.28768675, "28"], +[-37.7810466667, 175.2877609833, "29"], +[-37.7812274833, 175.28811335, "32"], +[-37.7819416833, 175.2858664333, "9"], +[-37.7824630167, 175.2855634167, "8"], +[-37.7812895167, 175.28724535, "19"], +[-37.7814008833, 175.2870099333, "19A-19C"], +[-37.78154775, 175.2874572833, "1/26-4/26"], +[-37.7838311833, 175.3115689667, "1"], +[-37.7842734, 175.3117928833, "7A-7D"], +[-37.7839768, 175.3116777333, "3"], +[-37.78436255, 175.3113909667, "10"], +[-37.7839017167, 175.3112831833, "1/4-4/4"], +[-37.7840641167, 175.3113431667, "6A-6C"], +[-37.7841904667, 175.31143505, "8A-8C"], +[-37.7842644167, 175.31157895, "1/9-4/9"], +[-37.7841227333, 175.3117476333, "1/5-4/5"], +[-37.7213415667, 175.3440989167, "339"], +[-37.715164, 175.33901255, "416"], +[-37.7187836833, 175.3416940167, "367"], +[-37.7222514167, 175.34595295, "318"], +[-37.7178581833, 175.3416957667, "372"], +[-37.7175144667, 175.34119175, "378B"], +[-37.7171786, 175.3382141333, "401"], +[-37.7196863, 175.3424327833, "361A"], +[-37.71994025, 175.34101945, "361B"], +[-37.7211246167, 175.3428797, "341B"], +[-37.72049635, 175.3398889, "361C"], +[-37.71874265, 175.34010335, "377B"], +[-37.71958175, 175.33877825, "377C"], +[-37.7164509167, 175.3395435667, "403B"], +[-37.7181796167, 175.3410641167, "377A"], +[-37.7174918333, 175.3404129833, "391"], +[-37.7169532167, 175.3399127167, "399"], +[-37.71930925, 175.3412537167, "367A"], +[-37.7206616833, 175.34371295, "341A"], +[-37.7203290333, 175.33944975, "367B"], +[-37.7165775, 175.3394300667, "403A"], +[-37.7222143167, 175.3451038, "321"], +[-37.7216693, 175.3420152333, "341C"], +[-37.7648559667, 175.25975595, "4A"], +[-37.7649518833, 175.25848855, "11"], +[-37.7645640167, 175.2572281167, "25A"], +[-37.7649313333, 175.2582678833, "13"], +[-37.7643751167, 175.2580291833, "24"], +[-37.7642585167, 175.2586523167, "16B"], +[-37.7637915667, 175.2572955, "32"], +[-37.76487455, 175.2580994833, "15A"], +[-37.7634878667, 175.2562646833, "43"], +[-37.7641892667, 175.2589052, "16"], +[-37.7651525, 175.2590292833, "5"], +[-37.7646729667, 175.2585816167, "18"], +[-37.76504705, 175.2586492667, "9"], +[-37.7654053, 175.2589385833, "5A"], +[-37.76476725, 175.2575196833, "21A"], +[-37.7644580167, 175.25926065, "10"], +[-37.76460555, 175.2577458833, "21"], +[-37.76474105, 175.2587773, "14"], +[-37.7653620167, 175.2597371, "1"], +[-37.7648013, 175.2589813333, "12"], +[-37.76431085, 175.2572842667, "27"], +[-37.7652943833, 175.2595837, "1A"], +[-37.7642183333, 175.25713935, "29"], +[-37.7649362667, 175.2575591667, "19"], +[-37.76467685, 175.2573655, "23A"], +[-37.7649008, 175.2594085167, "6"], +[-37.7645214167, 175.2575558, "23"], +[-37.7652053667, 175.2592258667, "3"], +[-37.7644259333, 175.25743145, "25"], +[-37.7646158, 175.2583629, "20"], +[-37.7642820833, 175.2578890667, "26"], +[-37.7650574833, 175.2597264333, "2"], +[-37.7643391167, 175.2582660333, "22A"], +[-37.7650927333, 175.2588260667, "7"], +[-37.76450905, 175.2582065333, "22"], +[-37.7648562167, 175.25922615, "8"], +[-37.7638918833, 175.2574216, "30"], +[-37.76478515, 175.2579015, "17"], +[-37.76410105, 175.2570040333, "31"], +[-37.7641586667, 175.2587483, "16A"], +[-37.76399425, 175.2568971167, "33"], +[-37.7635169333, 175.2569497667, "36"], +[-37.7636033833, 175.2573314167, "34A"], +[-37.76366165, 175.25714255, "34"], +[-37.76388115, 175.2567612667, "35"], +[-37.7637831167, 175.2566287667, "37"], +[-37.7635774167, 175.2563777, "41"], +[-37.7633872667, 175.25613275, "45"], +[-37.7631615, 175.2565041167, "46"], +[-37.7632798167, 175.2559876, "47"], +[-37.7630397667, 175.25636305, "48"], +[-37.7649803667, 175.2596126, "4"], +[-37.7652010667, 175.2581395833, "13A"], +[-37.7651134167, 175.2579403167, "15B"], +[-37.7651469333, 175.25831265, "11A"], +[-37.7384743833, 175.2711800167, "20"], +[-37.7380255833, 175.2707886, "26"], +[-37.7357574833, 175.2683482833, "56"], +[-37.7366557333, 175.2702352833, "40"], +[-37.7386005667, 175.2723322333, "12"], +[-37.7368071333, 175.2702798333, "38"], +[-37.7357097833, 175.2678012, "41"], +[-37.7369479833, 175.2700728167, "36"], +[-37.735093, 175.2672950833, "49"], +[-37.7361464667, 175.2682365833, "35"], +[-37.7383210833, 175.2709767, "22"], +[-37.7370978167, 175.2701899833, "34"], +[-37.7386736833, 175.27207825, "14"], +[-37.73651385, 175.2693694167, "48"], +[-37.7384985167, 175.2727444833, "8"], +[-37.7367435333, 175.26980835, "44"], +[-37.7350160167, 175.2676522667, "64"], +[-37.7365348167, 175.2699867167, "42"], +[-37.7355703833, 175.2681446333, "58"], +[-37.7366106667, 175.2696057833, "46"], +[-37.7387006333, 175.2733671333, "1"], +[-37.73481885, 175.26755855, "66"], +[-37.73539215, 175.2679368167, "60"], +[-37.7346291667, 175.2674716833, "68"], +[-37.73585535, 175.2679445, "39"], +[-37.7345337, 175.2670012833, "55"], +[-37.7359833833, 175.2681032167, "37"], +[-37.7377770167, 175.2701061667, "17"], +[-37.73520655, 175.2677555, "62"], +[-37.7388733333, 175.27121345, "15"], +[-37.7388497333, 175.27270065, "5"], +[-37.7374910167, 175.2699647667, "19"], +[-37.734347, 175.2672760667, "72"], +[-37.7372636, 175.2703011333, "32"], +[-37.7374561167, 175.2703867167, "30"], +[-37.7362726, 175.2684251833, "33"], +[-37.7352578167, 175.2673559167, "47"], +[-37.7349169, 175.26718785, "51"], +[-37.7389038, 175.2724666833, "7"], +[-37.7381763, 175.2708662167, "24"], +[-37.7385448833, 175.27254285, "10"], +[-37.7354129833, 175.2674356667, "45"], +[-37.7384166833, 175.2731881167, "4"], +[-37.7361083833, 175.26879175, "54"], +[-37.7364499167, 175.26864105, "31"], +[-37.7386458, 175.2715360667, "18"], +[-37.7371183167, 175.2697014167, "23"], +[-37.7344670333, 175.2673817667, "70"], +[-37.73642625, 175.2691292, "50"], +[-37.7347323333, 175.2671077833, "53"], +[-37.7384572333, 175.2729629, "6"], +[-37.7389603833, 175.2722097, "9"], +[-37.7387067667, 175.2718339333, "16"], +[-37.7373149667, 175.2698466333, "21"], +[-37.73626245, 175.2689499333, "52"], +[-37.7384004833, 175.2733408, "2"], +[-37.76021245, 175.2562877167, "9B"], +[-37.7611546, 175.2547638167, "23"], +[-37.7594931333, 175.2559599167, "6A"], +[-37.7605970833, 175.2561446, "13"], +[-37.7599708333, 175.2562456167, "7"], +[-37.76020205, 175.2566235, "5B"], +[-37.7597381833, 175.2558671333, "8"], +[-37.76009255, 175.2561118, "9"], +[-37.7601223167, 175.2553885833, "14"], +[-37.75968835, 175.2565778833, "1"], +[-37.7610289667, 175.2549146833, "21"], +[-37.7594245333, 175.2563293, "2"], +[-37.7607614333, 175.2543327, "26A"], +[-37.7598169167, 175.2564478, "3"], +[-37.7611402833, 175.2551020667, "21A"], +[-37.7595121333, 175.2561973333, "4"], +[-37.7607046, 175.2543931833, "24A"], +[-37.7601424167, 175.2567017, "5"], +[-37.76047855, 175.2546248, "22A"], +[-37.7596066833, 175.2560246, "6"], +[-37.759863, 175.255697, "10"], +[-37.76107655, 175.2538952, "30B"], +[-37.7605592167, 175.25592115, "15A"], +[-37.76119575, 175.2540403, "30A"], +[-37.7602451833, 175.2552403, "16"], +[-37.7609084833, 175.2544211833, "26"], +[-37.76022795, 175.2559227333, "11"], +[-37.7615974667, 175.2541810333, "29"], +[-37.7597911833, 175.2555077, "10A"], +[-37.76145105, 175.2543720667, "27"], +[-37.7612744833, 175.2545785, "25"], +[-37.76096575, 175.2540693, "28B"], +[-37.7603956667, 175.2557319833, "15"], +[-37.7610307667, 175.2542655833, "28A"], +[-37.7607720833, 175.2545822, "24"], +[-37.7599909667, 175.2555422333, "12"], +[-37.7606559333, 175.2547524, "22"], +[-37.7600608167, 175.2564519667, "7A"], +[-37.7733944, 175.2597661333, "4"], +[-37.77374075, 175.25962565, "1"], +[-37.77343325, 175.2592811333, "5"], +[-37.7737450667, 175.2600331167, "2A"], +[-37.7735366667, 175.2593908, "3"], +[-37.77357335, 175.25987485, "2"], +[-37.7721359333, 175.2805471833, "19"], +[-37.7721084, 175.2823988167, "3A"], +[-37.7721811667, 175.2815316333, "11"], +[-37.7721584333, 175.2821490667, "5A"], +[-37.7715227167, 175.2817193667, "10A"], +[-37.7715623667, 175.2819135333, "8A"], +[-37.77194885, 175.28094335, "18"], +[-37.7718636667, 175.2813793333, "14"], +[-37.7717617167, 175.2818124833, "10"], +[-37.7718793, 175.2827087667, "1"], +[-37.7716462, 175.2804238333, "27"], +[-37.7721234167, 175.2817621333, "9"], +[-37.7713976333, 175.2806890167, "22"], +[-37.7715161, 175.28072785, "20"], +[-37.7715278, 175.2822000167, "6A"], +[-37.7722593833, 175.2818515833, "9A"], +[-37.7717072167, 175.28114675, "16A"], +[-37.7724669333, 175.2809595, "15A"], +[-37.77250775, 175.28067455, "17A"], +[-37.7716734667, 175.2808082667, "18A"], +[-37.7717905333, 175.2804426667, "21A"], +[-37.7718150667, 175.28160695, "12"], +[-37.7722890667, 175.2810732167, "13"], +[-37.7719066, 175.28116255, "16"], +[-37.7723284333, 175.2808568, "15"], +[-37.7722864333, 175.2805590833, "17"], +[-37.77191615, 175.2804839167, "21"], +[-37.7721558667, 175.27942265, "23B"], +[-37.7722458, 175.2795374, "23C"], +[-37.7718487333, 175.28010345, "23"], +[-37.7718853667, 175.2797843167, "25"], +[-37.7719679167, 175.2824167333, "3"], +[-37.7715668, 175.2824897, "4"], +[-37.7720338667, 175.2821961, "5"], +[-37.7716567667, 175.2822410167, "6"], +[-37.7720703833, 175.2819829167, "7"], +[-37.7717105833, 175.2820317333, "8"], +[-37.8017338667, 175.2048485833, "89B"], +[-37.8084588, 175.2058838167, "174"], +[-37.8088788333, 175.2062702833, "175"], +[-37.8050574, 175.2037452, "127"], +[-37.8091632833, 175.20514875, "182A"], +[-37.8056975, 175.2037571, "130"], +[-37.8094891167, 175.20384695, "202"], +[-37.8108164333, 175.2039622, "219"], +[-37.8125869, 175.2037423833, "241C"], +[-37.80932, 175.2051094333, "182B"], +[-37.8098799667, 175.2040444167, "197"], +[-37.8094298833, 175.20561245, "189"], +[-37.7925638333, 175.2883763833, "1"], +[-37.7927168, 175.2885197667, "3"], +[-37.7929328667, 175.2890834167, "25"], +[-37.7931357667, 175.2889154667, "27"], +[-37.7931921, 175.2889684333, "29"], +[-37.7933086833, 175.2890532333, "31"], +[-37.7933984333, 175.2891243833, "33"], +[-37.7837530167, 175.2348212167, "30"], +[-37.7833633, 175.2362188, "15"], +[-37.78260845, 175.23681365, "6"], +[-37.7825077167, 175.2369615833, "4"], +[-37.7828021833, 175.2364808167, "10"], +[-37.7841872167, 175.2350663167, "29A"], +[-37.7832684667, 175.2363905667, "13"], +[-37.7843581167, 175.2346887667, "35"], +[-37.78310325, 175.2359629, "16"], +[-37.7842728, 175.2338724, "40"], +[-37.7834472167, 175.2360464667, "17"], +[-37.7844567, 175.2336248833, "40B"], +[-37.7845564833, 175.2343974167, "37C"], +[-37.7840729833, 175.2339085333, "38B"], +[-37.78443275, 175.23446195, "37A"], +[-37.7839522, 175.2341468333, "36B"], +[-37.7829041833, 175.2362928667, "12"], +[-37.78408, 175.2343121, "36A"], +[-37.7832906833, 175.23566545, "20"], +[-37.7844042333, 175.2337346333, "40A"], +[-37.7836641667, 175.2349739833, "28"], +[-37.7839567167, 175.2345014, "34"], +[-37.7826417333, 175.2373778667, "3"], +[-37.7845400833, 175.2348380833, "35B"], +[-37.7827003833, 175.2366487833, "8"], +[-37.78378615, 175.2343563167, "34B"], +[-37.7827254, 175.2360944333, "12A"], +[-37.78418625, 175.2340856667, "38A"], +[-37.7845026, 175.2344269667, "37B"], +[-37.78385175, 175.2346633667, "32"], +[-37.7843246167, 175.2349405667, "31B"], +[-37.7846755667, 175.23435235, "37E"], +[-37.7842997667, 175.2352785, "33B"], +[-37.78461075, 175.23437665, "37D"], +[-37.7841453333, 175.2348594167, "31A"], +[-37.7844463667, 175.2349603667, "33A"], +[-37.7831976833, 175.2358086833, "18"], +[-37.7845729, 175.2335371, "42"], +[-37.7836449833, 175.2357133667, "21"], +[-37.7843198667, 175.2344017, "44A"], +[-37.7835413833, 175.2358753833, "19"], +[-37.7844224, 175.2342317167, "44"], +[-37.7827426333, 175.2372012667, "5"], +[-37.7846759167, 175.2332882, "42A"], +[-37.78242885, 175.2371100667, "2"], +[-37.7833796333, 175.2354959167, "22"], +[-37.78301345, 175.2361307333, "14"], +[-37.78328995, 175.2351436833, "24B"], +[-37.7835683, 175.23513585, "26"], +[-37.7839710333, 175.2351907833, "27"], +[-37.7840494833, 175.2350319, "29"], +[-37.78346765, 175.23530325, "24A"], +[-37.7390221667, 175.2785669167, "49"], +[-37.7403193833, 175.2781905167, "14"], +[-37.7392021333, 175.2796246833, "46"], +[-37.7393671667, 175.2790599, "40"], +[-37.7396996667, 175.2772582833, "31"], +[-37.7399981667, 175.2804547833, "56"], +[-37.7399034333, 175.27777825, "20"], +[-37.7402331167, 175.2803832167, "58"], +[-37.7403689, 175.2775610333, "21"], +[-37.7390040167, 175.2773172833, "37"], +[-37.7389527333, 175.2783547333, "47"], +[-37.73892935, 175.27789985, "43"], +[-37.7389111667, 175.27811945, "45"], +[-37.74011035, 175.2777831833, "18"], +[-37.7392751333, 175.27944075, "44"], +[-37.7391174, 175.2771965833, "35"], +[-37.73957685, 175.27720185, "33"], +[-37.7394357, 175.2808798333, "73"], +[-37.7398595833, 175.2773716333, "29"], +[-37.7408742167, 175.2798171833, "2"], +[-37.7402675, 175.28072455, "85"], +[-37.7409735833, 175.27865565, "9"], +[-37.74012105, 175.2807795, "83"], +[-37.7394087, 175.2804002, "50"], +[-37.7404569833, 175.2807469167, "87"], +[-37.73961255, 175.2805693667, "52"], +[-37.7390826167, 175.2788165, "51"], +[-37.74058985, 175.2781647167, "15"], +[-37.7399379167, 175.2808892667, "81"], +[-37.7392108333, 175.2775770833, "28"], +[-37.7397989833, 175.28126195, "79"], +[-37.7392158667, 175.2781810833, "32"], +[-37.7390213833, 175.2800665333, "63"], +[-37.7405351167, 175.27793245, "17"], +[-37.7389181833, 175.2795191667, "57"], +[-37.7410935833, 175.27960115, "1"], +[-37.7389823667, 175.27930515, "55"], +[-37.7398226333, 175.28054815, "54"], +[-37.7390752333, 175.2790433167, "53"], +[-37.7393435667, 175.2786152833, "36"], +[-37.7389463167, 175.2798836, "61"], +[-37.7408067, 175.27916025, "8"], +[-37.7389119667, 175.2797053333, "59"], +[-37.7410714167, 175.2788578667, "7"], +[-37.7391165167, 175.2804978833, "67"], +[-37.7393773167, 175.2788331667, "38"], +[-37.7391933667, 175.2806803833, "69"], +[-37.7396550833, 175.28129555, "77"], +[-37.73907365, 175.2803083667, "65"], +[-37.7393328167, 175.27926515, "42"], +[-37.74110435, 175.27936375, "3"], +[-37.7389296, 175.2774905333, "39"], +[-37.7408023667, 175.2796501667, "4"], +[-37.73892545, 175.27768645, "41"], +[-37.74078985, 175.2794084333, "6"], +[-37.7392288667, 175.2779509833, "30"], +[-37.7411131, 175.27908965, "5"], +[-37.73930365, 175.280803, "71"], +[-37.7400283833, 175.27739475, "27"], +[-37.73963345, 175.2809545833, "75"], +[-37.7393615333, 175.2774624333, "26"], +[-37.74076065, 175.27892135, "10"], +[-37.740192, 175.277439, "25"], +[-37.7406847833, 175.2783437, "13"], +[-37.740392, 175.2772188333, "23"], +[-37.7402380167, 175.2779198833, "16"], +[-37.7397347833, 175.27773965, "22"], +[-37.7404401833, 175.2803588833, "60"], +[-37.74047775, 175.27772015, "19"], +[-37.7403542333, 175.2783876167, "12"], +[-37.7395819833, 175.2776357167, "24"], +[-37.7408532167, 175.2784902167, "11"], +[-37.7392907, 175.2783933333, "34"], +[-37.8274672, 175.2921002667, "48A"], +[-37.8279511, 175.2921453833, "56"], +[-37.8295908667, 175.29090485, "76"], +[-37.8250989833, 175.2933382833, "6"], +[-37.8298257833, 175.29156535, "77"], +[-37.8252833, 175.2936387, "8"], +[-37.82979785, 175.2910999167, "78"], +[-37.8265291333, 175.2923020333, "28"], +[-37.83001465, 175.29145655, "79"], +[-37.8316148167, 175.2900798, "100"], +[-37.8308065333, 175.2909775833, "81A"], +[-37.82591505, 175.2933089, "16"], +[-37.8304114333, 175.2903916333, "90A"], +[-37.8256186667, 175.2931047667, "14A"], +[-37.8262811833, 175.2930989, "20"], +[-37.8260677333, 175.29373305, "15"], +[-37.8263996667, 175.2930352333, "22A"], +[-37.8319110667, 175.2897064, "120"], +[-37.8264014833, 175.2935685333, "21"], +[-37.8292566833, 175.2918474667, "67"], +[-37.8262297167, 175.2936461333, "19"], +[-37.8293173, 175.2913723333, "70"], +[-37.8288752167, 175.2920833333, "61"], +[-37.8249839667, 175.2933874167, "4"], +[-37.8291038333, 175.2922333167, "63"], +[-37.8372309333, 175.28663795, "188"], +[-37.8302348, 175.2908146833, "86"], +[-37.8264408333, 175.2921494333, "28A"], +[-37.8306585, 175.2910551333, "81"], +[-37.82544005, 175.29358305, "10"], +[-37.8303423667, 175.2904955, "88A"], +[-37.82657125, 175.2924267167, "26"], +[-37.8303858, 175.2907423167, "88"], +[-37.82780555, 175.2917916, "56A"], +[-37.8305286833, 175.29063625, "90"], +[-37.8257717833, 175.29339445, "14"], +[-37.8306894333, 175.2905514667, "92"], +[-37.8291041, 175.2914759833, "68"], +[-37.8309233, 175.2904619833, "94"], +[-37.8253320167, 175.2932123667, "10A"], +[-37.8311791833, 175.2903314667, "96"], +[-37.8256094333, 175.2934746167, "12"], +[-37.8314218667, 175.2901896333, "98"], +[-37.8266985833, 175.2928831, "26A"], +[-37.8265477333, 175.2929482, "24"], +[-37.8363863833, 175.2870350333, "180"], +[-37.8262422, 175.2926278, "22B"], +[-37.8290792833, 175.2919725167, "65"], +[-37.8264959833, 175.2920656, "30A"], +[-37.8253528833, 175.2929424, "12A"], +[-37.8268624667, 175.292679, "32"], +[-37.8250762167, 175.2937517833, "2"], +[-37.8254571, 175.2940026333, "3"], +[-37.8265523833, 175.2934263333, "25"], +[-37.8266381167, 175.292262, "30"], +[-37.82687225, 175.2920923167, "36"], +[-37.8270206, 175.2926161167, "34"], +[-37.8268268167, 175.2917540667, "36A"], +[-37.83215555, 175.2902203833, "123"], +[-37.8314394833, 175.29065175, "83"], +[-37.84048935, 175.2820869667, "1/250"], +[-37.8381039333, 175.2870291833, "197"], +[-37.8272257667, 175.2925334667, "40"], +[-37.82853695, 175.2925449667, "55A"], +[-37.8271117, 175.2930727, "37"], +[-37.8273160167, 175.2929692333, "39"], +[-37.8269951667, 175.2920455, "38"], +[-37.8275933333, 175.2927938333, "41"], +[-37.8271762, 175.29163585, "44"], +[-37.8272349833, 175.2918870833, "44A"], +[-37.82778545, 175.2926877333, "43"], +[-37.8273790833, 175.292444, "42"], +[-37.8397220167, 175.2851725, "222"], +[-37.83920575, 175.2863732, "207"], +[-37.8294850333, 175.2908982667, "74A"], +[-37.8294441667, 175.2917599, "71"], +[-37.8279880833, 175.2926027667, "45"], +[-37.82815735, 175.2924999, "49"], +[-37.8285473667, 175.2917704667, "64"], +[-37.8275807, 175.2923780667, "48"], +[-37.8273332167, 175.2918302667, "46"], +[-37.8283752, 175.29186385, "62"], +[-37.82772765, 175.29225405, "50"], +[-37.8276041, 175.2917219333, "52"], +[-37.8281259333, 175.29159395, "60A"], +[-37.8275886, 175.2913926667, "54"], +[-37.8287070833, 175.2921753833, "59"], +[-37.82770495, 175.2916744667, "54A"], +[-37.82832305, 175.2923969667, "53"], +[-37.8280817, 175.29203725, "58"], +[-37.8285242167, 175.2923004, "55"], +[-37.82822025, 175.29194635, "60"], +[-37.8295309167, 175.2912464, "72"], +[-37.8296345, 175.2916601833, "73"], +[-37.8300925833, 175.2908877333, "84"], +[-37.8299254667, 175.2918363333, "75"], +[-37.8294025667, 175.2910196333, "74"], +[-37.82994965, 175.290994, "82"], +[-37.8357227667, 175.2873188333, "162"], +[-37.8403731167, 175.2855524167, "225"], +[-37.8379442667, 175.2863509667, "194"], +[-37.8406032, 175.2845346667, "237"], +[-37.7477109833, 175.2802643333, "22"], +[-37.7488282, 175.2791970833, "4"], +[-37.7480888833, 175.2798137667, "12"], +[-37.7486118667, 175.2790981, "6"], +[-37.74798245, 175.2799807, "14"], +[-37.74786905, 175.28009085, "16"], +[-37.7478309667, 175.28033295, "18"], +[-37.7483951333, 175.2787387, "5"], +[-37.7487371167, 175.2789442833, "2"], +[-37.7477243667, 175.2805150167, "20"], +[-37.747679, 175.2800184, "24"], +[-37.7481882, 175.2796749, "10"], +[-37.7948074333, 175.2783154833, "10A"], +[-37.7945568167, 175.2780426, "8"], +[-37.79483595, 175.27810215, "10"], +[-37.7931591, 175.2777551, "4"], +[-37.7933249667, 175.2778369833, "5"], +[-37.7966001667, 175.27824285, "24"], +[-37.7947011833, 175.2780788833, "9"], +[-37.79631135, 175.2785425, "18"], +[-37.7972521, 175.2801529833, "22"], +[-37.7940429833, 175.27810115, "6"], +[-37.7974503167, 175.2803450333, "23"], +[-37.79560785, 175.2784144833, "15"], +[-37.7948926167, 175.2782335333, "1/11A-10/11A"], +[-37.7962589833, 175.2789962833, "4/17"], +[-37.79287535, 175.2775679167, "2/2-6/2"], +[-37.7943064167, 175.2780609833, "7"], +[-37.7928361833, 175.2775507, "2"], +[-37.79610145, 175.2790431333, "2/17"], +[-37.79683825, 175.2796900333, "1/20-8/20"], +[-37.7950262333, 175.27809, "11"], +[-37.7970255, 175.27992275, "1/21-6/21"], +[-37.79614775, 175.27888575, "1/17"], +[-37.79269635, 175.2774610833, "1/1"], +[-37.7961547667, 175.2791037, "3/17"], +[-37.79265785, 175.2775639, "1A"], +[-37.7953347167, 175.2782322833, "13"], +[-37.7926282667, 175.2776459667, "3/1"], +[-37.7951786333, 175.2781247667, "12"], +[-37.7961835833, 175.27840645, "18A"], +[-37.7965484333, 175.2793977, "19"], +[-37.7957498333, 175.2785271833, "16"], +[-37.7954818167, 175.2782943, "14"], +[-37.7929886, 175.2776553167, "3"], +[-37.7244438167, 175.2870262833, "96"], +[-37.72422015, 175.2884314667, "107"], +[-37.7243332, 175.2879469667, "103"], +[-37.7242966, 175.2877064167, "101"], +[-37.7240644833, 175.2857817667, "84"], +[-37.7246729167, 175.2881619333, "106"], +[-37.7239879167, 175.28616935, "86"], +[-37.7233506833, 175.2860164333, "79"], +[-37.72409495, 175.28632125, "88"], +[-37.7232187, 175.2858587667, "77"], +[-37.72378935, 175.28648115, "87"], +[-37.7244099, 175.2883986333, "109"], +[-37.7238851667, 175.2866279333, "89"], +[-37.7246451833, 175.2879340667, "104"], +[-37.7239973833, 175.2868064167, "91"], +[-37.7246181167, 175.2877189667, "102"], +[-37.72437055, 175.2881685667, "105"], +[-37.7230991, 175.2856844833, "75"], +[-37.72459385, 175.2875203, "100"], +[-37.7238317, 175.2860038333, "82"], +[-37.7235748833, 175.2857368, "78"], +[-37.72368845, 175.2858530667, "80"], +[-37.7234807833, 175.2861453333, "81"], +[-37.7247069, 175.28842965, "110"], +[-37.72491175, 175.28829635, "108"], +[-37.72420215, 175.2864917167, "90"], +[-37.7241672333, 175.2872274, "95"], +[-37.7240920167, 175.2870070833, "93"], +[-37.7242371833, 175.2874258333, "97"], +[-37.7243770667, 175.28685655, "94"], +[-37.7242991333, 175.2866744833, "92"], +[-37.7652942, 175.2930474833, "19"], +[-37.7659617333, 175.29274115, "14"], +[-37.7659103333, 175.2929642, "16"], +[-37.7661724333, 175.2920347167, "8"], +[-37.7657125667, 175.2926158833, "13"], +[-37.7658994, 175.2918977, "5"], +[-37.7655656667, 175.2930243167, "17"], +[-37.7661106, 175.2922498333, "10"], +[-37.765892, 175.2918164833, "3"], +[-37.7657605, 175.2924454833, "11"], +[-37.7656608167, 175.2927841, "15"], +[-37.7660411667, 175.2924954333, "12"], +[-37.7657732333, 175.29370995, "24"], +[-37.76573885, 175.2933335167, "22"], +[-37.7650622667, 175.2930522667, "21"], +[-37.7660802833, 175.2935401833, "20"], +[-37.7655975667, 175.29341845, "26"], +[-37.7654463333, 175.2934407333, "28"], +[-37.7652975, 175.2934314833, "30"], +[-37.7651186833, 175.2934169, "32"], +[-37.7661929167, 175.2918575333, "6"], +[-37.7658629833, 175.2920713, "7"], +[-37.7658033333, 175.2922598833, "9"], +[-37.7659803667, 175.29334475, "18A"], +[-37.7658562333, 175.2931386833, "18"], +[-37.7784396333, 175.2548259, "19"], +[-37.7774011167, 175.2534976333, "40"], +[-37.7783108, 175.2542377833, "25A"], +[-37.7778409833, 175.25447405, "28"], +[-37.7781054667, 175.2550652, "22"], +[-37.7778876667, 175.2549925167, "24A"], +[-37.77933065, 175.25638265, "5A"], +[-37.7784513333, 175.2558326833, "14"], +[-37.7778184, 175.25480055, "26A"], +[-37.7776967833, 175.25325955, "35"], +[-37.7783186833, 175.2554279, "18"], +[-37.7791637667, 175.2562036667, "7A"], +[-37.7781389833, 175.2555708333, "18A"], +[-37.7790930833, 175.2564548833, "5"], +[-37.778337, 175.2546495667, "21"], +[-37.7787041833, 175.25542025, "13"], +[-37.7782472, 175.2544463333, "23"], +[-37.7783766833, 175.2556689667, "16"], +[-37.7781357167, 175.2542424333, "25"], +[-37.7779308667, 175.2546720333, "26"], +[-37.7780191667, 175.2548685167, "24"], +[-37.7788266833, 175.2566518, "8"], +[-37.7779784833, 175.25385775, "29"], +[-37.77926185, 175.25681245, "1"], +[-37.7777447167, 175.2542578, "30"], +[-37.7788664333, 175.2571213667, "4B"], +[-37.7778889167, 175.2536589333, "31"], +[-37.7785226667, 175.25502235, "17"], +[-37.7776767333, 175.2540951833, "32"], +[-37.7775478167, 175.2538138667, "36"], +[-37.7791760167, 175.2566474833, "3"], +[-37.7787711, 175.2555947, "11"], +[-37.7788763333, 175.25531105, "13A"], +[-37.777466, 175.2536546, "38"], +[-37.77800465, 175.2551974, "22A"], +[-37.7775881, 175.2542988167, "30A"], +[-37.7777942333, 175.25346065, "33"], +[-37.7790032667, 175.2562418167, "7B"], +[-37.7787014667, 175.2551029333, "15A"], +[-37.7785725667, 175.256404, "12A"], +[-37.7776018833, 175.2539287167, "34"], +[-37.7789399333, 175.2560991833, "9"], +[-37.7786748167, 175.2562755833, "12"], +[-37.7794130167, 175.2568354, "1B"], +[-37.7786160667, 175.2552320167, "15"], +[-37.7783805, 175.2543969333, "23A"], +[-37.7778347333, 175.25320705, "35A"], +[-37.7781981667, 175.2552639, "20"], +[-37.7789154833, 175.2568475667, "6"], +[-37.7781987333, 175.25399705, "27A"], +[-37.7790043167, 175.2570539333, "4A"], +[-37.7787451, 175.25643995, "10"], +[-37.7780461, 175.2540439167, "27"], +[-37.7926432333, 175.2599603333, "53"], +[-37.7896695833, 175.25953025, "121"], +[-37.7915894, 175.2603778, "72"], +[-37.7925339, 175.2605287, "54"], +[-37.7915857167, 175.2598073667, "75"], +[-37.78962505, 175.2600757667, "120"], +[-37.7909165833, 175.2597147167, "91"], +[-37.7912121333, 175.2590141167, "3/87"], +[-37.7917344667, 175.25983105, "71"], +[-37.78934445, 175.26001835, "130"], +[-37.7915304333, 175.2587580333, "77D"], +[-37.7912221, 175.2603551833, "82"], +[-37.7914889833, 175.2589148667, "77C"], +[-37.7930181333, 175.2593978167, "45"], +[-37.7942450333, 175.2601817167, "15"], +[-37.7898486, 175.2601168, "114"], +[-37.7941267667, 175.2608069333, "16"], +[-37.7911143167, 175.25926155, "1/87"], +[-37.7941011, 175.2601674, "17"], +[-37.7940770167, 175.25961265, "21"], +[-37.7934612, 175.2607053, "32"], +[-37.7943830167, 175.2602054667, "11"], +[-37.7945229, 175.26023945, "7"], +[-37.7905180167, 175.2607123833, "90"], +[-37.7922280833, 175.2599240833, "63"], +[-37.7922361833, 175.2604637667, "60"], +[-37.7923723333, 175.2599375333, "61"], +[-37.7923771833, 175.26049235, "58"], +[-37.7925079833, 175.25995265, "59"], +[-37.7928050167, 175.2599783167, "51"], +[-37.79148725, 175.2592502333, "77B"], +[-37.7900141, 175.26013895, "112"], +[-37.7933791167, 175.2600496833, "35"], +[-37.79118005, 175.2592381833, "2/87"], +[-37.79052985, 175.2586461667, "1/103C-3/103C"], +[-37.7931387667, 175.2606364, "40"], +[-37.7937204667, 175.2607977667, "24-28"], +[-37.7920999667, 175.2604256, "62"], +[-37.7933296167, 175.2606777, "34"], +[-37.7947690833, 175.26029485, "1"], +[-37.7920910667, 175.2599014, "65"], +[-37.7910345, 175.2590433, "1/89-4/89"], +[-37.7903486833, 175.2602184, "110-116"], +[-37.7938906833, 175.2596243333, "25"], +[-37.79051535, 175.2596469333, "1/99-8/99"], +[-37.7932751667, 175.2595359, "39"], +[-37.79360685, 175.2600958, "31"], +[-37.7937125667, 175.25958245, "29"], +[-37.7935494, 175.25957385, "33"], +[-37.79124275, 175.2587616833, "4/87"], +[-37.7907103333, 175.2596902667, "95"], +[-37.7930183167, 175.2599993167, "43"], +[-37.7912986667, 175.2589900833, "81B"], +[-37.7894406833, 175.2600305333, "126"], +[-37.7905384333, 175.2602504, "92"], +[-37.7912604333, 175.2593074333, "81A"], +[-37.79133785, 175.2597999333, "81"], +[-37.7939968333, 175.2607755667, "20"], +[-37.7914700167, 175.2595168333, "77"], +[-37.7929147, 175.2593767333, "47"], +[-37.7904218167, 175.2593304833, "1/101A-5/101A"], +[-37.7944611167, 175.260837, "10"], +[-37.7929463667, 175.2606112167, "46"], +[-37.7933755333, 175.2595385, "37"], +[-37.7927986833, 175.2605931, "50"], +[-37.7911229333, 175.2597500833, "1/85"], +[-37.7931863333, 175.26001755, "41"], +[-37.78996065, 175.259581, "111"], +[-37.8156613667, 175.2932502667, "8"], +[-37.8155429, 175.2929689833, "7"], +[-37.81561665, 175.2928371833, "5"], +[-37.8158882167, 175.29292665, "4"], +[-37.8154881667, 175.2933832667, "10"], +[-37.8155362, 175.2931208833, "9"], +[-37.8158047833, 175.2931834, "6"], +[-37.8157227, 175.29268855, "3"], +[-37.8142112, 175.2926299333, "5"], +[-37.81393875, 175.2927551833, "9"], +[-37.8137655833, 175.2930582167, "13"], +[-37.8137441833, 175.2934064833, "17"], +[-37.81401075, 175.2937373667, "10"], +[-37.81371175, 175.2932577667, "15"], +[-37.8138419667, 175.29348575, "12"], +[-37.8140679833, 175.29268785, "7"], +[-37.8140526, 175.2932600167, "6"], +[-37.8141067167, 175.29304705, "4"], +[-37.81383635, 175.2928994667, "11"], +[-37.81399175, 175.2934548833, "8"], +[-37.8145669667, 175.2925968833, "1"], +[-37.8143961833, 175.29261365, "3"], +[-37.7998422833, 175.23794865, "22"], +[-37.8013505167, 175.2380995667, "2"], +[-37.7989577667, 175.23813655, "34"], +[-37.7994097833, 175.2380794, "28"], +[-37.7985806, 175.2381715333, "36A"], +[-37.7999855167, 175.2379353, "20"], +[-37.79877735, 175.2381533, "36B"], +[-37.8011408667, 175.2375175667, "3"], +[-37.8007695, 175.2377918667, "10"], +[-37.7990312833, 175.2376465667, "31"], +[-37.80090545, 175.2378811667, "8"], +[-37.8012998833, 175.23763395, "1"], +[-37.7987203833, 175.2377428167, "35"], +[-37.8012080333, 175.2380527833, "4"], +[-37.79887375, 175.2377009, "33"], +[-37.8002819167, 175.2373279167, "17"], +[-37.7997006, 175.2379971667, "24"], +[-37.7992549167, 175.2380979833, "30"], +[-37.8009803667, 175.23741645, "5"], +[-37.7999082333, 175.2374817667, "21"], +[-37.7991023833, 175.2381279667, "32"], +[-37.80047775, 175.2377385667, "14"], +[-37.8006176667, 175.2377431, "12"], +[-37.8010649667, 175.2379685333, "6"], +[-37.8001083833, 175.237427, "19"], +[-37.8004321, 175.2371984167, "15"], +[-37.7995655667, 175.2380476667, "26"], +[-37.7409257, 175.2442474167, "44"], +[-37.7418377667, 175.23981295, "4"], +[-37.7416113167, 175.2413967667, "18"], +[-37.7408092167, 175.2436048333, "37"], +[-37.7415058, 175.2420118167, "24"], +[-37.7416919333, 175.2409470167, "14"], +[-37.7418062333, 175.2400811833, "6"], +[-37.7417777667, 175.2402865667, "8"], +[-37.7400079833, 175.2446913167, "57"], +[-37.7408825667, 175.2434364, "35"], +[-37.7414761833, 175.2422072333, "26"], +[-37.7413126833, 175.2431441, "34"], +[-37.7414302, 175.2424163, "28"], +[-37.7409276167, 175.2432149333, "33"], +[-37.7406946833, 175.244542, "48"], +[-37.7415732333, 175.2416073333, "20"], +[-37.7414617833, 175.2399279333, "5"], +[-37.7413536333, 175.2429097833, "32"], +[-37.7401114167, 175.2451188167, "56"], +[-37.7411805167, 175.2416568833, "21"], +[-37.7410551667, 175.24404225, "42"], +[-37.7404386167, 175.2442337833, "51"], +[-37.7398779, 175.24482165, "59"], +[-37.7412155333, 175.2436010333, "38"], +[-37.7418826167, 175.2395815167, "2"], +[-37.7403787667, 175.2448538333, "52"], +[-37.7411424333, 175.2438347667, "40"], +[-37.7412781333, 175.2433665167, "36"], +[-37.7412111667, 175.2414540667, "19"], +[-37.7417106, 175.2407040667, "12"], +[-37.7413117833, 175.2408451667, "11"], +[-37.7402598333, 175.2449720833, "54"], +[-37.7413892667, 175.2426461833, "30"], +[-37.7415217833, 175.2394624833, "1"], +[-37.7412765833, 175.2410537333, "15"], +[-37.7417316167, 175.2404851667, "10"], +[-37.7408152167, 175.2444123167, "46"], +[-37.7410102667, 175.24274125, "29"], +[-37.7409702833, 175.24296245, "31"], +[-37.7414911667, 175.2396884333, "3"], +[-37.7402876333, 175.2443924167, "53"], +[-37.7405371833, 175.2447243167, "50"], +[-37.7401438, 175.2445426333, "55"], +[-37.7415407, 175.2417905333, "22"], +[-37.7412476, 175.2412497667, "17"], +[-37.7411819833, 175.2541516, "2"], +[-37.7414345667, 175.2541290833, "3"], +[-37.7413677167, 175.2542984, "1"], +[-37.7413060333, 175.2538675667, "6"], +[-37.7414625167, 175.2539082167, "5"], +[-37.7410708833, 175.25388655, "4"], +[-37.7021801167, 175.2071874, "30"], +[-37.7006275167, 175.2049877833, "4"], +[-37.7018300333, 175.2067527333, "24"], +[-37.7012084833, 175.2059729333, "18"], +[-37.7021987833, 175.2067080833, "28"], +[-37.6999512, 175.2073319833, "15A"], +[-37.700648, 175.2050831333, "6"], +[-37.7003279, 175.2054958667, "9"], +[-37.6993268, 175.2085788667, "15"], +[-37.82290875, 175.3464602667, "11C"], +[-37.82310215, 175.3461909833, "11B"], +[-37.7940756833, 175.2839543, "33"], +[-37.79412475, 175.2824002, "60A"], +[-37.7937615, 175.2846614333, "19"], +[-37.7947384833, 175.28123435, "100"], +[-37.7942450333, 175.28420825, "29A"], +[-37.79485985, 175.2809479, "106"], +[-37.7944963833, 175.2813638667, "92A"], +[-37.7935211333, 175.2843721833, "16"], +[-37.7949420167, 175.2816360667, "91"], +[-37.7939034833, 175.2843594, "23"], +[-37.7949937833, 175.28033615, "2/112"], +[-37.7937522, 175.2837183667, "36"], +[-37.7950648833, 175.2804072667, "4/112"], +[-37.7937460667, 175.2821187167, "60E"], +[-37.7943542833, 175.2844172667, "27"], +[-37.7954694167, 175.27931075, "142"], +[-37.7955436667, 175.2815923, "101B"], +[-37.79576965, 175.2794939667, "143"], +[-37.7940446333, 175.2823585167, "60B"], +[-37.7952905, 175.28160165, "95B"], +[-37.79389535, 175.2833966833, "44"], +[-37.7950100167, 175.28146885, "95"], +[-37.79574705, 175.281745, "101C"], +[-37.7952084167, 175.2822441833, "83"], +[-37.7932135333, 175.28394925, "26"], +[-37.7942112333, 175.2824086167, "60"], +[-37.7954387833, 175.2818142333, "93"], +[-37.7944051167, 175.28130555, "92B"], +[-37.7934048833, 175.28315005, "42"], +[-37.7938334833, 175.2835532167, "40"], +[-37.7950219667, 175.2803902333, "3/112"], +[-37.7946373833, 175.2814472, "92"], +[-37.7939859167, 175.2822611, "60C"], +[-37.7958829667, 175.2792130833, "145"], +[-37.7948614667, 175.2818522833, "87"], +[-37.79447565, 175.2818911667, "84"], +[-37.7952892667, 175.27987005, "128"], +[-37.7951429833, 175.2810922833, "107"], +[-37.7934473167, 175.2845962667, "12"], +[-37.7950352833, 175.28027905, "1/112"], +[-37.7945589167, 175.2816227, "88"], +[-37.795574, 175.2789997667, "146"], +[-37.7940265167, 175.2841112833, "29"], +[-37.7953470167, 175.2814596333, "101A"], +[-37.79320915, 175.2836386333, "28"], +[-37.7945255667, 175.2826612333, "69"], +[-37.7936848333, 175.2838778333, "32"], +[-37.7954771667, 175.2792159833, "144"], +[-37.7938604333, 175.2821973333, "60D"], +[-37.79571975, 175.2796376333, "139"], +[-37.7953170833, 175.2819772, "89"], +[-37.79508885, 175.2812545833, "101"], +[-37.7932591, 175.2835087, "30"], +[-37.7952259, 175.2800346667, "120A-120F"], +[-37.7960189333, 175.27930625, "145A"], +[-37.7768817333, 175.28299385, "10"], +[-37.7771847333, 175.2828151667, "8B"], +[-37.7759893333, 175.2841978667, "19"], +[-37.776442, 175.2829028667, "5/7"], +[-37.7758095667, 175.2846417, "23"], +[-37.7766518667, 175.2824969833, "1/3-15/3"], +[-37.7757332667, 175.2848398167, "25"], +[-37.7774382833, 175.2823280833, "2B"], +[-37.77639095, 175.28312985, "9"], +[-37.7764276167, 175.2841559167, "22"], +[-37.7759821333, 175.2831499333, "11A"], +[-37.7760030333, 175.2835627333, "15A"], +[-37.7763312, 175.2833201667, "11"], +[-37.7761322, 175.2848482667, "28"], +[-37.7768279, 175.2831534333, "12"], +[-37.7770865, 175.2830039167, "10A"], +[-37.77674655, 175.2833614167, "14"], +[-37.7770712, 175.2825526667, "1/6-8/6"], +[-37.7767808667, 175.28223085, "1"], +[-37.7763953, 175.2828690333, "4/7"], +[-37.7765047333, 175.28397705, "20"], +[-37.77582975, 175.2834545667, "15B"], +[-37.77656445, 175.2827507833, "5"], +[-37.7764887333, 175.2829338167, "6/7"], +[-37.7769866167, 175.2827487333, "8"], +[-37.7760407167, 175.2829327833, "11B"], +[-37.7756627167, 175.2850261667, "27"], +[-37.7761687333, 175.2836995667, "15"], +[-37.7766541, 175.2835520167, "16"], +[-37.7762331667, 175.2835409, "13A-13F"], +[-37.7762954, 175.2828076333, "2/7"], +[-37.77658565, 175.2837763833, "1/18-9/18"], +[-37.7763498333, 175.2828384833, "3/7"], +[-37.7763148667, 175.2844234167, "1/24-10/24"], +[-37.7765497167, 175.2843590667, "22A"], +[-37.7760950333, 175.2826548167, "5B"], +[-37.7772125333, 175.2820770167, "2"], +[-37.7758893667, 175.2844482667, "21"], +[-37.7771652167, 175.2823528167, "4"], +[-37.7762223, 175.28465505, "1/26-8/26"], +[-37.7760731667, 175.2839815667, "1/17-6/17"], +[-37.7762462333, 175.2827705, "1/7"], +[-37.7761515667, 175.2824362167, "5A"], +[-37.7758652667, 175.2837374167, "17A-17F"], +[-37.7772820167, 175.2818999167, "2A"], +[-37.8015488833, 175.2898796167, "12"], +[-37.8013181833, 175.2895979167, "8"], +[-37.8014972167, 175.28966985, "10"], +[-37.8015144333, 175.2899842, "14"], +[-37.8011946833, 175.2890493333, "2"], +[-37.8013945833, 175.2900119333, "16"], +[-37.8012239833, 175.289539, "6"], +[-37.8012142833, 175.2898747167, "18"], +[-37.8010983167, 175.2897767, "20"], +[-37.80096295, 175.2891171, "3"], +[-37.8011513833, 175.2891915, "4"], +[-37.8003507667, 175.2892846167, "11"], +[-37.8003880333, 175.2895134, "15"], +[-37.8009121167, 175.2896391333, "21"], +[-37.8007370667, 175.2893015333, "5"], +[-37.8003318833, 175.2893864333, "13"], +[-37.80059235, 175.2895607167, "17"], +[-37.8007309333, 175.28959015, "19"], +[-37.8006058333, 175.2892482, "7"], +[-37.8004420667, 175.2892010167, "9"], +[-37.7459668833, 175.2797760833, "3"], +[-37.7458564667, 175.27936475, "4"], +[-37.74577445, 175.2797125833, "1"], +[-37.7461531167, 175.2797181333, "5"], +[-37.7461367167, 175.2794092, "8"], +[-37.7460229, 175.2793395333, "6"], +[-37.7461831833, 175.2795273333, "10"], +[-37.7219837333, 175.24929185, "1"], +[-37.7222226167, 175.2493782, "6"], +[-37.72212335, 175.2490046667, "2"], +[-37.7219941667, 175.2498397333, "5"], +[-37.7221032, 175.2499484667, "7"], +[-37.7222074667, 175.2496806667, "10"], +[-37.7220031833, 175.24957815, "3"], +[-37.7223435, 175.2499993, "12"], +[-37.7222174833, 175.2501119333, "9"], +[-37.7224155167, 175.2501812, "14"], +[-37.7224162667, 175.2494967333, "8"], +[-37.7221822333, 175.2491749, "4"], +[-37.7746694833, 175.2299147167, "8"], +[-37.7746359, 175.2295888333, "13"], +[-37.7748968333, 175.2305304667, "2"], +[-37.7739037, 175.2289019333, "27"], +[-37.77480475, 175.2296448833, "11"], +[-37.7748646333, 175.2300355167, "6"], +[-37.7749724833, 175.22975855, "9"], +[-37.7751702667, 175.23028075, "3"], +[-37.7751611, 175.2301053333, "5"], +[-37.7751618167, 175.2304497667, "1"], +[-37.7740584, 175.22968075, "16"], +[-37.7742087667, 175.2297477, "14"], +[-37.7751146833, 175.2299565333, "7"], +[-37.7743606333, 175.22981475, "12"], +[-37.7745113, 175.2298633667, "10"], +[-37.7735407667, 175.2289088833, "31"], +[-37.7749192667, 175.23030705, "4"], +[-37.7737714, 175.2295034667, "20"], +[-37.7741333333, 175.2292984667, "19"], +[-37.7744871833, 175.229538, "15"], +[-37.7739038667, 175.22959535, "18"], +[-37.7743399167, 175.22948245, "17"], +[-37.7738519833, 175.2291098333, "29"], +[-37.77411655, 175.2289583333, "23"], +[-37.7736282833, 175.2293917167, "22"], +[-37.7742056, 175.2291174, "21"], +[-37.7732261833, 175.2290971833, "28"], +[-37.7734858833, 175.2292988333, "24"], +[-37.7733530833, 175.2291953167, "26"], +[-37.7739951167, 175.2288033333, "25"], +[-37.7734249667, 175.2289111, "33"], +[-37.7789883667, 175.2235729333, "11"], +[-37.7791168833, 175.223408, "13"], +[-37.7781210667, 175.2235575333, "1"], +[-37.7792123333, 175.2232381833, "15"], +[-37.7789173833, 175.22372645, "9"], +[-37.7791746167, 175.22309065, "16"], +[-37.7782042, 175.2232597333, "2"], +[-37.7790375667, 175.2230824333, "14"], +[-37.7787547667, 175.2237135833, "7"], +[-37.7787263667, 175.2234048667, "8"], +[-37.7793953333, 175.2230645333, "17"], +[-37.7782981667, 175.2236228333, "3"], +[-37.7785909333, 175.2232428, "6"], +[-37.7784258833, 175.2233495667, "4"], +[-37.7789048667, 175.2231560333, "12"], +[-37.7787690333, 175.22316115, "10"], +[-37.7331647833, 175.2344886167, "2"], +[-37.7323170833, 175.2340566167, "45"], +[-37.7327927833, 175.2334032167, "37"], +[-37.7329597833, 175.2334087333, "27"], +[-37.7326230833, 175.2341744667, "14"], +[-37.7330337167, 175.2337730833, "6"], +[-37.7329090833, 175.2327386, "29-35"], +[-37.7334974833, 175.2341423333, "5"], +[-37.7330915667, 175.23345605, "25"], +[-37.7336551167, 175.2331182333, "19"], +[-37.7332528, 175.2335313, "23"], +[-37.7338329333, 175.2330052833, "17"], +[-37.7337561333, 175.23339565, "13"], +[-37.7339960667, 175.2329835667, "15"], +[-37.7327537, 175.2342759333, "12"], +[-37.7332372833, 175.2340864167, "4"], +[-37.7337293667, 175.233681, "11"], +[-37.7324867833, 175.2341374333, "47"], +[-37.7326739667, 175.2335613333, "39"], +[-37.7334107333, 175.2346095833, "1"], +[-37.73293705, 175.23430865, "10"], +[-37.7324530667, 175.2338991833, "43"], +[-37.73355455, 175.2334171, "21"], +[-37.7325592333, 175.2337300333, "41"], +[-37.7334714833, 175.2343581667, "3"], +[-37.7334202, 175.2337250833, "9"], +[-37.7328059333, 175.23402995, "8"], +[-37.7334830833, 175.23391355, "7"], +[-37.7604385, 175.29227, "5"], +[-37.7611133333, 175.2922419333, "10"], +[-37.7606560333, 175.29196695, "6"], +[-37.76074985, 175.2923973167, "11"], +[-37.7602973, 175.2918115, "2"], +[-37.7612573333, 175.29233405, "12"], +[-37.7618809333, 175.2927796167, "20"], +[-37.7608949667, 175.2924774167, "13"], +[-37.7605902833, 175.2923303333, "7"], +[-37.7615917667, 175.29259785, "16"], +[-37.7612724833, 175.2927486667, "21A"], +[-37.7617661, 175.2926664167, "18"], +[-37.7604361167, 175.29187925, "4"], +[-37.7610755, 175.2925973333, "19A"], +[-37.7613247, 175.2928041667, "21B"], +[-37.7614175333, 175.2924647167, "14"], +[-37.7619904833, 175.2927713667, "20A"], +[-37.7611460833, 175.2926583167, "19B"], +[-37.7608648833, 175.29286795, "15"], +[-37.7614791, 175.29291755, "23A"], +[-37.76157215, 175.2929931, "23B"], +[-37.7618793, 175.2929758167, "24"], +[-37.7601850667, 175.2921573667, "1"], +[-37.7617771667, 175.2931323167, "25"], +[-37.7603079833, 175.29221645, "3"], +[-37.7605563333, 175.29273505, "9"], +[-37.7617441167, 175.2924004, "18A"], +[-37.7306128833, 175.28162955, "3"], +[-37.7307785167, 175.2815257667, "5"], +[-37.73038485, 175.2814364833, "2"], +[-37.73053535, 175.2813805, "4"], +[-37.7307537333, 175.28135975, "6"], +[-37.7940402833, 175.3061481667, "179"], +[-37.7914985167, 175.3052534833, "243"], +[-37.7960444, 175.30689675, "127A"], +[-37.7918137667, 175.3053775667, "233A"], +[-37.7992504667, 175.3091004, "418"], +[-37.79351425, 175.3060106167, "191A"], +[-37.7954659833, 175.3068360833, "137B"], +[-37.7942750667, 175.3064159333, "173"], +[-37.7961259833, 175.3073336333, "125"], +[-37.7932628667, 175.3059136, "195"], +[-37.7848804167, 175.3025635, "409B"], +[-37.7933810333, 175.3059577167, "193A"], +[-37.7981856, 175.3081071167, "71"], +[-37.7942332333, 175.3066190167, "173A"], +[-37.7938264333, 175.30646895, "183"], +[-37.7946006167, 175.3067651667, "159"], +[-37.7982263667, 175.3078168, "71A"], +[-37.79839305, 175.3081189, "69"], +[-37.8000799167, 175.3087204333, "45"], +[-37.7854858667, 175.3031766333, "391A"], +[-37.7923249167, 175.3057865667, "217"], +[-37.7849116333, 175.3031939, "403"], +[-37.7984516167, 175.3078421, "69A"], +[-37.7847673, 175.30313135, "405"], +[-37.7916553667, 175.30531185, "235"], +[-37.78464805, 175.3028418667, "407"], +[-37.7985442333, 175.3081865167, "67"], +[-37.78461155, 175.3024972667, "411"], +[-37.7957254333, 175.3067741667, "131"], +[-37.7845603, 175.3026870667, "413A"], +[-37.79064375, 175.30526485, "249"], +[-37.78439135, 175.3024929833, "413"], +[-37.79159145, 175.3056290667, "237"], +[-37.7844242833, 175.3030502833, "415"], +[-37.78767055, 175.3042029833, "341-351"], +[-37.7840513833, 175.3019245833, "419"], +[-37.78438425, 175.3028133833, "417A"], +[-37.7860434, 175.3036184667, "375"], +[-37.7957939333, 175.3071979167, "129"], +[-37.7859098167, 175.3035664333, "385"], +[-37.7989604833, 175.3097984667, "420"], +[-37.7857832167, 175.30351285, "387"], +[-37.7943947167, 175.3062746667, "169"], +[-37.78573275, 175.3032320167, "389A"], +[-37.7842456833, 175.3030252833, "417"], +[-37.7852239167, 175.3032988167, "393"], +[-37.7944253, 175.3067053167, "167"], +[-37.7850627, 175.30324535, "401"], +[-37.7955847167, 175.3069612667, "135B"], +[-37.7897621167, 175.3049487833, "281"], +[-37.7853579167, 175.3033827333, "391"], +[-37.7893244, 175.3047898833, "297"], +[-37.79052995, 175.3052371667, "251"], +[-37.7891871, 175.3047435167, "301"], +[-37.7883533833, 175.3044498667, "321-327"], +[-37.7896119667, 175.3048853667, "283"], +[-37.7885879167, 175.30453495, "313-319"], +[-37.7894617, 175.3048361833, "285"], +[-37.7851778333, 175.30286625, "399A"], +[-37.7890699167, 175.3046991333, "303"], +[-37.7959953, 175.3072444333, "127"], +[-37.7861721833, 175.3036717667, "373"], +[-37.7962477167, 175.3070332333, "123"], +[-37.7863096, 175.3037037833, "371"], +[-37.7879658, 175.3043173833, "329-339"], +[-37.7921778667, 175.3058554167, "221"], +[-37.7939648333, 175.30609915, "181"], +[-37.7924603, 175.3059781167, "215"], +[-37.7940387333, 175.3065635167, "175"], +[-37.79204495, 175.3058069, "225"], +[-37.7955533167, 175.3071071333, "135A"], +[-37.7919032167, 175.30575135, "229"], +[-37.7978388333, 175.30758935, "83"], +[-37.7914289333, 175.3055567667, "241"], +[-37.7980824167, 175.30799905, "73"], +[-37.7917468333, 175.3056894167, "233"], +[-37.7864565833, 175.30377705, "369"], +[-37.7913502167, 175.3053503167, "247B"], +[-37.7937985167, 175.3070187667, "180"], +[-37.79131335, 175.3055204, "247"], +[-37.7987033167, 175.30825015, "65"], +[-37.7903901833, 175.3051755167, "253"], +[-37.7850062333, 175.3027811667, "399B"], +[-37.7931750667, 175.3062188667, "197"], +[-37.7979271833, 175.3079493, "75"], +[-37.7929946833, 175.3062127167, "199"], +[-37.7953761667, 175.3070276667, "137A"], +[-37.7968499, 175.3075547167, "105"], +[-37.7846969167, 175.3025699833, "409A"], +[-37.7966783167, 175.3074987833, "109"], +[-37.7964968, 175.3074218, "113"], +[-37.79632525, 175.3073757167, "117"], +[-37.79536385, 175.3065361167, "139B"], +[-37.7951816167, 175.30753625, "138"], +[-37.7977659333, 175.3078910333, "81"], +[-37.7992111, 175.3084679667, "59"], +[-37.7994099833, 175.3085531833, "55"], +[-37.7995244333, 175.30833465, "53"], +[-37.7993108667, 175.30849525, "61"], +[-37.78384615, 175.3027988167, "421"], +[-37.7933081167, 175.3062743333, "193"], +[-37.7934456833, 175.30633635, "191"], +[-37.78526525, 175.3029070333, "395"], +[-37.7936185333, 175.3063838833, "185"], +[-37.78558965, 175.30349465, "389"], +[-37.7951929333, 175.3069688833, "141B"], +[-37.7953018167, 175.3066968667, "141A"], +[-37.7954388333, 175.3065702667, "139"], +[-37.7987293833, 175.3089116, "2/418"], +[-37.73439015, 175.2638553, "3"], +[-37.7345886667, 175.2637478667, "1"], +[-37.73475095, 175.2640804833, "4"], +[-37.7342593833, 175.2639439333, "5"], +[-37.7344114833, 175.2640107333, "7"], +[-37.73460615, 175.26410215, "6"], +[-37.7292050333, 175.2755030833, "5"], +[-37.7291479, 175.2757665167, "6"], +[-37.7289560667, 175.2755967167, "9"], +[-37.7292691, 175.2757107833, "4"], +[-37.7288274167, 175.2756084, "11"], +[-37.7289142667, 175.27592745, "10"], +[-37.7294626167, 175.2753992, "1"], +[-37.72902665, 175.2758257667, "8"], +[-37.72907965, 175.2755586833, "7"], +[-37.7288717667, 175.2757573667, "12"], +[-37.7293331333, 175.2754511, "3"], +[-37.7937280833, 175.3280310167, "56"], +[-37.7959905333, 175.3288628667, "27"], +[-37.7968232, 175.32961975, "14"], +[-37.7967746333, 175.3292491, "17"], +[-37.79539615, 175.3289324667, "34"], +[-37.7978615, 175.3299814167, "1A"], +[-37.7971053833, 175.3297465833, "8"], +[-37.7961559167, 175.3289427333, "25"], +[-37.79553775, 175.3290021833, "32"], +[-37.7978438167, 175.32975595, "3"], +[-37.7956918833, 175.3287146333, "31"], +[-37.7974081667, 175.3295506667, "11"], +[-37.79414565, 175.32834175, "48"], +[-37.7977508333, 175.3299342, "1"], +[-37.7942917833, 175.3280674333, "47"], +[-37.79554065, 175.3295018833, "28"], +[-37.7954557333, 175.3294120333, "30"], +[-37.79645235, 175.32909085, "21"], +[-37.7938308833, 175.3287377333, "50"], +[-37.79552955, 175.32865215, "33"], +[-37.7949906167, 175.3284086833, "39"], +[-37.7970848167, 175.3294099167, "15"], +[-37.7948241667, 175.3283156, "41"], +[-37.7975666167, 175.3300377833, "4"], +[-37.7945446, 175.3285423833, "42"], +[-37.79572075, 175.3291196167, "26"], +[-37.7946637167, 175.3282494167, "43"], +[-37.79650695, 175.3294514833, "18"], +[-37.7943644667, 175.3288780667, "44B"], +[-37.7979641333, 175.3296130333, "5"], +[-37.7941479, 175.3288569, "44"], +[-37.7966087167, 175.3291745167, "19"], +[-37.7944705667, 175.3281556333, "45"], +[-37.7963022833, 175.3290145167, "23"], +[-37.7943471333, 175.32844395, "46"], +[-37.7959138833, 175.3291775333, "24"], +[-37.7938980167, 175.3284783167, "52"], +[-37.7958396, 175.3287939667, "29"], +[-37.7939703667, 175.3282574167, "54"], +[-37.7969676, 175.3296754167, "10"], +[-37.7939663333, 175.32799875, "58"], +[-37.7975604833, 175.3296200667, "9"], +[-37.7940521, 175.3278001167, "60A"], +[-37.7977313, 175.3300585333, "2"], +[-37.79409795, 175.3276919, "60B"], +[-37.7953722167, 175.32855575, "35"], +[-37.7972528667, 175.32948105, "13"], +[-37.79668225, 175.3295426, "16"], +[-37.7976598833, 175.3296644667, "7"], +[-37.81449125, 175.28890305, "37"], +[-37.8143423, 175.28817215, "11"], +[-37.81511245, 175.2879431667, "23"], +[-37.81463685, 175.2874370333, "12A"], +[-37.8156772, 175.2875933333, "30"], +[-37.8146339167, 175.28714485, "12B"], +[-37.8147480333, 175.2889047333, "33"], +[-37.8145036333, 175.2883608833, "13"], +[-37.81421355, 175.2872203833, "4"], +[-37.8147874, 175.28742625, "14A"], +[-37.8151702, 175.2883440833, "25"], +[-37.8147886333, 175.2871156, "14B"], +[-37.8140108333, 175.2875409333, "3"], +[-37.81455535, 175.2882003333, "15"], +[-37.8153209, 175.2876868333, "26"], +[-37.8149131667, 175.2874225833, "16A"], +[-37.8146102, 175.2879275833, "19"], +[-37.8149372333, 175.2870659333, "16B"], +[-37.81424505, 175.28794295, "9"], +[-37.8149645, 175.2886282333, "29"], +[-37.81485155, 175.2887619667, "31"], +[-37.8150848167, 175.2884975833, "27"], +[-37.8152854167, 175.2872811333, "24A"], +[-37.8156395667, 175.2874889833, "28"], +[-37.81378785, 175.2881479833, "5D"], +[-37.81504725, 175.28905485, "48"], +[-37.8154678833, 175.28844725, "38"], +[-37.8150465333, 175.2874574667, "18"], +[-37.8141845, 175.2876888833, "5A"], +[-37.81384295, 175.2877172333, "3A"], +[-37.8145249333, 175.2891138, "39A"], +[-37.8149546667, 175.2892235667, "50"], +[-37.8152187, 175.2875564167, "24"], +[-37.8149696, 175.2878431833, "21"], +[-37.8153858667, 175.2886245333, "40"], +[-37.8139543333, 175.28822905, "7"], +[-37.8138972, 175.28797025, "5C"], +[-37.8149059167, 175.2895125333, "52"], +[-37.8154136833, 175.28916825, "44"], +[-37.81528815, 175.28876185, "42"], +[-37.8151469167, 175.2889162, "46"], +[-37.8144284167, 175.2873962667, "8"], +[-37.8147758667, 175.2881255, "19A"], +[-37.8144007333, 175.2886410667, "35"], +[-37.8144153, 175.2878813667, "17"], +[-37.8147171833, 175.2891361833, "39"], +[-37.8153169833, 175.2871570167, "22"], +[-37.8154876, 175.2882463167, "36"], +[-37.81548395, 175.28804455, "34"], +[-37.8147952, 175.28923655, "41"], +[-37.8138617333, 175.2874085167, "1"], +[-37.81543695, 175.2878644167, "32"], +[-37.81405375, 175.28784175, "5B"], +[-37.8152214833, 175.2870959333, "20"], +[-37.7816910833, 175.2900809, "4B"], +[-37.78178675, 175.2899917833, "4A"], +[-37.7820606667, 175.29009135, "2"], +[-37.7263077333, 175.2736626, "75"], +[-37.7260826167, 175.27467575, "84F"], +[-37.7129460167, 175.27699415, "226"], +[-37.7189004, 175.2783873167, "167"], +[-37.7119324667, 175.2769819, "226B"], +[-37.7258950167, 175.2745885667, "84L"], +[-37.7279198333, 175.274119, "1/44"], +[-37.7105631167, 175.2672682333, "322B"], +[-37.7107947, 175.2654047333, "332"], +[-37.7109757667, 175.2659732167, "328"], +[-37.7250048833, 175.27498405, "88"], +[-37.7260380333, 175.2744164167, "84J"], +[-37.7013994833, 175.25791085, "493"], +[-37.7261520667, 175.2743177833, "84I"], +[-37.7278160333, 175.2731693833, "57"], +[-37.7259979667, 175.2745653667, "84K"], +[-37.7293361, 175.2728545167, "37F"], +[-37.7285479667, 175.2730403167, "49"], +[-37.7266861, 175.2734534333, "71"], +[-37.7261289167, 175.2745034667, "84H"], +[-37.7226655333, 175.2760048333, "119"], +[-37.70532305, 175.2608475833, "417"], +[-37.7274568667, 175.2732322333, "61"], +[-37.7239256833, 175.2757263333, "112"], +[-37.7258190167, 175.2750570667, "84C"], +[-37.7272954667, 175.2732345333, "63"], +[-37.71905325, 175.2782626667, "165"], +[-37.7293530833, 175.2726806833, "37E"], +[-37.7150513, 175.2687523167, "295"], +[-37.7257589833, 175.2745774167, "84M"], +[-37.6998675333, 175.2538936833, "528"], +[-37.7173054167, 175.2778821167, "179A"], +[-37.70076815, 175.2536279667, "537"], +[-37.7162236667, 175.2780245833, "201"], +[-37.7144491333, 175.2690635, "293"], +[-37.6978658833, 175.2485563333, "590"], +[-37.7144882333, 175.2703001333, "277"], +[-37.7276414667, 175.27320475, "59"], +[-37.7280008167, 175.2731444167, "55"], +[-37.7294446, 175.2728660167, "37A"], +[-37.72815135, 175.2747582, "2/44"], +[-37.7045833833, 175.25969595, "421"], +[-37.7287267333, 175.2750755167, "3/44"], +[-37.71430675, 175.2765729333, "225"], +[-37.72940115, 175.2748653167, "4/44"], +[-37.72945735, 175.2726842333, "37B"], +[-37.7301394, 175.2746775167, "5/44"], +[-37.71523385, 175.2772312833, "215"], +[-37.7259836833, 175.2747221167, "84E"], +[-37.71521575, 175.27016015, "273"], +[-37.7261310333, 175.2737749667, "77"], +[-37.7077800667, 175.2616768167, "386"], +[-37.7171405333, 175.2769125667, "179B"], +[-37.7081010167, 175.2618094833, "384"], +[-37.7250572333, 175.27445985, "89"], +[-37.7204990167, 175.2777732833, "148"], +[-37.7301602667, 175.2730990333, "25"], +[-37.7200781, 175.2780640667, "152"], +[-37.7184421, 175.2785769667, "173"], +[-37.7231984833, 175.27612965, "114"], +[-37.71064265, 175.2648158167, "342"], +[-37.72290435, 175.2762884333, "118"], +[-37.73164645, 175.2738629, "14"], +[-37.7221511833, 175.2752920667, "121"], +[-37.7136579167, 175.2730498167, "261"], +[-37.7222798333, 175.2762662833, "123"], +[-37.7297564833, 175.2729878833, "35A"], +[-37.7218288833, 175.2764945167, "129"], +[-37.7212890667, 175.2767271333, "135"], +[-37.7293800833, 175.2724666833, "37D"], +[-37.7239378667, 175.27514775, "103"], +[-37.7035932667, 175.2620771667, "449"], +[-37.7203748333, 175.2778646333, "150"], +[-37.7127956667, 175.2699451833, "287"], +[-37.7013872167, 175.2593523833, "476"], +[-37.7294957167, 175.2724829167, "37C"], +[-37.7174537667, 175.2787758, "179"], +[-37.7114197167, 175.2671998667, "322A"], +[-37.7078247833, 175.26407475, "374B"], +[-37.7111516333, 175.2663985333, "326"], +[-37.7265362667, 175.27408765, "72"], +[-37.7255772167, 175.2747682667, "84A"], +[-37.717391, 175.2793372, "180"], +[-37.6981811333, 175.2489161167, "584"], +[-37.7082581, 175.2610868833, "383"], +[-37.6980211, 175.2487262833, "586"], +[-37.72523405, 175.27434195, "87"], +[-37.7268527667, 175.2733578833, "69"], +[-37.70462715, 175.26095165, "423"], +[-37.7131500167, 175.2690972833, "297"], +[-37.72933195, 175.2733725833, "7/44"], +[-37.7123089833, 175.2685958667, "301"], +[-37.7138259, 175.2693998667, "291"], +[-37.711843, 175.2672511667, "315"], +[-37.7269754, 175.2738435, "68"], +[-37.7135316667, 175.27210315, "263-269"], +[-37.7019318667, 175.2596971833, "461"], +[-37.7104164, 175.2630060333, "355"], +[-37.7271932833, 175.2732581833, "65"], +[-37.7122655333, 175.2739727333, "250"], +[-37.7291537833, 175.2729018333, "41"], +[-37.72540605, 175.2742406833, "85"], +[-37.7288676333, 175.2729694667, "45"], +[-37.72903585, 175.27340235, "8/44"], +[-37.7287184833, 175.2730073, "47"], +[-37.7129122167, 175.2704198167, "281"], +[-37.71132495, 175.2656945667, "329"], +[-37.7299655167, 175.2730756667, "27"], +[-37.7296478833, 175.2729600333, "35G"], +[-37.7221323667, 175.2767477833, "126"], +[-37.7283858667, 175.2730633167, "51"], +[-37.7244191333, 175.2730626833, "91"], +[-37.7271183833, 175.2737790167, "66"], +[-37.7274658167, 175.2736361333, "62"], +[-37.7256166833, 175.2745559333, "84N"], +[-37.7137655167, 175.2736098167, "247-253"], +[-37.7296787, 175.2727912333, "35F"], +[-37.7314152667, 175.2738270333, "16"], +[-37.7281773333, 175.2731041833, "53"], +[-37.7261689333, 175.2746114, "84G"], +[-37.72966115, 175.2726310333, "35E"], +[-37.7268151167, 175.27393145, "70"], +[-37.7297709833, 175.2725983, "35D"], +[-37.7264931167, 175.2735617833, "73"], +[-37.72986115, 175.2726638833, "35C"], +[-37.7256477333, 175.2749537, "84B"], +[-37.7270271667, 175.2732898667, "67"], +[-37.7297906, 175.2728131333, "35B"], +[-37.7142053833, 175.2755688333, "235"], +[-37.7273061, 175.2736948, "64"], +[-37.7085737833, 175.2629934333, "374"], +[-37.7258823667, 175.2747726667, "84D"], +[-37.7301011833, 175.2736202667, "36"], +[-37.7968174667, 175.3247441667, "1"], +[-37.79693035, 175.3247815667, "3"], +[-37.79733445, 175.3245566167, "6"], +[-37.7976295167, 175.32505085, "13"], +[-37.7980022333, 175.3248469, "16"], +[-37.7977636833, 175.3251048333, "15"], +[-37.7971933667, 175.32449295, "4"], +[-37.7970337, 175.3244485333, "2"], +[-37.7979782167, 175.3250188, "19"], +[-37.79735315, 175.3249424, "9"], +[-37.79760295, 175.3246722167, "10"], +[-37.7978894167, 175.3247381167, "14"], +[-37.7970742167, 175.3248275167, "5"], +[-37.7977478, 175.3247060333, "12"], +[-37.7972146333, 175.3248829667, "7"], +[-37.7974967, 175.32499325, "11"], +[-37.7974670167, 175.32461245, "8"], +[-37.7978969167, 175.32511025, "17"], +[-37.7316399333, 175.2658089667, "15"], +[-37.73201105, 175.26589335, "11"], +[-37.7313192, 175.2661794167, "16"], +[-37.7319754167, 175.2663612167, "5"], +[-37.7313226833, 175.2664404667, "12"], +[-37.73170005, 175.2665444833, "8"], +[-37.7321260333, 175.2659887333, "9"], +[-37.7320700333, 175.2667924667, "4"], +[-37.7317785333, 175.2662706833, "7"], +[-37.7319071833, 175.26666505, "6"], +[-37.7314447833, 175.2657499, "22"], +[-37.7321256667, 175.2664389167, "3"], +[-37.7313698667, 175.2659643, "18"], +[-37.73150285, 175.2664769667, "10"], +[-37.7317869833, 175.2658640167, "13"], +[-37.7311394333, 175.2663373333, "14"], +[-37.7312946333, 175.2657589667, "20"], +[-37.7467884333, 175.2647347667, "9"], +[-37.7459925, 175.27013205, "45"], +[-37.7472094833, 175.2650566, "2"], +[-37.74616395, 175.2703041667, "47"], +[-37.7467377667, 175.26691775, "20"], +[-37.7471566833, 175.2653204, "4"], +[-37.7456327, 175.2699950167, "43A"], +[-37.7463128333, 175.2698698667, "46"], +[-37.7461345833, 175.2692982167, "42"], +[-37.74616935, 175.26960675, "44"], +[-37.7468571667, 175.2651566, "11B"], +[-37.74589955, 175.2699353333, "43"], +[-37.7470997833, 175.2655538667, "6"], +[-37.7463668, 175.2683769, "34"], +[-37.7470036667, 175.2659327167, "10"], +[-37.7467406667, 175.26564835, "17"], +[-37.7466099833, 175.2646084667, "7"], +[-37.74669, 175.2671297333, "22"], +[-37.7464822, 175.2679707167, "30"], +[-37.7461872833, 175.26901985, "40"], +[-37.74630375, 175.2685798667, "36"], +[-37.7462491, 175.2687815667, "38"], +[-37.7470545167, 175.2657470833, "8"], +[-37.7470350667, 175.2646681333, "3"], +[-37.7468928333, 175.265004, "11A"], +[-37.7465895167, 175.2675288333, "26"], +[-37.7465400167, 175.2677364167, "28"], +[-37.7464201167, 175.2681711167, "32"], +[-37.7467808, 175.2667327167, "18"], +[-37.7467710667, 175.26448545, "5"], +[-37.7468999333, 175.2663293667, "14"], +[-37.7468521333, 175.2665129, "16"], +[-37.7469481833, 175.2661381833, "12"], +[-37.7466394667, 175.26733095, "24"], +[-37.7468098667, 175.2653963667, "15"], +[-37.7721810833, 175.30085465, "5A"], +[-37.7719929667, 175.3015060167, "1"], +[-37.7721131333, 175.3010758333, "5"], +[-37.7719563167, 175.3016288, "1A"], +[-37.77234755, 175.3014279167, "6"], +[-37.7722033333, 175.3018802, "10A"], +[-37.7720594333, 175.3012504833, "3A"], +[-37.7722384, 175.3017633833, "10B"], +[-37.7724920667, 175.3010353333, "2"], +[-37.77202525, 175.3013641333, "3"], +[-37.7726028167, 175.3012044667, "4A"], +[-37.7724329, 175.3012031167, "4"], +[-37.77227925, 175.3016276333, "8"], +[-37.7381721667, 175.2499062167, "38"], +[-37.7385139833, 175.2495813833, "14"], +[-37.7384374, 175.2496764, "16"], +[-37.738375, 175.2497665667, "18"], +[-37.738325, 175.2500060667, "20"], +[-37.7383963167, 175.2500296833, "21"], +[-37.7384800667, 175.2500661, "19"], +[-37.7385750167, 175.2501046667, "17"], +[-37.73864285, 175.24981965, "12A"], +[-37.7386047167, 175.2499620167, "15"], +[-37.7366928167, 175.2810648833, "4"], +[-37.7368468333, 175.2806683833, "8"], +[-37.7365522833, 175.2812198167, "2"], +[-37.73681845, 175.2809147833, "6"], +[-37.7370009833, 175.2807719167, "10"], +[-37.7371984667, 175.2810749833, "7"], +[-37.737091, 175.2809105167, "9"], +[-37.73685635, 175.2812737833, "3"], +[-37.7370570333, 175.2811713833, "5"], +[-37.7367102333, 175.2813939333, "1"], +[-37.80951905, 175.2878195667, "18"], +[-37.8106939, 175.2873605333, "9A"], +[-37.8098794333, 175.287094, "19A"], +[-37.8107938833, 175.2882169833, "2"], +[-37.81098305, 175.28797455, "3"], +[-37.8099753167, 175.2873093833, "19"], +[-37.81023625, 175.28684945, "15A"], +[-37.8107571833, 175.2876903167, "7"], +[-37.8102654833, 175.2872443, "15"], +[-37.8104466667, 175.2883466, "4A"], +[-37.8103196167, 175.28797515, "8A"], +[-37.8104208167, 175.2877447, "8"], +[-37.8102135, 175.2876533, "10"], +[-37.8101115833, 175.2872646667, "17"], +[-37.8106828667, 175.2871981, "11A"], +[-37.8089637667, 175.2875480667, "31"], +[-37.8105165833, 175.2873863, "11"], +[-37.8095357, 175.2881199, "18A"], +[-37.8100547333, 175.2880539, "12A"], +[-37.8093547333, 175.2878156333, "20"], +[-37.81000275, 175.2876907167, "12"], +[-37.8105628, 175.2879456333, "6"], +[-37.8104092667, 175.2872747667, "13"], +[-37.8106236167, 175.2875627333, "9"], +[-37.80984175, 175.2877156667, "14"], +[-37.8108848167, 175.2883403833, "2A"], +[-37.8096812667, 175.2877663667, "16"], +[-37.8106701333, 175.2880813667, "4"], +[-37.8097621667, 175.2870216167, "21B"], +[-37.8088438333, 175.2879164667, "24"], +[-37.8096517, 175.28739435, "23"], +[-37.8094908833, 175.2874400167, "25"], +[-37.80929625, 175.2874909, "27"], +[-37.8091342167, 175.28750875, "29"], +[-37.8108677667, 175.2878162167, "5"], +[-37.8089822833, 175.2879080333, "22"], +[-37.80980685, 175.28735635, "21"], +[-37.7771779167, 175.22600925, "4"], +[-37.7773454333, 175.2255345167, "5"], +[-37.7771003333, 175.2258662333, "6"], +[-37.77733175, 175.2251419, "9"], +[-37.7770764333, 175.2256703333, "8"], +[-37.7773401667, 175.2253372833, "7"], +[-37.7772958333, 175.22615165, "2"], +[-37.7769043333, 175.2249895, "14"], +[-37.7769879833, 175.2252186167, "12"], +[-37.7770684167, 175.2254554167, "10"], +[-37.7774873, 175.22594705, "1"], +[-37.77735155, 175.2257649667, "3"], +[-37.7773759333, 175.22495215, "11"], +[-37.7772113, 175.2249741, "13"], +[-37.7770794167, 175.2249835167, "16"], +[-37.7712699833, 175.2794147167, "28"], +[-37.7713737, 175.2811345833, "11A"], +[-37.7718577667, 175.27870045, "29B"], +[-37.7716590833, 175.2790314667, "29A"], +[-37.7718963667, 175.2790493333, "29C"], +[-37.7716715833, 175.2792083667, "29"], +[-37.7716966833, 175.27971305, "25A"], +[-37.7712195667, 175.2811572833, "11"], +[-37.7713254167, 175.2813537833, "9A"], +[-37.7712668833, 175.28093145, "13A"], +[-37.7714271833, 175.2809187333, "13B"], +[-37.7710181833, 175.2819869167, "1"], +[-37.7716319833, 175.2794084167, "27"], +[-37.77112, 175.28159025, "7"], +[-37.7711652167, 175.281375, "9"], +[-37.7712119833, 175.2796507, "24"], +[-37.7710279, 175.2796806, "24A"], +[-37.7711447167, 175.2799281333, "22"], +[-37.7710786833, 175.280213, "20"], +[-37.7709780167, 175.27993655, "22B"], +[-37.7709081167, 175.2802166167, "20A"], +[-37.7710293, 175.28046435, "18"], +[-37.77090965, 175.2803335, "18A"], +[-37.7709852667, 175.2806612, "16"], +[-37.7709408, 175.28083605, "14"], +[-37.7709106833, 175.2810021833, "12"], +[-37.77086925, 175.2811428167, "10"], +[-37.7708198167, 175.2813818833, "8"], +[-37.7707667833, 175.28158595, "6"], +[-37.7706791667, 175.2820216333, "2"], +[-37.7707199167, 175.2818293167, "4"], +[-37.7716825667, 175.2798151833, "23A"], +[-37.7714143833, 175.2802743667, "19"], +[-37.7714717167, 175.28005815, "21"], +[-37.7715151667, 175.2798493, "23"], +[-37.7715744167, 175.2796320167, "25"], +[-37.7711716667, 175.28200265, "3"], +[-37.7710715667, 175.2818114333, "5"], +[-37.6979316167, 175.2690202167, "33"], +[-37.69869935, 175.2697784667, "43"], +[-37.6996986833, 175.27076505, "49"], +[-37.6990089333, 175.27005305, "45"], +[-37.7714248667, 175.2948204, "23H"], +[-37.7699038833, 175.2999510833, "84"], +[-37.7707592833, 175.2976916167, "60"], +[-37.7695612833, 175.2999664833, "88"], +[-37.7720953, 175.2954541333, "24B"], +[-37.7714652167, 175.2947592167, "23D"], +[-37.7723623, 175.2944937167, "1/12-11/12"], +[-37.77070885, 175.2966231, "47C"], +[-37.7726233833, 175.2939874833, "2"], +[-37.77061045, 175.2965479667, "47E"], +[-37.7725697, 175.2940732833, "2A"], +[-37.7713764833, 175.2956514333, "31"], +[-37.7725653833, 175.2942602, "4"], +[-37.7703589667, 175.2976234, "59"], +[-37.7726317667, 175.29439175, "6"], +[-37.77226365, 175.2938173167, "3"], +[-37.7727286167, 175.2944827, "8"], +[-37.77195775, 175.2943888333, "13"], +[-37.7728043667, 175.2944215167, "8A"], +[-37.7698344333, 175.29943795, "80A"], +[-37.7728097, 175.29461995, "10"], +[-37.7707594833, 175.2966593833, "47B"], +[-37.77217985, 175.29478215, "16A"], +[-37.771612, 175.2948598833, "23B"], +[-37.772513, 175.2950643333, "16F"], +[-37.7698591667, 175.30001535, "86"], +[-37.7722396667, 175.2948309833, "16B"], +[-37.7703487833, 175.2992028333, "74A"], +[-37.7724299833, 175.29499485, "16E"], +[-37.7704797667, 175.2981757667, "62"], +[-37.7722940167, 175.2948711167, "16C"], +[-37.7700641333, 175.2969262167, "57A"], +[-37.7723459333, 175.2949196667, "16D"], +[-37.7715381333, 175.2948068833, "23C"], +[-37.7721029833, 175.2949555667, "18A"], +[-37.7716875833, 175.2944644667, "15B"], +[-37.7721528, 175.2949969667, "18B"], +[-37.7711335333, 175.2975787, "56A"], +[-37.7722683, 175.2950760333, "18D"], +[-37.7705651167, 175.2985143333, "64A"], +[-37.7723525167, 175.2951427, "18E"], +[-37.7701083333, 175.2976439167, "69A"], +[-37.7724392, 175.2951995333, "18F"], +[-37.7718820167, 175.29455805, "15"], +[-37.7722116667, 175.29503725, "18C"], +[-37.7695289167, 175.2992722667, "83"], +[-37.7702305, 175.2970143167, "55A"], +[-37.7705291333, 175.2988718, "68A"], +[-37.7702732833, 175.2967294667, "55B"], +[-37.7700691167, 175.2989929167, "74"], +[-37.7722772667, 175.2946618833, "14"], +[-37.7699893167, 175.29912585, "76"], +[-37.7714997167, 175.2948761, "23G"], +[-37.7705299667, 175.2972264167, "55"], +[-37.7718184, 175.2955554, "28"], +[-37.7698847333, 175.2993320167, "80"], +[-37.7702659667, 175.29784765, "69"], +[-37.7697088333, 175.2996589833, "82"], +[-37.7688945833, 175.3004754333, "1/99-3/99"], +[-37.7702241333, 175.2975827833, "59A"], +[-37.76921565, 175.3006383333, "96"], +[-37.7708126833, 175.2967072833, "47A"], +[-37.7708105, 175.2963838833, "45A"], +[-37.77089235, 175.29739035, "56"], +[-37.7701965, 175.2967549, "57B"], +[-37.7708201167, 175.2975404, "58"], +[-37.7700870333, 175.29750415, "61"], +[-37.7711359167, 175.2973025667, "52A-52J"], +[-37.7713597333, 175.2946177333, "21A"], +[-37.7711242833, 175.2952080333, "27"], +[-37.7699936833, 175.2972110667, "63A"], +[-37.77138035, 175.2941993833, "19C"], +[-37.7698518167, 175.29738145, "65B"], +[-37.7700778333, 175.299559, "78A"], +[-37.77005255, 175.2975710833, "67"], +[-37.7702004833, 175.2996704667, "78B"], +[-37.7698245833, 175.29754195, "65C"], +[-37.7694354, 175.2994696, "85"], +[-37.7717401, 175.2961848, "34A"], +[-37.7705617333, 175.2986176833, "66A"], +[-37.7712685, 175.2947755167, "21B"], +[-37.7690063, 175.2996799667, "89A"], +[-37.7715767667, 175.2949278833, "23F"], +[-37.7704389833, 175.29746845, "57"], +[-37.77069635, 175.2953046333, "33"], +[-37.7693219167, 175.2996608333, "87"], +[-37.7720456667, 175.2942224833, "11"], +[-37.7714765833, 175.2943436167, "19E"], +[-37.7716143833, 175.2946406333, "17A"], +[-37.7706590833, 175.2965788667, "47D"], +[-37.7717875, 175.29470675, "17"], +[-37.77169295, 175.29492645, "23A"], +[-37.7721588, 175.2939989, "5"], +[-37.7703272, 175.2984893333, "66"], +[-37.7716880167, 175.2938764667, "9"], +[-37.7703908167, 175.2983409667, "64"], +[-37.7713882167, 175.2951694833, "25"], +[-37.7719421333, 175.2953103167, "24"], +[-37.7715998667, 175.2952597, "25A"], +[-37.7714662333, 175.2954121833, "29"], +[-37.77194375, 175.2959259667, "30"], +[-37.7716550667, 175.2958579833, "32"], +[-37.7715265167, 175.2960754833, "34"], +[-37.7714726167, 175.2962236333, "36"], +[-37.7710284833, 175.2962728667, "39A"], +[-37.7708591333, 175.2962282667, "39B"], +[-37.7713978667, 175.29640635, "40"], +[-37.7713293667, 175.29655665, "42"], +[-37.7704023667, 175.29629625, "43B"], +[-37.7716419, 175.2964479667, "38"], +[-37.77054805, 175.2963202333, "43C"], +[-37.77053715, 175.29604755, "43"], +[-37.7714312667, 175.2966587333, "44"], +[-37.77089115, 175.2965124667, "45"], +[-37.7716273333, 175.2966307333, "46A"], +[-37.7715754333, 175.2967585167, "46"], +[-37.77120665, 175.2967331667, "48"], +[-37.7712633333, 175.2969902, "50A"], +[-37.7711333833, 175.29688495, "50"], +[-37.7706833167, 175.2968111667, "51"], +[-37.7704629833, 175.2969946, "53A"], +[-37.7706292167, 175.2970328, "53"], +[-37.77042945, 175.2990394667, "72B"], +[-37.7701450167, 175.2988487, "72"], +[-37.7699089833, 175.2982543667, "73A"], +[-37.7700504167, 175.2982204667, "73"], +[-37.7698627333, 175.2985629333, "77"], +[-37.7701744667, 175.2980337833, "71"], +[-37.7692221333, 175.2998435833, "89"], +[-37.7702278167, 175.2986895167, "70"], +[-37.76978915, 175.2987194833, "79"], +[-37.7699866167, 175.2978892167, "71A"], +[-37.7694543833, 175.3001752667, "90"], +[-37.7688269167, 175.2996130833, "91"], +[-37.7693563333, 175.30038385, "92"], +[-37.7686877667, 175.2998792667, "93B"], +[-37.7687795333, 175.2996987167, "93"], +[-37.7689198167, 175.29992595, "95A"], +[-37.76910805, 175.3000734667, "95"], +[-37.7690184833, 175.3002572833, "97"], +[-37.7714348, 175.29442205, "19F"], +[-37.7713316833, 175.2943042, "19B"], +[-37.7715216833, 175.2942601833, "19D"], +[-37.7712927, 175.2943817, "19A"], +[-37.7716545833, 175.2949913667, "23E"], +[-37.7722973833, 175.2953742667, "22D"], +[-37.77219585, 175.29528175, "22C"], +[-37.7721045833, 175.2952028667, "22B"], +[-37.7720255667, 175.2951305667, "22A"], +[-37.7306127333, 175.2702613, "1"], +[-37.7309746167, 175.2699611667, "8"], +[-37.7307026833, 175.2699466, "4"], +[-37.7307936333, 175.2708559333, "7"], +[-37.7308716, 175.2699607167, "6"], +[-37.7305828, 175.2699372167, "2"], +[-37.7307388, 175.2706599, "5"], +[-37.73102515, 175.27006365, "10"], +[-37.7309558, 175.27043315, "17"], +[-37.7309468, 175.270649, "15"], +[-37.7308635833, 175.2710237667, "9"], +[-37.7310083, 175.27019385, "12"], +[-37.7307719167, 175.2703579667, "3"], +[-37.73093555, 175.2708618833, "13"], +[-37.74680155, 175.2913327167, "3"], +[-37.7468169333, 175.2910648667, "1"], +[-37.7470082, 175.2919049167, "9"], +[-37.7470697667, 175.2913654667, "2"], +[-37.74684615, 175.2915716833, "5"], +[-37.7473995833, 175.29231505, "12"], +[-37.7472034667, 175.2923585167, "15"], +[-37.7471645, 175.29153645, "4"], +[-37.7473526833, 175.2925009833, "14"], +[-37.74729245, 175.2917448667, "6"], +[-37.7469282, 175.2917619, "7"], +[-37.7473809167, 175.2919436167, "8"], +[-37.7468142833, 175.29228785, "11B"], +[-37.7474197833, 175.2921407333, "10"], +[-37.7469931833, 175.2923002167, "13"], +[-37.7467905667, 175.2919700333, "11A"], +[-37.8188912, 175.28964395, "28B"], +[-37.8191613, 175.2886732, "21"], +[-37.81974215, 175.2879488667, "11"], +[-37.8198748167, 175.2886805167, "14A"], +[-37.8191463667, 175.28928185, "24"], +[-37.8192507333, 175.28913745, "22"], +[-37.8196086667, 175.2890951167, "18A"], +[-37.8199750667, 175.2876471, "7"], +[-37.8193889667, 175.2883807, "17"], +[-37.8198487, 175.2884208333, "12"], +[-37.8193691667, 175.2889828667, "20"], +[-37.81999655, 175.2885046833, "12B"], +[-37.8199676333, 175.2882784833, "10"], +[-37.8188697167, 175.2894202833, "28"], +[-37.8201969167, 175.2880046333, "6"], +[-37.8192725667, 175.2885273333, "19"], +[-37.8197268167, 175.2885649833, "14"], +[-37.8194861333, 175.2888360667, "18"], +[-37.8187706833, 175.2890693833, "27"], +[-37.8200869833, 175.2875204, "5"], +[-37.81951345, 175.28824035, "15"], +[-37.8196116, 175.2887089, "16"], +[-37.81892175, 175.28893425, "25"], +[-37.8190247167, 175.28841275, "21A"], +[-37.8201168333, 175.2871678333, "3B"], +[-37.8196304, 175.2880988167, "13"], +[-37.8203127, 175.2878339833, "4"], +[-37.8187118667, 175.2895834, "28C"], +[-37.8187904333, 175.2892800333, "29"], +[-37.8198560333, 175.2878055333, "9"], +[-37.8190280833, 175.2894413833, "26"], +[-37.8184659167, 175.28915105, "29A"], +[-37.8190326833, 175.2888089667, "23"], +[-37.8202080667, 175.2873694333, "3"], +[-37.8204201667, 175.28768485, "2"], +[-37.8203241333, 175.2872280833, "1"], +[-37.8200952167, 175.2881421667, "8"], +[-37.8053056833, 175.32943645, "62"], +[-37.8050167, 175.32887195, "54"], +[-37.7998145167, 175.3274733833, "1"], +[-37.8010372333, 175.327507, "14"], +[-37.8049717167, 175.3284272333, "52"], +[-37.8005243333, 175.3273461, "8"], +[-37.7999100333, 175.3271527667, "2"], +[-37.8023593667, 175.3274441167, "26"], +[-37.80350255, 175.32928315, "39"], +[-37.8006897, 175.3273982167, "10"], +[-37.8053376333, 175.32965405, "64"], +[-37.80104765, 175.3279314, "11"], +[-37.8053662167, 175.3298697167, "66"], +[-37.8008637167, 175.3274489167, "12"], +[-37.805106, 175.3284872, "52A"], +[-37.8012186167, 175.3279743, "13"], +[-37.8048638, 175.3292024167, "53"], +[-37.80120965, 175.3275742667, "16"], +[-37.8022438667, 175.3278511, "25"], +[-37.8014643833, 175.3282667833, "17"], +[-37.8027213167, 175.3283654, "33A"], +[-37.80165615, 175.3279488333, "19"], +[-37.80257695, 175.3279747, "29"], +[-37.8014020667, 175.3276109833, "18"], +[-37.8033882667, 175.3287007167, "35"], +[-37.8016943167, 175.32756505, "20"], +[-37.8028776, 175.3283281, "33"], +[-37.8019417333, 175.3278194167, "21"], +[-37.8007450833, 175.3278390667, "7"], +[-37.80206775, 175.3280835667, "23"], +[-37.8034976667, 175.3283399333, "36"], +[-37.8035920167, 175.3292933833, "41"], +[-37.8051847167, 175.3303098167, "61"], +[-37.80373845, 175.3288243833, "43"], +[-37.80311705, 175.3279847, "32"], +[-37.8038302333, 175.3284414, "40"], +[-37.8001857333, 175.3272145, "4"], +[-37.8039836167, 175.3285010667, "42"], +[-37.7999164833, 175.3274973333, "3"], +[-37.8039083167, 175.3288831833, "45"], +[-37.8021513333, 175.3280288167, "25A"], +[-37.8044920667, 175.3287026833, "46"], +[-37.8048269833, 175.3288095167, "50"], +[-37.8043751333, 175.3290168333, "47A"], +[-37.8013873833, 175.3273854667, "18A"], +[-37.8044129333, 175.3292055833, "47"], +[-37.8001598667, 175.3270397167, "4A"], +[-37.8046735167, 175.3287631, "48"], +[-37.8028043333, 175.3281417667, "31"], +[-37.8045498167, 175.3290945667, "49A"], +[-37.8035345167, 175.3287495667, "37"], +[-37.80455145, 175.3293561833, "49B"], +[-37.8033095333, 175.32827525, "34"], +[-37.8051157167, 175.3283261, "52C"], +[-37.8008787833, 175.3278754, "9"], +[-37.8054088333, 175.3283930667, "52B"], +[-37.8013654667, 175.327994, "15"], +[-37.8053383667, 175.3301826667, "70"], +[-37.8036708, 175.3283954, "38"], +[-37.8052839833, 175.3291814833, "60"], +[-37.80034925, 175.3272811167, "6"], +[-37.8050600667, 175.3294020833, "55"], +[-37.8001245, 175.3275641667, "5"], +[-37.8050811833, 175.330034, "59"], +[-37.8053556, 175.3300260833, "68"], +[-37.8051637833, 175.3289351167, "56"], +[-37.80471145, 175.32915325, "51"], +[-37.8052518667, 175.3290348333, "58"], +[-37.80241565, 175.32790975, "27"], +[-37.8050286667, 175.3297067667, "57"], +[-37.7720081333, 175.27363695, "34"], +[-37.7715571667, 175.27229835, "4"], +[-37.7712648667, 175.2724858167, "15"], +[-37.7711568667, 175.2722139333, "11"], +[-37.7715713167, 175.2730105333, "27"], +[-37.7716736833, 175.2726114, "6"], +[-37.7714653667, 175.2727932833, "23"], +[-37.77107705, 175.2719245, "9"], +[-37.7716540333, 175.2732369833, "31"], +[-37.7717012333, 175.2735307, "35"], +[-37.7709950833, 175.2716765833, "3"], +[-37.7716591667, 175.2738274167, "41"], +[-37.7714988167, 175.2734447, "35A"], +[-37.7718678167, 175.27408385, "40"], +[-37.7719221667, 175.2738256667, "36"], +[-37.78697105, 175.2795649, "100"], +[-37.7888045667, 175.2772031667, "185"], +[-37.7859937333, 175.28126535, "10"], +[-37.7881466333, 175.2782679333, "147"], +[-37.7884288667, 175.27777985, "169"], +[-37.7880965333, 175.2783722833, "145"], +[-37.7884841167, 175.2777036667, "173"], +[-37.7882816333, 175.2780191833, "157"], +[-37.7861623167, 175.2809874, "16"], +[-37.7878443167, 175.2780359167, "148"], +[-37.7862211833, 175.2808845, "36"], +[-37.7863723167, 175.28111475, "31"], +[-37.7865003167, 175.2803756333, "52"], +[-37.7879194833, 175.27788645, "154"], +[-37.7865451, 175.28028285, "56"], +[-37.7868314333, 175.28039095, "61"], +[-37.7867961333, 175.28045525, "57"], +[-37.7883798, 175.2778576167, "163"], +[-37.7865715167, 175.2802102, "58"], +[-37.7868694667, 175.28031865, "63"], +[-37.7861800833, 175.28143525, "5"], +[-37.7864205, 175.2810215667, "33"], +[-37.78732595, 175.2789228, "130"], +[-37.7863529667, 175.2811519, "29"], +[-37.78796095, 175.2777994667, "158"], +[-37.7882271333, 175.2781134333, "155"], +[-37.7879990167, 175.2785351167, "137"], +[-37.7878597333, 175.2787873167, "131"], +[-37.7875691333, 175.27848815, "134"], +[-37.7868918667, 175.2802726, "65"], +[-37.7877516, 175.2789581333, "125"], +[-37.78854435, 175.27758985, "179"], +[-37.78876075, 175.2763124833, "200"], +[-37.7892124667, 175.2765449833, "191"], +[-37.78607915, 175.2811184667, "12"], +[-37.7864502, 175.2809756833, "39"], +[-37.7861808167, 175.2809548, "24"], +[-37.78624625, 175.2808446667, "38"], +[-37.7861164833, 175.2815576, "1"], +[-37.7861963167, 175.2809141333, "26"], +[-37.7858853, 175.2814557667, "2"], +[-37.78626645, 175.2808031667, "40"], +[-37.78614865, 175.2815002333, "3"], +[-37.7876828833, 175.27829075, "136"], +[-37.7863245167, 175.2806960333, "42"], +[-37.7866342333, 175.2801329, "64"], +[-37.7865217167, 175.2808704667, "43"], +[-37.7877671167, 175.2781467, "138"], +[-37.7870481833, 175.2800011, "71"], +[-37.7893474667, 175.2763010833, "193"], +[-37.7863903833, 175.280566, "48"], +[-37.7866033, 175.2801705333, "60"], +[-37.78648625, 175.2809249, "41"], +[-37.78949175, 175.2760405833, "195"], +[-37.7865647667, 175.2807804667, "47"], +[-37.7866637167, 175.2800874167, "70"], +[-37.7859098333, 175.2814171667, "4"], +[-37.7883278667, 175.2779361667, "161"], +[-37.7864535833, 175.2804537, "50"], +[-37.7869234167, 175.28020525, "69"], +[-37.7859439667, 175.2813746167, "6"], +[-37.7863129667, 175.2812433167, "25"], +[-37.7859612167, 175.2813265, "8"], +[-37.7878901667, 175.2779371167, "152"], +[-37.7890913833, 175.27676675, "189"], +[-37.7889612333, 175.2769938667, "187"], +[-37.7867001833, 175.2800260833, "72"], +[-37.7870950833, 175.2799225667, "73"], +[-37.7868789333, 175.2797205833, "82"], +[-37.7867441833, 175.2799439667, "74"], +[-37.7867978333, 175.27985795, "78"], +[-37.78717055, 175.27978635, "75"], +[-37.7858883, 175.2249985667, "27"], +[-37.7856207, 175.22526645, "26"], +[-37.7856261167, 175.2247895167, "33"], +[-37.7863677833, 175.2269408667, "9"], +[-37.7863279333, 175.2274010333, "5"], +[-37.7859732833, 175.2251704667, "25"], +[-37.7854839167, 175.2256929167, "22"], +[-37.7854634167, 175.22579995, "20"], +[-37.7857457833, 175.2247857667, "31"], +[-37.7861574, 175.2255725333, "21"], +[-37.7858500167, 175.2256930667, "16"], +[-37.7863417667, 175.2271746667, "7"], +[-37.7859377667, 175.2258805667, "14"], +[-37.7858011833, 175.2248439667, "29"], +[-37.7854590667, 175.2249731167, "30"], +[-37.7860677833, 175.2271309, "4"], +[-37.7855724667, 175.22583805, "18"], +[-37.7857237667, 175.2254505833, "24"], +[-37.78547385, 175.2251387667, "28"], +[-37.78598835, 175.2275863167, "2"], +[-37.7862874167, 175.2276337, "3"], +[-37.7863844167, 175.2267182667, "11"], +[-37.7863411333, 175.2259898667, "17"], +[-37.7863943833, 175.2262261667, "15"], +[-37.7862539167, 175.2257756167, "19"], +[-37.7857891, 175.2262912, "10"], +[-37.7860804333, 175.2263696333, "8"], +[-37.7861534833, 175.2278313167, "1"], +[-37.7860191667, 175.2260793333, "12"], +[-37.7864011167, 175.2264880333, "13"], +[-37.78605765, 175.22537705, "23"], +[-37.7942307667, 175.2507920833, "16"], +[-37.7941576, 175.2512011, "20"], +[-37.7942025167, 175.25098565, "18"], +[-37.7940230667, 175.2504662833, "5"], +[-37.7939331, 175.2515501333, "19"], +[-37.7938210833, 175.2514599667, "15A-15L"], +[-37.7943350667, 175.2503205833, "12"], +[-37.7941722667, 175.2497382, "1/4-17/4"], +[-37.7937892167, 175.25129345, "13"], +[-37.7942652167, 175.2505502667, "14A"], +[-37.7941626, 175.251393, "22"], +[-37.7943396, 175.2505756833, "14B"], +[-37.7940722, 175.2515131167, "24"], +[-37.79442965, 175.2506072, "14C"], +[-37.7940394833, 175.2501814333, "3"], +[-37.7945102167, 175.2506409167, "14D"], +[-37.7943442833, 175.2501578, "10"], +[-37.7939206833, 175.2509292167, "9"], +[-37.7938748833, 175.2511272167, "11"], +[-37.7939682167, 175.25068655, "7"], +[-37.7342950833, 175.2841568667, "25"], +[-37.7398931333, 175.2865992, "186"], +[-37.7347800667, 175.2823758833, "41"], +[-37.7347562333, 175.2831235167, "35"], +[-37.73493935, 175.2813879667, "44"], +[-37.7347937667, 175.2829244667, "37"], +[-37.7372900167, 175.2831605, "77"], +[-37.7344858333, 175.2823450667, "34"], +[-37.7370080333, 175.2821006167, "94"], +[-37.7345105167, 175.2821244667, "36"], +[-37.73470555, 175.2816817833, "40"], +[-37.7353623, 175.2810159333, "46"], +[-37.7348291, 175.2821096667, "43"], +[-37.7332906, 175.28508765, "11"], +[-37.73449625, 175.28265325, "32"], +[-37.7375828333, 175.2830956667, "106"], +[-37.7393204667, 175.2836063833, "140"], +[-37.7377831667, 175.2827742833, "104"], +[-37.7348141167, 175.2815335833, "42"], +[-37.7376946667, 175.2833032833, "108"], +[-37.7370778667, 175.2828024, "73"], +[-37.7373583833, 175.28330435, "79"], +[-37.7379731167, 175.2838948, "87"], +[-37.7377108, 175.28374425, "83"], +[-37.7363859, 175.2817528667, "63"], +[-37.7401095167, 175.2858533, "172"], +[-37.7367678833, 175.2817682, "90"], +[-37.7400665167, 175.2855857667, "166"], +[-37.73594405, 175.2812674833, "57"], +[-37.73357305, 175.2845298, "14"], +[-37.7395299167, 175.2864860167, "121"], +[-37.7336309833, 175.28488655, "15"], +[-37.73901975, 175.2831444167, "136"], +[-37.7337225167, 175.2844083, "16"], +[-37.7362685833, 175.2811519, "82"], +[-37.7337916, 175.2847606167, "17"], +[-37.7341514667, 175.2836377667, "22"], +[-37.73388855, 175.2842395, "18"], +[-37.7381333167, 175.2839352333, "89"], +[-37.73393575, 175.2846399833, "19"], +[-37.7380033167, 175.2835348333, "112"], +[-37.73322095, 175.28474465, "10"], +[-37.7384971167, 175.2840057833, "93"], +[-37.7333959, 175.2846481167, "12"], +[-37.7361424333, 175.2810227167, "80"], +[-37.7330851, 175.2848116, "8"], +[-37.7364984833, 175.28192415, "65"], +[-37.7324014333, 175.28499285, "4"], +[-37.7339470667, 175.2833704333, "26"], +[-37.7340645167, 175.2845131, "21"], +[-37.7397134833, 175.28629785, "119"], +[-37.7352449, 175.2811048667, "48"], +[-37.73493345, 175.28192125, "45"], +[-37.7350522833, 175.2817586, "47"], +[-37.7359339667, 175.28028725, "70"], +[-37.7351896167, 175.2815964833, "49"], +[-37.7404341833, 175.2867981333, "180"], +[-37.7351494167, 175.2811881833, "50"], +[-37.7368870833, 175.2819263833, "92"], +[-37.7353551167, 175.2814479667, "51"], +[-37.7362353667, 175.2815776667, "61"], +[-37.7350691167, 175.2812656833, "52"], +[-37.7360969, 175.2814321, "59"], +[-37.7355303167, 175.2813166333, "53"], +[-37.7360177833, 175.2809175167, "78"], +[-37.7354880333, 175.2809466833, "54"], +[-37.7378501833, 175.2834414167, "110"], +[-37.73570655, 175.2812128167, "55"], +[-37.7391304667, 175.2836054, "138"], +[-37.7354529833, 175.2805233167, "56"], +[-37.7363880333, 175.2812968, "84"], +[-37.735431, 175.280573, "58"], +[-37.7398082, 175.2860136, "117"], +[-37.7354165833, 175.2806253167, "60"], +[-37.7372467167, 175.2825048, "98"], +[-37.7355725167, 175.2804528667, "62"], +[-37.73944985, 175.2836550333, "142"], +[-37.7356315333, 175.2807307833, "64"], +[-37.7405776167, 175.2868108833, "178"], +[-37.7357551, 175.2802789833, "66"], +[-37.7397992667, 175.2857339, "115"], +[-37.7359357, 175.2802009, "68"], +[-37.7378241167, 175.28381975, "85"], +[-37.73582425, 175.28045485, "74"], +[-37.73685735, 175.2824387, "69"], +[-37.73583325, 175.2807568667, "76"], +[-37.7397634167, 175.28673865, "188"], +[-37.7359881167, 175.2802458333, "72"], +[-37.7371162833, 175.2822770667, "96"], +[-37.73302385, 175.2852106667, "7"], +[-37.7371818333, 175.2829813833, "75"], +[-37.7331581667, 175.28515315, "9"], +[-37.7383086667, 175.2836273167, "116"], +[-37.7323547833, 175.2854477, "1"], +[-37.73886405, 175.28362315, "120"], +[-37.7322801667, 175.2850164833, "2"], +[-37.7340188333, 175.2840455333, "20"], +[-37.7325115833, 175.2854056833, "3"], +[-37.73697395, 175.2826207667, "71"], +[-37.7402566333, 175.2865979667, "182"], +[-37.73400975, 175.2835311667, "24"], +[-37.7399960167, 175.28642965, "184"], +[-37.7345821833, 175.2818969667, "38"], +[-37.7395732167, 175.28381335, "146"], +[-37.7374586833, 175.2828735333, "102"], +[-37.7396832, 175.2840057333, "148"], +[-37.7386312667, 175.28364865, "118"], +[-37.7397329667, 175.2841509333, "150"], +[-37.7386765167, 175.2840090833, "95"], +[-37.7397533833, 175.28428455, "152"], +[-37.7396959667, 175.2834958, "144"], +[-37.73975915, 175.2845133833, "154"], +[-37.7398059, 175.2848020833, "156"], +[-37.7393998167, 175.2866357667, "123"], +[-37.7392715167, 175.28685185, "125"], +[-37.7391966, 175.287067, "127"], +[-37.73915595, 175.2872752333, "129"], +[-37.7391393833, 175.2874547167, "131"], +[-37.7394389167, 175.2876205167, "196"], +[-37.7394551, 175.2873577333, "194"], +[-37.7395136333, 175.2871097833, "192"], +[-37.7396250333, 175.2868850833, "190"], +[-37.7391348667, 175.28797585, "135"], +[-37.7391243, 175.2881743333, "137"], +[-37.7391022333, 175.2884127333, "139"], +[-37.73943165, 175.2881711167, "202"], +[-37.73944385, 175.28789475, "200"], +[-37.7390981333, 175.28860875, "141"], +[-37.7397495167, 175.2877678833, "198"], +[-37.7373755833, 175.2827058667, "100"], +[-37.7366651833, 175.28162915, "88"], +[-37.7395454167, 175.2850655167, "109"], +[-37.73941765, 175.2843101833, "103"], +[-37.7344017833, 175.2839316833, "27"], +[-37.73948495, 175.2848268833, "107"], +[-37.7394479833, 175.2845757333, "105"], +[-37.7393082167, 175.2840912, "101"], +[-37.7388129333, 175.2831402167, "122"], +[-37.73409405, 175.2833677833, "28"], +[-37.7346941667, 175.2833400333, "33"], +[-37.7345077833, 175.2837390833, "29"], +[-37.73461385, 175.2835399833, "31"], +[-37.7343641833, 175.2833953167, "30"], +[-37.7391075, 175.2839968, "99"], +[-37.7386141667, 175.28204355, "128"], +[-37.7387209333, 175.2823900667, "126"], +[-37.7387872833, 175.2827512, "124"], +[-37.7388815667, 175.2839972833, "97"], +[-37.7388758, 175.2821532667, "130"], +[-37.7389908833, 175.2827074333, "134"], +[-37.7390313167, 175.2822887, "132"], +[-37.7396211333, 175.2852807333, "111"], +[-37.7403513, 175.2861141333, "174"], +[-37.7397159167, 175.2854939333, "113"], +[-37.7399927667, 175.2853560167, "164"], +[-37.7401622167, 175.2850240833, "160"], +[-37.7398846, 175.2850759167, "158"], +[-37.7402336833, 175.2851434167, "162"], +[-37.7403712833, 175.28556395, "168"], +[-37.7404012833, 175.2857459, "170"], +[-37.7366803, 175.2877433833, "11"], +[-37.7372195833, 175.2874193333, "12"], +[-37.7367838833, 175.28777265, "13"], +[-37.7371582833, 175.2876013, "14"], +[-37.73709145, 175.2881299833, "18"], +[-37.7371074667, 175.2878350667, "16"], +[-37.73682775, 175.2874022, "8"], +[-37.7370215, 175.2873962333, "10"], +[-37.7366406, 175.2874063167, "6"], +[-37.73660535, 175.2877181667, "9"], +[-37.73650745, 175.2876921833, "7"], +[-37.73647245, 175.2873656, "4"], +[-37.7364291667, 175.2876689167, "5"], +[-37.7362970833, 175.2872771333, "2"], +[-37.73629625, 175.2879041833, "3"], +[-37.7362694667, 175.2876160833, "1"], +[-37.7369550167, 175.2878279333, "17"], +[-37.7368572833, 175.2877936833, "15"], +[-37.7355449167, 175.2868611333, "41"], +[-37.73539905, 175.2858630833, "26"], +[-37.7335735, 175.2856520667, "5"], +[-37.73565225, 175.28539475, "28"], +[-37.7342567, 175.2859585167, "17"], +[-37.7356137167, 175.2857283333, "30"], +[-37.73484495, 175.2864945167, "27"], +[-37.7358456667, 175.2858438667, "32"], +[-37.73559055, 175.2866186, "43"], +[-37.7356217667, 175.2859896667, "34"], +[-37.7347353167, 175.2861333333, "23"], +[-37.7356263667, 175.2861998167, "36"], +[-37.7339247, 175.2858850667, "13"], +[-37.7356261333, 175.2864268167, "38"], +[-37.7338977, 175.28545285, "6"], +[-37.7353763667, 175.2867306667, "39"], +[-37.73491465, 175.2861790167, "29"], +[-37.7352240833, 175.28625455, "31"], +[-37.7346828, 175.2864891333, "25"], +[-37.73343055, 175.28524405, "1"], +[-37.7345743667, 175.2860712333, "21"], +[-37.7336581333, 175.2851071333, "2"], +[-37.7334413333, 175.2859371167, "7"], +[-37.7343797667, 175.2852475167, "12"], +[-37.7334740667, 175.2854501333, "3"], +[-37.7341035833, 175.2855221167, "8"], +[-37.7340950333, 175.28593045, "15"], +[-37.7352471667, 175.2866582833, "37"], +[-37.7344176667, 175.2860206167, "19"], +[-37.7351792667, 175.2864573833, "33"], +[-37.73361545, 175.2860166833, "9"], +[-37.7348878833, 175.28573545, "20"], +[-37.73372415, 175.28577625, "11"], +[-37.7347135333, 175.2856672167, "18"], +[-37.7337660167, 175.2852839, "4"], +[-37.735067, 175.2866522833, "35"], +[-37.73452555, 175.2856042333, "16"], +[-37.73431445, 175.28556885, "14"], +[-37.7342052833, 175.2851849667, "10"], +[-37.7350534667, 175.2857920167, "22"], +[-37.7352147333, 175.2858399333, "24"], +[-37.73235455, 175.2488974833, "2"], +[-37.7325874833, 175.2487603667, "3"], +[-37.73239335, 175.2483828, "7"], +[-37.7321323167, 175.2485725833, "8"], +[-37.7324542, 175.2485929667, "5"], +[-37.7319680667, 175.2487947, "6"], +[-37.7297625667, 175.2755373167, "1"], +[-37.7299755833, 175.2754284, "5"], +[-37.7301138167, 175.2754242, "7"], +[-37.7302522, 175.2754815, "9"], +[-37.73024915, 175.2751598333, "14"], +[-37.7302034, 175.2750107167, "12"], +[-37.7300977, 175.2751267, "10"], +[-37.7297229833, 175.27529355, "4"], +[-37.7299765, 175.2751824333, "8"], +[-37.72985385, 175.2752416333, "6"], +[-37.7295921167, 175.27534545, "2"], +[-37.7302497833, 175.2753303, "11"], +[-37.7298573333, 175.2754771833, "3"], +[-37.7596121833, 175.2869511167, "6"], +[-37.7593769, 175.2872039167, "10"], +[-37.7592465, 175.28680945, "5"], +[-37.7588991833, 175.2871842, "11"], +[-37.7597335333, 175.2868187167, "4"], +[-37.7592564833, 175.2873272667, "12"], +[-37.75950195, 175.28707465, "8"], +[-37.75877425, 175.2873231, "13"], +[-37.7591373, 175.2869423, "7"], +[-37.7591439833, 175.2874472833, "14"], +[-37.7598491333, 175.2866873, "2"], +[-37.7586478167, 175.28740355, "15"], +[-37.75903, 175.2875563833, "16"], +[-37.7585508333, 175.2875471667, "17"], +[-37.7589204333, 175.2876767, "18"], +[-37.7584332, 175.28766275, "19"], +[-37.7595202167, 175.2863349667, "1B"], +[-37.7594664167, 175.28631245, "1A"], +[-37.7596298667, 175.28640395, "1D"], +[-37.7589093833, 175.2879231667, "20"], +[-37.7586077333, 175.2877595667, "21"], +[-37.7595687167, 175.2863685333, "1C"], +[-37.75875475, 175.2878341333, "22"], +[-37.75939105, 175.28664625, "3"], +[-37.75901815, 175.28705145, "9"], +[-37.7936881333, 175.2445303667, "43"], +[-37.7944715333, 175.2463818667, "18"], +[-37.7939614167, 175.24723655, "9"], +[-37.7940031333, 175.2470479833, "13A"], +[-37.7930433, 175.2368464, "174"], +[-37.7937567833, 175.2471198, "13"], +[-37.7941823333, 175.2465239667, "17"], +[-37.7937323167, 175.2446885667, "39"], +[-37.7936060833, 175.2422326, "80B"], +[-37.7934261, 175.2433752667, "61"], +[-37.7930703167, 175.24314955, "67"], +[-37.7941332, 175.2468413333, "15A"], +[-37.79337595, 175.2430908167, "65"], +[-37.7939573167, 175.2469134667, "15B"], +[-37.79265205, 175.2365263667, "180"], +[-37.7941189833, 175.2462827667, "21A"], +[-37.7937388667, 175.2469945833, "15D"], +[-37.7940211333, 175.2464074167, "21B"], +[-37.7938719833, 175.24524335, "33"], +[-37.7942650167, 175.2453483167, "28"], +[-37.7942222833, 175.24278365, "66"], +[-37.7932699667, 175.2451916, "37B"], +[-37.7942532, 175.2435330833, "50"], +[-37.7926884, 175.2361005, "186"], +[-37.7943075667, 175.2456354167, "24"], +[-37.7923337, 175.2359174667, "185"], +[-37.7937206667, 175.2400020167, "120"], +[-37.7925548833, 175.2372071833, "168"], +[-37.7925828833, 175.2369975833, "170"], +[-37.7920780667, 175.2358674, "185A"], +[-37.7937440333, 175.2466326667, "17C"], +[-37.7932674833, 175.2448524, "43A"], +[-37.7942329333, 175.24674895, "15"], +[-37.79302665, 175.2449107333, "41"], +[-37.7930302167, 175.23701405, "172"], +[-37.7939390833, 175.2455668, "1/29-12/29"], +[-37.794583, 175.2468313167, "4"], +[-37.7933568, 175.2440291833, "57A"], +[-37.7934733, 175.24533755, "35"], +[-37.79354515, 175.2438319333, "57"], +[-37.7943110667, 175.2429600333, "62"], +[-37.7944075333, 175.2473081833, "1-7"], +[-37.79404875, 175.24051445, "116A"], +[-37.7937310167, 175.2419789, "88B"], +[-37.7928073333, 175.2368123667, "176A"], +[-37.79414865, 175.2407033333, "104"], +[-37.7936451, 175.2443234167, "45"], +[-37.79231465, 175.2361545167, "181"], +[-37.7921826167, 175.23797105, "145"], +[-37.7926651333, 175.2363157333, "182"], +[-37.7934466, 175.24217615, "80A"], +[-37.7921054833, 175.2361792833, "181A"], +[-37.79406985, 175.241164, "102B"], +[-37.7938131167, 175.2449900833, "37"], +[-37.7918686, 175.2379513167, "147"], +[-37.7941220833, 175.2447683, "38"], +[-37.79438615, 175.2412346167, "100"], +[-37.79355655, 175.2447682667, "39A"], +[-37.79287595, 175.2432342833, "67A"], +[-37.7934359333, 175.2448182833, "39B"], +[-37.7935980333, 175.2465225667, "21"], +[-37.7934350667, 175.2443888833, "47"], +[-37.7921576333, 175.2377008667, "151"], +[-37.7942562167, 175.2439071167, "48A"], +[-37.7936168, 175.2441082, "53"], +[-37.7940544, 175.2441490333, "48"], +[-37.7928079, 175.2393430667, "131"], +[-37.7932144, 175.2444466833, "49"], +[-37.7944026, 175.2424741, "82"], +[-37.794159, 175.2443865333, "46"], +[-37.79479135, 175.2404468, "112"], +[-37.79320865, 175.2418146, "83"], +[-37.7938626333, 175.2438611833, "56"], +[-37.7930486167, 175.2416452, "85"], +[-37.7931072, 175.2391116167, "130"], +[-37.79391385, 175.24205655, "86A"], +[-37.7939655667, 175.2465693333, "17B"], +[-37.79441095, 175.2421107, "86"], +[-37.7926207667, 175.2367201167, "176"], +[-37.7935166667, 175.2419153667, "88"], +[-37.7922418, 175.2365617, "175"], +[-37.7946500833, 175.2422033167, "84"], +[-37.7940279333, 175.2459062333, "25"], +[-37.7933754, 175.2414533833, "89"], +[-37.7933276667, 175.23942655, "126"], +[-37.79347985, 175.2411828167, "91"], +[-37.7925339333, 175.2374974, "162"], +[-37.7938152667, 175.2418295, "92A"], +[-37.7938294167, 175.2402611, "118"], +[-37.7935687667, 175.24092165, "93"], +[-37.7938892, 175.24098605, "102"], +[-37.79373745, 175.2414654667, "94"], +[-37.7932085667, 175.23926875, "128"], +[-37.79358485, 175.2407166333, "95"], +[-37.7944024167, 175.2460447833, "22"], +[-37.79411265, 175.2413854, "96A"], +[-37.7940727, 175.2460895, "23"], +[-37.7938033667, 175.2412891667, "96"], +[-37.7925418, 175.2373763333, "164"], +[-37.793565, 175.2405172833, "97"], +[-37.7940184167, 175.2418835, "90A"], +[-37.79432105, 175.2413987833, "98"], +[-37.7945049833, 175.24285935, "64"], +[-37.7935229, 175.2403381833, "99"], +[-37.7947065667, 175.2406854333, "110"], +[-37.7925330833, 175.2379397333, "142"], +[-37.7934564667, 175.2451756667, "37A"], +[-37.79463745, 175.2408558833, "108"], +[-37.7941978, 175.2450873667, "36"], +[-37.7927814333, 175.2352755167, "196"], +[-37.7943164833, 175.2469757167, "11"], +[-37.7927649833, 175.23549585, "194"], +[-37.79341955, 175.2395494833, "124"], +[-37.7945329, 175.2407403167, "106"], +[-37.7934039167, 175.2422721333, "80"], +[-37.7923768, 175.23517515, "193"], +[-37.7944573167, 175.2405258, "114"], +[-37.7943664667, 175.2407393333, "106A"], +[-37.7933140333, 175.2442693833, "51"], +[-37.79399065, 175.2407673667, "104A"], +[-37.7940774667, 175.2437019667, "54"], +[-37.7923478333, 175.2354179333, "191"], +[-37.7918638, 175.2378316667, "149"], +[-37.7936347167, 175.2416724, "92"], +[-37.79434485, 175.2405404, "116B"], +[-37.79404545, 175.2431101333, "60"], +[-37.7939120333, 175.2462372167, "23A"], +[-37.7927381, 175.23569085, "190"], +[-37.7931079, 175.2421196, "81"], +[-37.7934763667, 175.2435947833, "59"], +[-37.7922841, 175.2363904333, "179"], +[-37.7937815167, 175.2434385167, "58B"], +[-37.79375805, 175.2432935833, "58A"], +[-37.7927017333, 175.2359076333, "188"], +[-37.7941264167, 175.24050355, "116"], +[-37.7941769, 175.2419844833, "90"], +[-37.7935341167, 175.24257345, "74"], +[-37.7936341, 175.2427844167, "72"], +[-37.7940128667, 175.2428477667, "68"], +[-37.7936939667, 175.2430361333, "70"], +[-37.7932671167, 175.2428706667, "69"], +[-37.7923530667, 175.2356923167, "187"], +[-37.7927459333, 175.2385901167, "136"], +[-37.7928580167, 175.2388036333, "134"], +[-37.79298535, 175.2389655167, "132"], +[-37.7921605167, 175.2372714167, "167"], +[-37.7926440667, 175.23838, "138"], +[-37.7921371667, 175.2374820333, "165"], +[-37.7925762167, 175.2381897167, "140"], +[-37.7522724167, 175.2682888, "4"], +[-37.7523243, 175.2680262833, "2"], +[-37.7516161667, 175.26822215, "7B"], +[-37.7519535, 175.2681214667, "5"], +[-37.7519039167, 175.2682977833, "7A"], +[-37.75214775, 175.2676680167, "1A"], +[-37.7515937333, 175.2678257167, "3"], +[-37.7520996167, 175.2678205833, "1B"], +[-37.75229475, 175.2685873833, "6"], +[-37.805817, 175.26831355, "1"], +[-37.8061561333, 175.2669034167, "11"], +[-37.80590235, 175.2680820833, "3"], +[-37.80604755, 175.2670560667, "9"], +[-37.8059578833, 175.2677949833, "5"], +[-37.8060811833, 175.2666277, "13"], +[-37.8059899333, 175.2674446167, "7"], +[-37.8059591333, 175.2665377667, "14"], +[-37.8051305333, 175.2669834833, "8A"], +[-37.8056181, 175.2674479667, "6"], +[-37.8055041833, 175.2672646, "8"], +[-37.8057349333, 175.2665928333, "12"], +[-37.8056134167, 175.2667762333, "10"], +[-37.8055319833, 175.2680152167, "2"], +[-37.8055919167, 175.26781415, "4"], +[-37.7660546667, 175.2589141333, "1"], +[-37.7656181833, 175.2590124833, "4A"], +[-37.7658517, 175.2590330167, "4"], +[-37.7654365167, 175.2581038333, "12"], +[-37.7655120167, 175.2583226167, "10"], +[-37.7659728833, 175.2586603833, "3"], +[-37.7657876833, 175.2581072167, "7"], +[-37.7657226333, 175.25786765, "9"], +[-37.7655824, 175.2585512833, "8"], +[-37.7656700667, 175.2587384833, "6"], +[-37.76555845, 175.2579797167, "11"], +[-37.7658130167, 175.2583245667, "5"], +[-37.7658898167, 175.2592872, "2"], +[-37.7025697, 175.2372908333, "155"], +[-37.7048843167, 175.2377791833, "136B"], +[-37.7159216, 175.23368125, "7"], +[-37.7047669667, 175.2385530667, "136A"], +[-37.70464105, 175.2374825833, "138"], +[-37.7095240667, 175.2359038667, "78"], +[-37.69911785, 175.2484925, "273"], +[-37.70527255, 175.2371457, "132"], +[-37.7139675833, 175.23359015, "39A"], +[-37.7015743333, 175.2355675167, "163"], +[-37.698753, 175.2461019167, "265A"], +[-37.7006459833, 175.2358121667, "165"], +[-37.6975633167, 175.2461083167, "265C"], +[-37.7019045, 175.2374989167, "167"], +[-37.6989775667, 175.24767435, "267"], +[-37.7112389667, 175.2353773667, "58"], +[-37.7033549667, 175.2370762167, "147"], +[-37.7007403167, 175.2387479, "191"], +[-37.69889585, 175.2397421167, "193A"], +[-37.6993441667, 175.2393247333, "193B"], +[-37.6999698667, 175.2422247667, "223"], +[-37.69956335, 175.2441014667, "239"], +[-37.6987250833, 175.2470219, "265B"], +[-37.7126002333, 175.2371063667, "52A"], +[-37.7121661333, 175.2348606167, "52C"], +[-37.71232725, 175.23575855, "52B"], +[-37.7124359167, 175.2348383667, "50"], +[-37.7063872167, 175.2368217333, "108"], +[-37.70593165, 175.2369499333, "118"], +[-37.7003502833, 175.2400273333, "195"], +[-37.7000614833, 175.2409886667, "205"], +[-37.7159770833, 175.2344462667, "6"], +[-37.7152164833, 175.2339423833, "16"], +[-37.7150554333, 175.2339429667, "18"], +[-37.7526045, 175.2876163, "13"], +[-37.75242135, 175.28589305, "2A"], +[-37.75253205, 175.2874058667, "11"], +[-37.7528169667, 175.2865455333, "16"], +[-37.7526530167, 175.2861293333, "10"], +[-37.7528339333, 175.2867713667, "18"], +[-37.7527847, 175.28637325, "14"], +[-37.7526238167, 175.2878320667, "15"], +[-37.7529372833, 175.2861445667, "12"], +[-37.7528473667, 175.2870008, "20"], +[-37.7528777, 175.2872926167, "22"], +[-37.7527484, 175.2879428167, "28"], +[-37.7527847333, 175.2874742667, "24"], +[-37.7527528167, 175.28771625, "26"], +[-37.7524753667, 175.2864823333, "3"], +[-37.75249795, 175.2867509667, "5"], +[-37.7525979, 175.2859345333, "8"], +[-37.75250425, 175.28698075, "7"], +[-37.75261715, 175.2856568167, "6"], +[-37.75249975, 175.2871765667, "9"], +[-37.8294816833, 175.3458044, "17"], +[-37.8287124833, 175.3462113833, "23"], +[-37.8281167333, 175.3464111833, "31A"], +[-37.7830912333, 175.2284947833, "11"], +[-37.7831856, 175.2285721167, "10"], +[-37.7832584667, 175.2281790333, "5"], +[-37.78343195, 175.2280317, "3"], +[-37.7835286833, 175.2282390333, "4"], +[-37.7829356833, 175.2283271833, "9"], +[-37.78331185, 175.2285296833, "8"], +[-37.7834124167, 175.2283391333, "6"], +[-37.7831217833, 175.2282634167, "7"], +[-37.7835619333, 175.22790865, "1"], +[-37.7824411833, 175.2433677, "2"], +[-37.7822622833, 175.243121, "1"], +[-37.7900367167, 175.2414378, "10"], +[-37.7897581333, 175.2418759167, "4"], +[-37.7930685167, 175.2406139333, "62"], +[-37.78982405, 175.24225605, "3"], +[-37.7901309333, 175.2413673, "16"], +[-37.7907437833, 175.2420617333, "17"], +[-37.7905181, 175.2421337, "11"], +[-37.7902817667, 175.24182135, "18"], +[-37.7900208833, 175.241087, "12A"], +[-37.7909421333, 175.2419918667, "19"], +[-37.7900997833, 175.2411487833, "14"], +[-37.7896829, 175.2422549833, "1"], +[-37.7907065, 175.24239775, "15"], +[-37.7904348667, 175.2417928, "20"], +[-37.7921268833, 175.2411639, "50"], +[-37.7911139833, 175.2419351667, "21"], +[-37.7899877167, 175.24091795, "12B"], +[-37.79059855, 175.2417375667, "22A"], +[-37.7904870667, 175.2415347667, "22B"], +[-37.7912557667, 175.24223155, "23"], +[-37.7907589667, 175.2416816167, "24A"], +[-37.7907616167, 175.2414837667, "24B"], +[-37.7913758667, 175.2418334333, "25"], +[-37.790687, 175.2412114833, "26A"], +[-37.7915006667, 175.2420881333, "27"], +[-37.7906641833, 175.2411384333, "26B"], +[-37.7904434, 175.2410474, "28B"], +[-37.7906270667, 175.24098105, "28A"], +[-37.7915812333, 175.2420541833, "29"], +[-37.7916389667, 175.24175425, "31"], +[-37.7907586333, 175.2410127833, "30A"], +[-37.7908622333, 175.2408076333, "30B"], +[-37.7908269667, 175.2412533333, "32A"], +[-37.7907962667, 175.2411615833, "32B"], +[-37.7918479, 175.24165945, "33"], +[-37.7909749167, 175.2416202167, "34"], +[-37.7920156333, 175.2419584667, "35"], +[-37.7911447667, 175.2415578, "36"], +[-37.7921999667, 175.2418543167, "37A"], +[-37.7920973333, 175.2419120667, "37"], +[-37.7912988, 175.2415035333, "38A"], +[-37.7912893167, 175.2412709833, "38B"], +[-37.79217135, 175.2415505833, "39"], +[-37.7913399333, 175.2412022333, "40"], +[-37.7923178833, 175.2414867833, "41"], +[-37.7915139, 175.24142595, "42"], +[-37.7924699833, 175.2415777667, "43"], +[-37.7917070667, 175.2413508667, "44"], +[-37.7925608, 175.2413843333, "45"], +[-37.7917869667, 175.2410439667, "46"], +[-37.79275365, 175.24132755, "47"], +[-37.7919687167, 175.2412595167, "48"], +[-37.7930421167, 175.2412962833, "49"], +[-37.7928659, 175.2411296, "51A"], +[-37.79316325, 175.2410737167, "51B"], +[-37.7922689833, 175.2410708333, "52"], +[-37.7923686, 175.2410185167, "54"], +[-37.7925622833, 175.2409595333, "56"], +[-37.7926777833, 175.2409056833, "58"], +[-37.7899743333, 175.2422178, "5"], +[-37.7928228167, 175.2407451833, "60"], +[-37.79310765, 175.2407465667, "64"], +[-37.7928191667, 175.2410289833, "66"], +[-37.78991525, 175.24185725, "6"], +[-37.7901785167, 175.2421905, "7"], +[-37.7900754, 175.2418357167, "8"], +[-37.7903672667, 175.2421543833, "9"], +[-37.7296293833, 175.2641077333, "12"], +[-37.7297722333, 175.2641729, "10"], +[-37.73076345, 175.2640495667, "1"], +[-37.7299494333, 175.2639020833, "7"], +[-37.7296095167, 175.2637356667, "13"], +[-37.7297056, 175.2637386333, "11"], +[-37.7295485, 175.2640359333, "14"], +[-37.7298345667, 175.26381195, "9"], +[-37.7295789, 175.2638905167, "15"], +[-37.7306325333, 175.26407125, "3"], +[-37.7305707167, 175.26450455, "4"], +[-37.7304951, 175.2640754667, "5"], +[-37.7304106667, 175.2645133333, "6"], +[-37.78028265, 175.2972019333, "95"], +[-37.7834591333, 175.2871601833, "9"], +[-37.7802521333, 175.29733425, "97"], +[-37.7838083333, 175.2881853333, "14B"], +[-37.7835877833, 175.2877168167, "12"], +[-37.7809991, 175.2938755167, "55"], +[-37.7813305667, 175.2940527333, "58"], +[-37.7808018333, 175.294758, "65"], +[-37.7806445167, 175.29396205, "59A"], +[-37.783856, 175.2883251167, "14D"], +[-37.7809679, 175.29407985, "59"], +[-37.7810461167, 175.2926735833, "41A"], +[-37.7835157667, 175.2869837667, "7A"], +[-37.7813720833, 175.2938749667, "56"], +[-37.7833789167, 175.2869033, "7B"], +[-37.7809669167, 175.2955277667, "70"], +[-37.7800960167, 175.2980004333, "99"], +[-37.7822863667, 175.28841605, "1/21-27/21"], +[-37.78359875, 175.2867977, "1/5A-4/5A"], +[-37.7839823333, 175.2875211, "1/8A-4/8A"], +[-37.7839262333, 175.2876526, "1/10A-4/10A"], +[-37.7801948167, 175.2932513, "53I"], +[-37.78030805, 175.2932896167, "53H"], +[-37.78074385, 175.2934558667, "53D"], +[-37.7808674667, 175.2935052333, "53C"], +[-37.7806347833, 175.2934203167, "53E"], +[-37.7804148333, 175.2933331167, "53G"], +[-37.7805133833, 175.2933683667, "53F"], +[-37.7811002667, 175.2935795333, "53A"], +[-37.7809722667, 175.2935433167, "53B"], +[-37.7802053833, 175.2931478333, "53J"], +[-37.78232065, 175.2898855, "25"], +[-37.78092, 175.2943245333, "1/63"], +[-37.7811684667, 175.2932299167, "1/47-3/47"], +[-37.78333405, 175.2873899333, "11"], +[-37.7838403833, 175.2880139, "12A"], +[-37.7821129667, 175.2911844333, "1/40-8/40"], +[-37.78203775, 175.2914069833, "1/42-8/42"], +[-37.7827161167, 175.2881099, "15A"], +[-37.7829686833, 175.2882623833, "15B"], +[-37.7834147667, 175.2880756333, "16"], +[-37.7828882833, 175.2884485833, "17"], +[-37.78333305, 175.2882774333, "18"], +[-37.7839977, 175.2883882167, "14C"], +[-37.7835045833, 175.28789535, "14"], +[-37.7832777833, 175.2875889667, "13"], +[-37.78311225, 175.2880220833, "15"], +[-37.7806406167, 175.2942311667, "2/63"], +[-37.7832209667, 175.2885289667, "20"], +[-37.7828116833, 175.28865715, "19"], +[-37.7836093667, 175.2889955667, "22A"], +[-37.78343935, 175.28880705, "22B"], +[-37.7830517167, 175.2889464833, "24"], +[-37.7839002, 175.2861438833, "1A"], +[-37.7838528167, 175.2862606, "1B"], +[-37.7839456333, 175.28602345, "1"], +[-37.78138515, 175.2923471333, "37A"], +[-37.7810633167, 175.2925592333, "39A"], +[-37.78132205, 175.29259185, "39"], +[-37.7815638833, 175.291658, "37"], +[-37.7821865, 175.2910168333, "38"], +[-37.7821566, 175.2902884667, "27"], +[-37.7821007, 175.2904635333, "29"], +[-37.7825212, 175.2902382833, "30"], +[-37.7824466667, 175.2904206333, "32"], +[-37.7816454833, 175.2914474667, "35"], +[-37.7825755167, 175.2900697167, "28"], +[-37.7823650167, 175.2906012333, "34"], +[-37.7826067833, 175.28991835, "26"], +[-37.7817306167, 175.291254, "33"], +[-37.7805145833, 175.2941386833, "61A"], +[-37.7803142167, 175.2939024, "61B"], +[-37.7801847833, 175.2940176667, "61E"], +[-37.7800952833, 175.2939812, "61C"], +[-37.78011545, 175.2938144667, "61D"], +[-37.7802367667, 175.2943078167, "61F"], +[-37.7805494667, 175.29396375, "61"], +[-37.7808589667, 175.2945415, "63A"], +[-37.7812664667, 175.2928170167, "41"], +[-37.78097345, 175.2929092833, "43A"], +[-37.7808598667, 175.2928650667, "43B"], +[-37.7812197833, 175.29301695, "43"], +[-37.7807050833, 175.2928976667, "45B"], +[-37.7803554667, 175.29268385, "45C"], +[-37.78051485, 175.2927308, "45"], +[-37.7817020833, 175.2923400333, "48"], +[-37.7806257167, 175.2932513667, "49A"], +[-37.7811409667, 175.2933924167, "49"], +[-37.7818059667, 175.2927414333, "50C"], +[-37.7816376833, 175.2926957833, "50"], +[-37.7815625667, 175.2929741333, "52"], +[-37.7815117833, 175.2931755, "54"], +[-37.7819570167, 175.2915910333, "44"], +[-37.7818794167, 175.29183005, "46"], +[-37.7837749333, 175.2864104833, "3"], +[-37.7840114, 175.2868537667, "4"], +[-37.78370165, 175.2866000667, "5"], +[-37.7817421167, 175.2927568, "50B"], +[-37.78128605, 175.29424615, "60"], +[-37.7817603667, 175.2926424667, "50A"], +[-37.7837655667, 175.28733625, "8"], +[-37.7834150333, 175.2872503833, "9A"], +[-37.7807741833, 175.2948911167, "67"], +[-37.7810173, 175.2953156167, "68A"], +[-37.7812450333, 175.2954223833, "68B"], +[-37.7809234167, 175.2957303167, "72"], +[-37.78066975, 175.2953398833, "77"], +[-37.7808702333, 175.2959470167, "74"], +[-37.78082895, 175.2961626667, "76"], +[-37.7807848333, 175.2963694667, "78"], +[-37.780641, 175.2954844833, "79"], +[-37.7807330167, 175.29659215, "80"], +[-37.7810747167, 175.2951102, "66"], +[-37.7805931833, 175.29572535, "81A"], +[-37.7806113, 175.2956359667, "81"], +[-37.78055995, 175.2958629667, "83"], +[-37.780526, 175.2960506333, "85"], +[-37.7806054333, 175.2972196167, "86"], +[-37.7805665833, 175.2974280833, "88"], +[-37.78039865, 175.2966918333, "89"], +[-37.7805132, 175.2976401167, "90"], +[-37.7803642167, 175.29684255, "91"], +[-37.7804716333, 175.2978548167, "92"], +[-37.7803935333, 175.29805895, "94"], +[-37.7806523167, 175.2970129833, "84"], +[-37.7803257, 175.2970226667, "93"], +[-37.78068715, 175.2968032667, "82"], +[-37.7841460667, 175.28639735, "2"], +[-37.7831313, 175.2887685333, "1/22A-4/22A"], +[-37.7836550667, 175.2875564833, "1/10-4/10"], +[-37.7829493167, 175.2890687167, "24A"], +[-37.7835187833, 175.2885505, "1/20-6/20"], +[-37.75901055, 175.2588588333, "7A"], +[-37.7560813667, 175.2575643833, "44A"], +[-37.7567793833, 175.2580321667, "34A"], +[-37.7576672, 175.2584987, "24"], +[-37.7586249333, 175.2587943333, "13"], +[-37.7579012833, 175.2581698333, "25"], +[-37.7589467333, 175.2578726167, "15B"], +[-37.7589639, 175.2590976333, "7"], +[-37.7582045, 175.2581041, "23"], +[-37.7573364833, 175.2582731, "28A"], +[-37.75893025, 175.2596108333, "12"], +[-37.7572200667, 175.2581583167, "30"], +[-37.75862435, 175.2595864833, "14A"], +[-37.7571634833, 175.2584697833, "28B"], +[-37.7590706, 175.2597301, "8"], +[-37.7570093833, 175.25838055, "30A"], +[-37.7587713667, 175.2597250833, "12B"], +[-37.7588198, 175.2600991333, "8A"], +[-37.7589391833, 175.25844345, "11"], +[-37.7584677333, 175.2594893667, "16A"], +[-37.7586911333, 175.2602918667, "10"], +[-37.7584336667, 175.2586429167, "17A"], +[-37.75877945, 175.25948415, "14"], +[-37.7584704667, 175.2584218, "17B"], +[-37.7586874667, 175.258301, "15"], +[-37.7584653333, 175.25922885, "18"], +[-37.7587381833, 175.25843625, "15C"], +[-37.7582672833, 175.2584871, "19"], +[-37.75881265, 175.2589506833, "9"], +[-37.75918215, 175.2590357667, "1A"], +[-37.7583236167, 175.2579374833, "23B"], +[-37.7591614833, 175.25923965, "1"], +[-37.7568704833, 175.25744175, "33"], +[-37.7581377167, 175.25921735, "20A"], +[-37.7587515167, 175.25793995, "15A"], +[-37.7583244, 175.2590814333, "20"], +[-37.7583774833, 175.2580469, "21"], +[-37.7581771, 175.2589518333, "22"], +[-37.75907155, 175.2603164, "2"], +[-37.7580415833, 175.2583065667, "23A"], +[-37.7574257667, 175.2586364833, "26A"], +[-37.7574908833, 175.2583903167, "26"], +[-37.7573162, 175.2578222, "27"], +[-37.757177, 175.25771695, "29"], +[-37.75932315, 175.2587874667, "3A"], +[-37.7594058, 175.2586150167, "3B"], +[-37.75701405, 175.2575724, "31"], +[-37.7570626833, 175.2580348, "32"], +[-37.7569251, 175.2579040333, "34"], +[-37.7567484167, 175.25733485, "35"], +[-37.75660565, 175.2579595667, "36A"], +[-37.7567844167, 175.2577737833, "36"], +[-37.7565461667, 175.25740165, "37"], +[-37.7566045, 175.2577515, "38"], +[-37.759307, 175.2599546833, "4"], +[-37.75639455, 175.2577344333, "40"], +[-37.7560047667, 175.2571693, "41"], +[-37.7562639167, 175.2575504833, "42"], +[-37.7561131, 175.25743245, "44"], +[-37.75594285, 175.2572937667, "46"], +[-37.75923585, 175.2587077, "5"], +[-37.7591839, 175.2598515167, "6"], +[-37.7568796667, 175.2582539333, "32A"], +[-37.7562650333, 175.2572592333, "39"], +[-37.7586281167, 175.2593538, "16"], +[-37.7780328833, 175.2396321833, "39A"], +[-37.77740945, 175.2392109833, "36B"], +[-37.77608875, 175.2413680833, "4B"], +[-37.7777417833, 175.2401237, "33"], +[-37.77748615, 175.2400489667, "31"], +[-37.7765614833, 175.2407510667, "14"], +[-37.7769021833, 175.2414628833, "7A"], +[-37.7770122833, 175.2408176, "15"], +[-37.77689695, 175.2410118667, "11"], +[-37.7767062833, 175.2406876167, "16"], +[-37.7770631, 175.2395403, "30"], +[-37.7771308667, 175.240622, "17"], +[-37.7765772167, 175.24152545, "5"], +[-37.7774362833, 175.2406536833, "19A"], +[-37.77630635, 175.24135125, "6"], +[-37.7772193167, 175.2404983, "19"], +[-37.7762028667, 175.2415357667, "4"], +[-37.7763700833, 175.2418938, "1"], +[-37.7763860667, 175.24119755, "8"], +[-37.7766944833, 175.24024815, "20A"], +[-37.77610725, 175.2417035167, "2"], +[-37.7769069667, 175.2403552167, "20"], +[-37.77646665, 175.2417289667, "3"], +[-37.7773279, 175.2403491167, "21"], +[-37.7768370667, 175.2417509167, "5A"], +[-37.7767728167, 175.2399211833, "22B"], +[-37.7768155333, 175.2411607667, "9"], +[-37.7767915333, 175.24053905, "18"], +[-37.7766902167, 175.2413421667, "7"], +[-37.77700515, 175.2401812833, "22"], +[-37.7765688, 175.2408945833, "14A"], +[-37.7774917, 175.2403684167, "23A"], +[-37.7764693667, 175.2406501833, "14B"], +[-37.77741815, 175.2402215667, "23"], +[-37.7769726667, 175.2398109333, "24B"], +[-37.77712995, 175.2399947167, "24"], +[-37.7772281333, 175.2398093333, "28"], +[-37.7774396, 175.2393796333, "36A"], +[-37.7775984167, 175.2398635333, "35"], +[-37.7777613833, 175.2393642667, "45"], +[-37.7773364833, 175.23901975, "36C"], +[-37.7773455667, 175.23954235, "34"], +[-37.7770995, 175.2394231, "32"], +[-37.7779712833, 175.2390996833, "45A"], +[-37.7779012, 175.2398833667, "39B"], +[-37.7777326833, 175.2396728167, "37"], +[-37.7771478833, 175.2390777, "36D"], +[-37.7780959333, 175.2392631, "43B"], +[-37.7780843833, 175.23954245, "41A"], +[-37.7778981167, 175.23948605, "43A"], +[-37.77822865, 175.2393520333, "41B"], +[-37.7863517667, 175.3216695833, "191A"], +[-37.79195275, 175.3271386667, "89A"], +[-37.7937442167, 175.3292730833, "57"], +[-37.7961053167, 175.3318036167, "7"], +[-37.7939606333, 175.32896805, "55"], +[-37.79205885, 175.3276751833, "85"], +[-37.79238565, 175.3279138333, "81"], +[-37.7922453333, 175.3277818167, "83"], +[-37.7933933667, 175.3289217667, "61"], +[-37.7925424, 175.3276758167, "81A"], +[-37.7952052667, 175.33074155, "35"], +[-37.7957649167, 175.33101915, "25"], +[-37.795332, 175.3302901167, "37"], +[-37.7895563833, 175.3256801833, "122"], +[-37.78954895, 175.32197835, "135C"], +[-37.7861016, 175.3217590333, "195"], +[-37.7901337833, 175.32129725, "135B"], +[-37.79546215, 175.3311529833, "27"], +[-37.7899340667, 175.32242565, "135A"], +[-37.7932553667, 175.3285041833, "63B"], +[-37.7828525833, 175.3197547333, "205"], +[-37.7859234167, 175.3216621167, "197"], +[-37.79250295, 175.3280231667, "79"], +[-37.79191575, 175.3280205333, "82"], +[-37.79247825, 175.3285452333, "74"], +[-37.7962322, 175.3318965667, "5"], +[-37.7913161833, 175.3264682833, "99A"], +[-37.7916768333, 175.3277888333, "86"], +[-37.7911875333, 175.3267965833, "99"], +[-37.7914215667, 175.3275454667, "90"], +[-37.7909404833, 175.3270418833, "98"], +[-37.7953211833, 175.3309383833, "31"], +[-37.79117555, 175.3272874333, "94"], +[-37.7960988167, 175.3315228167, "9"], +[-37.791588, 175.32713325, "93"], +[-37.7917934667, 175.3278976, "84"], +[-37.79178745, 175.32681525, "93A"], +[-37.7857229667, 175.3215368333, "199"], +[-37.7916791, 175.3273044833, "91"], +[-37.7924545333, 175.3274392167, "83A"], +[-37.7913281, 175.3268663333, "97"], +[-37.7931919167, 175.3286864167, "63A"], +[-37.7910572333, 175.32717315, "96"], +[-37.7918282, 175.3274262833, "89"], +[-37.7913055333, 175.3274171333, "92"], +[-37.79004655, 175.3251817667, "123A"], +[-37.7914584667, 175.3270094, "95"], +[-37.79219, 175.32718115, "87A"], +[-37.7887851167, 175.32489565, "134"], +[-37.79064715, 175.3258656333, "109A"], +[-37.7892909667, 175.32485965, "131"], +[-37.7939608333, 175.3287816333, "55A"], +[-37.7891933167, 175.3247354167, "133"], +[-37.7956536, 175.330793, "29"], +[-37.7890743167, 175.3246157333, "135"], +[-37.7911883333, 175.3263412167, "101A"], +[-37.7889430667, 175.3245302833, "137"], +[-37.79265245, 175.3278717833, "79A"], +[-37.7886978833, 175.3247947333, "136"], +[-37.7915571, 175.3276627667, "88"], +[-37.7869512333, 175.3226125, "181"], +[-37.7922424333, 175.3273145333, "85B"], +[-37.78808715, 175.3235871167, "159"], +[-37.7920210833, 175.3281016833, "80"], +[-37.7867417167, 175.3223669333, "185"], +[-37.7899015, 175.3260913667, "1/120-11/120"], +[-37.7865307667, 175.3221481667, "187"], +[-37.7926552, 175.3281981, "77"], +[-37.7864051833, 175.3220441167, "189"], +[-37.7899089333, 175.3250475, "125A"], +[-37.7908174, 175.32692805, "100"], +[-37.7914908833, 175.3266833333, "97A"], +[-37.7910765167, 175.3266229667, "101"], +[-37.7919263667, 175.32690255, "91A"], +[-37.7906894833, 175.3268149, "102"], +[-37.7919777833, 175.3275211, "87"], +[-37.791166, 175.3261412167, "103A"], +[-37.7862558667, 175.32187655, "191"], +[-37.79094055, 175.3265015833, "103"], +[-37.79213965, 175.3274853167, "85A"], +[-37.7905566833, 175.3266957, "104"], +[-37.7910159, 175.3260279, "105A"], +[-37.7908166333, 175.3263713333, "105"], +[-37.79089335, 175.3259173667, "107A"], +[-37.7906861, 175.3262431667, "107"], +[-37.7905552667, 175.3261099333, "109"], +[-37.7904300667, 175.32602535, "111"], +[-37.789421, 175.3255009667, "122A"], +[-37.7893546667, 175.3254485, "122B"], +[-37.7898828, 175.3254179667, "123"], +[-37.78975765, 175.3252837667, "125"], +[-37.78962095, 175.3252304833, "127"], +[-37.7938892167, 175.3293718, "53A"], +[-37.7940897833, 175.3290128667, "53B"], +[-37.7940235167, 175.3295792, "53"], +[-37.7936200667, 175.3291677333, "59"], +[-37.7949111, 175.3304493167, "41"], +[-37.7947717, 175.3303250333, "43"], +[-37.7958419833, 175.3316136833, "11"], +[-37.7955929, 175.33137625, "23"], +[-37.79645275, 175.3320506, "1"], +[-37.7950404, 175.3305813667, "39"], +[-37.7955268833, 175.3305916833, "33"], +[-37.7963635, 175.33200045, "3"], +[-37.7939675167, 175.33122135, "60"], +[-37.7715829167, 175.2355485667, "1"], +[-37.7710591, 175.2368911833, "16"], +[-37.7715354333, 175.2362742833, "8"], +[-37.7708415333, 175.2363570667, "17"], +[-37.7715007833, 175.235696, "1A"], +[-37.77104805, 175.2361448333, "11"], +[-37.7714291, 175.2364746667, "10"], +[-37.77128145, 175.2366017167, "12"], +[-37.77109825, 175.2367217, "14"], +[-37.7712371333, 175.2363216667, "13"], +[-37.7709767, 175.2364991, "15"], +[-37.77065515, 175.2373368667, "24"], +[-37.7709009167, 175.2368322667, "18"], +[-37.7707331167, 175.2364284, "19"], +[-37.770854, 175.2370314667, "20"], +[-37.7707311833, 175.2369886, "22"], +[-37.7708607333, 175.2365883333, "21"], +[-37.7712154, 175.2358684833, "5"], +[-37.7702879167, 175.23732565, "31"], +[-37.7705234167, 175.2374973667, "26"], +[-37.7703676667, 175.2374323833, "33"], +[-37.7716127333, 175.2359772167, "4"], +[-37.7702265833, 175.23772235, "35"], +[-37.7713898167, 175.2359489833, "3"], +[-37.77118465, 175.2359784167, "7"], +[-37.7713460333, 175.23611235, "9"], +[-37.771711, 175.2361779, "6"], +[-37.7702468, 175.2378443833, "30"], +[-37.7702104, 175.237078, "29"], +[-37.7704305333, 175.2376357167, "28"], +[-37.7704197, 175.2371606833, "27"], +[-37.7517903833, 175.2545415, "17"], +[-37.7517830167, 175.2541343667, "13"], +[-37.7519282, 175.2544464667, "19"], +[-37.7517846833, 175.2543073167, "15"], +[-37.7518948167, 175.2538941833, "11"], +[-37.7520887667, 175.2542978833, "23"], +[-37.7512258, 175.25353855, "1"], +[-37.7521308833, 175.2540697833, "25"], +[-37.75206525, 175.25448605, "21"], +[-37.7521613333, 175.2538284, "27"], +[-37.75214315, 175.25359715, "29"], +[-37.7510686833, 175.2532577167, "2"], +[-37.7519716, 175.2532744167, "33"], +[-37.7519462833, 175.2530173167, "35"], +[-37.7517998833, 175.2530831667, "37"], +[-37.75207285, 175.2534250333, "31"], +[-37.7513007833, 175.2534706333, "3"], +[-37.7515834167, 175.2533167333, "5"], +[-37.7511905167, 175.2531495, "4"], +[-37.7513998833, 175.2529927333, "6"], +[-37.75162945, 175.2535554667, "7"], +[-37.75187305, 175.2537107, "9"], +[-37.7515731833, 175.2522135833, "22"], +[-37.7516352667, 175.2526675, "26"], +[-37.7513565167, 175.2521134667, "16"], +[-37.7513182167, 175.2524935, "10"], +[-37.7516145167, 175.25193615, "20"], +[-37.7512638, 175.2522929833, "12"], +[-37.7514695667, 175.2520564, "18"], +[-37.7511203833, 175.25208965, "14"], +[-37.7515603167, 175.25247305, "24"], +[-37.7514322333, 175.2527663167, "8"], +[-37.8076289167, 175.27700235, "19A"], +[-37.8080431833, 175.2768930667, "12"], +[-37.8074569333, 175.27688595, "19B"], +[-37.8086034167, 175.2760193833, "2B"], +[-37.8081659167, 175.27549755, "5"], +[-37.8075442667, 175.2766915833, "17A"], +[-37.80820615, 175.2758330333, "7A"], +[-37.80856585, 175.2761562333, "4A"], +[-37.8080362333, 175.2757003833, "7B"], +[-37.8079428833, 175.2760701, "11A"], +[-37.80792385, 175.2763876333, "13"], +[-37.80810125, 175.2760229167, "9"], +[-37.80794915, 175.2771045667, "14A"], +[-37.8084234, 175.2760634833, "4"], +[-37.8080766167, 175.2772264667, "14B"], +[-37.8081322167, 175.2766441833, "10A"], +[-37.8078284, 175.2765889833, "15A"], +[-37.8084973167, 175.2758927833, "2A"], +[-37.8078914667, 175.2773067833, "16A"], +[-37.8084423, 175.2755180167, "3"], +[-37.8080277667, 175.2773927667, "16B"], +[-37.8076790167, 175.2764444167, "15"], +[-37.8077484, 175.2771553667, "18"], +[-37.8076880833, 175.2767842, "17B"], +[-37.8085429667, 175.2754556667, "1"], +[-37.8081977, 175.2768460167, "10B"], +[-37.8075446, 175.2771822, "21"], +[-37.80801165, 175.2762030167, "11"], +[-37.8082178333, 175.2764792167, "8"], +[-37.80831705, 175.2762780833, "6"], +[-37.7250539167, 175.262838, "52"], +[-37.7254592, 175.2618052, "19"], +[-37.7248981333, 175.2627469833, "54"], +[-37.7253737333, 175.2628290167, "48"], +[-37.7247621333, 175.2625759, "56"], +[-37.7253619333, 175.2624330833, "25"], +[-37.7249482167, 175.2622910667, "29"], +[-37.7256080833, 175.2614654333, "34"], +[-37.7246467167, 175.2623771167, "58"], +[-37.7255111167, 175.2621005833, "21"], +[-37.72532065, 175.26029445, "22"], +[-37.7254643, 175.2613107333, "32"], +[-37.72550885, 175.2603868333, "24"], +[-37.7257902, 175.2619724667, "38"], +[-37.7254373833, 175.26089825, "28"], +[-37.7248547, 175.2620487, "31"], +[-37.7252838667, 175.2612122833, "30"], +[-37.725113, 175.2624995667, "27"], +[-37.7254800167, 175.2606762833, "26"], +[-37.7257494833, 175.26173495, "36"], +[-37.7251359667, 175.2605229833, "18"], +[-37.7257272833, 175.2624133833, "42"], +[-37.7251248833, 175.2602019167, "20"], +[-37.7252987333, 175.2615988833, "17"], +[-37.7257854833, 175.26219885, "40"], +[-37.72509075, 175.26074805, "16"], +[-37.7252224333, 175.2628595, "50"], +[-37.7246931833, 175.2620332, "33"], +[-37.7255095167, 175.26273245, "46"], +[-37.7252274833, 175.2621362167, "23"], +[-37.7256389167, 175.2625911833, "44"], +[-37.7251003333, 175.2615094167, "15"], +[-37.7247105, 175.2605057833, "8"], +[-37.72490865, 175.2614632333, "13"], +[-37.7246029, 175.2604384333, "6"], +[-37.7247409667, 175.26137275, "11"], +[-37.7247589833, 175.2609796333, "12"], +[-37.7244079833, 175.2606713333, "4"], +[-37.7245969333, 175.2608498667, "10"], +[-37.7242567333, 175.26051, "2"], +[-37.7242972333, 175.2610027667, "5"], +[-37.72492645, 175.26109365, "14"], +[-37.72414565, 175.2608573833, "3"], +[-37.7240217167, 175.26072245, "1"], +[-37.7245834333, 175.2612578833, "9"], +[-37.7244288167, 175.2611347167, "7"], +[-37.8208642167, 175.2882341167, "29"], +[-37.8203039833, 175.28546605, "18A"], +[-37.81993165, 175.2860206833, "11"], +[-37.8198301667, 175.2843765333, "6B"], +[-37.8195109, 175.2850067, "7"], +[-37.8193848333, 175.2842083833, "2A"], +[-37.8214824333, 175.2886917167, "48"], +[-37.8196792, 175.2841279167, "4A"], +[-37.8203537333, 175.2859983333, "22"], +[-37.8191208167, 175.2847802167, "3A"], +[-37.8215738, 175.2897110667, "41"], +[-37.8193428, 175.2847025667, "3"], +[-37.8211828833, 175.2879895833, "38"], +[-37.81951695, 175.2843841833, "4"], +[-37.8192663667, 175.2840750667, "2"], +[-37.8194168833, 175.28489695, "5"], +[-37.82001075, 175.28620555, "13"], +[-37.8196527667, 175.2845222667, "6"], +[-37.8200305833, 175.2852148, "14"], +[-37.8197676833, 175.2846549, "8"], +[-37.82128915, 175.2882704833, "40"], +[-37.8201049833, 175.28496135, "12B"], +[-37.8214789833, 175.2895849833, "39"], +[-37.8201212167, 175.2854079167, "16A"], +[-37.8218325833, 175.2898851167, "45"], +[-37.8202646, 175.2853797, "16B"], +[-37.8201705167, 175.2865655667, "17"], +[-37.8207919667, 175.28710645, "30"], +[-37.8207983, 175.2880392167, "27"], +[-37.8208710167, 175.28726345, "30A"], +[-37.8214436833, 175.28829935, "44A"], +[-37.8192062167, 175.2849888, "5A"], +[-37.82071555, 175.2868840833, "28"], +[-37.8217488167, 175.2892421333, "56"], +[-37.8202790833, 175.2857829667, "20"], +[-37.82120315, 175.2890689167, "33"], +[-37.8211054333, 175.28782405, "36"], +[-37.8204684833, 175.2858544167, "22A"], +[-37.8209500333, 175.2874162, "32"], +[-37.8203752667, 175.2856612667, "20A"], +[-37.8205614, 175.2865293, "26"], +[-37.8200096333, 175.28667455, "17A"], +[-37.8217042833, 175.2897940833, "43"], +[-37.8218688667, 175.2893857333, "58"], +[-37.8212333833, 175.2876465, "36A"], +[-37.8214002833, 175.2894425167, "37"], +[-37.8200945833, 175.2863751667, "15"], +[-37.8212837333, 175.28925435, "35"], +[-37.82166565, 175.28910215, "52"], +[-37.82102445, 175.287619, "34"], +[-37.82018365, 175.2855957, "18"], +[-37.8206859833, 175.2877559167, "25"], +[-37.8198631167, 175.2848422333, "10"], +[-37.81989315, 175.2863837333, "13A"], +[-37.82200815, 175.2894509333, "60"], +[-37.8216131167, 175.2883345, "44"], +[-37.8204365833, 175.2862124167, "24"], +[-37.8215849, 175.2889680833, "50"], +[-37.8202598333, 175.2867982, "19"], +[-37.8199500167, 175.2850365667, "12A"], +[-37.7166812167, 175.3049843833, "68"], +[-37.7116773833, 175.3029991, "48"], +[-37.7173347, 175.3110011833, "82"], +[-37.7114119167, 175.3024119167, "46"], +[-37.71176275, 175.30447545, "63"], +[-37.7126148833, 175.3063478333, "83"], +[-37.7106002, 175.3019258333, "35"], +[-37.7167629, 175.3060048167, "70B"], +[-37.7109491667, 175.3026922167, "43"], +[-37.7122769667, 175.3043936667, "64"], +[-37.7969955833, 175.2418803333, "22"], +[-37.7971005167, 175.24149475, "26"], +[-37.7973112833, 175.2407014667, "34"], +[-37.7980181333, 175.2429773333, "4B"], +[-37.79736355, 175.2417073, "11"], +[-37.7970525333, 175.2416929833, "24"], +[-37.7974486167, 175.2425343333, "10"], +[-37.7971659667, 175.2412790833, "28"], +[-37.79767495, 175.2414589833, "15B"], +[-37.7982896167, 175.2406263, "27"], +[-37.7972728667, 175.2424630833, "12"], +[-37.7978239667, 175.2426938833, "6"], +[-37.7970868167, 175.2423810833, "14"], +[-37.7974473667, 175.2402922167, "40"], +[-37.7976369667, 175.2418054, "15A"], +[-37.79772485, 175.24220755, "5"], +[-37.79744285, 175.2414598833, "13"], +[-37.7972182167, 175.2410794333, "30"], +[-37.79758145, 175.2421495167, "7A"], +[-37.7973522167, 175.2404983, "36"], +[-37.7974764333, 175.2420941167, "7B"], +[-37.7977068, 175.2413418667, "17A"], +[-37.7977082833, 175.2426393667, "8A"], +[-37.7981472333, 175.24271385, "2"], +[-37.7976058, 175.2425906333, "8B"], +[-37.7975893667, 175.2408831167, "21"], +[-37.7972859167, 175.2420082, "9"], +[-37.7980699833, 175.2423709167, "1"], +[-37.7980473833, 175.2427595167, "4A"], +[-37.7967724667, 175.2422009833, "18"], +[-37.7978803, 175.2422763167, "3"], +[-37.7975896, 175.2402245167, "42"], +[-37.79805545, 175.2401689333, "48"], +[-37.7981078, 175.2406279833, "27A"], +[-37.7979037, 175.24019205, "46"], +[-37.79695145, 175.2422876, "16"], +[-37.79777305, 175.2411127167, "17B"], +[-37.79694525, 175.24209335, "20"], +[-37.7972588, 175.24087985, "32"], +[-37.7977581167, 175.2402110833, "44"], +[-37.7976508667, 175.2406468833, "23"], +[-37.7975227333, 175.2411485833, "19"], +[-37.79727985, 175.2402896833, "38"], +[-37.7979496667, 175.2406289, "25"], +[-37.7718276667, 175.2313299333, "5"], +[-37.7719480667, 175.23140585, "1"], +[-37.7718548667, 175.23128215, "4"], +[-37.7719804167, 175.231331, "2"], +[-37.7719133833, 175.2312879667, "3"], +[-37.7370700333, 175.2779662333, "67"], +[-37.7365995833, 175.2780325167, "46"], +[-37.7369246167, 175.2778938167, "69"], +[-37.7367369833, 175.2780833167, "44"], +[-37.7368069, 175.2778472333, "71"], +[-37.7368408667, 175.2781152, "42"], +[-37.7371713167, 175.2779873833, "65"], +[-37.7374904333, 175.2789444, "55"], +[-37.7372946, 175.2780377167, "63"], +[-37.7372134667, 175.2782698667, "36"], +[-37.73745705, 175.27837755, "32"], +[-37.7365426833, 175.278728, "29"], +[-37.7369949833, 175.2781772333, "40"], +[-37.73744235, 175.2790815667, "53"], +[-37.7374207833, 175.2780845833, "61"], +[-37.7366383167, 175.2787489667, "35"], +[-37.7367005, 175.2778010333, "73"], +[-37.7375703, 175.2787727, "57"], +[-37.73649845, 175.2780042833, "48"], +[-37.7364673333, 175.2789532167, "33"], +[-37.7365778667, 175.2777589333, "75"], +[-37.7375668167, 175.2781376167, "59"], +[-37.7368378167, 175.2772445167, "6"], +[-37.7366386167, 175.27729425, "4"], +[-37.7367894, 175.2774199333, "8"], +[-37.7367358, 175.27753885, "10"], +[-37.7365808333, 175.2776142, "12"], +[-37.7366581333, 175.2769730667, "2"], +[-37.7363910167, 175.27841345, "14"], +[-37.7368228333, 175.2785736, "22"], +[-37.7370846167, 175.2782157833, "38"], +[-37.7373412167, 175.2787829, "30"], +[-37.7373311667, 175.27831645, "34"], +[-37.7361434333, 175.27822735, "15"], +[-37.7370685, 175.2791225667, "43"], +[-37.7372663833, 175.27911845, "49"], +[-37.7365116833, 175.2784530167, "16"], +[-37.7366097, 175.2784953833, "18"], +[-37.7361059833, 175.2783969, "17"], +[-37.7367274167, 175.2785419833, "20"], +[-37.7371150833, 175.2789213, "45"], +[-37.7362791833, 175.2786267667, "25"], +[-37.7373889333, 175.2792043333, "51"], +[-37.7370918333, 175.2786821333, "26"], +[-37.7371955667, 175.27872115, "28"], +[-37.73695725, 175.2786314167, "24"], +[-37.7360722333, 175.27852385, "19"], +[-37.7369917333, 175.2788745167, "41"], +[-37.73687945, 175.2788387833, "39"], +[-37.7367642833, 175.2788065, "37"], +[-37.7360553667, 175.27865495, "21"], +[-37.7364052167, 175.27868075, "27"], +[-37.7362954667, 175.2787945333, "23"], +[-37.7365143833, 175.2788658333, "31"], +[-37.7363072833, 175.2776812833, "9"], +[-37.73638075, 175.27740975, "3"], +[-37.7361955, 175.2780334167, "13"], +[-37.7362499833, 175.2778573167, "11"], +[-37.7364087333, 175.2772861333, "1"], +[-37.7363352, 175.27756125, "5"], +[-37.7372828833, 175.2790051333, "47"], +[-37.7948504667, 175.23040675, "11"], +[-37.79563695, 175.2302398333, "21"], +[-37.7950548667, 175.2295058667, "4"], +[-37.79516895, 175.2303416167, "15"], +[-37.7955600167, 175.2298106667, "12"], +[-37.7957172167, 175.2297059833, "14"], +[-37.7951031, 175.22996965, "8"], +[-37.7958851167, 175.22964195, "16"], +[-37.7948972, 175.2302148333, "9"], +[-37.79532735, 175.2303182667, "17"], +[-37.7948060167, 175.2294738167, "1"], +[-37.7956975667, 175.2299175667, "18"], +[-37.7948213167, 175.2296663167, "3"], +[-37.7957660333, 175.2302113667, "23"], +[-37.7949822667, 175.2303057833, "13"], +[-37.7959503, 175.2302043, "25"], +[-37.79485895, 175.2300401333, "7"], +[-37.7957122, 175.2300415833, "27"], +[-37.7954062667, 175.2298769167, "10"], +[-37.7954957833, 175.2302938333, "19"], +[-37.79508075, 175.2297356667, "6"], +[-37.7948368333, 175.22984885, "5"], +[-37.7957139667, 175.2381306667, "4"], +[-37.7965571, 175.2362251333, "25"], +[-37.7961692333, 175.2349081167, "40"], +[-37.7957107167, 175.2363005, "24"], +[-37.7965517667, 175.2347855833, "41"], +[-37.7961598167, 175.23631295, "21"], +[-37.7961852333, 175.23470435, "42"], +[-37.7962599333, 175.23614375, "23"], +[-37.7955201833, 175.23610975, "26"], +[-37.7956149167, 175.2364845833, "22"], +[-37.7965870333, 175.2360919833, "27"], +[-37.7962571167, 175.2382087167, "1"], +[-37.7955588333, 175.2379654833, "6"], +[-37.7953341833, 175.2364510667, "20"], +[-37.7958039, 175.23824695, "2"], +[-37.79615615, 175.2380603333, "3"], +[-37.7959913667, 175.2378881167, "5"], +[-37.7953383667, 175.2375763833, "10"], +[-37.7965371, 175.2349865, "39"], +[-37.7956246167, 175.23729895, "11"], +[-37.79529695, 175.2373317833, "12"], +[-37.79531685, 175.2371050167, "14"], +[-37.7957473333, 175.2369943667, "13"], +[-37.7954766167, 175.2366946, "18"], +[-37.79536975, 175.2368919167, "16"], +[-37.7958667833, 175.2376778167, "7"], +[-37.7954476333, 175.2377836667, "8"], +[-37.7957291833, 175.2374936833, "9"], +[-37.79653985, 175.23460115, "43"], +[-37.7954061167, 175.236004, "28"], +[-37.7958270333, 175.2360863667, "30"], +[-37.7965603167, 175.23437255, "45"], +[-37.7962217333, 175.23448505, "44"], +[-37.7964815167, 175.2355441833, "33"], +[-37.7963999833, 175.2357452167, "31"], +[-37.79633515, 175.2359267, "29"], +[-37.7961529167, 175.23513215, "38"], +[-37.7965107833, 175.23536425, "35"], +[-37.79653205, 175.2351736667, "37"], +[-37.7961291333, 175.2353121667, "36"], +[-37.7795997167, 175.2469962667, "7"], +[-37.7797405333, 175.2430721, "42A"], +[-37.779832, 175.24610525, "16"], +[-37.7806311667, 175.2448418, "41"], +[-37.7801556167, 175.2467214333, "13B"], +[-37.7809691667, 175.2402097667, "72"], +[-37.7797198, 175.24625625, "14"], +[-37.780484, 175.2455669, "33A"], +[-37.77947775, 175.2471686333, "5"], +[-37.7793543333, 175.2466880667, "8"], +[-37.7799470167, 175.2465108333, "13A"], +[-37.78057965, 175.24397705, "59B"], +[-37.7792250833, 175.2468675667, "6"], +[-37.78021845, 175.2447733833, "45"], +[-37.7799520667, 175.24595715, "18"], +[-37.77986655, 175.2448043333, "26"], +[-37.7796065833, 175.2464160333, "12"], +[-37.7796016833, 175.2447233667, "28A"], +[-37.7790941667, 175.2470411833, "4"], +[-37.7796591, 175.24487415, "28B"], +[-37.78037455, 175.2410451333, "64"], +[-37.7798083833, 175.2445754667, "28"], +[-37.7797719333, 175.24572675, "18B"], +[-37.7801031333, 175.2454200833, "20A"], +[-37.7800696, 175.2463491333, "15"], +[-37.77985625, 175.2455067833, "20B"], +[-37.7794011167, 175.2475128167, "3A"], +[-37.77997755, 175.2451519167, "22"], +[-37.7801891667, 175.2461960833, "17A"], +[-37.7797902333, 175.24512525, "24A"], +[-37.7798413833, 175.2470259333, "9"], +[-37.7798247833, 175.2452145167, "24B"], +[-37.780609, 175.2453009, "37A"], +[-37.7792303167, 175.2474647333, "1"], +[-37.7808711833, 175.2451670333, "35"], +[-37.78006955, 175.2458101833, "20"], +[-37.7794889167, 175.2465694167, "10"], +[-37.7799369833, 175.2450155333, "24"], +[-37.7811103833, 175.2450406833, "35B"], +[-37.7808522667, 175.2453189333, "31"], +[-37.7802657167, 175.2460972167, "17"], +[-37.7806900333, 175.2454095667, "33B"], +[-37.7800730667, 175.241561, "58"], +[-37.7805337833, 175.2456668667, "29"], +[-37.7798253167, 175.24667925, "11"], +[-37.7790116333, 175.2471894833, "2"], +[-37.7797243, 175.24683205, "9B"], +[-37.7804156, 175.2453396667, "37"], +[-37.7803339667, 175.2451022833, "39"], +[-37.7793371333, 175.2473311, "3"], +[-37.7808074167, 175.2409086667, "77"], +[-37.7803712333, 175.2422266333, "61"], +[-37.7800215667, 175.2421405167, "52"], +[-37.7800698667, 175.2424560667, "50"], +[-37.7792386167, 175.2477734833, "1C"], +[-37.7793393333, 175.24762585, "1B"], +[-37.7807168167, 175.2435784, "67B"], +[-37.78059315, 175.2434035833, "67A"], +[-37.7807434167, 175.24408, "63"], +[-37.7801884333, 175.2433574, "38A"], +[-37.7812337, 175.2407672667, "1/81-34/81"], +[-37.7797151167, 175.2428477667, "44A"], +[-37.7803910833, 175.2437615833, "59A"], +[-37.7804581167, 175.2408538667, "66"], +[-37.7808355667, 175.24027165, "70"], +[-37.7808913667, 175.24076945, "79B"], +[-37.7805824167, 175.2406629667, "68"], +[-37.7799059333, 175.24294945, "42"], +[-37.7798762667, 175.2433412333, "36B"], +[-37.7800194, 175.2436789833, "34A"], +[-37.7799515167, 175.2438538, "32"], +[-37.7798968833, 175.24402275, "30"], +[-37.7810344, 175.2405845333, "79"], +[-37.7801831, 175.2430714, "40"], +[-37.7799555667, 175.2431768, "38B"], +[-37.7801091667, 175.2435368667, "36A"], +[-37.7798038, 175.2435118667, "34B"], +[-37.7801141167, 175.2444113833, "49"], +[-37.7802623833, 175.2440191, "57"], +[-37.78012395, 175.2427823, "48A"], +[-37.7803390333, 175.24429645, "55"], +[-37.77977275, 175.2427645333, "46"], +[-37.7798694167, 175.2426504167, "46A"], +[-37.7796405167, 175.2430222167, "44B"], +[-37.78017705, 175.2445841167, "49A"], +[-37.7805075167, 175.2431186333, "69"], +[-37.7804735167, 175.2435574833, "65"], +[-37.7800193833, 175.2426700833, "48B"], +[-37.7807770667, 175.2443581167, "47"], +[-37.7804559833, 175.2428563667, "71"], +[-37.7805007167, 175.2446584167, "45B"], +[-37.780566, 175.2444935667, "45A"], +[-37.7809830167, 175.2446235167, "43"], +[-37.8056932167, 175.3254679833, "27A"], +[-37.8043953333, 175.3239855, "3"], +[-37.8053431833, 175.3248301667, "19"], +[-37.8047317833, 175.3243577167, "9A"], +[-37.8042900167, 175.3236169333, "2"], +[-37.8065882, 175.3249883167, "32"], +[-37.8058131667, 175.3253884333, "27"], +[-37.8060760167, 175.3257001833, "31"], +[-37.8049717667, 175.3243940833, "11"], +[-37.8059211167, 175.3260058, "33"], +[-37.8047253167, 175.32413685, "7A"], +[-37.8058889167, 175.3250080667, "20"], +[-37.8046132167, 175.3236422833, "6"], +[-37.8063844, 175.3250299167, "26A"], +[-37.80558305, 175.3253130833, "25A"], +[-37.8066252667, 175.3247281167, "30"], +[-37.80527715, 175.3242707167, "12"], +[-37.8062568333, 175.3248933833, "26B"], +[-37.8048733, 175.3242565, "9"], +[-37.8064955167, 175.32490745, "28"], +[-37.8049465333, 175.3246601, "13A"], +[-37.8063733167, 175.3260090167, "39"], +[-37.80601005, 175.3251539833, "22"], +[-37.8064231167, 175.3256348667, "38"], +[-37.8047747667, 175.3237313, "8A"], +[-37.8051008333, 175.3245365667, "13"], +[-37.8055754667, 175.32510615, "23"], +[-37.8066213667, 175.32626345, "43"], +[-37.8048321667, 175.3235314167, "8B"], +[-37.8067957167, 175.3256612833, "42"], +[-37.8045961833, 175.3242779833, "7B"], +[-37.8064546333, 175.3261156, "41"], +[-37.8062866667, 175.3254841333, "36"], +[-37.8065594333, 175.3258066833, "40"], +[-37.8061277667, 175.3252821667, "24"], +[-37.8071221833, 175.32626025, "49"], +[-37.8054606167, 175.3249698333, "21"], +[-37.80689545, 175.32597925, "44"], +[-37.8064814667, 175.3251487833, "34"], +[-37.8067659667, 175.3263053333, "47"], +[-37.8053887167, 175.3244185, "14"], +[-37.8070584167, 175.325935, "46"], +[-37.8045666833, 175.3233645333, "4A"], +[-37.8059488, 175.3255517, "29"], +[-37.8057002167, 175.32524965, "25"], +[-37.8062367167, 175.3259336667, "37"], +[-37.8049102333, 175.3238271833, "10"], +[-37.80522135, 175.3246794833, "15"], +[-37.8044669667, 175.3236201667, "4"], +[-37.8045455167, 175.3240262667, "5"], +[-37.8059871167, 175.3260661833, "35"], +[-37.7301728333, 175.2776357333, "1"], +[-37.7300234667, 175.2777123667, "3"], +[-37.7297851, 175.27785675, "7"], +[-37.7296736333, 175.2779538667, "9"], +[-37.7295791333, 175.2780448333, "11"], +[-37.7298434167, 175.2782059667, "10"], +[-37.7299149667, 175.2777780333, "5"], +[-37.72995935, 175.2780606167, "8"], +[-37.7302015667, 175.2779198167, "4"], +[-37.7303318333, 175.2778851333, "2"], +[-37.7300908333, 175.2779657167, "6"], +[-37.795291, 175.279285, "36"], +[-37.7943329, 175.2800838, "1A"], +[-37.7951791333, 175.2792131833, "34"], +[-37.7943634, 175.2796594833, "5"], +[-37.79441135, 175.2788084833, "22A-22F"], +[-37.7946793167, 175.27938175, "9"], +[-37.7942327333, 175.2791045, "1/16-5/16"], +[-37.7945287167, 175.28010785, "3B"], +[-37.7945384167, 175.2786423667, "24A"], +[-37.7944329333, 175.2799855333, "3A"], +[-37.7948796333, 175.2795842167, "1/11-10/11"], +[-37.7942235167, 175.2801033833, "1"], +[-37.7950826167, 175.2791619667, "32"], +[-37.7941589667, 175.2787078167, "20"], +[-37.7938820333, 175.28003085, "4A-4C"], +[-37.7944929833, 175.2788196167, "24"], +[-37.79507155, 175.2796376167, "13"], +[-37.7943081, 175.2789499833, "18"], +[-37.7946820833, 175.2789394833, "26"], +[-37.7948136833, 175.2790125167, "28"], +[-37.7938208667, 175.2801964, "2"], +[-37.7949423333, 175.2790835, "30"], +[-37.79428885, 175.2798698333, "3"], +[-37.7939302, 175.2798746, "6"], +[-37.7944343667, 175.2794855, "7"], +[-37.7939898167, 175.2797294833, "8"], +[-37.7940901, 175.2794184333, "10A-10J"], +[-37.7883879667, 175.2816957, "3"], +[-37.7885433333, 175.28145745, "7"], +[-37.7770083833, 175.2541890167, "43"], +[-37.7784718333, 175.2582088667, "6"], +[-37.7784031, 175.2572011333, "11"], +[-37.77828925, 175.2584044, "6A"], +[-37.7777425167, 175.2566163, "24"], +[-37.7790546333, 175.2580796667, "5A"], +[-37.7780053833, 175.2572188667, "16"], +[-37.77818075, 175.2576357333, "12"], +[-37.77828975, 175.2570196, "15"], +[-37.7775073, 175.2568561833, "22A"], +[-37.7778408167, 175.2574118, "16A"], +[-37.77718835, 175.25545325, "36"], +[-37.7778742167, 175.25601395, "23"], +[-37.7771072, 175.2552789, "38"], +[-37.7784984167, 175.2574097833, "9"], +[-37.7789302, 175.2584173667, "3A"], +[-37.7779414, 175.2561955, "21"], +[-37.7790873667, 175.25824935, "3"], +[-37.77776615, 175.2557999167, "25"], +[-37.7787731, 175.2580527333, "7"], +[-37.77809415, 175.25743365, "14"], +[-37.7781453, 175.2581221333, "8"], +[-37.7782136833, 175.2568261, "17"], +[-37.7773284, 175.2548329833, "35"], +[-37.7788494, 175.2581887667, "5"], +[-37.7772398167, 175.2546324333, "37"], +[-37.7782549667, 175.25783175, "10"], +[-37.77714975, 175.2544471167, "39"], +[-37.7783440167, 175.2580631167, "8A"], +[-37.7770741, 175.2543029, "41"], +[-37.7779214333, 175.2576403333, "14A"], +[-37.77696, 175.2549350333, "42"], +[-37.7764206667, 175.2547711167, "1/46A-12/46A"], +[-37.77793275, 175.2570512833, "18"], +[-37.7785075, 175.2584103, "4"], +[-37.7781422333, 175.2566539, "19"], +[-37.7776373833, 175.2564580833, "26"], +[-37.7775417667, 175.25625205, "28"], +[-37.77760085, 175.2554262667, "29"], +[-37.77784545, 175.2568519833, "20"], +[-37.77768545, 175.2556063, "27"], +[-37.7773543167, 175.2570238833, "22"], +[-37.7773618333, 175.2558577667, "32"], +[-37.7774246333, 175.2550255333, "33"], +[-37.7772638333, 175.2556624, "34"], +[-37.7770217667, 175.2550964167, "40"], +[-37.7785459333, 175.2587142333, "2"], +[-37.7774509167, 175.25605335, "30"], +[-37.7775119667, 175.2552321833, "31"], +[-37.77689425, 175.2547720167, "44"], +[-37.7783760667, 175.2567800833, "17A"], +[-37.7783443333, 175.2584733333, "4B"], +[-37.7767234667, 175.2543965667, "48"], +[-37.7768968333, 175.2539051, "47"], +[-37.7768054167, 175.2546079, "46"], +[-37.7769468167, 175.2540118, "45"], +[-37.7773633833, 175.25685025, "22B"], +[-37.7786307167, 175.2573967, "9B"], +[-37.77741665, 175.2546925333, "35B"], +[-37.7766555167, 175.2542379333, "50"], +[-37.7784857333, 175.2570838, "11A"], +[-37.7780132, 175.2577009, "12A"], +[-37.77778635, 175.2571921, "18B"], +[-37.7784390667, 175.2570040667, "15A"], +[-37.7781336833, 175.2579886, "10B"], +[-37.7586186333, 175.2501923833, "24"], +[-37.7592421, 175.2488537667, "6"], +[-37.7587064, 175.2490252667, "11"], +[-37.75894965, 175.2485746167, "7"], +[-37.75786175, 175.25072765, "31"], +[-37.7588020333, 175.2488439667, "9"], +[-37.7589872333, 175.2494245167, "1/14-8/14"], +[-37.7591081167, 175.2490887833, "1/12"], +[-37.7588093167, 175.2497459, "20"], +[-37.7590595, 175.2491935833, "12"], +[-37.75843285, 175.2496292, "21"], +[-37.7585080667, 175.2504219833, "26"], +[-37.7585151, 175.24943345, "19"], +[-37.7593657333, 175.2485938833, "4"], +[-37.75838605, 175.2506555333, "28"], +[-37.7587086167, 175.249983, "22"], +[-37.75796155, 175.2505387333, "29"], +[-37.75827255, 175.2508483667, "30"], +[-37.7581704833, 175.25102755, "32"], +[-37.7581996333, 175.2500568167, "25"], +[-37.7583296333, 175.249806, "23"], +[-37.7594964667, 175.2483172167, "2"], +[-37.7580629167, 175.2503358333, "27"], +[-37.7586046167, 175.2492344833, "17"], +[-37.7877158333, 175.2991897833, "1"], +[-37.7877114, 175.3006257167, "14"], +[-37.7872572833, 175.30115955, "21"], +[-37.7873579333, 175.30216535, "26"], +[-37.78734635, 175.3007287667, "17"], +[-37.7870553667, 175.3020511333, "27"], +[-37.78785955, 175.2999741333, "8"], +[-37.7876712667, 175.2994145667, "3"], +[-37.7876107167, 175.2996253167, "5"], +[-37.7875424333, 175.2992702667, "3A"], +[-37.78756285, 175.3012055333, "20"], +[-37.7867408333, 175.30335385, "39"], +[-37.78751075, 175.3000589167, "9"], +[-37.7877964167, 175.3009778167, "16B"], +[-37.7874626667, 175.30175985, "22"], +[-37.78668975, 175.3035417, "41"], +[-37.78745415, 175.3002801833, "11"], +[-37.7878080833, 175.3001721, "10"], +[-37.787167, 175.30163685, "23"], +[-37.7873111833, 175.3023849667, "28"], +[-37.7875575, 175.2998493167, "7"], +[-37.7870025, 175.30226, "29"], +[-37.7879063833, 175.3005357333, "12A"], +[-37.7872667667, 175.3026009833, "30"], +[-37.7874067167, 175.30050505, "15"], +[-37.7872183667, 175.3028253667, "32"], +[-37.7876507333, 175.3008380833, "16"], +[-37.7869532667, 175.3024821167, "31"], +[-37.7871115167, 175.30183535, "25"], +[-37.7871671333, 175.30303455, "34"], +[-37.7875964333, 175.3010593, "18"], +[-37.7869027167, 175.3027032333, "33"], +[-37.7877540333, 175.30039155, "12"], +[-37.7868463333, 175.3029295667, "35"], +[-37.7879704, 175.2995187167, "4"], +[-37.7871119833, 175.3032346, "36"], +[-37.7874135833, 175.3019413167, "24"], +[-37.7868035833, 175.3031439667, "37"], +[-37.7879181333, 175.2997470333, "6"], +[-37.7880242667, 175.2993046167, "2"], +[-37.7872938833, 175.3009458833, "19"], +[-37.78066265, 175.2308159167, "17"], +[-37.78005075, 175.2299657333, "2"], +[-37.7806072667, 175.2309833833, "15"], +[-37.7799756, 175.2303478833, "3"], +[-37.7798631, 175.23016355, "1"], +[-37.7801663833, 175.23014255, "4"], +[-37.7803688, 175.2309873833, "11"], +[-37.7808037167, 175.2306396667, "19"], +[-37.78038755, 175.2302380833, "6"], +[-37.7803011333, 175.23057385, "7"], +[-37.7809119333, 175.2302735333, "12"], +[-37.78047335, 175.2311061667, "13"], +[-37.78089535, 175.2304961667, "16"], +[-37.7801287167, 175.2304876, "5"], +[-37.7804588333, 175.2306248667, "9"], +[-37.7810700167, 175.2303171, "14"], +[-37.7805760167, 175.23027075, "8"], +[-37.7807683833, 175.2302652167, "10"], +[-37.74128755, 175.2375382833, "14"], +[-37.7412588167, 175.2376648333, "12"], +[-37.74109375, 175.23810935, "9"], +[-37.7412434, 175.2378108167, "10"], +[-37.7411379833, 175.2377989667, "13"], +[-37.7411094667, 175.2379808667, "11"], +[-37.7410239, 175.23861915, "3"], +[-37.7411542, 175.2384565, "6"], +[-37.7411156667, 175.2386390333, "4"], +[-37.7410720167, 175.2382933667, "7"], +[-37.74104905, 175.2384330833, "5"], +[-37.7411865167, 175.2382525333, "8"], +[-37.7410082167, 175.2387937833, "1"], +[-37.7411821333, 175.2375082833, "17"], +[-37.7411004833, 175.23880575, "2"], +[-37.7411576667, 175.23766585, "15"], +[-37.7466396333, 175.2899024167, "4"], +[-37.74649925, 175.2898275, "6"], +[-37.7465235333, 175.2896367667, "5"], +[-37.74683225, 175.2899024167, "2"], +[-37.7466374, 175.2895256667, "3"], +[-37.7467673667, 175.2896129833, "1"], +[-37.8070961833, 175.2603016167, "8"], +[-37.8065251333, 175.26106515, "3"], +[-37.80726935, 175.2609852167, "7"], +[-37.8063382833, 175.2606510167, "4"], +[-37.8072206167, 175.2604894167, "9"], +[-37.8068850833, 175.2609353, "5"], +[-37.8072931333, 175.2608324167, "11"], +[-37.8067438167, 175.2604937167, "6"], +[-37.8157629667, 175.3003062833, "38"], +[-37.8159021, 175.3006866167, "46A"], +[-37.81753355, 175.3026962667, "77"], +[-37.8135030333, 175.30205495, "3A"], +[-37.81619735, 175.30152425, "57"], +[-37.8137085167, 175.3018083, "3B"], +[-37.8159350333, 175.2998559167, "40B"], +[-37.8135656167, 175.3016642, "5B"], +[-37.8157384167, 175.30046525, "36"], +[-37.8133357167, 175.3018877167, "5A"], +[-37.8157894, 175.30013165, "38B"], +[-37.8134428833, 175.3015210333, "7B"], +[-37.8176956833, 175.3022554333, "68"], +[-37.8132055333, 175.3017466333, "7A"], +[-37.8168307167, 175.3018804833, "65"], +[-37.8127074, 175.30073705, "10B"], +[-37.8129860167, 175.30125335, "11"], +[-37.8129090167, 175.3008073333, "10A"], +[-37.8173511, 175.3024678667, "73"], +[-37.8133510167, 175.3012372833, "13"], +[-37.81595295, 175.2999732, "40A"], +[-37.8126761667, 175.3010948333, "8"], +[-37.8124144333, 175.3008747167, "6"], +[-37.8160115, 175.30149455, "55"], +[-37.8171030833, 175.3021485, "69"], +[-37.8163971833, 175.3008258667, "54"], +[-37.8172366333, 175.3023158833, "71"], +[-37.8131778333, 175.3011274, "13A"], +[-37.8146358167, 175.3018334, "41"], +[-37.8153125333, 175.30076555, "26"], +[-37.8175657333, 175.3020968167, "66"], +[-37.81546845, 175.3010616667, "30"], +[-37.8156483667, 175.3014708333, "51"], +[-37.8156635833, 175.3010543333, "32"], +[-37.8159191, 175.3010818833, "48"], +[-37.8157361, 175.3007306667, "34"], +[-37.8158255333, 175.3014708667, "53"], +[-37.8152671167, 175.3010575667, "24"], +[-37.8159040667, 175.3004705, "44"], +[-37.8150640333, 175.30102215, "22"], +[-37.8161012333, 175.3010942667, "50"], +[-37.8130435, 175.3015899333, "9B"], +[-37.8162573833, 175.3011415, "52"], +[-37.8128662, 175.3014139167, "9A"], +[-37.8147630833, 175.3013273667, "37"], +[-37.8131726667, 175.3014698333, "11A"], +[-37.8169764333, 175.3020148333, "67"], +[-37.8166843333, 175.3017393167, "63"], +[-37.8154297167, 175.3007111667, "28A"], +[-37.8165286667, 175.3016445, "61"], +[-37.81746375, 175.3025918167, "75"], +[-37.8166850667, 175.30090385, "60"], +[-37.81589995, 175.30026655, "42"], +[-37.8154061333, 175.3004861833, "28B"], +[-37.8146842, 175.3016018, "39"], +[-37.8121769667, 175.30085295, "4"], +[-37.8160967833, 175.3006885333, "46B"], +[-37.8164434167, 175.30119955, "56"], +[-37.8138690833, 175.3009241833, "19"], +[-37.8166420167, 175.3012958833, "62"], +[-37.8166064333, 175.3008828333, "58"], +[-37.8163686, 175.3015694833, "59"], +[-37.8127249167, 175.3016296, "1A"], +[-37.8125309, 175.3012754833, "2"], +[-37.8147538167, 175.3017367833, "43"], +[-37.8145461167, 175.30121815, "35"], +[-37.8149490667, 175.3014041167, "45"], +[-37.7826591167, 175.2209594667, "9"], +[-37.7824891167, 175.22097715, "7"], +[-37.7822574833, 175.2206463333, "6"], +[-37.78212495, 175.22108105, "3"], +[-37.7820820333, 175.22071, "4"], +[-37.7820038333, 175.2211753333, "1"], +[-37.7828166667, 175.2208779333, "12"], +[-37.78271925, 175.2207073667, "10"], +[-37.7822960333, 175.22100565, "5"], +[-37.7819472, 175.2208038333, "2"], +[-37.7824331833, 175.2205711167, "8"], +[-37.7372762833, 175.2822025833, "2"], +[-37.73740765, 175.2820819333, "4"], +[-37.7375517833, 175.2819564, "6"], +[-37.7377298667, 175.2816218667, "8"], +[-37.7376989333, 175.2812285167, "10"], +[-37.73775525, 175.2806585833, "12"], +[-37.7379431333, 175.2812685333, "7"], +[-37.73797385, 175.2808094167, "9"], +[-37.7376163, 175.28210215, "5"], +[-37.7375199833, 175.2822638667, "3"], +[-37.7373664667, 175.2823332333, "1"], +[-37.77628525, 175.3044455333, "1"], +[-37.8017595167, 175.2996367667, "1"], +[-37.80160295, 175.29987345, "2"], +[-37.8014908167, 175.3001298333, "3"], +[-37.8016622833, 175.30006555, "4"], +[-37.8018461833, 175.29980085, "5"], +[-37.7851657833, 175.3099191167, "23D"], +[-37.7849928667, 175.3101685, "25"], +[-37.7856340167, 175.3112992333, "16"], +[-37.7858368333, 175.3118176333, "10"], +[-37.7839532833, 175.3105564833, "38"], +[-37.7856994667, 175.3114561667, "14"], +[-37.7864033667, 175.3122850333, "1A"], +[-37.7862636833, 175.3119870333, "1/3-3/3"], +[-37.7860014, 175.3104458333, "15C"], +[-37.7845375333, 175.31013655, "1/31-4/31"], +[-37.7842341667, 175.3106043, "34"], +[-37.7857728667, 175.3116349167, "12"], +[-37.7858295167, 175.3106174, "15F"], +[-37.7852541, 175.3102391333, "21"], +[-37.7843805, 175.3101577333, "33A-33D"], +[-37.7861137833, 175.3125103333, "2"], +[-37.7846964833, 175.3101156667, "29A-29D"], +[-37.7859738667, 175.31214545, "6"], +[-37.7840788667, 175.3107892, "36A"], +[-37.78590115, 175.3119749, "8"], +[-37.7858480333, 175.3110081667, "13A-13D"], +[-37.7860392833, 175.3114569833, "7"], +[-37.78604855, 175.3123296833, "4"], +[-37.7859700667, 175.3112947167, "9"], +[-37.7840544833, 175.3105819, "36"], +[-37.7861107333, 175.3106067667, "15A"], +[-37.7858866333, 175.31056865, "15E"], +[-37.7860524667, 175.3106602833, "15B"], +[-37.7859515, 175.3105041667, "15D"], +[-37.7855151667, 175.3110301167, "1/20-9/20"], +[-37.7863615667, 175.3121850833, "1B"], +[-37.7848481167, 175.3101308167, "27A-27D"], +[-37.7858739333, 175.3110822167, "11A-11D"], +[-37.7851459667, 175.3100116833, "23C"], +[-37.7855373, 175.3115606833, "14A"], +[-37.78511175, 175.3101864333, "23A"], +[-37.7851286, 175.3101086333, "23B"], +[-37.7857300167, 175.31071805, "15H"], +[-37.7857807167, 175.3106731, "15G"], +[-37.7346192667, 175.2758343, "3"], +[-37.7337160667, 175.2770186333, "21"], +[-37.7344680333, 175.2757386667, "5"], +[-37.7338953, 175.27706985, "20"], +[-37.7339444833, 175.27665195, "17"], +[-37.7340561167, 175.27713745, "18"], +[-37.7339939833, 175.2764377167, "15"], +[-37.7345888833, 175.2762133333, "4"], +[-37.7338815333, 175.2768653167, "19"], +[-37.73423995, 175.2767467833, "10"], +[-37.73411055, 175.2760275667, "11"], +[-37.73419165, 175.2773347167, "16"], +[-37.7340389, 175.2762236833, "13"], +[-37.7342532833, 175.2769739167, "12"], +[-37.7342669167, 175.27718405, "14"], +[-37.7342760333, 175.2765266333, "8"], +[-37.7343824167, 175.2761725167, "6"], +[-37.7589513333, 175.3080684, "5"], +[-37.7596583667, 175.3082215, "17"], +[-37.7596245333, 175.3080127667, "14"], +[-37.7586503833, 175.3079246167, "1"], +[-37.75926335, 175.3082079333, "9"], +[-37.75955705, 175.3083365167, "13"], +[-37.7587958, 175.3079755667, "3"], +[-37.75898785, 175.3077189333, "4"], +[-37.7594502167, 175.30796845, "12"], +[-37.7591581167, 175.3078076167, "8"], +[-37.7597027167, 175.3084084833, "15"], +[-37.7588136333, 175.30764395, "2"], +[-37.7591071833, 175.3081473667, "7"], +[-37.75978995, 175.3080814833, "16"], +[-37.7593958667, 175.30826745, "11"], +[-37.7593214833, 175.3078776, "10"], +[-37.79529675, 175.2514834, "1A"], +[-37.7963019667, 175.2515625333, "6/7"], +[-37.7979561833, 175.2505536333, "31"], +[-37.7965139667, 175.2503524667, "14A"], +[-37.79729525, 175.2498405, "26A"], +[-37.79723025, 175.2509235, "21B"], +[-37.7970654667, 175.2508710167, "19"], +[-37.7966846333, 175.250532, "16"], +[-37.79764495, 175.2496877167, "34B"], +[-37.7971665667, 175.2499869333, "24A"], +[-37.7987672333, 175.2501751667, "33"], +[-37.7957034, 175.25088825, "2"], +[-37.7973702667, 175.2507651167, "23A"], +[-37.7983171, 175.2492544, "48C"], +[-37.7954471667, 175.2514336667, "1/1-4/1"], +[-37.7984677, 175.2498396667, "48"], +[-37.7959832333, 175.2507824167, "6"], +[-37.7962785167, 175.2514712833, "7G"], +[-37.7974291667, 175.250997, "23C"], +[-37.7972864167, 175.25115, "21D"], +[-37.7974016333, 175.2496041833, "30"], +[-37.7972567, 175.2510340333, "21C"], +[-37.7972874, 175.2496638167, "28"], +[-37.7983222667, 175.2499010667, "46"], +[-37.7983616667, 175.2494157333, "48B"], +[-37.7958177, 175.25084475, "1/4"], +[-37.7975017, 175.2507279667, "25"], +[-37.7960842167, 175.25153765, "4/7"], +[-37.7973831333, 175.2502661333, "26"], +[-37.79692535, 175.2509420667, "17A-17E"], +[-37.7971783167, 175.2492093, "28B"], +[-37.79567615, 175.2513583, "3"], +[-37.7955824333, 175.2513888, "1"], +[-37.7982036167, 175.2493347667, "44"], +[-37.7964636833, 175.2510910833, "11A"], +[-37.7964040333, 175.2506308, "12A"], +[-37.7962603667, 175.2506819667, "10"], +[-37.7963795333, 175.2505334, "12B"], +[-37.7978492833, 175.2496289833, "38B"], +[-37.79634925, 175.2504070167, "12C"], +[-37.7974085167, 175.2508702833, "23B"], +[-37.7963279667, 175.2502936667, "12D"], +[-37.7978247, 175.2504989333, "29"], +[-37.7955597333, 175.2509757167, "2A"], +[-37.7979689833, 175.2490529333, "42A"], +[-37.7964899833, 175.2512090167, "11B"], +[-37.7965414833, 175.2505810333, "14"], +[-37.7965145, 175.2513263333, "11C"], +[-37.7972387, 175.2503194333, "24"], +[-37.7965444833, 175.2514393, "11D"], +[-37.7972065833, 175.2508342667, "21A"], +[-37.79567425, 175.2516312833, "1C"], +[-37.79612215, 175.25073335, "8"], +[-37.7957110667, 175.2517245667, "1D"], +[-37.79769425, 175.2495012333, "36"], +[-37.7956330333, 175.2515111333, "1B"], +[-37.7960222833, 175.2504904667, "8A"], +[-37.7977513, 175.2501197, "34"], +[-37.7963462167, 175.2511690833, "9"], +[-37.7967479, 175.2509353, "15A"], +[-37.7960127833, 175.25124605, "1/7"], +[-37.7967681167, 175.25102495, "15B"], +[-37.7966339667, 175.2510556, "13"], +[-37.79679175, 175.2511276833, "15C"], +[-37.7961619667, 175.2504682667, "10B"], +[-37.7968276333, 175.25124195, "15D"], +[-37.79683175, 175.2505286, "18"], +[-37.7968490167, 175.2513464833, "15E"], +[-37.7978324667, 175.25080515, "29A"], +[-37.7957440333, 175.2505747167, "4D"], +[-37.7975930333, 175.2501726833, "32"], +[-37.7957696167, 175.2506661, "4C"], +[-37.7978901333, 175.2494405833, "40"], +[-37.7957941, 175.2507601, "4B"], +[-37.79766865, 175.2506637167, "27"], +[-37.79572155, 175.2504861167, "4E"], +[-37.7974632833, 175.2511150667, "23D"], +[-37.7962511667, 175.25136395, "8/7"], +[-37.7982246333, 175.2495072167, "46A"], +[-37.7962322333, 175.2512587667, "9/7"], +[-37.7971271, 175.2503526167, "22"], +[-37.7962058167, 175.2511746167, "10/7"], +[-37.7975613833, 175.2491917, "36A"], +[-37.79603895, 175.25134275, "2/7"], +[-37.7960608667, 175.2514410667, "3/7"], +[-37.7961062833, 175.2516288833, "7E"], +[-37.7981931833, 175.2500147, "42"], +[-37.7979475833, 175.25005345, "38"], +[-37.7292837667, 175.28581755, "1"], +[-37.72932275, 175.2855978833, "3"], +[-37.7294466, 175.2853855833, "5"], +[-37.7292482, 175.2853562167, "7"], +[-37.7291402833, 175.2852387333, "9"], +[-37.7289783333, 175.28511035, "8"], +[-37.7289554333, 175.2853396667, "6"], +[-37.72888615, 175.2855378167, "4"], +[-37.7290312667, 175.28577955, "2"], +[-37.7281114667, 175.2593555667, "1"], +[-37.7273245167, 175.26016325, "17"], +[-37.7278926167, 175.2596999, "5"], +[-37.7272925667, 175.25974825, "13"], +[-37.72810085, 175.2596500167, "3"], +[-37.7273406333, 175.2596023833, "11"], +[-37.7279833, 175.2601054833, "14"], +[-37.7275578833, 175.2597683, "9"], +[-37.7274102, 175.25993925, "15"], +[-37.7277077, 175.2597108333, "7"], +[-37.7272529667, 175.2603537, "19"], +[-37.7277312667, 175.2600972333, "16"], +[-37.7276447, 175.2603609167, "18"], +[-37.7275862, 175.2605744833, "20"], +[-37.7274233167, 175.2603933333, "21"], +[-37.7284075833, 175.2594105667, "4"], +[-37.7284116333, 175.2596488833, "6"], +[-37.7283443833, 175.2598508333, "8"], +[-37.7283668167, 175.2600727333, "10"], +[-37.7281786, 175.2600268333, "12"], +[-37.7799921833, 175.2600049833, "70A"], +[-37.7805891833, 175.25385815, "137B"], +[-37.7803373833, 175.2606298, "54"], +[-37.78035965, 175.2539025667, "137A"], +[-37.7805532667, 175.2566380333, "107"], +[-37.7798509333, 175.26205045, "36"], +[-37.7799051167, 175.2547823667, "128"], +[-37.7799354833, 175.2618883167, "38"], +[-37.7808081833, 175.2565672167, "107A"], +[-37.7803029333, 175.2611777, "50"], +[-37.780682, 175.26065455, "59"], +[-37.7807173167, 175.2612817667, "51"], +[-37.7807747333, 175.25975475, "73A"], +[-37.7804301833, 175.2609645833, "52"], +[-37.7806520667, 175.26045965, "61"], +[-37.7808048667, 175.2611026833, "53"], +[-37.7792096833, 175.2527729833, "156"], +[-37.7807915833, 175.25966855, "75A"], +[-37.7809589333, 175.2566411667, "105"], +[-37.780592, 175.25958525, "75"], +[-37.7803126333, 175.260545, "56"], +[-37.78027095, 175.2596121833, "74"], +[-37.7802453833, 175.25486755, "127"], +[-37.7799735333, 175.2589746833, "82B"], +[-37.7793878833, 175.25319755, "152A"], +[-37.7795861167, 175.25225145, "155"], +[-37.7803191667, 175.25905265, "82A"], +[-37.78069575, 175.2590282833, "81"], +[-37.7795412333, 175.2529860833, "152"], +[-37.7797888167, 175.254072, "138"], +[-37.7802134333, 175.25465265, "129"], +[-37.780123, 175.2539475167, "137"], +[-37.78025005, 175.2597993167, "72"], +[-37.7798326667, 175.2543591833, "136"], +[-37.7796719167, 175.2524437667, "153"], +[-37.77988155, 175.2546220667, "134"], +[-37.7803392833, 175.2588726167, "84"], +[-37.7801911333, 175.2544394, "133"], +[-37.7803755833, 175.2580405667, "92"], +[-37.7796475833, 175.2531967667, "150"], +[-37.7809580333, 175.2564058167, "105A"], +[-37.7797058, 175.25345, "146"], +[-37.7805691667, 175.2568689333, "103"], +[-37.7794277167, 175.2532660667, "150A"], +[-37.7810040167, 175.25750785, "91A"], +[-37.7797493167, 175.2537577, "142"], +[-37.7802217, 175.2599751667, "70"], +[-37.78010745, 175.2537604833, "141"], +[-37.780041, 175.2535045833, "143"], +[-37.7800015333, 175.25327545, "145"], +[-37.7798169, 175.2528631, "149"], +[-37.7797699833, 175.2526540833, "151"], +[-37.7794701833, 175.2527829833, "154"], +[-37.7810032167, 175.2590800667, "81A"], +[-37.7804970833, 175.2554510667, "119A"], +[-37.7792066833, 175.2521897333, "162"], +[-37.7792837833, 175.2523964, "160"], +[-37.779461, 175.2520243667, "161"], +[-37.7793732167, 175.2526083833, "158"], +[-37.7790033, 175.2522614, "162A"], +[-37.7807382333, 175.2556001833, "117"], +[-37.7793064667, 175.2516356333, "167"], +[-37.7794626833, 175.2515721333, "167A"], +[-37.7803494167, 175.2553374, "121"], +[-37.7790908333, 175.2520062167, "166"], +[-37.7793874167, 175.2517959167, "163"], +[-37.78042495, 175.2541335167, "135A"], +[-37.778991, 175.2517996667, "168"], +[-37.7788006167, 175.2519437167, "168A"], +[-37.77890345, 175.2515428333, "172"], +[-37.7792123833, 175.2514069, "169"], +[-37.7788914667, 175.25169475, "172A"], +[-37.77910135, 175.2511677333, "171"], +[-37.7795711, 175.2537063833, "142A"], +[-37.7804500333, 175.2543002167, "133A"], +[-37.78014765, 175.2541487667, "135"], +[-37.7793681333, 175.2513496667, "169A"], +[-37.78049525, 175.25624725, "111"], +[-37.7801032, 175.25278655, "149A"], +[-37.7789779, 175.2521324333, "166B"], +[-37.77966875, 175.2519993333, "161A"], +[-37.7804450833, 175.2559697833, "113"], +[-37.7801579333, 175.2562988167, "114"], +[-37.78108195, 175.2553074833, "119D"], +[-37.7803468667, 175.25556805, "119"], +[-37.7800334667, 175.2555238333, "120"], +[-37.7808456667, 175.25535465, "119C"], +[-37.78072305, 175.2553876667, "119B"], +[-37.7807980833, 175.2559516833, "111A"], +[-37.7805694, 175.2597588333, "73"], +[-37.7812663167, 175.25680425, "103C"], +[-37.7808845833, 175.2560383667, "111C"], +[-37.7810356167, 175.2568682, "103B"], +[-37.78073475, 175.2569076333, "103A"], +[-37.7802864167, 175.2550706167, "123"], +[-37.7803226167, 175.2592363833, "80"], +[-37.78069755, 175.2563887167, "109A"], +[-37.78051345, 175.2564282167, "109B"], +[-37.7806415167, 175.2591937333, "79"], +[-37.7806527167, 175.2561488833, "111B"], +[-37.7806159167, 175.25938225, "77"], +[-37.7802955333, 175.25942355, "76"], +[-37.7803818833, 175.2581810667, "88"], +[-37.78066105, 175.2557311167, "115A"], +[-37.7810895667, 175.2578329667, "1/91"], +[-37.78042335, 175.25577765, "115"], +[-37.7810640833, 175.2576665333, "2/91"], +[-37.7805778833, 175.2550667833, "123A"], +[-37.7806335667, 175.2551815, "121A"], +[-37.78064065, 175.2573011, "99"], +[-37.7806576333, 175.2574834, "97"], +[-37.7806886833, 175.2576511333, "95"], +[-37.78096515, 175.2572026333, "99A"], +[-37.7797059667, 175.2609216, "62"], +[-37.7801957, 175.2601657167, "68"], +[-37.7800646333, 175.2605039667, "66A"], +[-37.7808156833, 175.2602873667, "63"], +[-37.7805116667, 175.2600157, "67"], +[-37.78021245, 175.2603436667, "66"], +[-37.77989305, 175.2606779, "64"], +[-37.7805271333, 175.2602543833, "65"], +[-37.7807050167, 175.2601167333, "67A"], +[-37.77997015, 175.2593636833, "76A"], +[-37.7797995, 175.2614716333, "42A"], +[-37.7796846833, 175.2613609667, "42B"], +[-37.7806058, 175.26145995, "49"], +[-37.7798035167, 175.2610585833, "2/58"], +[-37.7808195167, 175.2618938667, "47A"], +[-37.7799897167, 175.2608288833, "1/58"], +[-37.7807326333, 175.25868925, "85"], +[-37.7807084, 175.2588329333, "83"], +[-37.7809908833, 175.2589082667, "83A"], +[-37.7801476667, 175.2614890667, "46"], +[-37.7804162167, 175.26181555, "43"], +[-37.7803048, 175.2619827667, "41"], +[-37.7796493167, 175.2603520333, "68A"], +[-37.7796779, 175.2601648, "68C"], +[-37.77991425, 175.2601548667, "68B"], +[-37.7800909333, 175.26163, "44"], +[-37.7809177667, 175.26169125, "49A"], +[-37.78022845, 175.2613410167, "48"], +[-37.7805123667, 175.2616504, "47"], +[-37.7797795333, 175.26096705, "60"], +[-37.7784687833, 175.2643646333, "1"], +[-37.7795943167, 175.2633287167, "21"], +[-37.7798582167, 175.26279775, "29"], +[-37.7797862333, 175.26293975, "27"], +[-37.7807308167, 175.2580543667, "89"], +[-37.7801298333, 175.2580254833, "92A"], +[-37.7801179333, 175.2576753333, "96"], +[-37.7802788, 175.2575871, "96A"], +[-37.7796831333, 175.26313855, "23"], +[-37.7801015167, 175.2623635, "35"], +[-37.78021545, 175.2621975167, "39"], +[-37.7799588333, 175.2618383833, "40"], +[-37.780518, 175.26215455, "41B"], +[-37.7797260333, 175.2622489, "32"], +[-37.780732, 175.2578309667, "93"], +[-37.78032395, 175.2578156333, "94"], +[-37.77993695, 175.2530436833, "147A"], +[-37.7800966333, 175.2529193333, "147B"], +[-37.78014335, 175.25316385, "145A"], +[-37.7801878, 175.2535053167, "143A"], +[-37.7802490667, 175.2537681167, "141A"], +[-37.78058465, 175.2541693, "135B"], +[-37.78117065, 175.2569701333, "101B"], +[-37.7811725, 175.2574916, "91B"], +[-37.78091495, 175.2570380333, "101A"], +[-37.7806014167, 175.2570861167, "101"], +[-37.78692815, 175.2810904667, "7"], +[-37.7871717833, 175.2807249833, "10"], +[-37.7870266833, 175.2811819, "11"], +[-37.7872442833, 175.2813468667, "19"], +[-37.7715304667, 175.2888649833, "64"], +[-37.77135185, 175.2895454, "72"], +[-37.7723383667, 175.2850238, "14"], +[-37.7713058, 175.2897314167, "74"], +[-37.7716063667, 175.2884501667, "60"], +[-37.7713946333, 175.2893601333, "70"], +[-37.7710153167, 175.2909846333, "88"], +[-37.77143125, 175.2892347333, "68"], +[-37.77198865, 175.2843187, "9A"], +[-37.7711461, 175.2904009333, "82"], +[-37.77162955, 175.2882312667, "56"], +[-37.7712620667, 175.2899305333, "76"], +[-37.77127735, 175.2885739667, "57"], +[-37.7712166167, 175.2901036833, "78"], +[-37.77148455, 175.2890365333, "66"], +[-37.7711567, 175.2892224, "65"], +[-37.7725833167, 175.2850947833, "14A"], +[-37.7711736, 175.2902396833, "80"], +[-37.7713536, 175.2881185667, "55"], +[-37.7709536833, 175.2912068667, "90"], +[-37.77157845, 175.2886438667, "62"], +[-37.7710664, 175.29079345, "86"], +[-37.7711023833, 175.2905886833, "84"], +[-37.7723216333, 175.2838212667, "1"], +[-37.7722229833, 175.28424345, "7"], +[-37.7723821333, 175.2855706833, "28B"], +[-37.7712510833, 175.28883295, "61"], +[-37.77110665, 175.2893908667, "69"], +[-37.7713182667, 175.28835595, "59"], +[-37.77260285, 175.2841208333, "2A"], +[-37.7716790333, 175.2890962167, "66A"], +[-37.77162625, 175.2893304, "68A"], +[-37.7717381833, 175.2893642833, "68B"], +[-37.7718035333, 175.2891340833, "66B"], +[-37.7721376833, 175.2867783333, "36A"], +[-37.7719221667, 175.28491965, "13A"], +[-37.7726669333, 175.28379665, "2"], +[-37.7722765667, 175.2840393667, "5"], +[-37.7724974833, 175.2844543833, "6"], +[-37.7721649833, 175.2844897, "9"], +[-37.7720273833, 175.2850668167, "13"], +[-37.7722788333, 175.2853741, "16"], +[-37.7721754667, 175.2859234667, "30"], +[-37.77195345, 175.2853773667, "27"], +[-37.7722285, 175.2856194333, "28"], +[-37.7721036333, 175.2862169, "32"], +[-37.7717888, 175.2860461167, "33"], +[-37.7720360833, 175.2865151833, "34"], +[-37.77173335, 175.28629825, "35"], +[-37.7719591167, 175.2868035833, "36"], +[-37.7718868333, 175.2870968833, "38"], +[-37.7716706167, 175.2865771833, "43"], +[-37.7715459, 175.2868889, "45A"], +[-37.7715954333, 175.2869065667, "45"], +[-37.7715303833, 175.28718945, "47"], +[-37.7719484833, 175.2875370833, "50A"], +[-37.7718233167, 175.2873849333, "50"], +[-37.7714613833, 175.2874898667, "51"], +[-37.7717499, 175.2876942167, "52"], +[-37.7713862167, 175.2877864, "53"], +[-37.7716871167, 175.287995, "54A"], +[-37.77181355, 175.2881486667, "54B"], +[-37.7714179, 175.2874760833, "51A"], +[-37.7712057333, 175.2890265, "63"], +[-37.77100105, 175.2898650333, "77"], +[-37.7708999667, 175.2902660333, "81"], +[-37.7708482833, 175.2904678, "83"], +[-37.7708126333, 175.29064775, "85"], +[-37.7707677667, 175.2908314, "89"], +[-37.77094635, 175.2900843167, "79"], +[-37.7705896, 175.2915975333, "93A"], +[-37.7707249167, 175.2910313, "91"], +[-37.7706605667, 175.2912796833, "93B"], +[-37.7725693, 175.2847177, "10"], +[-37.7724186833, 175.2847439, "10A"], +[-37.7721102667, 175.28469945, "11A"], +[-37.7719051, 175.2847812333, "11B"], +[-37.7708927833, 175.291523, "92"], +[-37.7710373167, 175.2897085333, "73"], +[-37.7710647333, 175.2895680833, "71"], +[-37.7715731167, 175.2863671667, "35A"], +[-37.7724543, 175.2852459833, "16A"], +[-37.8016780667, 175.2937054833, "48A"], +[-37.79668, 175.29146005, "125"], +[-37.8028891833, 175.2936980667, "29"], +[-37.7965714833, 175.2914203167, "127"], +[-37.80253105, 175.2940311333, "34"], +[-37.8009014, 175.2935976667, "62B"], +[-37.80186075, 175.2937767, "44A"], +[-37.80081835, 175.2938520833, "62C"], +[-37.80064555, 175.2937579667, "66A-66D"], +[-37.8034857167, 175.2935697, "23"], +[-37.8010622333, 175.29348245, "60A-60C"], +[-37.8033334333, 175.2938806333, "21"], +[-37.8016496, 175.2948747333, "44D"], +[-37.8031330167, 175.2935819167, "25A"], +[-37.8026647667, 175.29406545, "32"], +[-37.8030949167, 175.2937830167, "25"], +[-37.80176375, 175.294377, "44C"], +[-37.8031487333, 175.2934070667, "27"], +[-37.8015279833, 175.2936588167, "52A"], +[-37.79834145, 175.2925971167, "88D"], +[-37.7980706667, 175.2923939, "94A"], +[-37.79920215, 175.2916305167, "83"], +[-37.8014559167, 175.29471625, "46B"], +[-37.7970647667, 175.2926101333, "108"], +[-37.8035007833, 175.2949886333, "10"], +[-37.7977830667, 175.2918294, "109"], +[-37.80352955, 175.2943762, "12A"], +[-37.803264, 175.2945641, "16"], +[-37.8008926667, 175.2934155333, "62A"], +[-37.8019448333, 175.2933552167, "41"], +[-37.80222865, 175.2934780833, "37"], +[-37.8020177667, 175.29384325, "42"], +[-37.8015133833, 175.2939697667, "52"], +[-37.801838, 175.2933665, "43"], +[-37.8026951667, 175.29363195, "31"], +[-37.7972041333, 175.2925134, "6/106"], +[-37.8032338167, 175.2951289, "14"], +[-37.8005454167, 175.29284745, "61"], +[-37.8016435333, 175.2938650667, "48B"], +[-37.797498, 175.29274525, "100"], +[-37.80150555, 175.2945213833, "46A"], +[-37.7969968667, 175.2915577, "121"], +[-37.8018184333, 175.2940979, "44B"], +[-37.7971445, 175.2915942833, "119"], +[-37.8034423167, 175.2943442, "12"], +[-37.7994362833, 175.2917054667, "83A"], +[-37.8037146333, 175.2950796167, "6A"], +[-37.79790485, 175.2919149833, "107"], +[-37.8012880167, 175.2935606167, "1/56-7/56"], +[-37.7980819, 175.29165635, "105"], +[-37.8041216, 175.2945916167, "2"], +[-37.79750255, 175.2917420667, "113"], +[-37.7974301667, 175.2927206333, "1/100-3/100"], +[-37.7967270167, 175.2927461167, "116A"], +[-37.7995399833, 175.2919266667, "83B"], +[-37.7993989333, 175.2918623167, "81A"], +[-37.7968745333, 175.2929442667, "110A"], +[-37.7969622667, 175.2925801333, "110"], +[-37.7970252667, 175.29203355, "112"], +[-37.7976531333, 175.2917860833, "111"], +[-37.79726935, 175.2916532, "117"], +[-37.79737525, 175.29169925, "115"], +[-37.7966927333, 175.2924485333, "116"], +[-37.7966405667, 175.29294635, "116C"], +[-37.7981942833, 175.2927477667, "1/90C-8/90C"], +[-37.7965824333, 175.2924260833, "118"], +[-37.7979725, 175.2928674333, "92B"], +[-37.7979871167, 175.2927645833, "92A"], +[-37.7981220333, 175.2924116667, "94B"], +[-37.7980757167, 175.2926154167, "92"], +[-37.7963799167, 175.2917395333, "124"], +[-37.8031859, 175.29315925, "27A"], +[-37.8037127833, 175.2944420833, "8A"], +[-37.8036116, 175.2947546, "8"], +[-37.8032475, 175.2942588, "18"], +[-37.80383495, 175.2948785667, "4A"], +[-37.80361455, 175.2954967333, "6C"], +[-37.7967942833, 175.2915023, "123B"], +[-37.7968729833, 175.2915185833, "123A"], +[-37.7981077667, 175.2920232667, "103"], +[-37.7986686, 175.2927339667, "86C"], +[-37.7963966167, 175.2913783167, "129"], +[-37.79648605, 175.2918218667, "122A-122D"], +[-37.8037069, 175.2938201833, "15A"], +[-37.8037607, 175.29358805, "13"], +[-37.8032696333, 175.2949086167, "14A"], +[-37.8036020167, 175.2939842833, "15"], +[-37.80368095, 175.29316275, "17"], +[-37.804258, 175.2942210667, "1"], +[-37.8030057333, 175.2947688167, "20"], +[-37.8029580667, 175.2941710667, "24"], +[-37.7972936833, 175.29210485, "2/106"], +[-37.79707415, 175.2929884833, "2/108"], +[-37.7963990167, 175.29264145, "2/118A"], +[-37.79637655, 175.2928658833, "2/118B"], +[-37.7971365333, 175.29227055, "3/106"], +[-37.7970472833, 175.2931156833, "3/108"], +[-37.8041024667, 175.2941407333, "3"], +[-37.8039397333, 175.2945486167, "4"], +[-37.8020876333, 175.2934298667, "39"], +[-37.80212625, 175.2938875833, "40"], +[-37.8014739667, 175.2932312667, "47"], +[-37.80137005, 175.2931905167, "49"], +[-37.80124985, 175.2931576667, "51"], +[-37.8011225667, 175.29306, "53"], +[-37.8009743667, 175.29299655, "55"], +[-37.7972461333, 175.2923239833, "4/106"], +[-37.79709165, 175.29246245, "5/106"], +[-37.8040890333, 175.2936719333, "5"], +[-37.8039379333, 175.2941045833, "7"], +[-37.8008427167, 175.2929687333, "57"], +[-37.8006804167, 175.2928966, "59"], +[-37.8004161667, 175.2928039333, "63"], +[-37.80073145, 175.2933683333, "66"], +[-37.8005803167, 175.2932928333, "70"], +[-37.8002781167, 175.2927554, "65"], +[-37.7999476333, 175.2930648167, "74B"], +[-37.7997824, 175.2929970667, "76"], +[-37.8001313833, 175.2927033833, "67"], +[-37.7994331, 175.2924736667, "73"], +[-37.7993064333, 175.2924096, "75"], +[-37.800098, 175.29311045, "74A"], +[-37.7991648667, 175.29235425, "77"], +[-37.7991533167, 175.29194795, "81"], +[-37.7990257167, 175.2918801333, "85"], +[-37.7985591667, 175.2925436333, "86A"], +[-37.7986950167, 175.2925866, "86B"], +[-37.80378895, 175.2940395833, "9"], +[-37.7987425833, 175.2918055333, "91"], +[-37.79864675, 175.2917534833, "93"], +[-37.7979366167, 175.2923537167, "94"], +[-37.7984938333, 175.29213965, "95"], +[-37.8029176333, 175.2950362833, "22"], +[-37.8036593167, 175.295324, "6B"], +[-37.7980408167, 175.2928881167, "92C"], +[-37.7973945, 175.2921479333, "104A"], +[-37.7973738667, 175.2922463667, "104B"], +[-37.7973581167, 175.2923332833, "104C"], +[-37.7973352667, 175.2924315833, "104D"], +[-37.7973161333, 175.29251835, "104E"], +[-37.79872845, 175.2921726667, "89"], +[-37.7971869, 175.2920648667, "1/106"], +[-37.7984569167, 175.2925590333, "88A"], +[-37.7966500833, 175.2918910333, "1/120-6/120"], +[-37.7970968167, 175.29285205, "1/108"], +[-37.7968634833, 175.29198445, "1/114-4/114"], +[-37.7982925, 175.29250205, "88C"], +[-37.7988955, 175.2922380833, "87"], +[-37.7964788, 175.29289895, "1/118B"], +[-37.79651055, 175.2926570667, "1/118A"], +[-37.79837865, 175.29247675, "88B"], +[-37.79733685, 175.2927062833, "102"], +[-37.7972200167, 175.2931761167, "102A"], +[-37.7982066333, 175.2920524167, "101"], +[-37.7978195333, 175.2923138333, "96"], +[-37.7983514333, 175.29207955, "97"], +[-37.7976081667, 175.292253, "98"], +[-37.7910745333, 175.2474726167, "9"], +[-37.79157585, 175.2471865167, "17"], +[-37.7913225833, 175.2469952333, "12"], +[-37.7912258167, 175.2474674333, "11"], +[-37.7913612333, 175.24741635, "13"], +[-37.791605, 175.24680925, "23"], +[-37.7903692333, 175.2471936, "2"], +[-37.7905350333, 175.2471282833, "4"], +[-37.7906164833, 175.2474914667, "3"], +[-37.790748, 175.2474636833, "5"], +[-37.7910801833, 175.2470914167, "10"], +[-37.7909258, 175.2474656333, "7"], +[-37.7904772333, 175.2475355667, "1"], +[-37.7906802833, 175.2471147833, "6"], +[-37.7913963833, 175.2467424833, "18"], +[-37.7909079333, 175.247105, "8"], +[-37.7903068333, 175.2475837333, "1A"], +[-37.7913664333, 175.2467981667, "14"], +[-37.7917711667, 175.2471249333, "19"], +[-37.7914861833, 175.24732585, "15"], +[-37.7915157667, 175.2467727167, "25"], +[-37.7916160833, 175.2469287833, "21"], +[-37.72660105, 175.2547583333, "1"], +[-37.7264506, 175.2549397167, "3"], +[-37.7267596167, 175.25551565, "10"], +[-37.7269987333, 175.2559088667, "26"], +[-37.72680385, 175.2549139, "4"], +[-37.7263352167, 175.2555703833, "34"], +[-37.72704385, 175.2554296, "12"], +[-37.7272015, 175.2550984167, "14"], +[-37.7272803333, 175.2551305333, "16"], +[-37.72718075, 175.2553996167, "18"], +[-37.7272035333, 175.2555736333, "20"], +[-37.7271677333, 175.25577605, "22"], +[-37.7270944667, 175.2558660667, "24"], +[-37.7268620333, 175.25586995, "28"], +[-37.72666315, 175.2558096667, "30"], +[-37.72649175, 175.2557118833, "32"], +[-37.72671265, 175.2551255, "6"], +[-37.72653005, 175.2552678167, "8"], +[-37.7256488167, 175.2546991333, "11"], +[-37.7261453333, 175.25498805, "5"], +[-37.7258092833, 175.2548081, "9"], +[-37.7253548, 175.2546407167, "17"], +[-37.7253246667, 175.2548876167, "21"], +[-37.7253159, 175.25475475, "19"], +[-37.7255023667, 175.2545878, "13"], +[-37.7254641167, 175.2550101333, "23"], +[-37.7253714333, 175.2543876833, "15"], +[-37.7256430667, 175.2550995, "25"], +[-37.72598815, 175.2549031333, "7"], +[-37.7258081, 175.2552027833, "27"], +[-37.7259825, 175.2552775667, "29"], +[-37.7261333, 175.2553944833, "31"], +[-37.7249143167, 175.2368526167, "6"], +[-37.7247263167, 175.2377803333, "1"], +[-37.7250004167, 175.2365113667, "7"], +[-37.7250969833, 175.2373518667, "3"], +[-37.7252132333, 175.2361864167, "8"], +[-37.724634, 175.2374906833, "10"], +[-37.72509055, 175.2371977667, "4"], +[-37.7247526667, 175.2371958333, "9"], +[-37.7249206, 175.2370127333, "5"], +[-37.7248558667, 175.23754015, "2"], +[-37.7525891833, 175.2932121333, "1"], +[-37.7526366167, 175.2928805833, "3"], +[-37.7522156167, 175.29312575, "4"], +[-37.7524797667, 175.29295025, "5"], +[-37.7523146667, 175.2929734333, "6"], +[-37.8178755167, 175.30311595, "201"], +[-37.8236346667, 175.2975104, "83"], +[-37.8191452833, 175.3014208333, "15"], +[-37.82381445, 175.2976073167, "87"], +[-37.8183689333, 175.3018064333, "8"], +[-37.8237776667, 175.2974254667, "89"], +[-37.8245193167, 175.2974845333, "97"], +[-37.8211551333, 175.29961735, "45"], +[-37.8237006, 175.2976739667, "85"], +[-37.8182005167, 175.30255085, "3"], +[-37.8246753667, 175.2969066, "99"], +[-37.8184617667, 175.3022281333, "7"], +[-37.8187324667, 175.3013569833, "14"], +[-37.8185979833, 175.3020687833, "9"], +[-37.8248542667, 175.2968485167, "101"], +[-37.81872445, 175.30190375, "11"], +[-37.8186064167, 175.3015081667, "12"], +[-37.8188718167, 175.3017517833, "13"], +[-37.8180911167, 175.3021484333, "4"], +[-37.8200672667, 175.3008765667, "27"], +[-37.82093285, 175.2987066, "50"], +[-37.8202108167, 175.3001401667, "29"], +[-37.81849005, 175.3016612333, "10"], +[-37.8199958667, 175.3004113167, "29A"], +[-37.8180816167, 175.30336665, "205"], +[-37.8197822167, 175.3006536, "25"], +[-37.8182392167, 175.3019752833, "6"], +[-37.8206100833, 175.2996597167, "39"], +[-37.8235186167, 175.2971211167, "80"], +[-37.8250193333, 175.2962517333, "96"], +[-37.82517215, 175.2961661, "98"], +[-37.8199264, 175.30504865, "230"], +[-37.8221475667, 175.2981217167, "61"], +[-37.82346535, 175.2976029333, "81"], +[-37.8227429333, 175.2983567833, "65-71"], +[-37.8183917167, 175.3031243833, "206"], +[-37.8187322667, 175.3043109333, "215"], +[-37.82004235, 175.3060368833, "237"], +[-37.8201961167, 175.3062571, "239"], +[-37.8188659167, 175.3012070667, "16"], +[-37.8192690833, 175.3012569667, "17"], +[-37.8189874333, 175.3010572833, "18"], +[-37.8193989, 175.3011096167, "19"], +[-37.8180718833, 175.3027024, "1"], +[-37.8191006, 175.3009072667, "20"], +[-37.8198933, 175.30001815, "32"], +[-37.8195268833, 175.3009486, "21"], +[-37.8190482833, 175.30059825, "22"], +[-37.8196545, 175.30080385, "23"], +[-37.8192887333, 175.3006824, "24"], +[-37.8195778667, 175.3003008333, "26"], +[-37.8179425333, 175.3023166667, "2"], +[-37.8200165167, 175.2998414833, "34"], +[-37.82035375, 175.2999719667, "35"], +[-37.8201227833, 175.2997144667, "36"], +[-37.8204785167, 175.2998171833, "37"], +[-37.8203517167, 175.2994408, "40"], +[-37.8207346333, 175.2995162167, "41"], +[-37.8204745, 175.2992841833, "42"], +[-37.82086055, 175.2994137667, "43"], +[-37.8205970833, 175.2991375667, "44"], +[-37.8207036167, 175.2990003167, "46"], +[-37.8208104167, 175.2988430833, "48"], +[-37.8202297, 175.2995573, "38"], +[-37.82231935, 175.29752985, "66"], +[-37.82213705, 175.2975723167, "64"], +[-37.8219759, 175.2976153833, "62"], +[-37.8226657333, 175.2974533333, "70"], +[-37.8200600667, 175.3005017667, "29B"], +[-37.82014655, 175.3004061, "29C"], +[-37.8224976, 175.2974962333, "68"], +[-37.8179978833, 175.30324425, "203"], +[-37.81821605, 175.3035178833, "207"], +[-37.8230116333, 175.2973809667, "74"], +[-37.8229553833, 175.2978119833, "73"], +[-37.82257075, 175.2979326, "63"], +[-37.8200702833, 175.3003155833, "29D"], +[-37.81833155, 175.3023918833, "5"], +[-37.8228444333, 175.2974108333, "72"], +[-37.8215546, 175.2979444, "56"], +[-37.8218275667, 175.2977030167, "60"], +[-37.8216893667, 175.2978257167, "58"], +[-37.8240095, 175.2972677667, "91"], +[-37.8233637667, 175.2972197667, "78"], +[-37.8234276, 175.2981945167, "77"], +[-37.8231831167, 175.2973198167, "76"], +[-37.8231203833, 175.2977682167, "75"], +[-37.8242843167, 175.2966673, "86"], +[-37.8241345333, 175.29678025, "84"], +[-37.8245825667, 175.2965048333, "90"], +[-37.8244300333, 175.2965768833, "88"], +[-37.8254628167, 175.2960215, "102"], +[-37.8247244, 175.2964279, "92"], +[-37.8253175667, 175.2960892667, "100"], +[-37.8241709167, 175.2971868, "93"], +[-37.8243374167, 175.2971026167, "95"], +[-37.8248700167, 175.2963420167, "94"], +[-37.8256164833, 175.2959485667, "104"], +[-37.8250417833, 175.29673245, "103"], +[-37.8204143, 175.30573445, "238"], +[-37.8252438167, 175.2966242667, "105"], +[-37.8256762, 175.2970861, "109"], +[-37.8254219, 175.2965375333, "107"], +[-37.8206227, 175.3059641833, "240"], +[-37.7810995, 175.2201131, "2"], +[-37.7808029667, 175.21935305, "18"], +[-37.780979, 175.2199534167, "4"], +[-37.7810472, 175.21906075, "19"], +[-37.7812746333, 175.2198300167, "3"], +[-37.7809111167, 175.2192179667, "21"], +[-37.78128045, 175.2190854333, "11"], +[-37.7813254, 175.2193582, "7"], +[-37.7808828667, 175.2197924667, "6"], +[-37.7811547333, 175.21963565, "5"], +[-37.7806302333, 175.2199520667, "8"], +[-37.78140415, 175.2186335, "13"], +[-37.7812833167, 175.2187160167, "15"], +[-37.7811652167, 175.2188913333, "17"], +[-37.7813513167, 175.2192089333, "9"], +[-37.7805270833, 175.2198581833, "10"], +[-37.7804284333, 175.2197550833, "12"], +[-37.7805090833, 175.21960345, "14"], +[-37.7806538167, 175.2194753167, "16"], +[-37.7812719, 175.3107724833, "14"], +[-37.7808300167, 175.3102300167, "19"], +[-37.7807572833, 175.3107624667, "25"], +[-37.7809111167, 175.3107555333, "20"], +[-37.781156, 175.3108024833, "16"], +[-37.7811018, 175.3094597833, "7"], +[-37.7813938, 175.3094599, "3"], +[-37.7809354333, 175.3093331833, "9"], +[-37.7808110333, 175.3104012167, "21"], +[-37.7810224, 175.3107616833, "18"], +[-37.7807726833, 175.3105790333, "23"], +[-37.7807774, 175.3109011, "27"], +[-37.78111125, 175.31001195, "6"], +[-37.7811324667, 175.3098262833, "4"], +[-37.7810951333, 175.3105922833, "12"], +[-37.7808473, 175.3100490667, "17"], +[-37.7812268333, 175.3094518833, "5"], +[-37.78110095, 175.3104085333, "10"], +[-37.7810995333, 175.31020275, "8"], +[-37.7809273, 175.3095362167, "11"], +[-37.7808605833, 175.30987525, "15"], +[-37.7808817833, 175.3096896, "13"], +[-37.7850531333, 175.2532568167, "8A"], +[-37.78548535, 175.2539179667, "1/21-17/21"], +[-37.7846599333, 175.2528552167, "2"], +[-37.7849153333, 175.2532789333, "8"], +[-37.7851657167, 175.25322855, "8B"], +[-37.7852082167, 175.2537509333, "19"], +[-37.7855042167, 175.2531065167, "8E"], +[-37.7843137333, 175.2530154667, "5"], +[-37.7853869667, 175.2531559333, "8D"], +[-37.7847942167, 175.2537515667, "15"], +[-37.7852656667, 175.2531972167, "8C"], +[-37.78445605, 175.25348855, "11"], +[-37.7842025833, 175.2525327833, "1"], +[-37.7888280667, 175.2387672167, "12"], +[-37.7885562, 175.23863515, "18"], +[-37.78891085, 175.2375828833, "11"], +[-37.7883546667, 175.2377238, "19"], +[-37.7885916833, 175.2390184333, "10B"], +[-37.788469, 175.2376868, "17"], +[-37.7888104833, 175.2376114333, "13"], +[-37.78877445, 175.23830935, "16"], +[-37.7886435333, 175.2378363, "15"], +[-37.7885946833, 175.2382137333, "20"], +[-37.788914, 175.2385208833, "14"], +[-37.7882892667, 175.2378819333, "21"], +[-37.78875305, 175.2390373667, "10A"], +[-37.7884714, 175.2381602667, "22"], +[-37.7883220667, 175.2380942667, "24"], +[-37.7881807, 175.2380267333, "26"], +[-37.7893268333, 175.2381890833, "3"], +[-37.7890958667, 175.2385209333, "4"], +[-37.7891860667, 175.2380926167, "5"], +[-37.7889372667, 175.2388065333, "6"], +[-37.78904815, 175.23803095, "7"], +[-37.78882725, 175.2390911, "8"], +[-37.78886655, 175.2379331167, "9"], +[-37.7281613167, 175.2763769333, "2"], +[-37.7274285167, 175.27533825, "16"], +[-37.7281197, 175.2762353167, "4"], +[-37.7281426667, 175.2753295, "13"], +[-37.72776955, 175.2750804, "19"], +[-37.7275541333, 175.2753956167, "14"], +[-37.7276891833, 175.27540545, "12"], +[-37.72787505, 175.2754962333, "10"], +[-37.7278885833, 175.2751481833, "17"], +[-37.7280306667, 175.2752300333, "15"], +[-37.7282453333, 175.2754739333, "11"], +[-37.7283306667, 175.2755404333, "9"], +[-37.7283730667, 175.2761407333, "3"], +[-37.7285260167, 175.2755922833, "7A"], +[-37.7283323, 175.275969, "5"], +[-37.7283026167, 175.2757736333, "7"], +[-37.7754355167, 175.2699331667, "11"], +[-37.7749396667, 175.2695840667, "10"], +[-37.7751593, 175.2702040333, "4"], +[-37.7756716667, 175.2705247667, "5"], +[-37.7755192167, 175.2701222667, "9"], +[-37.7750932167, 175.2700028667, "6"], +[-37.7758382833, 175.2709479833, "1A"], +[-37.7752690333, 175.2695622, "15"], +[-37.7752250667, 175.2694461833, "17"], +[-37.7755200333, 175.2696002833, "13D"], +[-37.7758058667, 175.2705468167, "5A"], +[-37.7754559667, 175.2696327667, "13C"], +[-37.7757532833, 175.2707677, "1/3-8/3"], +[-37.7753960667, 175.2696680667, "13B"], +[-37.7755920333, 175.27030925, "7"], +[-37.775349, 175.2696958, "1/13"], +[-37.77501885, 175.26980555, "8"], +[-37.7413215333, 175.27168855, "39"], +[-37.7406794, 175.2729468, "27"], +[-37.73965515, 175.27171255, "8"], +[-37.7412425333, 175.2708606833, "28"], +[-37.7399047833, 175.2721321, "9"], +[-37.7408173833, 175.2725282833, "29"], +[-37.7408237167, 175.2721162833, "18"], +[-37.7405323667, 175.2720069167, "14"], +[-37.7412213, 175.2719440333, "37"], +[-37.7402762833, 175.2722637667, "15"], +[-37.74104245, 175.2724343, "33"], +[-37.7407077167, 175.2720813333, "16"], +[-37.74111405, 175.2722116333, "35"], +[-37.7404504667, 175.2723524, "17"], +[-37.7398204833, 175.2717368167, "10"], +[-37.7400431333, 175.2717768833, "12"], +[-37.7401108833, 175.2722029, "13"], +[-37.7406175, 175.2724020833, "19"], +[-37.7410377167, 175.2717181167, "20"], +[-37.7403985833, 175.27273575, "21A"], +[-37.7405471833, 175.2728642167, "21"], +[-37.7411373333, 175.2714530333, "22"], +[-37.7406108667, 175.2733497333, "23"], +[-37.7412012, 175.2712128167, "24"], +[-37.7407100167, 175.2733512, "25"], +[-37.7410407333, 175.2708643167, "26"], +[-37.73923505, 175.2719532667, "1"], +[-37.73905725, 175.27144915, "2"], +[-37.7416447333, 175.27100855, "45"], +[-37.74181635, 175.2708117, "47"], +[-37.7417999, 175.2705483, "49"], +[-37.7393669667, 175.2719951167, "3"], +[-37.7392664333, 175.27159425, "4"], +[-37.7414169167, 175.27144965, "41"], +[-37.7415283167, 175.2712243333, "43"], +[-37.7414557, 175.2708739667, "51"], +[-37.7394749833, 175.2716615333, "6"], +[-37.7395466167, 175.27204635, "5"], +[-37.7397244, 175.2720629833, "7"], +[-37.7398538833, 175.2725703333, "11"], +[-37.7400097833, 175.2726711167, "11A"], +[-37.740135, 175.2726493, "11B"], +[-37.7410423833, 175.2726757, "31"], +[-37.7857277333, 175.3097742167, "11"], +[-37.7858466333, 175.30936805, "5"], +[-37.7860236, 175.3096606667, "1"], +[-37.7859735167, 175.3094601, "3"], +[-37.7857056333, 175.3094260667, "7"], +[-37.7856802, 175.3096122333, "9A-9J"], +[-37.7970341333, 175.2457908333, "16"], +[-37.7968605833, 175.2469026167, "4"], +[-37.7971014167, 175.245432, "20"], +[-37.7972375667, 175.2467441167, "5"], +[-37.7967126333, 175.2462850667, "10A"], +[-37.7973715333, 175.24591645, "15"], +[-37.7966248167, 175.2466477, "10B"], +[-37.7969682667, 175.2461908, "12"], +[-37.7971614667, 175.2470890833, "1"], +[-37.7971891333, 175.2448301167, "26"], +[-37.7973976667, 175.2457377167, "17"], +[-37.7969038167, 175.2466718, "6"], +[-37.7970728, 175.2456155167, "18"], +[-37.7973608333, 175.2460763333, "13"], +[-37.7971626167, 175.2450493667, "24"], +[-37.7969428333, 175.2464249667, "8"], +[-37.79713475, 175.2452552, "22"], +[-37.7975162333, 175.2449722667, "23"], +[-37.7971964667, 175.24691895, "3"], +[-37.7969983833, 175.245988, "14"], +[-37.79673735, 175.2460198, "14A"], +[-37.7724221, 175.2981065667, "2"], +[-37.8184473667, 175.2714955667, "14"], +[-37.8182325333, 175.2715511833, "11"], +[-37.8181711667, 175.2714139833, "9"], +[-37.8183661667, 175.27163525, "10"], +[-37.8182934667, 175.2717792667, "12"], +[-37.8184806833, 175.2708435, "1"], +[-37.8186665167, 175.2710003667, "2"], +[-37.8183981667, 175.2709978167, "3"], +[-37.8185962167, 175.271156, "4"], +[-37.8181956667, 175.2712723833, "7"], +[-37.8183122833, 175.2711432833, "5"], +[-37.81851765, 175.2713279667, "6"], +[-37.7955001333, 175.2668378, "4B"], +[-37.7941738667, 175.266315, "11"], +[-37.7953029833, 175.2668403167, "6B"], +[-37.7943006333, 175.2663144167, "11A"], +[-37.7953690833, 175.2667204167, "6A"], +[-37.7953414, 175.2662909167, "3"], +[-37.7955451667, 175.26672735, "4A"], +[-37.7956775, 175.2662914833, "1/1"], +[-37.7955813833, 175.2662846167, "2/1"], +[-37.7957789333, 175.2667417167, "1/2-5/2"], +[-37.7943741833, 175.2667419833, "16"], +[-37.7942423667, 175.2667544333, "18"], +[-37.7939420167, 175.2663226333, "13"], +[-37.7944935833, 175.2667693833, "14"], +[-37.7939353, 175.26673645, "22"], +[-37.79410185, 175.2667493333, "20"], +[-37.76759165, 175.2484894, "21"], +[-37.7674971333, 175.24842955, "23"], +[-37.7674165333, 175.24837725, "25"], +[-37.7673332, 175.2483213167, "27"], +[-37.7673982167, 175.2487638, "2-46"], +[-37.7669874167, 175.24915355, "1-19"], +[-37.7564652167, 175.2478133, "35"], +[-37.7564112333, 175.2489970333, "46B"], +[-37.7559302833, 175.24857525, "45"], +[-37.7561412667, 175.2489229, "46"], +[-37.7566213833, 175.247565, "29"], +[-37.7574639, 175.2472839, "30"], +[-37.7545371833, 175.2509181333, "87"], +[-37.7575332833, 175.2467947333, "1/26-10/26"], +[-37.7543020667, 175.2504987167, "85"], +[-37.7570684, 175.2474841333, "36"], +[-37.7572618, 175.2471879833, "28"], +[-37.75271125, 175.25412245, "133"], +[-37.7523107, 175.2550593333, "143"], +[-37.75334475, 175.2537053, "134"], +[-37.75461995, 175.2507506667, "85A"], +[-37.75491525, 175.2502325, "77"], +[-37.7565151, 175.2483250333, "40"], +[-37.75681885, 175.2478960333, "38"], +[-37.7544494, 175.2505063667, "85B"], +[-37.7554681667, 175.2493442333, "55"], +[-37.756173, 175.2467979833, "23"], +[-37.75424015, 175.2521612333, "100"], +[-37.7556366167, 175.2490927167, "53"], +[-37.75432255, 175.2520123, "96"], +[-37.7563406333, 175.2486164167, "42"], +[-37.7538624167, 175.2528057667, "116"], +[-37.7539234167, 175.2519920333, "105"], +[-37.75375925, 175.2522965167, "109"], +[-37.7538348, 175.25213725, "107"], +[-37.75341755, 175.2522124167, "113"], +[-37.7536385167, 175.25251865, "115"], +[-37.7534652167, 175.2520920833, "111"], +[-37.75331585, 175.2523842167, "117"], +[-37.75353355, 175.25268805, "119"], +[-37.75344275, 175.2528731667, "121"], +[-37.7537747833, 175.2529638333, "122"], +[-37.7536896333, 175.2531193833, "124"], +[-37.7532456833, 175.2532244833, "125"], +[-37.7536012833, 175.25326225, "126"], +[-37.7531386667, 175.2533842833, "127"], +[-37.75289885, 175.2537631167, "129"], +[-37.7533316667, 175.2530771, "123"], +[-37.7534328667, 175.2535545167, "132"], +[-37.7528072, 175.2539428667, "131"], +[-37.7526188833, 175.25430315, "135"], +[-37.7532561333, 175.2538551833, "136"], +[-37.7531692833, 175.25401035, "138"], +[-37.7530823833, 175.2541743667, "140"], +[-37.7529883667, 175.2543220833, "142"], +[-37.7525195167, 175.2544853833, "137A"], +[-37.7523615, 175.2543835333, "137B"], +[-37.7524341167, 175.2546822833, "139A"], +[-37.7522693167, 175.2546123, "139B"], +[-37.7523731167, 175.2548728, "141"], +[-37.7527254333, 175.25489445, "150"], +[-37.75480385, 175.2496971833, "71"], +[-37.7547545333, 175.24979, "73"], +[-37.7548394667, 175.25039065, "79"], +[-37.75452775, 175.25023365, "81"], +[-37.7547231833, 175.2505687167, "83"], +[-37.75493705, 175.2509216333, "84"], +[-37.75478025, 175.2511979167, "88"], +[-37.7542603333, 175.2508278167, "91"], +[-37.7544163333, 175.2518767, "92"], +[-37.75442275, 175.25110825, "93"], +[-37.7543321, 175.2512879667, "95"], +[-37.75399475, 175.2518707833, "99"], +[-37.7558296833, 175.2494201667, "58"], +[-37.7557258333, 175.2495762833, "60"], +[-37.7556249667, 175.2497261833, "62"], +[-37.7554582333, 175.2499943667, "66"], +[-37.7552004667, 175.2497336833, "67"], +[-37.7551173167, 175.2498808333, "69"], +[-37.7550003167, 175.2500889167, "75"], +[-37.7550251167, 175.2507464, "80"], +[-37.7526366667, 175.2551431333, "152"], +[-37.7535195667, 175.25340645, "128"], +[-37.7557949833, 175.2488137167, "47"], +[-37.7525481167, 175.2553658833, "154"], +[-37.7834163333, 175.28628975, "12"], +[-37.7832186833, 175.2866352333, "16"], +[-37.7829369833, 175.287147, "22"], +[-37.7834830167, 175.2854492167, "5"], +[-37.7824392167, 175.2875056833, "29A-29E"], +[-37.78326955, 175.2857966833, "11A-11C"], +[-37.7835405, 175.2853560333, "3"], +[-37.7835225, 175.2861021667, "10"], +[-37.7831470167, 175.2860193333, "13"], +[-37.7830291667, 175.2862245333, "15"], +[-37.7828972167, 175.28643775, "17"], +[-37.7833192333, 175.2864640333, "14"], +[-37.7831169667, 175.2868191833, "18"], +[-37.78303095, 175.2869764333, "20"], +[-37.7827726, 175.28666405, "19"], +[-37.7826796, 175.2868540667, "21"], +[-37.78260255, 175.2869991167, "23"], +[-37.78284885, 175.2872983167, "24"], +[-37.7825123333, 175.2871684833, "25"], +[-37.7824114833, 175.28732025, "27"], +[-37.7826220833, 175.28763335, "31"], +[-37.7825796333, 175.2880089, "33"], +[-37.7827712333, 175.28773625, "37"], +[-37.7829323333, 175.287838, "39"], +[-37.7836239, 175.2859089333, "8"], +[-37.7833797667, 175.2856142333, "9"], +[-37.74723765, 175.2731169333, "12A"], +[-37.74747045, 175.2724781, "18A"], +[-37.7474719, 175.2732253167, "12"], +[-37.7480528667, 175.2729131, "11"], +[-37.7480520833, 175.2727270833, "13A-13E"], +[-37.7479341667, 175.2730767333, "9"], +[-37.7477037667, 175.2735817167, "3"], +[-37.7473716, 175.27379525, "6"], +[-37.7475404333, 175.2730554167, "14"], +[-37.7478184833, 175.2725548667, "20"], +[-37.7475840667, 175.2741196833, "2A"], +[-37.74737105, 175.27359465, "8"], +[-37.7479471833, 175.2726164833, "17"], +[-37.7474169667, 175.2734097167, "10"], +[-37.7481474333, 175.2722306667, "15"], +[-37.7477101667, 175.2727097667, "18"], +[-37.7476271333, 175.2728849, "16"], +[-37.7477781333, 175.27381965, "1"], +[-37.7478542333, 175.2732463667, "7"], +[-37.7476636167, 175.27419965, "2B"], +[-37.74778575, 175.2734178167, "5"], +[-37.7474398333, 175.2739947667, "4"], +[-37.7716581167, 175.2324627667, "28B"], +[-37.7706333333, 175.23250655, "34"], +[-37.7724851833, 175.2323600833, "7"], +[-37.7704488167, 175.23231765, "33B"], +[-37.7718970667, 175.2322698, "22"], +[-37.7704785167, 175.232093, "33A"], +[-37.7723416833, 175.2322004, "9"], +[-37.7708567333, 175.2326271167, "32B"], +[-37.7724066333, 175.2329224333, "10"], +[-37.7724111667, 175.2332964, "6"], +[-37.7714526333, 175.2317575, "21"], +[-37.7703967, 175.2325332833, "36"], +[-37.7717771833, 175.2328328833, "22B"], +[-37.77203165, 175.23282495, "16"], +[-37.7710175333, 175.2320691167, "27"], +[-37.77048895, 175.2325662333, "36A"], +[-37.7708598333, 175.2319603833, "29A"], +[-37.7703564833, 175.2323762, "35"], +[-37.7722140333, 175.2320410667, "11"], +[-37.7712784333, 175.2317938833, "23"], +[-37.7720738167, 175.23290565, "14"], +[-37.7714319, 175.2326431667, "26B"], +[-37.7716739333, 175.2322167333, "28A"], +[-37.77070345, 175.23219115, "31"], +[-37.77257255, 175.2330589667, "4"], +[-37.7726990333, 175.2331443, "2"], +[-37.7715488833, 175.2322541167, "30B"], +[-37.7716424333, 175.2326314, "26A"], +[-37.7727963333, 175.2326798833, "3"], +[-37.7720659833, 175.2319015167, "13"], +[-37.7708603167, 175.2321328833, "29"], +[-37.7713874167, 175.23229125, "30A"], +[-37.7726205333, 175.23240155, "5A"], +[-37.7711659667, 175.2319527667, "25"], +[-37.7721521833, 175.2325805, "18"], +[-37.7717765167, 175.2325664167, "22A"], +[-37.7723003667, 175.2332119, "8"], +[-37.7719176667, 175.2317818, "15"], +[-37.77205005, 175.2323962333, "20"], +[-37.77228815, 175.2327973333, "12"], +[-37.77165485, 175.2317953167, "17"], +[-37.7708597333, 175.2323984167, "32A"], +[-37.7726401667, 175.2325552333, "5"], +[-37.7715762667, 175.2315756667, "19"], +[-37.7597631833, 175.2694454167, "1"], +[-37.7602275833, 175.2701047667, "9A"], +[-37.7603296667, 175.2698576, "9"], +[-37.7604359333, 175.2698302167, "11"], +[-37.7603841167, 175.2689937667, "8A"], +[-37.7605242, 175.2697064667, "14"], +[-37.76009855, 175.2692775167, "6"], +[-37.7600645333, 175.269663, "5"], +[-37.7601809333, 175.26975805, "7"], +[-37.7602253667, 175.2693915333, "8"], +[-37.7597791333, 175.2690676, "2"], +[-37.7603747167, 175.2694372, "10"], +[-37.75995895, 175.2695924, "3"], +[-37.7604883333, 175.2695182667, "12"], +[-37.7598642667, 175.2689453667, "2A"], +[-37.7599428333, 175.2691908333, "4"], +[-37.7899751333, 175.3194378833, "1/5-3/5"], +[-37.7899124333, 175.3197856, "3C"], +[-37.7893143, 175.3197917, "6A-6C"], +[-37.7898934333, 175.31972535, "3B"], +[-37.7892323167, 175.3196697167, "1/8-8/8"], +[-37.7899282833, 175.3198613833, "3D"], +[-37.7899462667, 175.3200063667, "1"], +[-37.7896721167, 175.3200166167, "2"], +[-37.789849, 175.319369, "1/9-3/9"], +[-37.7899599833, 175.3190970333, "7A"], +[-37.7898742833, 175.3196721667, "3A"], +[-37.7900454, 175.3190546333, "7B"], +[-37.7902404167, 175.3190266, "7"], +[-37.7901098833, 175.3190035667, "7C"], +[-37.7896125667, 175.31985655, "4"], +[-37.78938115, 175.3196145333, "10"], +[-37.7897067667, 175.3194335333, "11"], +[-37.78954745, 175.3194999667, "12"], +[-37.7759791, 175.23899395, "5B"], +[-37.77673775, 175.2375371167, "4F"], +[-37.7762759167, 175.238476, "11A"], +[-37.7766377, 175.2376893, "4E"], +[-37.7760402167, 175.2389050333, "5A"], +[-37.7765495333, 175.23783445, "4D"], +[-37.7757013833, 175.2392734167, "5C"], +[-37.7764494833, 175.2379866333, "4C"], +[-37.7761914667, 175.2386824, "9"], +[-37.7763702833, 175.2381246833, "4G"], +[-37.7761316833, 175.23845045, "4"], +[-37.7762850667, 175.2382699333, "4B"], +[-37.7758843333, 175.2387551833, "3"], +[-37.7758306667, 175.2385764, "1B"], +[-37.7758708833, 175.2381913, "2B"], +[-37.77573155, 175.2391685833, "5"], +[-37.77611125, 175.23878115, "7"], +[-37.7757950833, 175.23811295, "2A"], +[-37.7757223167, 175.2380385833, "2"], +[-37.77635495, 175.2383477667, "11B"], +[-37.7757212, 175.2384847833, "1A"], +[-37.7756176, 175.2383748833, "1"], +[-37.8197056, 175.2807284333, "16"], +[-37.82026885, 175.27986365, "17B"], +[-37.82048515, 175.2817054667, "3"], +[-37.82014635, 175.2806359833, "17"], +[-37.8204502333, 175.2808750333, "11"], +[-37.8204985833, 175.2810721, "9"], +[-37.8199306333, 175.2809253667, "10"], +[-37.8197729333, 175.2809157667, "12"], +[-37.8198348667, 175.2804681, "21"], +[-37.8204376, 175.2822362, "1"], +[-37.81972205, 175.2805611667, "23"], +[-37.8199808, 175.2805559167, "19"], +[-37.8201477833, 175.2816787333, "4"], +[-37.8201721167, 175.2822262333, "2"], +[-37.820492, 175.2815080167, "5"], +[-37.8195435833, 175.2811224, "14"], +[-37.8201709, 175.2814314667, "6"], +[-37.8201135833, 175.2801193, "19A"], +[-37.8204927, 175.2812821167, "7"], +[-37.8204476667, 175.2819519, "1A"], +[-37.8201794, 175.2810433, "8"], +[-37.8201797333, 175.2819242333, "2B"], +[-37.8203343833, 175.2806994833, "13"], +[-37.8202197833, 175.2801549, "17A"], +[-37.82032705, 175.2803754333, "15"], +[-37.82076385, 175.2811264, "9A"], +[-37.7242591, 175.2431067, "9"], +[-37.7241908167, 175.2429261167, "7"], +[-37.72417175, 175.24272375, "5"], +[-37.7241415, 175.24250055, "3"], +[-37.724121, 175.2422542667, "1"], +[-37.7661981167, 175.2505484833, "1-9"], +[-37.7662210667, 175.25067285, "2-10"], +[-37.7890914, 175.2711534833, "1/9-8/9"], +[-37.7890712, 175.27188725, "1/4-9/4"], +[-37.78933485, 175.2716294167, "5"], +[-37.7892748667, 175.2714647833, "1/5A-6/5A"], +[-37.7891543, 175.27206475, "2"], +[-37.7894044833, 175.2717603333, "3"], +[-37.7891949667, 175.2713262833, "7A"], +[-37.7894049, 175.2711686, "7B"], +[-37.8020229667, 175.3196293333, "5"], +[-37.8019755667, 175.3196731833, "4"], +[-37.80162635, 175.3194384, "2"], +[-37.80141495, 175.3192850667, "1"], +[-37.8014814333, 175.3191928167, "8"], +[-37.8016652833, 175.3193291, "7"], +[-37.8018212667, 175.3195746, "3"], +[-37.8018476833, 175.3194920667, "6"], +[-37.7923839, 175.2349222667, "70"], +[-37.78860405, 175.23582445, "126"], +[-37.7945264167, 175.2346325333, "40"], +[-37.7869505, 175.2328999167, "161A"], +[-37.7850356833, 175.2304847667, "198"], +[-37.79238295, 175.2341935667, "69"], +[-37.78541695, 175.2304696, "197"], +[-37.7853304333, 175.23033615, "199"], +[-37.7883978833, 175.23537225, "127"], +[-37.78503945, 175.2297272167, "205"], +[-37.7936065167, 175.2342541667, "51"], +[-37.7919231833, 175.2344589333, "75"], +[-37.7902023667, 175.2348951667, "99A"], +[-37.7920897333, 175.2344061, "73"], +[-37.7931039667, 175.2348613333, "60"], +[-37.7917685333, 175.2344976, "77"], +[-37.7891597333, 175.2352105667, "115"], +[-37.7957995167, 175.2343566833, "16"], +[-37.7851154333, 175.2306967667, "196"], +[-37.7954204, 175.2339672167, "17"], +[-37.7890982667, 175.2357129833, "118"], +[-37.795252, 175.2339388167, "19"], +[-37.79378245, 175.2342456833, "49"], +[-37.7956344333, 175.2343904, "20"], +[-37.7905261333, 175.2348064667, "95"], +[-37.7954673, 175.2344469667, "22"], +[-37.7860013333, 175.23155395, "185"], +[-37.7952921167, 175.2344884333, "26"], +[-37.7900125167, 175.2349770833, "101"], +[-37.7952411833, 175.23488055, "28"], +[-37.79656655, 175.2333896333, "3B"], +[-37.7951219833, 175.2345526333, "32"], +[-37.7863191333, 175.2315447167, "183A"], +[-37.7967835667, 175.2336141167, "1"], +[-37.79070945, 175.23477785, "93"], +[-37.7967997667, 175.2340353667, "2"], +[-37.7847177833, 175.2289979667, "213"], +[-37.7950298, 175.2340929167, "29"], +[-37.7874680167, 175.2342642333, "149"], +[-37.7962148167, 175.2334241, "7A"], +[-37.7857940667, 175.2319686833, "184"], +[-37.7960649167, 175.2342765333, "8"], +[-37.79378515, 175.2347088167, "48"], +[-37.7960373667, 175.2334990833, "9A"], +[-37.79034715, 175.2348468167, "97"], +[-37.7960861, 175.2337928333, "9"], +[-37.7859029833, 175.2308036667, "191B"], +[-37.7965858833, 175.2340816333, "4"], +[-37.7848077833, 175.2291657667, "211"], +[-37.79626955, 175.23375275, "7"], +[-37.7867362667, 175.2337013667, "162"], +[-37.79023115, 175.2354818167, "102"], +[-37.7957645667, 175.2338861333, "13"], +[-37.7898556, 175.2350560333, "105"], +[-37.7867348167, 175.2329049667, "163"], +[-37.7900900667, 175.23574285, "106A"], +[-37.7892733, 175.2356895, "116"], +[-37.7900614167, 175.2354671167, "106"], +[-37.7873441333, 175.2340732, "151"], +[-37.7896618667, 175.2350783667, "107"], +[-37.7922065333, 175.2349607167, "72"], +[-37.7897953833, 175.2355689, "108"], +[-37.7955855167, 175.2339321833, "15"], +[-37.7894973, 175.23510915, "109"], +[-37.7857839167, 175.2306484333, "193A"], +[-37.7888914833, 175.2357641833, "120"], +[-37.7866264833, 175.232715, "165"], +[-37.7887078667, 175.2362387667, "122"], +[-37.7866498167, 175.2335265833, "164"], +[-37.7887378333, 175.2353063167, "123"], +[-37.7848832667, 175.2293567833, "209"], +[-37.78861035, 175.2362955167, "124"], +[-37.7845508667, 175.2288763833, "215"], +[-37.7884998833, 175.2351909167, "125A"], +[-37.79435185, 175.2346571667, "42"], +[-37.7886325333, 175.2353784667, "125"], +[-37.7896162333, 175.23560525, "112"], +[-37.7880484333, 175.2353235833, "133"], +[-37.7883948833, 175.2358390833, "128"], +[-37.7878492333, 175.2357590833, "136"], +[-37.7872406833, 175.2338746167, "153"], +[-37.787745, 175.2355609833, "138"], +[-37.7893184667, 175.2351464833, "113"], +[-37.7879572, 175.2351570167, "139"], +[-37.7877629667, 175.2348208167, "143"], +[-37.787664, 175.2353710833, "140"], +[-37.7904046833, 175.2354425167, "100"], +[-37.7878561167, 175.2350093, "141"], +[-37.7858786667, 175.2321350833, "182"], +[-37.7874779167, 175.2351071, "142"], +[-37.7855027333, 175.2306200167, "195"], +[-37.79198405, 175.2350235833, "74"], +[-37.7868338, 175.2330897333, "161"], +[-37.7917773, 175.2350456833, "78"], +[-37.7860862833, 175.2317510667, "183"], +[-37.7915487833, 175.2351396333, "80"], +[-37.7865648333, 175.2333925, "166"], +[-37.7913381667, 175.2352079667, "84"], +[-37.7864872167, 175.2332293833, "168"], +[-37.7911466333, 175.2352549833, "86"], +[-37.7946897833, 175.2346144167, "38"], +[-37.7909690667, 175.2352857833, "90"], +[-37.7959641, 175.23430845, "12"], +[-37.7907901167, 175.2353199167, "94"], +[-37.7922694, 175.2343958333, "71"], +[-37.7906301333, 175.23539035, "96"], +[-37.7949036833, 175.2345752333, "34"], +[-37.7861913333, 175.2319624333, "179"], +[-37.7852037167, 175.2308763667, "194"], +[-37.7966400167, 175.2336439167, "3A"], +[-37.7901592667, 175.2346626833, "99"], +[-37.7904667167, 175.2345706333, "95A"], +[-37.7936615833, 175.23475365, "50"], +[-37.7963875667, 175.23341295, "5A"], +[-37.7928713833, 175.2348388, "62"], +[-37.7964347667, 175.2337119667, "5B"], +[-37.7869354, 175.23327455, "159"], +[-37.78622605, 175.2327615833, "174"], +[-37.7849778833, 175.2295307167, "207"], +[-37.7860388, 175.2324588833, "178"], +[-37.7854816, 175.2312572667, "192"], +[-37.79160235, 175.2345311, "79"], +[-37.7870317333, 175.233474, "157"], +[-37.786133, 175.2326244167, "176"], +[-37.7873381167, 175.2348422833, "146"], +[-37.78630395, 175.2321690667, "177"], +[-37.78943465, 175.2356424, "114"], +[-37.79342815, 175.2342775167, "53"], +[-37.7876706167, 175.2346393167, "145"], +[-37.7934017833, 175.2347728667, "52"], +[-37.78714425, 175.2336540833, "155"], +[-37.7932496333, 175.2343064833, "55"], +[-37.7928372833, 175.23436165, "61"], +[-37.79334585, 175.2349070833, "54"], +[-37.79265445, 175.2343616, "63"], +[-37.787147, 175.2344406833, "156"], +[-37.79245765, 175.23437905, "67"], +[-37.79124625, 175.2346568333, "83"], +[-37.7856115167, 175.2307884667, "193"], +[-37.7914390667, 175.23460535, "81"], +[-37.78756495, 175.2344401, "147"], +[-37.7913634667, 175.2342365, "81B"], +[-37.7872476833, 175.23464565, "154"], +[-37.79089305, 175.2347318833, "89"], +[-37.7910628167, 175.2346913167, "85"], +[-37.78590375, 175.2313573, "187"], +[-37.7864087333, 175.2330667167, "170"], +[-37.7865137167, 175.2325302167, "169"], +[-37.78570095, 175.23179225, "186"], +[-37.7863140167, 175.2329099, "172"], +[-37.7859530333, 175.23229175, "180"], +[-37.7864125833, 175.2323369833, "173"], +[-37.7858134333, 175.2311799667, "189"], +[-37.7856191, 175.2316230167, "188"], +[-37.7855215, 175.2314505833, "190"], +[-37.7857104167, 175.2309861, "191A"], +[-37.7748566, 175.2257334, "11"], +[-37.7743853833, 175.2266210833, "1"], +[-37.7741956833, 175.2264014667, "2"], +[-37.7744367667, 175.2264739667, "3"], +[-37.7749446167, 175.2256097333, "13"], +[-37.7745485, 175.2257108833, "10"], +[-37.7747357833, 175.2259025333, "9"], +[-37.77451885, 175.2262773667, "5"], +[-37.7743327167, 175.2260499667, "6"], +[-37.7750282833, 175.2252795833, "17"], +[-37.7747505167, 175.2252661333, "16"], +[-37.7744317833, 175.2258726333, "8"], +[-37.7746146833, 175.2260866833, "7"], +[-37.7746519667, 175.2255161333, "12"], +[-37.7746658833, 175.2253185333, "14"], +[-37.7748807167, 175.22525755, "19"], +[-37.7742438167, 175.2262554833, "4"], +[-37.7749654167, 175.2254506333, "15"], +[-37.7502203667, 175.2423387, "10"], +[-37.7502363, 175.2428018833, "18"], +[-37.7498931833, 175.2428707833, "17"], +[-37.75024075, 175.2431381667, "22A"], +[-37.74984625, 175.2416794, "7"], +[-37.7503569833, 175.2433158167, "24A"], +[-37.7502023667, 175.2433394167, "24"], +[-37.7505127, 175.2432892667, "24B"], +[-37.74990415, 175.24242275, "13"], +[-37.75059385, 175.2431964667, "24C"], +[-37.7502492833, 175.2428723167, "20"], +[-37.7506339, 175.2432808667, "4/24"], +[-37.7505606, 175.24258235, "16"], +[-37.75020325, 175.2420404667, "6"], +[-37.75020505, 175.2421134667, "8"], +[-37.7498298167, 175.2414689167, "5"], +[-37.7502278667, 175.2425064167, "14"], +[-37.7498808167, 175.2419985667, "9"], +[-37.7598748333, 175.3023415833, "24"], +[-37.7578568, 175.3072394167, "78"], +[-37.7595751833, 175.3020774333, "25"], +[-37.7576251833, 175.30689885, "77"], +[-37.7579288333, 175.3058915333, "67"], +[-37.7589934833, 175.302712, "37"], +[-37.75828075, 175.3046800333, "55"], +[-37.7588134833, 175.3030472833, "41"], +[-37.7595450333, 175.30321155, "38"], +[-37.7594808167, 175.3033398167, "40"], +[-37.7597121333, 175.30242915, "26"], +[-37.7587369667, 175.3032457333, "43"], +[-37.7605678167, 175.3016268667, "14"], +[-37.75913865, 175.3031308667, "42"], +[-37.7580956, 175.3052757667, "61"], +[-37.75904815, 175.3033220333, "44"], +[-37.7584062833, 175.3042703167, "51"], +[-37.7589947, 175.3035312167, "46"], +[-37.7588773, 175.3049446833, "54"], +[-37.7579196167, 175.3070426667, "76"], +[-37.7609379667, 175.3007144, "6"], +[-37.7585950667, 175.3036713333, "45"], +[-37.7594136, 175.3022103167, "27"], +[-37.7600533333, 175.3017199833, "19"], +[-37.7605459167, 175.3009872167, "7"], +[-37.7599087333, 175.3018537, "21"], +[-37.7604123167, 175.301234, "13"], +[-37.7599958167, 175.30222905, "22"], +[-37.7581618333, 175.3050930667, "59"], +[-37.7608855333, 175.2996956167, "1A"], +[-37.7603031, 175.3013967833, "15"], +[-37.7608627667, 175.2997945667, "1B"], +[-37.7585275167, 175.3050522333, "58"], +[-37.7595687667, 175.3025572667, "28"], +[-37.7579827833, 175.3056852167, "65"], +[-37.7592894167, 175.3023307667, "29"], +[-37.75814155, 175.30625465, "68"], +[-37.7597283333, 175.30287035, "30"], +[-37.7606483167, 175.3006175333, "3"], +[-37.7590047333, 175.3021084333, "31"], +[-37.75821145, 175.3060720333, "66"], +[-37.7589077, 175.302244, "33"], +[-37.7597313333, 175.3019818667, "23"], +[-37.7593872833, 175.30274525, "34"], +[-37.75846555, 175.3040736833, "49"], +[-37.7596463333, 175.3029848667, "32"], +[-37.7588966333, 175.3028790667, "39"], +[-37.7592769167, 175.3029037833, "36"], +[-37.7601763167, 175.3009761333, "11"], +[-37.7591049833, 175.3025539, "35"], +[-37.7583458667, 175.3044633333, "53"], +[-37.7582214833, 175.3048772833, "57"], +[-37.7584823667, 175.3052474, "60"], +[-37.7606234, 175.3007861833, "5"], +[-37.7586351333, 175.3046611833, "52"], +[-37.7585759833, 175.3048723333, "56"], +[-37.7601719, 175.3015778, "17"], +[-37.7602378167, 175.3008497833, "9"], +[-37.7608891333, 175.3009167, "8"], +[-37.7575696833, 175.3070958667, "79"], +[-37.7580307, 175.3066440667, "72"], +[-37.7576917833, 175.3066976, "75"], +[-37.7578139833, 175.3062946667, "71"], +[-37.7579715333, 175.3068409167, "74"], +[-37.75808965, 175.3064564, "70"], +[-37.75775085, 175.3065053167, "73"], +[-37.7578622167, 175.3060927833, "69"], +[-37.75750655, 175.3073065, "81"], +[-37.7574327167, 175.3075028833, "83"], +[-37.7577348833, 175.3076284667, "82"], +[-37.7577942667, 175.3074223, "80"], +[-37.7589145833, 175.30382335, "48"], +[-37.7585340833, 175.3038677833, "47"], +[-37.7580416667, 175.3054806, "63"], +[-37.7573515667, 175.3076990833, "85"], +[-37.7576972667, 175.3078492333, "84"], +[-37.8232166667, 175.22452865, "2028"], +[-37.8225024333, 175.2249944667, "2022"], +[-37.82334135, 175.2244748667, "2030"], +[-37.8229725333, 175.2246809333, "2026"], +[-37.8224034667, 175.22507345, "2020"], +[-37.8227806, 175.2248285833, "2024"], +[-37.7864346667, 175.2569047167, "40"], +[-37.7872419833, 175.25718745, "21"], +[-37.7870991167, 175.2569683833, "25"], +[-37.7887761667, 175.2597512833, "2"], +[-37.78684, 175.2566559333, "27A"], +[-37.7886282667, 175.2590379167, "3"], +[-37.7860008833, 175.2563481667, "60"], +[-37.7868171833, 175.2573655833, "24"], +[-37.7859994833, 175.2555925, "33"], +[-37.7872745, 175.2579427833, "20"], +[-37.7869913667, 175.25682425, "27"], +[-37.7879993, 175.2582332, "5"], +[-37.7877193333, 175.2578229333, "15"], +[-37.7876084, 175.2576291833, "17"], +[-37.7879081167, 175.2581132167, "9"], +[-37.7875203167, 175.2575353667, "19"], +[-37.7887418833, 175.2591798333, "1"], +[-37.7959394667, 175.2810378167, "31"], +[-37.8014259833, 175.28024, "134"], +[-37.79842885, 175.2814893167, "13/65"], +[-37.8015106167, 175.27940175, "132A"], +[-37.7984361833, 175.28158675, "14/65"], +[-37.802094, 175.2794062, "158C"], +[-37.7968, 175.28115745, "45"], +[-37.79911545, 175.2816610167, "79"], +[-37.79860425, 175.2814169667, "73"], +[-37.7989251833, 175.2813342667, "77"], +[-37.7961971667, 175.2814196667, "37"], +[-37.7989741333, 175.2815185667, "77A-77C"], +[-37.7982069167, 175.28143695, "2/65"], +[-37.7990835333, 175.2813077667, "79A"], +[-37.8002584667, 175.28152315, "97"], +[-37.7991195, 175.2814806333, "79B"], +[-37.79957395, 175.28078245, "82"], +[-37.79997215, 175.2807247333, "86A"], +[-37.79842945, 175.2813832333, "12/65"], +[-37.7999226833, 175.2804710667, "86B"], +[-37.7995030667, 175.28148435, "83A"], +[-37.80095725, 175.28069335, "122"], +[-37.8010304, 175.2812660667, "107A"], +[-37.8011629333, 175.28108825, "111"], +[-37.7957244167, 175.2805260333, "28"], +[-37.8012799333, 175.2810880167, "111A"], +[-37.7960971, 175.2810428833, "33A"], +[-37.8012842333, 175.28130225, "111B"], +[-37.8002943167, 175.2806710333, "98"], +[-37.801478, 175.2806987, "1/136-3/136"], +[-37.7984351667, 175.2817083667, "15/65"], +[-37.8021260333, 175.28054985, "158"], +[-37.8025784, 175.28029345, "174A"], +[-37.8021473333, 175.2813177, "119B"], +[-37.8027776833, 175.2804952333, "180B"], +[-37.7946183833, 175.2804592667, "1/18-5/18"], +[-37.7959690333, 175.2812847167, "33B"], +[-37.7940707333, 175.28048725, "10"], +[-37.7957981167, 175.2810281833, "29"], +[-37.7944615333, 175.2804593667, "16"], +[-37.7956642, 175.2810049833, "27"], +[-37.79445485, 175.2808896667, "17"], +[-37.8026304, 175.2795650667, "172"], +[-37.7987943833, 175.28135775, "1/75-5/75"], +[-37.7981247, 175.2821643333, "10/65"], +[-37.7992384167, 175.2813179667, "1/81-5/81"], +[-37.8018089, 175.2811237833, "115"], +[-37.8002806167, 175.2802404, "100"], +[-37.7983463833, 175.2813663833, "11/65"], +[-37.8004639667, 175.2810928, "101"], +[-37.7986408, 175.2815855, "73B"], +[-37.8000877167, 175.27942505, "102A"], +[-37.7982196667, 175.2813525333, "1/65"], +[-37.8001372333, 175.279089, "102B"], +[-37.8020937333, 175.2803947667, "156"], +[-37.8002436167, 175.2798312833, "102"], +[-37.8026350333, 175.2811607667, "125"], +[-37.7937152667, 175.2809090667, "9"], +[-37.80096275, 175.2810780667, "107"], +[-37.7969625667, 175.2807018167, "1/54-6/54"], +[-37.8005766, 175.2806853833, "106"], +[-37.8018954333, 175.28035555, "140B"], +[-37.80250075, 175.2811467667, "123"], +[-37.8018624333, 175.28071895, "140"], +[-37.8014250667, 175.2811253167, "113"], +[-37.8017620667, 175.2800792167, "142"], +[-37.7954770167, 175.28096675, "25"], +[-37.8048840667, 175.2808121, "214"], +[-37.7994291167, 175.2812393667, "83"], +[-37.80460395, 175.2808104667, "210"], +[-37.8002908, 175.28111815, "99"], +[-37.7964578, 175.2810855667, "41"], +[-37.80234795, 175.2811452833, "121"], +[-37.7985551167, 175.2809490667, "68"], +[-37.8021406, 175.2811239167, "119"], +[-37.80007355, 175.2817345333, "93"], +[-37.8005945667, 175.2810682333, "103"], +[-37.8000355167, 175.2800592167, "94"], +[-37.7995781833, 175.2815597, "83C"], +[-37.7943643, 175.2810632667, "17A"], +[-37.80074745, 175.2810695333, "105"], +[-37.8007836833, 175.2802992833, "112"], +[-37.7986580833, 175.28173985, "73A"], +[-37.8007632833, 175.28070165, "110"], +[-37.80192845, 175.2796209667, "154A"], +[-37.79697625, 175.28117665, "47"], +[-37.80032225, 175.2795056667, "104"], +[-37.7966216833, 175.281128, "1/43-6/43"], +[-37.7962530833, 175.2810625667, "35"], +[-37.7962717333, 175.2814204667, "1/39-7/39"], +[-37.7981952833, 175.2815230167, "3/65"], +[-37.8051881167, 175.2813404833, "183"], +[-37.8019476167, 175.2811126, "117"], +[-37.7939082833, 175.2809238167, "11"], +[-37.80528595, 175.2802442333, "218A-218C"], +[-37.7942606333, 175.2804757833, "12"], +[-37.79676035, 175.2806558667, "50"], +[-37.7941082667, 175.2808799, "13"], +[-37.7971495833, 175.280714, "56"], +[-37.7946311, 175.2808194, "19"], +[-37.8004386667, 175.2800218167, "108"], +[-37.79478245, 175.2804473167, "20"], +[-37.7964739167, 175.2806129, "48"], +[-37.7943004833, 175.2808427833, "15"], +[-37.8019773333, 175.2801358833, "154B"], +[-37.7931957667, 175.2805135333, "2"], +[-37.7936850667, 175.28047385, "8"], +[-37.7933640667, 175.2804773167, "4"], +[-37.79350985, 175.2804648667, "6"], +[-37.8027908167, 175.2811830833, "127"], +[-37.8029307833, 175.2811693, "129"], +[-37.8030705833, 175.2811804333, "131"], +[-37.8016253333, 175.2805281167, "138A"], +[-37.80169955, 175.28070785, "138B"], +[-37.8017287833, 175.2799618167, "144"], +[-37.8017406333, 175.2795501833, "146"], +[-37.8017407167, 175.2792053167, "148"], +[-37.8018612, 175.2792232, "150"], +[-37.8018803833, 175.2795013833, "152"], +[-37.80216905, 175.2798319333, "158A"], +[-37.8021739833, 175.27963245, "158B"], +[-37.8021777167, 175.2807494167, "160"], +[-37.8022844, 175.2807375167, "162"], +[-37.8023732, 175.2802075333, "164"], +[-37.8024115333, 175.2797296, "166"], +[-37.8024470667, 175.2793905667, "168"], +[-37.8034057167, 175.2807534167, "196"], +[-37.8035787, 175.2806581333, "198"], +[-37.7997684167, 175.2808080167, "84"], +[-37.7995887667, 175.2812262833, "85"], +[-37.79973305, 175.2812068167, "87"], +[-37.7997029333, 175.2797964167, "90A"], +[-37.7997316333, 175.27940805, "90B"], +[-37.7998018, 175.28032755, "88"], +[-37.8001145167, 175.2807034, "92"], +[-37.7998924, 175.28117395, "89"], +[-37.8000003833, 175.2816157667, "91"], +[-37.8000955, 175.2811482333, "95"], +[-37.8000594667, 175.2815196667, "93A"], +[-37.8053629833, 175.2807410333, "222"], +[-37.8055757167, 175.2806749, "224"], +[-37.8057155167, 175.2806692, "226"], +[-37.8059135833, 175.2805877167, "228"], +[-37.80610485, 175.2804786167, "230"], +[-37.80619395, 175.2803740833, "232"], +[-37.79789025, 175.2813143333, "55"], +[-37.7981426333, 175.2819679667, "8/65"], +[-37.7981475333, 175.28189415, "7/65"], +[-37.7981594, 175.2818040833, "6/65"], +[-37.7981659667, 175.2817106667, "5/65"], +[-37.8008091333, 175.2796758333, "118"], +[-37.80079495, 175.2798355167, "116"], +[-37.7981789, 175.2816173167, "4/65"], +[-37.8008123333, 175.2801854333, "114"], +[-37.7981305167, 175.2820645333, "9/65"], +[-37.8008789833, 175.2797954667, "120"], +[-37.80140995, 175.2798594167, "134A"], +[-37.8011928167, 175.2803562833, "128"], +[-37.8012798, 175.2807092667, "128B"], +[-37.8012337167, 175.2795944667, "130"], +[-37.8013309, 175.2796060667, "132"], +[-37.80131005, 175.2799116167, "128A"], +[-37.8010866167, 175.28017265, "126"], +[-37.8011219667, 175.2807088167, "124"], +[-37.8025333, 175.2807322, "170"], +[-37.8026155333, 175.2799673833, "174"], +[-37.8029230167, 175.28016835, "184"], +[-37.8028602167, 175.2807560333, "182"], +[-37.802715, 175.2807328667, "180A"], +[-37.8026881333, 175.2796256667, "176"], +[-37.8026778167, 175.2801636, "178"], +[-37.8030137333, 175.2801959167, "186"], +[-37.8031983, 175.2807508, "190"], +[-37.80305205, 175.2807523667, "188"], +[-37.7979478833, 175.2340876333, "6"], +[-37.7985492333, 175.2336639167, "11"], +[-37.8020531667, 175.2320859833, "64"], +[-37.7981705333, 175.2334911333, "12"], +[-37.8022254667, 175.2320457333, "66"], +[-37.7987206333, 175.23354265, "13"], +[-37.7980136833, 175.2332338667, "14"], +[-37.7984241, 175.2338188, "9"], +[-37.7976262, 175.2344916833, "2A"], +[-37.7980739667, 175.23369615, "10"], +[-37.79746405, 175.2345029333, "2"], +[-37.7982170833, 175.23331615, "16"], +[-37.7976078667, 175.23488505, "1"], +[-37.7983561667, 175.2332807833, "18"], +[-37.7992130167, 175.2334128833, "19"], +[-37.7989045, 175.2335009, "17"], +[-37.7984964833, 175.2331786833, "20"], +[-37.7986676167, 175.2330871833, "22"], +[-37.7987986833, 175.2330583667, "24"], +[-37.7989716167, 175.23300655, "26"], +[-37.7991419, 175.2329617833, "28"], +[-37.7992901333, 175.2329155667, "30"], +[-37.7990554833, 175.2334543333, "17A"], +[-37.7978777, 175.23434325, "4"], +[-37.7981752, 175.2345236833, "5"], +[-37.7997754, 175.2327736333, "36"], +[-37.7999539, 175.23273295, "38"], +[-37.8001259167, 175.2326723333, "40"], +[-37.8002851333, 175.2326419333, "42"], +[-37.8004341833, 175.23258285, "44"], +[-37.80060125, 175.2325178, "46"], +[-37.8007603, 175.23248225, "48"], +[-37.8009114167, 175.2324474, "50"], +[-37.8010685167, 175.2323901167, "52"], +[-37.8012371, 175.2323398333, "54"], +[-37.8014043167, 175.23229335, "56"], +[-37.8015636167, 175.2322422667, "58"], +[-37.8017293667, 175.2321897833, "60"], +[-37.8018923667, 175.2321304333, "62"], +[-37.7993851333, 175.2325766667, "32A"], +[-37.7996203, 175.2328250333, "34"], +[-37.7994369, 175.2328803333, "32"], +[-37.7980258167, 175.2339148333, "8"], +[-37.7684064833, 175.2892999333, "1"], +[-37.7681670833, 175.2890733833, "3A"], +[-37.7685176333, 175.2895977, "2"], +[-37.7679455, 175.2896341, "7A"], +[-37.7682366167, 175.2893598833, "3"], +[-37.7684069333, 175.28972025, "4"], +[-37.7681584667, 175.2894796, "5"], +[-37.7682783667, 175.28977265, "6"], +[-37.7681636667, 175.28965085, "7"], +[-37.7420630333, 175.2873363667, "4"], +[-37.7419157833, 175.2881134667, "10"], +[-37.7421398, 175.2870995333, "2"], +[-37.7417787167, 175.2878003667, "12"], +[-37.7420114667, 175.28757935, "6"], +[-37.7416307667, 175.28760395, "11"], +[-37.7413936833, 175.2875382333, "9"], +[-37.7414643833, 175.2872792167, "7"], +[-37.7415478833, 175.2871186667, "5A"], +[-37.7417768667, 175.2872843, "3"], +[-37.7419848, 175.28784445, "8"], +[-37.74140695, 175.2870572333, "5B"], +[-37.7412877, 175.2870373167, "5C"], +[-37.7412512, 175.2874366667, "9A"], +[-37.7291808667, 175.2769830667, "6"], +[-37.7294383333, 175.2770647167, "3"], +[-37.7292214333, 175.2771813333, "4"], +[-37.7294156667, 175.27686705, "5"], +[-37.7292845333, 175.2773690667, "2"], +[-37.7292875667, 175.2767953, "7"], +[-37.7291531167, 175.2768133833, "8"], +[-37.7319010833, 175.2370056167, "12"], +[-37.7325400167, 175.2374754333, "11"], +[-37.7326829167, 175.2375931667, "13"], +[-37.7316283667, 175.2380645167, "3"], +[-37.7315547, 175.2381120167, "1"], +[-37.7328093833, 175.23754575, "15"], +[-37.7319677833, 175.2369728833, "14"], +[-37.7321398667, 175.23702005, "16"], +[-37.7322624333, 175.2373566833, "9"], +[-37.7327357333, 175.23727395, "24"], +[-37.7329124833, 175.23728465, "21"], +[-37.7316915667, 175.2374295667, "6"], +[-37.7326598833, 175.2372365167, "22"], +[-37.73249365, 175.2371629333, "20"], +[-37.7323168167, 175.23708735, "18"], +[-37.7317624667, 175.2371940167, "8"], +[-37.7319350333, 175.2374757333, "7"], +[-37.7314253333, 175.23785, "2"], +[-37.7315972333, 175.2376544, "4"], +[-37.73185145, 175.2370406, "10"], +[-37.7318776833, 175.2376302167, "5"], +[-37.7329534333, 175.2374140167, "19"], +[-37.7330083333, 175.2376354, "17"], +[-37.8201352833, 175.33128925, "20"], +[-37.82138145, 175.3317201, "21C"], +[-37.8198532167, 175.3304799667, "22"], +[-37.8210341, 175.3318772667, "21D"], +[-37.8206965667, 175.3313645833, "21A"], +[-37.8210679667, 175.3315461333, "21B"], +[-37.8202971667, 175.3310300333, "24"], +[-37.8203743333, 175.3328903667, "6"], +[-37.8198369, 175.3326928667, "10"], +[-37.82008605, 175.3323019, "12"], +[-37.8201365333, 175.3317177667, "16"], +[-37.8205887167, 175.3324998833, "9"], +[-37.8208113167, 175.33276315, "5"], +[-37.8209251667, 175.3331664833, "3"], +[-37.7653243167, 175.2875950833, "9A"], +[-37.76603485, 175.2877790333, "10A"], +[-37.7659371, 175.2881758667, "14"], +[-37.7661574667, 175.2873062667, "4A"], +[-37.7659926167, 175.2868791833, "2"], +[-37.7658146167, 175.2877378833, "10"], +[-37.7653221833, 175.2876997667, "11A"], +[-37.7654946667, 175.2878014, "11"], +[-37.7658023, 175.28787495, "12"], +[-37.7652104333, 175.2881183667, "13B"], +[-37.7654976333, 175.2869806333, "1A"], +[-37.7652696167, 175.2879156333, "13A"], +[-37.7655069167, 175.2879587167, "15"], +[-37.7657106, 175.2880221333, "16"], +[-37.76559745, 175.28805425, "17"], +[-37.7656733333, 175.2870927, "1"], +[-37.7654306167, 175.2871870167, "3A"], +[-37.7656428167, 175.2872730667, "3"], +[-37.7659468333, 175.2871914, "4"], +[-37.7659040833, 175.2873745333, "6"], +[-37.7655988167, 175.2874454, "7A"], +[-37.765865, 175.2875321333, "8"], +[-37.7653657667, 175.2874298667, "7B"], +[-37.7655489, 175.2876590167, "9"], +[-37.7615937833, 175.2656547333, "3"], +[-37.7615471333, 175.26485465, "13"], +[-37.7613694167, 175.2656002, "4"], +[-37.7614259667, 175.2647079833, "15"], +[-37.7610033167, 175.2650233833, "10"], +[-37.7613035, 175.2645128, "17"], +[-37.7617008167, 175.2649496333, "11"], +[-37.7610875333, 175.2643632833, "19"], +[-37.7616298167, 175.2654605833, "5"], +[-37.7616681833, 175.2652439167, "7"], +[-37.7611887167, 175.2651199333, "8"], +[-37.76140665, 175.2652175, "6"], +[-37.7611825333, 175.2648922167, "12"], +[-37.7618172667, 175.2650856833, "9"], +[-37.7837416333, 175.2805793167, "608"], +[-37.7981466667, 175.3381728667, "11"], +[-37.7966502667, 175.3362852167, "7A"], +[-37.7977262667, 175.33753145, "9"], +[-37.7985067, 175.33755405, "3"], +[-37.7975929, 175.3370345833, "7D"], +[-37.79701505, 175.3365813, "7C"], +[-37.79692145, 175.3397964, "23B"], +[-37.7974199333, 175.33990805, "26A"], +[-37.7978759833, 175.3394314833, "22"], +[-37.7975652, 175.3392003833, "23A"], +[-37.7976708333, 175.34008575, "26B"], +[-37.7988598833, 175.3378039667, "4"], +[-37.7967714667, 175.3400281833, "25"], +[-37.7977534333, 175.3388451167, "17"], +[-37.7981272833, 175.3390108667, "16"], +[-37.7978596833, 175.3385979167, "15"], +[-37.7984639833, 175.3384990167, "14"], +[-37.7988150833, 175.3388660333, "14A"], +[-37.79855315, 175.33923015, "14B"], +[-37.76652175, 175.23544145, "17"], +[-37.7665917167, 175.2365249833, "12"], +[-37.7665155333, 175.2358791333, "9"], +[-37.7663099167, 175.2360619833, "18"], +[-37.7668692833, 175.23670435, "8"], +[-37.7662085, 175.2352639167, "26"], +[-37.7665279, 175.2352646167, "19"], +[-37.76671685, 175.2356474, "13"], +[-37.7667271167, 175.2362786667, "5"], +[-37.7663149, 175.2351837, "23"], +[-37.7663747, 175.2362669333, "16"], +[-37.7662101167, 175.2354375667, "24"], +[-37.7665668667, 175.2361189167, "7"], +[-37.7662318333, 175.2356281333, "22"], +[-37.7664712333, 175.23642435, "14"], +[-37.7664737167, 175.2356686167, "15"], +[-37.7671319667, 175.2367224833, "6"], +[-37.7662736333, 175.2358354667, "20"], +[-37.7670942, 175.2369498333, "4"], +[-37.7667450833, 175.2357705, "11"], +[-37.7664502, 175.2351880167, "21"], +[-37.7668709667, 175.2363669333, "3"], +[-37.76718065, 175.2369719, "2"], +[-37.7667205333, 175.2366029833, "10"], +[-37.7882036333, 175.2787174333, "9"], +[-37.7593036, 175.2945279333, "10"], +[-37.75975805, 175.2939213167, "5"], +[-37.7592756667, 175.29419535, "11"], +[-37.7598039667, 175.2939467833, "5A"], +[-37.7592302333, 175.29436465, "12"], +[-37.7596296167, 175.2945699, "6"], +[-37.7599528167, 175.29431005, "1"], +[-37.7597558, 175.2946171167, "4"], +[-37.7598434167, 175.2942512667, "3"], +[-37.7596338333, 175.2941444333, "7"], +[-37.7594899833, 175.2945246833, "8"], +[-37.7594316167, 175.29407565, "9"], +[-37.7754455167, 175.2145347667, "93"], +[-37.7738891, 175.2100202, "44"], +[-37.7753568667, 175.2143244, "91"], +[-37.7712829667, 175.2097378167, "17"], +[-37.7733984667, 175.21039055, "41"], +[-37.7714829167, 175.2085010167, "15"], +[-37.7708018333, 175.2098266833, "17A"], +[-37.7760568667, 175.2177005, "124"], +[-37.77622825, 175.2122972333, "78"], +[-37.7710092833, 175.2072056667, "2"], +[-37.77546005, 175.2132997167, "81"], +[-37.7721833833, 175.2091338667, "29"], +[-37.7829356167, 175.2987504833, "11-19"], +[-37.7822377667, 175.2988287167, "12-20"], +[-37.7895660833, 175.2551587167, "4"], +[-37.8007219833, 175.2946678167, "11"], +[-37.8010293333, 175.2947690333, "10"], +[-37.80090135, 175.29528955, "4"], +[-37.80097805, 175.2949475167, "8"], +[-37.8003800167, 175.2950805167, "5B"], +[-37.8006467333, 175.2949988667, "7"], +[-37.8008996167, 175.2944860667, "8/20-26/20"], +[-37.8006802, 175.2948486667, "9"], +[-37.8005418833, 175.2956100833, "1"], +[-37.8008570667, 175.29545855, "2"], +[-37.8005796833, 175.2953401, "3"], +[-37.80061455, 175.2951683333, "5A"], +[-37.80093925, 175.2951156167, "6"], +[-37.77669205, 175.2593352833, "155A"], +[-37.7748533, 175.2602367333, "105"], +[-37.7777557833, 175.2583528833, "174A"], +[-37.7720557333, 175.2641363, "33"], +[-37.7778786833, 175.2582237333, "174B"], +[-37.7740542333, 175.2595851667, "106A"], +[-37.7776571167, 175.2583373333, "172B"], +[-37.7713133667, 175.2648692, "18"], +[-37.7797581167, 175.25839845, "212A"], +[-37.7712239667, 175.2650563333, "14"], +[-37.7798145667, 175.2582879167, "212B"], +[-37.77219795, 175.2645120167, "1/29A"], +[-37.7792276, 175.2585608167, "204"], +[-37.7717199667, 175.2648987833, "19A"], +[-37.7812436667, 175.2581346167, "236A"], +[-37.7727457167, 175.2614572667, "70A"], +[-37.7812892333, 175.2579291167, "236B"], +[-37.7716088333, 175.26425765, "26"], +[-37.7814339, 175.2580918833, "236"], +[-37.7729616167, 175.2620754333, "65"], +[-37.7745764833, 175.2586465333, "116"], +[-37.7743043167, 175.2599499667, "103"], +[-37.7743359833, 175.2590394667, "112"], +[-37.7730983, 175.2618648, "67"], +[-37.7743354167, 175.2588233333, "112A"], +[-37.7711502667, 175.2652144833, "12"], +[-37.7729222833, 175.2614362833, "76"], +[-37.77170535, 175.2640554833, "30"], +[-37.7728541833, 175.2616153667, "70"], +[-37.7715041, 175.2644592833, "24"], +[-37.7718999667, 175.2644661833, "29"], +[-37.7761167333, 175.25929325, "141A"], +[-37.7732949833, 175.2615553833, "73"], +[-37.7730896333, 175.2611214333, "78"], +[-37.7733948, 175.2607072833, "84"], +[-37.7711785333, 175.2643708333, "22"], +[-37.77443335, 175.2597348833, "109"], +[-37.7798529667, 175.2590119667, "213"], +[-37.7741468333, 175.25940755, "108"], +[-37.7777927167, 175.2586350333, "176A"], +[-37.77425715, 175.2592397833, "110"], +[-37.7724098167, 175.2630114333, "47"], +[-37.7745313833, 175.25958075, "111"], +[-37.7722035, 175.2626994, "50"], +[-37.77467985, 175.25976185, "111A"], +[-37.77448615, 175.2590875333, "114"], +[-37.77466415, 175.2601599333, "103A"], +[-37.7751817667, 175.2595108167, "123A"], +[-37.7713999833, 175.26469655, "20"], +[-37.7779326, 175.2584915, "176B"], +[-37.7754960167, 175.2588645833, "134"], +[-37.7776806833, 175.2585377667, "172A"], +[-37.7755808, 175.2592552667, "135"], +[-37.7726981833, 175.2618992667, "68"], +[-37.77595735, 175.2596046167, "139A"], +[-37.7721024, 175.2646823, "2/29A"], +[-37.7760750167, 175.2597593, "139B"], +[-37.7732010833, 175.26170375, "69"], +[-37.7780569833, 175.258811, "180"], +[-37.7719758667, 175.2651362333, "19"], +[-37.7781959333, 175.2592800833, "181"], +[-37.7718018, 175.2647034833, "21"], +[-37.77832485, 175.2592484667, "183"], +[-37.7762641667, 175.2596178833, "143A"], +[-37.7781725833, 175.2587612, "184"], +[-37.7725271167, 175.2627878, "49"], +[-37.7712705833, 175.2657016833, "11"], +[-37.77391915, 175.2594752333, "106"], +[-37.78105175, 175.2586247667, "223"], +[-37.7712694333, 175.26414505, "24A"], +[-37.77645945, 175.2586993, "150"], +[-37.77628205, 175.2593697, "145A"], +[-37.77627365, 175.2587242167, "146"], +[-37.7747175667, 175.2600631833, "107"], +[-37.7763516, 175.2587056833, "148"], +[-37.7796608667, 175.2588962333, "209A"], +[-37.7801820667, 175.2583310167, "218"], +[-37.7751988, 175.2597185167, "123B"], +[-37.7799615667, 175.2581300833, "216"], +[-37.7720229833, 175.2649328833, "23"], +[-37.7799149167, 175.2583760333, "214"], +[-37.7794721, 175.2581831, "208A"], +[-37.7820996, 175.2580763333, "256"], +[-37.78198625, 175.2584975833, "253"], +[-37.7809122833, 175.2581654167, "2/230"], +[-37.77478155, 175.2594305333, "119"], +[-37.77466, 175.2590616, "118"], +[-37.77962265, 175.2591367333, "207"], +[-37.7747484833, 175.2586593333, "120"], +[-37.7749972667, 175.25939625, "121"], +[-37.7748446667, 175.2590096167, "122"], +[-37.7721514667, 175.26395245, "37"], +[-37.7734188333, 175.2613973833, "79"], +[-37.77326265, 175.2608926833, "80"], +[-37.7736684833, 175.2612633667, "81A"], +[-37.7735408833, 175.2612102833, "81"], +[-37.7736320333, 175.26105965, "83"], +[-37.7735108833, 175.2605085833, "88"], +[-37.77333935, 175.2602800833, "90"], +[-37.7731651333, 175.2606913333, "82"], +[-37.7735974, 175.2602868667, "92"], +[-37.77386905, 175.2606409833, "91"], +[-37.7739555333, 175.2604475833, "93"], +[-37.77405005, 175.26026115, "95"], +[-37.7744853667, 175.2604443833, "97"], +[-37.7742110667, 175.2600990833, "99B"], +[-37.7743486, 175.2602648, "99"], +[-37.7745149, 175.2603589, "97A"], +[-37.7751667, 175.2593321667, "123"], +[-37.7750175667, 175.2589718333, "124"], +[-37.7752593667, 175.2589290167, "126"], +[-37.7759897, 175.2591902, "141"], +[-37.7761838, 175.2594704167, "143"], +[-37.7762454, 175.2591109833, "145"], +[-37.77651545, 175.2590486667, "149"], +[-37.7766894833, 175.2591191667, "153"], +[-37.7768149833, 175.25922275, "155"], +[-37.7770734167, 175.2593872, "161"], +[-37.7772932833, 175.2594615833, "165"], +[-37.77744855, 175.2594566, "167"], +[-37.77758845, 175.2594035833, "169"], +[-37.7776465667, 175.2589185833, "170"], +[-37.7780166167, 175.2593184, "177"], +[-37.77785945, 175.2588815833, "178"], +[-37.7784687333, 175.2592007667, "185"], +[-37.7786069, 175.2591864667, "189"], +[-37.7787547167, 175.2591566667, "191"], +[-37.77889865, 175.2591030667, "193"], +[-37.7790494833, 175.2590808833, "197"], +[-37.7791905833, 175.2590443, "199"], +[-37.7793265167, 175.2590031667, "201"], +[-37.77900785, 175.2585847167, "202"], +[-37.7794726667, 175.2589692667, "203"], +[-37.7795911333, 175.2592719833, "205"], +[-37.7794109167, 175.2584760333, "206"], +[-37.7796063833, 175.25849175, "208"], +[-37.7810206167, 175.2581469333, "230"], +[-37.7826300833, 175.25793375, "262"], +[-37.7800190167, 175.25874085, "215"], +[-37.7802083833, 175.2587086, "217"], +[-37.7797554667, 175.2588840833, "209"], +[-37.7720891833, 175.2629831, "48"], +[-37.7744956333, 175.2587718167, "114A"], +[-37.7753527333, 175.2592745167, "129A"], +[-37.7753651333, 175.25936305, "129B"], +[-37.7753854667, 175.2595265333, "129D"], +[-37.7753742833, 175.25943655, "129C"], +[-37.7826642833, 175.2583157333, "1/259-6/259"], +[-37.7638305667, 175.2956354333, "7"], +[-37.7632214, 175.2951433333, "15"], +[-37.7634586167, 175.2974114833, "45"], +[-37.7633359333, 175.2959939, "14B"], +[-37.7632661833, 175.2969117333, "22A"], +[-37.7642698, 175.2957316833, "1"], +[-37.7633626, 175.2967725, "22B"], +[-37.76352475, 175.2959097167, "14A"], +[-37.7635301833, 175.2955900333, "11"], +[-37.7642573167, 175.2961331833, "2"], +[-37.7636894333, 175.2964493, "10"], +[-37.7631294, 175.29682315, "20"], +[-37.7636897667, 175.2974856, "47"], +[-37.7631054167, 175.2956451667, "19"], +[-37.7633803833, 175.2954952333, "13"], +[-37.7632331667, 175.2964165167, "18"], +[-37.7631362, 175.2972544167, "41"], +[-37.7630705333, 175.2958603833, "21"], +[-37.7641039167, 175.2977035167, "51B"], +[-37.7637293, 175.2971129667, "28"], +[-37.7636766333, 175.2960043833, "12"], +[-37.76389785, 175.2970977167, "30"], +[-37.7632039167, 175.29552785, "17"], +[-37.7641638833, 175.2969053833, "34"], +[-37.76274745, 175.2958545667, "23"], +[-37.7640541833, 175.2970081, "32"], +[-37.76329265, 175.2962194667, "16"], +[-37.76428745, 175.29681485, "36"], +[-37.7641278, 175.2956955167, "3"], +[-37.7627847167, 175.2967707667, "31"], +[-37.7630288167, 175.2960455167, "25"], +[-37.7627572667, 175.2969263667, "33"], +[-37.7639816667, 175.2960795, "6"], +[-37.7625048667, 175.2971627833, "35"], +[-37.763268, 175.2973290833, "43"], +[-37.7629788167, 175.2962335833, "27"], +[-37.76282225, 175.2971143833, "37"], +[-37.7628992833, 175.2964019, "29"], +[-37.76355495, 175.2970511, "26"], +[-37.7639643, 175.29740945, "51"], +[-37.7634160833, 175.2969825167, "24"], +[-37.7641314833, 175.2973586833, "53"], +[-37.76297315, 175.2972145333, "39"], +[-37.7642259167, 175.2972737667, "55"], +[-37.7638706167, 175.2974922833, "49"], +[-37.7643788333, 175.2971302167, "57"], +[-37.7644941667, 175.2970207, "59"], +[-37.7641247333, 175.2961209833, "4"], +[-37.7639670833, 175.2956666667, "5"], +[-37.7638432667, 175.2960393667, "8"], +[-37.7636789667, 175.2955983333, "9"], +[-37.7961211333, 175.2573961667, "8"], +[-37.7961708833, 175.2575623, "4"], +[-37.7961571167, 175.2559798167, "19"], +[-37.79581765, 175.2559420667, "20"], +[-37.795843, 175.25607875, "18"], +[-37.7957103333, 175.2564073833, "16A"], +[-37.7964699167, 175.2572615, "3"], +[-37.7965491167, 175.2576680167, "1A"], +[-37.7962102333, 175.2577306167, "2A"], +[-37.7959815167, 175.2566467833, "12"], +[-37.7962346167, 175.2562972167, "15"], +[-37.7957652, 175.2566024, "14A"], +[-37.7962005167, 175.2561449, "17"], +[-37.79593815, 175.2564299333, "14"], +[-37.7960580333, 175.2577914167, "2D"], +[-37.79649935, 175.2574683167, "1"], +[-37.7962680167, 175.2564785333, "13"], +[-37.7959027, 175.2562922667, "16"], +[-37.80274795, 175.26780355, "11"], +[-37.8033979333, 175.2664108833, "41"], +[-37.8030093833, 175.2679219833, "19"], +[-37.8032725167, 175.2679619667, "23"], +[-37.8034052333, 175.2665630667, "39"], +[-37.8034093167, 175.2667699667, "37"], +[-37.8032804833, 175.2663599333, "43"], +[-37.8031301833, 175.2664020667, "34"], +[-37.8030508833, 175.26712225, "24"], +[-37.8029538167, 175.2668938667, "26"], +[-37.8031614333, 175.26749965, "29"], +[-37.8033722667, 175.26716045, "33"], +[-37.80318, 175.2667905667, "28"], +[-37.80295405, 175.2663754333, "32"], +[-37.8032611167, 175.2677103333, "27"], +[-37.8031313, 175.2679574, "21"], +[-37.8030727667, 175.2665678167, "30"], +[-37.8027508167, 175.26806555, "9"], +[-37.8034153167, 175.2678880167, "25"], +[-37.8033081167, 175.2673296333, "31"], +[-37.8034009333, 175.2669738333, "35"], +[-37.8029331, 175.2677912833, "17"], +[-37.8026234667, 175.2665178833, "16"], +[-37.8028720167, 175.2671390333, "22"], +[-37.8026010833, 175.2663054833, "14"], +[-37.8020625, 175.2670928167, "2"], +[-37.8026258167, 175.26677285, "18"], +[-37.80220695, 175.2670862333, "4"], +[-37.80286385, 175.2675172333, "15"], +[-37.8026592333, 175.2674701667, "13"], +[-37.802275, 175.2674828833, "3"], +[-37.8024583333, 175.2674793167, "5"], +[-37.8026775167, 175.2670943333, "20"], +[-37.80243975, 175.2670793833, "6"], +[-37.8024322833, 175.2665261167, "10"], +[-37.80243855, 175.2667763, "8"], +[-37.8024598167, 175.2663057333, "12"], +[-37.7876157167, 175.2514830333, "1"], +[-37.7886423167, 175.2510749333, "7"], +[-37.78788115, 175.25121315, "6"], +[-37.75944195, 175.2695159667, "16"], +[-37.7579068333, 175.27135335, "39"], +[-37.7596561333, 175.2697538667, "16B"], +[-37.7593962667, 175.2702401167, "22A"], +[-37.75952845, 175.2676912167, "1A"], +[-37.75874385, 175.2698884167, "21"], +[-37.7597277833, 175.2686055167, "10"], +[-37.75833845, 175.27137585, "38"], +[-37.7584486833, 175.2716318333, "40A"], +[-37.7579766167, 175.2711891833, "37"], +[-37.7594993, 175.2678102167, "1B"], +[-37.7586387667, 175.2700743833, "23"], +[-37.7589287, 175.2703444333, "26"], +[-37.75914175, 175.2700083333, "22"], +[-37.75926425, 175.2690342333, "11"], +[-37.7596106833, 175.2702929333, "20A"], +[-37.7586458667, 175.2708637167, "32"], +[-37.758955, 175.2707876667, "30A"], +[-37.7581253167, 175.2708838333, "33"], +[-37.7589331833, 175.2695738, "17A"], +[-37.7577908, 175.2717880667, "45"], +[-37.75873045, 175.2693466833, "17B"], +[-37.7599714167, 175.2682864833, "8"], +[-37.7577657833, 175.2720401667, "47"], +[-37.7584620333, 175.2703592333, "27"], +[-37.7594875167, 175.2679860333, "3"], +[-37.75935605, 175.26966715, "18"], +[-37.7594632667, 175.2681815, "5"], +[-37.7600270667, 175.2685604667, "10B"], +[-37.7597944667, 175.26812325, "6"], +[-37.7582394833, 175.27071635, "31"], +[-37.7589092167, 175.2710121833, "32A"], +[-37.7591362167, 175.2704657167, "26A"], +[-37.7597727, 175.26837395, "8A"], +[-37.7585547167, 175.2710115167, "34"], +[-37.7598431833, 175.2678243333, "4"], +[-37.7600168833, 175.26877295, "10A"], +[-37.75902025, 175.26941735, "15"], +[-37.75786035, 175.2714994, "1/41-6/41"], +[-37.7590504833, 175.2701802833, "24"], +[-37.7588309167, 175.2697303167, "19"], +[-37.7580541333, 175.2710362833, "35"], +[-37.7579176333, 175.2708303167, "35A"], +[-37.7580074667, 175.27065115, "33A"], +[-37.7585497, 175.2702253833, "25"], +[-37.7582667333, 175.2715774667, "40"], +[-37.7582047833, 175.2718187333, "42"], +[-37.759125, 175.2692625833, "13"], +[-37.75887265, 175.2705347333, "28"], +[-37.7592571333, 175.26980765, "20"], +[-37.7587364, 175.2707004333, "30"], +[-37.7584600167, 175.2711729667, "36"], +[-37.7305097333, 175.2499554333, "1"], +[-37.7303186167, 175.2496016, "5"], +[-37.7302965333, 175.2500797667, "2"], +[-37.7305167667, 175.2496214, "3"], +[-37.7301376, 175.24940835, "7"], +[-37.7300507167, 175.2491144, "9"], +[-37.7896523333, 175.3312969667, "38"], +[-37.7881634167, 175.3334760667, "68B"], +[-37.7904744667, 175.3290090833, "7A"], +[-37.7879536833, 175.3335170333, "68A"], +[-37.7902166833, 175.3300685167, "19"], +[-37.7890293667, 175.3315356167, "33A"], +[-37.7903209333, 175.3298546333, "15"], +[-37.7889155833, 175.33152415, "33B"], +[-37.7891086833, 175.3310316167, "29"], +[-37.78948385, 175.3319270167, "42C"], +[-37.7908749333, 175.3295468, "10"], +[-37.7889193167, 175.3323978167, "46"], +[-37.7904038, 175.3296807833, "13A"], +[-37.78904185, 175.3326575167, "48"], +[-37.7905083833, 175.3292513333, "7"], +[-37.79097465, 175.3297123833, "12A"], +[-37.7907325667, 175.3302019, "20"], +[-37.7911565667, 175.3297123667, "12B"], +[-37.79039615, 175.3304223333, "24"], +[-37.7898188333, 175.3315050333, "36"], +[-37.7904856833, 175.3307330833, "30"], +[-37.7885178167, 175.3328783833, "56"], +[-37.7880334167, 175.3331617, "66"], +[-37.7879205833, 175.3337840333, "70"], +[-37.7906289167, 175.3284540167, "1"], +[-37.7881887333, 175.3333315333, "62A"], +[-37.79076915, 175.3292764167, "6"], +[-37.7901702667, 175.3302417667, "21A"], +[-37.7905200667, 175.3306529667, "26"], +[-37.7900222, 175.3304398333, "21"], +[-37.7906283167, 175.3298984167, "16"], +[-37.79049805, 175.3301873333, "22"], +[-37.7907307333, 175.3289119, "4"], +[-37.7899478167, 175.3305416, "23"], +[-37.7902349833, 175.3307136167, "28"], +[-37.78987165, 175.33113955, "32"], +[-37.7902118333, 175.3295355, "13B"], +[-37.7898722, 175.3314480167, "34"], +[-37.7900483667, 175.3298055667, "17"], +[-37.7891637667, 175.3313156667, "31"], +[-37.7883468, 175.3329848, "60"], +[-37.7887727333, 175.33143, "35A"], +[-37.79076115, 175.3301386333, "18"], +[-37.7887175333, 175.3312981333, "35B"], +[-37.79071615, 175.3296714, "14"], +[-37.7895665167, 175.33180685, "42A"], +[-37.7892695, 175.3311511, "27"], +[-37.7892669, 175.3317937333, "42B"], +[-37.7898561167, 175.3306581833, "25"], +[-37.7893614667, 175.3316188833, "42"], +[-37.7881893333, 175.3330615667, "62"], +[-37.78915885, 175.3319786333, "44A"], +[-37.7904645333, 175.3295111833, "11"], +[-37.78906095, 175.3321523167, "44"], +[-37.7894477333, 175.33146595, "40"], +[-37.7884176333, 175.3325165167, "41"], +[-37.7891220833, 175.3327977333, "50"], +[-37.7882543667, 175.3326277167, "43"], +[-37.7889442667, 175.33276095, "52"], +[-37.7886802833, 175.3327446, "54"], +[-37.79097155, 175.3291657833, "4B"], +[-37.7908129833, 175.3290642167, "4A"], +[-37.7921079833, 175.2891788833, "2/102"], +[-37.79289865, 175.2888295667, "22/102"], +[-37.7923348667, 175.28883365, "12/102"], +[-37.792856, 175.2887939, "21/102"], +[-37.7923735333, 175.2887552667, "13/102"], +[-37.7921473, 175.2892019833, "3/102"], +[-37.7921897333, 175.2892256667, "4/102"], +[-37.7924675667, 175.2893705833, "9/102"], +[-37.79242365, 175.2886781667, "14/102"], +[-37.7928079167, 175.28875805, "20/102"], +[-37.7924065333, 175.2893474667, "8/102"], +[-37.7922487, 175.2892585833, "5/102"], +[-37.7899617333, 175.2859113667, "1"], +[-37.7929501667, 175.2895968833, "120-140"], +[-37.7922935167, 175.2892878, "6/102"], +[-37.7934875167, 175.2895761167, "150"], +[-37.7923513667, 175.2893176833, "7/102"], +[-37.7910401167, 175.2884065667, "154"], +[-37.7924410167, 175.2889404333, "16/102"], +[-37.79226065, 175.28896675, "10/102"], +[-37.7924752167, 175.2889826167, "17/102"], +[-37.7920675667, 175.2891605333, "1/102"], +[-37.7924097, 175.2888844333, "15/102"], +[-37.79272245, 175.28869355, "18/102"], +[-37.7897496, 175.2863477833, "21"], +[-37.7929412667, 175.2888652, "23/102"], +[-37.79229645, 175.2888983833, "11/102"], +[-37.7927651833, 175.2887258, "19/102"], +[-37.7350494, 175.2619092, "28"], +[-37.7354631167, 175.2623617833, "38"], +[-37.7344692667, 175.2622739833, "20"], +[-37.7350554833, 175.2622731167, "30"], +[-37.7334104167, 175.2619331, "12"], +[-37.7354021833, 175.2621142167, "34"], +[-37.7338079167, 175.2622344833, "7"], +[-37.7352202, 175.2623600167, "32"], +[-37.7351506167, 175.2626005333, "21"], +[-37.7355479167, 175.2621085833, "36"], +[-37.7342301, 175.2625035833, "11"], +[-37.7348582, 175.26192555, "26"], +[-37.7331118833, 175.2626850667, "4"], +[-37.7331372167, 175.2624739833, "6"], +[-37.7347785833, 175.2626473333, "17"], +[-37.7331910167, 175.2622704333, "8"], +[-37.73315105, 175.26204555, "10"], +[-37.73343385, 175.2625736, "3"], +[-37.7331334167, 175.2628659, "2"], +[-37.7345786333, 175.2626372833, "15"], +[-37.7343405667, 175.26219035, "18"], +[-37.7334841667, 175.2623375833, "5"], +[-37.73542035, 175.2625712, "23"], +[-37.7346763667, 175.2622911667, "22"], +[-37.73489565, 175.2626510667, "19"], +[-37.73442965, 175.2625839, "13"], +[-37.7346547667, 175.2618686667, "24"], +[-37.7339515667, 175.2623348167, "9"], +[-37.7281481833, 175.2546984833, "106A"], +[-37.7357353167, 175.2496695667, "3"], +[-37.7349431167, 175.2497678, "16"], +[-37.73284345, 175.2490101333, "43"], +[-37.73364125, 175.24893895, "27"], +[-37.7298234333, 175.2514697, "70"], +[-37.7284683833, 175.25357265, "94"], +[-37.7283206, 175.2540165833, "98"], +[-37.72835935, 175.2529128667, "95"], +[-37.7280959667, 175.2535729, "101"], +[-37.7299957833, 175.25051485, "77"], +[-37.7345128667, 175.2490175667, "15"], +[-37.7281695833, 175.2533500333, "99"], +[-37.7358917833, 175.2498246333, "1"], +[-37.73261605, 175.2501832833, "38A"], +[-37.7336276833, 175.24854915, "29"], +[-37.7326584667, 175.2502876667, "38"], +[-37.7332787667, 175.2493857333, "30"], +[-37.7317210333, 175.2497896167, "50"], +[-37.72810145, 175.2549175833, "106"], +[-37.7318946667, 175.24924885, "51"], +[-37.7287248667, 175.25215785, "91"], +[-37.7319077, 175.24972165, "48"], +[-37.7326734667, 175.2494787167, "34"], +[-37.7320418, 175.2492178833, "49"], +[-37.7301227333, 175.2503976167, "75"], +[-37.72920725, 175.2520094333, "78"], +[-37.7293380833, 175.2517921, "76"], +[-37.7347975667, 175.2496884667, "18"], +[-37.7315342167, 175.2494193667, "55"], +[-37.7346304833, 175.2496206167, "20"], +[-37.73407515, 175.24894105, "19"], +[-37.7311556, 175.2493027, "59"], +[-37.7280366833, 175.253779, "103"], +[-37.7308107333, 175.2503292833, "60"], +[-37.7284484833, 175.2526878333, "93"], +[-37.73110855, 175.2493424333, "61"], +[-37.7280672667, 175.2551473667, "108"], +[-37.7306548333, 175.2504381, "62"], +[-37.7330450833, 175.24943065, "32"], +[-37.7311277, 175.24963385, "63"], +[-37.7331707333, 175.24938945, "32B"], +[-37.7280255, 175.255438, "110"], +[-37.7338279667, 175.24895405, "25"], +[-37.7280098333, 175.2556975, "112"], +[-37.7325599167, 175.2497558333, "42"], +[-37.72797555, 175.2559353667, "114"], +[-37.7357158667, 175.2502413333, "6"], +[-37.7277312667, 175.2551734, "115"], +[-37.734691, 175.2490790167, "13"], +[-37.7279303333, 175.2561809667, "116"], +[-37.7340666833, 175.24853615, "21"], +[-37.7276927, 175.25540245, "117"], +[-37.73385065, 175.2485472833, "23"], +[-37.7278551833, 175.2564175667, "118"], +[-37.7321037333, 175.24963695, "46"], +[-37.7276798333, 175.2556279667, "119"], +[-37.7334677, 175.2493771667, "28"], +[-37.7276468333, 175.2558761833, "121"], +[-37.7313111667, 175.2499895833, "54"], +[-37.72781215, 175.25660175, "120"], +[-37.73116355, 175.2500902, "56"], +[-37.7276056, 175.2561032167, "123"], +[-37.7282686, 175.2531418333, "97"], +[-37.7273852667, 175.2561861833, "125"], +[-37.7310033, 175.2501931167, "58"], +[-37.72755345, 175.2563921333, "127"], +[-37.73524775, 175.2499532333, "12"], +[-37.7307025167, 175.2494975, "67B"], +[-37.7313334333, 175.2495153, "57"], +[-37.73077665, 175.2494561833, "67A"], +[-37.7282562, 175.2542451667, "100"], +[-37.73300435, 175.2483794333, "39B"], +[-37.7294737833, 175.2516116333, "74"], +[-37.7278580667, 175.2544647, "109"], +[-37.7355607, 175.2501291, "8"], +[-37.7278086833, 175.2546961167, "111"], +[-37.73434025, 175.2489591667, "17"], +[-37.7277745333, 175.2549235167, "113"], +[-37.7334112, 175.2489315667, "33"], +[-37.7307616167, 175.2498553167, "69"], +[-37.7296323333, 175.2514044667, "72"], +[-37.73271045, 175.2497878833, "36"], +[-37.7331824833, 175.2485167833, "37"], +[-37.7309630167, 175.2497309167, "65"], +[-37.7353854833, 175.2494761833, "7"], +[-37.7317254833, 175.24934585, "53"], +[-37.7336523667, 175.2493903833, "26"], +[-37.7314846, 175.2498880833, "52"], +[-37.7334191167, 175.2485424667, "31"], +[-37.7279629333, 175.2540192833, "105"], +[-37.7322415667, 175.2491476333, "47"], +[-37.73480295, 175.2491692833, "11"], +[-37.7281968167, 175.2544610667, "102"], +[-37.7355514667, 175.2495660833, "5"], +[-37.7352605833, 175.2494114, "9"], +[-37.7283968, 175.25379915, "96"], +[-37.7298313, 175.25119395, "68"], +[-37.7329951167, 175.2485197667, "39"], +[-37.7322901333, 175.2495841167, "44"], +[-37.7332091667, 175.24896145, "35"], +[-37.7326072167, 175.24991135, "40"], +[-37.7279034167, 175.2542428333, "107"], +[-37.7354076333, 175.2500364, "10"], +[-37.7351090667, 175.2498609667, "14"], +[-37.73300005, 175.2489818333, "41"], +[-37.7283496333, 175.2395394333, "13"], +[-37.7285443667, 175.2401446667, "10"], +[-37.7284942167, 175.23970385, "9"], +[-37.7281874833, 175.2393025833, "19"], +[-37.7292013667, 175.2397641167, "2"], +[-37.7281909167, 175.2398563667, "16"], +[-37.7287338167, 175.23977285, "5"], +[-37.7289199667, 175.240077, "6"], +[-37.7291009167, 175.23991255, "4"], +[-37.7289643333, 175.23956205, "1"], +[-37.7280301, 175.2396568167, "18"], +[-37.7278839333, 175.2394657333, "20"], +[-37.7287262333, 175.2401425667, "8"], +[-37.7258175333, 175.2429908167, "4"], +[-37.7256427333, 175.2434021, "8"], +[-37.7257432833, 175.2432135333, "6"], +[-37.7256756333, 175.2427756667, "1"], +[-37.7255101, 175.2432585667, "7"], +[-37.7255208667, 175.2429606833, "3"], +[-37.7259123667, 175.2427833667, "2"], +[-37.7253518833, 175.24315985, "5"], +[-37.7763335833, 175.2816306, "20"], +[-37.77676085, 175.2812912667, "19"], +[-37.7775226667, 175.28072935, "1"], +[-37.77688895, 175.2810187667, "17"], +[-37.77792695, 175.2816894833, "2"], +[-37.7764484, 175.2811418167, "25"], +[-37.7762981667, 175.2810869167, "2/29"], +[-37.7774498, 175.2817822667, "6"], +[-37.7763074667, 175.2818829833, "20A"], +[-37.7772070833, 175.2811302167, "9"], +[-37.77764105, 175.281792, "4"], +[-37.7761264333, 175.2818650333, "22"], +[-37.7761177, 175.2815105167, "26"], +[-37.7764973, 175.2816833833, "1/16-10/16"], +[-37.7773749167, 175.2814010333, "7"], +[-37.7767, 175.2817199, "1/12-6/12"], +[-37.7763589333, 175.28080685, "4/29"], +[-37.7768499667, 175.28176435, "12A-12D"], +[-37.7771187333, 175.2814627333, "13"], +[-37.7763211833, 175.28092035, "3/29"], +[-37.7769405833, 175.28138605, "15"], +[-37.7770644, 175.2809934167, "1/11-4/11"], +[-37.7766091667, 175.28119575, "21"], +[-37.77586035, 175.2809943167, "33"], +[-37.7760616, 175.2810576, "31"], +[-37.7776128833, 175.2813671667, "5"], +[-37.7775971167, 175.2810554667, "3"], +[-37.7762269167, 175.2810600667, "29A"], +[-37.7762582, 175.2808971833, "29B"], +[-37.7762793333, 175.2807754667, "29C"], +[-37.7389075, 175.2225458667, "1"], +[-37.7389376333, 175.2232597333, "6"], +[-37.7386878833, 175.2230247333, "5"], +[-37.7392379667, 175.2225964667, "2"], +[-37.781903, 175.312038, "3"], +[-37.7809738333, 175.3120922, "19"], +[-37.7820375167, 175.3120863, "1"], +[-37.7809552667, 175.3119010667, "17"], +[-37.7820226833, 175.3123770333, "2"], +[-37.7811123833, 175.3127712833, "24"], +[-37.7817623167, 175.31203115, "5"], +[-37.78103205, 175.3123788, "23"], +[-37.7819089833, 175.31233055, "4"], +[-37.7812546667, 175.3128636333, "20"], +[-37.7817634167, 175.3123103167, "6"], +[-37.7810623333, 175.3125900333, "26"], +[-37.7816364167, 175.3123159167, "8"], +[-37.7810002667, 175.3122375833, "21"], +[-37.7815766, 175.31202265, "7"], +[-37.78145915, 175.3123165167, "12"], +[-37.7815385833, 175.3125863333, "10"], +[-37.7814479667, 175.3120238333, "9"], +[-37.7812244, 175.3127334167, "18"], +[-37.78115595, 175.31251875, "16"], +[-37.7813158833, 175.31202375, "11"], +[-37.7812968, 175.3123504833, "14"], +[-37.7816694833, 175.3124382, "6A"], +[-37.7811924333, 175.3129294167, "22"], +[-37.7810826333, 175.3120422, "15"], +[-37.7811961667, 175.3120153667, "13"], +[-37.7351149333, 175.2555533833, "8"], +[-37.7352178167, 175.2553271833, "12"], +[-37.7353407167, 175.2560070333, "3"], +[-37.73560365, 175.255192, "9B"], +[-37.7350531833, 175.2553004833, "10"], +[-37.73529975, 175.2561854167, "1"], +[-37.73556525, 175.2553724167, "9A"], +[-37.7353912333, 175.2553452833, "11"], +[-37.7350498333, 175.2559155667, "4"], +[-37.7350896333, 175.2557348667, "6"], +[-37.7354029667, 175.25578555, "5"], +[-37.7355002833, 175.2555809167, "7"], +[-37.7628203167, 175.3099780833, "32"], +[-37.7631309667, 175.3068828333, "4"], +[-37.7627385667, 175.30983965, "29"], +[-37.7627676667, 175.3093859833, "21"], +[-37.7629716333, 175.3096652333, "28"], +[-37.76317455, 175.30794215, "10"], +[-37.76265565, 175.3097593, "27"], +[-37.7628567167, 175.3091627167, "19"], +[-37.7630968667, 175.3091995167, "24"], +[-37.7626524833, 175.3095708167, "23"], +[-37.76301785, 175.3094239833, "26"], +[-37.7632299667, 175.3085925833, "18"], +[-37.7625390333, 175.3097000333, "25"], +[-37.7629369167, 175.3080782167, "13"], +[-37.7629006333, 175.30982085, "30"], +[-37.7628993667, 175.3068362833, "3"], +[-37.7628707, 175.3070714667, "5"], +[-37.76315475, 175.3089911833, "22"], +[-37.7631935333, 175.3081248, "12"], +[-37.7632073167, 175.3087768833, "20"], +[-37.7628913, 175.3076569333, "9"], +[-37.76322405, 175.30834775, "14"], +[-37.7629231667, 175.3078961833, "11"], +[-37.7630975167, 175.3073135833, "8"], +[-37.7634411167, 175.3084536, "16"], +[-37.7629135167, 175.3089737833, "17"], +[-37.7630964, 175.3071301333, "6"], +[-37.78454375, 175.2277806333, "1"], +[-37.7846416, 175.2283777667, "6"], +[-37.7844304167, 175.2279427167, "3"], +[-37.78435755, 175.2281472, "7"], +[-37.78451485, 175.2284977, "8"], +[-37.7847144333, 175.2282141333, "4"], +[-37.7844085333, 175.22833305, "9"], +[-37.7841925, 175.2279579333, "5"], +[-37.7847553667, 175.2280036167, "2"], +[-37.7942316333, 175.2590049167, "12A"], +[-37.7936244833, 175.25866155, "24"], +[-37.7939089833, 175.2586981833, "18"], +[-37.79464875, 175.25841615, "5"], +[-37.7938310167, 175.2582560333, "19"], +[-37.79314865, 175.2581585333, "33"], +[-37.7934753667, 175.2586474333, "26"], +[-37.7941384667, 175.2580998833, "15A"], +[-37.79348525, 175.2582264167, "27"], +[-37.794491, 175.2583802167, "7"], +[-37.7933303667, 175.2586236667, "28"], +[-37.7936593333, 175.2582505333, "23"], +[-37.7927911167, 175.2581130167, "39"], +[-37.7940486667, 175.2587214, "16"], +[-37.7945000833, 175.25880105, "6"], +[-37.7928843, 175.2579680667, "39A"], +[-37.7939954667, 175.25828965, "17"], +[-37.79402055, 175.2580284667, "17A"], +[-37.7933139667, 175.2581923667, "29"], +[-37.79285495, 175.2585321667, "38"], +[-37.7926966667, 175.2584884333, "40"], +[-37.7937473, 175.2580536833, "21"], +[-37.7927056333, 175.2578853333, "41B"], +[-37.7929790833, 175.2581344833, "35"], +[-37.7925812167, 175.2584765833, "44"], +[-37.7933568333, 175.2578942833, "29A"], +[-37.7924848167, 175.2584548667, "46"], +[-37.7937577333, 175.2586844, "20"], +[-37.79453165, 175.2590033833, "6A"], +[-37.7941878833, 175.2587544667, "12"], +[-37.7944693333, 175.2581529833, "7A"], +[-37.7929860333, 175.2588348833, "34A"], +[-37.7941600667, 175.2583137833, "15"], +[-37.7931945833, 175.2585971333, "32"], +[-37.7943270167, 175.2583471667, "11"], +[-37.7943545833, 175.2587783167, "10"], +[-37.7935768333, 175.2580288667, "25"], +[-37.7926227, 175.2580985167, "41A"], +[-37.7930038, 175.2585579667, "34"], +[-37.8172256667, 175.2744893333, "9"], +[-37.8177303833, 175.2739546333, "14"], +[-37.8177377667, 175.2748633833, "19"], +[-37.81747425, 175.2741543667, "7"], +[-37.81761225, 175.2748067333, "17"], +[-37.8172304833, 175.2735145333, "1A"], +[-37.8175568, 175.2745957167, "15"], +[-37.8180732333, 175.2732617833, "8A"], +[-37.8179108167, 175.2734449333, "8"], +[-37.8173405167, 175.2737031167, "3"], +[-37.8181089833, 175.27421635, "20"], +[-37.8171329167, 175.2734165, "1"], +[-37.8179017333, 175.2746325833, "23"], +[-37.8180185667, 175.2748096667, "21A"], +[-37.8180892, 175.27410185, "18"], +[-37.8179374833, 175.2735413667, "10"], +[-37.8173832333, 175.2732196167, "2A"], +[-37.8177819667, 175.2741480333, "16"], +[-37.8178526333, 175.27479375, "21"], +[-37.8175948333, 175.2734886, "6"], +[-37.8176688, 175.2737424, "12"], +[-37.81725085, 175.27311195, "2"], +[-37.8178523, 175.2744276, "22"], +[-37.8174165167, 175.2739430667, "5"], +[-37.8175298, 175.2743481, "11"], +[-37.8175212333, 175.2733427167, "4"], +[-37.8176457333, 175.2732801667, "4B"], +[-37.7283426833, 175.2184282833, "43"], +[-37.72895845, 175.2180601167, "49"], +[-37.7280580833, 175.2184891333, "41"], +[-37.72896895, 175.2175399833, "50"], +[-37.7298541667, 175.2169229833, "62"], +[-37.72869865, 175.27948715, "16"], +[-37.7288202167, 175.2791950667, "15"], +[-37.7287492167, 175.2796271333, "14"], +[-37.72970225, 175.2791692667, "2"], +[-37.7295533167, 175.2791536833, "4"], +[-37.72936075, 175.27920405, "6"], +[-37.7292127667, 175.2792771667, "8"], +[-37.7290559, 175.2793713, "10"], +[-37.7289248167, 175.2794449833, "12"], +[-37.7293430333, 175.2789747333, "7"], +[-37.7294815167, 175.278951, "5"], +[-37.7296251167, 175.2789522, "3"], +[-37.7297570833, 175.27897075, "1"], +[-37.7291872667, 175.2790156667, "9"], +[-37.7290566333, 175.2790680833, "11"], +[-37.7289313833, 175.2791313333, "13"], +[-37.72865135, 175.2793260167, "19"], +[-37.7286041667, 175.2791577833, "17"], +[-37.7264645333, 175.2716304833, "2"], +[-37.72648395, 175.2724932, "11"], +[-37.72674395, 175.2718218, "6"], +[-37.72656785, 175.2728360833, "15"], +[-37.7268350167, 175.2729966833, "21"], +[-37.7265313667, 175.27265285, "13"], +[-37.7265402333, 175.2718485833, "4"], +[-37.7268570167, 175.2719165, "10"], +[-37.7269159833, 175.2729592, "22"], +[-37.7268574, 175.2717683667, "8"], +[-37.7262091667, 175.2717153833, "1"], +[-37.72667495, 175.2720552667, "12"], +[-37.7268884167, 175.2727291667, "20"], +[-37.72691105, 175.2724033667, "16"], +[-37.72625235, 175.2718468167, "3"], +[-37.7268727833, 175.2725770833, "18"], +[-37.72672915, 175.2727976833, "19"], +[-37.7267281667, 175.2723197833, "14"], +[-37.72659885, 175.2730254833, "17"], +[-37.7264313833, 175.2723263667, "9"], +[-37.7263623667, 175.2721691, "7"], +[-37.7263042, 175.2720088167, "5"], +[-37.76812785, 175.2627525833, "17"], +[-37.7690550167, 175.2643207833, "6"], +[-37.7684426667, 175.263721, "14"], +[-37.7685712, 175.2638913667, "12"], +[-37.7685697833, 175.2632753667, "11A"], +[-37.7682658833, 175.26385415, "14A"], +[-37.7693223833, 175.2640888833, "2"], +[-37.7689121, 175.26420125, "8"], +[-37.7681940667, 175.2634148833, "18"], +[-37.7683123833, 175.2635640167, "16"], +[-37.7680570667, 175.263257, "20"], +[-37.7684343167, 175.26307985, "13"], +[-37.76906705, 175.2637792167, "5"], +[-37.7693551667, 175.2636498333, "1"], +[-37.7679309333, 175.2630845, "22"], +[-37.7687031667, 175.2634313833, "11"], +[-37.76920345, 175.2636876167, "3"], +[-37.7687302833, 175.2640406167, "10"], +[-37.7691463667, 175.2642174833, "4"], +[-37.7682520667, 175.26291835, "15"], +[-37.7819249667, 175.2635527333, "19"], +[-37.78287765, 175.26364055, "12"], +[-37.7834462667, 175.2634997, "4"], +[-37.7822213, 175.26335005, "17"], +[-37.7830105333, 175.2631812, "7"], +[-37.7828593833, 175.2632304167, "9"], +[-37.7830365167, 175.2636257333, "10"], +[-37.7820479167, 175.2633835667, "1/17A-4/17A"], +[-37.7833092167, 175.2635303833, "6"], +[-37.7823763833, 175.2633121, "1/15-4/15"], +[-37.7833367167, 175.2631052, "3"], +[-37.7823732833, 175.26375375, "18"], +[-37.7825370667, 175.2632778167, "13"], +[-37.7822018833, 175.2637668333, "20"], +[-37.78316055, 175.2636035333, "8"], +[-37.7826811167, 175.2636654667, "14"], +[-37.7827057, 175.2632282167, "11"], +[-37.7831728, 175.26314675, "5"], +[-37.7825281167, 175.2637278, "16"], +[-37.78357525, 175.26348005, "2"], +[-37.7835010667, 175.2630824833, "1"], +[-37.7555307, 175.2730598, "30"], +[-37.7551973167, 175.2744825833, "18"], +[-37.7559405333, 175.2744749333, "5"], +[-37.7556377833, 175.2726658667, "34"], +[-37.7558203667, 175.2732636833, "19"], +[-37.7557965667, 175.2744225833, "7"], +[-37.7554993667, 175.2732302167, "28"], +[-37.7558889, 175.27309095, "21"], +[-37.7557014833, 175.2738317167, "13"], +[-37.7557784667, 175.2734609, "17"], +[-37.7553750833, 175.2737575333, "22"], +[-37.7553301167, 175.2747340833, "14"], +[-37.7559934333, 175.2749691167, "4"], +[-37.75606575, 175.2745187333, "3"], +[-37.7551386167, 175.27469035, "16"], +[-37.7557379333, 175.2748698333, "8"], +[-37.7556585667, 175.2743863167, "9"], +[-37.7554519, 175.2733946667, "26"], +[-37.75541665, 175.2735762, "24"], +[-37.7557369167, 175.2736422333, "15"], +[-37.7553202667, 175.2739702, "20"], +[-37.7559587667, 175.27285165, "23"], +[-37.7554777167, 175.2747913667, "12"], +[-37.7556594333, 175.2740368667, "11"], +[-37.7556038, 175.2748329667, "10"], +[-37.7555779, 175.2728704333, "32"], +[-37.75586595, 175.2749139833, "6"], +[-37.7432657333, 175.24135855, "10"], +[-37.7426637333, 175.2413838, "18"], +[-37.7429998667, 175.2408463333, "13"], +[-37.7429547667, 175.2413191333, "14"], +[-37.7429464833, 175.2406511833, "13A"], +[-37.7434555167, 175.2409327667, "7"], +[-37.7433478833, 175.2409037833, "9"], +[-37.7425268, 175.2414276, "20"], +[-37.7419965333, 175.24099805, "25"], +[-37.7434048833, 175.24139225, "8"], +[-37.74356205, 175.2414181833, "6"], +[-37.7430981333, 175.2413138333, "12"], +[-37.74315415, 175.2408635833, "11"], +[-37.7421491833, 175.24100925, "23"], +[-37.7437177167, 175.2414700167, "4"], +[-37.74362675, 175.2409781167, "5"], +[-37.7419163, 175.2414482833, "26"], +[-37.7437834, 175.2410295833, "3"], +[-37.7428239, 175.2408769167, "15"], +[-37.7428021333, 175.2413636, "16"], +[-37.7936958, 175.2688601, "1"], +[-37.7938117333, 175.2693433333, "5"], +[-37.7936578667, 175.26899805, "7"], +[-37.7937366, 175.2689026167, "2"], +[-37.79373465, 175.2692077667, "6"], +[-37.79381615, 175.26910385, "3"], +[-37.7938792833, 175.2692682667, "4"], +[-37.8056867667, 175.2718834833, "44"], +[-37.8059985167, 175.27178575, "51"], +[-37.8051812667, 175.27555595, "13"], +[-37.8059989, 175.2719426833, "49"], +[-37.8056964333, 175.2731657833, "34"], +[-37.8062668333, 175.2722247333, "45A"], +[-37.8060051667, 175.2737820167, "35"], +[-37.80600305, 175.2721454, "47"], +[-37.8049420667, 175.2752958667, "10"], +[-37.8046048, 175.2764115, "3"], +[-37.8047079833, 175.2762617167, "5"], +[-37.80549395, 175.2751185833, "19"], +[-37.80592485, 175.2745306833, "27"], +[-37.8060185667, 175.2741873667, "31"], +[-37.8057039833, 175.2748402, "23"], +[-37.8051393667, 175.2750372833, "14"], +[-37.8057145, 175.27355065, "30"], +[-37.8043621, 175.2761626167, "2"], +[-37.8057071833, 175.27336465, "32"], +[-37.80600565, 175.2724205, "41"], +[-37.8060020833, 175.2735844333, "37"], +[-37.80627055, 175.27234345, "43A"], +[-37.8062578167, 175.2719057833, "45B"], +[-37.8055440167, 175.2744685333, "22"], +[-37.8056909, 175.2721163667, "42"], +[-37.8045231, 175.275945, "4B"], +[-37.8060184833, 175.2739629667, "33"], +[-37.8060040167, 175.2726191667, "39"], +[-37.8056001333, 175.2749945833, "21"], +[-37.8060196333, 175.2743405167, "29"], +[-37.8050567, 175.2757374167, "11"], +[-37.8062752333, 175.2725621167, "43B"], +[-37.8057273, 175.2742239167, "24"], +[-37.8056955667, 175.2729805167, "36"], +[-37.8058173667, 175.27468405, "25"], +[-37.80502175, 175.2751739, "12"], +[-37.8057014667, 175.27374235, "28"], +[-37.80461105, 175.27580385, "4A"], +[-37.8053931333, 175.2752628, "17"], +[-37.8052937333, 175.27540805, "15"], +[-37.8057115833, 175.2739295833, "26"], +[-37.7736039167, 175.3273676167, "295A"], +[-37.77518905, 175.3192934167, "298"], +[-37.7731982833, 175.3278343333, "303"], +[-37.7725199333, 175.3284488, "313"], +[-37.7813976667, 175.3012440667, "28/30"], +[-37.7813553333, 175.3010812, "24/30"], +[-37.780151, 175.2995819167, "9-13"], +[-37.7810943167, 175.30174135, "12/30"], +[-37.7804802667, 175.3014286833, "31"], +[-37.7832703, 175.3002863, "74/30"], +[-37.7807811833, 175.3061255667, "69A"], +[-37.7828865833, 175.3003756667, "82/30"], +[-37.7831124, 175.3000853667, "70/30"], +[-37.7762606, 175.3119009, "113C"], +[-37.7827396833, 175.3001281, "66/30"], +[-37.7808395333, 175.3013822, "5/30"], +[-37.7831097167, 175.30101335, "86/30"], +[-37.7807774833, 175.3447379667, "558B"], +[-37.7832436333, 175.3004301, "75/30"], +[-37.7803218, 175.2987584, "2"], +[-37.78293975, 175.3000965667, "68/30"], +[-37.78079435, 175.3061854833, "69B"], +[-37.7827325, 175.2999870333, "67/30"], +[-37.7728425167, 175.32894755, "316"], +[-37.7832022833, 175.3006288, "80/30"], +[-37.7830342, 175.30138565, "88/30"], +[-37.7829219667, 175.2999763167, "69/30"], +[-37.7829125333, 175.3009088167, "85/30"], +[-37.7830797833, 175.3011486833, "87/30"], +[-37.7831549, 175.30079335, "81/30"], +[-37.7805728333, 175.30007975, "14"], +[-37.7810577667, 175.30138955, "8/30"], +[-37.7829974, 175.3015291667, "89/30"], +[-37.78089435, 175.3017531, "11/30"], +[-37.7802857333, 175.3004879, "21"], +[-37.7833149333, 175.2999345667, "73/30"], +[-37.7748018167, 175.3436460833, "501"], +[-37.7832878, 175.3000996833, "72/30"], +[-37.7830371833, 175.3002870667, "76/30"], +[-37.7801860833, 175.2998616333, "15-19"], +[-37.7829349667, 175.30080735, "84/30"], +[-37.7808521, 175.3014818, "7/30"], +[-37.7828618667, 175.30058775, "83/30"], +[-37.7803625667, 175.2989872833, "4"], +[-37.7831188, 175.2999405667, "71/30"], +[-37.7765636333, 175.3091949, "113B"], +[-37.7830210667, 175.3004099833, "77/30"], +[-37.78296815, 175.3006764333, "79/30"], +[-37.7829909167, 175.3005579833, "78/30"], +[-37.7808315, 175.3012643833, "3/30"], +[-37.78295625, 175.3017193833, "90/30"], +[-37.7808745833, 175.3016324667, "9/30"], +[-37.7816418333, 175.30129835, "47/30"], +[-37.7816297667, 175.3011757, "46/30"], +[-37.7816028833, 175.3010618, "45/30"], +[-37.7816521333, 175.3016769667, "48/30"], +[-37.7812743, 175.3016251167, "30/30"], +[-37.7812751, 175.3017612333, "32/30"], +[-37.7816695333, 175.3018091167, "49/30"], +[-37.7814433833, 175.3015938667, "31/30"], +[-37.7811787167, 175.3011214333, "23/30"], +[-37.78103755, 175.3013058333, "6/30"], +[-37.7812301667, 175.3011992667, "25/30"], +[-37.7812441167, 175.30131965, "27/30"], +[-37.7814471667, 175.3017623667, "33/30"], +[-37.78141965, 175.3013301333, "29/30"], +[-37.7813809167, 175.3011697, "26/30"], +[-37.7810786833, 175.3016139667, "10/30"], +[-37.7810174333, 175.3012175167, "4/30"], +[-37.7809989667, 175.3011384833, "2/30"], +[-37.7686693333, 175.3368369667, "414"], +[-37.76863845, 175.3374570667, "415"], +[-37.7707359833, 175.3396693667, "449"], +[-37.7741773667, 175.34293585, "495"], +[-37.7723401167, 175.3295929167, "318"], +[-37.7799709333, 175.3107091, "113A"], +[-37.7736852833, 175.3272653333, "295"], +[-37.7809918167, 175.3179568167, "181"], +[-37.7790593333, 175.3208807667, "191"], +[-37.7777194, 175.3224269833, "215"], +[-37.7770538667, 175.32324865, "245"], +[-37.77405815, 175.3298172333, "310"], +[-37.77068185, 175.33207595, "352"], +[-37.7697789333, 175.3326956667, "363"], +[-37.7684305833, 175.3351405333, "400"], +[-37.7737000667, 175.3419331833, "480"], +[-37.7684549667, 175.3360545833, "410"], +[-37.7799751667, 175.3458274, "558"], +[-37.7808188333, 175.3011717, "1/30"], +[-37.8004322, 175.3249353, "24"], +[-37.8009072167, 175.3246595167, "18A"], +[-37.7998805333, 175.3252467667, "31"], +[-37.7994162833, 175.3260152, "43"], +[-37.8006145, 175.324367, "16"], +[-37.7999392333, 175.3266072, "46"], +[-37.79879605, 175.3302239333, "88"], +[-37.7992198667, 175.3288657333, "74"], +[-37.8003040167, 175.3228884333, "3A"], +[-37.79945545, 175.3291208167, "76"], +[-37.79901485, 175.3296447167, "80"], +[-37.8003835167, 175.3258893833, "34B"], +[-37.7996057833, 175.3276370333, "62"], +[-37.7993196667, 175.3271483333, "55"], +[-37.8004423, 175.3234053, "7"], +[-37.7987402167, 175.3328188333, "96"], +[-37.80050015, 175.3247372167, "20"], +[-37.7986863667, 175.3305577667, "98"], +[-37.7998675, 175.3268299833, "48A"], +[-37.8002458, 175.3264910833, "40A"], +[-37.8008009, 175.3237640167, "8"], +[-37.7994847333, 175.3257214, "41A"], +[-37.7984204167, 175.3307541167, "100"], +[-37.7989613167, 175.3317990667, "104"], +[-37.80038845, 175.3236087, "11"], +[-37.7989529833, 175.3311877167, "102"], +[-37.7992392667, 175.3274124, "57"], +[-37.79990025, 175.3242474333, "21A"], +[-37.7999456833, 175.3250144333, "27"], +[-37.7995577, 175.3253170833, "35A"], +[-37.7989403833, 175.3298215333, "82"], +[-37.7997998833, 175.3254920833, "35"], +[-37.7996334, 175.3275221333, "60"], +[-37.80013655, 175.32595085, "36"], +[-37.8000713667, 175.3245813833, "23"], +[-37.80039705, 175.326359, "38B"], +[-37.8001941833, 175.3257354667, "34"], +[-37.7999879833, 175.3264185833, "40"], +[-37.79998185, 175.3238707833, "15A"], +[-37.8000532167, 175.3262018167, "38"], +[-37.7990755833, 175.3294327667, "78"], +[-37.7997428333, 175.3257089833, "39"], +[-37.79946305, 175.3281610667, "66"], +[-37.7996841333, 175.32589955, "41"], +[-37.800132, 175.32438305, "21"], +[-37.7996358833, 175.3260551167, "43A"], +[-37.7995698333, 175.32868695, "72A"], +[-37.7991576833, 175.3300611333, "84"], +[-37.7997822667, 175.32879215, "72B"], +[-37.8000772667, 175.32334275, "7B"], +[-37.79939615, 175.3268918833, "53"], +[-37.8002736333, 175.32339155, "7A"], +[-37.7991303833, 175.3292127167, "78B"], +[-37.7970506667, 175.3314073667, "109"], +[-37.8000765833, 175.3268884167, "48B"], +[-37.7969074833, 175.33157835, "111"], +[-37.79981755, 175.3285703667, "68A"], +[-37.8008604333, 175.3235638833, "6"], +[-37.7993113167, 175.3286230833, "70"], +[-37.79999995, 175.3247955833, "25"], +[-37.7988576667, 175.3300423333, "86"], +[-37.7994465333, 175.3266991333, "51"], +[-37.7993981833, 175.3283669167, "68"], +[-37.8007349, 175.3239518333, "10"], +[-37.7995865167, 175.3277426333, "62A"], +[-37.7996059167, 175.3252532667, "33"], +[-37.7991802833, 175.3290458333, "78C"], +[-37.7995369333, 175.3279375667, "64"], +[-37.8001907167, 175.3241997167, "17"], +[-37.8003082833, 175.32534635, "30"], +[-37.80091905, 175.3233399, "4"], +[-37.8006782667, 175.3241497, "12"], +[-37.8002493333, 175.32399645, "15"], +[-37.80025585, 175.3255528333, "32"], +[-37.8006256, 175.3228126333, "1"], +[-37.8005627, 175.32301925, "3"], +[-37.8011150167, 175.3236659667, "6A"], +[-37.80055575, 175.3245533, "18"], +[-37.8005158833, 175.3232066667, "5"], +[-37.77003935, 175.2830169667, "10"], +[-37.7678968667, 175.2886607667, "100A"], +[-37.7686381667, 175.2860078833, "60"], +[-37.76789405, 175.2879413167, "92"], +[-37.76843135, 175.2857021, "61"], +[-37.7681516167, 175.2868577667, "76"], +[-37.7693983167, 175.2840130167, "25"], +[-37.76877255, 175.28587915, "58"], +[-37.7696852833, 175.2841546333, "26"], +[-37.76694585, 175.2889529, "118"], +[-37.7677265667, 175.2884333, "100"], +[-37.76915575, 175.2855298167, "48"], +[-37.76732365, 175.2880424667, "101B"], +[-37.7697276833, 175.2839708333, "24"], +[-37.7677942833, 175.2887033333, "102A"], +[-37.7678231333, 175.28685155, "77"], +[-37.7678835667, 175.2887532167, "102B"], +[-37.7678452667, 175.2881240833, "96"], +[-37.7674225, 175.2882339, "101A"], +[-37.7673470167, 175.2887505667, "112"], +[-37.7672776, 175.2883629, "105"], +[-37.7670517833, 175.28816365, "105A"], +[-37.76765565, 175.2885320167, "102"], +[-37.7663513, 175.28897515, "125"], +[-37.76708695, 175.28844275, "113"], +[-37.76941195, 175.2852397667, "42"], +[-37.7680308333, 175.2873674167, "84"], +[-37.7679803333, 175.2875829833, "86"], +[-37.7680709833, 175.28717995, "82"], +[-37.7678628167, 175.28668095, "75"], +[-37.76824305, 175.2864704333, "70"], +[-37.7701250333, 175.2826730333, "2"], +[-37.7661695167, 175.2897915667, "135A"], +[-37.7674700167, 175.2886841167, "106"], +[-37.76620285, 175.28956275, "135"], +[-37.7694937667, 175.2836117, "21"], +[-37.7664783, 175.2896928833, "134"], +[-37.7688258833, 175.2853323333, "53"], +[-37.76621675, 175.28933935, "131"], +[-37.76989605, 175.2833987167, "16"], +[-37.7696521833, 175.2843377833, "30"], +[-37.7683747333, 175.28627895, "66"], +[-37.76611935, 175.28923955, "131B"], +[-37.7695586167, 175.2834067833, "19"], +[-37.7665275333, 175.28947025, "132"], +[-37.7691877, 175.2849244667, "43"], +[-37.7692552833, 175.2847536667, "39"], +[-37.7681101667, 175.2870313667, "80"], +[-37.76983065, 175.2835971, "18"], +[-37.76758885, 175.2878586, "93"], +[-37.7686989833, 175.2854439833, "55"], +[-37.7677939, 175.28828845, "98"], +[-37.7674149833, 175.2887200167, "110"], +[-37.76829085, 175.2858484333, "65"], +[-37.7681654, 175.2859578167, "67"], +[-37.7665977833, 175.28926765, "128"], +[-37.7692872167, 175.2846104167, "37"], +[-37.7681928833, 175.2866818167, "74"], +[-37.7690899167, 175.2850750667, "45"], +[-37.7675395667, 175.2880090167, "95"], +[-37.7662862, 175.2891385, "127"], +[-37.7677807833, 175.2870146667, "81"], +[-37.7664466167, 175.2888389167, "123"], +[-37.7689641833, 175.2851845, "49"], +[-37.7665810833, 175.2887280333, "121"], +[-37.7675385667, 175.2886383, "104"], +[-37.76946165, 175.2851442333, "40"], +[-37.76731005, 175.2878806833, "97"], +[-37.7692590833, 175.2854095833, "46"], +[-37.7694424333, 175.2838062, "23"], +[-37.7697694, 175.28378585, "22"], +[-37.7670898333, 175.2889084167, "114"], +[-37.7699694, 175.2832196167, "12"], +[-37.7667325, 175.2890703333, "122"], +[-37.7679302833, 175.2877791167, "90"], +[-37.7685157333, 175.2861428, "64"], +[-37.7575164833, 175.34621155, "151"], +[-37.7745278, 175.2391109833, "26"], +[-37.7770529167, 175.2346831, "78"], +[-37.7735623667, 175.2414870667, "5A"], +[-37.7778575, 175.2333780167, "85B"], +[-37.776659, 175.2352347833, "72B"], +[-37.7775873, 175.2348719833, "71"], +[-37.7767919, 175.2353897167, "72"], +[-37.77691235, 175.2280392333, "120"], +[-37.7773305833, 175.2290169833, "123"], +[-37.77639785, 175.2371005167, "51D"], +[-37.7773131833, 175.2287988667, "125"], +[-37.7741956, 175.2396861833, "20"], +[-37.7775189167, 175.2340008833, "79A"], +[-37.7763598667, 175.23604035, "64"], +[-37.777717, 175.2340193333, "79B"], +[-37.7762726167, 175.2362037667, "62"], +[-37.7778810667, 175.2331780833, "87C"], +[-37.77691285, 175.235846, "63"], +[-37.7776554333, 175.2329227167, "89"], +[-37.777454, 175.2300649667, "115"], +[-37.7773779167, 175.2325368833, "86"], +[-37.7766864333, 175.2354698, "70"], +[-37.7773985333, 175.2320239, "90"], +[-37.77738285, 175.2296646667, "117"], +[-37.7776930167, 175.2327249333, "91"], +[-37.77710925, 175.2344760333, "80"], +[-37.77770185, 175.2325269333, "93"], +[-37.7774283, 175.2346861833, "73"], +[-37.7777024333, 175.2322960833, "95"], +[-37.7753556833, 175.2395359667, "29B"], +[-37.7777079167, 175.2321073167, "97"], +[-37.7747895667, 175.2398772667, "23B"], +[-37.7774036167, 175.23179135, "92"], +[-37.7751363, 175.2388585, "33"], +[-37.7772213, 175.2316274167, "94A"], +[-37.7736468333, 175.2403435667, "16B"], +[-37.7776373167, 175.23313215, "87"], +[-37.77463275, 175.2401729833, "21A"], +[-37.77706975, 175.2315705833, "96A"], +[-37.7771816, 175.2279038333, "133"], +[-37.7770951333, 175.2317500833, "96B"], +[-37.7738483167, 175.2417410167, "5B"], +[-37.7773753167, 175.2312343667, "98"], +[-37.7731897833, 175.24139405, "4A"], +[-37.7773959667, 175.2322744, "88"], +[-37.7776232333, 175.2310669167, "105A"], +[-37.7773822, 175.2316007, "94"], +[-37.77525665, 175.2391634833, "31A"], +[-37.77770505, 175.2316681333, "99"], +[-37.7762591, 175.23697015, "51"], +[-37.77790915, 175.2329831667, "87B"], +[-37.7737421667, 175.2419098333, "3A"], +[-37.7765557833, 175.2371095167, "53E"], +[-37.7750236833, 175.2390481, "31"], +[-37.7763089333, 175.2368817167, "53"], +[-37.7769453667, 175.2282806, "118"], +[-37.77653055, 175.2364483167, "57A"], +[-37.7759089833, 175.2378801833, "43B"], +[-37.7733857, 175.2405979167, "12A"], +[-37.77450825, 175.23996375, "21"], +[-37.77517015, 175.23941715, "29A"], +[-37.7740088, 175.2400280667, "18"], +[-37.7771460333, 175.23006515, "106"], +[-37.7747316167, 175.2382367, "36"], +[-37.7750944, 175.2381824667, "40"], +[-37.7751965333, 175.2380313167, "42"], +[-37.77345805, 175.2416568167, "3"], +[-37.7774833333, 175.2302986167, "111"], +[-37.7776843833, 175.2344442, "73D"], +[-37.7746434667, 175.2389270833, "28"], +[-37.77533035, 175.2372325333, "50"], +[-37.7737669167, 175.2411514833, "9"], +[-37.7767021167, 175.2368177667, "55C"], +[-37.7762278667, 175.2376115167, "47C"], +[-37.7761167667, 175.23719665, "49A"], +[-37.7757854833, 175.2377658333, "43A"], +[-37.7736641333, 175.2405641167, "14"], +[-37.7752427667, 175.2386668333, "35"], +[-37.77407395, 175.2406824833, "15"], +[-37.77571585, 175.2371154833, "54"], +[-37.77782725, 175.2309330667, "105"], +[-37.7749421667, 175.2392374, "29"], +[-37.7770173667, 175.2287671333, "114"], +[-37.7730874333, 175.2415676333, "2"], +[-37.77773955, 175.2300899333, "113A"], +[-37.7755033, 175.2374666, "48"], +[-37.7772876667, 175.22858045, "127"], +[-37.7764728, 175.2358302333, "66A"], +[-37.7732165, 175.2406038, "10A"], +[-37.7776695, 175.2313541, "101A"], +[-37.7773442167, 175.2349965167, "69"], +[-37.7736631833, 175.2413180833, "7"], +[-37.7760521, 175.2365521833, "58"], +[-37.7772911333, 175.2351406833, "67"], +[-37.7764375833, 175.2370177167, "53C"], +[-37.77439835, 175.2401431667, "19"], +[-37.7772095833, 175.2281360167, "131"], +[-37.77705225, 175.23646565, "59D"], +[-37.7761348, 175.2377954833, "45C"], +[-37.7775901833, 175.2335555, "83"], +[-37.7775914333, 175.2308220667, "107"], +[-37.7733884667, 175.2410352167, "10"], +[-37.7762193833, 175.2372987333, "49B"], +[-37.7777817, 175.2307838833, "107A"], +[-37.7773048333, 175.2309016167, "102"], +[-37.7748454333, 175.2385915, "32"], +[-37.7760059, 175.2373814667, "47A"], +[-37.77535595, 175.2384821333, "37"], +[-37.7776859833, 175.23430565, "77A"], +[-37.7735839833, 175.2407239667, "12"], +[-37.7749843167, 175.2383576167, "38"], +[-37.7769345167, 175.2366214333, "59B"], +[-37.7743079167, 175.2394727167, "22"], +[-37.7776283, 175.2333390833, "85A"], +[-37.7758967833, 175.2375706833, "45A"], +[-37.77697995, 175.2285294833, "116"], +[-37.7776512833, 175.23464515, "73C"], +[-37.7761674833, 175.2363688667, "60"], +[-37.77488865, 175.23967045, "25A"], +[-37.7773541167, 175.2294032, "119"], +[-37.7738583833, 175.2409885667, "11"], +[-37.7756016333, 175.23862025, "37B"], +[-37.7760976333, 175.2374766, "47B"], +[-37.7775443667, 175.2337962333, "81"], +[-37.7773418333, 175.2292024167, "121"], +[-37.7774867, 175.2343706, "75"], +[-37.77642825, 175.2366674833, "55"], +[-37.7763487667, 175.2373970667, "49C"], +[-37.7748419833, 175.23941715, "27"], +[-37.77767905, 175.2306217, "109A"], +[-37.7768828667, 175.2278136667, "122"], +[-37.7772488833, 175.2283462333, "129"], +[-37.7767231, 175.23614215, "59C"], +[-37.7778336, 175.2311943167, "103"], +[-37.7753926833, 175.23763755, "46"], +[-37.7775424, 175.230558, "109"], +[-37.7768507167, 175.2367528333, "57C"], +[-37.7764452833, 175.2357382333, "66B"], +[-37.7765156833, 175.2371993167, "51F"], +[-37.7740932167, 175.2412151, "11A"], +[-37.7730713167, 175.2412565667, "4B"], +[-37.7734611333, 175.2409044167, "10B"], +[-37.7747428333, 175.2387606167, "30"], +[-37.77710195, 175.2298796833, "108"], +[-37.7769987167, 175.2348738667, "76"], +[-37.77600675, 175.2376809, "45B"], +[-37.7745856, 175.2402527667, "19A"], +[-37.7765952, 175.2356490333, "68"], +[-37.7752912167, 175.2378134833, "44"], +[-37.7750001833, 175.2397885833, "25B"], +[-37.7769246, 175.2350737833, "74"], +[-37.7750038667, 175.2394977333, "27A"], +[-37.77658495, 175.2367055167, "55B"], +[-37.77375695, 175.2404016, "16"], +[-37.7743215, 175.2402686167, "17"], +[-37.7773134333, 175.23324965, "82"], +[-37.7769216833, 175.2299075333, "108A"], +[-37.7771977667, 175.2311076833, "100B"], +[-37.7766065333, 175.2363243333, "59A"], +[-37.7778895667, 175.2313993833, "101"], +[-37.77462345, 175.2397769333, "23"], +[-37.77409925, 175.2398551333, "18A"], +[-37.7747435, 175.23959925, "25"], +[-37.7776866167, 175.22979665, "113B"], +[-37.7767057167, 175.2366123833, "57B"], +[-37.77720665, 175.2312051833, "100A"], +[-37.7772595, 175.2307562667, "104"], +[-37.77340875, 175.2403167, "14A"], +[-37.77562445, 175.23728455, "52"], +[-37.7774346833, 175.2297961833, "115A"], +[-37.77337985, 175.2417851333, "1"], +[-37.7760265333, 175.2379963, "43C"], +[-37.7740078333, 175.2413909833, "9B"], +[-37.7744152833, 175.2393033, "24"], +[-37.7739690333, 175.2408404333, "13"], +[-37.7758342667, 175.2369466167, "56"], +[-37.77330135, 175.2412057833, "6"], +[-37.7746664667, 175.2383441667, "34"], +[-37.7768178667, 175.2360248833, "61"], +[-37.7394318667, 175.2395216333, "25"], +[-37.7405211, 175.23978735, "13"], +[-37.7394102167, 175.2399193, "26"], +[-37.7408500167, 175.2399050167, "9"], +[-37.7392491167, 175.23947315, "27"], +[-37.7395759667, 175.2399759, "24"], +[-37.73925595, 175.239877, "28"], +[-37.7408721833, 175.2403369333, "8"], +[-37.7389143833, 175.2397943667, "32"], +[-37.7403898, 175.2401937667, "14"], +[-37.73982335, 175.2396148, "21"], +[-37.7400811333, 175.2400945333, "18"], +[-37.7411258, 175.2399756167, "5"], +[-37.7410264333, 175.2403706833, "6"], +[-37.73962245, 175.2395667167, "23"], +[-37.7405512833, 175.2402636167, "12"], +[-37.7409901667, 175.23995225, "7"], +[-37.7388965167, 175.23938615, "31"], +[-37.7399132167, 175.2400510167, "20"], +[-37.7407150167, 175.2402971333, "10"], +[-37.7403413833, 175.2397449833, "15"], +[-37.7412033833, 175.2404253333, "4"], +[-37.7397545167, 175.2400200167, "22"], +[-37.7390960667, 175.2398397, "30"], +[-37.7413280333, 175.24045355, "2"], +[-37.7406904667, 175.2398426667, "11"], +[-37.7399963833, 175.2396550333, "19"], +[-37.7402327667, 175.24013705, "16"], +[-37.7390835167, 175.23942275, "29"], +[-37.74016715, 175.239698, "17"], +[-37.75765365, 175.2880871667, "31"], +[-37.7578914167, 175.2877900667, "28"], +[-37.7555594667, 175.28641025, "1A"], +[-37.7582999, 175.2895520667, "51"], +[-37.7579846667, 175.2879517833, "30"], +[-37.7560262, 175.2867786167, "7"], +[-37.7579246333, 175.2892200833, "43"], +[-37.7581109667, 175.288666, "37"], +[-37.7588698333, 175.2902859333, "54"], +[-37.7579662833, 175.28954665, "47B"], +[-37.7557297833, 175.2861379333, "2"], +[-37.75797925, 175.2896271167, "47C"], +[-37.75932865, 175.2901366333, "62"], +[-37.7588888, 175.2896496, "48"], +[-37.7597667, 175.2907233167, "74"], +[-37.7579343167, 175.2893656167, "47"], +[-37.7583419333, 175.2899093, "55"], +[-37.7582666, 175.2893537667, "49"], +[-37.7595890167, 175.2902502833, "68"], +[-37.7584332833, 175.2902922667, "61"], +[-37.75822295, 175.28796405, "32B"], +[-37.7591482, 175.2909013333, "75"], +[-37.7586043, 175.2895467333, "46"], +[-37.75714015, 175.2879914833, "23"], +[-37.7581107667, 175.2878115333, "30A"], +[-37.7582480833, 175.28825845, "34A"], +[-37.7579546667, 175.2876565, "28A"], +[-37.75837, 175.2880932333, "34B"], +[-37.7584960667, 175.29082085, "65"], +[-37.7584046, 175.2883942333, "36"], +[-37.7573059833, 175.2876414, "21"], +[-37.75616825, 175.2868669333, "9"], +[-37.75937955, 175.2912728667, "81"], +[-37.7586349, 175.2898093167, "50"], +[-37.75832595, 175.2897412, "53"], +[-37.7597632, 175.29111705, "87A"], +[-37.7592438, 175.2900884667, "60"], +[-37.7591637167, 175.2911866, "77"], +[-37.7596833667, 175.2902439, "70"], +[-37.7573374833, 175.2870874667, "20"], +[-37.7575654833, 175.28794645, "29"], +[-37.7563270167, 175.2869611167, "11"], +[-37.7585588333, 175.2905180833, "63"], +[-37.7574343167, 175.2877982667, "25"], +[-37.7587103833, 175.2909734833, "69"], +[-37.7559825167, 175.2862121167, "4"], +[-37.7571622, 175.2869838167, "18"], +[-37.7581842333, 175.2888768167, "39"], +[-37.7565143167, 175.2870524, "13"], +[-37.75581255, 175.2866238167, "3"], +[-37.7571675667, 175.2874995, "19"], +[-37.7577970333, 175.2894190167, "45"], +[-37.7584922167, 175.2885663167, "38"], +[-37.7572695333, 175.2881695333, "27"], +[-37.7581158833, 175.2881036833, "32A"], +[-37.7582374, 175.2891013333, "41"], +[-37.7557624333, 175.286968, "5"], +[-37.7596056167, 175.2913778667, "85"], +[-37.7593655667, 175.2909844833, "79"], +[-37.75894035, 175.2908205167, "71"], +[-37.7587084167, 175.2906699, "67"], +[-37.7579495, 175.28945605, "47A"], +[-37.7595912, 175.29107805, "83"], +[-37.7583743833, 175.2900837, "57"], +[-37.7574462167, 175.2872583167, "22"], +[-37.75820775, 175.2904726333, "59A"], +[-37.7598663333, 175.2911740833, "87B"], +[-37.7555145333, 175.2866018667, "1B"], +[-37.7563640333, 175.2864828667, "8"], +[-37.7590598167, 175.29008415, "56"], +[-37.7577454333, 175.2876069333, "26"], +[-37.7590783167, 175.2904425, "58"], +[-37.7589442333, 175.2910934, "73"], +[-37.759285, 175.2905269167, "64"], +[-37.75814905, 175.2903306167, "59"], +[-37.7569958, 175.2868610833, "14"], +[-37.7562000167, 175.28636755, "6"], +[-37.7587177667, 175.2900747, "52"], +[-37.759619, 175.2906585833, "72"], +[-37.7594356333, 175.2905864667, "66"], +[-37.6984966167, 175.26162245, "47"], +[-37.7008105333, 175.25802275, "7"], +[-37.69985545, 175.2605767667, "32"], +[-37.8081287667, 175.3273549833, "3A"], +[-37.8082028833, 175.32749725, "3B"], +[-37.80820095, 175.3271409667, "3E"], +[-37.8080608333, 175.3270511167, "3G"], +[-37.8082457333, 175.32732315, "3D"], +[-37.8082882167, 175.3274845667, "3C"], +[-37.8081631833, 175.3269403333, "3F"], +[-37.745907, 175.3037888167, "96"], +[-37.7474927667, 175.2960784333, "27"], +[-37.7386473833, 175.3230261167, "285A"], +[-37.7447303167, 175.3091489833, "146"], +[-37.7484764333, 175.2939460333, "4"], +[-37.7428221167, 175.3146443, "199"], +[-37.74633245, 175.3025275667, "84"], +[-37.7428797, 175.3160471333, "212"], +[-37.7457899667, 175.3025630667, "85"], +[-37.7423128833, 175.3168409667, "219"], +[-37.7444823, 175.3098943, "152"], +[-37.7424135167, 175.3179741833, "226"], +[-37.7362808, 175.3267562833, "329B"], +[-37.7418158667, 175.3179872167, "233"], +[-37.7422567333, 175.3171258333, "219B"], +[-37.7410635, 175.3192121333, "243"], +[-37.7344123167, 175.3339652333, "396"], +[-37.7407386, 175.3206399833, "256"], +[-37.7484108167, 175.2943234833, "6"], +[-37.7403231833, 175.3203271167, "257"], +[-37.7373048833, 175.32760685, "328"], +[-37.7393987333, 175.3228373833, "280"], +[-37.7458422667, 175.3022656167, "83"], +[-37.73194585, 175.33705825, "399"], +[-37.7462058833, 175.3012484833, "73"], +[-37.7382482833, 175.322866, "285B"], +[-37.7458241833, 175.3046959, "104"], +[-37.73783305, 175.3226025667, "285C"], +[-37.7445442833, 175.3076027, "135"], +[-37.7445759333, 175.3074121, "133"], +[-37.7451837, 175.30714655, "126"], +[-37.7432554667, 175.3130266167, "183"], +[-37.7366956333, 175.3271251, "329A"], +[-37.7392477167, 175.3233579833, "284"], +[-37.7501854833, 175.2881605833, "21"], +[-37.75079075, 175.2871082667, "11"], +[-37.7509241333, 175.28788395, "16"], +[-37.7504953667, 175.28822335, "19"], +[-37.7513006, 175.28648225, "4"], +[-37.7506515, 175.28670705, "7"], +[-37.7509848667, 175.2876612167, "14"], +[-37.7508557667, 175.2868731, "9"], +[-37.75033985, 175.2884115167, "25"], +[-37.7508636167, 175.2880702167, "18"], +[-37.7512269, 175.28674575, "6"], +[-37.7508081833, 175.2883156667, "20"], +[-37.7511699, 175.2870102667, "8"], +[-37.7505276167, 175.2880142, "17"], +[-37.7506398, 175.2883834167, "24"], +[-37.7511131667, 175.28724245, "10"], +[-37.7509494333, 175.2865572667, "3"], +[-37.7507962333, 175.2885688, "22"], +[-37.7509892667, 175.2863532833, "1"], +[-37.7510514167, 175.2874417333, "12"], +[-37.7507146333, 175.2866128, "5"], +[-37.8097058833, 175.2737391833, "10"], +[-37.80954215, 175.2737758333, "11"], +[-37.8094134167, 175.2736518833, "8"], +[-37.8090721167, 175.2733949333, "4"], +[-37.8095703333, 175.2736304, "9"], +[-37.809, 175.2731549333, "2"], +[-37.8088372, 175.2731423667, "1"], +[-37.8089255667, 175.2732809333, "3"], +[-37.8092065167, 175.2733878833, "5"], +[-37.8093082333, 175.2734364167, "6"], +[-37.80921815, 175.2735069, "7"], +[-37.7635820333, 175.3041478333, "10"], +[-37.7633938, 175.3043979333, "16"], +[-37.7637382167, 175.3036326333, "4"], +[-37.7631187667, 175.3043113333, "11"], +[-37.7633934, 175.3037638667, "5"], +[-37.7636807833, 175.3038237667, "6"], +[-37.7635525167, 175.3043514667, "12"], +[-37.7632716833, 175.3041245667, "9"], +[-37.7634499667, 175.30360085, "3"], +[-37.76327715, 175.30434055, "13"], +[-37.7635265, 175.3045613, "14"], +[-37.7633470667, 175.3039480333, "7"], +[-37.76362755, 175.3039984667, "8"], +[-37.8045912667, 175.2506497333, "16"], +[-37.8045701333, 175.2514234333, "13"], +[-37.8049425, 175.2514232667, "41"], +[-37.8041024, 175.2516173, "7A"], +[-37.8051005, 175.2520667667, "27"], +[-37.8045153, 175.2512029, "11"], +[-37.8045607167, 175.2516474667, "15"], +[-37.80527825, 175.25167125, "31"], +[-37.8045739, 175.25185, "17"], +[-37.8038218833, 175.2517374333, "3D"], +[-37.80464825, 175.25201635, "19"], +[-37.8042908, 175.2507811667, "12"], +[-37.8046367833, 175.2523850167, "21"], +[-37.804847, 175.25113335, "43"], +[-37.8050303333, 175.2515523333, "39"], +[-37.8041331, 175.2508738, "10"], +[-37.8054345667, 175.2516407833, "33"], +[-37.8047888333, 175.25207495, "23"], +[-37.8038330333, 175.2510358333, "6"], +[-37.8039919167, 175.2509441333, "8"], +[-37.8039458667, 175.2514009333, "5"], +[-37.8040759, 175.25130675, "7"], +[-37.8036815, 175.2516574167, "1"], +[-37.80353135, 175.2512271667, "2"], +[-37.8044340667, 175.2507156333, "14"], +[-37.8054229333, 175.2514977, "35"], +[-37.8037823, 175.2514567333, "5E"], +[-37.8052531667, 175.2515099, "37"], +[-37.8049176333, 175.2519987333, "25"], +[-37.80511415, 175.2517374, "29"], +[-37.8037093667, 175.2507880667, "6A"], +[-37.8042589, 175.2512984167, "9"], +[-37.8037041833, 175.2510835, "4"], +[-37.8049335833, 175.2505182, "20"], +[-37.8051213333, 175.25103285, "28"], +[-37.8050768833, 175.2504339667, "22"], +[-37.8049679833, 175.2510474667, "30"], +[-37.8050555167, 175.2506354, "24"], +[-37.8051787, 175.2503880667, "22A"], +[-37.8053203833, 175.2509412667, "28A"], +[-37.8051327167, 175.2508281333, "28B"], +[-37.8047774667, 175.25053985, "18"], +[-37.7588591667, 175.2679707, "7A"], +[-37.7585576667, 175.2683651, "11"], +[-37.7584025667, 175.2689405333, "10"], +[-37.7590396833, 175.2679894, "3A"], +[-37.7587724833, 175.2682558833, "7"], +[-37.75853445, 175.2685792833, "12"], +[-37.7592996333, 175.2683886, "1"], +[-37.7590936667, 175.2683109833, "3"], +[-37.7584952667, 175.2690147667, "8"], +[-37.7588319167, 175.2686512, "4"], +[-37.7591144333, 175.2686882167, "2"], +[-37.7589265333, 175.2682620833, "5"], +[-37.7586233833, 175.2688052, "6"], +[-37.7329259833, 175.21484255, "100"], +[-37.7326244167, 175.2154873167, "97"], +[-37.7367238667, 175.2124502, "146"], +[-37.7316725167, 175.2160153833, "83"], +[-37.7393155833, 175.2109541833, "182"], +[-37.7311464333, 175.21648495, "71"], +[-37.7317416667, 175.21652995, "75"], +[-37.7327183667, 175.2160504, "91"], +[-37.7297090667, 175.2183687, "4-20"], +[-37.7308416, 175.21685595, "67"], +[-37.7303051833, 175.2185637, "7-19"], +[-37.731858, 175.2158879833, "85"], +[-37.7386483333, 175.2113348667, "172"], +[-37.7307364333, 175.2170439833, "65"], +[-37.7315665, 175.2155367333, "84"], +[-37.7314739, 175.21614405, "81"], +[-37.73097415, 175.2166714667, "69"], +[-37.7320789667, 175.21576135, "87"], +[-37.7306519833, 175.2172513, "63"], +[-37.7322855167, 175.2156551833, "93"], +[-37.7325719667, 175.2162419333, "89"], +[-37.7312153833, 175.2157215333, "80"], +[-37.7874526833, 175.2927869167, "22E"], +[-37.7871472167, 175.29180175, "11A"], +[-37.7878571, 175.2901890833, "6"], +[-37.7870647833, 175.2917332167, "11B"], +[-37.7874438833, 175.29304855, "24A"], +[-37.7875804333, 175.29261065, "20A"], +[-37.78724865, 175.292951, "24"], +[-37.7873269167, 175.2925335167, "20B"], +[-37.7873184167, 175.2927334667, "22C"], +[-37.7878094, 175.28950075, "1"], +[-37.7870087833, 175.2924302833, "19"], +[-37.7869538167, 175.2930901833, "27"], +[-37.7873699833, 175.2907776333, "7"], +[-37.78801695, 175.2898215, "2"], +[-37.7866523833, 175.2925834167, "23"], +[-37.7879062, 175.2899955833, "4"], +[-37.7869099167, 175.2928673333, "1/25-6/25"], +[-37.7873781667, 175.2927574833, "22D"], +[-37.7872644, 175.2927153333, "1/22"], +[-37.7875877833, 175.2927975833, "22A"], +[-37.78696065, 175.29262405, "21"], +[-37.7870888833, 175.29208225, "1/15-5/15"], +[-37.7869625167, 175.2917240333, "11C"], +[-37.7860657, 175.30292875, "9"], +[-37.7860572333, 175.3023816833, "3"], +[-37.7859795333, 175.3027841667, "7"], +[-37.7860035667, 175.3026132833, "5"], +[-37.7863214667, 175.30275665, "8"], +[-37.78631315, 175.3025594667, "6"], +[-37.7863592, 175.3029421, "10"], +[-37.7863225333, 175.3023836333, "4"], +[-37.78621045, 175.30293105, "11"], +[-37.7688111167, 175.2582761333, "20"], +[-37.7702570833, 175.2598577333, "4A"], +[-37.7696545333, 175.2585924833, "9"], +[-37.7691874167, 175.2581289833, "19"], +[-37.7693395167, 175.2579440833, "2/19"], +[-37.7692480667, 175.2587114667, "10"], +[-37.76943665, 175.2583655333, "13"], +[-37.7707155333, 175.2594926833, "3A"], +[-37.7690884, 175.2585755667, "12"], +[-37.77009965, 175.2596901833, "4"], +[-37.7693215, 175.2582476667, "15"], +[-37.77038135, 175.2600278167, "2"], +[-37.7690905667, 175.2580618333, "21"], +[-37.7697669333, 175.2587453833, "7A"], +[-37.7705970833, 175.2598099, "1"], +[-37.7698728, 175.25886545, "7"], +[-37.76939435, 175.2588773333, "8"], +[-37.7695419333, 175.2584792, "11"], +[-37.7691233167, 175.2588973667, "10A"], +[-37.7688566333, 175.2583377833, "18"], +[-37.7689654667, 175.25843405, "14"], +[-37.7705139667, 175.2596339667, "3"], +[-37.7689111667, 175.2583923, "16"], +[-37.7703697167, 175.2594541667, "5"], +[-37.7695454833, 175.2590276167, "6"], +[-37.7571978, 175.2988279667, "10"], +[-37.75741875, 175.2982822333, "4"], +[-37.7569557667, 175.2985456167, "7"], +[-37.7570959833, 175.29818605, "3"], +[-37.7573478333, 175.2984543667, "6"], +[-37.7570271333, 175.2983681, "5"], +[-37.7574698, 175.2981085167, "2"], +[-37.7571093, 175.2990258833, "12"], +[-37.7571608667, 175.2980220833, "1"], +[-37.7572662667, 175.2986382167, "8"], +[-37.73116595, 175.2673029833, "18"], +[-37.7307172667, 175.2672254167, "24"], +[-37.7319606833, 175.2671914833, "11"], +[-37.7317586667, 175.2670825333, "13"], +[-37.7327366333, 175.26766705, "5"], +[-37.7313560833, 175.26696505, "17"], +[-37.73128645, 175.2673211, "16"], +[-37.7328647, 175.26773625, "3"], +[-37.7321026167, 175.26768065, "12"], +[-37.7328864333, 175.2681739833, "2"], +[-37.7307812, 175.2668167167, "23"], +[-37.7315620333, 175.2670051, "15"], +[-37.7330380667, 175.2678321833, "1"], +[-37.7308357167, 175.26723855, "22"], +[-37.7319640167, 175.2675879, "14"], +[-37.7309440333, 175.2668752167, "21"], +[-37.7310009333, 175.26726895, "20"], +[-37.73114805, 175.26693495, "19"], +[-37.7321113167, 175.2680154333, "10"], +[-37.7291709667, 175.2658190167, "40"], +[-37.72834835, 175.2655971833, "50A"], +[-37.7289858667, 175.2657353667, "42"], +[-37.72892315, 175.2652304667, "41"], +[-37.7302455333, 175.2661879, "28"], +[-37.7295401167, 175.2655697333, "35"], +[-37.73014155, 175.2657857167, "29"], +[-37.7291453833, 175.2654085333, "39"], +[-37.73006825, 175.2661169167, "30"], +[-37.7304295667, 175.2658766167, "25"], +[-37.72995585, 175.26572565, "31"], +[-37.72859715, 175.2654961667, "48"], +[-37.7299031167, 175.2660404333, "32"], +[-37.7284324667, 175.26566945, "48A"], +[-37.729755, 175.2656379833, "33"], +[-37.7286114, 175.2650163833, "45"], +[-37.72973305, 175.2659789667, "34"], +[-37.72830795, 175.2652115167, "52"], +[-37.72951145, 175.2659041667, "36"], +[-37.7284989333, 175.2648457333, "47"], +[-37.7293600333, 175.2654873, "37"], +[-37.7303148, 175.26585365, "27"], +[-37.7293720833, 175.2658810167, "38"], +[-37.7304170667, 175.2662529833, "26"], +[-37.72844555, 175.2653110833, "50"], +[-37.7287682167, 175.2651376167, "43"], +[-37.7438895667, 175.2388459167, "10"], +[-37.74364645, 175.2383103167, "13"], +[-37.74357555, 175.23876275, "14"], +[-37.74348305, 175.2382701833, "15"], +[-37.74332445, 175.2382432667, "17"], +[-37.7431738667, 175.2382123333, "19"], +[-37.7434163667, 175.2387233833, "16"], +[-37.7430967667, 175.2386445833, "20"], +[-37.7430027667, 175.2381653667, "21"], +[-37.74292095, 175.2386046667, "22"], +[-37.74285585, 175.2381209167, "23"], +[-37.7427645667, 175.2385698, "24"], +[-37.7427044833, 175.2380941667, "25"], +[-37.7425919167, 175.2385377667, "26"], +[-37.7425293, 175.2380399833, "27"], +[-37.7424366333, 175.2385058, "28"], +[-37.7419696167, 175.2383669333, "34"], +[-37.74201655, 175.2375208667, "35"], +[-37.74163485, 175.2384092333, "36B"], +[-37.7415193333, 175.2384003167, "36C"], +[-37.7418189, 175.2381996833, "38"], +[-37.7417874, 175.2385279667, "36"], +[-37.7416967, 175.2372376167, "50"], +[-37.7444188833, 175.23852625, "3"], +[-37.7437284833, 175.2388016833, "12"], +[-37.74325005, 175.2386880667, "18"], +[-37.7416675, 175.2373824, "48"], +[-37.74387885, 175.2383758667, "9"], +[-37.7417150333, 175.2380314333, "40"], +[-37.7415146833, 175.23797065, "42A"], +[-37.7414642, 175.2382369667, "42B"], +[-37.74166135, 175.2377910167, "44"], +[-37.7416516, 175.2376073, "46"], +[-37.7443614667, 175.2389549833, "4"], +[-37.7442602667, 175.2384798, "5"], +[-37.7441973167, 175.2389193667, "6"], +[-37.7423807833, 175.2380131333, "29"], +[-37.7420169667, 175.2378088333, "33"], +[-37.7445022833, 175.2389852833, "2"], +[-37.7421247, 175.2384280333, "32"], +[-37.7422243667, 175.2379745333, "31"], +[-37.7422801667, 175.2384733333, "30"], +[-37.74410355, 175.23843385, "7"], +[-37.7440417, 175.2388848833, "8"], +[-37.7583917167, 175.2573096333, "6B"], +[-37.7583030667, 175.2576567167, "10"], +[-37.7579183833, 175.2578933833, "14"], +[-37.7580949833, 175.2575489167, "12A"], +[-37.75847185, 175.2571723833, "6A"], +[-37.7575392, 175.2578757833, "11"], +[-37.7579962833, 175.257693, "12"], +[-37.7582653333, 175.2564988833, "1A"], +[-37.7583484, 175.2563065167, "1"], +[-37.7585893667, 175.2566669, "2"], +[-37.7581473, 175.25664575, "3A"], +[-37.7578681333, 175.2566296667, "3B"], +[-37.75849265, 175.2568333167, "4"], +[-37.7576498833, 175.25647245, "5"], +[-37.7583172167, 175.257157, "6"], +[-37.75784745, 175.2568040167, "7A"], +[-37.7582037167, 175.2573884667, "8"], +[-37.7579803833, 175.2569802667, "7"], +[-37.7576505667, 175.2576817, "9"], +[-37.8049116, 175.31628385, "2"], +[-37.8051848667, 175.31606195, "12"], +[-37.8049716, 175.3158260333, "6"], +[-37.8053217833, 175.31616685, "14"], +[-37.8050445333, 175.31570015, "8"], +[-37.8051112333, 175.3158931167, "10"], +[-37.80538255, 175.3163554333, "16"], +[-37.8050087667, 175.3162331667, "4"], +[-37.7702213, 175.32842875, "53B"], +[-37.7710850667, 175.3272072667, "41A"], +[-37.76982245, 175.3280202667, "53C"], +[-37.7707458333, 175.328386, "51A"], +[-37.76944105, 175.3276291667, "53D"], +[-37.7703789333, 175.3267193167, "41B"], +[-37.7713852333, 175.3289643667, "45"], +[-37.77064235, 175.3262556667, "41C"], +[-37.7721528833, 175.32778445, "37"], +[-37.76962885, 175.3273518667, "51D"], +[-37.7706746333, 175.3302888, "64"], +[-37.7699817167, 175.3276065167, "51C"], +[-37.7694050667, 175.3311988, "72"], +[-37.77037535, 175.32800735, "51B"], +[-37.7706580167, 175.3297220833, "63"], +[-37.7726681667, 175.3269419, "23"], +[-37.7711647833, 175.329318, "53A"], +[-37.7894126667, 175.2468432333, "3"], +[-37.7882807333, 175.2470788167, "15A"], +[-37.78878885, 175.2470849167, "11"], +[-37.7885049833, 175.2474924333, "12"], +[-37.7883241333, 175.2475018333, "14"], +[-37.7885038333, 175.2471103, "13B"], +[-37.7886377333, 175.24711655, "13A"], +[-37.7881519667, 175.2473311167, "17"], +[-37.78812155, 175.24755105, "16"], +[-37.78796615, 175.2474364833, "19"], +[-37.7895556167, 175.2467859667, "1"], +[-37.7895445667, 175.2471588833, "2"], +[-37.7894495167, 175.2471733333, "4"], +[-37.7886808333, 175.2474779333, "10B"], +[-37.7888018167, 175.2474218333, "10A"], +[-37.78901715, 175.2473427167, "8"], +[-37.7892427167, 175.24671585, "5A"], +[-37.7883927, 175.2472470833, "15B"], +[-37.78922955, 175.24725285, "6"], +[-37.7893034667, 175.2468879, "5"], +[-37.78911925, 175.2469548667, "7"], +[-37.7889509167, 175.24702535, "9"], +[-37.7780124667, 175.2219666667, "5"], +[-37.7778974333, 175.22212785, "3"], +[-37.7780818667, 175.22156455, "9"], +[-37.7778124, 175.2222608167, "1"], +[-37.7779018167, 175.2214895333, "10"], +[-37.7781385833, 175.2217871833, "7"], +[-37.7777913, 175.2216269833, "8"], +[-37.77758095, 175.2220058667, "4"], +[-37.7776964333, 175.22182875, "6"], +[-37.77751465, 175.2221365, "2"], +[-37.8222858167, 175.2834977, "10"], +[-37.8226105667, 175.2847704333, "22A"], +[-37.8217217167, 175.2836617333, "11"], +[-37.8225603333, 175.2830127667, "6A"], +[-37.8225738167, 175.2837204667, "12"], +[-37.8225705167, 175.28346855, "8A"], +[-37.8218026167, 175.2838240333, "13"], +[-37.8219895167, 175.2851667, "25A"], +[-37.8222042333, 175.2838324667, "14"], +[-37.8216861667, 175.2830010667, "1A"], +[-37.8217926333, 175.2840333167, "15"], +[-37.8226826833, 175.285031, "24A"], +[-37.82184485, 175.2842417167, "17"], +[-37.8216822333, 175.2842786667, "17B"], +[-37.82191, 175.2844434167, "19"], +[-37.8224389333, 175.2847152, "20"], +[-37.8222094333, 175.2857144, "31A"], +[-37.8216097167, 175.28350115, "9"], +[-37.8238148667, 175.2885915167, "56"], +[-37.8234219333, 175.28864085, "57"], +[-37.8238884, 175.2887696667, "58"], +[-37.8242044833, 175.2890544667, "62B"], +[-37.8236771333, 175.2892710667, "63"], +[-37.8240948667, 175.2893036333, "64"], +[-37.8237677, 175.2894677833, "65"], +[-37.8241821833, 175.2894782, "66"], +[-37.8238442167, 175.28969845, "67"], +[-37.8226369167, 175.2832525, "8B"], +[-37.8226805, 175.2833856333, "8C"], +[-37.8223840167, 175.2833958167, "10A"], +[-37.8227226333, 175.2835739, "12B"], +[-37.8228497, 175.2834520833, "12C"], +[-37.8223106167, 175.2839027333, "14A"], +[-37.8222743333, 175.2841974, "16A"], +[-37.8218761333, 175.2832158667, "3B"], +[-37.82172095, 175.2844486, "19A"], +[-37.8231067, 175.2865943833, "36"], +[-37.8215286333, 175.2832797167, "7"], +[-37.8222333167, 175.28405675, "16"], +[-37.8219707167, 175.2830775167, "3"], +[-37.8222509667, 175.2852363667, "27"], +[-37.8235075333, 175.2888472333, "59"], +[-37.8243586, 175.2889528667, "62A"], +[-37.8220408, 175.2848425167, "23"], +[-37.82251985, 175.2848892333, "22"], +[-37.8219725833, 175.2846325, "21"], +[-37.8223821667, 175.2829834833, "4"], +[-37.8223250833, 175.2828931667, "2"], +[-37.8219116667, 175.2833619, "5"], +[-37.8223872833, 175.2831867167, "6"], +[-37.82359235, 175.2890637833, "61"], +[-37.8239706667, 175.2890397167, "60"], +[-37.8229429333, 175.2861766, "32"], +[-37.8223602833, 175.28574095, "31"], +[-37.8221189333, 175.2850555333, "25"], +[-37.8226120167, 175.2851474333, "24"], +[-37.8222907667, 175.2854752, "29"], +[-37.8226694333, 175.2853644667, "26"], +[-37.8221895667, 175.2856418833, "29A"], +[-37.8225038833, 175.2862125167, "35"], +[-37.822416, 175.2859976167, "33"], +[-37.82350705, 175.28785645, "48"], +[-37.8230624833, 175.2864532, "34"], +[-37.8225912667, 175.28643115, "37"], +[-37.8219508833, 175.2828419333, "1"], +[-37.8233502333, 175.2874863667, "44"], +[-37.8234290333, 175.2876810833, "46"], +[-37.8232902167, 175.2873045, "42"], +[-37.8235915167, 175.2880490167, "50"], +[-37.8236623, 175.2882227333, "52"], +[-37.8220034833, 175.2852765, "27A"], +[-37.8233350333, 175.28844355, "55"], +[-37.8237313167, 175.2884183, "54"], +[-37.7501000333, 175.2774926167, "23"], +[-37.7511089833, 175.2782117, "9"], +[-37.75058195, 175.27768845, "13"], +[-37.7304125833, 175.2421072833, "6"], +[-37.7293073167, 175.2426018167, "19"], +[-37.7296222, 175.2431611, "23"], +[-37.72945515, 175.2427050167, "17"], +[-37.72996335, 175.2431478667, "16"], +[-37.7297332667, 175.2429428, "15"], +[-37.7300781167, 175.2427022, "12"], +[-37.73013495, 175.2424625833, "10"], +[-37.7300412, 175.2429563, "14"], +[-37.7301016333, 175.2436488833, "20"], +[-37.7305500167, 175.2418937167, "4"], +[-37.7299162167, 175.2433856667, "18"], +[-37.73070835, 175.2416914667, "2"], +[-37.7302654, 175.2422806667, "8"], +[-37.7485258333, 175.2680378333, "24A"], +[-37.7478149, 175.2687843333, "29"], +[-37.7476391167, 175.2694555333, "37"], +[-37.7473028667, 175.2708095667, "54"], +[-37.74713855, 175.2707721, "56"], +[-37.74696155, 175.2711481333, "58"], +[-37.74694745, 175.2707125667, "60"], +[-37.7482338833, 175.26593145, "4"], +[-37.7475908167, 175.2706889333, "48"], +[-37.7476849667, 175.2692678333, "35"], +[-37.7475901333, 175.27091445, "50"], +[-37.74704595, 175.2702676167, "49"], +[-37.7477387333, 175.2690698, "33"], +[-37.7485840833, 175.2666678167, "12"], +[-37.7475859833, 175.2696632167, "39"], +[-37.7482252167, 175.2685668167, "30"], +[-37.7479788333, 175.2694396167, "38"], +[-37.7478676667, 175.2698467333, "42"], +[-37.7474822333, 175.2700583, "43"], +[-37.7476900167, 175.2704914667, "46"], +[-37.7473521333, 175.2703960333, "45"], +[-37.7472184, 175.2703372, "47"], +[-37.7474424167, 175.2708177667, "52"], +[-37.74805275, 175.2662940333, "7"], +[-37.7483008833, 175.26608305, "6"], +[-37.7483881833, 175.2662817333, "8"], +[-37.7482203, 175.2666333, "9"], +[-37.74823685, 175.2671629833, "13"], +[-37.7482769333, 175.2669505, "11"], +[-37.7485996833, 175.26681435, "14"], +[-37.7488167333, 175.2667962, "14A"], +[-37.7481351167, 175.26755125, "17"], +[-37.7485666167, 175.2672990333, "18"], +[-37.7484931667, 175.2664759167, "10"], +[-37.7484595333, 175.26771095, "22"], +[-37.7480812333, 175.2677618, "19"], +[-37.7480275333, 175.267969, "21"], +[-37.7485067167, 175.2675082667, "20"], +[-37.7481870167, 175.2673343167, "15"], +[-37.7486152667, 175.2671181333, "16"], +[-37.7479734333, 175.2681714167, "23"], +[-37.74827915, 175.26834925, "28"], +[-37.7478611667, 175.26858685, "27"], +[-37.7481245833, 175.2696619, "40A"], +[-37.7479248, 175.2683707167, "25"], +[-37.7483411167, 175.2681428333, "26"], +[-37.7475305667, 175.2698532833, "41"], +[-37.74839835, 175.2679273833, "24"], +[-37.7479329167, 175.2696341333, "40"], +[-37.72545875, 175.2418022167, "3"], +[-37.7251929833, 175.2417380167, "6"], +[-37.7252254333, 175.2419671333, "4"], +[-37.7251790333, 175.2415124167, "8"], +[-37.7282802167, 175.2673676, "14"], +[-37.72842785, 175.2674733333, "16"], +[-37.72747675, 175.2667171667, "4"], +[-37.7273624667, 175.2669913333, "3"], +[-37.7283828667, 175.2679122333, "15"], +[-37.7286338667, 175.2679154833, "18"], +[-37.72856365, 175.2681496, "20"], +[-37.7282495667, 175.2684388833, "19"], +[-37.7281425833, 175.2687693833, "21"], +[-37.7284839167, 175.2683789333, "22"], +[-37.7278809167, 175.26877735, "23"], +[-37.7277273833, 175.2686551833, "25"], +[-37.7283509667, 175.26885995, "26"], +[-37.7277178, 175.26881955, "27"], +[-37.7283104333, 175.26908165, "28"], +[-37.7277404833, 175.2690486833, "29"], +[-37.7282523, 175.2692363333, "30"], +[-37.7277602833, 175.2692383833, "31"], +[-37.7280716167, 175.26910045, "32"], +[-37.72791435, 175.2691643, "33"], +[-37.7275161833, 175.2671143667, "5"], +[-37.7271906667, 175.2668561333, "1"], +[-37.7284339667, 175.2686182833, "24"], +[-37.7279803833, 175.2675178833, "11"], +[-37.7281356333, 175.2672221833, "12"], +[-37.72815195, 175.2676551333, "13"], +[-37.7273449833, 175.2665804667, "2"], +[-37.7283361667, 175.2682400333, "17"], +[-37.7279691667, 175.2670995667, "10"], +[-37.7278292, 175.2673828333, "9"], +[-37.7276412167, 175.2668499, "6"], +[-37.7276845167, 175.2672493833, "7"], +[-37.7278096667, 175.2669615667, "8"], +[-37.8016937833, 175.3254525667, "6C"], +[-37.8021217167, 175.3255289, "14"], +[-37.8024467, 175.3255792, "18"], +[-37.8026078667, 175.3255129333, "20"], +[-37.8022864, 175.32555525, "16"], +[-37.8029196833, 175.325699, "24"], +[-37.8031322333, 175.32565905, "24A"], +[-37.8028350667, 175.3255103167, "22"], +[-37.8013111333, 175.3252088, "6"], +[-37.8015027333, 175.3253102667, "6A"], +[-37.8031798333, 175.32591125, "26"], +[-37.80184325, 175.3254798333, "8"], +[-37.78927455, 175.2745510167, "9A"], +[-37.781647, 175.266582, "145"], +[-37.7856877333, 175.2716784333, "73"], +[-37.7881451, 175.2727345333, "1/33-6/33"], +[-37.7820327333, 175.2676868833, "131"], +[-37.7806199, 175.2628796833, "169"], +[-37.7819528167, 175.26747315, "133"], +[-37.7872546667, 175.2731078667, "1/43-10/43"], +[-37.7818364, 175.2672132167, "135"], +[-37.7808065167, 175.2625276833, "169A"], +[-37.7817741333, 175.26696985, "137"], +[-37.7815796167, 175.2664103833, "145A"], +[-37.7820378833, 175.2667910167, "139A"], +[-37.7840394667, 175.2702361667, "95C"], +[-37.7817191667, 175.266763, "139"], +[-37.781718, 175.2678882, "128"], +[-37.7842601667, 175.2704515167, "91"], +[-37.7806151167, 175.2626409833, "171"], +[-37.7813553333, 175.2668001667, "144"], +[-37.78410995, 175.2701151833, "95B"], +[-37.7815405167, 175.2661825667, "147"], +[-37.7882684667, 175.2729043667, "33A-33F"], +[-37.7814191167, 175.2659805833, "149"], +[-37.7841536833, 175.2703464167, "95A"], +[-37.7812940333, 175.2656273, "153"], +[-37.7879754333, 175.2737768167, "1/25"], +[-37.7880353333, 175.2738483833, "2/25"], +[-37.7881285, 175.2735899, "3/25"], +[-37.78815345, 175.2735070167, "4/25"], +[-37.7881872833, 175.2734251833, "5/25"], +[-37.7874341167, 175.2732443167, "37"], +[-37.78936, 175.2749674667, "5"], +[-37.7801966333, 175.2629381167, "200"], +[-37.7836411167, 175.2698872167, "101"], +[-37.7834521833, 175.26964975, "105"], +[-37.7835322167, 175.2697753167, "103"], +[-37.7838600833, 175.2700247667, "99"], +[-37.7875473333, 175.2733634167, "35"], +[-37.78804595, 175.2728373333, "33"], +[-37.7877664167, 175.2729250833, "39"], +[-37.7871147833, 175.27300115, "45"], +[-37.7876511333, 175.2727425333, "41"], +[-37.7885723167, 175.2742608, "17B"], +[-37.7890315667, 175.2747019167, "11"], +[-37.7885637333, 175.2743433167, "17A"], +[-37.7883098167, 175.2740642833, "19"], +[-37.7894725333, 175.2750794, "3"], +[-37.7895851833, 175.2751987833, "1"], +[-37.7891247667, 175.2747783667, "9"], +[-37.7883464, 175.2732467167, "19A"], +[-37.7884295333, 175.2730311, "19B"], +[-37.7863575833, 175.2722487167, "63-65"], +[-37.7808017, 175.2622933667, "171A"], +[-37.78582205, 175.2717483167, "71"], +[-37.78072755, 175.2629617667, "167"], +[-37.7809203, 175.26295445, "165"], +[-37.7805830333, 175.2625428333, "173A"], +[-37.7806589333, 175.2623764, "173B"], +[-37.7807658, 175.2622, "173C"], +[-37.78049025, 175.26270835, "173"], +[-37.7804079833, 175.2626686833, "175"], +[-37.7822163, 175.2679409333, "127B"], +[-37.7823275, 175.2676176667, "131B"], +[-37.7821620667, 175.2676556167, "131A"], +[-37.7821375833, 175.2679587333, "127A"], +[-37.7823869833, 175.2683493667, "125"], +[-37.7866934167, 175.2725716, "49"], +[-37.7881849667, 175.2739666167, "21"], +[-37.7877406333, 175.2735382, "29"], +[-37.7879654667, 175.2730516, "31"], +[-37.7878604, 175.2736515167, "27"], +[-37.7845223167, 175.2706715833, "87"], +[-37.7843690833, 175.2705359, "89"], +[-37.7892382, 175.2748710167, "7"], +[-37.78622975, 175.2714070333, "67"], +[-37.7839624, 175.2701618333, "97"], +[-37.7846428, 175.2707587, "85"], +[-37.70880685, 175.3395828833, "17"], +[-37.7087943833, 175.3416587333, "31"], +[-37.708766, 175.3388657, "9"], +[-37.7092521, 175.3423683833, "38A"], +[-37.7092641, 175.34334685, "48"], +[-37.7088318667, 175.34628525, "75"], +[-37.7108523667, 175.3426258, "38B"], +[-37.7118110167, 175.3427260833, "38C"], +[-37.7105847167, 175.3439252833, "54B"], +[-37.7117374333, 175.3405777333, "20B"], +[-37.7108564167, 175.3407008667, "20A"], +[-37.70924825, 175.3411224833, "26"], +[-37.7100061667, 175.34383195, "54A"], +[-37.7088082667, 175.3433687, "49"], +[-37.70920055, 175.3386206, "6"], +[-37.7517066167, 175.2466283667, "44"], +[-37.75073255, 175.2487367333, "29"], +[-37.7507623667, 175.2480767667, "26"], +[-37.7520714833, 175.24671785, "55"], +[-37.7509411167, 175.2484474667, "33"], +[-37.7514150667, 175.247099, "38"], +[-37.7512556167, 175.2479645667, "39"], +[-37.7488715667, 175.2498196833, "3"], +[-37.74986435, 175.2494167333, "12"], +[-37.7499809333, 175.2498157667, "15"], +[-37.7500258167, 175.24916325, "14"], +[-37.7498642, 175.2498432167, "13"], +[-37.7502303833, 175.24952135, "19"], +[-37.7500931833, 175.2497077833, "17"], +[-37.7515130167, 175.2469398833, "40"], +[-37.7516034333, 175.246779, "42"], +[-37.7514706667, 175.24766205, "43"], +[-37.74970835, 175.2498417333, "11"], +[-37.7497257833, 175.2494274167, "10"], +[-37.7509805167, 175.24775175, "30"], +[-37.75083315, 175.2485916833, "31"], +[-37.7487464, 175.2493340167, "2"], +[-37.7511019, 175.24758145, "32"], +[-37.7515758667, 175.2474894167, "45"], +[-37.7518057, 175.2464632667, "46"], +[-37.7516700167, 175.2473490333, "47"], +[-37.7511986667, 175.2474099333, "34"], +[-37.7505252667, 175.2490652, "25"], +[-37.75130895, 175.2472504667, "36"], +[-37.7488854833, 175.24933855, "4"], +[-37.7505573, 175.2483888667, "22"], +[-37.751152, 175.24812815, "37"], +[-37.75029575, 175.24938995, "21"], +[-37.7510459333, 175.24828325, "35"], +[-37.7504132167, 175.2492239333, "23"], +[-37.7517756667, 175.2471783167, "49"], +[-37.7519810667, 175.2468636, "53"], +[-37.7518823167, 175.2470170333, "51"], +[-37.7506591333, 175.24823015, "24"], +[-37.7524968167, 175.2460532667, "59"], +[-37.75212015, 175.2459978833, "52"], +[-37.75201865, 175.24614695, "50"], +[-37.7522186833, 175.2458356667, "54"], +[-37.7519089833, 175.2463033333, "48"], +[-37.75087995, 175.2479215333, "28"], +[-37.7513616, 175.2478133833, "41"], +[-37.7495460333, 175.2498679333, "9"], +[-37.7506146833, 175.2489154833, "27"], +[-37.7293611667, 175.2781833833, "3"], +[-37.7292407, 175.2782492, "5"], +[-37.72867305, 175.2786026, "15"], +[-37.7287737667, 175.2785382333, "13"], +[-37.7285721833, 175.2786731167, "17"], +[-37.7290130167, 175.27839035, "9"], +[-37.72845525, 175.2787379667, "19"], +[-37.7282813167, 175.2788385333, "23"], +[-37.7283783833, 175.2787779833, "21"], +[-37.7291204167, 175.2783169333, "7"], +[-37.7294660833, 175.2784555667, "6"], +[-37.7294745333, 175.2781298, "1"], +[-37.7293841333, 175.2784885167, "8"], +[-37.7284576167, 175.2790288167, "24"], +[-37.7292504667, 175.27855155, "10"], +[-37.7288992167, 175.27845835, "11"], +[-37.7291308833, 175.2786149667, "12"], +[-37.7285518833, 175.27896455, "22"], +[-37.7290224667, 175.2786822333, "14"], +[-37.7289083333, 175.2787528833, "16"], +[-37.7287913833, 175.2788235, "18"], +[-37.7286659167, 175.2788973833, "20"], +[-37.7296066333, 175.2784396667, "4"], +[-37.7297491833, 175.2784812833, "2"], +[-37.8089986333, 175.32860485, "7"], +[-37.8082503667, 175.3290320167, "21"], +[-37.8083978333, 175.3296439167, "22"], +[-37.80813205, 175.3292329833, "23"], +[-37.8093782667, 175.3295200833, "12"], +[-37.8081424667, 175.3295367833, "24"], +[-37.8088567333, 175.3296142167, "18"], +[-37.8096216167, 175.3289027833, "8"], +[-37.8090126833, 175.3288369, "9"], +[-37.8093901333, 175.3291611333, "10"], +[-37.80907335, 175.3295576667, "16"], +[-37.80889775, 175.3291764, "13"], +[-37.8086279167, 175.32964905, "20"], +[-37.8083683833, 175.329044, "19"], +[-37.8094319333, 175.3300729, "14"], +[-37.80870525, 175.3291911667, "15"], +[-37.8085826833, 175.329195, "17"], +[-37.8092315167, 175.3281815167, "4"], +[-37.8090123833, 175.3291483333, "11"], +[-37.8093305167, 175.3285894667, "6"], +[-37.8089658, 175.3283615167, "5"], +[-37.7866101, 175.286655, "9A"], +[-37.7858063667, 175.28717705, "2J"], +[-37.7867509833, 175.2867985333, "9B"], +[-37.7857816667, 175.2874245167, "2A"], +[-37.7865063333, 175.2868384167, "7"], +[-37.7856281167, 175.2873371, "2D"], +[-37.7863457667, 175.2863786333, "10"], +[-37.7855881667, 175.2873091, "2E"], +[-37.7861277667, 175.2874443, "1"], +[-37.78567815, 175.2873676333, "2C"], +[-37.78620745, 175.28659565, "8"], +[-37.7857341333, 175.2873962333, "2B"], +[-37.78613555, 175.2866927167, "6"], +[-37.7855532667, 175.2872823333, "2F"], +[-37.7865322667, 175.2861033, "14"], +[-37.78666025, 175.2864714833, "11"], +[-37.7857776833, 175.2872517333, "2"], +[-37.7863743333, 175.2870088, "5"], +[-37.76612425, 175.27312065, "2"], +[-37.76593835, 175.2730803667, "2A"], +[-37.7639449333, 175.2722922833, "24A"], +[-37.7651287667, 175.2729560667, "10A"], +[-37.76445315, 175.2726052, "18A"], +[-37.7651155667, 175.2720856167, "3"], +[-37.7655779667, 175.27321415, "6A"], +[-37.7656193167, 175.2728634833, "6"], +[-37.7640409167, 175.2725451333, "22"], +[-37.7633589, 175.2704863167, "21"], +[-37.7642790167, 175.2722458333, "20"], +[-37.7634641833, 175.270421, "19"], +[-37.76350965, 175.2708159833, "17"], +[-37.7644517667, 175.2723505667, "18"], +[-37.7633473167, 175.2708382833, "23"], +[-37.76424115, 175.2715610167, "7"], +[-37.7653686, 175.2732881833, "8A"], +[-37.7654813333, 175.2728246167, "8"], +[-37.7650902667, 175.2725358667, "12A"], +[-37.7650349667, 175.2728796167, "12B"], +[-37.7653202667, 175.27261085, "10"], +[-37.7652992333, 175.2729735167, "10B"], +[-37.7640397, 175.27135785, "9"], +[-37.7649099333, 175.2726195167, "12"], +[-37.7637705167, 175.2710473167, "13"], +[-37.7646163833, 175.2724332, "16"], +[-37.76365575, 175.27060535, "17A"], +[-37.7639161667, 175.27119695, "11"], +[-37.7636210167, 175.2709292167, "15"], +[-37.7648188, 175.2724727, "14"], +[-37.76307575, 175.27076165, "25"], +[-37.7639995, 175.2719661167, "26"], +[-37.7628215833, 175.2706821167, "27"], +[-37.7638557833, 175.2718370333, "28"], +[-37.7637222833, 175.2716736667, "30"], +[-37.7636134667, 175.2715430333, "32"], +[-37.7634631167, 175.2714206167, "34"], +[-37.7629921833, 175.27118945, "38"], +[-37.76328725, 175.2713249167, "36"], +[-37.76409225, 175.2721436667, "24"], +[-37.7649058167, 175.2720429167, "5A"], +[-37.7647005833, 175.2719778667, "5"], +[-37.76566145, 175.2724345333, "1"], +[-37.76582475, 175.2725535667, "1A"], +[-37.7657563333, 175.2730574167, "4"], +[-37.7909706333, 175.3244603333, "1/16-35/16"], +[-37.7910548667, 175.32567825, "9"], +[-37.7911737167, 175.3255192167, "11"], +[-37.7909030167, 175.3255621333, "7"], +[-37.7905376667, 175.3249580667, "10"], +[-37.7904342667, 175.3251396833, "8"], +[-37.7903365167, 175.3253126167, "6"], +[-37.7907754333, 175.3245753, "14"], +[-37.7904080833, 175.3258084, "1"], +[-37.7912943667, 175.3253501, "13"], +[-37.7914039167, 175.3251643833, "15"], +[-37.7901475333, 175.3255997, "2"], +[-37.7905483167, 175.3255740333, "3A"], +[-37.7906207833, 175.3254624667, "3B"], +[-37.7904639333, 175.3257129667, "3"], +[-37.7908124833, 175.3254350833, "5"], +[-37.7902267, 175.3254891667, "4"], +[-37.7906525333, 175.3247592, "12"], +[-37.7837946333, 175.2213843, "40"], +[-37.7844061833, 175.2220959167, "19"], +[-37.7829282167, 175.2218548167, "10"], +[-37.7840349833, 175.2225271167, "11"], +[-37.78303985, 175.2220383667, "12"], +[-37.7846009, 175.2225105333, "15"], +[-37.78331065, 175.2230368667, "3"], +[-37.7834973, 175.2225029, "18"], +[-37.7846703167, 175.22234655, "17"], +[-37.7833409667, 175.2226294, "16"], +[-37.7831292167, 175.2222350167, "14"], +[-37.7842471333, 175.2223469, "13"], +[-37.7844942833, 175.22182185, "23"], +[-37.7839821, 175.2221654, "24"], +[-37.7845429167, 175.22158815, "25"], +[-37.7841292667, 175.2219486167, "26"], +[-37.7836729667, 175.2227785167, "7"], +[-37.7838206, 175.222271, "22"], +[-37.78317725, 175.22312245, "1"], +[-37.7847526333, 175.22208615, "21"], +[-37.7836588667, 175.2223904, "20"], +[-37.78420665, 175.22165355, "28"], +[-37.7834162, 175.2216282, "34"], +[-37.7848981833, 175.2214055667, "29"], +[-37.7848674833, 175.2215637833, "27"], +[-37.7838006333, 175.2216267, "30"], +[-37.7845208667, 175.22132435, "33"], +[-37.7834840167, 175.2218034333, "32"], +[-37.7846960667, 175.2213506833, "31"], +[-37.7843528667, 175.22121515, "35"], +[-37.7835949667, 175.2214816667, "36"], +[-37.7834834667, 175.2229108833, "5"], +[-37.7841642833, 175.2213061167, "44"], +[-37.78311855, 175.2227607833, "4"], +[-37.7839874667, 175.2213559167, "42"], +[-37.7829731, 175.22234775, "6"], +[-37.7828210333, 175.2219899, "8"], +[-37.7838509833, 175.22266655, "9"], +[-37.7957167833, 175.2417418833, "3"], +[-37.79563185, 175.2420804333, "4"], +[-37.7955486333, 175.241673, "5"], +[-37.7954794833, 175.2419967, "6"], +[-37.7951547167, 175.2417941833, "10A"], +[-37.7952844667, 175.2419371, "8"], +[-37.7952589833, 175.2416287667, "9A"], +[-37.7952870667, 175.2414184, "9B"], +[-37.79504385, 175.2416044, "11"], +[-37.7949693833, 175.2417756333, "12"], +[-37.7957657167, 175.2421027, "2"], +[-37.7947301833, 175.2418642833, "14B"], +[-37.7948848667, 175.2414475167, "13A"], +[-37.7951129, 175.2419931, "10B"], +[-37.79488755, 175.241597, "13B"], +[-37.7947372, 175.2416966167, "14A"], +[-37.7953950167, 175.2415793, "7"], +[-37.7953439333, 175.24197485, "8B"], +[-37.73000745, 175.2807607667, "14"], +[-37.7303648667, 175.28046265, "18"], +[-37.7303147167, 175.2817975333, "3"], +[-37.7304058167, 175.2809162833, "11"], +[-37.7301019833, 175.2821258833, "2"], +[-37.7305147167, 175.2807267667, "15"], +[-37.73005815, 175.2819059, "4"], +[-37.7305486333, 175.2802603667, "19"], +[-37.7300207333, 175.28166835, "6"], +[-37.7299539833, 175.2814000333, "8"], +[-37.7306258167, 175.2809133833, "13"], +[-37.7304859333, 175.2805581167, "17"], +[-37.7301951333, 175.2810989167, "9"], +[-37.7301685333, 175.2805857, "16"], +[-37.749565, 175.27460115, "14"], +[-37.75009595, 175.2770335667, "58A"], +[-37.7498447167, 175.27456605, "12"], +[-37.7501213667, 175.2771415667, "60A"], +[-37.74979945, 175.27545825, "28"], +[-37.7499325833, 175.2772220667, "60"], +[-37.7495560667, 175.27661315, "48"], +[-37.7499181667, 175.2770719167, "58"], +[-37.7498702167, 175.2743837, "10"], +[-37.7496286833, 175.27731425, "62"], +[-37.7495762333, 175.2743202667, "8"], +[-37.7491929, 175.27541975, "13"], +[-37.7495805, 175.2741407833, "6"], +[-37.7492011667, 175.2750484833, "9"], +[-37.7492172667, 175.2748601833, "7"], +[-37.7495311, 175.27642645, "46"], +[-37.7491681, 175.2758057833, "17"], +[-37.7491581, 175.2760127167, "19"], +[-37.7498223833, 175.27500935, "20"], +[-37.7495426167, 175.2750278333, "22"], +[-37.7491946667, 175.2762156833, "21"], +[-37.7495252, 175.2752246667, "24"], +[-37.7492158167, 175.2763943, "23"], +[-37.7497957667, 175.2753124667, "26"], +[-37.7492469667, 175.27659265, "25"], +[-37.7492623333, 175.2767753333, "27"], +[-37.7498155833, 175.276316, "44"], +[-37.7498308833, 175.2748711167, "18"], +[-37.7495129167, 175.2754929333, "30"], +[-37.7492743167, 175.2740249167, "3"], +[-37.74958035, 175.2739602333, "4"], +[-37.7495085667, 175.2756757667, "32"], +[-37.7497935, 175.2757585, "34"], +[-37.7491813333, 175.2756184667, "15"], +[-37.7497935167, 175.2758946333, "36"], +[-37.7498064167, 175.2760928667, "42A"], +[-37.7494927333, 175.2759407167, "38"], +[-37.7495035167, 175.2761563333, "40"], +[-37.7495542333, 175.2747860667, "16"], +[-37.7498145, 175.27618225, "42"], +[-37.74927695, 175.2769481, "29"], +[-37.7492882333, 175.27378955, "1"], +[-37.7498625667, 175.2766206667, "50"], +[-37.7498839667, 175.2767294, "52"], +[-37.7495819833, 175.2768802333, "54"], +[-37.75015325, 175.2766977833, "52A"], +[-37.7496079667, 175.27706585, "56"], +[-37.74919125, 175.2752423, "11"], +[-37.81503805, 175.2995775667, "24"], +[-37.8145877833, 175.2971947333, "70"], +[-37.81514705, 175.2994237167, "26"], +[-37.81466445, 175.2970459333, "68"], +[-37.81640545, 175.2981204333, "31"], +[-37.8145118833, 175.29953485, "114"], +[-37.8137357333, 175.2976574, "97A"], +[-37.8148837833, 175.3008112667, "1"], +[-37.81369145, 175.29776585, "99A"], +[-37.8134682167, 175.2988953, "111"], +[-37.8133311667, 175.2997111833, "119"], +[-37.8141954833, 175.2993526833, "112"], +[-37.8160101833, 175.29685265, "51A"], +[-37.8140159667, 175.2992517833, "110"], +[-37.8163815, 175.2983165667, "29"], +[-37.81349685, 175.2987223333, "109"], +[-37.8138138667, 175.2979939167, "99"], +[-37.8162447833, 175.2986857667, "25"], +[-37.8148733167, 175.2996583333, "118"], +[-37.8158103833, 175.2986705167, "38"], +[-37.8139999167, 175.29895125, "108A"], +[-37.8157818833, 175.2972764667, "54"], +[-37.8160085833, 175.2989673333, "21"], +[-37.81561115, 175.29675845, "55A"], +[-37.81547785, 175.2966452833, "61"], +[-37.8157697333, 175.2964649333, "55B"], +[-37.8146420667, 175.2996014167, "116"], +[-37.8142451167, 175.3003162, "139"], +[-37.8144244, 175.2999574333, "141"], +[-37.81457235, 175.3000361833, "143"], +[-37.8137813333, 175.2989186, "104"], +[-37.8135370333, 175.2985539, "107"], +[-37.81388955, 175.2991579833, "108"], +[-37.8134853167, 175.2990843333, "113"], +[-37.8135320667, 175.29925615, "115"], +[-37.8136489, 175.2994513, "121"], +[-37.81375415, 175.2995686667, "123"], +[-37.8136639667, 175.2999878167, "125"], +[-37.8139183833, 175.2996678333, "127"], +[-37.8138174333, 175.3000738333, "129"], +[-37.81392715, 175.3001495333, "131"], +[-37.8141008667, 175.2997675333, "133"], +[-37.8141808833, 175.2966176833, "85"], +[-37.8148409, 175.2964419167, "77"], +[-37.8141887333, 175.2980268, "86"], +[-37.8149852, 175.2967199667, "64"], +[-37.8148825, 175.2959888667, "75"], +[-37.81496105, 175.3006222333, "3"], +[-37.8147210667, 175.3001021667, "6"], +[-37.8147463333, 175.2969053, "66"], +[-37.8145044333, 175.2973627167, "72"], +[-37.8145079833, 175.3007523833, "2"], +[-37.8143516833, 175.2977153167, "78"], +[-37.8144301333, 175.2975368, "74"], +[-37.8142657, 175.2978708833, "82"], +[-37.8144687333, 175.2967955333, "83"], +[-37.81394435, 175.2984735333, "96"], +[-37.8153105167, 175.29997005, "11"], +[-37.8139330833, 175.2977786167, "97"], +[-37.8160085667, 175.29708995, "49"], +[-37.8142436167, 175.29983805, "135"], +[-37.8140909, 175.2967234667, "87"], +[-37.81436575, 175.2969795, "89"], +[-37.81411115, 175.2981627, "90"], +[-37.8142599667, 175.2971824833, "91"], +[-37.8140367833, 175.29831115, "94"], +[-37.8141445333, 175.2973998667, "93"], +[-37.81385975, 175.29859075, "100"], +[-37.8146434167, 175.3005424833, "4"], +[-37.8155717833, 175.3000012833, "13"], +[-37.81402575, 175.2976087, "95"], +[-37.8154381833, 175.2997420167, "15"], +[-37.8155366667, 175.2995789333, "17"], +[-37.81639645, 175.2979553833, "33"], +[-37.8152646333, 175.2993185167, "28"], +[-37.8163265833, 175.2985380333, "27"], +[-37.8161263, 175.2988256333, "23"], +[-37.8154627667, 175.2990970833, "32"], +[-37.8153818833, 175.29919715, "30"], +[-37.8155877833, 175.2989353167, "34"], +[-37.8157379833, 175.29823345, "42"], +[-37.8161723833, 175.2972523333, "41"], +[-37.8163838667, 175.2977540833, "35"], +[-37.8159006333, 175.2985442167, "40"], +[-37.81568985, 175.2987969667, "36"], +[-37.8162831833, 175.2973946167, "39"], +[-37.8163558, 175.2975632833, "37"], +[-37.8160380833, 175.29834225, "44"], +[-37.81633455, 175.2968899667, "43"], +[-37.8161165, 175.2978599167, "48"], +[-37.81639715, 175.2966381, "45"], +[-37.8160984833, 175.2981313833, "46"], +[-37.8162576, 175.2968201833, "47"], +[-37.81507005, 175.3004402667, "5"], +[-37.8156874833, 175.29634705, "61B"], +[-37.8153833833, 175.2969584667, "60"], +[-37.8159124833, 175.29742665, "52"], +[-37.8158679333, 175.2969856667, "51"], +[-37.8160282667, 175.2975916667, "50"], +[-37.8157408667, 175.29688425, "53A"], +[-37.8156506, 175.2971823, "56"], +[-37.8155176667, 175.2970672, "58"], +[-37.8158620667, 175.2966084333, "53B"], +[-37.8151253667, 175.29602065, "69"], +[-37.8152044333, 175.296038, "67"], +[-37.81526545, 175.2968463167, "62"], +[-37.8151929333, 175.2964477833, "65"], +[-37.8153502, 175.2965314333, "63"], +[-37.81501455, 175.2964026667, "71"], +[-37.81516155, 175.3002676167, "7"], +[-37.8152260667, 175.30011435, "9"], +[-37.8141421167, 175.3002689333, "137"], +[-37.7419048667, 175.24652225, "15"], +[-37.7416123833, 175.2455301333, "6"], +[-37.7414977, 175.24607265, "7"], +[-37.7417514833, 175.2457142167, "8"], +[-37.7419989167, 175.24574275, "10"], +[-37.7416482833, 175.2461957333, "9"], +[-37.74217965, 175.2456792, "12"], +[-37.7422760667, 175.2464514, "23"], +[-37.7420831333, 175.2461878833, "19"], +[-37.7421762333, 175.24650135, "21"], +[-37.74192545, 175.2462209167, "17"], +[-37.7425261167, 175.2455664, "16"], +[-37.7423585333, 175.2456244167, "14"], +[-37.7417515, 175.2463603333, "11"], +[-37.7425391, 175.24639005, "29"], +[-37.7424488333, 175.2460660167, "27"], +[-37.7422908667, 175.2461255167, "25"], +[-37.74137645, 175.2458733667, "5"], +[-37.74266225, 175.24642455, "31"], +[-37.7412362667, 175.2456619167, "3"], +[-37.7430693333, 175.24578775, "39"], +[-37.7428522167, 175.24630675, "33"], +[-37.7427686667, 175.2458240333, "37"], +[-37.7427428167, 175.2460059833, "35"], +[-37.7414909167, 175.2453284167, "4"], +[-37.7418037667, 175.2466113, "13"], +[-37.7312394167, 175.2615197333, "258"], +[-37.7305502667, 175.2751357, "110"], +[-37.7310466833, 175.2611830667, "266"], +[-37.7321000333, 175.2849658, "19"], +[-37.73112515, 175.2609606167, "268"], +[-37.7315050333, 175.2597749833, "296"], +[-37.7313043667, 175.26120895, "270"], +[-37.73130715, 175.2809141833, "55C"], +[-37.73135465, 175.2610032333, "272"], +[-37.7306572, 175.2770050667, "92"], +[-37.7314024833, 175.2607745167, "274"], +[-37.7310058667, 175.2778069, "93A"], +[-37.7312028333, 175.2606396, "276"], +[-37.730862, 175.2801838833, "56"], +[-37.73082265, 175.2610791333, "264"], +[-37.7319385833, 175.2841139167, "27"], +[-37.7308109833, 175.2612350333, "262"], +[-37.7317161, 175.2830187667, "37"], +[-37.7309081667, 175.2658528333, "223"], +[-37.7310018, 175.2781303667, "91"], +[-37.7306254833, 175.2655549333, "224"], +[-37.7315619333, 175.2821389167, "45"], +[-37.7306686, 175.2653185, "226"], +[-37.7308827333, 175.2804199, "54"], +[-37.73071455, 175.2650946333, "228"], +[-37.7319588, 175.2859659167, "8"], +[-37.73101695, 175.2771773167, "93"], +[-37.7324713833, 175.2868532, "5"], +[-37.7310742333, 175.2790323167, "73"], +[-37.7308081167, 175.279956, "58"], +[-37.73116005, 175.2799395333, "67"], +[-37.731359, 175.2812200167, "55A"], +[-37.73112395, 175.276435, "97"], +[-37.7315988, 175.25997325, "298"], +[-37.7309191833, 175.2763219, "99"], +[-37.7318493667, 175.2836651167, "31"], +[-37.7308677667, 175.2750426667, "109"], +[-37.7322944833, 175.2860210333, "13"], +[-37.7308778167, 175.2752716333, "107"], +[-37.7318045333, 175.283452, "33"], +[-37.7308934, 175.2757527667, "103"], +[-37.7309902167, 175.2808894833, "50"], +[-37.7304017833, 175.2729033, "172"], +[-37.7314714, 175.2597094667, "294"], +[-37.7304131333, 175.2727197333, "174"], +[-37.7303993333, 175.2741404, "118"], +[-37.73015125, 175.2726660167, "176"], +[-37.7322511167, 175.2858068833, "15"], +[-37.7301703333, 175.2725026, "178"], +[-37.7307475333, 175.2797002667, "60"], +[-37.7304077167, 175.2724367167, "180"], +[-37.7320104167, 175.2845367333, "23"], +[-37.7303950167, 175.2721817333, "182"], +[-37.7314401167, 175.2814787833, "51"], +[-37.7303867667, 175.2719129167, "184"], +[-37.73147385, 175.2816887333, "49"], +[-37.73063315, 175.2711113333, "185"], +[-37.7306252333, 175.2763014333, "98"], +[-37.7303638833, 175.2716764667, "186"], +[-37.7306631, 175.2767777667, "94"], +[-37.73022655, 175.2705702667, "188"], +[-37.7316847, 175.2828060833, "39"], +[-37.73018965, 175.2703124667, "190"], +[-37.7313372833, 175.2810752333, "55B"], +[-37.73015825, 175.2700451167, "192"], +[-37.7308878, 175.2755032833, "105"], +[-37.7301369167, 175.2697813667, "194"], +[-37.73160425, 175.28236605, "43"], +[-37.7304621, 175.2695689833, "195"], +[-37.7317619833, 175.28323615, "35"], +[-37.73012545, 175.2695479333, "196"], +[-37.7320551333, 175.2847555, "21"], +[-37.7304441833, 175.2693291833, "197"], +[-37.73160785, 175.2841238667, "24"], +[-37.73011965, 175.2693200667, "198"], +[-37.7315183, 175.2819216, "47"], +[-37.7304442167, 175.26911015, "199"], +[-37.7319073, 175.2838956, "29"], +[-37.7301166833, 175.2690891667, "200"], +[-37.7319722333, 175.2843266667, "25"], +[-37.73043725, 175.2688908667, "201"], +[-37.7316400167, 175.2825845167, "41"], +[-37.7301170333, 175.2688729, "202"], +[-37.7304419167, 175.26865765, "203"], +[-37.7301253833, 175.2686913667, "204"], +[-37.730451, 175.2684473833, "205"], +[-37.7301836167, 175.2679124, "206"], +[-37.7304693333, 175.26821695, "207"], +[-37.7301993167, 175.2677309667, "208"], +[-37.7304911167, 175.26799325, "209"], +[-37.7302332667, 175.2675223167, "210"], +[-37.7305163333, 175.2677607833, "211"], +[-37.7302601333, 175.2672946833, "212"], +[-37.7305429333, 175.2675358667, "213"], +[-37.7303005833, 175.2670781167, "214"], +[-37.7305845333, 175.26726955, "215"], +[-37.7303372, 175.2668750333, "216"], +[-37.7303719, 175.2667131667, "218"], +[-37.7307865167, 175.2663748167, "219"], +[-37.7304178333, 175.2664989333, "220"], +[-37.7308587, 175.2661138833, "221"], +[-37.7313439333, 175.2827261333, "36"], +[-37.7313902333, 175.282963, "34"], +[-37.73142585, 175.2831903667, "32"], +[-37.73163955, 175.2843602333, "22"], +[-37.7314613333, 175.2834222333, "30"], +[-37.7315111, 175.28366845, "28"], +[-37.7316895333, 175.2845971667, "20"], +[-37.7317362667, 175.2848201667, "18"], +[-37.7315575667, 175.2839007, "26"], +[-37.7322308333, 175.2855651, "17"], +[-37.73242495, 175.2866388667, "7"], +[-37.7323842333, 175.2864318, "9"], +[-37.7323409333, 175.2862211667, "11"], +[-37.7310323667, 175.2613935167, "260"], +[-37.7307534667, 175.26487865, "230"], +[-37.7307851333, 175.2646722667, "232"], +[-37.7309334667, 175.2634585833, "238"], +[-37.7309014167, 175.2636822833, "236"], +[-37.7309657, 175.2632262167, "240"], +[-37.7309982667, 175.26298505, "242"], +[-37.7310311, 175.2627608, "244"], +[-37.7308512833, 175.26261085, "246"], +[-37.7308440833, 175.26248915, "248"], +[-37.7310656, 175.2625018167, "250"], +[-37.7311003667, 175.2622409333, "252"], +[-37.7311905, 175.2617272667, "256"], +[-37.7309687667, 175.2604695667, "280"], +[-37.7310310167, 175.2603380333, "282"], +[-37.73125595, 175.2604413833, "284"], +[-37.7314843667, 175.2604674667, "286"], +[-37.7315470167, 175.2602234, "288"], +[-37.7313664167, 175.2600441333, "290"], +[-37.7313674, 175.2599640167, "292"], +[-37.7310179, 175.2766693333, "95"], +[-37.7306433833, 175.27655145, "96"], +[-37.7309093833, 175.2759950167, "101"], +[-37.7309231833, 175.2606977667, "278"], +[-37.7309400667, 175.2806571167, "52"], +[-37.7310647, 175.2813579833, "46"], +[-37.7312065333, 175.2769085167, "95A"], +[-37.7305662167, 175.2754786833, "106"], +[-37.7305628333, 175.27531765, "108"], +[-37.7311145, 175.2816041833, "44"], +[-37.7310401333, 175.2811263833, "48"], +[-37.73930815, 175.2521083167, "121"], +[-37.7386506167, 175.2516275833, "103"], +[-37.7390101, 175.2516756833, "131"], +[-37.73879965, 175.2517069167, "105"], +[-37.73905625, 175.2518279167, "129"], +[-37.7387501667, 175.2519216167, "107"], +[-37.7387342333, 175.2514654167, "101"], +[-37.7388901, 175.2519643167, "109"], +[-37.7394381833, 175.2519476833, "123"], +[-37.7388795833, 175.2521730333, "111"], +[-37.7391981667, 175.2522242333, "119"], +[-37.7391697833, 175.2517018, "127"], +[-37.7390853333, 175.2523694833, "117"], +[-37.7393028667, 175.2517413833, "125"], +[-37.73892635, 175.2523227833, "113"], +[-37.7389266333, 175.2525540167, "115"], +[-37.7648946667, 175.2913029167, "3A"], +[-37.7643934833, 175.2912662833, "8A"], +[-37.7648467333, 175.2912024167, "3B"], +[-37.7646920167, 175.2914686833, "4"], +[-37.76481565, 175.2909661333, "5"], +[-37.7645839333, 175.2912855, "6"], +[-37.7645433833, 175.2909281833, "11"], +[-37.7644927, 175.2911318667, "8"], +[-37.7646869833, 175.2908671333, "9"], +[-37.7648398167, 175.2905528833, "7"], +[-37.7559343667, 175.2719313667, "18"], +[-37.7555419667, 175.2716069, "10"], +[-37.75540325, 175.2715829167, "8"], +[-37.7556185167, 175.2721156667, "9A"], +[-37.7557055833, 175.2721411167, "9B"], +[-37.7555404167, 175.2720904833, "9"], +[-37.7556717333, 175.2716150167, "12"], +[-37.7558029167, 175.27155305, "14"], +[-37.7558491833, 175.2717104167, "16"], +[-37.7559062667, 175.2720940833, "15"], +[-37.75527375, 175.2720150667, "3"], +[-37.7551317667, 175.2715468, "4"], +[-37.7554027167, 175.2720621, "5"], +[-37.7552643833, 175.2715667, "6"], +[-37.76027995, 175.3047321667, "37"], +[-37.7604417833, 175.3047956, "35"], +[-37.7630858, 175.30599065, "17"], +[-37.7601109, 175.3046542, "39"], +[-37.7617828667, 175.3058242, "34"], +[-37.7610008667, 175.3054875833, "44"], +[-37.7614747167, 175.30570335, "38"], +[-37.7599673, 175.3045653333, "41"], +[-37.7624984167, 175.3057242, "25"], +[-37.7625199833, 175.30617245, "24"], +[-37.7612969833, 175.3056261333, "40"], +[-37.7598112, 175.30448305, "43"], +[-37.7605202167, 175.3052744667, "50"], +[-37.7608292333, 175.30540745, "46"], +[-37.7606533, 175.3053230667, "48"], +[-37.7594995833, 175.3043449167, "47"], +[-37.7626517333, 175.3057937667, "23"], +[-37.7596506167, 175.3044146167, "45"], +[-37.7626671667, 175.3062405, "22"], +[-37.7616267, 175.30576885, "36"], +[-37.7642111833, 175.30695525, "2"], +[-37.7622212, 175.30602805, "28"], +[-37.7623701333, 175.3060925, "26"], +[-37.7632876667, 175.3065325, "14"], +[-37.7632297167, 175.3060644667, "15"], +[-37.7619154833, 175.3059004167, "32"], +[-37.7606086833, 175.3048746, "33"], +[-37.7593687833, 175.3047489833, "62"], +[-37.75904875, 175.3046069667, "66"], +[-37.7588962, 175.3045330833, "68"], +[-37.7600185333, 175.3050330333, "54"], +[-37.7636002333, 175.3066693667, "10"], +[-37.7641809333, 175.3064756833, "3"], +[-37.7640583, 175.30685885, "4"], +[-37.7640173833, 175.30640125, "5"], +[-37.7607576667, 175.3049446667, "31"], +[-37.7592877333, 175.3042530667, "53"], +[-37.7594400167, 175.3038922833, "51"], +[-37.7595427167, 175.3039313333, "49"], +[-37.75925305, 175.30380905, "55"], +[-37.7598464, 175.3049524, "56"], +[-37.7591097833, 175.30417175, "57"], +[-37.7596938333, 175.30488485, "58"], +[-37.7595362, 175.30481705, "60"], +[-37.7589799, 175.3041214833, "59"], +[-37.7592063333, 175.30467475, "64"], +[-37.76279765, 175.30586535, "21"], +[-37.7634596333, 175.3065997833, "12"], +[-37.7633870667, 175.306109, "13"], +[-37.7629805667, 175.3063682, "18"], +[-37.7628116, 175.3063012167, "20"], +[-37.7629334667, 175.3059226, "19"], +[-37.7637544, 175.30673925, "8"], +[-37.7639027333, 175.30679575, "6"], +[-37.7620838167, 175.3059651833, "30"], +[-37.7951833833, 175.3121803333, "2"], +[-37.7949219167, 175.31355925, "19"], +[-37.79520035, 175.31232115, "4"], +[-37.7948452, 175.3137162833, "21B"], +[-37.79488665, 175.3118719667, "1"], +[-37.7948892167, 175.3120723667, "3"], +[-37.7949137833, 175.3133706667, "17"], +[-37.7949267, 175.31319355, "15"], +[-37.7949276167, 175.3130199333, "13"], +[-37.7949286167, 175.3128294333, "11"], +[-37.7949013167, 175.3122670667, "5"], +[-37.7949304833, 175.31244475, "7"], +[-37.79492905, 175.3126513167, "9"], +[-37.79523205, 175.3129019833, "10"], +[-37.7952236833, 175.3130838833, "12"], +[-37.7952427833, 175.3134523833, "16"], +[-37.7952255333, 175.3132688, "14"], +[-37.7951387667, 175.31362975, "18"], +[-37.7950144833, 175.3136923, "21"], +[-37.7952339167, 175.3126982833, "8"], +[-37.7952217333, 175.31252305, "6"], +[-37.82407645, 175.33592505, "19"], +[-37.8238816833, 175.33531925, "9"], +[-37.8242105667, 175.3365687333, "21"], +[-37.824468, 175.3358895167, "14"], +[-37.82418615, 175.3372159, "27"], +[-37.8238641333, 175.3344931167, "7"], +[-37.82453595, 175.3368283333, "28"], +[-37.8246828333, 175.3365448333, "26"], +[-37.8253983, 175.3361785667, "24"], +[-37.8250612, 175.33547915, "14B"], +[-37.8250570667, 175.3351771833, "14A"], +[-37.8242175, 175.3350909833, "6"], +[-37.8242048, 175.3343671, "4"], +[-37.7914905167, 175.31145095, "7A"], +[-37.7930106333, 175.3121327333, "22A"], +[-37.7917266, 175.3112868, "7"], +[-37.7930540667, 175.3122059833, "24A"], +[-37.7921831333, 175.3124516167, "19A"], +[-37.79119225, 175.3110389, "1B"], +[-37.79137735, 175.3107755167, "1A"], +[-37.7924120833, 175.31167395, "10A"], +[-37.7926128167, 175.3114665167, "10B"], +[-37.79266305, 175.3120557167, "14"], +[-37.79205265, 175.3122119167, "15A"], +[-37.7930702167, 175.3125914167, "28"], +[-37.7932069667, 175.3127684667, "32"], +[-37.7928696167, 175.3129218667, "27"], +[-37.7916572833, 175.3105772, "2A"], +[-37.7918412833, 175.3108672167, "2"], +[-37.7931427167, 175.3126884833, "30"], +[-37.79142265, 175.3112707667, "5A"], +[-37.7920434833, 175.3111299167, "4"], +[-37.7921831667, 175.3110982, "4A"], +[-37.7914821, 175.3109357167, "3"], +[-37.7915959333, 175.31108425, "5"], +[-37.79227865, 175.3115116167, "8"], +[-37.7924295833, 175.3112708333, "8A"], +[-37.7921839167, 175.31132715, "6"], +[-37.7929652167, 175.3118377, "18"], +[-37.7933455667, 175.3119858333, "26A"], +[-37.79329315, 175.3120281333, "26"], +[-37.7919499667, 175.3116221667, "11"], +[-37.7927088167, 175.3117746667, "12A"], +[-37.7925276667, 175.3118494, "12"], +[-37.7918930333, 175.3119863667, "13A"], +[-37.7920716333, 175.3117979, "13"], +[-37.7921864, 175.3119601333, "15"], +[-37.79211625, 175.31224885, "17A"], +[-37.7922867833, 175.31213535, "17"], +[-37.7930109833, 175.31170705, "18A"], +[-37.7923919833, 175.3122953333, "19"], +[-37.7930603833, 175.31187945, "20"], +[-37.7924903833, 175.31245995, "21"], +[-37.7928222667, 175.3122863333, "22"], +[-37.7926107333, 175.31261345, "23"], +[-37.79292755, 175.3124420667, "24"], +[-37.7927195333, 175.3127711333, "25"], +[-37.7916614667, 175.3116498667, "9A"], +[-37.79183875, 175.3114334333, "9"], +[-37.7812838833, 175.2220184333, "75A"], +[-37.7831957667, 175.2259729333, "43A"], +[-37.7804649167, 175.2207752333, "104"], +[-37.7831398833, 175.2262975167, "41"], +[-37.7803425167, 175.2205619333, "106"], +[-37.7832787333, 175.2272413833, "30"], +[-37.7808667, 175.2217092833, "94"], +[-37.7810680667, 175.2212147833, "81"], +[-37.7805425, 175.2209764667, "102"], +[-37.7833148333, 175.2261719833, "41A"], +[-37.77479925, 175.2181523333, "176"], +[-37.7837098667, 175.2266683167, "33"], +[-37.78080145, 175.2215310667, "96"], +[-37.7831007167, 175.2269243, "34"], +[-37.7697070833, 175.2195022333, "256"], +[-37.7831933667, 175.2270852667, "32"], +[-37.7809106, 175.2218810333, "92"], +[-37.7838238333, 175.2268243333, "31"], +[-37.7835116333, 175.2265641, "37A"], +[-37.7830190333, 175.2267683167, "36"], +[-37.7821915667, 175.2252193, "56"], +[-37.78416, 175.2288913333, "14"], +[-37.7824460667, 175.2257871333, "52"], +[-37.7824374333, 175.2256265167, "54"], +[-37.7735991833, 175.2180066, "188"], +[-37.7737928833, 175.2173323, "183"], +[-37.7819889833, 175.2252256333, "58"], +[-37.7838267667, 175.2275574667, "23B"], +[-37.7840372667, 175.2274559667, "23"], +[-37.7840403667, 175.22775185, "23A"], +[-37.78246595, 175.2251149167, "49"], +[-37.7833556333, 175.2266752667, "37"], +[-37.7702639, 175.2172740167, "229"], +[-37.7829225, 175.2266165167, "38"], +[-37.77291465, 175.2175070167, "195"], +[-37.7696748667, 175.2170639167, "235"], +[-37.7671243833, 175.2179836667, "265"], +[-37.7677555667, 175.2184557, "264"], +[-37.7689088, 175.2173767333, "241"], +[-37.775924, 175.2191572, "156"], +[-37.7754688333, 175.2175839333, "169"], +[-37.7787851833, 175.2182879333, "127"], +[-37.7768214833, 175.2198443333, "148"], +[-37.7843484833, 175.2292365667, "10"], +[-37.7842525333, 175.22905695, "12"], +[-37.7836254167, 175.2271706, "27"], +[-37.7833639, 175.2274068, "28"], +[-37.7839180333, 175.22705925, "29"], +[-37.7834787333, 175.2268890333, "35"], +[-37.781947, 175.2251588667, "60"], +[-37.7820643333, 175.2250297333, "62"], +[-37.7845226, 175.2295627833, "6"], +[-37.78443375, 175.2293972833, "8"], +[-37.7805991333, 175.2203743167, "87"], +[-37.7804926667, 175.22019775, "89"], +[-37.7803770167, 175.2200208833, "91"], +[-37.7717225667, 175.216878, "221"], +[-37.7722721167, 175.2177219667, "203"], +[-37.7669404167, 175.2180509, "267"], +[-37.78124555, 175.2218591833, "75"], +[-37.7811875, 175.2216515167, "77"], +[-37.78112785, 175.2214302667, "79"], +[-37.7807140167, 175.2213590667, "98"], +[-37.7806332167, 175.2211759333, "100"], +[-37.7819026333, 175.2240146833, "59"], +[-37.7817534167, 175.22374105, "61"], +[-37.7816668333, 175.2234209167, "63"], +[-37.7816113167, 175.2231889333, "65"], +[-37.7815566667, 175.2229831667, "67"], +[-37.7814950667, 175.2227587167, "69"], +[-37.78143195, 175.2225347333, "71"], +[-37.78148425, 175.22422135, "72"], +[-37.7815311333, 175.22230465, "73A"], +[-37.781347, 175.2222717, "73"], +[-37.78140585, 175.2239959167, "74"], +[-37.7813694, 175.2238065167, "76"], +[-37.7813331333, 175.22360815, "78"], +[-37.7812898833, 175.2234035833, "80"], +[-37.7812463333, 175.2232139167, "82"], +[-37.7812032833, 175.2229974667, "84"], +[-37.7811464667, 175.2227596167, "86"], +[-37.7810830167, 175.2224975833, "88"], +[-37.7823699, 175.2249220667, "51"], +[-37.7822588667, 175.22468785, "53"], +[-37.782159, 175.22449535, "55"], +[-37.78203745, 175.2243153167, "57"], +[-37.7818517, 175.22465335, "64"], +[-37.7817196833, 175.224753, "66"], +[-37.7816814, 175.2247152833, "68"], +[-37.7817884667, 175.2245621333, "70"], +[-37.7840713, 175.2287212, "16"], +[-37.7839786, 175.2285602333, "18"], +[-37.78340575, 175.2263525167, "39A"], +[-37.7832389167, 175.2264837833, "39"], +[-37.783034, 175.2261020833, "43"], +[-37.7846186667, 175.2297378, "4"], +[-37.7837982667, 175.22817735, "22"], +[-37.7835959333, 175.2277992, "24"], +[-37.7834379833, 175.2275764667, "26"], +[-37.7838789833, 175.2283851667, "20"], +[-37.7837137333, 175.2273565167, "25"], +[-37.8196534833, 175.2973671167, "15"], +[-37.8200314, 175.2977013333, "18B"], +[-37.8194942333, 175.29787185, "26"], +[-37.8199564833, 175.2975704167, "18A"], +[-37.8191768, 175.2970388167, "7"], +[-37.81982075, 175.2967779167, "10"], +[-37.8192170667, 175.2965966333, "3"], +[-37.8193260667, 175.2967251667, "5"], +[-37.8194819167, 175.296932, "11"], +[-37.8199124833, 175.2969484333, "12"], +[-37.8199894, 175.2973570167, "16"], +[-37.8199711833, 175.2971476167, "14"], +[-37.8196191833, 175.2971308667, "13"], +[-37.8191221833, 175.2964468333, "1"], +[-37.8194094167, 175.2976658167, "19"], +[-37.819444, 175.2975045333, "17"], +[-37.8198849167, 175.2977389333, "20"], +[-37.8193614, 175.2961903, "2"], +[-37.8196283833, 175.2979770333, "24"], +[-37.8197629667, 175.2978968167, "22"], +[-37.8194847167, 175.2963264333, "4"], +[-37.8197077333, 175.2966200167, "8"], +[-37.81959275, 175.2964715, "6"], +[-37.81923195, 175.29713285, "9"], +[-37.81427795, 175.3317287667, "8"], +[-37.8149106833, 175.3302560167, "15"], +[-37.8146682667, 175.33191595, "7"], +[-37.8147196, 175.3308957, "13"], +[-37.8146197167, 175.332343, "5"], +[-37.8142459, 175.3320756, "6"], +[-37.8135599333, 175.3304991333, "25"], +[-37.8130917833, 175.3304957, "31"], +[-37.8144353667, 175.3305878333, "17"], +[-37.8135094167, 175.3310193, "26"], +[-37.8141648167, 175.3305631333, "19"], +[-37.812984, 175.3309269333, "32"], +[-37.7403555667, 175.25696055, "13"], +[-37.7402594667, 175.2562539333, "12"], +[-37.7400401333, 175.2562475667, "10"], +[-37.7398315833, 175.2566654667, "3"], +[-37.73997005, 175.2558796833, "6"], +[-37.7400139667, 175.25681065, "11"], +[-37.7403655167, 175.25681325, "15"], +[-37.73999745, 175.2573227167, "7"], +[-37.7396337833, 175.2565573833, "1"], +[-37.7401691333, 175.2565844, "17"], +[-37.73964495, 175.2561457167, "2"], +[-37.7399885833, 175.2570705333, "9"], +[-37.74009395, 175.2559011, "8"], +[-37.7398136833, 175.2562496833, "4"], +[-37.7398214833, 175.2571170167, "5"], +[-37.7405184333, 175.2709240833, "12"], +[-37.7405212167, 175.27150955, "3"], +[-37.74042445, 175.2710906833, "10"], +[-37.7407353, 175.2705231167, "16"], +[-37.7406143, 175.2706661333, "14"], +[-37.7400173667, 175.2714822333, "4"], +[-37.7403116333, 175.2714817333, "6"], +[-37.7407896, 175.2710840167, "7"], +[-37.74071415, 175.2713129, "5"], +[-37.74036465, 175.27128885, "8"], +[-37.7406980667, 175.2709152, "9"], +[-37.7862035667, 175.3066231, "1/65-6/65"], +[-37.7858172833, 175.3069323833, "1/73-6/73"], +[-37.7881948167, 175.3077705167, "36A"], +[-37.7879218, 175.3072646167, "41"], +[-37.7860567333, 175.3065657167, "67A"], +[-37.7864108833, 175.3070742, "58"], +[-37.7883098833, 175.3081210333, "34E"], +[-37.7866363167, 175.3068099333, "59A"], +[-37.7881207833, 175.3080671, "36D"], +[-37.7867053, 175.3065206333, "59B"], +[-37.7863477667, 175.30735495, "58A"], +[-37.7868034667, 175.3068704333, "57"], +[-37.78814165, 175.30797995, "36C"], +[-37.7883830167, 175.30741505, "35"], +[-37.7860772333, 175.30626435, "67B"], +[-37.7884295833, 175.3071199333, "35A"], +[-37.7883338167, 175.30778795, "34A"], +[-37.7867509, 175.3074140667, "54B"], +[-37.7859270167, 175.3062301667, "69A-69F"], +[-37.7871272, 175.3067001333, "53A"], +[-37.78825325, 175.3081031833, "34D"], +[-37.7869628333, 175.30691245, "55"], +[-37.7859109167, 175.3067364833, "71A"], +[-37.7871131333, 175.30696745, "53"], +[-37.7881660333, 175.3078756, "36B"], +[-37.7867597167, 175.3072191, "54"], +[-37.7883151833, 175.3078698, "34B"], +[-37.7860955333, 175.3070030833, "62"], +[-37.7882988167, 175.3079450667, "34C"], +[-37.7858947667, 175.3065264167, "69"], +[-37.7861952667, 175.3073021167, "60B"], +[-37.7862486333, 175.3070252, "60A"], +[-37.7864869667, 175.3067550667, "61"], +[-37.7859535167, 175.3069497167, "64"], +[-37.7863913667, 175.30641955, "63B"], +[-37.7863402667, 175.3067037167, "63A"], +[-37.7858078167, 175.30667165, "71B"], +[-37.78827475, 175.3070640167, "37A"], +[-37.7882334667, 175.3073686333, "37"], +[-37.7880343833, 175.3077035667, "38"], +[-37.78807805, 175.3073160833, "39"], +[-37.7865682833, 175.3071384333, "1/56-4/56"], +[-37.7868601167, 175.3065777333, "57A"], +[-37.7872666667, 175.3068861, "51A"], +[-37.7872994833, 175.3067328667, "51B"], +[-37.7878287167, 175.3076275667, "44"], +[-37.78776475, 175.3072069833, "43"], +[-37.7876045667, 175.3071549333, "45"], +[-37.7876985167, 175.3075717167, "46A-46E"], +[-37.78749945, 175.3074959667, "48"], +[-37.7874412333, 175.3070945, "47"], +[-37.7872722667, 175.3070288167, "49"], +[-37.78766185, 175.3068521833, "1/45-4/45"], +[-37.7881317167, 175.3070288, "39A"], +[-37.7878725, 175.3081762833, "1/40-4/40"], +[-37.7877751833, 175.3081356833, "1/42-4/42"], +[-37.7885362333, 175.30745755, "33A-33E"], +[-37.7323826, 175.2700888333, "131D"], +[-37.7361179833, 175.26221095, "45"], +[-37.7328078167, 175.2717865333, "151"], +[-37.7370997333, 175.2596563833, "36"], +[-37.7364500667, 175.2629547167, "52A"], +[-37.7355422333, 175.2643776333, "67"], +[-37.7334261833, 175.2675827667, "103"], +[-37.7354591333, 175.2648358833, "71"], +[-37.7363055167, 175.2645696333, "62D"], +[-37.7353807667, 175.2650487833, "73"], +[-37.7363025333, 175.2648613167, "64D"], +[-37.7356973167, 175.2649905667, "68"], +[-37.7327946333, 175.2719933833, "157"], +[-37.7340089333, 175.26735855, "92"], +[-37.7328225167, 175.2714930333, "141"], +[-37.7333209333, 175.2684322, "102"], +[-37.7347016, 175.2655270167, "81"], +[-37.7341585333, 175.2671843167, "90"], +[-37.7347679, 175.26545245, "79"], +[-37.7341217, 175.2667389833, "93"], +[-37.7348436667, 175.26580435, "83"], +[-37.73729995, 175.2589284167, "30"], +[-37.7351672667, 175.2653998833, "75"], +[-37.7329253167, 175.2692614833, "117"], +[-37.7359600333, 175.2623985333, "47"], +[-37.7328944833, 175.2696473667, "119"], +[-37.7325255, 175.2700172333, "131C"], +[-37.7331363833, 175.2704566333, "118"], +[-37.73269735, 175.2700653, "131B"], +[-37.7372259333, 175.25919425, "32"], +[-37.7352036667, 175.2649461167, "73A"], +[-37.7371647167, 175.2594089667, "34"], +[-37.7324860667, 175.27190005, "155"], +[-37.7349650667, 175.2656380833, "77"], +[-37.7324917167, 175.2717215333, "153"], +[-37.7353123167, 175.2657315833, "74"], +[-37.7328652833, 175.2700849667, "131A"], +[-37.7352015167, 175.2658922333, "76"], +[-37.7350705333, 175.2660489333, "78"], +[-37.7356312833, 175.2652593167, "70"], +[-37.7331089333, 175.2709412833, "122"], +[-37.73325155, 175.26868375, "104"], +[-37.7332052167, 175.2689508, "106"], +[-37.7329445167, 175.2689248167, "115"], +[-37.73318505, 175.2692223167, "108"], +[-37.73317725, 175.2694611333, "110"], +[-37.7331606, 175.2697033833, "112"], +[-37.7334374, 175.2681604, "100"], +[-37.7335823333, 175.2674126167, "101"], +[-37.7338822667, 175.2675528833, "94"], +[-37.7339888667, 175.2669071, "95"], +[-37.7337472833, 175.2677250833, "96"], +[-37.73385445, 175.2670714167, "97"], +[-37.73359125, 175.2679260333, "98"], +[-37.7337135167, 175.2672400333, "99"], +[-37.7331525333, 175.26995325, "114"], +[-37.7331445167, 175.2702031167, "116"], +[-37.73312865, 175.2706918, "120"], +[-37.7328608333, 175.2705738167, "135"], +[-37.7328489333, 175.27074985, "137"], +[-37.7328272833, 175.2712707667, "139"], +[-37.7323808333, 175.2701735667, "131E"], +[-37.7325071667, 175.2702512167, "131F"], +[-37.7326915167, 175.2702375167, "131G"], +[-37.7328621167, 175.2702374833, "131H"], +[-37.73310095, 175.2711874333, "124"], +[-37.7330871833, 175.2714448167, "126"], +[-37.7332969333, 175.2716087167, "128"], +[-37.733071, 175.2716962333, "130"], +[-37.7330588667, 175.2719171167, "132"], +[-37.7330504667, 175.2721202, "134"], +[-37.7349325167, 175.2662189167, "80"], +[-37.7347875667, 175.2664005333, "82"], +[-37.73463565, 175.2665901167, "84"], +[-37.7347106833, 175.2660067, "85"], +[-37.7344694333, 175.2667956, "86"], +[-37.7345509667, 175.2662069333, "87"], +[-37.7343813667, 175.2664077, "89"], +[-37.7342251667, 175.2666081333, "91"], +[-37.7330417333, 175.27230005, "136"], +[-37.73301785, 175.2727926667, "140"], +[-37.7330068833, 175.2729956667, "142"], +[-37.7329981, 175.2731853333, "144"], +[-37.7354917333, 175.2645866667, "69"], +[-37.73623055, 175.2644622333, "62C"], +[-37.73609315, 175.2643834667, "62B"], +[-37.7358409, 175.2644879, "64A"], +[-37.7361102833, 175.2645981833, "64B"], +[-37.7362412333, 175.2646881833, "64C"], +[-37.7357805833, 175.2647193167, "66"], +[-37.7359780333, 175.2640132833, "60"], +[-37.7359306, 175.2641929833, "62A"], +[-37.7360267333, 175.2626108333, "49"], +[-37.73638575, 175.2623889333, "50"], +[-37.7359626167, 175.2628023, "51"], +[-37.7363166, 175.262782, "52"], +[-37.7359080167, 175.26302155, "53"], +[-37.7355743, 175.2629735333, "55"], +[-37.7355358333, 175.2630573333, "57"], +[-37.7357062, 175.2631325, "59"], +[-37.7358685167, 175.2632052167, "61"], +[-37.7376516833, 175.2576074667, "2"], +[-37.7370333667, 175.2598979667, "38"], +[-37.7372368833, 175.2579653, "1"], +[-37.73557265, 175.2642020667, "65"], +[-37.7360649333, 175.2638158, "58"], +[-37.823328, 175.2780555, "1"], +[-37.82310905, 175.27836965, "4A"], +[-37.82276, 175.27853445, "8A"], +[-37.8230644167, 175.27860965, "4B"], +[-37.82217395, 175.2781575833, "16"], +[-37.8223975667, 175.2777918333, "13"], +[-37.8228542833, 175.2779156, "7"], +[-37.82213145, 175.2775495833, "17"], +[-37.82201395, 175.2783513833, "18"], +[-37.8218531667, 175.2774272, "17A"], +[-37.82295665, 175.2783049667, "6"], +[-37.8229050333, 175.2786274667, "6A"], +[-37.8230091667, 175.2779588333, "5"], +[-37.8226206667, 175.2785588167, "2/10"], +[-37.822656, 175.27822945, "10"], +[-37.8225504833, 175.2778191167, "11"], +[-37.8224637167, 175.27850305, "12A"], +[-37.8218476833, 175.2776409167, "19A"], +[-37.8218227667, 175.2780887, "20A"], +[-37.8220156333, 175.2780987167, "20"], +[-37.82183195, 175.277918, "22A"], +[-37.8220088167, 175.2779301, "22"], +[-37.82326295, 175.2783719167, "2"], +[-37.8227931833, 175.2782640833, "8"], +[-37.8231551, 175.2779924, "3"], +[-37.8224942833, 175.2781737167, "12"], +[-37.8223005, 175.2784840667, "14A"], +[-37.8223349, 175.2781652, "14"], +[-37.8222447167, 175.2777035833, "15"], +[-37.8220588667, 175.2777598833, "19"], +[-37.8227028667, 175.27789055, "9"], +[-37.7848025167, 175.3095210333, "11C"], +[-37.7846013333, 175.3094822333, "11A"], +[-37.7848871833, 175.3093409333, "9A"], +[-37.7847010333, 175.3095025, "11B"], +[-37.7851917167, 175.30970885, "1/12-3/12"], +[-37.7851597833, 175.3094041667, "10"], +[-37.7850582167, 175.3095726833, "14B"], +[-37.7850627833, 175.3086681833, "1"], +[-37.7847138333, 175.3093106, "9B"], +[-37.78502985, 175.3088315333, "3"], +[-37.7852829833, 175.3089374333, "4A-4D"], +[-37.7849808167, 175.3090134833, "5"], +[-37.7850443333, 175.3094260833, "14A"], +[-37.7848661833, 175.3087643167, "3A"], +[-37.7849235667, 175.30915975, "7"], +[-37.7852459, 175.3091370333, "6"], +[-37.7852286333, 175.3093011, "8"], +[-37.7277903667, 175.2722257833, "19"], +[-37.7272713167, 175.2717215667, "44"], +[-37.7283898833, 175.27114405, "1"], +[-37.7287097833, 175.2717735167, "8"], +[-37.7281607333, 175.2716019667, "7"], +[-37.7281418667, 175.2717252167, "9"], +[-37.7275386167, 175.2716990167, "25"], +[-37.7272640833, 175.2721506167, "38"], +[-37.7281135167, 175.2725515167, "22"], +[-37.72841655, 175.2713282167, "3"], +[-37.7272745, 175.2723540167, "36"], +[-37.7271072667, 175.2717618667, "42"], +[-37.72877065, 175.2721961333, "12"], +[-37.7287430333, 175.27199495, "10"], +[-37.72844435, 175.2718155833, "11"], +[-37.7272412833, 175.2719319167, "40"], +[-37.7274019667, 175.2717058833, "27"], +[-37.7272980167, 175.2725479667, "34"], +[-37.7272937833, 175.2727492167, "32"], +[-37.7274391167, 175.27259715, "30"], +[-37.7275990333, 175.2725973667, "28"], +[-37.7277614167, 175.2725754333, "26"], +[-37.7279335667, 175.2725587667, "24"], +[-37.7275707333, 175.2718605, "23"], +[-37.7275333167, 175.2722397, "21"], +[-37.72866675, 175.2713118667, "4"], +[-37.7284236167, 175.2715670167, "5"], +[-37.72869055, 175.2715526833, "6"], +[-37.7279728333, 175.2722251833, "17"], +[-37.7284287667, 175.27209295, "13"], +[-37.72814675, 175.2721786167, "15"], +[-37.7287932333, 175.2723546667, "14"], +[-37.7286423667, 175.2723447333, "16"], +[-37.7285153333, 175.2724306833, "18"], +[-37.7283245167, 175.2725246, "20"], +[-37.7290856833, 175.2871815167, "2"], +[-37.7292006, 175.2875303333, "3"], +[-37.72928165, 175.28714335, "4"], +[-37.7300312833, 175.2870243, "12"], +[-37.7290192833, 175.2875280333, "1"], +[-37.7301844167, 175.2871485167, "14"], +[-37.7296645833, 175.2870245667, "8"], +[-37.7302246833, 175.2873906167, "15"], +[-37.7294810833, 175.2871276333, "6"], +[-37.7300607167, 175.2873132, "13"], +[-37.72984775, 175.2870331333, "10"], +[-37.7299003667, 175.2873451, "11"], +[-37.7297291333, 175.2874262833, "9"], +[-37.7295549333, 175.2874602, "7"], +[-37.7293809, 175.2874866833, "5"], +[-37.7286748833, 175.2483503333, "12"], +[-37.7282936167, 175.2488054667, "3"], +[-37.7284485833, 175.2486862833, "5"], +[-37.7810969667, 175.2607151167, "2"], +[-37.780997, 175.2607141833, "4"], +[-37.7812203, 175.2607176667, "2A"], +[-37.78110805, 175.2610568833, "1"], +[-37.7718499667, 175.2359045, "39A"], +[-37.7720979, 175.2354275333, "50"], +[-37.7722467167, 175.2355370667, "52"], +[-37.7723748333, 175.2356663667, "54"], +[-37.7725111, 175.2357957833, "56"], +[-37.77262805, 175.23589955, "58"], +[-37.7699813833, 175.2339752833, "15"], +[-37.7694502167, 175.2336617333, "7"], +[-37.7694081333, 175.2331562333, "8"], +[-37.7693111833, 175.233278, "6"], +[-37.7695423667, 175.2330325667, "10"], +[-37.7696548, 175.2329136667, "12"], +[-37.7698921667, 175.2338047, "13"], +[-37.76980265, 175.2336771667, "11"], +[-37.7697932167, 175.23282405, "14"], +[-37.7700482333, 175.23408435, "17"], +[-37.7706122333, 175.2332530333, "4/22"], +[-37.76991845, 175.2332070333, "18"], +[-37.7698234667, 175.233038, "16"], +[-37.7708169833, 175.2333551, "5/22"], +[-37.7705167667, 175.2331850667, "22C"], +[-37.7700228833, 175.2333891167, "20"], +[-37.7703748833, 175.23335915, "22B"], +[-37.7702890833, 175.23303525, "22A"], +[-37.7705049667, 175.23467545, "23"], +[-37.7711531667, 175.2347554833, "28"], +[-37.7704928667, 175.2334075667, "24A"], +[-37.7701406833, 175.2335569333, "22"], +[-37.7703881167, 175.2339328667, "26"], +[-37.7705731167, 175.23373965, "26A"], +[-37.77071895, 175.23353415, "24B"], +[-37.7702870667, 175.2337645167, "24"], +[-37.7713109667, 175.23458725, "30"], +[-37.76917325, 175.2334101833, "4"], +[-37.7694826833, 175.2339601333, "5"], +[-37.7709860667, 175.2352007167, "25"], +[-37.7711592, 175.2356334833, "31"], +[-37.7696801167, 175.23351415, "9"], +[-37.77112415, 175.2352652167, "27"], +[-37.7713079667, 175.2353444333, "29"], +[-37.77186155, 175.2357622833, "39"], +[-37.7719651167, 175.2353525667, "48"], +[-37.7718231333, 175.23527665, "44"], +[-37.7716437, 175.23504215, "42"], +[-37.7719424, 175.2351761833, "46"], +[-37.77227755, 175.2361496833, "45"], +[-37.7721477333, 175.2360186, "43"], +[-37.7720125833, 175.2358937167, "41"], +[-37.7723968167, 175.2362803667, "47"], +[-37.77151545, 175.2343601167, "34B"], +[-37.7714576667, 175.2345425333, "34A"], +[-37.77146195, 175.2342531, "32B"], +[-37.77141925, 175.2343605167, "32A"], +[-37.7715001, 175.2349766667, "40"], +[-37.77135695, 175.2348957, "38"], +[-37.76926875, 175.2338169333, "3"], +[-37.7334458, 175.2724908833, "7"], +[-37.7334025333, 175.2721496667, "6"], +[-37.7334885667, 175.2720417833, "8"], +[-37.7332339667, 175.2727079667, "3"], +[-37.7337015167, 175.2722673167, "11"], +[-37.7335907333, 175.27195815, "10"], +[-37.7330848833, 175.2724757, "2"], +[-37.7335477833, 175.2723150167, "9"], +[-37.73319725, 175.2724782833, "4"], +[-37.7333422833, 175.2726377667, "5"], +[-37.7336793667, 175.2719188167, "12"], +[-37.7338438333, 175.27197945, "14"], +[-37.7338613167, 175.2721329, "13"], +[-37.7331437333, 175.2727207167, "1"], +[-37.7834724833, 175.2692963, "1/31-4/31"], +[-37.7832644167, 175.2693390833, "29"], +[-37.7840711167, 175.2691879, "37A-37L"], +[-37.7842389167, 175.26914415, "39"], +[-37.7838846167, 175.2692184, "1/35-6/35"], +[-37.7844732167, 175.2690669833, "41"], +[-37.7837157333, 175.2692725333, "1/33-7/33"], +[-37.7392228833, 175.2727023333, "4"], +[-37.7391413833, 175.2730711333, "3"], +[-37.7388688333, 175.2731507, "1"], +[-37.73934855, 175.2730620333, "5"], +[-37.7394109, 175.27272085, "6"], +[-37.73947075, 175.27303545, "7"], +[-37.7395675167, 175.2727448, "8"], +[-37.73948205, 175.2729069333, "9"], +[-37.7785111, 175.2680316167, "52A"], +[-37.77988545, 175.2707089333, "38"], +[-37.7789746, 175.26882425, "42D"], +[-37.7807097667, 175.2720204167, "13"], +[-37.77830525, 175.2676165167, "56D"], +[-37.78074065, 175.2731469667, "14"], +[-37.7781780667, 175.26776325, "54D"], +[-37.78028395, 175.2707985, "21"], +[-37.7800665333, 175.2698417167, "31C"], +[-37.7802250167, 175.2706225167, "23"], +[-37.7783788167, 175.26782385, "56F"], +[-37.7804087, 175.27219155, "24"], +[-37.7781982833, 175.26782915, "54C"], +[-37.7800294833, 175.2700754833, "29"], +[-37.7787155833, 175.2680121167, "50B"], +[-37.7792188, 175.2688945833, "40"], +[-37.7801722833, 175.2704536833, "1/25-5/25"], +[-37.77916395, 175.26874215, "42A"], +[-37.7790386333, 175.2687917667, "42C"], +[-37.77907945, 175.2685412167, "44A-44D"], +[-37.7800309167, 175.2711364833, "1/34-4/34"], +[-37.7790223333, 175.2683548167, "1/46-4/46"], +[-37.7788587, 175.2679382667, "50A"], +[-37.7789382, 175.2681722333, "48"], +[-37.7781489667, 175.26771065, "54E"], +[-37.7786955, 175.2674447833, "60"], +[-37.7784530167, 175.2676685833, "56B"], +[-37.7786224333, 175.2672629, "62"], +[-37.7812495333, 175.2719977833, "11A-11D"], +[-37.7784834167, 175.2677714167, "56A"], +[-37.7809223833, 175.2725995667, "1/5-8/5"], +[-37.77876105, 175.2676029833, "58"], +[-37.7799202, 175.2693035667, "37A"], +[-37.78084345, 175.2723987333, "9"], +[-37.7804654, 175.2723914, "1/22-6/22"], +[-37.7790460333, 175.26725245, "59"], +[-37.7799665833, 175.27094135, "1/36-6/36"], +[-37.7785578167, 175.2681555833, "52B"], +[-37.77841655, 175.2675729833, "56C"], +[-37.7801496667, 175.2714753333, "30"], +[-37.7808503333, 175.2719550167, "13A"], +[-37.7800864, 175.2702295167, "27B"], +[-37.7802139333, 175.2697631667, "31E"], +[-37.78012445, 175.2703291833, "27A"], +[-37.7800897667, 175.2713163333, "1/32-6/32"], +[-37.7803515, 175.2709772333, "19"], +[-37.7810009167, 175.27281805, "3A-3H"], +[-37.7783873167, 175.2680931833, "52C"], +[-37.77824295, 175.2679638, "54A"], +[-37.7784384667, 175.2682066333, "52D"], +[-37.7799372167, 175.2699075333, "31A"], +[-37.77834465, 175.2677134333, "56E"], +[-37.7790961167, 175.2687697167, "42B"], +[-37.7802008833, 175.2735144167, "10"], +[-37.7782187667, 175.2678814667, "54B"], +[-37.7807690833, 175.2721918833, "11"], +[-37.7805443333, 175.2725923, "1/20-6/20"], +[-37.7804922333, 175.27330815, "12"], +[-37.7792966333, 175.2690026, "40B"], +[-37.7800722167, 175.2694137, "35A"], +[-37.7798372667, 175.2695046167, "35"], +[-37.7797307833, 175.2693706, "37"], +[-37.7802977667, 175.2721299333, "26"], +[-37.7808063, 175.2733476333, "4"], +[-37.7799939667, 175.2698806667, "31B"], +[-37.7801413167, 175.2698035167, "31D"], +[-37.7799173333, 175.2697052, "33"], +[-37.7800760333, 175.2696740167, "33A"], +[-37.75817705, 175.3080122667, "41"], +[-37.7603684333, 175.3056454667, "4"], +[-37.76007305, 175.30551655, "3"], +[-37.7597635167, 175.3060507, "9"], +[-37.7586780333, 175.3067638333, "27"], +[-37.7589105, 175.3070590667, "26"], +[-37.7586251167, 175.3063135167, "23"], +[-37.7601999, 175.3065850333, "14"], +[-37.7599513333, 175.3063577833, "16"], +[-37.7598199667, 175.3064598, "18"], +[-37.7601420833, 175.3053578, "1"], +[-37.7597055833, 175.3065712833, "20"], +[-37.7592955, 175.3063311833, "15"], +[-37.7591413833, 175.3064262667, "17"], +[-37.7589912333, 175.3064953667, "19"], +[-37.7592336667, 175.3068170833, "22"], +[-37.7588404833, 175.3065950333, "21"], +[-37.7583280333, 175.30740175, "35"], +[-37.7584069, 175.3081494, "34"], +[-37.7582654333, 175.3075935167, "37"], +[-37.7582171833, 175.3077995667, "39"], +[-37.7594632167, 175.3062496167, "13"], +[-37.7603636833, 175.3063395167, "10"], +[-37.7596120333, 175.3061708333, "11"], +[-37.75877915, 175.30722455, "28"], +[-37.76030485, 175.30583115, "6"], +[-37.7585360333, 175.3064411833, "25"], +[-37.7590654333, 175.3069247667, "24"], +[-37.7586241, 175.30741155, "30"], +[-37.7585608833, 175.3069080167, "29"], +[-37.75846785, 175.3070573833, "31"], +[-37.7599940333, 175.3057266333, "5"], +[-37.7584014, 175.3072150333, "33"], +[-37.75990635, 175.3058802333, "7"], +[-37.7602119333, 175.3059905167, "8"], +[-37.7600788, 175.30619925, "12"], +[-37.7979524167, 175.2433134167, "3"], +[-37.7978473, 175.2436652833, "6"], +[-37.7977470667, 175.2431913, "5"], +[-37.79803, 175.2437020167, "4"], +[-37.7976101333, 175.2433175, "9"], +[-37.7980996, 175.2433775167, "1"], +[-37.79758245, 175.2434708833, "12"], +[-37.7976815833, 175.2436564667, "8"], +[-37.7975892, 175.2431236167, "7"], +[-37.7975102333, 175.2437076667, "10"], +[-37.77824535, 175.2672976667, "23B"], +[-37.7773644333, 175.2670713333, "8B"], +[-37.7778692833, 175.2678269833, "15"], +[-37.7774758167, 175.2678814, "7B"], +[-37.7782035167, 175.2671962333, "23A"], +[-37.7770466, 175.26740585, "2A-2D"], +[-37.7783081667, 175.2671487667, "25"], +[-37.7774350333, 175.2677616833, "7A"], +[-37.7773136167, 175.2672553167, "6"], +[-37.77712315, 175.2678264333, "3A"], +[-37.7773949833, 175.2676566333, "7"], +[-37.7774432167, 175.26702155, "8A"], +[-37.77752065, 175.2676050167, "9"], +[-37.7772215167, 175.26731535, "1/4-4/4"], +[-37.7774054, 175.2671865667, "8D"], +[-37.7771946667, 175.26791575, "3B"], +[-37.7774867667, 175.2671448833, "8C"], +[-37.7772546167, 175.2677551167, "1/5-5/5"], +[-37.7777002833, 175.2670370667, "12"], +[-37.7780601167, 175.2673043, "1/21-5/21"], +[-37.7782825333, 175.26740605, "23C"], +[-37.7776494667, 175.26753965, "11"], +[-37.7777931333, 175.2678276333, "13"], +[-37.7778191, 175.2674371833, "17"], +[-37.7770264333, 175.2678718167, "1"], +[-37.7779495, 175.2673675833, "19"], +[-37.7784247667, 175.2670413667, "27"], +[-37.8178801, 175.2181871667, "6"], +[-37.81811315, 175.2180543667, "4"], +[-37.8181739833, 175.21851995, "1"], +[-37.81797515, 175.2186312, "3"], +[-37.8181787, 175.2176995, "2A"], +[-37.8183385333, 175.21812895, "2"], +[-37.7701685, 175.3228984333, "12"], +[-37.7700700333, 175.3225579167, "11"], +[-37.770872, 175.32225685, "4"], +[-37.7712854667, 175.3231635833, "8"], +[-37.7703215333, 175.3223181167, "9"], +[-37.7705578333, 175.3227961833, "10"], +[-37.7705772167, 175.3218832333, "3"], +[-37.7305201333, 175.2845198, "23"], +[-37.73082675, 175.2843904333, "14"], +[-37.7302322167, 175.2843575333, "19"], +[-37.7303127667, 175.2833108667, "5"], +[-37.7304756667, 175.2842726167, "21"], +[-37.7303457167, 175.2835149, "7"], +[-37.7311688833, 175.2843320833, "18"], +[-37.7300826167, 175.2837986833, "11"], +[-37.73126065, 175.2845422833, "22"], +[-37.7303898667, 175.2837702333, "13"], +[-37.7301868, 175.2841570833, "17"], +[-37.7305161167, 175.2827729167, "2"], +[-37.7309142167, 175.2848108667, "29"], +[-37.7305375167, 175.2829360167, "4"], +[-37.73044545, 175.2840842667, "15"], +[-37.73072955, 175.2839926833, "12"], +[-37.7302248333, 175.28307385, "3"], +[-37.7305734333, 175.2831439333, "6"], +[-37.7313147833, 175.2843135167, "20"], +[-37.7306168, 175.2834381, "8"], +[-37.73075415, 175.2847504667, "27"], +[-37.7313783833, 175.2846908, "24"], +[-37.7300728667, 175.2836735167, "9"], +[-37.7306191167, 175.2846793167, "25"], +[-37.7310873667, 175.2848326667, "28"], +[-37.7310193833, 175.2843698833, "16"], +[-37.73126465, 175.2847999333, "26"], +[-37.7792107, 175.2765565, "8A-8C"], +[-37.7805154, 175.2742662667, "24"], +[-37.78185145, 175.2719696833, "1/40-4/40"], +[-37.78197655, 175.2724780333, "27"], +[-37.7788038167, 175.27807585, "1A-1D"], +[-37.7822600667, 175.2724118333, "29A"], +[-37.7786250167, 175.2776206, "2"], +[-37.78229855, 175.2724725, "29B"], +[-37.7788510167, 175.2772041833, "1/6-6/6"], +[-37.7820936167, 175.2723014667, "29"], +[-37.78068635, 175.2739554833, "28"], +[-37.7819496167, 175.2718212833, "42"], +[-37.7803778333, 175.2752493333, "17"], +[-37.7791414, 175.2766757333, "8"], +[-37.7802294167, 175.2755034333, "15"], +[-37.7799965333, 175.2752152333, "14"], +[-37.7801313833, 175.27566195, "13"], +[-37.7789143667, 175.2778151667, "3"], +[-37.7799905333, 175.2758298167, "11"], +[-37.7789805333, 175.277701, "5"], +[-37.7821841833, 175.2721047, "31"], +[-37.7816090833, 175.2723693167, "1/36-42/36"], +[-37.7807521667, 175.2738173333, "30"], +[-37.7805999667, 175.2741181333, "26"], +[-37.7427714667, 175.2576696333, "8"], +[-37.74207125, 175.2633978333, "75"], +[-37.7434770833, 175.2611126667, "99"], +[-37.7416085833, 175.2612785167, "32"], +[-37.7425201, 175.2619230167, "58A"], +[-37.7411843833, 175.2607355333, "35"], +[-37.74052305, 175.26094, "37B"], +[-37.7422410167, 175.2631402, "73"], +[-37.7423688833, 175.257462, "6"], +[-37.7412167167, 175.2614732167, "43"], +[-37.7426764667, 175.2618615667, "58B"], +[-37.7412741667, 175.2616685667, "45"], +[-37.7435377, 175.26097, "99A"], +[-37.7422297833, 175.2580820667, "14"], +[-37.7414959, 175.25741185, "9A"], +[-37.7417577667, 175.25826225, "17"], +[-37.7432472667, 175.2615211167, "95A"], +[-37.74333265, 175.2607879833, "101"], +[-37.7415600833, 175.2610486167, "30A"], +[-37.7432202, 175.2595181333, "107"], +[-37.7415727, 175.2608522167, "30"], +[-37.7433573833, 175.2599867333, "103"], +[-37.7413508167, 175.2576303, "11A"], +[-37.7428566833, 175.2617126667, "60"], +[-37.7421710333, 175.2596475167, "84A"], +[-37.7416088833, 175.2623269333, "57"], +[-37.7429263167, 175.2608357667, "66A"], +[-37.74167505, 175.2615358, "34"], +[-37.7425289833, 175.25683665, "2"], +[-37.7412117833, 175.26049105, "33"], +[-37.7430485, 175.2592398167, "109"], +[-37.7416733667, 175.2632998167, "69"], +[-37.7408599167, 175.2609989, "37A"], +[-37.7414606167, 175.2634281833, "67"], +[-37.7427955, 175.2608890667, "66B"], +[-37.741668, 175.257351, "7"], +[-37.7424148, 175.25725915, "4"], +[-37.7420985333, 175.2629280667, "71"], +[-37.7422116167, 175.2635415333, "79A"], +[-37.7418447833, 175.2637488333, "75A"], +[-37.7417847167, 175.2569504333, "1B"], +[-37.7414942, 175.2580044, "15"], +[-37.7418464333, 175.2568273833, "1A"], +[-37.7421818833, 175.2583294167, "16"], +[-37.74323865, 175.2617605333, "95"], +[-37.7415925667, 175.26063125, "28"], +[-37.7413203, 175.2599821167, "29"], +[-37.7413771333, 175.2598120167, "27"], +[-37.7420695667, 175.2572131667, "3"], +[-37.7419363333, 175.2576006833, "5"], +[-37.7425679667, 175.2635140833, "81"], +[-37.7426537833, 175.2632072333, "83"], +[-37.7428369167, 175.26309475, "85"], +[-37.7426122, 175.25950635, "80"], +[-37.74243555, 175.2597636833, "82"], +[-37.7423243167, 175.2597197, "84"], +[-37.7423693667, 175.2593781, "86"], +[-37.7421641333, 175.25678995, "1"], +[-37.7414195, 175.25852665, "21"], +[-37.7416861167, 175.2585430167, "19"], +[-37.7425305667, 175.2577352667, "10"], +[-37.7427666167, 175.2589997667, "123"], +[-37.74158535, 175.2577382, "11"], +[-37.7422941667, 175.25780825, "12"], +[-37.74183035, 175.2579221833, "13"], +[-37.74231185, 175.2587641333, "131"], +[-37.7425607167, 175.2588665667, "125"], +[-37.7415460667, 175.2591387833, "25"], +[-37.74213495, 175.25853635, "18"], +[-37.7418675333, 175.2595972333, "22"], +[-37.7419147667, 175.2593767833, "20"], +[-37.7416075667, 175.2588508333, "23"], +[-37.741178, 175.2610641, "39"], +[-37.74287145, 175.2621809, "56"], +[-37.74067595, 175.26080705, "37C"], +[-37.7408552167, 175.2607812333, "37"], +[-37.7427111333, 175.2625214, "54"], +[-37.7415524833, 175.2627287167, "61"], +[-37.7412711167, 175.2629229833, "59A"], +[-37.7420599167, 175.2616346, "38"], +[-37.74213475, 175.2617761833, "44"], +[-37.7411943, 175.2613106667, "41"], +[-37.7414665167, 175.26258865, "59"], +[-37.7417973333, 175.26180225, "36"], +[-37.7425330833, 175.2626576667, "52"], +[-37.7419213833, 175.2627138, "65"], +[-37.7417911667, 175.26255485, "63"], +[-37.7429048, 175.2611041667, "64"], +[-37.7426654667, 175.262052, "58"], +[-37.7429192333, 175.2590306, "117"], +[-37.7414782833, 175.2621816, "55"], +[-37.7435262833, 175.2622881333, "91A"], +[-37.7428795833, 175.26138865, "62"], +[-37.7418500167, 175.26314565, "69A"], +[-37.7417649333, 175.2630075, "67A"], +[-37.7424425667, 175.2632822667, "79"], +[-37.7420253833, 175.2638699167, "77"], +[-37.7416412167, 175.2576256833, "9"], +[-37.7429635167, 175.2629166, "87"], +[-37.742948, 175.260554, "68"], +[-37.7432361333, 175.2623240833, "89"], +[-37.74296295, 175.2602664833, "70"], +[-37.7426910167, 175.2603669, "72"], +[-37.74262775, 175.2601028833, "74"], +[-37.74291285, 175.25994695, "76"], +[-37.7428021667, 175.2597314333, "78"], +[-37.7421832, 175.2593047833, "88"], +[-37.7412679833, 175.2602287833, "31"], +[-37.7423008667, 175.2624368167, "50"], +[-37.7433174, 175.2610368333, "97"], +[-37.7432645833, 175.2619971, "93"], +[-37.7421443667, 175.2622568333, "48"], +[-37.7435373333, 175.2620970333, "91"], +[-37.7419932167, 175.2620700833, "46"], +[-37.74135725, 175.26186235, "47"], +[-37.7778440833, 175.2729664, "10"], +[-37.7780222333, 175.2728855667, "14"], +[-37.7777864167, 175.2728251833, "10C"], +[-37.7770963833, 175.2734026333, "2"], +[-37.77764155, 175.27292175, "10A"], +[-37.77733105, 175.2728894, "6A"], +[-37.77771075, 175.2728703667, "10B"], +[-37.7773098167, 175.2725601833, "6B"], +[-37.77697565, 175.2735247833, "2B"], +[-37.7774300333, 175.2727779833, "6C"], +[-37.7777406833, 175.2730135333, "10D"], +[-37.77739775, 175.2732227833, "6"], +[-37.77687175, 175.2735823667, "2A"], +[-37.77760585, 175.2731075833, "8"], +[-37.7772329167, 175.27332395, "1/4-10/4"], +[-37.7774409167, 175.2724627, "1/6B-4/6B"], +[-37.7779560167, 175.2729168, "12"], +[-37.7771614833, 175.2729149667, "4A"], +[-37.74616705, 175.2555987333, "23"], +[-37.7457769333, 175.2534718167, "10A"], +[-37.7458287167, 175.2549518833, "17"], +[-37.74586345, 175.2533713333, "10B"], +[-37.74599395, 175.2546209667, "16"], +[-37.7457496667, 175.2547782667, "15"], +[-37.7462641, 175.2550015, "20"], +[-37.7454503167, 175.2534880333, "6"], +[-37.7450819, 175.2535651333, "5"], +[-37.7464398333, 175.25546145, "24"], +[-37.7463506667, 175.2552327667, "22"], +[-37.7460503, 175.2554424333, "21"], +[-37.7461044667, 175.2547960667, "18A"], +[-37.7461708833, 175.25467555, "18B"], +[-37.7453118333, 175.2539812333, "9"], +[-37.7453557667, 175.2533532333, "4B"], +[-37.7455754, 175.2537161, "10"], +[-37.7457047333, 175.2540369833, "12A"], +[-37.74563705, 175.2538791833, "12"], +[-37.7452097, 175.2530481833, "2A"], +[-37.7452490833, 175.2531392167, "2B"], +[-37.74530385, 175.2532433167, "4"], +[-37.7449808667, 175.2533355833, "3"], +[-37.74628635, 175.2555053333, "25"], +[-37.7459329, 175.25520385, "19"], +[-37.7452001167, 175.2537767333, "7"], +[-37.74572945, 175.2533428, "8"], +[-37.7899953167, 175.29692525, "95B"], +[-37.7898168833, 175.30348805, "191"], +[-37.7919318333, 175.2919575167, "2"], +[-37.7898213667, 175.30320445, "189"], +[-37.7910248, 175.2967702667, "86B"], +[-37.7898183, 175.30295915, "187"], +[-37.7909513833, 175.2964848333, "1/82-3/82"], +[-37.79017565, 175.3033627, "196"], +[-37.791823, 175.2924132333, "8"], +[-37.7900465667, 175.3008559167, "162A"], +[-37.7900118833, 175.2963297167, "1/85"], +[-37.7904849167, 175.3010300667, "162B"], +[-37.7897216167, 175.3004499667, "161A-161G"], +[-37.7900508333, 175.3010467, "164"], +[-37.78978955, 175.2962603, "2/85"], +[-37.7901621667, 175.29833905, "121"], +[-37.78999915, 175.3068691, "245"], +[-37.7904218667, 175.2984382167, "122"], +[-37.79091835, 175.2937805667, "37G"], +[-37.7901409167, 175.2984244833, "123"], +[-37.7911372833, 175.2968193, "86A"], +[-37.7905769667, 175.2989804167, "130B"], +[-37.790654, 175.2939025333, "37C"], +[-37.7903568833, 175.2988928167, "130"], +[-37.7897738, 175.3014830667, "171"], +[-37.79030845, 175.29907235, "134"], +[-37.79021465, 175.2969437333, "95A"], +[-37.791079, 175.29634535, "80B"], +[-37.7900214667, 175.3097720167, "278"], +[-37.7911751, 175.2963883333, "80C"], +[-37.7900987167, 175.3080254667, "247"], +[-37.79128615, 175.2964166833, "80D"], +[-37.7904431333, 175.296989, "95"], +[-37.7909843167, 175.2963108, "80"], +[-37.7909795, 175.29689475, "92A"], +[-37.7913500833, 175.296704, "84"], +[-37.7912387833, 175.2959918, "72"], +[-37.7909054833, 175.2966834167, "86"], +[-37.7913039333, 175.2947472, "52"], +[-37.7902166333, 175.29640595, "85"], +[-37.7901042667, 175.2970471167, "97"], +[-37.7905437167, 175.29660045, "87"], +[-37.79090555, 175.2938738333, "37F"], +[-37.7913109833, 175.2968899333, "88"], +[-37.7907396833, 175.29581385, "71"], +[-37.7902262, 175.2966421667, "89"], +[-37.7904719167, 175.3045551667, "208"], +[-37.7914668167, 175.2941131667, "1B/20"], +[-37.7915312, 175.2941365833, "1C/20"], +[-37.79093135, 175.29367755, "37H"], +[-37.7907267833, 175.2939771833, "37E"], +[-37.7907455333, 175.29728525, "100"], +[-37.7902418167, 175.2973101333, "103A"], +[-37.7903587833, 175.2974021167, "103"], +[-37.7906873, 175.2975125667, "102A-102C"], +[-37.7919877333, 175.29384045, "11/20"], +[-37.7916390167, 175.29414635, "2/20"], +[-37.7918248333, 175.2931803, "20/20"], +[-37.7917482333, 175.2915176167, "1"], +[-37.7917410167, 175.2941772, "4/20"], +[-37.7903913833, 175.2985899833, "124"], +[-37.7900449333, 175.2986822167, "125"], +[-37.7903675333, 175.2987444667, "126"], +[-37.7897961667, 175.3000573333, "149"], +[-37.79007195, 175.3016012833, "172"], +[-37.7898818, 175.3042399333, "205"], +[-37.7902236667, 175.3042927167, "206"], +[-37.7896547, 175.3045305167, "207B"], +[-37.7898912, 175.3044424667, "207"], +[-37.7899051833, 175.3046714, "209"], +[-37.7906137333, 175.2963680333, "81"], +[-37.7902655667, 175.2963089333, "83"], +[-37.7902245667, 175.2981433833, "117"], +[-37.7902169833, 175.2981362, "115"], +[-37.7901804, 175.29825275, "119"], +[-37.79046795, 175.29827655, "120"], +[-37.7906397167, 175.29769575, "110"], +[-37.7919666667, 175.2942448833, "8/20"], +[-37.79192095, 175.2942238, "7/20"], +[-37.7918593667, 175.2942147833, "6/20"], +[-37.7910036833, 175.2946540667, "53"], +[-37.7906778, 175.3078624, "244"], +[-37.7897630333, 175.3002035333, "151"], +[-37.7901432833, 175.3026975833, "186"], +[-37.7898333, 175.2998941167, "147"], +[-37.7900243333, 175.3005394, "160"], +[-37.7902475333, 175.2993236833, "142A"], +[-37.7905716167, 175.2993751333, "140A"], +[-37.7904925, 175.2994093167, "142B"], +[-37.7907807, 175.2994629, "140B"], +[-37.7902065333, 175.2995252, "146"], +[-37.7907603, 175.2938867667, "37D"], +[-37.7912154333, 175.2937963333, "37I"], +[-37.7906903333, 175.29364805, "37A"], +[-37.79118555, 175.2938909833, "37J"], +[-37.79065675, 175.29377185, "37B"], +[-37.7920095667, 175.2942659333, "9/20"], +[-37.79029635, 175.3013129, "168B"], +[-37.7906226833, 175.29918765, "136"], +[-37.790794, 175.2992335667, "138"], +[-37.7898093667, 175.3027117167, "185"], +[-37.7901423, 175.3025272833, "184"], +[-37.7920604667, 175.29416955, "10/20"], +[-37.7920451333, 175.2939852, "10A/20"], +[-37.7920013167, 175.2939152, "10B/20"], +[-37.7920015667, 175.2937553167, "12/20"], +[-37.7920154, 175.2936720833, "13/20"], +[-37.7920370167, 175.29357565, "14/20"], +[-37.7920570167, 175.2934868, "15/20"], +[-37.7920233667, 175.2933176167, "16/20"], +[-37.7919689167, 175.2932947333, "17/20"], +[-37.79190685, 175.2932715333, "18/20"], +[-37.79184615, 175.2932559667, "19/20"], +[-37.7914232667, 175.2941075333, "1A/20"], +[-37.79179025, 175.2932291167, "21/20"], +[-37.7917783333, 175.2932921667, "22/20"], +[-37.7910922667, 175.2942331, "47"], +[-37.79176465, 175.2933684167, "23/20"], +[-37.7916868167, 175.29416165, "3/20"], +[-37.79180455, 175.2941885167, "5/20"], +[-37.7903302, 175.2975673, "107"], +[-37.7904050333, 175.29720475, "99"], +[-37.7904009833, 175.3088626833, "264"], +[-37.7900528167, 175.3087833833, "265"], +[-37.79032415, 175.3090145833, "266"], +[-37.7906809833, 175.3092908667, "268A"], +[-37.7906208833, 175.30915825, "268"], +[-37.7904038, 175.3078794833, "246"], +[-37.790414, 175.3081282833, "248"], +[-37.79047685, 175.3095015167, "270A"], +[-37.7905295333, 175.3093572333, "270"], +[-37.7899283167, 175.3091125833, "271"], +[-37.7902048, 175.30930605, "272A"], +[-37.7902342, 175.3092366, "272B"], +[-37.7900932, 175.3095698833, "274A"], +[-37.7902235, 175.3095488, "274B"], +[-37.7901636333, 175.3031526167, "194"], +[-37.7900808667, 175.3014089833, "168"], +[-37.7901591, 175.3029244667, "190"], +[-37.7900847667, 175.30182255, "176"], +[-37.7900535833, 175.3012154667, "166"], +[-37.79010385, 175.30202555, "180"], +[-37.7902415667, 175.30473565, "214"], +[-37.79024625, 175.3045072667, "210"], +[-37.7901817, 175.3035924167, "200"], +[-37.7902474, 175.3049494167, "220"], +[-37.7907829333, 175.2955922, "67"], +[-37.7911103, 175.2956944667, "66"], +[-37.7915780167, 175.29625165, "74"], +[-37.79166875, 175.2965511833, "78C"], +[-37.791073, 175.29590285, "68"], +[-37.7907047333, 175.2959629, "73"], +[-37.7915506, 175.2965063333, "78B"], +[-37.7913965333, 175.29620495, "76C"], +[-37.7912437167, 175.2961475833, "76B"], +[-37.7903409333, 175.2958972667, "75"], +[-37.7910412333, 175.2961108333, "76"], +[-37.7903425833, 175.2960273667, "77A"], +[-37.7901373833, 175.29592065, "77"], +[-37.79145925, 175.2964751333, "78A"], +[-37.7914167333, 175.2964116833, "78"], +[-37.79175565, 175.2965793167, "78D"], +[-37.7906434167, 175.2961918333, "79"], +[-37.7907950167, 175.2970757167, "96A-96E"], +[-37.7908481333, 175.2968811333, "92"], +[-37.7904992, 175.2968124, "91"], +[-37.75885365, 175.2549243, "9"], +[-37.759143, 175.2554914, "12"], +[-37.7591204, 175.2550173167, "5"], +[-37.7594824667, 175.2551277, "6"], +[-37.7593624, 175.2552750167, "8"], +[-37.7594463, 175.2545898333, "1"], +[-37.7593265833, 175.2547660167, "3"], +[-37.75967715, 175.2548525167, "2"], +[-37.7592496833, 175.2553787167, "10"], +[-37.7595882833, 175.2549825333, "4"], +[-37.7588191667, 175.2553142333, "18"], +[-37.7589668333, 175.2547727667, "7"], +[-37.75903995, 175.25567685, "14"], +[-37.7590073167, 175.2553706833, "16"], +[-37.7485511333, 175.2412703333, "7"], +[-37.7480682, 175.24132815, "8"], +[-37.74801155, 175.2415066667, "6"], +[-37.7481786833, 175.2412417833, "10"], +[-37.74844235, 175.2418442833, "1"], +[-37.74834725, 175.2412713, "9"], +[-37.7479550667, 175.2419256333, "2"], +[-37.7481686833, 175.2418238333, "4"], +[-37.7484154333, 175.2415436333, "3"], +[-37.74860285, 175.2414437667, "5"], +[-37.7906287, 175.3012453667, "2/144"], +[-37.7989408167, 175.30506065, "50"], +[-37.7972716333, 175.30245355, "91"], +[-37.8004820333, 175.3044107167, "31"], +[-37.8006785667, 175.3041146833, "29A"], +[-37.7990577167, 175.3050925, "48A"], +[-37.7981598667, 175.3051069333, "68A"], +[-37.7992165833, 175.3053401167, "42B"], +[-37.7925010667, 175.3030516667, "114B"], +[-37.7992649333, 175.3051447333, "42A"], +[-37.7994969333, 175.3040516167, "45"], +[-37.8016468667, 175.3053585667, "4"], +[-37.7930896833, 175.3012923, "163A"], +[-37.8015785, 175.3053406, "4A"], +[-37.7996134167, 175.3036145667, "45A"], +[-37.7988846, 175.3051399833, "50A"], +[-37.79846895, 175.3045526667, "64A"], +[-37.8017443833, 175.3054105667, "2"], +[-37.7991563167, 175.3048418833, "46A"], +[-37.7925745667, 175.30150465, "175"], +[-37.7914431833, 175.3015506, "134A"], +[-37.7926333, 175.3009016833, "177"], +[-37.79256605, 175.3027308, "114"], +[-37.7923946, 175.3014469167, "179"], +[-37.7983415, 175.3044898667, "66A"], +[-37.7924932167, 175.3007661833, "181"], +[-37.799102, 175.3035487833, "59A"], +[-37.7922610667, 175.3014181, "183"], +[-37.7912674, 175.30175315, "1/134"], +[-37.79210885, 175.3013683667, "185"], +[-37.79811075, 175.3050307333, "70A"], +[-37.8001870333, 175.3048330833, "30"], +[-37.7929060167, 175.30217695, "110"], +[-37.796948, 175.3030837167, "95"], +[-37.7967976, 175.3030309833, "97"], +[-37.7966522167, 175.3029943, "99"], +[-37.79483425, 175.3021035667, "125A"], +[-37.7921500333, 175.3024811833, "124A"], +[-37.79212305, 175.30265415, "124B"], +[-37.7920609333, 175.30291265, "124C"], +[-37.79225545, 175.3019571167, "126"], +[-37.7949522167, 175.3023326667, "125"], +[-37.7905706333, 175.3006961667, "150"], +[-37.79414525, 175.3020457667, "149A"], +[-37.7928686667, 175.3006908, "171B"], +[-37.7928555, 175.301046, "171"], +[-37.79276305, 175.3011896833, "173A"], +[-37.79098435, 175.30037735, "203"], +[-37.7908778833, 175.3002610667, "205"], +[-37.7907531, 175.3001167667, "207A"], +[-37.7909075, 175.2997841333, "207B"], +[-37.7952681167, 175.3025083667, "121"], +[-37.8012051333, 175.3040641833, "17"], +[-37.80078255, 175.3038945333, "27"], +[-37.8016773167, 175.30423595, "5"], +[-37.7973848333, 175.3026343, "87"], +[-37.7989726, 175.30552155, "48B"], +[-37.8013717333, 175.3056602667, "6A"], +[-37.7928442, 175.3025548167, "110B"], +[-37.7947516333, 175.3015372667, "135"], +[-37.7944661833, 175.3021572333, "139"], +[-37.7949589667, 175.3014911167, "127D"], +[-37.7947693667, 175.3016915333, "133A"], +[-37.7950925667, 175.3017671167, "127B"], +[-37.80031145, 175.3043449, "35"], +[-37.8005664333, 175.3038183, "33"], +[-37.7946319833, 175.3022370333, "133"], +[-37.7988318167, 175.3028463667, "67"], +[-37.7987653667, 175.3030775667, "69"], +[-37.7984366167, 175.3041675667, "66"], +[-37.7989027167, 175.3028403, "65"], +[-37.79827565, 175.3048079333, "68"], +[-37.7988318667, 175.3033440667, "63"], +[-37.7985884167, 175.30425515, "64"], +[-37.7981597667, 175.3047708, "70"], +[-37.7985928667, 175.3037576167, "71"], +[-37.7950627, 175.3010793167, "127F"], +[-37.7950207167, 175.3012669167, "127E"], +[-37.7952411167, 175.3011332, "127G"], +[-37.7946602, 175.3015185, "137"], +[-37.7931753167, 175.3016860333, "161A"], +[-37.80060675, 175.3053349667, "20A"], +[-37.7984882667, 175.3048984, "62"], +[-37.7988262, 175.3038090833, "61"], +[-37.7934425333, 175.3006861333, "159C"], +[-37.7944375, 175.3016367333, "145"], +[-37.7945702833, 175.3011801, "141"], +[-37.7927506333, 175.30212375, "112"], +[-37.79265185, 175.3025008833, "112B"], +[-37.7944794667, 175.3014033333, "143"], +[-37.7933316, 175.3017503167, "157"], +[-37.7934427333, 175.3017900167, "155"], +[-37.7933537333, 175.3011481333, "159A"], +[-37.7943657833, 175.3018765167, "147"], +[-37.7934006, 175.3008973667, "159B"], +[-37.7908336, 175.3009643667, "1/144"], +[-37.7932172667, 175.30137585, "161B"], +[-37.79303835, 175.3016365167, "163"], +[-37.7991832833, 175.30308295, "57A"], +[-37.7942536667, 175.3020859167, "149"], +[-37.79899095, 175.30308375, "63A"], +[-37.8015628667, 175.3041933833, "7"], +[-37.7931983667, 175.3022440833, "102"], +[-37.7934225167, 175.3023266333, "100"], +[-37.7930730833, 175.3022514333, "104"], +[-37.7928287, 175.3032616167, "106A"], +[-37.7928329833, 175.3027796833, "108"], +[-37.7929478667, 175.3026573667, "106"], +[-37.7925891833, 175.3020697333, "116"], +[-37.7923970667, 175.3026771667, "118"], +[-37.7924266667, 175.3020157333, "120"], +[-37.7923148167, 175.3025607833, "122A"], +[-37.7922213167, 175.3030272167, "122B"], +[-37.7921132333, 175.3019176667, "128"], +[-37.79108535, 175.3017671667, "136A"], +[-37.7913175167, 175.3014169333, "136"], +[-37.79120515, 175.3013092333, "138"], +[-37.7924883333, 175.3025376, "116A"], +[-37.7931120667, 175.3010615833, "165"], +[-37.7910800167, 175.3011743167, "140"], +[-37.7909713167, 175.3010733333, "142"], +[-37.7904990167, 175.30139305, "146A"], +[-37.7904392, 175.3015433333, "146B"], +[-37.7906900333, 175.30081255, "148"], +[-37.7904647, 175.3005567167, "152"], +[-37.7902905667, 175.3004011, "154"], +[-37.7917233167, 175.3005922667, "193B"], +[-37.7914397667, 175.3008832667, "195"], +[-37.7914192833, 175.3005018167, "197B"], +[-37.79130105, 175.3007257, "197"], +[-37.7911332667, 175.3005099833, "199"], +[-37.7966314333, 175.30259805, "101"], +[-37.7941414333, 175.3026252667, "90"], +[-37.7939587667, 175.3025685333, "92"], +[-37.79379685, 175.3025217333, "94"], +[-37.8015740667, 175.30483635, "3"], +[-37.79968335, 175.3046164333, "38"], +[-37.7990151333, 175.3038674333, "59"], +[-37.7981834, 175.3045341, "72A"], +[-37.7974424, 175.3032664, "81"], +[-37.7974656, 175.3038723667, "82"], +[-37.7972918167, 175.3032212667, "83"], +[-37.79880155, 175.3046403833, "56A"], +[-37.8010835, 175.3056355667, "10A"], +[-37.8010214333, 175.3059806, "10B"], +[-37.8011139833, 175.3051764667, "10"], +[-37.8007168333, 175.3056876167, "16"], +[-37.8014508667, 175.30530125, "6"], +[-37.8013019, 175.3052567333, "8"], +[-37.8011782333, 175.3055122, "8A"], +[-37.7929774167, 175.3008415667, "169A"], +[-37.7929168667, 175.3013472667, "167B"], +[-37.79286915, 175.3015921333, "167A"], +[-37.7931362667, 175.3005950667, "169C"], +[-37.7929042667, 175.3012027667, "169B"], +[-37.7929113833, 175.3004916167, "169D"], +[-37.7915994, 175.3009603, "193A"], +[-37.7926991, 175.3015751, "173"], +[-37.7913088833, 175.3001036167, "201"], +[-37.7987845, 175.3050123667, "54"], +[-37.7906166, 175.2999922, "209"], +[-37.7912716, 175.29993605, "2/203"], +[-37.7911775667, 175.3001644833, "1/203"], +[-37.79031405, 175.2997646333, "213"], +[-37.7904753, 175.2999300667, "211"], +[-37.7949413167, 175.30172745, "127A"], +[-37.7951710167, 175.30145295, "127C"], +[-37.795358, 175.30140065, "127H"], +[-37.79547315, 175.30144975, "127J"], +[-37.7953470667, 175.3016185667, "127I"], +[-37.7952748167, 175.3021771, "121A"], +[-37.7961700167, 175.3027892667, "111"], +[-37.7954361833, 175.3025047, "119"], +[-37.79631825, 175.3028539667, "107"], +[-37.8012605167, 175.30470425, "11"], +[-37.7964700667, 175.3029196167, "105"], +[-37.7951281667, 175.30242705, "123"], +[-37.799705, 175.3038451667, "43A"], +[-37.7996492, 175.3041110167, "43"], +[-37.7995404833, 175.3045781167, "40"], +[-37.7993973833, 175.3045564, "44"], +[-37.7992296, 175.3044926667, "46"], +[-37.7993297833, 175.3048472667, "44A"], +[-37.799648, 175.30317385, "47A"], +[-37.7995285667, 175.3032719333, "49"], +[-37.7996283167, 175.303323, "47"], +[-37.7970951333, 175.3031411333, "93"], +[-37.7985680333, 175.3049317333, "60A"], +[-37.7991863, 175.3039363, "53"], +[-37.7993262833, 175.3039815167, "51"], +[-37.7990428333, 175.3044171, "52"], +[-37.7985081333, 175.3031238167, "73A"], +[-37.7982756, 175.3041324167, "72"], +[-37.7984318167, 175.3036125333, "73"], +[-37.7982456333, 175.3035947333, "75"], +[-37.79816325, 175.3040944833, "74"], +[-37.79806955, 175.30354035, "77"], +[-37.8014023333, 175.3047781667, "9"], +[-37.7972296, 175.3027129, "89"], +[-37.7974374667, 175.3022947667, "85"], +[-37.7973067833, 175.30382055, "84"], +[-37.8010890167, 175.3040149833, "19"], +[-37.80110055, 175.3046525667, "15"], +[-37.8013657333, 175.3041172167, "13"], +[-37.8006089667, 175.3044543333, "29"], +[-37.7987620833, 175.3043122, "58"], +[-37.80084515, 175.3060449667, "12"], +[-37.80088695, 175.3050911667, "14B"], +[-37.8009591333, 175.3051114333, "14A"], +[-37.8006465667, 175.3061428167, "16A"], +[-37.80053985, 175.3059879, "18A"], +[-37.8003380667, 175.3048985167, "28"], +[-37.7991342667, 175.3033951167, "57"], +[-37.8002600833, 175.3055180833, "26"], +[-37.8003530833, 175.3055550333, "24"], +[-37.8003500667, 175.3051656, "28A"], +[-37.7984174333, 175.3052457333, "62A"], +[-37.7984904333, 175.30520275, "60B"], +[-37.80092045, 175.30458095, "21"], +[-37.8016983333, 175.3048744833, "1"], +[-37.7988882333, 175.3043686167, "56"], +[-37.8008797667, 175.3039446, "25"], +[-37.800553, 175.3049731333, "22"], +[-37.7992603833, 175.30336815, "55"], +[-37.8004468, 175.3052298333, "22A"], +[-37.8007196167, 175.30503525, "20"], +[-37.8007906167, 175.3045186167, "23"], +[-37.8006216, 175.3056528333, "18"], +[-37.7936844833, 175.30324775, "92A"], +[-37.7943853333, 175.2979105667, "31A"], +[-37.7941305833, 175.2992013, "41A"], +[-37.7942370667, 175.2978650833, "31B"], +[-37.7954384667, 175.29345495, "1/21-6/21"], +[-37.7945176333, 175.2973042333, "1/25-10/25"], +[-37.7957612333, 175.2958058833, "1/34-5/34"], +[-37.7928982167, 175.30447335, "71A"], +[-37.7941684667, 175.2988316667, "1/39-6/39"], +[-37.7930791667, 175.3036703833, "65B"], +[-37.79548495, 175.2932513167, "1/19-10/19"], +[-37.79310805, 175.30352905, "65"], +[-37.7953795167, 175.2952573667, "26"], +[-37.7933994667, 175.30376985, "96A"], +[-37.7944480833, 175.2991585333, "68"], +[-37.7934159167, 175.3036718333, "96"], +[-37.7955899167, 175.2953277167, "26A"], +[-37.7933511333, 175.3040513667, "98"], +[-37.7954801333, 175.2925534, "1/9"], +[-37.7934635833, 175.30348015, "94B"], +[-37.7945049667, 175.2988973167, "66A-66C"], +[-37.7960702833, 175.2921606333, "4"], +[-37.7957754167, 175.2956103667, "1/30-10/30"], +[-37.7952450167, 175.2957940833, "1/36-8/36"], +[-37.79602185, 175.2923509, "6"], +[-37.7951741167, 175.2960604333, "1/38-6/38"], +[-37.7926949, 175.3052791667, "75"], +[-37.7950256333, 175.2966350167, "1/44-6/44"], +[-37.7962496667, 175.2926705833, "8A"], +[-37.7957584833, 175.2920437167, "3"], +[-37.7943002833, 175.30051335, "76B"], +[-37.7953283, 175.29543315, "32A-32F"], +[-37.7955813167, 175.29283895, "15A-15E"], +[-37.7956783, 175.2923778, "7"], +[-37.79553135, 175.2930555333, "1/17-8/17"], +[-37.79497565, 175.2924305667, "11"], +[-37.7941703667, 175.2990415833, "41B"], +[-37.7957185333, 175.2922063, "5"], +[-37.7953548833, 175.2925242333, "2/9"], +[-37.7942851167, 175.2974858333, "27A"], +[-37.79273495, 175.3044048333, "71B"], +[-37.7932141333, 175.3030576833, "61"], +[-37.7941413333, 175.2980626667, "33A"], +[-37.7946422333, 175.2983025333, "60"], +[-37.7939873333, 175.3012124, "82"], +[-37.7939397167, 175.3013986833, "84A"], +[-37.7941033833, 175.3014812333, "84B"], +[-37.79581035, 175.29546055, "1/28-6/28"], +[-37.79261495, 175.3056065667, "77"], +[-37.7930821833, 175.3051201333, "110"], +[-37.7951454833, 175.2926436667, "13"], +[-37.7957919667, 175.29330635, "1/16-6/16"], +[-37.7957248, 175.2935800833, "1/18-5/18"], +[-37.7958256, 175.2931242333, "1/14-8/14"], +[-37.7952066167, 175.2925091, "11A"], +[-37.7959513833, 175.2926986, "1/10-8/10"], +[-37.7953522333, 175.2916466667, "1C"], +[-37.79579765, 175.2918786333, "1A"], +[-37.7953609667, 175.2918538667, "1B"], +[-37.79543365, 175.2949596167, "22"], +[-37.795853, 175.29162325, "1"], +[-37.7952004333, 175.2918141, "1D"], +[-37.7961161167, 175.2919677333, "2"], +[-37.7959909, 175.2925288667, "8"], +[-37.79563455, 175.2925650333, "9"], +[-37.7925669667, 175.3058016167, "79"], +[-37.7926599167, 175.3054404333, "75A"], +[-37.79330685, 175.3043026167, "100"], +[-37.7932604333, 175.30449195, "104"], +[-37.7932046667, 175.304672, "106"], +[-37.79454645, 175.2987135167, "64"], +[-37.7949464333, 175.2970981667, "46"], +[-37.7936083, 175.3013827833, "55"], +[-37.7948673333, 175.2974052833, "50"], +[-37.7945917833, 175.2985268333, "62"], +[-37.7949092, 175.2972382833, "48"], +[-37.7948227667, 175.2975832333, "52"], +[-37.7947757833, 175.2977547, "54"], +[-37.7946907, 175.2981126333, "58"], +[-37.79473185, 175.29793625, "56"], +[-37.7937714833, 175.3029928667, "90A"], +[-37.7936072667, 175.3028444667, "90"], +[-37.7935350333, 175.3031249167, "92"], +[-37.7934880667, 175.3033391333, "94"], +[-37.7955578333, 175.2957664167, "34A"], +[-37.7954466667, 175.2962407667, "38A"], +[-37.7955046667, 175.2962733, "38B"], +[-37.79302805, 175.3053388667, "112"], +[-37.7929775, 175.30556535, "114"], +[-37.7930728667, 175.3057983833, "116A"], +[-37.7929250667, 175.3058203167, "116"], +[-37.7928651167, 175.3060896167, "118"], +[-37.7942232667, 175.2986106833, "37"], +[-37.7935779833, 175.3015604667, "55A"], +[-37.7945558167, 175.29712985, "23"], +[-37.7942766667, 175.2983797167, "35"], +[-37.7940488333, 175.2985131333, "37A"], +[-37.7941481833, 175.2983481667, "35A"], +[-37.7943231, 175.2981616667, "33"], +[-37.7944544, 175.29760765, "27"], +[-37.79379535, 175.3005341667, "49"], +[-37.7936394, 175.30120085, "53A"], +[-37.7938657667, 175.3002343333, "47"], +[-37.7932997, 175.3026596167, "57A"], +[-37.7931103167, 175.3025740333, "57B"], +[-37.7932606, 175.3028611333, "59"], +[-37.7938933833, 175.3000838667, "45"], +[-37.7939241, 175.2998798167, "45A"], +[-37.7930230667, 175.3039054333, "67"], +[-37.7931468, 175.303372, "63A"], +[-37.7931807, 175.3032187167, "63"], +[-37.7937342833, 175.3007935, "51"], +[-37.7936910833, 175.3009928667, "53"], +[-37.7943280333, 175.2997487333, "70"], +[-37.7929744833, 175.30413415, "69"], +[-37.7929397667, 175.30426255, "69A"], +[-37.7938752333, 175.3017065667, "86"], +[-37.7942656833, 175.2999788167, "72"], +[-37.7942082667, 175.3002289667, "74"], +[-37.7940506, 175.3009687667, "80"], +[-37.79410465, 175.3007019167, "78"], +[-37.7941529167, 175.3004775833, "76"], +[-37.7938264167, 175.3019143167, "88"], +[-37.7958244333, 175.2950332, "20"], +[-37.7951081833, 175.2962742833, "40"], +[-37.7950689167, 175.29647305, "42A-42H"], +[-37.7958899167, 175.2929249, "12"], +[-37.8035671333, 175.2608470833, "6"], +[-37.8033922667, 175.2613491, "5"], +[-37.8038371167, 175.2606659833, "8"], +[-37.8036463167, 175.2612557667, "7"], +[-37.80318635, 175.26096715, "4"], +[-37.8041037, 175.2609881833, "11"], +[-37.8029120667, 175.2615366833, "1"], +[-37.8028146167, 175.2611581833, "2"], +[-37.8040518833, 175.2607833333, "10"], +[-37.8039350167, 175.26118575, "9"], +[-37.8031628667, 175.2614344167, "3"], +[-37.7724634167, 175.27616865, "49A"], +[-37.7748677, 175.2782233167, "13"], +[-37.7727231, 175.2781955833, "38A"], +[-37.7743584667, 175.278915, "10"], +[-37.7745353833, 175.2784940667, "19"], +[-37.77212695, 175.2767371333, "52"], +[-37.7742927, 175.27888995, "12"], +[-37.7725527333, 175.2762713, "47A"], +[-37.7748828, 175.2786706833, "9"], +[-37.7726047667, 175.2775249167, "42B"], +[-37.77247615, 175.2779234667, "42D"], +[-37.77241175, 175.2777691167, "42A"], +[-37.7732964667, 175.2786121167, "26A"], +[-37.7722951, 175.2780544667, "42C"], +[-37.7728441, 175.2786225333, "30"], +[-37.7725229, 175.2773602333, "44"], +[-37.7738740833, 175.2782564, "27"], +[-37.7723222333, 175.2775987667, "44A"], +[-37.7730984667, 175.2786796333, "28A"], +[-37.77243415, 175.2772198833, "46"], +[-37.7733410333, 175.2788702833, "24A"], +[-37.7721924167, 175.2774742167, "46A"], +[-37.77275905, 175.2785019667, "34"], +[-37.7720766, 175.27735895, "48B"], +[-37.7727249833, 175.2776206333, "42"], +[-37.7723459, 175.2770745167, "48"], +[-37.7746465, 175.27855225, "17"], +[-37.7722338333, 175.2768875333, "50"], +[-37.7744839333, 175.2789712, "8"], +[-37.7720885333, 175.2770025333, "50A"], +[-37.7746366833, 175.2790240333, "6"], +[-37.7726169, 175.2780574, "40A"], +[-37.7731822833, 175.27842185, "28"], +[-37.7718384833, 175.2747024167, "69B"], +[-37.7725904333, 175.2787749333, "32A"], +[-37.7716091, 175.2759184, "54"], +[-37.7727349667, 175.27862085, "32"], +[-37.7717363167, 175.2760547667, "54A"], +[-37.77332655, 175.2779598167, "33"], +[-37.7719191667, 175.27482825, "69A"], +[-37.7727844333, 175.27887145, "30A"], +[-37.7719959, 175.2749788833, "69"], +[-37.77328445, 175.2787395, "26B"], +[-37.7735279667, 175.27783025, "31A"], +[-37.7744155167, 175.2791911, "8A"], +[-37.7734968333, 175.2781265167, "31"], +[-37.7736951833, 175.2781858167, "29"], +[-37.77400395, 175.2791643333, "14A"], +[-37.77416905, 175.2788494, "14"], +[-37.7727909667, 175.2770193333, "39"], +[-37.7725393, 175.2759087167, "51"], +[-37.7714902333, 175.2750877833, "75"], +[-37.7749586833, 175.2782786167, "11"], +[-37.7730175333, 175.2781695333, "36"], +[-37.77229175, 175.2762979833, "49"], +[-37.7725370167, 175.2767132833, "43"], +[-37.77239595, 175.27646235, "47"], +[-37.77267805, 175.2763980833, "45"], +[-37.7751106167, 175.27876055, "5"], +[-37.7720359667, 175.2750672, "67"], +[-37.7719105667, 175.27525265, "65"], +[-37.77182855, 175.27554805, "63"], +[-37.77151545, 175.2757757667, "62"], +[-37.7722980833, 175.2757099333, "57"], +[-37.7723381, 175.27577485, "55"], +[-37.7721797167, 175.2760921, "53"], +[-37.7719515667, 175.2757183667, "61"], +[-37.7720559667, 175.27586615, "59"], +[-37.77497945, 175.2787057833, "7"], +[-37.7718609167, 175.2751471167, "71"], +[-37.77189605, 175.27510355, "71A"], +[-37.7719332, 175.2750547, "71B"], +[-37.7716605, 175.2753115167, "73"], +[-37.7752754833, 175.2788383333, "3"], +[-37.77529785, 175.2792727667, "2"], +[-37.7754443167, 175.2793251333, "2A"], +[-37.7740457167, 175.2782977333, "25"], +[-37.7741056, 175.27804145, "23B"], +[-37.7742152667, 175.2783757167, "23"], +[-37.7742710667, 175.2780958167, "23A"], +[-37.7743844, 175.27843585, "21"], +[-37.7744541667, 175.2781581667, "21A"], +[-37.7740472, 175.27921075, "14B"], +[-37.77409695, 175.2792271167, "14C"], +[-37.7747229167, 175.2785895667, "15"], +[-37.77395845, 175.2787465667, "16"], +[-37.7737366, 175.2791190333, "18A"], +[-37.7738065667, 175.2791644167, "18B"], +[-37.7738564833, 175.2792261333, "18C"], +[-37.7737910167, 175.2789913667, "18"], +[-37.7735875, 175.2786078167, "22"], +[-37.7734676167, 175.2785514167, "24"], +[-37.7737403333, 175.2786615833, "20"], +[-37.7733153333, 175.2785039833, "26"], +[-37.7728023, 175.2778590333, "40"], +[-37.7726973333, 175.2768706167, "41"], +[-37.7724958667, 175.2766558833, "43A"], +[-37.7729080167, 175.2779988167, "38"], +[-37.7754167333, 175.2789111333, "1"], +[-37.7751301167, 175.2792251667, "4"], +[-37.81580845, 175.2744278, "17"], +[-37.8163381, 175.2749198833, "23"], +[-37.8145110167, 175.2730787, "10"], +[-37.8146800667, 175.2735768333, "16"], +[-37.8148076167, 175.27363625, "18"], +[-37.8149869333, 175.2737022333, "22"], +[-37.8146999167, 175.2731367167, "14"], +[-37.8149424833, 175.2732424667, "20"], +[-37.81413535, 175.2733870667, "4"], +[-37.8143347833, 175.2730179, "6"], +[-37.8148889833, 175.2740796, "9"], +[-37.8164467333, 175.2745035167, "42"], +[-37.8143259667, 175.2734452833, "8"], +[-37.8150647333, 175.2741479833, "11"], +[-37.81448575, 175.2735062, "12"], +[-37.81694975, 175.2750291167, "50"], +[-37.8175633833, 175.2761025833, "41"], +[-37.81763785, 175.2756989167, "60"], +[-37.8174667667, 175.2755182833, "58"], +[-37.8173381667, 175.2753945, "56"], +[-37.8177424, 175.2757586, "62"], +[-37.8160008333, 175.2741035, "36"], +[-37.8156422833, 175.2743349, "15"], +[-37.8160927833, 175.2741955833, "38"], +[-37.8151672167, 175.2737590667, "26"], +[-37.8151321, 175.27330965, "24"], +[-37.8165568833, 175.2746343167, "44"], +[-37.8166821333, 175.2747681833, "46"], +[-37.8168151333, 175.27488795, "48"], +[-37.81646535, 175.27505285, "25"], +[-37.8170747, 175.2751404, "52"], +[-37.8171998667, 175.2752637667, "54"], +[-37.8170431167, 175.2755862333, "33"], +[-37.8153047667, 175.2733630833, "28"], +[-37.81533475, 175.27379, "30"], +[-37.81725835, 175.2758224333, "37"], +[-37.8171738667, 175.2757189167, "35"], +[-37.8174515833, 175.2760132833, "39"], +[-37.77709505, 175.2749314833, "1"], +[-37.8116300333, 175.28593935, "8"], +[-37.8114495833, 175.2863935333, "1"], +[-37.8120660333, 175.2858501833, "9"], +[-37.81221705, 175.2857772, "9A"], +[-37.8111014, 175.2862261667, "2A"], +[-37.8112736833, 175.2860430833, "2"], +[-37.8119184167, 175.2855502833, "10A"], +[-37.8120245167, 175.2856956, "10"], +[-37.8119068833, 175.2859766167, "7"], +[-37.8115525, 175.28564025, "6"], +[-37.8116625667, 175.2862817667, "3"], +[-37.8114166167, 175.2858152, "4"], +[-37.8113505, 175.2858913333, "4A"], +[-37.8117719833, 175.28614625, "5"], +[-37.7898182667, 175.2659942833, "77"], +[-37.7888064333, 175.26738905, "53A-53C"], +[-37.7883477833, 175.2672211667, "42"], +[-37.7858261, 175.2700660667, "6"], +[-37.7894766333, 175.26594185, "58"], +[-37.7860291667, 175.2698414, "8"], +[-37.7895488, 175.2663079167, "71"], +[-37.78612945, 175.2697027333, "10"], +[-37.7867910333, 175.2696458333, "23"], +[-37.78690655, 175.2695465333, "25"], +[-37.7885399833, 175.2670094333, "46"], +[-37.7875249, 175.2680781667, "36"], +[-37.78899205, 175.26649045, "52"], +[-37.7873752, 175.26899285, "37"], +[-37.7899248, 175.2658393333, "83"], +[-37.7876978833, 175.267892, "38"], +[-37.78922045, 175.2666888667, "63"], +[-37.7856867, 175.2709710333, "5"], +[-37.7884360167, 175.26711215, "44"], +[-37.7857782667, 175.2708791333, "7"], +[-37.7889846167, 175.2670040333, "61"], +[-37.78586555, 175.2707646, "9"], +[-37.7885539667, 175.2674483, "51"], +[-37.785604, 175.2703453667, "2A"], +[-37.7893648, 175.26603665, "56"], +[-37.7855687833, 175.2701948333, "2B"], +[-37.7863219833, 175.2694501833, "16"], +[-37.78706265, 175.2685745333, "28"], +[-37.7890753833, 175.2664059167, "54"], +[-37.7876691833, 175.2686304, "45"], +[-37.7862826833, 175.2702793667, "17"], +[-37.7896938333, 175.2661568333, "75"], +[-37.7895935, 175.2658072667, "60"], +[-37.7897081, 175.2656806, "62"], +[-37.7897602, 175.2656131, "64"], +[-37.7860818333, 175.2705175333, "11"], +[-37.78647885, 175.2692478833, "18"], +[-37.78663755, 175.26905735, "20"], +[-37.78691535, 175.2687532667, "26"], +[-37.7870875, 175.2693227667, "31"], +[-37.7872389667, 175.2684429167, "32"], +[-37.7871708, 175.2692151, "33"], +[-37.7874012167, 175.2682236333, "34"], +[-37.78727195, 175.26910465, "35"], +[-37.7874706833, 175.2688699, "39"], +[-37.7879122333, 175.2683380333, "47"], +[-37.7880526, 175.2681603833, "49"], +[-37.7857080667, 175.2702312667, "4"], +[-37.7868940833, 175.2699354667, "21"], +[-37.8240198667, 175.2861970333, "61B"], +[-37.8233011167, 175.2865589167, "71"], +[-37.82550185, 175.28900155, "27B"], +[-37.8252492, 175.2890870167, "25B"], +[-37.82533735, 175.28892025, "27A"], +[-37.8251922833, 175.2891714833, "25A"], +[-37.8241119167, 175.2869340667, "53"], +[-37.8240570167, 175.2867526833, "55"], +[-37.82503245, 175.2891188333, "29"], +[-37.8239762833, 175.28643525, "59"], +[-37.8246434667, 175.28917875, "10"], +[-37.8243263833, 175.2884861667, "16"], +[-37.82477245, 175.2885357833, "35"], +[-37.82440895, 175.2876573667, "45"], +[-37.82455375, 175.2890306333, "12"], +[-37.82439005, 175.2886502333, "14A"], +[-37.82424145, 175.28830965, "18"], +[-37.8244588167, 175.2889041333, "14B"], +[-37.8240894167, 175.2879326167, "22"], +[-37.8241726167, 175.28811355, "20"], +[-37.8241539333, 175.2871327, "51"], +[-37.8251212, 175.2894293, "23B"], +[-37.8240133167, 175.2877608333, "24"], +[-37.8235522, 175.2864673167, "67"], +[-37.8243925833, 175.28956225, "6"], +[-37.8236984667, 175.2864237833, "65"], +[-37.8238305, 175.2863665667, "63"], +[-37.8239737167, 175.28617665, "61"], +[-37.8234086833, 175.28653085, "69"], +[-37.8252623667, 175.2898566, "21C"], +[-37.82506485, 175.28961035, "21A"], +[-37.8250931833, 175.2897097833, "21B"], +[-37.82530005, 175.2899986167, "21D"], +[-37.8239360667, 175.2875598667, "26"], +[-37.8238594167, 175.2873780167, "28"], +[-37.8248627, 175.2887163833, "33"], +[-37.82471105, 175.28835975, "37"], +[-37.82379655, 175.28719645, "30"], +[-37.8237588833, 175.2870121667, "32"], +[-37.8235720667, 175.2869338, "34"], +[-37.8233697833, 175.2870351833, "36"], +[-37.82449895, 175.2878381333, "43"], +[-37.8243193, 175.2874771833, "47"], +[-37.8253542, 175.2902837833, "21E"], +[-37.82493565, 175.2889463167, "31"], +[-37.8251717333, 175.2893416333, "23A"], +[-37.8246342, 175.2881877333, "39"], +[-37.8245509333, 175.2894481667, "8"], +[-37.8242437333, 175.2872903167, "49"], +[-37.8237811167, 175.2899512667, "4"], +[-37.7250747333, 175.2379696667, "3"], +[-37.7252187333, 175.2387769333, "6"], +[-37.7253296167, 175.238512, "1"], +[-37.7250694667, 175.2383436333, "5"], +[-37.7249905167, 175.2381027, "4"], +[-37.7252034833, 175.23823635, "2"], +[-37.7748949667, 175.2939924167, "5"], +[-37.7748871167, 175.2944899333, "4"], +[-37.7748602, 175.2937675333, "5B"], +[-37.7750890667, 175.2939433167, "3"], +[-37.7741203333, 175.2941056667, "14"], +[-37.7749504833, 175.29458895, "4A"], +[-37.7746378, 175.2945301167, "8"], +[-37.7739798167, 175.29389825, "15"], +[-37.7742707, 175.2939165333, "13"], +[-37.7740166167, 175.2940474167, "17"], +[-37.7746459, 175.2938883167, "9B"], +[-37.7745994833, 175.2940407167, "9"], +[-37.7753339667, 175.2938717333, "1"], +[-37.7744920667, 175.2945583, "10"], +[-37.7744539833, 175.2940864667, "11A"], +[-37.7744862667, 175.2939421833, "11B"], +[-37.7743274, 175.2943757333, "12"], +[-37.7747504667, 175.2945120667, "6"], +[-37.7748016667, 175.2937768, "7B"], +[-37.7748402167, 175.2940002333, "7"], +[-37.7750313667, 175.29443885, "2"], +[-37.7752024, 175.2943953167, "2B"], +[-37.7751385333, 175.2946154667, "2A"], +[-37.7340517167, 175.2565474667, "4"], +[-37.7339828333, 175.25642085, "1"], +[-37.7339761833, 175.25678275, "6"], +[-37.7340724667, 175.2564347833, "2"], +[-37.7339513167, 175.25658745, "3"], +[-37.73390995, 175.2567609833, "5"], +[-37.8022773167, 175.3179758167, "8"], +[-37.8033583333, 175.3186726, "20"], +[-37.8024579167, 175.31842435, "9"], +[-37.8037281, 175.3189926833, "24"], +[-37.8019530333, 175.3178691333, "4"], +[-37.80356205, 175.3188595, "22"], +[-37.8041864833, 175.3191401667, "28A"], +[-37.8018521167, 175.3177912333, "2"], +[-37.8041507167, 175.31970585, "29"], +[-37.80280415, 175.3182287333, "14"], +[-37.80318745, 175.3185365333, "18"], +[-37.8022398667, 175.31835245, "7"], +[-37.8038112833, 175.3194354167, "25"], +[-37.8033849333, 175.3191129833, "21"], +[-37.80211315, 175.3179849667, "6"], +[-37.8020471333, 175.31828375, "5"], +[-37.8038850667, 175.3190874833, "26"], +[-37.8024552333, 175.3180261833, "10"], +[-37.8026223667, 175.3185771833, "11"], +[-37.80293855, 175.3187811333, "15"], +[-37.8027932167, 175.3186793833, "13"], +[-37.80262175, 175.3181029667, "12"], +[-37.8040107667, 175.31956505, "27"], +[-37.8032613167, 175.3190331, "19"], +[-37.8029644167, 175.3183721333, "16"], +[-37.8018096167, 175.31814475, "1"], +[-37.8031052833, 175.3189139833, "17"], +[-37.80399305, 175.3197235167, "27A"], +[-37.8040633333, 175.3192246333, "28"], +[-37.7954662333, 175.3243272333, "47A"], +[-37.79590755, 175.3245202, "39"], +[-37.7985414667, 175.3267002167, "10A"], +[-37.7954396, 175.3248149333, "45"], +[-37.7951326167, 175.32451125, "53A"], +[-37.7986327, 175.3263252667, "10"], +[-37.7994912, 175.3263124667, "1"], +[-37.7983686833, 175.3268325, "14"], +[-37.7984549833, 175.3268570167, "12"], +[-37.7972322167, 175.3264607833, "28"], +[-37.7975386333, 175.3261815667, "30"], +[-37.79749645, 175.3265706667, "28A"], +[-37.7977281833, 175.3262418833, "26"], +[-37.7968988, 175.3254988667, "25"], +[-37.7949044667, 175.3246589667, "59"], +[-37.7979016833, 175.3258759667, "11"], +[-37.7955715667, 175.32485595, "43"], +[-37.7949840333, 175.3239595167, "57A"], +[-37.79576105, 175.3248914167, "41"], +[-37.79734195, 175.3260809, "32"], +[-37.7954831833, 175.3243766667, "47"], +[-37.7960052167, 175.32457105, "37"], +[-37.79677015, 175.3254398333, "27"], +[-37.7948427667, 175.3250717167, "66"], +[-37.79511165, 175.3243125, "55"], +[-37.7960298833, 175.3254735833, "54"], +[-37.7958960667, 175.3253986167, "56"], +[-37.7957069333, 175.3261955333, "52A"], +[-37.7988728333, 175.3270759833, "4"], +[-37.7964277167, 175.3262204333, "42A"], +[-37.7947501167, 175.32462045, "61"], +[-37.7978071, 175.32669575, "24A"], +[-37.7953565, 175.32434985, "49"], +[-37.7952460167, 175.3247682, "51"], +[-37.7951122667, 175.32473815, "53"], +[-37.7949977667, 175.3242688, "57"], +[-37.7977527167, 175.3258429667, "13"], +[-37.7976085333, 175.3257837, "15"], +[-37.7983720667, 175.3262932, "16"], +[-37.7974671167, 175.32571635, "17"], +[-37.7981631833, 175.3262742333, "18"], +[-37.7973352667, 175.3256609667, "19"], +[-37.7979571167, 175.3262746333, "20"], +[-37.7978939667, 175.3266376833, "22"], +[-37.7976543167, 175.3266060833, "24"], +[-37.7971915333, 175.32559945, "21"], +[-37.7970489167, 175.3255462667, "23"], +[-37.7962132, 175.3251248167, "31"], +[-37.79906085, 175.32607115, "3"], +[-37.7969288, 175.32637805, "34A"], +[-37.7970367667, 175.3259704333, "34"], +[-37.7969012833, 175.3259192, "36"], +[-37.79674475, 175.3258434667, "38"], +[-37.7965871167, 175.3257747667, "40"], +[-37.7965892667, 175.3262461667, "42"], +[-37.7963361167, 175.3260557, "44"], +[-37.7960868333, 175.3250647167, "33"], +[-37.79594005, 175.3249688, "35"], +[-37.7963685667, 175.3256825, "46"], +[-37.7962180667, 175.3255856833, "48"], +[-37.79883395, 175.32687475, "6A"], +[-37.79896675, 175.3264508333, "6"], +[-37.7960113333, 175.32595485, "50"], +[-37.7959226167, 175.3260028667, "52"], +[-37.7952776667, 175.32517435, "62"], +[-37.7951293167, 175.325161, "64"], +[-37.7980565333, 175.3258855667, "9"], +[-37.79880885, 175.3263881333, "8"], +[-37.7992800167, 175.3262096667, "1A"], +[-37.8217519833, 175.2917438667, "18"], +[-37.8214994333, 175.2927177167, "4"], +[-37.82220885, 175.2922474, "17"], +[-37.8219450333, 175.2920529, "16"], +[-37.8224331833, 175.2919489167, "21"], +[-37.8224978333, 175.2915584333, "27"], +[-37.8218829167, 175.2927754167, "7"], +[-37.8222075667, 175.2928024833, "11"], +[-37.8214857833, 175.292168, "10"], +[-37.82177235, 175.2929508333, "5"], +[-37.8221011833, 175.2924289667, "15"], +[-37.82227875, 175.2926702667, "13"], +[-37.8218400333, 175.2922107667, "14"], +[-37.8221255667, 175.2917152667, "22"], +[-37.8223259667, 175.2920899, "19"], +[-37.8220555, 175.29187955, "20"], +[-37.82161515, 175.29254655, "6"], +[-37.8214144667, 175.29226095, "8"], +[-37.8219408833, 175.2926560167, "9"], +[-37.8217346833, 175.2923419333, "12"], +[-37.82220305, 175.29155435, "24"], +[-37.8225443333, 175.2918037833, "23"], +[-37.8226036833, 175.2916548667, "25"], +[-37.8222608667, 175.2914044667, "26"], +[-37.8223662667, 175.2915102167, "28"], +[-37.8216329333, 175.2930842333, "3"], +[-37.7685676167, 175.2761129667, "1"], +[-37.7665612, 175.2748308667, "45B"], +[-37.76601395, 175.2755301333, "56"], +[-37.7665194333, 175.2748164167, "45A"], +[-37.7667894667, 175.2749205833, "39"], +[-37.7683539333, 175.2759349167, "11"], +[-37.7681329833, 175.2757422333, "15"], +[-37.76744975, 175.2755820167, "27"], +[-37.7662695, 175.2756551, "50"], +[-37.7662598167, 175.2758645167, "50A"], +[-37.7679289333, 175.27657935, "12"], +[-37.7682465167, 175.2758415833, "13"], +[-37.7680571167, 175.2761775333, "14"], +[-37.7680035667, 175.2756915, "17"], +[-37.7679020333, 175.2760919, "18"], +[-37.7678951, 175.2756300833, "19"], +[-37.7677619167, 175.2759735167, "20"], +[-37.76779885, 175.2756087333, "21"], +[-37.767653, 175.2755956167, "23"], +[-37.7675450667, 175.2751956333, "25A"], +[-37.7674868333, 175.2751912667, "25B"], +[-37.76744085, 175.2751643667, "25C"], +[-37.7683941833, 175.2764744167, "2"], +[-37.76730625, 175.2755196167, "29"], +[-37.7671401333, 175.2754560167, "31"], +[-37.7670160333, 175.27591515, "32"], +[-37.7671192667, 175.2750503667, "33"], +[-37.7669587833, 175.2753943667, "35"], +[-37.7667996667, 175.2753388833, "37"], +[-37.7668830167, 175.2758702667, "38"], +[-37.7666212833, 175.27527805, "41"], +[-37.76672635, 175.2758197667, "42"], +[-37.76824455, 175.2763218, "4"], +[-37.7664511833, 175.2752148333, "43"], +[-37.7664295333, 175.2757101833, "46"], +[-37.7665819333, 175.2757588667, "44"], +[-37.7661084833, 175.2755853167, "54"], +[-37.7839350833, 175.26058075, "2"], +[-37.7849730667, 175.2608777667, "13"], +[-37.7842305333, 175.2609544667, "3"], +[-37.7843642833, 175.26054805, "3/8"], +[-37.7840860167, 175.2605751667, "4"], +[-37.7844622, 175.2609369167, "5"], +[-37.78428685, 175.26055505, "2/8"], +[-37.7848719833, 175.2609260667, "11"], +[-37.7847257667, 175.2609216667, "9A"], +[-37.7847548667, 175.2609389, "9B"], +[-37.7842269167, 175.26056035, "1/8"], +[-37.7840823167, 175.26096135, "1"], +[-37.805775, 175.2637495167, "10"], +[-37.8054809833, 175.2625247833, "2"], +[-37.8052462667, 175.26290815, "36"], +[-37.8051745167, 175.2626234333, "38"], +[-37.8055994667, 175.26305415, "4"], +[-37.80556665, 175.2642524333, "26"], +[-37.8055106667, 175.2639869833, "28"], +[-37.8054408333, 175.2637246333, "30"], +[-37.8053906, 175.26345585, "32"], +[-37.80491885, 175.2633260167, "34"], +[-37.8060378333, 175.2646684667, "16"], +[-37.8059290167, 175.2643977167, "14"], +[-37.8059769167, 175.2649194667, "18"], +[-37.80586745, 175.2641356167, "12"], +[-37.8058511667, 175.264933, "20"], +[-37.8056642833, 175.2648003167, "22"], +[-37.8056172833, 175.2645036333, "24"], +[-37.80510295, 175.2623314833, "40"], +[-37.8048563167, 175.2613278833, "17"], +[-37.8052533667, 175.2615724, "3"], +[-37.8051292667, 175.2610516333, "5"], +[-37.8050573, 175.2606249, "7"], +[-37.80491435, 175.2615795833, "19"], +[-37.80479225, 175.2610905167, "15"], +[-37.8049865833, 175.2618389667, "21"], +[-37.8053399167, 175.2619735167, "1"], +[-37.8048642667, 175.2605171667, "9"], +[-37.8050446667, 175.2620906833, "23"], +[-37.8047513333, 175.2605606167, "11"], +[-37.8047000667, 175.26081965, "13"], +[-37.7910592, 175.26166345, "79"], +[-37.7909295, 175.2616441333, "87"], +[-37.7912166167, 175.2616961, "75A"], +[-37.7915469167, 175.2617415667, "69"], +[-37.7913836833, 175.2617196833, "71"], +[-37.7927773333, 175.2619228333, "45"], +[-37.78954615, 175.2618312667, "112"], +[-37.7896362833, 175.26185125, "110"], +[-37.7898807833, 175.26192105, "108A-108I"], +[-37.7901356833, 175.2619664, "100"], +[-37.7908549667, 175.2620745167, "88"], +[-37.7897142, 175.2614610333, "121"], +[-37.790777, 175.2616340333, "89"], +[-37.7921024833, 175.2622276833, "64"], +[-37.7922478, 175.2622382667, "60"], +[-37.7932653333, 175.2624408167, "36"], +[-37.7938824667, 175.2625704333, "18A"], +[-37.79261765, 175.2623233833, "50"], +[-37.79054075, 175.2620215167, "92"], +[-37.79117975, 175.2621242833, "76"], +[-37.7900927167, 175.2615234, "103"], +[-37.7887462, 175.2612202667, "129"], +[-37.7938537, 175.2620757333, "19"], +[-37.7930859667, 175.2619496667, "39"], +[-37.7925818333, 175.2619009667, "53"], +[-37.7905604833, 175.2615905833, "91"], +[-37.7942900333, 175.2626389667, "8"], +[-37.7944166167, 175.2626626333, "4"], +[-37.7904297333, 175.2615841333, "95"], +[-37.7920836, 175.2618379167, "63"], +[-37.7904092167, 175.2620150667, "94"], +[-37.7899784333, 175.2615197833, "105"], +[-37.78985105, 175.26149285, "109"], +[-37.78931915, 175.2618074333, "120"], +[-37.7890146667, 175.2613875167, "123"], +[-37.7889280167, 175.2613732833, "125"], +[-37.7941699333, 175.26262805, "10"], +[-37.7941646167, 175.2621650833, "11"], +[-37.7939409667, 175.2629440167, "16"], +[-37.7939919167, 175.26209335, "15"], +[-37.7940216833, 175.2626014667, "16A"], +[-37.7936398, 175.2625220667, "24"], +[-37.793769, 175.2625445667, "20"], +[-37.7933451, 175.2619854, "33"], +[-37.7932168333, 175.2619812667, "37"], +[-37.7929530167, 175.26191665, "43"], +[-37.7902980667, 175.2615468333, "97"], +[-37.7902631, 175.2619800333, "98"], +[-37.79226295, 175.2618714833, "61"], +[-37.7943773333, 175.2622266, "5"], +[-37.7942751667, 175.2621688833, "7"], +[-37.792405, 175.2618768833, "57"], +[-37.7953566333, 175.2287440833, "6"], +[-37.7959226, 175.2286790833, "12"], +[-37.7962147833, 175.22931315, "13"], +[-37.7960736, 175.22866255, "14"], +[-37.7962371667, 175.2297158333, "15"], +[-37.7965966, 175.2296712333, "28"], +[-37.7950371667, 175.2288534333, "2"], +[-37.7965645833, 175.22978825, "30"], +[-37.7966884, 175.23008185, "32"], +[-37.79662485, 175.2302630667, "34"], +[-37.79556495, 175.22870425, "8"], +[-37.7958966667, 175.2289722667, "9"], +[-37.7961083333, 175.2290674833, "11"], +[-37.7957477333, 175.2286936333, "10"], +[-37.7965347, 175.2294790667, "26"], +[-37.7964273333, 175.2298181333, "17"], +[-37.7961832667, 175.22846995, "16"], +[-37.7964581167, 175.2292769, "24"], +[-37.7962338167, 175.2286815167, "18"], +[-37.7963031, 175.2288570833, "20"], +[-37.7963726667, 175.229068, "22"], +[-37.7951017667, 175.2291240333, "1"], +[-37.7953444333, 175.2290471167, "3"], +[-37.79570585, 175.2289777, "7"], +[-37.7952177167, 175.22880385, "4"], +[-37.7955208667, 175.22899685, "5"], +[-37.78526415, 175.2705036, "1"], +[-37.7828158333, 175.256882, "114D"], +[-37.7853552667, 175.26904785, "15"], +[-37.7826043833, 175.25693635, "114A"], +[-37.7850431667, 175.2691620833, "17-19"], +[-37.78267825, 175.25691105, "114B"], +[-37.7827348167, 175.2568916, "114C"], +[-37.7839056167, 175.2639442667, "66"], +[-37.7838800667, 175.2637589333, "68"], +[-37.78369535, 175.2602979667, "87A"], +[-37.7832340667, 175.2598592833, "1/94-4/94"], +[-37.7832597333, 175.25965795, "1/96-4/96"], +[-37.7843339167, 175.2644471833, "51"], +[-37.7840282, 175.2618024833, "75B"], +[-37.7841547333, 175.2617903667, "75C"], +[-37.7839175667, 175.2618356, "75"], +[-37.7837598167, 175.2628808833, "74"], +[-37.7832374, 175.2594618667, "98A-98F"], +[-37.7848863, 175.2703922833, "14"], +[-37.7848542333, 175.2701922333, "16"], +[-37.7848128833, 175.2699332667, "20"], +[-37.7849738167, 175.2687923167, "21"], +[-37.7847780667, 175.2697034667, "22"], +[-37.7847306833, 175.2694455333, "24"], +[-37.78468535, 175.26902625, "28"], +[-37.7847935667, 175.2662567, "39A"], +[-37.78458355, 175.2662356833, "39"], +[-37.7845568167, 175.2660059833, "41"], +[-37.78451385, 175.2657911833, "43"], +[-37.7844486167, 175.265423, "45A"], +[-37.7844743833, 175.2655945667, "45"], +[-37.78406185, 175.2649588, "60"], +[-37.78393135, 175.2641214, "64"], +[-37.7841433, 175.2654295333, "56"], +[-37.7841096333, 175.26522665, "58"], +[-37.7851558833, 175.2697713, "9"], +[-37.7840092833, 175.2625393, "67"], +[-37.7844590333, 175.26336945, "61A"], +[-37.7844034, 175.2629154833, "65A"], +[-37.78410675, 175.2630611667, "65"], +[-37.7823111, 175.2546328333, "160"], +[-37.7836997667, 175.2604682667, "85"], +[-37.7841610333, 175.26346275, "61"], +[-37.78345125, 175.2607547833, "86"], +[-37.7849793833, 175.2709725833, "2-8"], +[-37.7852220333, 175.2702114333, "3"], +[-37.7851727667, 175.2699558667, "5"], +[-37.7841175333, 175.2631969, "1/63-5/63"], +[-37.7842920667, 175.2642068667, "1/53-5/53"], +[-37.7842525667, 175.2639729, "1/55-6/55"], +[-37.7842243, 175.2638030833, "1/57-6/57"], +[-37.7842028, 175.2636565833, "1/59-4/59"], +[-37.7840297, 175.2647668167, "1/62-8/62"], +[-37.7843590167, 175.2646682167, "49"], +[-37.7847139667, 175.2645621833, "1/49-8/49"], +[-37.7846932833, 175.2643412333, "51A"], +[-37.7841771333, 175.2656569333, "1/54-4/54"], +[-37.7848734333, 175.2659186, "1/41-4/41"], +[-37.7849094167, 175.2656912167, "3/43-5/43"], +[-37.7840130167, 175.2645980833, "62A"], +[-37.7839132167, 175.2650837, "60A"], +[-37.7826094333, 175.25555115, "124"], +[-37.7829709833, 175.2578199333, "108"], +[-37.7829465667, 175.2575027167, "110"], +[-37.7830740333, 175.2585057833, "102-106"], +[-37.7834259333, 175.2587141833, "103"], +[-37.7827869167, 175.2567287167, "116"], +[-37.78276425, 175.2565125167, "118"], +[-37.7826920833, 175.2560441833, "120"], +[-37.7826489167, 175.25581935, "122"], +[-37.7833228833, 175.2577050167, "165"], +[-37.7836808167, 175.2601195833, "89"], +[-37.7833522, 175.2602936167, "90"], +[-37.7836503167, 175.2599486333, "91"], +[-37.7838882167, 175.2616597833, "77"], +[-37.7838430833, 175.2614249167, "79"], +[-37.78382045, 175.26120205, "81"], +[-37.78354825, 175.2616934167, "82"], +[-37.7838009333, 175.2609632167, "83"], +[-37.78352375, 175.2615204667, "84"], +[-37.7839862667, 175.2622178667, "71"], +[-37.7839641833, 175.2620504, "73"], +[-37.7837436333, 175.2627474833, "76"], +[-37.7837301667, 175.2625210667, "78"], +[-37.7838652167, 175.2635725167, "70"], +[-37.78384895, 175.2634428333, "72"], +[-37.78331745, 175.2600869833, "92"], +[-37.7836302167, 175.2597801333, "93"], +[-37.7832936, 175.2598671, "94"], +[-37.7836745333, 175.2596131, "97A"], +[-37.7836522833, 175.2595136333, "97B"], +[-37.7836014833, 175.25936175, "97C"], +[-37.7835642667, 175.2592525667, "97D"], +[-37.7849262, 175.2705699333, "12"], +[-37.7849508333, 175.2707453167, "10"], +[-37.7842224333, 175.2660617, "50"], +[-37.7842073667, 175.2658808167, "52"], +[-37.7846199333, 175.2663940333, "37"], +[-37.7847057833, 175.2670969667, "31A"], +[-37.7848014833, 175.2670150167, "31B"], +[-37.7848473833, 175.2669274167, "31C"], +[-37.7848544833, 175.2679231833, "27"], +[-37.7845457333, 175.2701303167, "18"], +[-37.7847081333, 175.2692495667, "26"], +[-37.7851334667, 175.2696136667, "11"], +[-37.7850999333, 175.2694387667, "13"], +[-37.7833784833, 175.2605006333, "88"], +[-37.7839772, 175.2602311333, "87C"], +[-37.7825212167, 175.25509885, "126"], +[-37.78438975, 175.2648458833, "47"], +[-37.7630104, 175.2986291833, "2"], +[-37.76246135, 175.3006463, "28"], +[-37.76226315, 175.30149765, "36"], +[-37.7621281333, 175.3005832333, "19"], +[-37.7626946833, 175.2997435167, "14"], +[-37.7620403167, 175.3008964, "21"], +[-37.7621956667, 175.30038115, "17"], +[-37.7627543167, 175.2995456, "12"], +[-37.7649589, 175.3037090167, "85"], +[-37.7648015833, 175.3036408333, "83"], +[-37.7619199833, 175.3016365, "37"], +[-37.76226135, 175.3017327167, "38"], +[-37.7619521667, 175.3020215833, "39"], +[-37.7623154333, 175.3019658667, "40"], +[-37.7620019667, 175.30219455, "41"], +[-37.7617656, 175.30246115, "45"], +[-37.7627074333, 175.3024096667, "46"], +[-37.7624103, 175.3021824167, "42"], +[-37.76286215, 175.3024571667, "48"], +[-37.7625546167, 175.3023234833, "44"], +[-37.7627600833, 175.2984408333, "3A"], +[-37.7618155333, 175.3025627167, "47"], +[-37.7626967167, 175.2986473, "3B"], +[-37.7625284833, 175.2986520167, "3C"], +[-37.7621210667, 175.3024008667, "51"], +[-37.7622092167, 175.3025568833, "53A"], +[-37.7621782833, 175.3027167167, "53B"], +[-37.7623224, 175.3026700833, "55"], +[-37.7624784333, 175.30278455, "57"], +[-37.7626071, 175.3028368667, "59"], +[-37.7632877833, 175.3026130833, "54"], +[-37.76299945, 175.302497, "50"], +[-37.7631425833, 175.3025616833, "52"], +[-37.7634337, 175.3026602833, "56"], +[-37.7635815167, 175.3026939667, "58"], +[-37.7637146667, 175.30276175, "60"], +[-37.7629424333, 175.2989177, "4"], +[-37.7619301, 175.2984938, "5"], +[-37.7631250333, 175.3030122167, "65"], +[-37.7632539, 175.3030477333, "67"], +[-37.76338235, 175.303103, "69"], +[-37.7635035333, 175.3031428333, "71"], +[-37.7621001833, 175.2984881, "7"], +[-37.76386235, 175.3028204667, "62"], +[-37.7640185667, 175.3028773167, "64"], +[-37.7641652, 175.3029093167, "66"], +[-37.7643060667, 175.30296695, "68"], +[-37.7644554333, 175.3030309333, "70"], +[-37.7639150167, 175.3032778167, "73"], +[-37.7640289333, 175.303314, "75"], +[-37.7641629, 175.3033726667, "77"], +[-37.7642849333, 175.3034147, "79"], +[-37.7645905, 175.3030816667, "72"], +[-37.7647217, 175.3031518667, "74"], +[-37.7648911833, 175.30276435, "76"], +[-37.7649138, 175.3032681667, "80"], +[-37.7646656833, 175.3035834667, "81"], +[-37.7649864, 175.30282175, "78"], +[-37.7619835333, 175.3011611167, "23"], +[-37.76191195, 175.3013899167, "25"], +[-37.7625131, 175.3004621833, "26"], +[-37.7964587, 175.2987372833, "79A"], +[-37.7981442667, 175.2944980667, "38"], +[-37.7961713, 175.2986368333, "79D"], +[-37.7955188833, 175.3012206833, "117"], +[-37.7971839667, 175.29561625, "39A"], +[-37.7976224, 175.2936429167, "21"], +[-37.7958081833, 175.3015525333, "119"], +[-37.7994520333, 175.2937210667, "6"], +[-37.7971080333, 175.2955937333, "39B"], +[-37.7994018833, 175.29307855, "4"], +[-37.7977642167, 175.2932979667, "15B"], +[-37.79778255, 175.2942769, "27"], +[-37.7993047667, 175.2936758833, "12"], +[-37.7969191667, 175.2986816, "84"], +[-37.7962641, 175.29866975, "79C"], +[-37.7969523, 175.2984950167, "82"], +[-37.7977332333, 175.2931848167, "15C"], +[-37.7972213, 175.2987768833, "84A"], +[-37.7970171, 175.2955633833, "39C"], +[-37.7962206, 175.2999360833, "97"], +[-37.7963591667, 175.2987027333, "79B"], +[-37.79746645, 175.2995779167, "98"], +[-37.7957171333, 175.3019613833, "127"], +[-37.79664855, 175.3016004833, "128A"], +[-37.79691275, 175.3016987833, "128B"], +[-37.7971064333, 175.3017701, "128C"], +[-37.7963092333, 175.3013781667, "130"], +[-37.7956909167, 175.3021725167, "131"], +[-37.79912495, 175.293203, "10"], +[-37.7969528333, 175.2966478667, "1/51-6/51"], +[-37.7964284167, 175.2964925833, "1/53-6/53"], +[-37.7961925, 175.2964517333, "1/55-8/55"], +[-37.7968912167, 175.2969313833, "1/59-7/59"], +[-37.79642295, 175.3009187667, "122"], +[-37.796365, 175.2991474833, "87A-87E"], +[-37.7975894667, 175.2934797667, "19"], +[-37.7976981167, 175.2936327667, "1/21-8/21"], +[-37.7983880667, 175.2932482667, "1/7-6/7"], +[-37.7981773833, 175.2936369, "11"], +[-37.7985453667, 175.2930054667, "1/5-8/5"], +[-37.798644, 175.2937081833, "1/26-8/26"], +[-37.7979521167, 175.2940037833, "23A-23D"], +[-37.79872015, 175.2935959667, "22"], +[-37.79913645, 175.2940071, "22A"], +[-37.7978506, 175.2941342333, "25"], +[-37.7995467167, 175.29302735, "2"], +[-37.7985522167, 175.2938516, "30"], +[-37.7984503667, 175.2943596167, "34"], +[-37.7982516, 175.2943471667, "36"], +[-37.79837955, 175.2941246833, "34A"], +[-37.7960007667, 175.2994899333, "91"], +[-37.7978871833, 175.29347825, "13"], +[-37.7988814, 175.29335235, "14"], +[-37.7990335667, 175.2933094667, "16"], +[-37.7975626167, 175.2932717667, "17"], +[-37.7987926, 175.2934907, "18A"], +[-37.7992017167, 175.2938961333, "18B"], +[-37.7984478833, 175.2940104333, "32"], +[-37.7993526333, 175.2934147667, "8A"], +[-37.7994413833, 175.2933753667, "8B"], +[-37.7982901167, 175.2934472833, "9"], +[-37.7964801, 175.2967077, "1/57-3/57"], +[-37.7966060333, 175.29813175, "1/69-3/69"], +[-37.7959554, 175.2981057, "1/71B-5/71B"], +[-37.7959526, 175.2983019333, "1/75"], +[-37.79724025, 175.2996279833, "100"], +[-37.7970993667, 175.2998385833, "104B"], +[-37.7963185, 175.2982488333, "1/71A-5/71A"], +[-37.7966861667, 175.29963195, "104A"], +[-37.7971357667, 175.2996305833, "104C"], +[-37.7960715667, 175.30046705, "103"], +[-37.7958494, 175.2982516167, "2/75"], +[-37.7972467667, 175.2990333167, "2/88"], +[-37.7957358333, 175.29820555, "3/75"], +[-37.7972309167, 175.2954473667, "37"], +[-37.7978510167, 175.2966148167, "54"], +[-37.7974216, 175.2965157667, "56"], +[-37.7974775833, 175.2962830333, "50"], +[-37.7981262, 175.29669095, "52"], +[-37.79739135, 175.2966705333, "58"], +[-37.7973405, 175.2968423833, "60"], +[-37.7968417667, 175.2971286667, "61"], +[-37.79730675, 175.2970279667, "62"], +[-37.7972605, 175.2971835333, "64"], +[-37.7965688833, 175.2983095, "71"], +[-37.7965152667, 175.29851575, "73"], +[-37.7961219333, 175.2983905167, "75A"], +[-37.7960294167, 175.2983538167, "75B"], +[-37.7978572833, 175.2985539, "76A"], +[-37.7978218833, 175.2987759333, "76B"], +[-37.7975911, 175.2986388, "76"], +[-37.7957633, 175.29845225, "77B"], +[-37.7960808333, 175.2985412167, "77"], +[-37.7973343333, 175.2984160167, "78"], +[-37.7970025167, 175.2983318, "80"], +[-37.7964206, 175.2989191, "81A"], +[-37.7960760333, 175.2988037, "81B"], +[-37.7957650333, 175.2986983167, "83A"], +[-37.7959627167, 175.2988197667, "83"], +[-37.7959266667, 175.2985275, "77A"], +[-37.7955913667, 175.2986446, "83B"], +[-37.7974680667, 175.2989226333, "86"], +[-37.79738335, 175.2990390833, "88A"], +[-37.79771015, 175.2991654667, "88B"], +[-37.79688055, 175.2989138, "88"], +[-37.7957382167, 175.29887225, "85A"], +[-37.7955537333, 175.29884205, "85C"], +[-37.79593705, 175.2989297833, "85"], +[-37.7958870667, 175.2991784333, "89A"], +[-37.79597455, 175.2992137333, "89B"], +[-37.7961772667, 175.2992876167, "89C"], +[-37.7963219833, 175.2993467167, "89"], +[-37.7968401333, 175.2990767167, "92"], +[-37.7962813333, 175.2995437, "93"], +[-37.79680565, 175.2992479333, "94"], +[-37.7962510333, 175.2997621167, "95"], +[-37.7972173333, 175.2994538167, "96"], +[-37.7962247333, 175.3017141167, "136"], +[-37.79701255, 175.2963173833, "47A"], +[-37.7969118833, 175.2962805833, "47B"], +[-37.7968165667, 175.2962498667, "47C"], +[-37.7967329167, 175.2962205333, "47D"], +[-37.7966468833, 175.2961930833, "47E"], +[-37.796983, 175.29646095, "49A"], +[-37.7968885667, 175.2964253333, "49B"], +[-37.7971085167, 175.2959447, "43"], +[-37.79719595, 175.2998578167, "106"], +[-37.7969392333, 175.2996517333, "104"], +[-37.7966603, 175.29990355, "108"], +[-37.7965321167, 175.3018357833, "136A"], +[-37.7955687, 175.3010925667, "111B"], +[-37.79595105, 175.3009793667, "109"], +[-37.7971457667, 175.2957825, "41"], +[-37.7966214167, 175.2963279167, "49E"], +[-37.7970634833, 175.2961150333, "45"], +[-37.7956426667, 175.30081795, "109A"], +[-37.7960049167, 175.3007268833, "107"], +[-37.79662225, 175.30007485, "110"], +[-37.7959045833, 175.3011676667, "111A"], +[-37.7967096667, 175.29636135, "49D"], +[-37.7967911, 175.2963847167, "49C"], +[-37.79520005, 175.3009376667, "111C"], +[-37.796265, 175.3015567833, "134"], +[-37.7956196833, 175.3025992667, "133"], +[-37.7963713333, 175.3011360167, "124"], +[-37.7964680833, 175.30071915, "118"], +[-37.7958461167, 175.3013595167, "115"], +[-37.795777, 175.3017711833, "123"], +[-37.7967263333, 175.3014437667, "126"], +[-37.7969443833, 175.3019831167, "138A"], +[-37.7978344667, 175.29319695, "15D"], +[-37.79779115, 175.2930746167, "15E"], +[-37.7978922333, 175.29309375, "15F"], +[-37.7978388, 175.2929903667, "15G"], +[-37.7976885833, 175.2933252333, "15A"], +[-37.7976583833, 175.29448225, "29"], +[-37.7961289833, 175.3021462833, "144"], +[-37.79663755, 175.3019345, "138"], +[-37.7961723167, 175.3019534667, "142"], +[-37.7966121833, 175.3020326167, "140"], +[-37.7964090667, 175.30216285, "144A"], +[-37.7960819167, 175.3023341333, "148"], +[-37.7964969667, 175.3022589167, "146"], +[-37.7964619833, 175.3025200167, "146A"], +[-37.7960450667, 175.3025109167, "150"], +[-37.7899797833, 175.2544246333, "34"], +[-37.7892325333, 175.2527013167, "15"], +[-37.78917655, 175.2524866167, "13"], +[-37.7894042833, 175.2520242833, "12"], +[-37.7895713333, 175.2526705167, "18"], +[-37.78986935, 175.2539950667, "30"], +[-37.7894610667, 175.2522410667, "14"], +[-37.7892804833, 175.2529158333, "17"], +[-37.7895177833, 175.2524539167, "16"], +[-37.7897180667, 175.2533335667, "24"], +[-37.7897747333, 175.2535594667, "26"], +[-37.7891465, 175.25093295, "2"], +[-37.78993255, 175.2542194667, "32"], +[-37.7896153667, 175.2528789833, "20"], +[-37.78982525, 175.2537712, "28"], +[-37.7900897333, 175.25487, "38"], +[-37.7889729167, 175.25161795, "5"], +[-37.7898995833, 175.25554795, "27A"], +[-37.7896901, 175.2556163833, "27B"], +[-37.790005, 175.2540267, "30A"], +[-37.7903865, 175.2561250833, "50"], +[-37.7893573167, 175.25181575, "10"], +[-37.78912065, 175.2522668167, "11"], +[-37.7893044333, 175.2531245833, "19"], +[-37.7887835167, 175.2508910167, "1"], +[-37.7896657667, 175.2530956, "22"], +[-37.7889130833, 175.2513928833, "3"], +[-37.7891970167, 175.25114545, "4"], +[-37.7900328167, 175.2546613833, "36"], +[-37.7892473833, 175.251362, "6"], +[-37.7890207333, 175.2518375667, "7"], +[-37.7893007667, 175.2515868, "8"], +[-37.7890766667, 175.2520574333, "9"], +[-37.7897942667, 175.2551072833, "23"], +[-37.7898406833, 175.2553221, "25"], +[-37.7899543, 175.2557629333, "29"], +[-37.7899920667, 175.2559827333, "31"], +[-37.79003835, 175.2562028667, "33"], +[-37.7901016833, 175.2564182, "35"], +[-37.7901394333, 175.2566380667, "37"], +[-37.7901373333, 175.2550864167, "40"], +[-37.79020025, 175.2553019167, "42"], +[-37.7903017333, 175.2557319, "46"], +[-37.7903482833, 175.2559516, "48"], +[-37.7902468667, 175.2555218333, "44"], +[-37.7824125833, 175.3127947833, "212C"], +[-37.7842206833, 175.3057720167, "151"], +[-37.7831288667, 175.3096143667, "164B"], +[-37.7819465333, 175.3152382833, "1/239-6/239"], +[-37.7817635667, 175.3137616, "231"], +[-37.7818482833, 175.31495895, "1/237-6/237"], +[-37.7823371333, 175.3136882833, "1/226-4/226"], +[-37.7817491833, 175.31470335, "1/235-6/235"], +[-37.7825276833, 175.311719, "198C"], +[-37.7878461333, 175.3034317667, "16"], +[-37.7824811333, 175.3128229167, "212D"], +[-37.7887459, 175.3028295, "12A-12D"], +[-37.7822427167, 175.3117101667, "207"], +[-37.7889436333, 175.3026813333, "10"], +[-37.78267405, 175.3098684, "193"], +[-37.7884124833, 175.3030597667, "14"], +[-37.78330665, 175.30890045, "152B"], +[-37.7837250167, 175.3069173167, "163"], +[-37.78193915, 175.3130387833, "225"], +[-37.78429095, 175.30646855, "106"], +[-37.7831203167, 175.3106883167, "180A-180D"], +[-37.78599415, 175.3042539667, "77"], +[-37.78277245, 175.31105545, "190A"], +[-37.7824361333, 175.3132405, "222A-222D"], +[-37.78250535, 175.3118190667, "198D"], +[-37.7844441833, 175.3053490667, "147"], +[-37.78332205, 175.30936505, "160A"], +[-37.7831400833, 175.3082549333, "179"], +[-37.7825464667, 175.312851, "212E"], +[-37.78708115, 175.3034892, "69"], +[-37.7823557667, 175.3127759333, "212B"], +[-37.7830331833, 175.3084707667, "181"], +[-37.7826193833, 175.3128800333, "212F"], +[-37.7829489333, 175.3086595667, "183"], +[-37.7826781333, 175.3118178333, "198B"], +[-37.7828526333, 175.3089593167, "187"], +[-37.7832400833, 175.3096503333, "164C"], +[-37.7828136, 175.3091607167, "189"], +[-37.7828334, 175.31243115, "206A"], +[-37.7827751, 175.3093337667, "191"], +[-37.78238655, 175.31353545, "224B"], +[-37.7827334667, 175.3095053833, "191A"], +[-37.7822946333, 175.3127546, "212A"], +[-37.7897030833, 175.3018802333, "3"], +[-37.7829212833, 175.3114443, "192B"], +[-37.7823506833, 175.3125213, "210"], +[-37.7824225333, 175.3109466, "203"], +[-37.7824636333, 175.3120488667, "202"], +[-37.7823563167, 175.3111764, "205"], +[-37.7824121167, 175.3122479333, "204"], +[-37.7828058167, 175.3125961167, "208"], +[-37.7829236667, 175.3110968, "188"], +[-37.7826801167, 175.3111011167, "190"], +[-37.7828158667, 175.3114394, "192A"], +[-37.7826257333, 175.3112896, "192"], +[-37.7825768333, 175.3115194333, "194"], +[-37.78193685, 175.31423655, "1/234-4/234"], +[-37.7819013167, 175.3144188833, "1/236-12/236"], +[-37.78199515, 175.3147225833, "238"], +[-37.7866349667, 175.30381425, "73"], +[-37.7833336, 175.3078154167, "175"], +[-37.7840959333, 175.3072417667, "124A"], +[-37.7839248167, 175.3072136833, "124"], +[-37.7832371167, 175.30802785, "177"], +[-37.7825117, 175.31052835, "199"], +[-37.783517, 175.30910985, "156"], +[-37.7831019833, 175.30923615, "160"], +[-37.7830616, 175.30939735, "162"], +[-37.7831426667, 175.3090515833, "158"], +[-37.7818205833, 175.3135514667, "229"], +[-37.7819680833, 175.3129029167, "223"], +[-37.7817557, 175.3127556333, "221"], +[-37.7817657333, 175.3126924667, "219"], +[-37.78200295, 175.3127355, "217"], +[-37.7827456, 175.3128762167, "208A"], +[-37.7828775167, 175.3102089333, "1/174-6/174"], +[-37.7833887167, 175.3098139667, "168A"], +[-37.7834244333, 175.3096828167, "168B"], +[-37.7827344, 175.3108603667, "184A"], +[-37.7829274833, 175.31094855, "184B"], +[-37.7828404167, 175.3104222, "178A"], +[-37.7830672833, 175.3105012, "178B"], +[-37.7819959333, 175.3140203833, "230"], +[-37.7821244167, 175.3139797667, "1/228-4/228"], +[-37.7823088, 175.3141342167, "232B"], +[-37.7822327667, 175.31409465, "232A"], +[-37.7820509, 175.31383475, "228"], +[-37.7821095, 175.3136099167, "226"], +[-37.7821520833, 175.3133779667, "224"], +[-37.78220715, 175.3132065167, "222"], +[-37.7822444833, 175.3130051, "216"], +[-37.7840882, 175.3060556333, "155"], +[-37.7834588667, 175.3089832167, "154"], +[-37.7822013333, 175.3118949833, "209"], +[-37.7824689667, 175.3129452667, "216A"], +[-37.7835689167, 175.3080844667, "142"], +[-37.7834816167, 175.3082891667, "144"], +[-37.7829323, 175.3099902833, "170"], +[-37.78403525, 175.3069930167, "120"], +[-37.7839425, 175.3063683833, "159"], +[-37.7840181667, 175.3062245167, "157"], +[-37.7842711, 175.3056458167, "149"], +[-37.7834121, 175.30845015, "146"], +[-37.7834237333, 175.3073422333, "169"], +[-37.7841504, 175.3059185833, "153"], +[-37.7828171, 175.3120689, "1/200-4/200"], +[-37.7829400667, 175.31067645, "182B"], +[-37.7827739, 175.3106812333, "182A"], +[-37.7831005833, 175.3099640667, "170A"], +[-37.7832072833, 175.3099992, "170B"], +[-37.7832527833, 175.3093455333, "160B"], +[-37.7893867, 175.3018741167, "11"], +[-37.7892460333, 175.3019967833, "15"], +[-37.7891084667, 175.30209015, "19"], +[-37.7885719833, 175.3024542167, "33"], +[-37.7884369167, 175.3025357167, "37"], +[-37.7882943667, 175.3026354167, "41"], +[-37.7880363, 175.3023737, "43"], +[-37.7897503167, 175.3023015, "2A"], +[-37.7896417167, 175.3022570667, "2"], +[-37.7879887333, 175.3028634, "49"], +[-37.7877410333, 175.3025552333, "51"], +[-37.7878301167, 175.3029763167, "53"], +[-37.7876818333, 175.3030730333, "59"], +[-37.7875087167, 175.3032021, "65"], +[-37.7872887167, 175.3033603833, "67"], +[-37.7881398333, 175.30274565, "45"], +[-37.78301875, 175.30958075, "164A"], +[-37.78298305, 175.3097511167, "166"], +[-37.7833146833, 175.3099550667, "168"], +[-37.7842135833, 175.3071931167, "122"], +[-37.7844093667, 175.3061878333, "100"], +[-37.78349185, 175.30745145, "171"], +[-37.7889722, 175.3021780167, "23"], +[-37.7861688, 175.3046126, "34"], +[-37.7888122333, 175.3022845, "27"], +[-37.7886894, 175.3023717667, "31"], +[-37.78281365, 175.31186875, "198A"], +[-37.78958395, 175.3018126333, "7"], +[-37.7824819833, 175.3106950167, "201"], +[-37.78255955, 175.3103292, "197"], +[-37.7876431833, 175.3035849833, "18A-18D"], +[-37.7873347167, 175.3037902833, "20A-20D"], +[-37.7832425333, 175.3087958, "152A"], +[-37.7833368167, 175.3086145667, "1/148-3/148"], +[-37.7878856833, 175.3035877667, "16A"], +[-37.7843191667, 175.3067776833, "118"], +[-37.7835715833, 175.30727955, "167"], +[-37.7836572667, 175.30709065, "165"], +[-37.7387763833, 175.2507868, "155"], +[-37.7386949833, 175.2508969667, "153"], +[-37.79019075, 175.2309364833, "1"], +[-37.7903507, 175.2305844167, "2"], +[-37.7904240833, 175.2311036, "8"], +[-37.7900726, 175.2316423667, "9"], +[-37.7903889667, 175.2319699, "15"], +[-37.7901216333, 175.2311378, "3"], +[-37.79044335, 175.2306750833, "4"], +[-37.7902371833, 175.2319293333, "13"], +[-37.7900801333, 175.2312715833, "5"], +[-37.7904531167, 175.2308944333, "6"], +[-37.7900581333, 175.2314810333, "7"], +[-37.79040205, 175.2313174667, "10"], +[-37.7901333333, 175.2317963833, "11"], +[-37.7904089333, 175.2315054833, "12"], +[-37.7351332167, 175.28521055, "13"], +[-37.7348029167, 175.2850427833, "9"], +[-37.7349723, 175.28512545, "11"], +[-37.7354689833, 175.2848119, "16"], +[-37.7349539333, 175.2846913167, "10"], +[-37.7352940167, 175.2847929167, "14"], +[-37.7354063167, 175.2849827333, "18"], +[-37.7352828667, 175.2852260667, "15"], +[-37.73543765, 175.28519655, "17"], +[-37.73419115, 175.28458035, "1"], +[-37.7343353333, 175.2843019167, "2"], +[-37.7343551, 175.2847382, "3"], +[-37.7344792667, 175.2844550167, "4"], +[-37.7344815833, 175.2848514, "5"], +[-37.7346399, 175.2845533667, "6"], +[-37.7346404167, 175.2849364167, "7"], +[-37.7351235833, 175.2847633667, "12"], +[-37.7347948833, 175.2846169667, "8"], +[-37.79389505, 175.33529125, "6"], +[-37.7945529, 175.3343606333, "8B"], +[-37.79423125, 175.3341900167, "8A"], +[-37.7936413167, 175.3349099833, "10"], +[-37.7937769667, 175.33567585, "5"], +[-37.7930647667, 175.3346082667, "13"], +[-37.7932017667, 175.33412845, "12A"], +[-37.79270425, 175.3334887167, "12B"], +[-37.7924516667, 175.33384215, "12C"], +[-37.7325267833, 175.27467585, "4"], +[-37.7325024667, 175.2750074, "1"], +[-37.7327194333, 175.2746876667, "6"], +[-37.7326462167, 175.2749993667, "3"], +[-37.73333295, 175.2745472667, "12"], +[-37.7328713667, 175.2750524667, "5"], +[-37.7335661, 175.2749129167, "15"], +[-37.7329689667, 175.2753122667, "7"], +[-37.7335266167, 175.2744386667, "14"], +[-37.7330764, 175.2750273, "9"], +[-37.7323883, 175.2747096333, "2"], +[-37.73315745, 175.2746191, "10"], +[-37.7332647667, 175.27496595, "11"], +[-37.7329508667, 175.2747181667, "8"], +[-37.73341685, 175.27490615, "13"], +[-37.73348765, 175.27464005, "16"], +[-37.7263716167, 175.2387621667, "9"], +[-37.7261403833, 175.2389817, "11"], +[-37.7263465, 175.2382293333, "5"], +[-37.72639205, 175.2390223333, "13"], +[-37.7264119167, 175.2378032833, "1"], +[-37.7265379333, 175.23919575, "15"], +[-37.7263819833, 175.2385094833, "7"], +[-37.7266590667, 175.23806435, "2"], +[-37.7263413833, 175.2379761667, "3"], +[-37.7266588833, 175.2386846833, "8"], +[-37.78723195, 175.25650055, "5"], +[-37.78839195, 175.2556085, "19"], +[-37.7870805167, 175.2565349333, "3"], +[-37.7882283667, 175.2561286833, "13"], +[-37.7883423167, 175.2559779333, "15"], +[-37.7883968167, 175.2558031, "17"], +[-37.7855492167, 175.2571407167, "1"], +[-37.7874987333, 175.2564002667, "9"], +[-37.7873242667, 175.2559715667, "14"], +[-37.7873798333, 175.2564497167, "7"], +[-37.7800978833, 175.26374945, "11"], +[-37.77910635, 175.2640739667, "34B"], +[-37.77991225, 175.2636901333, "11A"], +[-37.7805387833, 175.2642739833, "12B"], +[-37.7800113833, 175.26453645, "18B"], +[-37.78033195, 175.2641137, "12A"], +[-37.7802035833, 175.2643940167, "14A"], +[-37.780148, 175.2644591833, "14B"], +[-37.7799894667, 175.26394885, "15B"], +[-37.7798038333, 175.2638065, "15"], +[-37.7803876667, 175.2632652667, "1"], +[-37.7804507333, 175.2638887667, "4"], +[-37.78050375, 175.2637313, "2B"], +[-37.7798343167, 175.26441, "20A"], +[-37.7797096667, 175.2646338, "20B"], +[-37.7795710333, 175.26480395, "20C"], +[-37.7806054333, 175.2641339667, "2A"], +[-37.7799424833, 175.2645969833, "18C"], +[-37.7802510167, 175.2643231333, "14"], +[-37.7799480667, 175.2645065667, "18A"], +[-37.77971445, 175.2642912333, "24"], +[-37.7795766667, 175.26415625, "26"], +[-37.7796357833, 175.2636739667, "27"], +[-37.7794655667, 175.2640728, "28"], +[-37.7805527667, 175.2638981667, "2"], +[-37.7793534, 175.2639784167, "32"], +[-37.7792256833, 175.2638842333, "34"], +[-37.78029535, 175.2633845833, "3"], +[-37.7801910667, 175.2635758333, "7"], +[-37.7838706167, 175.2367656833, "11"], +[-37.7841264667, 175.2355807667, "4"], +[-37.7842746667, 175.2366356833, "16A"], +[-37.7842475667, 175.2364279, "14"], +[-37.78420255, 175.2366533, "16B"], +[-37.7836899667, 175.2366037, "9A"], +[-37.7836743167, 175.2365327833, "9B"], +[-37.7837858333, 175.2363129167, "7B"], +[-37.7838400167, 175.2357841, "1"], +[-37.7839484, 175.2362210833, "5"], +[-37.7840412, 175.2366823333, "18"], +[-37.7842406833, 175.23569165, "6"], +[-37.7843169667, 175.23604045, "10A"], +[-37.7844068833, 175.2357127167, "8B"], +[-37.7838746833, 175.2363956667, "7"], +[-37.7839994167, 175.2360170833, "3"], +[-37.78429555, 175.2358605667, "8"], +[-37.78430025, 175.2362359667, "12"], +[-37.7839383, 175.2365828167, "11A"], +[-37.7844524, 175.2359681167, "10B"], +[-37.7840097667, 175.2354732667, "2"], +[-37.7902733, 175.3233520167, "3"], +[-37.7897547833, 175.3236933833, "1/4A-10/4A"], +[-37.7901345333, 175.3236667167, "1/2-12/2"], +[-37.78996105, 175.32348245, "1/4-10/4"], +[-37.7901488167, 175.3231904833, "5"], +[-37.7310702333, 175.2867051, "11"], +[-37.7306485833, 175.2862584, "1A"], +[-37.7308859833, 175.2865880833, "7"], +[-37.7314364667, 175.28629145, "4"], +[-37.7309059, 175.2867306833, "9"], +[-37.7316624, 175.2863521833, "6"], +[-37.7310348167, 175.2865464667, "5"], +[-37.7318309667, 175.2862934667, "8"], +[-37.7312163333, 175.2864571333, "3"], +[-37.73184475, 175.2864757833, "10"], +[-37.7312277667, 175.2866681833, "13"], +[-37.7318499833, 175.2866467167, "12"], +[-37.7309668333, 175.2861760667, "1"], +[-37.7317963833, 175.2867669167, "14"], +[-37.7316777167, 175.28679845, "16"], +[-37.7315276333, 175.2868999167, "18"], +[-37.7313675, 175.2868923833, "17"], +[-37.73143955, 175.2866486167, "15"], +[-37.7312403, 175.2860698167, "2"], +[-37.75489485, 175.2519069667, "8"], +[-37.75508495, 175.2516238333, "7"], +[-37.7550396167, 175.2520369, "6"], +[-37.7551791333, 175.2516897, "5"], +[-37.7552672167, 175.25225945, "2"], +[-37.7552967833, 175.2517769333, "3"], +[-37.7551670167, 175.2521641167, "4"], +[-37.7547852833, 175.25180675, "10"], +[-37.7546728167, 175.2517055833, "12"], +[-37.7554551167, 175.25189315, "1"], +[-37.7549233, 175.2514852833, "9"], +[-37.79040585, 175.3227700333, "6C"], +[-37.7908570333, 175.32249645, "3"], +[-37.7903541833, 175.32283675, "6D"], +[-37.7904961333, 175.3220970667, "11"], +[-37.7905218167, 175.3226189333, "6A"], +[-37.7902625833, 175.3223942333, "10"], +[-37.7904587167, 175.3226943, "6B"], +[-37.7907781, 175.3220856167, "7"], +[-37.7906876667, 175.3223496167, "5"], +[-37.7904614333, 175.3229906, "4D"], +[-37.7905135, 175.3229256833, "4C"], +[-37.7906305167, 175.3227846167, "4A"], +[-37.7905827333, 175.32284675, "4B"], +[-37.7907171, 175.3220055167, "9"], +[-37.7903753333, 175.3225249833, "8"], +[-37.7909643667, 175.3226702667, "1"], +[-37.7901659833, 175.3204415667, "90B"], +[-37.7932114333, 175.3180580167, "59"], +[-37.7892387, 175.3206725, "100"], +[-37.79070105, 175.3202330667, "84A"], +[-37.7900969333, 175.3204684667, "90A"], +[-37.7907708167, 175.3204601833, "84B"], +[-37.7894492333, 175.3206309833, "98B"], +[-37.7895267, 175.3206108833, "98A"], +[-37.7897511167, 175.3205648667, "96A"], +[-37.789664, 175.32058825, "96B"], +[-37.78989195, 175.3205267167, "94"], +[-37.7926788667, 175.3199378167, "60A"], +[-37.7933899167, 175.3183617833, "57"], +[-37.7947165333, 175.3171730333, "29"], +[-37.7937079667, 175.3181244, "49"], +[-37.7933050833, 175.31933625, "44"], +[-37.7939228833, 175.3179389667, "43"], +[-37.79401195, 175.3178738333, "41"], +[-37.79419055, 175.31817615, "39"], +[-37.7935134667, 175.3187064167, "55"], +[-37.79292345, 175.31980345, "58A"], +[-37.7922892833, 175.3188177833, "77"], +[-37.7921231167, 175.3188080667, "77B"], +[-37.79218945, 175.3188053833, "77A"], +[-37.7920574167, 175.3188094667, "77C"], +[-37.7920002833, 175.3188152167, "77D"], +[-37.79345105, 175.3192179, "38"], +[-37.7935887167, 175.31909045, "36"], +[-37.79315965, 175.3194332, "48"], +[-37.7938518167, 175.3184530333, "47"], +[-37.7955032333, 175.3190136, "8"], +[-37.7940018833, 175.3183404, "45"], +[-37.7936729333, 175.3185756, "53"], +[-37.78936045, 175.3203404667, "105"], +[-37.7947929, 175.3169759333, "27A"], +[-37.7945435, 175.3176345833, "33A"], +[-37.7895388333, 175.3202811333, "103"], +[-37.7942371167, 175.3178116333, "1/37"], +[-37.7943131833, 175.3179646667, "3/37"], +[-37.7948673833, 175.3169714667, "27C"], +[-37.7942766, 175.3178885, "2/37"], +[-37.79435165, 175.31805155, "4/37"], +[-37.7948283, 175.3169712167, "27B"], +[-37.7928242667, 175.31967375, "58"], +[-37.7901079167, 175.3196126, "95B"], +[-37.78996385, 175.32051045, "92"], +[-37.7940918, 175.3186767333, "30"], +[-37.79361575, 175.31818485, "51"], +[-37.7920565833, 175.3194966333, "79"], +[-37.7958326833, 175.3190285833, "3"], +[-37.7948422667, 175.3172788667, "25A"], +[-37.7939463333, 175.3188105333, "32"], +[-37.7946668833, 175.3177858333, "33"], +[-37.79493985, 175.3174057333, "23"], +[-37.7937532333, 175.3189599, "34A"], +[-37.7938653333, 175.3190774333, "34B"], +[-37.7945059667, 175.31791595, "35"], +[-37.7948837167, 175.3170732667, "25B"], +[-37.7930188667, 175.3195632333, "52"], +[-37.79559275, 175.3191640167, "6"], +[-37.79267595, 175.3196859, "60"], +[-37.79014855, 175.31973875, "95A"], +[-37.7932672, 175.3184598667, "61"], +[-37.7933293667, 175.3188624, "63"], +[-37.7925051333, 175.3197522667, "62"], +[-37.7926345, 175.3193495667, "67"], +[-37.7924902667, 175.3193752167, "69"], +[-37.7923591, 175.3197910667, "64"], +[-37.7921921333, 175.3198155833, "66"], +[-37.79202755, 175.3198680833, "68"], +[-37.7918628, 175.3198978833, "70"], +[-37.7923113, 175.3194202667, "71"], +[-37.7917054, 175.3199463833, "72"], +[-37.7922114667, 175.3191361667, "73"], +[-37.79208855, 175.3191379167, "75"], +[-37.79154155, 175.3199919, "74"], +[-37.7913930667, 175.3200350833, "76"], +[-37.7913467333, 175.3196926333, "83"], +[-37.7912019667, 175.3197157667, "85"], +[-37.7905158667, 175.32029845, "86"], +[-37.7903399, 175.3203667833, "88"], +[-37.7906089167, 175.3199369333, "89A"], +[-37.7905721667, 175.31994915, "89B"], +[-37.7905388, 175.3199726333, "89C"], +[-37.7902269333, 175.3200947833, "97"], +[-37.7957417833, 175.3188701833, "5"], +[-37.7956658167, 175.31931335, "4"], +[-37.7956514167, 175.3187034667, "7"], +[-37.7955593333, 175.31853935, "9"], +[-37.7918757, 175.3195254167, "81"], +[-37.7948129167, 175.3176739167, "31"], +[-37.7950231667, 175.3175793167, "21"], +[-37.7940499, 175.3189136333, "32A"], +[-37.7942345333, 175.3185512167, "28"], +[-37.7945059333, 175.3183347833, "24"], +[-37.7943766833, 175.3184489667, "26"], +[-37.7946100333, 175.3175842, "33B"], +[-37.79464005, 175.31822415, "22"], +[-37.7954130333, 175.31886025, "10"], +[-37.7902486167, 175.31969815, "93"], +[-37.7904124333, 175.32001535, "91"], +[-37.7954688667, 175.3183685, "11"], +[-37.79532195, 175.31870465, "12"], +[-37.7953646667, 175.31817025, "13"], +[-37.7952865167, 175.31802475, "15"], +[-37.7952237167, 175.3185466833, "14"], +[-37.7951333667, 175.3183965667, "16"], +[-37.7947673667, 175.3181294, "20"], +[-37.7959163, 175.31917925, "1"], +[-37.7952033667, 175.3178615833, "17"], +[-37.7951273167, 175.3177148833, "19"], +[-37.7950270333, 175.3181093833, "18"], +[-37.7841048833, 175.2468349667, "39"], +[-37.78445715, 175.2465082, "29"], +[-37.7858965833, 175.2462319833, "2"], +[-37.7846657, 175.2479111167, "28"], +[-37.7847892, 175.2478522833, "26"], +[-37.78463615, 175.2473837333, "22"], +[-37.7848485333, 175.2474579667, "20A"], +[-37.7847039833, 175.2468775333, "27"], +[-37.7843669167, 175.2471683167, "35A"], +[-37.7842193833, 175.2477065667, "34"], +[-37.7843948, 175.2480513667, "36"], +[-37.78406275, 175.24784085, "40"], +[-37.78422565, 175.2472586333, "37"], +[-37.7843042333, 175.2481472667, "38"], +[-37.78366195, 175.2482003333, "50"], +[-37.7839354, 175.2479688833, "42"], +[-37.7840932167, 175.2482882, "44"], +[-37.7840607, 175.2474351, "43"], +[-37.7837925833, 175.2480900667, "48"], +[-37.7837676167, 175.2476598333, "49"], +[-37.7839210167, 175.2475372, "45"], +[-37.7836254, 175.2472823667, "47"], +[-37.78421225, 175.2486201167, "46B"], +[-37.7840220167, 175.2483530833, "46A"], +[-37.78271145, 175.24895185, "76"], +[-37.7827050333, 175.2482104333, "69"], +[-37.78249385, 175.2478737833, "75"], +[-37.7825956333, 175.2480253667, "73"], +[-37.7833925833, 175.2484827833, "62"], +[-37.7834896833, 175.24834315, "60"], +[-37.7831579667, 175.2477292, "61"], +[-37.7825546667, 175.2490923167, "78"], +[-37.7823933667, 175.2491891, "80"], +[-37.7837224833, 175.2486263833, "58"], +[-37.7839501333, 175.24892155, "56"], +[-37.7825853, 175.2488948833, "82"], +[-37.78330455, 175.2480799167, "63"], +[-37.78532225, 175.24665985, "12"], +[-37.7851113, 175.2458078833, "11"], +[-37.7853169833, 175.2462173, "13"], +[-37.7852120333, 175.2467921667, "14"], +[-37.7845179833, 175.24748545, "24"], +[-37.78454, 175.2477937333, "32"], +[-37.7854680667, 175.2468246833, "12A"], +[-37.7850964, 175.24645025, "17"], +[-37.7850362833, 175.24709145, "18A"], +[-37.7851382, 175.2472553, "18B"], +[-37.7856674167, 175.2467490833, "8"], +[-37.7847263333, 175.2461952833, "21"], +[-37.7827281167, 175.2486683, "84"], +[-37.7836279333, 175.2477837333, "51"], +[-37.7838204, 175.2485369667, "52"], +[-37.7835295667, 175.2478821667, "53"], +[-37.7840418667, 175.24885875, "54A"], +[-37.78408825, 175.2489813, "54B"], +[-37.783264, 175.24863955, "68"], +[-37.7831255, 175.2487340167, "70"], +[-37.7828487167, 175.24791795, "71"], +[-37.7829696167, 175.2487527167, "72"], +[-37.7828646833, 175.2488524167, "74"], +[-37.7848312167, 175.2472104, "20"], +[-37.7847936667, 175.2460850833, "19"], +[-37.7847789, 175.2476063, "20B"], +[-37.7849832333, 175.24730235, "18C"], +[-37.7849461667, 175.2462345833, "17A"], +[-37.7842781667, 175.2466782667, "31"], +[-37.7840285167, 175.2468912167, "39A"], +[-37.7838470667, 175.2470902, "41"], +[-37.7848307667, 175.24672855, "25"], +[-37.7853096667, 175.24702495, "14A"], +[-37.7849435167, 175.2466186333, "23"], +[-37.7844198833, 175.2475663, "30"], +[-37.7845346333, 175.2470517167, "33"], +[-37.7835457333, 175.2488231333, "64"], +[-37.7834535167, 175.2489088833, "66"], +[-37.7831689333, 175.2482151667, "65"], +[-37.7829169833, 175.2483958667, "67"], +[-37.7825959, 175.2485263833, "86"], +[-37.78249775, 175.248363, "88"], +[-37.78222425, 175.24845815, "90"], +[-37.7823697, 175.24823115, "92"], +[-37.7822600833, 175.24797315, "94"], +[-37.7854446167, 175.2465539833, "10"], +[-37.78519795, 175.2463395833, "15"], +[-37.7850956833, 175.2469582, "16"], +[-37.78576475, 175.2458940667, "1"], +[-37.7855480333, 175.2454618333, "3"], +[-37.7856711333, 175.24632215, "4"], +[-37.7855966667, 175.2459636167, "5"], +[-37.7857529167, 175.246685, "6"], +[-37.7854745167, 175.2460513, "7"], +[-37.7857384833, 175.2468871667, "8B"], +[-37.785182, 175.2457239167, "9"], +[-37.7830564667, 175.2490040333, "72A"], +[-37.78263685, 175.2493765833, "78A"], +[-37.7842160333, 175.2469869333, "35B"], +[-37.7832222167, 175.2476430667, "59"], +[-37.7833537333, 175.2475716667, "57"], +[-37.7833395, 175.2477727833, "55"], +[-37.79549755, 175.3254692333, "1A"], +[-37.7955754833, 175.3253313333, "1"], +[-37.7956874333, 175.3257078833, "2"], +[-37.7953581333, 175.3256063167, "3"], +[-37.7955717333, 175.3258226167, "4"], +[-37.7951882667, 175.3257286667, "5"], +[-37.7954423, 175.3259121, "6"], +[-37.79531155, 175.3260220333, "8"], +[-37.78762395, 175.2656892, "1A"], +[-37.7880408167, 175.26626985, "7"], +[-37.7877622, 175.26590545, "1"], +[-37.7881247167, 175.2664339333, "9"], +[-37.7883586167, 175.26679245, "15"], +[-37.7879365, 175.2661491667, "5"], +[-37.7886606167, 175.2665932833, "12"], +[-37.7884088, 175.2662616333, "10"], +[-37.7882825167, 175.2666653, "13"], +[-37.7881944, 175.2665481833, "11"], +[-37.7878425333, 175.26605885, "3"], +[-37.7882046833, 175.2660031333, "8"], +[-37.7881076833, 175.26586955, "6"], +[-37.7880360667, 175.2657723833, "4"], +[-37.7879656333, 175.2656902167, "2"], +[-37.7971957, 175.2827564333, "1A-1D"], +[-37.7983887833, 175.2829917833, "1/14"], +[-37.7984374, 175.2828165833, "2/14"], +[-37.7984765833, 175.28272865, "3/14"], +[-37.7974950833, 175.2829805, "3"], +[-37.7982525667, 175.2829165833, "12"], +[-37.7984027333, 175.2825388667, "12A"], +[-37.7983831333, 175.2835043667, "15"], +[-37.7983263167, 175.28376115, "15A"], +[-37.7973397, 175.2828966667, "1"], +[-37.7985663167, 175.2831652667, "16"], +[-37.79749595, 175.2824909167, "2"], +[-37.7976589833, 175.2825789833, "4"], +[-37.7975425667, 175.2833322333, "5A"], +[-37.7984982333, 175.2822007, "1/18-4/18"], +[-37.7978727, 175.28261185, "2/6"], +[-37.79841555, 175.2838693, "1/17A-4/17A"], +[-37.7979289667, 175.2824645833, "4/6"], +[-37.7979029167, 175.28253535, "3/6"], +[-37.7978447667, 175.28269485, "1/6"], +[-37.7977936167, 175.2831535333, "1/7-2/7"], +[-37.7982387667, 175.2834266167, "1/13-8/13"], +[-37.7980744167, 175.2829013333, "8F"], +[-37.7980630667, 175.28348635, "11A"], +[-37.7980932667, 175.2833312, "11"], +[-37.7979899333, 175.2836035333, "2/11"], +[-37.7985781667, 175.283614, "17"], +[-37.798275, 175.2824918167, "8A"], +[-37.7981698667, 175.2824501667, "8B"], +[-37.7980849167, 175.2824044, "8C"], +[-37.79802925, 175.28254135, "8D"], +[-37.7981607167, 175.2826310833, "8E"], +[-37.7979836333, 175.2828525, "8G"], +[-37.7978944667, 175.2828015333, "8H"], +[-37.79801365, 175.2822321667, "7/6"], +[-37.7979860333, 175.2823171, "6/6"], +[-37.7979564333, 175.28239465, "5/6"], +[-37.7979417, 175.2832583167, "9"], +[-37.7976298833, 175.28305735, "5"], +[-37.7738804167, 175.2384272, "2"], +[-37.77418715, 175.2388780333, "10"], +[-37.7738280333, 175.2388431, "3"], +[-37.7739985667, 175.2384763333, "4"], +[-37.7740935167, 175.2390281667, "7"], +[-37.77419005, 175.2385879833, "6"], +[-37.7739650667, 175.2389381667, "5"], +[-37.7743354667, 175.23872265, "8"], +[-37.7634102, 175.2774590167, "19"], +[-37.7604282167, 175.27694975, "46"], +[-37.7640788167, 175.2773692167, "11A"], +[-37.7472062333, 175.27429335, "277"], +[-37.75425085, 175.27607565, "162A"], +[-37.7471498, 175.2744470333, "279"], +[-37.7618626667, 175.2770854333, "30"], +[-37.7551262833, 175.2756771167, "151B"], +[-37.7644355833, 175.2775235167, "7A"], +[-37.7489735833, 175.2732181667, "247"], +[-37.7575844333, 175.2771469667, "110"], +[-37.7488053, 175.2737629, "248"], +[-37.75784075, 175.2771375667, "108"], +[-37.7491176333, 175.2736529, "244"], +[-37.76446025, 175.2785698333, "4A"], +[-37.7489723333, 175.2737052333, "246"], +[-37.7550589, 175.2764132667, "150A"], +[-37.7491140167, 175.2731668333, "245"], +[-37.7549884167, 175.2760598167, "152"], +[-37.7494381333, 175.2731255667, "241"], +[-37.7580523167, 175.2771761667, "106"], +[-37.7492682333, 175.2731385667, "243"], +[-37.76452775, 175.2782638167, "4"], +[-37.7486752667, 175.2738484667, "250"], +[-37.7532113167, 175.2753776167, "180A"], +[-37.7488138, 175.2732727333, "249"], +[-37.7635019833, 175.2772269167, "19A"], +[-37.7486523667, 175.2729351833, "253"], +[-37.7486720167, 175.273354, "251"], +[-37.7572094833, 175.2769226667, "122"], +[-37.7478351333, 175.2747265, "266"], +[-37.7480309, 175.2744249833, "262"], +[-37.7479220833, 175.2745656167, "264"], +[-37.7477437167, 175.2749099167, "270"], +[-37.7475248333, 175.2744439333, "275"], +[-37.7470193833, 175.2748710333, "287"], +[-37.7623317, 175.2773137833, "26"], +[-37.7573561167, 175.2769784333, "120"], +[-37.7531451833, 175.2749545667, "183"], +[-37.75041715, 175.27383195, "220"], +[-37.7474268167, 175.2746549167, "281"], +[-37.74734605, 175.2748235167, "283"], +[-37.747066, 175.2747297167, "285"], +[-37.7537185333, 175.2763394, "170"], +[-37.7538484833, 175.2757020667, "172"], +[-37.753738, 175.27516575, "173"], +[-37.7536934667, 175.2756674333, "174"], +[-37.75352185, 175.27560085, "176"], +[-37.74720275, 175.27520545, "291"], +[-37.7471644167, 175.27539005, "293"], +[-37.7613847167, 175.2772812, "34B"], +[-37.7617284, 175.27736835, "30A"], +[-37.7552212333, 175.2754264667, "151A"], +[-37.7612533333, 175.2772909333, "36"], +[-37.7557836333, 175.2759312167, "143"], +[-37.75692825, 175.2768248333, "126"], +[-37.7559657167, 175.2764745667, "140"], +[-37.75582365, 175.2763754167, "142"], +[-37.7613517333, 175.2769175667, "36B"], +[-37.76033485, 175.2766770833, "48"], +[-37.7625073667, 175.27736175, "24"], +[-37.7568267667, 175.2758748, "129"], +[-37.7567037167, 175.2758407, "131"], +[-37.75654845, 175.2767038833, "132"], +[-37.7565958833, 175.2761575, "133"], +[-37.7564082333, 175.27664215, "134"], +[-37.7564537833, 175.2761129333, "135"], +[-37.7562592667, 175.2765884667, "136"], +[-37.75630475, 175.2760778167, "137"], +[-37.7561175167, 175.27653705, "138"], +[-37.7541921833, 175.2758281167, "164"], +[-37.7542835333, 175.2753184833, "165"], +[-37.75395485, 175.27622895, "166A"], +[-37.7540308833, 175.2757749667, "166"], +[-37.7538525833, 175.2763618, "168"], +[-37.7535189, 175.2750871167, "177"], +[-37.7533723, 175.2755578, "178A"], +[-37.7513321167, 175.27384825, "209"], +[-37.7533600667, 175.2758632833, "178B"], +[-37.75122175, 175.2742424833, "210"], +[-37.7511606833, 175.2737508, "211"], +[-37.7485411, 175.2739418833, "254"], +[-37.7485656667, 175.2728163833, "255"], +[-37.7483954833, 175.2740287, "256"], +[-37.7484378, 175.2734551333, "257"], +[-37.7482661, 175.2741577833, "258"], +[-37.7483632167, 175.2732039167, "259"], +[-37.7481482167, 175.27428505, "260"], +[-37.74822945, 175.2732143333, "261"], +[-37.7482654833, 175.2735789167, "263"], +[-37.7481327167, 175.2736794833, "265"], +[-37.7480053667, 175.2738027167, "267"], +[-37.76149415, 175.2770109667, "34"], +[-37.7609796, 175.2771852333, "40A"], +[-37.7612061667, 175.2768693, "38"], +[-37.7549240667, 175.2750064333, "155"], +[-37.75479615, 175.2756039833, "157A"], +[-37.7545154667, 175.2759158333, "160"], +[-37.75462715, 175.2754648667, "159"], +[-37.7548124833, 175.2753219667, "157"], +[-37.7543553167, 175.2758645333, "162"], +[-37.7524929833, 175.2750450167, "184"], +[-37.7610897167, 175.27717515, "38A"], +[-37.7519347, 175.27513935, "192"], +[-37.7518365833, 175.2750700833, "194"], +[-37.7557960167, 175.2754189667, "145A"], +[-37.7616734833, 175.2770725167, "32"], +[-37.7556675667, 175.2763256667, "144"], +[-37.7639699667, 175.2776898167, "11"], +[-37.7569558, 175.2762883, "125"], +[-37.7619625333, 175.27716085, "28"], +[-37.7551727, 175.2761287, "150"], +[-37.76157735, 175.2773179167, "32A"], +[-37.7613594167, 175.27748145, "34C"], +[-37.7584913333, 175.2773466333, "102"], +[-37.7601282833, 175.2767352333, "50"], +[-37.76104765, 175.27683255, "40"], +[-37.7552832, 175.2757622167, "149"], +[-37.76073285, 175.2762393667, "67"], +[-37.7616289333, 175.2765049, "57"], +[-37.7609350333, 175.2763229167, "63"], +[-37.7612862667, 175.2764243, "61"], +[-37.76145705, 175.2764770833, "59"], +[-37.7644997833, 175.2777990667, "5"], +[-37.7592861, 175.2767105833, "81"], +[-37.7605118667, 175.2761593333, "71"], +[-37.7591371, 175.2768032167, "83"], +[-37.7576561, 175.27655445, "119"], +[-37.7586702667, 175.2773855167, "100"], +[-37.7578035333, 175.27662765, "117"], +[-37.75797545, 175.2766833167, "105"], +[-37.7581583167, 175.2767569667, "103"], +[-37.7553687667, 175.2762190167, "148"], +[-37.75555905, 175.2762820667, "146"], +[-37.7555355667, 175.2765128167, "146A"], +[-37.7556231167, 175.2758676333, "145"], +[-37.7637625333, 175.2783918667, "12A"], +[-37.75707695, 175.2768837667, "124"], +[-37.7554529667, 175.27580015, "147"], +[-37.7636382167, 175.27755055, "17"], +[-37.7638285167, 175.27697265, "15"], +[-37.7567248, 175.2767638167, "128"], +[-37.7553201167, 175.27648935, "148A"], +[-37.7553702833, 175.2754864667, "149B"], +[-37.75451335, 175.2761853167, "160A"], +[-37.7546212667, 175.2752225, "159A"], +[-37.7539268, 175.2752143333, "1/169-19/169"], +[-37.7544455167, 175.2753962667, "163"], +[-37.7545994833, 175.2748550667, "163A"], +[-37.7532883667, 175.2747855667, "181"], +[-37.75328415, 175.2749873833, "179"], +[-37.7506816, 175.2739526667, "214"], +[-37.7498026167, 175.2726805833, "229A"], +[-37.7627707, 175.2776809167, "22B"], +[-37.7627301, 175.2774526333, "22A"], +[-37.76293155, 175.2777539667, "20"], +[-37.7649632667, 175.2779680167, "1"], +[-37.7475884833, 175.2752520167, "276"], +[-37.74724985, 175.2750206833, "289"], +[-37.7531806, 175.2755491667, "180B"], +[-37.7531560167, 175.2756715833, "180C"], +[-37.7548067667, 175.2746787333, "161A"], +[-37.7547013, 175.2749350667, "161"], +[-37.753699, 175.27497545, "175"], +[-37.7605137833, 175.2767080167, "46A"], +[-37.7471335667, 175.2756195, "295"], +[-37.7588194667, 175.2774095167, "98"], +[-37.7641803333, 175.27821655, "8"], +[-37.7641553167, 175.27766525, "9"], +[-37.7599463667, 175.2763103833, "75"], +[-37.7641102833, 175.2784764667, "8A"], +[-37.7476621333, 175.2750699167, "274"], +[-37.76276815, 175.2769929667, "25"], +[-37.7590186167, 175.2773423, "96"], +[-37.7535621667, 175.2748928167, "177A"], +[-37.7523577333, 175.2749838333, "186"], +[-37.75222665, 175.27491175, "188"], +[-37.7521020167, 175.2748291833, "190"], +[-37.75245215, 175.2745115667, "191"], +[-37.7519202167, 175.2747259167, "196"], +[-37.7517789, 175.2746388333, "198"], +[-37.7505461167, 175.27388515, "218"], +[-37.7504938833, 175.2733747667, "219"], +[-37.75035785, 175.27326965, "221"], +[-37.7502638667, 175.27375565, "222A"], +[-37.75021405, 175.2732266, "223"], +[-37.7501891833, 175.2737277, "222"], +[-37.75005825, 175.2736650333, "228A"], +[-37.7499698667, 175.2736415667, "228"], +[-37.7498229667, 175.2731652833, "229"], +[-37.74981235, 175.273614, "230"], +[-37.74963665, 175.2731413167, "233"], +[-37.74967125, 175.2735481667, "234"], +[-37.7495636, 175.2727100667, "235"], +[-37.7494634667, 175.2727142, "237"], +[-37.7640064667, 175.27816445, "10"], +[-37.7638331833, 175.2781117667, "12"], +[-37.7638338833, 175.2775316667, "13"], +[-37.7647171167, 175.2778605, "3"], +[-37.7642757667, 175.27854595, "6A"], +[-37.7643013667, 175.27781105, "7"], +[-37.7643364667, 175.2782980333, "6"], +[-37.7515690167, 175.2745161333, "204"], +[-37.7515134667, 175.2749012667, "202"], +[-37.75161605, 175.2749467833, "200"], +[-37.7518192333, 175.2741556833, "203"], +[-37.7514891167, 175.2739573333, "207"], +[-37.7646687167, 175.2784044833, "2"], +[-37.75463165, 175.2746565167, "163B"], +[-37.7545335667, 175.2751443667, "163C"], +[-37.7567561667, 175.2771536, "128A"], +[-37.7516556, 175.27404165, "205"], +[-37.7568125833, 175.27622645, "127"], +[-37.74754505, 175.2754293833, "278"], +[-37.7549650833, 175.2756044167, "153"], +[-37.74747505, 175.275809, "282"], +[-37.7474963, 175.2756238333, "280"], +[-37.7608513667, 175.2767461167, "42"], +[-37.7506651833, 175.27347495, "217"], +[-37.7508406333, 175.2735549667, "215"], +[-37.7606461833, 175.2768403833, "44"], +[-37.7509959167, 175.2736494833, "213"], +[-37.7513586167, 175.2743972667, "208"], +[-37.7344188833, 175.2688884333, "14"], +[-37.7338534167, 175.2688174833, "24"], +[-37.7345915667, 175.2688916833, "10"], +[-37.7339802667, 175.2687554167, "22"], +[-37.73480595, 175.2686641, "4"], +[-37.7341436833, 175.2680546167, "21"], +[-37.7346205167, 175.2688999667, "8"], +[-37.7340752167, 175.26854145, "20"], +[-37.7344576833, 175.2688897167, "12"], +[-37.73400285, 175.2682266, "23"], +[-37.73375085, 175.26854935, "27"], +[-37.7337481167, 175.2686817, "28"], +[-37.7335047, 175.2683044833, "29"], +[-37.73376445, 175.2687374333, "26"], +[-37.7338681, 175.2683877167, "25"], +[-37.7347899, 175.2686412167, "6"], +[-37.73506275, 175.2686801833, "3"], +[-37.7351747, 175.2688959167, "1"], +[-37.7334817833, 175.26856615, "32"], +[-37.7334764, 175.2686837833, "30"], +[-37.7349043167, 175.2688584667, "2"], +[-37.7349162833, 175.2684180833, "11"], +[-37.7345276167, 175.2684200667, "16"], +[-37.7352263833, 175.2683987167, "5"], +[-37.7351496333, 175.2682931833, "7"], +[-37.73505445, 175.2682349333, "9"], +[-37.73476505, 175.268244, "13"], +[-37.7346005333, 175.2681430167, "15"], +[-37.7344183167, 175.2680525167, "17"], +[-37.7342962833, 175.2683022, "18"], +[-37.7342917667, 175.26795645, "19"], +[-37.78234475, 175.2283661167, "13"], +[-37.7818877167, 175.2288162167, "14"], +[-37.78246265, 175.23008075, "1"], +[-37.7820169, 175.2291332833, "10"], +[-37.78225135, 175.2285196, "11"], +[-37.7819256167, 175.22899285, "12"], +[-37.7822570833, 175.2299186667, "2"], +[-37.7823600667, 175.2296562833, "4"], +[-37.7826602333, 175.2296072167, "5"], +[-37.7823021, 175.2293604667, "6"], +[-37.7821467333, 175.2292274833, "8"], +[-37.78238555, 175.2282108167, "15"], +[-37.7818991333, 175.2286268167, "16"], +[-37.7819300667, 175.2284002, "18"], +[-37.7822603, 175.2280740833, "17"], +[-37.7825975333, 175.22986365, "3"], +[-37.7821896833, 175.2287784333, "9"], +[-37.78199495, 175.2281699833, "20"], +[-37.7821042, 175.2279791167, "22"], +[-37.7339447833, 175.2696334833, "6"], +[-37.7336081667, 175.2703801833, "21"], +[-37.7340621667, 175.2693208167, "7"], +[-37.7339218167, 175.2700409833, "8"], +[-37.7343738833, 175.2695038333, "3"], +[-37.7337543167, 175.269377, "11"], +[-37.733923, 175.27026905, "10"], +[-37.7338780167, 175.2693259, "9"], +[-37.7339081667, 175.27042305, "12"], +[-37.7337256667, 175.2694937667, "13"], +[-37.73379835, 175.27050775, "14"], +[-37.73370705, 175.2696881833, "15"], +[-37.7336785333, 175.2705075167, "16"], +[-37.7342149833, 175.2697047833, "4"], +[-37.7342212167, 175.26939955, "5"], +[-37.7336300167, 175.2701676167, "19"], +[-37.7336931667, 175.2699378667, "17"], +[-37.7378385333, 175.26364815, "1"], +[-37.7380708833, 175.2637655167, "3"], +[-37.7379669833, 175.2636401833, "2"], +[-37.81185865, 175.2988414167, "8"], +[-37.8115883667, 175.2988676833, "5"], +[-37.8121664833, 175.298828, "6A"], +[-37.8121374, 175.2986648, "6"], +[-37.8117455667, 175.29893545, "7"], +[-37.8113434833, 175.2987848333, "3A"], +[-37.8118036333, 175.29855805, "4"], +[-37.8115525167, 175.2986935667, "3"], +[-37.8116704167, 175.2981866667, "2"], +[-37.7262123167, 175.2623232833, "41"], +[-37.7270301833, 175.2578962, "5"], +[-37.72628665, 175.2617939, "35"], +[-37.72695755, 175.2581555833, "7"], +[-37.7249201667, 175.2633786667, "63"], +[-37.7237964667, 175.26338915, "82"], +[-37.7261559833, 175.2628000333, "45"], +[-37.7239685167, 175.2634634667, "80"], +[-37.7262615333, 175.2633804, "48"], +[-37.7231834167, 175.2632769833, "90"], +[-37.7264615833, 175.2625229, "40"], +[-37.7233052, 175.2624172667, "98"], +[-37.7264011833, 175.26299425, "44"], +[-37.7233216, 175.2621827333, "100"], +[-37.72351975, 175.263159, "86"], +[-37.7231810833, 175.26315205, "92"], +[-37.7247369833, 175.26332525, "65"], +[-37.7235638333, 175.2624633, "79"], +[-37.7259515, 175.2628736667, "47"], +[-37.7233796333, 175.2619348667, "102"], +[-37.7267036167, 175.2614459333, "32"], +[-37.7234036833, 175.2617317667, "104"], +[-37.7261693667, 175.26256115, "43"], +[-37.7236726, 175.2617531, "83"], +[-37.7243964333, 175.2632299333, "69"], +[-37.72364245, 175.2615539167, "85"], +[-37.72556765, 175.2632555333, "55"], +[-37.7235849833, 175.2613751167, "87"], +[-37.7250962833, 175.2634430167, "61"], +[-37.7270899, 175.25768125, "3"], +[-37.7254950833, 175.2635633833, "57"], +[-37.7265346833, 175.2598521333, "19"], +[-37.7267667833, 175.26125655, "30"], +[-37.72739905, 175.2578681333, "4"], +[-37.7243879167, 175.2635626167, "74"], +[-37.7265399333, 175.2622203, "38"], +[-37.7264311167, 175.2627718667, "42"], +[-37.7262843667, 175.2621076, "39"], +[-37.7260835333, 175.2630889667, "49"], +[-37.7260573833, 175.2618501667, "37"], +[-37.7252811167, 175.2634925333, "59"], +[-37.7259857667, 175.2637452667, "52"], +[-37.7263445667, 175.2632232667, "46"], +[-37.7260791667, 175.2639841167, "54"], +[-37.7245644, 175.2632604667, "67"], +[-37.7259968333, 175.2640842333, "56"], +[-37.7236527167, 175.26328195, "84"], +[-37.7258955, 175.2640826833, "58"], +[-37.7257668667, 175.2634943167, "53"], +[-37.7257434667, 175.2638738167, "60"], +[-37.7241722667, 175.2635203167, "78"], +[-37.7255022833, 175.2638951333, "62"], +[-37.7245735667, 175.2636274167, "72"], +[-37.7253072667, 175.26386215, "64"], +[-37.7251112833, 175.2638060167, "66"], +[-37.72492395, 175.2637414, "68"], +[-37.7247476833, 175.26368895, "70"], +[-37.7259431333, 175.2633467667, "51"], +[-37.7237375, 175.2629414167, "75"], +[-37.72361015, 175.2627062667, "77"], +[-37.7239100667, 175.2630933, "73"], +[-37.7233639667, 175.2628605, "94"], +[-37.7233239333, 175.2626386333, "96"], +[-37.7232717167, 175.2633215833, "88"], +[-37.7273329, 175.25810035, "6"], +[-37.7267465667, 175.2589815, "11"], +[-37.72703715, 175.2592026333, "12"], +[-37.7266908167, 175.2591916, "13"], +[-37.72698335, 175.2594103333, "14"], +[-37.7266386833, 175.2594168, "15"], +[-37.7268899, 175.2596266833, "16"], +[-37.7265982, 175.2596523167, "17"], +[-37.7268342, 175.25982925, "18"], +[-37.7267799333, 175.26006435, "20"], +[-37.7264787667, 175.2600696833, "21"], +[-37.72672595, 175.2602795167, "22"], +[-37.7262577667, 175.2601298, "23"], +[-37.7271350833, 175.257416, "1"], +[-37.72643295, 175.2602800833, "25"], +[-37.7274734667, 175.2576188667, "2"], +[-37.72726855, 175.2583425833, "8"], +[-37.7268629, 175.25842675, "9"], +[-37.8106427833, 175.2867501167, "7B"], +[-37.8107827, 175.2865911, "7"], +[-37.8105040333, 175.2866514667, "5B"], +[-37.8107869667, 175.2858978167, "8"], +[-37.8112829167, 175.2866695333, "18"], +[-37.810371, 175.2864452833, "3A"], +[-37.8109821833, 175.2868928833, "11"], +[-37.8112098167, 175.2871473833, "15"], +[-37.8110773, 175.28703255, "13"], +[-37.8109891333, 175.2873505, "15A"], +[-37.81127905, 175.2873355333, "17"], +[-37.8117489667, 175.2880718167, "23"], +[-37.8119773, 175.2884072, "27"], +[-37.8118625167, 175.2882178167, "25"], +[-37.8118867667, 175.2875731, "28"], +[-37.81204045, 175.2885962833, "29"], +[-37.8121006833, 175.2878889333, "36"], +[-37.8119804667, 175.2877030667, "34"], +[-37.8110065167, 175.2858080667, "10B"], +[-37.8109114833, 175.2861013, "10"], +[-37.8113875333, 175.28749775, "19"], +[-37.8113913833, 175.2868351333, "20"], +[-37.8104906, 175.2860787333, "1B"], +[-37.81037905, 175.2859063, "1"], +[-37.8115073333, 175.2870097, "24A"], +[-37.8118693167, 175.2866649667, "24B"], +[-37.8116515, 175.2868738333, "24"], +[-37.81159715, 175.2871566833, "26"], +[-37.8105104167, 175.2855062667, "2"], +[-37.8108780333, 175.2867487333, "9"], +[-37.81086895, 175.2855281, "6"], +[-37.8120393333, 175.2864042333, "1/22"], +[-37.8106149167, 175.2862978667, "3"], +[-37.8122155167, 175.2880790167, "40"], +[-37.8106988167, 175.2864089333, "5"], +[-37.8106170167, 175.28565425, "4"], +[-37.8119213, 175.2865089167, "22A"], +[-37.8091696167, 175.2821451667, "7D"], +[-37.8095181, 175.2823860333, "10A"], +[-37.8086946667, 175.2856116167, "35C"], +[-37.8091540167, 175.2825443667, "11"], +[-37.8091758333, 175.2831926, "15B"], +[-37.8095664833, 175.2822504333, "10B"], +[-37.8098140833, 175.2815918667, "4A"], +[-37.8098830167, 175.28280835, "12A"], +[-37.80874615, 175.2856253167, "35B"], +[-37.809139, 175.28462265, "36"], +[-37.8094168667, 175.2816815, "3A-3D"], +[-37.8093271, 175.2819170333, "5"], +[-37.8091900333, 175.2820779167, "7B"], +[-37.8090435667, 175.2848904, "38"], +[-37.8092655333, 175.2821057333, "7A"], +[-37.8091096167, 175.2838310833, "21"], +[-37.8092343833, 175.2821806, "7C"], +[-37.8094498667, 175.2832129167, "20"], +[-37.8085863667, 175.28558805, "35E"], +[-37.8098962333, 175.2813647667, "2B"], +[-37.8088146167, 175.28563425, "35A"], +[-37.8098702833, 175.28143715, "2A"], +[-37.8086432, 175.2855979167, "35D"], +[-37.80933485, 175.2841033, "30"], +[-37.8091649167, 175.28310835, "15A"], +[-37.8088594, 175.2845640333, "29"], +[-37.80879315, 175.28477505, "31"], +[-37.8093993, 175.2839185833, "28"], +[-37.80991285, 175.2813102667, "2C"], +[-37.8091958333, 175.2844461667, "34"], +[-37.8092703833, 175.2842609333, "32"], +[-37.8097829333, 175.2816739833, "4"], +[-37.8096876833, 175.2819268167, "6A"], +[-37.80963165, 175.28206995, "6B"], +[-37.8087779167, 175.2861540667, "37A"], +[-37.8098705333, 175.2831822, "12C"], +[-37.80986935, 175.2829971, "12B"], +[-37.8094382, 175.2826073, "14"], +[-37.80942475, 175.2828393167, "16"], +[-37.8091904833, 175.2833649167, "17"], +[-37.8094376667, 175.2830321833, "18"], +[-37.8094752667, 175.2833808667, "22"], +[-37.8090553833, 175.2839900167, "23"], +[-37.8094720833, 175.2835725, "24"], +[-37.8094576167, 175.2837284167, "26"], +[-37.8089243167, 175.2843787667, "27"], +[-37.80918325, 175.28235715, "9"], +[-37.8088353667, 175.2858916667, "37B"], +[-37.8089253833, 175.2840912167, "25B"], +[-37.80885975, 175.2840477667, "25C"], +[-37.8087983, 175.2840071333, "25D"], +[-37.8089952667, 175.2841334833, "25A"], +[-37.80938735, 175.281389, "1C"], +[-37.8093203667, 175.28136015, "1D"], +[-37.8095221, 175.2814317, "1A"], +[-37.80946505, 175.2814102333, "1B"], +[-37.8090974833, 175.2834767333, "17A-17G"], +[-37.8090723833, 175.2850949, "40"], +[-37.8093313667, 175.2850211667, "40A"], +[-37.8091321167, 175.2857496333, "46"], +[-37.8091403, 175.2854567167, "44"], +[-37.8091098333, 175.28528455, "42"], +[-37.8091068333, 175.28594685, "48"], +[-37.7298622333, 175.2627931333, "19"], +[-37.7301848167, 175.2634690167, "6"], +[-37.7304600333, 175.2634433667, "5"], +[-37.7301665, 175.2636930667, "4"], +[-37.73043535, 175.2636413667, "3"], +[-37.72990285, 175.2631574167, "10"], +[-37.73042075, 175.2630186833, "11"], +[-37.7297881667, 175.2630586, "12"], +[-37.7302786333, 175.2629188333, "13"], +[-37.73010875, 175.2628355167, "15"], +[-37.729959, 175.2627702833, "17"], +[-37.72981155, 175.2629212667, "14"], +[-37.73046445, 175.26322745, "7"], +[-37.7301825667, 175.2632442667, "8"], +[-37.7304601, 175.2631063333, "9"], +[-37.7514484833, 175.2757619667, "30A"], +[-37.7512052333, 175.27723795, "16A"], +[-37.7518408167, 175.2779217167, "1"], +[-37.7515751833, 175.2778327833, "13"], +[-37.7518053333, 175.2766042, "25"], +[-37.7514475667, 175.2759279833, "30"], +[-37.7513758, 175.2761241167, "28"], +[-37.7513584, 175.2763574167, "26"], +[-37.7519864833, 175.2762338167, "29"], +[-37.7518069667, 175.2764118, "27"], +[-37.7517969, 175.27615135, "31"], +[-37.7512061333, 175.2769973, "18"], +[-37.75138325, 175.2772290667, "16"], +[-37.7516645333, 175.27743765, "17"], +[-37.7516076, 175.2776454333, "15"], +[-37.7514504167, 175.2770115667, "20"], +[-37.7517147667, 175.2772168667, "19"], +[-37.75177355, 175.2770121333, "21"], +[-37.7517937167, 175.2767866, "23"], +[-37.7514781667, 175.2767572333, "22"], +[-37.7514801333, 175.27556895, "32"], +[-37.7514406833, 175.2765581167, "24"], +[-37.7516748667, 175.2759506833, "33"], +[-37.75160815, 175.2757656667, "34"], +[-37.7295187, 175.275922, "2"], +[-37.7297388833, 175.2758704333, "1"], +[-37.7294692333, 175.2757508, "4"], +[-37.7273460833, 175.28416535, "21"], +[-37.7277551, 175.2846448167, "18"], +[-37.7267986833, 175.2831122167, "5"], +[-37.7274067167, 175.2836099833, "4"], +[-37.7270211667, 175.2834621, "13"], +[-37.7274571167, 175.2843498667, "23"], +[-37.7265635333, 175.2832065333, "11"], +[-37.7276123333, 175.2845230667, "25"], +[-37.7274678167, 175.28327375, "2"], +[-37.72787275, 175.2845136333, "16"], +[-37.7271467, 175.2832769333, "3"], +[-37.7279643333, 175.2843358333, "14"], +[-37.72715235, 175.2838142833, "17"], +[-37.7280606333, 175.2841752333, "12"], +[-37.7272515833, 175.2839984, "19"], +[-37.7278263667, 175.2841461833, "10"], +[-37.7270714667, 175.2836424667, "15"], +[-37.7276870667, 175.2840203, "8"], +[-37.7264262833, 175.2829828667, "9"], +[-37.7275480333, 175.28388165, "6"], +[-37.7266130833, 175.2830188333, "7"], +[-37.7820791333, 175.2352707667, "16"], +[-37.7823190833, 175.2355059167, "16A"], +[-37.7826095167, 175.2355962333, "15"], +[-37.7849827167, 175.23166075, "63"], +[-37.7845609333, 175.2316385833, "62"], +[-37.7823298, 175.2360770667, "9"], +[-37.7843802833, 175.2319413833, "58"], +[-37.7819454833, 175.2360455167, "6"], +[-37.7819481333, 175.2356725, "8A"], +[-37.78224965, 175.2362272333, "7"], +[-37.7827216833, 175.2347675333, "24"], +[-37.78297055, 175.2349893667, "23"], +[-37.7830578167, 175.2348517667, "25"], +[-37.7828288833, 175.23460355, "26"], +[-37.7831243667, 175.2346626167, "27A"], +[-37.7832621833, 175.2349629333, "27B"], +[-37.7829109833, 175.2344511667, "28"], +[-37.783244, 175.2345221167, "29A"], +[-37.7835348833, 175.23456555, "29"], +[-37.7829982833, 175.2343074667, "30"], +[-37.7831037833, 175.234138, "32"], +[-37.7833356, 175.2343739833, "31"], +[-37.7834338333, 175.2342242167, "33"], +[-37.7831949667, 175.23399575, "34"], +[-37.7835371, 175.2340751333, "35"], +[-37.78365655, 175.2338804167, "37"], +[-37.783377, 175.2336743667, "38"], +[-37.7837529167, 175.2337192833, "39"], +[-37.7835003667, 175.2334515, "40"], +[-37.7832797333, 175.2338421667, "36"], +[-37.7835813, 175.2332891167, "42"], +[-37.7839383667, 175.2334237167, "43"], +[-37.7836907667, 175.2331079, "44"], +[-37.7840356, 175.2332737333, "45"], +[-37.7837835333, 175.2329446, "46"], +[-37.78413015, 175.2331146, "47"], +[-37.7836922, 175.2326352833, "48A"], +[-37.7838781667, 175.2327855, "48"], +[-37.78423115, 175.2329605167, "49"], +[-37.7839821333, 175.2326211333, "50"], +[-37.78431845, 175.2327890167, "51"], +[-37.78408775, 175.2324540333, "52A"], +[-37.7844097333, 175.2326342667, "53"], +[-37.7839078833, 175.2322661833, "52B"], +[-37.7841798167, 175.23229785, "54"], +[-37.78450685, 175.2324875167, "55"], +[-37.7842839667, 175.2321189, "56"], +[-37.7841637167, 175.2319642167, "56B"], +[-37.7844765833, 175.2317934667, "60"], +[-37.7847577333, 175.2313395, "66"], +[-37.7848889333, 175.2312450333, "68"], +[-37.7846472333, 175.23147185, "64"], +[-37.7851369833, 175.2315113167, "65"], +[-37.7850132167, 175.2311292667, "70"], +[-37.7826966, 175.2354418167, "17"], +[-37.7828928333, 175.2351366, "21"], +[-37.7818088833, 175.23629095, "4A"], +[-37.7817467333, 175.2358915, "4D"], +[-37.7816418333, 175.2360946333, "4B"], +[-37.7821155167, 175.23581195, "8"], +[-37.7821571833, 175.2363802333, "5"], +[-37.78250255, 175.2351194, "20"], +[-37.782393, 175.2352945833, "18"], +[-37.7827916333, 175.2352829167, "19"], +[-37.78261975, 175.2349403667, "22"], +[-37.7834090667, 175.2330604667, "42A"], +[-37.7817502667, 175.2364213, "2A"], +[-37.7820632333, 175.2365409333, "3"], +[-37.7826401333, 175.23597975, "11B"], +[-37.782434, 175.2358998833, "11A"], +[-37.7821901, 175.2356802, "10"], +[-37.7820641667, 175.2355310833, "10A"], +[-37.7825271667, 175.23574425, "13"], +[-37.7838498667, 175.2335745667, "41"], +[-37.7285890167, 175.2618764, "7"], +[-37.7288053667, 175.2624297667, "4"], +[-37.7284396667, 175.2617804333, "9"], +[-37.7281879667, 175.2616454, "11"], +[-37.7288920333, 175.2620797667, "3"], +[-37.7282322833, 175.2620837, "8"], +[-37.7287423667, 175.26199805, "5"], +[-37.7283731667, 175.2621537333, "6"], +[-37.7548257333, 175.2805576167, "10"], +[-37.7552774667, 175.2801389167, "5"], +[-37.7552945833, 175.2807018167, "4"], +[-37.755553, 175.28028025, "1"], +[-37.75498855, 175.2805829, "8"], +[-37.7549936333, 175.2800392167, "9"], +[-37.7554169833, 175.2802148, "3"], +[-37.7551438167, 175.2806374, "6"], +[-37.7551368667, 175.2800991333, "7"], +[-37.7554553, 175.2807462333, "2"], +[-37.75481855, 175.2803741833, "12"], +[-37.7548730333, 175.2799347, "11"], +[-37.75485195, 175.2802137333, "13"], +[-37.7463671667, 175.2527340667, "15"], +[-37.7460132, 175.25248345, "19"], +[-37.74664225, 175.2531204833, "1"], +[-37.7458478333, 175.25233715, "21"], +[-37.7460215167, 175.2529897833, "6"], +[-37.7467476833, 175.25257645, "5"], +[-37.7461108333, 175.2522592167, "19B"], +[-37.74619865, 175.2525913667, "17"], +[-37.7454881, 175.2528526833, "10A"], +[-37.74561425, 175.2526911333, "10"], +[-37.7465167333, 175.2525444833, "11"], +[-37.74543305, 175.25254685, "12"], +[-37.7456634333, 175.2522009167, "23"], +[-37.7455464, 175.2521115333, "25"], +[-37.7463409167, 175.2533492, "2"], +[-37.74666655, 175.2526901167, "3B"], +[-37.7465536333, 175.25293535, "3"], +[-37.7462735167, 175.2531541333, "4A"], +[-37.7460830167, 175.25317195, "4"], +[-37.7468016, 175.2522986833, "7"], +[-37.7457909, 175.2528109333, "8"], +[-37.74666735, 175.2522579, "9"], +[-37.7912306667, 175.3085583, "10A"], +[-37.79138495, 175.3085642833, "10B"], +[-37.7904776333, 175.3085813833, "1"], +[-37.7907312, 175.3086962667, "3"], +[-37.7914876667, 175.3081662333, "6M"], +[-37.79111515, 175.30905305, "7A"], +[-37.7909218667, 175.30829995, "6B"], +[-37.79095415, 175.3081855833, "6C"], +[-37.7909424167, 175.3084142167, "6A"], +[-37.7909941333, 175.3079888833, "6G"], +[-37.7908321833, 175.3079267, "6E"], +[-37.7909123167, 175.3079530333, "6F"], +[-37.79074855, 175.3078884167, "6D"], +[-37.7913255667, 175.3081111333, "6K"], +[-37.7914149333, 175.3081448833, "6L"], +[-37.7911712167, 175.3086991333, "12A"], +[-37.7913053333, 175.3086846333, "12B"], +[-37.7906050333, 175.30863355, "1A"], +[-37.7906744333, 175.3082644, "2"], +[-37.7907847, 175.3083102, "4"], +[-37.7908694667, 175.3088074167, "5"], +[-37.7909995333, 175.3089966833, "7"], +[-37.7911244833, 175.3084629833, "8"], +[-37.7912278167, 175.3088903, "9A"], +[-37.7910750833, 175.3088509667, "9"], +[-37.7911597833, 175.30805355, "6I"], +[-37.7910723833, 175.30801515, "6H"], +[-37.7912509167, 175.3080920833, "6J"], +[-37.7612550833, 175.29337385, "4"], +[-37.7613598167, 175.2934210667, "3"], +[-37.7612001167, 175.2932822833, "5"], +[-37.7612234333, 175.2932069667, "6"], +[-37.7615843167, 175.2933918667, "1"], +[-37.7614778333, 175.2934341167, "2"], +[-37.7613037667, 175.2932299333, "7"], +[-37.768913, 175.2571583833, "36"], +[-37.77013165, 175.25602325, "59"], +[-37.7681196833, 175.2568675167, "1/28-3/28"], +[-37.7699918167, 175.2555596667, "62"], +[-37.7723108167, 175.2536247, "87"], +[-37.7704954333, 175.2548284333, "70"], +[-37.7681028667, 175.25704135, "26"], +[-37.7726065167, 175.2527160667, "100A"], +[-37.7727204667, 175.2525243, "100"], +[-37.7722483667, 175.2531711, "94"], +[-37.7727037667, 175.2534841167, "93"], +[-37.7719957833, 175.25282275, "92"], +[-37.7724723333, 175.2533632167, "91"], +[-37.77093395, 175.25497925, "73"], +[-37.7708030167, 175.25456025, "74"], +[-37.7720922, 175.2533891333, "90"], +[-37.77265005, 175.2539554167, "89A"], +[-37.77106335, 175.25481665, "75"], +[-37.7728783, 175.253655, "95"], +[-37.772772, 175.2529335667, "101A"], +[-37.7684625167, 175.25852115, "29"], +[-37.768832, 175.2566698833, "44"], +[-37.7695527667, 175.2569196833, "41"], +[-37.7684169333, 175.2572219667, "30"], +[-37.76921805, 175.2574118833, "37"], +[-37.7678353167, 175.2598923833, "3A"], +[-37.7677615333, 175.2596198333, "3"], +[-37.7685712167, 175.2563508833, "46"], +[-37.7676756, 175.2591371167, "4"], +[-37.7683593, 175.2586667167, "27"], +[-37.7686253833, 175.2562820667, "48"], +[-37.7683792167, 175.2593034833, "9"], +[-37.7689707667, 175.2577757, "33"], +[-37.7687253167, 175.2574822333, "32"], +[-37.770942, 175.2544218833, "76"], +[-37.7713083833, 175.2549082333, "77A"], +[-37.7712291167, 175.2546570667, "77"], +[-37.7710918833, 175.25429395, "78"], +[-37.77143505, 175.2544925667, "79"], +[-37.7712276833, 175.2541452667, "80"], +[-37.7716272833, 175.2543322667, "81"], +[-37.7713852833, 175.25400825, "82"], +[-37.7682221333, 175.25767335, "18A"], +[-37.7680045333, 175.2574871333, "18"], +[-37.7685636, 175.259302, "19"], +[-37.7687148, 175.25882585, "29B"], +[-37.770649, 175.2546833, "72"], +[-37.7723609833, 175.2529947667, "96"], +[-37.7724007, 175.2526293833, "98A"], +[-37.7728773333, 175.25347225, "97"], +[-37.7724756333, 175.2528229333, "98"], +[-37.77282425, 175.2532994, "99B"], +[-37.7726632333, 175.2530803167, "99"], +[-37.7684054333, 175.2599263333, "11A"], +[-37.7681724167, 175.2598017667, "11B"], +[-37.76830315, 175.2580860833, "12"], +[-37.7685100833, 175.2594204667, "11"], +[-37.7680793833, 175.2577083167, "14A"], +[-37.76818665, 175.2578514667, "14"], +[-37.7687037833, 175.2596480333, "15"], +[-37.7677488667, 175.25727365, "16A"], +[-37.7678236333, 175.25717695, "16B"], +[-37.7679257167, 175.2575793167, "16"], +[-37.7687817, 175.2595968833, "17"], +[-37.7685924833, 175.2576758333, "22"], +[-37.767637, 175.2597647167, "1"], +[-37.7684771333, 175.25786515, "20"], +[-37.7685091167, 175.2592077, "21B"], +[-37.76823305, 175.2588585667, "21"], +[-37.76908575, 175.2576214167, "35"], +[-37.7686017833, 175.258326, "31"], +[-37.7688439333, 175.2573286, "34"], +[-37.7700986667, 175.2553483, "64"], +[-37.7691762667, 175.2567699, "52"], +[-37.7693043833, 175.2566276167, "54"], +[-37.7695163167, 175.2562932, "58"], +[-37.7696410833, 175.2561069, "60"], +[-37.7699433333, 175.2551940833, "64A"], +[-37.7694047167, 175.2564629833, "56"], +[-37.768916, 175.2565228, "50"], +[-37.7679077833, 175.2593862, "5"], +[-37.7700916167, 175.2550067, "66A"], +[-37.7703689167, 175.2550206167, "68"], +[-37.7702439, 175.2551857333, "66"], +[-37.7707668333, 175.2551029667, "71"], +[-37.7712622667, 175.2550317167, "75A"], +[-37.7677637, 175.2586567667, "6A"], +[-37.76781005, 175.2588878667, "6"], +[-37.7680312, 175.2592407167, "7A"], +[-37.7680993167, 175.2590716833, "7"], +[-37.7680496833, 175.2585418167, "8"], +[-37.7682647, 175.2594908667, "9A"], +[-37.7705864333, 175.2544566667, "72B"], +[-37.7728920167, 175.2527452, "101B"], +[-37.7690595833, 175.2569809167, "42"], +[-37.7709004167, 175.254043, "78A"], +[-37.7681564, 175.2583213167, "10"], +[-37.7725022333, 175.2539563333, "89"], +[-37.7688666333, 175.2590031, "25A"], +[-37.76886, 175.2593279, "23"], +[-37.7696375667, 175.2567735667, "45"], +[-37.7683314333, 175.25733285, "24"], +[-37.76866315, 175.2590654667, "25"], +[-37.7367856667, 175.2740317, "9"], +[-37.7370155667, 175.2740957, "8"], +[-37.7367009, 175.2738010333, "3"], +[-37.7370410833, 175.2739239, "6"], +[-37.7369605333, 175.2742365833, "10"], +[-37.7368909833, 175.2738901833, "4"], +[-37.7367320667, 175.27357765, "1"], +[-37.73685465, 175.2736162167, "2"], +[-37.7368764667, 175.2740600333, "11"], +[-37.7366887333, 175.2739030667, "5"], +[-37.73670185, 175.27397485, "7"], +[-37.7883708, 175.2825000333, "1/110-20/110"], +[-37.7883025833, 175.28228895, "130"], +[-37.7883260167, 175.2818780167, "1/137-4/137"], +[-37.7883560333, 175.2823256667, "122"], +[-37.78836885, 175.2819349, "137A"], +[-37.7898871667, 175.2838028167, "36"], +[-37.7888446333, 175.2823538333, "107"], +[-37.7887458667, 175.2822391833, "113"], +[-37.7887114667, 175.2822044333, "115"], +[-37.7892693833, 175.2827367667, "101"], +[-37.78992725, 175.2830719667, "57"], +[-37.7898567333, 175.2832341833, "55"], +[-37.7893424, 175.28279405, "99"], +[-37.7888080667, 175.2823169667, "109"], +[-37.7884001833, 175.2823690833, "120"], +[-37.7880343833, 175.2816349167, "149"], +[-37.7884100667, 175.2819608167, "137"], +[-37.78860665, 175.2820824167, "127"], +[-37.7903455667, 175.2837763333, "31"], +[-37.7900699, 175.2840335, "30"], +[-37.7904806, 175.2839129167, "7"], +[-37.7898072833, 175.2837334, "48"], +[-37.7888743667, 175.2823849167, "105"], +[-37.78978965, 175.2841345167, "32B"], +[-37.7899875833, 175.2839465, "32A"], +[-37.7893914833, 175.28333825, "52"], +[-37.7894875333, 175.2829583167, "85"], +[-37.7894188, 175.2828825167, "91"], +[-37.7886264667, 175.2825970333, "108"], +[-37.7889056833, 175.2824161333, "103"], +[-37.7886592, 175.2826299833, "106"], +[-37.7886593167, 175.2821455833, "117"], +[-37.7885007833, 175.2824646333, "116"], +[-37.7884430667, 175.2824112667, "118"], +[-37.7885466667, 175.2825059333, "114"], +[-37.7886932833, 175.28265825, "104"], +[-37.7887755167, 175.28227735, "111"], +[-37.7902274667, 175.2841671, "28"], +[-37.7904032167, 175.2843067, "4"], +[-37.7684359, 175.23757025, "12"], +[-37.7680313833, 175.2372962167, "18"], +[-37.76747965, 175.2369445833, "26"], +[-37.7685683167, 175.2376521667, "10"], +[-37.7681542167, 175.2369398667, "9"], +[-37.7676333333, 175.2365947833, "15"], +[-37.7682830833, 175.2374703167, "14"], +[-37.7681565333, 175.2373773167, "16"], +[-37.7677582, 175.2371128, "22"], +[-37.7676168667, 175.23703635, "24"], +[-37.7678907667, 175.2372095333, "20"], +[-37.76734105, 175.2368108167, "28"], +[-37.7689386667, 175.2380858833, "4"], +[-37.7686236333, 175.2372094833, "3"], +[-37.7688523, 175.2376933333, "6"], +[-37.76844125, 175.2371040833, "5"], +[-37.7682893667, 175.2370162167, "7"], +[-37.7687011, 175.2377023167, "8"], +[-37.7302267, 175.2862067667, "6"], +[-37.7298092833, 175.2863842, "12"], +[-37.7289122833, 175.2858612, "13"], +[-37.7274802, 175.2875502333, "41"], +[-37.7283969, 175.2863465167, "32"], +[-37.7276267833, 175.2876311667, "43"], +[-37.7294492833, 175.2867041333, "20"], +[-37.727762, 175.28773015, "45"], +[-37.7278998, 175.28674485, "38"], +[-37.7277928167, 175.28695795, "40"], +[-37.7280768167, 175.2865963167, "36"], +[-37.7277493333, 175.2871985, "42"], +[-37.7296008167, 175.28672535, "16"], +[-37.7287223333, 175.2858410667, "15"], +[-37.7296493667, 175.2864157667, "14"], +[-37.7285597667, 175.28582415, "17"], +[-37.7290577, 175.28626015, "26"], +[-37.7284317167, 175.2859074833, "19"], +[-37.7295916167, 175.28602665, "7"], +[-37.7282955833, 175.2860274167, "21"], +[-37.7277326667, 175.2874171833, "44"], +[-37.7281576167, 175.2861472833, "23"], +[-37.7292634833, 175.2863107667, "24"], +[-37.7280178167, 175.2862671, "25"], +[-37.72950835, 175.2869411833, "18"], +[-37.72787825, 175.2863753833, "27"], +[-37.72934375, 175.2859746333, "9"], +[-37.72773335, 175.2864766, "29"], +[-37.7299333833, 175.286227, "10"], +[-37.727626, 175.2866205333, "31"], +[-37.7285783333, 175.2862488333, "30"], +[-37.7275524333, 175.2868116833, "33"], +[-37.7294385167, 175.2863442333, "22"], +[-37.7274768, 175.2870142833, "35"], +[-37.72825165, 175.28646385, "34"], +[-37.727385, 175.2872013667, "37"], +[-37.7300693, 175.2859434167, "4"], +[-37.7273463333, 175.28747435, "39"], +[-37.7301561667, 175.2863404167, "8"], +[-37.7298012167, 175.28580775, "5"], +[-37.7299009167, 175.2855921, "3"], +[-37.7422829, 175.2843008333, "78"], +[-37.7436368333, 175.2852075667, "94"], +[-37.7416620667, 175.28273295, "64"], +[-37.7444658333, 175.2774624167, "1"], +[-37.7428367667, 175.2852874, "81"], +[-37.74294375, 175.2789238667, "20"], +[-37.7418842667, 175.2842271167, "69"], +[-37.7429586833, 175.2784167, "21"], +[-37.7421065833, 175.2846514, "73"], +[-37.7440929333, 175.2782460333, "8"], +[-37.7460478833, 175.28518845, "118"], +[-37.7442393667, 175.2775703333, "9"], +[-37.7427300167, 175.2847359333, "84"], +[-37.7430968833, 175.2788250833, "18"], +[-37.7450962667, 175.2857353667, "105"], +[-37.7413762, 175.2800197833, "40"], +[-37.74184335, 175.28315385, "68"], +[-37.7432513333, 175.2782128833, "17"], +[-37.7446363667, 175.2853130333, "104"], +[-37.7432495333, 175.2787435667, "16"], +[-37.7424319833, 175.2844441, "80"], +[-37.7426482333, 175.27859685, "25"], +[-37.7454868667, 175.28574555, "109"], +[-37.7428148, 175.2785100167, "23"], +[-37.7430800667, 175.28496565, "88"], +[-37.7431071167, 175.2783235333, "19"], +[-37.7414193167, 175.2820173833, "58"], +[-37.74376095, 175.27791225, "15"], +[-37.7428964333, 175.2848584833, "86"], +[-37.7426464167, 175.2791272, "24"], +[-37.7420528833, 175.2838390833, "74"], +[-37.7427904167, 175.27903425, "22"], +[-37.7434522, 175.28514825, "92"], +[-37.7445742333, 175.2779849, "2"], +[-37.7426495833, 175.2851482, "79"], +[-37.7442591167, 175.2768387, "5"], +[-37.7421458667, 175.284039, "76"], +[-37.7444082, 175.2780486833, "4"], +[-37.7452279833, 175.2853537, "110"], +[-37.7442219667, 175.2766356833, "3"], +[-37.7456505167, 175.2853422833, "114"], +[-37.7412338833, 175.28015255, "42"], +[-37.7443428, 175.2857208167, "97"], +[-37.7408337167, 175.28062875, "48"], +[-37.7408663333, 175.2815195, "47"], +[-37.7410930667, 175.2802923167, "44"], +[-37.7461586833, 175.2855510167, "117"], +[-37.7409386833, 175.2804026833, "46"], +[-37.7431956167, 175.2854987833, "85"], +[-37.7406045667, 175.2810584833, "41"], +[-37.7412386, 175.2815698667, "54"], +[-37.744337, 175.2770603167, "7"], +[-37.74600005, 175.2856389, "115"], +[-37.7442555167, 175.2781302, "6"], +[-37.7415863833, 175.28251235, "62"], +[-37.7417968333, 175.2839635667, "67"], +[-37.74128595, 175.28253695, "55"], +[-37.7417129667, 175.28373205, "65"], +[-37.7419852333, 175.2844485833, "71"], +[-37.7416053333, 175.2834252667, "63"], +[-37.745658, 175.2857353, "111"], +[-37.74300755, 175.2854021333, "83"], +[-37.7444507, 175.2853094833, "102"], +[-37.7435724333, 175.2856602667, "89"], +[-37.74191855, 175.2833957333, "70"], +[-37.7440659833, 175.2852883167, "98"], +[-37.74529055, 175.2857390833, "107"], +[-37.744252, 175.2852944333, "100"], +[-37.7450261, 175.28535795, "108"], +[-37.74413725, 175.28572155, "95"], +[-37.74071865, 175.2812537, "43"], +[-37.7439469, 175.2857312, "93"], +[-37.74543465, 175.2853606667, "112"], +[-37.7434251167, 175.2786684, "14"], +[-37.7409351167, 175.2810284167, "50"], +[-37.7439348333, 175.2783678, "10"], +[-37.74104825, 175.2818658333, "51"], +[-37.7440726667, 175.2776629333, "11"], +[-37.7445222833, 175.2857189, "99"], +[-37.7437856167, 175.2785070667, "12"], +[-37.7415171333, 175.2831989167, "61"], +[-37.7439098833, 175.27779025, "13"], +[-37.7419733167, 175.2836050333, "72"], +[-37.7424612833, 175.27922495, "26"], +[-37.7432599, 175.2850514167, "90"], +[-37.7425175, 175.2787193667, "27"], +[-37.7449063833, 175.2857264, "103"], +[-37.7423083, 175.2793180333, "28"], +[-37.7433757, 175.2855739167, "87"], +[-37.7418687, 175.2791076667, "29"], +[-37.7409577333, 175.28167, "49"], +[-37.7421464667, 175.2793993167, "30"], +[-37.7422466667, 175.2848209667, "75"], +[-37.7419794333, 175.2795092, "32"], +[-37.7405586, 175.2815887167, "45"], +[-37.7418353667, 175.2796140333, "34"], +[-37.7447163833, 175.2857227667, "101"], +[-37.7416910333, 175.279712, "36"], +[-37.7458456, 175.28529565, "116"], +[-37.7415105, 175.27987945, "38"], +[-37.74133155, 175.2817698, "56"], +[-37.7408544333, 175.28002985, "33"], +[-37.7405410167, 175.2808779167, "39"], +[-37.7407547667, 175.2801167, "35"], +[-37.7458361, 175.2857026167, "113"], +[-37.7406404333, 175.2802820667, "37"], +[-37.74133995, 175.2827834333, "57"], +[-37.7425895, 175.2845876333, "82"], +[-37.7414331333, 175.2829727167, "59"], +[-37.7414992833, 175.2822328333, "60"], +[-37.7706983167, 175.2744979, "20A"], +[-37.77090855, 175.2745989667, "24A"], +[-37.7714654167, 175.2746562, "30"], +[-37.77119415, 175.2748904333, "26"], +[-37.7716123, 175.2744886, "28"], +[-37.7702045, 175.2745449, "10"], +[-37.7699998667, 175.2744583667, "6"], +[-37.7703401333, 175.2750711333, "15"], +[-37.7704307833, 175.27461005, "14"], +[-37.7706578333, 175.2747766667, "20"], +[-37.7705077167, 175.2751377833, "17"], +[-37.7698892333, 175.2749068, "1A"], +[-37.7709328833, 175.2747899167, "24"], +[-37.7698294333, 175.2748874167, "1"], +[-37.76977755, 175.2744027667, "2"], +[-37.7786886167, 175.22414845, "6"], +[-37.77843585, 175.2237488833, "1"], +[-37.7786618667, 175.2238321833, "2"], +[-37.7783576333, 175.22410925, "5"], +[-37.7786287833, 175.2242719167, "8"], +[-37.7783945833, 175.22392425, "3"], +[-37.7783469333, 175.2243388, "7"], +[-37.7784926167, 175.2242941167, "9"], +[-37.7787053, 175.2239950833, "4"], +[-37.720553, 175.2473338667, "1"], +[-37.7207965667, 175.24720895, "3"], +[-37.7204395667, 175.2467809167, "2"], +[-37.72053385, 175.2470697, "4"], +[-37.8293053167, 175.2105357833, "31"], +[-37.8309444333, 175.21208735, "16"], +[-37.8306726667, 175.2115020833, "19"], +[-37.8300903, 175.2120791, "26"], +[-37.8289416167, 175.2113778333, "33"], +[-37.8274969167, 175.2113355167, "53"], +[-37.7692767, 175.2602531, "2"], +[-37.7693325, 175.2596663667, "4B"], +[-37.7701312167, 175.2582557667, "18A"], +[-37.7692987, 175.2600131667, "2A"], +[-37.7696436667, 175.2606894, "3A"], +[-37.7693799, 175.26039745, "3"], +[-37.76941435, 175.2598398333, "4A"], +[-37.7704615, 175.2582152833, "20"], +[-37.7697518333, 175.2607009333, "3B"], +[-37.7698713667, 175.2598281667, "9"], +[-37.7703259667, 175.25797335, "20A"], +[-37.77013265, 175.2587986167, "14"], +[-37.7700297667, 175.2589651833, "12"], +[-37.7705251833, 175.259219, "15A"], +[-37.77037355, 175.2590698167, "15"], +[-37.7700527167, 175.2584871667, "16A"], +[-37.7702310333, 175.25856935, "16"], +[-37.7704869333, 175.2588938667, "17"], +[-37.7703507833, 175.2583883333, "18"], +[-37.77061085, 175.2587048667, "19"], +[-37.7693292167, 175.2603663833, "1"], +[-37.7704944667, 175.2578378167, "22A"], +[-37.7705888167, 175.25802805, "22"], +[-37.7690912333, 175.2597721333, "2B"], +[-37.7696382167, 175.2604574167, "5A"], +[-37.7695811667, 175.2602521, "5"], +[-37.76932515, 175.2595416, "6A"], +[-37.7695316667, 175.2596790333, "6"], +[-37.7698557167, 175.2600755667, "7A"], +[-37.7697290333, 175.2600385, "7"], +[-37.7696419167, 175.2594855, "8"], +[-37.7700216, 175.2598750333, "9A"], +[-37.7697445833, 175.2593027167, "10"], +[-37.74281655, 175.2477457167, "12"], +[-37.7429556667, 175.24839565, "19"], +[-37.7421665667, 175.2482761, "9"], +[-37.7420083, 175.24815955, "7"], +[-37.7424945667, 175.2480076167, "8"], +[-37.7423101167, 175.24835835, "11"], +[-37.7431632, 175.2483051, "21"], +[-37.74282145, 175.2484558333, "17"], +[-37.7416358167, 175.2480752167, "3B"], +[-37.7418868167, 175.24804795, "5"], +[-37.7422900833, 175.2478898667, "6"], +[-37.7428661833, 175.2480457333, "14A"], +[-37.74246915, 175.2484229833, "13"], +[-37.74212845, 175.2477837833, "4"], +[-37.7426444167, 175.2480377, "10"], +[-37.741732, 175.2476809333, "1"], +[-37.74177655, 175.2478977333, "3"], +[-37.7429707, 175.24815735, "16"], +[-37.7426278167, 175.248448, "15"], +[-37.74302425, 175.2478795667, "14B"], +[-37.7732835333, 175.27660665, "6B"], +[-37.7734558667, 175.2757114167, "9"], +[-37.7721445, 175.2737874833, "30"], +[-37.77359945, 175.275941, "7"], +[-37.7726378667, 175.2742407833, "25"], +[-37.7723118167, 175.2733298833, "34"], +[-37.7722805833, 175.2745623167, "24"], +[-37.7721543, 175.2741522833, "26"], +[-37.77251665, 175.2737693833, "27"], +[-37.7731705833, 175.2759578667, "10"], +[-37.7733195, 175.2755171333, "11"], +[-37.77309235, 175.2751435, "15"], +[-37.7738684333, 175.27636995, "1"], +[-37.7737355667, 175.2761791833, "3"], +[-37.7732975667, 175.2761746333, "8"], +[-37.7734309167, 175.2763657167, "6A"], +[-37.77298235, 175.2749768333, "17"], +[-37.7728802, 175.2747865, "19"], +[-37.77253075, 175.2749632833, "20"], +[-37.77277225, 175.2746079167, "21"], +[-37.7730474, 175.27577955, "12"], +[-37.7732157333, 175.2753333333, "13"], +[-37.7729413833, 175.2756078833, "14"], +[-37.7728054833, 175.2753886667, "16"], +[-37.7726586667, 175.2751594667, "18"], +[-37.7736308167, 175.27670915, "2"], +[-37.7735325167, 175.2765328667, "4"], +[-37.7726630167, 175.27441995, "23"], +[-37.7724274, 175.2747730333, "22"], +[-37.7854411667, 175.2288441333, "10"], +[-37.7853047333, 175.2289128333, "11"], +[-37.7852676167, 175.2280738833, "1"], +[-37.7851938333, 175.2284758667, "5"], +[-37.7857600833, 175.2285571667, "6"], +[-37.7851170833, 175.228639, "7"], +[-37.78551495, 175.2286418833, "8"], +[-37.7851715167, 175.22881115, "9"], +[-37.7855355667, 175.22837955, "4"], +[-37.7852522833, 175.2282584833, "3"], +[-37.78554355, 175.2281752667, "2"], +[-37.7282617167, 175.2661795833, "9"], +[-37.7287187167, 175.2663355, "6"], +[-37.7282109833, 175.2662842333, "11"], +[-37.72884275, 175.26595415, "2"], +[-37.7283949667, 175.2668701333, "8A"], +[-37.7281704167, 175.2664078167, "14"], +[-37.7283919833, 175.26631145, "5"], +[-37.7281828667, 175.2665198667, "12"], +[-37.72878175, 175.2661461833, "4"], +[-37.72831995, 175.2665270333, "10"], +[-37.72860525, 175.2661058333, "3"], +[-37.7284768, 175.26659865, "8"], +[-37.7283516333, 175.2660177333, "7"], +[-37.7286794333, 175.2658902167, "1"], +[-37.7475028833, 175.2556805833, "1"], +[-37.7474203667, 175.2554956333, "3"], +[-37.7471272833, 175.25572025, "4"], +[-37.7463622833, 175.2542256167, "18"], +[-37.7464354833, 175.25437695, "16"], +[-37.7472967333, 175.2552792, "5"], +[-37.7472048, 175.25591995, "2"], +[-37.7471818333, 175.25505095, "7"], +[-37.7468601333, 175.2552499167, "8"], +[-37.7469816167, 175.2554908833, "6"], +[-37.7469238333, 175.2545910833, "11"], +[-37.7466166333, 175.25479275, "12"], +[-37.74680875, 175.25435075, "13"], +[-37.7465122, 175.2545644, "14"], +[-37.7467286667, 175.2541596167, "15"], +[-37.7470607833, 175.2548159833, "9"], +[-37.7467384333, 175.2550206167, "10"], +[-37.8177478833, 175.2941210333, "7"], +[-37.818097, 175.2942923, "4"], +[-37.8182378667, 175.2945909333, "6"], +[-37.81817535, 175.2946561167, "8"], +[-37.8176290833, 175.2942672833, "9"], +[-37.81793925, 175.29447375, "10"], +[-37.8175271167, 175.2943826, "11"], +[-37.81782905, 175.29460095, "12"], +[-37.8174572833, 175.2945367167, "13"], +[-37.8178420833, 175.2949663333, "14"], +[-37.8176495667, 175.294778, "16"], +[-37.8175078833, 175.2947176167, "18"], +[-37.8182127667, 175.2941302333, "2"], +[-37.8179901833, 175.2938504167, "3"], +[-37.8178708, 175.29398345, "5"], +[-37.7808368833, 175.2246467333, "48"], +[-37.7786745, 175.2278290333, "13"], +[-37.7811526333, 175.2246427, "59"], +[-37.7792544667, 175.2272645333, "29"], +[-37.7798435333, 175.2264100333, "39"], +[-37.7782429333, 175.22744395, "7"], +[-37.7813576333, 175.2245994667, "57"], +[-37.7787656, 175.2274085, "12"], +[-37.7806509, 175.2246549, "46"], +[-37.7789188833, 175.2272506167, "14"], +[-37.7807866, 175.2249076667, "55"], +[-37.7784879333, 175.2272140333, "10"], +[-37.7806701333, 175.2250955, "53"], +[-37.7785452333, 175.22770435, "11"], +[-37.78100085, 175.22464485, "50"], +[-37.7792533333, 175.22668475, "20"], +[-37.7799488833, 175.2262147333, "41"], +[-37.7788314167, 175.2279935333, "21"], +[-37.78008225, 175.2260274333, "43"], +[-37.7793935667, 175.22651985, "22"], +[-37.78030375, 175.2256584667, "47"], +[-37.7789385833, 175.2278113, "23"], +[-37.78020965, 175.2258541833, "45"], +[-37.7795050167, 175.2263668, "24"], +[-37.7804761833, 175.2246634167, "44"], +[-37.7774879833, 175.22718205, "2"], +[-37.7790532, 175.2276358667, "25"], +[-37.77915515, 175.2274470167, "27"], +[-37.7793666167, 175.2270889667, "31"], +[-37.7794887333, 175.22693005, "33"], +[-37.7795981667, 175.2267576667, "35"], +[-37.7797154, 175.2265854, "37"], +[-37.77765345, 175.2271361333, "4"], +[-37.7778655, 175.2270855667, "6"], +[-37.7783278833, 175.2270714, "8"], +[-37.7784188167, 175.22756675, "9"], +[-37.7786107333, 175.2283055833, "17"], +[-37.7790157833, 175.2270582, "16"], +[-37.7785284667, 175.2281531667, "15"], +[-37.7797670333, 175.2257405, "32"], +[-37.7801887667, 175.2252219, "38"], +[-37.7795929833, 175.2257135833, "30"], +[-37.7801020333, 175.22533265, "36"], +[-37.7797111333, 175.2259941833, "28"], +[-37.7799266667, 175.2256463167, "34"], +[-37.7805598333, 175.2252551833, "51"], +[-37.7796080333, 175.2261825333, "26"], +[-37.7804482667, 175.22547865, "49"], +[-37.7803165, 175.2250344167, "40"], +[-37.7802898167, 175.2246858, "42"], +[-37.7791306333, 175.2268729167, "18"], +[-37.7774005333, 175.2275207, "1"], +[-37.7787170333, 175.22815915, "19"], +[-37.82531145, 175.2914318333, "1"], +[-37.8252255167, 175.2919122667, "2"], +[-37.8249082167, 175.2917787667, "7"], +[-37.8247825167, 175.2927652333, "12"], +[-37.8246789167, 175.29218455, "13A"], +[-37.8250111667, 175.2921730833, "6"], +[-37.82487575, 175.2923202833, "8"], +[-37.8247920833, 175.2919170667, "9"], +[-37.8251165667, 175.2920258, "4"], +[-37.8251418, 175.2914946, "3"], +[-37.8248800333, 175.2926996667, "10"], +[-37.8245589167, 175.2920759167, "11A"], +[-37.82432925, 175.29222495, "11B"], +[-37.8248659667, 175.2929512333, "12A"], +[-37.82442795, 175.2923948, "13B"], +[-37.8246551, 175.2924678167, "14"], +[-37.8249980167, 175.291626, "5"], +[-37.8251031, 175.2925035167, "6A"], +[-37.7721787833, 175.2835411167, "994"], +[-37.7658889333, 175.2805741833, "1138"], +[-37.7806055333, 175.2872040333, "1/809-6/809"], +[-37.7658122, 175.2810072833, "1138A"], +[-37.77203255, 175.2834380167, "998"], +[-37.7659329, 175.2809049667, "1136A"], +[-37.7806793333, 175.2876865, "791"], +[-37.7661886167, 175.28028635, "1136B"], +[-37.7691225, 175.28218625, "1068A"], +[-37.7664619333, 175.2813099167, "1122A"], +[-37.77212995, 175.28306335, "985"], +[-37.7706741333, 175.2827026167, "1040"], +[-37.7762575333, 175.2853137333, "1/897-14/897"], +[-37.7739692833, 175.2845345, "936A"], +[-37.7794776833, 175.2872684833, "1/839-5/839"], +[-37.7802235333, 175.28742615, "827C"], +[-37.7724042, 175.2832253833, "973"], +[-37.7800907833, 175.2876420167, "827B"], +[-37.7723401333, 175.2836392667, "966"], +[-37.7805418833, 175.2879027667, "793"], +[-37.78073965, 175.28802465, "783"], +[-37.7804821667, 175.28786595, "797"], +[-37.7802672667, 175.2877536167, "825B"], +[-37.7803186, 175.2877823167, "825A"], +[-37.7803802833, 175.2873705167, "825H"], +[-37.7804317, 175.2874004333, "825G"], +[-37.7804804, 175.2874229833, "825F"], +[-37.7803898833, 175.2874957833, "825E"], +[-37.7803581, 175.28757245, "825D"], +[-37.7803264167, 175.2876568333, "825C"], +[-37.7809168, 175.2887220167, "1/778"], +[-37.7809990833, 175.28876045, "2/778"], +[-37.78107065, 175.28880305, "3/778"], +[-37.7668183333, 175.27991795, "1119"], +[-37.7737635, 175.28394065, "941A"], +[-37.7739646333, 175.2847904, "936"], +[-37.77746005, 175.2860304, "1/875"], +[-37.7765661833, 175.2855343667, "889"], +[-37.7765473333, 175.2852719167, "893A"], +[-37.7784382667, 175.2866393667, "855"], +[-37.76793485, 175.28068085, "1095"], +[-37.7799870167, 175.2871410167, "3/829"], +[-37.78054105, 175.2876212667, "795"], +[-37.7803487333, 175.2883404833, "800"], +[-37.7798858333, 175.2875303167, "829"], +[-37.7797717667, 175.2874596, "831"], +[-37.7785611167, 175.2867318667, "851"], +[-37.7705813833, 175.2821102833, "1043"], +[-37.7715186167, 175.2826827333, "1007"], +[-37.7714623167, 175.2826542333, "1009"], +[-37.7713963833, 175.28308245, "1010"], +[-37.7715206667, 175.28314065, "1004"], +[-37.7721915333, 175.2828844833, "985B"], +[-37.77051815, 175.2826043833, "1042"], +[-37.7667022167, 175.2811238167, "1118"], +[-37.77034485, 175.2826012, "1044"], +[-37.7704618167, 175.2817915333, "1047A"], +[-37.7764309833, 175.28543315, "893"], +[-37.76688275, 175.280644, "1116"], +[-37.76729575, 175.28033955, "1107"], +[-37.7674341333, 175.2804403333, "1105"], +[-37.7668225667, 175.2801449333, "1117"], +[-37.7760487333, 175.2852009167, "901"], +[-37.7671011333, 175.2797810833, "1115"], +[-37.7670770833, 175.2802402333, "1111"], +[-37.7670984167, 175.2807150167, "1110"], +[-37.7666979833, 175.2805920333, "1120"], +[-37.7666869333, 175.2800005333, "1121"], +[-37.7778155833, 175.2862680667, "1/869-10/869"], +[-37.7718567833, 175.2829300333, "999"], +[-37.7720443333, 175.28302395, "987"], +[-37.7721227833, 175.2835207333, "996"], +[-37.7776572167, 175.2861871333, "1/871-12/871"], +[-37.7775412, 175.2858299, "4/875"], +[-37.7654063167, 175.2792790833, "1157"], +[-37.7652804833, 175.2803101833, "1158B"], +[-37.7652285667, 175.2803005333, "1158"], +[-37.7652347833, 175.2799212167, "1160A"], +[-37.7652400333, 175.2796353833, "1160"], +[-37.7661063833, 175.28106985, "1132A"], +[-37.7660643833, 175.2812860667, "1132B"], +[-37.7661583667, 175.2808401667, "1132"], +[-37.7773076, 175.2859297833, "1/877"], +[-37.779364, 175.2870014, "841A"], +[-37.7796821833, 175.2871908833, "835B"], +[-37.7657236667, 175.2804395667, "1144A"], +[-37.7749923, 175.2850673833, "924"], +[-37.7799251, 175.287382, "2/829"], +[-37.7704007167, 175.28286605, "1042A"], +[-37.7672206, 175.2801119, "1111A"], +[-37.7775178667, 175.2858960167, "3/875"], +[-37.7741520167, 175.2848911167, "932A"], +[-37.77044745, 175.2820598167, "1047"], +[-37.7702798833, 175.2819699, "1049"], +[-37.7698709, 175.2823356167, "1052"], +[-37.7696804833, 175.2822264833, "1056"], +[-37.7696972667, 175.2816612333, "1057"], +[-37.7694937667, 175.2820837333, "1060"], +[-37.76954565, 175.2815661167, "1061"], +[-37.7693237, 175.2820404333, "1064"], +[-37.7693789333, 175.28150085, "1065"], +[-37.76917605, 175.2819646333, "1068"], +[-37.7692497167, 175.2814307, "1069"], +[-37.7690311333, 175.2818648667, "1070"], +[-37.7701566667, 175.28189525, "1051"], +[-37.7687536667, 175.2817068, "1074"], +[-37.7692702167, 175.2820069, "1066"], +[-37.7688849, 175.2817858167, "1072"], +[-37.7686110333, 175.2816276833, "1076"], +[-37.7687126333, 175.28112075, "1079"], +[-37.76834735, 175.2814765333, "1084"], +[-37.7684808833, 175.2815511333, "1080"], +[-37.7685706667, 175.281026, "1083"], +[-37.7684206167, 175.2809431333, "1085"], +[-37.7682023, 175.28140265, "1086"], +[-37.7682696, 175.28087225, "1087"], +[-37.7663783333, 175.2803619167, "1130A"], +[-37.7664225833, 175.2810754833, "1124"], +[-37.7665374833, 175.2804946, "1126B"], +[-37.7663263167, 175.2803531667, "1130"], +[-37.7663252667, 175.2797513333, "1135"], +[-37.7661424833, 175.2802602, "1136"], +[-37.766214, 175.2796574833, "1137"], +[-37.7660900667, 175.27959575, "1139"], +[-37.7659345333, 175.2800117333, "1140"], +[-37.7659699167, 175.2795192667, "1143"], +[-37.76568135, 175.2804436333, "1144B"], +[-37.76585085, 175.2802893833, "1140A"], +[-37.7658379667, 175.2794404833, "1145"], +[-37.7656026, 175.28088725, "1146B"], +[-37.7658056167, 175.2800281, "1150"], +[-37.76567425, 175.2799672333, "1152A"], +[-37.7657380167, 175.2799968167, "1152"], +[-37.7654681833, 175.2798625333, "1154B"], +[-37.7654020333, 175.2798355667, "1154"], +[-37.7655500833, 175.2793076833, "1155"], +[-37.7657031167, 175.2793867667, "1149"], +[-37.7655959667, 175.2799363833, "1152B"], +[-37.7738559, 175.2837670167, "941"], +[-37.7733303833, 175.2841754167, "950"], +[-37.7742714833, 175.2836313667, "935"], +[-37.7731785333, 175.2840993167, "952"], +[-37.7740637667, 175.2840689333, "937"], +[-37.7738384167, 175.2844636667, "938"], +[-37.7739247167, 175.2840005, "939"], +[-37.77366835, 175.2843653333, "942"], +[-37.7736243333, 175.2838635167, "943"], +[-37.7744598667, 175.2848297833, "926"], +[-37.7744252, 175.2842896667, "929"], +[-37.77431075, 175.28474005, "930"], +[-37.7744282333, 175.2839849167, "931"], +[-37.7741465333, 175.2846533167, "932"], +[-37.7742305833, 175.2841839, "933"], +[-37.77231445, 175.2831736667, "977"], +[-37.7719500833, 175.2829677333, "991"], +[-37.7732509833, 175.2836888667, "953"], +[-37.77300645, 175.2839951667, "956"], +[-37.7728301, 175.2839083, "958"], +[-37.7754178667, 175.2845413, "915"], +[-37.7752550833, 175.2848160667, "917"], +[-37.7750322167, 175.2846095, "921"], +[-37.77969705, 175.2874125, "833"], +[-37.7795988667, 175.2873422167, "835"], +[-37.7792060333, 175.2871019833, "843"], +[-37.7793467, 175.2871853, "841"], +[-37.7790862833, 175.2870289, "847"], +[-37.7661547, 175.27934665, "1139B"], +[-37.766525, 175.2810339, "1122"], +[-37.77734635, 175.2858498833, "2/877"], +[-37.7775662, 175.2857604667, "5/875"], +[-37.7801290833, 175.2876613667, "827A"], +[-37.7773714167, 175.2857934, "3/877"], +[-37.7773967, 175.2857355, "4/877"], +[-37.7774227333, 175.2856700167, "5/877"], +[-37.7741683333, 175.2838816333, "937A"], +[-37.7774905167, 175.2859704833, "2/875"], +[-37.76603265, 175.2792777, "1143A"], +[-37.76627575, 175.27937485, "1137B"], +[-37.77116915, 175.2829703, "1030"], +[-37.7655874167, 175.2789710167, "1155A"], +[-37.7664862333, 175.28048985, "1126A"], +[-37.7782871667, 175.2865359667, "859"], +[-37.77131, 175.28257475, "1021"], +[-37.7711269667, 175.2824405167, "1031"], +[-37.7806378, 175.2879709833, "789"], +[-37.7779741, 175.2863667833, "865"], +[-37.7781346, 175.2864585, "861"], +[-37.76564425, 175.2808888667, "1146A"], +[-37.77101355, 175.2824099167, "1037"], +[-37.7818758333, 175.3044736667, "1"], +[-37.7817355333, 175.3044658667, "3"], +[-37.78159885, 175.3044185833, "5"], +[-37.7814445, 175.3043025333, "7"], +[-37.78141835, 175.30446925, "9"], +[-37.7814201333, 175.3046453667, "10"], +[-37.7813632167, 175.3048025167, "8"], +[-37.7815189167, 175.3048133333, "6"], +[-37.7816711333, 175.3047842667, "4"], +[-37.7817794833, 175.3047668, "2"], +[-37.7431856667, 175.2870899167, "3"], +[-37.7433849167, 175.2872582667, "1"], +[-37.7427210833, 175.2859562833, "15"], +[-37.7429901833, 175.2864195333, "7"], +[-37.7430651833, 175.2867114167, "5"], +[-37.7430920667, 175.2862346, "9"], +[-37.74293885, 175.2861273667, "11"], +[-37.7428290167, 175.28596625, "13"], +[-37.7430030333, 175.2873392, "10"], +[-37.7431052167, 175.28746175, "8"], +[-37.7432285333, 175.2875445833, "6"], +[-37.7433641, 175.28760655, "4"], +[-37.7434975, 175.2876109833, "2"], +[-37.7426351333, 175.2860257833, "30"], +[-37.7426055, 175.2861503333, "28"], +[-37.7427343, 175.28645465, "24"], +[-37.7428569667, 175.2868906833, "20"], +[-37.7426362333, 175.28629605, "26"], +[-37.7427955167, 175.2866779833, "22"], +[-37.7429119167, 175.2870904, "18"], +[-37.74295815, 175.2872228, "16"], +[-37.7426381167, 175.2874164333, "14"], +[-37.7427329833, 175.28748555, "12"], +[-37.77531495, 175.2958282167, "4A"], +[-37.7752243667, 175.2957304, "4"], +[-37.7749589, 175.295193, "5"], +[-37.7745107333, 175.2950226833, "9"], +[-37.7747739167, 175.29516725, "7"], +[-37.7748214833, 175.2950356833, "7B"], +[-37.7746333167, 175.2951595833, "9A"], +[-37.7752776667, 175.29532045, "1"], +[-37.7751877, 175.2953080667, "3"], +[-37.7752001833, 175.2950389167, "3A"], +[-37.7734939833, 175.2820600333, "10B"], +[-37.7735256333, 175.2819341, "10C"], +[-37.7734752333, 175.2828366167, "4A"], +[-37.7736263833, 175.2836146333, "1"], +[-37.7737228833, 175.2833205667, "3"], +[-37.77379515, 175.2829125167, "7"], +[-37.7733635167, 175.28328065, "2B"], +[-37.7737985667, 175.2826803, "9"], +[-37.7737276667, 175.2823808667, "11A"], +[-37.7736663667, 175.2821020667, "11"], +[-37.7734046167, 175.2823013833, "8"], +[-37.7734647333, 175.2821912667, "10A"], +[-37.7733356333, 175.2828814167, "4"], +[-37.7733104333, 175.2829906667, "2A"], +[-37.7736679833, 175.2818239167, "12"], +[-37.7734045833, 175.2831153667, "2"], +[-37.7737564333, 175.2831274667, "5"], +[-37.7734351833, 175.2825455, "6"], +[-37.79064175, 175.3379448333, "177A"], +[-37.79219155, 175.3406436, "188B"], +[-37.7926130167, 175.3412566667, "188C"], +[-37.7907488333, 175.3392115167, "187B"], +[-37.7914989833, 175.3399448667, "188A"], +[-37.7912060333, 175.33932485, "187C"], +[-37.7872574667, 175.3449824167, "253"], +[-37.7891078167, 175.3448382667, "236"], +[-37.78830015, 175.3442479833, "242A"], +[-37.78711285, 175.3452277667, "255"], +[-37.7880495333, 175.3439405, "237"], +[-37.7872694167, 175.3457860167, "268"], +[-37.7886199167, 175.3438080833, "232"], +[-37.7953241667, 175.3351855167, "136"], +[-37.7909104833, 175.33878195, "187A"], +[-37.7884098667, 175.3434623833, "231"], +[-37.7924445167, 175.341634, "194B"], +[-37.7919250333, 175.3411177, "194A"], +[-37.7897585333, 175.3369391667, "177B"], +[-37.7898707, 175.3421626, "214"], +[-37.7886885167, 175.3430625167, "227"], +[-37.7883926, 175.3441489, "242"], +[-37.7891728, 175.3430651, "228"], +[-37.79008195, 175.3411654833, "205"], +[-37.7897754167, 175.34143485, "211"], +[-37.7899947833, 175.34202455, "212"], +[-37.7905127, 175.3412699333, "202"], +[-37.789464, 175.3419304833, "215"], +[-37.7935188167, 175.3370144667, "152"], +[-37.79270445, 175.3375663, "161"], +[-37.7927594333, 175.3381693, "166"], +[-37.792592, 175.3383829333, "170"], +[-37.7921790167, 175.33831895, "171"], +[-37.7922671333, 175.3388495, "176A"], +[-37.7910532833, 175.34046975, "194"], +[-37.7907426333, 175.3402751667, "195"], +[-37.79487795, 175.3356631, "134"], +[-37.7891575, 175.3423699167, "221"], +[-37.7917139167, 175.3387473333, "177"], +[-37.7803795, 175.23602565, "3"], +[-37.7804457333, 175.2356082833, "7A"], +[-37.7800833667, 175.2362109, "6"], +[-37.7802999, 175.2353616667, "7B"], +[-37.7804459833, 175.2362306333, "1"], +[-37.7801902, 175.2363580833, "4"], +[-37.7800031167, 175.2360777333, "8"], +[-37.78020445, 175.23555845, "9A"], +[-37.7802762, 175.2358434667, "9"], +[-37.78047505, 175.2356798, "5"], +[-37.7802058333, 175.2359726167, "10"], +[-37.7357290333, 175.2676636, "1"], +[-37.7353592833, 175.2665039833, "12"], +[-37.7354265, 175.2668693167, "6"], +[-37.7359049167, 175.2674752333, "3"], +[-37.7352717833, 175.2666701833, "10"], +[-37.7357465167, 175.2668471, "11"], +[-37.7356206833, 175.2666030833, "13"], +[-37.7355070333, 175.2664357667, "14"], +[-37.7356335833, 175.26715265, "4"], +[-37.7359495, 175.26738715, "5"], +[-37.7359560333, 175.2672407, "7"], +[-37.7353077833, 175.26678095, "8"], +[-37.7358655333, 175.2670765833, "9"], +[-37.7355818833, 175.2674625833, "2"], +[-37.8027681833, 175.2829747667, "9E"], +[-37.80323265, 175.2814072167, "1A"], +[-37.8028607167, 175.2829778333, "9D"], +[-37.8032395333, 175.28126365, "1"], +[-37.8030344, 175.2829883333, "9B"], +[-37.8030951667, 175.283247, "13"], +[-37.8031257, 175.2829897833, "9A"], +[-37.8026615833, 175.2832654333, "13A"], +[-37.8029432, 175.28298215, "9C"], +[-37.8031608667, 175.2825474333, "5"], +[-37.8028444333, 175.2827679333, "7A"], +[-37.8031424833, 175.28277255, "7"], +[-37.8103133, 175.2846282, "35"], +[-37.8082702333, 175.2860057, "81"], +[-37.8098525333, 175.28387755, "27A"], +[-37.8076288333, 175.2859002833, "89"], +[-37.80917925, 175.2868919667, "74A"], +[-37.8079406167, 175.2859133, "85"], +[-37.8111432667, 175.28255595, "3"], +[-37.8081153833, 175.2859553167, "83"], +[-37.81118225, 175.2824623167, "1"], +[-37.8102537, 175.2833829167, "19"], +[-37.8111088, 175.2826347667, "5"], +[-37.8102069, 175.2837634667, "25"], +[-37.8099812667, 175.2836406333, "25A"], +[-37.8106879333, 175.2827906333, "7A"], +[-37.81005535, 175.2844622333, "35A"], +[-37.8105820167, 175.2827537667, "7B"], +[-37.8109859667, 175.2828491667, "7"], +[-37.809976, 175.2854249667, "51"], +[-37.8077906167, 175.2858782833, "87"], +[-37.8096496, 175.28492195, "49C"], +[-37.8096867, 175.2865108333, "68"], +[-37.8102435, 175.2848265, "39"], +[-37.8097637167, 175.2849942833, "49B"], +[-37.8097761333, 175.28487365, "45"], +[-37.8098004, 175.2846328, "41"], +[-37.8095410167, 175.2848574833, "49D"], +[-37.8114109167, 175.2827998667, "4"], +[-37.8113583667, 175.2829400167, "6"], +[-37.8102206, 175.2842789, "33B"], +[-37.8098756667, 175.2844271167, "37"], +[-37.81061815, 175.28493355, "38"], +[-37.8108343667, 175.2828643667, "7C"], +[-37.8104779333, 175.2827719333, "9A"], +[-37.8106639333, 175.2828977167, "9"], +[-37.8099407333, 175.28511745, "49A"], +[-37.8115511, 175.2840246333, "18A"], +[-37.80953235, 175.2865909, "70"], +[-37.8093535, 175.2861130833, "71"], +[-37.8094816333, 175.2868267167, "72A"], +[-37.80936715, 175.28661775, "72"], +[-37.8091731167, 175.2861604333, "73"], +[-37.8092286667, 175.2866802333, "74"], +[-37.809061, 175.2866883, "76"], +[-37.8101727833, 175.2831015667, "15A"], +[-37.80994805, 175.2863062167, "62"], +[-37.8098153167, 175.28641895, "64"], +[-37.8095047, 175.2860241, "67"], +[-37.8096630833, 175.2859059167, "63"], +[-37.8114414333, 175.2833863167, "10A"], +[-37.8112925667, 175.2831511667, "10"], +[-37.8108765833, 175.2831684667, "11"], +[-37.8106578167, 175.2832555167, "13A"], +[-37.81079075, 175.2833867667, "13"], +[-37.8113540333, 175.2834586667, "14A"], +[-37.8111949167, 175.2834187833, "14"], +[-37.8104161167, 175.2832316, "15"], +[-37.8110878833, 175.2836533667, "16"], +[-37.8105601667, 175.2834533167, "17A"], +[-37.8107001167, 175.2836178167, "17"], +[-37.8113093833, 175.2838348167, "18B"], +[-37.81138835, 175.28389715, "18"], +[-37.8116536, 175.2842623833, "20B"], +[-37.8102858667, 175.2835504, "21"], +[-37.8113321667, 175.2840826, "22"], +[-37.8106149, 175.28381625, "23A"], +[-37.8104373667, 175.2837178, "23B"], +[-37.8105451833, 175.2839983333, "23C"], +[-37.8103844833, 175.28388275, "23D"], +[-37.8110008333, 175.28390125, "24"], +[-37.8109373667, 175.2840829833, "26"], +[-37.8100570667, 175.2839944333, "27"], +[-37.81084125, 175.2842933667, "28"], +[-37.8104664, 175.28423075, "29"], +[-37.8109298667, 175.2846322, "30A"], +[-37.8107711167, 175.2844919167, "30"], +[-37.8099877833, 175.2841211333, "31"], +[-37.8108514167, 175.2848144, "32A"], +[-37.8106996167, 175.2846730167, "32"], +[-37.8103913833, 175.2844355167, "33A"], +[-37.8109549, 175.2850097333, "34"], +[-37.81105405, 175.2851994667, "36"], +[-37.8097799333, 175.2857886667, "57"], +[-37.8101656, 175.2860162333, "54"], +[-37.8084609333, 175.286056, "79A"], +[-37.8084707, 175.2859902167, "79B"], +[-37.8084773167, 175.28592435, "79C"], +[-37.8084884667, 175.2857925167, "79D"], +[-37.80849605, 175.2857306333, "79E"], +[-37.8115652667, 175.2844273, "20"], +[-37.8114835333, 175.28423645, "20A"], +[-37.8086028167, 175.2860872167, "77"], +[-37.8100706, 175.2861723667, "60"], +[-37.80953345, 175.2868423333, "70A"], +[-37.8103009167, 175.2861026167, "54B"], +[-37.8105374833, 175.2851328833, "40"], +[-37.8100724667, 175.28525035, "49"], +[-37.8101725333, 175.2850173833, "43"], +[-37.8098964, 175.2856334167, "53"], +[-37.8236579167, 175.2968746833, "59"], +[-37.8227998167, 175.2901564167, "6A"], +[-37.8229287333, 175.2900048667, "6"], +[-37.8231534667, 175.29089555, "16"], +[-37.8227279, 175.2925877167, "27"], +[-37.82319065, 175.2929366333, "35"], +[-37.8235774, 175.29383985, "45"], +[-37.8239046, 175.2928489833, "46A"], +[-37.82274575, 175.29103335, "7"], +[-37.8237854, 175.29626375, "80"], +[-37.8230303667, 175.2921489833, "19"], +[-37.823307, 175.2912558833, "20"], +[-37.8230254, 175.2923774167, "21"], +[-37.8233567833, 175.2914436167, "22"], +[-37.8239132667, 175.2940233833, "60"], +[-37.8238823, 175.2942647833, "62"], +[-37.8228991333, 175.2902189, "8"], +[-37.82286375, 175.2911588167, "9"], +[-37.8229730833, 175.2913249833, "11"], +[-37.8227916, 175.2905537333, "10"], +[-37.8229174, 175.290634, "12"], +[-37.82303345, 175.2915170833, "13"], +[-37.8230633, 175.291737, "15"], +[-37.8230564333, 175.2919174, "17"], +[-37.8232505167, 175.2910679167, "18"], +[-37.8230557167, 175.2907569833, "14"], +[-37.82270825, 175.29241605, "23"], +[-37.8233792333, 175.29165585, "24"], +[-37.8225770167, 175.29248515, "25"], +[-37.8233685167, 175.2918500667, "26"], +[-37.82335125, 175.2920356167, "28"], +[-37.8228331167, 175.2925867833, "29"], +[-37.8233267833, 175.2922463, "30"], +[-37.82307175, 175.2926957167, "31"], +[-37.8236171167, 175.2921543167, "32"], +[-37.8230502833, 175.2928316833, "33"], +[-37.8236065667, 175.2923400833, "34"], +[-37.82365705, 175.2924940167, "36"], +[-37.8233670667, 175.2925690833, "38"], +[-37.8232848333, 175.2930925167, "37"], +[-37.8224368833, 175.2908849667, "3"], +[-37.8233895333, 175.29325105, "39"], +[-37.8235870833, 175.2929425833, "42"], +[-37.82349155, 175.2934212167, "41"], +[-37.8238264333, 175.29273645, "44"], +[-37.8235507667, 175.2936305, "43"], +[-37.8240696667, 175.29269475, "46B"], +[-37.8235918667, 175.2940452167, "47"], +[-37.8234770833, 175.2927623167, "40"], +[-37.8237203333, 175.2931488333, "48"], +[-37.8226194167, 175.2904465833, "4"], +[-37.8225986, 175.2909472833, "5"], +[-37.8238029167, 175.2933284333, "50"], +[-37.8240514333, 175.2932091167, "52A"], +[-37.8241788667, 175.2929876167, "52B"], +[-37.8241156667, 175.2933465833, "54"], +[-37.82386995, 175.2935805833, "56"], +[-37.8239034667, 175.2938048167, "58"], +[-37.8233035, 175.2954272333, "49"], +[-37.8232868167, 175.2956374833, "51"], +[-37.8233012167, 175.2958324667, "53"], +[-37.8236056333, 175.2967216833, "57"], +[-37.8238494667, 175.2964446, "82"], +[-37.8237274833, 175.2960830833, "78"], +[-37.8236514333, 175.2958862833, "76"], +[-37.8236183167, 175.2956986833, "74"], +[-37.8238953833, 175.2966093167, "84"], +[-37.8237695667, 175.2947671833, "68"], +[-37.8238359167, 175.2944982333, "64"], +[-37.8241312667, 175.2947440667, "66"], +[-37.7999409833, 175.2360625, "14"], +[-37.7999946667, 175.2362772167, "12"], +[-37.8003525333, 175.23634635, "3"], +[-37.8003706833, 175.2361276167, "5"], +[-37.8001296, 175.2370259167, "4"], +[-37.80044765, 175.2369107833, "2"], +[-37.800147, 175.2366417, "8"], +[-37.8002999667, 175.236774, "6"], +[-37.8002753833, 175.2358009167, "9"], +[-37.8003549333, 175.2359236333, "7"], +[-37.8001214833, 175.2357996, "11"], +[-37.7999252333, 175.23584085, "16"], +[-37.8000325833, 175.2364745333, "10"], +[-37.8005566833, 175.2365596833, "1"], +[-37.7999540333, 175.2355870167, "18"], +[-37.7972321333, 175.2514909333, "62D"], +[-37.79578925, 175.2528126667, "47"], +[-37.7945009833, 175.2530691667, "33A"], +[-37.7965519667, 175.25207405, "52"], +[-37.7944710167, 175.2533109333, "33C"], +[-37.7959204667, 175.2527646167, "49"], +[-37.7934005833, 175.2528910667, "17A"], +[-37.79637125, 175.2525656333, "55"], +[-37.7955556167, 175.2529962667, "43B"], +[-37.7931463, 175.2524290333, "6"], +[-37.7971040667, 175.2518545667, "60A"], +[-37.7932672, 175.2524420833, "8"], +[-37.79462625, 175.25317185, "35B"], +[-37.7967641167, 175.2516183333, "56A"], +[-37.7947394333, 175.2534071, "37D"], +[-37.7935906167, 175.2524694333, "12"], +[-37.7944627667, 175.2534040833, "33D"], +[-37.7976705833, 175.2521018167, "73A"], +[-37.7972058833, 175.2513926167, "62E"], +[-37.7953463667, 175.2525980167, "36"], +[-37.7970828, 175.2517564, "60B"], +[-37.7955439833, 175.2525143, "38"], +[-37.7955729333, 175.2530641333, "43C"], +[-37.7980403333, 175.25149075, "72"], +[-37.79474565, 175.2533365167, "37C"], +[-37.79752415, 175.2521585, "71"], +[-37.7947580333, 175.2531977667, "37B"], +[-37.7978855667, 175.2515505167, "70"], +[-37.7933726, 175.2532519, "17E"], +[-37.7978106333, 175.25122895, "70A"], +[-37.7977507833, 175.2525159333, "73"], +[-37.7983290833, 175.2514478, "74"], +[-37.7968985167, 175.2515118, "58B"], +[-37.7965058167, 175.2525276, "57A"], +[-37.7968504333, 175.2519544333, "56"], +[-37.7940958, 175.2530168833, "27"], +[-37.7942675167, 175.2525536333, "28A"], +[-37.7943009667, 175.2521745167, "28B"], +[-37.79432735, 175.2518347833, "28C"], +[-37.79630585, 175.2521608667, "48"], +[-37.7978249167, 175.2520659, "75"], +[-37.7980600333, 175.2524307167, "77B"], +[-37.7979782, 175.2519882, "77"], +[-37.7964138667, 175.2521142, "50A-50D"], +[-37.7958721333, 175.2532022667, "47A"], +[-37.7944413833, 175.25267225, "1/30"], +[-37.7944975, 175.2520726667, "5/30"], +[-37.7944895167, 175.2522282667, "4/30"], +[-37.7944739167, 175.2523624167, "3/30"], +[-37.7944551333, 175.2525158167, "2/30"], +[-37.79345215, 175.2524549167, "10A"], +[-37.7934748, 175.2521165667, "10C"], +[-37.7935177833, 175.2522883833, "10B"], +[-37.7954373667, 175.2525529833, "36A"], +[-37.79669575, 175.2520126333, "54"], +[-37.7949093, 175.2527244, "34C"], +[-37.7948827833, 175.25259805, "34D"], +[-37.7955393667, 175.2529207667, "43A"], +[-37.7959087833, 175.2523287667, "44"], +[-37.7960516833, 175.2527291167, "51"], +[-37.7967042167, 175.25289805, "59B"], +[-37.7966528, 175.2524991833, "59"], +[-37.7968861333, 175.2528466333, "61A"], +[-37.7967993667, 175.2524198333, "61"], +[-37.7969448, 175.2523648333, "63A"], +[-37.7970345667, 175.25279475, "63B"], +[-37.7970798333, 175.2523129667, "65A"], +[-37.7971569333, 175.2526849167, "65B"], +[-37.7975733333, 175.25166855, "66"], +[-37.7972358667, 175.2522649667, "67A"], +[-37.7973230667, 175.2526406167, "67B"], +[-37.7976418, 175.2512796333, "68B"], +[-37.7977219333, 175.25161855, "68"], +[-37.7973799333, 175.2522094333, "69"], +[-37.7981532167, 175.2519208667, "79A"], +[-37.7982243167, 175.2523437, "79B"], +[-37.7970582833, 175.251655, "60C"], +[-37.7970353667, 175.2515568, "60D"], +[-37.79729515, 175.2517822167, "62A"], +[-37.7954053, 175.2529476, "41"], +[-37.7957249, 175.2531604167, "45A"], +[-37.7947716667, 175.2531224833, "37A"], +[-37.7930858, 175.2528286667, "11"], +[-37.7937456667, 175.25206555, "16A"], +[-37.7937285667, 175.2525019667, "16"], +[-37.7938558833, 175.252507, "18"], +[-37.79352745, 175.2532028167, "19A"], +[-37.7935599667, 175.25291205, "19"], +[-37.7936929, 175.2529275, "21"], +[-37.7940006333, 175.252528, "22"], +[-37.79383005, 175.2529539667, "23"], +[-37.7941753333, 175.25215295, "24A"], +[-37.7941598667, 175.25185435, "24B"], +[-37.7941365333, 175.25253795, "24"], +[-37.7928044833, 175.2523905, "2"], +[-37.7946708667, 175.2526696667, "32"], +[-37.7948145, 175.2527017667, "34A"], +[-37.7948365833, 175.2525842333, "34B"], +[-37.792574, 175.25274785, "3"], +[-37.7930247333, 175.2524242167, "4"], +[-37.792857, 175.25278765, "7"], +[-37.7929609667, 175.2528020833, "9"], +[-37.7952812167, 175.2529770333, "39"], +[-37.79653355, 175.25265, "57B"], +[-37.7965906333, 175.252887, "57D"], +[-37.7965602167, 175.25275735, "57C"], +[-37.7957665833, 175.2519793333, "42D"], +[-37.79745325, 175.2517492, "64A"], +[-37.7974274667, 175.2516300333, "64B"], +[-37.7974067167, 175.25152545, "64C"], +[-37.7973835667, 175.2514265667, "64D"], +[-37.7973573167, 175.2513304833, "64E"], +[-37.7939689667, 175.2529867667, "25A"], +[-37.7939589167, 175.2530538667, "25B"], +[-37.7939369333, 175.2532427167, "25C"], +[-37.7939321, 175.2533018, "25D"], +[-37.7956629167, 175.2528724833, "45"], +[-37.7933848833, 175.2530725, "17C"], +[-37.793377, 175.25317525, "17D"], +[-37.7933939333, 175.2529857, "17B"], +[-37.79318235, 175.2532144167, "15E"], +[-37.7932128333, 175.2528567333, "15A"], +[-37.7931958667, 175.2530481667, "15C"], +[-37.7932034333, 175.25296225, "15B"], +[-37.7931898167, 175.2531331833, "15D"], +[-37.7926995167, 175.2527707167, "5A"], +[-37.7926821833, 175.2529482167, "5B"], +[-37.7926712, 175.2530761167, "5C"], +[-37.7942155667, 175.2531475, "29B"], +[-37.7942021333, 175.2532657, "29C"], +[-37.7941946833, 175.2533607167, "29D"], +[-37.7942274833, 175.2530323667, "29A"], +[-37.7943521167, 175.2531725333, "29G"], +[-37.7943408167, 175.25328735, "29F"], +[-37.79432725, 175.2533787, "29E"], +[-37.7943625, 175.2530591833, "29H"], +[-37.7946137667, 175.2533154, "35C"], +[-37.79461035, 175.2533884667, "35D"], +[-37.7946373167, 175.25309605, "35A"], +[-37.7944871167, 175.2531872833, "33B"], +[-37.7958242, 175.2522027, "42B"], +[-37.7970138833, 175.2514691167, "60E"], +[-37.7972574167, 175.2515955, "62C"], +[-37.7972778333, 175.2516946833, "62B"], +[-37.7969946833, 175.2518966667, "58A"], +[-37.7957079333, 175.2524422, "40"], +[-37.7958245167, 175.2523569667, "42A"], +[-37.7957917167, 175.2520832, "42C"], +[-37.7252219833, 175.2425869, "3"], +[-37.7264042333, 175.2419031833, "19"], +[-37.7249322167, 175.2423347833, "2"], +[-37.7262979667, 175.2421014833, "17"], +[-37.7249631, 175.2426398833, "1"], +[-37.7261639667, 175.2424070667, "15"], +[-37.7253088833, 175.2428792167, "5"], +[-37.7260415667, 175.2425989833, "13"], +[-37.7255151667, 175.2423135, "8"], +[-37.7259666, 175.2421784167, "14"], +[-37.72513395, 175.2422879167, "4"], +[-37.7261363833, 175.2418272167, "18"], +[-37.725464, 175.2426698, "7"], +[-37.7263154, 175.2414792333, "20"], +[-37.7257045333, 175.2420470667, "10"], +[-37.7261508333, 175.2412370333, "22"], +[-37.7257976833, 175.2423746667, "12"], +[-37.7259883833, 175.2411177167, "24"], +[-37.7258710667, 175.24095015, "26"], +[-37.72597655, 175.24078985, "28"], +[-37.72655295, 175.2412208833, "29"], +[-37.7266785667, 175.2413244, "27"], +[-37.726849, 175.2413942667, "25"], +[-37.7266762, 175.2415523833, "23"], +[-37.72651925, 175.2417315, "21"], +[-37.7262390333, 175.2409007167, "33"], +[-37.7264030167, 175.2410581167, "31"], +[-37.7261280833, 175.2406485667, "30"], +[-37.7704251667, 175.29315935, "1A"], +[-37.7691114, 175.2924484333, "23"], +[-37.77058705, 175.2932160833, "1"], +[-37.7689421, 175.2928004667, "22"], +[-37.7703561667, 175.2930205667, "3"], +[-37.7680275667, 175.2925296667, "35"], +[-37.77023665, 175.2934257667, "4"], +[-37.7690787167, 175.2928233167, "20"], +[-37.7688120833, 175.2927587833, "24"], +[-37.7689608667, 175.292412, "25"], +[-37.7695221667, 175.2930465167, "14"], +[-37.7692645333, 175.2925287, "21"], +[-37.7699517, 175.2932656333, "8"], +[-37.77022175, 175.2929490333, "5"], +[-37.7676756833, 175.29247535, "37"], +[-37.7679218833, 175.2927692167, "39"], +[-37.7700867, 175.2933531333, "6"], +[-37.7697173, 175.2927459167, "13"], +[-37.7686631167, 175.29271395, "26"], +[-37.7684823, 175.2923458333, "29C"], +[-37.7685356167, 175.29236005, "29B"], +[-37.76992925, 175.2928482333, "9"], +[-37.7698125667, 175.2931878, "10"], +[-37.7699140833, 175.2924686833, "11"], +[-37.76967425, 175.2931103333, "12"], +[-37.7693896, 175.2929722667, "16"], +[-37.7695875667, 175.2926676333, "15"], +[-37.7694420333, 175.2926043667, "17"], +[-37.7692410667, 175.2929007167, "18"], +[-37.7694723333, 175.2921959667, "19"], +[-37.7681828333, 175.2928164167, "30A"], +[-37.7682780167, 175.2926608333, "30B"], +[-37.7700789333, 175.292887, "7"], +[-37.7703878667, 175.2934931333, "2"], +[-37.76883265, 175.29243695, "27A"], +[-37.7687474667, 175.2924073167, "27B"], +[-37.7686097833, 175.2923850333, "29A"], +[-37.7686872333, 175.29240465, "27C"], +[-37.7685187667, 175.2926608, "28"], +[-37.8157842, 175.2994393833, "1"], +[-37.8159644833, 175.29956945, "3"], +[-37.8161543667, 175.2992581, "4"], +[-37.8249771333, 175.3391952667, "16A"], +[-37.82491755, 175.3395003833, "16D"], +[-37.8264829, 175.3383617167, "5"], +[-37.8253988667, 175.33872685, "13"], +[-37.82577545, 175.3379514833, "11"], +[-37.8256423, 175.3391986167, "14"], +[-37.8260289833, 175.3390543167, "12"], +[-37.8265106167, 175.3401001, "10"], +[-37.8251546333, 175.3402958667, "16E"], +[-37.82475865, 175.3385141167, "16B"], +[-37.8199192667, 175.2173622833, "5A"], +[-37.8200392833, 175.2174100167, "3"], +[-37.8196328, 175.2167642, "18"], +[-37.81752585, 175.2155467667, "22C"], +[-37.81766615, 175.2153714167, "22B"], +[-37.8179022667, 175.2151616833, "22A"], +[-37.8191980333, 175.21664245, "20A"], +[-37.81799325, 175.21565925, "20C"], +[-37.8187486333, 175.2165228667, "20B"], +[-37.81964875, 175.2172874167, "7"], +[-37.81925545, 175.2171617, "11"], +[-37.8190491667, 175.2170928333, "13"], +[-37.8194515667, 175.2172147167, "9"], +[-37.81981045, 175.21733245, "5B"], +[-37.81876595, 175.2172445167, "15B"], +[-37.8185999167, 175.2172441, "17A"], +[-37.81816745, 175.21725905, "21B"], +[-37.8182157167, 175.2164626333, "24"], +[-37.8180109667, 175.2173984167, "23A"], +[-37.8179918, 175.217159, "23B"], +[-37.8188473167, 175.2170330333, "15"], +[-37.8186481333, 175.2169800667, "17"], +[-37.8184132, 175.2169327333, "19"], +[-37.8202288333, 175.2174746333, "1"], +[-37.818193, 175.2169955667, "21"], +[-37.8178000833, 175.21733275, "25"], +[-37.8176839, 175.2168488333, "26"], +[-37.8196939833, 175.2836589167, "4A"], +[-37.8185228333, 175.2837068833, "13A"], +[-37.8188700167, 175.2831421333, "7A"], +[-37.8188494167, 175.2847478833, "16B"], +[-37.81815145, 175.2847901833, "23B"], +[-37.8181726833, 175.28397985, "17B"], +[-37.8182579333, 175.2848504667, "23A"], +[-37.8182295167, 175.2841105167, "17A"], +[-37.81841205, 175.2859176667, "26A"], +[-37.8187372, 175.2851801333, "18A"], +[-37.8177054, 175.2856069667, "31B"], +[-37.8186339, 175.2853421, "20A"], +[-37.81788985, 175.2854211167, "29B"], +[-37.8185791833, 175.2853795167, "22A"], +[-37.8182004667, 175.28440795, "21A"], +[-37.8184436333, 175.2856732667, "24A"], +[-37.8189360667, 175.2830774, "5A"], +[-37.8180128, 175.2853975, "29A"], +[-37.8187327167, 175.2833732833, "9A"], +[-37.8170761333, 175.2876473667, "40A"], +[-37.8184790667, 175.2843862167, "19A"], +[-37.8171229833, 175.2872805167, "38"], +[-37.8168467333, 175.2871021833, "41"], +[-37.8162440167, 175.2874429167, "47B"], +[-37.8187257833, 175.2846947167, "16"], +[-37.8194112667, 175.28300115, "1A"], +[-37.8192848, 175.2831352167, "3"], +[-37.8189341167, 175.2835675833, "9"], +[-37.81769615, 175.2859879833, "35"], +[-37.8189201833, 175.2842976, "12"], +[-37.8193981833, 175.28364285, "6"], +[-37.8191758833, 175.2832788167, "5"], +[-37.8179257167, 175.28630445, "34B"], +[-37.8178601833, 175.2864252667, "34A"], +[-37.8174961167, 175.28625325, "37A"], +[-37.8176040167, 175.2861244667, "37"], +[-37.81838805, 175.28602815, "28A"], +[-37.8182293167, 175.28624525, "30A"], +[-37.8185343833, 175.2851274667, "20"], +[-37.8184560667, 175.2853032167, "22"], +[-37.8188168167, 175.2837308, "11"], +[-37.8187031833, 175.2838571833, "13"], +[-37.8188554333, 175.2844504, "14"], +[-37.8186079833, 175.2840202167, "15"], +[-37.8183587167, 175.2839960333, "17"], +[-37.8186047667, 175.2849529333, "18"], +[-37.8185338333, 175.2842538333, "19"], +[-37.8183752, 175.2845474167, "21"], +[-37.8181858667, 175.2849660667, "25"], +[-37.8195235167, 175.28285985, "1"], +[-37.8196463333, 175.28333525, "2"], +[-37.8194978, 175.2834718167, "4"], +[-37.8183677167, 175.28546835, "24"], +[-37.8182592833, 175.2856307333, "26"], +[-37.8180961833, 175.2851545667, "27"], +[-37.8181714667, 175.2858204833, "28"], +[-37.8181188333, 175.2860103667, "30"], +[-37.8178986667, 175.2856348333, "31"], +[-37.81802795, 175.2862086167, "32"], +[-37.8177872833, 175.2858150333, "33"], +[-37.8173834, 175.2863911333, "39"], +[-37.81700595, 175.2874520833, "40"], +[-37.8170245667, 175.2877579, "42"], +[-37.81668075, 175.28720115, "43"], +[-37.8168457, 175.2876218333, "44"], +[-37.8162490833, 175.2870419333, "45"], +[-37.8163908, 175.2872671167, "47"], +[-37.8165469667, 175.2874179167, "49"], +[-37.8166555333, 175.2875747833, "50"], +[-37.8192967167, 175.2837827333, "8"], +[-37.8190616167, 175.28342265, "7"], +[-37.8177078167, 175.28656555, "36"], +[-37.7776995, 175.2232183667, "68"], +[-37.7739027667, 175.2264543333, "4"], +[-37.7777290667, 175.22495975, "52"], +[-37.7736832833, 175.2267423833, "1"], +[-37.7793876167, 175.2209870667, "99"], +[-37.7776858167, 175.2245548833, "56"], +[-37.7797406667, 175.2207979833, "103"], +[-37.77767585, 175.2243799833, "58"], +[-37.77990535, 175.2207323333, "105"], +[-37.7784736333, 175.2221205167, "80"], +[-37.7777384167, 175.2251824667, "50"], +[-37.7785325167, 175.2218720833, "82"], +[-37.7780789, 175.2226019167, "74"], +[-37.7786049333, 175.2225454667, "83"], +[-37.7790482167, 175.2205042167, "94"], +[-37.77877555, 175.2221031167, "87"], +[-37.7789347, 175.2209618, "90"], +[-37.77883645, 175.2218758333, "89"], +[-37.7792706333, 175.2206462, "96"], +[-37.7780605167, 175.2256446167, "47"], +[-37.7778262833, 175.2261931833, "41"], +[-37.7780589833, 175.2254904, "49"], +[-37.77953265, 175.2200974667, "102"], +[-37.7783669833, 175.2255023167, "51"], +[-37.77771785, 175.2247485833, "54"], +[-37.7780063667, 175.2257931167, "45"], +[-37.7777639667, 175.2230532, "70"], +[-37.7757195, 175.2275160667, "21"], +[-37.77911685, 175.2212834833, "95"], +[-37.7760025333, 175.2271657333, "22"], +[-37.7777111167, 175.2263709333, "39"], +[-37.7758996167, 175.2275354, "23"], +[-37.7788214833, 175.2211284667, "88"] +]; \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/realworld.50000.2.js b/lib/Leaflet.markercluster/example/realworld.50000.2.js new file mode 100644 index 000000000..f342f1dc1 --- /dev/null +++ b/lib/Leaflet.markercluster/example/realworld.50000.2.js @@ -0,0 +1,25000 @@ +var addressPoints2 = [ +[-37.7758314333, 175.2271489333, "20"], +[-37.78007645, 175.2206278667, "107"], +[-37.7761792333, 175.2271736333, "24"], +[-37.7776189167, 175.2258753, "44"], +[-37.7760834167, 175.2275457833, "25"], +[-37.7802256833, 175.22049075, "109"], +[-37.7763597, 175.2271748833, "26"], +[-37.77900305, 175.2214785, "93"], +[-37.7762677667, 175.2275494833, "27"], +[-37.7796043833, 175.220437, "100"], +[-37.7765240667, 175.2271687667, "28"], +[-37.7777572833, 175.2253957833, "48"], +[-37.77644445, 175.2275392167, "29"], +[-37.7789061333, 175.2216740833, "91"], +[-37.77671675, 175.22710215, "30"], +[-37.7779318833, 175.2260268, "43"], +[-37.77659265, 175.2275279833, "31"], +[-37.7776471833, 175.2236296833, "64"], +[-37.77688305, 175.2270006, "32"], +[-37.7783610333, 175.22232635, "78"], +[-37.77738635, 175.2269281333, "33"], +[-37.7776497, 175.2238384, "62"], +[-37.777065, 175.2268381667, "34"], +[-37.7794610333, 175.2205022667, "98"], +[-37.7774867667, 175.22675935, "35"], +[-37.7790641667, 175.2208276, "92"], +[-37.7771841833, 175.2266578833, "36"], +[-37.77924415, 175.2211172667, "97"], +[-37.7775946667, 175.22655685, "37"], +[-37.7773748833, 175.2263025167, "40"], +[-37.7772862333, 175.2264894667, "38"], +[-37.7777338833, 175.22563505, "46"], +[-37.78000785, 175.2202500833, "118"], +[-37.77857695, 175.2216581333, "84"], +[-37.7798106333, 175.2203748667, "116"], +[-37.7782292167, 175.2224791, "76"], +[-37.7745787, 175.2270233833, "10"], +[-37.7776615833, 175.2234215167, "66"], +[-37.7747352667, 175.22714105, "12"], +[-37.7746678167, 175.22751575, "11"], +[-37.7749259, 175.2272268833, "14"], +[-37.7748026333, 175.2275486833, "13"], +[-37.7751733333, 175.2275736667, "15"], +[-37.77535445, 175.2275406833, "17"], +[-37.77804835, 175.2249514, "53-61"], +[-37.7779948833, 175.2242584667, "65"], +[-37.7780099333, 175.2245109, "63"], +[-37.77795945, 175.2235661833, "71"], +[-37.7779658333, 175.2237929167, "69"], +[-37.7779793667, 175.2240291333, "67"], +[-37.7781156667, 175.223102, "75"], +[-37.7784949167, 175.2226773667, "81"], +[-37.7783597167, 175.2228301833, "79"], +[-37.7782065, 175.2229662333, "77"], +[-37.7745543333, 175.2274553667, "9"], +[-37.7744119833, 175.2273328, "7"], +[-37.7744598833, 175.22692145, "8"], +[-37.7737864667, 175.2268156167, "3"], +[-37.7755425833, 175.2275194167, "19"], +[-37.7739840833, 175.22651975, "6"], +[-37.77379435, 175.2263822833, "2"], +[-37.7432493667, 175.24887715, "136"], +[-37.7427604, 175.2494086667, "135"], +[-37.7430657167, 175.2489107167, "134"], +[-37.74308285, 175.2493944667, "139"], +[-37.7426901333, 175.2523734167, "90"], +[-37.7424211833, 175.2519408167, "94"], +[-37.7425557, 175.2521537333, "92"], +[-37.7422977333, 175.2517081, "96"], +[-37.7421741667, 175.2514821, "98"], +[-37.7429270333, 175.24939885, "137"], +[-37.7421235, 175.2506432, "121"], +[-37.7416274, 175.2501235833, "112"], +[-37.7431142667, 175.2523649167, "99"], +[-37.7416184167, 175.2499228167, "114"], +[-37.7416348833, 175.2497412333, "116"], +[-37.7420537833, 175.2490476667, "122"], +[-37.7419659333, 175.2499184333, "125"], +[-37.7421947167, 175.2495180667, "129"], +[-37.7426944, 175.2489277333, "130"], +[-37.74240375, 175.2494440333, "131"], +[-37.74287655, 175.2489210667, "132"], +[-37.7425895833, 175.2494344833, "133"], +[-37.7427614667, 175.2512111667, "109"], +[-37.7429559, 175.251103, "111"], +[-37.74191825, 175.2491498667, "120"], +[-37.7419836833, 175.2500933, "123"], +[-37.7417139333, 175.2504796, "108"], +[-37.7417941667, 175.25067045, "106"], +[-37.7416582333, 175.25030765, "110"], +[-37.7420509833, 175.2512359, "100"], +[-37.7428910167, 175.2519417167, "101"], +[-37.7419322167, 175.2510369333, "102"], +[-37.7426735, 175.2516051667, "105"], +[-37.7425548167, 175.25139955, "107"], +[-37.7427926833, 175.2517839, "103"], +[-37.7418608667, 175.2508658333, "104"], +[-37.74265885, 175.2510127333, "115"], +[-37.7424055333, 175.2511257, "117"], +[-37.7422761333, 175.25089285, "119"], +[-37.74322395, 175.2493846, "141"], +[-37.74342405, 175.2487420167, "138"], +[-37.7435382, 175.24863005, "140"], +[-37.7436029833, 175.2491313833, "143"], +[-37.7437606167, 175.2490111667, "145"], +[-37.7436356333, 175.2484474667, "142"], +[-37.7437018, 175.2482935833, "144"], +[-37.74289925, 175.2528581, "86"], +[-37.7432571667, 175.2531103167, "93"], +[-37.7428191167, 175.2525926, "88"], +[-37.74327425, 175.2527952, "95"], +[-37.7432311667, 175.25255165, "97"], +[-37.7421957, 175.2489815, "124"], +[-37.7428407333, 175.2509916833, "113"], +[-37.7420553167, 175.2496874667, "127"], +[-37.7423875, 175.24893295, "126"], +[-37.7425223, 175.2489330667, "128"], +[-37.74917705, 175.2556887, "16"], +[-37.7489993667, 175.25538185, "18"], +[-37.7449571667, 175.2543429167, "49"], +[-37.7468874833, 175.2560383667, "25"], +[-37.7492173, 175.2542360167, "1"], +[-37.7477486167, 175.2557126167, "17"], +[-37.7489838833, 175.2550335167, "10"], +[-37.7485969833, 175.2554245833, "22"], +[-37.7483147667, 175.2551176833, "11"], +[-37.7467324333, 175.2557027333, "27"], +[-37.74769745, 175.2562502333, "28"], +[-37.74584585, 175.2558902167, "37"], +[-37.7460099333, 175.2560270833, "35"], +[-37.7461713833, 175.25610985, "33"], +[-37.7463923333, 175.2560814667, "31"], +[-37.7471204333, 175.2565419167, "38"], +[-37.7457212667, 175.2556755833, "39"], +[-37.7453351667, 175.2558539833, "64"], +[-37.7452277333, 175.25561575, "66"], +[-37.74911915, 175.2553337833, "12"], +[-37.7487639333, 175.2552334167, "20"], +[-37.7493183, 175.2559481833, "14B"], +[-37.7470764667, 175.2568705833, "40"], +[-37.7456005167, 175.25628135, "60"], +[-37.7468557167, 175.2565355333, "48"], +[-37.7454823833, 175.2552154667, "43"], +[-37.7469484167, 175.2571809667, "44"], +[-37.7456075667, 175.2554346667, "41"], +[-37.7470691333, 175.2571443167, "42"], +[-37.7456842, 175.2565312833, "58"], +[-37.7469168333, 175.2568746333, "46"], +[-37.7461189667, 175.2565491333, "54"], +[-37.7459441, 175.2565176, "56"], +[-37.7481878667, 175.2557689333, "1/26-30/26"], +[-37.7466415333, 175.2560579333, "29"], +[-37.7477684, 175.2565088167, "30"], +[-37.7476809167, 175.2565869, "32"], +[-37.7475086167, 175.2564219333, "34"], +[-37.7473169333, 175.25652885, "36"], +[-37.7451026333, 175.2553958167, "68"], +[-37.74491535, 175.2542403167, "51"], +[-37.7448182667, 175.2540607833, "53"], +[-37.74473285, 175.2539222333, "55"], +[-37.7440946833, 175.2539519, "57"], +[-37.7440491667, 175.2538022, "59"], +[-37.7438962, 175.2536792333, "61"], +[-37.7448592833, 175.2549390333, "72"], +[-37.7447338333, 175.25472575, "74"], +[-37.7445901, 175.2544626833, "76A"], +[-37.7446354667, 175.254545, "76"], +[-37.7445171333, 175.2543115167, "78"], +[-37.7490911833, 175.2543752667, "3"], +[-37.7493599, 175.25466785, "4"], +[-37.7491615333, 175.25483185, "8"], +[-37.7484501, 175.25499745, "9"], +[-37.7485541167, 175.2546510667, "7A"], +[-37.7486404333, 175.2548225167, "7"], +[-37.7449824167, 175.25516935, "70"], +[-37.7454663833, 175.2560749833, "62"], +[-37.74940245, 175.2550279667, "6"], +[-37.7492721, 175.2556594333, "14A"], +[-37.793992, 175.31139195, "1A"], +[-37.79322825, 175.3158113167, "43"], +[-37.7938719333, 175.31296055, "22A"], +[-37.79396485, 175.3123652333, "14"], +[-37.7926825667, 175.3149019167, "33A"], +[-37.7939232667, 175.3115788333, "1"], +[-37.7928335833, 175.31391395, "29"], +[-37.7934468333, 175.31319205, "28"], +[-37.7934066333, 175.3140831167, "40A"], +[-37.7931795, 175.3140909, "40"], +[-37.7938266833, 175.3118157667, "3"], +[-37.79350185, 175.3156484167, "50"], +[-37.7931779333, 175.3155949167, "41"], +[-37.7930822833, 175.3151690167, "37"], +[-37.7931270333, 175.3153677167, "39"], +[-37.7934532333, 175.3153938833, "46"], +[-37.7932801167, 175.31603155, "45"], +[-37.7933748667, 175.3164468, "49"], +[-37.7938047333, 175.3154396833, "48"], +[-37.7933312833, 175.3162432833, "47"], +[-37.7943998, 175.31275625, "10"], +[-37.7942912, 175.3125587167, "12"], +[-37.7934534833, 175.3125179833, "13"], +[-37.7933746, 175.3126338333, "15"], +[-37.7938585, 175.31255225, "16"], +[-37.79331345, 175.3127321667, "17"], +[-37.7930018667, 175.3132557833, "19"], +[-37.79292005, 175.31342965, "21"], +[-37.7926124833, 175.3134701167, "23"], +[-37.7937592833, 175.3127568833, "22"], +[-37.79365325, 175.3128913167, "24"], +[-37.7935559, 175.3130428833, "26"], +[-37.7929975, 175.3148093167, "33"], +[-37.79281845, 175.3136684333, "27"], +[-37.79372545, 175.3135557167, "30"], +[-37.79364535, 175.3136996167, "32"], +[-37.79331, 175.3134026333, "34"], +[-37.7932184667, 175.3136369667, "36"], +[-37.79317985, 175.3138687667, "38"], +[-37.7942145833, 175.3117425333, "2"], +[-37.7932437833, 175.3144713167, "44"], +[-37.7932159167, 175.3143026167, "42"], +[-37.7941257833, 175.31194245, "4"], +[-37.79375175, 175.3120222667, "5"], +[-37.7940615167, 175.3121337167, "6"], +[-37.79365625, 175.3122058667, "7"], +[-37.79436515, 175.31240325, "8"], +[-37.7934716667, 175.31218885, "9A"], +[-37.7935526333, 175.3123726167, "9"], +[-37.7935570667, 175.3159044167, "52"], +[-37.7930404667, 175.3149915333, "35"], +[-37.7469338167, 175.2640672667, "18"], +[-37.7467510333, 175.2639744333, "20"], +[-37.7470127167, 175.26423525, "16"], +[-37.7466417, 175.2637242333, "24"], +[-37.7472689, 175.2639930833, "17"], +[-37.7467132, 175.2635341, "29"], +[-37.7467812333, 175.2633560167, "27"], +[-37.74688255, 175.2632823, "25"], +[-37.747361, 175.2641880333, "15"], +[-37.7470864333, 175.264403, "14"], +[-37.7465596333, 175.2639154167, "22"], +[-37.7478163667, 175.2650956667, "3"], +[-37.7475383, 175.26529515, "6"], +[-37.7474451833, 175.26510785, "8"], +[-37.7474509, 175.2643549, "11"], +[-37.7477198, 175.2649028667, "5"], +[-37.7476301333, 175.2647269167, "7"], +[-37.746968, 175.2634642167, "23"], +[-37.747099, 175.2636243, "21"], +[-37.7475434, 175.2645456833, "9"], +[-37.7476068333, 175.26545905, "4"], +[-37.7471816333, 175.2638104167, "19"], +[-37.8237682167, 175.2842159167, "9"], +[-37.82430425, 175.28125195, "44"], +[-37.8236822333, 175.28175005, "34A"], +[-37.8229752833, 175.2825120667, "1/24A"], +[-37.8231009333, 175.28238565, "2/24A"], +[-37.8229361667, 175.2827176167, "22A"], +[-37.8238784167, 175.2845894333, "5"], +[-37.8234796333, 175.2843446, "10"], +[-37.8237194833, 175.2840589, "11"], +[-37.8236734167, 175.2838651167, "13"], +[-37.8232887167, 175.2836686333, "14"], +[-37.8236249667, 175.2836662667, "15"], +[-37.8232469, 175.2834803333, "16"], +[-37.8235896, 175.2834645833, "17"], +[-37.8231676, 175.2832772333, "18"], +[-37.8235400667, 175.2832948833, "19"], +[-37.8231225333, 175.2830672167, "20"], +[-37.8234524833, 175.2830421333, "21"], +[-37.8230909333, 175.28288735, "22"], +[-37.8234905167, 175.2828446167, "23"], +[-37.8231817833, 175.2826655833, "24"], +[-37.8236313667, 175.2826903667, "25"], +[-37.8243496667, 175.2819661833, "31"], +[-37.8241946833, 175.28213685, "29"], +[-37.82376845, 175.2819939667, "34"], +[-37.8238787167, 175.2818853, "36"], +[-37.8239983333, 175.2817578833, "38"], +[-37.8232923, 175.2824632833, "26"], +[-37.8234080833, 175.2823586833, "28"], +[-37.8235189, 175.2822398167, "30"], +[-37.8236350833, 175.28211765, "32"], +[-37.82418845, 175.2816251333, "40"], +[-37.8241414833, 175.2813436333, "42"], +[-37.8244684333, 175.2814248667, "48"], +[-37.8245035667, 175.28108225, "50"], +[-37.82360555, 175.2849298667, "4"], +[-37.8239466167, 175.2847847, "3"], +[-37.82472375, 175.28131125, "52"], +[-37.8235199333, 175.2845534167, "8"], +[-37.8236675167, 175.2851044167, "2"], +[-37.8238359833, 175.28439655, "7"], +[-37.8235684167, 175.2847378333, "6"], +[-37.7632791, 175.2591131, "18"], +[-37.7634464667, 175.25880725, "14"], +[-37.7630466167, 175.2588828, "19"], +[-37.76368365, 175.2585780833, "10"], +[-37.7633251833, 175.25845275, "11"], +[-37.76387945, 175.25832775, "6"], +[-37.76272615, 175.2587194667, "17"], +[-37.7636291333, 175.2580646833, "5"], +[-37.7637858, 175.2584432833, "8"], +[-37.7635245833, 175.2581799667, "7"], +[-37.7635672667, 175.25870935, "12"], +[-37.7640971167, 175.2583581333, "4B"], +[-37.7636074667, 175.2589882, "14A"], +[-37.76411785, 175.2580167333, "2"], +[-37.76339435, 175.2589987, "16"], +[-37.7638484667, 175.2577944833, "1A"], +[-37.7639690167, 175.2576412333, "1"], +[-37.7631075833, 175.2590472, "20"], +[-37.7632738, 175.25819275, "9A"], +[-37.76342035, 175.2583052, "9"], +[-37.7637241333, 175.2579225667, "3"], +[-37.7639767, 175.2582024, "4A"], +[-37.7632246833, 175.25856, "13"], +[-37.76307555, 175.2586867833, "15"], +[-37.7629088667, 175.2587002, "15A"], +[-37.7988033, 175.2350151333, "9"], +[-37.7989599667, 175.2339727833, "6A"], +[-37.7992175667, 175.2337777667, "6B"], +[-37.7989525333, 175.2342258333, "10"], +[-37.79911995, 175.2343642833, "12"], +[-37.7989800333, 175.2349851833, "13"], +[-37.79923815, 175.2344743333, "14"], +[-37.7991196667, 175.2349662, "15"], +[-37.7992297833, 175.2346485, "16"], +[-37.7984226167, 175.2342814, "1"], +[-37.7992061833, 175.2348164167, "18"], +[-37.7985857, 175.2343807167, "3"], +[-37.7987259833, 175.2340581, "4"], +[-37.7987297667, 175.2345451, "5"], +[-37.79876185, 175.2348439667, "7"], +[-37.799127, 175.2339780333, "8"], +[-37.79886855, 175.2352336333, "11"], +[-37.7993461833, 175.2350610167, "17"], +[-37.77223265, 175.2981125, "4/42"], +[-37.77184085, 175.29767055, "41A"], +[-37.7721839, 175.2980741, "3/42"], +[-37.7716660833, 175.2975144833, "41D"], +[-37.7722774333, 175.2959161667, "3/21"], +[-37.77172205, 175.2975655833, "41C"], +[-37.7720293, 175.2987494167, "46A"], +[-37.7719128167, 175.2975111333, "39"], +[-37.77213415, 175.2980401667, "2/42"], +[-37.7717469333, 175.2990661667, "50A"], +[-37.77208905, 175.2980007333, "1/42"], +[-37.7723565333, 175.2958295, "4/21"], +[-37.7706061667, 175.2993986667, "63A"], +[-37.7707268, 175.3008059833, "86A"], +[-37.7719164, 175.2970628167, "35C"], +[-37.7724192333, 175.2961316833, "2/21"], +[-37.7708654333, 175.2995865333, "63"], +[-37.7725374, 175.29619085, "1/21"], +[-37.7719887333, 175.2971195, "35B"], +[-37.7716430167, 175.2994157833, "58A"], +[-37.7718333833, 175.296993, "35D"], +[-37.77178325, 175.2976195333, "41B"], +[-37.7717526333, 175.2969360333, "35E"], +[-37.7716006167, 175.29746305, "41E"], +[-37.7715362333, 175.2974103333, "41F"], +[-37.7705671, 175.2996645, "65A"], +[-37.7707821833, 175.2997595, "65"], +[-37.7711726667, 175.29975965, "66"], +[-37.7706082333, 175.2997970167, "67A"], +[-37.7706838167, 175.2999520833, "67"], +[-37.7705904667, 175.3001453667, "69"], +[-37.7724144833, 175.2978519833, "38A"], +[-37.7733095333, 175.2956257167, "10A"], +[-37.7734552167, 175.2957266, "10B"], +[-37.7735929, 175.2958304667, "10C"], +[-37.7727318, 175.2959014167, "17"], +[-37.77349565, 175.2960287667, "14C"], +[-37.7733572667, 175.2959333833, "14B"], +[-37.7729847167, 175.2954389333, "11A"], +[-37.7732158167, 175.2958310167, "14A"], +[-37.7728804, 175.2956328167, "13"], +[-37.7726954167, 175.2951929333, "11C"], +[-37.7737627833, 175.2962251, "14E"], +[-37.7728200167, 175.2957387667, "15"], +[-37.7736290333, 175.29613385, "14D"], +[-37.7730037833, 175.2962083667, "20"], +[-37.7731986667, 175.2949890667, "9"], +[-37.7725474833, 175.29602155, "19"], +[-37.77372605, 175.2959442167, "10D"], +[-37.7738435333, 175.29604095, "10E"], +[-37.7725271333, 175.2955204167, "15B"], +[-37.7728319333, 175.2952415167, "11B"], +[-37.7720260167, 175.2967636333, "29B"], +[-37.7725792833, 175.2969896833, "30"], +[-37.7721482167, 175.2970355667, "31A-31F"], +[-37.77177895, 175.2972345667, "37A"], +[-37.7719970833, 175.2973533667, "37"], +[-37.7722378833, 175.29765775, "38"], +[-37.7717502333, 175.2973097667, "39A"], +[-37.7721550833, 175.2978289, "40"], +[-37.7717588167, 175.29783505, "43A"], +[-37.7716101, 175.2976479, "43B"], +[-37.7716030833, 175.2981684667, "49"], +[-37.77197095, 175.2993131833, "52"], +[-37.7715229667, 175.29834415, "51"], +[-37.7716025833, 175.2988791, "50"], +[-37.7712711167, 175.2988523, "53"], +[-37.7708624333, 175.2989535833, "55A"], +[-37.7714931167, 175.2990922333, "54"], +[-37.7709153167, 175.2988411167, "55B"], +[-37.7715221167, 175.2995568833, "60A"], +[-37.7713066333, 175.2994592333, "60"], +[-37.7709292167, 175.2994486167, "61"], +[-37.7718742667, 175.2999264833, "64D"], +[-37.77173725, 175.29979045, "64E"], +[-37.7714269, 175.2997428333, "64B"], +[-37.7716739167, 175.2999038167, "64C"], +[-37.7712383167, 175.2996075333, "64"], +[-37.7707220333, 175.3006540667, "84"], +[-37.77057265, 175.3009188, "86"], +[-37.7724718, 175.2963922333, "23"], +[-37.7722472, 175.29625165, "23A"], +[-37.77217275, 175.29641315, "25A"], +[-37.7722316167, 175.2968714167, "29A"], +[-37.7723105, 175.2967219, "27"], +[-37.7720893, 175.29645745, "27A"], +[-37.7723987833, 175.2965592833, "25"], +[-37.7724056167, 175.2973196, "34A"], +[-37.7724895833, 175.2971583167, "32"], +[-37.77261635, 175.2974539667, "34C"], +[-37.7725018167, 175.2973616167, "34B"], +[-37.7726387167, 175.2975532333, "34D"], +[-37.77251485, 175.2975736, "36B"], +[-37.7720812833, 175.2971942333, "35A"], +[-37.77231575, 175.2974908667, "36A"], +[-37.7719091167, 175.2983653, "44"], +[-37.7715443167, 175.2978279167, "45A"], +[-37.7711034, 175.3004077833, "74A"], +[-37.7717731167, 175.2985728667, "46"], +[-37.7720406, 175.29898705, "48A"], +[-37.77168315, 175.2980113, "45"], +[-37.7716798333, 175.29873135, "48"], +[-37.77309205, 175.29519, "5"], +[-37.7736465333, 175.2952700667, "6B"], +[-37.7735203833, 175.29515195, "6A"], +[-37.77336885, 175.2954341167, "8B"], +[-37.77344195, 175.2952855, "8A"], +[-37.77186, 175.29953885, "56"], +[-37.7713776333, 175.2993083833, "58"], +[-37.7711454, 175.2990568167, "55"], +[-37.7707997833, 175.2991669667, "59A"], +[-37.7710234167, 175.2992879833, "59"], +[-37.7710897167, 175.2998966167, "70"], +[-37.7704459333, 175.3004175, "75"], +[-37.7702574167, 175.2999983, "71"], +[-37.7709447833, 175.3002078, "74"], +[-37.7701992833, 175.3001273333, "73"], +[-37.7710251833, 175.3000454333, "72"], +[-37.7702484667, 175.3008103167, "79"], +[-37.7712902833, 175.3006378833, "78"], +[-37.7703582167, 175.30060845, "77"], +[-37.77103715, 175.3005219333, "80A"], +[-37.7712121, 175.3008084167, "82"], +[-37.7708340333, 175.3004324, "80"], +[-37.7709748333, 175.3007512833, "84A"], +[-37.77303745, 175.29600805, "16A"], +[-37.7731063167, 175.2960612667, "16B"], +[-37.7735621, 175.2964179833, "18C"], +[-37.7736262167, 175.2964623333, "18D"], +[-37.7736950667, 175.2965168, "18E"], +[-37.7730431, 175.2970352667, "28E"], +[-37.7727639333, 175.2968383667, "28B"], +[-37.77286005, 175.29690465, "28C"], +[-37.7729520833, 175.29697745, "28D"], +[-37.7729964167, 175.2971250167, "28F"], +[-37.7726769, 175.2967790167, "28A"], +[-37.7726430167, 175.2953251667, "13D"], +[-37.7728159333, 175.2954727333, "13B"], +[-37.77273265, 175.2954015167, "13C"], +[-37.7725592333, 175.29526305, "13E"], +[-37.7729140333, 175.2955604, "13A"], +[-37.773245, 175.2961689667, "16D"], +[-37.7731751333, 175.2961169667, "16C"], +[-37.7733197833, 175.2962223667, "16E"], +[-37.77340025, 175.2962859167, "18A"], +[-37.7734836667, 175.2963507833, "18B"], +[-37.7906421833, 175.2567035167, "97A"], +[-37.7900203, 175.2585617333, "69B"], +[-37.7931399, 175.2512873667, "191B"], +[-37.7895275667, 175.2579411333, "62A"], +[-37.7934203167, 175.2504529667, "6/201"], +[-37.7896111, 175.2580836667, "62"], +[-37.793203, 175.2513316667, "191C"], +[-37.7895454833, 175.25823705, "60"], +[-37.79308515, 175.2512456833, "191A"], +[-37.7892917167, 175.25877875, "54"], +[-37.79332605, 175.2514240333, "191E"], +[-37.79031545, 175.2573262333, "87"], +[-37.7934542833, 175.2503902, "5/201"], +[-37.79052005, 175.2568798167, "95"], +[-37.7914619167, 175.25477235, "129A-129D"], +[-37.7907434, 175.2546243, "126A"], +[-37.7936073333, 175.25001475, "1/201"], +[-37.7906212667, 175.254553, "126"], +[-37.7933881667, 175.2505298167, "7/201"], +[-37.7911046, 175.2547654167, "128"], +[-37.7934901833, 175.25028775, "4/201"], +[-37.7920162833, 175.2535149167, "159"], +[-37.7935303333, 175.2501982, "3/201"], +[-37.792292, 175.2522006333, "180"], +[-37.79357175, 175.2501016, "2/201"], +[-37.7919915333, 175.2519277, "182"], +[-37.7932650167, 175.2513785167, "191D"], +[-37.7929284333, 175.2516007667, "185"], +[-37.7936793167, 175.2498210667, "207"], +[-37.7924374, 175.2517949, "186A"], +[-37.79214765, 175.2515881833, "186B"], +[-37.7929999333, 175.2514261167, "187"], +[-37.7925275, 175.2515970667, "188"], +[-37.7933917667, 175.2516058, "189"], +[-37.7939665, 175.2492475, "211"], +[-37.7940419167, 175.24907225, "213A"], +[-37.79412455, 175.2491440667, "213B"], +[-37.7942511333, 175.2492346, "213C"], +[-37.7941261667, 175.2488899333, "215"], +[-37.7907202833, 175.2564224333, "101"], +[-37.7892292333, 175.25892135, "52"], +[-37.78942295, 175.25926975, "53"], +[-37.7899296833, 175.25819635, "71"], +[-37.7899998833, 175.2580403, "73"], +[-37.7901697, 175.2568151333, "90"], +[-37.7904361833, 175.25704775, "91"], +[-37.7903636, 175.25720145, "89"], +[-37.7930558667, 175.2503769, "206"], +[-37.7909011667, 175.2561984833, "1/107-6/107"], +[-37.7908872667, 175.2564180667, "11/107-16/107"], +[-37.7928388833, 175.25179615, "181"], +[-37.7923439, 175.2519870333, "1/184"], +[-37.7920705, 175.2517944, "2/184"], +[-37.7932972667, 175.25187045, "183D"], +[-37.7934036, 175.25194585, "183C"], +[-37.7931966833, 175.2520568, "183A"], +[-37.7933118667, 175.2520212833, "183B"], +[-37.7901156, 175.2583327667, "71A"], +[-37.7913859333, 175.2549583333, "127A-127E"], +[-37.7922758333, 175.2529827, "167"], +[-37.7923857333, 175.2527172333, "169"], +[-37.793563, 175.2506603167, "10/201"], +[-37.7935395833, 175.2507417167, "9/201"], +[-37.79209555, 175.2526074333, "170"], +[-37.7920517667, 175.2526832, "168"], +[-37.7908347667, 175.2544336, "130"], +[-37.7912193, 175.25453595, "132"], +[-37.7912849833, 175.25437295, "134"], +[-37.7920364333, 175.2544628, "139A"], +[-37.7914312333, 175.2540224167, "140"], +[-37.7914930333, 175.2538889667, "144"], +[-37.7917477, 175.25331215, "160"], +[-37.79208555, 175.2533895833, "161"], +[-37.7917954333, 175.2531767833, "162"], +[-37.7921435167, 175.2532404167, "163"], +[-37.7918791833, 175.25301175, "164A"], +[-37.7916598167, 175.2528918667, "164"], +[-37.7922154667, 175.25311255, "165"], +[-37.791986, 175.25279135, "166"], +[-37.7926090167, 175.251405, "190"], +[-37.7931590667, 175.2510766, "193"], +[-37.7932218, 175.25091135, "195"], +[-37.7933045167, 175.2507498, "197"], +[-37.7939007, 175.2494206, "209"], +[-37.7909272333, 175.2559753167, "109"], +[-37.7907272833, 175.2555810167, "114"], +[-37.79082525, 175.2553332667, "118"], +[-37.7909170167, 175.2551511333, "120"], +[-37.7912265833, 175.2553338167, "121"], +[-37.7916399667, 175.2553861, "123A"], +[-37.7912976667, 175.2551416667, "123"], +[-37.7910128167, 175.2550134667, "124"], +[-37.7893737833, 175.2594452, "43"], +[-37.7893602833, 175.2586362667, "56"], +[-37.7894881167, 175.25912485, "61"], +[-37.7909098333, 175.2569080667, "97B"], +[-37.7907478667, 175.25703525, "97C"], +[-37.7896877833, 175.2579176667, "64"], +[-37.78975285, 175.2585655167, "67"], +[-37.7898481833, 175.258381, "69"], +[-37.7896060167, 175.2588813167, "63"], +[-37.7906783, 175.2571906, "97D"], +[-37.7915497167, 175.2545895167, "133A-133E"], +[-37.7916322333, 175.2544053167, "135A-135E"], +[-37.79169885, 175.2542187333, "139"], +[-37.7917651833, 175.2540745333, "143"], +[-37.7918143, 175.25394575, "145"], +[-37.79335165, 175.2506031833, "8/201"], +[-37.7937613333, 175.25014045, "17/201"], +[-37.7937283, 175.2502132, "16/201"], +[-37.7936878833, 175.2502839667, "15/201"], +[-37.7936613167, 175.2503472833, "14/201"], +[-37.79363485, 175.25042875, "13/201"], +[-37.7936085333, 175.2505020167, "12/201"], +[-37.7935833833, 175.2505761333, "11/201"], +[-37.7901458167, 175.2577133333, "77"], +[-37.7900755, 175.2578591667, "75"], +[-37.7887203167, 175.2610322167, "3"], +[-37.7890303667, 175.26045595, "21"], +[-37.7892377, 175.2607246, "7"], +[-37.7891094833, 175.2602231833, "37"], +[-37.7888206167, 175.2608965833, "5"], +[-37.7889736833, 175.2605755833, "9"], +[-37.7390946667, 175.2310017, "1/48-13/48"], +[-37.7396692333, 175.2294148, "23"], +[-37.73890445, 175.2304370167, "47"], +[-37.7390168, 175.2302937667, "43"], +[-37.7403363667, 175.2289677333, "10"], +[-37.7402756667, 175.2290429167, "12"], +[-37.7402319833, 175.22911335, "14"], +[-37.7406620333, 175.2285393167, "2"], +[-37.7406057333, 175.2286066667, "4"], +[-37.7405538667, 175.2286635, "6"], +[-37.74050825, 175.2287257833, "8"], +[-37.73911445, 175.2301546167, "41"], +[-37.7392980833, 175.2299078333, "35"], +[-37.7391744167, 175.2300738667, "39"], +[-37.7394287167, 175.2297605667, "31"], +[-37.73939105, 175.2298190167, "33"], +[-37.7392379333, 175.2299978, "37"], +[-37.7389608167, 175.2303562167, "45"], +[-37.73999865, 175.2295311167, "16-24"], +[-37.7397393167, 175.2299084, "26-30"], +[-37.7396047, 175.2300739833, "32"], +[-37.7395484, 175.2301548833, "34"], +[-37.73880905, 175.23074075, "1/49-43/49"], +[-37.7397184167, 175.2293245333, "21"], +[-37.7393121833, 175.2306732667, "42A"], +[-37.7394349333, 175.2308250167, "42B"], +[-37.7395411667, 175.2309526833, "42C"], +[-37.7394094833, 175.23032305, "36"], +[-37.7398555333, 175.2290265333, "13-19"], +[-37.7401973167, 175.2285132167, "1-11"], +[-37.7395270333, 175.22958925, "25-29"], +[-37.72186375, 175.2664085, "1"], +[-37.7213015167, 175.2671434833, "10"], +[-37.7217719, 175.26683725, "2"], +[-37.7216267667, 175.2668099, "4"], +[-37.7217124667, 175.2663527167, "3"], +[-37.7214595667, 175.2667648833, "6"], +[-37.7215657333, 175.2662942667, "5"], +[-37.7214157667, 175.26714725, "8"], +[-37.7205051333, 175.26706365, "20"], +[-37.7210973333, 175.2663973833, "9"], +[-37.7203761667, 175.2671214833, "22"], +[-37.7202804333, 175.2667294667, "25"], +[-37.7204698167, 175.2666428333, "19"], +[-37.7202190333, 175.2663360667, "23"], +[-37.7203197833, 175.2663062167, "21"], +[-37.7212263, 175.2667713167, "12"], +[-37.72104345, 175.2668330333, "14"], +[-37.7209010833, 175.2668876, "16"], +[-37.7208422, 175.2664849333, "11"], +[-37.7207131167, 175.2662238833, "13"], +[-37.7205701, 175.2662022333, "15"], +[-37.7206592833, 175.2665494667, "17"], +[-37.7197882833, 175.2669394833, "31"], +[-37.71965565, 175.2669844, "33"], +[-37.7605079167, 175.24424715, "7"], +[-37.7619227667, 175.2461522333, "18"], +[-37.7608909667, 175.2445872667, "11"], +[-37.7612138, 175.24565565, "17"], +[-37.7606609, 175.244402, "9"], +[-37.7615885167, 175.24443005, "16"], +[-37.75990895, 175.2436016167, "1"], +[-37.7612463333, 175.2449245333, "15"], +[-37.7598078833, 175.24411065, "3"], +[-37.76098965, 175.2446724833, "13"], +[-37.76028635, 175.2440158333, "5"], +[-37.7600282, 175.24325945, "2"], +[-37.7611487333, 175.2444046167, "14"], +[-37.7609111, 175.2441553, "12"], +[-37.7602148333, 175.24344085, "4"], +[-37.76040615, 175.2436397333, "6"], +[-37.7605736, 175.2438227833, "8"], +[-37.7607425833, 175.2440068, "10"], +[-37.7623101333, 175.2461686, "24"], +[-37.76218015, 175.2461569, "22"], +[-37.7620588167, 175.2461566833, "20"], +[-37.7616845167, 175.24564865, "23"], +[-37.7615098667, 175.2456504, "21"], +[-37.7613707167, 175.2456533167, "19"], +[-37.7792857667, 175.25575285, "10"], +[-37.7781805833, 175.25612475, "1"], +[-37.779897, 175.2553363333, "14"], +[-37.7789851, 175.25557255, "5"], +[-37.7791167667, 175.2558504333, "8"], +[-37.8198172, 175.2204960667, "5"], +[-37.819986, 175.22049635, "3"], +[-37.8197666, 175.2200825, "4"], +[-37.8193835833, 175.2191669667, "10"], +[-37.8193426333, 175.2198626667, "11"], +[-37.8192171667, 175.2191711, "12"], +[-37.8192621333, 175.2196364167, "13"], +[-37.8195289667, 175.2193943167, "8"], +[-37.81946, 175.2201499167, "9"], +[-37.8196037833, 175.219674, "6"], +[-37.8194712, 175.2204032, "7A"], +[-37.8196381, 175.2203709333, "7"], +[-37.8200137667, 175.2201364333, "2"], +[-37.8191725167, 175.2193772833, "14"], +[-37.75526915, 175.2710312167, "36A"], +[-37.7541379167, 175.2705596167, "48"], +[-37.7543555167, 175.27057825, "48A"], +[-37.7549400167, 175.2702458833, "29A"], +[-37.75528785, 175.2686424, "10"], +[-37.7546731333, 175.2684993, "9"], +[-37.7545349333, 175.2681916, "7"], +[-37.7543549167, 175.2679673667, "5"], +[-37.7549591333, 175.2681970833, "4"], +[-37.754624, 175.2702091833, "33"], +[-37.75479915, 175.2702288, "31"], +[-37.75483925, 175.2686570333, "11"], +[-37.7549876333, 175.2688076833, "13"], +[-37.7539518667, 175.2679268667, "1A"], +[-37.7544326167, 175.26768675, "1B"], +[-37.755407, 175.2687998833, "12"], +[-37.75550005, 175.2689775833, "14"], +[-37.75510565, 175.26899625, "15"], +[-37.7551830667, 175.26917355, "17"], +[-37.7555705833, 175.2691794, "18"], +[-37.7552779333, 175.2693457333, "19"], +[-37.7556549167, 175.26934495, "20"], +[-37.7553563333, 175.2695234833, "21"], +[-37.7557335333, 175.2695360333, "22"], +[-37.7554609167, 175.2697538, "23"], +[-37.7557933333, 175.2697588167, "24"], +[-37.7553798, 175.270203, "25"], +[-37.7551780667, 175.2702515667, "27"], +[-37.7559034833, 175.27072255, "28"], +[-37.7550249333, 175.26990965, "29"], +[-37.7556457667, 175.27031675, "30"], +[-37.75562225, 175.2707095, "32"], +[-37.75547665, 175.2705684167, "34"], +[-37.7553456167, 175.2706225833, "36"], +[-37.7551813667, 175.2706367167, "38"], +[-37.75501745, 175.2706352833, "40"], +[-37.7552325167, 175.2682547, "6B"], +[-37.75516995, 175.2684236, "6"], +[-37.7554707667, 175.2682407333, "8A"], +[-37.7552374833, 175.2679920167, "8"], +[-37.7542082833, 175.2702237167, "35A"], +[-37.7555411667, 175.2709515167, "32A"], +[-37.7545481333, 175.27059275, "46"], +[-37.7554557333, 175.2700603333, "25A"], +[-37.75469025, 175.2706012667, "44"], +[-37.7541353667, 175.2679893, "3"], +[-37.75479365, 175.2679115, "2"], +[-37.7543731833, 175.27022585, "35"], +[-37.73366995, 175.2788380333, "8"], +[-37.7336351667, 175.2790875833, "10"], +[-37.7337976833, 175.2786685167, "6"], +[-37.7336064, 175.2793323667, "12"], +[-37.7339944167, 175.2783101333, "2"], +[-37.73391365, 175.2784961167, "4"], +[-37.7335734333, 175.2795894167, "14"], +[-37.7334929167, 175.2788197667, "11"], +[-37.73339975, 175.2787496667, "9"], +[-37.7334087167, 175.2786035167, "7"], +[-37.7334552167, 175.2784536333, "5"], +[-37.7336498833, 175.2783831333, "3"], +[-37.7337707667, 175.2781637333, "1"], +[-37.7700248167, 175.25237115, "19"], +[-37.7697343, 175.2529169, "13"], +[-37.7698651167, 175.2527523167, "15"], +[-37.7695876667, 175.25309675, "11"], +[-37.7692684, 175.25301755, "10"], +[-37.7694251833, 175.2528130167, "12"], +[-37.76954395, 175.2526271333, "14"], +[-37.769935, 175.2525755, "17"], +[-37.7697305667, 175.2524415167, "16"], +[-37.7698810667, 175.2524187333, "18"], +[-37.7690932667, 175.2537356, "5"], +[-37.7688198333, 175.2541313, "1"], +[-37.76893215, 175.2539527333, "3"], +[-37.7687842167, 175.2536779667, "4"], +[-37.76895305, 175.2534487167, "6"], +[-37.76926125, 175.2535031833, "7"], +[-37.7690986167, 175.2532421, "8"], +[-37.7694130333, 175.2532914833, "9"], +[-37.7612216333, 175.2588059167, "5"], +[-37.7611417833, 175.2582390333, "2"], +[-37.7613246167, 175.2589233333, "7"], +[-37.7615423667, 175.2586368167, "8"], +[-37.7614167667, 175.2585170167, "6"], +[-37.7618670333, 175.2593987667, "22"], +[-37.7616546167, 175.2587924333, "10"], +[-37.7611267833, 175.2594049, "9"], +[-37.7614542667, 175.2590680833, "11"], +[-37.7616915833, 175.2593781667, "17A"], +[-37.76178635, 175.2589221333, "12"], +[-37.7612909167, 175.258441, "4"], +[-37.7614429833, 175.2596933833, "17"], +[-37.7613151667, 175.2596473667, "13"], +[-37.7620827833, 175.25877905, "14A"], +[-37.7618877167, 175.2590119333, "14"], +[-37.76157405, 175.2592457, "15"], +[-37.7621352667, 175.25896755, "16"], +[-37.7610572667, 175.2585932333, "1"], +[-37.76206065, 175.2591356667, "18"], +[-37.76175815, 175.2595948, "19"], +[-37.76187375, 175.2597099833, "21"], +[-37.7619420667, 175.25926755, "20"], +[-37.7610293833, 175.2590659, "5A"], +[-37.7611387, 175.2586704833, "3"], +[-37.8003214333, 175.25827055, "14"], +[-37.8004323, 175.25876595, "20"], +[-37.8000458667, 175.25718345, "2"], +[-37.8001514167, 175.2575869667, "6"], +[-37.8001961833, 175.2577655667, "8"], +[-37.80039445, 175.25859995, "18"], +[-37.8002813333, 175.2581012333, "12"], +[-37.80010925, 175.2573993, "4"], +[-37.8002436333, 175.2579320333, "10"], +[-37.8005214833, 175.2589092333, "22"], +[-37.8005847833, 175.2593632833, "26"], +[-37.8006300333, 175.2590502167, "24"], +[-37.8003566667, 175.25843965, "16"], +[-37.7757697333, 175.2286006333, "10"], +[-37.7756540167, 175.22813945, "23"], +[-37.77625545, 175.2290287833, "4"], +[-37.77635445, 175.2280798833, "13"], +[-37.7764369833, 175.2281937333, "11"], +[-37.7756232333, 175.2284834333, "12"], +[-37.7760636833, 175.2284901333, "17"], +[-37.775795, 175.228234, "21"], +[-37.7755079833, 175.22799965, "25"], +[-37.7752932333, 175.2280154, "27"], +[-37.77651425, 175.2288871333, "3"], +[-37.7764155, 175.2287639667, "5"], +[-37.7760208667, 175.2288487667, "6"], +[-37.7758915333, 175.2287620667, "8"], +[-37.77627485, 175.2286543833, "7"], +[-37.7764143333, 175.2283326833, "9"], +[-37.7754349333, 175.2283724167, "14"], +[-37.7762125833, 175.2281299333, "15"], +[-37.7752584, 175.2282692333, "16"], +[-37.7759355667, 175.2283509833, "19"], +[-37.76777335, 175.2354306667, "12"], +[-37.7676463833, 175.2346784667, "20"], +[-37.76804225, 175.2348365167, "21"], +[-37.76739805, 175.23407015, "26"], +[-37.7679251833, 175.2342476833, "27"], +[-37.7675322667, 175.23386905, "28"], +[-37.7680772, 175.2350165, "19"], +[-37.7682224833, 175.2358015167, "11"], +[-37.76781235, 175.2356435833, "10"], +[-37.7676810167, 175.2348828167, "18"], +[-37.7676237833, 175.2344989333, "22"], +[-37.7680646667, 175.2339526833, "29"], +[-37.7680072333, 175.2346484, "23"], +[-37.7679662833, 175.23444405, "25"], +[-37.76760565, 175.2343069333, "24"], +[-37.7681400333, 175.23541725, "15"], +[-37.7677097, 175.2350626833, "16"], +[-37.76774445, 175.235259, "14"], +[-37.7681814, 175.2356058, "13"], +[-37.76810525, 175.2352206333, "17"], +[-37.7683585833, 175.2338876, "33"], +[-37.767899, 175.2364831, "2"], +[-37.7682807167, 175.2365512333, "3"], +[-37.767918, 175.2362478667, "4"], +[-37.76830135, 175.2363816333, "5"], +[-37.7678776667, 175.2360196, "6"], +[-37.76826635, 175.2361770167, "7"], +[-37.7682152167, 175.23347335, "32"], +[-37.76822985, 175.2339234333, "31"], +[-37.7682508667, 175.2359895, "9"], +[-37.7678428333, 175.2358323667, "8"], +[-37.8004126667, 175.2536101833, "55"], +[-37.7999047833, 175.25426815, "49B"], +[-37.7962668167, 175.2548943, "14A"], +[-37.79968195, 175.2544208, "45A"], +[-37.7962311167, 175.2547476167, "14B"], +[-37.7966454333, 175.2553946667, "15"], +[-37.7993250667, 175.25374725, "46"], +[-37.7984042167, 175.2542408333, "38"], +[-37.79579385, 175.25528365, "6"], +[-37.7972478833, 175.2551623167, "17A"], +[-37.7995306, 175.2541274, "45"], +[-37.7986072167, 175.2546264667, "37"], +[-37.7990883, 175.2543661667, "39A"], +[-37.7982757833, 175.2538785833, "38B"], +[-37.7974853167, 175.25463185, "28"], +[-37.79742735, 175.25427625, "28A"], +[-37.7979202167, 175.2549042, "27"], +[-37.7980456333, 175.2548521333, "29"], +[-37.7984379833, 175.2547156833, "35"], +[-37.8001644, 175.2533068667, "54"], +[-37.7996800833, 175.2540285333, "47"], +[-37.7994236667, 175.25279525, "48B"], +[-37.7995907333, 175.2530704667, "48A"], +[-37.7992735, 175.25462135, "41A"], +[-37.7992211667, 175.2543048667, "41"], +[-37.7997212833, 175.2535470667, "48"], +[-37.7995690333, 175.2535614167, "46A"], +[-37.79819815, 175.2536982333, "38A"], +[-37.7961971, 175.2551349833, "12"], +[-37.79563875, 175.2553828333, "4"], +[-37.7959313333, 175.2552363167, "8"], +[-37.7987069833, 175.25412945, "42"], +[-37.79855185, 175.2541740333, "40"], +[-37.7986490833, 175.25379405, "42A"], +[-37.7980631167, 175.25440785, "36"], +[-37.7994406333, 175.2545268333, "43A"], +[-37.7982025333, 175.2543492667, "36A"], +[-37.7973923333, 175.2551515833, "19"], +[-37.79791995, 175.25446015, "34"], +[-37.79765725, 175.2550345833, "23"], +[-37.7955101833, 175.2558345667, "1A"], +[-37.7957456833, 175.25574595, "3"], +[-37.7956213167, 175.2557849667, "1"], +[-37.7975300333, 175.2551063, "21"], +[-37.7993665833, 175.25422345, "43"], +[-37.7988491167, 175.2540629333, "44"], +[-37.7990113167, 175.2539868167, "44A"], +[-37.7998451, 175.2539336, "49"], +[-37.7996836333, 175.2530355, "50A"], +[-37.7996343333, 175.2526956667, "50B"], +[-37.8001568667, 175.2540285333, "51A"], +[-37.7998808833, 175.2534591, "50"], +[-37.8000048667, 175.2538598, "51"], +[-37.79621545, 175.2555832833, "9"], +[-37.8000142, 175.253368, "52"], +[-37.8001757, 175.2537434167, "53"], +[-37.7960278167, 175.25497505, "10B"], +[-37.7959851, 175.2548678667, "10C"], +[-37.7976457167, 175.25455885, "30"], +[-37.7981837667, 175.2548000833, "31"], +[-37.7977718, 175.2545148167, "32"], +[-37.79831875, 175.254755, "33"], +[-37.7960696167, 175.2551744833, "10A"], +[-37.7963590667, 175.2555025167, "11"], +[-37.7963347, 175.2550763167, "14"], +[-37.7965131833, 175.2554484167, "13"], +[-37.7960756833, 175.2556163, "7"], +[-37.7972012833, 175.2547306167, "24"], +[-37.7970648, 175.2547895667, "22"], +[-37.7973475, 175.2546857667, "26"], +[-37.79730845, 175.2544279833, "26A"], +[-37.7977743333, 175.2549843, "25"], +[-37.7964766167, 175.25503075, "16"], +[-37.7732631, 175.231882, "4"], +[-37.77331525, 175.2308769833, "13"], +[-37.7736113167, 175.2312455833, "5"], +[-37.7731255167, 175.2316469833, "6A"], +[-37.7730257, 175.2318844833, "6B"], +[-37.7727863167, 175.2315061167, "10B"], +[-37.7722654833, 175.2316394833, "16A"], +[-37.7731221833, 175.2311045833, "15"], +[-37.7727867833, 175.2306183, "21"], +[-37.7724766333, 175.2318094167, "16"], +[-37.77300495, 175.2310009833, "17"], +[-37.7725763333, 175.2315875667, "18A"], +[-37.7723510333, 175.2314709667, "18B"], +[-37.7729055833, 175.2306818667, "19B"], +[-37.7736152833, 175.2317164833, "1"], +[-37.7726897667, 175.2312712833, "20A"], +[-37.77286905, 175.2308612167, "19A"], +[-37.7725838667, 175.23147845, "20B"], +[-37.77265765, 175.2305193833, "23"], +[-37.7724088167, 175.2304100167, "25A"], +[-37.7725367333, 175.2301433167, "25B"], +[-37.7721803833, 175.2309398667, "26"], +[-37.772311, 175.2303689667, "27A"], +[-37.7724752667, 175.2300119667, "27B"], +[-37.7723494333, 175.2308350167, "28A"], +[-37.7720940667, 175.2306386, "28"], +[-37.7724198333, 175.2306773167, "29"], +[-37.77253325, 175.2311515, "22"], +[-37.7724289, 175.231018, "24"], +[-37.7728923333, 175.23171545, "8"], +[-37.7732891333, 175.2312751, "9"], +[-37.7735275333, 175.23085145, "11"], +[-37.77338195, 175.2309499833, "11B"], +[-37.7728171167, 175.2318574167, "12B"], +[-37.7726345333, 175.23165455, "12A"], +[-37.7731775167, 175.2306137333, "13B"], +[-37.7725464667, 175.2318816167, "14A"], +[-37.7727181833, 175.2320474667, "14B"], +[-37.7729171167, 175.23144285, "10A"], +[-37.7735248, 175.2315977333, "3"], +[-37.7733362, 175.2320214667, "2"], +[-37.7733937333, 175.2314133667, "7"], +[-37.7560609333, 175.2594123833, "2A"], +[-37.7547764167, 175.26084035, "37"], +[-37.7547831, 175.260679, "35"], +[-37.7548669667, 175.2611474333, "36"], +[-37.7550020833, 175.2612624, "34"], +[-37.7561572667, 175.2600830667, "8A"], +[-37.7552315833, 175.2591504167, "5"], +[-37.7556858167, 175.2607940833, "22"], +[-37.7555504833, 175.2595328833, "7"], +[-37.7561264333, 175.2599349, "4"], +[-37.7560334167, 175.2600129167, "10A"], +[-37.75605165, 175.2602497667, "8B"], +[-37.75543055, 175.2597274667, "11A"], +[-37.7552411167, 175.25956315, "11"], +[-37.7557752333, 175.2598904833, "12"], +[-37.7558183667, 175.26044455, "16A"], +[-37.7558983667, 175.2605454667, "16B"], +[-37.7556388333, 175.2601742833, "16"], +[-37.75551265, 175.2603689833, "18"], +[-37.7557924167, 175.2591291667, "1A"], +[-37.75517305, 175.2587907333, "1B"], +[-37.7553932333, 175.2589546167, "1"], +[-37.7557351333, 175.2606845667, "20"], +[-37.7553926667, 175.2606066, "24"], +[-37.7555167333, 175.2609463667, "26B"], +[-37.7556604333, 175.2610352333, "26C"], +[-37.7553042667, 175.26082245, "26"], +[-37.7559486667, 175.2596232, "2"], +[-37.755294, 175.2611975167, "30A"], +[-37.7554761167, 175.2613681833, "30B"], +[-37.7551993167, 175.2610230833, "30"], +[-37.75513045, 175.2593408333, "9"], +[-37.7558701, 175.2600782833, "10B"], +[-37.7554981333, 175.2592044, "3A"], +[-37.7557019167, 175.2593238333, "3"], +[-37.8036565833, 175.3303071167, "17"], +[-37.80351945, 175.3302998167, "13"], +[-37.8034474333, 175.3309475833, "16"], +[-37.8034864167, 175.33100215, "18"], +[-37.8035565667, 175.3310357333, "20"], +[-37.80362165, 175.3310539167, "22"], +[-37.8036931833, 175.331067, "24"], +[-37.80376255, 175.33108265, "26"], +[-37.8038320167, 175.3310929833, "28"], +[-37.8039037, 175.3310980833, "30"], +[-37.8037367167, 175.3303125, "19"], +[-37.8035889333, 175.33031015, "15"], +[-37.80347485, 175.3303116167, "11"], +[-37.8043257167, 175.3300791167, "10"], +[-37.8043293167, 175.3304341333, "12"], +[-37.8041238667, 175.3300129, "14"], +[-37.8040113167, 175.32922875, "3"], +[-37.80424755, 175.3294369167, "4"], +[-37.8039565167, 175.3294854833, "5"], +[-37.8042091667, 175.3296261, "6"], +[-37.8039117833, 175.3297478833, "7"], +[-37.8041809833, 175.329793, "8"], +[-37.80395295, 175.3299359667, "9"], +[-37.73501965, 175.2699952333, "1"], +[-37.7351236833, 175.2701849167, "3"], +[-37.7354081333, 175.2710257167, "10"], +[-37.7352928667, 175.2711223167, "12"], +[-37.7353259833, 175.2700227167, "4"], +[-37.7352194, 175.2706209833, "5"], +[-37.7354791667, 175.2705264167, "6"], +[-37.7351741, 175.2707805167, "7"], +[-37.7354203333, 175.2707382167, "8"], +[-37.7351582, 175.27104395, "9"], +[-37.7347313333, 175.2309923833, "23A"], +[-37.7359253667, 175.23119675, "5A"], +[-37.7358294333, 175.23206635, "4"], +[-37.7345429, 175.2307587167, "27"], +[-37.7358901167, 175.23129475, "5"], +[-37.7356792333, 175.2320506667, "6"], +[-37.7358809333, 175.2311282833, "7A"], +[-37.7357991333, 175.2312565833, "7"], +[-37.7355212, 175.2320192833, "8"], +[-37.7350375667, 175.2313837667, "19"], +[-37.7359829333, 175.23208295, "2"], +[-37.7358941833, 175.2316772167, "3"], +[-37.7353700667, 175.23115235, "15"], +[-37.735192, 175.2314593, "17"], +[-37.7353814833, 175.2315345, "13"], +[-37.7356989333, 175.2316408167, "9"], +[-37.73416005, 175.2313149833, "22"], +[-37.734183, 175.2311698167, "24"], +[-37.7346147667, 175.2309522833, "25"], +[-37.7347508667, 175.2311428833, "23"], +[-37.7348461, 175.2317649167, "12"], +[-37.73470025, 175.2316646667, "14"], +[-37.7345585667, 175.23155945, "16"], +[-37.73439535, 175.2315339, "18"], +[-37.7342331333, 175.2314353333, "20"], +[-37.7348795667, 175.2312882667, "21"], +[-37.7354106167, 175.2321288667, "10B"], +[-37.7344093167, 175.2308500333, "29"], +[-37.7342867833, 175.2310193, "26"], +[-37.7360501833, 175.2317048833, "1"], +[-37.7353587167, 175.2319853667, "10"], +[-37.735532, 175.2316007667, "11"], +[-37.7240694833, 175.2411444333, "2"], +[-37.72404115, 175.2408277333, "5"], +[-37.7235885667, 175.240813, "10"], +[-37.7239301333, 175.2406925333, "7"], +[-37.7234155833, 175.2407547333, "12"], +[-37.72417295, 175.2409694333, "3"], +[-37.7237980333, 175.2409046, "6"], +[-37.7232682, 175.2405670667, "15"], +[-37.7243540833, 175.2410835167, "1"], +[-37.7231869167, 175.2406693667, "17"], +[-37.72391835, 175.2410401, "4"], +[-37.7234552667, 175.2405192, "13"], +[-37.7235818833, 175.2405730167, "11"], +[-37.72371835, 175.24060085, "9"], +[-37.7325432167, 175.2394848167, "4"], +[-37.7328723333, 175.2395035167, "1"], +[-37.7325805833, 175.2389009167, "7"], +[-37.7327661333, 175.2393271667, "3"], +[-37.73264285, 175.2396715333, "2"], +[-37.7326625167, 175.239127, "5"], +[-37.7324161833, 175.2392944667, "6"], +[-37.7320544833, 175.2387029667, "12"], +[-37.7322638333, 175.2391033833, "8"], +[-37.7321216, 175.2389312, "10"], +[-37.73242315, 175.2387495333, "11"], +[-37.7322843667, 175.2388221333, "14"], +[-37.7325889333, 175.2385954, "9"], +[-37.7764309833, 175.26153545, "12"], +[-37.7759483, 175.2611460333, "17"], +[-37.7754883667, 175.2618996667, "1/22-8/22"], +[-37.7766208333, 175.26161105, "10"], +[-37.7763487833, 175.2612069167, "13"], +[-37.7758289833, 175.2616451333, "18"], +[-37.7762299333, 175.2614931, "14"], +[-37.7761152667, 175.2611357833, "15"], +[-37.7760303833, 175.26143755, "16"], +[-37.7758134667, 175.26119935, "19"], +[-37.7756750667, 175.2617543833, "20"], +[-37.7757213667, 175.2612934167, "21"], +[-37.77568405, 175.2613866, "23"], +[-37.7772519167, 175.2617412833, "2"], +[-37.7770296833, 175.2616849167, "4"], +[-37.7768838667, 175.2616935833, "6"], +[-37.7767542333, 175.2616879167, "8"], +[-37.7417868333, 175.2604086, "1"], +[-37.7424308667, 175.2610416833, "12"], +[-37.7422988833, 175.26122585, "11"], +[-37.7424259333, 175.2607589, "10"], +[-37.7419168833, 175.2606477, "3"], +[-37.74213355, 175.2612138167, "9"], +[-37.7418573833, 175.2600542, "2"], +[-37.7420069667, 175.2600928833, "4"], +[-37.7420515, 175.2610428167, "7"], +[-37.7422484333, 175.2605649333, "8"], +[-37.7421199167, 175.26031855, "6"], +[-37.7419812, 175.2608252, "5"], +[-37.73375545, 175.2714517333, "6"], +[-37.7335981667, 175.27126265, "10"], +[-37.7340057333, 175.2712170333, "3"], +[-37.7337549, 175.2710544333, "7"], +[-37.7336106667, 175.27139185, "8"], +[-37.73361525, 175.2711308167, "11"], +[-37.7339680333, 175.27148075, "4"], +[-37.7339072, 175.2711770833, "5"], +[-37.7336462667, 175.2710817, "9"], +[-37.7995912833, 175.29009165, "14"], +[-37.8034249167, 175.29191945, "59A"], +[-37.8029383667, 175.2922421, "56A"], +[-37.8004007833, 175.29014275, "19"], +[-37.8028876833, 175.2922279167, "56"], +[-37.8003672, 175.29048765, "22"], +[-37.80047695, 175.2905386, "24"], +[-37.8016445167, 175.2911427667, "42"], +[-37.8015357, 175.2910639833, "40"], +[-37.80328695, 175.29168585, "57A"], +[-37.8027920667, 175.2921275167, "54A"], +[-37.8030532667, 175.2917147167, "55"], +[-37.8031269333, 175.2918280167, "57"], +[-37.8024975333, 175.2913747333, "47"], +[-37.802377, 175.2913556667, "45"], +[-37.8035407, 175.2922683333, "63"], +[-37.7993670833, 175.2900530333, "10"], +[-37.7997081167, 175.29018445, "16"], +[-37.8005352167, 175.2902163167, "21"], +[-37.79888875, 175.2898206167, "2"], +[-37.8018393, 175.2908753667, "41"], +[-37.8019463333, 175.2909452, "43"], +[-37.80174935, 175.2912127667, "44"], +[-37.8031475, 175.2921069, "61"], +[-37.7992458333, 175.28999025, "8"], +[-37.80316385, 175.2919805833, "59"], +[-37.7996594833, 175.2897427167, "7"], +[-37.7991007333, 175.2899189167, "6"], +[-37.7995246167, 175.2896766167, "5"], +[-37.7995156167, 175.2900339167, "12"], +[-37.7999326333, 175.28987955, "11"], +[-37.80067635, 175.29027625, "23"], +[-37.8008249833, 175.2903461, "25"], +[-37.8000549833, 175.2899487333, "13"], +[-37.8001925, 175.2900104, "15"], +[-37.80030005, 175.2900940167, "17"], +[-37.7998542833, 175.2902465, "18"], +[-37.7999735167, 175.2902770667, "20"], +[-37.8009579333, 175.2904202833, "27"], +[-37.8007392, 175.2906683333, "28"], +[-37.8010790333, 175.2904563, "29"], +[-37.8008785, 175.2907371, "30"], +[-37.80118335, 175.2905158167, "31"], +[-37.8010123, 175.2908030667, "32"], +[-37.8013201, 175.2905731667, "33"], +[-37.8011391833, 175.2908568833, "34"], +[-37.8014526167, 175.2906434667, "35"], +[-37.8012785833, 175.2909390167, "36"], +[-37.8015890667, 175.2907105, "37"], +[-37.8022804833, 175.2915978167, "48"], +[-37.80261075, 175.2914843833, "49"], +[-37.8023859167, 175.2917022, "50"], +[-37.8027547333, 175.291601, "51"], +[-37.8025056667, 175.29179555, "52"], +[-37.8028956, 175.2916952, "53"], +[-37.80259675, 175.29190045, "54"], +[-37.8017094833, 175.2907864, "39"], +[-37.8018950667, 175.2913009333, "46"], +[-37.7993859333, 175.2896304667, "3"], +[-37.79898735, 175.2898496667, "4"], +[-37.8014118167, 175.2910216167, "38"], +[-37.7997975667, 175.2898115167, "9"], +[-37.7991958333, 175.2895770667, "1"], +[-37.8005961167, 175.2906036167, "26"], +[-37.7236861, 175.2575758667, "1"], +[-37.7234013, 175.2575923167, "7"], +[-37.72342505, 175.2573668667, "5"], +[-37.7235957167, 175.2575563667, "3"], +[-37.7237956667, 175.2579131333, "2"], +[-37.7236803, 175.2579381833, "4"], +[-37.7235237, 175.25790925, "6"], +[-37.7233667, 175.25802415, "8"], +[-37.7233902333, 175.2577999667, "10"], +[-37.8109070833, 175.3271521, "98"], +[-37.8074067833, 175.32824465, "47"], +[-37.8076223667, 175.3281914667, "49"], +[-37.8116161333, 175.3280451167, "91"], +[-37.8084991, 175.3275412, "64"], +[-37.8118374833, 175.3271412667, "140"], +[-37.8079272333, 175.3280446833, "51"], +[-37.8112224333, 175.3265122667, "94"], +[-37.8109526667, 175.3281825167, "102"], +[-37.8097837, 175.3247737333, "179A"], +[-37.8054050333, 175.3263162833, "2"], +[-37.8107716833, 175.3286527, "93"], +[-37.8056564833, 175.3266165833, "6"], +[-37.80595695, 175.3264520333, "8A"], +[-37.80577745, 175.3267684167, "8"], +[-37.8087941667, 175.3283269667, "65"], +[-37.80694935, 175.3277305167, "24"], +[-37.8071310667, 175.3278366333, "26"], +[-37.8059115667, 175.3275709667, "23"], +[-37.8055400167, 175.3264666833, "4"], +[-37.80562505, 175.32705485, "1"], +[-37.8103179, 175.324917, "175"], +[-37.8124952833, 175.3273074333, "129"], +[-37.8130476167, 175.3270674667, "135"], +[-37.8124242, 175.3260019833, "147"], +[-37.8102934, 175.3289176833, "89"], +[-37.8110899667, 175.3286785833, "85"], +[-37.8111998333, 175.3286252667, "95"], +[-37.8115098, 175.3274962667, "114"], +[-37.8072508667, 175.3289482833, "45"], +[-37.8109167833, 175.3269433333, "96"], +[-37.8058697167, 175.3268781667, "10"], +[-37.806098, 175.3267438667, "12A"], +[-37.8061538833, 175.3269076333, "14A"], +[-37.8059688833, 175.32699975, "12"], +[-37.8060731833, 175.3271270167, "14"], +[-37.8055299833, 175.3269001167, "1A"], +[-37.8066166833, 175.3275533333, "1/22-24/22"], +[-37.80637135, 175.3274201833, "1/20-6/20"], +[-37.8063333833, 175.3269585833, "16"], +[-37.8062860167, 175.3270618833, "18"], +[-37.8114674667, 175.3283101833, "113"], +[-37.81192555, 175.3276725167, "123"], +[-37.8118152667, 175.3258959833, "134"], +[-37.8113442167, 175.3257305667, "136"], +[-37.8109000167, 175.3258669167, "142"], +[-37.81270985, 175.3265297167, "143"], +[-37.809968, 175.3257758333, "179"], +[-37.8113546667, 175.3284630167, "111"], +[-37.8111452667, 175.32578255, "138"], +[-37.8087378, 175.3274653667, "66"], +[-37.8086544833, 175.3278842167, "67"], +[-37.8092242333, 175.3277296, "73"], +[-37.8094429167, 175.3276747333, "77"], +[-37.8094342333, 175.32806515, "77C"], +[-37.80957335, 175.3276313333, "79"], +[-37.8099415833, 175.3271056667, "82"], +[-37.8104432167, 175.3269244833, "90"], +[-37.8083225833, 175.3279763167, "57"], +[-37.8060751, 175.3266578, "10A"], +[-37.8101811833, 175.3275485667, "83"], +[-37.8101914, 175.3254984167, "177"], +[-37.81164345, 175.3252244167, "157"], +[-37.8119178333, 175.3253736333, "155"], +[-37.81215955, 175.3256663667, "149"], +[-37.8112415667, 175.3253274333, "159"], +[-37.8084953667, 175.3279329833, "59"], +[-37.7354532667, 175.2329450167, "5"], +[-37.7354134167, 175.2335215333, "2"], +[-37.7351568833, 175.2332876, "6"], +[-37.73560455, 175.2326083833, "7"], +[-37.7353695333, 175.2327112833, "9A"], +[-37.7353962333, 175.2325491667, "9B"], +[-37.7355270833, 175.23315155, "3A"], +[-37.7356083833, 175.2329885, "3B"], +[-37.7353152167, 175.2334190667, "4"], +[-37.73506815, 175.2327892167, "13"], +[-37.7348266333, 175.2333760333, "10A"], +[-37.73474885, 175.2332662833, "10B"], +[-37.73497795, 175.23307365, "12"], +[-37.7352201333, 175.2327068333, "11A"], +[-37.7349730167, 175.2335884167, "8A"], +[-37.73558825, 175.2333097667, "1"], +[-37.7348776333, 175.2334474667, "8B"], +[-37.73512515, 175.2325533, "11B"], +[-37.7933369333, 175.2387649333, "8"], +[-37.7934600167, 175.23672055, "36A"], +[-37.7937407333, 175.2372774833, "38"], +[-37.7936042167, 175.2369407667, "36"], +[-37.7935412, 175.2377071, "28"], +[-37.7936064167, 175.2372833333, "32"], +[-37.7935505833, 175.2370719333, "34"], +[-37.7933314333, 175.2380879333, "24"], +[-37.7938469, 175.23743215, "40"], +[-37.7934322833, 175.23788225, "26"], +[-37.79391475, 175.2389559, "2"], +[-37.7936147, 175.2375211333, "30"], +[-37.7940650167, 175.2377791167, "13"], +[-37.7940483667, 175.2386084, "3"], +[-37.79375765, 175.2383544667, "7B"], +[-37.7937727667, 175.2380298333, "9"], +[-37.7930848833, 175.2379362167, "22"], +[-37.7940530833, 175.2382350167, "5A"], +[-37.7939041, 175.2378523833, "11"], +[-37.79410015, 175.2374532, "15A"], +[-37.7942660167, 175.2382327167, "1"], +[-37.7930936167, 175.2381733667, "20"], +[-37.7937911333, 175.23884035, "4"], +[-37.79334045, 175.2385380333, "16"], +[-37.7939713667, 175.2376326833, "15"], +[-37.7932755167, 175.2383598333, "18"], +[-37.7939039167, 175.2384624833, "5"], +[-37.7936177333, 175.2387320833, "6"], +[-37.7936263833, 175.23825125, "7A"], +[-37.7939169167, 175.23817885, "9A"], +[-37.7338844333, 175.2552225667, "8A"], +[-37.7347397, 175.2552073, "7A"], +[-37.7345843333, 175.2553635667, "5"], +[-37.7333819333, 175.25435225, "16"], +[-37.73454205, 175.25572855, "1"], +[-37.7337020333, 175.2549692, "10"], +[-37.7342787, 175.2553930167, "4"], +[-37.7345771333, 175.2555423, "3"], +[-37.7348237167, 175.2550423333, "7B"], +[-37.7335831833, 175.2543326, "23"], +[-37.7335515, 175.25469805, "12"], +[-37.7342643333, 175.25491725, "13"], +[-37.7334972333, 175.25447375, "14"], +[-37.7341106667, 175.2548031833, "15"], +[-37.7339842667, 175.2547057833, "17"], +[-37.73388085, 175.2545181333, "19"], +[-37.733699, 175.2544278667, "21"], +[-37.7334372667, 175.2541839, "25"], +[-37.7344624833, 175.2550412167, "11"], +[-37.7342542667, 175.2556718333, "2"], +[-37.73405355, 175.25522435, "6"], +[-37.7338790833, 175.2551016167, "8"], +[-37.7345746333, 175.2551452833, "9"], +[-37.780788, 175.2431686833, "40D"], +[-37.78240825, 175.24534145, "12C"], +[-37.7806108167, 175.2432967, "40E"], +[-37.7822525, 175.2455270667, "12D"], +[-37.7811517833, 175.2427763833, "40A"], +[-37.7824239667, 175.2455032333, "12"], +[-37.78090245, 175.24303875, "40C"], +[-37.7825227333, 175.2452290667, "12B"], +[-37.7818682333, 175.2441658, "24A"], +[-37.7835043167, 175.24544885, "3"], +[-37.781031, 175.2429093, "40B"], +[-37.7812499667, 175.2429432667, "38"], +[-37.7832075167, 175.2457053833, "2B"], +[-37.7833036, 175.2458628833, "2A"], +[-37.7830832167, 175.2448472167, "11"], +[-37.7822739167, 175.2436659, "25"], +[-37.7817629667, 175.2429849667, "33"], +[-37.7814983833, 175.24327925, "34A"], +[-37.7807891667, 175.2427638167, "42A"], +[-37.7829639, 175.2453918667, "8"], +[-37.7821790667, 175.2447583667, "18"], +[-37.78296645, 175.2458225833, "4"], +[-37.7831474333, 175.2445950833, "13A"], +[-37.7829721833, 175.2446827333, "13"], +[-37.78261555, 175.2448475333, "14"], +[-37.7828555167, 175.2445110167, "15A"], +[-37.7830596, 175.2443995333, "15B"], +[-37.7823110333, 175.2448055, "16A"], +[-37.7825443333, 175.2447368833, "16"], +[-37.7829049667, 175.2442589333, "17A"], +[-37.7827473667, 175.2443409333, "17"], +[-37.7819494333, 175.2448268333, "18A"], +[-37.7823630333, 175.2444677, "18B"], +[-37.7827832167, 175.2440790167, "19A"], +[-37.7826200667, 175.2441719833, "19"], +[-37.78188625, 175.2447383333, "20A"], +[-37.7822382333, 175.24429595, "20"], +[-37.7826564, 175.2438825833, "21A"], +[-37.7825049333, 175.24399595, "21"], +[-37.7816914667, 175.24452055, "22A"], +[-37.7821144667, 175.2441468167, "22B"], +[-37.7819024, 175.2443161833, "22"], +[-37.7815233333, 175.2426464333, "37A"], +[-37.78169295, 175.24256155, "37"], +[-37.7810272333, 175.2432643833, "38A"], +[-37.7810636, 175.24193775, "45"], +[-37.7807222333, 175.2421399667, "46"], +[-37.7809340333, 175.2417702667, "49"], +[-37.7808014167, 175.24159595, "53"], +[-37.78068235, 175.2414105833, "57"], +[-37.7828261167, 175.2451540333, "10A"], +[-37.7827257333, 175.2453596333, "10"], +[-37.7834002, 175.2453092, "5"], +[-37.7830777667, 175.24552005, "6"], +[-37.7832955, 175.24516235, "7"], +[-37.7828483333, 175.2455443, "8B"], +[-37.7831928167, 175.2450158, "9"], +[-37.7820561167, 175.2450943667, "16B"], +[-37.78088175, 175.2423753167, "44"], +[-37.7805977333, 175.2413019333, "61"], +[-37.7804358, 175.2417573167, "48"], +[-37.7805922333, 175.2419649333, "46A"], +[-37.7813735167, 175.2419479833, "43"], +[-37.78118125, 175.2420983667, "43A"], +[-37.78102975, 175.2425816, "42"], +[-37.7813764833, 175.2442957333, "28"], +[-37.78161905, 175.2440542167, "26"], +[-37.7813869833, 175.24313995, "36"], +[-37.7823777167, 175.2438366, "23"], +[-37.7814422667, 175.2443939833, "28A"], +[-37.7819613, 175.2438831, "24"], +[-37.78128395, 175.2422793167, "41"], +[-37.7826909, 175.2449578667, "12A"], +[-37.7810481667, 175.2434319833, "36A"], +[-37.7813935167, 175.2424697833, "39"], +[-37.7812323833, 175.2436156333, "34C"], +[-37.78164885, 175.24281575, "35"], +[-37.7811631667, 175.2437542667, "34"], +[-37.7813450667, 175.24349465, "34B"], +[-37.78200125, 175.2433321833, "29"], +[-37.7812632167, 175.2437966, "32A"], +[-37.7817473, 175.2436304167, "30"], +[-37.7815747167, 175.2439484833, "30A"], +[-37.7813429667, 175.2441707167, "30B"], +[-37.7818919, 175.2431617167, "31"], +[-37.7815902167, 175.2434136833, "32B"], +[-37.7814389, 175.2435716, "32"], +[-37.7728025833, 175.29654125, "1"], +[-37.7732257167, 175.2968880333, "4"], +[-37.7728346167, 175.2964740667, "10"], +[-37.7729294667, 175.2966440833, "2"], +[-37.77306485, 175.2967577667, "3"], +[-37.7733822333, 175.29701775, "5"], +[-37.7734252333, 175.29693705, "6"], +[-37.7732694833, 175.29681355, "7"], +[-37.7731109833, 175.2966807667, "8"], +[-37.7729733, 175.29655915, "9"], +[-37.80584755, 175.257046, "3"], +[-37.80574185, 175.25667055, "5"], +[-37.8051036833, 175.25538275, "12"], +[-37.8053454333, 175.2553006167, "9-11"], +[-37.8056391833, 175.2561964833, "1/7-6/7"], +[-37.8052297667, 175.256127, "10"], +[-37.8053495333, 175.2566359833, "8"], +[-37.80542475, 175.2569748167, "6"], +[-37.8059198833, 175.2573826667, "1"], +[-37.7146132333, 175.2422001167, "27"], +[-37.7136842167, 175.2415007333, "40"], +[-37.71470985, 175.2426375167, "26"], +[-37.7137575167, 175.2418731167, "38"], +[-37.71632535, 175.2421362167, "5"], +[-37.7152656, 175.24248725, "20"], +[-37.7158062333, 175.2418734167, "13"], +[-37.7141511833, 175.24138745, "41"], +[-37.7138946167, 175.2413679833, "42"], +[-37.71393905, 175.24263235, "34"], +[-37.7160149833, 175.24250725, "10"], +[-37.7142101833, 175.2407424167, "43"], +[-37.7162397833, 175.2415041667, "11"], +[-37.71530705, 175.24201225, "19"], +[-37.7669412333, 175.3015411, "15"], +[-37.7678637, 175.3021488667, "1"], +[-37.7668865333, 175.3016482667, "17"], +[-37.7671671, 175.3019115833, "11"], +[-37.7670149167, 175.3018432, "13"], +[-37.7674506667, 175.3024242333, "2"], +[-37.7680947833, 175.3020267833, "3A"], +[-37.7678548, 175.3019229167, "3"], +[-37.7673294667, 175.3023605167, "4"], +[-37.7676653167, 175.302137, "5"], +[-37.767172, 175.30228445, "6"], +[-37.7675048, 175.3020582833, "7"], +[-37.7674143833, 175.30168915, "9"], +[-37.7673304167, 175.3019749167, "9A"], +[-37.80773185, 175.3123405, "2"], +[-37.8077113333, 175.3118062667, "1"], +[-37.8068664667, 175.3123121833, "12"], +[-37.80567345, 175.3116515833, "14"], +[-37.8246721333, 175.2822162167, "3"], +[-37.8247104833, 175.2827319833, "9"], +[-37.8251787333, 175.2824766833, "10"], +[-37.8245313167, 175.28235565, "5"], +[-37.82529275, 175.28280205, "14"], +[-37.8252483167, 175.28268205, "12"], +[-37.8253745333, 175.2830670167, "16"], +[-37.8253706833, 175.2832529667, "18"], +[-37.8250766, 175.2822450167, "8"], +[-37.8250805333, 175.2833279333, "17"], +[-37.8248877167, 175.28261935, "11"], +[-37.8249415, 175.2829173, "13"], +[-37.8249656, 175.2832111667, "15"], +[-37.82457395, 175.2819089167, "1"], +[-37.8248015333, 175.28172915, "2"], +[-37.8248797667, 175.2819246667, "4"], +[-37.8249919333, 175.28211515, "6"], +[-37.8246132, 175.282567, "7"], +[-37.7969181, 175.2849401333, "10A-10E"], +[-37.7962589833, 175.28457595, "2"], +[-37.79644025, 175.2846882, "4"], +[-37.7966133167, 175.28478025, "6A-6D"], +[-37.7966294167, 175.2852439667, "3"], +[-37.7972530333, 175.2856241167, "1/11-3/11"], +[-37.7975377167, 175.2858087333, "15A-15F"], +[-37.7976488833, 175.2854241833, "20"], +[-37.7980137833, 175.2860806833, "21"], +[-37.7967134167, 175.2852940167, "1/5-8/5"], +[-37.7967605333, 175.2848780333, "8"], +[-37.7970656833, 175.2850717333, "12"], +[-37.7973958667, 175.28572495, "13"], +[-37.79720875, 175.285158, "14"], +[-37.7973656833, 175.28524315, "16"], +[-37.7976830333, 175.2858940833, "17"], +[-37.79751175, 175.2853429667, "18"], +[-37.7978338167, 175.2859706667, "19"], +[-37.7964750833, 175.2851484333, "1"], +[-37.7978363167, 175.28521385, "22A"], +[-37.7977641333, 175.2854805333, "22"], +[-37.7980346333, 175.2852834667, "24A"], +[-37.7979444833, 175.2855929, "24"], +[-37.7981090167, 175.2857071333, "26"], +[-37.7983142333, 175.2858326, "28"], +[-37.79696875, 175.28545135, "9"], +[-37.82403935, 175.2830982833, "16"], +[-37.8244107833, 175.2839338, "6"], +[-37.8244557167, 175.2832153333, "9"], +[-37.8242661333, 175.2836054167, "10"], +[-37.8243737833, 175.2830736333, "11"], +[-37.8241918, 175.2834398333, "12"], +[-37.82429435, 175.2829018667, "13"], +[-37.8241188833, 175.2832830833, "14"], +[-37.8242162667, 175.2827255833, "15"], +[-37.8241340833, 175.2825516167, "17"], +[-37.8239432667, 175.28288185, "18"], +[-37.8240808667, 175.2823903333, "19"], +[-37.8238433833, 175.2827267333, "20"], +[-37.8246733, 175.2837231, "3"], +[-37.8244859167, 175.28410385, "4"], +[-37.8246016167, 175.2835597333, "5"], +[-37.8245270667, 175.2834017667, "7"], +[-37.8243330167, 175.28377805, "8"], +[-37.7665650333, 175.23429365, "27"], +[-37.7670286, 175.23551035, "12"], +[-37.76746345, 175.2363653167, "1"], +[-37.7672118833, 175.23485995, "17"], +[-37.7669140167, 175.2349402833, "18"], +[-37.7671437833, 175.2346989333, "19"], +[-37.7667969, 175.2347638333, "20"], +[-37.7672196167, 175.2344734833, "21"], +[-37.7665955, 175.2346882667, "22"], +[-37.7670154333, 175.234536, "23"], +[-37.7664032333, 175.2347028333, "24"], +[-37.7667181167, 175.2343192667, "25"], +[-37.7662476333, 175.2348015833, "26"], +[-37.76612185, 175.23478365, "28"], +[-37.7664218667, 175.2343235667, "29"], +[-37.7660527333, 175.2346776667, "30"], +[-37.7662676333, 175.23435325, "31"], +[-37.76611375, 175.2343688833, "33"], +[-37.7660504, 175.23451875, "35"], +[-37.7672557667, 175.2352492, "13"], +[-37.7670061667, 175.2353373, "14"], +[-37.7672296167, 175.2350676333, "15"], +[-37.7669591833, 175.2351488, "16"], +[-37.7672959833, 175.2354589667, "11"], +[-37.7670525167, 175.2357194167, "10"], +[-37.7674177167, 175.2362038, "3"], +[-37.76715185, 175.2363113167, "4"], +[-37.7673491833, 175.2358211167, "7"], +[-37.7671307833, 175.2360943167, "6"], +[-37.7673866333, 175.2360225, "5"], +[-37.7673222, 175.2356304667, "9"], +[-37.7670813833, 175.2358849333, "8"], +[-37.7933437167, 175.2986983167, "1/15-8/15"], +[-37.7930746167, 175.29836895, "13A"], +[-37.793191, 175.2984109667, "13B"], +[-37.7934489333, 175.2982868833, "1/11-10/11"], +[-37.7935954333, 175.2976402, "1/5-8/5"], +[-37.7937129833, 175.2970986, "1/1-10/1"], +[-37.7940239, 175.29724395, "1/2-6/2"], +[-37.7938482333, 175.2980093167, "1/10-4/10"], +[-37.79380185, 175.2981936, "1/12-6/12"], +[-37.793652, 175.2973713, "1/3-5/3"], +[-37.7933973667, 175.2984908833, "13"], +[-37.79385995, 175.2986630667, "16A"], +[-37.7937036833, 175.2986018833, "16"], +[-37.7939742333, 175.2974481667, "4"], +[-37.79327225, 175.29778345, "7A"], +[-37.7935421333, 175.29788795, "7"], +[-37.79389095, 175.29781055, "8"], +[-37.7932476667, 175.2979904667, "1/9-6/9"], +[-37.7934875833, 175.29808505, "9"], +[-37.7937491333, 175.2983986167, "1/14-6/14"], +[-37.7939336167, 175.2976273333, "6"], +[-37.7617776, 175.3004788333, "10"], +[-37.7617153167, 175.3006416167, "12"], +[-37.7611711, 175.3002281667, "2"], +[-37.761206, 175.30059685, "3"], +[-37.76129805, 175.3002937667, "4"], +[-37.7613841667, 175.3006729667, "5"], +[-37.7614526667, 175.30035575, "6"], +[-37.7615563667, 175.3007964333, "7"], +[-37.7616154667, 175.3004258, "8"], +[-37.76168865, 175.3008440333, "9"], +[-37.7276344333, 175.2748996, "3"], +[-37.7276631, 175.27503035, "1"], +[-37.7274098667, 175.27440755, "8"], +[-37.7274311167, 175.2745689833, "6"], +[-37.7275215667, 175.2742053333, "11"], +[-37.7274819, 175.2740540667, "13"], +[-37.7273919, 175.27407645, "12"], +[-37.7273888667, 175.2742349, "10"], +[-37.7275701833, 175.2745565, "7"], +[-37.7275471167, 175.27437535, "9"], +[-37.7275978667, 175.2747322333, "5"], +[-37.72748355, 175.2749512667, "2"], +[-37.72746115, 175.27473915, "4"], +[-37.7778912333, 175.2753237333, "9"], +[-37.7785534333, 175.2767695, "6"], +[-37.7774845667, 175.2758373, "20"], +[-37.7781719667, 175.2762736667, "10A"], +[-37.7778691833, 175.2758433, "16A-16K"], +[-37.7784569, 175.27704705, "4A"], +[-37.7783509833, 175.2772454667, "4"], +[-37.7783634, 175.2768958, "4B"], +[-37.7783721167, 175.2764861, "8A-8C"], +[-37.7780538, 175.2767562833, "8D-8G"], +[-37.7787370167, 175.2769249833, "2"], +[-37.7780042, 175.2760870833, "1/14-16/14"], +[-37.77760845, 175.2755677167, "1/22-6/22"], +[-37.7777514833, 175.27522155, "11"], +[-37.7773690167, 175.276112, "20A"], +[-37.77726195, 175.27597895, "20B"], +[-37.7779742667, 175.27635135, "10"], +[-37.7788498167, 175.276474, "1"], +[-37.7786254333, 175.27616465, "5"], +[-37.7785017667, 175.2760312167, "7"], +[-37.7787297333, 175.2763053167, "3"], +[-37.7348618167, 175.2507879, "6"], +[-37.73511, 175.2505730667, "10"], +[-37.73495495, 175.25058435, "8"], +[-37.7352506167, 175.2506426, "12"], +[-37.7353593167, 175.2507599167, "14"], +[-37.73525695, 175.2509647667, "16"], +[-37.7351627, 175.25116005, "18"], +[-37.7346146, 175.25083535, "4"], +[-37.7347781833, 175.2516616333, "28"], +[-37.7341314167, 175.25327705, "27"], +[-37.73449775, 175.2513596667, "3"], +[-37.7343948333, 175.2515753667, "5"], +[-37.7340367667, 175.2521397833, "11"], +[-37.7351063333, 175.25176965, "26"], +[-37.7339188667, 175.2523102333, "13"], +[-37.7338248167, 175.2525079333, "15"], +[-37.73375535, 175.2526890333, "17"], +[-37.73488925, 175.2512328167, "20"], +[-37.7338095167, 175.2529176, "19"], +[-37.7336618, 175.25320505, "21"], +[-37.7348441167, 175.2514160333, "22"], +[-37.7346318167, 175.25181785, "30"], +[-37.7338344167, 175.25323255, "23"], +[-37.7339817667, 175.2533114833, "25"], +[-37.7342507167, 175.25251755, "34"], +[-37.7341494833, 175.2527237333, "36"], +[-37.7342865167, 175.2517727833, "7"], +[-37.7341686667, 175.2519653833, "9"], +[-37.7351301667, 175.2516077833, "24"], +[-37.7342838, 175.2531073833, "40"], +[-37.73431485, 175.2529426833, "38"], +[-37.8112098667, 175.2916664667, "16B"], +[-37.8110830333, 175.2919220167, "16A"], +[-37.8108295667, 175.2916503333, "8"], +[-37.8107128, 175.2920971833, "12"], +[-37.8119930833, 175.2925950667, "32"], +[-37.8105708833, 175.2919007833, "6"], +[-37.8122858167, 175.29332365, "37B"], +[-37.8121052667, 175.2921966167, "34B"], +[-37.8121997667, 175.2922712, "34A"], +[-37.8105876, 175.2924767167, "11A"], +[-37.8103769, 175.2921985333, "7"], +[-37.8108433, 175.2922492167, "14"], +[-37.8107314667, 175.2926375833, "15B"], +[-37.8108462, 175.2926788667, "17"], +[-37.8107064833, 175.2926136833, "15A"], +[-37.8111024167, 175.2914746167, "10A"], +[-37.8109098, 175.2917422333, "10"], +[-37.8105137333, 175.2925824167, "11B"], +[-37.8111641667, 175.2920021833, "18"], +[-37.8110406667, 175.2926842167, "19"], +[-37.8100979167, 175.2917903, "1"], +[-37.811022, 175.29233175, "20"], +[-37.8111331167, 175.2929292167, "21"], +[-37.8112592833, 175.2922805167, "22"], +[-37.8112579167, 175.292645, "23"], +[-37.81143645, 175.2922714, "24"], +[-37.8114225667, 175.2926484, "25"], +[-37.81160755, 175.2923125, "26"], +[-37.8115757167, 175.2927150833, "27"], +[-37.8117360333, 175.2924077333, "28"], +[-37.811719, 175.2931337, "29A"], +[-37.8116693667, 175.2932557, "29B"], +[-37.8117898667, 175.2932900167, "29C"], +[-37.81189895, 175.2922917, "30B"], +[-37.8118588, 175.2925193333, "30A"], +[-37.8117703667, 175.2928229167, "31"], +[-37.8120053667, 175.2930175167, "33A"], +[-37.8119387167, 175.2929686, "33"], +[-37.8121846333, 175.2930219167, "35A"], +[-37.8121360667, 175.2930248667, "35B"], +[-37.81221805, 175.2924645667, "36A"], +[-37.81231895, 175.2924451, "36B"], +[-37.81228595, 175.2930876167, "37"], +[-37.8125213333, 175.2930590667, "42B"], +[-37.81027585, 175.2920641333, "5"], +[-37.8104611167, 175.2917490667, "4"], +[-37.8104776333, 175.2923382833, "9"], +[-37.81221425, 175.2926766667, "38A"], +[-37.8123981333, 175.2925161667, "38B"], +[-37.8124204167, 175.29318525, "39A"], +[-37.8124865, 175.2931684333, "39B"], +[-37.8122769667, 175.2928316333, "40"], +[-37.8101533333, 175.29185835, "3"], +[-37.8125428333, 175.2929307667, "42A"], +[-37.7813111, 175.2757406833, "9"], +[-37.7812632667, 175.2758322833, "7A"], +[-37.7813557, 175.2756599167, "9A"], +[-37.7812525167, 175.2760606833, "5A"], +[-37.7808531333, 175.27584865, "6"], +[-37.7807169, 175.2761441, "2"], +[-37.7809745833, 175.2763628333, "1"], +[-37.7811464167, 175.2760513667, "5"], +[-37.7812359167, 175.2758884833, "7"], +[-37.7810723667, 175.2761761333, "3"], +[-37.7911103333, 175.2773792167, "17"], +[-37.7907387833, 175.2776174833, "5"], +[-37.7901680167, 175.27794625, "1"], +[-37.7904485667, 175.2778058, "1/3-5/3"], +[-37.79031135, 175.2778762333, "1/2-10/2"], +[-37.7905754333, 175.2777050833, "4"], +[-37.7909051833, 175.2775184833, "6"], +[-37.7740868, 175.2923564167, "9"], +[-37.7801240667, 175.2904653167, "3/2D"], +[-37.7741271, 175.2928543667, "11"], +[-37.7799224, 175.2909944167, "6/2D"], +[-37.7740356833, 175.2921377333, "7A"], +[-37.7735058333, 175.2934747167, "46"], +[-37.78005235, 175.2906317833, "4/2D"], +[-37.7799925333, 175.2908109167, "5/2D"], +[-37.7735690333, 175.2930383167, "17"], +[-37.7734677667, 175.2927496667, "17A"], +[-37.7735337167, 175.29279325, "17B"], +[-37.7743668667, 175.2925886833, "5A"], +[-37.7794892333, 175.2921598, "4"], +[-37.7795992667, 175.2922146667, "4A"], +[-37.7795330667, 175.29241215, "4C"], +[-37.77945325, 175.2929638, "2C"], +[-37.7794462333, 175.2923436333, "4B"], +[-37.7795597667, 175.2925980333, "2A"], +[-37.7794861167, 175.2927877833, "2B"], +[-37.7804157333, 175.2897711333, "2D"], +[-37.7748657167, 175.2933321833, "32C"], +[-37.7749034667, 175.2931807, "32A"], +[-37.77469905, 175.2927386, "1"], +[-37.77491795, 175.29332615, "32B"], +[-37.7732038333, 175.2931243833, "21A"], +[-37.7748479, 175.29318925, "32D"], +[-37.7788710333, 175.29217745, "12"], +[-37.7752904833, 175.2930876833, "30A"], +[-37.7752573667, 175.2932794, "30C"], +[-37.77523725, 175.2930985, "30D"], +[-37.7753128333, 175.29326385, "30B"], +[-37.7743328167, 175.2927944833, "5"], +[-37.7744778, 175.2934160333, "34C"], +[-37.7802034167, 175.29028375, "2/2D"], +[-37.7802776, 175.2901143167, "1/2D"], +[-37.7745282833, 175.2934215167, "34B"], +[-37.7745116333, 175.29326885, "34A"], +[-37.7742595833, 175.2935590667, "38A"], +[-37.77445615, 175.29326805, "34D"], +[-37.7737587167, 175.2929351333, "15"], +[-37.7739365167, 175.2928946833, "13"], +[-37.7780660667, 175.2924300833, "16"], +[-37.7782951333, 175.2923736, "14"], +[-37.7779111667, 175.29245295, "16A"], +[-37.7761144667, 175.2930353167, "24A"], +[-37.7734419333, 175.2930658333, "19"], +[-37.7733642667, 175.2930845833, "21"], +[-37.7741096167, 175.29336385, "38"], +[-37.77443965, 175.2925676833, "3A"], +[-37.7745183833, 175.2927692833, "3"], +[-37.7739441833, 175.2934095667, "40"], +[-37.7737993667, 175.2934351833, "42"], +[-37.7736865333, 175.2934567667, "44"], +[-37.7742379167, 175.2923049667, "7"], +[-37.7790223333, 175.2922094167, "10"], +[-37.7761080333, 175.2928237333, "24"], +[-37.7760300167, 175.29302505, "26A"], +[-37.77716295, 175.2926154333, "20A"], +[-37.77700645, 175.2926494167, "20"], +[-37.7777115833, 175.2924984333, "18"], +[-37.7797798667, 175.29141035, "2E"], +[-37.78064255, 175.2891727167, "2"], +[-37.7792974667, 175.2921768167, "6"], +[-37.7791713833, 175.2921901167, "8"], +[-37.7798645333, 175.29118525, "7/2D"], +[-37.7758288, 175.2928777, "28"], +[-37.7760141333, 175.29284545, "26"], +[-37.7892011833, 175.2580351333, "3"], +[-37.7889555, 175.258266, "6"], +[-37.7889812, 175.2580818167, "8"], +[-37.7892239833, 175.2584387333, "2"], +[-37.7893574667, 175.2582634833, "1"], +[-37.7890482167, 175.2583933167, "4"], +[-37.7890789167, 175.2579629, "5"], +[-37.7889066, 175.2577435167, "7A"], +[-37.7888315167, 175.2575958667, "7B"], +[-37.7890088, 175.2576282, "7C"], +[-37.7888290667, 175.2577972667, "9"], +[-37.8004885333, 175.3293333833, "10"], +[-37.8000998, 175.3289189667, "11"], +[-37.800537, 175.3295575, "12"], +[-37.8001521, 175.3291656, "13"], +[-37.80058875, 175.3297624333, "14"], +[-37.80021745, 175.3293817833, "15"], +[-37.8008935667, 175.3298665333, "16A"], +[-37.8006406667, 175.3299537, "16"], +[-37.8002601667, 175.3295828833, "17"], +[-37.80068535, 175.33015285, "18"], +[-37.8003111667, 175.32977365, "19"], +[-37.80072575, 175.3303632, "20"], +[-37.80035225, 175.32997825, "21"], +[-37.8004014333, 175.3301723167, "23"], +[-37.8007440167, 175.3306058333, "22"], +[-37.8006929833, 175.33083495, "24"], +[-37.8004263333, 175.3279491667, "2"], +[-37.8004567, 175.3303923333, "25"], +[-37.8006543167, 175.3310442333, "26"], +[-37.8004085833, 175.3306137, "27"], +[-37.8006553667, 175.3313348667, "28"], +[-37.8003893333, 175.3307792833, "29"], +[-37.8005390167, 175.3308800667, "31"], +[-37.8001249167, 175.32795985, "3"], +[-37.8004145667, 175.3281237667, "4"], +[-37.8001041833, 175.3282473833, "5"], +[-37.8003798833, 175.3283910333, "6"], +[-37.800061, 175.3286913667, "9"], +[-37.8000863667, 175.3284714667, "7"], +[-37.746619, 175.2570614167, "4B"], +[-37.7472682167, 175.25887225, "25"], +[-37.7468107333, 175.2575572333, "8A"], +[-37.7469907, 175.2575624667, "8B"], +[-37.7469809333, 175.2577783333, "12"], +[-37.7463877167, 175.2575275, "11B"], +[-37.7466146333, 175.2569191167, "4A"], +[-37.7477322, 175.2575773833, "30"], +[-37.7476561, 175.2573981167, "28"], +[-37.7473028833, 175.2586097333, "27"], +[-37.74763245, 175.2571309667, "26"], +[-37.7466203833, 175.2567131333, "2"], +[-37.7474454167, 175.2584865167, "29"], +[-37.7479104833, 175.2574598333, "30A"], +[-37.747313, 175.2574932667, "10B"], +[-37.74634405, 175.2574413667, "11A"], +[-37.7475845333, 175.2583547667, "31"], +[-37.7478193, 175.2577664667, "32A"], +[-37.7471495667, 175.2575302667, "10A"], +[-37.74580135, 175.2567911, "3B"], +[-37.7459996833, 175.2569675667, "5"], +[-37.7462877333, 175.2570233833, "7"], +[-37.7470887667, 175.2579765167, "14"], +[-37.7464865833, 175.2576586667, "13"], +[-37.7466115333, 175.2578808, "15"], +[-37.7472756833, 175.2581365167, "16"], +[-37.7467339833, 175.2581001, "17"], +[-37.7474176333, 175.25794965, "18"], +[-37.7468455, 175.2583047833, "19"], +[-37.7462992667, 175.25676085, "1"], +[-37.7475438167, 175.2577722333, "20"], +[-37.7469936833, 175.2585274833, "21"], +[-37.7462876333, 175.2572403167, "9"], +[-37.7475142167, 175.2573871667, "22"], +[-37.7471000167, 175.25872375, "23"], +[-37.7474692167, 175.2568890667, "24B"], +[-37.7475289667, 175.25703405, "24"], +[-37.7479784667, 175.2576765833, "32"], +[-37.747752, 175.2582073833, "33"], +[-37.74788065, 175.25807465, "35"], +[-37.74800175, 175.2579109333, "37"], +[-37.7458601, 175.2568482833, "3A"], +[-37.7466556, 175.2572674167, "6"], +[-37.7461311833, 175.25702705, "7B"], +[-37.76767785, 175.29345375, "68A-68D"], +[-37.7670184667, 175.2928006167, "73D"], +[-37.7678318167, 175.2935163667, "62A-62B"], +[-37.7671051833, 175.2928288333, "73C"], +[-37.7671920167, 175.2928628333, "73B"], +[-37.7673517167, 175.2929280833, "73A"], +[-37.7672699833, 175.29289165, "73E"], +[-37.7683801667, 175.2937830833, "60A-60D"], +[-37.76742645, 175.29294405, "67E"], +[-37.7674946833, 175.2929759833, "67D"], +[-37.7677005, 175.2930812, "67A"], +[-37.7676302, 175.2930425, "67B"], +[-37.7675641667, 175.29300765, "67C"], +[-37.7672965833, 175.2932969167, "76A-76D"], +[-37.76750195, 175.2933749833, "72A-72B"], +[-37.7713333, 175.2933592167, "10"], +[-37.7709275333, 175.2935165333, "14"], +[-37.7702322333, 175.2940705167, "27"], +[-37.7695158333, 175.2938797333, "37"], +[-37.7699266833, 175.2940724667, "31"], +[-37.7702828, 175.2945149833, "34"], +[-37.7704538667, 175.2944314, "32"], +[-37.7692342667, 175.2937837167, "41"], +[-37.76829385, 175.2933268833, "59A-59D"], +[-37.7685029667, 175.2934115667, "53A-53D"], +[-37.7688222, 175.29357325, "47A-47D"], +[-37.7709724167, 175.2933385167, "12"], +[-37.7712156, 175.2937623667, "16"], +[-37.7708524833, 175.2937571833, "18"], +[-37.7707747167, 175.29283375, "1"], +[-37.7708140167, 175.2938902833, "20"], +[-37.77108165, 175.2941790667, "22"], +[-37.7705084167, 175.29375915, "23"], +[-37.7710120667, 175.2943268, "24"], +[-37.770406, 175.2939547333, "25"], +[-37.7707088833, 175.2941674667, "26"], +[-37.7706111, 175.2942986167, "28"], +[-37.7700708667, 175.2940843667, "29"], +[-37.7707359667, 175.2947102167, "30"], +[-37.77072045, 175.29300345, "3"], +[-37.7700303167, 175.2946254833, "36"], +[-37.7698558333, 175.2944396833, "38"], +[-37.7693665333, 175.2938302667, "39"], +[-37.7696417333, 175.29485185, "40"], +[-37.7696807333, 175.2943587667, "42"], +[-37.76953325, 175.2942900333, "44"], +[-37.7711237, 175.29282645, "4"], +[-37.7693847167, 175.2942227833, "46"], +[-37.7692534833, 175.2941634, "48"], +[-37.7691073167, 175.2941068667, "50"], +[-37.7689222, 175.2940436333, "52"], +[-37.77127495, 175.29306025, "6"], +[-37.7710425667, 175.29311555, "8"], +[-37.7697752167, 175.2939950833, "33"], +[-37.7696475333, 175.2939294667, "35"], +[-37.8025297833, 175.26209565, "42"], +[-37.8025746333, 175.2607639833, "63"], +[-37.80158305, 175.2538550833, "137D"], +[-37.8018347, 175.2577168667, "91"], +[-37.80151385, 175.2578255, "94A"], +[-37.8020421167, 175.2585149167, "83"], +[-37.8013492, 175.2571534667, "102"], +[-37.8019225167, 175.25949095, "80"], +[-37.8011900333, 175.2540657167, "137B"], +[-37.8011674833, 175.25640375, "112"], +[-37.80240265, 175.26153395, "46"], +[-37.8017438333, 175.2587761, "82"], +[-37.8013751333, 175.2539647833, "137C"], +[-37.80252455, 175.26052595, "65"], +[-37.80268525, 175.26265465, "40"], +[-37.80095255, 175.2553519833, "126"], +[-37.8022226667, 175.2607947167, "50"], +[-37.80085035, 175.2550331333, "128"], +[-37.8023164, 175.2611747333, "48"], +[-37.8017035167, 175.2586225, "84"], +[-37.8024846833, 175.2618120333, "44"], +[-37.8016682, 175.2584619, "86"], +[-37.8019890167, 175.25825945, "87"], +[-37.8016275, 175.2583154167, "88"], +[-37.8019313167, 175.2580732333, "89"], +[-37.8015384, 175.2564587833, "107"], +[-37.8011704, 175.2549395, "127"], +[-37.8027341, 175.2628671667, "38"], +[-37.8028129, 175.2632019167, "36"], +[-37.8028739833, 175.2634493333, "34"], +[-37.8024022, 175.2634005, "32"], +[-37.8024472, 175.2636379, "30"], +[-37.8029813833, 175.2638924333, "28"], +[-37.8030413167, 175.2641456833, "26"], +[-37.8031107, 175.2644047833, "24"], +[-37.8031796, 175.2646567833, "22"], +[-37.8032421, 175.2649631833, "20"], +[-37.8033037333, 175.26372095, "45"], +[-37.8006059, 175.2523936333, "151"], +[-37.8011706667, 175.2575720667, "94H"], +[-37.8010557833, 175.2576135333, "94G"], +[-37.800927, 175.2580218, "1/94D"], +[-37.8009643333, 175.2576451333, "94F"], +[-37.80085545, 175.2577027667, "94E"], +[-37.8010439333, 175.25798305, "2/94D"], +[-37.8017848833, 175.2575236833, "93"], +[-37.8021210333, 175.25884025, "75"], +[-37.8017429, 175.25733745, "95"], +[-37.80169935, 175.25715855, "97"], +[-37.8016647667, 175.2569590833, "101"], +[-37.8016320333, 175.2567719833, "103"], +[-37.8011157333, 175.2546807333, "133"], +[-37.8009910167, 175.2541639667, "137A"], +[-37.8003206333, 175.25416315, "138A"], +[-37.8005954167, 175.2540719, "138"], +[-37.8008461667, 175.2536397833, "139"], +[-37.8005293167, 175.25384555, "140"], +[-37.80066005, 175.2530188667, "149"], +[-37.800813, 175.2529498, "149A"], +[-37.8005604667, 175.25254385, "151A"], +[-37.8003032, 175.2528830167, "152"], +[-37.8002537833, 175.2526597167, "154"], +[-37.8002110667, 175.2524332667, "156"], +[-37.80129625, 175.2569465333, "104"], +[-37.8012574333, 175.2567542667, "106"], +[-37.8012068833, 175.2566010167, "108"], +[-37.8022996667, 175.2595357, "67"], +[-37.8021792167, 175.2591042167, "73"], +[-37.8011962833, 175.2546461667, "133A"], +[-37.80134165, 175.25788105, "94B"], +[-37.8012181167, 175.2579328833, "94C"], +[-37.8012961667, 175.2575282833, "94I"], +[-37.8014111, 175.25748415, "94J"], +[-37.7519055833, 175.2673621, "900"], +[-37.7364641, 175.250646, "1182"], +[-37.7465946167, 175.2627265, "1024"], +[-37.7697556667, 175.2699044667, "562"], +[-37.7765507667, 175.2790577333, "382B"], +[-37.7765730333, 175.2789241167, "382A"], +[-37.7692597833, 175.2694868, "574"], +[-37.7776772333, 175.2798501, "2/355"], +[-37.7687011167, 175.2689316833, "588"], +[-37.7605174833, 175.2667944167, "747B"], +[-37.7686288167, 175.26920365, "586"], +[-37.7291381667, 175.23622175, "1840A"], +[-37.76846845, 175.2688421833, "592"], +[-37.7683172333, 175.2687219333, "594"], +[-37.7298910333, 175.23640655, "1837"], +[-37.7684361667, 175.2690841667, "590"], +[-37.7307022667, 175.23722, "1829B"], +[-37.7755708333, 175.2783262667, "400C"], +[-37.7382012667, 175.25340625, "1/1158-14/1158"], +[-37.7754848333, 175.2782889333, "400B"], +[-37.7754074667, 175.2782620667, "400A"], +[-37.7588340333, 175.2664856833, "775A"], +[-37.7734065333, 175.2742493, "474"], +[-37.7154246, 175.2236979, "2037C"], +[-37.7745049833, 175.2751933167, "453"], +[-37.7145630167, 175.2215412, "2051B"], +[-37.774029, 175.27567415, "454"], +[-37.7743820333, 175.2762209333, "440A"], +[-37.7745593333, 175.2760777667, "440B"], +[-37.7295902333, 175.2360351, "1841"], +[-37.7196579333, 175.2265176667, "1991"], +[-37.7339791667, 175.2442144667, "1751"], +[-37.7806376333, 175.2822350833, "261C"], +[-37.7776247833, 175.2797767833, "1/355"], +[-37.6992461333, 175.2141457833, "2241"], +[-37.7366110667, 175.2507291167, "1180"], +[-37.7037720667, 175.2184005667, "2171"], +[-37.7023627667, 175.2174642, "2171D"], +[-37.7288663167, 175.2365619833, "1840C"], +[-37.7156791667, 175.2231303333, "2037B"], +[-37.71519995, 175.2217651333, "2051A"], +[-37.7514410167, 175.2675826833, "904B"], +[-37.74764325, 175.26253115, "1001"], +[-37.7757669, 175.27846095, "396B"], +[-37.7487606, 175.2647548667, "975"], +[-37.7758291167, 175.2784359167, "396C"], +[-37.77772765, 175.2799111833, "3/355"], +[-37.7669724, 175.2677882333, "620"], +[-37.7668607, 175.2678976167, "622"], +[-37.7391045167, 175.2546900333, "1126"], +[-37.7511106333, 175.2674382167, "910A"], +[-37.7711783333, 175.2700410667, "539B"], +[-37.74778775, 175.2627966167, "999"], +[-37.7850823333, 175.28726425, "132"], +[-37.7844174, 175.28810795, "142"], +[-37.7847176833, 175.28684795, "1/146-10/146"], +[-37.7719016833, 175.2723754333, "518A"], +[-37.7695035833, 175.26971575, "570"], +[-37.7693308667, 175.2689984333, "575"], +[-37.7691758833, 175.2693984, "576"], +[-37.7698935, 175.2701319833, "558"], +[-37.7863332, 175.2889073167, "94"], +[-37.7862596667, 175.2881538667, "1/100-19/100"], +[-37.7644304167, 175.267606, "660"], +[-37.7623935667, 175.2671599333, "707A"], +[-37.7416601167, 175.2548452167, "1133"], +[-37.7415514, 175.2553033333, "1133A"], +[-37.7416027167, 175.2550405, "1133B"], +[-37.7417456, 175.2545932333, "1133C"], +[-37.7417337333, 175.2544195167, "1133D"], +[-37.7244825333, 175.2313234333, "1940"], +[-37.7046204667, 175.2191425, "2169"], +[-37.7722471833, 175.2725988333, "508"], +[-37.7516308333, 175.2672214167, "904"], +[-37.7542806833, 175.2673201833, "854"], +[-37.7514285167, 175.2671509333, "908"], +[-37.7743047667, 175.27487435, "457"], +[-37.7130635, 175.2230335667, "2070"], +[-37.78046985, 175.28197605, "3/271"], +[-37.7321797167, 175.2411246667, "1786"], +[-37.7320933833, 175.24091545, "1788"], +[-37.7309593167, 175.2384024833, "1812"], +[-37.7316411667, 175.2398471333, "1798"], +[-37.7317307667, 175.2400651667, "1796"], +[-37.7318140333, 175.2402566167, "1794"], +[-37.7308477667, 175.2382276667, "1814"], +[-37.78039905, 175.2821794, "2/271"], +[-37.7710700667, 175.2703243667, "539A"], +[-37.7710028, 175.27025025, "539C"], +[-37.78059785, 175.28236375, "261A"], +[-37.7298835, 175.23745555, "1826B"], +[-37.7297828833, 175.2376277, "1826C"], +[-37.7298676667, 175.2377155, "1824C"], +[-37.72998775, 175.2375692333, "1824B"], +[-37.73015815, 175.2373914167, "1824A"], +[-37.7304719333, 175.2377476833, "1822B"], +[-37.7460788667, 175.2624986167, "1028"], +[-37.7472942667, 175.26282615, "1012"], +[-37.7471476167, 175.2626201, "1014"], +[-37.7473494667, 175.2621082, "1015"], +[-37.7475108167, 175.2623392, "1011"], +[-37.7474199333, 175.263027, "1004"], +[-37.7469669167, 175.2623578167, "1016"], +[-37.780667, 175.2824158333, "261B"], +[-37.74718155, 175.2619067667, "1019"], +[-37.7467730167, 175.2625233833, "1018"], +[-37.7466775167, 175.2628511167, "1020"], +[-37.7292546833, 175.2357148667, "1847"], +[-37.7289377667, 175.2359840167, "1846B"], +[-37.7287346167, 175.23621125, "1846A"], +[-37.7067821, 175.2197821333, "2139D"], +[-37.7807167, 175.28228495, "261D"], +[-37.77577345, 175.27833585, "396A"], +[-37.7159534833, 175.22480055, "2022"], +[-37.7496773167, 175.2660187167, "941"], +[-37.7487714333, 175.26575915, "962A"], +[-37.7335595667, 175.2434344833, "1761"], +[-37.73251515, 175.2409492667, "1787"], +[-37.7489887333, 175.2661773833, "958"], +[-37.7491951333, 175.2656488667, "953"], +[-37.7490907667, 175.2654438333, "955"], +[-37.74904915, 175.2663322667, "952"], +[-37.7494407, 175.2658833833, "951"], +[-37.7488793833, 175.2659867167, "960"], +[-37.7346548167, 175.2450186667, "1741"], +[-37.7434963833, 175.2562465667, "1107"], +[-37.74350885, 175.2567493333, "1105"], +[-37.74354325, 175.2570134, "1103"], +[-37.7437360167, 175.2571861333, "1101"], +[-37.7440913167, 175.2584752, "1086"], +[-37.75411375, 175.2673371, "858"], +[-37.7600333333, 175.2669545667, "755B"], +[-37.76013425, 175.2669902667, "755C"], +[-37.7593067667, 175.2668129667, "765"], +[-37.7708949167, 175.2713744333, "534"], +[-37.7706946667, 175.2699759833, "543A"], +[-37.7707304833, 175.2700261333, "543B"], +[-37.7705549667, 175.2702344167, "545"], +[-37.77033635, 175.2706012667, "546"], +[-37.7704222667, 175.2701000833, "547"], +[-37.7702651833, 175.2699525, "553"], +[-37.7839545667, 175.28481045, "177"], +[-37.7836776833, 175.2849322667, "181"], +[-37.7804896833, 175.2823805333, "263"], +[-37.7803951, 175.2828686333, "267"], +[-37.7814203833, 175.283455, "239"], +[-37.7812408833, 175.28381125, "240"], +[-37.7812887667, 175.2833684667, "241"], +[-37.7810997667, 175.283752, "244"], +[-37.78108375, 175.283252, "247"], +[-37.78088215, 175.2836192333, "248"], +[-37.78067115, 175.2834839833, "254"], +[-37.7806020167, 175.28297195, "259"], +[-37.7782631833, 175.2811051667, "333"], +[-37.7779336833, 175.28119805, "334"], +[-37.7778827833, 175.2810132667, "340"], +[-37.7780663333, 175.2805173167, "343"], +[-37.7779684333, 175.2802259167, "345"], +[-37.7777264667, 175.28057355, "348"], +[-37.7776327833, 175.2803252, "352"], +[-37.7775089333, 175.2801692333, "356"], +[-37.7781505167, 175.2818099667, "320"], +[-37.7784007667, 175.2815455, "325"], +[-37.7783413167, 175.2813333667, "329"], +[-37.7784770667, 175.28222705, "314"], +[-37.7784915, 175.2817199667, "317"], +[-37.77868905, 175.28184895, "311"], +[-37.7778004833, 175.2808032, "344"], +[-37.7462791833, 175.2626621667, "1026"], +[-37.7735325667, 175.2744318667, "468"], +[-37.7809851667, 175.2830186833, "255B"], +[-37.7794978667, 175.28195275, "287"], +[-37.7758438667, 175.27832025, "396"], +[-37.7849569833, 175.2870990333, "134"], +[-37.7838370667, 175.2851372167, "173"], +[-37.7838833167, 175.2852292, "171"], +[-37.78583295, 175.287958, "112"], +[-37.7859611, 175.2880113833, "110"], +[-37.7547645167, 175.2673797833, "850"], +[-37.7614069, 175.2679650667, "722"], +[-37.7520149167, 175.2674183833, "896"], +[-37.75178125, 175.2675024167, "900A"], +[-37.7332959667, 175.2436961333, "1764"], +[-37.7237770167, 175.230627, "1948"], +[-37.7613520333, 175.26819995, "722A"], +[-37.7611637333, 175.2684412333, "724"], +[-37.76156895, 175.2679688167, "720"], +[-37.7615323, 175.2681437833, "720A"], +[-37.7627517333, 175.2678911667, "700"], +[-37.7625873167, 175.2678881833, "702"], +[-37.7627014333, 175.2674087333, "703"], +[-37.7622330833, 175.2674508, "707"], +[-37.7618845333, 175.2679320167, "714"], +[-37.7617354833, 175.26797255, "718"], +[-37.7621069833, 175.2673962333, "709"], +[-37.7619505167, 175.2674060333, "713"], +[-37.75935575, 175.2673679, "766"], +[-37.7538282167, 175.2672793167, "860"], +[-37.7810671333, 175.2827857833, "255C"], +[-37.7611134833, 175.2686548833, "726"], +[-37.7613814833, 175.2673458167, "727"], +[-37.7591920667, 175.2673285833, "768"], +[-37.7590108333, 175.2672792333, "770"], +[-37.7591219333, 175.26677915, "767"], +[-37.7589561, 175.2667116, "773"], +[-37.75864835, 175.2677823833, "776"], +[-37.7469954, 175.26165785, "1025"], +[-37.7587853333, 175.26672055, "775"], +[-37.7586173833, 175.2672532833, "774"], +[-37.7667596, 175.2676936167, "624"], +[-37.77205405, 175.2716910167, "519"], +[-37.7666646, 175.2677889333, "624A"], +[-37.7719263167, 175.2722074167, "518"], +[-37.7738638833, 175.2749572667, "462"], +[-37.7724776667, 175.27281115, "500"], +[-37.7716479833, 175.2719894833, "522"], +[-37.7718732333, 175.2715446667, "523"], +[-37.7718129, 175.2720866333, "520"], +[-37.7671208667, 175.2678945167, "616"], +[-37.76776665, 175.26839295, "608"], +[-37.7675724833, 175.2684845833, "608A"], +[-37.7665937833, 175.2676032833, "628"], +[-37.7803881, 175.2819193333, "4/271"], +[-37.7115122333, 175.2216614167, "2083D"], +[-37.7468261, 175.2614067333, "1027"], +[-37.7588149667, 175.26727035, "772"], +[-37.78065985, 175.28270305, "259A"], +[-37.7735665667, 175.2737605333, "475"], +[-37.7764379, 175.27886455, "390A"], +[-37.7765303333, 175.2791817833, "382C"], +[-37.77368915, 175.2739378, "473"], +[-37.7306817667, 175.2379556833, "1820C"], +[-37.7740855167, 175.2745485167, "463"], +[-37.7283906833, 175.2358907, "1848"], +[-37.7295902833, 175.2367317833, "1830A"], +[-37.7281757667, 175.2351965167, "1850C"], +[-37.7809097833, 175.28316035, "255A"], +[-37.7236499833, 175.23055795, "1950"], +[-37.7763196333, 175.2786323167, "392C"], +[-37.7802962333, 175.2818734167, "5/271"], +[-37.7222881333, 175.2300831667, "1960"], +[-37.74926315, 175.2651568333, "957"], +[-37.7715214833, 175.2717702, "526"], +[-37.7714626, 175.27170975, "528"], +[-37.77139305, 175.2716396333, "530"], +[-37.7715768167, 175.2718399333, "524"], +[-37.7708706667, 175.27051785, "539"], +[-37.7710143, 175.2706916667, "537"], +[-37.7694894167, 175.2691583, "571"], +[-37.7707180833, 175.2703833, "543"], +[-37.78106505, 175.2822945, "253A"], +[-37.7227625, 175.230189, "1958"], +[-37.7231373, 175.2303419333, "1954"], +[-37.7456883167, 175.2618633167, "1040A"], +[-37.7359914333, 175.2495365833, "1184"], +[-37.7786450833, 175.2823213, "1/310-8/310"], +[-37.7724208, 175.27207655, "509"], +[-37.7738060333, 175.2741301333, "469"], +[-37.7389900167, 175.2545689667, "1128A"], +[-37.7386947, 175.2543752667, "1132"], +[-37.7232850833, 175.2303700167, "1952"], +[-37.76573185, 175.2674485833, "646"], +[-37.7813048, 175.2828627833, "243"], +[-37.72886675, 175.23529605, "1853"], +[-37.7798356167, 175.2825746833, "281"], +[-37.7571058833, 175.2672105167, "798"], +[-37.7293212167, 175.2364586167, "1838A"], +[-37.7290842, 175.2366807833, "1838B"], +[-37.728928, 175.2368772667, "1838C"], +[-37.77718685, 175.2800097333, "364A"], +[-37.74911865, 175.26670775, "950A"], +[-37.7771421667, 175.2803045, "362A"], +[-37.7779028333, 175.2819647667, "326"], +[-37.7260923167, 175.23290505, "1896"], +[-37.7257974333, 175.2333169667, "1904"], +[-37.7255285, 175.2331450833, "1908"], +[-37.7251989667, 175.2326507667, "1914"], +[-37.7257173167, 175.2324360333, "1918"], +[-37.7789745, 175.2820182167, "1/305-10/305"], +[-37.77800625, 175.2820119333, "324"], +[-37.7359550167, 175.2493927167, "1190"], +[-37.7842505, 175.2852448333, "167"], +[-37.78126215, 175.2824755333, "253"], +[-37.7388621833, 175.2544890833, "1130"], +[-37.7689154667, 175.2694519667, "580"], +[-37.7807612667, 175.2830750667, "257A"], +[-37.77111295, 175.2704361167, "537A"], +[-37.7808485667, 175.2826711, "257"], +[-37.7828423167, 175.2847281, "194"], +[-37.7773410667, 175.2799487667, "360"], +[-37.7158342667, 175.22326825, "2037A"], +[-37.7720584667, 175.2724098, "512"], +[-37.7828276667, 175.2851415667, "192E"], +[-37.78300475, 175.2848423833, "192A"], +[-37.7837785833, 175.2850801833, "175"], +[-37.7842308833, 175.2856371, "163A"], +[-37.78391635, 175.2858309333, "164"], +[-37.7838558833, 175.2847262167, "1/179-4/179"], +[-37.7491814833, 175.2663553667, "950"], +[-37.7828713167, 175.2850038667, "192C"], +[-37.7747663667, 175.276394, "436"], +[-37.7748531833, 175.2765383167, "434"], +[-37.7828404167, 175.2850711333, "192D"], +[-37.7495096667, 175.2656366667, "949"], +[-37.7584953333, 175.2677844333, "778"], +[-37.7607343, 175.2668568167, "745A"], +[-37.75735045, 175.2672126833, "796"], +[-37.77742095, 175.2794700833, "363"], +[-37.6997773, 175.2147817333, "2227"], +[-37.6989398667, 175.2137996167, "2247"], +[-37.7285127, 175.2348852, "1855"], +[-37.7245138333, 175.2319818667, "1936"], +[-37.7277560167, 175.2340841667, "1867"], +[-37.7276342667, 175.23397185, "1869"], +[-37.7271356, 175.2341615833, "1874"], +[-37.7272877833, 175.2335878833, "1875"], +[-37.7268312333, 175.2336261167, "1876A"], +[-37.7264490833, 175.2342662333, "1876B"], +[-37.72704545, 175.2332648833, "1877"], +[-37.7266044, 175.2327885333, "1881"], +[-37.72620175, 175.2322955167, "1885"], +[-37.7257573167, 175.23183665, "1893"], +[-37.7655328, 175.2684591, "642A"], +[-37.7397533833, 175.2549864, "1124"], +[-37.7383577833, 175.2521276333, "1160"], +[-37.7382237, 175.251915, "1162"], +[-37.7380720333, 175.25172455, "1164"], +[-37.7379202167, 175.2515444167, "1166"], +[-37.73773525, 175.2513839167, "1168"], +[-37.7375495833, 175.2512541833, "1170"], +[-37.7373470167, 175.2511548833, "1172"], +[-37.7371773833, 175.2510463333, "1174"], +[-37.7369993167, 175.2509478167, "1176"], +[-37.7368131333, 175.2508490167, "1178"], +[-37.7360243667, 175.2485351667, "1401"], +[-37.7359123833, 175.2481239333, "1403"], +[-37.7357738833, 175.2476152667, "1405"], +[-37.7356882, 175.2473801833, "1407"], +[-37.7357154667, 175.2470315833, "1409"], +[-37.7355772333, 175.2469767667, "1411"], +[-37.7358783333, 175.2466597167, "1413"], +[-37.7355725333, 175.2466493667, "1415"], +[-37.7357061, 175.24657705, "1417"], +[-37.7450186833, 175.25980355, "1068"], +[-37.7449053167, 175.2596631833, "1070"], +[-37.7447800667, 175.25949055, "1074"], +[-37.7446529, 175.25933905, "1076"], +[-37.7445214833, 175.25915545, "1078"], +[-37.7444371833, 175.2589073333, "1080"], +[-37.7442421667, 175.2587716333, "1082"], +[-37.7441593667, 175.2586309167, "1084"], +[-37.7433683333, 175.2560407167, "1109"], +[-37.7432007, 175.2566468333, "1125"], +[-37.7409521667, 175.2555203167, "1100"], +[-37.7409151333, 175.2557889167, "1102"], +[-37.74079055, 175.2558702833, "1104"], +[-37.7408185833, 175.25542275, "1106"], +[-37.7406186167, 175.25533685, "1108"], +[-37.7404176333, 175.25527735, "1110"], +[-37.74024975, 175.2554956333, "1112"], +[-37.7402299, 175.2552052, "1114"], +[-37.7401076333, 175.2554379333, "1116"], +[-37.7495188333, 175.2652428833, "947"], +[-37.7452549667, 175.2600926333, "1060"], +[-37.7451477833, 175.2600019333, "1064"], +[-37.7482911667, 175.2647354167, "982"], +[-37.7481861333, 175.2645507667, "984"], +[-37.7480850167, 175.2643497167, "986"], +[-37.7479819167, 175.2641646, "988"], +[-37.74788915, 175.2639769, "990"], +[-37.74779575, 175.2637802333, "992"], +[-37.7476681, 175.2635163, "996"], +[-37.7075673333, 175.2189748667, "2139C"], +[-37.7069078667, 175.21909425, "2149"], +[-37.70593985, 175.21951335, "2151"], +[-37.7050624, 175.2192, "2161"], +[-37.72404165, 175.23085565, "1946"], +[-37.7243945667, 175.2312187, "1942"], +[-37.7241606333, 175.230973, "1944"], +[-37.73233, 175.24050835, "1791"], +[-37.7324167, 175.24071065, "1789"], +[-37.7317137, 175.2389431833, "1805"], +[-37.73179555, 175.2391746167, "1803"], +[-37.7318821167, 175.2393822167, "1801"], +[-37.7319705333, 175.2396031333, "1799"], +[-37.7320571333, 175.23980805, "1797"], +[-37.7321396333, 175.2400075, "1795"], +[-37.7294766833, 175.2373722333, "1828A"], +[-37.7294173, 175.2375895667, "1828"], +[-37.7295745333, 175.2372136, "1828B"], +[-37.7304728, 175.2380484, "1820B"], +[-37.7303044667, 175.2382082333, "1820A"], +[-37.73038155, 175.2379148667, "1822A"], +[-37.7302350667, 175.23812555, "1822"], +[-37.7809213, 175.28220085, "253B"], +[-37.76091815, 175.26689445, "743A"], +[-37.7486277667, 175.2658852, "962B"], +[-37.7486690667, 175.2655400333, "964A"], +[-37.7485201833, 175.2656637667, "964B"], +[-37.76492365, 175.2676884167, "656"], +[-37.7648392667, 175.2670443333, "657"], +[-37.7645832, 175.2670683, "659"], +[-37.7643174833, 175.2671289333, "667"], +[-37.7641125, 175.2671741667, "669"], +[-37.7638082167, 175.267207, "677"], +[-37.7634828, 175.2673169, "685"], +[-37.76313305, 175.2678528333, "698"], +[-37.7631126667, 175.26734105, "697"], +[-37.7628934667, 175.2673493333, "699"], +[-37.7566974167, 175.2672335833, "802"], +[-37.75731655, 175.2666814, "803"], +[-37.7564886333, 175.26724785, "804"], +[-37.7571413333, 175.2666986667, "805"], +[-37.75696295, 175.2667369167, "807"], +[-37.7567259, 175.2667938833, "809"], +[-37.7557744167, 175.2673042167, "812"], +[-37.7550688167, 175.2673896833, "842"], +[-37.7717175667, 175.2713965333, "525"], +[-37.77156935, 175.2712478667, "527"], +[-37.7701988667, 175.2704581, "554"], +[-37.7700385833, 175.2703025333, "556"], +[-37.7701100167, 175.2697975667, "557"], +[-37.7699574333, 175.2696303667, "561"], +[-37.76979225, 175.2695143, "565A"], +[-37.7698006167, 175.2691408167, "565B"], +[-37.7697211167, 175.2694262667, "565"], +[-37.7696403333, 175.2693008833, "567"], +[-37.7690472833, 175.2693014167, "578"], +[-37.7691182833, 175.26878955, "579"], +[-37.76623135, 175.2674471667, "634"], +[-37.7659896833, 175.2675163167, "634A"], +[-37.7652865833, 175.2683798667, "642"], +[-37.7659554833, 175.2670158, "645"], +[-37.76538155, 175.26698615, "651"], +[-37.7652951333, 175.2677213167, "652A"], +[-37.76531145, 175.2674118333, "652"], +[-37.76564905, 175.2670006333, "649"], +[-37.7651560833, 175.2669944667, "655"], +[-37.7746766667, 175.2762544833, "438"], +[-37.7744405, 175.2759024333, "444"], +[-37.7747079667, 175.2754973, "447"], +[-37.7743212333, 175.2757168667, "450"], +[-37.77420835, 175.27550875, "452"], +[-37.77409135, 175.27533015, "456"], +[-37.7739855667, 175.2751461833, "458"], +[-37.7825763833, 175.2841529667, "203"], +[-37.7827418667, 175.2836062667, "205"], +[-37.7826683833, 175.2834285167, "207"], +[-37.7823346, 175.2844553667, "210"], +[-37.7823630833, 175.28401335, "213A"], +[-37.7824654167, 175.2837065667, "213B"], +[-37.7821675667, 175.2843683, "214"], +[-37.7821640333, 175.2839396, "215"], +[-37.7819617167, 175.2842490333, "218"], +[-37.7822682167, 175.2831619833, "219"], +[-37.7841796333, 175.2848752667, "169"], +[-37.7796687, 175.2824726167, "285"], +[-37.7794724167, 175.2828418, "286"], +[-37.7795154167, 175.2823618167, "289"], +[-37.7798093833, 175.2829655167, "282"], +[-37.7819398333, 175.2838122333, "223"], +[-37.7816824167, 175.2840857167, "226"], +[-37.7793429833, 175.2822478667, "291"], +[-37.7816156, 175.28402915, "230"], +[-37.7818557167, 175.28419055, "222"], +[-37.7818536833, 175.2830982667, "233"], +[-37.78148085, 175.2839685333, "232"], +[-37.7813478, 175.2838889, "236"], +[-37.7815868667, 175.2835240167, "237"], +[-37.7760108667, 175.27827115, "394"], +[-37.7583469, 175.2672603333, "786"], +[-37.7778105667, 175.2799896667, "1/351"], +[-37.7778918, 175.28009415, "2/351"], +[-37.7786867833, 175.2816517667, "311A"], +[-37.7794742, 175.2832351833, "284C"], +[-37.7792951333, 175.28316255, "284A"], +[-37.7793701, 175.2831969167, "284B"], +[-37.7803445167, 175.2823319167, "1/271"], +[-37.7805584333, 175.2817442667, "6/271"], +[-37.7803899667, 175.2816441167, "8/271"], +[-37.7804697667, 175.2816839, "7/271"], +[-37.78291185, 175.2849098667, "192B"], +[-37.7493243167, 175.2664340833, "948"], +[-37.7847924333, 175.2874636667, "136A"], +[-37.7846674, 175.2872723, "136"], +[-37.78450125, 175.2874368333, "138"], +[-37.7843273833, 175.2857820167, "163"], +[-37.7840486333, 175.28543865, "165"], +[-37.7838147667, 175.2856912667, "166"], +[-37.7844665, 175.28770855, "140"], +[-37.7843279667, 175.2877307833, "144A"], +[-37.78449045, 175.2872538, "144"], +[-37.7846138667, 175.2866755333, "148"], +[-37.7845038333, 175.2865537, "152"], +[-37.7845934167, 175.2861125, "155"], +[-37.7842464833, 175.2880347, "144B"], +[-37.7852587833, 175.2875764167, "130"], +[-37.7855274667, 175.2877557667, "126"], +[-37.7853614, 175.2876761333, "128"], +[-37.7860871, 175.2880698333, "106"], +[-37.7245225333, 175.23058145, "1903"], +[-37.7242475333, 175.2302655, "1907"], +[-37.7253958, 175.2314361667, "1897"], +[-37.7770528, 175.2802671667, "362"], +[-37.7584309167, 175.26762755, "780"], +[-37.7581491333, 175.2672530667, "788"], +[-37.75778975, 175.26723905, "792"], +[-37.7465575833, 175.26248665, "1030"], +[-37.7802411, 175.2827840667, "269"], +[-37.7574263, 175.2664471, "801"], +[-37.7287763667, 175.2358191833, "1846C"], +[-37.7574815, 175.2667217167, "801A"], +[-37.7569049667, 175.2672057, "800"], +[-37.7575605667, 175.2672277833, "794"], +[-37.7475448167, 175.2632309167, "1000"], +[-37.747394, 175.2634293333, "1000A"], +[-37.7722132667, 175.2718561, "515"], +[-37.7168459333, 175.2252361667, "2020"], +[-37.7303628333, 175.23690245, "1829A"], +[-37.7517380167, 175.2672832833, "902"], +[-37.7516877833, 175.26758815, "902A"], +[-37.7739239667, 175.2743264667, "467"], +[-37.7736527667, 175.27459895, "466"], +[-37.7481764667, 175.2636481667, "987"], +[-37.7494293333, 175.2664732833, "946"], +[-37.7737624333, 175.2747938667, "464"], +[-37.7166376167, 175.2260731667, "2020A"], +[-37.7497928, 175.2656707, "943"], +[-37.7297193167, 175.23689945, "1830"], +[-37.7862990167, 175.2882242667, "98"], +[-37.7862567167, 175.28843405, "98A"], +[-37.777218, 175.2797843, "364"], +[-37.77701795, 175.2795467833, "370"], +[-37.7768618833, 175.2792841833, "376"], +[-37.77672905, 175.2791135333, "380"], +[-37.7764516667, 175.2787651667, "390"], +[-37.7763098, 175.2787549833, "392B"], +[-37.7762880167, 175.2788594, "392A"], +[-37.7778601333, 175.2800349167, "3/351"], +[-37.77928905, 175.2827214833, "294"], +[-37.7794662167, 175.2815888667, "295"], +[-37.7789641333, 175.2825319, "300"], +[-37.7793663, 175.2816692167, "301"], +[-37.7787996333, 175.2823879167, "302"], +[-37.7791135167, 175.2820938333, "303"], +[-37.7788237667, 175.2819209167, "309"], +[-37.7824843833, 175.2845581333, "1/206-6/206"], +[-37.78254565, 175.28355825, "1/211-11/211"], +[-37.77330035, 175.2740746667, "478"], +[-37.7734814, 175.2736174667, "479"], +[-37.77335585, 175.2734103333, "481"], +[-37.7731873333, 175.2738973167, "482"], +[-37.7730662333, 175.2737076, "484"], +[-37.7729451833, 175.2735143333, "486"], +[-37.7731683167, 175.27310265, "489"], +[-37.77279965, 175.2733116, "492"], +[-37.7730090833, 175.27287085, "495"], +[-37.7688849, 175.2690609333, "582"], +[-37.7687816, 175.26939055, "584"], +[-37.7624888333, 175.2671741667, "705A"], +[-37.7625069167, 175.26737475, "705"], +[-37.7611863, 175.2679425667, "728"], +[-37.7612307833, 175.2673171667, "729"], +[-37.7610388333, 175.2679109167, "732"], +[-37.76087325, 175.2678597667, "734"], +[-37.7610294667, 175.2672833167, "735"], +[-37.7606262, 175.2682615, "736A"], +[-37.7606998167, 175.2682976167, "736"], +[-37.7612318833, 175.2668722, "737"], +[-37.7606306667, 175.26809515, "738A"], +[-37.7606621667, 175.267807, "738"], +[-37.7604207833, 175.2680930333, "740A"], +[-37.7604467167, 175.2677395333, "740"], +[-37.7609838833, 175.2669522167, "741"], +[-37.7608042, 175.2672007667, "743"], +[-37.7602449333, 175.26812895, "744A"], +[-37.7603006667, 175.26770935, "744"], +[-37.7606122833, 175.2671560833, "745"], +[-37.7601423667, 175.2676651, "746A"], +[-37.760104, 175.26791425, "746B"], +[-37.7604962, 175.2671189667, "747"], +[-37.7599896167, 175.26755725, "748"], +[-37.7603341833, 175.26708175, "749A"], +[-37.7603823167, 175.2667600333, "749B"], +[-37.7598558, 175.2669077333, "755A"], +[-37.7512050833, 175.2672123667, "910"], +[-37.7516196333, 175.2665734, "913"], +[-37.7510516, 175.2671708667, "914"], +[-37.75125815, 175.2665890667, "915"], +[-37.7509025833, 175.26707115, "916A"], +[-37.750789, 175.2670450833, "916B"], +[-37.7510525833, 175.2665663, "917"], +[-37.7656128167, 175.2678111833, "646B"], +[-37.7507105833, 175.2672824667, "918"], +[-37.7508574333, 175.2665258667, "919"], +[-37.7505585, 175.2664478167, "921"], +[-37.7506309667, 175.2670079167, "924"], +[-37.7502003167, 175.2662594667, "923"], +[-37.7503405667, 175.2669190167, "928"], +[-37.7501990667, 175.2668502333, "930"], +[-37.74988915, 175.2661370833, "939"], +[-37.7466129, 175.2619352833, "1032"], +[-37.7466622833, 175.2612316833, "1033"], +[-37.74634615, 175.26158135, "1034A"], +[-37.74604695, 175.2620929167, "1034C"], +[-37.74620965, 175.2613653667, "1036"], +[-37.7459033167, 175.2616322, "1038"], +[-37.7458103833, 175.2615285167, "1040"], +[-37.7460283333, 175.26112485, "1042"], +[-37.7458951, 175.26092135, "1044"], +[-37.7464052667, 175.2608900667, "1043"], +[-37.7457667833, 175.2607517333, "1046"], +[-37.7461571833, 175.2605613167, "1049"], +[-37.7455225167, 175.2607622, "1050A"], +[-37.7456481667, 175.2605897667, "1050B"], +[-37.74586625, 175.2601755, "1055"], +[-37.7400068, 175.2554317333, "1118"], +[-37.7398681667, 175.25532665, "1120"], +[-37.73993825, 175.25507075, "1122"], +[-37.7394904333, 175.2496327333, "202/1199"], +[-37.73951585, 175.2496974, "204/1199"], +[-37.7395456, 175.2497568833, "206/1199"], +[-37.7395797167, 175.2498094167, "208/1199"], +[-37.7396137333, 175.2498672833, "210/1199"], +[-37.7396434167, 175.2499303, "212/1199"], +[-37.7287906, 175.2363595833, "1844"], +[-37.7396932833, 175.2500383167, "216/1199"], +[-37.7396634167, 175.24998415, "214/1199"], +[-37.73584455, 175.2462563, "1419"], +[-37.73602575, 175.2462174333, "1421"], +[-37.7360307667, 175.2459707333, "1423"], +[-37.7358764, 175.2457998, "1425"], +[-37.7357162333, 175.2459155667, "1427"], +[-37.7355785167, 175.2460366, "1429"], +[-37.7104350667, 175.2217838, "2096"], +[-37.7353931667, 175.24612385, "1431"], +[-37.7099721667, 175.2208849333, "2103"], +[-37.7088224833, 175.22051485, "2121A"], +[-37.7083568833, 175.2203430667, "2121B"], +[-37.7088855833, 175.21909835, "2121C"], +[-37.70867305, 175.2186943, "2121D"], +[-37.7072705, 175.2199656, "2139A"], +[-37.70715135, 175.2187741833, "2139B"], +[-37.7055227667, 175.2192897833, "2153"], +[-37.7006248167, 175.2160323667, "2219"], +[-37.7010859167, 175.2165445167, "2211"], +[-37.7519126333, 175.26775995, "896A"], +[-37.7579683, 175.2672326333, "790"], +[-37.7393569167, 175.24961155, "1199"], +[-37.7394262667, 175.2496714333, "201/1199"], +[-37.7394628667, 175.24974, "203/1199"], +[-37.7395035833, 175.2498140333, "205/1199"], +[-37.7395359333, 175.2498842333, "207/1199"], +[-37.7395711667, 175.249951, "209/1199"], +[-37.7396007333, 175.2500193333, "211/1199"], +[-37.7396304167, 175.2500823667, "215/1199"], +[-37.7290417833, 175.2343283667, "1857A"], +[-37.72895975, 175.234105, "1857B"], +[-37.72887135, 175.2339877833, "1857C"], +[-37.7284971, 175.2343133833, "1857"], +[-37.7284073333, 175.2342626333, "1859"], +[-37.7649870833, 175.2674157667, "654A"], +[-37.7653554667, 175.26821505, "644C"], +[-37.7653525, 175.2680525833, "644D"], +[-37.7651394, 175.2681387167, "644A"], +[-37.7651378833, 175.26800825, "644B"], +[-37.76555795, 175.2681312167, "644E"], +[-37.77548295, 175.2774647167, "414"], +[-37.7247436, 175.2313744667, "1928"], +[-37.7801934, 175.2832060333, "268"], +[-37.7741630667, 175.2758039167, "450A"], +[-37.7800191833, 175.2830820333, "272"], +[-37.74885015, 175.2649612667, "973"], +[-37.7489671833, 175.2652177833, "965"], +[-37.7490832, 175.2648147833, "971"], +[-37.7801110833, 175.2821319167, "277"], +[-37.7800444667, 175.2826871, "275"], +[-37.73001395, 175.2372193667, "1826A"], +[-37.7336623667, 175.24453585, "1756"], +[-37.7335720833, 175.2443436167, "1758"], +[-37.7334886, 175.2441487833, "1760"], +[-37.7334099833, 175.2439343333, "1762"], +[-37.733217, 175.2434986333, "1766"], +[-37.7331248333, 175.2432894, "1768"], +[-37.7330464667, 175.2430968833, "1770"], +[-37.7329674333, 175.2429014, "1772"], +[-37.7328550667, 175.24265615, "1774"], +[-37.7327676333, 175.2424513833, "1776"], +[-37.7326802, 175.2422466167, "1778"], +[-37.7649361667, 175.2674247333, "654B"], +[-37.7228922333, 175.2302215167, "1956"], +[-37.74829985, 175.2638498, "985"], +[-37.7484998333, 175.2642477, "979"], +[-37.7486561833, 175.2645196, "977"], +[-37.7464405333, 175.2617113833, "1034B"], +[-37.74612075, 175.2618337333, "1034"], +[-37.7757708833, 175.2779428, "402"], +[-37.7496281833, 175.2656317333, "945"], +[-37.77562425, 175.2777313833, "410"], +[-37.72850245, 175.2355288167, "1850A"], +[-37.7283502833, 175.2353441833, "1850B"], +[-37.78020315, 175.2823388667, "273"], +[-37.7309443, 175.2375756167, "1827"], +[-37.7005669667, 175.2158389167, "2221"], +[-37.7051982333, 175.21980285, "2156B"], +[-37.7044657333, 175.2196151333, "2156A"], +[-37.76520685, 175.2674176833, "654"], +[-37.7106022833, 175.2213275833, "2095"], +[-37.7119384833, 175.22168625, "2083C"], +[-37.7122775833, 175.2201584167, "2083A"], +[-37.7143071167, 175.2238777667, "2052"], +[-37.7148844333, 175.2239826667, "2044"], +[-37.7116554833, 175.22054735, "2083B"], +[-37.73153805, 175.2385218333, "1809"], +[-37.7314457, 175.2383044167, "1811"], +[-37.7316166, 175.2387386, "1807"], +[-37.7312202333, 175.23787765, "1815"], +[-37.7591086667, 175.2789839167, "15"], +[-37.7588231, 175.2789036333, "15A"], +[-37.7593278667, 175.27770785, "5"], +[-37.7598096333, 175.2772073167, "4"], +[-37.7594942833, 175.278609, "16"], +[-37.7596118167, 175.2781291667, "14"], +[-37.7593808333, 175.2790371167, "20"], +[-37.7594431667, 175.2771932167, "1"], +[-37.75915835, 175.2784687833, "11"], +[-37.7591162333, 175.2787127667, "13"], +[-37.7592621833, 175.27730155, "3A"], +[-37.75938165, 175.27744025, "3"], +[-37.7597556167, 175.2774347, "6"], +[-37.7592721, 175.2779586, "7"], +[-37.7597124667, 175.2776634667, "8"], +[-37.7592238833, 175.2782056, "9"], +[-37.7593955, 175.27876855, "18"], +[-37.7595959167, 175.27892705, "18A"], +[-37.75984975, 175.2779031833, "12A"], +[-37.7595906, 175.2779062833, "12"], +[-37.75987135, 175.2769185833, "2"], +[-37.782469, 175.3100704333, "1"], +[-37.7821435167, 175.3100869667, "9"], +[-37.7822956667, 175.3100123833, "3"], +[-37.7822580667, 175.3102420667, "4"], +[-37.7821448333, 175.30992205, "5"], +[-37.7821334333, 175.3102543333, "6"], +[-37.7627333333, 175.3031327, "1"], +[-37.7628101167, 175.3039542, "10"], +[-37.7626392333, 175.30452335, "16"], +[-37.7622302833, 175.3048894667, "19"], +[-37.7625897667, 175.3047011, "18"], +[-37.7627466167, 175.3041410167, "12"], +[-37.7623986, 175.3043080667, "13"], +[-37.7623494833, 175.30449405, "15"], +[-37.7626943833, 175.3043265167, "14"], +[-37.7624525667, 175.3041045833, "11"], +[-37.7622955833, 175.3046865667, "17"], +[-37.7626792667, 175.3033233, "3"], +[-37.7629626167, 175.3033961, "4"], +[-37.7626218833, 175.3035183, "5"], +[-37.7625679167, 175.3037173667, "7"], +[-37.7629074333, 175.3035846833, "6"], +[-37.76285355, 175.3037764167, "8"], +[-37.7625143167, 175.3039132667, "9"], +[-37.7625397667, 175.3048898833, "20"], +[-37.7621753833, 175.305102, "21"], +[-37.7624763167, 175.30507635, "22"], +[-37.7621274, 175.3052901667, "23"], +[-37.7624236667, 175.30525075, "24"], +[-37.7620760167, 175.3054353667, "25"], +[-37.7623586667, 175.30542185, "26"], +[-37.7663374167, 175.2615509833, "1"], +[-37.76671615, 175.2614476167, "4"], +[-37.7665563167, 175.2621286167, "3"], +[-37.7669146, 175.2622987833, "9A"], +[-37.7671492833, 175.2616740333, "10"], +[-37.7671155667, 175.2618665167, "11"], +[-37.7665602167, 175.2617034333, "1A"], +[-37.7665535, 175.2613678833, "2"], +[-37.7667488333, 175.2618070333, "5"], +[-37.7668370333, 175.2615086, "6"], +[-37.7668827167, 175.2619546833, "7"], +[-37.7669755167, 175.2615542333, "8"], +[-37.76703055, 175.2619883167, "9"], +[-37.7407656667, 175.2655672833, "4"], +[-37.7406762667, 175.2660187833, "3"], +[-37.74088465, 175.2660226333, "5"], +[-37.7408808333, 175.26555655, "6"], +[-37.7409541333, 175.2659064167, "7"], +[-37.7409409, 175.2657105, "8"], +[-37.7406196333, 175.2656783167, "2"], +[-37.77645865, 175.2231044667, "13"], +[-37.7763711833, 175.2234501167, "17"], +[-37.7764375333, 175.22329555, "15"], +[-37.7765856833, 175.2232712667, "11"], +[-37.7767327167, 175.2233157833, "9"], +[-37.77694495, 175.2233653333, "7"], +[-37.7770990167, 175.2230564167, "5"], +[-37.7771582, 175.2228456, "3"], +[-37.7774641333, 175.2228683833, "2"], +[-37.7773729167, 175.2230864333, "4"], +[-37.7770932833, 175.2235535667, "10"], +[-37.7768851333, 175.2236132833, "12"], +[-37.776696, 175.2235698, "14"], +[-37.7765223333, 175.2234922333, "16"], +[-37.7773019167, 175.2233151333, "6"], +[-37.7772633167, 175.22344765, "8A"], +[-37.7772055333, 175.2235177333, "8B"], +[-37.7441427167, 175.26300755, "18"], +[-37.7441524833, 175.2627868167, "16"], +[-37.7440435, 175.2631871, "20"], +[-37.7432202167, 175.2631678167, "3"], +[-37.7437936333, 175.2626126, "10"], +[-37.7439652667, 175.2625779833, "12"], +[-37.7441414833, 175.2625771167, "14"], +[-37.7441636833, 175.26321045, "20A"], +[-37.74327045, 175.2625489333, "2"], +[-37.7433114, 175.2633380333, "5"], +[-37.7436219, 175.26307965, "6"], +[-37.7437585833, 175.26296855, "8"], +[-37.7434063667, 175.2627147833, "4"], +[-37.7426709833, 175.26417775, "15"], +[-37.7428880833, 175.2637475833, "11"], +[-37.7425890667, 175.26400695, "13"], +[-37.7429608833, 175.2639383333, "17"], +[-37.7429614833, 175.2643283667, "19"], +[-37.7431896667, 175.2640001167, "21"], +[-37.7430795667, 175.2635183, "7"], +[-37.7429656667, 175.26360205, "9"], +[-37.8107365167, 175.301897, "12"], +[-37.8110302333, 175.3017593833, "10"], +[-37.8103627167, 175.3017163333, "22"], +[-37.8107209667, 175.3014692667, "16"], +[-37.8110912, 175.3013459333, "11"], +[-37.8108720333, 175.3015895667, "14"], +[-37.81096665, 175.3012061833, "13"], +[-37.81049365, 175.3015525833, "18"], +[-37.8107610333, 175.3009224833, "17"], +[-37.8115477833, 175.30176895, "5"], +[-37.8113996667, 175.3016224667, "7"], +[-37.8112393667, 175.301495, "9"], +[-37.8109668833, 175.3008904667, "15B"], +[-37.8108307833, 175.3010852, "15A"], +[-37.8101917833, 175.3011114333, "27"], +[-37.8106161, 175.3010082833, "19"], +[-37.8116847167, 175.3019027833, "3"], +[-37.8103932667, 175.3010857833, "21"], +[-37.81013235, 175.3009165, "25"], +[-37.8102803667, 175.30149425, "24"], +[-37.81002805, 175.30073395, "23"], +[-37.81150395, 175.3022354167, "2"], +[-37.8104270333, 175.3019115, "20"], +[-37.8102247833, 175.3013092, "29"], +[-37.7927382667, 175.31404795, "1"], +[-37.7918065833, 175.3142605, "11B"], +[-37.7919846, 175.3142887, "11A"], +[-37.7919801167, 175.31486335, "12A"], +[-37.7920825167, 175.3146643167, "1/10"], +[-37.7921674333, 175.314816, "2/10"], +[-37.7928242, 175.3146118667, "2B"], +[-37.7917920833, 175.31465395, "14"], +[-37.7915329333, 175.3139632167, "15"], +[-37.7908262833, 175.3135412167, "28"], +[-37.7907991667, 175.3128353333, "29"], +[-37.7901956667, 175.31259415, "40"], +[-37.7919319167, 175.3146729333, "12"], +[-37.7916451167, 175.3141416, "13"], +[-37.7915808, 175.3145439, "16"], +[-37.7914115833, 175.3143964167, "18"], +[-37.79132205, 175.3136363833, "19"], +[-37.7911167, 175.3133178333, "23"], +[-37.7910437333, 175.3138596833, "24"], +[-37.7909997167, 175.3131759167, "25"], +[-37.7912117833, 175.3134884, "21"], +[-37.79093975, 175.3137005333, "26"], +[-37.7912644833, 175.3142150333, "20"], +[-37.79091265, 175.3129955667, "27"], +[-37.7907279, 175.3133735333, "30"], +[-37.7906927333, 175.3126831, "31"], +[-37.7906215833, 175.3132228167, "32"], +[-37.7905903667, 175.3125191167, "33"], +[-37.7905090833, 175.3130691833, "34"], +[-37.79047815, 175.3123673167, "35"], +[-37.7904155167, 175.3129079167, "36"], +[-37.7903673, 175.3121868167, "37"], +[-37.7902984833, 175.3127473, "38"], +[-37.79026665, 175.3120335667, "39"], +[-37.7928430833, 175.3144296167, "2"], +[-37.7899434, 175.3115556, "43"], +[-37.7898590167, 175.3113577333, "45"], +[-37.78979135, 175.3111612833, "47"], +[-37.78954935, 175.31152455, "50"], +[-37.7894791667, 175.31137445, "52"], +[-37.7900483333, 175.31238505, "44"], +[-37.7899422167, 175.3122140833, "46"], +[-37.7898243333, 175.3120116667, "48"], +[-37.79256535, 175.3141042333, "3"], +[-37.79263535, 175.3144572, "4"], +[-37.7923681333, 175.3137777667, "5"], +[-37.7924337167, 175.3145438, "6"], +[-37.7923304333, 175.3142012833, "7"], +[-37.79222295, 175.31462155, "8"], +[-37.7921670333, 175.3142498667, "9"], +[-37.7909638, 175.31401885, "24B"], +[-37.7912029167, 175.3143728167, "20A"], +[-37.7705650833, 175.2739721667, "22"], +[-37.7706477, 175.2734899333, "23"], +[-37.7711639333, 175.2737032667, "11"], +[-37.7709489167, 175.2736022333, "15"], +[-37.7708421667, 175.2740301167, "16"], +[-37.7703774833, 175.2734152333, "27A"], +[-37.7704424167, 175.2734256333, "27"], +[-37.7703425667, 175.2739019333, "26"], +[-37.7715063833, 175.2742800167, "6"], +[-37.7710585833, 175.2741252333, "12"], +[-37.7702491667, 175.2733755167, "29"], +[-37.7701356, 175.2738202333, "30"], +[-37.7712775, 175.2741971167, "8"], +[-37.7713254833, 175.27378755, "9"], +[-37.7693426167, 175.2731132333, "31"], +[-37.7699978833, 175.2737612, "32"], +[-37.7523447167, 175.2426990833, "6"], +[-37.7528412833, 175.24319875, "7"], +[-37.7525064167, 175.2426212, "15"], +[-37.7527135667, 175.2427861667, "11"], +[-37.7525222333, 175.2434109167, "2"], +[-37.7523304667, 175.2429841167, "4"], +[-37.75282175, 175.2435774333, "3"], +[-37.77407955, 175.2330866833, "43A"], +[-37.7746644167, 175.2336200167, "41B"], +[-37.7743717667, 175.2333885167, "41A"], +[-37.7733179, 175.23493695, "3"], +[-37.7729751333, 175.23498865, "6A"], +[-37.7732013333, 175.2346727667, "5"], +[-37.7731367833, 175.23409595, "13A"], +[-37.7732538667, 175.2341506167, "13B"], +[-37.7728122, 175.2345093167, "10"], +[-37.77313835, 175.2343909833, "11"], +[-37.7727907833, 175.2343183333, "12"], +[-37.7728058167, 175.2334680667, "14A"], +[-37.7725996333, 175.2334147, "14B"], +[-37.7728361833, 175.2332880333, "16"], +[-37.7731634167, 175.2333967167, "17"], +[-37.7733849667, 175.23344515, "19"], +[-37.7735442167, 175.2335831833, "21"], +[-37.7730835333, 175.2327050833, "18"], +[-37.7731329333, 175.2325257167, "20A"], +[-37.77307395, 175.2323837167, "20B"], +[-37.7729210167, 175.2322342, "22A"], +[-37.7735842833, 175.23391935, "23"], +[-37.7737553333, 175.2336269667, "25"], +[-37.7735765667, 175.23341555, "27"], +[-37.7733996, 175.2332520667, "29"], +[-37.7730015167, 175.2321017667, "22"], +[-37.7738163333, 175.2337459667, "23A"], +[-37.7732451833, 175.2323267833, "24A"], +[-37.7730681833, 175.23214, "24B"], +[-37.77335405, 175.2322341167, "26"], +[-37.7737812333, 175.23181215, "28"], +[-37.7732686167, 175.2330841, "31"], +[-37.7734166333, 175.23282485, "33"], +[-37.7738442667, 175.2332180333, "35B"], +[-37.7736383, 175.2329722833, "35"], +[-37.7741986667, 175.2335128833, "37B"], +[-37.774279, 175.2335519833, "39A"], +[-37.7744720833, 175.2337262167, "39B"], +[-37.77389255, 175.2317205167, "30"], +[-37.7740196667, 175.2315981167, "32"], +[-37.7739538333, 175.2332607667, "37"], +[-37.7738803167, 175.2313731333, "32A"], +[-37.7738801333, 175.2312271833, "34A"], +[-37.7738183833, 175.2312742167, "34"], +[-37.7742120333, 175.2311990667, "38"], +[-37.7741439667, 175.2313943333, "36"], +[-37.77426435, 175.2332853833, "43B"], +[-37.7737216167, 175.2328287, "45A"], +[-37.7739651667, 175.2330245833, "45B"], +[-37.7735440667, 175.2326042167, "47"], +[-37.7742557, 175.2310084333, "40"], +[-37.77464955, 175.2315742, "49A"], +[-37.7745288, 175.2314472333, "49"], +[-37.7745725667, 175.2312061833, "51"], +[-37.7746170833, 175.2309676167, "53"], +[-37.7733584333, 175.2345180667, "7"], +[-37.7733363, 175.2344323833, "9"], +[-37.7733872333, 175.2350907833, "1"], +[-37.7730133333, 175.2352966, "4"], +[-37.76234985, 175.3103492667, "9"], +[-37.7620174, 175.3101942333, "13"], +[-37.7620561667, 175.3105721, "14"], +[-37.7618511, 175.3101338833, "15"], +[-37.76190375, 175.31049695, "16"], +[-37.7616898333, 175.3100564667, "17"], +[-37.7630650333, 175.31068155, "1"], +[-37.76173635, 175.31042975, "18"], +[-37.7615723667, 175.3103657333, "20"], +[-37.7615255, 175.3099779667, "19"], +[-37.7613637, 175.3098964, "21"], +[-37.7614128, 175.3102947, "22"], +[-37.76119655, 175.30982355, "23"], +[-37.7612456833, 175.3102269833, "24"], +[-37.7610426833, 175.3097502667, "25"], +[-37.7610885667, 175.3101594667, "26"], +[-37.7630375333, 175.3110122833, "2"], +[-37.7605224167, 175.3095174833, "29"], +[-37.7607622833, 175.3099773333, "30"], +[-37.7606050167, 175.3099134333, "32"], +[-37.7609239833, 175.3100848833, "28"], +[-37.7603632667, 175.3094361, "31"], +[-37.7602051333, 175.3093622667, "33"], +[-37.7604330833, 175.3098245167, "34"], +[-37.7602612833, 175.3097460667, "36"], +[-37.7600556167, 175.3092453667, "35"], +[-37.7628481, 175.3105889833, "3"], +[-37.76285595, 175.3109326833, "4"], +[-37.7626794333, 175.3105188, "5"], +[-37.7599210333, 175.3091902333, "37"], +[-37.7600967833, 175.3096773667, "38"], +[-37.7598579667, 175.3093179167, "39"], +[-37.7599040167, 175.3096424333, "40"], +[-37.7596348833, 175.30940255, "41"], +[-37.7597984167, 175.3095188167, "42"], +[-37.7625358333, 175.3107946333, "8"], +[-37.76270835, 175.3108667167, "6"], +[-37.7621882833, 175.3102704833, "11"], +[-37.76237685, 175.31071655, "10"], +[-37.76221545, 175.3106413, "12"], +[-37.7625182, 175.3104312167, "7"], +[-37.7375523667, 175.2397132667, "9"], +[-37.7377511, 175.2394628667, "3"], +[-37.7376853, 175.2390798667, "4"], +[-37.73763595, 175.2388014833, "5"], +[-37.7375539167, 175.2387756833, "6"], +[-37.7375432167, 175.2393060833, "8"], +[-37.7375759667, 175.2407373333, "11"], +[-37.7375835833, 175.2402327833, "10"], +[-37.7378441833, 175.2419686167, "19"], +[-37.73777715, 175.2422340167, "18"], +[-37.7379074, 175.2415450167, "20"], +[-37.7379134333, 175.2411476833, "21"], +[-37.7375126167, 175.2390051167, "7"], +[-37.7376104, 175.2421685333, "14"], +[-37.7378224833, 175.24254105, "17"], +[-37.7375414167, 175.2425059333, "15"], +[-37.7376736, 175.2425037, "16"], +[-37.7376847167, 175.2412563, "12"], +[-37.73767255, 175.2416554667, "13"], +[-37.7378598833, 175.2403045, "1"], +[-37.73791445, 175.2399871333, "2"], +[-37.76406965, 175.2647595333, "5"], +[-37.7639175667, 175.2646305333, "7"], +[-37.7628306667, 175.2629836667, "31A"], +[-37.7626969667, 175.2632161333, "31"], +[-37.7636623333, 175.26445665, "11"], +[-37.76353045, 175.2643316, "13"], +[-37.7633981833, 175.26415405, "15"], +[-37.7635292, 175.2635557333, "17"], +[-37.7634304, 175.26353615, "19"], +[-37.7632307667, 175.2639682667, "21"], +[-37.7631238667, 175.2637776, "23"], +[-37.7630376667, 175.2636125167, "25"], +[-37.7629333, 175.2634946667, "27"], +[-37.76260935, 175.2630706, "33"], +[-37.76248345, 175.2629215333, "35"], +[-37.7623767667, 175.2627554333, "37"], +[-37.7622921333, 175.26300615, "39"], +[-37.7642433667, 175.2648946667, "3"], +[-37.7637786667, 175.2645455167, "9"], +[-37.7644429833, 175.2649999167, "1"], +[-37.7646609667, 175.26523495, "2"], +[-37.780262, 175.2782636833, "7A"], +[-37.7800526667, 175.2778582, "11A"], +[-37.7804405, 175.2784941833, "5A"], +[-37.7797609333, 175.2783582833, "16"], +[-37.7803908, 175.2784586333, "5B"], +[-37.7793923667, 175.27801355, "24"], +[-37.7802983167, 175.2782966667, "7B"], +[-37.7800700833, 175.2786580667, "6"], +[-37.78011195, 175.2777510167, "11B"], +[-37.77951715, 175.2775828833, "17-21"], +[-37.7798365833, 175.27877895, "12B"], +[-37.7797454167, 175.2789715, "10"], +[-37.77992435, 175.2787618667, "1/6"], +[-37.7802320667, 175.2787854667, "4A-4F"], +[-37.7798823, 175.2785798833, "14B"], +[-37.7795205833, 175.2784344, "18B"], +[-37.7794111, 175.2786080667, "18C"], +[-37.7796513833, 175.27827795, "18A"], +[-37.7793226667, 175.2787089333, "18D"], +[-37.7799500167, 175.2779085833, "11"], +[-37.7796366667, 175.2785920667, "12A"], +[-37.7798244333, 175.2778087, "13"], +[-37.7798995, 175.2784526, "14"], +[-37.7795373167, 175.2781714, "20"], +[-37.779745, 175.2777473333, "15"], +[-37.7793212167, 175.2783776667, "22"], +[-37.7792955833, 175.2779264333, "26"], +[-37.77907575, 175.2781625, "28"], +[-37.7804883333, 175.2789292333, "2"], +[-37.7791782333, 175.2777841167, "30"], +[-37.7804225833, 175.2780792167, "7F"], +[-37.7805040833, 175.2781220333, "7C"], +[-37.7804974833, 175.2779640667, "7D"], +[-37.7804578833, 175.2780194833, "7E"], +[-37.7848306, 175.3013791833, "25"], +[-37.7848716833, 175.3011687167, "23"], +[-37.7847445167, 175.3017623833, "29"], +[-37.78478725, 175.30158985, "27"], +[-37.7849146, 175.3009556167, "21"], +[-37.7852616833, 175.3003121333, "14"], +[-37.7853832333, 175.2998121167, "10"], +[-37.7851092167, 175.2997579, "11"], +[-37.7853268, 175.3000567333, "12"], +[-37.78506175, 175.2999909833, "13"], +[-37.7850110833, 175.3002366167, "15"], +[-37.78520215, 175.3005705333, "16"], +[-37.7851912167, 175.3007834667, "18"], +[-37.7853891167, 175.298915, "1A"], +[-37.78516275, 175.3012432667, "22"], +[-37.7851987333, 175.30103535, "20"], +[-37.7856243667, 175.2989556167, "2"], +[-37.7852948833, 175.29907075, "5"], +[-37.7855385833, 175.2992583, "6"], +[-37.7852298333, 175.2992909667, "7"], +[-37.7854494, 175.2995314833, "8"], +[-37.7851577667, 175.29954095, "9"], +[-37.7849045333, 175.3007144167, "19"], +[-37.7849434333, 175.3004804, "17"], +[-37.7847959333, 175.3021851167, "35"], +[-37.7844227833, 175.3021128167, "33"], +[-37.7847150667, 175.3022062667, "33A"], +[-37.7847269833, 175.3019805833, "31"], +[-37.76848335, 175.2608698833, "3"], +[-37.76806185, 175.2606896667, "4A"], +[-37.7682116833, 175.2607900667, "4"], +[-37.7687926833, 175.26017445, "10"], +[-37.7688852, 175.2603037667, "11"], +[-37.76839995, 175.26097665, "1"], +[-37.7685681667, 175.2607143, "5"], +[-37.76868665, 175.2605782167, "7"], +[-37.7686038333, 175.26019035, "8A"], +[-37.7684989667, 175.2603432333, "8"], +[-37.76885085, 175.2604647667, "9"], +[-37.7681679333, 175.26042125, "2/6"], +[-37.7683464167, 175.2605861, "1/6"], +[-37.7682565333, 175.2601199, "6A"], +[-37.7649904833, 175.2716201, "3A"], +[-37.7648644167, 175.2704329, "11"], +[-37.7643883667, 175.2707612, "8A"], +[-37.7649017667, 175.27101025, "7"], +[-37.7651143333, 175.2713544667, "5A"], +[-37.7650992167, 175.2711844167, "7A"], +[-37.7646788333, 175.2705118, "14"], +[-37.7649523333, 175.2717882, "1A"], +[-37.7647353667, 175.27171365, "1"], +[-37.76446165, 175.2714445333, "2"], +[-37.7647941167, 175.2714827, "3"], +[-37.7643112, 175.2711516167, "4A"], +[-37.7645118333, 175.2712195667, "4"], +[-37.7648459333, 175.2712542833, "5"], +[-37.7645618667, 175.2709986667, "6"], +[-37.7646118167, 175.2707765167, "8"], +[-37.7649629333, 175.2708007, "9"], +[-37.7638093667, 175.2701958, "10A"], +[-37.7642583167, 175.2703542167, "12"], +[-37.7642035, 175.2705642667, "10"], +[-37.7209622167, 175.2476090167, "20"], +[-37.7213559, 175.2492657333, "2"], +[-37.7218571333, 175.2491642833, "5"], +[-37.7215512333, 175.2495189667, "1"], +[-37.7208137333, 175.2476771, "18"], +[-37.7217417167, 175.2484928667, "15"], +[-37.7218823833, 175.2485872167, "13"], +[-37.72217325, 175.2485294, "11"], +[-37.7220663167, 175.2487447167, "9"], +[-37.72170235, 175.2493219333, "3"], +[-37.7216021, 175.2483480333, "17"], +[-37.7214256833, 175.2482581167, "19"], +[-37.7212676667, 175.24814075, "21"], +[-37.7211175167, 175.2480741333, "23"], +[-37.7210083833, 175.2483959833, "12"], +[-37.7211883333, 175.2485309, "10"], +[-37.7213829, 175.2486045667, "8"], +[-37.7215845333, 175.24876825, "6"], +[-37.7209246333, 175.2481351667, "14"], +[-37.72084475, 175.2479025333, "16"], +[-37.7215162833, 175.24905215, "4"], +[-37.8166715667, 175.2775512667, "16"], +[-37.8171278333, 175.2763196333, "9"], +[-37.8170450667, 175.2766956333, "11"], +[-37.8169871167, 175.2770451, "10"], +[-37.8168615333, 175.2772659833, "12"], +[-37.816913, 175.2767518833, "13"], +[-37.8167586, 175.27740175, "14"], +[-37.8167918167, 175.2768569, "15"], +[-37.8167171333, 175.2769526, "17"], +[-37.8166377333, 175.2778152667, "18"], +[-37.8166069167, 175.2771188167, "19A"], +[-37.8165015833, 175.2769427333, "19B"], +[-37.81765755, 175.27683875, "1"], +[-37.8165152667, 175.2776111667, "20"], +[-37.8164994, 175.2772285833, "21"], +[-37.8163986667, 175.2775452333, "22"], +[-37.8162275833, 175.27757645, "25"], +[-37.8163683833, 175.2773614333, "23"], +[-37.81756725, 175.2771471, "2"], +[-37.8175452, 175.2768105167, "3"], +[-37.8174593667, 175.2771126, "4"], +[-37.8173053667, 175.2767287167, "5"], +[-37.8172583, 175.2774515833, "6"], +[-37.8172325667, 175.2766872167, "7"], +[-37.81728165, 175.2770503333, "8"], +[-37.7550749667, 175.2039013, "156"], +[-37.7598736833, 175.2077941833, "91"], +[-37.7623432167, 175.2089937, "55"], +[-37.7579578, 175.2065757, "119"], +[-37.7614786167, 175.2086592167, "71"], +[-37.75959015, 175.2075047333, "95"], +[-37.7638219667, 175.2142382, "9"], +[-37.7604764667, 175.2087605667, "80"], +[-37.7582996333, 175.2074539667, "106"], +[-37.7579957167, 175.2072798833, "108"], +[-37.75619295, 175.2053381667, "134"], +[-37.76310685, 175.2086362833, "53B"], +[-37.7631832833, 175.2075025, "53C"], +[-37.7634030667, 175.20669905, "53D"], +[-37.7633146833, 175.2056241833, "53E"], +[-37.7631865, 175.2120640667, "27"], +[-37.7625339667, 175.2119375833, "36"], +[-37.76301665, 175.211126, "39"], +[-37.7629865167, 175.2099207667, "53A"], +[-37.76344525, 175.2134883, "17"], +[-37.7561603333, 175.2043691333, "153"], +[-37.7890665, 175.2641976, "30"], +[-37.7889693167, 175.2643201333, "30A"], +[-37.78716395, 175.2620538, "102"], +[-37.7880692333, 175.26283515, "70"], +[-37.7892830667, 175.26452185, "22"], +[-37.7895409167, 175.26482325, "10"], +[-37.78915855, 175.2643628833, "26"], +[-37.7882481167, 175.2631492667, "62"], +[-37.78839625, 175.2633774333, "42"], +[-37.7889419667, 175.2640114667, "38"], +[-37.7890134167, 175.2641161833, "36"], +[-37.7893999667, 175.2646817833, "14"], +[-37.7870128167, 175.26187405, "104"], +[-37.7885903, 175.2635847333, "40"], +[-37.78742805, 175.2624278, "88"], +[-37.7872523333, 175.2626027833, "92"], +[-37.7872949833, 175.2622167, "94"], +[-37.7872482333, 175.2621698667, "96"], +[-37.7879108667, 175.2626649, "80"], +[-37.7878512833, 175.2625709833, "82"], +[-37.7878093333, 175.2625271667, "84"], +[-37.7872141667, 175.2621179, "98"], +[-37.7257201667, 175.2466138333, "7"], +[-37.7260019333, 175.24779805, "12"], +[-37.7260279833, 175.2469400833, "4"], +[-37.7255361833, 175.2469240167, "11"], +[-37.7255736167, 175.2471566167, "15"], +[-37.7260632833, 175.2479968333, "14"], +[-37.72567065, 175.2476783667, "23"], +[-37.7260679167, 175.2481831667, "16"], +[-37.7258137833, 175.2465823167, "5"], +[-37.7261253833, 175.2484669167, "18"], +[-37.72616905, 175.2465619833, "1"], +[-37.7260027833, 175.2486757, "20"], +[-37.72560555, 175.2474499, "21"], +[-37.7259379333, 175.2483386, "22"], +[-37.7252386, 175.2469116167, "13"], +[-37.72575215, 175.2482314, "31"], +[-37.7262104167, 175.2469008167, "2"], +[-37.7257644167, 175.2479446833, "29"], +[-37.7254465667, 175.2478914333, "25"], +[-37.7254986167, 175.2480288167, "27"], +[-37.7253310333, 175.24745445, "19"], +[-37.72585615, 175.2469769667, "6"], +[-37.7253107, 175.2473075, "17"], +[-37.7258607, 175.2473708, "8"], +[-37.7259768, 175.2465663667, "3"], +[-37.7259236333, 175.2476013833, "10"], +[-37.7384933333, 175.2490124333, "23"], +[-37.73834405, 175.24887635, "22"], +[-37.7383951167, 175.2487219833, "24"], +[-37.7386019833, 175.2485230667, "26"], +[-37.7387289, 175.2485821667, "28"], +[-37.7385819167, 175.2488132, "27"], +[-37.7385404667, 175.2489111333, "25"], +[-37.7240161333, 175.2825582, "4"], +[-37.7242624333, 175.2824315167, "3"], +[-37.7240908333, 175.2827138833, "2"], +[-37.7243718, 175.2826115333, "1"], +[-37.728011, 175.2770275167, "1"], +[-37.7281061167, 175.2772123667, "3"], +[-37.7281289, 175.2774019833, "5"], +[-37.72829855, 175.2773507167, "7"], +[-37.7285080167, 175.27733055, "9"], +[-37.7286875667, 175.2772888667, "11"], +[-37.7288872333, 175.2772449667, "12"], +[-37.7288984167, 175.2770671333, "10"], +[-37.7288106, 175.2769159833, "8"], +[-37.7286136167, 175.2769940833, "6"], +[-37.7283284833, 175.2770687667, "4"], +[-37.7722802167, 175.23835395, "1"], +[-37.7723935, 175.2384494167, "2"], +[-37.77261045, 175.2384408667, "4"], +[-37.7725051333, 175.2385434, "3"], +[-37.7725451, 175.2383882167, "7"], +[-37.77258675, 175.23826755, "6"], +[-37.7726693333, 175.2383144167, "5"], +[-37.7268073167, 175.2487883333, "16"], +[-37.7265837167, 175.2479540333, "1"], +[-37.7272161333, 175.2490383667, "12"], +[-37.7264995667, 175.24814275, "3"], +[-37.72659235, 175.2491748833, "20"], +[-37.7264067667, 175.2483418167, "5"], +[-37.72726805, 175.2487741333, "8"], +[-37.7267856333, 175.24819995, "2"], +[-37.72639065, 175.2489183333, "11"], +[-37.7262395667, 175.2490756, "13"], +[-37.7267258, 175.24905425, "18"], +[-37.7266136333, 175.2484496333, "7"], +[-37.7270801667, 175.24866695, "6"], +[-37.72740635, 175.2489302333, "10"], +[-37.7269209833, 175.2484995333, "4"], +[-37.7265461833, 175.2487505833, "9"], +[-37.7270134833, 175.2489307, "14"], +[-37.7349365833, 175.2484632333, "26"], +[-37.7347008333, 175.24846255, "28"], +[-37.7344960167, 175.2484087667, "30"], +[-37.7343547833, 175.2483140833, "32"], +[-37.73413575, 175.24803805, "34"], +[-37.7347429667, 175.2481311667, "35"], +[-37.7335068333, 175.2479955333, "40"], +[-37.7343039167, 175.2477938833, "41"], +[-37.7343590167, 175.2474671333, "43"], +[-37.7341853333, 175.2476918, "45"], +[-37.73407415, 175.2476479833, "47"], +[-37.7334462833, 175.24767205, "50"], +[-37.73387465, 175.247622, "49"], +[-37.7336465333, 175.2476256333, "51"], +[-37.7358633333, 175.24915775, "11"], +[-37.7357383333, 175.24898415, "13"], +[-37.7356737333, 175.2487939, "15"], +[-37.7355166, 175.2488107333, "17"], +[-37.7352975333, 175.2487077667, "19"], +[-37.7352408333, 175.2490994167, "1"], +[-37.7350208167, 175.2488153667, "24"], +[-37.7354523, 175.2482999333, "27"], +[-37.7354322667, 175.2482214667, "29"], +[-37.7351457167, 175.24825355, "31"], +[-37.7352612333, 175.2489792333, "3"], +[-37.7354723667, 175.2489732833, "5"], +[-37.7356058667, 175.2490218833, "7"], +[-37.73573905, 175.2490907667, "9"], +[-37.73525575, 175.2484724833, "25"], +[-37.7339373833, 175.2479401667, "36"], +[-37.7332669833, 175.2478338833, "46"], +[-37.7332934833, 175.24794335, "42"], +[-37.7345825333, 175.2481218833, "37"], +[-37.7344282333, 175.2479574667, "39"], +[-37.73370325, 175.24797555, "38"], +[-37.7299733, 175.2594320667, "1"], +[-37.7301806, 175.2595961, "3"], +[-37.7301874667, 175.2593639667, "5"], +[-37.7302812, 175.2591922333, "8"], +[-37.7301199333, 175.25908115, "6"], +[-37.7299222833, 175.2590604667, "4"], +[-37.7298607167, 175.2591864333, "2"], +[-37.7230986, 175.2399052667, "1"], +[-37.7230572167, 175.2396583167, "3"], +[-37.7230557, 175.2393922, "5"], +[-37.7230446167, 175.2391403833, "7"], +[-37.7990515333, 175.3199643667, "3"], +[-37.7989968333, 175.3192162333, "10"], +[-37.7990351833, 175.3189594667, "12"], +[-37.79936395, 175.3191641167, "13"], +[-37.7991671, 175.318816, "14"], +[-37.7998259167, 175.3192422333, "15"], +[-37.7988086167, 175.3198412667, "4"], +[-37.7991162, 175.3197611, "5"], +[-37.7991968, 175.3195646667, "7"], +[-37.79887275, 175.3195993, "6"], +[-37.79894205, 175.3193989167, "8"], +[-37.7996053833, 175.3196012833, "9"], +[-37.7992820167, 175.3193360167, "11"], +[-37.7993176333, 175.31885255, "16"], +[-37.7994081167, 175.3189797333, "17"], +[-37.733497, 175.2580574333, "12"], +[-37.7329085167, 175.2577975333, "6"], +[-37.7332984333, 175.2579971, "10"], +[-37.7325522167, 175.2580485167, "11"], +[-37.7327685667, 175.2580836333, "13"], +[-37.7334979, 175.25829125, "14"], +[-37.7329794, 175.2582419667, "15"], +[-37.73323385, 175.2583614167, "17"], +[-37.7334056, 175.2584788167, "19"], +[-37.7326080667, 175.2572698667, "3"], +[-37.7328534167, 175.2574350667, "4"], +[-37.73251765, 175.2575044167, "5"], +[-37.7324186333, 175.25774215, "7"], +[-37.7331002333, 175.2579152333, "8"], +[-37.7323591833, 175.2579462667, "9"], +[-37.7604079, 175.2753625667, "19"], +[-37.76095635, 175.2759393, "4"], +[-37.7605469167, 175.27536345, "17"], +[-37.760692, 175.2754122167, "15"], +[-37.7602861167, 175.2754671167, "21"], +[-37.7602906167, 175.2756623333, "23"], +[-37.7603490333, 175.2758216667, "10"], +[-37.7608400667, 175.2754651333, "11"], +[-37.7611437, 175.27555365, "7"], +[-37.7607284167, 175.2758582667, "6"], +[-37.7605115167, 175.2758351167, "8"], +[-37.76098305, 175.2755096, "9"], +[-37.7357268333, 175.27715525, "25"], +[-37.7365751667, 175.2756099667, "16"], +[-37.7361452667, 175.2770095167, "28"], +[-37.7365065, 175.2758630667, "18"], +[-37.7364245167, 175.2761100667, "20"], +[-37.7361637, 175.2750857167, "3"], +[-37.73605065, 175.2771571, "30"], +[-37.7363522, 175.2751611167, "5"], +[-37.7354805833, 175.2771471, "23"], +[-37.7362678833, 175.2755572667, "7"], +[-37.7357744, 175.2767312833, "17"], +[-37.7361990333, 175.2758209667, "9"], +[-37.7355391667, 175.27670135, "19"], +[-37.73621335, 175.2747309833, "4"], +[-37.7362266333, 175.2768216, "26"], +[-37.7364025333, 175.2747744833, "6"], +[-37.7362946667, 175.2765977833, "24"], +[-37.73657485, 175.2748174, "10"], +[-37.7356325833, 175.2769482333, "21"], +[-37.7366572667, 175.2753200833, "14"], +[-37.7360305833, 175.27744455, "32"], +[-37.7366846667, 175.2750177833, "12"], +[-37.7363597333, 175.2763472833, "22"], +[-37.7366223167, 175.27468265, "8"], +[-37.7359391667, 175.2765949, "15"], +[-37.7360325667, 175.2763364667, "13"], +[-37.7358767167, 175.2772267, "34"], +[-37.7361013333, 175.2760772167, "11"], +[-37.7752040833, 175.2686103167, "4B"], +[-37.7751305667, 175.2686487, "4C"], +[-37.7749576667, 175.2684294, "10"], +[-37.7745251, 175.2677586667, "26"], +[-37.77515665, 175.2680502667, "14"], +[-37.7751702167, 175.2670845, "15A-15E"], +[-37.7752368167, 175.2684566833, "6"], +[-37.77544435, 175.2678494167, "7"], +[-37.7758201167, 175.2685634667, "3/1"], +[-37.7757591833, 175.2685975833, "2/1"], +[-37.7758810333, 175.26852935, "4/1"], +[-37.7757012667, 175.2686245833, "1/1"], +[-37.7756276667, 175.2684403, "5/1"], +[-37.7756935167, 175.2683991167, "6/1"], +[-37.7757619167, 175.2683736833, "7/1"], +[-37.7758257333, 175.26833845, "8/1"], +[-37.7750910833, 175.2669041167, "1/17-4/17"], +[-37.7752314667, 175.2672813333, "1/13-10/13"], +[-37.7755318333, 175.2680439167, "1/5-4/5"], +[-37.7750992333, 175.2678815833, "1/16-8/16"], +[-37.77474205, 175.2682253167, "18"], +[-37.7745512, 175.2678961833, "24"], +[-37.7746304333, 175.2680424167, "20"], +[-37.7744449, 175.2661547333, "44A-44H"], +[-37.7745886333, 175.2666146333, "1/40-8/40"], +[-37.7746541833, 175.26680655, "1/38-11/38"], +[-37.7743157167, 175.2674519833, "1/32A-8/32A"], +[-37.7755953667, 175.2682371667, "3A"], +[-37.77572555, 175.2682131667, "3B"], +[-37.7758442667, 175.2681546167, "3C"], +[-37.7750438333, 175.2667443667, "19A-19R"], +[-37.77481425, 175.2661659667, "33"], +[-37.7748825833, 175.2672821667, "30A"], +[-37.7747048833, 175.2673763667, "30D"], +[-37.7748144167, 175.2673097333, "30B"], +[-37.77475705, 175.2673461667, "30C"], +[-37.7747498, 175.2669205833, "36A"], +[-37.7745706167, 175.2670055167, "36D"], +[-37.7746775333, 175.2669558167, "36B"], +[-37.7746144167, 175.2669849667, "36C"], +[-37.77458085, 175.2673034333, "32"], +[-37.7748408167, 175.26717755, "30"], +[-37.7745550333, 175.26723615, "34"], +[-37.7745193167, 175.26640465, "42"], +[-37.7753149833, 175.2675029333, "11"], +[-37.7751622333, 175.2682260667, "12"], +[-37.7753793833, 175.2676778333, "9"], +[-37.77531435, 175.2686131833, "4A"], +[-37.77485545, 175.2674827333, "2/28"], +[-37.7747886, 175.2675284333, "3/28"], +[-37.77472435, 175.2675710167, "4/28"], +[-37.7746473, 175.2676195667, "5/28"], +[-37.7749394167, 175.2674333, "1/28"], +[-37.7746960667, 175.2677596167, "1/22"], +[-37.7748637, 175.2676985, "3/22"], +[-37.7750179667, 175.2676497667, "22B"], +[-37.7915196167, 175.2846506333, "16"], +[-37.7913453333, 175.284974, "12"], +[-37.7914354833, 175.2848067333, "14"], +[-37.7915981, 175.2845351333, "18"], +[-37.7916688167, 175.2844009833, "20"], +[-37.79110775, 175.2853908, "6"], +[-37.7911842833, 175.2852646, "8"], +[-37.7921433833, 175.2845105333, "19"], +[-37.79202765, 175.2847105167, "17"], +[-37.7916691, 175.2853205833, "11"], +[-37.7914152, 175.2857316, "5"], +[-37.7911281333, 175.2861178833, "1"], +[-37.79193195, 175.28488655, "15"], +[-37.7917612833, 175.2851795667, "13"], +[-37.79159415, 175.2854375833, "9"], +[-37.7916038667, 175.2861116333, "7"], +[-37.79182285, 175.2841385667, "24"], +[-37.79126385, 175.28513035, "10"], +[-37.7908969833, 175.2857136833, "2"], +[-37.79106375, 175.2854973833, "4"], +[-37.7912768333, 175.2859360833, "3"], +[-37.73538565, 175.2722829833, "42"], +[-37.7355587833, 175.2719862167, "40"], +[-37.7356124667, 175.2715785333, "29"], +[-37.7345449667, 175.27119865, "43A"], +[-37.7346233667, 175.2709539667, "43"], +[-37.73510795, 175.2722940333, "44"], +[-37.7347766667, 175.2724477667, "46"], +[-37.7355739, 175.2722187667, "40A"], +[-37.7349512333, 175.2723930333, "44A"], +[-37.7354312, 175.2716292, "31"], +[-37.73527905, 175.2717619167, "33"], +[-37.7350974333, 175.2718937, "35"], +[-37.73488725, 175.2716702333, "35A"], +[-37.7347857333, 175.2715492667, "35B"], +[-37.7348336167, 175.2720748167, "37"], +[-37.7345881, 175.2720768, "39"], +[-37.7342983167, 175.2722245167, "48"], +[-37.7341835333, 175.2724538, "46D"], +[-37.7361590667, 175.2721822, "26"], +[-37.7357668833, 175.2715880167, "27"], +[-37.7360440167, 175.27242305, "28"], +[-37.7350325333, 175.2692882833, "70"], +[-37.7346706833, 175.2707059167, "45"], +[-37.7358476667, 175.2723043833, "36"], +[-37.7359421833, 175.2727702, "32"], +[-37.7357970333, 175.2726796, "34"], +[-37.7348501167, 175.2694185333, "68"], +[-37.7347056333, 175.27043255, "47"], +[-37.7346679167, 175.2696132167, "66"], +[-37.7347589, 175.2701888, "49"], +[-37.7342846167, 175.2711752, "54"], +[-37.7343485167, 175.2709009833, "56"], +[-37.73439515, 175.27065215, "58"], +[-37.7344315333, 175.2704105167, "60"], +[-37.7344569, 175.27019225, "62"], +[-37.73451305, 175.2700146333, "64"], +[-37.73422465, 175.2718091, "50A"], +[-37.7342200833, 175.2720200667, "50"], +[-37.7342410333, 175.2715779167, "52"], +[-37.7370617833, 175.2721916667, "13"], +[-37.7373226333, 175.2725306667, "14"], +[-37.7368208, 175.2721705167, "15"], +[-37.737138, 175.2725709667, "16"], +[-37.7366013333, 175.2721237167, "17"], +[-37.7376695333, 175.2720131, "10"], +[-37.73726855, 175.2720992833, "11"], +[-37.7364461833, 175.2720063333, "19"], +[-37.7367295833, 175.2725312, "20"], +[-37.7362972833, 175.27184285, "21"], +[-37.7365099833, 175.2724844, "22"], +[-37.7361374, 175.2716989167, "23"], +[-37.7363340833, 175.27235315, "24"], +[-37.7359607167, 175.2716072167, "25"], +[-37.7361108333, 175.2727425833, "30"], +[-37.7376760167, 175.27067145, "1"], +[-37.7358803333, 175.2719483667, "38"], +[-37.73762415, 175.2708945, "3"], +[-37.7378436833, 175.2712056833, "4"], +[-37.7351568833, 175.26958165, "53"], +[-37.7353192667, 175.2694311833, "55"], +[-37.7354815167, 175.2692912833, "57"], +[-37.7356457833, 175.2691514333, "59"], +[-37.7358371, 175.2690230333, "61"], +[-37.73551505, 175.2688699333, "74"], +[-37.73778565, 175.2714748167, "6"], +[-37.7374567167, 175.27162945, "7"], +[-37.7377328167, 175.2717441667, "8"], +[-37.7356724333, 175.26876155, "76"], +[-37.73739385, 175.27187855, "9"], +[-37.7369387167, 175.27257765, "18"], +[-37.7345024667, 175.2717011333, "41"], +[-37.7345263833, 175.2714499667, "41A"], +[-37.7345376, 175.2724583833, "46A"], +[-37.73435955, 175.2725533, "46B"], +[-37.7342091167, 175.2725987333, "46C"], +[-37.7874297, 175.2817945167, "10"], +[-37.7878569167, 175.2823610667, "9"], +[-37.7877375167, 175.2825709333, "13"], +[-37.7870872333, 175.2824109, "2"], +[-37.7876554167, 175.28269145, "5"], +[-37.7876054667, 175.2827761333, "3"], +[-37.7871296, 175.28232655, "4"], +[-37.7872664333, 175.28206085, "8"], +[-37.7875495, 175.2815978667, "20"], +[-37.7874861667, 175.2816900333, "18"], +[-37.7873653, 175.2818835833, "14"], +[-37.7873186167, 175.2819522167, "12"], +[-37.7879857833, 175.2821330833, "11"], +[-37.7871943333, 175.2822077167, "6"], +[-37.72643165, 175.2403436333, "1"], +[-37.7268303667, 175.24059915, "3"], +[-37.7265737167, 175.2404627833, "2"], +[-37.7270255667, 175.2407368667, "4"], +[-37.7272176833, 175.2408913167, "5"], +[-37.7273400333, 175.2410569833, "6"], +[-37.72755365, 175.2413367667, "7"], +[-37.7275270833, 175.2410664667, "8"], +[-37.727528, 175.2408913167, "9"], +[-37.7273918167, 175.2407488167, "10"], +[-37.7272340167, 175.2406156667, "11"], +[-37.7270445667, 175.2404612833, "12"], +[-37.7499114, 175.2909327, "28"], +[-37.7502220833, 175.2914446333, "22"], +[-37.7514525167, 175.2922006, "1"], +[-37.7502864667, 175.29118525, "21"], +[-37.7503139, 175.2916432667, "20"], +[-37.75121095, 175.2922566167, "2"], +[-37.7497082667, 175.29057355, "32"], +[-37.7506075333, 175.2922009, "12"], +[-37.7506620833, 175.2922081667, "10"], +[-37.75101445, 175.2922945, "4"], +[-37.7498151333, 175.2907752667, "30"], +[-37.7509140167, 175.2917616167, "11"], +[-37.7507115333, 175.2917336833, "13"], +[-37.7506602333, 175.2919867333, "14"], +[-37.7505152167, 175.2915587333, "15"], +[-37.7505117167, 175.2919169167, "16"], +[-37.75045855, 175.2914320167, "17"], +[-37.7504102833, 175.29180505, "18"], +[-37.7504133333, 175.2913479333, "19"], +[-37.75015515, 175.2909788, "23"], +[-37.7501093, 175.29131475, "24"], +[-37.75001855, 175.2908735833, "25"], +[-37.749996, 175.2911188667, "26"], +[-37.7513581167, 175.29202965, "3"], +[-37.7512419667, 175.2919840667, "5"], +[-37.7509265167, 175.2922891333, "6"], +[-37.75097075, 175.2919749333, "7"], +[-37.7508104, 175.2921996167, "8"], +[-37.7509839833, 175.2917786667, "9"], +[-37.7495873667, 175.2904325333, "34"], +[-37.7495663, 175.2903406833, "36"], +[-37.7286695, 175.2628958333, "6"], +[-37.7284314833, 175.2623917167, "1"], +[-37.7284850667, 175.2629665667, "8"], +[-37.7283238, 175.2627906167, "5"], +[-37.7283910167, 175.2625994333, "3"], +[-37.7286446167, 175.2626802833, "4"], +[-37.7498316167, 175.2549079833, "1"], +[-37.7507394833, 175.2567469167, "25"], +[-37.7513747333, 175.2567715, "26"], +[-37.7497660833, 175.25516775, "3"], +[-37.75068955, 175.2575177833, "27"], +[-37.75089235, 175.2575086167, "27A"], +[-37.7499884, 175.2556433, "10"], +[-37.7495692, 175.2562686, "11"], +[-37.7497843, 175.2561883333, "11A"], +[-37.750109, 175.25595555, "12"], +[-37.7498062833, 175.25643275, "13"], +[-37.7504240833, 175.2561403667, "14"], +[-37.7499883333, 175.2563843333, "15"], +[-37.7501924667, 175.25656305, "17"], +[-37.7509216833, 175.2563661667, "18"], +[-37.75036545, 175.2567160167, "19"], +[-37.7506915167, 175.2562419333, "16"], +[-37.7511091, 175.2561732833, "20"], +[-37.7504765667, 175.2568271833, "21"], +[-37.7512223667, 175.25625205, "22"], +[-37.7505990833, 175.25677165, "23"], +[-37.7512067833, 175.2566123833, "24"], +[-37.7515467667, 175.2564933167, "28"], +[-37.75096575, 175.2568592333, "29"], +[-37.7501331, 175.2550332167, "2"], +[-37.7515419667, 175.2568516, "30"], +[-37.7510697833, 175.2571114, "31"], +[-37.7517972833, 175.25691505, "32"], +[-37.75118185, 175.257136, "33"], +[-37.7516490833, 175.25698985, "34"], +[-37.7512571, 175.2573812167, "35"], +[-37.7513858, 175.25701375, "37B"], +[-37.7513369833, 175.2570898833, "37"], +[-37.7501003667, 175.2552645, "4"], +[-37.7496894833, 175.2554846, "5"], +[-37.749664, 175.2557213167, "7"], +[-37.75026855, 175.2555524, "8"], +[-37.7497066333, 175.25597695, "9"], +[-37.7503090167, 175.2554121167, "6"], +[-37.8136759833, 175.28731175, "71"], +[-37.8124236167, 175.2882853, "54"], +[-37.8125683667, 175.2881266667, "54A"], +[-37.8102842333, 175.29043815, "24B"], +[-37.8105207167, 175.2911066, "23"], +[-37.81367895, 175.28634985, "72B"], +[-37.8138555167, 175.286459, "72A"], +[-37.8093854833, 175.2915772667, "8A"], +[-37.8095623833, 175.2917008, "8"], +[-37.8133255, 175.2877486833, "63"], +[-37.8130651167, 175.2874764, "62"], +[-37.8134399, 175.28804595, "61"], +[-37.8133088833, 175.2871831333, "66"], +[-37.8131878167, 175.28733385, "64"], +[-37.8141446667, 175.2863293667, "81"], +[-37.81091285, 175.2901017167, "32"], +[-37.8131109833, 175.2856059667, "88"], +[-37.8136295667, 175.2877273667, "67B"], +[-37.81355475, 175.2878665, "67A"], +[-37.8139575833, 175.2869008167, "75"], +[-37.8123054333, 175.28897145, "51"], +[-37.8094158, 175.2918813833, "6A"], +[-37.8092853167, 175.2916240167, "6"], +[-37.8121466833, 175.2895144667, "47A"], +[-37.8136780333, 175.2867477833, "70"], +[-37.81002885, 175.2911647167, "16"], +[-37.8136061167, 175.2873973667, "69"], +[-37.8134345167, 175.2870228333, "68"], +[-37.8134694167, 175.2875480833, "67"], +[-37.8096578833, 175.29219175, "9B"], +[-37.8129684167, 175.2845824167, "109"], +[-37.8129711667, 175.2848161, "111A"], +[-37.8129775833, 175.2849575167, "111B"], +[-37.8136014, 175.2853428167, "101"], +[-37.80968095, 175.2915857667, "10"], +[-37.8134287167, 175.2853220167, "103"], +[-37.8132902167, 175.2853001667, "105"], +[-37.8131549833, 175.28524525, "107"], +[-37.810291, 175.2914231833, "17"], +[-37.8098002, 175.29144195, "12"], +[-37.8099093, 175.2913117667, "14"], +[-37.8098249, 175.2919719667, "11"], +[-37.8101212667, 175.2910461833, "18"], +[-37.8103984833, 175.2912769333, "19"], +[-37.8102226667, 175.2909325167, "20"], +[-37.8103304, 175.2907950833, "22A"], +[-37.8101083, 175.29054335, "22B"], +[-37.8092385833, 175.2926154333, "1"], +[-37.8106759333, 175.29038125, "28"], +[-37.8104337667, 175.2906668833, "24"], +[-37.8108153, 175.2912425833, "25"], +[-37.8105631833, 175.2905074833, "26"], +[-37.8106779, 175.2909153, "27"], +[-37.8107834, 175.2902472833, "30"], +[-37.81102035, 175.2899470167, "34"], +[-37.8113151, 175.2901589833, "35A"], +[-37.8114574167, 175.2903639, "35B"], +[-37.8111425333, 175.2898133333, "36"], +[-37.81125885, 175.2896779833, "38"], +[-37.81171495, 175.2900514833, "39"], +[-37.8113619, 175.2895469667, "40"], +[-37.8116788333, 175.2897371333, "41"], +[-37.81181645, 175.28960745, "43"], +[-37.8114597667, 175.28942485, "42"], +[-37.8115600333, 175.2893152333, "44"], +[-37.8121285833, 175.2895822167, "45A"], +[-37.8119404167, 175.2894505333, "45"], +[-37.8116748833, 175.28917455, "46"], +[-37.8120787667, 175.2892850833, "47"], +[-37.81177395, 175.2890417167, "48"], +[-37.8121953667, 175.2891368333, "49"], +[-37.80915865, 175.2917848667, "4A"], +[-37.8118697667, 175.2889338, "50"], +[-37.8126819667, 175.28855535, "53"], +[-37.81299215, 175.2886922, "55B"], +[-37.8128054, 175.2884296333, "55"], +[-37.8126573667, 175.2879538, "56"], +[-37.8129159833, 175.2882264667, "57"], +[-37.8124954667, 175.2874511833, "58A"], +[-37.8127857667, 175.2877989, "58"], +[-37.8136181167, 175.2883420667, "59A"], +[-37.8134444833, 175.2887504667, "59"], +[-37.81291925, 175.2876523333, "60"], +[-37.80926435, 175.2920625667, "4"], +[-37.8140583167, 175.28674425, "77A"], +[-37.8142221167, 175.2868732833, "77B"], +[-37.8142836, 175.2866048167, "79A"], +[-37.8141236333, 175.2865501667, "79"], +[-37.81380955, 175.2859740667, "78"], +[-37.8144141833, 175.2862197, "83"], +[-37.8141290667, 175.2860738833, "89"], +[-37.8146049333, 175.28617485, "85"], +[-37.81369555, 175.2857820333, "80"], +[-37.8135437, 175.2857012167, "82"], +[-37.81340325, 175.2856653833, "84"], +[-37.8132544333, 175.2856286167, "86"], +[-37.8129615667, 175.2855829833, "90"], +[-37.8128802, 175.2854599333, "92A"], +[-37.8129811333, 175.2844185667, "109A"], +[-37.81128775, 175.29061185, "31A"], +[-37.80992455, 175.2926983667, "5"], +[-37.80953855, 175.29231765, "9A"], +[-37.8096385333, 175.2926884667, "3"], +[-37.8112269, 175.2902802333, "33"], +[-37.81278425, 175.28510525, "98"], +[-37.81285595, 175.2853038833, "96"], +[-37.8134070167, 175.28613255, "74B"], +[-37.81111155, 175.29042255, "31"], +[-37.8135426, 175.28621805, "74A"], +[-37.8127806667, 175.2854608333, "92B"], +[-37.8126812667, 175.2854714, "92C"], +[-37.81390635, 175.2855860833, "95"], +[-37.8138546833, 175.28535135, "97A"], +[-37.8138765667, 175.2851162333, "97B"], +[-37.8137288, 175.2853786, "99"], +[-37.8370657667, 175.3196327333, "1/35"], +[-37.83637145, 175.3190336167, "32"], +[-37.83700155, 175.3216693333, "2/33"], +[-37.83476865, 175.3183985, "4"], +[-37.8373925167, 175.32129615, "5/33"], +[-37.8347650667, 175.3212046167, "5/7"], +[-37.8372672333, 175.3229511167, "4/33"], +[-37.83436095, 175.3204469667, "3/7"], +[-37.8375516, 175.31972815, "2/35"], +[-37.83456225, 175.3206510333, "4/7"], +[-37.8370045167, 175.3206807333, "1/33"], +[-37.8348686667, 175.31948335, "2/7"], +[-37.8345164333, 175.3209144, "6/7"], +[-37.8347115667, 175.3193033167, "1/7"], +[-37.8371647167, 175.3222194833, "3/33"], +[-37.8358527333, 175.3188647333, "20"], +[-37.8351886833, 175.3193358, "9"], +[-37.7296660333, 175.2402824, "1"], +[-37.7300889667, 175.2408342333, "6"], +[-37.73006215, 175.2406294167, "4"], +[-37.7300165, 175.2410054333, "8"], +[-37.7299865833, 175.24044905, "2"], +[-37.7299178667, 175.2409414833, "10"], +[-37.7298866667, 175.2406150167, "12"], +[-37.7286735333, 175.2417905167, "19"], +[-37.7288051, 175.2419293, "21"], +[-37.7287473833, 175.2422225, "23"], +[-37.7289445, 175.2420206333, "25"], +[-37.7290771667, 175.2419381667, "27"], +[-37.72924665, 175.2419089667, "29"], +[-37.72942435, 175.24181495, "31"], +[-37.72955225, 175.2416282, "33"], +[-37.7293401667, 175.2413826333, "32"], +[-37.7285541167, 175.2415653167, "17"], +[-37.7295103167, 175.2404813, "3"], +[-37.7293106833, 175.2403012167, "5"], +[-37.7292340667, 175.2405069833, "7"], +[-37.7290759667, 175.2406624667, "9"], +[-37.7289307833, 175.2408442667, "11"], +[-37.7287886, 175.2410566, "13"], +[-37.72861995, 175.2412159833, "15"], +[-37.7294139167, 175.2408122667, "14"], +[-37.7292031833, 175.2410050167, "16"], +[-37.7290299667, 175.2412163333, "18"], +[-37.7288889667, 175.2415371833, "20"], +[-37.7296965, 175.2414853667, "35"], +[-37.7298002667, 175.2412978167, "37"], +[-37.7291710167, 175.2415637167, "30"], +[-37.7300386333, 175.2412708667, "39"], +[-37.72953415, 175.24116765, "34"], +[-37.77820695, 175.2951070833, "25"], +[-37.7787652667, 175.2934208167, "12"], +[-37.778637, 175.29447455, "22"], +[-37.7782744167, 175.2947467667, "23"], +[-37.7781824333, 175.2929592667, "5A"], +[-37.7784475, 175.2930012667, "5"], +[-37.7784298833, 175.2931694167, "7"], +[-37.7772980167, 175.29654725, "39"], +[-37.7784663667, 175.2927876833, "3"], +[-37.7783061, 175.2956680833, "32"], +[-37.7777813667, 175.2964006, "33"], +[-37.7779067833, 175.2960208833, "31"], +[-37.7783788, 175.2954255, "30"], +[-37.7782380833, 175.2958961833, "34"], +[-37.7781803, 175.2961189333, "36"], +[-37.7781193167, 175.29631865, "38"], +[-37.7780571167, 175.2965287333, "40"], +[-37.7790939833, 175.2932655333, "10C"], +[-37.7787994167, 175.2932099167, "10A"], +[-37.7789451, 175.2932482833, "10"], +[-37.77839485, 175.2935131, "11"], +[-37.7789737167, 175.2934779, "12A"], +[-37.7791493, 175.2934473833, "12B"], +[-37.7783740667, 175.2936941667, "13"], +[-37.7787016833, 175.2937264667, "14"], +[-37.7783493667, 175.2938846833, "15"], +[-37.7783345333, 175.2940849, "17"], +[-37.7786831167, 175.2938827667, "16"], +[-37.7786692, 175.2940595333, "18"], +[-37.7783235, 175.2942904, "19"], +[-37.7785212833, 175.2925598667, "1A"], +[-37.7785425, 175.2923335333, "1"], +[-37.7786547, 175.2942548, "20"], +[-37.7783047167, 175.2945222167, "21"], +[-37.7785987167, 175.29471025, "24"], +[-37.7785277333, 175.2949269333, "26"], +[-37.77845195, 175.29517765, "28"], +[-37.7788220333, 175.29266795, "2A"], +[-37.7788398333, 175.2924548333, "2"], +[-37.7791046167, 175.2929157167, "6A"], +[-37.7788082167, 175.2928468333, "6"], +[-37.7788085333, 175.2930441, "8"], +[-37.77841225, 175.2933417167, "9"], +[-37.77905755, 175.2930424, "8A"], +[-37.7780028667, 175.2967099833, "42"], +[-37.7776032, 175.2965385167, "35"], +[-37.77744755, 175.2965427667, "37"], +[-37.7771344667, 175.29642125, "41"], +[-37.7776181167, 175.2969048, "44"], +[-37.7774763667, 175.29691425, "46"], +[-37.7773103167, 175.29691225, "48"], +[-37.7790067833, 175.2937322167, "14A"], +[-37.7779857, 175.2957602333, "29"], +[-37.77811075, 175.2954553167, "27"], +[-37.7901045667, 175.2744935, "14A-14J"], +[-37.7912630667, 175.2741919833, "32"], +[-37.79026035, 175.2739480167, "1/20"], +[-37.7899901, 175.2746095167, "10"], +[-37.7902930667, 175.2747818667, "16"], +[-37.7904543167, 175.2742162667, "1/22-11/22"], +[-37.7899336667, 175.2741777, "12"], +[-37.7904311667, 175.27465735, "18"], +[-37.7906916, 175.2745278167, "24"], +[-37.7907593833, 175.2741088, "26"], +[-37.79099605, 175.2743092, "28"], +[-37.7899601833, 175.2749851167, "6"], +[-37.78978775, 175.2750906, "4A-4E"], +[-37.7900911, 175.2749208, "8A"], +[-37.79052915, 175.27451185, "24A"], +[-37.7900765, 175.2747751, "8"], +[-37.7903955167, 175.2737494667, "2/20"], +[-37.80060525, 175.3168251833, "174A"], +[-37.80305895, 175.3230409, "290B"], +[-37.79982655, 175.3182481, "183"], +[-37.8041359833, 175.3248911833, "318A"], +[-37.8020606167, 175.32418005, "287B"], +[-37.804007, 175.32471695, "316"], +[-37.7982011833, 175.3140885, "86A"], +[-37.79750345, 175.3131638167, "71"], +[-37.7975218333, 175.3132768, "73"], +[-37.7978752333, 175.3131999333, "74A"], +[-37.7979045667, 175.3133527, "74B"], +[-37.7980837833, 175.3135018667, "82A"], +[-37.8015702167, 175.3199960167, "218A-218D"], +[-37.8010548167, 175.3199926167, "216A"], +[-37.8012934, 175.3199839833, "216B"], +[-37.800625, 175.3203356167, "211"], +[-37.80066725, 175.3222223667, "247"], +[-37.8001102, 175.3225432333, "251B"], +[-37.8003286667, 175.3201752833, "209"], +[-37.8015702667, 175.3237841667, "281A"], +[-37.8008583, 175.3181381333, "192A"], +[-37.8004614333, 175.3190471333, "199"], +[-37.8002777667, 175.3192450167, "199A"], +[-37.8002400833, 175.3195757333, "201B"], +[-37.80032095, 175.3194653667, "201A"], +[-37.8005164333, 175.3192883167, "201"], +[-37.80060735, 175.3196305833, "207"], +[-37.8004531, 175.3198466833, "207A"], +[-37.80035855, 175.3197239333, "207B"], +[-37.8034996667, 175.3249571667, "311"], +[-37.80368275, 175.32448235, "310"], +[-37.79731285, 175.3109683333, "39"], +[-37.7972836833, 175.3111402, "43"], +[-37.7973355833, 175.3105485167, "31"], +[-37.79774375, 175.3104940833, "32"], +[-37.797718, 175.3106773333, "34"], +[-37.8000217167, 175.3186876833, "189C"], +[-37.7998853, 175.3187692667, "189D"], +[-37.8001476333, 175.3185711333, "189B"], +[-37.8046099833, 175.3260719167, "335"], +[-37.79853065, 175.3157386167, "113"], +[-37.7981831333, 175.3160702, "111"], +[-37.7984209333, 175.3158982167, "115"], +[-37.7991371167, 175.31576555, "136"], +[-37.7990056833, 175.3156415333, "128"], +[-37.7993951167, 175.3173861167, "167B"], +[-37.8006303, 175.3165678833, "170B"], +[-37.8003959833, 175.3166836833, "170A"], +[-37.8043443, 175.3247579167, "318"], +[-37.7975965333, 175.3114425333, "48"], +[-37.80025085, 175.3176345833, "180"], +[-37.8000226333, 175.3179776833, "181"], +[-37.8006694, 175.31725985, "182A"], +[-37.80072135, 175.3175121333, "182B"], +[-37.8003378, 175.3178100333, "182"], +[-37.8001263167, 175.3181873667, "185"], +[-37.8004129, 175.3179782667, "186"], +[-37.79972755, 175.3185848667, "187"], +[-37.8002344333, 175.3184191333, "189A"], +[-37.8050192667, 175.3258556167, "340"], +[-37.8052586667, 175.3261349833, "342"], +[-37.8014241167, 175.3233490833, "277"], +[-37.80447755, 175.3259291667, "329"], +[-37.80073025, 175.31867955, "198"], +[-37.8010307833, 175.3194585667, "208"], +[-37.80038915, 175.3187935167, "193"], +[-37.79962465, 175.31721125, "167A"], +[-37.8009397167, 175.3183130667, "194A"], +[-37.79933255, 175.3171025833, "163A"], +[-37.7999078833, 175.3177673833, "177"], +[-37.8002096667, 175.31686155, "170C"], +[-37.7999565333, 175.3188918833, "189E"], +[-37.8004495667, 175.3175492, "180A"], +[-37.80419475, 175.3259982, "327A"], +[-37.8045496667, 175.3263489833, "335A"], +[-37.8050043833, 175.3279435667, "355"], +[-37.8050650833, 175.32735555, "363"], +[-37.80509955, 175.3275571, "361"], +[-37.80510265, 175.3277117, "359"], +[-37.805093, 175.3279815167, "357"], +[-37.7993165833, 175.31597045, "150A"], +[-37.7995580667, 175.3158128667, "150"], +[-37.7998339, 175.3161239333, "3/158"], +[-37.8017776833, 175.3238987333, "283A"], +[-37.8022626667, 175.32438135, "291A"], +[-37.8049206167, 175.3250807333, "326A"], +[-37.8002331667, 175.3166108, "168"], +[-37.8040554167, 175.3258723667, "325B"], +[-37.8028807167, 175.3234368, "290"], +[-37.80019055, 175.3222811667, "251A"], +[-37.8006706, 175.32260705, "3/257"], +[-37.8005949833, 175.3224852167, "2/257"], +[-37.8004896167, 175.3224509333, "1/257"], +[-37.7989489833, 175.3161572333, "145"], +[-37.79924365, 175.3156878667, "140"], +[-37.7990688667, 175.3157016333, "134"], +[-37.7977702333, 175.3146314333, "93"], +[-37.8052532333, 175.3278559, "357A"], +[-37.8029303, 175.3230707167, "290A"], +[-37.7981441667, 175.3145347, "96"], +[-37.7981055333, 175.3143077, "92"], +[-37.8050272, 175.3269112833, "343"], +[-37.80073545, 175.3179862333, "190A"], +[-37.8050426333, 175.3278129833, "353"], +[-37.80496845, 175.3275314833, "351"], +[-37.8021923667, 175.32430695, "289A"], +[-37.79820505, 175.3147993333, "100"], +[-37.79765935, 175.3119200667, "52"], +[-37.7980557, 175.3140996, "86"], +[-37.7977017333, 175.3143099167, "87"], +[-37.7975715333, 175.3135486667, "75"], +[-37.7979584167, 175.3135388333, "82"], +[-37.7980131667, 175.3138289667, "84"], +[-37.7981383167, 175.3153753667, "101A"], +[-37.7980462333, 175.3156701833, "101"], +[-37.7979669167, 175.3157787667, "103"], +[-37.79837195, 175.31502545, "108"], +[-37.7983371167, 175.3155637167, "109"], +[-37.79852545, 175.3151683167, "110"], +[-37.7981752833, 175.3163377167, "117"], +[-37.7986715333, 175.3153353667, "120"], +[-37.7988096167, 175.3154738, "124"], +[-37.7985107333, 175.3160378, "129"], +[-37.7993461333, 175.3156339667, "146"], +[-37.7996692333, 175.31547245, "148"], +[-37.79979445, 175.3157267833, "152"], +[-37.7992118333, 175.3164025, "153"], +[-37.7995359333, 175.3161278667, "158A"], +[-37.7997156833, 175.3162222333, "158B"], +[-37.7998035167, 175.3162306167, "158D"], +[-37.7996717167, 175.3164071333, "160"], +[-37.7994580333, 175.31680245, "161"], +[-37.8002442667, 175.3161082667, "162A"], +[-37.80005785, 175.3162116, "162"], +[-37.79955345, 175.3169820833, "163"], +[-37.80304875, 175.3250802, "305A"], +[-37.8032238167, 175.3250596833, "309B"], +[-37.8031180667, 175.3252680833, "309C"], +[-37.8033785167, 175.3253285167, "311B"], +[-37.80343965, 175.3253525333, "313A"], +[-37.8036306, 175.3250630333, "313"], +[-37.80375935, 175.3251348167, "315A"], +[-37.8036023667, 175.3253507833, "315B"], +[-37.8038279167, 175.3254843333, "317A"], +[-37.80388555, 175.3252526167, "317"], +[-37.80398225, 175.3253348167, "319A"], +[-37.8038270333, 175.3256104833, "319B"], +[-37.8040449833, 175.3257702667, "321B"], +[-37.8041103833, 175.3254659, "321"], +[-37.8044239833, 175.3251360833, "322"], +[-37.8045571333, 175.3265167167, "337A"], +[-37.80475555, 175.32628365, "337"], +[-37.8047095833, 175.3266377833, "339A"], +[-37.8048508667, 175.3264949167, "339"], +[-37.8049363333, 175.3266917833, "341"], +[-37.80490845, 175.3275136, "345"], +[-37.8055832333, 175.3259819, "346"], +[-37.8004223, 175.3165082, "168A"], +[-37.80060725, 175.3200434333, "209A"], +[-37.8003332167, 175.3170006833, "174B"], +[-37.8030031167, 175.32454795, "301"], +[-37.8014954667, 175.3237419, "279A"], +[-37.8013482667, 175.3235629833, "277A"], +[-37.8013750333, 175.3226088333, "276"], +[-37.8010293, 175.3196342667, "212"], +[-37.8015691167, 175.3234767333, "279"], +[-37.8006602833, 175.3217307333, "239"], +[-37.8001156333, 175.3188056667, "191A"], +[-37.8006672667, 175.3219726167, "241"], +[-37.8044928333, 175.3246972167, "320A"], +[-37.8003740667, 175.3216492833, "237"], +[-37.8006323667, 175.32095345, "223-231"], +[-37.8006445, 175.3215217167, "233"], +[-37.7998809167, 175.3168132667, "166"], +[-37.8010392667, 175.3198052333, "214"], +[-37.8047831, 175.3255721833, "328"], +[-37.8010463833, 175.3203432667, "218"], +[-37.797688, 175.3121199333, "54"], +[-37.7977742833, 175.3125544667, "56"], +[-37.7972546, 175.3114454333, "51"], +[-37.7976214167, 175.31169285, "50"], +[-37.7973568667, 175.3123593167, "57"], +[-37.79743685, 175.3128883833, "67"], +[-37.7978176833, 175.3127871667, "58"], +[-37.7973971, 175.3126013667, "63"], +[-37.8011709333, 175.3194652, "208A"], +[-37.8048969, 175.32570635, "330"], +[-37.8017405667, 175.3223058667, "280"], +[-37.8000668333, 175.3167169, "166B"], +[-37.7997967833, 175.3166301667, "164"], +[-37.801699, 175.3235579333, "281"], +[-37.80124215, 175.3223150833, "274"], +[-37.8018528, 175.32366045, "283"], +[-37.8020214167, 175.32380385, "285"], +[-37.7972253833, 175.3131502833, "69"], +[-37.7999866167, 175.3170505167, "170"], +[-37.79971545, 175.3173981833, "171"], +[-37.79980955, 175.31758475, "173"], +[-37.8000308167, 175.3172440833, "174"], +[-37.8004074667, 175.3171910667, "176A"], +[-37.8006629833, 175.3170685167, "176B"], +[-37.8023830833, 175.3234476833, "286"], +[-37.80015335, 175.3174690833, "176"], +[-37.8004991333, 175.3181569167, "190"], +[-37.8003053833, 175.3186245, "191"], +[-37.80058165, 175.3183281333, "192"], +[-37.8006728833, 175.3185033167, "194"], +[-37.8003661167, 175.32223965, "249"], +[-37.8003706333, 175.3223541667, "253"], +[-37.80110015, 175.3219594, "270"], +[-37.8030130833, 175.3232550667, "290C"], +[-37.80227785, 175.32399925, "289"], +[-37.8027573833, 175.32371485, "292"], +[-37.8024119667, 175.3241056833, "291"], +[-37.8025831667, 175.3242165, "293"], +[-37.8021526833, 175.3239265333, "287"], +[-37.8025712167, 175.32457945, "295A"], +[-37.8027635667, 175.3243576, "295B"], +[-37.8026877333, 175.3247439333, "297A"], +[-37.8028600167, 175.3244610833, "297"], +[-37.8029185333, 175.32387035, "300A"], +[-37.8029913833, 175.3236051333, "300"], +[-37.8032599, 175.3231244833, "302B"], +[-37.80331505, 175.3230035, "302C"], +[-37.8032533833, 175.3234078833, "302"], +[-37.8031166167, 175.3246567333, "303"], +[-37.8031420833, 175.3240581833, "304A"], +[-37.8032600167, 175.3241541667, "304B"], +[-37.80302935, 175.3239757, "304"], +[-37.8032443, 175.32475475, "305"], +[-37.8033923167, 175.32425715, "306"], +[-37.8035329333, 175.3243852667, "308"], +[-37.8033720833, 175.3248585667, "309A"], +[-37.8043191667, 175.3250049, "320"], +[-37.80465755, 175.32491705, "322A"], +[-37.8045429333, 175.3252868333, "324"], +[-37.8042247167, 175.3256084333, "325"], +[-37.8046604667, 175.32541195, "326"], +[-37.8043486667, 175.3257756, "327"], +[-37.72832665, 175.2566263333, "19"], +[-37.7290058833, 175.2563739167, "4"], +[-37.7286710333, 175.2568145667, "10"], +[-37.7286982333, 175.2570237667, "12"], +[-37.7284911, 175.2558882333, "13"], +[-37.7285328, 175.2569753333, "14"], +[-37.7284232, 175.2560937667, "15"], +[-37.72837045, 175.2563534167, "17"], +[-37.72849865, 175.25569045, "11"], +[-37.7282521, 175.2568166, "21"], +[-37.7283838, 175.2569280167, "23"], +[-37.7291583333, 175.2560844667, "3"], +[-37.7290490167, 175.2559298667, "5"], +[-37.7286781333, 175.2561367333, "6"], +[-37.7288782833, 175.2558441833, "7"], +[-37.7286584667, 175.2565120333, "8"], +[-37.7286655833, 175.2557947667, "9"], +[-37.772896, 175.2831567667, "4"], +[-37.7728865167, 175.2830293667, "3"], +[-37.7728033833, 175.28310205, "2"], +[-37.7730179667, 175.28322715, "6"], +[-37.7729949, 175.28308195, "5"], +[-37.7730711833, 175.283132, "7"], +[-37.7728038, 175.2829974667, "1"], +[-37.80597515, 175.31864165, "8"], +[-37.8056687833, 175.3190280333, "4"], +[-37.80583745, 175.3189835833, "6"], +[-37.8056509167, 175.3194051833, "3"], +[-37.8056618, 175.3196081833, "3A"], +[-37.8061728333, 175.3184943333, "14"], +[-37.8061886333, 175.31947055, "7A"], +[-37.8059683667, 175.319383, "7"], +[-37.8058099, 175.3193639667, "5"], +[-37.8060481167, 175.3183035833, "10"], +[-37.8063652, 175.3183058333, "12"], +[-37.8061339, 175.3191540667, "9"], +[-37.80551625, 175.3190658833, "2"], +[-37.8055039333, 175.3194167333, "1"], +[-37.8061443667, 175.3186878333, "16"], +[-37.8061194167, 175.3189071, "18"], +[-37.7260296167, 175.2781443833, "66B"], +[-37.7285262333, 175.2763551333, "31"], +[-37.7270243667, 175.2769285167, "53"], +[-37.7288412833, 175.2765783833, "26"], +[-37.7264948333, 175.2770670333, "61"], +[-37.7286998167, 175.2766333167, "28"], +[-37.72731645, 175.2768318, "49"], +[-37.72854755, 175.2766676, "30"], +[-37.72665905, 175.27702635, "59"], +[-37.7283837333, 175.27671825, "32"], +[-37.7279327667, 175.2765827167, "41"], +[-37.7282396333, 175.2767920667, "34"], +[-37.7276628333, 175.2766978833, "45"], +[-37.7277738333, 175.2770039333, "40"], +[-37.7268658833, 175.2769658167, "55"], +[-37.7278322833, 175.2773004, "42"], +[-37.7278076833, 175.27663885, "43"], +[-37.7278683167, 175.27750085, "44"], +[-37.7271490833, 175.2768900833, "51"], +[-37.7277384167, 175.2775274333, "46"], +[-37.7261996167, 175.2774596, "66"], +[-37.7276797667, 175.2773486333, "48"], +[-37.7274893833, 175.27677725, "47"], +[-37.7275888833, 175.2771128333, "50"], +[-37.7287386167, 175.2762846333, "29"], +[-37.7301853, 175.2758139667, "5"], +[-37.7303267833, 175.2757888, "3"], +[-37.72993635, 175.2759050667, "9"], +[-37.7300644, 175.27585305, "7"], +[-37.7291744167, 175.2761689167, "21"], +[-37.72904935, 175.2762087, "23"], +[-37.7289300667, 175.2762416167, "25"], +[-37.72875975, 175.27600715, "27"], +[-37.7299769167, 175.2761978667, "12"], +[-37.7298515667, 175.2762398167, "14"], +[-37.7296928667, 175.2763014, "16"], +[-37.72952505, 175.2763603667, "18"], +[-37.7293664833, 175.27641505, "20"], +[-37.72920055, 175.27647175, "22"], +[-37.7290274167, 175.2765256667, "24"], +[-37.7293951667, 175.2760901167, "17"], +[-37.7294925333, 175.2760388833, "15"], +[-37.7304530333, 175.2757509667, "1"], +[-37.7292854, 175.2761339333, "19"], +[-37.7253056333, 175.27508205, "16/71"], +[-37.7254326, 175.2751515, "15/71"], +[-37.72580365, 175.27594095, "68/71"], +[-37.7258309667, 175.2760354667, "67/71"], +[-37.7260091333, 175.2760271667, "66/71"], +[-37.7259769, 175.2762757167, "65/71"], +[-37.7263424833, 175.2768784167, "63A"], +[-37.7263206167, 175.2770455, "63"], +[-37.7258820333, 175.2787276333, "66A"], +[-37.7247993167, 175.2771535667, "78"], +[-37.7249383833, 175.2776050167, "86"], +[-37.7248150833, 175.2776971667, "90"], +[-37.7246044, 175.2772434667, "94"], +[-37.7264026833, 175.2767174167, "63B"], +[-37.7298281667, 175.2759384, "11"], +[-37.72598185, 175.2773454667, "68"], +[-37.7254011333, 175.2771678, "72"], +[-37.7261766333, 175.2255113167, "1340"], +[-37.7406121667, 175.2386677, "169"], +[-37.7404250333, 175.2386319833, "171"], +[-37.7395176333, 175.2388804333, "172"], +[-37.74027395, 175.23858745, "173"], +[-37.7393549333, 175.2388113833, "174"], +[-37.7401147, 175.2385576667, "175"], +[-37.7391697167, 175.23876715, "176"], +[-37.7399437333, 175.23851255, "177"], +[-37.7397806667, 175.2384726833, "179"], +[-37.7428994, 175.2397429833, "136A"], +[-37.7428561667, 175.2399816833, "136B"], +[-37.7427759833, 175.2392148167, "137"], +[-37.7427355, 175.2397524, "138"], +[-37.7426321667, 175.2391708667, "139"], +[-37.7425810333, 175.2397183833, "140"], +[-37.7424807, 175.23913905, "141"], +[-37.74240945, 175.2396673167, "142"], +[-37.74233025, 175.2391050333, "143"], +[-37.7421805167, 175.2390656333, "145"], +[-37.7420736667, 175.2397615833, "146"], +[-37.7420378167, 175.2390342667, "147"], +[-37.7418987167, 175.23899385, "149"], +[-37.7266442833, 175.2255317167, "1331"], +[-37.7496536167, 175.24071975, "19"], +[-37.7502661167, 175.2407871, "5/11"], +[-37.7503906667, 175.2408118833, "11"], +[-37.75069935, 175.2406486167, "5"], +[-37.7505571, 175.24036445, "7"], +[-37.75034865, 175.2403634167, "9"], +[-37.7508651833, 175.2405352667, "3"], +[-37.7506811167, 175.2411710833, "10B"], +[-37.7507231333, 175.2411631, "10C"], +[-37.7512161667, 175.2407998, "4"], +[-37.75154255, 175.2408749667, "2/2"], +[-37.7518106833, 175.2414670833, "8/2"], +[-37.7397324, 175.2389052167, "170"], +[-37.7396252, 175.2391179667, "170A"], +[-37.7421472667, 175.239764, "144B"], +[-37.7422453667, 175.2396062667, "144A"], +[-37.7435071333, 175.2394122667, "123"], +[-37.7441023, 175.2395647833, "115"], +[-37.7459366833, 175.2399898167, "89"], +[-37.7235444667, 175.2184564667, "1406"], +[-37.7436294833, 175.2399389333, "124"], +[-37.7338021333, 175.23474005, "281"], +[-37.73858695, 175.2382054333, "191"], +[-37.7434295667, 175.2398856167, "122"], +[-37.7456297, 175.2399180167, "95"], +[-37.74545975, 175.23987365, "97"], +[-37.73425035, 175.2333147667, "265"], +[-37.7245931667, 175.2199929333, "1388B"], +[-37.7246768833, 175.2199607833, "1388A"], +[-37.74981255, 175.2407402667, "17"], +[-37.7433615333, 175.23937825, "129"], +[-37.74580205, 175.2399549833, "93"], +[-37.7499422333, 175.24076755, "15"], +[-37.7430612, 175.2393049833, "133"], +[-37.7432066167, 175.2393366833, "131"], +[-37.7429169167, 175.2392569667, "135"], +[-37.7431139833, 175.2397814833, "130A"], +[-37.7431971667, 175.2400944667, "130B-130G"], +[-37.74917955, 175.2410587833, "48"], +[-37.7492955833, 175.2410600167, "44"], +[-37.7494020167, 175.2410617167, "42"], +[-37.7514210167, 175.24064665, "2"], +[-37.7489668667, 175.2405308667, "35"], +[-37.7492846, 175.2406182833, "31"], +[-37.7491392333, 175.2405793167, "33"], +[-37.7494471167, 175.2406492667, "29"], +[-37.7415977833, 175.2389182333, "153"], +[-37.7277739167, 175.2269947333, "1303"], +[-37.7276077167, 175.2267977333, "1305"], +[-37.7341553, 175.23314995, "267"], +[-37.7340539333, 175.23329225, "269"], +[-37.7341334667, 175.2335967833, "271"], +[-37.73409485, 175.2338166833, "273"], +[-37.7340345167, 175.2340466333, "275"], +[-37.7339573, 175.2342652333, "277"], +[-37.7338796667, 175.23450545, "279"], +[-37.7439184333, 175.2400195167, "116"], +[-37.7439584833, 175.2395246833, "117"], +[-37.7437898667, 175.2399771167, "118"], +[-37.7438153, 175.2394860333, "119"], +[-37.7436840333, 175.23947585, "121"], +[-37.7433748167, 175.2400979, "122A"], +[-37.7443819667, 175.2396475667, "111"], +[-37.73808285, 175.2380765833, "197"], +[-37.7379287333, 175.2379508833, "199"], +[-37.7372892, 175.2374783667, "205"], +[-37.7371210167, 175.2373453167, "207"], +[-37.7369675667, 175.2371982167, "209"], +[-37.7367356833, 175.23692825, "213"], +[-37.7366256, 175.2367862, "215"], +[-37.7368513833, 175.2370741333, "211"], +[-37.73650715, 175.2366292333, "217"], +[-37.7363941833, 175.2364870667, "219"], +[-37.7451805333, 175.2402759667, "100"], +[-37.75010725, 175.2407902333, "13"], +[-37.7501497333, 175.2411750333, "14"], +[-37.7506378167, 175.2411954167, "10"], +[-37.7505009167, 175.2412141167, "12"], +[-37.7495205667, 175.2410764167, "40"], +[-37.7389954, 175.23872285, "178"], +[-37.72451085, 175.21887335, "1397"], +[-37.7382585, 175.2381255667, "195"], +[-37.7417504833, 175.2389499833, "151"], +[-37.7396023667, 175.23846045, "181"], +[-37.738414, 175.2381670667, "193"], +[-37.7388386, 175.2386805667, "180"], +[-37.7380978333, 175.2384938333, "194"], +[-37.7387508167, 175.2382653833, "189"], +[-37.7389065, 175.2382995333, "187"], +[-37.7362783667, 175.23634115, "221"], +[-37.74970175, 175.2410915333, "38"], +[-37.7356788167, 175.2356759333, "231"], +[-37.7378315, 175.2383395667, "198"], +[-37.73793315, 175.23841665, "196"], +[-37.7440451, 175.2400478333, "114"], +[-37.7359511333, 175.23590765, "227"], +[-37.7446479667, 175.2401253167, "112"], +[-37.7360611833, 175.2360497667, "225"], +[-37.7361684167, 175.23619175, "223"], +[-37.7248292, 175.2204989833, "1382"], +[-37.7407941833, 175.2392029667, "158"], +[-37.73990185, 175.2389635833, "168"], +[-37.74143895, 175.2388795333, "155"], +[-37.7412930667, 175.2388298167, "157"], +[-37.7406255667, 175.23915985, "160"], +[-37.7251083333, 175.2222498, "1370"], +[-37.7407800667, 175.2387035167, "167"], +[-37.7442473, 175.2396036333, "113"], +[-37.72498505, 175.22145245, "1376"], +[-37.7251475333, 175.2225882833, "1366"], +[-37.7250290667, 175.2217002833, "1374"], +[-37.7255269333, 175.2245890167, "1348"], +[-37.7358234667, 175.2357794833, "229"], +[-37.74043945, 175.2390919, "162"], +[-37.7402692667, 175.2390526, "164"], +[-37.7400821833, 175.23900355, "166"], +[-37.7699999667, 175.2618709, "42"], +[-37.7710954333, 175.2624253667, "24A"], +[-37.7700140833, 175.2620315167, "42A"], +[-37.7708246167, 175.26219935, "28"], +[-37.7708174167, 175.2617069667, "29"], +[-37.7700695833, 175.2620525667, "40A"], +[-37.7701765, 175.2619535333, "40"], +[-37.7715921667, 175.2618319, "17A"], +[-37.7711365, 175.2610482167, "31A"], +[-37.7702525, 175.2615610333, "37"], +[-37.7710386, 175.26178555, "25"], +[-37.7710535667, 175.26228195, "24"], +[-37.77204685, 175.2619358, "9"], +[-37.77179815, 175.2620634333, "11"], +[-37.7717522833, 175.2624649167, "12"], +[-37.7718811, 175.2608494667, "13A"], +[-37.7716036333, 175.26101105, "13B"], +[-37.7718040167, 175.2609865833, "13"], +[-37.7715176833, 175.2626529333, "14"], +[-37.7715715667, 175.2615633167, "15A"], +[-37.7716628667, 175.2614131167, "15"], +[-37.7714831833, 175.26237895, "16"], +[-37.77146165, 175.26194895, "17"], +[-37.7722995167, 175.2623178, "1"], +[-37.7711611167, 175.2625867167, "20A"], +[-37.7712589333, 175.2623508, "20"], +[-37.7712226167, 175.2617029667, "21A"], +[-37.7712560667, 175.2618819, "21"], +[-37.7709832833, 175.2609533833, "31"], +[-37.7706187167, 175.2621221667, "32A"], +[-37.7705184833, 175.2621993333, "32B"], +[-37.7711006667, 175.2611747833, "33A"], +[-37.7709076, 175.2612040833, "33"], +[-37.7704625667, 175.2622044833, "34"], +[-37.77049215, 175.2615973667, "35A"], +[-37.7706456833, 175.26148205, "35B"], +[-37.77044865, 175.2620356667, "36"], +[-37.7722155833, 175.2622865667, "5"], +[-37.7720210333, 175.2621402667, "7"], +[-37.77187695, 175.2627461833, "8A"], +[-37.7719739167, 175.2625296833, "8"], +[-37.7709406833, 175.2615415167, "27"], +[-37.7903576667, 175.2783765667, "121C"], +[-37.7932277, 175.2817221333, "79"], +[-37.7903026333, 175.2784682833, "121B"], +[-37.7927952667, 175.2814927, "83A"], +[-37.7902476167, 175.2785581833, "121A"], +[-37.79281545, 175.2814422833, "83B"], +[-37.79283915, 175.2813863167, "83C"], +[-37.7846827167, 175.2741118667, "226"], +[-37.7845555667, 175.2739894167, "234"], +[-37.7843766333, 175.27383315, "240"], +[-37.7834368667, 175.2729699333, "290"], +[-37.7833026, 175.2728379667, "298"], +[-37.78316665, 175.27271565, "306"], +[-37.7910756167, 175.2805063, "98"], +[-37.79201975, 175.28136755, "84"], +[-37.7920815167, 175.2809175167, "85"], +[-37.7913318667, 175.2803874833, "100"], +[-37.7824997333, 175.2720656833, "360"], +[-37.78653195, 175.2757558833, "130"], +[-37.7848981167, 175.27428595, "220"], +[-37.7851149667, 175.2738873, "229"], +[-37.7898368167, 175.2782110167, "133"], +[-37.7906749167, 175.2790364833, "103"], +[-37.7841938333, 175.2736694167, "244"], +[-37.79343695, 175.28225505, "77"], +[-37.7933085167, 175.2828051167, "62"], +[-37.7836466833, 175.2731106, "270"], +[-37.7830362333, 175.2725972167, "310"], +[-37.7829097167, 175.2724789833, "324"], +[-37.7827592, 175.27236125, "330"], +[-37.7826385333, 175.27223625, "340"], +[-37.7817038, 175.2714996333, "384"], +[-37.7921368167, 175.2802457333, "87"], +[-37.7916875, 175.2811109333, "88"], +[-37.7920116333, 175.2806222667, "89"], +[-37.7915596167, 175.2810341, "90"], +[-37.7918760333, 175.2806151833, "91"], +[-37.791476, 175.28095865, "92"], +[-37.7913779833, 175.2808031, "94"], +[-37.7912523667, 175.2806688833, "96"], +[-37.7809418833, 175.2706521667, "416A-416D"], +[-37.7808749167, 175.2704724167, "422"], +[-37.7805343833, 175.2695748333, "450"], +[-37.7804678167, 175.2693861167, "456"], +[-37.78039865, 175.2691859833, "462"], +[-37.7803595667, 175.2689902167, "468"], +[-37.78069625, 175.2699363167, "438A-438I"], +[-37.7804997167, 175.26991165, "444A-444B"], +[-37.7807483, 175.2701255167, "1/432-5/432"], +[-37.7808122167, 175.2703028833, "428A-428D"], +[-37.7806347, 175.26972495, "444"], +[-37.7951311167, 175.2490588333, "2/241"], +[-37.7951171333, 175.2628543333, "65"], +[-37.7950478667, 175.2490803333, "1/241"], +[-37.7952024833, 175.2516947167, "197"], +[-37.7954453667, 175.248948, "6/241"], +[-37.7953913333, 175.2499692, "219C"], +[-37.7952026833, 175.2490295, "3/241"], +[-37.79566475, 175.2488489667, "11/241"], +[-37.7953039333, 175.2489955333, "4/241"], +[-37.7957754, 175.2487892333, "13/241"], +[-37.7953770167, 175.2489644, "5/241"], +[-37.7960988167, 175.2486637833, "21/241"], +[-37.7960168667, 175.24869465, "19/241"], +[-37.7959394167, 175.2487219167, "17/241"], +[-37.7958602667, 175.2487603333, "15/241"], +[-37.7956008, 175.2491543, "8/241"], +[-37.7958374167, 175.2490800667, "14/241"], +[-37.79576145, 175.2491073833, "12/241"], +[-37.7956811667, 175.2491289833, "10/241"], +[-37.7959110833, 175.2490573167, "16/241"], +[-37.7959826833, 175.2490261167, "18/241"], +[-37.7960646, 175.2489971167, "20/241"], +[-37.7961585, 175.2489610667, "22/241"], +[-37.7944598, 175.2486767, "9/232"], +[-37.794391, 175.24867595, "10/232"], +[-37.7951240667, 175.2626863167, "67"], +[-37.7960715667, 175.2614847667, "87"], +[-37.7951466667, 175.2616222, "81A-81F"], +[-37.7962328, 175.261364, "85D"], +[-37.7952459833, 175.2611334333, "85"], +[-37.7946849167, 175.2581105333, "126"], +[-37.7950252667, 175.26548105, "37"], +[-37.7950236667, 175.26528975, "39"], +[-37.7946171833, 175.2640732333, "54"], +[-37.79463555, 175.2638179833, "54B"], +[-37.7951006333, 175.2635421167, "55"], +[-37.7952860833, 175.2635568667, "57"], +[-37.7944795, 175.2682232167, "12A"], +[-37.7950561, 175.2646320667, "45"], +[-37.7953638333, 175.2518180167, "195C"], +[-37.7946249, 175.2554624333, "152"], +[-37.7950433833, 175.26476665, "45A"], +[-37.7952896333, 175.2552963167, "155A-155D"], +[-37.7952820167, 175.25185225, "195B"], +[-37.79553955, 175.25176415, "195E"], +[-37.7953287167, 175.26489205, "43"], +[-37.7948071667, 175.2503724, "212A"], +[-37.7948011833, 175.2501167667, "218"], +[-37.7953210167, 175.2547073333, "165A"], +[-37.7954635333, 175.25465415, "165B"], +[-37.7955166, 175.2546329333, "165C"], +[-37.7952612333, 175.2547261833, "165"], +[-37.7952987667, 175.2544865, "167"], +[-37.7951840833, 175.2510636667, "205"], +[-37.795185, 175.25090595, "207A"], +[-37.7951656833, 175.2506847333, "209A"], +[-37.7952348667, 175.2506512, "209B"], +[-37.7953103667, 175.25061685, "209C"], +[-37.7953866167, 175.25059015, "209D"], +[-37.7954901167, 175.25055535, "209E"], +[-37.7952509333, 175.2488680333, "243A"], +[-37.7950819833, 175.2488380833, "243"], +[-37.7950704333, 175.24863875, "245"], +[-37.7947872, 175.2598853667, "102"], +[-37.7952094667, 175.2581606, "123"], +[-37.79521275, 175.2579733833, "125A"], +[-37.7954687667, 175.2578811, "125B"], +[-37.7952161167, 175.2577676333, "127"], +[-37.7952288833, 175.2575472833, "129"], +[-37.79548115, 175.2576915167, "127A"], +[-37.7950968833, 175.2637238667, "51"], +[-37.7962277, 175.26154375, "85E"], +[-37.79622415, 175.2617167667, "85F"], +[-37.7951501, 175.2610651, "87A"], +[-37.7951487833, 175.26112675, "87B"], +[-37.7953217833, 175.26123855, "87E"], +[-37.79540385, 175.2612567833, "87F"], +[-37.7954808667, 175.2612637667, "87G"], +[-37.7951475, 175.26118865, "87C"], +[-37.7951474167, 175.26125385, "87D"], +[-37.7951514, 175.2610057333, "89"], +[-37.79543235, 175.2536604833, "177A"], +[-37.7951168667, 175.2630312167, "63"], +[-37.7950283333, 175.2649444833, "1/41"], +[-37.7947598333, 175.2684173167, "10"], +[-37.79498225, 175.2670628167, "25"], +[-37.7950552333, 175.2681242833, "11"], +[-37.7949808167, 175.26688295, "27"], +[-37.7951663333, 175.2662834667, "31B"], +[-37.7950221667, 175.2650536333, "41"], +[-37.7950263667, 175.2651373167, "41C"], +[-37.7951067667, 175.2631947833, "61"], +[-37.7951042, 175.26336905, "59"], +[-37.7954211, 175.2567023167, "139"], +[-37.7949663667, 175.2532186667, "184A"], +[-37.7946478, 175.2515154833, "202B"], +[-37.7948589333, 175.2514051333, "202A"], +[-37.7945984, 175.2647398167, "44"], +[-37.7946206833, 175.2645011, "48"], +[-37.7945957, 175.2649540833, "42"], +[-37.79506185, 175.2484182667, "247"], +[-37.79544885, 175.2517924, "195D"], +[-37.7955358833, 175.2536612167, "177C"], +[-37.7953086167, 175.2531760833, "183"], +[-37.7954160833, 175.2531397, "185"], +[-37.7949781333, 175.2534862, "184B"], +[-37.7954907333, 175.25079925, "207E"], +[-37.7953175167, 175.2508515, "207C"], +[-37.7952384833, 175.25088185, "207B"], +[-37.79539565, 175.2508211167, "207D"], +[-37.7951857333, 175.2682595167, "7A"], +[-37.7946152, 175.2503777167, "212C"], +[-37.7947061333, 175.2503727, "212B"], +[-37.7949719, 175.25484475, "164"], +[-37.79459995, 175.25468095, "166A"], +[-37.79498215, 175.2546909167, "166"], +[-37.7949149333, 175.2524151, "192"], +[-37.7949048667, 175.2522405833, "194"], +[-37.79468185, 175.2519785333, "198A"], +[-37.7948817333, 175.2518846667, "198"], +[-37.7947704, 175.2517956167, "200A"], +[-37.7946193, 175.2518008333, "200B"], +[-37.79449835, 175.2518173333, "200C"], +[-37.7948683667, 175.25165225, "200"], +[-37.7948450667, 175.2510557667, "206"], +[-37.79482005, 175.2508529667, "208"], +[-37.7947634, 175.2495245333, "224"], +[-37.79475395, 175.2493608833, "226"], +[-37.7947454333, 175.2491775667, "228"], +[-37.7947405333, 175.2490145667, "230"], +[-37.7946032167, 175.2485502167, "236B"], +[-37.7947156167, 175.2485031833, "236"], +[-37.79532455, 175.2537023167, "177"], +[-37.7953169167, 175.2535178, "179"], +[-37.7953138167, 175.2533480167, "181A"], +[-37.7955023167, 175.2532947333, "181B"], +[-37.7956498, 175.25337505, "181C"], +[-37.79552095, 175.2534492167, "181D"], +[-37.7952284333, 175.2522431333, "191"], +[-37.79521235, 175.2520207333, "193A"], +[-37.7953087833, 175.25197485, "193B"], +[-37.79523725, 175.2524137, "189"], +[-37.79541055, 175.2519179833, "193C"], +[-37.7955735, 175.2518825833, "193D"], +[-37.7956377167, 175.2521168167, "193E"], +[-37.7952100667, 175.2518813333, "195A"], +[-37.79574555, 175.2501662333, "213A"], +[-37.7951622167, 175.2504873333, "211"], +[-37.79604345, 175.2500268, "213B"], +[-37.7954283, 175.2502879333, "213"], +[-37.7959298167, 175.2499090167, "215A"], +[-37.7955690833, 175.2500217333, "215B"], +[-37.7957452833, 175.2499854333, "215C"], +[-37.7961121667, 175.24986035, "215D"], +[-37.7951355333, 175.2501324, "217"], +[-37.7951241833, 175.2498871667, "219A"], +[-37.7953188667, 175.2498121333, "219B"], +[-37.7956104, 175.2496559, "221A"], +[-37.7954574667, 175.2497274, "221"], +[-37.7959580833, 175.2495265167, "223A"], +[-37.7957942333, 175.2495764833, "223"], +[-37.7960996333, 175.2494264167, "225"], +[-37.7955634167, 175.24947275, "227"], +[-37.7953866167, 175.2495263333, "229A"], +[-37.7951217333, 175.2495954667, "229"], +[-37.7953213667, 175.24925795, "231A"], +[-37.7951163833, 175.2493735833, "231"], +[-37.79478305, 175.2597081167, "104"], +[-37.7948003333, 175.2595751833, "106A"], +[-37.79481195, 175.2593950667, "106B"], +[-37.7945758333, 175.2593421667, "110A"], +[-37.7943603667, 175.2593514333, "110B"], +[-37.7943762833, 175.2594904167, "110C"], +[-37.7948214667, 175.2591425333, "112A"], +[-37.79470545, 175.25904, "112B"], +[-37.7948325667, 175.2589457667, "116"], +[-37.7948366, 175.2583796833, "120"], +[-37.79485935, 175.2581473833, "124"], +[-37.79487785, 175.2579243667, "128"], +[-37.7948793833, 175.2572114667, "134"], +[-37.7948910167, 175.2567958, "138"], +[-37.7948860167, 175.25700535, "136"], +[-37.7949455167, 175.2553259333, "156A"], +[-37.7949278833, 175.2559686667, "148"], +[-37.7945842, 175.255331, "156B"], +[-37.79495495, 175.2551758167, "158"], +[-37.7949403833, 175.2558263333, "150"], +[-37.7946056667, 175.2550259667, "162B"], +[-37.79496165, 175.2550151, "162"], +[-37.7946587667, 175.2631051667, "62"], +[-37.7946549167, 175.2636201167, "56"], +[-37.79466115, 175.2633675167, "58"], +[-37.7946659, 175.2628573333, "66"], +[-37.7943285, 175.26191365, "80"], +[-37.7947023167, 175.2621690333, "76"], +[-37.7946968167, 175.2618448833, "82"], +[-37.7947075833, 175.2616280833, "84"], +[-37.7947105167, 175.2614822833, "86"], +[-37.7947184333, 175.2612977667, "88"], +[-37.7951423167, 175.2600350167, "101"], +[-37.7951509167, 175.2598624, "103"], +[-37.79515465, 175.2596805, "105"], +[-37.7951606333, 175.2595303833, "107"], +[-37.7951564167, 175.2593802, "109"], +[-37.7951921, 175.2588409167, "115"], +[-37.7952010833, 175.2586065167, "117"], +[-37.7953100667, 175.2584335667, "119A"], +[-37.79520505, 175.2583821333, "119"], +[-37.7952275667, 175.2571214, "135"], +[-37.7952397667, 175.2569336667, "137"], +[-37.7952415667, 175.2567155167, "139A"], +[-37.7952386, 175.2565138833, "141"], +[-37.7952583833, 175.2563075833, "143"], +[-37.7952551, 175.2561321167, "147"], +[-37.7952534833, 175.2559149667, "149"], +[-37.7952916, 175.2554883167, "153"], +[-37.7951276167, 175.2624827333, "71"], +[-37.7955611833, 175.2619463833, "73"], +[-37.7951264833, 175.2622456333, "75"], +[-37.7955140333, 175.2627033333, "69"], +[-37.7951323667, 175.2621058833, "77"], +[-37.7951357333, 175.2619255333, "79"], +[-37.7951412, 175.2614957333, "81"], +[-37.7945970333, 175.2683908, "10A"], +[-37.7946800833, 175.2679139833, "14"], +[-37.79465315, 175.2668670667, "28"], +[-37.7949867833, 175.2667282, "29"], +[-37.7946399667, 175.26629155, "32"], +[-37.7948263333, 175.2685909833, "8"], +[-37.7945641833, 175.2653856833, "40"], +[-37.7949786167, 175.2662688833, "31A"], +[-37.7963082167, 175.2499896, "213C"], +[-37.7962676833, 175.2498046667, "215"], +[-37.7951441, 175.2602041167, "99"], +[-37.7951529667, 175.26035335, "97"], +[-37.7953395, 175.2538697833, "175A"], +[-37.7954395, 175.2538402833, "175B"], +[-37.7955620333, 175.2537996667, "175C"], +[-37.7945941667, 175.2548386, "164A"], +[-37.79477715, 175.2499027667, "220A"], +[-37.79469565, 175.2498995333, "220B"], +[-37.79551095, 175.2489221833, "7/241"], +[-37.7955824833, 175.2488947167, "9/241"], +[-37.7953683333, 175.2570070167, "135A"], +[-37.7949417333, 175.2554647667, "152A"], +[-37.7947001333, 175.2681842167, "12"], +[-37.7951019, 175.2683678333, "7"], +[-37.7951936, 175.2686317333, "3"], +[-37.79427235, 175.2485599167, "15/232"], +[-37.7942280833, 175.2486347333, "14/232"], +[-37.7941933833, 175.2487068667, "13/232"], +[-37.79429065, 175.2488237, "12/232"], +[-37.7943484667, 175.2488973667, "11/232"], +[-37.7944689667, 175.2488654167, "5/232"], +[-37.7945343, 175.2488615667, "4/232"], +[-37.7945972833, 175.24885765, "3/232"], +[-37.794659, 175.2488566833, "2/232"], +[-37.7947444333, 175.2488564833, "1/232"], +[-37.7947366167, 175.2486603333, "6/232"], +[-37.7946547, 175.24866215, "7/232"], +[-37.79453815, 175.2486747833, "8/232"], +[-37.7948092333, 175.2522467333, "194A"], +[-37.7947161, 175.2522543333, "194B"], +[-37.7946231, 175.2522566167, "194C"], +[-37.7949534333, 175.26788645, "17"], +[-37.7948416167, 175.2506775833, "210A"], +[-37.7946440833, 175.2506938833, "210B"], +[-37.7946385, 175.2505628167, "210D"], +[-37.7948366333, 175.2505541167, "210C"], +[-37.7948670167, 175.25123725, "204A"], +[-37.7947601667, 175.2512497167, "204B"], +[-37.7946744667, 175.2512602, "204C"], +[-37.7946014667, 175.25126845, "204D"], +[-37.7952342667, 175.2678902667, "13"], +[-37.79499735, 175.2545356167, "168A"], +[-37.7950074833, 175.25438325, "168B"], +[-37.79489765, 175.2520722333, "196A-196E"], +[-37.7950160333, 175.2537115333, "176"], +[-37.7257229667, 175.2767110833, "3"], +[-37.7257794833, 175.2767722167, "5"], +[-37.7259357667, 175.2768023333, "4"], +[-37.7258615167, 175.2767959333, "6"], +[-37.7258884667, 175.2766332, "2"], +[-37.7257960833, 175.2766048833, "1"], +[-37.7864594, 175.30991455, "10"], +[-37.7862101833, 175.3101862667, "14"], +[-37.7863696333, 175.30937065, "3A"], +[-37.78627665, 175.309325, "3B"], +[-37.7855909333, 175.3102526167, "15B"], +[-37.7855221833, 175.3101557833, "15C"], +[-37.7854066833, 175.3101212667, "15D"], +[-37.7853605333, 175.3103047833, "15F"], +[-37.7853793167, 175.3102162167, "15E"], +[-37.7854588167, 175.31040395, "15G"], +[-37.7855145667, 175.3104657333, "15H"], +[-37.78558635, 175.3104188833, "15"], +[-37.78564945, 175.3103572167, "15A"], +[-37.7858659833, 175.3101206333, "11"], +[-37.7857697167, 175.3102258167, "13"], +[-37.7860831667, 175.3103208333, "16"], +[-37.7863342833, 175.3100506167, "12"], +[-37.7868852833, 175.3093913667, "2"], +[-37.7868101667, 175.3095432, "4"], +[-37.7863070667, 175.3096705333, "5"], +[-37.7867107833, 175.3096527167, "6"], +[-37.7865768833, 175.3097835833, "8"], +[-37.7866770833, 175.309061, "1A"], +[-37.7866809667, 175.3091554667, "1B"], +[-37.7866585833, 175.3092416333, "1C"], +[-37.7866352167, 175.3093055833, "1D"], +[-37.78654155, 175.3094319167, "1E"], +[-37.7864979167, 175.3094822333, "1F"], +[-37.7864574167, 175.3095234167, "1G"], +[-37.76579445, 175.2535986333, "343C"], +[-37.7672557333, 175.2588574, "239"], +[-37.7663170833, 175.2570389, "280"], +[-37.7658111833, 175.25735695, "282A"], +[-37.7659763167, 175.25718855, "282"], +[-37.7670955, 175.25657455, "283A"], +[-37.7666593, 175.2567982667, "283"], +[-37.7659209167, 175.257136, "284"], +[-37.7666061, 175.2566427833, "285"], +[-37.7660429, 175.2568623833, "286A"], +[-37.76622125, 175.2567603833, "286"], +[-37.7656178333, 175.25735825, "290A"], +[-37.7651924667, 175.2575137833, "290B"], +[-37.7655315667, 175.2575548833, "290"], +[-37.7654863, 175.2570352167, "292A"], +[-37.7656196, 175.2567160167, "292B"], +[-37.7651185167, 175.2571295333, "292"], +[-37.7658038, 175.2567893, "294A"], +[-37.7658572, 175.2565599167, "294B"], +[-37.7661193833, 175.2564236167, "296"], +[-37.7671310167, 175.2566987167, "277C"], +[-37.7665502, 175.2577086167, "270"], +[-37.7635608, 175.2523213, "414"], +[-37.7637934333, 175.25171345, "417"], +[-37.7597233333, 175.2484196667, "552"], +[-37.75261375, 175.2412114833, "754"], +[-37.7521496, 175.2407614667, "770"], +[-37.753285, 175.2431972167, "2/706"], +[-37.7647491333, 175.2536273333, "352"], +[-37.7335946833, 175.2207240667, "6624"], +[-37.7618416, 175.2497476, "455"], +[-37.7610982833, 175.2490565, "473"], +[-37.76010115, 175.2491088833, "530"], +[-37.7613933333, 175.2501136833, "510"], +[-37.7570562833, 175.24572465, "598"], +[-37.7567025333, 175.2453707167, "614"], +[-37.7572856667, 175.24522435, "593"], +[-37.7593598833, 175.2466894333, "549E"], +[-37.7594623833, 175.2467842333, "549F"], +[-37.75938505, 175.2473784167, "549"], +[-37.7581768833, 175.24617765, "577"], +[-37.7581517167, 175.2460597667, "579"], +[-37.7581214833, 175.2459558667, "581"], +[-37.7533554333, 175.2422956667, "736"], +[-37.75381225, 175.24171, "711"], +[-37.7542546667, 175.24214095, "707"], +[-37.7536741, 175.2422640167, "718A"], +[-37.7537504833, 175.2423211333, "718"], +[-37.7536869333, 175.2431571167, "11/706"], +[-37.7535918833, 175.2430563833, "12/706"], +[-37.75350025, 175.2429754833, "13/706"], +[-37.7534156667, 175.2428924, "14/706"], +[-37.7533293, 175.2430131167, "15/706"], +[-37.75206995, 175.2397821167, "757A"], +[-37.7519390333, 175.2395982333, "757"], +[-37.7517137167, 175.2391975167, "787"], +[-37.7631498833, 175.2510595, "429"], +[-37.7629608167, 175.2508549333, "431C"], +[-37.7630262833, 175.2509159333, "431B"], +[-37.76307555, 175.2509590667, "431A"], +[-37.7628560667, 175.2507491333, "431"], +[-37.7629121333, 175.25079875, "4/431"], +[-37.7592925167, 175.2499145167, "5/550"], +[-37.75940845, 175.2496842833, "4/550"], +[-37.7594931167, 175.2495171333, "3/550"], +[-37.7596022333, 175.2493111833, "2/550"], +[-37.7596972, 175.2491328333, "1/550"], +[-37.75526075, 175.2438730333, "668"], +[-37.7551782, 175.2440347, "668A"], +[-37.7532611, 175.2431180167, "1/706"], +[-37.7534111167, 175.2438143333, "10/706"], +[-37.7533403167, 175.2434343167, "5/706"], +[-37.7533542667, 175.2436122167, "7/706"], +[-37.7533448, 175.2435183, "6/706"], +[-37.7533695167, 175.2436800167, "8/706"], +[-37.7533908833, 175.2437419, "9/706"], +[-37.7533246, 175.24335475, "4/706"], +[-37.7533052333, 175.24327645, "3/706"], +[-37.7619797667, 175.2499144167, "451"], +[-37.7626186833, 175.2505351167, "443"], +[-37.7582685333, 175.2462998833, "575"], +[-37.7583942667, 175.2464061333, "573"], +[-37.7585235833, 175.2465109833, "557A"], +[-37.7590326667, 175.2455966167, "557D"], +[-37.7588148167, 175.2459055833, "557C"], +[-37.7586403833, 175.2461779167, "557B"], +[-37.7583548833, 175.2470161833, "560"], +[-37.7581779333, 175.2468453667, "564"], +[-37.7349434333, 175.22119, "6544"], +[-37.7657222833, 175.2543039833, "333"], +[-37.7546851333, 175.2426150667, "679"], +[-37.7671199167, 175.2582586167, "251"], +[-37.7577120667, 175.2442732667, "605"], +[-37.7578814333, 175.2439487833, "607"], +[-37.7579955167, 175.2439498333, "609"], +[-37.7576885833, 175.2446956667, "603"], +[-37.7574734833, 175.24498405, "601"], +[-37.7607454, 175.2510920667, "514"], +[-37.7546753, 175.24330975, "696"], +[-37.7538281833, 175.24242495, "716"], +[-37.7535589833, 175.2421671333, "720"], +[-37.7540395667, 175.2419591333, "709"], +[-37.754493, 175.2431381667, "698"], +[-37.7545500833, 175.2424727833, "681"], +[-37.75431735, 175.2429494833, "700"], +[-37.76643395, 175.25844245, "258A"], +[-37.7531526833, 175.2417429833, "740"], +[-37.7539651167, 175.24259165, "712"], +[-37.7667274, 175.2582404833, "258"], +[-37.7478314333, 175.2335262167, "951"], +[-37.7460261167, 175.2325932167, "980"], +[-37.7458508667, 175.2323526333, "986"], +[-37.7562928167, 175.2449441, "616"], +[-37.7561475667, 175.2447908333, "618"], +[-37.7568716333, 175.2448291333, "633"], +[-37.7571597333, 175.2441888833, "635"], +[-37.7571107167, 175.2441462167, "637"], +[-37.7565462167, 175.2445044667, "639"], +[-37.7560330833, 175.2439486167, "645"], +[-37.7645780333, 175.2524460833, "391"], +[-37.7644658333, 175.2523364833, "399"], +[-37.75918185, 175.24792275, "554"], +[-37.7587055667, 175.2467081333, "555"], +[-37.75891415, 175.2476613667, "558"], +[-37.7580995333, 175.2458485333, "583"], +[-37.7574761333, 175.2454247667, "589"], +[-37.7606019333, 175.2516659667, "514A"], +[-37.7609172, 175.2507988667, "512"], +[-37.7684060667, 175.2615139333, "173"], +[-37.7682339667, 175.2613064833, "175"], +[-37.7680390167, 175.2617397333, "176"], +[-37.76856555, 175.2616925833, "171"], +[-37.7664496833, 175.2574313667, "274"], +[-37.7661580667, 175.2573693667, "278B"], +[-37.7663746, 175.257217, "278"], +[-37.7649100167, 175.2539219167, "348"], +[-37.7518655, 175.2394620167, "777"], +[-37.75274565, 175.2413532167, "750"], +[-37.7659276, 175.2540341333, "333B"], +[-37.7530405667, 175.2408669667, "745"], +[-37.7528792333, 175.2414741833, "746"], +[-37.7616534667, 175.25040535, "454"], +[-37.75301295, 175.2416061333, "744"], +[-37.7599711, 175.2479568, "529"], +[-37.76086545, 175.24959785, "518"], +[-37.7528856833, 175.2407561333, "751"], +[-37.7611723, 175.2498733, "516"], +[-37.7648100333, 175.2537681167, "350"], +[-37.7662683667, 175.2548658, "325A"], +[-37.75916045, 175.2471758, "549C"], +[-37.7659523667, 175.25492185, "325"], +[-37.7592254167, 175.2472321833, "549B"], +[-37.7592978833, 175.2472968, "549A"], +[-37.7590961333, 175.24710775, "549D"], +[-37.7660630667, 175.25462915, "327A"], +[-37.76040875, 175.2490950667, "524"], +[-37.7658211833, 175.2546215, "327"], +[-37.7603112167, 175.2483053333, "497"], +[-37.76065715, 175.2486735167, "471"], +[-37.7608949, 175.24808865, "475"], +[-37.7675733, 175.2590380833, "233"], +[-37.7509860833, 175.2378021333, "791"], +[-37.7508410833, 175.2375517833, "797"], +[-37.76414105, 175.2528372667, "360"], +[-37.76338715, 175.25211125, "418"], +[-37.7632741833, 175.2512005667, "425"], +[-37.7634001667, 175.2513447167, "423"], +[-37.76566385, 175.2563617333, "304"], +[-37.7647277333, 175.2539259667, "350A"], +[-37.7662026333, 175.25453365, "327B"], +[-37.76575995, 175.25441675, "329"], +[-37.7652100333, 175.25351305, "363"], +[-37.76536865, 175.2537412167, "349"], +[-37.76523435, 175.2535480667, "361"], +[-37.7652617167, 175.2535881667, "357"], +[-37.7652888, 175.2536177833, "355"], +[-37.7653388333, 175.25370315, "351"], +[-37.7653172167, 175.2536713167, "353"], +[-37.7604665, 175.246119, "541D"], +[-37.7670374, 175.26052005, "206A"], +[-37.7671956833, 175.2585753333, "249A-249L"], +[-37.7667539833, 175.2584344333, "248D"], +[-37.7665722167, 175.258577, "248"], +[-37.76700925, 175.2579573, "253"], +[-37.7671398667, 175.2579115833, "253A"], +[-37.7668083333, 175.2571811167, "275"], +[-37.7672189667, 175.25699405, "265"], +[-37.7667524, 175.2569743667, "277A"], +[-37.7669774667, 175.2568504333, "277B"], +[-37.7676162667, 175.2602370667, "211A"], +[-37.7596708667, 175.2463857, "541"], +[-37.7668171, 175.2565343667, "287"], +[-37.7597248333, 175.2458447167, "541B"], +[-37.7600535667, 175.245746, "541C"], +[-37.7598625667, 175.24691915, "541A"], +[-37.7532218, 175.241049, "721"], +[-37.7535482167, 175.2405312167, "725"], +[-37.7534409, 175.2407038667, "723"], +[-37.7542633, 175.2397590333, "733"], +[-37.7543828167, 175.2398708833, "735"], +[-37.7541439167, 175.2396415167, "731"], +[-37.7456823667, 175.2321476667, "1000"], +[-37.75588, 175.2445309333, "650"], +[-37.7447517167, 175.2310392833, "1024"], +[-37.74512665, 175.2315262833, "1018"], +[-37.7672360667, 175.25776815, "261"], +[-37.7521549667, 175.2383716167, "785"], +[-37.75141665, 175.2386725833, "789"], +[-37.7507231333, 175.2373897667, "793"], +[-37.7512962833, 175.2368109833, "795"], +[-37.7506178833, 175.2371789833, "807"], +[-37.7558495, 175.2437577667, "661"], +[-37.7553445667, 175.2439653, "666"], +[-37.7552279333, 175.2431709333, "675"], +[-37.7589727167, 175.2469692167, "551"], +[-37.7588502833, 175.2468677167, "553"], +[-37.75708905, 175.2449982333, "631"], +[-37.7658499667, 175.2536581167, "343E"], +[-37.7657567, 175.2538565833, "343G"], +[-37.76587365, 175.253746, "343F"], +[-37.7656594, 175.25392365, "343H"], +[-37.76556455, 175.2539849667, "343I"], +[-37.7655303667, 175.2539136833, "343"], +[-37.76502395, 175.2540349, "346"], +[-37.7655338, 175.2535765167, "347"], +[-37.7651352833, 175.2534103, "369"], +[-37.76696145, 175.2576366333, "263"], +[-37.7648925667, 175.2556734667, "324"], +[-37.76490275, 175.2555378667, "326"], +[-37.7648340833, 175.2554655833, "328"], +[-37.7690985833, 175.2628968333, "150"], +[-37.7690406667, 175.2621359833, "155"], +[-37.7688461833, 175.2625246333, "156"], +[-37.7671651, 175.26107205, "198A"], +[-37.7673118667, 175.2610229667, "198"], +[-37.7679660167, 175.2609999333, "183"], +[-37.7677833, 175.2614559667, "186"], +[-37.7676229167, 175.26121815, "192"], +[-37.7675255833, 175.2610752167, "196"], +[-37.7678854167, 175.26158625, "186A"], +[-37.7686759667, 175.26235975, "160"], +[-37.7689285667, 175.2620183, "161"], +[-37.7684488833, 175.2621669833, "162"], +[-37.7687387667, 175.2618488167, "167"], +[-37.7671125, 175.2598866167, "220"], +[-37.7670626667, 175.2596919833, "224"], +[-37.7670119833, 175.2595112667, "228"], +[-37.7673874333, 175.2593698667, "229"], +[-37.7669748167, 175.25933775, "232A"], +[-37.7668349, 175.2593376833, "232B"], +[-37.7673172667, 175.2590962833, "235"], +[-37.767397, 175.2587249667, "239A"], +[-37.7673446167, 175.2607505167, "200"], +[-37.7677701833, 175.2606168333, "201"], +[-37.76718635, 175.2606853667, "204A"], +[-37.7669901833, 175.2607198667, "204B"], +[-37.76723125, 175.2604295667, "206"], +[-37.7678657, 175.2602203, "211B"], +[-37.7677347833, 175.2602733, "211C"], +[-37.76719615, 175.2602397, "214"], +[-37.7671616667, 175.2600551167, "216"], +[-37.7660219167, 175.2561607333, "300"], +[-37.7664093833, 175.2551494833, "305A"], +[-37.7665044833, 175.2551206, "305B"], +[-37.7660900333, 175.2553218167, "307A"], +[-37.76605275, 175.2552149167, "307B"], +[-37.7658775, 175.2556919167, "310"], +[-37.7656623167, 175.2552381, "318"], +[-37.7655947333, 175.2550805667, "320"], +[-37.7652329167, 175.2554426167, "322"], +[-37.7650224333, 175.2557927667, "324B"], +[-37.7651310167, 175.2553707, "330"], +[-37.7656869, 175.2537027, "343B"], +[-37.7676514833, 175.2578019833, "261B"], +[-37.7622309667, 175.2501665, "449"], +[-37.74552245, 175.2319592, "1006"], +[-37.74381035, 175.22998135, "1052"], +[-37.743968, 175.2302039833, "1050"], +[-37.7675870167, 175.2576040833, "261A"], +[-37.7556576167, 175.2443106833, "656"], +[-37.76559685, 175.2538264333, "343A"], +[-37.75951015, 175.24750105, "543"], +[-37.7663691333, 175.2555194, "293A"], +[-37.7315870333, 175.22005845, "6646"], +[-37.7631738167, 175.2519566333, "422"], +[-37.76016485, 175.2488727167, "536"], +[-37.76613, 175.2571731167, "280B"], +[-37.7658464, 175.2563361, "300B"], +[-37.7620736333, 175.2507975667, "450"], +[-37.75491435, 175.2435554667, "674"], +[-37.7556748, 175.2435628667, "671"], +[-37.7556178667, 175.2434931333, "673"], +[-37.76222895, 175.2526987833, "446"], +[-37.7662312, 175.25567185, "293"], +[-37.7661635833, 175.2554898, "297"], +[-37.7379896667, 175.2234410167, "2001"], +[-37.7659235, 175.2559004833, "306"], +[-37.7653329833, 175.25445005, "336"], +[-37.759937, 175.2486533333, "550"], +[-37.7597067333, 175.24769775, "539"], +[-37.7649142833, 175.2526706833, "381"], +[-37.7641941167, 175.2520626333, "403"], +[-37.7635356667, 175.2514832667, "421"], +[-37.7639323667, 175.2518241833, "409"], +[-37.7638188667, 175.25258645, "400"], +[-37.7652315333, 175.2543112333, "340"], +[-37.7651233667, 175.2541784167, "342"], +[-37.8155085833, 175.2842260667, "9"], +[-37.81608705, 175.2837787167, "21"], +[-37.8158667167, 175.2837061333, "10"], +[-37.8155584167, 175.28419, "11"], +[-37.8158917833, 175.2834026833, "12"], +[-37.8155204333, 175.2839380833, "15"], +[-37.8157838667, 175.2838694833, "17"], +[-37.8159999, 175.2837957333, "19"], +[-37.8150937167, 175.2838177333, "1"], +[-37.8159962, 175.2834060833, "23"], +[-37.8152429667, 175.2838014667, "2"], +[-37.81540045, 175.2837827167, "4"], +[-37.8151149333, 175.2839598, "3"], +[-37.8153044833, 175.2839646333, "5"], +[-37.8155329333, 175.2837484, "6"], +[-37.81542505, 175.28402685, "7"], +[-37.81568075, 175.2837078333, "8"], +[-37.7251484333, 175.2597990333, "7"], +[-37.7249158, 175.2600179667, "5"], +[-37.7251052, 175.2593173667, "4"], +[-37.7252942, 175.259247, "6"], +[-37.7249888667, 175.25967255, "3"], +[-37.7253252833, 175.2594586167, "8"], +[-37.7253522167, 175.2598727167, "9"], +[-37.7247936, 175.25955445, "1"], +[-37.7253159833, 175.2596641333, "10"], +[-37.7248913333, 175.2592433667, "2"], +[-37.7857603667, 175.2760738333, "169"], +[-37.7855269333, 175.2756831167, "171"], +[-37.7856102667, 175.2755449667, "173"], +[-37.7853148833, 175.2753098, "182"], +[-37.7835524, 175.2790221, "55"], +[-37.7829487667, 175.28012855, "11"], +[-37.7841845667, 175.2779834833, "87"], +[-37.7842379333, 175.2778878833, "91"], +[-37.7838378333, 175.2779032833, "84"], +[-37.78380805, 175.2779728, "78"], +[-37.7839401333, 175.2784198333, "77"], +[-37.7838805167, 175.2785020833, "71"], +[-37.7838549333, 175.2785632333, "67"], +[-37.7834367167, 175.2785459167, "62"], +[-37.7837237833, 175.2781246, "80"], +[-37.78376435, 175.2780555167, "82"], +[-37.7850204, 175.2766131, "135"], +[-37.78477465, 175.27696815, "109"], +[-37.7848387, 175.2768673667, "111"], +[-37.7827504333, 175.27979205, "18A-18G"], +[-37.7840718833, 175.2775006, "94"], +[-37.7838775667, 175.2778334667, "86"], +[-37.78334035, 175.2808084167, "3"], +[-37.78417825, 175.2773121333, "106"], +[-37.7842765333, 175.2771313167, "116"], +[-37.7846113333, 175.2765472667, "134"], +[-37.7845602167, 175.2766358667, "130"], +[-37.7844735667, 175.2767850667, "120"], +[-37.7847082167, 175.2763873833, "136"], +[-37.7847597667, 175.2763034333, "140"], +[-37.7848944667, 175.2759948833, "150"], +[-37.7828998333, 175.27952285, "26"], +[-37.7826282167, 175.28004785, "2"], +[-37.7843912, 175.2776580833, "99"], +[-37.7837438, 175.2787040167, "61"], +[-37.7853500667, 175.2760210167, "159"], +[-37.7852342833, 175.2762144333, "153"], +[-37.7850606667, 175.27574115, "160"], +[-37.7851628, 175.27555855, "164"], +[-37.78574025, 175.2753125833, "193"], +[-37.78543385, 175.2758603667, "165"], +[-37.7830383, 175.2799256333, "19"], +[-37.7827032833, 175.2805091333, "1"], +[-37.79624045, 175.3130676667, "9"], +[-37.79544375, 175.3145480667, "26"], +[-37.7957220167, 175.3131606167, "9C"], +[-37.7955423667, 175.3140696167, "27"], +[-37.7956800333, 175.3127160667, "9F"], +[-37.7952876167, 175.31460165, "28"], +[-37.7957245333, 175.31289195, "9E"], +[-37.79536255, 175.31412225, "29"], +[-37.7958766333, 175.3131033167, "9B"], +[-37.7935932167, 175.3150804, "48"], +[-37.79607195, 175.3130487333, "9A"], +[-37.7969008833, 175.3126634, "2"], +[-37.7957612, 175.3130061833, "9D"], +[-37.7968645333, 175.31282675, "6A"], +[-37.7942781, 175.3148833333, "40"], +[-37.7943777333, 175.31440315, "41"], +[-37.7966192833, 175.3131527667, "8"], +[-37.7960435333, 175.3143824833, "18"], +[-37.79630575, 175.3133531667, "15A"], +[-37.7961222667, 175.3134015, "15"], +[-37.7949566667, 175.3147061667, "32"], +[-37.7948553333, 175.3142619833, "35"], +[-37.7946617167, 175.3148001667, "36"], +[-37.79469375, 175.3143049333, "37"], +[-37.7944727667, 175.3148316, "38"], +[-37.7945453667, 175.3143580167, "39"], +[-37.7941272167, 175.3149372167, "42"], +[-37.7941963, 175.3144474333, "43"], +[-37.7939506667, 175.3149960667, "44"], +[-37.79399665, 175.3145095167, "45"], +[-37.7937881667, 175.3145487833, "47"], +[-37.7934852, 175.3146521667, "51"], +[-37.7936435833, 175.314596, "49"], +[-37.7966609167, 175.3134492167, "10"], +[-37.7966978833, 175.3135738167, "12"], +[-37.7959115167, 175.3133483167, "13"], +[-37.7965347, 175.3139889167, "14"], +[-37.7962704667, 175.3143062833, "16"], +[-37.7963129167, 175.3135622833, "17"], +[-37.7962546667, 175.3137669833, "19"], +[-37.7960849667, 175.3121984, "1"], +[-37.7959064667, 175.3144330667, "20"], +[-37.79575095, 175.3144873167, "22"], +[-37.7960001, 175.3139618333, "21"], +[-37.7956082333, 175.31451335, "24"], +[-37.7958382833, 175.3139882667, "23"], +[-37.79569245, 175.3140284167, "25"], +[-37.7951963167, 175.314166, "31"], +[-37.79512485, 175.3146563167, "30"], +[-37.7958619833, 175.3124554167, "3A"], +[-37.7950222333, 175.3142175167, "33"], +[-37.7961062833, 175.3123892333, "3"], +[-37.7965325167, 175.31271745, "4"], +[-37.7961489833, 175.3125830667, "5"], +[-37.7965700833, 175.3129426, "6"], +[-37.79600545, 175.3129182333, "7A"], +[-37.7961941167, 175.3127958833, "7"], +[-37.7937615667, 175.3150298833, "46"], +[-37.8185587333, 175.2701297333, "23"], +[-37.8179320333, 175.2699487667, "34"], +[-37.8194374167, 175.27086845, "9"], +[-37.81811075, 175.2702034667, "30"], +[-37.8181795167, 175.2697739667, "29"], +[-37.8190887167, 175.2710399833, "12"], +[-37.81931385, 175.2707580667, "11"], +[-37.8180020167, 175.27070805, "1/26-7/26"], +[-37.8191898167, 175.2706518167, "13"], +[-37.8199448167, 175.2713033667, "1"], +[-37.8188160333, 175.2703488833, "19"], +[-37.8186764167, 175.2702334167, "21"], +[-37.8184144333, 175.270463, "22"], +[-37.8182831833, 175.2703658333, "24"], +[-37.8184311333, 175.2700188333, "25"], +[-37.81829275, 175.2699267167, "27"], +[-37.8180925167, 175.2695794833, "31"], +[-37.81801105, 175.2700902167, "32"], +[-37.8180146833, 175.2694023667, "33"], +[-37.8180022, 175.2691844333, "35"], +[-37.8178631667, 175.2698192, "36"], +[-37.8179390333, 175.26899645, "37"], +[-37.8178148667, 175.2696690167, "38"], +[-37.81790825, 175.2687882, "39"], +[-37.8198173833, 175.2711992833, "3"], +[-37.8196376167, 175.2715035667, "4"], +[-37.8177607333, 175.2694863, "40"], +[-37.8177897, 175.2689749, "41"], +[-37.8177014167, 175.2693129667, "42"], +[-37.8176526, 175.2691014, "44"], +[-37.8175829667, 175.2689167333, "46"], +[-37.8196711333, 175.27107935, "5"], +[-37.8195655667, 175.2709691, "7"], +[-37.8190560833, 175.27054835, "15"], +[-37.81892075, 175.2704437167, "17"], +[-37.8189488667, 175.27092475, "14"], +[-37.8197843167, 175.2716112667, "2"], +[-37.7399725, 175.273354, "355A"], +[-37.7601782167, 175.2858085333, "38A"], +[-37.7397357333, 175.2737585333, "367"], +[-37.7576178167, 175.2840254167, "90B"], +[-37.73977215, 175.2733287833, "367B"], +[-37.7496894, 175.2801853667, "216C"], +[-37.7478284167, 175.2767620167, "259"], +[-37.7472310333, 175.2767536833, "260A"], +[-37.7470854, 175.2769429667, "260B"], +[-37.7477129, 175.2766396, "261"], +[-37.7476114833, 175.27649865, "263"], +[-37.7475075333, 175.27637165, "265"], +[-37.74739815, 175.2762437667, "267"], +[-37.7472957, 175.2761452167, "269"], +[-37.75395725, 175.2819796, "149"], +[-37.7537363333, 175.2824702, "150"], +[-37.7538031167, 175.2818894167, "151"], +[-37.7535725667, 175.28236495, "152"], +[-37.7536634667, 175.2817801833, "153"], +[-37.7557321833, 175.2837136, "118"], +[-37.7557063833, 175.2830558167, "119"], +[-37.73525835, 175.2732980667, "416"], +[-37.73505965, 175.2733198833, "418"], +[-37.73744635, 175.27427375, "392B"], +[-37.7373490333, 175.2744859, "392C"], +[-37.7373428167, 175.27468245, "392J"], +[-37.7374826833, 175.2745567833, "392D"], +[-37.7375709667, 175.2743735833, "392E"], +[-37.73766135, 175.27419045, "392F"], +[-37.7377268167, 175.2739878833, "392G"], +[-37.7377653333, 175.2737604833, "392H"], +[-37.7475978833, 175.2771956, "254"], +[-37.74600835, 175.2749136, "291"], +[-37.74780565, 175.2774508333, "250"], +[-37.7526278, 175.2811149, "171"], +[-37.7522774833, 175.28149525, "172"], +[-37.7520655333, 175.2813826833, "174"], +[-37.7524858, 175.2810451667, "175"], +[-37.7620558167, 175.2875924833, "21"], +[-37.7347282, 175.27343945, "422"], +[-37.74816145, 175.27715765, "253"], +[-37.7348986, 175.2733713167, "420"], +[-37.7513929833, 175.28096595, "188"], +[-37.75232875, 175.2809291167, "177"], +[-37.75216245, 175.2808337167, "179"], +[-37.75150295, 175.2812482333, "186A"], +[-37.7515862833, 175.2810666167, "186"], +[-37.7520113167, 175.2807425, "181"], +[-37.7518653833, 175.2806705, "183"], +[-37.7529277, 175.2813043667, "167"], +[-37.7529365667, 175.28194635, "162"], +[-37.7477026333, 175.2773275333, "252"], +[-37.7345691167, 175.2735051167, "424"], +[-37.7591289333, 175.28423685, "68"], +[-37.76196925, 175.2874464, "25"], +[-37.7609096167, 175.2865075333, "28"], +[-37.7615647333, 175.2863542333, "35"], +[-37.76145905, 175.2865808, "35A"], +[-37.7612256, 175.2869653333, "24A"], +[-37.7611505167, 175.2868569833, "24B"], +[-37.76108025, 175.28676055, "26B"], +[-37.7610060667, 175.2866513333, "26A"], +[-37.7616129333, 175.2875684667, "8"], +[-37.7421046, 175.27443505, "340"], +[-37.7501483167, 175.28018295, "208"], +[-37.7499586, 175.2800074, "214"], +[-37.75190115, 175.28127685, "176"], +[-37.7517456333, 175.2811766167, "184"], +[-37.7341413667, 175.2732686333, "431"], +[-37.7336961833, 175.2734386833, "437"], +[-37.7338275, 175.2733951, "435"], +[-37.7339788667, 175.27333165, "433"], +[-37.7333670833, 175.2735809833, "439"], +[-37.7546730833, 175.2824322333, "139"], +[-37.7594219, 175.2851222667, "52"], +[-37.7615715833, 175.2879401667, "4"], +[-37.74679725, 175.2762203833, "262"], +[-37.73359415, 175.2738943333, "440"], +[-37.7334037333, 175.27395045, "442"], +[-37.7332309833, 175.2740241667, "444"], +[-37.7330583333, 175.2740922167, "446"], +[-37.7329038333, 175.2741552, "448"], +[-37.7325174333, 175.2741027167, "452"], +[-37.7323425333, 175.2740629, "454"], +[-37.7327150667, 175.27413195, "450"], +[-37.7375139167, 175.2732675167, "393"], +[-37.7377156833, 175.2733167333, "391"], +[-37.7369250333, 175.273147, "399"], +[-37.7371326833, 175.27318225, "397"], +[-37.7373289833, 175.2732224167, "395"], +[-37.7363447667, 175.2730179167, "405"], +[-37.7365408833, 175.2730669333, "403"], +[-37.73673975, 175.2731196, "401"], +[-37.7352014, 175.2728826333, "417"], +[-37.7355485167, 175.272848, "413"], +[-37.7350284667, 175.2729372167, "419"], +[-37.7348636167, 175.2730097833, "421"], +[-37.7346704833, 175.2730885167, "423"], +[-37.7353717333, 175.27281735, "415"], +[-37.7343047, 175.2732076333, "427"], +[-37.7344974833, 175.2731466333, "425"], +[-37.7378895667, 175.27335085, "389"], +[-37.7358031833, 175.2733186, "410"], +[-37.7548178333, 175.28252835, "137"], +[-37.7545302667, 175.28297435, "136"], +[-37.73827945, 175.27200055, "381A"], +[-37.7382082833, 175.2718166333, "381B"], +[-37.7380549167, 175.2719708, "381C"], +[-37.7379568667, 175.2719352333, "381D"], +[-37.7380163333, 175.2716412333, "381E"], +[-37.7380986, 175.2713877833, "381F"], +[-37.7382673667, 175.27144315, "381G"], +[-37.73842015, 175.2715028667, "381H"], +[-37.74382495, 175.2749002833, "322"], +[-37.7435697333, 175.2746987333, "324"], +[-37.7437199167, 175.27424285, "325"], +[-37.7434376667, 175.2746682333, "326"], +[-37.7435606, 175.2741889333, "327"], +[-37.7432461667, 175.2746274167, "328"], +[-37.7433540833, 175.2741186667, "329"], +[-37.7431406333, 175.27485865, "330"], +[-37.7431555667, 175.2740664, "331"], +[-37.7430458167, 175.27456985, "332"], +[-37.7428654667, 175.2745450333, "334"], +[-37.7426952, 175.2745206167, "336"], +[-37.7424136333, 175.27445405, "338"], +[-37.7422577167, 175.2737517833, "343"], +[-37.7420759833, 175.2737524833, "345"], +[-37.74032725, 175.2738514833, "353"], +[-37.7396061333, 175.2737385, "367A"], +[-37.7393977, 175.2736945667, "371"], +[-37.7392294, 175.2736579, "373"], +[-37.7390588833, 175.2736165333, "375"], +[-37.7543909333, 175.2828816333, "140"], +[-37.7549896, 175.2832541667, "128"], +[-37.7547847333, 175.2835355, "130"], +[-37.7548216833, 175.2831474, "132"], +[-37.7549515667, 175.2825781333, "135"], +[-37.7527703667, 175.2812045333, "169"], +[-37.7534066, 175.2822591, "156"], +[-37.7532571833, 175.28216355, "158"], +[-37.7530969333, 175.2820524, "160"], +[-37.7512628833, 175.2808647333, "190"], +[-37.7510848833, 175.2807578, "192"], +[-37.7507529333, 175.2805395, "198"], +[-37.7509398333, 175.2806805833, "196"], +[-37.75060155, 175.2804509, "200"], +[-37.7504472833, 175.28034325, "202"], +[-37.7502934833, 175.2802621667, "206"], +[-37.7497956833, 175.2798196667, "216A"], +[-37.7497142833, 175.2799974333, "216B"], +[-37.7485958833, 175.2776638167, "243"], +[-37.7484877333, 175.2775389, "245"], +[-37.74806925, 175.2777335667, "246"], +[-37.7479265333, 175.2775864833, "248"], +[-37.7483192, 175.2773605833, "249"], +[-37.7480583833, 175.2770088167, "255"], +[-37.7474855667, 175.2770635, "256"], +[-37.7479396, 175.2768881, "257"], +[-37.7472073, 175.2771079833, "258A"], +[-37.7473586167, 175.2769146333, "258B"], +[-37.7469944667, 175.2757860833, "275"], +[-37.74690675, 175.27566825, "277"], +[-37.7467959333, 175.2755309833, "279"], +[-37.7469026, 175.2752144, "281"], +[-37.7466605833, 175.27535145, "283"], +[-37.7564392833, 175.2834899, "105"], +[-37.7561374333, 175.2833573333, "109"], +[-37.75600975, 175.28326715, "111"], +[-37.7560992167, 175.2828914, "113"], +[-37.7562783833, 175.28343965, "107"], +[-37.7560118667, 175.28280165, "115"], +[-37.7559073167, 175.28387705, "116"], +[-37.75582975, 175.2831548833, "117"], +[-37.7569195, 175.2840631167, "100"], +[-37.756746, 175.2840832833, "102"], +[-37.7567571, 175.2834625333, "101"], +[-37.75660255, 175.2834809667, "103"], +[-37.7555862333, 175.2836295833, "120"], +[-37.7557751333, 175.2827106167, "121"], +[-37.7554454, 175.2835443833, "122"], +[-37.75569565, 175.2826535667, "123"], +[-37.7552925667, 175.2834315167, "124"], +[-37.7555207167, 175.2829511167, "125"], +[-37.7551488667, 175.2833500833, "126"], +[-37.7553691833, 175.28285445, "127"], +[-37.7554519667, 175.2824987, "129"], +[-37.7552149667, 175.2827728667, "131"], +[-37.7550599667, 175.28266475, "133"], +[-37.7616799333, 175.2876596833, "6"], +[-37.7603346333, 175.2849736333, "47"], +[-37.7597076, 175.28493685, "50"], +[-37.7582936167, 175.2831413667, "75"], +[-37.7586418333, 175.2837650833, "76"], +[-37.7584159667, 175.2836975833, "78"], +[-37.7582061, 175.2840145333, "82A"], +[-37.7581727, 175.2837329833, "82"], +[-37.7579839833, 175.2837620667, "84"], +[-37.7578449833, 175.2826976, "87"], +[-37.75780995, 175.2838140333, "88"], +[-37.7589827333, 175.2840658833, "70"], +[-37.7586866667, 175.28404535, "72A"], +[-37.75882165, 175.28383905, "72"], +[-37.7593004833, 175.28333765, "73"], +[-37.7570868167, 175.2839947833, "98"], +[-37.7568925333, 175.2834430667, "99"], +[-37.7573899167, 175.2838448167, "94A"], +[-37.7576496167, 175.2838565667, "90"], +[-37.7575691333, 175.2840916333, "94B"], +[-37.75724715, 175.2839690167, "96"], +[-37.7614625833, 175.2873365833, "10A"], +[-37.7614007667, 175.2875331333, "10B"], +[-37.76146085, 175.2877120333, "10"], +[-37.76131255, 175.2870991833, "20"], +[-37.7608075, 175.28636555, "30"], +[-37.7607036, 175.2862033333, "32"], +[-37.76060205, 175.2860604, "34"], +[-37.7604807333, 175.28591265, "36"], +[-37.76153575, 175.2860505167, "37A"], +[-37.7616144833, 175.2861168667, "37C"], +[-37.76179575, 175.2878204667, "2"], +[-37.75982965, 175.28507655, "48"], +[-37.7610955833, 175.2860403667, "41"], +[-37.76117915, 175.28548815, "43A"], +[-37.7612574833, 175.2857441833, "43B"], +[-37.7611543, 175.2853621, "45"], +[-37.7399190167, 175.2737805833, "355"], +[-37.7434669, 175.2740201667, "329A"], +[-37.7390180667, 175.27400955, "374"], +[-37.7356485167, 175.2733111833, "412"], +[-37.7543912333, 175.2822439, "143"], +[-37.7539095167, 175.28257515, "148"], +[-37.7546678167, 175.2830852167, "134"], +[-37.7376113, 175.2737554, "392"], +[-37.73754035, 175.2740189333, "392A"], +[-37.7541052, 175.28204955, "147"], +[-37.76139955, 175.2858962833, "39B"], +[-37.75655615, 175.2841097333, "106"], +[-37.7612135833, 175.2862508833, "39A"], +[-37.7603397333, 175.2857393667, "38"], +[-37.76020435, 175.2855664667, "40"], +[-37.7613366, 175.2864243167, "37"], +[-37.7370166167, 175.27351915, "396"], +[-37.7371786167, 175.2735497, "394"], +[-37.7366117333, 175.2734309667, "404"], +[-37.7571702167, 175.2842516, "98A"], +[-37.7337911333, 175.2738376333, "438"], +[-37.7342940333, 175.2736334333, "430"], +[-37.7403846667, 175.2742575833, "362C"], +[-37.74015535, 175.2741923333, "362D"], +[-37.7408862167, 175.27436975, "362A"], +[-37.7406365, 175.274304, "362B"], +[-37.7596581333, 175.28541405, "46"], +[-37.7600928167, 175.28540165, "42"], +[-37.75997295, 175.2852499167, "44"], +[-37.7540759167, 175.28266625, "146"], +[-37.7542406333, 175.2827834333, "142"], +[-37.7535349333, 175.2817022667, "155"], +[-37.7354320167, 175.2732896167, "414"], +[-37.7542426167, 175.2821578333, "145"], +[-37.7545241667, 175.2823560667, "141"], +[-37.7821805, 175.30937065, "9"], +[-37.7821725833, 175.3095380667, "10"], +[-37.78217145, 175.3096947667, "8"], +[-37.78232215, 175.3096888333, "6"], +[-37.7823272667, 175.3094470667, "7"], +[-37.7825405833, 175.3095752, "3"], +[-37.782454, 175.30954205, "5"], +[-37.7824785, 175.3097243333, "4"], +[-37.7422038167, 175.2232870833, "12"], +[-37.74198065, 175.22367225, "11"], +[-37.7421645667, 175.2230928, "10"], +[-37.7414848167, 175.22320755, "1"], +[-37.7421115667, 175.223592, "13"], +[-37.7421812, 175.2234613667, "14"], +[-37.7415424833, 175.2232961333, "3"], +[-37.7420032833, 175.2230214833, "8"], +[-37.7416089167, 175.2228518, "2"], +[-37.7417631333, 175.2235265667, "7"], +[-37.74172205, 175.2229459833, "4"], +[-37.7418595, 175.2230229, "6"], +[-37.7416696167, 175.2234087833, "5"], +[-37.7418998167, 175.22363955, "9"], +[-37.7217707833, 175.2296281667, "19"], +[-37.7220084, 175.2294919833, "17B"], +[-37.72229025, 175.22952315, "17"], +[-37.7234737333, 175.2296265167, "9"], +[-37.7228575833, 175.2295009333, "11"], +[-37.7225569, 175.22944475, "15"], +[-37.7955856667, 175.3176632, "17A"], +[-37.7959051, 175.3174438, "8A"], +[-37.79602345, 175.3173765167, "8"], +[-37.7959195833, 175.3165598167, "3"], +[-37.7960924167, 175.3179484833, "14"], +[-37.7956992833, 175.3176028333, "17"], +[-37.7957967667, 175.3178376, "19"], +[-37.79600745, 175.3176099, "10"], +[-37.7952200667, 175.31697065, "11"], +[-37.7961149333, 175.3177969667, "12"], +[-37.7955654167, 175.3173725333, "15"], +[-37.7955417833, 175.3172447167, "13"], +[-37.7958528333, 175.3181306667, "21"], +[-37.7959728, 175.3180239167, "23"], +[-37.7957786, 175.3166796833, "5"], +[-37.7959995667, 175.3169065667, "4"], +[-37.7958008167, 175.31729305, "6"], +[-37.7956630833, 175.3168012167, "7"], +[-37.7954614333, 175.3165708833, "7A"], +[-37.7953595667, 175.3168720833, "9A"], +[-37.79560265, 175.3169534, "9"], +[-37.8020120333, 175.2923072333, "5A"], +[-37.8017985, 175.2925694, "5"], +[-37.8019699833, 175.2927264333, "6"], +[-37.8015703, 175.2927789833, "1"], +[-37.8017415333, 175.2930280667, "2"], +[-37.80163145, 175.2926185667, "3"], +[-37.8018249, 175.2928741333, "4"], +[-37.8019602167, 175.2925751167, "8"], +[-37.7386315167, 175.2637523667, "4"], +[-37.7387437833, 175.2634904833, "6"], +[-37.7388912, 175.26384595, "3"], +[-37.7390150833, 175.26356675, "5"], +[-37.7391117, 175.2632475, "7"], +[-37.739054, 175.2627746333, "14"], +[-37.7392203667, 175.2628898333, "16"], +[-37.7394022167, 175.2629382833, "18"], +[-37.7395529833, 175.26300345, "20"], +[-37.7396890333, 175.26309275, "22"], +[-37.7403886, 175.2641451667, "36"], +[-37.74018685, 175.2638373167, "32"], +[-37.7400911333, 175.2637066333, "30"], +[-37.7400071833, 175.2635445833, "28"], +[-37.73991775, 175.2633857167, "26"], +[-37.7398229, 175.2632159667, "24"], +[-37.7393562833, 175.2632556167, "9"], +[-37.7395041167, 175.2633242, "11"], +[-37.7402566833, 175.26399905, "34"], +[-37.7393566667, 175.2636385333, "13"], +[-37.7392859833, 175.2637951833, "15"], +[-37.73922625, 175.2639702833, "17"], +[-37.7393895333, 175.2639614333, "19"], +[-37.7394965167, 175.26395785, "21"], +[-37.7395311167, 175.2637785167, "23"], +[-37.7396582333, 175.26348865, "25"], +[-37.7397608833, 175.2636938833, "27"], +[-37.7398420167, 175.2638524667, "29"], +[-37.73973305, 175.26408245, "31"], +[-37.7398866333, 175.26407175, "33"], +[-37.74000785, 175.2641962833, "35"], +[-37.7401365, 175.2642364, "37"], +[-37.7402192667, 175.2641786833, "38"], +[-37.73882495, 175.2640069333, "1"], +[-37.7385573, 175.2639774167, "2"], +[-37.8049671167, 175.2734226833, "13"], +[-37.8048176, 175.2741827167, "10"], +[-37.8047734667, 175.2739953167, "12"], +[-37.80499955, 175.2736032167, "11"], +[-37.8047411333, 175.2734989333, "18"], +[-37.80483315, 175.2734124333, "15"], +[-37.8047205333, 175.2738124833, "14"], +[-37.80468495, 175.2736693333, "16"], +[-37.8049411833, 175.2747105833, "4"], +[-37.8052647333, 175.27464585, "1"], +[-37.8051658167, 175.2744842833, "3"], +[-37.8050548833, 175.2740267167, "7"], +[-37.80510465, 175.2742432, "5"], +[-37.8050235167, 175.2738244, "9"], +[-37.8048982833, 175.2745465167, "6"], +[-37.8048515333, 175.2743668833, "8"], +[-37.7274703, 175.2850119167, "5"], +[-37.7276232833, 175.28512975, "3"], +[-37.7260225167, 175.2840289, "18"], +[-37.7260676167, 175.2836496, "25"], +[-37.7264060833, 175.2841097, "14"], +[-37.7265501667, 175.2843293333, "12"], +[-37.7261909167, 175.28405575, "16"], +[-37.7277903667, 175.2852203833, "1"], +[-37.7274067833, 175.2853821, "2"], +[-37.7271483167, 175.2851373833, "4"], +[-37.7271552167, 175.2847270333, "9"], +[-37.7273227833, 175.2848751167, "7"], +[-37.7266535667, 175.28455615, "10"], +[-37.7267774667, 175.2841262667, "15"], +[-37.7267536667, 175.2847785833, "8"], +[-37.726687, 175.28392755, "17"], +[-37.72686485, 175.2843110667, "13"], +[-37.7265970667, 175.2837841667, "19"], +[-37.7262609667, 175.2836964333, "23"], +[-37.7264391, 175.28374275, "21"], +[-37.7269904167, 175.2845279667, "11"], +[-37.7766352, 175.3458663667, "3"], +[-37.8197872667, 175.2781681833, "20A"], +[-37.8189118667, 175.2780092333, "10A"], +[-37.81869735, 175.2778746167, "8A"], +[-37.8186462, 175.2781956667, "8"], +[-37.82072225, 175.2785933, "27"], +[-37.8204911333, 175.2782351167, "28A"], +[-37.8197746333, 175.2788461, "9"], +[-37.8188302667, 175.2782388167, "10"], +[-37.8198317, 175.279206, "11"], +[-37.8190155, 175.27828685, "12"], +[-37.8199258333, 175.2792200167, "13"], +[-37.8192178833, 175.2783440333, "14A"], +[-37.81920805, 175.2780109, "14B"], +[-37.8194301, 175.2779710167, "16B"], +[-37.82011375, 175.2789173, "15"], +[-37.8193910167, 175.27837315, "16"], +[-37.8195550333, 175.2784113833, "18"], +[-37.8203236, 175.2789670833, "19"], +[-37.8197151, 175.2784650667, "20"], +[-37.8205071667, 175.2790355333, "21"], +[-37.8206893833, 175.2789636667, "23A"], +[-37.8198937167, 175.2784994833, "22"], +[-37.8206613667, 175.27899685, "23"], +[-37.82007125, 175.2785462667, "24"], +[-37.8206771333, 175.2787996833, "25"], +[-37.8180684333, 175.2784493833, "1"], +[-37.8202487, 175.2785858167, "26"], +[-37.8204221333, 175.27859565, "28"], +[-37.8210585167, 175.2784314, "29A"], +[-37.8207785333, 175.2783699833, "29"], +[-37.8182966833, 175.27848875, "3"], +[-37.8182996833, 175.2781358167, "4"], +[-37.8184756667, 175.2785415667, "5"], +[-37.8190699167, 175.2786661167, "7"], +[-37.81848175, 175.27815825, "6"], +[-37.8203111833, 175.2794108833, "17A"], +[-37.8201886667, 175.2792957833, "17"], +[-37.77519715, 175.2709970333, "7A"], +[-37.7752804, 175.2711779167, "5"], +[-37.7753054833, 175.2712519833, "3A"], +[-37.7751304833, 175.2706136833, "1/6-4/6"], +[-37.7748519333, 175.2707866833, "2"], +[-37.7749743333, 175.2706945833, "4"], +[-37.7750762, 175.2711074333, "1"], +[-37.7752744167, 175.2709384, "7B"], +[-37.77538795, 175.2708742833, "7C"], +[-37.77541845, 175.2709621833, "7D"], +[-37.7920164167, 175.2562541833, "4/58"], +[-37.7940026333, 175.2555926833, "19A"], +[-37.7939463333, 175.2559631667, "19"], +[-37.7935140167, 175.2563644833, "28"], +[-37.7935340333, 175.2559160333, "27"], +[-37.7928758167, 175.2558025833, "39"], +[-37.7923791167, 175.2552908333, "53"], +[-37.79457625, 175.2565258, "6"], +[-37.7917251, 175.2556215833, "71"], +[-37.79150425, 175.2560383, "74"], +[-37.7933107667, 175.2554537667, "31B"], +[-37.7929819, 175.2558246833, "1/37-6/37"], +[-37.7939599, 175.2565621667, "20A"], +[-37.7926796167, 175.25578305, "45A"], +[-37.7929393167, 175.2562441667, "38"], +[-37.7916612667, 175.2561160333, "1/70-8/70"], +[-37.7921665333, 175.2562743333, "2/58"], +[-37.79216085, 175.2560826333, "3/58"], +[-37.7919021333, 175.2562314667, "5/58"], +[-37.79123745, 175.25599705, "1/80-8/80"], +[-37.7911900167, 175.2568774333, "80A"], +[-37.79230625, 175.2549178, "55B"], +[-37.79438775, 175.2557605333, "11B"], +[-37.7943963333, 175.2555816833, "11C"], +[-37.7943539833, 175.2560383667, "11"], +[-37.7942052, 175.2564485333, "14"], +[-37.7942583333, 175.25548985, "15A"], +[-37.7942082167, 175.2560067, "15"], +[-37.7940687333, 175.256427, "16"], +[-37.7941424833, 175.2557179833, "17A"], +[-37.7941570833, 175.2555809667, "17B"], +[-37.7941664, 175.2554291167, "17C"], +[-37.7940660833, 175.2559953667, "17"], +[-37.79392735, 175.25641395, "20"], +[-37.7937954, 175.2559534333, "21"], +[-37.79378765, 175.25640055, "22"], +[-37.7936577167, 175.2559461333, "23"], +[-37.79364395, 175.25637785, "24"], +[-37.7934810833, 175.25553045, "29A"], +[-37.7933877167, 175.25588005, "29"], +[-37.79339755, 175.2562909, "30"], +[-37.7932391333, 175.2558545333, "31"], +[-37.7932574167, 175.2565547, "32"], +[-37.7930951333, 175.2562936667, "34"], +[-37.7931681667, 175.2554290333, "35A"], +[-37.7931129833, 175.2558405, "35"], +[-37.7947364333, 175.2557765, "3"], +[-37.792953, 175.2553371667, "39B"], +[-37.79280385, 175.2562192833, "40"], +[-37.7927736833, 175.2557902, "41"], +[-37.7926470333, 175.2562275833, "46"], +[-37.7926354333, 175.2555355167, "47B"], +[-37.79265355, 175.2553516833, "47D"], +[-37.79268385, 175.25504605, "47E"], +[-37.7925703833, 175.2557563333, "47"], +[-37.7947286333, 175.2565389167, "4"], +[-37.7945624, 175.2560709333, "5"], +[-37.7924420333, 175.2554508833, "51A"], +[-37.7924308833, 175.2557515, "51"], +[-37.7922976667, 175.2552524667, "55A"], +[-37.7921409167, 175.2557628667, "57"], +[-37.79213665, 175.25549905, "57B"], +[-37.79192405, 175.2560586667, "58"], +[-37.7919113167, 175.2556667167, "63"], +[-37.7918831, 175.2551984833, "65"], +[-37.7917921833, 175.256094, "66"], +[-37.7914825333, 175.2563391333, "76A"], +[-37.79145765, 175.2565728333, "76B"], +[-37.791431, 175.2567566167, "76C"], +[-37.7914090667, 175.2569721, "76D"], +[-37.7912351333, 175.2570590667, "76E"], +[-37.7913868333, 175.2560230833, "76"], +[-37.7944442167, 175.2560479, "9"], +[-37.79208205, 175.2554434833, "61B"], +[-37.7921069667, 175.25509615, "61C"], +[-37.7921175, 175.25495435, "61D"], +[-37.7920606667, 175.25562005, "61A"], +[-37.79429415, 175.2566748667, "10A"], +[-37.7943981333, 175.2564569167, "10"], +[-37.79058175, 175.3026533167, "14"], +[-37.7912737167, 175.3024212667, "3"], +[-37.7906778333, 175.30308755, "10"], +[-37.79065945, 175.3021864667, "11"], +[-37.7907103, 175.3026879167, "12"], +[-37.7905120667, 175.3021405, "13"], +[-37.7904151667, 175.30184375, "15A"], +[-37.7905780833, 175.3017614, "15B"], +[-37.7904535333, 175.3026012667, "16"], +[-37.7911314, 175.30285795, "2"], +[-37.7910302667, 175.3028189833, "4"], +[-37.7911259333, 175.3023727333, "5"], +[-37.79090395, 175.3027623333, "6"], +[-37.7909797667, 175.3023133167, "7"], +[-37.7907978833, 175.3031440333, "8A"], +[-37.7907370167, 175.30323855, "8B"], +[-37.7908126833, 175.3022559167, "9"], +[-37.74540885, 175.2728145, "71"], +[-37.74574085, 175.27319485, "84"], +[-37.74584595, 175.27362525, "86"], +[-37.74611315, 175.2736619833, "88"], +[-37.7455883, 175.2737305833, "89"], +[-37.7459336167, 175.2712776833, "59B"], +[-37.74613185, 175.2712976667, "59"], +[-37.7467135, 175.2714262667, "60"], +[-37.74649855, 175.2714556333, "62"], +[-37.7460627667, 175.2706954833, "53"], +[-37.74637765, 175.2705351333, "49"], +[-37.74718875, 175.2675529167, "23"], +[-37.7474217667, 175.26814275, "24"], +[-37.7473518, 175.26693945, "17"], +[-37.74724785, 175.2673487, "21"], +[-37.74708895, 175.2679505833, "27"], +[-37.7464669833, 175.2690863833, "39"], +[-37.7464200667, 175.2716153167, "64"], +[-37.7462152, 175.2719027333, "66A"], +[-37.74631575, 175.2717649333, "66"], +[-37.7478650167, 175.2664511, "8"], +[-37.74633345, 175.2707240667, "51"], +[-37.74667, 175.2709686667, "56"], +[-37.7453040333, 175.2738750333, "87"], +[-37.7460369167, 175.2708475333, "55"], +[-37.7467114667, 175.2707628333, "54"], +[-37.747599, 175.265972, "7"], +[-37.74765, 175.26578065, "5"], +[-37.74624725, 175.2710214667, "57"], +[-37.7465940167, 175.2711993167, "58"], +[-37.7451667333, 175.2734342833, "79"], +[-37.74496875, 175.2734939167, "79A"], +[-37.747819, 175.2666635833, "10"], +[-37.7475051167, 175.2663671667, "11"], +[-37.7477602, 175.2668804833, "12"], +[-37.74745225, 175.2665429167, "13"], +[-37.74769685, 175.26710695, "14"], +[-37.74739885, 175.2667514, "15"], +[-37.7476355333, 175.26731985, "16"], +[-37.7475773833, 175.2675265667, "18"], +[-37.7472936, 175.26715405, "19"], +[-37.7475280833, 175.2677350833, "20"], +[-37.7474666167, 175.2679378333, "22"], +[-37.7482386333, 175.2650479833, "1"], +[-37.7471357, 175.26776345, "25"], +[-37.7473434833, 175.2683766167, "26"], +[-37.7472948167, 175.2686005, "28"], +[-37.7468479, 175.2681298333, "29B"], +[-37.7470095333, 175.2681875833, "29"], +[-37.7472212167, 175.2688634667, "40"], +[-37.7467358167, 175.2692652167, "41"], +[-37.7471716333, 175.2690668667, "42"], +[-37.7466730333, 175.2694991667, "43"], +[-37.7471301833, 175.2692604667, "44"], +[-37.7466205167, 175.2697164167, "45"], +[-37.7470789, 175.26945825, "46"], +[-37.74656485, 175.2699829, "47"], +[-37.7470268667, 175.2696681833, "48"], +[-37.7482670167, 175.2655399833, "4"], +[-37.7458866333, 175.2739136167, "90"], +[-37.7456087833, 175.27409145, "91"], +[-37.7458843167, 175.2741429667, "92"], +[-37.7455338, 175.2742733, "93"], +[-37.74589265, 175.2744004833, "94"], +[-37.7453224167, 175.2743405833, "95"], +[-37.7458305, 175.2746720167, "96"], +[-37.7453131667, 175.2744902167, "97"], +[-37.7457825167, 175.2748549667, "98"], +[-37.7454838333, 175.2745792, "99"], +[-37.7475520667, 175.2661672333, "9"], +[-37.7469010667, 175.27007965, "52"], +[-37.7454836833, 175.2735727167, "83"], +[-37.7469685, 175.2698521667, "50"], +[-37.7454314833, 175.2731066, "75"], +[-37.7452654, 175.2729587, "73"], +[-37.7459947833, 175.2715491, "59A"], +[-37.7484009833, 175.2654413, "2"], +[-37.74689975, 175.2685902, "33"], +[-37.7469528833, 175.2683863167, "31"], +[-37.74511385, 175.27329395, "77"], +[-37.7468439667, 175.26880015, "35"], +[-37.7467906833, 175.2690073833, "37"], +[-37.7454445, 175.2733645, "81"], +[-37.7480750667, 175.2651747833, "3"], +[-37.7457796667, 175.2733782833, "84A"], +[-37.7841555667, 175.2813972833, "4"], +[-37.7845596167, 175.2813826333, "6"], +[-37.7847621333, 175.2815808667, "9"], +[-37.7851298833, 175.2803575667, "34"], +[-37.7851922, 175.2802152833, "36"], +[-37.7857340333, 175.2792655833, "58"], +[-37.7856342167, 175.2794400667, "54"], +[-37.7860383167, 175.27943205, "61"], +[-37.7861129333, 175.2792824833, "65"], +[-37.7872342667, 175.2766521167, "94"], +[-37.7858066333, 175.27879655, "64A"], +[-37.7858583667, 175.27901245, "64"], +[-37.7843555167, 175.2817053167, "2"], +[-37.7846710833, 175.28122675, "8"], +[-37.7845863667, 175.2820051333, "7"], +[-37.7862848667, 175.2783311833, "80"], +[-37.7863660333, 175.2781703167, "82"], +[-37.7864743167, 175.2780456167, "84"], +[-37.7858246, 175.2790824167, "62"], +[-37.7859951833, 175.2788744, "66A"], +[-37.7859352167, 175.2789102833, "66"], +[-37.78599335, 175.27880885, "68"], +[-37.7852884333, 175.2799572167, "44"], +[-37.7860542167, 175.2787137833, "70"], +[-37.785444, 175.2798217667, "46"], +[-37.7894873667, 175.2495365667, "1"], +[-37.7883286333, 175.2491085, "17"], +[-37.7878466333, 175.2490244667, "1/20-16/20"], +[-37.7886040833, 175.2493951333, "8"], +[-37.7884872, 175.2494301667, "10"], +[-37.7887829333, 175.2490689333, "11"], +[-37.78831755, 175.2494339667, "12"], +[-37.7886355833, 175.2490845833, "13"], +[-37.7881456833, 175.2494574333, "14"], +[-37.7884833167, 175.2491054333, "15"], +[-37.7879826833, 175.2496201167, "16"], +[-37.788011, 175.24936485, "18"], +[-37.78818025, 175.2490146833, "19"], +[-37.7890744167, 175.2494604833, "4"], +[-37.7892713333, 175.2492360333, "3"], +[-37.7892549, 175.2490837333, "5"], +[-37.7888117833, 175.2493974667, "6"], +[-37.7891042, 175.249098, "7"], +[-37.78893375, 175.2490685167, "9"], +[-37.8062473333, 175.2857043167, "12A"], +[-37.80667105, 175.28453005, "5A"], +[-37.8066748667, 175.2847965667, "5"], +[-37.8066087667, 175.2845124333, "7A"], +[-37.8066005667, 175.2847998, "7"], +[-37.8069038167, 175.2858643, "4A"], +[-37.8058885833, 175.2858605333, "16B"], +[-37.8058649833, 175.2859587833, "16C"], +[-37.8058444, 175.2860331667, "16D"], +[-37.80608815, 175.2857713167, "14B"], +[-37.8060964167, 175.28586105, "14C"], +[-37.8061022833, 175.2859443, "14D"], +[-37.8060953333, 175.2860335333, "14E"], +[-37.8060297833, 175.2860776667, "14F"], +[-37.8062934167, 175.2848726167, "13"], +[-37.8061922167, 175.2849119167, "15"], +[-37.8063825833, 175.2856938167, "10"], +[-37.80640905, 175.28533405, "11"], +[-37.80608325, 175.2857024667, "14A"], +[-37.8059167167, 175.2857659333, "16A"], +[-37.8061938667, 175.2853506, "17"], +[-37.8056579833, 175.2860958833, "18A"], +[-37.8055428333, 175.2859196667, "18B"], +[-37.80579355, 175.2857233167, "18"], +[-37.80603625, 175.2853826333, "19"], +[-37.8069811333, 175.2852663333, "1A"], +[-37.8072225833, 175.2852437, "1"], +[-37.8057552333, 175.2855848833, "20"], +[-37.8058936667, 175.2853737167, "21"], +[-37.8057972333, 175.2854232167, "23"], +[-37.8070383667, 175.2855861333, "2"], +[-37.8067052, 175.2851002333, "3A"], +[-37.8067307667, 175.2852879, "3"], +[-37.8068592, 175.2856474833, "4"], +[-37.8067048, 175.2856598, "6"], +[-37.8065452667, 175.2856712167, "8"], +[-37.8066204667, 175.2851124667, "9A"], +[-37.80662215, 175.28530645, "9"], +[-37.8062551333, 175.285801, "12B"], +[-37.8062575833, 175.2858933667, "12C"], +[-37.8062654833, 175.2859859, "12D"], +[-37.8062704667, 175.28606045, "12E"], +[-37.7730968833, 175.2686192, "16"], +[-37.7724664, 175.2678134833, "3"], +[-37.77269685, 175.2682030333, "6"], +[-37.7730174667, 175.2688430667, "13"], +[-37.772264, 175.2675384333, "1"], +[-37.7728317333, 175.26839865, "10"], +[-37.7729474, 175.2686629333, "12"], +[-37.7730640667, 175.26878855, "14"], +[-37.7720550333, 175.2674928167, "1A"], +[-37.7722336833, 175.2678823, "2"], +[-37.7724993667, 175.2680220667, "4"], +[-37.7726874833, 175.2679620833, "5"], +[-37.7727515, 175.2682812333, "8"], +[-37.7982557833, 175.2387624833, "44A"], +[-37.7982645, 175.2389685333, "42"], +[-37.7982161333, 175.2409163667, "28"], +[-37.7983289, 175.2397724833, "36"], +[-37.7986638333, 175.2395180833, "39"], +[-37.7982141, 175.2382927333, "48"], +[-37.79859285, 175.2384265167, "47"], +[-37.7981569833, 175.2386900667, "44B"], +[-37.7982303667, 175.2385027167, "46"], +[-37.7986054667, 175.2386467833, "45"], +[-37.7985002, 175.2440983333, "3"], +[-37.7979609667, 175.2382863167, "50"], +[-37.7977705167, 175.2384256667, "52"], +[-37.7981818833, 175.2378194167, "60"], +[-37.7985812, 175.2434727667, "9"], +[-37.79863375, 175.2361900333, "75A"], +[-37.7984266, 175.2362454333, "75"], +[-37.7983059, 175.2351946833, "85"], +[-37.7981910333, 175.2411314, "26"], +[-37.79831, 175.23997025, "34A"], +[-37.7982811, 175.2402427167, "34"], +[-37.7981109167, 175.2371850333, "66"], +[-37.79813835, 175.2441385667, "2"], +[-37.79852535, 175.23732585, "63"], +[-37.7981638, 175.23760495, "62"], +[-37.7985423167, 175.2375252667, "61"], +[-37.7987482333, 175.2371622833, "65"], +[-37.7981434833, 175.2373724667, "64"], +[-37.7980951, 175.2369483833, "68"], +[-37.7984915333, 175.237081, "67"], +[-37.7986567833, 175.23682945, "69A"], +[-37.7979311833, 175.23494805, "84"], +[-37.7982972333, 175.2349575333, "87"], +[-37.7982766, 175.2347579333, "89"], +[-37.7982723, 175.243084, "10"], +[-37.7985904667, 175.2432974167, "11"], +[-37.7978360667, 175.2418417167, "18B"], +[-37.7985505667, 175.2426167833, "15"], +[-37.7981387667, 175.2415169333, "22"], +[-37.7981283333, 175.2417152167, "20"], +[-37.7981718833, 175.2413356667, "24"], +[-37.7984679833, 175.2443092, "1"], +[-37.7978583833, 175.2381588333, "54"], +[-37.7979335833, 175.23809825, "56"], +[-37.7981981667, 175.2380054667, "58"], +[-37.7981594167, 175.2439460833, "4"], +[-37.7985326833, 175.243883, "5"], +[-37.7984497833, 175.2364593667, "73"], +[-37.7980144667, 175.2362689833, "74"], +[-37.7979970333, 175.2360339, "76"], +[-37.7986130167, 175.2359955, "77A"], +[-37.7983987167, 175.2360320167, "77"], +[-37.7979755, 175.2357874667, "78A"], +[-37.7978306167, 175.2358035833, "78B"], +[-37.7983810833, 175.2358442167, "79"], +[-37.7983562833, 175.2356365667, "81"], +[-37.7979477667, 175.2355326, "80"], +[-37.7979364333, 175.2352388, "82A"], +[-37.7977659, 175.2352651167, "82"], +[-37.7983266, 175.2354366667, "83"], +[-37.7985579833, 175.2436770167, "7"], +[-37.79863935, 175.2366188167, "71B"], +[-37.7984809, 175.2366749833, "71"], +[-37.7980718667, 175.2367322333, "70"], +[-37.7984912, 175.2368793667, "69"], +[-37.7986444833, 175.2364007333, "73A"], +[-37.7980377667, 175.2364935833, "72"], +[-37.7978483667, 175.24166815, "20B"], +[-37.7981397333, 175.2421202667, "16"], +[-37.79813165, 175.2419159, "18A"], +[-37.8016418833, 175.2715088333, "153A"], +[-37.80332555, 175.2734038833, "109A"], +[-37.8012517167, 175.2732567667, "144"], +[-37.8021537833, 175.2728204833, "133"], +[-37.8022803, 175.2725762, "131"], +[-37.80126705, 175.2702146833, "169"], +[-37.8013138333, 175.2705214, "167"], +[-37.8012297833, 175.2700064, "171"], +[-37.8012020333, 175.2697949, "173"], +[-37.8013892667, 175.2707242167, "165"], +[-37.8017531, 175.2743091833, "128B"], +[-37.8019932, 175.2738820167, "128"], +[-37.8026285, 175.2723285833, "129"], +[-37.8014467, 175.2742322167, "130B"], +[-37.8018915167, 175.2737982, "130"], +[-37.8018961667, 175.2733628167, "132A"], +[-37.8021706833, 175.2732753333, "132"], +[-37.8017386333, 175.2735973667, "134"], +[-37.8020277333, 175.27256715, "135"], +[-37.8015499833, 175.2738308833, "136"], +[-37.8018429833, 175.2730643333, "140"], +[-37.8017220833, 175.2728504333, "142"], +[-37.8047541, 175.2780286, "45A"], +[-37.8046282167, 175.2779568167, "45"], +[-37.8043692833, 175.27825175, "46"], +[-37.8043284667, 175.2779752833, "48"], +[-37.8039583333, 175.2779767167, "50"], +[-37.8048133667, 175.2777782667, "51B"], +[-37.8046077833, 175.2777427333, "51"], +[-37.8045812333, 175.2775072, "53"], +[-37.80429335, 175.2776320833, "54"], +[-37.8045413333, 175.2772735833, "55"], +[-37.8039240667, 175.2774704833, "58A"], +[-37.8042078833, 175.2772034667, "58"], +[-37.8027099167, 175.2741389, "116B"], +[-37.8027928667, 175.2738317, "116"], +[-37.8029796667, 175.2735099, "117"], +[-37.8024356, 175.27416205, "118A"], +[-37.8021781667, 175.2745981, "118B"], +[-37.80282255, 175.2732370167, "121"], +[-37.8026399667, 175.2735709, "122"], +[-37.8031238167, 175.2751232667, "100"], +[-37.8040265667, 175.2785793167, "40"], +[-37.8048138167, 175.2784787167, "41B"], +[-37.8046813333, 175.2784081833, "41"], +[-37.8036713333, 175.27704135, "66A"], +[-37.80372475, 175.2771668167, "66"], +[-37.8042053833, 175.27640775, "67"], +[-37.8039952167, 175.2766647167, "68"], +[-37.80406905, 175.2762316667, "69"], +[-37.8036951833, 175.2799807333, "6"], +[-37.8028626833, 175.2756871, "94"], +[-37.8034294833, 175.27510285, "93"], +[-37.803364, 175.2737902333, "105"], +[-37.8018505667, 175.27144085, "155"], +[-37.8017157833, 175.2712470833, "155A"], +[-37.8017088, 175.2716793333, "153"], +[-37.8017537, 175.2718239167, "151"], +[-37.8016405167, 175.2724977333, "150"], +[-37.8015366667, 175.27220345, "152"], +[-37.8013151167, 175.2729996833, "148"], +[-37.8012779833, 175.2724956, "154"], +[-37.8015972333, 175.2709169833, "163"], +[-37.8041255167, 175.2795450833, "18B"], +[-37.8049722333, 175.2789574167, "33B"], +[-37.8043757333, 175.2794083333, "26"], +[-37.8030995667, 175.27384905, "109"], +[-37.8032061, 175.27421555, "103"], +[-37.8034601833, 175.27394655, "105B"], +[-37.8032421833, 175.27436995, "101A"], +[-37.8036222, 175.27490075, "97A"], +[-37.8036014833, 175.2746923333, "97B"], +[-37.8032829167, 175.2745566167, "101"], +[-37.80395775, 175.27609905, "71A"], +[-37.8041109333, 175.2759543333, "71B"], +[-37.8038409833, 175.2759540833, "73A"], +[-37.8039864167, 175.2758079167, "73"], +[-37.8036252167, 175.27505335, "93B"], +[-37.8034971667, 175.2754580333, "89A"], +[-37.8037163667, 175.2753717167, "89B"], +[-37.8038649833, 175.27567905, "75A"], +[-37.8044939667, 175.2770452833, "59A"], +[-37.804698, 175.2770344667, "59B"], +[-37.8033477667, 175.2747258333, "99"], +[-37.80146125, 175.2734206333, "138"], +[-37.8013245, 175.2741109167, "136A"], +[-37.80111685, 175.2739367333, "136B"], +[-37.8012123, 175.2737132167, "136C"], +[-37.8049488667, 175.2792007833, "29"], +[-37.8028865333, 175.274183, "112"], +[-37.8033983167, 175.2735832667, "107"], +[-37.8026991667, 175.2743423, "114"], +[-37.8025684167, 175.2730760333, "123"], +[-37.8025942667, 175.2740208167, "116A"], +[-37.8024907, 175.2734613167, "124"], +[-37.8028111833, 175.27248505, "125"], +[-37.80268645, 175.2727595667, "127"], +[-37.8016792667, 175.2742253667, "128A"], +[-37.8028115333, 175.2749686667, "102"], +[-37.8030736667, 175.2749225833, "104"], +[-37.80300675, 175.2746560833, "106"], +[-37.8034423833, 175.27341185, "107A"], +[-37.8025811667, 175.2747387667, "110"], +[-37.8024780167, 175.2751233833, "108"], +[-37.8019915, 175.2752456833, "110B"], +[-37.804144, 175.2800839167, "10"], +[-37.8042537167, 175.2798846, "14"], +[-37.8047118833, 175.2793265, "27"], +[-37.8043301333, 175.27968375, "18A"], +[-37.8047202833, 175.27880315, "33A"], +[-37.8048293333, 175.2787026, "35A"], +[-37.8049579667, 175.2787781667, "33C"], +[-37.8047144167, 175.27863145, "35"], +[-37.80440105, 175.2786417833, "38"], +[-37.80465805, 175.2781919333, "43"], +[-37.8040230833, 175.2783937833, "44"], +[-37.8036731667, 175.2805653667, "2A"], +[-37.8037544167, 175.2804836167, "2B"], +[-37.8038634667, 175.2804143667, "4"], +[-37.8035776333, 175.2769327333, "72"], +[-37.8038181, 175.2764819667, "74"], +[-37.8037328167, 175.2758278667, "75"], +[-37.8034278833, 175.27662405, "76"], +[-37.8036922833, 175.2755206333, "77A"], +[-37.80360715, 175.27567745, "77"], +[-37.8036452, 175.27623095, "78"], +[-37.8034634, 175.2760267167, "82"], +[-37.8031083, 175.2762258, "84"], +[-37.8029598167, 175.2762246167, "86"], +[-37.8032939167, 175.27576075, "88"], +[-37.8034640333, 175.2752738833, "91A"], +[-37.8035909667, 175.2751774667, "91B"], +[-37.80317695, 175.27541275, "92"], +[-37.8044194, 175.27676305, "63"], +[-37.8041316, 175.2769551833, "64A"], +[-37.8038733333, 175.2801012, "8A"], +[-37.8039969333, 175.2803169667, "8"], +[-37.8027612833, 175.2756227, "96"], +[-37.8027606667, 175.27548645, "98"], +[-37.8047066667, 175.2791036333, "31"], +[-37.8034132333, 175.2731706667, "109B"], +[-37.8034992667, 175.2729188667, "109C"], +[-37.8042512667, 175.2791264, "30"], +[-37.8044058, 175.278893, "34"], +[-37.80394405, 175.2772568, "64"], +[-37.80439185, 175.2791056167, "32"], +[-37.7451967167, 175.25268865, "5"], +[-37.7462384667, 175.2513778167, "60"], +[-37.7463929667, 175.2519878, "21"], +[-37.7461027667, 175.251784, "17"], +[-37.7462407167, 175.2518793, "19"], +[-37.74432265, 175.2531228833, "10A"], +[-37.7441904667, 175.25302295, "10B"], +[-37.74448185, 175.2531286, "12B"], +[-37.7446090667, 175.25319125, "12A"], +[-37.7447008667, 175.2529761, "14"], +[-37.7444827833, 175.2527481833, "16"], +[-37.7445292333, 175.2526328333, "18"], +[-37.7448889333, 175.2525141167, "22"], +[-37.7448085333, 175.25272095, "20"], +[-37.7446736167, 175.2522594667, "24"], +[-37.7448822167, 175.2518098833, "32A"], +[-37.7447194333, 175.25172535, "32B"], +[-37.7449372667, 175.2516774833, "34A"], +[-37.7447861667, 175.2514953333, "34B"], +[-37.7449031167, 175.2511808, "40B"], +[-37.7447281333, 175.2521329, "26"], +[-37.7439789833, 175.2535258, "2A"], +[-37.7441180167, 175.25358875, "2"], +[-37.7444106833, 175.2536949333, "4"], +[-37.7444966333, 175.25346835, "6"], +[-37.7442656, 175.2532243, "8A"], +[-37.7441638, 175.2531376833, "8B"], +[-37.74562615, 175.2517252833, "11"], +[-37.7458157167, 175.2515501167, "13"], +[-37.7459648333, 175.2516884, "15"], +[-37.7465433667, 175.25194395, "23"], +[-37.7468375833, 175.2519535167, "25"], +[-37.74686015, 175.2517901667, "27"], +[-37.7465827, 175.25167185, "29"], +[-37.7469596, 175.2519512833, "25A"], +[-37.74500195, 175.2522480833, "28"], +[-37.74519965, 175.25171555, "36"], +[-37.7453289667, 175.2514992833, "38"], +[-37.7450836333, 175.25199405, "30"], +[-37.7450602333, 175.2513937667, "40A"], +[-37.74500255, 175.2510800333, "42"], +[-37.7451701833, 175.2511401, "44"], +[-37.7454299833, 175.2512167167, "46"], +[-37.7454334333, 175.2510026, "48"], +[-37.7456118833, 175.2510084667, "50"], +[-37.7458078, 175.2511060333, "52"], +[-37.7459522333, 175.2508796333, "54"], +[-37.7460565167, 175.2509681, "56"], +[-37.7460461167, 175.2512474, "58"], +[-37.7451525, 175.2527668167, "5A"], +[-37.7965738, 175.2368871333, "12"], +[-37.7968569667, 175.23697555, "14"], +[-37.7965502167, 175.2370482333, "13"], +[-37.7960148167, 175.2369685833, "3"], +[-37.79615375, 175.2373734667, "7"], +[-37.7960810667, 175.2365698333, "2"], +[-37.7968143167, 175.2365333833, "10"], +[-37.79643875, 175.2371572833, "11"], +[-37.7968830833, 175.2371275833, "15"], +[-37.7970442333, 175.23700465, "16"], +[-37.7970557, 175.2371342167, "17"], +[-37.79615835, 175.23705965, "5"], +[-37.7962957167, 175.2367014667, "6"], +[-37.79644875, 175.2367137833, "8"], +[-37.7962863333, 175.2372360333, "9"], +[-37.7185975333, 175.3254754667, "24"], +[-37.6992607, 175.3092476167, "295D"], +[-37.7188973167, 175.3256905167, "22"], +[-37.7060630333, 175.31488245, "195"], +[-37.6980959833, 175.3091197333, "305"], +[-37.7032049667, 175.3144145333, "231A"], +[-37.7008844667, 175.3125188, "261"], +[-37.6987310167, 175.3100499167, "295A"], +[-37.7050351833, 175.3154383833, "206"], +[-37.6990380833, 175.3097286167, "295C"], +[-37.71605945, 175.3233194667, "60"], +[-37.7085651667, 175.3160973167, "165"], +[-37.7066752333, 175.3141082, "187"], +[-37.7159883333, 175.3226152833, "65"], +[-37.7167113167, 175.3231769667, "57"], +[-37.7176423833, 175.3239646833, "43"], +[-37.7124677167, 175.32047685, "104"], +[-37.7054103, 175.3148017167, "203"], +[-37.7000760833, 175.3101594667, "283"], +[-37.6974389167, 175.3077286, "321"], +[-37.7161944167, 175.32278325, "63"], +[-37.7099687667, 175.31870575, "136"], +[-37.70781035, 175.3162232333, "172"], +[-37.7144721333, 175.32111875, "85"], +[-37.7137506333, 175.3208111667, "93"], +[-37.7157388667, 175.3216802333, "71A"], +[-37.7159538333, 175.3210450333, "71B"], +[-37.71954525, 175.32645795, "16"], +[-37.7115633333, 175.31786785, "129"], +[-37.7182709833, 175.3251882333, "28"], +[-37.6985609167, 175.30978675, "295B"], +[-37.7001074667, 175.3116300833, "269"], +[-37.7030028667, 175.3142278667, "231B"], +[-37.70347245, 175.3138153333, "231"], +[-37.8085740333, 175.2873722333, "10"], +[-37.8080133833, 175.29030905, "41A"], +[-37.808129, 175.2903627333, "41"], +[-37.8084672833, 175.2946016333, "85A"], +[-37.80902795, 175.2942046167, "74"], +[-37.8087236, 175.2964598333, "101"], +[-37.8090157667, 175.2957056833, "102"], +[-37.8086560167, 175.2970476167, "107"], +[-37.80867905, 175.2968705, "105"], +[-37.8086117167, 175.2894612667, "28A"], +[-37.8084947167, 175.2878660167, "12"], +[-37.8085597667, 175.2891263333, "24"], +[-37.8083966667, 175.2898676167, "32"], +[-37.8082776167, 175.2912277333, "51"], +[-37.80867755, 175.2947888667, "87"], +[-37.8095219833, 175.2950756833, "90A"], +[-37.8092700833, 175.2957135167, "102A"], +[-37.80871915, 175.29666255, "103"], +[-37.8092014167, 175.29438285, "76A"], +[-37.8094620333, 175.2956312167, "100"], +[-37.8089836333, 175.2933745667, "66"], +[-37.80818695, 175.2873329167, "11"], +[-37.8081774833, 175.28741505, "13"], +[-37.8081688667, 175.2875066667, "15"], +[-37.8084712667, 175.2880893167, "14"], +[-37.8084381833, 175.2883122167, "16"], +[-37.8081602667, 175.2875717333, "17"], +[-37.8084227667, 175.2885221667, "18"], +[-37.8081508333, 175.2876715667, "19"], +[-37.8084003167, 175.2887052333, "20"], +[-37.8081402833, 175.2877921667, "21"], +[-37.8083709667, 175.2889093, "22"], +[-37.80785935, 175.2879863333, "23B"], +[-37.8081254167, 175.2880704667, "23"], +[-37.8086819667, 175.2866754333, "2"], +[-37.8083380333, 175.2890791833, "24A"], +[-37.8081038667, 175.2882467, "25"], +[-37.8080758167, 175.288429, "27"], +[-37.8080540167, 175.2886430833, "29"], +[-37.8083299833, 175.2892958833, "26"], +[-37.8083374167, 175.2894752667, "28"], +[-37.8080311333, 175.2888562167, "31"], +[-37.8083638333, 175.28968035, "30"], +[-37.8079861833, 175.2892791167, "33"], +[-37.8077933667, 175.2895015167, "35A"], +[-37.8080076333, 175.28948005, "35"], +[-37.8079995667, 175.2896826333, "37"], +[-37.8084356, 175.29007625, "34"], +[-37.8088169833, 175.2902424667, "36A"], +[-37.8084724167, 175.29025025, "36"], +[-37.8084988833, 175.2904409, "38"], +[-37.8082343, 175.2869548333, "3"], +[-37.80852435, 175.2906304333, "40"], +[-37.8085617167, 175.29079535, "42"], +[-37.8081518833, 175.29051115, "43"], +[-37.8086045833, 175.2910085667, "44"], +[-37.8081839, 175.2907077167, "45"], +[-37.8086308, 175.2912080333, "46"], +[-37.8082214833, 175.2908794667, "47"], +[-37.8086651667, 175.2913797167, "48"], +[-37.80825845, 175.2910411667, "49"], +[-37.8086407, 175.2868670833, "4"], +[-37.8082187333, 175.2870860167, "5"], +[-37.8088928167, 175.2915627333, "50A"], +[-37.8086903333, 175.29155905, "50"], +[-37.8087395167, 175.2917303667, "52"], +[-37.80830395, 175.2914039667, "53"], +[-37.8087713333, 175.2919293833, "54"], +[-37.8083422667, 175.2915898833, "55"], +[-37.80881425, 175.292118, "56"], +[-37.8083745333, 175.2917852167, "57"], +[-37.8088292833, 175.2922871833, "58"], +[-37.8084123333, 175.2919500667, "59"], +[-37.80861605, 175.2870527333, "6"], +[-37.80846255, 175.29213365, "61"], +[-37.8084946167, 175.2922995333, "63"], +[-37.8085387833, 175.2924839833, "65"], +[-37.8085705333, 175.2926566, "67"], +[-37.8085916667, 175.2928801833, "69"], +[-37.8086220667, 175.2932499, "73"], +[-37.80861265, 175.2930751333, "71"], +[-37.8086286167, 175.2934834667, "75"], +[-37.8090067, 175.2943923667, "76"], +[-37.8086367333, 175.2938304167, "77A"], +[-37.8084854167, 175.2938911, "77B"], +[-37.80852425, 175.2936825667, "77"], +[-37.8094139667, 175.2942238, "1/78"], +[-37.8095598167, 175.2942450833, "78A"], +[-37.8094169, 175.2944349167, "78"], +[-37.8086474667, 175.29401525, "79"], +[-37.80821275, 175.2871742333, "7"], +[-37.8094184833, 175.2945898333, "80"], +[-37.808655, 175.2942152, "81"], +[-37.8090019, 175.29463445, "82"], +[-37.8086568167, 175.29440965, "83"], +[-37.8089992167, 175.2947699667, "84"], +[-37.80866505, 175.29459345, "85"], +[-37.80900035, 175.2949375333, "86"], +[-37.8094432333, 175.2949763167, "88"], +[-37.8086803667, 175.2949794, "89"], +[-37.8094287833, 175.29511125, "90"], +[-37.80901195, 175.2953495, "94"], +[-37.80868815, 175.2951723167, "91"], +[-37.8090177, 175.2951948333, "92"], +[-37.8090111, 175.2954819333, "96"], +[-37.8097075667, 175.2954510833, "98A"], +[-37.80944095, 175.2954828333, "98"], +[-37.8087081167, 175.2958568333, "95"], +[-37.8087203667, 175.2960716667, "97"], +[-37.8087097833, 175.2962720667, "99"], +[-37.7508798, 175.2823780167, "10"], +[-37.7520316833, 175.2820955333, "1"], +[-37.7496855333, 175.2816158, "26"], +[-37.7494287167, 175.2815148, "30"], +[-37.7495486667, 175.2816124333, "28"], +[-37.7511467167, 175.2820455167, "8"], +[-37.7512005, 175.2816360667, "11"], +[-37.7509818667, 175.2819572833, "12"], +[-37.75106465, 175.2815398167, "13"], +[-37.7508181833, 175.2818624333, "14"], +[-37.7509354833, 175.28143265, "15"], +[-37.75068215, 175.2817733333, "16"], +[-37.7507661833, 175.28132825, "17"], +[-37.7504504667, 175.28112965, "21"], +[-37.75002465, 175.2813820167, "22"], +[-37.75032605, 175.2808580833, "23A"], +[-37.7502812667, 175.28104695, "23"], +[-37.7498522167, 175.2812677667, "24"], +[-37.7506009, 175.28121275, "19"], +[-37.7499771833, 175.28085125, "27"], +[-37.75012895, 175.2809470667, "25"], +[-37.74974975, 175.2807084667, "29"], +[-37.7495642167, 175.2806014167, "31"], +[-37.7495562333, 175.2811001667, "32"], +[-37.7495209167, 175.2800909333, "33"], +[-37.7493879, 175.28048605, "35"], +[-37.7493352333, 175.2809145, "36"], +[-37.7492296, 175.2803326167, "37"], +[-37.7491160667, 175.2801640667, "39"], +[-37.7489441667, 175.2805405833, "40"], +[-37.7492926333, 175.2798398, "41"], +[-37.7492094833, 175.2797443167, "43"], +[-37.7488306833, 175.28039805, "42"], +[-37.7484961667, 175.2806387167, "44"], +[-37.7489737167, 175.27998855, "45"], +[-37.7487072333, 175.2802095, "46"], +[-37.748854, 175.27986875, "47"], +[-37.7485817333, 175.2800998667, "48"], +[-37.7490338833, 175.2795490667, "49"], +[-37.75187625, 175.2819917, "3"], +[-37.74847275, 175.27942625, "57"], +[-37.75181195, 175.2825130333, "4"], +[-37.75171675, 175.2819167667, "5"], +[-37.75168135, 175.2824288333, "6"], +[-37.751543, 175.2818161167, "7"], +[-37.7513764833, 175.2817387, "9"], +[-37.7486927, 175.2796868667, "53"], +[-37.7482433333, 175.2802342833, "52"], +[-37.7482908833, 175.2803942667, "50"], +[-37.7489738333, 175.2794511333, "51"], +[-37.7484361333, 175.2798953333, "54"], +[-37.7485917833, 175.2795763333, "55"], +[-37.7295527167, 175.2772705167, "21"], +[-37.7297354333, 175.2771555667, "17"], +[-37.7285221, 175.2779132667, "39"], +[-37.7283656, 175.2780088833, "41"], +[-37.7280940667, 175.2785307833, "44"], +[-37.7279588, 175.2785895833, "46"], +[-37.72797075, 175.27837435, "48"], +[-37.727919, 175.2781781, "50"], +[-37.7278465333, 175.2778147333, "53"], +[-37.72787625, 175.2779962, "52"], +[-37.7279382167, 175.2777919833, "51"], +[-37.72807545, 175.2780848333, "49"], +[-37.7282196833, 175.2780427167, "47"], +[-37.7281994, 175.2777654667, "45"], +[-37.7283004, 175.2777430333, "43"], +[-37.72884835, 175.2777131167, "31"], +[-37.7303918167, 175.27699185, "10"], +[-37.7302808833, 175.2771335, "12"], +[-37.7294778667, 175.27769995, "24"], +[-37.7291163833, 175.2775368167, "27"], +[-37.7286653, 175.2778312833, "37"], +[-37.7289993333, 175.2776149667, "29"], +[-37.7303188, 175.27617575, "2"], +[-37.7303462, 175.2763518333, "4"], +[-37.7303578833, 175.2765714167, "6"], +[-37.7303753333, 175.2767999, "8"], +[-37.72990775, 175.27661735, "5"], +[-37.7297546667, 175.2766722, "7"], +[-37.7296425167, 175.2767837333, "9"], +[-37.7301289, 175.27680905, "11"], +[-37.72994545, 175.2770034833, "13"], +[-37.72981165, 175.2771004667, "15"], +[-37.7296667833, 175.2771994, "19"], +[-37.7298762667, 175.2774318667, "18"], +[-37.7301427833, 175.2772391, "14"], +[-37.7300159833, 175.2773380333, "16"], +[-37.7296058333, 175.2776338667, "22"], +[-37.7297419333, 175.2775352333, "20"], +[-37.7290571167, 175.2779684667, "30"], +[-37.7293272, 175.2777828667, "26"], +[-37.7291948167, 175.2778816167, "28"], +[-37.72870505, 175.2775325833, "33"], +[-37.7283706, 175.2783934333, "40"], +[-37.7285193333, 175.2783139833, "38"], +[-37.72864965, 175.2782245333, "36"], +[-37.7287798667, 175.2781397833, "34"], +[-37.7289269833, 175.27804855, "32"], +[-37.7282306333, 175.2784989667, "42"], +[-37.7286055167, 175.2775738167, "35"], +[-37.7301005333, 175.2765015667, "3"], +[-37.8366261667, 175.3279977, "32"], +[-37.8375562667, 175.32749365, "21"], +[-37.8370397667, 175.3280372, "26"], +[-37.83734305, 175.3280347, "24"], +[-37.8351351167, 175.3275159, "47"], +[-37.8387436, 175.32762475, "9"], +[-37.8368506333, 175.3274494833, "31"], +[-37.8369865, 175.32653405, "2/25"], +[-37.83698155, 175.3257154333, "4/25"], +[-37.83700925, 175.3250447, "6/25"], +[-37.83723775, 175.3250355, "5/25"], +[-37.8372631167, 175.3257362667, "3/25"], +[-37.8372546667, 175.3265544167, "1/25"], +[-37.8383338, 175.3280800333, "16"], +[-37.83798065, 175.3290749333, "20"], +[-37.8391796667, 175.3285276333, "2/2"], +[-37.8369792333, 175.3290413, "1/26"], +[-37.83754405, 175.3280300667, "22"], +[-37.8352813667, 175.3302569, "3/60"], +[-37.8354380167, 175.32888065, "2/46"], +[-37.8355842667, 175.3279923833, "46"], +[-37.8353151667, 175.3292801833, "3/46"], +[-37.8351632833, 175.3287271833, "4/46"], +[-37.8363689833, 175.3280101667, "36"], +[-37.83939695, 175.3275872333, "1"], +[-37.8348529, 175.3296517833, "2/60"], +[-37.8343924167, 175.3288582167, "1/60"], +[-37.8352379167, 175.3270846167, "47A"], +[-37.8328323167, 175.3284895, "76"], +[-37.8366819833, 175.3300524167, "2/26"], +[-37.8366521, 175.3291323333, "1/32"], +[-37.8364603167, 175.3298974, "2/32"], +[-37.83451955, 175.3279007167, "54"], +[-37.8345997167, 175.3265795833, "55"], +[-37.8342514, 175.32747785, "59"], +[-37.8336478167, 175.3279413833, "62"], +[-37.8335577833, 175.3274772167, "63"], +[-37.8332478333, 175.3288382833, "74"], +[-37.8321586, 175.3289107167, "86"], +[-37.8391693333, 175.3280799333, "2"], +[-37.8360818, 175.3280194833, "38"], +[-37.8357191333, 175.32751145, "41"], +[-37.8361509333, 175.32752745, "37"], +[-37.83841125, 175.3254075333, "15"], +[-37.8363422833, 175.32532095, "2/33"], +[-37.83621415, 175.3260637667, "1/33"], +[-37.8361744667, 175.3264726167, "33"], +[-37.7627248, 175.2665748333, "27A"], +[-37.7609455167, 175.2662217167, "7"], +[-37.7624814333, 175.2666792, "23"], +[-37.7610625667, 175.2658127333, "10"], +[-37.7615805167, 175.2660737833, "14"], +[-37.76143885, 175.26639225, "15"], +[-37.7618331833, 175.2661427667, "16"], +[-37.7612882833, 175.26633805, "11"], +[-37.7611870333, 175.2659401, "12"], +[-37.76235815, 175.2663065833, "20"], +[-37.7623022667, 175.2665932, "21"], +[-37.76158155, 175.2664247, "17"], +[-37.7617747333, 175.2664430833, "19"], +[-37.762525, 175.2662850667, "22"], +[-37.7604907333, 175.265678, "2"], +[-37.7604468667, 175.2663451667, "3A"], +[-37.7627323, 175.2660116333, "24"], +[-37.7626307667, 175.26668005, "25"], +[-37.7627261667, 175.2663264167, "26"], +[-37.7630519167, 175.2666067667, "27"], +[-37.7628072667, 175.2666994667, "29"], +[-37.76056375, 175.26610765, "3"], +[-37.7606707333, 175.26538485, "4"], +[-37.7607594667, 175.2661584, "5"], +[-37.7606840167, 175.2657248167, "6"], +[-37.76086795, 175.2657802, "8"], +[-37.7611322, 175.2662847167, "9"], +[-37.7664666833, 175.2683976667, "6B"], +[-37.7666970333, 175.2686285, "10"], +[-37.7668880333, 175.2686893, "10A"], +[-37.7663360167, 175.2681614833, "6A"], +[-37.7668996667, 175.26888445, "12"], +[-37.7661534833, 175.2685062667, "11"], +[-37.76615395, 175.26777765, "3"], +[-37.76654855, 175.2681272, "4A"], +[-37.7668816667, 175.2685077833, "10B"], +[-37.7661317833, 175.2688624, "13A"], +[-37.7662641833, 175.2686563167, "13"], +[-37.7663995833, 175.2688133667, "15"], +[-37.7665220167, 175.2689661833, "17"], +[-37.7666745333, 175.2690645667, "19"], +[-37.76680995, 175.2690376833, "21"], +[-37.7668437667, 175.2689880667, "23"], +[-37.7664224167, 175.2677966833, "2"], +[-37.7663983, 175.2679631, "4"], +[-37.7660775, 175.2682837333, "7"], +[-37.7660914333, 175.2679738, "5"], +[-37.7667351833, 175.2683539167, "8B"], +[-37.7665659833, 175.26851145, "8"], +[-37.7658241833, 175.2685796333, "9A"], +[-37.7660998333, 175.2683761167, "9"], +[-37.7659616, 175.2678151833, "3A"], +[-37.7666845333, 175.26932965, "19A"], +[-37.8168540833, 175.2737464, "11"], +[-37.8174568833, 175.2727266333, "23"], +[-37.81675895, 175.2738984833, "9"], +[-37.816555, 175.2735895833, "10"], +[-37.8166548667, 175.27343255, "12"], +[-37.8171006833, 175.2718144667, "1/30-13/30"], +[-37.8169290667, 175.2729563667, "18"], +[-37.8167410167, 175.2732706, "14"], +[-37.8169472667, 175.27357535, "15"], +[-37.8168347167, 175.2731146333, "16"], +[-37.8173621667, 175.2728907167, "21"], +[-37.8170254167, 175.27280375, "20"], +[-37.8171173167, 175.2726459833, "22"], +[-37.8172088333, 175.2724832, "24"], +[-37.8177800833, 175.2728868667, "25"], +[-37.8172898167, 175.2722477, "26"], +[-37.8178014667, 175.2727747833, "27"], +[-37.8175644, 175.2725176333, "29"], +[-37.8171013667, 175.2715552333, "32"], +[-37.8175799167, 175.2723423, "31"], +[-37.81757125, 175.27218105, "33"], +[-37.81705675, 175.2713840833, "34"], +[-37.8175304167, 175.2719915333, "35"], +[-37.8170130667, 175.27121485, "36"], +[-37.8169661, 175.2710285667, "38"], +[-37.8174811833, 175.2717950833, "37"], +[-37.8174456, 175.2716171, "39"], +[-37.8169261, 175.2708558833, "40"], +[-37.81731265, 175.2711553, "43"], +[-37.8173771, 175.271431, "41"], +[-37.8172686333, 175.2709711833, "45"], +[-37.8168871833, 175.2706821, "42"], +[-37.81722745, 175.27079355, "47"], +[-37.8171780167, 175.2705919667, "49"], +[-37.8171323167, 175.27040875, "51"], +[-37.8170904, 175.2702309667, "53"], +[-37.8166692833, 175.2697788167, "50"], +[-37.8166225333, 175.2695865833, "52"], +[-37.8165724667, 175.2694028667, "54"], +[-37.8170468333, 175.2700459, "55"], +[-37.8165278833, 175.2692186333, "56"], +[-37.8170018667, 175.2698547333, "57"], +[-37.816485, 175.2690461167, "58"], +[-37.8166042167, 175.2741184833, "3"], +[-37.8169522667, 175.2696682833, "59"], +[-37.8169078, 175.2694858667, "61"], +[-37.8164084167, 175.2687918833, "60"], +[-37.8168626167, 175.2693005333, "63"], +[-37.8168209667, 175.2691135167, "65"], +[-37.8167711, 175.2689358167, "67"], +[-37.81673365, 175.2687618, "69"], +[-37.81690145, 175.27431565, "5"], +[-37.81637105, 175.27390225, "6"], +[-37.8169622167, 175.27422075, "7"], +[-37.8164641667, 175.2737520167, "8"], +[-37.7848896833, 175.2436945333, "84A"], +[-37.7854903333, 175.2447231833, "81A"], +[-37.7821139833, 175.2464642, "48B"], +[-37.7807547667, 175.2480174667, "16"], +[-37.7866560167, 175.24023695, "118"], +[-37.7870600333, 175.2410812667, "119"], +[-37.7867047, 175.2400264833, "120"], +[-37.7868103, 175.2408931667, "121"], +[-37.7871673333, 175.2408832167, "123"], +[-37.7868859667, 175.2406495333, "125"], +[-37.7875143167, 175.2384768333, "153"], +[-37.7876548, 175.2366754333, "154"], +[-37.7875615667, 175.2382586667, "155A"], +[-37.7878582667, 175.2383253667, "155"], +[-37.7877070333, 175.2364643, "156"], +[-37.7876327333, 175.23804215, "157"], +[-37.78781355, 175.2361591333, "158"], +[-37.7876874833, 175.2378356333, "159"], +[-37.7877530833, 175.2376023, "161"], +[-37.7880360333, 175.2374964167, "163"], +[-37.78830185, 175.2372847, "165"], +[-37.7884020333, 175.2373433167, "167"], +[-37.7878600667, 175.2372486833, "169"], +[-37.7828553333, 175.24745895, "41"], +[-37.7809103667, 175.24865775, "12A"], +[-37.7817991667, 175.2469348, "36"], +[-37.7825984333, 175.24755385, "37"], +[-37.7822766333, 175.24669545, "48A"], +[-37.7820921667, 175.24744475, "34"], +[-37.7821839167, 175.2468756167, "46A"], +[-37.7825385167, 175.2470046167, "48"], +[-37.7823923333, 175.2471325333, "46"], +[-37.7829449167, 175.2471320167, "47"], +[-37.7820475833, 175.2466663667, "46B"], +[-37.7832116833, 175.2468459333, "51"], +[-37.783078, 175.2469828833, "49"], +[-37.7824168667, 175.2463901333, "50A"], +[-37.7826587, 175.2468540333, "50"], +[-37.7857423, 175.24209095, "102A"], +[-37.7837335333, 175.2457142667, "62"], +[-37.7868644, 175.2394260833, "126"], +[-37.7809092667, 175.2492892333, "11"], +[-37.7810238833, 175.2485397333, "14"], +[-37.7813183833, 175.2488739333, "19"], +[-37.78195875, 175.2475691167, "32"], +[-37.7850179167, 175.2452591667, "73A"], +[-37.7808077333, 175.2487985333, "12"], +[-37.7812008333, 175.2493039833, "13A"], +[-37.7810400167, 175.2491682667, "13"], +[-37.78069845, 175.2478750167, "16A"], +[-37.7813134, 175.2491511333, "15"], +[-37.7854393833, 175.24335815, "88A"], +[-37.7866554833, 175.2421983667, "105A"], +[-37.7828440333, 175.2460170667, "54D"], +[-37.7827669, 175.2458048333, "54C"], +[-37.7838859333, 175.2463968167, "59B"], +[-37.78375635, 175.2462033667, "59A"], +[-37.7843952667, 175.2450197333, "72"], +[-37.7845948833, 175.2448078833, "74"], +[-37.7840659833, 175.2448604833, "70B"], +[-37.7814249167, 175.24796245, "26"], +[-37.7808293333, 175.2479315833, "18"], +[-37.7815161167, 175.2493594333, "17"], +[-37.7847029833, 175.2440345833, "80A"], +[-37.7849905, 175.2442588167, "80"], +[-37.7859049167, 175.24238505, "100"], +[-37.7862182333, 175.24255325, "101"], +[-37.7860099167, 175.2421835333, "102"], +[-37.78633085, 175.2423193167, "103"], +[-37.7860970833, 175.2419981167, "104"], +[-37.7865087833, 175.2421353333, "105"], +[-37.78652775, 175.24191115, "107"], +[-37.78632525, 175.2413512, "108"], +[-37.7865863, 175.2417464167, "109"], +[-37.7864674667, 175.24087955, "112"], +[-37.78669645, 175.24137095, "113"], +[-37.7865181667, 175.2406709667, "114"], +[-37.7867577667, 175.2411797333, "115"], +[-37.7863194167, 175.2403557833, "116B"], +[-37.7865878333, 175.2404647667, "116"], +[-37.7870247833, 175.2412013833, "117"], +[-37.7863471667, 175.24011445, "118B"], +[-37.7867573833, 175.2398152167, "122"], +[-37.7868076833, 175.2396245667, "124"], +[-37.7869632333, 175.24044995, "127"], +[-37.7870113833, 175.2402199, "129"], +[-37.78739545, 175.2396863, "133B"], +[-37.7871834667, 175.2396080667, "133"], +[-37.7869195333, 175.2392334333, "128"], +[-37.7865928833, 175.2390977167, "128A"], +[-37.7869569333, 175.2390683167, "130"], +[-37.7876116, 175.2395049, "137A-137E"], +[-37.7872666833, 175.2393188, "139"], +[-37.7873342833, 175.2390894167, "141"], +[-37.7872561, 175.23804055, "140"], +[-37.7873223667, 175.2378490167, "142"], +[-37.7874072333, 175.2388416833, "143"], +[-37.7873769833, 175.2376556, "144"], +[-37.7878884333, 175.2392928167, "145A"], +[-37.7875438333, 175.2370582833, "150"], +[-37.7872336, 175.23690795, "150A"], +[-37.78788085, 175.2386706, "151A"], +[-37.7880126167, 175.2388188667, "151B"], +[-37.7876053167, 175.2368708333, "152"], +[-37.7877145167, 175.2384873333, "153A"], +[-37.7884878167, 175.2369648667, "173A"], +[-37.7883104333, 175.23688625, "173"], +[-37.7880496, 175.2366201333, "175"], +[-37.78811835, 175.2362794167, "177A"], +[-37.7882334, 175.2359959, "179"], +[-37.78817075, 175.23613295, "177"], +[-37.7850214833, 175.2448843333, "75"], +[-37.78510745, 175.24474725, "77"], +[-37.7853514667, 175.2448239333, "79A"], +[-37.7851446833, 175.2446689, "79"], +[-37.7852419, 175.2445244833, "81"], +[-37.7850845833, 175.2440785667, "82"], +[-37.7853394667, 175.2443384167, "83"], +[-37.78543875, 175.2441451333, "85"], +[-37.78503155, 175.24329955, "88B"], +[-37.7852677667, 175.2437217833, "86"], +[-37.7851660667, 175.2439009667, "84"], +[-37.7856174333, 175.24373535, "87"], +[-37.78534585, 175.2435618667, "88"], +[-37.7857122833, 175.2435490667, "89"], +[-37.7852232833, 175.24288535, "90"], +[-37.7858123333, 175.2433551, "91"], +[-37.7855420333, 175.2431406833, "92"], +[-37.7861680667, 175.2433641833, "93A"], +[-37.7854044333, 175.2425486833, "96A"], +[-37.7857118333, 175.24279005, "96"], +[-37.78610455, 175.2427790333, "97"], +[-37.7858081667, 175.2425765833, "98"], +[-37.7865193, 175.2429677667, "99"], +[-37.7806788833, 175.2489088333, "10"], +[-37.7810967, 175.2481601333, "20A"], +[-37.78118405, 175.2483778167, "20"], +[-37.78162935, 175.2489437833, "21B"], +[-37.7814491833, 175.2487554167, "21"], +[-37.7811085167, 175.2478164, "22B"], +[-37.7810075667, 175.2476863, "22C"], +[-37.7809293167, 175.24756085, "22D"], +[-37.7808525167, 175.2474518833, "22E"], +[-37.7813111667, 175.24821205, "22"], +[-37.7817895, 175.2491222833, "23"], +[-37.7818727833, 175.2490338, "25"], +[-37.7814982, 175.2480961333, "26A"], +[-37.78172885, 175.2488081833, "27A"], +[-37.7818191833, 175.2482802333, "29A"], +[-37.7816255, 175.2485856167, "27"], +[-37.7817499, 175.248394, "29"], +[-37.7805069833, 175.24857665, "2A"], +[-37.78041495, 175.2483051833, "2B"], +[-37.7818395667, 175.2477036333, "30"], +[-37.7819731167, 175.24812395, "31"], +[-37.7818975833, 175.2468736, "38"], +[-37.7826801, 175.2474064167, "39"], +[-37.7822424, 175.24726565, "40"], +[-37.7825730667, 175.2464587167, "52A"], +[-37.7827954833, 175.24671095, "52"], +[-37.7833517667, 175.2467057167, "53"], +[-37.7824718333, 175.2461548667, "54A"], +[-37.7825957167, 175.2459845333, "54B"], +[-37.7829602, 175.24652175, "54"], +[-37.7835376333, 175.2467556667, "55A"], +[-37.7831997, 175.2463057167, "56"], +[-37.7836181, 175.2463514667, "57"], +[-37.7833111833, 175.2461800667, "58"], +[-37.7838799333, 175.2460830167, "61A"], +[-37.7838404, 175.2465245, "57A"], +[-37.78404625, 175.24590675, "63"], +[-37.7839311, 175.24624345, "61B"], +[-37.7838587167, 175.24559285, "64"], +[-37.7841949333, 175.2457487333, "65"], +[-37.7838445167, 175.2451808667, "66B"], +[-37.7840033167, 175.2454472667, "66"], +[-37.7843597667, 175.2455931333, "67"], +[-37.7841370833, 175.24529955, "68"], +[-37.78448585, 175.2454532167, "69"], +[-37.7846940833, 175.2457154667, "69A"], +[-37.78427385, 175.24515005, "70"], +[-37.7847603, 175.2451720167, "71A"], +[-37.7846124833, 175.2453245833, "71"], +[-37.7849037833, 175.2450130667, "73"], +[-37.78417765, 175.2464392833, "61C"], +[-37.78428485, 175.2463349833, "63A"], +[-37.7861579333, 175.2410921, "110A"], +[-37.7845925167, 175.2441815333, "78A"], +[-37.7811625833, 175.2490339333, "15A"], +[-37.7849144167, 175.2444508167, "78"], +[-37.78477535, 175.2446289667, "76"], +[-37.7827862333, 175.24730435, "45"], +[-37.7819592, 175.2493671833, "23A"], +[-37.7826123833, 175.2476967833, "37A"], +[-37.7820107833, 175.2472058167, "34A"], +[-37.7860085667, 175.24296985, "95"], +[-37.7856371333, 175.2429636667, "94"], +[-37.78590455, 175.2431586667, "93"], +[-37.7848192, 175.243872, "82A"], +[-37.7869388, 175.2383018333, "138B"], +[-37.7869448333, 175.23813585, "138A"], +[-37.7871582333, 175.2384014167, "136"], +[-37.7872076167, 175.2382064333, "138"], +[-37.7863847667, 175.2411203833, "110"], +[-37.7866415167, 175.2415584833, "111"], +[-37.7880341667, 175.2389757167, "147"], +[-37.7874352, 175.2374662833, "146"], +[-37.7877919333, 175.2388897167, "145"], +[-37.7874825667, 175.23726185, "148"], +[-37.78824155, 175.23707, "171A"], +[-37.7880826333, 175.2389266167, "149"], +[-37.7882197833, 175.2387619833, "149A"], +[-37.7879472833, 175.23695715, "171"], +[-37.7834992, 175.2465352833, "55"], +[-37.7841155333, 175.2936229833, "4"], +[-37.7855743833, 175.29346235, "11A"], +[-37.78437375, 175.29398935, "3"], +[-37.7844134167, 175.2937708, "5"], +[-37.78431865, 175.2942092167, "1"], +[-37.7838327, 175.2937260667, "2A"], +[-37.7840745, 175.29382115, "2"], +[-37.7841523833, 175.2933727833, "6"], +[-37.7841940667, 175.2931798333, "8"], +[-37.7844778167, 175.29344235, "9"], +[-37.78556395, 175.2931708333, "11B"], +[-37.78500065, 175.2931769667, "11"], +[-37.7852867, 175.2930667333, "15A"], +[-37.7852229667, 175.2933531833, "15"], +[-37.7852090833, 175.2927196667, "17"], +[-37.7852738667, 175.2929104333, "19"], +[-37.7317979167, 175.27162435, "20"], +[-37.7314858667, 175.2715464, "24"], +[-37.73153315, 175.2709377833, "38"], +[-37.7324268167, 175.2707014667, "5"], +[-37.7316417667, 175.2715854667, "22"], +[-37.7313316833, 175.27149555, "26"], +[-37.73122995, 175.2714344333, "28"], +[-37.7315489833, 175.2710938333, "40"], +[-37.7312875833, 175.2710952833, "32"], +[-37.7313260667, 175.270917, "34"], +[-37.7312711667, 175.27127805, "30"], +[-37.7314387167, 175.2709845, "36"], +[-37.73166495, 175.271311, "42"], +[-37.7322725167, 175.27065655, "7"], +[-37.7319317833, 175.2716606333, "18"], +[-37.7321293333, 175.2712303333, "10"], +[-37.7321011167, 175.27144285, "12"], +[-37.7320768333, 175.2716235333, "14"], +[-37.73201855, 175.2716814833, "16"], +[-37.7318776333, 175.27128995, "44"], +[-37.73274845, 175.2710888667, "2"], +[-37.7325790333, 175.2707722667, "3"], +[-37.7319452667, 175.2710807833, "46"], +[-37.7326156, 175.2710745667, "4"], +[-37.7324396167, 175.2710050333, "6"], +[-37.73228685, 175.2709622, "8"], +[-37.7318591, 175.2700247, "17"], +[-37.73168725, 175.2699991667, "19"], +[-37.7313838667, 175.2701807833, "25"], +[-37.7318984333, 175.2706564167, "39"], +[-37.73152715, 175.2699919667, "21"], +[-37.7314106, 175.2700340167, "23"], +[-37.7313703833, 175.2703777833, "27"], +[-37.7313703667, 175.2705293833, "29"], +[-37.7320572, 175.2702705333, "11"], +[-37.7320694167, 175.2701353, "13"], +[-37.7319929833, 175.27007095, "15"], +[-37.7314767333, 175.2705209667, "31"], +[-37.7315762667, 175.2705342, "33"], +[-37.7316115, 175.2703618167, "35"], +[-37.7318335167, 175.2702673333, "37"], +[-37.7319579833, 175.27083975, "41"], +[-37.7320697833, 175.2705083333, "9"], +[-37.7360130833, 175.2694512, "10"], +[-37.7361173167, 175.2695786, "12"], +[-37.7356099833, 175.27028245, "1"], +[-37.7354475833, 175.2700320667, "2"], +[-37.7357912167, 175.2701325833, "3"], +[-37.7359619167, 175.2699876833, "5"], +[-37.73561765, 175.2699241333, "4"], +[-37.73578615, 175.2697844333, "6"], +[-37.7361623333, 175.2699255667, "7"], +[-37.7359174833, 175.2696170833, "8"], +[-37.7361874667, 175.26972055, "9"], +[-37.7369483167, 175.2864247833, "6"], +[-37.7367716667, 175.28639825, "4"], +[-37.7366028833, 175.2863482167, "2"], +[-37.7365908333, 175.2866887333, "3"], +[-37.7364227167, 175.2866459667, "1"], +[-37.7374988833, 175.28638315, "12"], +[-37.7372283833, 175.2870766667, "11"], +[-37.73710805, 175.2868681167, "9"], +[-37.7369412, 175.2868036833, "7"], +[-37.7367705, 175.2867277667, "5"], +[-37.7373305167, 175.2865097833, "14"], +[-37.7373018833, 175.2867009833, "15"], +[-37.7371487667, 175.2864128333, "8"], +[-37.7372734833, 175.2868818667, "13"], +[-37.7373103667, 175.2862963, "10"], +[-37.72340635, 175.2640103333, "9"], +[-37.7235364, 175.2639739167, "7"], +[-37.7237104167, 175.2639269667, "5"], +[-37.7236663333, 175.2640356333, "3"], +[-37.7235226333, 175.2641793333, "1"], +[-37.7233980167, 175.2645032167, "2"], +[-37.7232600333, 175.2643718, "4"], +[-37.7230696833, 175.2645642333, "6"], +[-37.7230078333, 175.2645215, "8"], +[-37.72305845, 175.2642813833, "10"], +[-37.7230773167, 175.26410485, "12"], +[-37.7230963, 175.2639235333, "14"], +[-37.7231365667, 175.2637237667, "13"], +[-37.7232490667, 175.26389265, "11"], +[-37.7901238333, 175.268366, "9A"], +[-37.7901936833, 175.2684680833, "9B"], +[-37.7903381167, 175.2695643, "4A"], +[-37.7902383167, 175.26967035, "4B"], +[-37.7900768, 175.2690788833, "1/10-4/10"], +[-37.79040575, 175.26881805, "5"], +[-37.7903219833, 175.2686652833, "7"], +[-37.7899853167, 175.2688436167, "12"], +[-37.7898962, 175.2686808667, "14"], +[-37.7905736833, 175.26918375, "1"], +[-37.7904947167, 175.2689838667, "3"], +[-37.7902700667, 175.2694034833, "6A"], +[-37.7900854833, 175.2695480167, "6B"], +[-37.7901965833, 175.26928075, "8"], +[-37.7772241167, 175.2107129833, "15"], +[-37.7768491333, 175.2104460333, "14"], +[-37.7765182, 175.2109576667, "12"], +[-37.7300523667, 175.2564448667, "3"], +[-37.7301466833, 175.2561477167, "4"], +[-37.7301089333, 175.2567148, "5"], +[-37.7304206167, 175.2561394833, "6"], +[-37.7302262667, 175.2566618833, "7"], +[-37.73035325, 175.2563165833, "8"], +[-37.7302896167, 175.2564986333, "9"], +[-37.8247920833, 175.30746905, "143"], +[-37.8249414667, 175.3080803667, "140"], +[-37.8346701667, 175.3010954667, "9"], +[-37.82448325, 175.3078169833, "144"], +[-37.8255809167, 175.3097816667, "124"], +[-37.8306375167, 175.3053449, "66"], +[-37.8237035833, 175.3070832833, "148"], +[-37.83075725, 175.3052145333, "64"], +[-37.8309079667, 175.30502865, "62"], +[-37.8277425, 175.3069925, "101"], +[-37.8276554333, 175.3076093167, "104"], +[-37.82862405, 175.3069692333, "92"], +[-37.8281406333, 175.3067179667, "93"], +[-37.82933595, 175.30646735, "84"], +[-37.8301434833, 175.30578925, "74"], +[-37.8296908333, 175.30620925, "80"], +[-37.83426825, 175.3019954833, "15"], +[-37.8333265, 175.3022747667, "25"], +[-37.8338227333, 175.3018064667, "19"], +[-37.8348225333, 175.3009313667, "5"], +[-37.8315738333, 175.30389515, "49"], +[-37.8314422, 175.3045957167, "52"], +[-37.8240272833, 175.3076158333, "146"], +[-37.8249456333, 175.3075331333, "141"], +[-37.8300834833, 175.3052407, "71"], +[-37.7843452, 175.23023415, "1"], +[-37.78355285, 175.2291879333, "15"], +[-37.78362545, 175.22979895, "14"], +[-37.783612, 175.2302770333, "10"], +[-37.7837752, 175.2295762, "11"], +[-37.7837665667, 175.2299335667, "12"], +[-37.7833773667, 175.2300232333, "16"], +[-37.7836665167, 175.2287943833, "17"], +[-37.7832028167, 175.2301964333, "18"], +[-37.7832650333, 175.2299268, "20"], +[-37.7833916, 175.2291316667, "21"], +[-37.78346655, 175.2296266, "22"], +[-37.7833396667, 175.2295156833, "24"], +[-37.7831409167, 175.2294953833, "26"], +[-37.7833148167, 175.2292825667, "28"], +[-37.7841477333, 175.2304150333, "2"], +[-37.7842377833, 175.2299764833, "3"], +[-37.78406275, 175.2302450167, "4"], +[-37.7840758333, 175.2297838833, "5"], +[-37.7839595167, 175.2300604833, "6"], +[-37.7839484833, 175.2296884667, "7"], +[-37.7836984333, 175.2303820667, "8"], +[-37.7839797667, 175.2294153833, "9"], +[-37.7836545667, 175.2293647667, "13"], +[-37.7835039833, 175.2288610833, "19"], +[-37.8271271, 175.3367470667, "6"], +[-37.82909245, 175.3380215, "23B"], +[-37.8287646333, 175.33720175, "23A"], +[-37.8277837333, 175.3369309167, "15"], +[-37.8285869, 175.33649455, "23"], +[-37.8275878667, 175.3364958833, "14"], +[-37.8280965167, 175.3362072667, "20"], +[-37.8279789667, 175.33524575, "22B"], +[-37.82829185, 175.3350810167, "22A"], +[-37.82867685, 175.33592795, "28"], +[-37.8292121167, 175.3356863167, "30"], +[-37.82920385, 175.3346997333, "36"], +[-37.8267676167, 175.3369616667, "4"], +[-37.8301528333, 175.3358186667, "39"], +[-37.83147435, 175.3345783167, "58"], +[-37.8316880667, 175.33514775, "55"], +[-37.8320579667, 175.3349611, "63"], +[-37.8321377, 175.3330838, "68"], +[-37.8323708333, 175.3335567833, "68A"], +[-37.83277675, 175.3341378833, "74"], +[-37.8328126167, 175.3345873667, "73"], +[-37.83317335, 175.3343442333, "75"], +[-37.7962308, 175.2323761, "4"], +[-37.7960398333, 175.2322392833, "6"], +[-37.7963397833, 175.2318941, "7"], +[-37.7959085, 175.2320504667, "8"], +[-37.79661335, 175.2321784, "3"], +[-37.7967057667, 175.23228645, "1"], +[-37.79621535, 175.2320292, "9"], +[-37.7964478333, 175.2321190833, "5"], +[-37.7964072333, 175.2323420667, "2"], +[-37.7960664667, 175.2320385667, "11"], +[-37.8089973833, 175.2899735333, "38A"], +[-37.8098291333, 175.2894293167, "1/19"], +[-37.8090436333, 175.28949315, "42"], +[-37.8088619833, 175.28963675, "42A"], +[-37.8103213, 175.2896390667, "24"], +[-37.80984545, 175.2901692167, "32"], +[-37.8090224333, 175.2885381, "52"], +[-37.8111067167, 175.2886674333, "10"], +[-37.8105447, 175.2888484667, "11"], +[-37.8100772167, 175.2894368167, "17"], +[-37.8109923167, 175.2888188167, "12"], +[-37.8104540333, 175.2889777333, "13"], +[-37.81086935, 175.2889589833, "14"], +[-37.8107633, 175.28907355, "16"], +[-37.80951175, 175.2897912167, "23"], +[-37.8099427833, 175.2895919667, "19"], +[-37.8098115333, 175.2897490833, "21"], +[-37.8104276333, 175.2894842333, "22"], +[-37.8106506333, 175.2892218667, "18"], +[-37.8105494833, 175.28934995, "20"], +[-37.80938615, 175.2896011, "25"], +[-37.8093309, 175.2893613333, "27"], +[-37.8093238, 175.2891144167, "29"], +[-37.8102104667, 175.2897653, "26"], +[-37.81010685, 175.2899027, "28"], +[-37.8093278667, 175.2889160333, "31"], +[-37.8093205333, 175.28871185, "33"], +[-37.80933075, 175.2885154833, "35"], +[-37.8093278, 175.2883173167, "37"], +[-37.8091722667, 175.2898359, "38"], +[-37.8093236167, 175.2881243, "39"], +[-37.8099611833, 175.2900307667, "30"], +[-37.8090905667, 175.2896780333, "40"], +[-37.8090359667, 175.2893106667, "44"], +[-37.8090338, 175.2891330667, "46"], +[-37.8112758833, 175.2879968333, "3"], +[-37.8090378667, 175.2889332, "48"], +[-37.8090243667, 175.2887276333, "50"], +[-37.8090222833, 175.2883576333, "54"], +[-37.8090450333, 175.2881692667, "56"], +[-37.8114533, 175.2882785167, "4"], +[-37.8113359, 175.2884126333, "6"], +[-37.8107667167, 175.28859505, "7"], +[-37.81120025, 175.2885528167, "8"], +[-37.8106548667, 175.28872985, "9"], +[-37.81149575, 175.28777495, "1"], +[-37.8113960833, 175.2878967167, "1A"], +[-37.7909458167, 175.2536654167, "3A"], +[-37.7907848833, 175.2532637167, "5"], +[-37.7905696333, 175.2536757667, "10"], +[-37.7905309333, 175.2534657333, "12"], +[-37.7903325333, 175.2534034, "14A"], +[-37.7904707167, 175.2532748833, "14"], +[-37.7909691167, 175.2541300667, "2"], +[-37.7908441333, 175.2540604333, "4"], +[-37.7907229333, 175.2539679167, "6"], +[-37.7903799833, 175.25390065, "8A"], +[-37.7904219167, 175.2541036333, "8B"], +[-37.7906110667, 175.2538386, "8"], +[-37.79112225, 175.2537830833, "3"], +[-37.79276865, 175.3190915333, "2"], +[-37.7926661167, 175.31890565, "4"], +[-37.7930554, 175.3189889, "1"], +[-37.7930069667, 175.31878715, "3"], +[-37.7929681333, 175.3185641333, "5"], +[-37.7926160167, 175.3187061833, "6"], +[-37.7928135833, 175.3185118167, "7"], +[-37.7926737333, 175.31853535, "8"], +[-37.79398875, 175.3222259833, "14"], +[-37.7942235, 175.3211318167, "2"], +[-37.7941857167, 175.3212947, "4"], +[-37.79382865, 175.3216432333, "7"], +[-37.79406525, 175.3218712833, "10"], +[-37.7934245833, 175.32178585, "11"], +[-37.79402065, 175.32206005, "12"], +[-37.7934257333, 175.3219191833, "13"], +[-37.7936708, 175.32229225, "17"], +[-37.7937265667, 175.322085, "15"], +[-37.7939406167, 175.3211311167, "1"], +[-37.7939010333, 175.32129925, "3"], +[-37.79387155, 175.3214720333, "5"], +[-37.79414575, 175.3214868167, "6"], +[-37.79410875, 175.3216803, "8"], +[-37.7937836667, 175.321829, "9"], +[-37.8157275, 175.2922872833, "5"], +[-37.8166111, 175.29350985, "19"], +[-37.81671535, 175.2929920833, "20"], +[-37.8161182, 175.2922777, "10"], +[-37.81621865, 175.292428, "12"], +[-37.8162631, 175.2930477, "11"], +[-37.8163744833, 175.2925575833, "14"], +[-37.8163771, 175.2931991, "15"], +[-37.8164872167, 175.2927017333, "16"], +[-37.8164847833, 175.29335805, "17"], +[-37.8166021667, 175.2928409667, "18"], +[-37.8167314167, 175.2936536833, "21"], +[-37.81683195, 175.2931435, "22"], +[-37.8169498667, 175.2932839667, "24"], +[-37.8170271833, 175.29339085, "26"], +[-37.8156465333, 175.2916982167, "2A"], +[-37.8157899333, 175.2918481667, "2"], +[-37.8156338667, 175.2921755833, "3"], +[-37.8159051, 175.29196375, "4"], +[-37.8160151667, 175.2921375, "8"], +[-37.8161612667, 175.2929044667, "9"], +[-37.6998328, 175.2038378333, "54"], +[-37.6997457333, 175.2043879333, "60"], +[-37.7429302167, 175.2423554167, "12"], +[-37.7429533167, 175.2421567833, "10"], +[-37.7424421167, 175.2425252, "1"], +[-37.7425908833, 175.2425526333, "3"], +[-37.7426889833, 175.2420926667, "4"], +[-37.7427198, 175.2425981667, "5"], +[-37.7428205333, 175.2420738333, "6"], +[-37.7428953167, 175.2428079667, "7"], +[-37.7430607667, 175.2418950167, "8"], +[-37.74289075, 175.2425611, "9"], +[-37.7425249167, 175.24210225, "2"], +[-37.78933735, 175.2978048667, "14A"], +[-37.7888189333, 175.2975570167, "26"], +[-37.7898842833, 175.2976463167, "3"], +[-37.78903385, 175.2980085333, "12D"], +[-37.7891764667, 175.2980303333, "12B"], +[-37.7890945167, 175.2980162167, "12C"], +[-37.7894913833, 175.2979783333, "10"], +[-37.78925385, 175.2980471167, "12A"], +[-37.7894831167, 175.2969536167, "13"], +[-37.7893369833, 175.2968464, "15"], +[-37.78953365, 175.2976927, "16"], +[-37.7892127833, 175.29674165, "17"], +[-37.789243, 175.2963385833, "19"], +[-37.7901569833, 175.2977665167, "1"], +[-37.78924625, 175.2959259167, "21"], +[-37.7891844167, 175.2961362167, "23A"], +[-37.7890921167, 175.2972018667, "22"], +[-37.78912145, 175.2964101667, "23"], +[-37.7889225667, 175.2976014, "24"], +[-37.7889849333, 175.2967928667, "25"], +[-37.7889112667, 175.2970294833, "28"], +[-37.7899718667, 175.2980844833, "4"], +[-37.78975775, 175.2974729, "5"], +[-37.7898282833, 175.2980218833, "6"], +[-37.7896658, 175.2972860833, "7"], +[-37.7895850667, 175.2971246833, "9"], +[-37.7897105667, 175.2979788167, "8"], +[-37.78917265, 175.2977081667, "14C"], +[-37.7892472667, 175.29774895, "14B"], +[-37.7891166833, 175.2976925833, "14D"], +[-37.7888556167, 175.29730865, "28A"], +[-37.7893738167, 175.2973896, "18A"], +[-37.7894133, 175.2974732333, "18B"], +[-37.7892953667, 175.2974689333, "18C"], +[-37.78927075, 175.297557, "18D"], +[-37.78920115, 175.2975661333, "20E"], +[-37.7892295, 175.2974109333, "20C"], +[-37.7892163333, 175.2974935333, "20D"], +[-37.78925355, 175.2972956167, "20A"], +[-37.7891858833, 175.29726455, "20B"], +[-37.77807755, 175.2287118833, "12"], +[-37.77803475, 175.22847055, "10"], +[-37.7777922167, 175.22877845, "11"], +[-37.7783666167, 175.22842115, "14"], +[-37.7778776833, 175.2291722, "15"], +[-37.7785032333, 175.2285271333, "16"], +[-37.7777531833, 175.2294969, "17"], +[-37.7783978667, 175.22872745, "18"], +[-37.77788105, 175.2296236833, "19"], +[-37.77770925, 175.2276568833, "1"], +[-37.7782871, 175.2288936333, "20"], +[-37.7779839, 175.2294521333, "21"], +[-37.7781860333, 175.2290805833, "22"], +[-37.7780808167, 175.2292650167, "23"], +[-37.7779719833, 175.2275610167, "2"], +[-37.7777320167, 175.2278585333, "3"], +[-37.7780023667, 175.2278018333, "4"], +[-37.7777316, 175.2280854167, "5"], +[-37.7780101333, 175.2280394333, "6"], +[-37.7777393833, 175.2283176667, "7"], +[-37.7780223667, 175.22826415, "8"], +[-37.7777594167, 175.2285556667, "9"], +[-37.7778128, 175.2289903333, "13"], +[-37.79494485, 175.2399613, "10"], +[-37.7947769833, 175.2399696, "12"], +[-37.7947449833, 175.2394107167, "3A"], +[-37.7944947833, 175.2394322667, "3B"], +[-37.7946956167, 175.2396167167, "5"], +[-37.7946700167, 175.23981175, "7"], +[-37.7946181333, 175.24001625, "9"], +[-37.7950978833, 175.2395675167, "4A"], +[-37.7950934, 175.23941535, "4B"], +[-37.7952151, 175.2398763333, "6"], +[-37.7950648667, 175.2398588833, "8"], +[-37.6991442, 175.22400675, "27"], +[-37.6997538333, 175.21595815, "11"], +[-37.7836239, 175.27715795, "3"], +[-37.7829256, 175.27694925, "10"], +[-37.78202845, 175.2756334, "19"], +[-37.7817530833, 175.2753745833, "23"], +[-37.7816068667, 175.2752798, "25"], +[-37.7808828333, 175.2751167167, "32"], +[-37.7808651833, 175.2744127667, "37A"], +[-37.78082765, 175.2744881333, "37B"], +[-37.78079035, 175.2745507167, "37C"], +[-37.7825556833, 175.2766184667, "16"], +[-37.7812140833, 175.2749269833, "31"], +[-37.7810649167, 175.2747703167, "33"], +[-37.7807529833, 175.2749896, "34"], +[-37.7809481167, 175.2746507167, "35"], +[-37.7806161833, 175.2748794333, "36"], +[-37.7831157333, 175.27663085, "11"], +[-37.7827922, 175.2768259833, "12"], +[-37.7829814667, 175.276502, "13"], +[-37.7826330667, 175.2767451833, "14"], +[-37.7828470833, 175.2763836333, "15"], +[-37.7818952833, 175.27549925, "21"], +[-37.7814845833, 175.275149, "27"], +[-37.7813394, 175.27501715, "29"], +[-37.7834954667, 175.27702875, "5"], +[-37.7833528167, 175.2769081, "7"], +[-37.7830634167, 175.27707975, "8"], +[-37.78324105, 175.2767394, "9"], +[-37.78270565, 175.276287, "17"], +[-37.7824830333, 175.2765521333, "18"], +[-37.7805758333, 175.2748448333, "40"], +[-37.78167755, 175.2758772833, "22"], +[-37.7815629833, 175.27577715, "24"], +[-37.7810354167, 175.27526475, "28"], +[-37.7837652667, 175.2772739, "1"], +[-37.8039301, 175.2550095333, "310"], +[-37.8079186667, 175.2694889333, "181"], +[-37.8077953, 175.26885905, "215"], +[-37.8043211833, 175.2550863667, "301"], +[-37.8040208333, 175.2553691333, "306"], +[-37.80723205, 175.2627227167, "249"], +[-37.8041049, 175.2525104167, "371B"], +[-37.80416145, 175.2526787167, "371C"], +[-37.8043005167, 175.2524781833, "373A"], +[-37.80420695, 175.2523418333, "373"], +[-37.8043725833, 175.2524661667, "375B"], +[-37.8038723167, 175.2518455167, "381A"], +[-37.8039816167, 175.25206685, "381"], +[-37.8037881, 175.2520959, "383B"], +[-37.8036584667, 175.25218825, "383"], +[-37.8035924, 175.2519894667, "385"], +[-37.8035453, 175.2517914167, "387"], +[-37.8027084333, 175.2456584333, "434A"], +[-37.8028290833, 175.24601955, "434"], +[-37.8033106333, 175.2465177167, "435B"], +[-37.8029921333, 175.2458941167, "436"], +[-37.80348215, 175.2464143833, "437B"], +[-37.8033786667, 175.24614895, "437"], +[-37.8035410833, 175.2460508833, "439A"], +[-37.8036057667, 175.2462173333, "439B"], +[-37.8031023167, 175.2449976, "440A"], +[-37.8031384333, 175.2457835167, "440"], +[-37.80369565, 175.2459553667, "441"], +[-37.8038586, 175.2458879, "443"], +[-37.8037455833, 175.24545855, "444"], +[-37.8039803667, 175.2457700167, "445"], +[-37.8038704667, 175.2453028, "446"], +[-37.80409115, 175.2456514167, "447"], +[-37.8024265333, 175.2475033833, "411"], +[-37.8021298667, 175.2477107667, "410"], +[-37.8026490167, 175.2483903, "407"], +[-37.8026938, 175.2485824333, "405"], +[-37.8023613333, 175.2484843167, "404"], +[-37.80299035, 175.2485356333, "401A"], +[-37.8020531333, 175.2474229667, "412"], +[-37.80287865, 175.2468447333, "429B"], +[-37.8024454, 175.2458020667, "430B"], +[-37.8024517, 175.2468987167, "413"], +[-37.80280935, 175.2465396333, "429A"], +[-37.8026001667, 175.24669175, "415"], +[-37.8030123167, 175.2467488667, "431A"], +[-37.8025406333, 175.24619765, "430A"], +[-37.8044220333, 175.2570494167, "286"], +[-37.8047946333, 175.2570039, "287"], +[-37.8048522833, 175.2573240333, "285"], +[-37.8045730167, 175.258172, "278"], +[-37.8047124, 175.25662275, "289"], +[-37.8043779167, 175.2522436333, "375"], +[-37.8043181333, 175.2519973333, "377A"], +[-37.8042558167, 175.2517352667, "377"], +[-37.8041411667, 175.25203285, "379"], +[-37.80306035, 175.2511520667, "376"], +[-37.8028098, 175.2511758833, "378"], +[-37.80229505, 175.2460635, "428A"], +[-37.8024010167, 175.2463122, "428B"], +[-37.8043450167, 175.2566898167, "290"], +[-37.8042920167, 175.2564987, "292"], +[-37.8045521833, 175.2560339833, "293"], +[-37.80449, 175.2557002167, "295"], +[-37.8046188833, 175.2563323833, "291"], +[-37.8041553167, 175.2559335, "298"], +[-37.80441535, 175.2553987833, "297"], +[-37.80553775, 175.2616438333, "266"], +[-37.8059562, 175.26149915, "265"], +[-37.8046869, 175.25881055, "276"], +[-37.8082149, 175.27360645, "78A"], +[-37.8082799667, 175.2779709833, "36"], +[-37.8087456333, 175.27783905, "46A"], +[-37.80857735, 175.2780033833, "46"], +[-37.808683, 175.2794161833, "5"], +[-37.8092563167, 175.2792826, "7A"], +[-37.80918745, 175.2795845333, "7"], +[-37.8037659833, 175.2540547333, "352"], +[-37.8041981167, 175.2544347667, "355"], +[-37.8048634667, 175.2589429667, "274"], +[-37.8024276, 175.2488396833, "400"], +[-37.8075226333, 175.2677218833, "219"], +[-37.8075951333, 175.2680926333, "217"], +[-37.806915, 175.2651217, "231"], +[-37.8072964833, 175.2665686, "225"], +[-37.8073736833, 175.26695305, "223"], +[-37.8074664167, 175.2673581667, "221"], +[-37.8072454333, 175.2661918333, "227"], +[-37.8041094833, 175.25314725, "361A"], +[-37.8056407833, 175.2603865333, "271"], +[-37.8038766833, 175.25331615, "361"], +[-37.8040055833, 175.25386855, "357"], +[-37.8036811167, 175.2537131167, "356"], +[-37.8088056667, 175.27919135, "9A"], +[-37.8090826833, 175.2755051, "57"], +[-37.8086648167, 175.2767559333, "54"], +[-37.8085647, 175.2772742333, "50"], +[-37.8089624667, 175.2793808333, "9"], +[-37.8081809333, 175.2796579833, "18"], +[-37.8040582667, 175.2555565, "304"], +[-37.8037244667, 175.2539163667, "354"], +[-37.8045817333, 175.24524185, "455"], +[-37.80860115, 175.2796228667, "3"], +[-37.8039688, 175.2551947167, "308"], +[-37.8083871833, 175.2772698667, "48"], +[-37.8083011833, 175.2772281, "48B"], +[-37.8082440333, 175.2774997167, "40"], +[-37.8083741, 175.2777601667, "42"], +[-37.8087517833, 175.27693075, "52A"], +[-37.8084449167, 175.2778922667, "44"], +[-37.80899455, 175.27509515, "67A"], +[-37.8087447833, 175.2774557167, "50A"], +[-37.8090489667, 175.2756685333, "55"], +[-37.8063531167, 175.2631194667, "245B"], +[-37.8063335167, 175.2630382333, "245A"], +[-37.8063708167, 175.2631872167, "245C"], +[-37.8057011667, 175.26063635, "271B"], +[-37.8056696167, 175.2605157, "271A"], +[-37.8053254333, 175.2589049667, "279"], +[-37.8043852, 175.2568570833, "288"], +[-37.8044674333, 175.2572774833, "282"], +[-37.8038258333, 175.2531104, "363"], +[-37.8040588333, 175.2529368833, "363A"], +[-37.8090624333, 175.2759627333, "53A"], +[-37.80835225, 175.2713877333, "91"], +[-37.8082570333, 175.2738599333, "76A"], +[-37.80842405, 175.27382685, "76B"], +[-37.80746845, 175.2697504167, "128"], +[-37.8036114333, 175.2534922167, "358"], +[-37.8081766833, 175.2706833833, "97"], +[-37.8021328167, 175.2462144, "426A"], +[-37.8092023167, 175.2760601333, "53B"], +[-37.80872365, 175.2765869167, "58"], +[-37.8085852333, 175.2769126333, "54B"], +[-37.8041841333, 175.2533447167, "359B"], +[-37.8040504, 175.2534467, "359A"], +[-37.8032424333, 175.2462140667, "435A"], +[-37.8049690333, 175.2577504333, "281"], +[-37.8043507167, 175.2450369833, "457"], +[-37.8087385167, 175.2772584, "52B"], +[-37.8030554333, 175.2487423, "401"], +[-37.8027394167, 175.2487691, "403"], +[-37.8023807, 175.2486326667, "402"], +[-37.8032296833, 175.2449513833, "440B"], +[-37.8037181667, 175.24487925, "450"], +[-37.803959, 175.2448861167, "448"], +[-37.8039585, 175.24462575, "452"], +[-37.8039094667, 175.2444186, "454"], +[-37.8038551333, 175.2442186667, "456"], +[-37.8035957333, 175.2443809167, "458"], +[-37.8043562833, 175.24481885, "459"], +[-37.8038027167, 175.2439765667, "460"], +[-37.80434005, 175.2446045, "461"], +[-37.8042868667, 175.2444324833, "463"], +[-37.80422975, 175.2441930167, "465"], +[-37.80416965, 175.2439427167, "467"], +[-37.8041398833, 175.2438142833, "469"], +[-37.8038957167, 175.25482545, "312"], +[-37.8034261333, 175.2526606, "364"], +[-37.8039076167, 175.2527848833, "365A"], +[-37.8037762167, 175.2528574667, "365"], +[-37.8033454833, 175.2524459, "366"], +[-37.8037468833, 175.2527194, "367"], +[-37.8037085667, 175.2524848667, "369"], +[-37.8040617333, 175.2523079, "371A"], +[-37.803249, 175.2520366167, "368"], +[-37.8032176333, 175.2517891167, "370"], +[-37.80316505, 175.25159315, "372"], +[-37.80350675, 175.2516310333, "389"], +[-37.8031125333, 175.2513790167, "374"], +[-37.8028110667, 175.2509069333, "384A"], +[-37.8029398, 175.25092025, "384"], +[-37.80288645, 175.2507253, "386"], +[-37.8033677, 175.2511290333, "391"], +[-37.8033363333, 175.2509686167, "393"], +[-37.80264115, 175.2497239833, "392"], +[-37.8028640333, 175.2492451667, "395"], +[-37.80282045, 175.2490480833, "397"], +[-37.8025182833, 175.24962845, "392A"], +[-37.8030793667, 175.2488542667, "399A"], +[-37.8031146833, 175.2490174667, "399B"], +[-37.8025788667, 175.24571385, "432A"], +[-37.8029463167, 175.2464278833, "431"], +[-37.8026780833, 175.2461099167, "432"], +[-37.8031086167, 175.2463159333, "433"], +[-37.8042942833, 175.2457027, "449"], +[-37.804214, 175.2454563167, "451"], +[-37.8043074, 175.2452789, "453"], +[-37.8066322167, 175.2641401333, "237A"], +[-37.8066515, 175.2642197333, "237B"], +[-37.8066781333, 175.2643031667, "237C"], +[-37.8064697167, 175.26357895, "241A"], +[-37.8064947333, 175.2636588, "241B"], +[-37.8065165667, 175.2637282167, "241C"], +[-37.8065368667, 175.2638093833, "241D"], +[-37.8065562667, 175.26388605, "241E"], +[-37.80657685, 175.2639569, "241F"], +[-37.8066021667, 175.2640236333, "241G"], +[-37.8064444167, 175.2634028833, "243"], +[-37.8074652167, 175.2633333833, "247"], +[-37.80614445, 175.2621960833, "251"], +[-37.8058345167, 175.26297965, "254"], +[-37.80571335, 175.2624391833, "256"], +[-37.8086917667, 175.2729089833, "71A"], +[-37.8081359333, 175.27232905, "88"], +[-37.8082333833, 175.2728490833, "84"], +[-37.8082882667, 175.2730900667, "82"], +[-37.8086257333, 175.27234095, "87"], +[-37.808035, 175.2725719, "86A"], +[-37.80818255, 175.2725878667, "86"], +[-37.8087829, 175.2734056833, "69A-69F"], +[-37.8084632167, 175.2740767333, "74A"], +[-37.80839215, 175.2742165833, "74B"], +[-37.8083292333, 175.2743626833, "74C"], +[-37.80837295, 175.2735812167, "78"], +[-37.8081709833, 175.2733681833, "80B"], +[-37.8083264167, 175.2733292833, "80"], +[-37.8081250833, 175.2730444833, "82B"], +[-37.80809305, 175.27288905, "84A"], +[-37.8085331167, 175.2746360833, "70"], +[-37.8084930833, 175.2743168833, "72"], +[-37.80857745, 175.2750137333, "64"], +[-37.80836475, 175.2750129667, "66"], +[-37.8091058833, 175.27498015, "67B"], +[-37.8089699167, 175.2748489167, "67C"], +[-37.8085547167, 175.2748059, "68"], +[-37.8088977167, 175.2789754, "11"], +[-37.8084599667, 175.27991305, "1"], +[-37.8083778167, 175.2792824667, "22"], +[-37.8083465833, 175.2789505667, "24A"], +[-37.8084541, 175.2790484167, "24"], +[-37.8085454333, 175.278762, "26"], +[-37.8085840167, 175.2785859333, "28"], +[-37.8082455833, 175.2782641, "30"], +[-37.8086193167, 175.2783963, "32"], +[-37.8084949833, 175.2781329, "34"], +[-37.8082795667, 175.27771365, "38"], +[-37.80394855, 175.2536416, "359"], +[-37.8034938, 175.25307935, "360"], +[-37.8034702333, 175.2528423333, "362"], +[-37.8067332167, 175.2644715667, "235"], +[-37.8068147833, 175.26474125, "233"], +[-37.80911145, 175.2764122167, "47"], +[-37.8034269833, 175.24562435, "442"], +[-37.80228, 175.2464423667, "426B"], +[-37.8021919167, 175.2466797333, "414"], +[-37.8020487, 175.2464385167, "416A"], +[-37.8019141667, 175.24641545, "416B"], +[-37.8027103833, 175.2467628, "415A"], +[-37.80195205, 175.2461549, "420"], +[-37.8018075333, 175.2462771, "418"], +[-37.8021721833, 175.2459933667, "424"], +[-37.8020817167, 175.24606015, "422"], +[-37.7688076, 175.2725885667, "11"], +[-37.7693811167, 175.27162745, "10"], +[-37.7687069833, 175.2729925667, "15"], +[-37.76917205, 175.27258785, "16"], +[-37.7697735167, 175.2711111333, "6"], +[-37.7693080667, 175.2719730333, "12"], +[-37.7685414833, 175.2727168667, "13A"], +[-37.7687683167, 175.27277335, "13"], +[-37.7692310667, 175.27228065, "14"], +[-37.7691004167, 175.2728978167, "18"], +[-37.76917955, 175.2710611333, "1"], +[-37.7691449833, 175.2712029833, "3"], +[-37.7701527, 175.27115815, "2"], +[-37.76998555, 175.2711204333, "4"], +[-37.7695438, 175.2710734333, "8"], +[-37.7688595333, 175.2723284667, "9"], +[-37.7684900667, 175.2730505667, "17"], +[-37.7686904, 175.273225, "17A"], +[-37.7669459833, 175.26408115, "3"], +[-37.7670422667, 175.2644873, "9"], +[-37.7675092667, 175.2643731, "8"], +[-37.7673389667, 175.2639761833, "4A"], +[-37.7672315167, 175.2646005333, "11"], +[-37.7676597667, 175.2644793833, "12"], +[-37.76783915, 175.2645755, "14"], +[-37.7675590667, 175.2647969, "15"], +[-37.7679932667, 175.2646657667, "16"], +[-37.7676900167, 175.26485765, "17"], +[-37.7681522667, 175.26477335, "18"], +[-37.7682827667, 175.2648892, "20"], +[-37.76803755, 175.2649448833, "22"], +[-37.7671831333, 175.2638047167, "2"], +[-37.7671970833, 175.2640193667, "4"], +[-37.767358, 175.2642862667, "6"], +[-37.76696705, 175.2642832, "7"], +[-37.76784725, 175.2650015333, "19"], +[-37.7679566833, 175.2651826833, "21"], +[-37.7669450167, 175.2638472333, "1"], +[-37.7258066, 175.2398506333, "29"], +[-37.72627115, 175.2403417833, "24"], +[-37.72704905, 175.2395766333, "14"], +[-37.7268871667, 175.2398049833, "16"], +[-37.7269483, 175.2387719667, "11"], +[-37.7272007833, 175.23890025, "9"], +[-37.727025, 175.2390535167, "13"], +[-37.7272767167, 175.2392823333, "12"], +[-37.7276801333, 175.2392143333, "8"], +[-37.7274375167, 175.2392323833, "10"], +[-37.7278166833, 175.2388391667, "5"], +[-37.7280773667, 175.2388184333, "3"], +[-37.7285133, 175.23905, "2"], +[-37.7282810333, 175.2388153167, "1"], +[-37.747267, 175.2393487833, "4K"], +[-37.7473908333, 175.2393527833, "4H"], +[-37.7472662333, 175.2394800667, "4G"], +[-37.7471631167, 175.2395436333, "4F"], +[-37.7473086833, 175.2397169167, "4E"], +[-37.7472544333, 175.23986635, "4D"], +[-37.7471626, 175.2399276833, "4C"], +[-37.7470062, 175.23978875, "4A"], +[-37.74705075, 175.23991655, "4B"], +[-37.7467645, 175.2396218667, "3"], +[-37.7469994333, 175.2392039833, "2"], +[-37.7467844833, 175.2398468, "5"], +[-37.7470794333, 175.2393699667, "4"], +[-37.7547965667, 175.2568938333, "1"], +[-37.7552440833, 175.2567294167, "5A"], +[-37.7550594167, 175.2563882833, "7"], +[-37.7545480333, 175.25666785, "2"], +[-37.7548767833, 175.2567595167, "3"], +[-37.7546420833, 175.2564712833, "4"], +[-37.75496745, 175.25658065, "5"], +[-37.7548963333, 175.2559772667, "8"], +[-37.7547635167, 175.25625135, "6"], +[-37.75516635, 175.2561847833, "9"], +[-37.8011242667, 175.2505976, "6"], +[-37.8012311167, 175.24977775, "16"], +[-37.8015685167, 175.2496270667, "20"], +[-37.8013111667, 175.2501366833, "5"], +[-37.80117205, 175.2507689333, "4"], +[-37.80103435, 175.2502131, "10"], +[-37.8017494667, 175.2497278167, "11A"], +[-37.8018585833, 175.2500746833, "11B"], +[-37.80106895, 175.2499256833, "14"], +[-37.8009908667, 175.2500192667, "12"], +[-37.8014304167, 175.2496306833, "18"], +[-37.8016366, 175.2493748667, "22A"], +[-37.8017017167, 175.2495575167, "22"], +[-37.8013934667, 175.2505134, "3"], +[-37.8015491333, 175.25000205, "7"], +[-37.8010789, 175.250404, "8"], +[-37.8016184333, 175.24984865, "9"], +[-37.7317774167, 175.2505487667, "16"], +[-37.7321343333, 175.2504678, "27"], +[-37.7311515833, 175.2511817833, "11"], +[-37.7315436167, 175.2514440833, "13B"], +[-37.7314927167, 175.2506112667, "12"], +[-37.7302531, 175.25091855, "1"], +[-37.7313285333, 175.2513833667, "13"], +[-37.7313316833, 175.25106705, "15"], +[-37.7316519167, 175.2505239667, "14"], +[-37.7315759833, 175.25101985, "17"], +[-37.73199965, 175.2504559333, "18"], +[-37.7317674833, 175.2511903333, "19"], +[-37.7321819667, 175.2503392667, "20"], +[-37.7317667333, 175.2509240167, "21"], +[-37.7304821167, 175.2507712167, "2"], +[-37.7318598167, 175.2507684833, "23"], +[-37.7319470667, 175.2506108667, "25"], +[-37.7303656167, 175.25113735, "3"], +[-37.7306744333, 175.2510624333, "4"], +[-37.7309495333, 175.2509334667, "6"], +[-37.7308345, 175.2514014833, "7"], +[-37.73112705, 175.2508278167, "8"], +[-37.73097535, 175.2513005833, "9"], +[-37.7313107667, 175.25071295, "10"], +[-37.7855784333, 175.2403387167, "21"], +[-37.7854596167, 175.2402634667, "23"], +[-37.7852590167, 175.2410583333, "26"], +[-37.7855306833, 175.2407908167, "11"], +[-37.78560755, 175.2405980667, "13"], +[-37.78590095, 175.2405823667, "15"], +[-37.7859667667, 175.2405077333, "17"], +[-37.7857457333, 175.2404078, "19"], +[-37.7860861833, 175.24155205, "1"], +[-37.7853261833, 175.2403818833, "27"], +[-37.7852997333, 175.2405686333, "29"], +[-37.7852845333, 175.2407539167, "31"], +[-37.7859692667, 175.2414607167, "3"], +[-37.7858169667, 175.2413499333, "5"], +[-37.7857071833, 175.24166375, "6"], +[-37.7857842167, 175.24099885, "7"], +[-37.7854318333, 175.2414522167, "8"], +[-37.78550635, 175.2410789667, "9"], +[-37.7853171167, 175.2399639, "25A"], +[-37.7851643, 175.2400327667, "25B"], +[-37.78583505, 175.2417886833, "4"], +[-37.7849071167, 175.2417574333, "18A"], +[-37.7854036333, 175.24178575, "10"], +[-37.7853200833, 175.24192115, "12"], +[-37.7852612, 175.24211845, "14"], +[-37.7851577, 175.2418990333, "16"], +[-37.7850317333, 175.2418036333, "18"], +[-37.78510575, 175.2416645333, "20"], +[-37.7851614667, 175.2414913333, "22"], +[-37.7852266667, 175.2412819, "24"], +[-37.7621095167, 175.2954959, "87"], +[-37.7623307667, 175.2934404167, "59B"], +[-37.7622176833, 175.2933313667, "59C"], +[-37.7620927667, 175.2932819167, "59D"], +[-37.7621641833, 175.2934096167, "59E"], +[-37.7625539333, 175.2936971167, "59G"], +[-37.7623775, 175.2935792833, "59F"], +[-37.76307645, 175.2931887333, "50"], +[-37.7627360167, 175.29087275, "25A"], +[-37.7637542667, 175.2919801667, "26"], +[-37.7626049667, 175.2929421833, "51A"], +[-37.76387445, 175.2919527, "28"], +[-37.7627457167, 175.2907897333, "23A"], +[-37.7623483833, 175.2961538, "88A"], +[-37.7627656167, 175.2949217, "70D"], +[-37.7619781833, 175.2953673, "87A"], +[-37.7621866, 175.2942187167, "69A"], +[-37.76207625, 175.2949363, "79A"], +[-37.7626085167, 175.29484015, "70B"], +[-37.7626056167, 175.2935142333, "59A"], +[-37.7629288167, 175.2909371333, "25"], +[-37.76264205, 175.2933846833, "59"], +[-37.7633087833, 175.29112425, "27"], +[-37.7630704, 175.2941091333, "60A"], +[-37.7631124167, 175.29122445, "29A"], +[-37.76302455, 175.2933619167, "52"], +[-37.7627359667, 175.2931160333, "51"], +[-37.7629587333, 175.2935867833, "54"], +[-37.7631215667, 175.2938765833, "56"], +[-37.7635599833, 175.2902120333, "5"], +[-37.7629928833, 175.29389235, "60C"], +[-37.7628810833, 175.2939208333, "60B"], +[-37.76290885, 175.2940697333, "60E"], +[-37.7617993333, 175.29652915, "95"], +[-37.76172845, 175.2938385, "67"], +[-37.7622294167, 175.2939658667, "63"], +[-37.7632313833, 175.2904176833, "11"], +[-37.76269235, 175.2903821, "15A"], +[-37.76287665, 175.2904402667, "15"], +[-37.7631941167, 175.2905429333, "17"], +[-37.7635108833, 175.2918541, "22"], +[-37.763572, 175.2919578, "24"], +[-37.7634333333, 175.2906775333, "19"], +[-37.7633726, 175.2908841, "21"], +[-37.7629555333, 175.2908402833, "23"], +[-37.7632426167, 175.2913228, "29"], +[-37.7637979333, 175.29204565, "30"], +[-37.76371985, 175.2921476667, "34"], +[-37.7635592667, 175.29206605, "36"], +[-37.7638591667, 175.2903873667, "2"], +[-37.7634382667, 175.29195285, "38"], +[-37.763292, 175.2924064, "42"], +[-37.7632292667, 175.2926404833, "44"], +[-37.76272525, 175.2928000333, "45A"], +[-37.7628673, 175.2926744333, "45"], +[-37.7631774333, 175.2928089667, "46"], +[-37.7631238833, 175.2929997333, "48"], +[-37.7623863167, 175.2928716333, "49"], +[-37.7637592, 175.29078835, "4"], +[-37.7627359167, 175.2944318167, "68"], +[-37.76241365, 175.29428565, "69"], +[-37.76265355, 175.2947229167, "70A"], +[-37.7628047167, 175.2947870333, "70C"], +[-37.7618511333, 175.2940979, "71A"], +[-37.7615609333, 175.2939943333, "71"], +[-37.761771, 175.29421785, "73"], +[-37.7623398833, 175.29457515, "75"], +[-37.7625050333, 175.2940106167, "61"], +[-37.76194895, 175.2945468167, "77"], +[-37.7622544167, 175.2948852833, "79"], +[-37.7619161833, 175.2948744667, "81"], +[-37.7635152833, 175.2904022833, "9"], +[-37.7619897, 175.2938957, "65"], +[-37.7619405667, 175.2972459667, "100"], +[-37.7618866667, 175.2974088667, "102"], +[-37.7614696, 175.2970901167, "103A"], +[-37.7616223333, 175.2972014333, "103"], +[-37.7625432167, 175.2950791833, "72"], +[-37.7624787667, 175.2953338, "78"], +[-37.7624186167, 175.2955302167, "80"], +[-37.7623574333, 175.2957172, "82"], +[-37.7618572333, 175.2949894833, "83"], +[-37.7623071667, 175.2959108, "84"], +[-37.7621609833, 175.2952461667, "85"], +[-37.76251145, 175.2962216167, "86"], +[-37.7622266667, 175.2962301167, "88"], +[-37.76216115, 175.2964891167, "92"], +[-37.7621079, 175.2966814667, "94"], +[-37.7620463333, 175.29688825, "96"], +[-37.7619818667, 175.2970743, "98"], +[-37.7633093167, 175.2923184667, "40"], +[-37.7629019, 175.2903552167, "13"], +[-37.75568525, 175.25100495, "20"], +[-37.7559470333, 175.25238935, "9A"], +[-37.75559225, 175.25283625, "3B"], +[-37.7557578333, 175.2525155, "7B"], +[-37.75544175, 175.2528642833, "3A"], +[-37.7562735167, 175.2513628, "19"], +[-37.7557947, 175.25111455, "18"], +[-37.7556534667, 175.2518698833, "10"], +[-37.7562294, 175.2515094833, "17"], +[-37.7564296167, 175.2512537667, "21"], +[-37.7559680667, 175.25135935, "16"], +[-37.75524935, 175.2525623667, "6"], +[-37.7558316667, 175.2521515333, "9B"], +[-37.7555722333, 175.2508933333, "22"], +[-37.75625025, 175.2511786167, "23"], +[-37.7554589167, 175.2507696, "24"], +[-37.7561620667, 175.25105285, "25"], +[-37.7553320833, 175.2506553, "26"], +[-37.7560467833, 175.2509334, "27"], +[-37.7559325833, 175.25080115, "29"], +[-37.7558305167, 175.25067505, "31"], +[-37.7557136833, 175.2505622667, "33"], +[-37.7551928833, 175.2528651, "4"], +[-37.7556025667, 175.2504497667, "35"], +[-37.7554557833, 175.25031255, "37"], +[-37.75612235, 175.2516751, "15"], +[-37.7558507833, 175.2515711333, "14"], +[-37.7556876333, 175.25233975, "7A"], +[-37.7555073833, 175.2526340833, "5A"], +[-37.7555816833, 175.2525300333, "5B"], +[-37.7560229833, 175.2518203333, "13"], +[-37.75593385, 175.25196595, "11"], +[-37.7950556333, 175.2424690333, "7"], +[-37.7947631333, 175.2424351333, "9"], +[-37.7748793, 175.2285373167, "23"], +[-37.7749758333, 175.2282010333, "25"], +[-37.7748636333, 175.2289974667, "28"], +[-37.7747062167, 175.228847, "30"], +[-37.77457955, 175.2287620167, "32"], +[-37.7744005833, 175.2287240833, "34"], +[-37.77451915, 175.2285742667, "36"], +[-37.7745803167, 175.2284065833, "38"], +[-37.7746741333, 175.2282075833, "40"], +[-37.7748114333, 175.2280825167, "42"], +[-37.7761993333, 175.22966995, "10"], +[-37.7760428167, 175.2297140833, "12"], +[-37.7758242, 175.2294238833, "11"], +[-37.7756275167, 175.2293044833, "13"], +[-37.7758881833, 175.22974965, "14"], +[-37.7754893167, 175.2291546167, "15"], +[-37.7757275167, 175.2297606333, "16"], +[-37.7753508833, 175.22902105, "17"], +[-37.7755749333, 175.2296910833, "18"], +[-37.7751870667, 175.22887035, "19"], +[-37.7754554833, 175.22956605, "20"], +[-37.77695385, 175.22921275, "1"], +[-37.7750292667, 175.2287337333, "21"], +[-37.7752793833, 175.2293906667, "22"], +[-37.7751536, 175.2292573333, "24"], +[-37.7750089, 175.2291153, "26"], +[-37.77689365, 175.2295420667, "2"], +[-37.7768227833, 175.22920875, "3"], +[-37.7767624833, 175.2295379, "4"], +[-37.7766797667, 175.22920445, "5"], +[-37.7765648, 175.2295841167, "6"], +[-37.7761457167, 175.2293676333, "7"], +[-37.77638525, 175.2296234833, "8"], +[-37.7760104333, 175.2294136667, "9"], +[-37.8001213333, 175.3208405333, "68A"], +[-37.7996400833, 175.3198583, "52A"], +[-37.7999086833, 175.3197973, "60B"], +[-37.7993250333, 175.3230341, "89"], +[-37.7973923167, 175.3196473, "43"], +[-37.79735425, 175.3195080667, "41"], +[-37.7981877333, 175.3186738667, "24A"], +[-37.7985531667, 175.3193781, "34A"], +[-37.79631485, 175.3167088833, "11"], +[-37.7970469667, 175.3169167167, "10B"], +[-37.7982919333, 175.3197586, "38"], +[-37.7974752667, 175.31894305, "37"], +[-37.7975761167, 175.3191434667, "39"], +[-37.7998741667, 175.3219477833, "78"], +[-37.7995947333, 175.3215869167, "79"], +[-37.7993600333, 175.3205007333, "54"], +[-37.7995738333, 175.3202780667, "54A"], +[-37.7979503833, 175.3191175833, "28"], +[-37.7991796833, 175.3246389667, "104"], +[-37.7979601, 175.32049575, "57A"], +[-37.7995322167, 175.3205833167, "56"], +[-37.7998994667, 175.3217119667, "76"], +[-37.7995996, 175.3211837167, "77"], +[-37.7999289333, 175.3214972833, "72"], +[-37.798059, 175.3193601667, "32"], +[-37.7986715, 175.3191357333, "34B"], +[-37.796958, 175.3180620833, "31"], +[-37.7982055333, 175.3195595667, "36"], +[-37.7991665667, 175.3207929667, "71"], +[-37.7989702833, 175.3210487, "71A"], +[-37.8000413667, 175.3201588667, "62A"], +[-37.7968264333, 175.3171787167, "10"], +[-37.7995130667, 175.3244134, "100A"], +[-37.79926095, 175.32424315, "100"], +[-37.7994208833, 175.3245909167, "102A"], +[-37.7992375833, 175.3244538167, "102"], +[-37.7987557333, 175.32485175, "101"], +[-37.799129, 175.3248299, "106"], +[-37.7969804167, 175.3173397167, "12"], +[-37.7971215667, 175.3175655167, "14"], +[-37.7972377, 175.3178121, "16"], +[-37.7964125833, 175.31706095, "19"], +[-37.7962147333, 175.31728805, "19A"], +[-37.7978119333, 175.3188818667, "22"], +[-37.7980441833, 175.3188345, "24"], +[-37.79631345, 175.3175593333, "25A"], +[-37.7965513833, 175.3173730167, "25"], +[-37.7964739333, 175.3177181167, "27A"], +[-37.7985607, 175.3200487, "42"], +[-37.7984082667, 175.3199315667, "40"], +[-37.7975099167, 175.3195698167, "45A"], +[-37.79772425, 175.3194212333, "45"], +[-37.7960883333, 175.3159179333, "3"], +[-37.7979202167, 175.31977055, "51"], +[-37.79800575, 175.31992295, "53"], +[-37.7981777, 175.3202247167, "57"], +[-37.79808795, 175.3200832, "55"], +[-37.7983018667, 175.3203321833, "59"], +[-37.7983976, 175.3203814667, "61"], +[-37.7985522833, 175.3204617, "63"], +[-37.7990595833, 175.3203319167, "48"], +[-37.7991933667, 175.3203844833, "50"], +[-37.7995504, 175.3200021, "52"], +[-37.7998306, 175.3202351667, "58"], +[-37.8000530333, 175.3196510833, "60A"], +[-37.7999808167, 175.3200648333, "60"], +[-37.7999586, 175.3203079, "62"], +[-37.7966244667, 175.316634, "4"], +[-37.7961401167, 175.31610895, "5"], +[-37.7986914333, 175.3205403833, "65"], +[-37.79883765, 175.32061755, "67"], +[-37.79898855, 175.32070215, "69"], +[-37.7996961333, 175.32069735, "64"], +[-37.79980515, 175.3208454833, "66"], +[-37.80012905, 175.3210494167, "68B"], +[-37.7999347333, 175.3212845833, "70"], +[-37.7999133333, 175.3210719167, "68"], +[-37.7992916167, 175.3208811, "73"], +[-37.7994323667, 175.3209680333, "75"], +[-37.7998550667, 175.3221828167, "80"], +[-37.79982455, 175.3224325, "82"], +[-37.7998008, 175.3226970333, "84"], +[-37.79948435, 175.32256435, "85"], +[-37.7966952167, 175.3168575833, "6"], +[-37.7961971167, 175.3162652333, "7"], +[-37.7997372, 175.3228786167, "86"], +[-37.7994058333, 175.32280155, "87"], +[-37.7999934167, 175.3230644333, "88"], +[-37.7996694833, 175.323094, "90"], +[-37.7967768667, 175.3169834833, "8"], +[-37.7963356167, 175.31682065, "9"], +[-37.7995689333, 175.3234077667, "92"], +[-37.7996813833, 175.3238550833, "94A"], +[-37.7994715833, 175.32369045, "94"], +[-37.79909875, 175.3237305833, "95"], +[-37.7993861833, 175.3239044833, "96"], +[-37.7989709167, 175.3239739333, "97"], +[-37.79934165, 175.3240889667, "98"], +[-37.7988979667, 175.3242411833, "99"], +[-37.7986769667, 175.3250795, "103"], +[-37.7986193333, 175.32525195, "105"], +[-37.7985642, 175.3254542667, "107"], +[-37.7990787833, 175.3250182667, "108"], +[-37.7985053167, 175.3256435833, "109A"], +[-37.7981591833, 175.32549185, "109B"], +[-37.7990203333, 175.3252067667, "110"], +[-37.7984658333, 175.325816, "111"], +[-37.7989637, 175.3253663667, "112"], +[-37.7988991167, 175.3255583167, "114"], +[-37.7988038167, 175.3258041833, "116"], +[-37.79671955, 175.3176233833, "27"], +[-37.79827235, 175.3190390833, "30"], +[-37.7968241, 175.3178359167, "29"], +[-37.7965364667, 175.3163142167, "2"], +[-37.7937342667, 175.26785605, "2"], +[-37.7934289, 175.2678809667, "1"], +[-37.7980228833, 175.3129838667, "19"], +[-37.7984025, 175.3118844333, "10"], +[-37.7989558333, 175.3147197667, "41"], +[-37.79913185, 175.3145168333, "42"], +[-37.7990634, 175.3146484833, "43"], +[-37.7982358333, 175.3126497667, "15"], +[-37.7987807833, 175.3125799833, "18A"], +[-37.7981759, 175.3122886667, "11"], +[-37.7984637833, 175.3121939833, "12"], +[-37.7981991167, 175.3124752833, "13"], +[-37.7985068, 175.3124701333, "16"], +[-37.7982802167, 175.3128109, "17"], +[-37.79873935, 175.3139593333, "24"], +[-37.7984302, 175.3137048667, "27"], +[-37.7984930833, 175.31398, "29"], +[-37.7979929333, 175.3114136167, "1"], +[-37.7985491167, 175.31269575, "18"], +[-37.7985871, 175.3129007, "20"], +[-37.7982916667, 175.3130201167, "21"], +[-37.7986226167, 175.3130886667, "22"], +[-37.79835375, 175.3132588, "23"], +[-37.7983736333, 175.3134516667, "25"], +[-37.7984983667, 175.3141254167, "31"], +[-37.7985932167, 175.3143863667, "35"], +[-37.79882325, 175.3142008333, "36"], +[-37.7986849833, 175.3144891667, "37"], +[-37.79882245, 175.3146500833, "39"], +[-37.7990458, 175.3142791833, "38"], +[-37.7991429333, 175.3143683833, "40"], +[-37.7980414333, 175.3115737667, "3"], +[-37.7980711667, 175.3117419333, "5"], +[-37.7981027667, 175.3119140667, "7"], +[-37.79813585, 175.3121150833, "9"], +[-37.7990036167, 175.3149162333, "41A"], +[-37.7730260333, 175.2881688333, "30A"], +[-37.7729293667, 175.2848140167, "1"], +[-37.7735047, 175.2849488667, "4"], +[-37.7735136167, 175.2856259667, "10B"], +[-37.7736571833, 175.2856470167, "10C"], +[-37.772496, 175.2877428667, "27"], +[-37.7737285, 175.2850819167, "4A"], +[-37.7738787667, 175.2851961667, "4B"], +[-37.7720742, 175.28962035, "49"], +[-37.7730722833, 175.2852776833, "5"], +[-37.7718596333, 175.2905976, "61A"], +[-37.7717201333, 175.2904710667, "61B"], +[-37.7720457833, 175.2914423667, "70"], +[-37.7720322833, 175.2916227, "72"], +[-37.7716198667, 175.2915868167, "73"], +[-37.77166205, 175.2914170833, "71"], +[-37.7721963333, 175.2906981, "60"], +[-37.7722276833, 175.2905662333, "58"], +[-37.7724678333, 175.2864032, "17B"], +[-37.7724283, 175.29073355, "60A"], +[-37.7718833667, 175.292204, "78"], +[-37.7725198833, 175.28635605, "15A"], +[-37.772239, 175.2888312, "39"], +[-37.7729793833, 175.28714365, "24A"], +[-37.7719955167, 175.2888013333, "39B"], +[-37.7722835333, 175.2886779667, "37A"], +[-37.7732355833, 175.2874067833, "24B"], +[-37.7732255833, 175.2873124167, "24C"], +[-37.7720155167, 175.28864455, "37C"], +[-37.7723161667, 175.2885584, "37"], +[-37.77206445, 175.2885133667, "37B"], +[-37.77239505, 175.2908381333, "60B"], +[-37.77227295, 175.2904284833, "56"], +[-37.7720527667, 175.2888732167, "39A"], +[-37.7723642, 175.2909779333, "60C"], +[-37.7727858167, 175.2892402667, "42A"], +[-37.7723083667, 175.2902698833, "54A"], +[-37.7727032, 175.2859131833, "11A"], +[-37.7731956333, 175.2848226167, "1A"], +[-37.7735415667, 175.2847780333, "2"], +[-37.7733629167, 175.2855548333, "10"], +[-37.7729258333, 175.2859423833, "11"], +[-37.7732884833, 175.2858419333, "12"], +[-37.7728792667, 175.2861650167, "13"], +[-37.7734618333, 175.2862074833, "14A"], +[-37.7732370667, 175.2860586667, "14"], +[-37.7728281, 175.28639005, "15"], +[-37.7731981, 175.28628185, "16A"], +[-37.7734091, 175.2864321167, "16B"], +[-37.77260755, 175.2865029167, "17A"], +[-37.7727769667, 175.2866213167, "17"], +[-37.7731365333, 175.28650455, "18A"], +[-37.77334565, 175.2864940833, "18B"], +[-37.77348985, 175.2865497333, "18C"], +[-37.77257045, 175.2866866833, "19B"], +[-37.7724272, 175.2866525, "19C"], +[-37.7727245667, 175.28682445, "19"], +[-37.7733029667, 175.2867330167, "20B"], +[-37.7734426, 175.2867812167, "20C"], +[-37.7730916167, 175.2867217, "20"], +[-37.77267515, 175.2870406833, "21"], +[-37.7730300667, 175.2869693833, "22A"], +[-37.7732674, 175.2870799667, "22"], +[-37.7726310833, 175.2872041667, "23A"], +[-37.77231645, 175.2870892, "23B"], +[-37.7724594, 175.2871269833, "23"], +[-37.7729275167, 175.2874421167, "24"], +[-37.7724355167, 175.2873554167, "25A"], +[-37.7722867833, 175.2872982167, "25B"], +[-37.7725512667, 175.2875152167, "25"], +[-37.7730237833, 175.2876944, "26A"], +[-37.7728818333, 175.2877135833, "26"], +[-37.7728456333, 175.2879526, "28"], +[-37.7724587833, 175.2879095, "29"], +[-37.7728114, 175.2881026833, "30"], +[-37.7721429333, 175.28798065, "31B"], +[-37.7729867333, 175.2883338167, "32B"], +[-37.7727696833, 175.2882751167, "32"], +[-37.7721394167, 175.2880651333, "33B"], +[-37.7723842, 175.2882501, "33"], +[-37.7727304, 175.2884299167, "34A"], +[-37.77294645, 175.2884942333, "34B"], +[-37.7721212833, 175.2882386167, "35A"], +[-37.7723502167, 175.28842365, "35"], +[-37.7729037, 175.2886735, "36A"], +[-37.7731208, 175.2850685333, "3"], +[-37.772693, 175.2886080833, "36"], +[-37.7728523833, 175.28891825, "38A"], +[-37.7726629833, 175.2887696167, "38"], +[-37.7726099333, 175.28893985, "40"], +[-37.7722347, 175.2891097, "41"], +[-37.7725822833, 175.2891061333, "42"], +[-37.7721586333, 175.2892383667, "43"], +[-37.7727497833, 175.2893123167, "44A"], +[-37.7725435833, 175.2892640667, "44"], +[-37.7721326833, 175.2893649167, "45"], +[-37.77270625, 175.2895472333, "46A"], +[-37.7725093667, 175.2894345667, "46"], +[-37.7726705833, 175.28971515, "48A"], +[-37.7720982, 175.2894927333, "47"], +[-37.7724734333, 175.2896008333, "48"], +[-37.7726250167, 175.2898837, "50A"], +[-37.7724403333, 175.2897584833, "50"], +[-37.7720405667, 175.2897782, "51"], +[-37.7725977333, 175.2900505333, "52A"], +[-37.77239995, 175.2899256333, "52"], +[-37.7725687333, 175.2902386833, "54B"], +[-37.7720101, 175.2899404167, "53"], +[-37.7719747, 175.2901031, "55"], +[-37.7723474167, 175.29010065, "54"], +[-37.7719377167, 175.2902681667, "57"], +[-37.77289585, 175.2851505333, "5A"], +[-37.7717405167, 175.2903059333, "59A"], +[-37.7718964167, 175.2904312, "59"], +[-37.7721781833, 175.29085075, "62"], +[-37.7718195, 175.2907634, "63"], +[-37.7721523667, 175.2909821667, "64"], +[-37.7715784833, 175.2908426167, "65A"], +[-37.77178, 175.2909296167, "65"], +[-37.7721145667, 175.29112065, "66"], +[-37.7714829833, 175.2909844, "67A"], +[-37.7717420167, 175.29108915, "67"], +[-37.77208485, 175.2912762667, "68"], +[-37.7714527833, 175.2911658833, "69A"], +[-37.7717039833, 175.2912670333, "69"], +[-37.7734503833, 175.2851975833, "6"], +[-37.77302515, 175.2854911667, "7"], +[-37.7735248, 175.2855379833, "8B"], +[-37.7736693833, 175.2855823167, "8C"], +[-37.7733868, 175.2854504167, "8"], +[-37.7719887333, 175.2918005333, "74"], +[-37.7719375333, 175.2919787, "76"], +[-37.7729755667, 175.2857258167, "9"], +[-37.7714723333, 175.2906388, "63A"], +[-37.7718747, 175.2889731833, "41A"], +[-37.7723331833, 175.2868906167, "21B"], +[-37.7724968833, 175.2869413167, "21A"], +[-37.7714595667, 175.2913877667, "71A"], +[-37.772426, 175.2880741167, "31"], +[-37.7714192, 175.29147955, "73A"], +[-37.7997299, 175.2390809167, "13"], +[-37.7994167333, 175.2386978833, "12"], +[-37.79957305, 175.2386598667, "14"], +[-37.7992736, 175.2387159167, "10"], +[-37.7995813833, 175.2390955667, "11"], +[-37.7998820667, 175.2390266667, "15"], +[-37.7997119, 175.23863985, "16"], +[-37.8000038667, 175.2389815, "17"], +[-37.7998733667, 175.2386268167, "18"], +[-37.8001549167, 175.2389590333, "19"], +[-37.7987811667, 175.239205, "1"], +[-37.80010825, 175.2385905167, "20A"], +[-37.8000870333, 175.2383671167, "20B"], +[-37.79993665, 175.23880605, "21"], +[-37.7989274333, 175.2392272, "3A"], +[-37.7989346833, 175.2395125, "3B"], +[-37.7988109167, 175.2387977667, "4"], +[-37.7990698333, 175.23920845, "5"], +[-37.7989557667, 175.2387843, "6"], +[-37.7992464333, 175.23916585, "7"], +[-37.7991108667, 175.2387510167, "8"], +[-37.7993652167, 175.2391309667, "9"], +[-37.7836877833, 175.2376131667, "11"], +[-37.7831718, 175.2368783333, "4"], +[-37.783454, 175.23705475, "8"], +[-37.7831159167, 175.2372655167, "3"], +[-37.7838003667, 175.2371257333, "12"], +[-37.783855, 175.23762625, "13"], +[-37.7839799333, 175.2370395333, "14"], +[-37.7839938833, 175.2376723833, "15"], +[-37.7840169167, 175.2372470833, "16"], +[-37.7839998333, 175.2374617333, "17"], +[-37.7830145167, 175.23715175, "1"], +[-37.7830523833, 175.23679085, "2"], +[-37.7832578833, 175.2373681333, "5"], +[-37.7833771833, 175.2374765667, "7"], +[-37.7835035, 175.2375828167, "9"], +[-37.7832981, 175.23699335, "6"], +[-37.7835650333, 175.23717845, "10"], +[-37.7341832333, 175.2657179, "26"], +[-37.7327999667, 175.2635436833, "1"], +[-37.7337810667, 175.2657931833, "25"], +[-37.7344311833, 175.2653476667, "22"], +[-37.7339209, 175.2653248333, "21"], +[-37.7341880833, 175.2654785, "24"], +[-37.7338355167, 175.2655805, "23"], +[-37.73402505, 175.2661036833, "30"], +[-37.7339093833, 175.26588555, "27"], +[-37.7340944, 175.2658978833, "28"], +[-37.7336113333, 175.2642997, "10"], +[-37.7339124, 175.2645174833, "14"], +[-37.7341027833, 175.2645111, "16"], +[-37.73378475, 175.2643936167, "12"], +[-37.732978, 175.2644179167, "11"], +[-37.73297715, 175.26470785, "13"], +[-37.7331759167, 175.26453775, "15"], +[-37.734039, 175.2646918667, "18"], +[-37.7338276833, 175.2649876333, "19"], +[-37.7330514, 175.2636167167, "2"], +[-37.7327766833, 175.2637367167, "3"], +[-37.7330531, 175.2639286167, "4"], +[-37.73277735, 175.26394485, "5"], +[-37.73325785, 175.2642000667, "6"], +[-37.7327982167, 175.2641472667, "7"], +[-37.7334372, 175.2642436333, "8"], +[-37.73286535, 175.2642944833, "9"], +[-37.7882266833, 175.2451458167, "20"], +[-37.7889179167, 175.2454, "27"], +[-37.7888815667, 175.2450226333, "28"], +[-37.7890839333, 175.2453728833, "29"], +[-37.7870559333, 175.2459138833, "5"], +[-37.7866120667, 175.24523915, "2A"], +[-37.78820555, 175.24495935, "20A"], +[-37.78757995, 175.2454481833, "11"], +[-37.7872833333, 175.24518385, "10"], +[-37.78775975, 175.2454245167, "13"], +[-37.7879046, 175.2454250167, "15"], +[-37.7878884167, 175.2450258167, "16"], +[-37.7880570167, 175.2454986167, "17"], +[-37.7880564667, 175.24506935, "18"], +[-37.7882004167, 175.2455432667, "19"], +[-37.7884072, 175.2451758833, "22"], +[-37.7866731333, 175.2457555667, "1"], +[-37.7885851833, 175.2451019, "24"], +[-37.7887335, 175.24507405, "26"], +[-37.7890151, 175.2449975833, "32"], +[-37.78677335, 175.2453562, "2"], +[-37.7868171833, 175.2456846167, "3"], +[-37.78683175, 175.2450095167, "4"], +[-37.7871745167, 175.2458819833, "5A"], +[-37.7870835667, 175.2452403333, "6"], +[-37.7871678167, 175.2455634333, "7A"], +[-37.7870018167, 175.2456147667, "7"], +[-37.7873924, 175.2454753, "9A"], +[-37.7874342667, 175.2457185833, "9B"], +[-37.8033708333, 175.3063126333, "18"], +[-37.7315739333, 175.2404717, "10"], +[-37.73173945, 175.2405669, "12"], +[-37.7318160333, 175.2407729333, "14"], +[-37.7318883167, 175.241192, "15"], +[-37.7316827, 175.2409463, "13"], +[-37.7314149833, 175.2413449, "7"], +[-37.7315261167, 175.24133895, "9"], +[-37.7314984333, 175.24094515, "11"], +[-37.7312778167, 175.24097815, "5"], +[-37.7310942833, 175.2410288667, "3"], +[-37.7309406833, 175.24108535, "1"], +[-37.73142325, 175.2405724667, "8"], +[-37.7312302333, 175.2406342167, "6"], +[-37.7310588833, 175.24068975, "4"], +[-37.7308905833, 175.2407249167, "2"], +[-37.7660121333, 175.2624207333, "3"], +[-37.7666845, 175.2598946, "27A"], +[-37.7664246167, 175.2600976, "27"], +[-37.76620095, 175.2619438833, "9"], +[-37.7658821167, 175.2617720333, "8"], +[-37.7667869167, 175.2605539, "21A"], +[-37.7664674833, 175.2602661167, "25"], +[-37.7662556, 175.2617795333, "11"], +[-37.7661743833, 175.2610563833, "14"], +[-37.7661040333, 175.26125115, "12"], +[-37.7664891667, 175.2610099667, "17"], +[-37.76623345, 175.2608505333, "16"], +[-37.7669196833, 175.26089815, "19B"], +[-37.7662424333, 175.2606218167, "18"], +[-37.7665359167, 175.26080885, "19"], +[-37.7662056667, 175.2604311833, "20"], +[-37.76654, 175.2606332667, "21"], +[-37.7661272667, 175.26023185, "22"], +[-37.76632765, 175.25998705, "29"], +[-37.7660707833, 175.2622572167, "5"], +[-37.7658298, 175.2619786167, "6"], +[-37.76613435, 175.26209275, "7"], +[-37.7660127833, 175.2599296167, "24"], +[-37.7665097833, 175.2604393167, "23"], +[-37.7657563333, 175.2621533833, "4"], +[-37.734111, 175.2589623333, "12"], +[-37.7332555167, 175.25930215, "26"], +[-37.7324384167, 175.2589514667, "34"], +[-37.7313990167, 175.25816275, "50"], +[-37.7342656667, 175.2582600667, "6"], +[-37.7341704, 175.2587451833, "10"], +[-37.7337896167, 175.25905855, "11"], +[-37.7340606833, 175.2591836167, "14"], +[-37.7340131833, 175.2594165333, "16"], +[-37.73350945, 175.2590350833, "13"], +[-37.73334425, 175.2589463833, "15"], +[-37.73317875, 175.2588562333, "17"], +[-37.7339729167, 175.2595995167, "18"], +[-37.7338155833, 175.2595405833, "20"], +[-37.7329548, 175.2587938833, "19"], +[-37.7336018167, 175.2594174333, "22"], +[-37.7334226, 175.2593385667, "24"], +[-37.7326337, 175.2586432833, "23"], +[-37.7328049333, 175.2587472167, "21"], +[-37.7330489833, 175.2592266167, "28"], +[-37.7328663833, 175.2591425333, "30"], +[-37.7324397167, 175.25858435, "25"], +[-37.7321828333, 175.25847495, "27"], +[-37.7320817333, 175.2584211333, "29"], +[-37.73177385, 175.2581651, "31"], +[-37.7326473667, 175.2590530667, "32"], +[-37.7318390333, 175.2578657333, "33"], +[-37.7321522833, 175.2588165667, "36"], +[-37.73190785, 175.25745295, "37"], +[-37.7318764833, 175.25764555, "35"], +[-37.7339865833, 175.2580277167, "3"], +[-37.73428625, 175.2579989167, "4"], +[-37.73202835, 175.2587646667, "38"], +[-37.7318995, 175.2571751667, "39"], +[-37.73184665, 175.2586697167, "40"], +[-37.7318850167, 175.2569661333, "41"], +[-37.7316701167, 175.25858685, "42"], +[-37.7318748, 175.2567344833, "43"], +[-37.7314818833, 175.2584743333, "44"], +[-37.7313228667, 175.2583956167, "46"], +[-37.7311659, 175.25828335, "48"], +[-37.7314556667, 175.25794325, "52"], +[-37.7339600667, 175.2582844, "5"], +[-37.7315290167, 175.2577138167, "54"], +[-37.7315501333, 175.2574825667, "56"], +[-37.7316034167, 175.2572977333, "58"], +[-37.7316023167, 175.2570797167, "60"], +[-37.7315875667, 175.2568578167, "62"], +[-37.7315988333, 175.2565815833, "64"], +[-37.7315627667, 175.25634495, "66"], +[-37.7317835, 175.2563383167, "68"], +[-37.7339096, 175.2585171, "7"], +[-37.7342179333, 175.25850455, "8"], +[-37.7338529833, 175.2587497333, "9"], +[-37.732153, 175.2572322167, "39A"], +[-37.73214745, 175.2570775833, "41A"], +[-37.7404748667, 175.2675858833, "3"], +[-37.7406658333, 175.2676641667, "5"], +[-37.7408400833, 175.2677977167, "7"], +[-37.7410662667, 175.2679361333, "9"], +[-37.7406989, 175.2673244167, "4"], +[-37.7409018333, 175.2670821167, "6"], +[-37.74098705, 175.2671143833, "8"], +[-37.7412650333, 175.26701855, "10"], +[-37.7413063833, 175.26715095, "12"], +[-37.7416958, 175.2689379667, "17"], +[-37.7415198833, 175.26876145, "15"], +[-37.7412935667, 175.2685156833, "13"], +[-37.74112195, 175.2682609, "11"], +[-37.7417629333, 175.2688316, "19"], +[-37.7416261167, 175.2686425667, "21"], +[-37.7413845, 175.2684006167, "23"], +[-37.74129555, 175.2679223667, "25"], +[-37.7411603833, 175.2672887, "14"], +[-37.7410126167, 175.2673855167, "16"], +[-37.74142575, 175.2674185833, "18"], +[-37.7413605667, 175.26767535, "20"], +[-37.7415326667, 175.2677826333, "22"], +[-37.7405269833, 175.2672496333, "2"], +[-37.74031985, 175.2675300333, "1"], +[-37.7459061, 175.29009805, "4"], +[-37.7458609, 175.2899370333, "2"], +[-37.7457028333, 175.29052735, "5"], +[-37.74578195, 175.2905804833, "7"], +[-37.7456718, 175.2903959833, "3"], +[-37.7456533833, 175.2901667833, "1"], +[-37.7458764667, 175.2906049333, "10"], +[-37.7459889333, 175.2902762833, "6"], +[-37.74597705, 175.29054185, "8"], +[-37.8025258333, 175.29786315, "20A"], +[-37.8009906333, 175.2967472333, "1/44-5/44"], +[-37.8001476667, 175.2961374667, "56B"], +[-37.80034895, 175.2960485167, "56A"], +[-37.8025601, 175.2958192333, "21A"], +[-37.8026594333, 175.29545405, "21B"], +[-37.8024849, 175.2964057167, "21/19-41/19"], +[-37.8027865667, 175.2964827, "1/13-20/13"], +[-37.8030416, 175.2966575833, "9"], +[-37.8033183833, 175.2967365833, "7"], +[-37.8032741167, 175.2971455833, "8"], +[-37.8030660833, 175.2974810667, "10A"], +[-37.8013025833, 175.2963868833, "1/42"], +[-37.8027584333, 175.2974845667, "16"], +[-37.8022734667, 175.2969905, "30A"], +[-37.8006028667, 175.2961604, "1/54-3/54"], +[-37.8031553, 175.29709965, "10"], +[-37.8027844833, 175.2977890667, "14A"], +[-37.802728, 175.2980598167, "14B"], +[-37.80285295, 175.2975152833, "14"], +[-37.8028325333, 175.2969905167, "18"], +[-37.80119915, 175.2965814333, "2/42"], +[-37.8021396167, 175.2963304, "29A"], +[-37.8022442167, 175.2959427667, "29"], +[-37.8025924667, 175.2975218667, "20"], +[-37.8026704833, 175.2969327667, "22"], +[-37.8025179, 175.2968686667, "24A"], +[-37.8025811667, 175.29689795, "24"], +[-37.8023755833, 175.29743225, "26"], +[-37.8022939833, 175.2974042833, "28"], +[-37.8037347333, 175.2968708833, "1"], +[-37.8012223167, 175.29680305, "3/42"], +[-37.8016167167, 175.2961098333, "33"], +[-37.80146525, 175.2960693, "35A"], +[-37.8015402833, 175.2960925167, "35"], +[-37.80137605, 175.2960474667, "37"], +[-37.8015492333, 175.2965316, "38"], +[-37.8020209667, 175.2962622833, "31"], +[-37.8022030833, 175.2967511333, "32"], +[-37.8020494, 175.2967049333, "34"], +[-37.8019175167, 175.2966314333, "36"], +[-37.8023765333, 175.296806, "30"], +[-37.80363975, 175.2972901167, "2"], +[-37.8035799, 175.296813, "3"], +[-37.80347755, 175.2972305833, "4"], +[-37.8010307833, 175.2969672, "5/42"], +[-37.8007666, 175.29622965, "50A"], +[-37.8008833667, 175.2962621333, "50"], +[-37.8004124167, 175.2956995333, "51"], +[-37.8002426667, 175.2956292, "53"], +[-37.8000926, 175.2955664333, "55"], +[-37.8000519167, 175.2959654833, "58"], +[-37.8034431667, 175.2967754667, "5"], +[-37.8033660333, 175.29718265, "6"], +[-37.8011952167, 175.2969277667, "4/42"], +[-37.8011630833, 175.2959694333, "43"], +[-37.8014522667, 175.2964592833, "40"], +[-37.8010709167, 175.2963383667, "46"], +[-37.8010490333, 175.29592055, "45"], +[-37.8009245, 175.2958867833, "47"], +[-37.8008202667, 175.2958529, "49"], +[-37.8030166333, 175.2970483667, "12"], +[-37.8029339167, 175.2966297333, "11"], +[-37.7680879833, 175.2986022167, "8"], +[-37.76735535, 175.29868285, "15"], +[-37.7675080667, 175.29903785, "16"], +[-37.7673152333, 175.2990051167, "18"], +[-37.7677125, 175.2985528333, "11"], +[-37.7675881833, 175.2986670833, "13"], +[-37.76769105, 175.2989940833, "14"], +[-37.7671627, 175.2989271833, "20"], +[-37.7670186167, 175.2988608, "22"], +[-37.7668326333, 175.2984110833, "23"], +[-37.76687505, 175.2987937667, "24"], +[-37.7667077333, 175.2983475, "25"], +[-37.7667341833, 175.2987399333, "26"], +[-37.76639385, 175.2981717167, "27"], +[-37.7665864333, 175.2986882667, "28"], +[-37.76643135, 175.2979575667, "29"], +[-37.7664564833, 175.2986363, "30"], +[-37.76647765, 175.2977513833, "31"], +[-37.76651915, 175.2975588167, "33"], +[-37.7663241833, 175.2985760333, "32"], +[-37.7665530667, 175.2973703, "35"], +[-37.7662007333, 175.2984789667, "34"], +[-37.7659580167, 175.2985098167, "36"], +[-37.7661264, 175.2982854833, "38"], +[-37.7661045, 175.2981148833, "40"], +[-37.7661316667, 175.2979218167, "42"], +[-37.7682965333, 175.2983864833, "4"], +[-37.7661853833, 175.2976995, "44"], +[-37.7662405667, 175.2974943333, "46"], +[-37.7662879333, 175.2972932333, "48"], +[-37.7677965, 175.2978510167, "5"], +[-37.7681795833, 175.2984960167, "6"], +[-37.7680110833, 175.29821545, "7"], +[-37.7678887167, 175.29835155, "9"], +[-37.8215923667, 175.2964561333, "10"], +[-37.8217486333, 175.2963600333, "12"], +[-37.8216072667, 175.2966347167, "14"], +[-37.82147355, 175.29686455, "16"], +[-37.8215789167, 175.2971163667, "18"], +[-37.8217009333, 175.29723605, "20"], +[-37.82122745, 175.29711245, "3"], +[-37.8211375, 175.2966975833, "4"], +[-37.8213023833, 175.2973635167, "5"], +[-37.8215429167, 175.2973558333, "22"], +[-37.82129755, 175.2967028, "6"], +[-37.82146615, 175.29659965, "8"], +[-37.8214365, 175.2974301, "7"], +[-37.7687342833, 175.2569710667, "3"], +[-37.7683362667, 175.25668265, "9"], +[-37.76846325, 175.2568283333, "10"], +[-37.7685663167, 175.2569379667, "11"], +[-37.7686785333, 175.2570664667, "12"], +[-37.7685121, 175.2567452833, "5"], +[-37.7683765, 175.2566223667, "6"], +[-37.7682568167, 175.2564711833, "7"], +[-37.7682264667, 175.2565346333, "8"], +[-37.7686203667, 175.2568670833, "4"], +[-37.7644503667, 175.2733802, "15"], +[-37.76456705, 175.2737763, "18"], +[-37.7656065, 175.2741452, "3"], +[-37.7652826167, 175.27438885, "6"], +[-37.7649489333, 175.2742063167, "10"], +[-37.7647250833, 175.2735988833, "11"], +[-37.7648110333, 175.2741044833, "12"], +[-37.7645822, 175.2740123667, "14"], +[-37.7643961833, 175.2738545833, "16"], +[-37.76498105, 175.2737629, "9"], +[-37.7657641, 175.2742011167, "1"], +[-37.7656647833, 175.2745711667, "2"], +[-37.7654304333, 175.2744741, "4"], +[-37.7654246, 175.27403505, "5"], +[-37.7652420667, 175.2739212167, "7"], +[-37.7650961167, 175.2742781333, "8"], +[-37.7648301833, 175.2735457, "11A"], +[-37.7903571, 175.2446008333, "10"], +[-37.79005705, 175.2447470833, "11"], +[-37.7900948333, 175.24493565, "13"], +[-37.79037735, 175.2449539167, "14"], +[-37.7901123167, 175.2436807167, "1"], +[-37.7904166, 175.2436874167, "4"], +[-37.7900638, 175.2441165167, "5A"], +[-37.7897782667, 175.2441326833, "5B"], +[-37.7907024167, 175.2438965833, "6A"], +[-37.79039235, 175.2439165333, "6"], +[-37.7900372833, 175.2443181667, "7"], +[-37.79073065, 175.2440862333, "8A"], +[-37.7903603, 175.2441819, "8"], +[-37.790036, 175.24452925, "9"], +[-37.7901362167, 175.2451165333, "15"], +[-37.7901795, 175.2453096, "17"], +[-37.7900990667, 175.2438758, "3"], +[-37.7536023667, 175.2903238333, "4"], +[-37.7533865167, 175.2907283667, "10"], +[-37.7534018333, 175.2900482167, "1"], +[-37.7537324833, 175.2901713167, "2"], +[-37.75329035, 175.2901759667, "3"], +[-37.7531882833, 175.2903733, "5"], +[-37.7535484, 175.2905437833, "6"], +[-37.7531395667, 175.2906118333, "7"], +[-37.7921884167, 175.2711418667, "5"], +[-37.7918762667, 175.27082395, "9"], +[-37.7920459333, 175.2709973667, "7"], +[-37.7919356, 175.2703214833, "10A"], +[-37.79209685, 175.2700358333, "10"], +[-37.7916448333, 175.2705874333, "11"], +[-37.7919535, 175.2700602667, "12"], +[-37.7916385, 175.2701403167, "14A"], +[-37.7917889667, 175.2701741333, "14"], +[-37.7915497333, 175.2703401333, "16"], +[-37.7924142, 175.2713998833, "1"], +[-37.79257695, 175.2706248833, "2A"], +[-37.79245275, 175.2708361, "2"], +[-37.79211785, 175.2715266667, "3A"], +[-37.7923015167, 175.2712912333, "3"], +[-37.7923205667, 175.2707002667, "4"], +[-37.7921767833, 175.2705742167, "6"], +[-37.7920624167, 175.27045095, "8"], +[-37.77608475, 175.2265251833, "7"], +[-37.7763254333, 175.2257644, "10"], +[-37.7764084, 175.22644725, "11"], +[-37.7763054167, 175.2255322333, "12"], +[-37.7765128333, 175.2263408, "13"], +[-37.7763077, 175.22532455, "14"], +[-37.7768022667, 175.2264574, "15"], +[-37.7768544, 175.2263134667, "17"], +[-37.7762113, 175.2251233167, "16"], +[-37.7764059667, 175.2251487, "18"], +[-37.7766024167, 175.2261240667, "19"], +[-37.77561015, 175.22655195, "1"], +[-37.7766060667, 175.2259428, "21"], +[-37.7765820667, 175.22572245, "23"], +[-37.7766041167, 175.2252839167, "27"], +[-37.776602, 175.2254843667, "25"], +[-37.7766573167, 175.22508505, "29"], +[-37.7757014167, 175.2262354167, "2"], +[-37.77648825, 175.22510835, "31"], +[-37.7757413, 175.2265453, "3"], +[-37.7759734167, 175.2262185833, "4"], +[-37.7759081333, 175.2265434833, "5"], +[-37.7761159833, 175.2261968833, "6"], +[-37.7763458667, 175.2260682, "8"], +[-37.7762580167, 175.2264829667, "9"], +[-37.7902060833, 175.2397499, "1"], +[-37.7901710833, 175.2399665333, "3A"], +[-37.7901714, 175.24015235, "5"], +[-37.79044745, 175.2407242, "6A"], +[-37.7906867667, 175.2406332167, "6B"], +[-37.7901300833, 175.2403279167, "7"], +[-37.7902876, 175.2405131167, "8A"], +[-37.7903046167, 175.2406370333, "8B"], +[-37.7901723833, 175.2404652, "9"], +[-37.7899319667, 175.2399468833, "3"], +[-37.7904371667, 175.2402799167, "4"], +[-37.7820506167, 175.2379204667, "25"], +[-37.7809819333, 175.2397471833, "5"], +[-37.7817184167, 175.2377528833, "22"], +[-37.7809392167, 175.2391565167, "10"], +[-37.78134235, 175.2391908333, "11"], +[-37.78106615, 175.2389767, "12"], +[-37.7814287833, 175.23896995, "13A"], +[-37.7815926833, 175.2391392833, "13"], +[-37.7811731, 175.2387804667, "14"], +[-37.7815608167, 175.2388032, "15"], +[-37.7812862667, 175.2385884833, "16"], +[-37.78166715, 175.2385996167, "17"], +[-37.7813997, 175.23839595, "18"], +[-37.7817818667, 175.2384019, "19"], +[-37.7815131333, 175.2382033333, "20"], +[-37.7818676667, 175.23823095, "21"], +[-37.7808671833, 175.23994365, "3"], +[-37.7806068333, 175.2397371, "4"], +[-37.7811502167, 175.2398972333, "5B"], +[-37.7810922667, 175.2395691167, "7"], +[-37.7808219, 175.2393534667, "8"], +[-37.7813705333, 175.23951145, "9A"], +[-37.7811949333, 175.23938525, "9"], +[-37.7807161, 175.23954385, "6"], +[-37.7819710167, 175.23807725, "23"], +[-37.7428186667, 175.2500025667, "10"], +[-37.7429729333, 175.2504718167, "11"], +[-37.7429731167, 175.2499807, "12"], +[-37.7431185167, 175.2503959167, "13"], +[-37.7431361667, 175.24981345, "14A"], +[-37.7431101333, 175.25001215, "14"], +[-37.7432848833, 175.2503534667, "15"], +[-37.7431605667, 175.2501748167, "16"], +[-37.7434138333, 175.25031035, "17"], +[-37.7421869333, 175.2505271333, "1"], +[-37.7423318, 175.2504915, "3"], +[-37.7423355, 175.2500641833, "4"], +[-37.74249815, 175.25046985, "5"], +[-37.7424921, 175.25003785, "6"], +[-37.7426584333, 175.2504481667, "7"], +[-37.7426575667, 175.2500244667, "8"], +[-37.7428024, 175.2504595167, "9"], +[-37.7767667833, 175.2500148333, "16B"], +[-37.7769187833, 175.2501839833, "16A"], +[-37.7775709667, 175.2509239333, "15"], +[-37.7774648833, 175.2510951833, "11"], +[-37.7779439833, 175.2508984333, "19C"], +[-37.7778276667, 175.2507554833, "19"], +[-37.7770251, 175.25108435, "5"], +[-37.77651135, 175.2503487333, "8C"], +[-37.7769264167, 175.2506392833, "12"], +[-37.7767074167, 175.2502748667, "12A"], +[-37.77728445, 175.2507522833, "13"], +[-37.7773564167, 175.2511306333, "7"], +[-37.7776686667, 175.25026645, "23A"], +[-37.7777234167, 175.2511262333, "15A"], +[-37.7770422, 175.2504928, "16"], +[-37.7774148333, 175.2505949333, "17"], +[-37.7768734333, 175.2512493833, "1"], +[-37.7770002333, 175.2499927, "20A"], +[-37.7771046667, 175.2501422, "20B"], +[-37.776896, 175.2498574167, "20C"], +[-37.7771866, 175.2502732167, "20"], +[-37.77710035, 175.2499728167, "24B"], +[-37.7769789833, 175.24981715, "24C"], +[-37.7772924167, 175.2501402167, "24"], +[-37.7777823667, 175.2501437, "25"], +[-37.7771856833, 175.2497382833, "26"], +[-37.7781371833, 175.2504818833, "27B"], +[-37.7780358667, 175.2503699667, "27"], +[-37.77743925, 175.2499761, "28"], +[-37.7780264167, 175.2500324667, "29"], +[-37.7765694333, 175.2510922167, "2"], +[-37.7782024167, 175.2502442, "31B"], +[-37.7783612333, 175.2504350167, "31C"], +[-37.7775486167, 175.2498459333, "32"], +[-37.77768405, 175.2497028, "34A"], +[-37.77751915, 175.2495413, "34B"], +[-37.7780673167, 175.2498061167, "35"], +[-37.7778155833, 175.2495797667, "36A"], +[-37.7779, 175.24945575, "36"], +[-37.7781765667, 175.2496535333, "37"], +[-37.77719515, 175.25138095, "3"], +[-37.7766623, 175.2509638667, "4A"], +[-37.7765021667, 175.2508066167, "4B"], +[-37.7763695, 175.2506239667, "4C"], +[-37.7768265167, 175.2507632833, "8A"], +[-37.7766730833, 175.25055705, "8B"], +[-37.7778463, 175.2506039667, "23"], +[-37.7771313833, 175.2509511833, "9"], +[-37.7775227, 175.2512959833, "7A"], +[-37.8214417333, 175.2256822167, "4"], +[-37.8210291, 175.2259429667, "8"], +[-37.8212328333, 175.2258132, "6"], +[-37.8216819833, 175.2253209, "3"], +[-37.8067948, 175.3434457333, "51"], +[-37.8064609333, 175.3400631, "14"], +[-37.8064688833, 175.3427148333, "49"], +[-37.8066371167, 175.33930415, "8"], +[-37.8063758167, 175.3405235, "7"], +[-37.8062574833, 175.3428915833, "49A"], +[-37.8057503167, 175.3435576167, "49C"], +[-37.8061264833, 175.3439431833, "49B"], +[-37.8056646, 175.3400869833, "1"], +[-37.8076426833, 175.3407991667, "30"], +[-37.8084507833, 175.3410868833, "34A"], +[-37.8085366167, 175.341451, "34B"], +[-37.8087658667, 175.3425109667, "34C"], +[-37.8092857833, 175.3419722167, "34D"], +[-37.8081735, 175.3417411667, "34"], +[-37.8090522167, 175.3430824333, "36"], +[-37.8074176833, 175.3422231, "39"], +[-37.8093371167, 175.3403413333, "32B"], +[-37.80848255, 175.3406316833, "32A"], +[-37.8074317167, 175.3434222833, "48"], +[-37.8070068167, 175.34477175, "50B"], +[-37.80711985, 175.3439302667, "50A"], +[-37.80775135, 175.3441439167, "52A"], +[-37.80842295, 175.3443931, "52B"], +[-37.8076542, 175.3429305333, "42"], +[-37.8078758333, 175.3424045333, "38"], +[-37.80635435, 175.3446074833, "51A"], +[-37.8087658667, 175.3408102833, "32"], +[-37.7412705833, 175.2588713167, "3"], +[-37.7407232167, 175.2581802167, "7"], +[-37.7408064833, 175.2588387333, "10B"], +[-37.7409446667, 175.2586912667, "10"], +[-37.7413466667, 175.25958525, "2"], +[-37.7412141333, 175.2594923667, "4"], +[-37.7410708667, 175.2586022333, "5"], +[-37.7410834667, 175.259302, "6"], +[-37.7410821667, 175.2590389667, "8"], +[-37.7247770833, 175.2674415833, "16"], +[-37.7248463333, 175.2671127, "14"], +[-37.7250306167, 175.2670402, "12"], +[-37.7252064833, 175.26694495, "10"], +[-37.7253857333, 175.2669003333, "8"], +[-37.72555105, 175.2668833333, "6"], +[-37.7257300667, 175.2668499333, "4"], +[-37.7258687667, 175.2668264333, "2"], +[-37.7247491833, 175.2666380167, "13"], +[-37.7249111, 175.2665703833, "11"], +[-37.7247050667, 175.2672596, "18"], +[-37.7247283667, 175.2669965667, "19"], +[-37.7246961, 175.2668327333, "17"], +[-37.7245794167, 175.2666548833, "15"], +[-37.7250989167, 175.2665428833, "9"], +[-37.7253135833, 175.2665106667, "7"], +[-37.7256847667, 175.2664555333, "3"], +[-37.7258323667, 175.2664323167, "1"], +[-37.7254879167, 175.2664883333, "5"], +[-37.7329257333, 175.22274215, "97"], +[-37.7307901167, 175.22195315, "122"], +[-37.7310092667, 175.2215639833, "125"], +[-37.7288913, 175.2209692167, "150"], +[-37.73122655, 175.2218396667, "121"], +[-37.7313579833, 175.22192635, "119"], +[-37.73113635, 175.2223515833, "116"], +[-37.7310297, 175.2222813667, "118"], +[-37.7308905333, 175.2221095, "120"], +[-37.72863725, 175.2204779833, "151"], +[-37.7302769333, 175.2215616167, "130"], +[-37.7298551167, 175.2213783833, "136"], +[-37.7299212167, 175.2209382167, "137"], +[-37.7297018, 175.22132045, "138"], +[-37.7297404167, 175.2208562833, "139"], +[-37.7295768167, 175.2212475, "140"], +[-37.7294404167, 175.221183, "142"], +[-37.7293025667, 175.2211203167, "144"], +[-37.7291646667, 175.2210681667, "146"], +[-37.7290320833, 175.2210232667, "148"], +[-37.7287806667, 175.22052865, "149"], +[-37.7322924833, 175.22295615, "106"], +[-37.7323485833, 175.2224278167, "107"], +[-37.73212945, 175.2223357333, "109"], +[-37.7319544333, 175.22224505, "111"], +[-37.7317637333, 175.2221640167, "113"], +[-37.73159665, 175.2220766333, "115"], +[-37.73149975, 175.2220211333, "117"], +[-37.7349593333, 175.2237021833, "75"], +[-37.7349688667, 175.224262, "76"], +[-37.7347428167, 175.22413045, "78"], +[-37.7347999667, 175.2236152667, "79"], +[-37.7345728, 175.2240563, "80"], +[-37.7346224667, 175.2235245333, "81"], +[-37.7344157667, 175.2239825833, "82"], +[-37.7344605, 175.2234375667, "83"], +[-37.73424055, 175.2239082833, "84"], +[-37.7340887, 175.2238347167, "86"], +[-37.7355810333, 175.2245760167, "68"], +[-37.7355792833, 175.2240164167, "69"], +[-37.7353751667, 175.22447455, "70"], +[-37.73532715, 175.2238905833, "71"], +[-37.7351367167, 175.2237961833, "73"], +[-37.7351540667, 175.22435625, "74"], +[-37.7379551833, 175.2262891, "36"], +[-37.73815255, 175.2258114333, "37"], +[-37.7378274667, 175.2261525667, "38"], +[-37.7380260167, 175.2257115333, "39"], +[-37.7378486333, 175.22555825, "41"], +[-37.7377223167, 175.2254558167, "43"], +[-37.73980495, 175.22699965, "19"], +[-37.7282741667, 175.2207908667, "156"], +[-37.7281413, 175.22029125, "157"], +[-37.7281320667, 175.2207382, "158"], +[-37.7279890167, 175.2202424833, "159"], +[-37.7279714667, 175.2206524667, "160"], +[-37.7265340667, 175.2201011333, "174"], +[-37.7265022333, 175.2196686667, "175"], +[-37.72641045, 175.2200644167, "176"], +[-37.7263886167, 175.2196347167, "177"], +[-37.72629365, 175.2200111833, "178"], +[-37.7262467667, 175.2196019, "179"], +[-37.7261330833, 175.2199522833, "180"], +[-37.7261112, 175.2195576167, "181"], +[-37.7260060167, 175.2198983, "182"], +[-37.7259002333, 175.2198837, "184"], +[-37.7258014667, 175.2198732167, "186"], +[-37.72567875, 175.2198968, "188"], +[-37.7282978667, 175.22034085, "155"], +[-37.7338470167, 175.2237059333, "88"], +[-37.7287385333, 175.2209158667, "152"], +[-37.7311201667, 175.2217301833, "123"], +[-37.7327867667, 175.2231878667, "100"], +[-37.7326374, 175.22312095, "102"], +[-37.7324647833, 175.2230467167, "104"], +[-37.7325284333, 175.2225317833, "105"], +[-37.7278544, 175.2201820167, "161"], +[-37.7277844333, 175.22056205, "162"], +[-37.7276753333, 175.2201125667, "163"], +[-37.7275552667, 175.2204435, "164"], +[-37.7274886667, 175.2200325667, "165"], +[-37.72734325, 175.2203415833, "166"], +[-37.7269090333, 175.2197529167, "169"], +[-37.72679695, 175.2201732, "170"], +[-37.7267748667, 175.2197215167, "171"], +[-37.7266605667, 175.2201266, "172"], +[-37.7266337, 175.2196984833, "173"], +[-37.7386890667, 175.2262204333, "29"], +[-37.7284743167, 175.2208330833, "154"], +[-37.7391498, 175.2265233833, "23"], +[-37.73899185, 175.2264117833, "25"], +[-37.73069345, 175.2218134167, "124"], +[-37.7284594, 175.22041085, "153"], +[-37.7304328667, 175.2216423, "128"], +[-37.7401946167, 175.2272995, "17"], +[-37.7305788833, 175.2211716333, "129"], +[-37.7333374167, 175.22292795, "95"], +[-37.73057745, 175.22171535, "126"], +[-37.73336845, 175.2234681833, "94"], +[-37.7338650167, 175.22319035, "89"], +[-37.7337381, 175.2231181667, "91"], +[-37.7336799167, 175.22361555, "90"], +[-37.7331496, 175.2233662833, "96"], +[-37.7329361, 175.2232580667, "98"], +[-37.7308500667, 175.2213821, "127"], +[-37.7301933667, 175.2210627, "133"], +[-37.7300027333, 175.2214379333, "134"], +[-37.7303054333, 175.2210947, "131"], +[-37.7405312, 175.2275473, "15"], +[-37.74076855, 175.2278696167, "13"], +[-37.7409659167, 175.2281080833, "11"], +[-37.7411818333, 175.2283097833, "9"], +[-37.7414194, 175.2286173833, "7"], +[-37.7424194667, 175.2302752, "3"], +[-37.7427422333, 175.2307870333, "1"], +[-37.74242715, 175.2311233, "2"], +[-37.7416184333, 175.2296492833, "4"], +[-37.74116805, 175.2289834833, "8"], +[-37.740928, 175.2287958833, "10"], +[-37.7418120667, 175.2291172, "5"], +[-37.7393867167, 175.2266923167, "21"], +[-37.7301448667, 175.22149375, "132"], +[-37.7399411667, 175.22773435, "18"], +[-37.7334726, 175.2230049333, "93"], +[-37.7370430667, 175.2249069833, "51"], +[-37.7368204833, 175.2247257333, "53"], +[-37.7367718667, 175.2246992, "55"], +[-37.7366587167, 175.2246136667, "57"], +[-37.73633415, 175.2249862167, "58"], +[-37.7364921333, 175.2244971, "59"], +[-37.73617515, 175.2248829333, "60"], +[-37.73633285, 175.2244069333, "61"], +[-37.7360286333, 175.2248029833, "62"], +[-37.7361684833, 175.2243100833, "63"], +[-37.7359473667, 175.2241917667, "65"], +[-37.735792, 175.2246809167, "66"], +[-37.7357673, 175.22410095, "67"], +[-37.7294245167, 175.2202379, "143"], +[-37.7385649833, 175.2261301167, "31"], +[-37.7382119833, 175.22649025, "32"], +[-37.73842045, 175.22603325, "33"], +[-37.7380746333, 175.2263883333, "34"], +[-37.73827655, 175.2259047333, "35"], +[-37.73758655, 175.2253601167, "45"], +[-37.7374020333, 175.2251902167, "47"], +[-37.73721335, 175.2250436333, "49"], +[-37.736457, 175.2250817, "56"], +[-37.7383834333, 175.2266199667, "30"], +[-37.7385298833, 175.2267341667, "28"], +[-37.7386700667, 175.2268193333, "26"], +[-37.7388223667, 175.2263025833, "27"], +[-37.7418191333, 175.2288795333, "5A"], +[-37.7300642833, 175.2210121833, "135"], +[-37.7374495167, 175.2258897, "40-46"], +[-37.7367914833, 175.2253212833, "48-54"], +[-37.733528, 175.2235452667, "92"], +[-37.74304135, 175.2313110833, "1A"], +[-37.7438149, 175.2309748167, "1B"], +[-37.7427382667, 175.2316626, "2A"], +[-37.7294418, 175.2207185, "141"], +[-37.7290276167, 175.2205694333, "147"], +[-37.7292374167, 175.2201753167, "145"], +[-37.7319576333, 175.22280805, "108-114"], +[-37.8123076, 175.2805332667, "1"], +[-37.8122083, 175.2804367, "1A"], +[-37.8118856833, 175.2802015167, "5"], +[-37.8117213667, 175.2800460667, "7"], +[-37.8116094, 175.28092405, "4A"], +[-37.8120408, 175.2803159167, "3"], +[-37.8118505167, 175.28059055, "6"], +[-37.8116958667, 175.28047565, "8"], +[-37.8116884333, 175.28100385, "4"], +[-37.8115134, 175.2801283333, "11"], +[-37.8115137167, 175.28036715, "12"], +[-37.8113314833, 175.2802515833, "14"], +[-37.812047, 175.2806958667, "2"], +[-37.8114373833, 175.2807790167, "9A"], +[-37.8115649667, 175.2798890833, "9"], +[-37.7746992333, 175.2432479833, "14A"], +[-37.7748121, 175.24335285, "14"], +[-37.7749434333, 175.24346665, "12"], +[-37.7750792333, 175.2436108667, "10"], +[-37.7750048167, 175.2438230833, "10A"], +[-37.77528215, 175.24377565, "8"], +[-37.7751588167, 175.2439977333, "8A"], +[-37.7754156667, 175.2438827833, "6"], +[-37.7755274333, 175.2439774333, "4"], +[-37.7751900667, 175.24312635, "13"], +[-37.7757014833, 175.24320775, "7A"], +[-37.7754926667, 175.2434445667, "7"], +[-37.7751958, 175.2427531833, "15A"], +[-37.77495645, 175.2428861833, "17"], +[-37.7748192833, 175.2427672833, "19"], +[-37.7750741833, 175.2430113333, "15"], +[-37.7759293667, 175.2433904833, "3A"], +[-37.7757235167, 175.24366745, "3"], +[-37.7756224333, 175.2435478667, "5"], +[-37.7753984833, 175.2433066333, "9"], +[-37.775466, 175.2429402833, "13A"], +[-37.7745836667, 175.2430966, "16"], +[-37.7751221167, 175.2426938333, "17A"], +[-37.7746816833, 175.2426360833, "21"], +[-37.7922164, 175.24588725, "12A"], +[-37.7924076667, 175.24576145, "14A"], +[-37.79293185, 175.2456452167, "20"], +[-37.7934605667, 175.245899, "26A-26C"], +[-37.7931367667, 175.2459965667, "22"], +[-37.7936063167, 175.24618375, "9A"], +[-37.79346665, 175.2460531667, "9B"], +[-37.7934267833, 175.2462463833, "9"], +[-37.7931140167, 175.2466553333, "5A"], +[-37.7923920833, 175.2462811833, "12"], +[-37.7925667333, 175.24622, "14"], +[-37.7925671167, 175.2456846167, "16A"], +[-37.7927525333, 175.2461551667, "16"], +[-37.7929185667, 175.2460906833, "18"], +[-37.7927143167, 175.2465509833, "1"], +[-37.7931382, 175.2454279833, "24"], +[-37.7922424333, 175.24631995, "2A"], +[-37.7921686167, 175.2459964, "2B"], +[-37.7921188833, 175.2457934833, "2"], +[-37.7929322333, 175.2465153333, "3"], +[-37.7931315833, 175.246449, "5"], +[-37.7933116833, 175.24639165, "7A"], +[-37.7933993333, 175.2465855, "7B"], +[-37.7934408, 175.2468113833, "7C"], +[-37.7935227167, 175.24712605, "7D"], +[-37.79359765, 175.2472951167, "7E"], +[-37.82621235, 175.2949057, "15"], +[-37.8269418, 175.2947156333, "24"], +[-37.8258052333, 175.2945943167, "9"], +[-37.8257220667, 175.2944224, "7"], +[-37.8259901667, 175.2940228167, "2"], +[-37.82827505, 175.2950755167, "52"], +[-37.8263650167, 175.29450895, "8"], +[-37.82763295, 175.2949115, "42"], +[-37.82779985, 175.2949266, "44"], +[-37.8280968167, 175.2947350167, "48"], +[-37.8279445833, 175.2949804, "46"], +[-37.8260603333, 175.2942261667, "4"], +[-37.8256525833, 175.294238, "5"], +[-37.8274179167, 175.2948332, "40"], +[-37.8259093833, 175.2947346333, "11"], +[-37.8260382333, 175.2948173833, "13"], +[-37.82543715, 175.2942232833, "3"], +[-37.8279949833, 175.2954258167, "49"], +[-37.8261968167, 175.2944419167, "6"], +[-37.82753115, 175.2953394, "43"], +[-37.82656715, 175.29506635, "23"], +[-37.8264068833, 175.29500805, "21"], +[-37.8262670667, 175.2952849667, "19"], +[-37.826202, 175.2952160333, "17"], +[-37.8273627, 175.2952846833, "41"], +[-37.8265213167, 175.2954571167, "25"], +[-37.8265640667, 175.2955567333, "27"], +[-37.8276793833, 175.2953820167, "45"], +[-37.8278329833, 175.2954252667, "47"], +[-37.8271141667, 175.2952047167, "39"], +[-37.82661825, 175.2957288833, "29"], +[-37.8269263833, 175.2951448667, "37"], +[-37.8266784333, 175.295435, "33"], +[-37.8267308167, 175.29581975, "31"], +[-37.8267940333, 175.2951011167, "35"], +[-37.82815775, 175.29509355, "50"], +[-37.72465495, 175.2862965, "19"], +[-37.724702, 175.2864574333, "21"], +[-37.7248162167, 175.28563995, "16"], +[-37.724804, 175.2853948333, "14"], +[-37.7247238, 175.2851628167, "12"], +[-37.7237874833, 175.2852909167, "1"], +[-37.7242977833, 175.28577525, "13"], +[-37.7243363167, 175.2856783, "11"], +[-37.7244524667, 175.28592445, "15"], +[-37.72452305, 175.28603605, "17"], +[-37.724815, 175.2858605667, "18"], +[-37.72473985, 175.2860568833, "20"], +[-37.7248598833, 175.2862924167, "22"], +[-37.7248365, 175.2864991667, "23"], +[-37.7243363333, 175.28526325, "7"], +[-37.7245431167, 175.2855781, "9"], +[-37.72413315, 175.2852762167, "5"], +[-37.7243888667, 175.2849135167, "8"], +[-37.72455755, 175.2849823667, "10"], +[-37.7239390833, 175.2849290167, "2"], +[-37.7240798, 175.2849205833, "4"], +[-37.7239520333, 175.2853094667, "3"], +[-37.724245, 175.2849063833, "6"], +[-37.7785658333, 175.2830282667, "2/11A"], +[-37.7785363333, 175.2831361, "3/11A"], +[-37.7781917, 175.2835022, "15"], +[-37.7787425833, 175.2838553833, "1/9"], +[-37.7787755167, 175.2837989333, "2/9"], +[-37.7788064833, 175.2837439333, "3/9"], +[-37.7788390667, 175.2836890667, "4/9"], +[-37.7789372667, 175.2835270167, "1/9A"], +[-37.7788513667, 175.2834597667, "3/9A"], +[-37.77876125, 175.28339675, "5/9A"], +[-37.77880075, 175.28342415, "4/9A"], +[-37.7788909, 175.2834865, "2/9A"], +[-37.7786308333, 175.2842699667, "10"], +[-37.7781705, 175.2839906, "16"], +[-37.7793774667, 175.2841865167, "1"], +[-37.7790940333, 175.2845675, "4"], +[-37.7792057, 175.2840770167, "5A"], +[-37.77878275, 175.2843718833, "1/8-8/8"], +[-37.7780032333, 175.2838629833, "18"], +[-37.7778855, 175.2837619833, "18A"], +[-37.77850385, 175.2836579167, "11"], +[-37.7784790667, 175.2841763167, "12"], +[-37.7783233167, 175.2835727667, "13"], +[-37.7783198333, 175.2840755167, "14"], +[-37.7792382, 175.28465525, "2"], +[-37.77902845, 175.2839644667, "5"], +[-37.7789338667, 175.2844648667, "6"], +[-37.7788566833, 175.2838722667, "7"], +[-37.7785023667, 175.28322325, "4/11A"], +[-37.7786402167, 175.2829784, "1/11A"], +[-37.73977165, 175.2668672, "3"], +[-37.7399355167, 175.2669972, "1"], +[-37.7385279667, 175.26646675, "16"], +[-37.73864395, 175.2666443167, "14"], +[-37.73890065, 175.2666887167, "12"], +[-37.7391374833, 175.2668145167, "10"], +[-37.7393595167, 175.26690365, "8"], +[-37.7395518833, 175.2670441333, "6"], +[-37.7397256, 175.2671938, "4"], +[-37.7398971, 175.2673391667, "2"], +[-37.7385967, 175.2662919667, "15"], +[-37.7387663333, 175.2662646667, "13"], +[-37.73896425, 175.2663858833, "11"], +[-37.7391750333, 175.2665107333, "9"], +[-37.7394099333, 175.2666035167, "7"], +[-37.7395927333, 175.2667040833, "5"], +[-37.7396251333, 175.2744209167, "3"], +[-37.7397644667, 175.27422125, "1"], +[-37.7390608167, 175.2747427167, "24"], +[-37.7399419, 175.27438245, "2"], +[-37.7391367667, 175.2742601, "11"], +[-37.7392743167, 175.27463275, "20"], +[-37.7393648167, 175.2743442333, "7"], +[-37.73892085, 175.27441715, "17"], +[-37.7389974333, 175.2742893667, "13"], +[-37.7394819667, 175.2747225833, "16"], +[-37.7394788333, 175.2743863, "5"], +[-37.73925585, 175.2743023333, "9"], +[-37.7396960667, 175.2747466833, "12"], +[-37.7398125333, 175.2747526667, "10"], +[-37.7399473833, 175.2746869, "8"], +[-37.7784064333, 175.2336157333, "23"], +[-37.7780449167, 175.2353034333, "5"], +[-37.77824665, 175.23459775, "11A"], +[-37.7779606667, 175.2345958833, "10"], +[-37.7784018167, 175.2347903, "11B"], +[-37.7778006, 175.2343115167, "12A"], +[-37.7780048333, 175.2343501333, "12"], +[-37.7784317833, 175.2344748333, "13"], +[-37.7780379167, 175.23413885, "14"], +[-37.7783209833, 175.23429505, "15"], +[-37.7778832, 175.2338793667, "16B"], +[-37.7780767833, 175.2338899333, "16"], +[-37.7783372333, 175.2340793167, "17"], +[-37.7780841, 175.2336490333, "18"], +[-37.7783582333, 175.2338865167, "19"], +[-37.7780010833, 175.2333904, "20A"], +[-37.7779896667, 175.2330410833, "20B"], +[-37.7785494833, 175.23370475, "21"], +[-37.7781587667, 175.2334857667, "22"], +[-37.7782990333, 175.23349285, "25"], +[-37.7778541333, 175.2349942833, "6"], +[-37.7779212167, 175.23479265, "8"], +[-37.77820355, 175.23492635, "9A"], +[-37.7779496167, 175.2354852, "3"], +[-37.7777510167, 175.2352426, "4A"], +[-37.7776010667, 175.2351317, "4B"], +[-37.7781298333, 175.2351076833, "7"], +[-37.7784154, 175.2350157, "9"], +[-37.7832991833, 175.23813605, "41"], +[-37.7814244667, 175.2370602333, "66"], +[-37.7849102667, 175.23859145, "24"], +[-37.7847555333, 175.2385971833, "26"], +[-37.7844050167, 175.2382121333, "27"], +[-37.7842996333, 175.2381666833, "29"], +[-37.78460715, 175.2386030667, "28"], +[-37.7844679333, 175.2385900167, "30"], +[-37.7841526667, 175.23818455, "31"], +[-37.7839718833, 175.2381777667, "33"], +[-37.7838126, 175.2381926, "35"], +[-37.7839199667, 175.2386505167, "36"], +[-37.7836518167, 175.2381873833, "37"], +[-37.7837824833, 175.2386419333, "38"], +[-37.7834937667, 175.2381936833, "39"], +[-37.7831263, 175.2380210667, "43"], +[-37.78360675, 175.2386322333, "40"], +[-37.7830005667, 175.2379045833, "45"], +[-37.7828578833, 175.2377746, "47"], +[-37.7827441333, 175.2377040333, "49"], +[-37.7823314167, 175.2378882833, "52"], +[-37.7821284, 175.2371835833, "57"], +[-37.7818717333, 175.2369549833, "61"], +[-37.7815406, 175.2366560667, "65A"], +[-37.78200085, 175.2370559167, "59"], +[-37.7858457333, 175.238575, "12"], +[-37.7857752167, 175.2381622167, "13"], +[-37.78567005, 175.2385758667, "14"], +[-37.78560795, 175.2381679833, "15"], +[-37.7855240333, 175.2385786, "16"], +[-37.78679925, 175.2384911333, "1A"], +[-37.7853662333, 175.2385901833, "18"], +[-37.7851758167, 175.2381979333, "19"], +[-37.7870573, 175.2386119, "1"], +[-37.78521705, 175.2385925833, "20"], +[-37.7850206667, 175.2381881167, "21"], +[-37.7850629167, 175.23858825, "22"], +[-37.7867210833, 175.2388935, "2"], +[-37.7864929833, 175.2383576, "5"], +[-37.7865427, 175.2388289333, "4"], +[-37.7864279167, 175.2380628167, "7A"], +[-37.7860510667, 175.2386086833, "6"], +[-37.7863533833, 175.2383281833, "7"], +[-37.7815848833, 175.2362492833, "67B"], +[-37.7814051, 175.2364985833, "67"], +[-37.7813057, 175.2364012667, "69"], +[-37.7866373833, 175.2384292833, "3"], +[-37.7848635167, 175.2381898333, "23"], +[-37.7992962167, 175.24385895, "13"], +[-37.7995006833, 175.2430218167, "14"], +[-37.7993634667, 175.24299165, "12"], +[-37.7995593167, 175.2435506167, "22"], +[-37.7991284167, 175.2437651, "11A"], +[-37.7990907167, 175.2440414667, "11B"], +[-37.7992133667, 175.2429635167, "10"], +[-37.7996956, 175.2429466833, "16"], +[-37.7996042, 175.2431683, "18"], +[-37.7995716667, 175.2433391833, "20"], +[-37.7995240167, 175.2437143833, "24"], +[-37.7996430667, 175.2442213, "26A"], +[-37.7996966167, 175.2439660167, "26B"], +[-37.79942225, 175.2438964167, "28"], +[-37.7989274167, 175.2432773167, "3"], +[-37.7989310167, 175.24372325, "5A"], +[-37.7988891667, 175.2439743167, "5"], +[-37.7987453, 175.2428691167, "4"], +[-37.7989093, 175.24289825, "6"], +[-37.7992399667, 175.2433616167, "7"], +[-37.7992127333, 175.2435877667, "9"], +[-37.7990516333, 175.2429266, "8"], +[-37.7622486333, 175.2659592833, "11"], +[-37.7622202167, 175.2652591833, "18"], +[-37.7623957667, 175.26572325, "15"], +[-37.7623338333, 175.2654864167, "17"], +[-37.7616413, 175.2672942667, "2"], +[-37.7620242333, 175.2659076667, "5"], +[-37.7620460167, 175.2668181333, "3"], +[-37.7616780167, 175.2671138167, "4"], +[-37.7617483667, 175.26686565, "6"], +[-37.7620653, 175.2656856333, "7"], +[-37.7620947667, 175.2654617167, "9"], +[-37.7577769333, 175.2807260833, "46"], +[-37.7570346667, 175.2821477, "47"], +[-37.7577221, 175.2809198167, "48"], +[-37.7569818667, 175.28231515, "49"], +[-37.7574276333, 175.2820114167, "60"], +[-37.7573894167, 175.2821882833, "62"], +[-37.7573428833, 175.2823730167, "64"], +[-37.7573214, 175.2825356833, "66"], +[-37.7582405167, 175.2782235333, "14"], +[-37.7580541, 175.27742875, "3"], +[-37.75775785, 175.2788822333, "15"], +[-37.7577214833, 175.27925355, "19"], +[-37.7576814, 175.2796288333, "23"], +[-37.7586254333, 175.27807215, "10"], +[-37.75778225, 175.2787048833, "13"], +[-37.7582974333, 175.2780368333, "12"], +[-37.75781585, 175.2785056667, "11"], +[-37.7585517667, 175.2784196, "16"], +[-37.75773695, 175.2790783667, "17"], +[-37.7585226833, 175.2785434333, "18"], +[-37.75819115, 175.2784837667, "20"], +[-37.7577062333, 175.27943155, "21"], +[-37.7581598667, 175.27864695, "22"], +[-37.75845695, 175.2788626167, "24"], +[-37.7581148, 175.2788890833, "26"], +[-37.7581110333, 175.27907255, "28"], +[-37.75809865, 175.2792566833, "30"], +[-37.7580852, 175.2794282667, "32"], +[-37.7580519167, 175.2796171833, "34"], +[-37.7583891, 175.2775277167, "2"], +[-37.7572967667, 175.2811073833, "35"], +[-37.7572516167, 175.28127795, "37"], +[-37.7572110667, 175.2814618667, "39"], +[-37.7571652167, 175.2816253667, "41"], +[-37.7571135333, 175.2818118333, "43"], +[-37.7578661833, 175.28034215, "42"], +[-37.7578209333, 175.28054965, "44"], +[-37.7570670833, 175.2819900833, "45"], +[-37.7580158833, 175.27978655, "36"], +[-37.7579663667, 175.2799694833, "38"], +[-37.7579137333, 175.2801456833, "40"], +[-37.75766685, 175.281099, "50"], +[-37.7576138167, 175.2812726667, "52"], +[-37.7575728, 175.2814520167, "54"], +[-37.7575220167, 175.2816374167, "56"], +[-37.75747115, 175.2818365833, "58"], +[-37.75801105, 175.2776507667, "5"], +[-37.75867925, 175.2777692167, "4"], +[-37.7569660667, 175.2829798833, "53"], +[-37.756994, 175.28320215, "55"], +[-37.7573167833, 175.28276195, "68"], +[-37.7583425333, 175.2777973, "6"], +[-37.75734275, 175.2829715333, "70"], +[-37.7573499833, 175.2831749333, "72"], +[-37.7586525667, 175.2779878667, "8"], +[-37.7574475333, 175.2805824667, "29"], +[-37.75734775, 175.2809246667, "33"], +[-37.7573941, 175.28076055, "31"], +[-37.7578476167, 175.2783874833, "9"], +[-37.7879293667, 175.2536633667, "20"], +[-37.7875974, 175.2523799333, "8"], +[-37.7876499333, 175.2525641667, "10"], +[-37.7877014667, 175.2527991, "12"], +[-37.7877534833, 175.2530137833, "14"], +[-37.78801945, 175.2532327167, "16A"], +[-37.7877976167, 175.2532181333, "16"], +[-37.7878616333, 175.253433, "18"], +[-37.7870775167, 175.2514988, "1"], +[-37.7874253833, 175.2516544833, "2"], +[-37.7874824333, 175.2518994833, "4"], +[-37.7875417333, 175.2521499167, "6"], +[-37.7772638, 175.2571913, "27B"], +[-37.7768214833, 175.2578089167, "23B"], +[-37.7770035, 175.2577642667, "23"], +[-37.7764383333, 175.2580675, "8B"], +[-37.77650845, 175.2579212833, "8A"], +[-37.7764097333, 175.25698905, "37"], +[-37.7753918333, 175.2556786667, "38"], +[-37.7763923, 175.2565450167, "39A"], +[-37.7754691167, 175.2558887167, "36"], +[-37.7758424167, 175.2557454, "51"], +[-37.7757497667, 175.2555444167, "53"], +[-37.77614065, 175.25554345, "51A"], +[-37.77637895, 175.2555177167, "51C"], +[-37.7765493, 175.25698775, "37A"], +[-37.7764427167, 175.2581994667, "6A"], +[-37.7761122, 175.25781545, "12A"], +[-37.77603205, 175.2577193, "12B"], +[-37.776269, 175.2575758333, "14"], +[-37.77639985, 175.2577425667, "10"], +[-37.777009, 175.2582255, "11"], +[-37.7761676, 175.2574182, "16"], +[-37.7758272, 175.2574861667, "18A"], +[-37.7757720833, 175.2573472667, "18B"], +[-37.7769085667, 175.2580280667, "19"], +[-37.7760580667, 175.25724825, "20"], +[-37.7759895167, 175.2570939167, "22"], +[-37.7757361, 175.2570219833, "24A"], +[-37.7757185167, 175.25686665, "24B"], +[-37.7759448333, 175.2568910833, "26"], +[-37.7771046, 175.25730485, "27"], +[-37.7758273667, 175.2565912333, "28"], +[-37.7770246833, 175.2571759, "29"], +[-37.7773492167, 175.2589382167, "1"], +[-37.7773022667, 175.2575292667, "21"], +[-37.7767425167, 175.2576531333, "25"], +[-37.7757482667, 175.25644745, "30"], +[-37.7766176333, 175.2574206167, "31"], +[-37.7756589667, 175.2562803333, "32"], +[-37.7770024, 175.25672225, "33A"], +[-37.7765456167, 175.2572304167, "33"], +[-37.77556585, 175.2560764667, "34"], +[-37.7766922333, 175.2568742833, "35"], +[-37.7765025833, 175.25644345, "39B"], +[-37.7762504167, 175.2566538833, "39"], +[-37.7769074, 175.2562656667, "41A"], +[-37.77683885, 175.2560756833, "41B"], +[-37.7766544, 175.25630375, "41"], +[-37.7767987667, 175.25593815, "43A"], +[-37.77663805, 175.2561761, "43"], +[-37.7768296667, 175.25866375, "2"], +[-37.77615135, 175.2564135, "45"], +[-37.7772669167, 175.2587553833, "3"], +[-37.7760348333, 175.2561318833, "47"], +[-37.7761735333, 175.2557651833, "49A"], +[-37.7763321167, 175.2558417333, "49B"], +[-37.7764442333, 175.2557643167, "49C"], +[-37.7766375, 175.2557415333, "49D"], +[-37.7765739167, 175.2556099667, "49E"], +[-37.7765054667, 175.2554627333, "49F"], +[-37.7764585, 175.2552942833, "49G"], +[-37.7759246167, 175.25588485, "49"], +[-37.7756819333, 175.2553878333, "55"], +[-37.7756091333, 175.2552143833, "57"], +[-37.7767510333, 175.2584519333, "4"], +[-37.7771960667, 175.2586067667, "5"], +[-37.7766752333, 175.2582205, "6"], +[-37.7771246, 175.2584355833, "7"], +[-37.7774609833, 175.25810435, "9"], +[-37.77714325, 175.2580972833, "11A"], +[-37.7772797833, 175.25801805, "11B"], +[-37.7774162167, 175.2579002333, "15"], +[-37.7775390333, 175.2577766667, "15A"], +[-37.7776310167, 175.2577017833, "15B"], +[-37.7776081667, 175.2576019333, "17B"], +[-37.7774868167, 175.2576480833, "17A"], +[-37.7773443, 175.2577606167, "17"], +[-37.7772142333, 175.2577810667, "19A"], +[-37.7767683833, 175.2571355333, "31A"], +[-37.8024852667, 175.3008537833, "1/113-9/113"], +[-37.8019749, 175.3186283333, "366"], +[-37.8017458333, 175.3185010167, "368"], +[-37.8025178333, 175.3152911667, "323"], +[-37.8024429833, 175.3154681333, "325"], +[-37.802081, 175.3152686667, "327"], +[-37.8020269167, 175.3154004333, "329"], +[-37.8024541833, 175.3163224333, "330"], +[-37.8023307, 175.3157082, "331"], +[-37.80237305, 175.31653945, "332"], +[-37.8022425667, 175.315881, "333"], +[-37.8021591, 175.3160826333, "335"], +[-37.8020839333, 175.3162636, "337"], +[-37.8020094833, 175.3164142333, "339"], +[-37.80157255, 175.3172818833, "353"], +[-37.8027201167, 175.3157954, "318"], +[-37.8016755667, 175.3170918, "349"], +[-37.8025558167, 175.3147724167, "315B"], +[-37.8030287833, 175.3178666833, "340"], +[-37.8029166833, 175.3170053667, "334"], +[-37.8027173667, 175.3171997333, "350"], +[-37.8026355333, 175.3150753, "317A"], +[-37.8028051167, 175.3156009667, "316"], +[-37.8029839, 175.3152179667, "312"], +[-37.8029041833, 175.3153935, "314"], +[-37.8022002, 175.3169067667, "348A"], +[-37.8025327, 175.3170315333, "352A"], +[-37.80241665, 175.31728755, "352"], +[-37.8027407833, 175.3162921333, "322"], +[-37.8026065667, 175.3160305333, "320"], +[-37.8028899667, 175.3007172667, "109"], +[-37.8026561667, 175.3009660833, "111A"], +[-37.8025877, 175.3008052833, "111"], +[-37.8027582667, 175.30128215, "115"], +[-37.8026968333, 175.3015201667, "117"], +[-37.8026388833, 175.3017464167, "119"], +[-37.8025961167, 175.3019686833, "121"], +[-37.8024276667, 175.3027202333, "129"], +[-37.8023720667, 175.30291055, "131"], +[-37.8023349, 175.3030832333, "133"], +[-37.8023199, 175.3032178167, "135"], +[-37.8019692833, 175.3031157, "137"], +[-37.80194375, 175.3032929167, "139"], +[-37.8026617167, 175.3035977167, "140A"], +[-37.8022580667, 175.3034188333, "141"], +[-37.80221995, 175.3035451833, "143"], +[-37.8019129, 175.3035377333, "145"], +[-37.8021695167, 175.3037347, "147"], +[-37.8021575333, 175.3038887667, "149"], +[-37.8020996333, 175.3040563667, "151"], +[-37.8020528167, 175.3042818167, "153"], +[-37.8020051833, 175.3044768, "155"], +[-37.8019563833, 175.3046809667, "157"], +[-37.80190545, 175.3048912167, "159"], +[-37.80291905, 175.31397165, "301"], +[-37.80283625, 175.31359605, "303"], +[-37.8035432833, 175.314538, "306A"], +[-37.8034078333, 175.31431775, "306"], +[-37.8031906333, 175.3147531, "310"], +[-37.8032983167, 175.3145272667, "308"], +[-37.8028603333, 175.31451385, "311"], +[-37.8027813167, 175.3147210833, "313"], +[-37.8027088833, 175.3148993333, "315"], +[-37.8024189167, 175.31494125, "317B"], +[-37.8022290833, 175.3149755333, "321A"], +[-37.8020207, 175.3148753333, "321B"], +[-37.8019529667, 175.3174049667, "358"], +[-37.8018586333, 175.3175918167, "360"], +[-37.8014622, 175.3175228333, "361"], +[-37.800981, 175.3173982333, "363"], +[-37.8025646333, 175.3189745667, "364"], +[-37.8013629, 175.3177357167, "365A"], +[-37.8011098667, 175.3175822, "365"], +[-37.801246, 175.3179108833, "369"], +[-37.80151705, 175.318384, "370"], +[-37.8011793667, 175.31807795, "371"], +[-37.8014469, 175.3185670167, "372"], +[-37.80189295, 175.31885075, "374A"], +[-37.8018376833, 175.3189386, "374"], +[-37.8010960667, 175.3182379, "375"], +[-37.8021353, 175.3191837833, "376"], +[-37.8017902833, 175.3190449, "378"], +[-37.8012234667, 175.31892155, "384"], +[-37.8013387333, 175.3187897, "382"], +[-37.8011167167, 175.31912585, "390"], +[-37.8024979833, 175.30492745, "150"], +[-37.8026640667, 175.3141394333, "305"], +[-37.8017402167, 175.3169566667, "347"], +[-37.8022618333, 175.3176226833, "358A"], +[-37.80214935, 175.3173320333, "346A"], +[-37.8021282167, 175.3171097333, "346"], +[-37.8028695667, 175.3172744333, "342"], +[-37.8023818167, 175.3169582333, "348"], +[-37.8154377167, 175.2861858333, "54E"], +[-37.8156225333, 175.2861360333, "54B"], +[-37.8155702667, 175.2862686667, "54C"], +[-37.81551005, 175.2864375667, "54A"], +[-37.8154593667, 175.28632655, "54F"], +[-37.815417, 175.2860012833, "54D"], +[-37.8173337833, 175.28439565, "28"], +[-37.8173901667, 175.2841939, "26"], +[-37.8174318833, 175.2839796, "24"], +[-37.81743535, 175.2837605167, "22"], +[-37.8174078667, 175.2835423333, "20"], +[-37.8173691667, 175.2833499, "18"], +[-37.8173462667, 175.2831283667, "16"], +[-37.8172908833, 175.2829794667, "8"], +[-37.8169583833, 175.2829447167, "1"], +[-37.8169827833, 175.2831845667, "3"], +[-37.8170033167, 175.2834104833, "5"], +[-37.8170474667, 175.2836004167, "7"], +[-37.8170773833, 175.2838086, "9"], +[-37.81662875, 175.2840184833, "11"], +[-37.8170131, 175.2842040333, "13"], +[-37.8170587333, 175.28406555, "13A"], +[-37.81680405, 175.2844268833, "15"], +[-37.81668185, 175.2842642833, "15A"], +[-37.8166161333, 175.2845357167, "17"], +[-37.81644445, 175.2845692167, "19"], +[-37.8156543667, 175.2847394667, "27A-27C"], +[-37.8147495667, 175.2843019833, "39"], +[-37.8159517667, 175.2850930833, "48"], +[-37.8161490167, 175.2850743167, "46"], +[-37.8163532167, 175.2850158333, "44"], +[-37.81654545, 175.2849753833, "42"], +[-37.81672515, 175.28489695, "40"], +[-37.8168708, 175.2848437, "38"], +[-37.8170168, 175.2847508667, "36"], +[-37.8173385167, 175.2851037, "34"], +[-37.81736805, 175.2849573667, "32"], +[-37.81720015, 175.2845712333, "30"], +[-37.8149410333, 175.2845438667, "37"], +[-37.8147898333, 175.2846436833, "41"], +[-37.8146675833, 175.2847625, "43"], +[-37.8144916667, 175.2849659, "49"], +[-37.8157115333, 175.2845038833, "29A"], +[-37.8158341333, 175.2845246333, "29B"], +[-37.8154018667, 175.2846318833, "31"], +[-37.8152222167, 175.2845249833, "33"], +[-37.8150754333, 175.2845202, "35"], +[-37.81541755, 175.2849891667, "60"], +[-37.8143623, 175.2851064667, "53"], +[-37.8142719833, 175.28526155, "59"], +[-37.81498305, 175.2854408, "62A"], +[-37.81484705, 175.2850213333, "68"], +[-37.8147209167, 175.2851732333, "70"], +[-37.8141655333, 175.28539525, "61"], +[-37.8145932167, 175.2853225167, "72"], +[-37.8144733, 175.2854739167, "74"], +[-37.81465145, 175.2858113833, "76"], +[-37.81434065, 175.28565585, "80"], +[-37.8142273833, 175.2857843167, "82"], +[-37.8155858, 175.2850524, "58"], +[-37.8157585667, 175.2850868, "56"], +[-37.8150292833, 175.2848689167, "62"], +[-37.8159550333, 175.2841944, "29C"], +[-37.8152918833, 175.2854252, "62D"], +[-37.8151871833, 175.2852961, "62C"], +[-37.8150593333, 175.2853507333, "62B"], +[-37.79191265, 175.2468264667, "12A"], +[-37.7920214833, 175.2461477167, "20"], +[-37.7927948333, 175.2481352, "1"], +[-37.79275115, 175.2479653333, "3"], +[-37.7927085667, 175.24777505, "5"], +[-37.7926226167, 175.2474229333, "1/7-12/7"], +[-37.7921091333, 175.24777405, "6A"], +[-37.7924466, 175.24851055, "2C"], +[-37.7925219333, 175.2469841, "9"], +[-37.7921295667, 175.2467212833, "10A"], +[-37.7919432167, 175.2469349667, "12B"], +[-37.7918667333, 175.2467669, "12"], +[-37.792448, 175.2467031833, "15"], +[-37.7919603167, 175.2458831, "22"], +[-37.7925178833, 175.2484009167, "2A"], +[-37.7924656, 175.2481934167, "2"], +[-37.7924037333, 175.24794785, "4"], +[-37.7923508167, 175.24771015, "6"], +[-37.7922950833, 175.2474939667, "8"], +[-37.7919197167, 175.2464807, "16"], +[-37.7918595667, 175.2462828333, "16A"], +[-37.79179995, 175.2460594333, "16B"], +[-37.7917271333, 175.2458207, "16C"], +[-37.7915819167, 175.2459799167, "16D"], +[-37.7916374667, 175.24623725, "16E"], +[-37.7920714167, 175.2463813, "18"], +[-37.7922622333, 175.24727175, "8B"], +[-37.7920482, 175.2475867667, "8A"], +[-37.7817851667, 175.3097562333, "8"], +[-37.7817665167, 175.3103655333, "14"], +[-37.7817753167, 175.3099495333, "10"], +[-37.7815207, 175.3098175333, "7"], +[-37.78152015, 175.3102072, "11"], +[-37.7817836, 175.3105573167, "16"], +[-37.7818740833, 175.3107297833, "18"], +[-37.78176, 175.3107646833, "20"], +[-37.7815756667, 175.3107609167, "19"], +[-37.7814484, 175.3107832667, "17"], +[-37.7817689, 175.3101623, "12"], +[-37.78146235, 175.310578, "15"], +[-37.78149115, 175.3103974333, "13"], +[-37.7815241833, 175.3100161333, "9"], +[-37.7818720667, 175.3093718833, "4"], +[-37.781808, 175.30958515, "6"], +[-37.7816162667, 175.3092955333, "3"], +[-37.7816543333, 175.3090781833, "1"], +[-37.81544485, 175.30161575, "2"], +[-37.8169027667, 175.3028040333, "26"], +[-37.8151752167, 175.3020617167, "7"], +[-37.8149891333, 175.3019365833, "5"], +[-37.8159575333, 175.30206865, "10"], +[-37.8154015833, 175.3023435167, "11"], +[-37.8161061333, 175.3020970333, "12"], +[-37.8155716333, 175.3023673667, "13"], +[-37.8162681, 175.30215525, "14"], +[-37.8157343333, 175.3023955833, "15"], +[-37.8164049167, 175.3022484833, "16"], +[-37.8158969667, 175.30242385, "17"], +[-37.8165368333, 175.3023580167, "18"], +[-37.81514635, 175.30158745, "1"], +[-37.8166687, 175.30247655, "20"], +[-37.8162928333, 175.3026895667, "21"], +[-37.8165214833, 175.3029781333, "25"], +[-37.8169796667, 175.3025858667, "24"], +[-37.8163780667, 175.3031941167, "27"], +[-37.8164011167, 175.3033046167, "29"], +[-37.8164848333, 175.3034582667, "31"], +[-37.8165667333, 175.30318665, "33"], +[-37.8166974833, 175.3030080667, "35"], +[-37.8168126833, 175.30292585, "37"], +[-37.8151516333, 175.3018001833, "3"], +[-37.81544175, 175.3019870333, "4"], +[-37.8164283667, 175.30278055, "23"], +[-37.8168090667, 175.30255605, "22"], +[-37.81526565, 175.3022475833, "9"], +[-37.81579485, 175.3020456833, "8"], +[-37.8156366333, 175.3020312, "6"], +[-37.7812623, 175.2336240333, "1"], +[-37.78130715, 175.2337876, "3"], +[-37.7815050167, 175.2334289, "4"], +[-37.7814488833, 175.23383715, "5"], +[-37.7819096667, 175.2335447, "6A"], +[-37.7816532667, 175.2335437833, "6"], +[-37.7815906333, 175.2338915833, "7"], +[-37.7815671833, 175.2336811333, "8"], +[-37.81619775, 175.2936107, "97B"], +[-37.8160874333, 175.2935953667, "97A"], +[-37.8201532833, 175.29035275, "24A"], +[-37.8202105833, 175.29047605, "24B"], +[-37.8196373833, 175.2898522167, "25"], +[-37.8162743, 175.2944371167, "94"], +[-37.81617465, 175.2940143167, "95"], +[-37.8162116167, 175.2949159667, "96"], +[-37.8159865667, 175.2940081333, "99"], +[-37.82047885, 175.2896730833, "16"], +[-37.8197111667, 175.2897032833, "21"], +[-37.8197625, 175.2902248167, "27"], +[-37.8193256333, 175.2907150167, "35"], +[-37.8187723, 175.2913745667, "45"], +[-37.81494005, 175.29436295, "114"], +[-37.81516825, 175.2943798333, "112"], +[-37.8153898333, 175.29438105, "110"], +[-37.8183164833, 175.29188195, "49"], +[-37.8209936333, 175.2887918, "2"], +[-37.8179024667, 175.2921292833, "65"], +[-37.8180408667, 175.2919610167, "53"], +[-37.8195298833, 175.2899807667, "25A"], +[-37.8196922833, 175.2903039, "27A"], +[-37.81920745, 175.2902983167, "31A"], +[-37.8190868, 175.29017155, "31B"], +[-37.81673515, 175.2952556167, "88A"], +[-37.8166715833, 175.2952488167, "90"], +[-37.8165669167, 175.2948410833, "90A"], +[-37.8161038833, 175.2947524667, "102A"], +[-37.8159642167, 175.2948624, "102B"], +[-37.8203404, 175.2889914167, "11"], +[-37.8208314833, 175.2896455667, "12"], +[-37.8160499667, 175.2944307667, "100"], +[-37.8158197833, 175.29400265, "101"], +[-37.8157649833, 175.2935623833, "103A"], +[-37.8158967333, 175.2935903, "103B"], +[-37.8156458333, 175.2940014167, "105"], +[-37.8158883, 175.2944192833, "106"], +[-37.8154859833, 175.2940051, "107"], +[-37.8157052667, 175.2948077, "108A"], +[-37.8158335667, 175.2948606833, "108"], +[-37.8153231, 175.29398185, "109"], +[-37.8205585333, 175.28951345, "14"], +[-37.8201768333, 175.2893515167, "15"], +[-37.8200934833, 175.2895244167, "17"], +[-37.8203950333, 175.2898445167, "18"], +[-37.8200067667, 175.2897500167, "19"], +[-37.8203097, 175.2900276167, "20"], +[-37.8202361667, 175.2901886333, "22"], +[-37.8198985833, 175.2900005667, "23"], +[-37.82003585, 175.2905004833, "26"], +[-37.8199328667, 175.29063255, "28"], +[-37.81950625, 175.2904775, "29"], +[-37.8198302833, 175.2907834833, "30"], +[-37.8197141167, 175.2909051833, "32"], +[-37.8191387, 175.2903707833, "33"], +[-37.8195796333, 175.2910497833, "34"], +[-37.8192128, 175.29084845, "37"], +[-37.8194653833, 175.2911600833, "36"], +[-37.8193577333, 175.2913056833, "38"], +[-37.8191041333, 175.2909781, "39"], +[-37.8192447333, 175.2914484167, "40"], +[-37.8189962333, 175.2911144333, "41"], +[-37.8191413333, 175.2916019667, "42"], +[-37.81888325, 175.2912338333, "43"], +[-37.8190102167, 175.2916928167, "44"], +[-37.8188946667, 175.2918409833, "46"], +[-37.8187791667, 175.2919797333, "48"], +[-37.8181489833, 175.2927756667, "58"], +[-37.8182523333, 175.2926134333, "56"], +[-37.82087955, 175.2889780667, "4"], +[-37.81866335, 175.2921204833, "50"], +[-37.8206894833, 175.2885750833, "5"], +[-37.8176144333, 175.29338645, "66"], +[-37.81750065, 175.2935278333, "68"], +[-37.8173938667, 175.29366705, "70"], +[-37.8172704667, 175.2938086833, "72"], +[-37.8173183333, 175.2926031833, "79"], +[-37.81746745, 175.2929737667, "81"], +[-37.81788795, 175.2924506833, "69"], +[-37.8176336833, 175.2922039, "71"], +[-37.8177559167, 175.2926256333, "73"], +[-37.8174672333, 175.2924220333, "75"], +[-37.8176043, 175.29279985, "77"], +[-37.8180477167, 175.2928715333, "60"], +[-37.8207582833, 175.2891388667, "6"], +[-37.8205628, 175.28870245, "7"], +[-37.8171829833, 175.29396455, "74"], +[-37.8170605833, 175.2940805667, "76"], +[-37.81693415, 175.2941775833, "78"], +[-37.8170531167, 175.2945873, "80"], +[-37.8173439667, 175.2931059167, "83"], +[-37.8170872167, 175.2928905167, "85"], +[-37.82064985, 175.2892690833, "8"], +[-37.8204537167, 175.2888478, "9"], +[-37.8169793333, 175.2946399667, "82"], +[-37.8167582167, 175.2942775167, "84"], +[-37.8166214833, 175.2943450167, "86"], +[-37.816656, 175.2948065167, "88"], +[-37.81654115, 175.29391165, "91"], +[-37.8164323667, 175.2944411833, "92"], +[-37.8163430333, 175.29395175, "93"], +[-37.8156413667, 175.2943949, "110A"], +[-37.8161261333, 175.2950100833, "98"], +[-37.8200606167, 175.2891933333, "15A"], +[-37.8202610333, 175.2891763667, "13A"], +[-37.82009785, 175.2891017167, "13B"], +[-37.8209674, 175.2893939667, "10"], +[-37.8208828167, 175.2895377, "10A"], +[-37.7769582167, 175.2205249833, "6"], +[-37.7767034667, 175.2203545167, "4"], +[-37.7764729667, 175.2202567333, "2"], +[-37.7775120833, 175.2208157833, "12"], +[-37.7776623, 175.2209077167, "14"], +[-37.7776765833, 175.2211143, "13"], +[-37.77752685, 175.2212227333, "11"], +[-37.7773686667, 175.2210724167, "9"], +[-37.7770756167, 175.2208716667, "7"], +[-37.7768410833, 175.2207277, "5"], +[-37.7766409667, 175.2205963333, "3"], +[-37.7771791, 175.2206511333, "8"], +[-37.7773359833, 175.220752, "10"], +[-37.7764196, 175.2204962833, "1"], +[-37.7672723167, 175.2983507, "1"], +[-37.7670657333, 175.29824805, "2"], +[-37.7673559, 175.2981739, "3"], +[-37.7670743333, 175.29804445, "4"], +[-37.7674284667, 175.2979960333, "5"], +[-37.7670966333, 175.2978551, "6"], +[-37.7674124167, 175.2978475, "7"], +[-37.7671848167, 175.29774735, "8"], +[-37.7673063167, 175.2977549667, "9"], +[-37.7906387333, 175.2399504, "11"], +[-37.79070065, 175.2394300333, "12"], +[-37.7907605333, 175.2400649167, "13"], +[-37.7908810667, 175.2401890667, "15"], +[-37.7909926833, 175.2403300833, "17"], +[-37.7911145167, 175.2404678667, "19"], +[-37.7912181, 175.2400050167, "20"], +[-37.791135, 175.2407227167, "21"], +[-37.7914342833, 175.2402027667, "22"], +[-37.7912847, 175.24062025, "23"], +[-37.7916152667, 175.2401530333, "24"], +[-37.7896834667, 175.2395253833, "1"], +[-37.7914469167, 175.2406757167, "25"], +[-37.7917667167, 175.2401047833, "26"], +[-37.7916089667, 175.2406284667, "27"], +[-37.7917688167, 175.2396870667, "28"], +[-37.7917647667, 175.2405608667, "29"], +[-37.7919521667, 175.2400402667, "30"], +[-37.7919177333, 175.2405070333, "31"], +[-37.7896685667, 175.2391696, "2"], +[-37.79208425, 175.23998625, "32"], +[-37.7920688, 175.2404421333, "33"], +[-37.7922182333, 175.2403880667, "35"], +[-37.7923845833, 175.2403277167, "37"], +[-37.79258975, 175.23979, "36"], +[-37.7927240167, 175.2397414333, "38"], +[-37.7925390167, 175.2402792333, "39"], +[-37.7928440167, 175.24016535, "43"], +[-37.7931670333, 175.2400695, "47"], +[-37.7933115833, 175.2399831667, "49"], +[-37.7899732333, 175.23916065, "4"], +[-37.7899320167, 175.2395727167, "3"], +[-37.7930104333, 175.2401101333, "45"], +[-37.7905048333, 175.2398175333, "9"], +[-37.7927063333, 175.2402094833, "41"], +[-37.7928912333, 175.2396796, "40"], +[-37.7391776833, 175.2503779333, "122"], +[-37.7393127667, 175.25038235, "124"], +[-37.7395104833, 175.2504225, "126"], +[-37.7396338, 175.25045135, "128"], +[-37.7389705333, 175.2506584, "157"], +[-37.7391170333, 175.2506561, "159"], +[-37.73927015, 175.2506735167, "161"], +[-37.7393767333, 175.2506947333, "163"], +[-37.73954055, 175.2507399833, "165"], +[-37.7396838833, 175.2507535333, "167"], +[-37.7389264333, 175.25040695, "118"], +[-37.7390228167, 175.2503764167, "120"], +[-37.7159228333, 175.3359178, "487A"], +[-37.7155560167, 175.3344935833, "487B"], +[-37.7014835333, 175.3392002167, "656"], +[-37.7272420667, 175.3125332, "243"], +[-37.7270431667, 175.3146557333, "264"], +[-37.7309002167, 175.3054966667, "175"], +[-37.7259506667, 175.3172410667, "288"], +[-37.7252056, 175.3186652333, "302"], +[-37.7156007333, 175.335561, "487C"], +[-37.7157993833, 175.33620855, "489"], +[-37.71594315, 175.3373066833, "492"], +[-37.7153784167, 175.3369725333, "495"], +[-37.6975236167, 175.3379687667, "699"], +[-37.7142278333, 175.3389662833, "512"], +[-37.71450525, 175.3402202333, "512B"], +[-37.728905, 175.31117095, "226A"], +[-37.7289575833, 175.3114591, "226B"], +[-37.7287109333, 175.3115523667, "226C"], +[-37.7295827, 175.3084017167, "199"], +[-37.7279342667, 175.3113569167, "233"], +[-37.7296167667, 175.3096518, "208"], +[-37.738685, 175.2904614, "10A"], +[-37.7385876, 175.29067465, "10B"], +[-37.7387898333, 175.29011935, "8"], +[-37.7379182167, 175.29089575, "19"], +[-37.7380166, 175.2907065667, "17"], +[-37.7159256667, 175.3331368333, "469A"], +[-37.7154311667, 175.33279255, "469B"], +[-37.7369220833, 175.2932265167, "37B"], +[-37.7320086833, 175.3035050667, "147"], +[-37.7186354, 175.3371307167, "478B"], +[-37.7167596333, 175.3354760167, "478A"], +[-37.71659335, 175.3358895, "478C"], +[-37.7327102, 175.3031907333, "144"], +[-37.72409375, 175.3190447667, "311"], +[-37.7011666167, 175.33750495, "657"], +[-37.7376043833, 175.2915023167, "27"], +[-37.7371468333, 175.2924552833, "35"], +[-37.7374492833, 175.29362365, "42B"], +[-37.7365370167, 175.2942355333, "59"], +[-37.7386405833, 175.2897215, "5"], +[-37.7340101, 175.29934795, "105A"], +[-37.7342764667, 175.2999227167, "106"], +[-37.7338780167, 175.3008682333, "122"], +[-37.73278045, 175.30215635, "135"], +[-37.7318493833, 175.3039557, "153"], +[-37.73104255, 175.30367385, "165"], +[-37.73492015, 175.2975609167, "95"], +[-37.7353235, 175.2968386167, "83"], +[-37.7244032333, 175.3185808333, "305"], +[-37.7237146, 175.3200964167, "321"], +[-37.7228568167, 175.32118235, "331"], +[-37.7234885167, 175.3218862, "334"], +[-37.72015655, 175.3273906333, "395"], +[-37.72049795, 175.3284032, "414"], +[-37.7182466833, 175.3330881833, "446"], +[-37.7171659833, 175.3334085833, "461"], +[-37.7174942333, 175.3341670333, "462"], +[-37.71389765, 175.3319445333, "469C"], +[-37.72069705, 175.3263323333, "383"], +[-37.7212688833, 175.32677305, "390"], +[-37.7043152667, 175.3384901, "616"], +[-37.7020266833, 175.33832815, "650"], +[-37.7070721167, 175.3372021667, "581"], +[-37.70648745, 175.3384263, "596C"], +[-37.6987536167, 175.3393715, "686"], +[-37.7157999, 175.3314161667, "453"], +[-37.7170289833, 175.3316057833, "445"], +[-37.7176510167, 175.3322769167, "447"], +[-37.73635995, 175.2926987167, "37A"], +[-37.7336185333, 175.30142485, "126"], +[-37.73416525, 175.3002420167, "112"], +[-37.7297528167, 175.30941575, "206"], +[-37.7310217167, 175.30683075, "182"], +[-37.7325207, 175.30741335, "182C"], +[-37.7319247333, 175.3075179167, "182A"], +[-37.73580265, 175.305343, "154"], +[-37.7340548167, 175.3080368333, "182B"], +[-37.7057148, 175.3384104, "596B"], +[-37.7069752, 175.3392058, "596A"], +[-37.7359298167, 175.2966840167, "76"], +[-37.7374966667, 175.2933353667, "42A"], +[-37.7142027667, 175.34505435, "512A"], +[-37.7245562667, 175.3181628667, "303"], +[-37.7249034833, 175.3174892167, "295"], +[-37.7264602167, 175.3141028, "259"], +[-37.7266286833, 175.3137479667, "257"], +[-37.7332144667, 175.3101041333, "192"], +[-37.7336910167, 175.2615917, "1"], +[-37.73337375, 175.2613473667, "6"], +[-37.7334556167, 175.2616913, "2"], +[-37.73366895, 175.2613917833, "3"], +[-37.7333028167, 175.26147995, "4"], +[-37.7335652333, 175.2613454667, "5"], +[-37.7591438, 175.2989597833, "1"], +[-37.75937755, 175.2997460667, "10"], +[-37.7590447833, 175.2996695667, "11"], +[-37.7591975833, 175.29966165, "12"], +[-37.7594281, 175.29893325, "2"], +[-37.7590993333, 175.2991022, "3"], +[-37.75937875, 175.29911015, "4"], +[-37.7590584333, 175.2992598, "5"], +[-37.7593225, 175.2992968667, "6"], +[-37.7589622333, 175.2994522, "7"], +[-37.7592927167, 175.2994948167, "8"], +[-37.7588847333, 175.2996756333, "9"], +[-37.78870675, 175.24183965, "31"], +[-37.7887107333, 175.2416008333, "33"], +[-37.7884613667, 175.2411860333, "34"], +[-37.7887179333, 175.24136385, "35"], +[-37.7889584667, 175.2422448333, "3"], +[-37.7889633, 175.2426273167, "4"], +[-37.7887822333, 175.24222675, "5"], +[-37.7887723, 175.2426162833, "6"], +[-37.7885822, 175.24260805, "8"], +[-37.7882492833, 175.2323311, "15"], +[-37.7881551167, 175.2317155, "9"], +[-37.78850175, 175.23141345, "4"], +[-37.7882772833, 175.2325241333, "17"], +[-37.7886367, 175.2321198, "10"], +[-37.788176, 175.2319129167, "11"], +[-37.78872525, 175.2323059833, "12"], +[-37.7882074167, 175.23211965, "13"], +[-37.7887908167, 175.2329251167, "18"], +[-37.7883342, 175.2327290667, "19"], +[-37.7883932667, 175.2329348167, "21"], +[-37.7882558667, 175.2309407, "1"], +[-37.7881414833, 175.2313349833, "5"], +[-37.7885540833, 175.2316387167, "6"], +[-37.7881308, 175.2315134833, "7"], +[-37.7885848667, 175.2318767167, "8"], +[-37.7884990667, 175.2331438833, "23"], +[-37.7886368333, 175.2329962167, "25"], +[-37.7889499667, 175.2324249333, "14"], +[-37.78881905, 175.2325817167, "16"], +[-37.7881809, 175.2311395333, "3"], +[-37.7885449, 175.2312091667, "2"], +[-37.7833519167, 175.2514378833, "2"], +[-37.78324695, 175.2515867167, "3"], +[-37.78331595, 175.2520335333, "1"], +[-37.7830469, 175.2518653167, "5"], +[-37.7831310833, 175.25174715, "4"], +[-37.7830146667, 175.2520493833, "6"], +[-37.7829094833, 175.25197875, "7"], +[-37.7620248167, 175.26044555, "45"], +[-37.7642933, 175.2596045, "7A"], +[-37.76392895, 175.26034265, "8"], +[-37.7637813, 175.2603230167, "10"], +[-37.7627241833, 175.2601744833, "24"], +[-37.7631679, 175.2598193667, "25"], +[-37.7626358167, 175.2597479167, "33A"], +[-37.76208115, 175.2602621833, "43"], +[-37.7642414667, 175.25998045, "7"], +[-37.7643838833, 175.2600134, "5"], +[-37.7625043333, 175.2594329167, "35A"], +[-37.76213235, 175.2601191833, "41"], +[-37.7640802667, 175.2603598833, "6"], +[-37.76460765, 175.2598824333, "3A"], +[-37.7641602333, 175.2593719833, "9A"], +[-37.76411645, 175.2591218667, "9B"], +[-37.7640289333, 175.2589557833, "9C"], +[-37.7640635167, 175.2599398333, "11"], +[-37.7636319333, 175.26031085, "12"], +[-37.7639271, 175.2599168167, "13"], +[-37.7634452333, 175.2606627333, "14A"], +[-37.7634821833, 175.26041945, "14"], +[-37.7638602, 175.2594164833, "15"], +[-37.7633196, 175.2602724833, "16"], +[-37.76374575, 175.259889, "17"], +[-37.7631736333, 175.2602603333, "18"], +[-37.7635979333, 175.2598842, "19"], +[-37.7630487333, 175.2602280667, "20"], +[-37.7634639333, 175.2598659, "21"], +[-37.7623921, 175.2604099667, "28"], +[-37.76289675, 175.2602182167, "22"], +[-37.7625207667, 175.2602072833, "26"], +[-37.7629908333, 175.2598294167, "27"], +[-37.7628289333, 175.2597699167, "29"], +[-37.7633154667, 175.25984325, "23"], +[-37.76437065, 175.2603765167, "2A"], +[-37.7645357, 175.2604859667, "2"], +[-37.76229375, 175.2606073833, "30"], +[-37.7621808833, 175.2597603667, "39A"], +[-37.7622380833, 175.2599468167, "39"], +[-37.7626728333, 175.25937365, "33B"], +[-37.7623539667, 175.2598149167, "37"], +[-37.76249715, 175.2597457167, "35"], +[-37.7627783333, 175.2592534833, "31"], +[-37.7622528833, 175.25969695, "37A"], +[-37.76451595, 175.2600783167, "3"], +[-37.7631293167, 175.25960765, "25A"], +[-37.7633756833, 175.2596512333, "23A"], +[-37.7631509333, 175.2605263, "18A"], +[-37.7632951667, 175.2605447167, "16A"], +[-37.7642421833, 175.2603790833, "4"], +[-37.81071905, 175.3022594, "5A"], +[-37.8106737667, 175.30274965, "20"], +[-37.81092155, 175.3034273833, "14"], +[-37.8109019167, 175.30275375, "10"], +[-37.8106189667, 175.3025565667, "11"], +[-37.8107979333, 175.3029567333, "18"], +[-37.81116915, 175.3019494833, "1"], +[-37.8108980333, 175.3031338167, "16"], +[-37.8108146333, 175.3023412333, "5"], +[-37.8111323333, 175.3024608833, "6"], +[-37.8105083667, 175.3021674333, "7"], +[-37.81102635, 175.3026217167, "8"], +[-37.8105707167, 175.3023698833, "9"], +[-37.8112412333, 175.3022988, "4"], +[-37.8109940167, 175.3021801667, "3"], +[-37.73569225, 175.2843512667, "12"], +[-37.7355136167, 175.2843163833, "14"], +[-37.7353447833, 175.2842528667, "16"], +[-37.7351856333, 175.2841665167, "18"], +[-37.7352584, 175.28365645, "15"], +[-37.7351164167, 175.2834085167, "19"], +[-37.735052, 175.2836293333, "21"], +[-37.7350049, 175.2837928, "23"], +[-37.7350446833, 175.28408945, "20"], +[-37.7348757167, 175.28414175, "22"], +[-37.7349466667, 175.2839385333, "24"], +[-37.7355739833, 175.28395935, "11"], +[-37.7357616167, 175.2840032167, "9"], +[-37.7354128333, 175.28385845, "13"], +[-37.7357592333, 175.2847776167, "10"], +[-37.7363699667, 175.2841609167, "3"], +[-37.7360654333, 175.2844287667, "6"], +[-37.7359635, 175.2840258167, "7"], +[-37.73588705, 175.2843823, "8"], +[-37.73623015, 175.2844689667, "4"], +[-37.73637625, 175.28452015, "2"], +[-37.7365158167, 175.2842236667, "1"], +[-37.73617345, 175.2841022833, "5"], +[-37.7893262667, 175.2911613333, "10"], +[-37.7904682333, 175.2911629833, "1"], +[-37.7900085667, 175.2913858333, "2-4"], +[-37.7879611167, 175.2902378, "39"], +[-37.79025875, 175.291073, "3A-3D"], +[-37.7888911167, 175.2909941167, "14"], +[-37.78874255, 175.2909531167, "16"], +[-37.7885871, 175.2908764333, "18"], +[-37.78842115, 175.29081815, "20"], +[-37.7889297, 175.2905872167, "21"], +[-37.7887156667, 175.29030485, "23"], +[-37.7886927167, 175.2901725833, "27"], +[-37.7886761333, 175.2904979667, "25"], +[-37.78860745, 175.2901245167, "29"], +[-37.7884819833, 175.2904228667, "31"], +[-37.7884428333, 175.2900088667, "33"], +[-37.7883068833, 175.2903534, "35"], +[-37.7881406167, 175.2902999833, "37"], +[-37.7900757167, 175.29102335, "5"], +[-37.7892542333, 175.2907099167, "15"], +[-37.7903580333, 175.2906376667, "3"], +[-37.7831981833, 175.2663978167, "3"], +[-37.7838249333, 175.266288, "1/1-8/1"], +[-37.7840598333, 175.2666057333, "2"], +[-37.7830987333, 175.2668552333, "10"], +[-37.7839495333, 175.2666311333, "4"], +[-37.7832313, 175.2668218667, "8"], +[-37.7830402833, 175.2664263667, "5"], +[-37.8070524333, 175.2567197833, "16"], +[-37.8056327333, 175.2580089667, "5"], +[-37.8057368167, 175.2582105667, "5A"], +[-37.8055512833, 175.2575860333, "4B"], +[-37.8054679833, 175.25762, "4C"], +[-37.8053468, 175.2574431333, "4E"], +[-37.8054744, 175.2574111333, "4A"], +[-37.8053661167, 175.2576617, "4"], +[-37.80581375, 175.2579519167, "7"], +[-37.8064536333, 175.2572621333, "10"], +[-37.8061725333, 175.2578504833, "11"], +[-37.8066912167, 175.2571794333, "12"], +[-37.8063496667, 175.25776685, "13"], +[-37.8065342833, 175.2576977167, "15"], +[-37.8067094167, 175.2576380833, "17"], +[-37.8072411667, 175.2576062167, "18"], +[-37.8068878167, 175.2575567333, "19"], +[-37.8062933667, 175.2573169167, "8"], +[-37.8059873833, 175.2579092, "9"], +[-37.82491965, 175.2957263333, "26B"], +[-37.8247883667, 175.2957604833, "26A"], +[-37.8243055833, 175.2949596333, "8"], +[-37.8242955667, 175.2960396, "11"], +[-37.8244735833, 175.2951827667, "12"], +[-37.8242553833, 175.2952999667, "10"], +[-37.8244380667, 175.2960054333, "13"], +[-37.82438245, 175.2954740667, "14"], +[-37.8245080333, 175.2956035833, "18"], +[-37.8238021333, 175.2954560333, "1"], +[-37.8247727667, 175.2956200667, "20"], +[-37.82453935, 175.2958766333, "28"], +[-37.8238236, 175.2950137333, "2"], +[-37.8239793333, 175.2955318, "3"], +[-37.8239583333, 175.2950570333, "4"], +[-37.8240803667, 175.2957138833, "5"], +[-37.8241170667, 175.2951322, "6"], +[-37.8251942333, 175.29548555, "22A"], +[-37.8241385833, 175.295879, "7"], +[-37.8241473667, 175.2960502833, "9"], +[-37.82503185, 175.29548395, "22"], +[-37.8253245833, 175.2956497667, "24A"], +[-37.8250809, 175.2957993667, "24"], +[-37.8133323, 175.2785636, "52A"], +[-37.8139226, 175.2776516167, "62A"], +[-37.8140587333, 175.2778058833, "62"], +[-37.8145017333, 175.27824545, "61A"], +[-37.81647765, 175.2754299167, "106A"], +[-37.8142062667, 175.2782064167, "59"], +[-37.8147348167, 175.2777913667, "65A"], +[-37.8125531, 175.2804626833, "18"], +[-37.8123822667, 175.2798277667, "24"], +[-37.81294345, 175.2798068, "36"], +[-37.8136416833, 175.27914605, "45"], +[-37.8133153, 175.2790236833, "46"], +[-37.8123907167, 175.2815480833, "5"], +[-37.8124668167, 175.28137725, "7"], +[-37.8148286667, 175.2769536, "78"], +[-37.8125381, 175.2812078833, "9"], +[-37.8140055833, 175.2785121167, "55"], +[-37.8143380333, 175.27804135, "61"], +[-37.8137980833, 175.2781851667, "58"], +[-37.8137188667, 175.2783282333, "56"], +[-37.8120604667, 175.2814047333, "6"], +[-37.81454385, 175.2772254333, "70"], +[-37.8121216333, 175.2812468167, "8"], +[-37.8143368167, 175.2769581, "72"], +[-37.8135093167, 175.2786975833, "52"], +[-37.8138997667, 175.2787088333, "51"], +[-37.8136086667, 175.2785214667, "54"], +[-37.8130640333, 175.2802778167, "25"], +[-37.8120816, 175.2809757167, "10A"], +[-37.8121897167, 175.2810744833, "10"], +[-37.8126121333, 175.2810411333, "11"], +[-37.81228435, 175.2809411667, "12"], +[-37.81270505, 175.2808875667, "13"], +[-37.8122271, 175.2819452667, "1"], +[-37.8126322167, 175.2803014167, "20"], +[-37.8127170833, 175.2801588667, "22"], +[-37.812196, 175.2797725667, "26"], +[-37.8122543167, 175.2795804167, "28"], +[-37.81235695, 175.2794069667, "30"], +[-37.8124793, 175.2796699833, "32"], +[-37.81284065, 175.2799857, "34"], +[-37.8130122333, 175.27966505, "38"], +[-37.8123259167, 175.2817295167, "3"], +[-37.8120039333, 175.2815609333, "4"], +[-37.81340465, 175.27960595, "39"], +[-37.8130764667, 175.2794953667, "40"], +[-37.81348525, 175.2794513167, "41"], +[-37.8131617833, 175.2793393667, "42"], +[-37.8135821333, 175.2792760333, "43"], +[-37.8132284333, 175.27917625, "44"], +[-37.8137324667, 175.2790047333, "47"], +[-37.8134140667, 175.2788616833, "48"], +[-37.8138119167, 175.2788588167, "49"], +[-37.8144644833, 175.27788335, "63"], +[-37.814137, 175.2776887667, "64"], +[-37.8145892667, 175.2776935167, "65"], +[-37.8142587, 175.2775595167, "66"], +[-37.8144203333, 175.277398, "68"], +[-37.8146789667, 175.2770847167, "74"], +[-37.81455295, 175.2767296667, "76"], +[-37.8147149833, 175.2765656667, "80A"], +[-37.81467525, 175.2764547833, "80"], +[-37.8148230667, 175.2764900667, "82"], +[-37.8150306833, 175.2768612167, "84"], +[-37.81618565, 175.2759087167, "100"], +[-37.8164403667, 175.2761557333, "101"], +[-37.81627695, 175.2757509333, "102"], +[-37.8165380667, 175.2759971333, "103"], +[-37.8163740167, 175.2755878, "104"], +[-37.81683615, 175.2761561833, "105"], +[-37.8165666333, 175.2752962167, "106"], +[-37.8166492667, 175.2758043167, "107"], +[-37.8167291333, 175.2756618833, "109"], +[-37.8150452, 175.27724145, "71"], +[-37.815174, 175.2771837667, "73"], +[-37.8152949, 175.2771283167, "75"], +[-37.8154139333, 175.2770678833, "77"], +[-37.815529, 175.2770098167, "79"], +[-37.81564805, 175.2769493667, "81"], +[-37.8157614333, 175.2768787667, "83"], +[-37.8158723333, 175.2768062833, "85"], +[-37.8151841833, 175.27678765, "86"], +[-37.8153274, 175.2767142, "88"], +[-37.8154897833, 175.2766395667, "90"], +[-37.8156527667, 175.2765202333, "92"], +[-37.8160017833, 175.2767403333, "93"], +[-37.8158158, 175.27639655, "94"], +[-37.8161257333, 175.2766070667, "95"], +[-37.8159712333, 175.2762492167, "96"], +[-37.8162349333, 175.2764805833, "97"], +[-37.81608835, 175.2760796833, "98"], +[-37.8163445333, 175.2763265667, "99"], +[-37.81268005, 175.2813683667, "9A"], +[-37.81290145, 175.2810709667, "13A"], +[-37.8140959, 175.2783668167, "57"], +[-37.74702825, 175.2878085667, "32"], +[-37.7471254, 175.2880096833, "35"], +[-37.7472271, 175.2882365, "33"], +[-37.7473538667, 175.2884709833, "31"], +[-37.7474201, 175.2887026, "29"], +[-37.7476713833, 175.2888067167, "27"], +[-37.7477544167, 175.2889563333, "25"], +[-37.7474046167, 175.28895745, "21"], +[-37.7475697833, 175.2890587167, "23"], +[-37.7472997, 175.2891263333, "17"], +[-37.7474691, 175.2892660333, "19"], +[-37.7471783833, 175.2893521333, "15"], +[-37.7473990167, 175.2895708, "13"], +[-37.74728295, 175.290409, "3"], +[-37.74725735, 175.2901783167, "5"], +[-37.7471729, 175.2896464333, "11"], +[-37.7469716833, 175.2902645833, "4"], +[-37.74694205, 175.2904678833, "2"], +[-37.7473724333, 175.2897362333, "9"], +[-37.7469719667, 175.2900092167, "6"], +[-37.7472321833, 175.2899285, "7"], +[-37.7468864333, 175.28949565, "10"], +[-37.7472124, 175.2906301, "1"], +[-37.74691655, 175.2892668, "12"], +[-37.7466615667, 175.2888561167, "16"], +[-37.7466429167, 175.2890215, "14"], +[-37.7469926, 175.2890222667, "18"], +[-37.7467923833, 175.2884199, "24"], +[-37.7469511667, 175.2884482667, "22"], +[-37.7471140333, 175.2887315333, "20"], +[-37.7468581167, 175.2881859333, "26"], +[-37.7469177167, 175.2880027667, "28"], +[-37.7468840333, 175.2876761167, "30"], +[-37.7240548833, 175.26294305, "2"], +[-37.724003, 175.2627541, "4"], +[-37.7241738333, 175.2627324667, "6"], +[-37.7243288167, 175.26272585, "5"], +[-37.72435305, 175.26290205, "3"], +[-37.7242973833, 175.2630485167, "1"], +[-37.7563189167, 175.2734308, "23"], +[-37.7562690667, 175.2744459167, "12"], +[-37.7560284833, 175.2741839167, "14"], +[-37.7563303333, 175.2742255167, "16"], +[-37.7563509, 175.2740128667, "18"], +[-37.7561686667, 175.2738072167, "20"], +[-37.7564941833, 175.2735199833, "21"], +[-37.75616345, 175.2735520167, "22"], +[-37.7561835667, 175.2733537833, "24"], +[-37.7559895667, 175.2757712167, "2"], +[-37.7563288667, 175.2756863167, "3"], +[-37.7560311333, 175.2755899, "4"], +[-37.7563780167, 175.2754980333, "5"], +[-37.7560921, 175.2753853667, "6"], +[-37.7561276833, 175.2751879333, "8"], +[-37.7374867667, 175.2858259, "13"], +[-37.7375854333, 175.2854242, "12"], +[-37.7375225, 175.2856080667, "14"], +[-37.7375423667, 175.2852079, "10"], +[-37.7366647667, 175.2856260833, "1"], +[-37.7368149333, 175.2856641333, "3"], +[-37.7374450333, 175.2860166667, "11"], +[-37.7373371833, 175.28544695, "8"], +[-37.7371805833, 175.2854025, "6"], +[-37.7369926167, 175.2853673333, "4"], +[-37.73679845, 175.2853154333, "2"], +[-37.73730325, 175.2858921333, "9"], +[-37.73714825, 175.2857712667, "7"], +[-37.73697565, 175.2857076833, "5"], +[-37.7864845333, 175.2516944333, "45A"], +[-37.7842858667, 175.2504385833, "32"], +[-37.7917363333, 175.2484980167, "144"], +[-37.7918745333, 175.2489552667, "146"], +[-37.7920253, 175.24890205, "148"], +[-37.7911042833, 175.2492300167, "124"], +[-37.79100285, 175.2484682833, "126A"], +[-37.7910465, 175.24845545, "126B"], +[-37.7912498667, 175.2491693, "128"], +[-37.79215255, 175.2488336, "150"], +[-37.7923698333, 175.24876005, "152"], +[-37.79247505, 175.2487212, "154"], +[-37.7929755333, 175.2485120167, "156"], +[-37.79313485, 175.2484437667, "158"], +[-37.7857213333, 175.2517137167, "37"], +[-37.7883309, 175.2503050833, "90A"], +[-37.7882544667, 175.2499831, "90"], +[-37.78850475, 175.2499928167, "92A"], +[-37.7838255, 175.2520568667, "14"], +[-37.78369205, 175.2521018333, "12"], +[-37.7944020167, 175.2484230333, "171"], +[-37.7912988167, 175.2482702833, "132A"], +[-37.7941229, 175.2478104667, "170A"], +[-37.7897334333, 175.2494383833, "110A"], +[-37.7878041833, 175.2501904333, "78A"], +[-37.7887668333, 175.2501237, "94A"], +[-37.7882677, 175.25078985, "51A"], +[-37.78472295, 175.2512627, "36A"], +[-37.7843409667, 175.2518098, "20"], +[-37.78443765, 175.2517724, "22"], +[-37.7848695333, 175.2520778667, "27"], +[-37.7841229833, 175.24990635, "30"], +[-37.7844316667, 175.2509688167, "34"], +[-37.7847043667, 175.2516896, "36"], +[-37.7849163, 175.2516124833, "38"], +[-37.7905941333, 175.2494295667, "116"], +[-37.7907056, 175.2494044833, "118"], +[-37.7894701167, 175.2498791, "102"], +[-37.7896157833, 175.24981115, "104"], +[-37.7895029833, 175.2490240833, "106A"], +[-37.7895407, 175.24928915, "106"], +[-37.7895805333, 175.24897365, "108A"], +[-37.7896446167, 175.2492527333, "108"], +[-37.78980465, 175.2497455, "110"], +[-37.7899578833, 175.2496820667, "112"], +[-37.79007135, 175.2496496833, "114"], +[-37.7892299333, 175.24996735, "100"], +[-37.7908387667, 175.2493504833, "120"], +[-37.7909785333, 175.2492927167, "122"], +[-37.7910167, 175.2488402333, "124A"], +[-37.7914072667, 175.2491243167, "130"], +[-37.7913508167, 175.2486746833, "132"], +[-37.7916845833, 175.2489799167, "134"], +[-37.7914909167, 175.2487273167, "136"], +[-37.7915204, 175.2482150667, "138"], +[-37.7915971167, 175.24807, "140"], +[-37.7916667333, 175.2482450667, "142"], +[-37.79333315, 175.2483623667, "160"], +[-37.7935017667, 175.2483013, "162A"], +[-37.7933768167, 175.2478146167, "162B"], +[-37.7933315, 175.24758385, "162C"], +[-37.7935445333, 175.24781065, "164A"], +[-37.7936595, 175.2482437167, "164"], +[-37.7938151, 175.2481812, "166"], +[-37.7939741, 175.2481320833, "168"], +[-37.79414995, 175.2480943, "170"], +[-37.7942388833, 175.2479720833, "172"], +[-37.7855499, 175.2517891, "35"], +[-37.785046, 175.2519984, "29"], +[-37.7853275333, 175.2520856333, "31A"], +[-37.7852203167, 175.2519272833, "31"], +[-37.7853886, 175.2518674667, "33"], +[-37.7890619, 175.2505002667, "53"], +[-37.7892281, 175.2504082, "55"], +[-37.7893754833, 175.2503409833, "57"], +[-37.7860703, 175.2515849167, "41"], +[-37.7862530833, 175.2515106833, "43"], +[-37.7864195667, 175.2514559667, "45"], +[-37.78659575, 175.25138955, "47"], +[-37.78679005, 175.2513193667, "49"], +[-37.7860205, 175.2511891167, "50"], +[-37.78690465, 175.2512673833, "51"], +[-37.7858970833, 175.2516594167, "39"], +[-37.7855159667, 175.2513839, "44"], +[-37.7856626667, 175.2513280333, "46"], +[-37.7858044, 175.25127165, "48"], +[-37.78505615, 175.2515631833, "40"], +[-37.7851774667, 175.25152355, "42"], +[-37.78786235, 175.2504696, "78"], +[-37.7880074667, 175.2504078333, "80"], +[-37.7881354167, 175.2501245833, "82A"], +[-37.7881764333, 175.25036705, "82B"], +[-37.7884877, 175.25022585, "92"], +[-37.7870526, 175.2505246833, "72A"], +[-37.7871662333, 175.2507560167, "72"], +[-37.7873518833, 175.2506813667, "74"], +[-37.78895345, 175.2498544833, "96A"], +[-37.78894365, 175.2500703667, "96"], +[-37.7891048, 175.2500152167, "98"], +[-37.7886461667, 175.2501754667, "94"], +[-37.78354475, 175.2521368333, "8"], +[-37.7846657, 175.2521658167, "25"], +[-37.7506584667, 175.2695381167, "8"], +[-37.7506999833, 175.26933905, "6"], +[-37.7502235833, 175.26907275, "5A"], +[-37.7502887333, 175.2695118, "7"], +[-37.7507549167, 175.2691276333, "4"], +[-37.75051345, 175.2686637333, "1"], +[-37.7504096667, 175.2689887167, "3"], +[-37.7503531333, 175.2692176167, "5"], +[-37.7509198833, 175.2688225667, "2"], +[-37.8334697167, 175.2038651667, "326"], +[-37.8322013667, 175.2046802667, "1/341"], +[-37.8320576167, 175.2165535833, "435"], +[-37.8319540333, 175.20506915, "2/341"], +[-37.8316975667, 175.2053442333, "3/341"], +[-37.8328229833, 175.2062598, "346"], +[-37.83161565, 175.2074915, "355"], +[-37.83219305, 175.20629425, "347"], +[-37.8328549, 175.2080619667, "362"], +[-37.8321289667, 175.2084019333, "367"], +[-37.8322225167, 175.2120427667, "397"], +[-37.8321649, 175.21119325, "393"], +[-37.8321458833, 175.2131246333, "407"], +[-37.8327043833, 175.21377405, "416"], +[-37.8321267167, 175.2144058167, "417"], +[-37.83212555, 175.2096521333, "373"], +[-37.8331028667, 175.20928495, "366"], +[-37.8401075667, 175.3287092333, "1/231"], +[-37.8387537333, 175.3355301, "259"], +[-37.8405728333, 175.3285159667, "228"], +[-37.8398746833, 175.32684055, "215"], +[-37.8366289, 175.3333431, "233"], +[-37.76852055, 175.2978661667, "17B"], +[-37.7681881167, 175.2978879, "20A"], +[-37.7681191833, 175.2977981833, "20B"], +[-37.76796475, 175.29775755, "24C"], +[-37.7680231833, 175.2975873167, "24B"], +[-37.7682210833, 175.29733565, "21A"], +[-37.7678486, 175.2975795167, "24A"], +[-37.7677785833, 175.2974525833, "26B"], +[-37.7677311, 175.2973494667, "26A"], +[-37.7677722333, 175.2971482333, "28C"], +[-37.7676954, 175.2970197333, "28B"], +[-37.7682738333, 175.2971170667, "21B"], +[-37.7682310333, 175.29703245, "21C"], +[-37.76844505, 175.2977488, "19A"], +[-37.7684874167, 175.2975321, "19B"], +[-37.7684429, 175.2974391333, "19C"], +[-37.7683941667, 175.2973274333, "19D"], +[-37.7692588167, 175.2988921833, "4"], +[-37.7690588833, 175.29832075, "11"], +[-37.7681755833, 175.29692675, "21D"], +[-37.76804765, 175.2967396833, "23B"], +[-37.7681149333, 175.29682915, "23A"], +[-37.76858835, 175.2979408333, "17A"], +[-37.76895065, 175.2986702167, "10"], +[-37.76881385, 175.2985638833, "12"], +[-37.76896275, 175.2982427333, "13"], +[-37.7686860333, 175.2984536667, "14"], +[-37.7685615833, 175.29836005, "16"], +[-37.7694406833, 175.2986199333, "1A"], +[-37.7695212167, 175.2983917, "1B"], +[-37.7696089667, 175.2981781833, "3"], +[-37.7695045667, 175.2980919333, "5"], +[-37.7690643833, 175.2991875667, "6"], +[-37.7692459, 175.2984607, "7"], +[-37.7691076833, 175.298359, "9"], +[-37.7691039, 175.2987848667, "8"], +[-37.7851204333, 175.2672612833, "10"], +[-37.7851635, 175.2667263167, "5"], +[-37.78540555, 175.2669491167, "6B"], +[-37.7853428333, 175.2670431, "6C"], +[-37.7854906167, 175.26683945, "6A"], +[-37.7856122, 175.2664194667, "2"], +[-37.7849944833, 175.2674591667, "12"], +[-37.7850583667, 175.26733455, "10A"], +[-37.7854079333, 175.2664394833, "1"], +[-37.7852649667, 175.2665838333, "3"], +[-37.7856016667, 175.26670965, "4"], +[-37.78500975, 175.2668996833, "7"], +[-37.7852235167, 175.2671627333, "8"], +[-37.8131224333, 175.2773781, "14"], +[-37.8132429167, 175.2775040333, "12"], +[-37.8135575833, 175.2774016, "5"], +[-37.8134308333, 175.2772405, "7"], +[-37.8133861167, 175.27763075, "10"], +[-37.8137088333, 175.2775504, "3"], +[-37.8135340833, 175.27781355, "6"], +[-37.81327395, 175.2780132333, "8A"], +[-37.8131924667, 175.2781502167, "8B"], +[-37.7939588, 175.2882215, "3"], +[-37.7941174667, 175.2881277833, "6"], +[-37.79406695, 175.28806035, "5"], +[-37.7939888, 175.2882848, "2"], +[-37.7939833667, 175.28810785, "4"], +[-37.7983951667, 175.3221154667, "14A"], +[-37.7974975, 175.3208346167, "27A"], +[-37.7980711167, 175.3220448833, "18A"], +[-37.7978670167, 175.3215699833, "22"], +[-37.7980578333, 175.32296515, "55"], +[-37.7990982833, 175.32272735, "48A"], +[-37.79914655, 175.32235675, "4A"], +[-37.79832785, 175.3223588, "38A"], +[-37.7981624667, 175.3222810667, "36A"], +[-37.7987675667, 175.32132565, "9A"], +[-37.7977343667, 175.3217356833, "22A"], +[-37.79872395, 175.3226141667, "44A"], +[-37.7986689833, 175.3221386, "10A"], +[-37.7987780833, 175.3219418333, "10"], +[-37.7986830667, 175.32104705, "11A"], +[-37.7984310667, 175.3214393833, "13"], +[-37.79827905, 175.3213781333, "15"], +[-37.7986012167, 175.3214963667, "11"], +[-37.7985208167, 175.3210363667, "13A"], +[-37.7984756167, 175.3218156333, "14"], +[-37.7986224667, 175.3218786, "12"], +[-37.7983006333, 175.3217361833, "16"], +[-37.7981477833, 175.3212951833, "17"], +[-37.7981627667, 175.3216983167, "18"], +[-37.7979951, 175.3212467833, "19"], +[-37.7995674167, 175.3218331, "1"], +[-37.79789865, 175.3218346833, "20A"], +[-37.79799415, 175.3215721333, "20"], +[-37.7978514833, 175.3211795167, "21"], +[-37.7977069167, 175.3211219833, "23"], +[-37.79764315, 175.32148265, "24"], +[-37.7975830833, 175.3210882, "25"], +[-37.7975118167, 175.32189995, "26"], +[-37.7971090667, 175.32127, "31A"], +[-37.7973651667, 175.3213193333, "31"], +[-37.7977855833, 175.3224545333, "32"], +[-37.79732165, 175.32153415, "33"], +[-37.7979438667, 175.3225101167, "34"], +[-37.7972570667, 175.3217797667, "35"], +[-37.7981052167, 175.3225634167, "36"], +[-37.7972053, 175.3220591833, "37A"], +[-37.7982501833, 175.3226254, "38"], +[-37.7984039833, 175.3227024167, "40"], +[-37.7985712167, 175.3227702, "42"], +[-37.7987132333, 175.3228706333, "44"], +[-37.7988734667, 175.3229413833, "46"], +[-37.7971462167, 175.32222235, "39"], +[-37.7972326167, 175.3219224333, "37B"], +[-37.7968895833, 175.3223876667, "41A"], +[-37.7968215167, 175.32278565, "41B"], +[-37.7970311167, 175.3225026833, "43"], +[-37.7971907333, 175.3226264167, "45"], +[-37.797371, 175.3226954333, "47"], +[-37.7992327333, 175.3217359667, "3"], +[-37.7990295667, 175.3230049833, "48"], +[-37.7992089167, 175.32307945, "50"], +[-37.7982315333, 175.32302975, "57"], +[-37.79838195, 175.3230837833, "59"], +[-37.7985448667, 175.3231618667, "61"], +[-37.7986965167, 175.3232213333, "63"], +[-37.79754665, 175.3227747833, "49"], +[-37.79770885, 175.3228228833, "51"], +[-37.7978875167, 175.3229058833, "53"], +[-37.7992526667, 175.3221246, "4"], +[-37.7990720333, 175.3216695167, "5"], +[-37.7990684, 175.32336315, "67"], +[-37.7991014167, 175.3220717667, "6"], +[-37.7989104167, 175.32160605, "7"], +[-37.7988134333, 175.3223543833, "8A"], +[-37.79893325, 175.3220078167, "8"], +[-37.7987782667, 175.3215587667, "9"], +[-37.7981672167, 175.3210607667, "17A"], +[-37.7988700333, 175.3232893667, "65"], +[-37.7987142167, 175.3236106333, "65A"], +[-37.79739085, 175.3210754333, "27"], +[-37.79742045, 175.32230785, "28"], +[-37.7994294333, 175.3221720333, "2"], +[-37.7976228833, 175.3223954333, "30"], +[-37.79724255, 175.3210444333, "29"], +[-37.7489843167, 175.2696169833, "54"], +[-37.7515889667, 175.2701452333, "17"], +[-37.7513434, 175.2700576333, "21"], +[-37.75082465, 175.2698525333, "27"], +[-37.7485526833, 175.26866465, "55A"], +[-37.7485015667, 175.2689379, "55"], +[-37.7530412667, 175.2714824833, "2/2"], +[-37.7499467833, 175.2704321333, "44C"], +[-37.7494013167, 175.2699552167, "46A"], +[-37.7497481167, 175.2703879833, "44B"], +[-37.7494536333, 175.2689784833, "43A"], +[-37.7492939333, 175.2689135667, "45A"], +[-37.7491550333, 175.2688675167, "47A"], +[-37.7490141833, 175.2687962833, "49A"], +[-37.7498676, 175.2701742167, "44A"], +[-37.7531479333, 175.2713219833, "1/2"], +[-37.7520969333, 175.2712608667, "14A"], +[-37.7522456, 175.2710053667, "12"], +[-37.7518804, 175.2702757833, "13"], +[-37.7521056, 175.2709435167, "14"], +[-37.7517647333, 175.2702112167, "15A"], +[-37.75172185, 175.2701927167, "15"], +[-37.7519856, 175.2708888667, "16"], +[-37.7518504167, 175.2708217833, "18"], +[-37.7518705667, 175.2712470167, "16B"], +[-37.7532310333, 175.2709518833, "1"], +[-37.75144785, 175.2700896167, "19"], +[-37.7511633667, 175.2699749833, "23"], +[-37.7510157667, 175.2699262167, "25"], +[-37.75346585, 175.2714268833, "2A"], +[-37.7532961833, 175.2713919667, "2B"], +[-37.75306155, 175.2707940833, "3"], +[-37.7505509333, 175.2702711667, "36"], +[-37.7504014833, 175.2701401, "38"], +[-37.7498632333, 175.2694784, "37"], +[-37.7499925667, 175.26951635, "35"], +[-37.7496834, 175.2693855333, "39"], +[-37.7529250167, 175.27153385, "4A"], +[-37.7528869833, 175.27170725, "4B"], +[-37.75295395, 175.2712721333, "4"], +[-37.75027275, 175.2703517333, "40"], +[-37.7495354667, 175.2693331833, "41"], +[-37.7502064167, 175.2700855167, "42"], +[-37.74942745, 175.2693072833, "43"], +[-37.7498896833, 175.2699519, "44"], +[-37.7492883833, 175.2692428833, "45"], +[-37.7495502667, 175.2698340667, "46"], +[-37.7491414833, 175.2691847833, "47"], +[-37.7493097667, 175.2701395333, "48"], +[-37.7489942, 175.2691269833, "49"], +[-37.7488432833, 175.26954455, "56"], +[-37.74834955, 175.2689240833, "57"], +[-37.7485858667, 175.2694643, "58"], +[-37.74824135, 175.26955085, "62"], +[-37.74804445, 175.2691819833, "64"], +[-37.7481959667, 175.2692393833, "64A"], +[-37.7527850333, 175.2712030167, "6"], +[-37.7488422167, 175.2690683167, "51"], +[-37.7489330667, 175.2687795, "51B"], +[-37.7493055667, 175.269746, "50"], +[-37.74986905, 175.2691420167, "37A"], +[-37.7513789667, 175.26969985, "21A"], +[-37.7492379667, 175.2701728667, "50A"], +[-37.7527103667, 175.2715459833, "6A"], +[-37.7486801833, 175.2690067167, "53"], +[-37.7487201333, 175.2687111333, "53A"], +[-37.7491187, 175.2696622333, "52"], +[-37.8050964167, 175.32275315, "17"], +[-37.8052145, 175.3228801, "15"], +[-37.8050292667, 175.3231504, "4"], +[-37.8052509167, 175.3239425667, "3"], +[-37.8054085, 175.3235920333, "7"], +[-37.80533935, 175.3237706, "5"], +[-37.8049820667, 175.32250265, "19A"], +[-37.8049438833, 175.32261445, "21"], +[-37.8046553833, 175.32252535, "23"], +[-37.804767, 175.32279545, "25"], +[-37.8049184833, 175.3230213333, "6"], +[-37.8045557833, 175.3229606333, "8A"], +[-37.80473365, 175.3230122833, "8"], +[-37.8054356833, 175.3233072, "11"], +[-37.8053362833, 175.3230353833, "13"], +[-37.8050578, 175.32255065, "19"], +[-37.8050723, 175.3236554, "1"], +[-37.80513455, 175.3235072667, "2"], +[-37.8055341167, 175.3235093, "9"], +[-37.7522257333, 175.2578563333, "64"], +[-37.7523082167, 175.2575586833, "66"], +[-37.7530307667, 175.2586785667, "57"], +[-37.7526432, 175.2590323667, "58"], +[-37.7559149833, 175.2633839, "5"], +[-37.7564323333, 175.2632868, "1A"], +[-37.7560391667, 175.2635121833, "1"], +[-37.7557592, 175.2632935833, "7A"], +[-37.7559427667, 175.2631211667, "7B"], +[-37.7553025167, 175.26268725, "15"], +[-37.7537387833, 175.25927495, "43A"], +[-37.7543669333, 175.261604, "21"], +[-37.7542603167, 175.26148395, "23"], +[-37.7544224167, 175.2610968167, "25A"], +[-37.7549898167, 175.2615663333, "17A"], +[-37.7547558, 175.26208015, "17"], +[-37.7546425333, 175.2619685833, "19A"], +[-37.75451525, 175.2617511333, "19B"], +[-37.7547457667, 175.2616056667, "19"], +[-37.7537889667, 175.2597247667, "37"], +[-37.7541009833, 175.2611885333, "27"], +[-37.7544107, 175.2612535, "25"], +[-37.7540680833, 175.2607291, "29A"], +[-37.75400275, 175.2609679333, "29"], +[-37.7537950667, 175.2604864333, "31A"], +[-37.7538994, 175.2605904333, "31B"], +[-37.75380535, 175.2603383167, "31C"], +[-37.7539361333, 175.2604797833, "31"], +[-37.7540365167, 175.25985475, "33A"], +[-37.75426565, 175.2604489833, "33B"], +[-37.7539459333, 175.2601043667, "33"], +[-37.7538626667, 175.2599304167, "35"], +[-37.7535470833, 175.2601828333, "39"], +[-37.75335, 175.25977265, "41A"], +[-37.7534368167, 175.2599466167, "41"], +[-37.7536411833, 175.25948465, "43"], +[-37.7532373667, 175.2595119833, "45A"], +[-37.75353235, 175.2594177667, "45"], +[-37.7531749667, 175.2593182833, "47"], +[-37.7529734, 175.2597740333, "50"], +[-37.7527949167, 175.259339, "52"], +[-37.75299055, 175.25896625, "55"], +[-37.7524039333, 175.2585402333, "60"], +[-37.7527181667, 175.2571703167, "59"], +[-37.7527651333, 175.2569160667, "61"], +[-37.7523077833, 175.2581976, "62"], +[-37.7530192333, 175.2569268333, "63A"], +[-37.7528646667, 175.2566210667, "63"], +[-37.7529234667, 175.2563916333, "67"], +[-37.7522169167, 175.2572981333, "68"], +[-37.7524034, 175.2571436667, "70"], +[-37.7524361833, 175.25693495, "72"], +[-37.7522173167, 175.2567947333, "74"], +[-37.7525195, 175.2566192167, "76"], +[-37.7525692833, 175.25638255, "78"], +[-37.7526133833, 175.2561674333, "80"], +[-37.75544975, 175.2628283333, "11"], +[-37.7555993333, 175.2630539, "9A"], +[-37.7556443667, 175.2631159667, "9"], +[-37.7530728667, 175.2591067333, "49A"], +[-37.75322555, 175.2589706167, "49"], +[-37.8268326, 175.2881478167, "60"], +[-37.82606675, 175.2927039833, "1"], +[-37.8279240667, 175.2891037167, "69"], +[-37.8259043167, 175.28991945, "32"], +[-37.8255432667, 175.2922877167, "8"], +[-37.8255237667, 175.29103175, "16"], +[-37.8259941333, 175.2908627167, "17"], +[-37.82560195, 175.2908436333, "20"], +[-37.8260872333, 175.2906359667, "19"], +[-37.8263184333, 175.2897568667, "31"], +[-37.8265502667, 175.2887748667, "52"], +[-37.8278888, 175.2893288667, "67"], +[-37.8273077667, 175.28859875, "66"], +[-37.82582065, 175.2919513833, "9"], +[-37.8257359333, 175.2914603, "13"], +[-37.8258952167, 175.29217055, "7"], +[-37.8274628333, 175.2885495333, "68"], +[-37.8276281333, 175.2886001333, "70"], +[-37.8262140667, 175.2889543833, "48"], +[-37.82656905, 175.2899153833, "29"], +[-37.82562525, 175.2900425333, "28"], +[-37.8256349667, 175.2898832, "30"], +[-37.8269015833, 175.28922435, "47"], +[-37.8255088333, 175.2902400833, "28A"], +[-37.8258988, 175.2888333667, "44"], +[-37.8259916333, 175.2887470333, "46"], +[-37.8270517, 175.2901675167, "43"], +[-37.8266791667, 175.28921865, "39"], +[-37.82593805, 175.2897360167, "34"], +[-37.8263600333, 175.2895369667, "35"], +[-37.8260785333, 175.2890983167, "42"], +[-37.8256027, 175.2924785667, "4"], +[-37.82596655, 175.29235785, "5"], +[-37.8265987667, 175.2896733667, "33"], +[-37.8254671833, 175.2920686333, "10"], +[-37.82576435, 175.2917532167, "11"], +[-37.8254277333, 175.29124895, "14"], +[-37.8261486833, 175.2904461667, "21"], +[-37.82551765, 175.29047525, "22A"], +[-37.82568875, 175.2906085833, "22"], +[-37.8262222833, 175.2902034167, "23"], +[-37.8257735833, 175.2903937667, "24"], +[-37.8262839167, 175.2899905667, "25"], +[-37.8260353167, 175.2892618, "40"], +[-37.8268800333, 175.2897660833, "41"], +[-37.8266026167, 175.2884430833, "54"], +[-37.8267753333, 175.2887540667, "56"], +[-37.8269912, 175.2897215, "45"], +[-37.8270987167, 175.28919675, "49"], +[-37.8272723667, 175.2890986167, "51"], +[-37.8274607167, 175.28896155, "53"], +[-37.82696265, 175.2887800333, "58"], +[-37.8270187333, 175.2883724833, "62"], +[-37.8271662, 175.2886934, "64"], +[-37.8275981, 175.28931395, "55"], +[-37.8274009167, 175.2894595833, "57"], +[-37.82727135, 175.2896133, "59"], +[-37.8274417333, 175.2898639, "61A"], +[-37.8274353167, 175.28970455, "61"], +[-37.8275919, 175.2897549, "63"], +[-37.8278328167, 175.28953695, "65A"], +[-37.8277367333, 175.2896783667, "65"], +[-37.8279566667, 175.2889033667, "71"], +[-37.8257040167, 175.2926935667, "2"], +[-37.8260211833, 175.2925492833, "3"], +[-37.8265580667, 175.2900452333, "27"], +[-37.82646955, 175.2892891167, "37"], +[-37.82689455, 175.2884339, "60A"], +[-37.82597185, 175.2894695833, "38"], +[-37.825837, 175.2901764667, "26"], +[-37.8256423833, 175.2894571667, "36"], +[-37.8279783167, 175.2887027333, "96"], +[-37.8273570667, 175.2879946833, "78"], +[-37.8273550667, 175.2878178667, "80"], +[-37.8277413167, 175.2882009333, "72"], +[-37.8274305667, 175.2882008667, "76"], +[-37.8275177667, 175.2877962333, "82"], +[-37.8276886, 175.2877909333, "84"], +[-37.8278448667, 175.2878514833, "86"], +[-37.82797485, 175.2880158667, "88"], +[-37.8281346833, 175.2880100333, "90"], +[-37.8280295333, 175.2882356333, "92"], +[-37.8280049333, 175.28847165, "94"], +[-37.8020355667, 175.26761445, "9"], +[-37.8018938333, 175.2669804333, "11"], +[-37.8013752333, 175.2666172667, "18"], +[-37.8018859833, 175.2663685, "19"], +[-37.80201625, 175.2665418, "15"], +[-37.80144005, 175.2668591, "14"], +[-37.8012116333, 175.26650835, "16A"], +[-37.80144735, 175.2676908167, "8"], +[-37.8023889833, 175.2678027, "7"], +[-37.8020534667, 175.2678825, "5"], +[-37.8017917833, 175.2680642, "4"], +[-37.80206935, 175.2680979333, "3"], +[-37.8014274833, 175.2670581, "12A"], +[-37.8012149, 175.2669713667, "12"], +[-37.80201475, 175.2667361833, "13"], +[-37.8017205833, 175.2675833833, "10"], +[-37.8011871, 175.26670425, "16"], +[-37.8019978333, 175.2663503833, "17"], +[-37.8015703167, 175.2667343, "20"], +[-37.8017780667, 175.2666087167, "21A"], +[-37.8019283833, 175.26659485, "21B"], +[-37.8016743167, 175.2667633, "23"], +[-37.8017770833, 175.26784205, "6"], +[-37.8173234667, 175.3283030667, "41"], +[-37.8159853833, 175.33053085, "22"], +[-37.8168759167, 175.3310011167, "14"], +[-37.8168209, 175.3317526333, "10"], +[-37.8167990667, 175.3323976667, "8"], +[-37.8172123333, 175.3327398333, "5"], +[-37.8140840667, 175.3248786, "72A"], +[-37.8148024333, 175.3254637, "72B"], +[-37.8148557167, 175.3251695, "73B"], +[-37.81589955, 175.3266471333, "57"], +[-37.81562125, 175.3269136167, "58"], +[-37.8154001667, 175.3264769667, "66"], +[-37.81559635, 175.3261241, "69"], +[-37.81533175, 175.3257728833, "73A"], +[-37.8173433, 175.3300823, "27"], +[-37.8173927833, 175.3297259, "31"], +[-37.8174284833, 175.3290078667, "33"], +[-37.81696935, 175.3294343333, "36"], +[-37.8174493833, 175.3279879667, "49A"], +[-37.8177062333, 175.3282280167, "49B"], +[-37.8170708667, 175.3278473833, "49C"], +[-37.8165363167, 175.3276623167, "55A"], +[-37.8165708333, 175.3269935333, "55B"], +[-37.8157390333, 175.32789215, "56"], +[-37.8187178833, 175.3306943167, "25B"], +[-37.8183929333, 175.3302935, "25C"], +[-37.8179474333, 175.33065155, "25A"], +[-37.8187114333, 175.3294644833, "25D"], +[-37.8173066, 175.33088585, "15-23"], +[-37.8172928333, 175.3313437333, "13"], +[-37.81597825, 175.3313495667, "22A"], +[-37.8172865, 175.3319044667, "11"], +[-37.7600073333, 175.3069413, "8"], +[-37.75956845, 175.3071731333, "9"], +[-37.7593431667, 175.3073738833, "7"], +[-37.7599498667, 175.3071376667, "10"], +[-37.7596618, 175.30731675, "11"], +[-37.7599283167, 175.3073224167, "12"], +[-37.7598037167, 175.3074493333, "13"], +[-37.759947, 175.3075245167, "15"], +[-37.7594459, 175.3069578333, "3"], +[-37.75962605, 175.3068553333, "4"], +[-37.7592206, 175.3072783, "5"], +[-37.7597637167, 175.3070645, "6"], +[-37.7379981833, 175.2364994833, "22"], +[-37.7360032333, 175.2341041667, "2"], +[-37.7366147333, 175.2348383833, "6"], +[-37.7367316833, 175.2349598833, "8"], +[-37.7373094667, 175.2353793667, "12"], +[-37.7374594333, 175.2355072, "14"], +[-37.7362297833, 175.2355422167, "13"], +[-37.73633435, 175.2355915, "15"], +[-37.7365582833, 175.2353159333, "17"], +[-37.7375938167, 175.2355990833, "16"], +[-37.7361321333, 175.2348838333, "7"], +[-37.7357786333, 175.2344198333, "1"], +[-37.73739725, 175.2359612167, "29"], +[-37.7358505333, 175.2345252667, "3"], +[-37.7364678, 175.2347325667, "4"], +[-37.7368714667, 175.2350874167, "10"], +[-37.7363779667, 175.2351445167, "11"], +[-37.7377679667, 175.2356703833, "18"], +[-37.7366868833, 175.2354187667, "19"], +[-37.73793675, 175.23698495, "26"], +[-37.7379649333, 175.2367341833, "24"], +[-37.7379143833, 175.23722865, "28"], +[-37.7365750667, 175.2357836667, "21"], +[-37.73667295, 175.2358525667, "23"], +[-37.7368775833, 175.2355498833, "25"], +[-37.7378451667, 175.23763375, "32"], +[-37.73768535, 175.2362988833, "33"], +[-37.7376770667, 175.23650595, "35"], +[-37.7376555167, 175.2367130833, "37"], +[-37.7374068333, 175.2368078167, "39"], +[-37.7376332, 175.2369566667, "41"], +[-37.7376051667, 175.2371931333, "43"], +[-37.7375471, 175.2374311833, "45"], +[-37.73624155, 175.2350268333, "9"], +[-37.7375358667, 175.2360517333, "31"], +[-37.7378931667, 175.2374322667, "30"], +[-37.8203763333, 175.2954956, "38A"], +[-37.82060075, 175.2954337333, "38B"], +[-37.82001315, 175.2963552833, "33A"], +[-37.8186177667, 175.2936871333, "10"], +[-37.8189515167, 175.2941258, "16"], +[-37.8203669333, 175.2966730333, "39"], +[-37.8207963333, 175.2960510333, "54"], +[-37.8210744667, 175.2983872333, "53"], +[-37.8213094, 175.2980931, "76"], +[-37.8184500667, 175.2941667333, "11"], +[-37.8187305, 175.2938235, "12"], +[-37.8185690167, 175.2943093667, "13"], +[-37.8188374667, 175.2939743833, "14"], +[-37.8186846333, 175.29445905, "15"], +[-37.8188893167, 175.2947359, "17"], +[-37.8191626333, 175.2944134833, "18"], +[-37.8194815, 175.294798, "20"], +[-37.8178948833, 175.29341605, "1"], +[-37.8198578167, 175.2949694333, "24"], +[-37.818019, 175.293575, "3"], +[-37.8182715667, 175.2932328, "4"], +[-37.81838525, 175.2933937833, "6"], +[-37.8185016, 175.29354225, "8"], +[-37.8198101167, 175.2959147333, "29"], +[-37.8201252333, 175.2951844333, "30"], +[-37.8199347833, 175.2960896667, "31"], +[-37.8200420667, 175.2962173667, "33"], +[-37.8200297333, 175.2951375667, "28"], +[-37.8199751667, 175.295494, "32"], +[-37.8202464, 175.29535195, "34"], +[-37.8196956833, 175.2950852333, "22"], +[-37.8198329667, 175.29527505, "26"], +[-37.8201066833, 175.2956729833, "36"], +[-37.8202174833, 175.2966934667, "37A"], +[-37.8201719167, 175.2963661833, "35"], +[-37.8202547, 175.2964783667, "37"], +[-37.8202486667, 175.29583745, "40"], +[-37.8204236, 175.2969294167, "41"], +[-37.82036385, 175.29598425, "42"], +[-37.8204630667, 175.2971108667, "43"], +[-37.8204679833, 175.2961352833, "44"], +[-37.8207113833, 175.29591825, "46"], +[-37.82083515, 175.2957619667, "48"], +[-37.820496, 175.29731375, "45"], +[-37.8205589667, 175.2975334833, "47"], +[-37.8209274667, 175.2957808833, "50"], +[-37.8209389333, 175.2958933167, "52"], +[-37.82063405, 175.29633535, "56"], +[-37.8207112333, 175.2965386833, "58"], +[-37.82109365, 175.2964317833, "60"], +[-37.82074165, 175.2967300333, "62"], +[-37.8208499667, 175.2971776833, "66"], +[-37.8208882, 175.2974121, "68"], +[-37.8209681, 175.298264, "51"], +[-37.8212103833, 175.2979358, "74"], +[-37.8210963, 175.2977920667, "72"], +[-37.8209764167, 175.2976249667, "70"], +[-37.7425912833, 175.2775859833, "5"], +[-37.7429025, 175.2778211, "4"], +[-37.7427981, 175.2775408, "3"], +[-37.7425533167, 175.2778729667, "9"], +[-37.7426462, 175.2780317333, "8"], +[-37.7425104167, 175.27773325, "7"], +[-37.7427491333, 175.2779314167, "6"], +[-37.7645019, 175.3039743167, "4"], +[-37.7646821, 175.3040523833, "4A"], +[-37.7643365333, 175.30451805, "10"], +[-37.7640237667, 175.30457705, "11"], +[-37.7639748667, 175.3047486833, "13"], +[-37.76423415, 175.3048969, "14"], +[-37.7639188167, 175.3049323333, "15"], +[-37.76428825, 175.3047113333, "12"], +[-37.7642352333, 175.3038668667, "3"], +[-37.76417815, 175.3040361667, "5"], +[-37.7644361333, 175.3041665667, "6"], +[-37.7641262667, 175.3042122667, "7"], +[-37.7640775167, 175.3044, "9"], +[-37.7643896833, 175.3043447167, "8"], +[-37.7636703333, 175.3058163667, "21"], +[-37.7642010667, 175.30507385, "16"], +[-37.7641306667, 175.3052497667, "18"], +[-37.7638599667, 175.3051107167, "17"], +[-37.7640844, 175.3054199167, "20"], +[-37.7640386167, 175.3055880667, "22"], +[-37.7639757167, 175.3057795833, "24"], +[-37.7639281667, 175.3059586667, "26"], +[-37.7638698667, 175.3061203, "28"], +[-37.76362015, 175.3059873833, "29"], +[-37.7643209333, 175.3036898333, "1"], +[-37.79094265, 175.2394803333, "2"], +[-37.7914069333, 175.2387580167, "10B"], +[-37.7913561, 175.2389534167, "10"], +[-37.7914875333, 175.2390605667, "11"], +[-37.79152445, 175.2388451167, "12"], +[-37.7911241833, 175.23966475, "1"], +[-37.7914623, 175.2397645667, "3B"], +[-37.7912838167, 175.2395444167, "3"], +[-37.7910132333, 175.23930775, "4"], +[-37.7913675833, 175.23939835, "5"], +[-37.79107785, 175.2391953833, "6"], +[-37.79158215, 175.23939005, "7"], +[-37.7909559167, 175.2389937167, "8A"], +[-37.7911608, 175.2389203167, "8"], +[-37.79150305, 175.2392248333, "9"], +[-37.7890198167, 175.2333274167, "10"], +[-37.789245, 175.23382055, "11"], +[-37.789088, 175.2335887333, "12"], +[-37.78878915, 175.2338384, "4"], +[-37.7892405, 175.23404255, "5"], +[-37.7887942833, 175.233584, "6"], +[-37.7895214167, 175.2339543833, "7"], +[-37.78891585, 175.2335647333, "8"], +[-37.7895024, 175.2338010667, "9"], +[-37.7890989167, 175.2341444833, "3"], +[-37.7886501333, 175.2339962333, "2"], +[-37.7723091, 175.259219, "41"], +[-37.7711568333, 175.2594624833, "38B"], +[-37.7712906833, 175.2595291, "38"], +[-37.77790685, 175.2518765, "136A"], +[-37.7777060167, 175.2517051167, "136"], +[-37.7774644, 175.25204035, "132A"], +[-37.7778402833, 175.2524728333, "121A"], +[-37.7779691667, 175.2526373833, "121"], +[-37.7776933833, 175.2526526833, "119A"], +[-37.7768064833, 175.2528403667, "124B"], +[-37.7778092, 175.2527326, "119B"], +[-37.7696854333, 175.2611141167, "20A"], +[-37.7710417667, 175.2606462833, "21A"], +[-37.76970225, 175.2619700167, "9"], +[-37.7724692667, 175.25918745, "41A"], +[-37.7706895833, 175.2610215833, "17A"], +[-37.7698455833, 175.2611943167, "20"], +[-37.7725913333, 175.2586584833, "45"], +[-37.77012245, 175.2613465167, "11"], +[-37.77202505, 175.2589359167, "44"], +[-37.77271255, 175.258441, "47"], +[-37.7721224667, 175.2587366833, "46"], +[-37.7770735167, 175.2534105167, "111"], +[-37.7771486, 175.2533179833, "113"], +[-37.7775165667, 175.25237015, "130A"], +[-37.7773877833, 175.2525244167, "128"], +[-37.77779305, 175.2520440833, "134A"], +[-37.77759845, 175.2519091333, "134"], +[-37.7769614667, 175.2535489833, "109"], +[-37.7767293833, 175.2532653333, "120"], +[-37.7766347, 175.2533539167, "118"], +[-37.77657045, 175.2530100833, "120A"], +[-37.7779645, 175.2523339333, "123"], +[-37.7784492167, 175.2517647167, "127"], +[-37.7783613, 175.2518706667, "125"], +[-37.7763609167, 175.25342585, "114"], +[-37.7724123667, 175.2589238667, "43"], +[-37.7775522167, 175.2528218, "117"], +[-37.7772419167, 175.2532023667, "115"], +[-37.7765507667, 175.253488, "116"], +[-37.7764063, 175.2540904167, "105"], +[-37.7761512333, 175.2534407167, "108A"], +[-37.7760291, 175.2535597667, "108B"], +[-37.77609865, 175.2538698, "108"], +[-37.7762746, 175.2537391, "110"], +[-37.77642775, 175.2536150333, "112"], +[-37.7760625, 175.2544386667, "101"], +[-37.77618755, 175.2543737, "103"], +[-37.7758398667, 175.25410695, "104"], +[-37.7759843, 175.2539725, "106"], +[-37.77535925, 175.2544866167, "100"], +[-37.7755251667, 175.25436565, "102"], +[-37.7748532333, 175.2548894833, "92"], +[-37.7749508167, 175.2548104, "94"], +[-37.7773962833, 175.2521132667, "130"], +[-37.7776416, 175.2522091667, "132"], +[-37.7768241333, 175.2531569167, "122"], +[-37.7769552, 175.25298295, "124"], +[-37.77707955, 175.25281475, "126"], +[-37.7786507667, 175.2515862, "131"], +[-37.77800585, 175.2517163333, "138"], +[-37.7781434333, 175.2515933667, "140"], +[-37.7782582333, 175.2514051333, "142"], +[-37.7783729333, 175.2512036833, "144"], +[-37.7785084, 175.2510526333, "146A"], +[-37.7785640167, 175.2506793333, "148A"], +[-37.7786446333, 175.2509062, "148B"], +[-37.7787766167, 175.2507432, "150"], +[-37.7788192833, 175.2503608667, "152A"], +[-37.7788951667, 175.2505833833, "152"], +[-37.7790879, 175.2504805667, "154"], +[-37.7758833833, 175.2545336833, "99"], +[-37.7754312667, 175.25492595, "91"], +[-37.7755178333, 175.2548531, "93"], +[-37.7756481167, 175.2547453, "95"], +[-37.7757751333, 175.25466445, "97"], +[-37.7751653, 175.2546291667, "98A"], +[-37.7752585833, 175.25457605, "98B"], +[-37.7750557, 175.2546987667, "96"], +[-37.7695026833, 175.2617108167, "10"], +[-37.7703639, 175.2613784667, "13A"], +[-37.7702837833, 175.2611883833, "13"], +[-37.7704300167, 175.2609723333, "15A"], +[-37.7706187667, 175.26109605, "15B"], +[-37.76960805, 175.2615635667, "12"], +[-37.7691846667, 175.2610306833, "14A"], +[-37.7693794667, 175.2612273833, "14"], +[-37.7694483333, 175.261138, "16A"], +[-37.77055745, 175.26078605, "17"], +[-37.7697438667, 175.26134605, "18"], +[-37.7708074667, 175.2607958167, "19A"], +[-37.77072055, 175.2605454, "19"], +[-37.7691423833, 175.2609024833, "16"], +[-37.77090135, 175.2603649167, "21"], +[-37.7699733833, 175.26102695, "22"], +[-37.7712509333, 175.2606847, "23"], +[-37.7714176, 175.2605001333, "25"], +[-37.7711346833, 175.26019635, "27"], +[-37.7713172333, 175.26005685, "29"], +[-37.7699648833, 175.2606142167, "24A"], +[-37.7700786167, 175.2608320833, "24"], +[-37.7700890333, 175.2604282167, "26B"], +[-37.7702049667, 175.2606459667, "26"], +[-37.7703193167, 175.2604642167, "28"], +[-37.7714986833, 175.2599348, "31"], +[-37.7707617667, 175.2598755167, "32"], +[-37.7709504333, 175.2598027667, "34"], +[-37.7716745, 175.2597903, "35"], +[-37.7710391167, 175.2594642333, "36A"], +[-37.7711038167, 175.2596890667, "36"], +[-37.7704072167, 175.2603195667, "30"], +[-37.77148785, 175.2594603333, "40"], +[-37.77343815, 175.25706205, "59"], +[-37.77355295, 175.2568247667, "61"], +[-37.7739776, 175.2570313833, "63"], +[-37.7741753, 175.25702285, "65"], +[-37.7730887667, 175.2577104, "51"], +[-37.7732155, 175.2574940833, "53"], +[-37.7733534167, 175.2572134833, "55"], +[-37.7726282, 175.2578157333, "56"], +[-37.7735298, 175.25731545, "57"], +[-37.7727366667, 175.2576125833, "58"], +[-37.7728313333, 175.25742475, "60"], +[-37.7728585667, 175.25707895, "62A"], +[-37.77293395, 175.2572452667, "62"], +[-37.773038, 175.2570561667, "64"], +[-37.7723343667, 175.2583275167, "50"], +[-37.7724382, 175.2581240833, "52"], +[-37.7725326, 175.2579754, "54"], +[-37.77405315, 175.2560229833, "77"], +[-37.77398415, 175.2555787, "78"], +[-37.7731484667, 175.25687805, "66"], +[-37.7740380167, 175.2568951833, "67"], +[-37.7732309833, 175.2567028833, "68"], +[-37.77387305, 175.2566871833, "69A"], +[-37.7740279333, 175.25652305, "69B"], +[-37.7737527333, 175.25646925, "69"], +[-37.7733277167, 175.2565217667, "70"], +[-37.7734305833, 175.25635605, "72"], +[-37.7738772167, 175.2562662333, "73"], +[-37.7735563, 175.256184, "74"], +[-37.7736784167, 175.25596435, "76"], +[-37.7690524667, 175.2614931, "6"], +[-37.77478105, 175.2558082333, "83"], +[-37.7748995667, 175.2553932667, "85"], +[-37.77445095, 175.2552173667, "84"], +[-37.7745598, 175.2551347167, "86"], +[-37.7746484167, 175.2550739, "88"], +[-37.7741488167, 175.2554629167, "80"], +[-37.77473465, 175.25499275, "90"], +[-37.7741513167, 175.2551507167, "82A"], +[-37.7742917333, 175.2553322333, "82"], +[-37.7691119667, 175.2614037167, "8"], +[-37.7751288667, 175.2552520833, "87"], +[-37.7749427167, 175.25447985, "96A"], +[-37.7727721, 175.2586962667, "45A"], +[-37.77833855, 175.2509136333, "146B"], +[-37.77193055, 175.25959205, "37"], +[-37.7721307833, 175.2594420333, "39"], +[-37.7786665333, 175.2505169667, "150A"], +[-37.7719227333, 175.25909545, "42"], +[-37.7730710833, 175.2580377333, "49"], +[-37.7722172833, 175.2585399167, "48"], +[-37.7724912333, 175.2590887, "43A"], +[-37.7693882333, 175.2618897333, "4"], +[-37.81766435, 175.2968189, "7"], +[-37.8174654333, 175.29754975, "10"], +[-37.81738535, 175.2971690833, "12"], +[-37.8174711333, 175.2966936167, "11"], +[-37.8173498167, 175.2964565833, "13"], +[-37.8172516333, 175.2971269667, "14"], +[-37.8173024333, 175.2961477833, "15"], +[-37.8172313, 175.2962056, "17"], +[-37.817225, 175.2969299667, "18"], +[-37.8172427833, 175.2964384, "19"], +[-37.8172506, 175.2967373333, "21"], +[-37.8180437833, 175.2971739167, "2"], +[-37.8179842833, 175.2968090667, "3"], +[-37.8178938833, 175.2971661, "4"], +[-37.81783865, 175.2968134833, "5"], +[-37.81757325, 175.2971746667, "8"], +[-37.8177382333, 175.2971613667, "6"], +[-37.817666, 175.29644695, "9"], +[-37.7278152, 175.2758333833, "3"], +[-37.7276340167, 175.2759157333, "5"], +[-37.72745715, 175.2758938833, "7"], +[-37.7272794833, 175.2759013667, "9"], +[-37.72715805, 175.2759478833, "11"], +[-37.7269944833, 175.2759849833, "13"], +[-37.7271718, 175.2762914667, "14"], +[-37.7273331167, 175.2762569, "12"], +[-37.7274811833, 175.27624855, "10"], +[-37.7276079667, 175.2762501833, "8"], +[-37.7277566167, 175.2762149333, "6"], +[-37.7278927167, 175.27617395, "4"], +[-37.72802255, 175.2761304167, "2"], +[-37.7264922667, 175.2763569333, "27"], +[-37.7270175667, 175.27632905, "16"], +[-37.7268825833, 175.2763863333, "18"], +[-37.7267146833, 175.2766059, "22"], +[-37.7268387833, 175.2760008167, "15"], +[-37.726714, 175.2760343167, "17"], +[-37.72671125, 175.2763126833, "24"], +[-37.7264453667, 175.2764776833, "29"], +[-37.7279490333, 175.2758005833, "1"], +[-37.81425435, 175.27492965, "11"], +[-37.8145803833, 175.2748775667, "15"], +[-37.8143738333, 175.2739824333, "1"], +[-37.8144534833, 175.27475875, "13"], +[-37.8143531667, 175.2741497833, "3"], +[-37.8145885, 175.274341, "4"], +[-37.8146179667, 175.2741450667, "2"], +[-37.8143274333, 175.27431685, "5"], +[-37.8142889667, 175.2744957, "7"], +[-37.8142574667, 175.2746909833, "9"], +[-37.7799849167, 175.2573850833, "3"], +[-37.7801216667, 175.2573436333, "1"], +[-37.7798067333, 175.2577325833, "5B"], +[-37.7790147833, 175.2578231833, "15"], +[-37.7794586833, 175.2578453667, "7A"], +[-37.77907935, 175.2572503667, "10"], +[-37.77922075, 175.2576793, "11"], +[-37.7798622, 175.2569903333, "4"], +[-37.77963115, 175.25752045, "5A"], +[-37.7797938333, 175.25747865, "5"], +[-37.7796397167, 175.2570401833, "6"], +[-37.77946505, 175.2575739, "7"], +[-37.7794532333, 175.2570942833, "8"], +[-37.7504978, 175.2747177667, "9A"], +[-37.75052955, 175.2748370167, "11"], +[-37.7510944333, 175.2744345833, "2"], +[-37.7508012333, 175.2742790167, "3"], +[-37.7513019833, 175.2747992167, "4A"], +[-37.7510570167, 175.27464985, "4"], +[-37.7504994667, 175.2743133, "5"], +[-37.7510422833, 175.2748588167, "6"], +[-37.75077235, 175.2745280333, "7"], +[-37.7507556333, 175.2746970333, "9"], +[-37.7509947333, 175.2752922333, "10"], +[-37.75097515, 175.2754813833, "12"], +[-37.7507500833, 175.27500105, "13"], +[-37.7509574333, 175.2756805167, "14"], +[-37.7507147333, 175.2752457667, "15A"], +[-37.7503900333, 175.2752007167, "15"], +[-37.7510558667, 175.2759444833, "16A"], +[-37.7510896167, 175.2761846667, "16B"], +[-37.7506880333, 175.2753896333, "17"], +[-37.7509012167, 175.27596855, "18"], +[-37.7505865, 175.27560345, "19"], +[-37.75074665, 175.2759304167, "20"], +[-37.75050285, 175.2757412667, "21"], +[-37.7504367833, 175.2760223667, "23"], +[-37.7506239833, 175.2758750167, "25"], +[-37.7510148833, 175.2750847167, "8"], +[-37.7783252167, 175.2269231, "1"], +[-37.7783292833, 175.2262410667, "10"], +[-37.77864925, 175.2263631, "11"], +[-37.7784259333, 175.22606415, "12"], +[-37.7787543167, 175.2261973667, "13"], +[-37.7785269333, 175.2258847, "14"], +[-37.7790431167, 175.2262389667, "15"], +[-37.7786624667, 175.2258181167, "16"], +[-37.7788252667, 175.22579605, "18"], +[-37.7789900333, 175.2257850167, "20"], +[-37.77914445, 175.22584705, "22"], +[-37.7793172167, 175.2258737333, "24"], +[-37.7791070167, 175.2260438, "26"], +[-37.7784270667, 175.2267596, "3"], +[-37.7780180833, 175.2268061333, "4"], +[-37.7781215, 175.2266189667, "6"], +[-37.7785344833, 175.2265803, "5"], +[-37.7787777, 175.2267598667, "7"], +[-37.7782238167, 175.2264258667, "8"], +[-37.7788737, 175.226613, "9"], +[-37.7936663667, 175.2669165167, "1"], +[-37.7935745167, 175.2667438667, "3"], +[-37.7596956667, 175.2749373833, "15"], +[-37.7599168333, 175.2746603833, "17"], +[-37.7595758333, 175.2746897833, "19"], +[-37.75925925, 175.27478745, "20"], +[-37.75938865, 175.2746525167, "21"], +[-37.7591848667, 175.2758038, "10"], +[-37.7595393167, 175.27540005, "11"], +[-37.7591962167, 175.2756130167, "12"], +[-37.75956925, 175.2752001167, "13"], +[-37.7592009167, 175.27539235, "14"], +[-37.75940315, 175.27641075, "2"], +[-37.7597308333, 175.2762638, "3"], +[-37.7591049167, 175.2764117167, "4"], +[-37.75960505, 175.2760131, "5"], +[-37.7592890333, 175.2761917833, "6"], +[-37.7595682, 175.2758145, "7"], +[-37.7592186333, 175.2760065333, "8"], +[-37.7595482, 175.2756214, "9"], +[-37.7763761, 175.24281365, "2"], +[-37.7734731333, 175.2400769667, "34"], +[-37.7733752333, 175.2399822, "36"], +[-37.77481655, 175.2404856667, "23A"], +[-37.7738048667, 175.2395036333, "35"], +[-37.7737156667, 175.2394374833, "37"], +[-37.77324945, 175.2398695833, "38"], +[-37.7735061, 175.2396067167, "39"], +[-37.7734078667, 175.2395291333, "41"], +[-37.7756476833, 175.2425010667, "10B"], +[-37.7757443667, 175.2422252167, "10"], +[-37.77555965, 175.2415728667, "11"], +[-37.7756119, 175.24210345, "12"], +[-37.7754447667, 175.24146395, "13"], +[-37.7754723833, 175.2419790167, "18"], +[-37.7764593667, 175.2424361833, "1A"], +[-37.7765786167, 175.24225935, "1B"], +[-37.7765533667, 175.2425308167, "1"], +[-37.7753679, 175.2419017667, "20"], +[-37.7762638333, 175.2427148667, "2A"], +[-37.7750700333, 175.24002975, "25B"], +[-37.7751565667, 175.2398697833, "25C"], +[-37.7761868, 175.2429660667, "2B"], +[-37.7762883833, 175.2422982167, "3"], +[-37.7760140833, 175.24292055, "4A"], +[-37.77613045, 175.24260005, "4"], +[-37.7758793, 175.2423627167, "8"], +[-37.77574875, 175.2417461333, "7"], +[-37.7759122667, 175.2418953667, "5"], +[-37.7753284167, 175.2423952667, "14A"], +[-37.7753727667, 175.2421891833, "16"], +[-37.7754117667, 175.2423474333, "14"], +[-37.7748832667, 175.2408799167, "21A"], +[-37.7749979, 175.24078425, "21B"], +[-37.77469615, 175.2412156333, "22"], +[-37.7747135167, 175.2407327333, "23"], +[-37.77447135, 175.2410888, "26"], +[-37.7749360833, 175.2402517, "25"], +[-37.7742200833, 175.24163465, "24"], +[-37.77370445, 175.2398108667, "33"], +[-37.7745035667, 175.2405698833, "29"], +[-37.7745803333, 175.2406285167, "27"], +[-37.7759073667, 175.2416075833, "7A"], +[-37.7760029667, 175.2424782833, "6"], +[-37.8200747667, 175.3428930167, "95"], +[-37.82049, 175.3380864, "41"], +[-37.8175212, 175.3369706667, "31"], +[-37.8204494, 175.3436087167, "97"], +[-37.82163225, 175.3377416833, "42"], +[-37.82104185, 175.3382505167, "44"], +[-37.8210877333, 175.3401467167, "61"], +[-37.8213837833, 175.34110285, "67"], +[-37.8176011167, 175.3387284, "47"], +[-37.8186380833, 175.3413032667, "93"], +[-37.8213011333, 175.3390366, "50"], +[-37.8208625, 175.3375628333, "34"], +[-37.8216887167, 175.3403603167, "62"], +[-37.8207176333, 175.34067005, "65"], +[-37.8207876333, 175.3391862667, "47"], +[-37.82174275, 175.3406214, "64"], +[-37.821972, 175.3416226167, "74"], +[-37.8226381167, 175.3429845833, "80A"], +[-37.8223823, 175.3432849667, "80B"], +[-37.8217160333, 175.3428194667, "84"], +[-37.8211697833, 175.3434613833, "92"], +[-37.8209052167, 175.3437564667, "94"], +[-37.7818975667, 175.29585355, "6A"], +[-37.7816531833, 175.2955583333, "4"], +[-37.7813882, 175.2952999, "1"], +[-37.78159945, 175.2957642, "6"], +[-37.7810534167, 175.2968439, "19"], +[-37.7813191667, 175.2970249667, "18"], +[-37.78163195, 175.2965153333, "12A"], +[-37.7813853167, 175.2978051, "24A"], +[-37.78107745, 175.2967090833, "17"], +[-37.7819022333, 175.2954591167, "2B"], +[-37.7817335, 175.2961837333, "10B"], +[-37.78097755, 175.2971215833, "21"], +[-37.7812247333, 175.2974299833, "22A"], +[-37.7815276667, 175.2975391, "22B"], +[-37.7809268333, 175.2973250167, "23"], +[-37.7811833, 175.2976537667, "24"], +[-37.7808843833, 175.2975385167, "25"], +[-37.7811281833, 175.2978493, "26"], +[-37.7810765667, 175.2980695167, "28"], +[-37.7807934333, 175.29795885, "29"], +[-37.7817070167, 175.2953225167, "2A"], +[-37.7817530333, 175.295114, "2"], +[-37.7813544667, 175.2954451333, "3"], +[-37.7815632, 175.2959707, "8A"], +[-37.7818284167, 175.2960587667, "8B"], +[-37.78126395, 175.2958563833, "9"], +[-37.7813669, 175.2968060833, "16"], +[-37.7815125, 175.2961708833, "10A"], +[-37.78111735, 175.29649445, "15"], +[-37.78155285, 175.2971344333, "18A"], +[-37.7815459333, 175.2973241667, "20A"], +[-37.7812669833, 175.2972490167, "20"], +[-37.7812186667, 175.2960839, "11"], +[-37.7817011667, 175.2969259667, "16A"], +[-37.7814110667, 175.2965972667, "14"], +[-37.7814654, 175.2963801833, "12"], +[-37.7867036167, 175.3108311667, "1"], +[-37.7866262333, 175.3106218833, "1/3-3/3"], +[-37.78635675, 175.3108370333, "4"], +[-37.7864909667, 175.3104517, "5A"], +[-37.7863980667, 175.31065205, "6"], +[-37.7865456667, 175.3103923167, "5B"], +[-37.7866239167, 175.3102521167, "5D"], +[-37.78667955, 175.31033855, "5C"], +[-37.7347094333, 175.2204668667, "17"], +[-37.73511945, 175.22033755, "13"], +[-37.7348253833, 175.2201891, "15"], +[-37.7363502833, 175.2196078833, "2"], +[-37.7361836, 175.2200457833, "6"], +[-37.73627265, 175.2198217333, "4"], +[-37.7360915667, 175.2202803333, "8"], +[-37.7361283833, 175.2206858, "12"], +[-37.7360820333, 175.22047505, "10"], +[-37.7365479167, 175.2212399833, "14"], +[-37.7363051, 175.2220088, "18"], +[-37.7364189833, 175.22164715, "16"], +[-37.73600095, 175.2218038333, "20"], +[-37.7359614667, 175.2212147333, "22"], +[-37.7349207, 175.2209368167, "21"], +[-37.7357296333, 175.2216454167, "24"], +[-37.7355156667, 175.2214532333, "26"], +[-37.735279, 175.2211301, "23"], +[-37.7346127167, 175.2207702, "19"], +[-37.7359023333, 175.2196716667, "3"], +[-37.7357511167, 175.219877, "7"], +[-37.7350994333, 175.21949605, "11"], +[-37.7354380667, 175.2197064667, "9"], +[-37.7356264, 175.2194809667, "5"], +[-37.7360386333, 175.2193660333, "1"], +[-37.7158096833, 175.24027915, "115B"], +[-37.7175999833, 175.2441937667, "154"], +[-37.7209454167, 175.2396943333, "72"], +[-37.7099538167, 175.2592268167, "341"], +[-37.71147025, 175.25635605, "303"], +[-37.7167784, 175.2443211667, "155"], +[-37.7164949167, 175.2386716167, "107"], +[-37.7165771333, 175.2401365333, "115A"], +[-37.7170617, 175.24018945, "116"], +[-37.7172150167, 175.24204605, "132"], +[-37.7176747667, 175.2381338833, "96A"], +[-37.71687125, 175.2370895167, "90"], +[-37.7171325333, 175.233595, "60"], +[-37.7157679833, 175.2383592333, "99"], +[-37.7149657667, 175.2385031833, "97"], +[-37.7148254833, 175.2537147333, "263"], +[-37.7105929833, 175.2584446167, "388"], +[-37.7121630833, 175.2563726667, "296"], +[-37.7152139167, 175.23737745, "87C"], +[-37.7191197, 175.2287416667, "15A"], +[-37.7187909167, 175.2283633167, "15B"], +[-37.7187724333, 175.2293144167, "15C"], +[-37.7196365, 175.2287102, "2"], +[-37.7191127667, 175.2297839833, "34"], +[-37.7182297667, 175.2315044, "54"], +[-37.7169267667, 175.2379693, "96"], +[-37.7132667833, 175.2555730667, "284"], +[-37.71407975, 175.2549900167, "274"], +[-37.7138900833, 175.2544091833, "275"], +[-37.7174367333, 175.2496991, "209"], +[-37.7168129833, 175.2460377, "161"], +[-37.7166443833, 175.2522390833, "237"], +[-37.7166976, 175.2528156333, "240"], +[-37.7162578333, 175.2531461833, "244"], +[-37.7155527833, 175.2537028, "256"], +[-37.7179863667, 175.2475838667, "192"], +[-37.7127865167, 175.25588715, "288"], +[-37.71578015, 175.2376924, "87A"], +[-37.7162485667, 175.2376113167, "87B"], +[-37.7148821333, 175.2374996, "87D"], +[-37.71440265, 175.23746145, "87E"], +[-37.7116958167, 175.2536742833, "295"], +[-37.7176630667, 175.23740055, "94"], +[-37.7100993, 175.2584516833, "325"], +[-37.6995779, 175.2492207167, "4"], +[-37.699428, 175.24964995, "3"], +[-37.6995079333, 175.2501254333, "9"], +[-37.699863, 175.25005165, "10"], +[-37.6997751, 175.2494858167, "6"], +[-37.7464865833, 175.2434179, "26"], +[-37.7466480167, 175.2434308667, "24"], +[-37.7466341667, 175.24279165, "18"], +[-37.7464141167, 175.2420009, "6"], +[-37.7462405, 175.24305515, "9"], +[-37.74612285, 175.2419378, "2"], +[-37.74660855, 175.24318535, "22"], +[-37.74619745, 175.24327135, "11"], +[-37.7467918333, 175.2419765167, "10"], +[-37.74665, 175.2422480833, "12"], +[-37.7461551, 175.2434699333, "13"], +[-37.74668805, 175.2424389667, "14"], +[-37.7463198833, 175.2434258833, "15"], +[-37.7466761, 175.2426203167, "16"], +[-37.7460483, 175.2423272667, "1"], +[-37.7463063667, 175.2428403333, "7"], +[-37.7465308, 175.2420764167, "8"], +[-37.7466001167, 175.2429854667, "20"], +[-37.7462697667, 175.2419713, "4"], +[-37.7462081333, 175.2423691333, "3"], +[-37.7463267333, 175.2424455833, "5"], +[-37.7488779333, 175.2711621, "22"], +[-37.74861835, 175.2703709667, "12A"], +[-37.74860015, 175.27107225, "17"], +[-37.7482906, 175.270343, "8"], +[-37.7484192333, 175.270498, "10"], +[-37.7481835667, 175.2708137667, "11"], +[-37.7485723333, 175.2706325333, "12"], +[-37.7483163, 175.2709387, "13"], +[-37.7487627, 175.2706842667, "14"], +[-37.74845595, 175.2710148, "15"], +[-37.7488787333, 175.2706885333, "16"], +[-37.7490620333, 175.2708123, "18"], +[-37.7487487167, 175.27111955, "19"], +[-37.7491234, 175.2709936667, "20"], +[-37.7491733167, 175.27122825, "25"], +[-37.7490411, 175.2711556167, "23"], +[-37.7493343667, 175.2713353167, "27"], +[-37.7477617, 175.2709397833, "3"], +[-37.7479154667, 175.27051115, "5"], +[-37.7480062833, 175.2701149333, "4"], +[-37.7481438167, 175.2702016, "6"], +[-37.7480466333, 175.2706396167, "7"], +[-37.74801215, 175.2710236167, "9"], +[-37.7477674, 175.2703279833, "1"], +[-37.6984585, 175.2066286167, "49"], +[-37.7393085, 175.2658947167, "10"], +[-37.7389535667, 175.2658151333, "11"], +[-37.7391498333, 175.2659116333, "12"], +[-37.7394716833, 175.26504905, "2"], +[-37.7394171333, 175.2652338833, "4"], +[-37.73914405, 175.2651673167, "3"], +[-37.7390902667, 175.2653828667, "5"], +[-37.7393783, 175.2654269333, "6"], +[-37.7390299, 175.2655845333, "7"], +[-37.7388136167, 175.26568125, "9"], +[-37.7393591333, 175.2656570833, "8"], +[-37.81286555, 175.2951325667, "11"], +[-37.8126904333, 175.2948698667, "18"], +[-37.812208, 175.2951098667, "8A"], +[-37.8124912833, 175.2951825833, "8"], +[-37.8129948667, 175.2950753333, "13"], +[-37.8125658, 175.2950087167, "16"], +[-37.8122792167, 175.2948974167, "12"], +[-37.8123592333, 175.2948056, "14"], +[-37.8131113833, 175.2949887667, "15"], +[-37.8131977833, 175.29482925, "19"], +[-37.8125801167, 175.2945273667, "20"], +[-37.8131192, 175.294675, "21"], +[-37.8126639667, 175.2944545333, "22"], +[-37.81282845, 175.2947188, "24"], +[-37.8129829333, 175.2945952833, "26"], +[-37.81333005, 175.2950340333, "17"], +[-37.8126018667, 175.2957269333, "5"], +[-37.8123989667, 175.2954610833, "6"], +[-37.81266435, 175.2955771, "7"], +[-37.8127353667, 175.29538, "9"], +[-37.8125343667, 175.2958193167, "3"], +[-37.8123329333, 175.2956144833, "4"], +[-37.7942407667, 175.2577723667, "12A"], +[-37.7938653333, 175.2570852167, "19"], +[-37.7934062667, 175.2574560667, "26"], +[-37.7934626333, 175.2570180333, "27"], +[-37.7932549333, 175.2576125667, "28"], +[-37.79284725, 175.2568903833, "39"], +[-37.7944676833, 175.2576256833, "8"], +[-37.7943813333, 175.2578053, "8A"], +[-37.79391825, 175.2577274, "18B"], +[-37.7940299, 175.25754065, "18"], +[-37.79429035, 175.2571217167, "11"], +[-37.7942686333, 175.25758585, "12"], +[-37.79413745, 175.2571187, "15"], +[-37.7939927167, 175.2570974833, "17"], +[-37.7946838, 175.2572457, "1"], +[-37.79382355, 175.2575173667, "20"], +[-37.7937121167, 175.2570439667, "21"], +[-37.7936769333, 175.25749285, "22"], +[-37.7935446667, 175.2574609, "24"], +[-37.7935861833, 175.2570502167, "25"], +[-37.79337295, 175.2568163667, "31A"], +[-37.7948075, 175.25769065, "2"], +[-37.79331555, 175.2570352333, "31"], +[-37.7931838167, 175.25743145, "32"], +[-37.7929953, 175.25739595, "34"], +[-37.7930474, 175.2569295167, "35"], +[-37.7927584667, 175.2573606, "40A"], +[-37.7927340167, 175.2568616, "41"], +[-37.7946563, 175.2576581333, "4"], +[-37.7944602667, 175.2568789833, "7A"], +[-37.79450755, 175.2571717167, "7"], +[-37.7945968833, 175.2577718333, "4A"], +[-37.7844720333, 175.30785945, "81"], +[-37.7852969333, 175.30813995, "73"], +[-37.7854135, 175.30793135, "73B"], +[-37.7854735833, 175.3081555, "67"], +[-37.7855495167, 175.3078585167, "69"], +[-37.7856509, 175.3082132833, "65"], +[-37.7860111833, 175.3083898667, "61"], +[-37.78429365, 175.3077911, "83"], +[-37.7840045167, 175.30767565, "87A-87C"], +[-37.78447865, 175.3075351667, "81B"], +[-37.7844257333, 175.3075848, "81C"], +[-37.7863917833, 175.3083106333, "55B"], +[-37.7865100833, 175.3083745, "55A"], +[-37.7845222333, 175.3076036167, "81A"], +[-37.7840160667, 175.3081153333, "80A"], +[-37.7839025167, 175.3081677, "80B"], +[-37.78849205, 175.3091440833, "23A"], +[-37.7885329833, 175.3089636833, "23B"], +[-37.7878212667, 175.3096585333, "24C"], +[-37.7878386833, 175.3095797167, "24B"], +[-37.7880166333, 175.3095483667, "22A"], +[-37.7893618167, 175.3090223167, "1/7-5/7"], +[-37.7894378333, 175.3100835167, "1/2A-6/2A"], +[-37.7888212667, 175.3102818833, "10B"], +[-37.7886389833, 175.309777, "14"], +[-37.7896310833, 175.3097299667, "1"], +[-37.7875752333, 175.3093768833, "28"], +[-37.7864264333, 175.3085534, "55"], +[-37.7851496833, 175.3080869167, "75"], +[-37.78647865, 175.3090012167, "1/42-4/42"], +[-37.7863353833, 175.3089499167, "1/44-3/44"], +[-37.7860537833, 175.3088303167, "50A-50C"], +[-37.78588515, 175.3087881333, "52A-52C"], +[-37.7882218, 175.308481, "35A-35D"], +[-37.78769615, 175.3089987, "1/41-10/41"], +[-37.7874987167, 175.3089380333, "1/43-5/43"], +[-37.7875504333, 175.3082525667, "45A-45C"], +[-37.78854415, 175.3086654167, "1/27-6/27"], +[-37.78950775, 175.3095041333, "3A-3G"], +[-37.7880369833, 175.3086621833, "37A"], +[-37.7880978167, 175.3083885167, "37B"], +[-37.7878679833, 175.3090750167, "39A"], +[-37.7878504167, 175.3088814833, "39B"], +[-37.7883194667, 175.3090045167, "31A"], +[-37.7879984, 175.3096161, "22B"], +[-37.78780315, 175.3097236833, "24D"], +[-37.78797585, 175.3097046667, "22C"], +[-37.7879536333, 175.3097771167, "22D"], +[-37.78786045, 175.3094978167, "24A"], +[-37.7847490833, 175.3083624, "70"], +[-37.7846549167, 175.3079247667, "79"], +[-37.7841099333, 175.3081493333, "78"], +[-37.7838256333, 175.30803785, "82"], +[-37.7836668833, 175.3080083167, "84"], +[-37.7841549, 175.30773535, "85"], +[-37.7838744833, 175.3076359167, "89"], +[-37.7887457167, 175.3102721833, "10"], +[-37.7889343833, 175.309474, "13"], +[-37.7884909833, 175.3097435167, "16"], +[-37.7887486667, 175.3094170833, "17"], +[-37.78771875, 175.3094347833, "26"], +[-37.7881676667, 175.3096145667, "20"], +[-37.7884134, 175.3092887667, "25"], +[-37.7874233333, 175.30932765, "30"], +[-37.7872821167, 175.3092754833, "32"], +[-37.7880314, 175.3091318333, "33"], +[-37.78711925, 175.3092202833, "34"], +[-37.7884050833, 175.3086801, "29"], +[-37.788234, 175.3092197333, "31"], +[-37.7892906, 175.3100117333, "2"], +[-37.7861867, 175.3088873, "48"], +[-37.7857462833, 175.30872855, "54"], +[-37.7873211667, 175.30887015, "47"], +[-37.7891252333, 175.30994205, "4"], +[-37.7892890333, 175.3096011, "5"], +[-37.7855689, 175.3086687833, "60"], +[-37.7854462, 175.30861035, "64"], +[-37.7889705667, 175.3098787167, "6"], +[-37.7891825167, 175.3094708167, "9A"], +[-37.7892254833, 175.3092885333, "9B"], +[-37.78924345, 175.3091830833, "9C"], +[-37.7892737, 175.30905835, "9D"], +[-37.7892994667, 175.3089428167, "9E"], +[-37.7893309667, 175.30879725, "9F"], +[-37.7887491167, 175.3099885667, "12C"], +[-37.7887338333, 175.3100619167, "12D"], +[-37.7887896, 175.3097976, "12A"], +[-37.7887658667, 175.3098959667, "12B"], +[-37.7885894167, 175.3093721333, "21"], +[-37.7886786167, 175.3090799833, "21A"], +[-37.7886977667, 175.3089947333, "21B"], +[-37.7872521167, 175.3084329, "49E"], +[-37.7872163333, 175.3086261, "49C"], +[-37.7871866167, 175.3087316167, "49B"], +[-37.7872353, 175.3085282, "49D"], +[-37.78717195, 175.3088277, "49A"], +[-37.7870800167, 175.30857625, "49F"], +[-37.7870590333, 175.30866875, "49G"], +[-37.7870362833, 175.3087452167, "49H"], +[-37.7849160333, 175.3084247833, "68A-68C"], +[-37.7877090167, 175.2325681667, "31"], +[-37.7872809333, 175.2324897833, "32"], +[-37.78766145, 175.2323769333, "33"], +[-37.78719665, 175.2323019667, "34"], +[-37.7876434333, 175.2321772833, "35"], +[-37.7871600333, 175.2321157167, "36"], +[-37.7876549, 175.2319740333, "37"], +[-37.78688205, 175.2320559167, "38"], +[-37.7876734667, 175.2317802833, "39"], +[-37.78889225, 175.2343739333, "13"], +[-37.7881936667, 175.23459705, "10"], +[-37.78899245, 175.2345020833, "11"], +[-37.7883519833, 175.2343938667, "12"], +[-37.7882159833, 175.2342183, "14"], +[-37.7880876667, 175.2340244833, "16"], +[-37.7884080167, 175.2337938333, "17"], +[-37.7879590167, 175.2338445, "18"], +[-37.78830085, 175.2336423667, "19"], +[-37.7878379167, 175.2336554333, "20"], +[-37.7881755333, 175.2334810167, "21"], +[-37.7890466667, 175.2347306833, "3"], +[-37.7886410833, 175.2348103, "4"], +[-37.7868995667, 175.2319128, "40"], +[-37.78769245, 175.2315679333, "41"], +[-37.7871945, 175.2318622833, "42"], +[-37.7877114333, 175.2313555833, "43"], +[-37.7872498667, 175.2316649667, "44"], +[-37.78730715, 175.2314808833, "46"], +[-37.7877364167, 175.2311347167, "45"], +[-37.78780285, 175.2309405333, "47"], +[-37.78740735, 175.2309352667, "48"], +[-37.78784885, 175.230767, "49"], +[-37.7874750833, 175.2307749167, "50"], +[-37.7875493333, 175.23056735, "52"], +[-37.7892925667, 175.2345624833, "5"], +[-37.7885125167, 175.2346257167, "6"], +[-37.7895705167, 175.2344325667, "7"], +[-37.7882899667, 175.2347342833, "8"], +[-37.78928445, 175.2344096667, "9"], +[-37.7879663667, 175.2331087167, "25"], +[-37.7875193167, 175.2330573, "26"], +[-37.7876217333, 175.2332596, "24"], +[-37.7880726167, 175.23330185, "23"], +[-37.7877278333, 175.233462, "22"], +[-37.78787095, 175.2329158167, "27"], +[-37.78734705, 175.2326724, "30"], +[-37.7877898, 175.2327365667, "29"], +[-37.7874277833, 175.2328600333, "28"], +[-37.7761747, 175.24442635, "11"], +[-37.7756787833, 175.2452924833, "1"], +[-37.7790202667, 175.2386080167, "86A"], +[-37.7867445167, 175.2298452167, "227"], +[-37.7933019, 175.2290526333, "302"], +[-37.7869016, 175.2299551167, "229"], +[-37.7767998667, 175.24342005, "25"], +[-37.7775235333, 175.2422117167, "41"], +[-37.7769813333, 175.2418842167, "42A"], +[-37.77844815, 175.23999185, "72"], +[-37.7866809667, 175.22936505, "230"], +[-37.7820953667, 175.2345575333, "153"], +[-37.7820413167, 175.23397125, "154"], +[-37.7822079667, 175.2343647667, "155"], +[-37.7821316833, 175.2338191667, "156"], +[-37.7823403, 175.2341706167, "157"], +[-37.7824438667, 175.2340264167, "159"], +[-37.7834455333, 175.2323634333, "183"], +[-37.7798361167, 175.2368930833, "110B"], +[-37.7799719833, 175.2366334333, "110C"], +[-37.7874955167, 175.2298430333, "238"], +[-37.78763715, 175.2299596167, "240"], +[-37.7877982833, 175.2300631333, "242"], +[-37.7927033833, 175.2290873, "296"], +[-37.7929091167, 175.2290631833, "298"], +[-37.7923093333, 175.2291109333, "292"], +[-37.7925072667, 175.2291051333, "294"], +[-37.7920936333, 175.2291401667, "290"], +[-37.7916842167, 175.2291963833, "286"], +[-37.7915095833, 175.2292178833, "284"], +[-37.7868855, 175.2294587833, "232"], +[-37.7872163, 175.23019025, "233"], +[-37.7918975167, 175.2291550167, "288"], +[-37.77593225, 175.2452230833, "3"], +[-37.7760076167, 175.2451721167, "5B"], +[-37.7756341333, 175.2446621, "8A"], +[-37.7757397333, 175.2451809667, "1A"], +[-37.7870466167, 175.2300706, "231"], +[-37.7766074167, 175.2430662833, "26"], +[-37.7765266167, 175.2431891, "24"], +[-37.7763561333, 175.2434453, "20"], +[-37.7762835667, 175.24359425, "18"], +[-37.7764346333, 175.2433305167, "22"], +[-37.7767344333, 175.2423831333, "36A"], +[-37.7931149, 175.2290441333, "300"], +[-37.7768883, 175.2432371167, "27"], +[-37.7754968667, 175.2448619667, "4"], +[-37.7823648333, 175.23335615, "160"], +[-37.7871792833, 175.2296639, "234"], +[-37.7864946667, 175.2296712833, "225"], +[-37.7810259833, 175.2356889167, "126"], +[-37.7787709167, 175.23861945, "84"], +[-37.7762720333, 175.2447843, "9A"], +[-37.7755453, 175.2444740667, "8"], +[-37.791303, 175.2292452167, "282"], +[-37.7778924833, 175.2405093333, "62A"], +[-37.78127155, 175.2347733667, "142B"], +[-37.7814537, 175.2349689167, "142A"], +[-37.7815654833, 175.2347935833, "144"], +[-37.7816505333, 175.2346487333, "146"], +[-37.78175335, 175.2344719833, "148"], +[-37.7818792333, 175.2348743833, "149"], +[-37.7818479167, 175.2343100333, "150"], +[-37.7819850667, 175.234728, "151"], +[-37.7819505833, 175.2341383333, "152"], +[-37.7835209333, 175.2322220167, "185"], +[-37.7832311, 175.23197175, "186"], +[-37.7837075667, 175.2318867667, "189"], +[-37.7825152667, 175.2338908, "165"], +[-37.78260385, 175.2337502167, "167"], +[-37.7836051167, 175.23204965, "187"], +[-37.782697, 175.2336035667, "169"], +[-37.7827837667, 175.2334524333, "171"], +[-37.7827739, 175.2326839167, "180"], +[-37.7832043833, 175.2335345667, "173A"], +[-37.7828736167, 175.2332873333, "173"], +[-37.7830784, 175.232943, "175"], +[-37.7831808333, 175.2327837833, "177"], +[-37.7832747833, 175.2326518667, "179"], +[-37.78334995, 175.23250215, "181"], +[-37.7844980333, 175.2307409667, "203"], +[-37.7846181333, 175.2301003833, "204"], +[-37.7846311833, 175.23063425, "205"], +[-37.7847729667, 175.23052165, "207"], +[-37.7848781, 175.2304185, "209"], +[-37.7838271167, 175.2317049667, "191"], +[-37.78394795, 175.2315183833, "193"], +[-37.7836201167, 175.2312708333, "194"], +[-37.78403865, 175.2313586, "195"], +[-37.7837195667, 175.2310874, "196"], +[-37.7841288333, 175.2312175, "197"], +[-37.7842414, 175.2310371833, "199"], +[-37.78398695, 175.2307297, "200"], +[-37.7843377833, 175.2308645, "201"], +[-37.7838208833, 175.2308857667, "198"], +[-37.7855541667, 175.2298050833, "213"], +[-37.7853547667, 175.2299437, "211"], +[-37.7858379667, 175.23006795, "215"], +[-37.7853589833, 175.2294505667, "216"], +[-37.7859485167, 175.2299839, "217"], +[-37.7855187, 175.2293420167, "218"], +[-37.78576915, 175.2296621, "219"], +[-37.7856841333, 175.22926245, "220"], +[-37.7858461167, 175.2291988, "222"], +[-37.7860047167, 175.22961295, "221"], +[-37.7862394833, 175.2296042833, "223"], +[-37.7873897833, 175.23029975, "235"], +[-37.7873441667, 175.2297703833, "236"], +[-37.7878689667, 175.2297210833, "244"], +[-37.7879896167, 175.2297204667, "246"], +[-37.78799465, 175.23016775, "248"], +[-37.78814895, 175.2302576, "250"], +[-37.78832765, 175.2303616833, "252"], +[-37.7884996667, 175.2304611, "254"], +[-37.7887878833, 175.2311273833, "245"], +[-37.7889540833, 175.2311594833, "247"], +[-37.7886755167, 175.23054275, "256"], +[-37.7891131167, 175.2311913333, "249"], +[-37.7897963167, 175.2311054667, "253"], +[-37.7894476833, 175.2307028, "262"], +[-37.7896121333, 175.2306839833, "264"], +[-37.7897665833, 175.2305928333, "266"], +[-37.7899445833, 175.2304687167, "268"], +[-37.7900737333, 175.2303094167, "270"], +[-37.79021555, 175.230088, "272"], +[-37.7903325667, 175.2299001, "274"], +[-37.7920974167, 175.22954035, "261"], +[-37.79228635, 175.22952235, "263"], +[-37.7925016333, 175.2294991833, "265"], +[-37.7928026667, 175.2294847833, "267"], +[-37.79301975, 175.22948565, "269"], +[-37.79316325, 175.22949345, "271"], +[-37.7909327167, 175.2293077167, "278"], +[-37.7911144667, 175.2292627, "280"], +[-37.7933730167, 175.2294757, "273"], +[-37.7941856667, 175.2296260667, "279"], +[-37.7942927167, 175.2293164167, "281"], +[-37.7945161833, 175.22928335, "283"], +[-37.7938320833, 175.22901735, "308"], +[-37.7939922667, 175.2290026667, "310"], +[-37.7941742167, 175.2289709167, "312"], +[-37.7943449667, 175.2289443333, "314"], +[-37.7945179, 175.2289405833, "316"], +[-37.7946302333, 175.2289284, "318"], +[-37.7948253, 175.2289172167, "320"], +[-37.7761593667, 175.24383645, "16A"], +[-37.7802491833, 175.2369532333, "112"], +[-37.7803495667, 175.23680975, "114"], +[-37.7804444667, 175.2366615833, "116"], +[-37.7801527833, 175.23782935, "101"], +[-37.77993265, 175.2375293, "100"], +[-37.78034325, 175.2375250667, "105"], +[-37.7802503667, 175.2376804333, "103"], +[-37.7796192833, 175.2370223833, "106"], +[-37.78044645, 175.2373676333, "107"], +[-37.7800561667, 175.2373076667, "108"], +[-37.780154, 175.2371283167, "110A"], +[-37.7773094, 175.24191535, "1/44"], +[-37.7757417833, 175.2444863667, "10"], +[-37.7813296667, 175.2358568167, "131"], +[-37.7814388167, 175.2356653333, "133"], +[-37.7818426667, 175.2355920333, "137"], +[-37.7812335, 175.2353385167, "138"], +[-37.7815604167, 175.2354413833, "139"], +[-37.78114485, 175.2350357167, "140A"], +[-37.78134325, 175.23516365, "140"], +[-37.78185285, 175.23536095, "141B"], +[-37.7817027833, 175.23520595, "141"], +[-37.7818017167, 175.23503435, "143"], +[-37.7808364833, 175.2360060667, "122"], +[-37.7809362, 175.23585045, "124"], +[-37.78113635, 175.2361915167, "127"], +[-37.7812366667, 175.23601995, "129"], +[-37.7807414167, 175.2361737667, "120"], +[-37.7758460167, 175.24432565, "12"], +[-37.7760488667, 175.2439839667, "14"], +[-37.7762164833, 175.2437297333, "16"], +[-37.777341, 175.2418692833, "2/44"], +[-37.7766727167, 175.2441598167, "19A"], +[-37.7764922167, 175.2439108, "19"], +[-37.7765786333, 175.2437650833, "21"], +[-37.7766941667, 175.2435911333, "23"], +[-37.7768210333, 175.2427189667, "32"], +[-37.77720335, 175.2427365333, "35"], +[-37.7769478, 175.2424769167, "36"], +[-37.7773102667, 175.2425537333, "37A"], +[-37.7775845, 175.24284195, "37"], +[-37.7768225167, 175.24203815, "38A"], +[-37.7774745, 175.2429883333, "35A"], +[-37.7770591667, 175.242269, "38"], +[-37.7773910333, 175.2424170167, "39"], +[-37.7771706167, 175.24207205, "42"], +[-37.7778325167, 175.2423454667, "43"], +[-37.7778264667, 175.242167, "45A"], +[-37.7776703333, 175.2419464667, "45"], +[-37.77742, 175.2417440333, "46"], +[-37.7777752, 175.2417715, "47"], +[-37.77749145, 175.2415994167, "48"], +[-37.7775669167, 175.2414777333, "50"], +[-37.7778909333, 175.2415729333, "51"], +[-37.7773938667, 175.2411702833, "52A"], +[-37.77764735, 175.24130775, "52"], +[-37.7779971667, 175.2413909, "53"], +[-37.7775436833, 175.2408911167, "56A"], +[-37.7778133, 175.2410106333, "56B"], +[-37.7777346167, 175.2411946833, "56"], +[-37.7783380167, 175.2413962667, "57A"], +[-37.7781104167, 175.2412008167, "57"], +[-37.7778991167, 175.2408983667, "58"], +[-37.7784647833, 175.24124575, "59A"], +[-37.7782197, 175.2410173333, "59"], +[-37.7779825667, 175.2407585333, "60"], +[-37.77810495, 175.24057175, "62"], +[-37.77832435, 175.2408315833, "63"], +[-37.7782111, 175.2403974167, "66A"], +[-37.7780090167, 175.2402068, "66B"], +[-37.7759055667, 175.2449733167, "5"], +[-37.7783285667, 175.24019605, "68"], +[-37.77814125, 175.24001705, "68A"], +[-37.7782457, 175.2398113667, "72A"], +[-37.7785658167, 175.2397839, "74"], +[-37.7786843833, 175.2395807667, "78"], +[-37.7761033167, 175.2449961167, "7A"], +[-37.7800545167, 175.2379949167, "99"], +[-37.7798752, 175.2386983833, "93A"], +[-37.7797208833, 175.23855135, "93"], +[-37.7799998333, 175.2384744833, "95A"], +[-37.7798440333, 175.2383482833, "95"], +[-37.77996685, 175.23815035, "97"], +[-37.7791398167, 175.2387954, "86"], +[-37.7792450667, 175.2386080833, "88"], +[-37.7793744833, 175.2384035667, "90"], +[-37.7796029, 175.2387710333, "91A"], +[-37.77975395, 175.2389135167, "91B"], +[-37.7788032, 175.2393770833, "80"], +[-37.7791096, 175.2395770167, "81"], +[-37.7789085667, 175.2392249333, "82"], +[-37.7790115167, 175.2390301333, "84A"], +[-37.7787798667, 175.2388069833, "84B"], +[-37.7759993333, 175.2448064333, "7"], +[-37.7860137333, 175.22917575, "224"], +[-37.7863280167, 175.2292102, "228"], +[-37.7936663167, 175.2290317833, "306"], +[-37.7934960833, 175.22903665, "304"], +[-37.7809617667, 175.23535155, "130"], +[-37.78083475, 175.2351584667, "134"], +[-37.78108905, 175.2355313333, "128"], +[-37.7808706833, 175.2352607667, "132"], +[-37.7809228333, 175.2350868, "136"], +[-37.7833057, 175.2318238, "188"], +[-37.7760675333, 175.2445849, "9"], +[-37.7785903, 175.2392784333, "80A"], +[-37.77540345, 175.2450524333, "2"], +[-37.7790000333, 175.2397644, "79"], +[-37.7861772833, 175.2291891, "226"], +[-37.7759036833, 175.2482830667, "18"], +[-37.7770027333, 175.2488853167, "12A"], +[-37.7770358, 175.2491996167, "10B"], +[-37.7772335667, 175.24896555, "10"], +[-37.77621645, 175.2484395, "14"], +[-37.7768588, 175.2488245, "12"], +[-37.7760116833, 175.2485876, "16A"], +[-37.7760805167, 175.24835965, "16"], +[-37.7757701833, 175.2482145333, "20"], +[-37.7786159, 175.2502389667, "2B"], +[-37.7785117333, 175.2503479167, "2C"], +[-37.77874865, 175.2500558333, "2"], +[-37.77852845, 175.2498642333, "4A"], +[-37.7783698, 175.2501605167, "4C"], +[-37.77833165, 175.2499725333, "4"], +[-37.7776938, 175.2492965167, "6"], +[-37.7774399667, 175.2493595167, "8A"], +[-37.7774293833, 175.2494210667, "8B"], +[-37.7774143833, 175.2491396333, "8"], +[-37.7308485, 175.2683702167, "8"], +[-37.7311548333, 175.2680019333, "3"], +[-37.7311652, 175.26837055, "4"], +[-37.7309762833, 175.2679246833, "5"], +[-37.7309944, 175.2683785833, "6"], +[-37.7308376833, 175.2678869833, "7"], +[-37.7308436167, 175.2681387333, "9"], +[-37.7673201, 175.27345975, "25A"], +[-37.7670848, 175.27334885, "25"], +[-37.7680552167, 175.2718051667, "6"], +[-37.7683243, 175.27190545, "6A"], +[-37.76824125, 175.2723749667, "12"], +[-37.7680051333, 175.2720204167, "10"], +[-37.76753265, 175.2725338833, "15"], +[-37.7679016167, 175.2725054833, "16"], +[-37.7677413833, 175.2732967167, "26"], +[-37.7670503333, 175.2735898, "27A"], +[-37.76727735, 175.2736612833, "27"], +[-37.7677109333, 175.2734745667, "28"], +[-37.7676333833, 175.2721003, "11"], +[-37.76758945, 175.2723227833, "13"], +[-37.7679556667, 175.2722851167, "14"], +[-37.76725665, 175.27247475, "15A"], +[-37.7672098167, 175.2725733333, "17"], +[-37.7674677667, 175.2728099, "19"], +[-37.76784985, 175.2727438333, "20"], +[-37.7674236167, 175.2730673, "21"], +[-37.7678002833, 175.2729506167, "22"], +[-37.76735655, 175.2732927833, "23"], +[-37.7677776333, 175.2731292333, "24"], +[-37.7672321667, 175.2738404, "29"], +[-37.7676672, 175.2736673167, "30"], +[-37.7676162667, 175.2738458667, "32"], +[-37.76795315, 175.2740210167, "32A"], +[-37.7675854833, 175.2740409, "34"], +[-37.7677263, 175.2716097167, "5"], +[-37.76768965, 175.2718413333, "7"], +[-37.76741065, 175.2718338333, "9"], +[-37.7363382167, 175.2558656667, "27A"], +[-37.736233, 175.2556841833, "27B"], +[-37.7359395333, 175.2553352, "31A"], +[-37.7361008667, 175.2553989667, "31"], +[-37.7365344333, 175.2568333, "16"], +[-37.7364801667, 175.2559697167, "25"], +[-37.7358796333, 175.2560868833, "26"], +[-37.7368772833, 175.2568009167, "12"], +[-37.7366654, 175.2567873833, "14"], +[-37.7363997, 175.2566529167, "18"], +[-37.7364651833, 175.2563509333, "20"], +[-37.7366657833, 175.2560573, "19"], +[-37.7366805, 175.2556862667, "21"], +[-37.7362155333, 175.2562293667, "22"], +[-37.7365915333, 175.25563795, "23"], +[-37.7360725667, 175.2561742167, "24"], +[-37.7358951333, 175.2558826667, "28"], +[-37.7362535833, 175.2554601167, "29"], +[-37.7359234333, 175.2557210333, "35"], +[-37.73602325, 175.2555833333, "33"], +[-37.7375392833, 175.2559771667, "7A"], +[-37.7376237, 175.2557550167, "7B"], +[-37.7373325333, 175.25586155, "9A"], +[-37.7374318667, 175.2556978167, "9B"], +[-37.7369594, 175.2558045667, "15"], +[-37.7372341167, 175.2557456, "11"], +[-37.7369528667, 175.2561079667, "17"], +[-37.7370986333, 175.2556913667, "13"], +[-37.7375475333, 175.25642115, "1"], +[-37.73738635, 175.25675685, "2"], +[-37.7372338833, 175.2566743667, "4"], +[-37.7372649167, 175.2561977333, "5"], +[-37.7370941667, 175.2565763, "6"], +[-37.7374291, 175.2563146167, "3"], +[-37.7367266, 175.2564274167, "10"], +[-37.73694895, 175.25648455, "8"], +[-37.7647806667, 175.2875712333, "10"], +[-37.7645342833, 175.28751675, "11"], +[-37.7647410833, 175.2877469167, "12"], +[-37.7647060833, 175.2879380167, "14"], +[-37.76448405, 175.2877275167, "15"], +[-37.7646740667, 175.2881089, "16"], +[-37.7646332, 175.2882772333, "18"], +[-37.76434545, 175.2881597333, "19"], +[-37.7648136333, 175.2885182167, "18A"], +[-37.7645820333, 175.2884422333, "20"], +[-37.7644664667, 175.2885070333, "22"], +[-37.7643385, 175.2885119333, "24"], +[-37.76418305, 175.2881282833, "25"], +[-37.7641924, 175.2884783833, "26"], +[-37.7640406, 175.2884445333, "28"], +[-37.76402, 175.2880755667, "29"], +[-37.7638859, 175.2883931167, "30"], +[-37.7638624667, 175.2880244833, "31"], +[-37.76367365, 175.2879719, "33"], +[-37.7637402833, 175.28834935, "32"], +[-37.7635894, 175.2883020667, "34"], +[-37.7634812667, 175.2881989167, "36"], +[-37.76494665, 175.2868181667, "2"], +[-37.7649807167, 175.2866597, "2A"], +[-37.7635199333, 175.2878264, "37"], +[-37.76335705, 175.28811725, "38"], +[-37.7633801667, 175.2877073333, "39"], +[-37.7632150167, 175.2880062, "40"], +[-37.76326005, 175.28759145, "41"], +[-37.7630937167, 175.2878754167, "42"], +[-37.7649049, 175.2870037, "4"], +[-37.7646461, 175.2869282667, "5"], +[-37.7648598, 175.2871809167, "6"], +[-37.7645918167, 175.2871928167, "7"], +[-37.7648194, 175.2873840833, "8"], +[-37.7647062, 175.2887571333, "20A"], +[-37.77913005, 175.2722330667, "14"], +[-37.7809484833, 175.2717415833, "23"], +[-37.77949675, 175.2720142333, "20"], +[-37.7800295333, 175.2717510667, "24"], +[-37.77944655, 175.2726385, "17"], +[-37.7789911167, 175.27231625, "12"], +[-37.7792926333, 175.27214885, "16"], +[-37.7805198833, 175.2714411667, "26"], +[-37.7809589167, 175.2711870833, "32"], +[-37.7991910833, 175.3305799667, "1"], +[-37.7993528, 175.33090075, "3"], +[-37.7993141333, 175.3320488833, "4"], +[-37.7994012667, 175.3311844167, "5"], +[-37.7992764167, 175.3325331667, "6"], +[-37.7342630167, 175.2223519, "7"], +[-37.7344343167, 175.2217236833, "1"], +[-37.7345632667, 175.2224624667, "8"], +[-37.734047, 175.2230158333, "15"], +[-37.7343294833, 175.22214145, "5"], +[-37.73467965, 175.2221029667, "4"], +[-37.7346163, 175.2222809167, "6"], +[-37.7343960333, 175.2219239167, "3"], +[-37.7347585667, 175.2219255167, "2"], +[-37.7341832667, 175.2225718, "9"], +[-37.7341362667, 175.2227175833, "11"], +[-37.7344991333, 175.2226796667, "10"], +[-37.7340919833, 175.22285365, "13"], +[-37.7344324833, 175.2228934667, "12"], +[-37.7343742167, 175.2230781833, "14"], +[-37.729688, 175.2809814, "3"], +[-37.72951955, 175.2810266333, "5"], +[-37.72934695, 175.2810768167, "7"], +[-37.7298263167, 175.2809300833, "1"], +[-37.7291703167, 175.28112685, "9"], +[-37.7290219, 175.2811803833, "11"], +[-37.7289414167, 175.2812641, "13"], +[-37.7287323, 175.2814198, "15"], +[-37.7289700833, 175.28143785, "12"], +[-37.7290665667, 175.2815528333, "10"], +[-37.7292677167, 175.2814883667, "8"], +[-37.7294630667, 175.2814110167, "6"], +[-37.729658, 175.2813539333, "4"], +[-37.8007771667, 175.23861155, "12"], +[-37.8006943833, 175.2392159833, "13"], +[-37.8008620833, 175.2383796667, "10"], +[-37.80059865, 175.23930295, "11"], +[-37.8007051667, 175.2389671833, "15"], +[-37.8007572333, 175.23877525, "17"], +[-37.80031815, 175.2379710667, "2"], +[-37.8003779833, 175.23836655, "4"], +[-37.8005522333, 175.2383998, "6"], +[-37.8003461667, 175.2388609333, "7"], +[-37.8006890667, 175.23843185, "8"], +[-37.80052045, 175.2388826667, "9"], +[-37.7305224, 175.2622352167, "4"], +[-37.7302548833, 175.2623381333, "10"], +[-37.7299904167, 175.26220515, "11"], +[-37.7300933167, 175.26228355, "12"], +[-37.7303347167, 175.2620584, "3"], +[-37.7301133667, 175.2619243333, "5"], +[-37.7304727667, 175.2623449833, "6"], +[-37.7300199833, 175.2619807667, "7"], +[-37.7303920667, 175.2623734333, "8"], +[-37.7299972833, 175.2620836167, "9"], +[-37.7887180333, 175.26416905, "231"], +[-37.7887783333, 175.2640943, "235"], +[-37.7887400167, 175.2641392333, "233"], +[-37.7852847833, 175.2682776167, "15"], +[-37.7878908667, 175.2651622, "161"], +[-37.7879542, 175.2650942, "165"], +[-37.78548275, 175.2680303167, "25"], +[-37.7855236667, 175.26751055, "38"], +[-37.7861465667, 175.2672526667, "59"], +[-37.7863284667, 175.26657025, "82"], +[-37.7865956, 175.2667102, "83"], +[-37.7864134833, 175.2664523833, "84"], +[-37.7870964833, 175.2660933667, "107"], +[-37.7872185167, 175.2659708833, "117"], +[-37.7870637833, 175.26569825, "118"], +[-37.7871410667, 175.2660422167, "109"], +[-37.7883112, 175.2646983, "189"], +[-37.7881089333, 175.2644490667, "188"], +[-37.7881480667, 175.2644018167, "202"], +[-37.7881787833, 175.2643629667, "202A"], +[-37.7882388167, 175.2642996167, "206"], +[-37.7882852667, 175.26424825, "210"], +[-37.7883210833, 175.2642068167, "212"], +[-37.78837645, 175.2641368333, "216"], +[-37.7884303667, 175.2640712833, "220"], +[-37.78845145, 175.2640346167, "224"], +[-37.7870333333, 175.2657351167, "116"], +[-37.7867093333, 175.2660716167, "100"], +[-37.7858001333, 175.2671772667, "56"], +[-37.78571955, 175.2672597667, "50"], +[-37.7878483167, 175.2652032, "159"], +[-37.7878136333, 175.2652454167, "155"], +[-37.7879869, 175.2650579833, "169"], +[-37.7888091333, 175.2640559, "237"], +[-37.7888402, 175.2640157333, "241"], +[-37.7888933833, 175.2639533167, "245"], +[-37.7889254667, 175.2641029833, "239A"], +[-37.7889682, 175.2641597, "239B"], +[-37.7886073167, 175.2643042, "221"], +[-37.7886566833, 175.2642473, "225"], +[-37.7886890333, 175.2642139167, "229"], +[-37.7886299, 175.2642792333, "223"], +[-37.7884015167, 175.2646055167, "199"], +[-37.78508555, 175.2685483833, "11"], +[-37.7851824, 175.2684085, "13"], +[-37.78590285, 175.26612365, "86"], +[-37.7850042667, 175.26865345, "7"], +[-37.7850667167, 175.2687401333, "9"], +[-37.7874295333, 175.2658423167, "121"], +[-37.7880895, 175.2649331833, "175"], +[-37.78844155, 175.2645628333, "201"], +[-37.78848425, 175.26450305, "205"], +[-37.7885528167, 175.2644118333, "217"], +[-37.7869146667, 175.2658617833, "108"], +[-37.7869978, 175.2657875833, "114"], +[-37.7869610167, 175.2658340833, "112"], +[-37.78729885, 175.2658639667, "119"], +[-37.7874033167, 175.2657515, "123"], +[-37.78746625, 175.2656589167, "135"], +[-37.7875269667, 175.2656034167, "137"], +[-37.7877686, 175.2652929833, "149"], +[-37.7874665667, 175.2652176833, "154"], +[-37.7880268333, 175.2650084333, "171"], +[-37.7855156, 175.26837555, "21B"], +[-37.7856728, 175.2685572, "21C"], +[-37.7853897833, 175.2681442333, "21"], +[-37.7856262667, 175.267881, "31"], +[-37.7852918833, 175.2677611333, "32"], +[-37.78540905, 175.2676524, "34"], +[-37.7857833, 175.2677128333, "39"], +[-37.7856262167, 175.2673899, "44"], +[-37.7858337333, 175.2676405833, "45"], +[-37.7859070333, 175.26755005, "47"], +[-37.7860262, 175.2674130167, "53"], +[-37.7859325667, 175.26703415, "60"], +[-37.7860074667, 175.26694275, "62"], +[-37.7861108833, 175.26680375, "68"], +[-37.7862761167, 175.26710415, "69"], +[-37.7863771667, 175.2670115333, "71"], +[-37.7864374667, 175.2669332667, "73"], +[-37.78624535, 175.26666155, "74"], +[-37.7864909833, 175.26686475, "75"], +[-37.7865088333, 175.2662861833, "90"], +[-37.7867684833, 175.2665351333, "97"], +[-37.8183388167, 175.2675188, "4"], +[-37.8183565833, 175.2673564, "6"], +[-37.8181363833, 175.2673999833, "8"], +[-37.8181287333, 175.2672229, "10"], +[-37.8181056167, 175.2670209, "12"], +[-37.8182365333, 175.26708415, "14"], +[-37.8183721667, 175.2671516, "16"], +[-37.8184944833, 175.2671635, "18"], +[-37.8186357333, 175.2672165833, "20"], +[-37.8188256167, 175.26729075, "22"], +[-37.8192773833, 175.26746435, "28"], +[-37.8194498833, 175.2674993, "30"], +[-37.81960095, 175.2675522333, "32"], +[-37.8197359333, 175.2676658667, "34"], +[-37.8199113333, 175.2677674667, "23"], +[-37.8198920167, 175.2678840833, "21"], +[-37.8196927667, 175.2679148167, "19"], +[-37.8195338833, 175.2679336, "17"], +[-37.8193952833, 175.2677905, "15"], +[-37.8192015667, 175.2677601167, "13"], +[-37.8190058667, 175.2679835833, "9"], +[-37.8188942167, 175.2679401667, "7"], +[-37.8190708167, 175.2677579167, "11"], +[-37.8189016333, 175.2677129167, "5"], +[-37.81827205, 175.2676730333, "2"], +[-37.8187417, 175.2676627, "3"], +[-37.8191202333, 175.2674007667, "26"], +[-37.81897875, 175.2673683333, "24"], +[-37.7493024667, 175.2512592667, "5"], +[-37.7497575, 175.2459492167, "66"], +[-37.7499003167, 175.2458818, "68"], +[-37.7494719, 175.2461501667, "62"], +[-37.7496025333, 175.2460561, "64"], +[-37.74897535, 175.2516672, "6"], +[-37.7494245167, 175.2479423167, "35"], +[-37.7493304833, 175.2462499833, "60"], +[-37.7490216, 175.2504542667, "18"], +[-37.7493322833, 175.2502088833, "15"], +[-37.7493355667, 175.2500031, "17"], +[-37.7490159833, 175.2506442333, "16"], +[-37.7490427667, 175.2500565833, "22"], +[-37.7490217167, 175.2502436167, "20"], +[-37.7492890667, 175.2516599667, "1"], +[-37.7493754333, 175.2493117833, "21"], +[-37.7489978167, 175.2512750833, "10"], +[-37.7493416833, 175.25058585, "11"], +[-37.7490016667, 175.25107855, "12"], +[-37.7493382667, 175.2503921833, "13"], +[-37.7490093667, 175.2508649333, "14"], +[-37.7490433333, 175.2498673167, "24"], +[-37.7493787333, 175.2491269333, "23"], +[-37.7493973333, 175.2489462833, "25"], +[-37.74939355, 175.2487351333, "27"], +[-37.74940505, 175.2485292333, "29"], +[-37.7490511167, 175.2520432667, "2"], +[-37.7490644833, 175.24912075, "30"], +[-37.74940935, 175.2483353333, "31"], +[-37.7490746833, 175.2489195333, "32"], +[-37.7494211833, 175.2481363833, "33"], +[-37.7490790833, 175.24870535, "34"], +[-37.7490740833, 175.2485026667, "36"], +[-37.7494274667, 175.2477487, "37"], +[-37.7490934, 175.2482937, "38"], +[-37.7494348833, 175.24754075, "39"], +[-37.7491027667, 175.24808135, "40"], +[-37.74944265, 175.2473440667, "41"], +[-37.74911245, 175.2478647333, "42"], +[-37.7494458333, 175.2471300167, "43"], +[-37.7491165667, 175.2476762667, "44"], +[-37.7494515167, 175.2469199333, "45"], +[-37.7491163, 175.24746875, "46"], +[-37.74946135, 175.2467272833, "47"], +[-37.74913045, 175.2472624333, "48"], +[-37.7489668667, 175.2518624667, "4"], +[-37.7496571, 175.2464856333, "49"], +[-37.7491301667, 175.2470597333, "50"], +[-37.7491380167, 175.2468701667, "52"], +[-37.7491521833, 175.2466631833, "54"], +[-37.74904825, 175.2463507833, "56A"], +[-37.7490875667, 175.2464662333, "56"], +[-37.749192, 175.2463633833, "58"], +[-37.74932, 175.2510096667, "7"], +[-37.7489851, 175.25146965, "8"], +[-37.7493364667, 175.2508007, "9"], +[-37.7271553, 175.2503893833, "12"], +[-37.7270614667, 175.25056785, "10"], +[-37.72635025, 175.2452149167, "65"], +[-37.7266117167, 175.2478246333, "44"], +[-37.7276397333, 175.2484107667, "35"], +[-37.72784895, 175.2487792667, "31"], +[-37.7264213667, 175.2474275, "48"], +[-37.7277115833, 175.2507252833, "9"], +[-37.7277645, 175.2505625167, "11"], +[-37.7262433833, 175.2464394333, "56"], +[-37.72634955, 175.24722305, "50"], +[-37.7263061833, 175.2469690333, "52"], +[-37.7265101667, 175.2476271833, "46"], +[-37.7265569333, 175.2464662, "55"], +[-37.7262629, 175.2462208833, "58"], +[-37.7265712167, 175.2467211833, "53"], +[-37.7262380833, 175.2456648833, "66"], +[-37.7261334167, 175.24544355, "68"], +[-37.72594305, 175.2452965333, "70"], +[-37.7258771, 175.2448789, "71"], +[-37.7260723833, 175.2449612, "69"], +[-37.7262288667, 175.2450746833, "67"], +[-37.7266103833, 175.2469738667, "51"], +[-37.7259908833, 175.2461193, "60"], +[-37.726013, 175.2459927, "62"], +[-37.7262803667, 175.2459343333, "64"], +[-37.7266920167, 175.24721585, "49"], +[-37.7267906333, 175.2474530667, "47"], +[-37.72690015, 175.247672, "45"], +[-37.7270275167, 175.24785325, "43"], +[-37.7271847, 175.2480043833, "41"], +[-37.7273426, 175.2481344833, "39"], +[-37.7274835333, 175.24826405, "37"], +[-37.7276871667, 175.2498568333, "22"], +[-37.7273556667, 175.2486214167, "34"], +[-37.7272045833, 175.2484702333, "36"], +[-37.72705335, 175.2483270167, "38"], +[-37.7268985, 175.2481544167, "40"], +[-37.7275139833, 175.2488313667, "32"], +[-37.7276354, 175.2490893, "30"], +[-37.72769155, 175.2494394833, "26"], +[-37.7276977667, 175.2496497667, "24"], +[-37.72767005, 175.2492526333, "28"], +[-37.72658435, 175.2459542667, "59"], +[-37.7265871667, 175.2457287, "61"], +[-37.72715075, 175.25143615, "2"], +[-37.72748755, 175.2513296667, "3"], +[-37.7271912167, 175.2512735667, "4"], +[-37.7275389667, 175.2510855667, "5"], +[-37.7272517333, 175.2510413, "6"], +[-37.7279661167, 175.2490263, "33"], +[-37.72749865, 175.25034385, "16"], +[-37.7273721667, 175.2501411833, "18"], +[-37.7272817833, 175.2508077333, "8"], +[-37.7274084167, 175.2505678667, "14"], +[-37.72761165, 175.2501093167, "20"], +[-37.7276676833, 175.2508883667, "7"], +[-37.8230168, 175.27540045, "16"], +[-37.8227566333, 175.2765782333, "1"], +[-37.82285595, 175.2764001667, "3"], +[-37.8227667333, 175.2759237833, "10"], +[-37.8230568167, 175.2759947, "11"], +[-37.82285975, 175.2757562333, "12"], +[-37.8233788833, 175.2759325167, "13"], +[-37.8228922, 175.2756052, "14"], +[-37.8231525833, 175.2758052833, "15"], +[-37.82326025, 175.2755554, "17"], +[-37.8231119167, 175.2753597333, "18"], +[-37.8233661667, 175.2753522667, "19"], +[-37.823195, 175.2753756, "20"], +[-37.8225007333, 175.27640885, "4"], +[-37.8231960667, 175.2763901833, "5"], +[-37.8226013167, 175.27623185, "6"], +[-37.8232447333, 175.2762934667, "7"], +[-37.8226776333, 175.2760775, "8"], +[-37.8229589833, 175.27616925, "9"], +[-37.8089098833, 175.2811675167, "41B"], +[-37.8060622, 175.2795531667, "12"], +[-37.8091315, 175.28092635, "45"], +[-37.8096346167, 175.2799764167, "46"], +[-37.8091063667, 175.2816995833, "47A"], +[-37.81196925, 175.2825272667, "82"], +[-37.8120935833, 175.2825930667, "84"], +[-37.8067676, 175.2793866333, "18B"], +[-37.8067813333, 175.2796610167, "18A"], +[-37.8088845833, 175.2800179167, "38A"], +[-37.8089760333, 175.2799503, "38B"], +[-37.8093872167, 175.2800938833, "44"], +[-37.8092226833, 175.2804528, "44B"], +[-37.810856, 175.2822283167, "67A"], +[-37.8107828167, 175.28242665, "67B"], +[-37.8112778167, 175.2807178, "68A"], +[-37.8073552833, 175.27981045, "24"], +[-37.8076939, 175.2798725833, "26"], +[-37.8119857333, 175.2832515, "85A"], +[-37.8092021333, 175.2809429, "45A"], +[-37.80926475, 175.28096485, "45B"], +[-37.8092348833, 175.2811015167, "45C"], +[-37.8091709833, 175.2811932, "45D"], +[-37.8090882833, 175.2811620667, "45E"], +[-37.80588995, 175.27952945, "10"], +[-37.80578575, 175.2799746833, "11"], +[-37.8060258833, 175.2793511, "12A"], +[-37.8133380167, 175.2826622833, "100"], +[-37.8059743167, 175.279996, "13"], +[-37.80633255, 175.27940175, "14A"], +[-37.8062500667, 175.2795773667, "14"], +[-37.8063903833, 175.27940115, "16A"], +[-37.8064265833, 175.2796244, "16"], +[-37.8063206833, 175.28002015, "17"], +[-37.8069288667, 175.2796960333, "20A"], +[-37.8069154, 175.2794736, "20B"], +[-37.8070654, 175.2797142167, "22"], +[-37.8078493333, 175.28048605, "21"], +[-37.8083553, 175.28064555, "29"], +[-37.8085454833, 175.2807184667, "33"], +[-37.8086458333, 175.28101315, "37B"], +[-37.8085854333, 175.2812813667, "37C"], +[-37.8085341333, 175.2814989333, "37D"], +[-37.8084390667, 175.2818945333, "37E"], +[-37.8086944667, 175.2807881167, "37"], +[-37.80866825, 175.280274, "38"], +[-37.8087550833, 175.28120595, "39B"], +[-37.8086777167, 175.2815510667, "39C"], +[-37.8086356833, 175.2817484167, "39D"], +[-37.8085877167, 175.2819708333, "39E"], +[-37.80535275, 175.2798706167, "3"], +[-37.8052293333, 175.27931825, "4B"], +[-37.8051690167, 175.2794329167, "4"], +[-37.8088329667, 175.2808585833, "39"], +[-37.8088743333, 175.2803578833, "40"], +[-37.80885695, 175.2814104, "41C"], +[-37.8088020667, 175.2816556667, "41D"], +[-37.80873485, 175.2819361333, "41E"], +[-37.80897795, 175.2809108167, "41"], +[-37.8090474667, 175.2804022167, "42"], +[-37.8090070333, 175.2813056833, "43"], +[-37.8089512167, 175.2816730167, "47B"], +[-37.8089101833, 175.2820775667, "47"], +[-37.8097006333, 175.28012225, "48"], +[-37.8094293667, 175.2810553167, "49"], +[-37.8094854833, 175.2805486667, "50"], +[-37.8096020167, 175.28111635, "51"], +[-37.8096189833, 175.2805975, "52A"], +[-37.8096593667, 175.2804711167, "52B"], +[-37.8097304167, 175.2803412, "52C"], +[-37.8098905167, 175.2807289167, "54"], +[-37.8100409, 175.2808417167, "56"], +[-37.81022565, 175.2814361333, "55A"], +[-37.81033155, 175.2815109833, "55B"], +[-37.8104551667, 175.2810690333, "58"], +[-37.81062845, 175.281147, "60"], +[-37.81050745, 175.2816006, "61"], +[-37.8107728833, 175.2812584333, "62"], +[-37.8106383333, 175.28168405, "63"], +[-37.8110016667, 175.2809027333, "64"], +[-37.8107927333, 175.2817838833, "65"], +[-37.8109361833, 175.2813653333, "66"], +[-37.8109455, 175.2819862, "67"], +[-37.8111813, 175.28097875, "68"], +[-37.8054831667, 175.2799105, "7"], +[-37.8057215667, 175.27950005, "8"], +[-37.8111280167, 175.2814558333, "72"], +[-37.8113381, 175.2813304833, "74A"], +[-37.81131055, 175.2815764333, "74"], +[-37.8114809333, 175.2816802833, "76A"], +[-37.8115655, 175.2814233167, "76B"], +[-37.8116523, 175.28178825, "78"], +[-37.8118335833, 175.2819245, "80"], +[-37.8124142333, 175.28228795, "88"], +[-37.8125427333, 175.2823595, "90"], +[-37.8126983333, 175.2824494833, "92A"], +[-37.8127518167, 175.2821873667, "92"], +[-37.8128761, 175.28248695, "94"], +[-37.8130384333, 175.2822697667, "96A"], +[-37.8130248667, 175.28254355, "96"], +[-37.8128838667, 175.28379695, "91"], +[-37.8129065167, 175.2832432, "93"], +[-37.8120513667, 175.2832662, "85"], +[-37.8121284333, 175.2836666833, "87A"], +[-37.8120441, 175.28370575, "87B"], +[-37.8122477, 175.2832363, "89"], +[-37.8056284167, 175.2799494667, "9"], +[-37.8131771833, 175.2825936167, "98"], +[-37.81166575, 175.2835786167, "83A"], +[-37.81112485, 175.28215925, "73"], +[-37.8128702, 175.2834905167, "93A"], +[-37.8128650833, 175.28396485, "91A"], +[-37.81105645, 175.2821023333, "71"], +[-37.8107027833, 175.2821896833, "65A"], +[-37.8132722333, 175.2824079167, "98A"], +[-37.8111907, 175.2822517667, "75"], +[-37.8116745, 175.2829479667, "79"], +[-37.8117992667, 175.2836301167, "83B"], +[-37.8117927667, 175.2830923667, "81A"], +[-37.8118805667, 175.2832218667, "83"], +[-37.8117405, 175.28334395, "81B"], +[-37.8093219167, 175.2799227833, "42B"], +[-37.8092526833, 175.2800665833, "42A"], +[-37.8269678833, 175.2960303167, "350"], +[-37.8273411667, 175.2960386833, "1/350-4/350"], +[-37.8183455333, 175.2822500333, "153A"], +[-37.8182927333, 175.2825036, "153B"], +[-37.81964875, 175.2818039167, "174B"], +[-37.8196589667, 175.2819902833, "1/174"], +[-37.8192801, 175.28183455, "172A"], +[-37.81948775, 175.2819040333, "172"], +[-37.8215081833, 175.28499045, "204B"], +[-37.8213703333, 175.28513225, "204A"], +[-37.8207373167, 175.2853238167, "193B"], +[-37.8208664667, 175.2851791667, "193A"], +[-37.8210443, 175.2834372833, "188B"], +[-37.8206119333, 175.28334205, "186A"], +[-37.8203172167, 175.2843984, "183A"], +[-37.8199337667, 175.283085, "171"], +[-37.8214088, 175.2870365667, "215A"], +[-37.8219813167, 175.2860801667, "214A"], +[-37.8211894833, 175.2864157333, "207A"], +[-37.82093825, 175.2862714, "203B"], +[-37.8208162333, 175.286433, "203A"], +[-37.8216303, 175.2876126333, "221A"], +[-37.8215066667, 175.2867754833, "211"], +[-37.8329832333, 175.2984891667, "3062"], +[-37.8224246667, 175.28757335, "220"], +[-37.8141238667, 175.2834771, "101"], +[-37.8192314833, 175.2815054833, "170D"], +[-37.8162940333, 175.2830485667, "131"], +[-37.8163533667, 175.2833286167, "133"], +[-37.8155409, 175.2824402667, "130"], +[-37.8156959333, 175.2824139167, "132"], +[-37.8362571333, 175.3009574667, "3102"], +[-37.8364848833, 175.3011603, "3104"], +[-37.8367480333, 175.3009047833, "3106"], +[-37.8391481333, 175.3045189833, "3153"], +[-37.8208250833, 175.2838425333, "192"], +[-37.8209154833, 175.2840532667, "194"], +[-37.8218033333, 175.2861196167, "214"], +[-37.8215783, 175.2869988667, "215"], +[-37.8219239, 175.2864078667, "216"], +[-37.8169010167, 175.2818419167, "148A"], +[-37.82162415, 175.2857219667, "210A"], +[-37.8217965333, 175.2856742333, "210B"], +[-37.8193191333, 175.2813905, "170C"], +[-37.8255603833, 175.2954197333, "301"], +[-37.8189586667, 175.2817541333, "170"], +[-37.8197750167, 175.28193705, "176A"], +[-37.8190761333, 175.2822911167, "161A"], +[-37.8189826833, 175.2824124667, "161B"], +[-37.8189161333, 175.2822806833, "161C"], +[-37.8200200833, 175.2839889167, "179A"], +[-37.8219654833, 175.2881900833, "225A"], +[-37.8145080167, 175.2832179333, "103"], +[-37.8147075667, 175.28319235, "105"], +[-37.8149226667, 175.2831784, "107"], +[-37.8144775167, 175.2826828833, "116"], +[-37.8147151333, 175.28267175, "120"], +[-37.81491455, 175.2826264, "122"], +[-37.81402425, 175.2827081167, "108"], +[-37.81432285, 175.28269195, "114"], +[-37.8135237833, 175.2827051333, "102"], +[-37.8137211667, 175.2827118333, "104A"], +[-37.8136776, 175.2824904333, "104B"], +[-37.8138750667, 175.2827163333, "106"], +[-37.81594005, 175.2828769, "127"], +[-37.8160949667, 175.2828315167, "129"], +[-37.8151796667, 175.2833900167, "113B"], +[-37.8153416667, 175.2832717333, "115B"], +[-37.8153778833, 175.2830389333, "115"], +[-37.81555545, 175.2829862, "117"], +[-37.8157111333, 175.28293715, "119"], +[-37.8150779333, 175.2825737333, "124"], +[-37.8152361667, 175.2825398, "126"], +[-37.8153880167, 175.2824934, "128"], +[-37.8151905833, 175.2830934667, "113"], +[-37.81583985, 175.2823691833, "134"], +[-37.8164134, 175.2827786, "135"], +[-37.8160069167, 175.2823102833, "136"], +[-37.8165897, 175.2827226, "137"], +[-37.8161369833, 175.2822812833, "138"], +[-37.8162658833, 175.2822204833, "140"], +[-37.8164199333, 175.2821946, "142"], +[-37.8165815667, 175.2821527833, "144"], +[-37.8167382667, 175.2820937, "146"], +[-37.8168978333, 175.2820589333, "148"], +[-37.8175033667, 175.2824682333, "147"], +[-37.8176490833, 175.2824322, "149"], +[-37.8170410167, 175.2820289333, "150"], +[-37.8172141, 175.2819828833, "152"], +[-37.8173872, 175.2819496333, "154"], +[-37.8186317667, 175.2822111333, "159"], +[-37.8189238167, 175.2825697167, "163"], +[-37.8192958333, 175.2824042, "165"], +[-37.8195337667, 175.2825140667, "167"], +[-37.8194750833, 175.2815961833, "172B"], +[-37.81979325, 175.2821299167, "176"], +[-37.8199587167, 175.2822431667, "178"], +[-37.8200059, 175.2832085167, "173"], +[-37.8200933167, 175.2833942833, "175"], +[-37.82018155, 175.2836024, "177"], +[-37.82027955, 175.2838173667, "179"], +[-37.8204214833, 175.2840364667, "181"], +[-37.8204782667, 175.2842326667, "183"], +[-37.82054955, 175.28440905, "185"], +[-37.8205766333, 175.2832744833, "186"], +[-37.8206372667, 175.2846221, "187"], +[-37.8209556667, 175.2834725667, "188A"], +[-37.8206912833, 175.2835768333, "188"], +[-37.8210554, 175.28356495, "190"], +[-37.8207862667, 175.2849982833, "191"], +[-37.8207024667, 175.28481935, "189"], +[-37.8211026, 175.28447565, "200"], +[-37.8213092167, 175.2849481167, "202"], +[-37.8209479167, 175.2853606333, "195A"], +[-37.8210094333, 175.28556145, "197"], +[-37.8211145, 175.28578865, "199"], +[-37.8208918333, 175.2861644667, "201"], +[-37.8212503667, 175.2861061667, "205"], +[-37.8214759, 175.2853291167, "206"], +[-37.8213463667, 175.28634005, "207"], +[-37.8215463333, 175.2855233333, "208"], +[-37.8214250833, 175.28651245, "209"], +[-37.8210829167, 175.2869272667, "209A"], +[-37.8217071667, 175.2859272333, "212"], +[-37.8216674, 175.2871781, "217"], +[-37.8217341333, 175.2873366833, "219"], +[-37.8218007333, 175.2875115167, "221"], +[-37.8218911333, 175.2876793833, "223"], +[-37.82200495, 175.2879164833, "225"], +[-37.8221232833, 175.2882227167, "227"], +[-37.8219078667, 175.2885935833, "229"], +[-37.8222309833, 175.2884325, "231"], +[-37.8223080167, 175.2886198833, "233"], +[-37.8220795667, 175.2888415833, "235"], +[-37.8229326167, 175.2886764167, "236"], +[-37.8221379, 175.2889460667, "237"], +[-37.8224021167, 175.28884855, "239"], +[-37.8229951167, 175.2888587667, "238"], +[-37.8224855333, 175.2890125833, "241"], +[-37.8230735833, 175.2890402333, "240"], +[-37.8231585333, 175.28920775, "242"], +[-37.8232370667, 175.2893898167, "244"], +[-37.82330375, 175.289574, "246"], +[-37.8233865833, 175.2897440667, "248"], +[-37.8234602833, 175.28993905, "250"], +[-37.8235171167, 175.2901183167, "252"], +[-37.8240434833, 175.2914576, "254"], +[-37.82445105, 175.2936706167, "281"], +[-37.8245722667, 175.2939619, "283"], +[-37.8245598667, 175.29410895, "285"], +[-37.8246316167, 175.2942587667, "287A"], +[-37.82445035, 175.2943943667, "287B"], +[-37.8246967667, 175.2948163333, "291B"], +[-37.82472295, 175.29445265, "289"], +[-37.8248580833, 175.2946201333, "291"], +[-37.8249858333, 175.2947777, "293A"], +[-37.8250947833, 175.2949545, "295"], +[-37.8248058167, 175.2950013167, "293B"], +[-37.8249817667, 175.29517945, "295B"], +[-37.825241, 175.2950785167, "297A"], +[-37.82516885, 175.2952862167, "297B"], +[-37.82769545, 175.2959367833, "1/366"], +[-37.8276304167, 175.2961307, "2/366"], +[-37.82714915, 175.2964747, "354"], +[-37.8269331333, 175.2958693833, "356"], +[-37.8271021, 175.2959313333, "358"], +[-37.8277915333, 175.2966893833, "366A"], +[-37.8273151333, 175.2965057333, "364"], +[-37.8278213, 175.2964614333, "366B"], +[-37.8275556833, 175.2966116667, "4/366"], +[-37.8319809667, 175.2983213833, "3047"], +[-37.8328327667, 175.2989585167, "3065"], +[-37.8144394833, 175.2835797833, "103A"], +[-37.8144271167, 175.28379645, "103B"], +[-37.81440755, 175.2840016667, "103C"], +[-37.8172277, 175.2825315333, "139"], +[-37.8202094667, 175.2840527167, "181A"], +[-37.82988555, 175.2971528833, "3016"], +[-37.8293589167, 175.29706145, "3006"], +[-37.82991475, 175.29768505, "3019"], +[-37.8184478333, 175.2827513667, "151A"], +[-37.8380244833, 175.3023356, "3134"], +[-37.83804835, 175.3015109667, "3122"], +[-37.8377659167, 175.3012721333, "2/3116"], +[-37.83748955, 175.3011106, "1/3116"], +[-37.8376258833, 175.3020420667, "3120"], +[-37.8173517167, 175.2825072, "143"], +[-37.8183135667, 175.28275965, "151"], +[-37.819051, 175.2817937333, "170A"], +[-37.8308718667, 175.2964248167, "3034A"], +[-37.81563305, 175.2832781333, "117A"], +[-37.8207814, 175.2854155833, "195B"], +[-37.8364493, 175.3019296333, "3109"], +[-37.83680195, 175.3020697333, "3111"], +[-37.8275807333, 175.2963886167, "3/366"], +[-37.82546335, 175.29531575, "299"], +[-37.8215857833, 175.2851843667, "206A"], +[-37.8191403667, 175.2818307667, "170B"], +[-37.8319588667, 175.2976321667, "3044"], +[-37.8371528667, 175.3005994833, "3110"], +[-37.8311034, 175.2974297333, "3034"], +[-37.7345514167, 175.2646139, "6"], +[-37.73428165, 175.2650653167, "1"], +[-37.7343653, 175.264652, "4"], +[-37.7346500833, 175.2649260333, "5"], +[-37.7349163, 175.2648906333, "7"], +[-37.7346590833, 175.2647371833, "8"], +[-37.7349740333, 175.2647663167, "9"], +[-37.7344526167, 175.2650331667, "3"], +[-37.8133928833, 175.3022650167, "8"], +[-37.8136357167, 175.3021832, "10"], +[-37.8137732833, 175.3022310833, "10B"], +[-37.81287955, 175.3018124167, "1B"], +[-37.8135893333, 175.3024372667, "12"], +[-37.8131941167, 175.3020985167, "6"], +[-37.81299825, 175.30190555, "4"], +[-37.781235, 175.2324163333, "50"], +[-37.7798693667, 175.2348601167, "22"], +[-37.77997095, 175.2347, "24"], +[-37.78006585, 175.2345280167, "26"], +[-37.7801526833, 175.2343558, "28"], +[-37.78008225, 175.2340329667, "30A"], +[-37.7802637333, 175.2341792, "30"], +[-37.7807435833, 175.2346000833, "33A"], +[-37.7803646167, 175.23401045, "32"], +[-37.78054075, 175.2343973333, "33"], +[-37.7804555333, 175.2338537167, "34"], +[-37.7808527333, 175.2343780333, "35A"], +[-37.7806235833, 175.2342305333, "35"], +[-37.7803965333, 175.2335129333, "36A"], +[-37.78056175, 175.2336606, "36B"], +[-37.7809447667, 175.2344409167, "37"], +[-37.7806860333, 175.2334926, "38"], +[-37.78111025, 175.2344962333, "39"], +[-37.7807728667, 175.2333203667, "40"], +[-37.7813688667, 175.2343186333, "41A"], +[-37.7811826333, 175.2344485667, "41"], +[-37.7806942, 175.23299075, "42A"], +[-37.7808797333, 175.2331387833, "42"], +[-37.7809713167, 175.234302, "43A"], +[-37.7811283333, 175.2340993167, "43B"], +[-37.78077075, 175.2340153333, "45"], +[-37.7808695167, 175.2338385, "47"], +[-37.7809602167, 175.23367135, "49"], +[-37.7809781167, 175.2329819333, "44"], +[-37.7810806, 175.2328202, "46"], +[-37.7812277833, 175.23319505, "53"], +[-37.7815119333, 175.2326274167, "1/57-40/57"], +[-37.78133425, 175.23303345, "55"], +[-37.7792673333, 175.23584285, "10"], +[-37.77961345, 175.2359225667, "11"], +[-37.7793668667, 175.2356655167, "12"], +[-37.7797524833, 175.23567535, "13A"], +[-37.7799294, 175.2358490167, "13B"], +[-37.7794480167, 175.2355283667, "14"], +[-37.7798661833, 175.23549045, "15"], +[-37.7795661667, 175.2353635167, "16"], +[-37.7799778333, 175.2353120167, "17"], +[-37.7796652167, 175.2351962, "18A"], +[-37.7794947667, 175.23504355, "18B"], +[-37.7800885833, 175.2351250833, "19"], +[-37.7790269, 175.23697855, "1"], +[-37.7797760833, 175.2350149333, "20"], +[-37.77884685, 175.2365063167, "2A"], +[-37.77875435, 175.2366760167, "2B"], +[-37.7792101, 175.2365955167, "3"], +[-37.7789714667, 175.2363604667, "4"], +[-37.7792994, 175.23643845, "5"], +[-37.7790722667, 175.2361884667, "6"], +[-37.7794010667, 175.2362722333, "7"], +[-37.7791681333, 175.2360197667, "8"], +[-37.7794996333, 175.23610575, "9"], +[-37.7615419167, 175.2782938833, "9A"], +[-37.7616829667, 175.2785295167, "11A"], +[-37.76152745, 175.2784106833, "11B"], +[-37.76214545, 175.2781883167, "10"], +[-37.7620822167, 175.2784193, "12"], +[-37.7616305, 175.2787296833, "13"], +[-37.76241215, 175.2786403667, "14"], +[-37.7623778, 175.2787774167, "16"], +[-37.7616042, 175.2788910833, "15"], +[-37.7615251333, 175.2793028333, "19"], +[-37.76150095, 175.2795039333, "21"], +[-37.7623014833, 175.27942045, "24A"], +[-37.76226095, 175.2792834667, "24"], +[-37.76200735, 175.2787462833, "18"], +[-37.7619729833, 175.27751695, "1"], +[-37.7619662, 175.27897685, "20"], +[-37.76188575, 175.2792041833, "22"], +[-37.7616124667, 175.27967485, "25"], +[-37.7621586667, 175.2795059333, "26"], +[-37.7619779833, 175.2796148333, "28A"], +[-37.7618321667, 175.2795156667, "28"], +[-37.7622200833, 175.2798753833, "30A"], +[-37.7620941667, 175.2798394667, "30"], +[-37.7619101833, 175.2798312667, "32A"], +[-37.7617234333, 175.2797662333, "32"], +[-37.76224805, 175.2776568167, "2"], +[-37.7618572167, 175.2777259667, "3"], +[-37.7623631667, 175.2777719667, "4"], +[-37.7618198167, 175.2779300833, "5"], +[-37.76255835, 175.2779757167, "6"], +[-37.76177665, 175.2781259667, "7"], +[-37.76219895, 175.2779598167, "8"], +[-37.76174475, 175.2783161167, "9"], +[-37.7621563333, 175.2789542833, "20A"], +[-37.7621749333, 175.2788642667, "18A"], +[-37.7624013333, 175.2550501667, "7"], +[-37.7618494833, 175.25496425, "10"], +[-37.7620186167, 175.2551121, "8"], +[-37.7623163833, 175.2554744833, "4"], +[-37.76245845, 175.2545083333, "11"], +[-37.7616695667, 175.2548034, "12"], +[-37.7621578, 175.2547067667, "13"], +[-37.7618502833, 175.2547395333, "14"], +[-37.7620885333, 175.25449325, "15"], +[-37.7619634833, 175.2546169333, "17"], +[-37.7627040833, 175.2548047833, "5"], +[-37.7622825833, 175.2549121833, "9"], +[-37.7624291833, 175.2556278167, "2"], +[-37.7625535667, 175.2552443833, "3"], +[-37.7621655833, 175.2552831167, "6"], +[-37.7824596, 175.2593954833, "6B"], +[-37.7824899333, 175.2596091167, "6D"], +[-37.78192295, 175.25906555, "5"], +[-37.78189185, 175.2595162833, "1/9-4/9"], +[-37.7826163333, 175.2604161667, "16A"], +[-37.7828001333, 175.26024265, "14B"], +[-37.7825462167, 175.2602242, "14"], +[-37.78245685, 175.2600571833, "1/12-4/12"], +[-37.7827016167, 175.2596904167, "1/4-8/4"], +[-37.7826594667, 175.2605540333, "16"], +[-37.7823675333, 175.2598745167, "10"], +[-37.7819509667, 175.2597521, "11"], +[-37.7820148833, 175.2600114167, "13"], +[-37.7821300167, 175.2602393833, "15"], +[-37.7822388, 175.2604848, "17A"], +[-37.78227385, 175.2605656333, "17B"], +[-37.7823538167, 175.26070285, "17C"], +[-37.7827363167, 175.25880305, "1"], +[-37.78317795, 175.2590998667, "2A"], +[-37.7829572, 175.2591512833, "2B"], +[-37.7828103333, 175.25920465, "2"], +[-37.7826288833, 175.25925285, "4A"], +[-37.7826364, 175.2594850333, "4B"], +[-37.7818488, 175.2592742333, "7"], +[-37.7822718333, 175.2597136167, "8A"], +[-37.7822746833, 175.2593502833, "8"], +[-37.7824747667, 175.2595023, "6C"], +[-37.7824474667, 175.2593021333, "6A"], +[-37.8231314333, 175.2838739167, "3"], +[-37.8225030333, 175.2841306333, "9"], +[-37.8230090667, 175.2847406167, "10"], +[-37.8229031167, 175.2844387167, "12"], +[-37.82272695, 175.2845053333, "14"], +[-37.8232496667, 175.2842749167, "4"], +[-37.8229646333, 175.2839452833, "5"], +[-37.8230931, 175.28432885, "6"], +[-37.8227753, 175.2840437833, "7"], +[-37.8231178, 175.2846902833, "8"], +[-37.7991306167, 175.3127574833, "9A"], +[-37.8000883667, 175.3131113667, "18A"], +[-37.7994319667, 175.3129260167, "11"], +[-37.7996214167, 175.3123370667, "12"], +[-37.7998624, 175.31267815, "14A"], +[-37.79967795, 175.31261775, "14"], +[-37.7997317667, 175.3128684667, "16"], +[-37.7997639167, 175.3130396333, "18"], +[-37.7998200333, 175.3132778333, "22"], +[-37.7992641667, 175.3119229, "1"], +[-37.7989885333, 175.3123243167, "5A"], +[-37.7993045167, 175.3122423333, "5"], +[-37.79938145, 175.3126547833, "9"], +[-37.7990567833, 175.3125377, "7A"], +[-37.7993461333, 175.3124355667, "7"], +[-37.8233800833, 175.2853768, "8A"], +[-37.8232814333, 175.28521485, "8B"], +[-37.8248157, 175.2849770167, "27"], +[-37.8234340667, 175.2858383667, "7"], +[-37.8257823333, 175.28389285, "37"], +[-37.8258832167, 175.28382115, "37B"], +[-37.8232843667, 175.28605915, "5A"], +[-37.8243728167, 175.2848688, "20"], +[-37.8244648833, 175.2847169667, "22"], +[-37.8242834167, 175.2843889833, "24"], +[-37.8248502667, 175.2839991333, "30"], +[-37.82498115, 175.2839132167, "32"], +[-37.8245635, 175.2844503667, "26"], +[-37.8248841, 175.2847891167, "29"], +[-37.8249933, 175.2845613167, "31"], +[-37.8251152667, 175.2837693, "34"], +[-37.8252694667, 175.28368225, "36"], +[-37.8255404167, 175.2835681, "38"], +[-37.8257133333, 175.2834737833, "40"], +[-37.8250761667, 175.2843585333, "33"], +[-37.8235270167, 175.2853035333, "10"], +[-37.8237368, 175.2857401167, "11"], +[-37.8240275, 175.2856072667, "15"], +[-37.8240546833, 175.2850991333, "16"], +[-37.8241883333, 175.2855447833, "17"], +[-37.82424535, 175.2850205, "18"], +[-37.8238863833, 175.2856763167, "13"], +[-37.8243452333, 175.2854844833, "19"], +[-37.8244601333, 175.2854212333, "21"], +[-37.82462925, 175.28532145, "23"], +[-37.8229209, 175.2858860333, "1"], +[-37.8247172167, 175.2851294333, "25"], +[-37.82298455, 175.2853591333, "2"], +[-37.8230918833, 175.2858471333, "3"], +[-37.8232785333, 175.28585775, "5"], +[-37.8231799667, 175.28535935, "6"], +[-37.82360055, 175.2858022667, "9"], +[-37.8231932333, 175.2859974833, "3A"], +[-37.7341782167, 175.22671445, "32"], +[-37.7342758833, 175.2275180833, "1/28"], +[-37.73415825, 175.2278999, "5/28"], +[-37.7338653667, 175.22765905, "3/28"], +[-37.7340088333, 175.2277700667, "4/28"], +[-37.7374565, 175.22906835, "16"], +[-37.7390889, 175.2272765333, "2"], +[-37.7388455667, 175.22786885, "6"], +[-37.7377837333, 175.2285188167, "7"], +[-37.7386772833, 175.2282104167, "8"], +[-37.7356582167, 175.2277711, "22C"], +[-37.7359619167, 175.2282587667, "22A"], +[-37.7355146167, 175.22826135, "22D"], +[-37.7348482167, 175.2267132, "29"], +[-37.7342244667, 175.22701925, "30"], +[-37.7345978167, 175.2265863333, "31"], +[-37.7346471333, 175.2259222167, "33"], +[-37.7343869167, 175.2264927, "35"], +[-37.7342715833, 175.2265488167, "37"], +[-37.7384954333, 175.2285600167, "10"], +[-37.7370929333, 175.2283690167, "11"], +[-37.7381731667, 175.22887125, "12"], +[-37.7365601833, 175.22783815, "13"], +[-37.7370708833, 175.22885295, "18"], +[-37.73544455, 175.2271044, "19"], +[-37.7363880333, 175.2283742, "20"], +[-37.7350861667, 175.2268888833, "21"], +[-37.7358289167, 175.2278906333, "22B"], +[-37.73518245, 175.2266151333, "23"], +[-37.7385878167, 175.2273106333, "3"], +[-37.7353008167, 175.2275807, "24"], +[-37.7352426167, 175.2263670167, "25"], +[-37.7351295667, 175.2262781667, "27"], +[-37.73900035, 175.22752685, "4"], +[-37.7384750333, 175.2275693167, "5"], +[-37.7373341833, 175.2285156667, "9"], +[-37.7362319333, 175.22757785, "17"], +[-37.7378002, 175.2290285667, "14"], +[-37.7387084667, 175.2270713, "1"], +[-37.7994941167, 175.236032, "13"], +[-37.7995658, 175.23643405, "9"], +[-37.7990664667, 175.2366987833, "10A"], +[-37.79924885, 175.236678, "10"], +[-37.7995285667, 175.2362253667, "11"], +[-37.7992230167, 175.2364713833, "12"], +[-37.7991781333, 175.2362614333, "14"], +[-37.7994588667, 175.2358437667, "15"], +[-37.7995576667, 175.2356157833, "17"], +[-37.7988683167, 175.2359314833, "18B"], +[-37.79912335, 175.2360726, "16"], +[-37.7993943, 175.2356415833, "19"], +[-37.7997112833, 175.2372611167, "1"], +[-37.7997246333, 175.2375153333, "1B"], +[-37.79906905, 175.2356685667, "20"], +[-37.7992494833, 175.23561585, "21"], +[-37.7990474167, 175.2354832167, "22"], +[-37.7994017, 175.2373235333, "2"], +[-37.7996640833, 175.2370548167, "3"], +[-37.7993008333, 175.2370134833, "4A"], +[-37.7992000833, 175.2372961167, "4"], +[-37.7996271667, 175.2368251833, "5"], +[-37.7989341333, 175.2368219333, "6A"], +[-37.7988685667, 175.2365069667, "6B"], +[-37.7996043833, 175.23663425, "7"], +[-37.7990350833, 175.2359049, "18A"], +[-37.7272248667, 175.2636778167, "8"], +[-37.7273124667, 175.2643524333, "11"], +[-37.72683985, 175.26472565, "1"], +[-37.7269719167, 175.2646573667, "3"], +[-37.7271174667, 175.2645105, "5"], +[-37.7273179833, 175.26482255, "7"], +[-37.72735155, 175.26467625, "9"], +[-37.7275531667, 175.26455725, "13"], +[-37.7275856333, 175.2643455333, "15"], +[-37.7274070167, 175.2641305833, "14"], +[-37.7273220667, 175.2638795833, "10"], +[-37.72714615, 175.2639446833, "6"], +[-37.72701025, 175.2641175333, "4"], +[-37.7268674833, 175.2643503833, "2"], +[-37.746512, 175.2734420167, "12"], +[-37.74626415, 175.2745766667, "4"], +[-37.7464929167, 175.273854, "10"], +[-37.7467012167, 175.2740048333, "11"], +[-37.74675875, 175.2737937667, "13"], +[-37.7467968667, 175.2736062667, "15"], +[-37.7464942833, 175.2731841167, "14"], +[-37.74664735, 175.2733547167, "16"], +[-37.7471644833, 175.2728207333, "17"], +[-37.74672565, 175.2731240167, "18"], +[-37.7469440333, 175.27333195, "19"], +[-37.7467430333, 175.27341215, "21"], +[-37.7462297167, 175.27485575, "2"], +[-37.7465261167, 175.27490885, "3"], +[-37.7465874333, 175.2747003667, "5"], +[-37.74631835, 175.2743627333, "6"], +[-37.7466452667, 175.2744796167, "7"], +[-37.7464182833, 175.2741797, "8"], +[-37.7466951333, 175.2742494833, "9"], +[-37.7464769833, 175.2751027667, "1"], +[-37.71954885, 175.2478531833, "5"], +[-37.7186557333, 175.24867915, "18"], +[-37.7194238167, 175.2475579833, "7"], +[-37.7198416667, 175.2477136, "1"], +[-37.7197218667, 175.2477710667, "3"], +[-37.7197994167, 175.2481088333, "4"], +[-37.7196325167, 175.2482044667, "6"], +[-37.7192880167, 175.24799895, "13"], +[-37.71931795, 175.2474753167, "9"], +[-37.7192441, 175.2475745833, "11"], +[-37.7186698667, 175.24748395, "19"], +[-37.7190662333, 175.2479358667, "15"], +[-37.7188938167, 175.2478004833, "17"], +[-37.7188269833, 175.2482104333, "22"], +[-37.7187093833, 175.2484773833, "20"], +[-37.7187982333, 175.2487290167, "16"], +[-37.7189112333, 175.2484955667, "14"], +[-37.7190360667, 175.2482962667, "12"], +[-37.7304292833, 175.2538157333, "16"], +[-37.7306906667, 175.2527755167, "26"], +[-37.7305480833, 175.2545934333, "3"], +[-37.7309190833, 175.2545488667, "5"], +[-37.7302787167, 175.2543301, "10"], +[-37.7307660333, 175.2538332833, "11"], +[-37.73033715, 175.2541079667, "12"], +[-37.73083495, 175.2536150167, "13"], +[-37.7302297833, 175.2539390167, "14"], +[-37.7308921, 175.2533250167, "15"], +[-37.7309486167, 175.2530757667, "17"], +[-37.7305194667, 175.2536252, "18"], +[-37.7309210833, 175.2528542333, "19"], +[-37.7305367, 175.2548148333, "1"], +[-37.7305691667, 175.2534367667, "20"], +[-37.7305845833, 175.2532099, "22"], +[-37.7305978667, 175.25295915, "24"], +[-37.7302959833, 175.2549941167, "2"], +[-37.73009945, 175.2549323333, "4"], +[-37.7302317833, 175.2547731167, "6"], +[-37.7307445, 175.2544322833, "7A"], +[-37.7305836667, 175.2542759167, "7"], +[-37.7302289833, 175.2545286333, "8"], +[-37.7306883333, 175.2540445167, "9"], +[-37.7411446, 175.2392954, "1"], +[-37.7411124, 175.2394861333, "3"], +[-37.7410881667, 175.23965025, "5"], +[-37.7410078333, 175.2396459333, "6"], +[-37.7410322, 175.2394709667, "4"], +[-37.7410588833, 175.2392864333, "2"], +[-37.8014232, 175.3070586667, "8"], +[-37.80169885, 175.3058529333, "1A"], +[-37.8016496833, 175.3060546, "1"], +[-37.8016001, 175.3062650167, "3"], +[-37.8012906333, 175.3060024333, "2"], +[-37.8012313333, 175.3062303333, "4"], +[-37.8015554667, 175.30646585, "5"], +[-37.8013269333, 175.3065049833, "6A"], +[-37.8011912667, 175.3067626833, "6"], +[-37.8014879667, 175.3067160333, "7"], +[-37.797103, 175.2572348667, "2"], +[-37.7973670167, 175.2568084667, "3"], +[-37.7971827, 175.2574282, "2A"], +[-37.7974355667, 175.25712995, "1A"], +[-37.7962798333, 175.2536697667, "24A"], +[-37.7961998833, 175.2532827333, "24"], +[-37.7958506667, 175.2517468667, "30"], +[-37.79676175, 175.25430085, "23"], +[-37.7970161667, 175.2552560167, "17"], +[-37.7968159, 175.2546151833, "21"], +[-37.7965279833, 175.25461765, "22E"], +[-37.7965438833, 175.2535471333, "25A"], +[-37.7964688667, 175.25315455, "25"], +[-37.7963958167, 175.2529189167, "27A"], +[-37.7963633667, 175.2527585667, "27B"], +[-37.7963369667, 175.25263775, "27C"], +[-37.7964258333, 175.25302245, "27"], +[-37.7958951167, 175.2518825667, "28"], +[-37.7961278833, 175.2517715, "29"], +[-37.79689815, 175.2562469, "10"], +[-37.7971412, 175.2558504167, "11"], +[-37.7971005333, 175.25564055, "13"], +[-37.7968631167, 175.25608065, "14"], +[-37.7974111, 175.2569826, "1"], +[-37.79705915, 175.25545205, "15"], +[-37.7968287167, 175.2559108667, "16"], +[-37.7965312833, 175.2558461167, "18A"], +[-37.7967928, 175.2557499167, "18"], +[-37.7972220667, 175.2562026667, "7"], +[-37.7970545833, 175.2570559167, "4"], +[-37.79695715, 175.2563990833, "8"], +[-37.7971894167, 175.2560249333, "9"], +[-37.79640495, 175.25418605, "22B"], +[-37.796434, 175.2543081, "22C"], +[-37.7964645167, 175.2544302333, "22D"], +[-37.7965499333, 175.25472245, "22F"], +[-37.7965829667, 175.25484245, "22G"], +[-37.7966061167, 175.2549503333, "22H"], +[-37.7969507833, 175.2542385667, "23D"], +[-37.7968797667, 175.2542599167, "23C"], +[-37.7968228667, 175.25427975, "23B"], +[-37.7326029833, 175.2822596333, "25"], +[-37.7324389833, 175.2828329667, "19"], +[-37.7324924667, 175.2831100833, "17"], +[-37.7325284667, 175.28334, "15"], +[-37.7325449167, 175.2834385667, "13"], +[-37.7322905833, 175.2835419667, "14"], +[-37.7322585167, 175.2833077667, "16"], +[-37.73221865, 175.2830870667, "18"], +[-37.7321745, 175.2828942167, "20"], +[-37.7321124833, 175.2826681167, "22"], +[-37.7320837333, 175.2824477833, "24"], +[-37.7320509833, 175.28224135, "26"], +[-37.7320111, 175.2820206167, "28"], +[-37.73193535, 175.2818479833, "30"], +[-37.7320544833, 175.2817187, "32"], +[-37.73237465, 175.2818318667, "36"], +[-37.7325403833, 175.2818840833, "38"], +[-37.7322018, 175.28176555, "34"], +[-37.7324026333, 175.2826217333, "21"], +[-37.7327140167, 175.2819131833, "40"], +[-37.7328771333, 175.28191395, "42"], +[-37.7330420833, 175.2820034167, "37"], +[-37.7332148333, 175.2820744833, "35"], +[-37.73340075, 175.2822253333, "33"], +[-37.7329878667, 175.2822910167, "31"], +[-37.7328846167, 175.2824416333, "29"], +[-37.73274415, 175.282423, "27"], +[-37.7318561833, 175.2816729, "30A"], +[-37.7323669333, 175.2839905333, "10"], +[-37.7325802167, 175.28365535, "11"], +[-37.7323255167, 175.2837630667, "12"], +[-37.7328358, 175.28478185, "1"], +[-37.7324228333, 175.2842182667, "8"], +[-37.7325593667, 175.2847788333, "2"], +[-37.7326284833, 175.2839013667, "9"], +[-37.7328005333, 175.2846092833, "3"], +[-37.73253345, 175.2846221667, "4"], +[-37.7327681167, 175.2844191833, "5"], +[-37.7324821833, 175.2844004833, "6"], +[-37.7323703667, 175.28221455, "23"], +[-37.748456, 175.2446701333, "262"], +[-37.7484193833, 175.2448629667, "260"], +[-37.74870715, 175.2434536667, "274"], +[-37.7556873, 175.25895735, "14B"], +[-37.7558736167, 175.2578867667, "21A"], +[-37.75587835, 175.2588043167, "12"], +[-37.7566421833, 175.2585285167, "11A"], +[-37.7567053667, 175.2586043333, "9A"], +[-37.7535978, 175.2572842667, "70A"], +[-37.75660725, 175.2597167167, "4B"], +[-37.75676075, 175.2595706833, "4"], +[-37.7485803667, 175.2440588833, "268"], +[-37.7485410833, 175.2442584333, "266"], +[-37.7485032167, 175.2444569333, "264"], +[-37.7474908667, 175.2506293167, "174"], +[-37.74850135, 175.2510833833, "175"], +[-37.7476688, 175.2505941667, "176"], +[-37.7482373667, 175.2478025833, "212"], +[-37.74859445, 175.2478364167, "213"], +[-37.7508164333, 175.25467795, "77"], +[-37.7514353333, 175.2554268333, "106"], +[-37.7512573333, 175.2553501, "108"], +[-37.7567650667, 175.2589976167, "7"], +[-37.7543169, 175.2569355833, "39"], +[-37.7520693833, 175.2551536833, "67"], +[-37.7532929167, 175.2580773667, "64"], +[-37.75316765, 175.2582469167, "66"], +[-37.7562544833, 175.2591497333, "10"], +[-37.7555336, 175.257952, "25"], +[-37.7568051667, 175.2587786667, "7A"], +[-37.7563566, 175.25948425, "8A"], +[-37.7486324833, 175.2438473, "270"], +[-37.7491163667, 175.2431669833, "273A"], +[-37.7490939667, 175.2432807667, "273B"], +[-37.7486694167, 175.2436473167, "272"], +[-37.75297265, 175.2558172333, "59"], +[-37.7536807333, 175.2574858833, "60B"], +[-37.75395205, 175.2571562, "60"], +[-37.7485091167, 175.2508723833, "179"], +[-37.7481636333, 175.25052465, "180"], +[-37.7485143, 175.25064485, "181"], +[-37.74817085, 175.2503092167, "182"], +[-37.7485163833, 175.2504294667, "183"], +[-37.7481715167, 175.25009345, "184"], +[-37.7476897833, 175.2499675667, "186A"], +[-37.7478766167, 175.2500155, "186"], +[-37.74778575, 175.2498660667, "188"], +[-37.7485292833, 175.2500219667, "189"], +[-37.74817895, 175.2498346833, "190"], +[-37.7485361, 175.2498624, "191"], +[-37.7481883167, 175.2496232167, "192"], +[-37.7479353667, 175.2475534333, "218B"], +[-37.7482498, 175.2475072167, "220"], +[-37.7486275333, 175.2472057833, "221"], +[-37.74825935, 175.2472719833, "222"], +[-37.7486285, 175.2469914833, "223"], +[-37.74827665, 175.2470378, "224"], +[-37.7486395833, 175.2467884333, "225"], +[-37.7479712833, 175.2469233667, "226"], +[-37.7476561333, 175.2468722333, "228"], +[-37.7477255333, 175.2467375167, "230A"], +[-37.7477238167, 175.2465372833, "230B"], +[-37.7480807167, 175.2467649667, "234"], +[-37.7482981667, 175.2466796167, "236"], +[-37.7491465333, 175.24287495, "281"], +[-37.7487704167, 175.2426014, "282"], +[-37.7482087, 175.2489338833, "202"], +[-37.7481994167, 175.2491312167, "200"], +[-37.7482139167, 175.2487085833, "204"], +[-37.7563829833, 175.25927775, "8"], +[-37.7485786667, 175.2489042167, "1/201-8/201"], +[-37.7486400167, 175.2463639167, "231"], +[-37.7507572, 175.2554697667, "114B"], +[-37.7517743, 175.2555381, "1/102"], +[-37.7518879833, 175.2555724333, "2/102"], +[-37.7488528167, 175.24445485, "261"], +[-37.7490061333, 175.2436657, "269"], +[-37.7490711667, 175.2421687, "307"], +[-37.75627935, 175.25825455, "15A"], +[-37.7509908, 175.2547455, "75A"], +[-37.7513455333, 175.2548587667, "75"], +[-37.7515107667, 175.2549419667, "73"], +[-37.7541984167, 175.25644335, "43"], +[-37.7540687167, 175.2567219833, "43A"], +[-37.7493725667, 175.242915, "279"], +[-37.75465795, 175.2581223833, "36A"], +[-37.7487945667, 175.2428202333, "280"], +[-37.7490217833, 175.2413957833, "303"], +[-37.7490106667, 175.2412483167, "295"], +[-37.7489861833, 175.2410702833, "297"], +[-37.7502698833, 175.2549616833, "120"], +[-37.748526, 175.25023365, "1/185-6/185"], +[-37.7492085833, 175.2539475667, "144"], +[-37.7490755, 175.2537493167, "146"], +[-37.7489530667, 175.2535744333, "148"], +[-37.7496539333, 175.2545516667, "138A"], +[-37.7495599667, 175.2546590667, "138B"], +[-37.7488225667, 175.2533703333, "150"], +[-37.74908315, 175.2530755667, "151"], +[-37.7487015, 175.2531803, "152"], +[-37.7485635167, 175.2529893333, "154"], +[-37.74843215, 175.2528058333, "156"], +[-37.7486069833, 175.2523397333, "159"], +[-37.7484813, 175.2521229, "163"], +[-37.7481217167, 175.2518735, "164"], +[-37.7481328833, 175.2516060667, "166"], +[-37.7484775167, 175.2519150833, "167"], +[-37.74814045, 175.2513561667, "168"], +[-37.7484752167, 175.2517014667, "169"], +[-37.7481483667, 175.2510982, "170"], +[-37.7484892833, 175.2514970167, "171"], +[-37.7481529167, 175.2508331833, "172"], +[-37.7484937333, 175.25128675, "173"], +[-37.74784685, 175.2505827667, "178"], +[-37.7478543333, 175.24953875, "194"], +[-37.74788345, 175.2493716833, "196"], +[-37.7481926333, 175.2493478833, "198"], +[-37.7485898667, 175.24838365, "207"], +[-37.7482134, 175.24826275, "208"], +[-37.7482231, 175.2480248333, "210"], +[-37.7485916833, 175.2480499, "211"], +[-37.7479661667, 175.2476825333, "214A"], +[-37.74780265, 175.2476716333, "214B"], +[-37.7486083333, 175.24762965, "215"], +[-37.7478082333, 175.2475522333, "216"], +[-37.7486107833, 175.2474222833, "217"], +[-37.74794375, 175.2473053333, "218A"], +[-37.7486479833, 175.2465646667, "229"], +[-37.7478837333, 175.2467521667, "232"], +[-37.7486538833, 175.2460867, "233"], +[-37.7478187333, 175.24634625, "238"], +[-37.7480184667, 175.2463560167, "240"], +[-37.7483031833, 175.2463956333, "242"], +[-37.7483078, 175.2461561833, "244"], +[-37.7483068, 175.2457343167, "248"], +[-37.7483012, 175.2455256, "250"], +[-37.7480256833, 175.2452481333, "254"], +[-37.7483291167, 175.24526885, "256"], +[-37.7483631833, 175.2450521667, "258"], +[-37.7480409333, 175.2454072, "252"], +[-37.74960335, 175.2538055667, "93"], +[-37.7494537167, 175.25361785, "95"], +[-37.7493260667, 175.2534199667, "97"], +[-37.7492021833, 175.25322125, "99"], +[-37.7498868833, 175.25416355, "89"], +[-37.7497365833, 175.253987, "91"], +[-37.7500595833, 175.2543186833, "87"], +[-37.7507304667, 175.2546488667, "79"], +[-37.75060375, 175.25458, "81"], +[-37.7504161167, 175.25451295, "83"], +[-37.7502378167, 175.2544185833, "85"], +[-37.7487942, 175.24304835, "278"], +[-37.7494853167, 175.2430515333, "277"], +[-37.7509885833, 175.2552048333, "110A"], +[-37.7508808667, 175.2554976667, "112"], +[-37.7508179, 175.2551619667, "114"], +[-37.75059785, 175.2550965833, "118B"], +[-37.7504477333, 175.2550368333, "118"], +[-37.7516185833, 175.2554924, "104"], +[-37.7511169667, 175.2552455833, "110"], +[-37.7546761833, 175.2577903333, "1/38"], +[-37.7546196333, 175.2580495833, "2/38"], +[-37.75470425, 175.2587037333, "24"], +[-37.7545370333, 175.2589659667, "26"], +[-37.7543823667, 175.25922615, "28"], +[-37.7544987, 175.2582588167, "3/38"], +[-37.7542923667, 175.2591472667, "30A"], +[-37.7541676, 175.25903015, "30"], +[-37.7543811833, 175.25897705, "32A"], +[-37.7544549333, 175.2588222167, "32"], +[-37.7549842, 175.2572698167, "33A"], +[-37.7549465333, 175.2575087833, "33"], +[-37.7546296167, 175.2584099, "34"], +[-37.7548365, 175.2571483667, "35B"], +[-37.7548078667, 175.25736255, "35"], +[-37.7548211833, 175.2579271833, "36"], +[-37.7546713, 175.2572392667, "37"], +[-37.7528462833, 175.2557164, "61"], +[-37.7539474, 175.25889235, "44A"], +[-37.7540005, 175.2587739, "44B"], +[-37.7538887667, 175.2566203667, "45A"], +[-37.7539320667, 175.2563968, "45"], +[-37.7537376667, 175.2564821167, "47"], +[-37.7535864667, 175.2563562833, "49"], +[-37.7534365333, 175.2562330667, "51"], +[-37.7532774, 175.2560786667, "53"], +[-37.7531258833, 175.2559620667, "55"], +[-37.75401625, 175.25780165, "56A"], +[-37.7542871833, 175.25744155, "56"], +[-37.7532199833, 175.2555770333, "57"], +[-37.7539231667, 175.2577630667, "58A"], +[-37.7541072833, 175.2572905167, "58"], +[-37.7544051, 175.2584336, "4/38"], +[-37.75429185, 175.257878, "40A"], +[-37.7545371333, 175.2576432, "40"], +[-37.7540245333, 175.2583746, "42"], +[-37.7538370667, 175.2587661333, "44"], +[-37.7538057833, 175.2585569667, "46"], +[-37.7539297, 175.2582241, "48"], +[-37.7518730167, 175.2550753, "69"], +[-37.75169425, 175.2550086, "71"], +[-37.7520448333, 175.2556389333, "94"], +[-37.7527264667, 175.2556172, "63"], +[-37.7524921667, 175.2559137833, "86"], +[-37.75346085, 175.25783345, "62"], +[-37.75370875, 175.2569476833, "70"], +[-37.75340615, 175.2569903667, "72A"], +[-37.7535672167, 175.2568202667, "72"], +[-37.7534208167, 175.25671975, "74"], +[-37.7532764333, 175.2565669167, "76"], +[-37.7564746667, 175.2587503333, "11"], +[-37.75620625, 175.2585280667, "15"], +[-37.7555952833, 175.25859945, "16"], +[-37.7554476833, 175.2586811167, "16A"], +[-37.7563997333, 175.25839855, "13A"], +[-37.7563449, 175.25864165, "13"], +[-37.7560623667, 175.2584065167, "17"], +[-37.7554020833, 175.2584426, "18"], +[-37.7559848667, 175.2580850333, "19A"], +[-37.75593345, 175.25830155, "19"], +[-37.7557902667, 175.2581946333, "21"], +[-37.7550425167, 175.2585930167, "22A"], +[-37.75715065, 175.2593600167, "1"], +[-37.7551501167, 175.2582172833, "22"], +[-37.7557037833, 175.2578278, "23A"], +[-37.7556662167, 175.2580569333, "23"], +[-37.7551373167, 175.2576608833, "27A"], +[-37.7551864333, 175.2575283167, "27B"], +[-37.75535745, 175.2578449167, "27"], +[-37.7553225667, 175.2571612333, "29A"], +[-37.7552183333, 175.2573805667, "29"], +[-37.7569542167, 175.2597048333, "2"], +[-37.7554908167, 175.2567929167, "31A"], +[-37.7555885833, 175.2565723, "31B"], +[-37.7554059333, 175.2569669167, "31"], +[-37.7570789667, 175.2590021167, "3A"], +[-37.75703135, 175.25921085, "3"], +[-37.7569431667, 175.2588786333, "5A"], +[-37.7568973833, 175.2591062167, "5"], +[-37.7564118, 175.2595757167, "6B"], +[-37.75660495, 175.2594260667, "6"], +[-37.7566142833, 175.2588760833, "9"], +[-37.7494953, 175.24331125, "277A"], +[-37.7493698, 175.2430735833, "275B"], +[-37.7487479667, 175.24325655, "276"], +[-37.7492837833, 175.24307925, "275A"], +[-37.75575745, 175.25871795, "14A"], +[-37.7543495167, 175.2565735167, "41A"], +[-37.75416825, 175.2568313833, "41"], +[-37.8078418333, 175.2952419167, "45"], +[-37.8080944833, 175.2950205333, "48"], +[-37.80770035, 175.2915840167, "12"], +[-37.8079033333, 175.2926697167, "24"], +[-37.8080362333, 175.2934415167, "32"], +[-37.80760475, 175.2910472833, "6"], +[-37.8077734167, 175.2910029, "6A"], +[-37.8076621, 175.2914097833, "10"], +[-37.8074058167, 175.2916838667, "11"], +[-37.8074699333, 175.29208835, "15"], +[-37.8077754833, 175.2919469833, "16"], +[-37.80751495, 175.2922664833, "17"], +[-37.8074499167, 175.2918754833, "13"], +[-37.8077320167, 175.29176575, "14"], +[-37.8078138333, 175.2921323167, "18"], +[-37.8075466, 175.2924538833, "19"], +[-37.8078395, 175.2923117167, "20"], +[-37.80758995, 175.2926405667, "21"], +[-37.80787735, 175.2924937667, "22"], +[-37.80724295, 175.29071925, "1"], +[-37.8076365, 175.2928373333, "23"], +[-37.8076910833, 175.2930518333, "25"], +[-37.8079289167, 175.2928125, "26"], +[-37.80772635, 175.2932584667, "27"], +[-37.8079703, 175.2930757167, "28"], +[-37.80775275, 175.29344775, "29"], +[-37.80753065, 175.29069265, "2"], +[-37.8080048667, 175.2932543, "30"], +[-37.8077809167, 175.2936899833, "31"], +[-37.807783, 175.2938990833, "33"], +[-37.8080612333, 175.29365245, "34"], +[-37.8077905667, 175.29410605, "35"], +[-37.8080676833, 175.2938482167, "36"], +[-37.80779845, 175.2943165333, "37"], +[-37.8080692333, 175.29406505, "38"], +[-37.8078060667, 175.294536, "39"], +[-37.80805295, 175.2942414333, "40"], +[-37.8078132833, 175.2947679833, "41"], +[-37.8080725833, 175.29442035, "42"], +[-37.8078227667, 175.2949953833, "43"], +[-37.8080857667, 175.2946349167, "44"], +[-37.8080994167, 175.29481765, "46"], +[-37.8072743, 175.290939, "3"], +[-37.8075642833, 175.2908528167, "4"], +[-37.80729425, 175.2911413167, "5"], +[-37.8073315667, 175.2913154, "7"], +[-37.8076432167, 175.2912299833, "8"], +[-37.8073672, 175.2915022333, "9"], +[-37.7110279333, 175.2398381333, "40C"], +[-37.7095472167, 175.2421731167, "60"], +[-37.7112144667, 175.2492255, "126"], +[-37.7100894, 175.2402862, "40B"], +[-37.7093269667, 175.2428203, "59"], +[-37.7078109, 175.2365467167, "5"], +[-37.7099382, 175.2460687333, "111B"], +[-37.7089623667, 175.24067495, "40A"], +[-37.7098297333, 175.242746, "66"], +[-37.7082304167, 175.2390115667, "23"], +[-37.7821355667, 175.3409425667, "69A"], +[-37.7817185667, 175.3403550667, "69B"], +[-37.7789375167, 175.3430759833, "27"], +[-37.77783915, 175.3447964667, "11"], +[-37.7831744667, 175.3428666833, "67A"], +[-37.78401845, 175.3439600333, "67C"], +[-37.7824311667, 175.3418935, "65B"], +[-37.7815409167, 175.341118, "65A"], +[-37.78346745, 175.3423372833, "67B"], +[-37.77982125, 175.3416195, "43"], +[-37.78056445, 175.3404712333, "55"], +[-37.78124355, 175.3393408, "77"], +[-37.7818293, 175.3383512667, "81"], +[-37.7820991833, 175.3378452167, "87"], +[-37.7831130833, 175.3401873667, "79B"], +[-37.7844139833, 175.3433773333, "67D"], +[-37.8005632833, 175.2835498333, "8A"], +[-37.8005271167, 175.2844784167, "9"], +[-37.8000329667, 175.2842966, "3"], +[-37.8003589333, 175.2837964833, "6A"], +[-37.8004054333, 175.2837794333, "6B"], +[-37.8001078167, 175.2850283667, "15"], +[-37.8003600667, 175.2854148667, "19B"], +[-37.8005982833, 175.2838030333, "10"], +[-37.8006286333, 175.283969, "12"], +[-37.80070935, 175.2841035, "14"], +[-37.80055225, 175.2847265333, "11"], +[-37.8005105333, 175.2849125, "13"], +[-37.7999240333, 175.2843149833, "1"], +[-37.8007873667, 175.2842706333, "16"], +[-37.8001587333, 175.28455125, "5A"], +[-37.8002357, 175.2842727667, "5"], +[-37.8001932833, 175.2838121667, "4A"], +[-37.8004429667, 175.2854101667, "19C"], +[-37.8003771167, 175.2842920167, "7"], +[-37.8004941833, 175.2837495, "8"], +[-37.8003018833, 175.2853288167, "19A"], +[-37.80050205, 175.2853322833, "19D"], +[-37.8004893, 175.2851638667, "17"], +[-37.8003865833, 175.2845349667, "7A"], +[-37.7965083667, 175.3442281833, "62B"], +[-37.7979230833, 175.3439338167, "59"], +[-37.7973504333, 175.3440869333, "61A"], +[-37.7987989167, 175.3438153, "51"], +[-37.7979350833, 175.3445708167, "60"], +[-37.7984953, 175.3443984, "54"], +[-37.8009545833, 175.3439022667, "26"], +[-37.8018530833, 175.3419285667, "21A"], +[-37.80243925, 175.3419431333, "21B"], +[-37.80066545, 175.34341225, "29"], +[-37.7983537667, 175.3454078167, "58"], +[-37.79708, 175.3447197, "62A"], +[-37.7975265333, 175.3428629167, "61C"], +[-37.7972235, 175.3430198333, "61B"], +[-37.7409072167, 175.2623408333, "2A"], +[-37.7409514, 175.2625329333, "3"], +[-37.7407645333, 175.2626768333, "5"], +[-37.7405268333, 175.26265925, "10"], +[-37.7411834333, 175.26237325, "1"], +[-37.7411146333, 175.2621841333, "2"], +[-37.7406952333, 175.2624312333, "6"], +[-37.7407263333, 175.2628780167, "7"], +[-37.7405383833, 175.2624728667, "8A"], +[-37.7403825167, 175.26253785, "8B"], +[-37.7406323833, 175.2627872833, "9"], +[-37.7575735333, 175.2709441667, "10"], +[-37.7581047, 175.2693026, "11"], +[-37.75749375, 175.2707192167, "12"], +[-37.7580389833, 175.2691267833, "13"], +[-37.7574168667, 175.2704542667, "14"], +[-37.7578945167, 175.26926135, "15"], +[-37.7577823167, 175.26942925, "17"], +[-37.7573125833, 175.2701511667, "18"], +[-37.7576603167, 175.2696508667, "19"], +[-37.7582196, 175.27021925, "1"], +[-37.7572727, 175.2698408167, "20A"], +[-37.7570980833, 175.2697853167, "20"], +[-37.7574102833, 175.2695576833, "21A"], +[-37.7574462, 175.2695520833, "21B"], +[-37.7572390833, 175.2694871, "22A"], +[-37.7570794, 175.26966415, "22"], +[-37.7580733333, 175.2700789167, "3A"], +[-37.75793875, 175.2698449, "3"], +[-37.7578530833, 175.270331, "4A"], +[-37.7578117667, 175.27030455, "4B"], +[-37.7580358333, 175.2697183167, "5"], +[-37.7576722667, 175.2701671833, "6"], +[-37.7581938833, 175.2695445333, "7"], +[-37.7575094333, 175.2703635667, "8A"], +[-37.7583046167, 175.2693398, "9"], +[-37.7575431833, 175.270433, "8B"], +[-37.7790906833, 175.2315707833, "1"], +[-37.7798220333, 175.2308783167, "10"], +[-37.7799387, 175.2310811, "12"], +[-37.7800908667, 175.2311796333, "14"], +[-37.78033195, 175.2314113333, "16"], +[-37.7802475167, 175.23150095, "18"], +[-37.7800080667, 175.2313325833, "20"], +[-37.77925375, 175.2312631, "2"], +[-37.7797286167, 175.23173735, "31"], +[-37.7800229833, 175.2318879, "33"], +[-37.7800884833, 175.2317733, "35"], +[-37.7792519333, 175.23169705, "3"], +[-37.7798303667, 175.2315133833, "37"], +[-37.7793563167, 175.2317328, "3A"], +[-37.7794815333, 175.23144675, "4A"], +[-37.7793819833, 175.2313710167, "4"], +[-37.7796459, 175.2312552333, "6"], +[-37.7797397333, 175.2310781667, "8"], +[-37.7797391167, 175.2324313, "23"], +[-37.7793065667, 175.2319363333, "5A"], +[-37.7790890167, 175.2326408333, "11"], +[-37.7791873333, 175.2325849333, "13"], +[-37.7792832333, 175.23273365, "15"], +[-37.7792851167, 175.2324741167, "17"], +[-37.7793903667, 175.2323217167, "19"], +[-37.7796313833, 175.23256415, "21A"], +[-37.77970295, 175.2327790833, "21"], +[-37.7795260667, 175.2321174833, "25"], +[-37.7796267167, 175.2319612, "27"], +[-37.7799262167, 175.2320935, "29"], +[-37.77925035, 175.2320164333, "5"], +[-37.7791355333, 175.2321539833, "7"], +[-37.7789778667, 175.2322409167, "9"], +[-37.7383480833, 175.2598515667, "14"], +[-37.7389460333, 175.2602079, "25"], +[-37.7387481167, 175.2592222667, "26"], +[-37.7390985167, 175.2601508, "27"], +[-37.73886165, 175.2598639833, "20A"], +[-37.7387049833, 175.2598964833, "20"], +[-37.7384880667, 175.25988735, "16"], +[-37.7381011833, 175.2603975667, "12"], +[-37.73795375, 175.2607251, "10"], +[-37.7377651167, 175.26099375, "11"], +[-37.7379498833, 175.2610795333, "13"], +[-37.73865415, 175.2595185833, "18"], +[-37.7389558667, 175.2595569667, "22"], +[-37.7387025667, 175.2602398833, "23"], +[-37.7390103, 175.25930615, "24"], +[-37.7387456667, 175.2589761333, "28"], +[-37.7392892, 175.26029875, "29"], +[-37.7383560667, 175.2605489667, "19"], +[-37.7384056333, 175.2603088167, "21"], +[-37.7369349, 175.2606477833, "1"], +[-37.73708555, 175.2602323167, "2"], +[-37.7394543667, 175.25994575, "31A"], +[-37.7393769333, 175.2601190167, "31"], +[-37.73900575, 175.2590091, "32"], +[-37.73944335, 175.2597430167, "33"], +[-37.7391422667, 175.2590445, "34"], +[-37.7391385167, 175.25991735, "35"], +[-37.7392034, 175.2596712667, "37"], +[-37.7392819333, 175.25944335, "39"], +[-37.7395390667, 175.2592655167, "41"], +[-37.7395372333, 175.2591366833, "43"], +[-37.7392992333, 175.2591116167, "45"], +[-37.7370745667, 175.2606966, "3"], +[-37.7373584833, 175.2604134333, "4"], +[-37.7372486833, 175.26078205, "5"], +[-37.7375496333, 175.2605303333, "6"], +[-37.7374162167, 175.2608494667, "7"], +[-37.7377726667, 175.26063505, "8"], +[-37.7375871333, 175.2609215167, "9"], +[-37.7388669667, 175.2587431167, "30"], +[-37.72953115, 175.2795394667, "23"], +[-37.7284242, 175.2792830333, "45"], +[-37.7284827667, 175.27944455, "43"], +[-37.7285193333, 175.2795805, "41"], +[-37.72855865, 175.2797200833, "39"], +[-37.7286146667, 175.2798673167, "37"], +[-37.7281934333, 175.2791547167, "56"], +[-37.7283567833, 175.2796796833, "48"], +[-37.7284658833, 175.2799811333, "44"], +[-37.7282277833, 175.2792622333, "54"], +[-37.72826175, 175.2793839333, "52"], +[-37.7284126667, 175.279834, "46"], +[-37.7283037667, 175.27952365, "50"], +[-37.7285881667, 175.2801925833, "40"], +[-37.7292625667, 175.2797221, "27"], +[-37.7302159167, 175.2782282833, "3"], +[-37.7303462667, 175.27814555, "1"], +[-37.7285116, 175.2800836833, "42"], +[-37.7301395, 175.2783110833, "5"], +[-37.7286996667, 175.2802477, "38"], +[-37.7298935, 175.2790241167, "15"], +[-37.7299925667, 175.2786546167, "9"], +[-37.7300710833, 175.2784098, "7"], +[-37.7289679667, 175.2802105, "34"], +[-37.7288263833, 175.2802483667, "36"], +[-37.7292099, 175.2800873333, "30"], +[-37.7291542167, 175.2797859, "29"], +[-37.7298197167, 175.2792086167, "17"], +[-37.72963455, 175.2794436, "21"], +[-37.7293244667, 175.2799953833, "28"], +[-37.7288611, 175.2799322167, "33"], +[-37.7283602667, 175.2791071333, "47"], +[-37.7290032667, 175.2798660167, "31"], +[-37.72816995, 175.2790635167, "58"], +[-37.7290846, 175.2801541, "32"], +[-37.72814115, 175.2789562, "60"], +[-37.7281151667, 175.27885075, "62"], +[-37.7297134667, 175.2797103833, "22"], +[-37.7294446, 175.27990715, "26"], +[-37.7295874833, 175.2798090667, "24"], +[-37.7298226833, 175.27960585, "20"], +[-37.7287369833, 175.2799422833, "35"], +[-37.7293939833, 175.27963425, "25"], +[-37.7297411333, 175.2793301, "19"], +[-37.7299579167, 175.2787893667, "11"], +[-37.7299221333, 175.2789118667, "13"], +[-37.7506414167, 175.2398618333, "12"], +[-37.7508276333, 175.2401813167, "2"], +[-37.7511162333, 175.2399850333, "1"], +[-37.7505063667, 175.2392275667, "19"], +[-37.75090455, 175.2396212333, "9"], +[-37.7503625833, 175.2394156333, "20"], +[-37.7735993, 175.24231625, "89B"], +[-37.7514445833, 175.2355153833, "378"], +[-37.7767944333, 175.2465944667, "42"], +[-37.7753356833, 175.2450568333, "59"], +[-37.7749650833, 175.2445768833, "65"], +[-37.7680636, 175.2382705167, "162"], +[-37.77438365, 175.2448934833, "74A"], +[-37.7737145333, 175.2430170333, "83A"], +[-37.7751941333, 175.2454942833, "64"], +[-37.77424215, 175.2436580333, "75"], +[-37.77416105, 175.2442173333, "80"], +[-37.7740364, 175.2440384833, "82"], +[-37.7739049, 175.24387635, "84"], +[-37.77293825, 175.2425481667, "98"], +[-37.76401545, 175.2358205167, "218"], +[-37.7743627167, 175.24381185, "73A"], +[-37.7787178833, 175.2473670167, "19"], +[-37.7786829667, 175.2479194833, "20"], +[-37.77851825, 175.2478130167, "22"], +[-37.75861645, 175.2321577, "284"], +[-37.7600103333, 175.2323409667, "273"], +[-37.7728398667, 175.2418167833, "101"], +[-37.77265265, 175.2421995, "100"], +[-37.772583, 175.2415221, "103"], +[-37.7727283333, 175.2417224, "103A"], +[-37.7725081, 175.2414242, "105"], +[-37.7723711167, 175.2412526833, "107"], +[-37.7722335167, 175.2410674833, "109"], +[-37.7719867167, 175.24074195, "111"], +[-37.7720196, 175.2404775167, "113A"], +[-37.7718793167, 175.2406194667, "113"], +[-37.7686469, 175.2386304667, "158"], +[-37.7683237, 175.2384138, "160"], +[-37.77478225, 175.2443367667, "67"], +[-37.7746748833, 175.2441942, "69"], +[-37.7745622833, 175.2440635667, "71"], +[-37.77446475, 175.2439393833, "73"], +[-37.77454375, 175.2446875, "74"], +[-37.7744023167, 175.2445243667, "76"], +[-37.77412435, 175.2435944833, "77"], +[-37.7742871, 175.2443582, "78"], +[-37.7738049167, 175.2431555833, "79"], +[-37.7736209333, 175.2428980333, "83"], +[-37.7737740167, 175.2423902667, "85A"], +[-37.77386345, 175.2422331, "85B"], +[-37.77369385, 175.24392255, "86"], +[-37.77356785, 175.2434260833, "88"], +[-37.7734395167, 175.2432654667, "90"], +[-37.7735009667, 175.24271565, "85"], +[-37.7734112667, 175.2425826333, "89"], +[-37.7734232667, 175.2421926167, "91A"], +[-37.7733105, 175.2424735667, "91"], +[-37.7733062833, 175.2430866167, "92"], +[-37.7733154667, 175.2420749667, "93A"], +[-37.7732162, 175.242339, "93"], +[-37.7731696833, 175.2428986833, "94"], +[-37.7731288167, 175.2422461, "95"], +[-37.7730344833, 175.2427336167, "96"], +[-37.7751818833, 175.2448743667, "61"], +[-37.7749271833, 175.2451773167, "68"], +[-37.7747856833, 175.245018, "70"], +[-37.7794296167, 175.2486026333, "12"], +[-37.7789443833, 175.2481522667, "14"], +[-37.7783863333, 175.2477011, "24"], +[-37.7782181667, 175.2475489167, "26"], +[-37.7780574, 175.2474468333, "28"], +[-37.7778960667, 175.2473376167, "30"], +[-37.7779431333, 175.2468548333, "27"], +[-37.77776645, 175.2467381, "29"], +[-37.7776207, 175.2466390833, "31"], +[-37.77773745, 175.2472371667, "32"], +[-37.7774736167, 175.2465384333, "33"], +[-37.7775734667, 175.2471220167, "34"], +[-37.7773064667, 175.2469519167, "38"], +[-37.7771332, 175.2463908667, "39A"], +[-37.7772814333, 175.2465231, "39B"], +[-37.7774345167, 175.2462567667, "39C"], +[-37.7772762333, 175.2461433167, "39E"], +[-37.777209, 175.2464658167, "39"], +[-37.7769070333, 175.2466781333, "40"], +[-37.7771375833, 175.2461269, "41B"], +[-37.7769495167, 175.2463167667, "41"], +[-37.77676165, 175.2460584333, "43"], +[-37.7766270167, 175.2464947, "44"], +[-37.7764859667, 175.2459421833, "45"], +[-37.7764577, 175.2463808667, "48"], +[-37.7763288667, 175.2458557167, "49"], +[-37.7762707167, 175.24626405, "50"], +[-37.7763969167, 175.2455321667, "51A"], +[-37.7761823167, 175.24575195, "51"], +[-37.7761165333, 175.2461570167, "52"], +[-37.7760254, 175.2456902667, "53"], +[-37.7759457833, 175.2460623833, "54"], +[-37.7758161833, 175.24557375, "55"], +[-37.7757914333, 175.2459483167, "56"], +[-37.77563175, 175.2458414167, "62"], +[-37.7798144333, 175.2489114333, "6"], +[-37.7750611333, 175.2453486333, "66"], +[-37.7506747167, 175.2365894, "394"], +[-37.75092565, 175.2362295833, "388"], +[-37.7513250667, 175.23584165, "382"], +[-37.7754052333, 175.2456871333, "64A"], +[-37.7611928, 175.2329566333, "255"], +[-37.7717625, 175.2404764333, "115"], +[-37.7716703167, 175.2403377167, "117"], +[-37.77155385, 175.2401828, "119A"], +[-37.7716175333, 175.2399976667, "119B"], +[-37.7717193, 175.2398125333, "119C"], +[-37.7718267, 175.23959915, "119D"], +[-37.7714275, 175.2400330167, "121"], +[-37.7712208, 175.23982045, "123B"], +[-37.7713189667, 175.2399126333, "123C"], +[-37.7704892833, 175.2392067167, "129A"], +[-37.7706097167, 175.2390346333, "129B"], +[-37.7707535833, 175.2387879, "129C"], +[-37.7703391667, 175.2390871167, "131A"], +[-37.7704246167, 175.2388268167, "131B"], +[-37.7705203, 175.2386591167, "131C"], +[-37.7701722667, 175.2389937667, "133A"], +[-37.77031905, 175.2388540167, "133B"], +[-37.7704197, 175.2386774833, "133C"], +[-37.7705145333, 175.2385353, "133D"], +[-37.7704888333, 175.23817665, "135A"], +[-37.7705183667, 175.2381885, "135B"], +[-37.77027955, 175.2384375333, "137"], +[-37.7700983, 175.2387407333, "139A"], +[-37.7699143333, 175.2388607167, "139"], +[-37.7697721833, 175.2387614, "141"], +[-37.76963595, 175.2385491667, "143A"], +[-37.7697861, 175.2383753167, "143B"], +[-37.7699632833, 175.2381271833, "143C"], +[-37.7699334667, 175.2380585167, "143"], +[-37.7666447167, 175.2656400667, "50"], +[-37.7663117, 175.2655254333, "56"], +[-37.77040075, 175.2670069167, "10"], +[-37.7690452, 175.2663562667, "15"], +[-37.7703396, 175.2674360167, "16"], +[-37.7686936, 175.26582055, "25"], +[-37.7673076, 175.2653854333, "39"], +[-37.7664627833, 175.2655701667, "54"], +[-37.7662676667, 175.2650054667, "53"], +[-37.7651057167, 175.2651097833, "70"], +[-37.7705065667, 175.2675818833, "6A"], +[-37.7705925333, 175.2669974667, "6"], +[-37.7648819, 175.2641590833, "71"], +[-37.7647864667, 175.2645032333, "71A"], +[-37.7692077, 175.2661928333, "11"], +[-37.7674934833, 175.26586855, "40A"], +[-37.7683628833, 175.2658984667, "27A"], +[-37.7685904833, 175.2654038, "27"], +[-37.7685850833, 175.2660044, "25A"], +[-37.7687301667, 175.2652031667, "23"], +[-37.767858, 175.2655803833, "33"], +[-37.7687164667, 175.2660931, "19"], +[-37.7644671, 175.2643227, "75A"], +[-37.7642204333, 175.2628491, "100"], +[-37.76427455, 175.2626675333, "102"], +[-37.7643431667, 175.26251765, "104"], +[-37.7649467167, 175.2645852667, "69"], +[-37.7645740833, 175.2641309833, "75"], +[-37.7643345167, 175.26411585, "77A"], +[-37.7642926, 175.2638404167, "77"], +[-37.7647636667, 175.2638660833, "79"], +[-37.7643827333, 175.2636049833, "81"], +[-37.7643071667, 175.2646655, "82"], +[-37.7645431167, 175.26312535, "85"], +[-37.7640569333, 175.26432465, "86"], +[-37.7646262, 175.2628742167, "87"], +[-37.7644604833, 175.2633883833, "83"], +[-37.7639439167, 175.2640762, "88"], +[-37.76393115, 175.2637790333, "90"], +[-37.7640152167, 175.2634429667, "94"], +[-37.76408365, 175.2632476833, "96"], +[-37.7641513, 175.2630526333, "98A"], +[-37.7639770167, 175.2629807667, "98"], +[-37.7660598833, 175.26496635, "55"], +[-37.7659007167, 175.2649028, "57"], +[-37.7657390167, 175.2648553833, "59"], +[-37.7655755833, 175.26478935, "61"], +[-37.7654067167, 175.2647405, "63"], +[-37.7652237333, 175.2647034833, "65A"], +[-37.7652806833, 175.26471965, "65B"], +[-37.76508245, 175.2646461667, "67"], +[-37.7649353167, 175.2650813833, "72"], +[-37.7691415667, 175.2660008667, "17"], +[-37.7696680833, 175.2668393667, "20"], +[-37.7688925333, 175.2656438, "21"], +[-37.7701908167, 175.26701585, "14"], +[-37.7701649167, 175.2672995, "18"], +[-37.7690885833, 175.2668347, "22"], +[-37.7686252667, 175.2665527333, "28"], +[-37.76835215, 175.2656129833, "29"], +[-37.7683925833, 175.2663786167, "30"], +[-37.76819045, 175.2658102, "31A"], +[-37.7679625333, 175.2656765167, "31B"], +[-37.76821155, 175.2662641833, "32"], +[-37.7676380833, 175.26552055, "35"], +[-37.7680586667, 175.2661674167, "34"], +[-37.7678916667, 175.2660628167, "36"], +[-37.7674346167, 175.2654522667, "37"], +[-37.7671441833, 175.2653203333, "41"], +[-37.7708690333, 175.2670033, "2"], +[-37.7673381333, 175.2658417833, "42"], +[-37.7670232833, 175.2652860333, "43"], +[-37.7671522333, 175.26578245, "44"], +[-37.7668472333, 175.2652054333, "45"], +[-37.7669652667, 175.2657066, "46"], +[-37.7667941833, 175.2656776667, "48"], +[-37.7666729333, 175.2651356333, "49"], +[-37.7706930667, 175.26720335, "4"], +[-37.7661457167, 175.2654607333, "58"], +[-37.7659843333, 175.2654157833, "60"], +[-37.765823, 175.2653468833, "62"], +[-37.7656518333, 175.26529285, "64"], +[-37.7654728, 175.26525075, "66"], +[-37.7653032667, 175.2651894167, "68"], +[-37.77025105, 175.2664687, "7"], +[-37.7695109333, 175.2664195333, "9"], +[-37.7676952667, 175.2662330667, "38"], +[-37.7677189, 175.2660609667, "38A"], +[-37.7677518, 175.2659503333, "38B"], +[-37.7691710833, 175.2664324333, "11B"], +[-37.7692773333, 175.2664959, "11A"], +[-37.7646192, 175.2642506667, "73"], +[-37.764643, 175.26442775, "73A"], +[-37.7664720333, 175.2651414, "51"], +[-37.7664516, 175.2648186833, "51A"], +[-37.7646830333, 175.2635035667, "83A"], +[-37.7641483167, 175.2644926, "84"], +[-37.7637253667, 175.26350715, "92"], +[-37.72936845, 175.2379374833, "18"], +[-37.7292613667, 175.2380762, "14"], +[-37.7289811333, 175.2377630333, "16"], +[-37.7290664, 175.2381792333, "12"], +[-37.72927985, 175.23827585, "8"], +[-37.7295515833, 175.2385799833, "6"], +[-37.7293400833, 175.2386431167, "4"], +[-37.7292004167, 175.2387610667, "2"], +[-37.7299416833, 175.2386188833, "7"], +[-37.7298342, 175.2384382333, "11"], +[-37.7298635833, 175.2387847667, "5"], +[-37.7296766333, 175.2389209, "3"], +[-37.7294534, 175.2389617333, "1"], +[-37.7297048333, 175.2383093333, "13"], +[-37.7300663667, 175.2384698167, "9"], +[-37.72957125, 175.23813, "15"], +[-37.729472, 175.2379714833, "17"], +[-37.81292915, 175.2865839, "10"], +[-37.8126276833, 175.2867043333, "11"], +[-37.812061, 175.2872618, "1"], +[-37.81190745, 175.2869453, "2"], +[-37.8120085833, 175.2867787167, "4A"], +[-37.81218355, 175.2871422833, "3"], +[-37.8122059833, 175.2866696, "4"], +[-37.8122953667, 175.2870254667, "5"], +[-37.8124818333, 175.2863613167, "6A"], +[-37.8123272167, 175.2864923167, "6"], +[-37.8124060333, 175.28691975, "7"], +[-37.8125348333, 175.2865413833, "8A"], +[-37.8128055167, 175.2863559167, "8B"], +[-37.8125157, 175.2868284833, "9"], +[-37.7369343, 175.2839935833, "70"], +[-37.7373013167, 175.2835629667, "76"], +[-37.7354964667, 175.2872337667, "36"], +[-37.737064, 175.2838516333, "72"], +[-37.7371866667, 175.2836921333, "74"], +[-37.7351443333, 175.2875128667, "57"], +[-37.7356591, 175.2876753667, "63"], +[-37.73547945, 175.2876481667, "61"], +[-37.7349793333, 175.2874577667, "55"], +[-37.7332806833, 175.2870679167, "29"], +[-37.7329353, 175.2866202167, "19"], +[-37.73269095, 175.2868569833, "17"], +[-37.73480285, 175.2874056833, "53"], +[-37.7328719667, 175.2869552, "21"], +[-37.7344738, 175.2868468333, "24"], +[-37.7336513833, 175.2864526333, "14"], +[-37.7330204667, 175.2869884167, "23"], +[-37.7336818, 175.2868772333, "35"], +[-37.7337252333, 175.2870915, "37"], +[-37.7327394, 175.2858904667, "5"], +[-37.7332905333, 175.2867314, "27"], +[-37.7331170333, 175.2866830667, "25"], +[-37.7339985667, 175.2865475667, "18"], +[-37.73257485, 175.2866119167, "13"], +[-37.7341721833, 175.2865884167, "20"], +[-37.73277145, 175.2861077833, "7"], +[-37.734328, 175.2866825167, "22"], +[-37.7353118167, 175.28758235, "59"], +[-37.73279815, 175.2863107167, "9"], +[-37.7328564333, 175.2864864167, "11"], +[-37.7334068333, 175.28709695, "31"], +[-37.7335118, 175.2867918167, "33"], +[-37.7330145333, 175.2856620167, "4"], +[-37.7330547667, 175.2858938333, "6"], +[-37.7330974833, 175.2861363167, "8"], +[-37.7332733, 175.2863478, "10"], +[-37.73347215, 175.28640415, "12"], +[-37.73390555, 175.2869483833, "39"], +[-37.73417355, 175.2870600333, "43"], +[-37.7341122833, 175.2872954, "45"], +[-37.7349793333, 175.2870499167, "30"], +[-37.73515, 175.2871016833, "32"], +[-37.7343191333, 175.2872350167, "47"], +[-37.7344499667, 175.2873031333, "49"], +[-37.7346261833, 175.2873621, "51"], +[-37.73383055, 175.28650285, "16"], +[-37.7346379167, 175.2869482, "26"], +[-37.7348056, 175.2870087, "28"], +[-37.7353235333, 175.28715355, "34"], +[-37.7375288333, 175.2838457833, "85"], +[-37.7365553833, 175.2857948667, "75"], +[-37.7364299667, 175.2847761333, "62"], +[-37.73667305, 175.2842150667, "66"], +[-37.7367922, 175.2841246, "68"], +[-37.7360583167, 175.286474, "46"], +[-37.7360175833, 175.2866956667, "44"], +[-37.7363264833, 175.286775, "69"], +[-37.7359733333, 175.2869296167, "42"], +[-37.7358962833, 175.2871624833, "40"], +[-37.7362129167, 175.2858265667, "52"], +[-37.7361660667, 175.2860273833, "50"], +[-37.73610905, 175.2862444, "48"], +[-37.7364527667, 175.2862296, "71"], +[-37.7364999333, 175.2860142167, "73"], +[-37.7362830167, 175.2855335833, "54"], +[-37.7363064, 175.2853567667, "56"], +[-37.7358454167, 175.28764965, "65"], +[-37.7363831, 175.2849834667, "60"], +[-37.73634315, 175.285168, "58"], +[-37.7366698667, 175.2851872, "77"], +[-37.7367007667, 175.2849650667, "79"], +[-37.7356844, 175.2872719833, "38"], +[-37.7326815833, 175.285482, "1"], +[-37.73297535, 175.2855133833, "2"], +[-37.7327292, 175.2856830333, "3"], +[-37.7339488167, 175.2872177333, "41"], +[-37.7362668333, 175.287116, "67"], +[-37.73675135, 175.2847275167, "81"], +[-37.73740705, 175.2840093167, "83"], +[-37.7326084667, 175.2867620667, "15"], +[-37.7712667333, 175.2769124167, "10"], +[-37.7719324, 175.2763720667, "1"], +[-37.7717717333, 175.2764758333, "3"], +[-37.7715300333, 175.2767140833, "7"], +[-37.771347, 175.2768473167, "9"], +[-37.7719066333, 175.2767667333, "2"], +[-37.7718451667, 175.27691925, "4"], +[-37.77164705, 175.2765548667, "5"], +[-37.7717236167, 175.27697485, "6"], +[-37.7715990667, 175.2769281, "8"], +[-37.7719974167, 175.2770953333, "4A"], +[-37.7617344667, 175.3083429333, "13"], +[-37.7620848833, 175.3083454833, "9"], +[-37.7624331833, 175.3086196833, "6"], +[-37.7622781833, 175.3083422833, "7"], +[-37.7622423667, 175.30862545, "8"], +[-37.7617360833, 175.3086601667, "12"], +[-37.7618853167, 175.30835485, "11"], +[-37.7615206833, 175.3087034833, "14"], +[-37.7613235833, 175.3088395333, "16"], +[-37.7611032, 175.3087063167, "17"], +[-37.7611776, 175.30906035, "18"], +[-37.7608298167, 175.3087287333, "19"], +[-37.7609637833, 175.3089525, "21"], +[-37.7610949667, 175.3092909167, "20"], +[-37.7628319, 175.3085848, "2"], +[-37.7608891333, 175.30917115, "23"], +[-37.7610356833, 175.3095130167, "22"], +[-37.7608225, 175.3093627, "25"], +[-37.7626650167, 175.30831795, "3"], +[-37.7626359333, 175.3086144, "4"], +[-37.7624525167, 175.3083326, "5"], +[-37.7832375167, 175.2249834667, "8"], +[-37.78289375, 175.2256778833, "1"], +[-37.7827580167, 175.2253832833, "2"], +[-37.7830198167, 175.2255794, "3"], +[-37.7829025167, 175.2252495, "4"], +[-37.7831818333, 175.2254550833, "5"], +[-37.7830431167, 175.2251334833, "6"], +[-37.7833544333, 175.2253355167, "7"], +[-37.7412393, 175.2813446667, "1"], +[-37.7413448333, 175.28125175, "3"], +[-37.74148235, 175.2811372, "5"], +[-37.7416247167, 175.2810057833, "7"], +[-37.74178, 175.2809031667, "9"], +[-37.7419571, 175.2808353167, "11"], +[-37.7421189, 175.2808520167, "13"], +[-37.7410779833, 175.2810897667, "2"], +[-37.7412156, 175.28096955, "4"], +[-37.7413438833, 175.2808660333, "6"], +[-37.7414594833, 175.2807224, "8"], +[-37.7416010333, 175.28063065, "10"], +[-37.7417466, 175.2805617833, "12"], +[-37.7423308833, 175.2809962667, "15"], +[-37.7423533167, 175.2807310333, "17"], +[-37.7424683, 175.2804848167, "20"], +[-37.74231855, 175.2803734667, "18"], +[-37.7988693333, 175.2466339, "5"], +[-37.7991195333, 175.2466799, "6"], +[-37.7991543167, 175.2464727667, "4"], +[-37.7992598667, 175.2474819833, "10A"], +[-37.7992134, 175.2471761833, "10"], +[-37.7987055667, 175.2471909167, "11"], +[-37.7990437, 175.2471013167, "12A"], +[-37.7990514167, 175.2474176333, "12B"], +[-37.79891495, 175.2471203833, "14"], +[-37.7988839, 175.24626525, "1B"], +[-37.7989243667, 175.24599125, "1"], +[-37.799157, 175.2463438167, "2"], +[-37.79889805, 175.2464419167, "3"], +[-37.7988035833, 175.2468357833, "7"], +[-37.7991332, 175.2469115167, "8A"], +[-37.7993316, 175.2470092, "8B"], +[-37.7987828667, 175.2469924167, "9"], +[-37.7775187333, 175.2980722, "1-23"], +[-37.7778173167, 175.2982364333, "2-24"], +[-37.71977865, 175.2494524667, "12"], +[-37.7203251333, 175.24880235, "1"], +[-37.72041715, 175.2491003167, "2"], +[-37.7203044333, 175.2492013667, "4"], +[-37.7195412833, 175.2493941833, "14"], +[-37.7199343333, 175.2491201667, "7"], +[-37.7200640333, 175.2490246833, "5"], +[-37.7201652833, 175.2493362, "6"], +[-37.7202120333, 175.2489072333, "3"], +[-37.7196346333, 175.2489870833, "9"], +[-37.7940975167, 175.2347205167, "2"], +[-37.7946154667, 175.23593815, "10"], +[-37.793904, 175.2356717333, "11"], +[-37.7945550333, 175.2355599167, "12"], +[-37.7939306333, 175.23589975, "13"], +[-37.7944628667, 175.23539375, "14"], +[-37.7939553667, 175.23607865, "15"], +[-37.79458895, 175.23524415, "16"], +[-37.794106, 175.2361672, "17"], +[-37.7942716, 175.2362330833, "19"], +[-37.7945922, 175.2363835, "23"], +[-37.7944441, 175.236316, "21"], +[-37.7949557167, 175.2361616333, "27"], +[-37.7949292833, 175.23588395, "29"], +[-37.7948816833, 175.2356376333, "31"], +[-37.7949201333, 175.2364079833, "25"], +[-37.7943080167, 175.2350284667, "2A"], +[-37.7948766833, 175.2353947, "33"], +[-37.7948845333, 175.2351755667, "35"], +[-37.79472605, 175.2352012, "37"], +[-37.7938527667, 175.2351583, "3"], +[-37.7941995167, 175.2351998167, "4"], +[-37.7938770167, 175.2354030167, "5"], +[-37.79422225, 175.2354428667, "6"], +[-37.7936221667, 175.2354825, "7"], +[-37.7943457833, 175.2356502167, "8"], +[-37.7936558167, 175.2356154, "9"], +[-37.80350955, 175.3210327, "14A"], +[-37.8034261333, 175.3218570167, "22"], +[-37.8036996, 175.3206253667, "10A"], +[-37.8035538833, 175.3219610167, "22A"], +[-37.8034111, 175.3217198, "22B"], +[-37.8036211667, 175.3198682167, "2"], +[-37.8036928667, 175.3207673, "12A"], +[-37.8024697, 175.32149975, "29A"], +[-37.8036526333, 175.3195235333, "2A"], +[-37.8035597833, 175.3204764833, "10"], +[-37.8033184333, 175.3201667833, "11"], +[-37.8034864833, 175.3206453667, "12"], +[-37.8028595833, 175.3204293667, "13A"], +[-37.8029592, 175.3201143167, "13"], +[-37.8034077, 175.3208316667, "14"], +[-37.8032444833, 175.3204766667, "15"], +[-37.8031078833, 175.3207113667, "17"], +[-37.8032812, 175.3210442167, "16"], +[-37.80298315, 175.3209265833, "19"], +[-37.8030636333, 175.32145125, "20"], +[-37.8033662667, 175.3219616667, "24"], +[-37.8028771667, 175.3211504167, "25"], +[-37.8031506833, 175.3218258667, "26"], +[-37.8029248167, 175.32173155, "26A"], +[-37.8027859167, 175.3220837833, "30"], +[-37.8024469333, 175.3216940833, "31A"], +[-37.8025303333, 175.3218681667, "31"], +[-37.80322615, 175.3224967333, "32"], +[-37.802415, 175.3220795, "33"], +[-37.8031677333, 175.3226071, "34"], +[-37.8028853, 175.3225280667, "36A"], +[-37.8026759667, 175.3223082667, "36"], +[-37.8027106167, 175.3225720833, "38A"], +[-37.8025831833, 175.3224703667, "38"], +[-37.8033684333, 175.3196210333, "3"], +[-37.8026439, 175.3227252667, "40A"], +[-37.8025057333, 175.3226254333, "40"], +[-37.8024219833, 175.3228160333, "42"], +[-37.80300085, 175.3196189333, "5"], +[-37.8039294, 175.3201330167, "6"], +[-37.8027351167, 175.3194575833, "7"], +[-37.8035929333, 175.3202362833, "8"], +[-37.8033331, 175.3199239833, "9"], +[-37.8031914, 175.32122765, "18"], +[-37.80346055, 175.3214584667, "18A"], +[-37.8033016833, 175.3216415, "20A"], +[-37.8028533167, 175.3219031, "28"], +[-37.8026362667, 175.3216366167, "29"], +[-37.8030746167, 175.3220602167, "28A"], +[-37.8027824, 175.3213730167, "27"], +[-37.802631, 175.3212205667, "27A"], +[-37.7361451667, 175.2742142167, "6"], +[-37.7362694167, 175.2738652833, "4"], +[-37.7363404667, 175.2735925167, "2"], +[-37.7359945667, 175.2734338167, "1"], +[-37.73596155, 175.2736146833, "3"], +[-37.7359075667, 175.2754286333, "14"], +[-37.73587415, 175.2757395667, "16"], +[-37.73577875, 175.2759916833, "18"], +[-37.7351200833, 175.27646365, "26"], +[-37.7350695333, 175.2767288667, "28"], +[-37.7348000167, 175.2764642667, "23"], +[-37.7347682, 175.27669625, "25"], +[-37.7347642, 175.2768943667, "27"], +[-37.7356536333, 175.2761578, "20"], +[-37.7355022333, 175.2762889833, "22"], +[-37.7353340333, 175.27635715, "24"], +[-37.7356972, 175.2747068833, "9"], +[-37.7356474333, 175.2749322333, "11"], +[-37.7356161, 175.2751410167, "13"], +[-37.7355977333, 175.2753730333, "15"], +[-37.7355613, 175.2756100833, "17"], +[-37.73544315, 175.2758785333, "19"], +[-37.7352396333, 175.2759115333, "21"], +[-37.73455135, 175.27826155, "45"], +[-37.7346624833, 175.2779425333, "47"], +[-37.7345759167, 175.2778403833, "49"], +[-37.73434745, 175.2781133167, "51"], +[-37.73442365, 175.277674, "53"], +[-37.7341748667, 175.27797605, "55"], +[-37.7343239167, 175.2784848667, "56"], +[-37.73544525, 175.2783134833, "44"], +[-37.7353447333, 175.2785012833, "46"], +[-37.73520415, 175.2786257, "48"], +[-37.73517555, 175.2782015333, "39"], +[-37.7349533, 175.27836545, "41"], +[-37.7347329167, 175.27834575, "43"], +[-37.7352277333, 175.2774958333, "34"], +[-37.7353736667, 175.27768185, "36"], +[-37.7354565167, 175.2778682833, "38"], +[-37.7347941167, 175.2771141167, "29"], +[-37.7349121667, 175.2775027667, "33"], +[-37.7350008167, 175.27769435, "35"], +[-37.73512515, 175.2778771833, "37"], +[-37.7341201333, 175.2783316833, "58"], +[-37.7336851667, 175.27801445, "62"], +[-37.7334460167, 175.27794945, "64"], +[-37.7340275333, 175.277857, "57"], +[-37.7338543667, 175.2777470167, "59"], +[-37.7337009167, 175.2776376833, "61"], +[-37.7334942833, 175.2776209167, "63"], +[-37.73507265, 175.2769917667, "30"], +[-37.7351204667, 175.2772515, "32"], +[-37.7359133, 175.2751508167, "12"], +[-37.7360236, 175.2745119667, "8"], +[-37.7348414833, 175.2787167167, "52"], +[-37.7348377167, 175.2772917833, "31"], +[-37.7350470167, 175.2786924833, "50"], +[-37.735486, 175.2781559667, "42"], +[-37.7895614333, 175.2926715, "16"], +[-37.7896809167, 175.2934746167, "28"], +[-37.78980945, 175.2913601, "8"], +[-37.7895450833, 175.2913064167, "7"], +[-37.78955745, 175.2924642333, "14"], +[-37.7897632833, 175.29155465, "10"], +[-37.78972365, 175.291719, "12"], +[-37.7892434667, 175.2925443, "13"], +[-37.7891842833, 175.2927827167, "15"], +[-37.7891032333, 175.2931510833, "17A"], +[-37.7890812833, 175.2932343667, "17B"], +[-37.78912255, 175.2930759, "17"], +[-37.7895306333, 175.2928431333, "20"], +[-37.78876925, 175.29315075, "19"], +[-37.78998945, 175.2906515333, "4"], +[-37.7879689333, 175.2929463667, "21A"], +[-37.78949505, 175.2929852167, "22"], +[-37.7881184, 175.2930434333, "23"], +[-37.7894549667, 175.2931673333, "24"], +[-37.7882919667, 175.2931423, "25"], +[-37.78941495, 175.2933314, "26"], +[-37.7884578, 175.29324145, "27"], +[-37.7888580667, 175.2934293833, "29A"], +[-37.7885529333, 175.2933592, "29B"], +[-37.7885076, 175.2936110667, "31A"], +[-37.7884136667, 175.2935902833, "31B"], +[-37.7889556667, 175.29373045, "31"], +[-37.78878965, 175.2943105167, "33"], +[-37.7860528833, 175.3002048, "14"], +[-37.7861292167, 175.2997493333, "10"], +[-37.7858219833, 175.2998719167, "11"], +[-37.7860796833, 175.2999906833, "12"], +[-37.7857139833, 175.30008285, "13"], +[-37.7857168333, 175.3003151333, "15"], +[-37.7859444667, 175.30042545, "16"], +[-37.7856981333, 175.30050105, "17"], +[-37.7858812, 175.3006196167, "18"], +[-37.7856788833, 175.3007158167, "19"], +[-37.78581845, 175.3004214, "20"], +[-37.78641005, 175.2987306833, "2"], +[-37.7863152333, 175.2990172167, "4"], +[-37.7859545667, 175.2992292667, "5"], +[-37.7862648167, 175.299296, "6"], +[-37.7858974, 175.2994535667, "7"], +[-37.7861938, 175.2994992167, "8"], +[-37.7858641167, 175.2996452667, "9"], +[-37.7918663667, 175.2336884333, "10"], +[-37.7908700333, 175.2336372667, "11"], +[-37.7917218, 175.2337567333, "12"], +[-37.7907055833, 175.2336377333, "13"], +[-37.7915320167, 175.2338831, "14"], +[-37.7905232, 175.2336204, "15"], +[-37.7912969667, 175.2339792167, "16"], +[-37.7903593667, 175.2335921667, "17"], +[-37.7910539167, 175.2340234, "18"], +[-37.7903132167, 175.2338440667, "19"], +[-37.79081105, 175.2340616667, "20"], +[-37.7906145667, 175.2340668833, "22"], +[-37.7904444833, 175.2341247833, "24"], +[-37.7902943667, 175.2340969667, "26"], +[-37.7925382, 175.23367895, "2"], +[-37.7923875, 175.23368455, "4"], +[-37.7919484167, 175.2332551333, "3"], +[-37.7922132833, 175.2336584833, "6"], +[-37.79139755, 175.2335217833, "5"], +[-37.7912186667, 175.2335620667, "7"], +[-37.7920469833, 175.2336479, "8"], +[-37.7910441667, 175.2336083, "9"], +[-37.7937441, 175.2537831167, "22A"], +[-37.7937698, 175.2534592, "22D"], +[-37.7935144333, 175.2541598833, "19"], +[-37.7928864333, 175.2547094333, "15A"], +[-37.7932993333, 175.2541366, "17"], +[-37.7942376, 175.2542769667, "27"], +[-37.7948328833, 175.25395285, "38"], +[-37.7920760833, 175.2541996833, "1A"], +[-37.7936080333, 175.2543084833, "21B"], +[-37.7935920167, 175.2544704, "21C"], +[-37.79324955, 175.2545790167, "17A"], +[-37.7946931833, 175.2539361667, "1/36"], +[-37.7946979333, 175.25382225, "36B"], +[-37.7947127, 175.2537215333, "36C"], +[-37.7947255, 175.2536127667, "36D"], +[-37.7934732667, 175.2537367167, "18A-18D"], +[-37.79264595, 175.2533491667, "4B"], +[-37.7943262167, 175.2536350167, "4/26"], +[-37.7929792167, 175.2536406333, "10"], +[-37.7926879667, 175.2547003667, "11A"], +[-37.7927462167, 175.2540501, "11"], +[-37.7930820833, 175.2536777, "12"], +[-37.7928462333, 175.2540646833, "13"], +[-37.7932005333, 175.2536942833, "14"], +[-37.7929495667, 175.2544099333, "15B"], +[-37.79306475, 175.2547333, "15C"], +[-37.7930524167, 175.2548253167, "15D"], +[-37.7930925667, 175.2540928833, "15"], +[-37.7932761, 175.2548298333, "17B"], +[-37.7921019667, 175.253938, "1"], +[-37.7936227833, 175.2541691667, "21"], +[-37.79377595, 175.2541959, "23"], +[-37.7924999833, 175.2535725333, "2A"], +[-37.7924073167, 175.2535572, "2"], +[-37.7938866833, 175.2538045167, "24"], +[-37.7943883667, 175.2543035167, "29"], +[-37.7945588, 175.25431995, "31"], +[-37.7947635, 175.2543538833, "33"], +[-37.7945588833, 175.2539205333, "34"], +[-37.7921960333, 175.2543679333, "3A"], +[-37.79211715, 175.2545488833, "3B"], +[-37.7920201, 175.2547217833, "3C"], +[-37.7923027167, 175.2539848, "3"], +[-37.7926241, 175.2536001, "4A"], +[-37.7949323667, 175.2540025167, "40"], +[-37.7924226667, 175.2540032, "5"], +[-37.7927366167, 175.2536262833, "6"], +[-37.7925294833, 175.2540075667, "7"], +[-37.7928516667, 175.2536302333, "8"], +[-37.7926364, 175.2540366167, "9"], +[-37.7944235833, 175.25381915, "32B"], +[-37.79375945, 175.25354395, "22C"], +[-37.7944204667, 175.2538936, "32A"], +[-37.7944396667, 175.2536542, "32C"], +[-37.7944466, 175.2535813833, "32D"], +[-37.7936191667, 175.2536711833, "20B"], +[-37.7936149167, 175.2537677667, "20A"], +[-37.7936384333, 175.25345365, "20D"], +[-37.7936325167, 175.2535359333, "20C"], +[-37.7934361333, 175.2542691167, "19B"], +[-37.7934200167, 175.2544869, "19D"], +[-37.7934262333, 175.2543899333, "19C"], +[-37.79344705, 175.2541496833, "19A"], +[-37.7941116, 175.25423615, "25"], +[-37.7933400667, 175.2537217833, "16A-16D"], +[-37.79400835, 175.2535213333, "9/26"], +[-37.7940630167, 175.2535337667, "10/26"], +[-37.79413545, 175.2535446667, "11/26"], +[-37.79398185, 175.25382285, "6/26"], +[-37.7941115167, 175.2538441333, "8/26"], +[-37.7942948833, 175.2538842, "1/26"], +[-37.7943034333, 175.2537971833, "2/26"], +[-37.7943162, 175.25371135, "3/26"], +[-37.7943358, 175.2535395167, "5/26"], +[-37.7949274, 175.2543648333, "35"], +[-37.7949085167, 175.2545205667, "35A"], +[-37.7937492, 175.2536843833, "22B"], +[-37.7940323833, 175.2538308833, "7/26"], +[-37.7259430333, 175.2512786333, "29"], +[-37.72569185, 175.2515367833, "28"], +[-37.7278954667, 175.2522907, "10"], +[-37.7275818, 175.2517189333, "11"], +[-37.7277109, 175.25222625, "12"], +[-37.724858, 175.2509319833, "38"], +[-37.7247013833, 175.2508640167, "40"], +[-37.7246031333, 175.2507661333, "42"], +[-37.7249469167, 175.25053925, "43"], +[-37.72471695, 175.2504738167, "46"], +[-37.7247568833, 175.2502178667, "48"], +[-37.7248096667, 175.2499939, "50"], +[-37.724875, 175.2497608667, "52"], +[-37.7248991833, 175.2495082833, "54"], +[-37.7248976167, 175.2491563333, "56"], +[-37.7248816, 175.2490072333, "58"], +[-37.7249951333, 175.2490524167, "60"], +[-37.7275637167, 175.2521511833, "14"], +[-37.7269768, 175.25090555, "15"], +[-37.7269092, 175.2512178333, "17"], +[-37.7267804333, 175.2518240167, "18"], +[-37.7266822833, 175.2514400167, "19"], +[-37.7266081167, 175.25176505, "20"], +[-37.7263977833, 175.2516902, "22"], +[-37.7254974667, 175.2514235667, "30"], +[-37.72542315, 175.2510061833, "33"], +[-37.72554585, 175.25065825, "35"], +[-37.7250178, 175.25103675, "36"], +[-37.7282814333, 175.2520457, "3"], +[-37.7281619833, 175.2524397667, "4"], +[-37.72547535, 175.2506171167, "37"], +[-37.7252602167, 175.2508648833, "39"], +[-37.7251011167, 175.2507262667, "41"], +[-37.72521565, 175.2503052833, "45"], +[-37.7250270667, 175.2501001833, "47"], +[-37.72509455, 175.2498255833, "49"], +[-37.7255733167, 175.2499053, "53"], +[-37.7253733833, 175.249805, "51"], +[-37.7280886333, 175.2519342333, "5"], +[-37.7279233833, 175.25274795, "6"], +[-37.7279233833, 175.2518352167, "7"], +[-37.7255331, 175.2497609, "55"], +[-37.7253204167, 175.2496156833, "57"], +[-37.72514905, 175.2494155833, "59"], +[-37.7252017667, 175.2487860667, "62"], +[-37.7251788667, 175.2491389833, "63"], +[-37.7252197333, 175.2489286333, "64"], +[-37.7278319333, 175.2526748, "8"], +[-37.7277387333, 175.2517708167, "9"], +[-37.7795388333, 175.2221239167, "13"], +[-37.7795754333, 175.2219125, "12"], +[-37.7794110833, 175.22199015, "10"], +[-37.7793293333, 175.2220085833, "8"], +[-37.7792332167, 175.22208385, "6"], +[-37.7790842667, 175.22234745, "4"], +[-37.7788385667, 175.2222385833, "2"], +[-37.77942895, 175.2224671, "9"], +[-37.77932315, 175.2226054833, "7"], +[-37.7791410333, 175.2226749833, "5"], +[-37.7787566, 175.2225088333, "1"], +[-37.7789420667, 175.2226308833, "3"], +[-37.77952405, 175.2223194667, "11"], +[-37.7799705167, 175.2854486167, "24"], +[-37.78009545, 175.2855436667, "26"], +[-37.7800315167, 175.2850035, "20A"], +[-37.77936685, 175.2849350167, "11A"], +[-37.7800625833, 175.2836535333, "1"], +[-37.7797532167, 175.2843892667, "7"], +[-37.7795568667, 175.28489245, "9"], +[-37.7803267833, 175.2850275167, "16"], +[-37.7797939667, 175.2852558667, "22"], +[-37.7788526667, 175.28664695, "23"], +[-37.7794660833, 175.2851311333, "11"], +[-37.7799685, 175.2838730333, "3"], +[-37.7798630667, 175.2841254167, "5"], +[-37.7803726667, 175.2837786167, "4"], +[-37.7792803333, 175.28559085, "1/15-6/15"], +[-37.7787079667, 175.2865274, "23A"], +[-37.7791963, 175.2867103, "42"], +[-37.77937205, 175.2866402833, "40"], +[-37.7800609167, 175.28456185, "12"], +[-37.77989665, 175.2849720667, "20"], +[-37.7799878833, 175.28474855, "14"], +[-37.78043005, 175.2836163333, "2"], +[-37.77937265, 175.2853536667, "13"], +[-37.7791008167, 175.286034, "17"], +[-37.7801948667, 175.2851186667, "18"], +[-37.77901875, 175.2862352667, "19"], +[-37.7789377667, 175.2864341, "21"], +[-37.7797236, 175.2854628167, "28"], +[-37.7796536667, 175.2856279167, "30"], +[-37.7795920667, 175.2857703333, "32"], +[-37.7793879167, 175.2862700167, "36"], +[-37.7793068667, 175.2864537333, "38"], +[-37.7530968, 175.2896947, "19"], +[-37.7539007167, 175.2896434667, "42"], +[-37.75194595, 175.28839995, "4"], +[-37.7525276167, 175.2893074167, "11"], +[-37.7521177, 175.2885005, "10"], +[-37.7522575667, 175.28858225, "12"], +[-37.7523766333, 175.2882905167, "14"], +[-37.7524897833, 175.2883235333, "16"], +[-37.7524549, 175.2886785, "18"], +[-37.7525919, 175.2887856, "20"], +[-37.7527155333, 175.2884791, "22"], +[-37.75281185, 175.2885361, "24"], +[-37.7527720333, 175.2888847167, "26"], +[-37.7529283833, 175.2890321333, "28"], +[-37.7532927167, 175.2898361167, "21"], +[-37.7530772833, 175.28880545, "30"], +[-37.7517668167, 175.28882555, "3"], +[-37.7531222333, 175.2891596833, "32"], +[-37.7532624, 175.2892486167, "34"], +[-37.7534197667, 175.2893633667, "36"], +[-37.75356685, 175.2894930667, "38"], +[-37.7519670667, 175.2889273333, "5"], +[-37.7537428667, 175.28961515, "40"], +[-37.7520470833, 175.2880748667, "6"], +[-37.7521408833, 175.2881449667, "8"], +[-37.7523502167, 175.2891953333, "9"], +[-37.79990985, 175.29209105, "7"], +[-37.80217445, 175.2920090833, "32"], +[-37.8004024333, 175.2917201, "15"], +[-37.8012605833, 175.29254005, "20"], +[-37.7998520667, 175.2922216167, "5"], +[-37.7997758, 175.2918160667, "7A"], +[-37.80032355, 175.2920998833, "6"], +[-37.8001245, 175.2918287333, "11"], +[-37.800647, 175.2921187, "10"], +[-37.8007965333, 175.2921361833, "12"], +[-37.8009416333, 175.2921464833, "14"], +[-37.8010917333, 175.2921614, "16"], +[-37.8012331, 175.2921519833, "18"], +[-37.8002521333, 175.29176635, "13"], +[-37.8005386167, 175.2917383333, "17"], +[-37.8006155833, 175.2917461167, "19"], +[-37.8007558333, 175.2917592667, "21"], +[-37.8014043667, 175.2921675333, "22"], +[-37.8009082667, 175.2917728, "23"], +[-37.8015644833, 175.2921525, "24"], +[-37.8010488833, 175.2918057833, "25"], +[-37.7997073333, 175.2924425167, "1"], +[-37.8017111167, 175.2920770667, "26"], +[-37.8011781833, 175.2918189333, "27"], +[-37.8018438667, 175.2919882167, "28"], +[-37.8019481833, 175.2918616667, "30"], +[-37.8013657167, 175.29180025, "29"], +[-37.8015414833, 175.2917304667, "31"], +[-37.8017043833, 175.2916081167, "33"], +[-37.80205755, 175.2917331, "34"], +[-37.8000433833, 175.2924242667, "2"], +[-37.7997696167, 175.2923531667, "3"], +[-37.8001797333, 175.2922038, "4"], +[-37.80051075, 175.2921001167, "8"], +[-37.80001645, 175.2919369833, "9"], +[-37.73855665, 175.2510633167, "98"], +[-37.7386707333, 175.2511308833, "100"], +[-37.7390071, 175.2513154667, "133"], +[-37.7390093333, 175.25148045, "135"], +[-37.73838635, 175.25119605, "97"], +[-37.7384981833, 175.2513043167, "99"], +[-37.739176, 175.2513192167, "139"], +[-37.73917415, 175.2514769667, "137"], +[-37.7394973, 175.2517125167, "147"], +[-37.7398410833, 175.2513211333, "116"], +[-37.7397453833, 175.2515042167, "151"], +[-37.7398005833, 175.2511537333, "114"], +[-37.7395040167, 175.2510962167, "110"], +[-37.73894545, 175.25110575, "102"], +[-37.7396454333, 175.2511184667, "112"], +[-37.7393291833, 175.2513371167, "141"], +[-37.7396525167, 175.2516471333, "149"], +[-37.7394805333, 175.2513621833, "143"], +[-37.7393983, 175.2515708833, "145"], +[-37.73905065, 175.2510839167, "104"], +[-37.7391925833, 175.251081, "106"], +[-37.7393263833, 175.2510853833, "108"], +[-37.77626545, 175.2322871333, "23"], +[-37.7761358, 175.2315969667, "10"], +[-37.7753600167, 175.231814, "11"], +[-37.7762472667, 175.2316620167, "12"], +[-37.7754768167, 175.2318603667, "13"], +[-37.7763679, 175.2317273333, "14"], +[-37.7757958667, 175.2318510167, "15"], +[-37.7765485, 175.2318256167, "16"], +[-37.7759345667, 175.2318977833, "17"], +[-37.7764198, 175.23198495, "18"], +[-37.7760816833, 175.2320137833, "19"], +[-37.7753213833, 175.2311712, "1"], +[-37.77617655, 175.2321436167, "21"], +[-37.7763128167, 175.23215165, "25"], +[-37.7755855167, 175.2311979167, "2"], +[-37.7753218333, 175.2314481333, "3"], +[-37.7756008, 175.2314996167, "4"], +[-37.7751147333, 175.2314376167, "5"], +[-37.7758524167, 175.2315566167, "6"], +[-37.7750351833, 175.2318097833, "7A"], +[-37.7750859833, 175.2316478167, "7"], +[-37.77595335, 175.2315647333, "8"], +[-37.77524625, 175.2317143833, "9"], +[-37.8012513333, 175.3174345, "3"], +[-37.8010905833, 175.3173016, "5"], +[-37.8009347833, 175.3172313, "7"], +[-37.8007973167, 175.3171258833, "9"], +[-37.7375679, 175.2598044833, "10"], +[-37.7376106667, 175.2596064667, "11"], +[-37.7381096667, 175.25980865, "3"], +[-37.7379108167, 175.2600724167, "4"], +[-37.7379251167, 175.2597141, "5"], +[-37.7377354167, 175.2600490333, "6"], +[-37.7378048, 175.2595642167, "7"], +[-37.73751715, 175.2600509167, "8"], +[-37.7376636, 175.2594265667, "9"], +[-37.7984888833, 175.3186090667, "7A"], +[-37.7984704167, 175.3187937667, "9A"], +[-37.79920095, 175.31808975, "10"], +[-37.7990394, 175.3184373167, "11"], +[-37.7992279333, 175.3183249667, "12"], +[-37.7985338333, 175.31821645, "3"], +[-37.7988875, 175.3175929833, "4"], +[-37.7988773333, 175.3180684833, "5"], +[-37.7990159, 175.3178241667, "6"], +[-37.7986814333, 175.3184641667, "7"], +[-37.79908805, 175.3179699, "8"], +[-37.7986651, 175.3186561833, "9"], +[-37.8202495833, 175.29296395, "10"], +[-37.8197704667, 175.2932813667, "11"], +[-37.8201209833, 175.2930999833, "12"], +[-37.81991875, 175.2933834, "13"], +[-37.82000845, 175.2932593667, "14"], +[-37.8195588833, 175.2929475833, "3"], +[-37.8198173333, 175.2927233167, "4"], +[-37.819653, 175.2930720833, "5"], +[-37.8199364333, 175.2928344333, "6"], +[-37.81951755, 175.2933687833, "7"], +[-37.8200562833, 175.2929402667, "8"], +[-37.8195899167, 175.2934697167, "9"], +[-37.7748156167, 175.27929275, "9"], +[-37.7749576333, 175.2797139, "3"], +[-37.7748579833, 175.2797569333, "4"], +[-37.7747568667, 175.27973565, "5"], +[-37.7746852333, 175.27963855, "6"], +[-37.7746713333, 175.2795316667, "7"], +[-37.7747099167, 175.2793872833, "8"], +[-37.775045, 175.2795454667, "1"], +[-37.7750389667, 175.2796771667, "2"], +[-37.7913220333, 175.3283336833, "7"], +[-37.79125565, 175.32879595, "6"], +[-37.79095415, 175.32795885, "13"], +[-37.7911222333, 175.3286797333, "8"], +[-37.79100625, 175.3285658333, "10"], +[-37.7910648167, 175.3280872167, "11"], +[-37.7908267, 175.3278537, "15"], +[-37.7905542167, 175.32815535, "16"], +[-37.7906947, 175.3277355167, "17"], +[-37.7905712833, 175.3275982833, "19"], +[-37.79045645, 175.32748405, "21"], +[-37.7901583667, 175.3277522833, "22"], +[-37.7903328833, 175.3273682, "23"], +[-37.7900127, 175.3276030167, "24"], +[-37.7902109667, 175.3272397167, "25"], +[-37.7898752833, 175.3274944333, "26"], +[-37.7914619, 175.3290062167, "2"], +[-37.7915612833, 175.3285779333, "3"], +[-37.7911876833, 175.3291562, "4"], +[-37.7914476333, 175.3284560333, "5"], +[-37.7912025167, 175.3282174667, "9"], +[-37.75659495, 175.2773766333, "17"], +[-37.7569892667, 175.2778961333, "10"], +[-37.7570897833, 175.2775246167, "11"], +[-37.75684105, 175.2778539167, "12"], +[-37.75695135, 175.2774559167, "13"], +[-37.7566953, 175.2778093167, "14"], +[-37.75680455, 175.2774159667, "15"], +[-37.7565465833, 175.2777717667, "16"], +[-37.75640775, 175.2777362667, "18"], +[-37.7562636333, 175.27766565, "20"], +[-37.7563954, 175.2772719167, "21"], +[-37.7561403167, 175.2776200333, "22"], +[-37.7562765333, 175.2771853, "23"], +[-37.7557907667, 175.2778165167, "26"], +[-37.7558106667, 175.2781999667, "28"], +[-37.7559828167, 175.2782192667, "30"], +[-37.7561204167, 175.2782626167, "32"], +[-37.7556665333, 175.2772123333, "33"], +[-37.7562514, 175.2783061833, "34"], +[-37.7560051167, 175.2775592167, "24"], +[-37.7561326167, 175.2771437, "25"], +[-37.75598275, 175.2770928167, "27"], +[-37.7558242, 175.2770276167, "29"], +[-37.7556647, 175.2769672833, "31"], +[-37.7556303333, 175.2773702667, "35"], +[-37.7564009167, 175.27835815, "36"], +[-37.7555906667, 175.2775574667, "37"], +[-37.75654085, 175.2784078333, "38"], +[-37.7555457, 175.2777299167, "39"], +[-37.7566835667, 175.278462, "40"], +[-37.7555070333, 175.2779045333, "41"], +[-37.7554677333, 175.2780779667, "43"], +[-37.7554275167, 175.2782513167, "45"], +[-37.7554301333, 175.2784076667, "47"], +[-37.7555570833, 175.27849635, "49"], +[-37.7568379833, 175.2785141333, "42"], +[-37.7570570667, 175.2783625833, "44"], +[-37.7571331, 175.2780973333, "46"], +[-37.7556967667, 175.27855795, "51"], +[-37.7558372667, 175.2786019833, "53"], +[-37.7559863333, 175.2786653167, "55"], +[-37.7561235833, 175.2787110833, "57"], +[-37.75628915, 175.2787703167, "59"], +[-37.7564387333, 175.2788322333, "61"], +[-37.7565752, 175.2788842833, "63"], +[-37.75671845, 175.2789389333, "65"], +[-37.7568596167, 175.2789593667, "67"], +[-37.7569997, 175.2789503333, "69"], +[-37.7571386833, 175.2788811, "71"], +[-37.7572368833, 175.2787200167, "73"], +[-37.75732525, 175.2785984667, "75"], +[-37.7573872833, 175.2784156333, "77"], +[-37.7572188, 175.27757805, "9"], +[-37.7578318, 175.27780725, "1"], +[-37.7577934333, 175.2781983, "2"], +[-37.757656, 175.2781417333, "4"], +[-37.7577090333, 175.2777492, "3"], +[-37.7575683333, 175.2776954833, "5"], +[-37.75749345, 175.27808685, "6"], +[-37.7573994, 175.2776503833, "7"], +[-37.8088316833, 175.27384925, "1"], +[-37.80899145, 175.2738928333, "2"], +[-37.8090934, 175.2741055, "4"], +[-37.8091481833, 175.2740189167, "3"], +[-37.80893345, 175.2739774167, "5"], +[-37.733835, 175.27252265, "14"], +[-37.7335987833, 175.2733082333, "1"], +[-37.7336698333, 175.2731299667, "3"], +[-37.7338359833, 175.2730015, "5"], +[-37.7339559667, 175.2729865167, "7"], +[-37.7339896667, 175.27282895, "9"], +[-37.7339170333, 175.2726621833, "11"], +[-37.7334304667, 175.2734640667, "2"], +[-37.7334101667, 175.27328285, "4"], +[-37.7334601167, 175.2730737333, "6"], +[-37.73355065, 175.2729180833, "8"], +[-37.7336607667, 175.2727688667, "10"], +[-37.7337608167, 175.2726544, "12"], +[-37.7607459667, 175.3064764667, "9"], +[-37.76107805, 175.30638645, "8"], +[-37.7611255667, 175.3061898667, "6"], +[-37.7608209, 175.30628455, "7"], +[-37.7606430833, 175.3069134833, "13"], +[-37.7610032667, 175.3065871833, "10"], +[-37.7607017333, 175.3066954667, "11"], +[-37.76079415, 175.3074224167, "14"], +[-37.7605918, 175.3071277167, "15"], +[-37.7607459667, 175.3076367333, "16"], +[-37.7605236167, 175.3073199833, "17"], +[-37.7606605167, 175.30786665, "18"], +[-37.7604554, 175.3075254667, "19"], +[-37.7603908167, 175.30773485, "21"], +[-37.7606055167, 175.30808495, "20"], +[-37.7605505, 175.30830745, "22"], +[-37.7603258333, 175.3079442333, "23"], +[-37.7605127333, 175.3085050667, "24"], +[-37.7602810667, 175.3081629333, "25"], +[-37.7604617833, 175.30868955, "26"], +[-37.76019335, 175.3083420667, "27"], +[-37.7603940833, 175.3088995167, "28"], +[-37.7601422667, 175.3085349333, "29"], +[-37.76027485, 175.3086659333, "30"], +[-37.7600913, 175.3087284833, "31"], +[-37.7609135667, 175.30587995, "3"], +[-37.7611832, 175.30599425, "4"], +[-37.7608687, 175.3060710833, "5"], +[-37.7971167833, 175.2481840667, "45A"], +[-37.7979251833, 175.2485394, "1/55-9/55"], +[-37.8400807333, 175.2155628, "695"], +[-37.79792665, 175.2479441333, "59A"], +[-37.7978638167, 175.247496, "58"], +[-37.7979111, 175.2472249833, "58A"], +[-37.7976988167, 175.24787385, "53A"], +[-37.7976670833, 175.24743455, "54"], +[-37.82866875, 175.22177625, "563"], +[-37.8295602, 175.21924335, "582"], +[-37.8304707833, 175.2182986167, "590"], +[-37.83086, 175.2180687667, "592"], +[-37.8328604833, 175.2172892167, "618"], +[-37.8342575667, 175.2168357833, "638"], +[-37.7975074, 175.2473809167, "52"], +[-37.8045265167, 175.2429183667, "177"], +[-37.8045113833, 175.2423094, "184"], +[-37.80032165, 175.2473807833, "97"], +[-37.7976426, 175.2481350667, "51B"], +[-37.79916275, 175.2488132833, "81A"], +[-37.8013983167, 175.2456162333, "122"], +[-37.7965585167, 175.24760895, "37A"], +[-37.7965226667, 175.24782955, "37B"], +[-37.7965361833, 175.2479888667, "37C"], +[-37.7989214833, 175.2482427, "75"], +[-37.7991351167, 175.2483220667, "77"], +[-37.7961318167, 175.2477078, "25A"], +[-37.8040303667, 175.2425044667, "176"], +[-37.7959498333, 175.2465918, "22D"], +[-37.8372682667, 175.2163133, "678"], +[-37.8043482333, 175.2421975833, "184B"], +[-37.8369449667, 175.21634715, "676"], +[-37.79916905, 175.2478451333, "80"], +[-37.7993132167, 175.2488181333, "81"], +[-37.7994036, 175.2477519167, "82"], +[-37.7992010667, 175.2490163, "83"], +[-37.7993571333, 175.2489903167, "85"], +[-37.7996278167, 175.2475508167, "86"], +[-37.7994791167, 175.24900135, "87"], +[-37.7997779833, 175.2474179667, "88"], +[-37.7998833167, 175.2472909167, "94"], +[-37.8239713, 175.2245693667, "504"], +[-37.8365260167, 175.2170911, "673"], +[-37.8233928833, 175.2249669167, "492"], +[-37.8248650167, 175.2246300833, "509"], +[-37.8191798333, 175.2265331667, "435"], +[-37.7980324167, 175.2483443833, "59"], +[-37.7952172333, 175.2474951167, "4"], +[-37.8027022833, 175.2439152, "150A"], +[-37.7972881333, 175.2480514167, "47A"], +[-37.8036625, 175.2433034, "164"], +[-37.7961433833, 175.2477740167, "25B"], +[-37.7961570167, 175.2478443667, "25C"], +[-37.7961712167, 175.2479133833, "25D"], +[-37.8002538833, 175.2465053667, "102A"], +[-37.8059944833, 175.2416689667, "205A"], +[-37.8143243333, 175.2310940167, "368"], +[-37.81459255, 175.2320046, "363"], +[-37.81127515, 175.2356499167, "311"], +[-37.8126359667, 175.2340855167, "333"], +[-37.8096158333, 175.2375218167, "293"], +[-37.8402719, 175.21486745, "698"], +[-37.8315868667, 175.2177722833, "604"], +[-37.8160177667, 175.2299268333, "391"], +[-37.8204715667, 175.2265481833, "456"], +[-37.8206352, 175.2265670333, "458"], +[-37.8208412667, 175.2265323333, "460"], +[-37.8210184333, 175.22648325, "462"], +[-37.8212643833, 175.2270422167, "465"], +[-37.82119945, 175.2264274333, "464"], +[-37.82136485, 175.2263145667, "466"], +[-37.8215261, 175.22684075, "467"], +[-37.8215301833, 175.2262078, "468"], +[-37.8217701667, 175.2266360167, "1/471"], +[-37.8218376833, 175.22686725, "2/471"], +[-37.8217084667, 175.2260839667, "472"], +[-37.8219782333, 175.2265028333, "475"], +[-37.8218988833, 175.2259723, "476"], +[-37.8223939333, 175.2262447, "479"], +[-37.8223048667, 175.2256582833, "480"], +[-37.8226657, 175.2261230833, "481"], +[-37.8224199, 175.2255487833, "482"], +[-37.8229134167, 175.2259527833, "485"], +[-37.8226937833, 175.2253693167, "486"], +[-37.8231509667, 175.2258170333, "487"], +[-37.82295265, 175.2252571167, "488"], +[-37.8233779, 175.2256743833, "489"], +[-37.8232052667, 175.2251109333, "490"], +[-37.8236200333, 175.22553395, "493"], +[-37.82385775, 175.2253390833, "495"], +[-37.80227695, 175.2448766167, "134B"], +[-37.8021368833, 175.2447006167, "134"], +[-37.80243595, 175.2447043333, "138"], +[-37.8027243667, 175.2449637, "141A"], +[-37.8025921667, 175.2445143667, "142A"], +[-37.8028797, 175.24477025, "143"], +[-37.8026119333, 175.2441203833, "146A"], +[-37.80275005, 175.2443300667, "146"], +[-37.80305425, 175.24455695, "149"], +[-37.80288205, 175.2441704667, "150"], +[-37.80327425, 175.2443248, "159"], +[-37.8038116, 175.2431389333, "166A"], +[-37.8036567667, 175.2429994, "166"], +[-37.8037456167, 175.2428640667, "170"], +[-37.8039141333, 175.2430116833, "170A"], +[-37.8042003667, 175.2433343833, "171"], +[-37.80400445, 175.2428835833, "172"], +[-37.8043455833, 175.2432598333, "173"], +[-37.8041358667, 175.242754, "174"], +[-37.80447605, 175.2431448667, "175"], +[-37.8042464667, 175.2426133667, "178A"], +[-37.8033824333, 175.2445596, "161"], +[-37.8034399667, 175.24419335, "163"], +[-37.803572, 175.2440300667, "165"], +[-37.8052638, 175.2414730667, "190"], +[-37.8053820167, 175.241355, "192"], +[-37.8055103167, 175.2412042833, "194"], +[-37.8057776833, 175.2419194167, "203A"], +[-37.8057043833, 175.2416706167, "203"], +[-37.80584785, 175.2415775667, "205"], +[-37.805986, 175.2414289667, "207A"], +[-37.8061692, 175.2416395167, "207B"], +[-37.8061166, 175.2412551167, "209"], +[-37.8064348, 175.2413322833, "211A"], +[-37.8062554, 175.24109515, "211"], +[-37.8063950167, 175.2409363833, "213A"], +[-37.8065818833, 175.2411703667, "213B"], +[-37.8067173833, 175.2410101667, "215B"], +[-37.8066594333, 175.2406393667, "217A"], +[-37.80681395, 175.24085805, "217"], +[-37.8011406833, 175.2450753167, "112"], +[-37.8009580167, 175.2459622167, "114"], +[-37.8012357667, 175.2462990167, "115"], +[-37.8011799833, 175.245732, "118"], +[-37.80156515, 175.2454807333, "124"], +[-37.8002520667, 175.2468453833, "100"], +[-37.8005354833, 175.2471013667, "101"], +[-37.8004180167, 175.24662625, "102"], +[-37.8006632833, 175.2469534667, "103"], +[-37.8005778833, 175.2464856167, "104A"], +[-37.80065915, 175.24637215, "104"], +[-37.8007657667, 175.2462299333, "106"], +[-37.8007994333, 175.2467688167, "107"], +[-37.8009689667, 175.2465737667, "109"], +[-37.8011461833, 175.24709655, "111"], +[-37.8011572, 175.2466982167, "113"], +[-37.8018321, 175.2452409167, "130"], +[-37.8020786333, 175.2450402, "132"], +[-37.8024175667, 175.2456319667, "135A"], +[-37.8023076833, 175.2453921667, "135"], +[-37.8024791, 175.24522295, "137"], +[-37.8025970667, 175.2451175333, "139A"], +[-37.8026980333, 175.24530045, "139B"], +[-37.8028281, 175.245172, "141B"], +[-37.7954149167, 175.2480310167, "15"], +[-37.7957056, 175.2481744333, "19"], +[-37.7956964667, 175.2478906167, "21A"], +[-37.79584965, 175.24782555, "21B"], +[-37.7958087167, 175.2471622833, "22A"], +[-37.7958582, 175.24693765, "22B"], +[-37.79592265, 175.2467673167, "22C"], +[-37.7956454333, 175.2474900667, "22"], +[-37.7961005667, 175.2482459167, "23B"], +[-37.7959534333, 175.2481392, "23"], +[-37.7964436167, 175.2478460667, "27A"], +[-37.7963589333, 175.2476245167, "27"], +[-37.7958966833, 175.2473548667, "28"], +[-37.7960192167, 175.2473200667, "30"], +[-37.7961507833, 175.2473047833, "32"], +[-37.796309, 175.2472473667, "34"], +[-37.7967524833, 175.2476219833, "39"], +[-37.7969495167, 175.24818535, "43"], +[-37.7966767167, 175.2471674167, "40"], +[-37.7969863167, 175.2476620167, "45"], +[-37.7971920667, 175.24772095, "47"], +[-37.7972101833, 175.2473051667, "48"], +[-37.7974601833, 175.2481921167, "49A"], +[-37.7973550833, 175.2477590333, "49"], +[-37.7975316667, 175.2478140833, "51"], +[-37.7973407, 175.2473413667, "50"], +[-37.7977996333, 175.2482542167, "53"], +[-37.7980522167, 175.2475486667, "62"], +[-37.7982777833, 175.2485825833, "63A"], +[-37.7983615833, 175.2485951333, "63B"], +[-37.7982174833, 175.24804285, "65"], +[-37.798276, 175.2476238167, "66"], +[-37.7984962, 175.24840385, "67A"], +[-37.7984231667, 175.24810255, "67"], +[-37.7984986667, 175.2474445833, "68A"], +[-37.7984750833, 175.2476920667, "68B"], +[-37.7985552, 175.2487519833, "69A"], +[-37.7985355333, 175.2485268167, "69"], +[-37.7987357167, 175.24891655, "71A"], +[-37.7987991667, 175.2488015833, "71B"], +[-37.7988290667, 175.2489505833, "71C"], +[-37.7986126, 175.2489125667, "71"], +[-37.7986332833, 175.2477357167, "72"], +[-37.7988207333, 175.24858315, "73A"], +[-37.7986988667, 175.2481735167, "73B"], +[-37.7986852333, 175.24848415, "73"], +[-37.7988037833, 175.247772, "74"], +[-37.7989799167, 175.24783155, "78"], +[-37.7992534333, 175.2486222833, "79"], +[-37.7991949833, 175.2476299667, "80A"], +[-37.8004406, 175.24724705, "99"], +[-37.8031193667, 175.2439571167, "1/152-5/152"], +[-37.8021767167, 175.2455239167, "133"], +[-37.80243795, 175.24441795, "142"], +[-37.8040659833, 175.2434407667, "169"], +[-37.8053942667, 175.2419832667, "183"], +[-37.8203220167, 175.22650925, "454"], +[-37.8179795333, 175.2262826, "428"], +[-37.80055315, 175.2475020833, "99A"], +[-37.8043686333, 175.2424699667, "180A"], +[-37.81038215, 175.2365298167, "303"], +[-37.8161746667, 175.2297239833, "393"], +[-37.7976001333, 175.2471110333, "52A"], +[-37.80420875, 175.2423039667, "180B"], +[-37.80698845, 175.2394572, "258"], +[-37.8059677667, 175.2360292, "274"], +[-37.8046600333, 175.2427397333, "179"], +[-37.8050693167, 175.2423579333, "181"], +[-37.8057123833, 175.23936685, "216"], +[-37.8083635333, 175.233955, "294"], +[-37.80680855, 175.2396465833, "252"], +[-37.7981235333, 175.2484894833, "61"], +[-37.7976473333, 175.2471839167, "54A"], +[-37.8065249, 175.2407588, "215"], +[-37.7964010167, 175.2468826667, "38"], +[-37.8041650333, 175.24237575, "178B"], +[-37.8061579167, 175.2404728833, "212"], +[-37.7963902833, 175.2472135333, "38A"], +[-37.7648031333, 175.3012323667, "10"], +[-37.7643569833, 175.30104695, "16"], +[-37.7640636167, 175.3004413667, "21"], +[-37.7614716167, 175.2997460667, "50"], +[-37.7652094167, 175.30095675, "5"], +[-37.76420445, 175.3009905833, "18"], +[-37.76572775, 175.3012392667, "1A"], +[-37.7607728833, 175.2988794667, "63B"], +[-37.7647780667, 175.3007693667, "11"], +[-37.7578328167, 175.2976171833, "107"], +[-37.7576685833, 175.2980487, "108"], +[-37.7576950833, 175.2975352667, "109"], +[-37.7575342333, 175.2974633667, "111"], +[-37.7573658333, 175.2973884333, "113"], +[-37.7572277, 175.2973223, "115"], +[-37.7570416667, 175.2977854167, "116"], +[-37.7570518, 175.2972843167, "117"], +[-37.7568592, 175.2977381667, "118"], +[-37.7569143333, 175.29723465, "119"], +[-37.7567089167, 175.2977910833, "120"], +[-37.7646414667, 175.3006953167, "13"], +[-37.7644949833, 175.3011073833, "14"], +[-37.76449355, 175.3006457167, "15"], +[-37.7646524167, 175.3011814, "12"], +[-37.7643427167, 175.3005731167, "17"], +[-37.7567352333, 175.2972648667, "121"], +[-37.75667965, 175.2981360333, "122"], +[-37.7565514667, 175.2973478833, "123"], +[-37.7565818333, 175.2981639333, "124"], +[-37.75656485, 175.29700055, "125"], +[-37.7564906167, 175.2978655167, "126"], +[-37.7564191833, 175.2970338333, "127"], +[-37.7563839667, 175.2981818333, "128"], +[-37.7563458667, 175.29742985, "129"], +[-37.7563240667, 175.2979081667, "130"], +[-37.7561728333, 175.2974665167, "131"], +[-37.7561290833, 175.2979291167, "132"], +[-37.7561965667, 175.2970766167, "133"], +[-37.7559730833, 175.2979040667, "134"], +[-37.7560124167, 175.2974262833, "137"], +[-37.764199, 175.3005125333, "19"], +[-37.7639163167, 175.3008546167, "22"], +[-37.7640527, 175.3009224667, "20"], +[-37.7634694833, 175.30064985, "28"], +[-37.7634748333, 175.3001720333, "29"], +[-37.7633178167, 175.3005785167, "30"], +[-37.7633310333, 175.3000990333, "31"], +[-37.7631645667, 175.3005114333, "32"], +[-37.7631890333, 175.3000536333, "33"], +[-37.7630198167, 175.30045475, "34"], +[-37.7630354, 175.2999897333, "35"], +[-37.76287125, 175.3003805, "36"], +[-37.7628872667, 175.2999202833, "37"], +[-37.7627469667, 175.3003144167, "38"], +[-37.76213275, 175.3000426667, "42"], +[-37.7623449833, 175.2996493833, "43"], +[-37.7619975167, 175.30000525, "44"], +[-37.7622055167, 175.2995794167, "45"], +[-37.7618265167, 175.2999049, "46"], +[-37.7620575667, 175.2995058833, "47"], +[-37.7616484833, 175.2998182333, "48"], +[-37.7618924333, 175.29943785, "49"], +[-37.76172915, 175.29935955, "51"], +[-37.7612920333, 175.2996703, "52"], +[-37.7615542, 175.2992782833, "53"], +[-37.76141615, 175.2992184667, "55"], +[-37.76133995, 175.2990411, "57"], +[-37.76115535, 175.2991459667, "57A"], +[-37.7608843167, 175.2994422, "58"], +[-37.7610374167, 175.2990784667, "59"], +[-37.7607580167, 175.2993699667, "60"], +[-37.7608802, 175.2990291, "61"], +[-37.7605720667, 175.2993013167, "62"], +[-37.7606835833, 175.2989520333, "63"], +[-37.76038205, 175.2992324667, "64"], +[-37.7605181167, 175.2988612667, "65"], +[-37.7601937167, 175.2991614333, "66"], +[-37.7603559667, 175.2987837, "67"], +[-37.7599472833, 175.29904335, "68"], +[-37.7601853833, 175.2987171167, "69"], +[-37.7598249333, 175.2994133333, "70"], +[-37.76001205, 175.2986353167, "71"], +[-37.7596959833, 175.2994071, "72"], +[-37.75986275, 175.2985928, "73"], +[-37.7597587667, 175.2989784333, "74"], +[-37.7596829167, 175.2984921833, "75"], +[-37.7596327333, 175.2989048167, "76"], +[-37.7595176333, 175.2984218833, "77"], +[-37.7593654, 175.29835185, "79"], +[-37.7591254833, 175.2986916833, "80"], +[-37.7592030833, 175.2982735333, "81"], +[-37.7590018, 175.2986281667, "82"], +[-37.759022, 175.29818415, "83"], +[-37.7649300667, 175.3008359167, "9"], +[-37.7588566, 175.2985509167, "84"], +[-37.7588443833, 175.2980944667, "85"], +[-37.7586982667, 175.2984811, "86"], +[-37.7586661167, 175.2980013833, "87"], +[-37.7585316167, 175.2984115667, "88"], +[-37.7584732, 175.29792725, "89"], +[-37.7583531833, 175.2983205333, "90"], +[-37.7583121667, 175.2978644167, "91"], +[-37.7581601333, 175.2977888833, "93"], +[-37.75800445, 175.2977113, "95"], +[-37.7655105333, 175.3011236167, "1"], +[-37.7653541833, 175.3010291667, "3"], +[-37.76555245, 175.3015794, "4"], +[-37.76541415, 175.3015155333, "6"], +[-37.76508065, 175.300901, "7"], +[-37.7636216167, 175.3002433667, "27"], +[-37.7637571, 175.3007896167, "24"], +[-37.7637708667, 175.3003054333, "25"], +[-37.7636100667, 175.3007145333, "26"], +[-37.7639138667, 175.300374, "23"], +[-37.7731375167, 175.29642425, "1"], +[-37.7732810833, 175.29653975, "2"], +[-37.7734079333, 175.2966402333, "3"], +[-37.77352855, 175.2967324667, "4"], +[-37.78804545, 175.3035360333, "1"], +[-37.7881989833, 175.3038797, "4"], +[-37.78814895, 175.3037784833, "2"], +[-37.7884552, 175.3034850167, "12"], +[-37.7884934833, 175.30359355, "10"], +[-37.78837305, 175.3032855, "14"], +[-37.7883363833, 175.3039314, "6"], +[-37.7884881167, 175.30382205, "9"], +[-37.7884455833, 175.30388865, "8"], +[-37.7883890167, 175.3039214667, "7"], +[-37.7717954167, 175.2345601333, "16B"], +[-37.7718464667, 175.2346465, "14B"], +[-37.7722164833, 175.23486655, "10"], +[-37.77218335, 175.23415045, "11"], +[-37.77210035, 175.2347229, "12"], +[-37.7719812, 175.23452345, "14"], +[-37.7719103833, 175.2339381833, "15"], +[-37.7718349833, 175.23432945, "16A"], +[-37.7717143167, 175.23380285, "17"], +[-37.7717823667, 175.2341481833, "18"], +[-37.7716327167, 175.23390265, "20"], +[-37.77257475, 175.2347155, "3A"], +[-37.7723839333, 175.2345769, "3B"], +[-37.7723106667, 175.2343914167, "5"], +[-37.77242175, 175.2341743, "7"], +[-37.7723371833, 175.2349803167, "8"], +[-37.7723815333, 175.2340549667, "9"], +[-37.7727982333, 175.2350359333, "2"], +[-37.77266435, 175.23509055, "4"], +[-37.7725057, 175.2350856, "6"], +[-37.7320531667, 175.23822475, "5"], +[-37.7324737167, 175.2377971, "11"], +[-37.73236525, 175.2379345333, "9"], +[-37.7317974333, 175.238134, "1"], +[-37.7319146333, 175.2382866667, "3"], +[-37.73220485, 175.2380329167, "7"], +[-37.7320825, 175.2379279, "4"], +[-37.7319114333, 175.2379223833, "2"], +[-37.7322846333, 175.2376446333, "6"], +[-37.7324060833, 175.2376964333, "8"], +[-37.80618735, 175.2894823667, "10"], +[-37.80639465, 175.2891653333, "11"], +[-37.80609725, 175.2893399, "12"], +[-37.80636105, 175.2889956667, "13"], +[-37.8060139667, 175.2891517833, "14"], +[-37.8062446667, 175.2889242833, "15"], +[-37.8060985667, 175.2889328, "17"], +[-37.8067094167, 175.2899310333, "3"], +[-37.80640175, 175.2899928, "4"], +[-37.8066037333, 175.2897157, "5"], +[-37.8063223167, 175.2898116333, "6"], +[-37.8065362167, 175.2895237833, "7"], +[-37.8062653, 175.2896595667, "8"], +[-37.8064608833, 175.2893568, "9"], +[-37.7665644833, 175.3058960333, "34"], +[-37.7669354833, 175.3056111833, "35"], +[-37.7665011667, 175.3061039, "36"], +[-37.76697895, 175.30541825, "33"], +[-37.7666117667, 175.3057149833, "32"], +[-37.76678335, 175.3051437167, "26"], +[-37.7670314333, 175.3052366333, "31"], +[-37.7670869167, 175.3050134667, "27"], +[-37.76666685, 175.3055188333, "30"], +[-37.7667177667, 175.3053287333, "28"], +[-37.7672660833, 175.3051613333, "29"], +[-37.7669506833, 175.3044975, "20"], +[-37.7664509, 175.3062953167, "38"], +[-37.7661299667, 175.3074266667, "50"], +[-37.7665107333, 175.3071319, "51"], +[-37.7664600667, 175.3073222833, "53"], +[-37.7664075667, 175.30751955, "55"], +[-37.7668763167, 175.3058075, "37"], +[-37.7668217333, 175.3060063333, "39"], +[-37.7663943833, 175.30649115, "40"], +[-37.7667786667, 175.3061923, "41"], +[-37.7663455, 175.3066705167, "42"], +[-37.7667218, 175.3063768667, "43"], +[-37.7662968333, 175.3068735, "44"], +[-37.7666737667, 175.3065648833, "45"], +[-37.76623705, 175.3070513, "46"], +[-37.7666198333, 175.3067535, "47"], +[-37.767191, 175.3035898833, "10"], +[-37.7675603, 175.30330615, "11"], +[-37.7671426833, 175.3037809333, "12"], +[-37.7675193667, 175.3034984, "13"], +[-37.76708635, 175.3039540167, "14"], +[-37.7674547167, 175.3037009167, "15"], +[-37.7670509833, 175.3041272833, "16"], +[-37.76741935, 175.30390455, "17"], +[-37.7668200167, 175.3042171833, "18"], +[-37.76735535, 175.3040658, "19"], +[-37.7678195167, 175.3023876333, "1"], +[-37.7673100833, 175.3042507667, "21"], +[-37.7668926, 175.3046864167, "22"], +[-37.7674472167, 175.30447125, "23"], +[-37.76663955, 175.3048967333, "24"], +[-37.7671939833, 175.3046103333, "25"], +[-37.76777965, 175.3025119167, "3"], +[-37.767194, 175.3028280167, "4A"], +[-37.7673858833, 175.3030220833, "4B"], +[-37.7674300833, 175.30284105, "4"], +[-37.7677254667, 175.3026990167, "5"], +[-37.7673063667, 175.3031881833, "6"], +[-37.7676723333, 175.3029178167, "7"], +[-37.7676238, 175.3031243667, "9"], +[-37.7672415333, 175.3033919167, "8"], +[-37.76618975, 175.30724685, "48"], +[-37.7665690333, 175.3069562167, "49"], +[-37.76594375, 175.3081560667, "58"], +[-37.76635995, 175.3077119333, "57"], +[-37.7663199667, 175.3078845167, "59"], +[-37.7659171333, 175.3082737833, "60"], +[-37.7662289333, 175.30810635, "61"], +[-37.7662065667, 175.3082815, "63"], +[-37.7661708833, 175.3083949333, "65"], +[-37.7706386333, 175.2359611667, "12"], +[-37.7703837333, 175.2362628, "18"], +[-37.7700853, 175.2362628833, "20A"], +[-37.7704119, 175.2349800167, "3"], +[-37.7706992833, 175.23590815, "10"], +[-37.7699835833, 175.2356073667, "11"], +[-37.7699028, 175.2357692167, "13"], +[-37.7704058333, 175.2357332167, "14"], +[-37.7698174833, 175.2359080833, "15"], +[-37.7702909333, 175.23587875, "16"], +[-37.76972025, 175.2360757167, "17"], +[-37.7707673833, 175.2353003167, "4"], +[-37.7703031167, 175.23514875, "5"], +[-37.7706535, 175.2354366667, "6"], +[-37.7701814, 175.2353033833, "7"], +[-37.7705353, 175.2355729667, "8"], +[-37.7700794833, 175.23545585, "9"], +[-37.7701449667, 175.2361160167, "20"], +[-37.78900065, 175.2371577, "10A"], +[-37.7887847833, 175.2372386167, "10B"], +[-37.78912605, 175.2367560833, "11"], +[-37.7890346667, 175.2369099667, "12"], +[-37.7896519833, 175.2363367167, "1"], +[-37.7897136333, 175.2366553833, "2"], +[-37.7895020333, 175.2363845167, "3"], +[-37.7894663167, 175.2367772667, "4"], +[-37.7893473167, 175.2364171, "5"], +[-37.7893322, 175.2369076, "6"], +[-37.7892063167, 175.23645505, "7"], +[-37.7891930333, 175.23694065, "8"], +[-37.7891159333, 175.23661365, "9"], +[-37.7425603667, 175.2439243333, "32"], +[-37.7420019667, 175.2441942, "22"], +[-37.7416774833, 175.2443463833, "18"], +[-37.74183555, 175.2442650167, "20"], +[-37.7414444833, 175.2441857667, "16B"], +[-37.7411698167, 175.2446822, "12"], +[-37.7419945667, 175.2446856, "23"], +[-37.74151565, 175.24436975, "16A"], +[-37.7413676, 175.2444968333, "14"], +[-37.7437694, 175.24233505, "62"], +[-37.7445616167, 175.24274225, "63"], +[-37.74380955, 175.24212435, "64"], +[-37.7443896833, 175.2426570167, "65"], +[-37.743541, 175.2419995333, "66"], +[-37.7441128, 175.24255025, "67"], +[-37.74355635, 175.2418701333, "68"], +[-37.74413885, 175.24236515, "69"], +[-37.74162095, 175.2448627667, "15A"], +[-37.7409948167, 175.2448619667, "10"], +[-37.7418226167, 175.2447625, "21"], +[-37.74227555, 175.2449549333, "27"], +[-37.7420958667, 175.2441558833, "24"], +[-37.7422088833, 175.2445910833, "29"], +[-37.7424150667, 175.24449975, "31"], +[-37.7426129, 175.2443842167, "33"], +[-37.7427112333, 175.2438584333, "34"], +[-37.7428825667, 175.2442565167, "35"], +[-37.7428645833, 175.2437688167, "36"], +[-37.7431924167, 175.2443392167, "37A"], +[-37.7430899333, 175.2441621167, "37"], +[-37.7430347, 175.2436905667, "38"], +[-37.7432820333, 175.2440648333, "39"], +[-37.7432353333, 175.2435936, "40"], +[-37.74347195, 175.2439867, "41"], +[-37.7434830333, 175.2434703833, "42"], +[-37.74363015, 175.2432853, "44"], +[-37.7433577833, 175.2430973667, "46"], +[-37.7436772667, 175.2430273167, "48"], +[-37.74339275, 175.24288205, "50"], +[-37.7440372833, 175.2430272167, "51"], +[-37.7434170833, 175.2427493667, "52"], +[-37.74407185, 175.2428191167, "53"], +[-37.7443532167, 175.2428321667, "55"], +[-37.7437076, 175.2427751833, "54"], +[-37.7437379167, 175.24257405, "56"], +[-37.7445346833, 175.2428755833, "57"], +[-37.7434631667, 175.24244745, "58"], +[-37.7447002833, 175.2429137667, "59"], +[-37.7434862333, 175.2423134667, "60"], +[-37.7447174333, 175.2427808167, "61"], +[-37.74384815, 175.2418856833, "70"], +[-37.7441759167, 175.2421272167, "71"], +[-37.743874, 175.2417256333, "72"], +[-37.7442234167, 175.2418984, "73"], +[-37.7442570667, 175.2416662333, "75"], +[-37.7442809, 175.2414366, "77"], +[-37.7440121667, 175.2408895333, "76"], +[-37.7440393833, 175.24067935, "78"], +[-37.7443144, 175.2412405333, "79"], +[-37.7437541667, 175.2405522, "80"], +[-37.7443561333, 175.2410055667, "81"], +[-37.7437718667, 175.2404121333, "82"], +[-37.7443933, 175.24078425, "83"], +[-37.7440803667, 175.2404299, "84"], +[-37.7444170167, 175.2405619, "85"], +[-37.7441029333, 175.2402630333, "86"], +[-37.7444507667, 175.2403666833, "87"], +[-37.7444882833, 175.24019995, "89"], +[-37.7409836833, 175.2454226333, "11"], +[-37.7413736167, 175.2449934833, "13"], +[-37.74166735, 175.2450654833, "15"], +[-37.7418049167, 175.2451812833, "17"], +[-37.7405769667, 175.2459126667, "1"], +[-37.741885, 175.2451198333, "19"], +[-37.7403603167, 175.2455359333, "2"], +[-37.7407003667, 175.2458122667, "3"], +[-37.7421770667, 175.2450073667, "25A"], +[-37.7421848667, 175.2452622333, "25B"], +[-37.7404931667, 175.2453911667, "4"], +[-37.7409422333, 175.2460536333, "5"], +[-37.7406412167, 175.2452268, "6"], +[-37.7410215167, 175.2459685167, "7"], +[-37.7408955167, 175.2450478167, "8A"], +[-37.7408102833, 175.2451344167, "8B"], +[-37.7408460333, 175.2456321167, "9"], +[-37.7578901, 175.2844707333, "57A"], +[-37.7571953833, 175.2854942333, "64"], +[-37.7575048833, 175.2846296333, "63A"], +[-37.7574361167, 175.2849061167, "63B"], +[-37.7565122667, 175.28555515, "71B"], +[-37.75658555, 175.28536855, "71C"], +[-37.75673495, 175.2851632333, "71A"], +[-37.7605546, 175.2877330167, "5/20-8/20"], +[-37.7584003667, 175.2847305833, "51"], +[-37.7582672833, 175.2847226, "53"], +[-37.7581248167, 175.2847180833, "55"], +[-37.7579833167, 175.2847521333, "57"], +[-37.7578166, 175.2848003833, "59"], +[-37.75763325, 175.2848266333, "61"], +[-37.7572274667, 175.2849578333, "65A"], +[-37.7571767167, 175.2847632167, "65B"], +[-37.7569881, 175.2846435333, "67"], +[-37.7568853, 175.2847302833, "69A"], +[-37.7567959667, 175.28486695, "69B"], +[-37.7609395, 175.2876898167, "11"], +[-37.7608566167, 175.2875452, "13"], +[-37.7607662667, 175.2874091667, "15"], +[-37.7606716667, 175.28726255, "17"], +[-37.7604703167, 175.2869635, "21"], +[-37.7603640167, 175.28681775, "23"], +[-37.7605778833, 175.2871237667, "19"], +[-37.7612559833, 175.2886270667, "1"], +[-37.7602671333, 175.2866681167, "25"], +[-37.7601706, 175.2865192333, "27"], +[-37.7600719333, 175.28636675, "29"], +[-37.760093, 175.28699355, "30"], +[-37.7599708167, 175.28620055, "31"], +[-37.75985155, 175.2860297167, "33"], +[-37.7597293167, 175.2858960167, "35"], +[-37.7595831, 175.28583775, "37"], +[-37.7610385, 175.28889995, "2"], +[-37.7593175667, 175.2862064167, "38A"], +[-37.75921535, 175.2861865833, "38B"], +[-37.7594359667, 175.2858031667, "39"], +[-37.7590774, 175.2861241, "40"], +[-37.7611159833, 175.2883873333, "3"], +[-37.7592630333, 175.2857495667, "41"], +[-37.7591253833, 175.2856816167, "43"], +[-37.7586006, 175.28555615, "48"], +[-37.7609533667, 175.2887786333, "4"], +[-37.7584525167, 175.2853278, "50"], +[-37.7582192333, 175.2854528667, "52A"], +[-37.7582221, 175.2851230667, "52"], +[-37.7580228833, 175.2851338, "54"], +[-37.7578599, 175.2851808167, "56"], +[-37.75769505, 175.2852273667, "58"], +[-37.7575283333, 175.2852634167, "60A"], +[-37.7575766833, 175.2855860167, "60B"], +[-37.7612981167, 175.2881670667, "5"], +[-37.7573498667, 175.28534065, "62"], +[-37.7570748167, 175.2857323667, "66"], +[-37.7573139333, 175.2859945333, "68"], +[-37.7570061167, 175.2859382167, "70"], +[-37.7570224167, 175.2850630333, "71"], +[-37.7569422833, 175.2861301, "72"], +[-37.7569220833, 175.2853283667, "73"], +[-37.7571600833, 175.2863711167, "74"], +[-37.7568639667, 175.2863831833, "76"], +[-37.76086715, 175.2886181167, "6"], +[-37.7567997, 175.28557075, "77"], +[-37.7567881667, 175.2865432, "78"], +[-37.75672535, 175.2857757333, "79"], +[-37.7563932833, 175.2858297833, "83"], +[-37.756632, 175.2860305667, "85"], +[-37.7565496, 175.28620885, "87"], +[-37.7610470167, 175.28804655, "7"], +[-37.7609924667, 175.2878641833, "9"], +[-37.7584616167, 175.2855073667, "50A"], +[-37.8323623833, 175.2830326333, "55"], +[-37.8315925167, 175.28287935, "56"], +[-37.8320495667, 175.2826349333, "57"], +[-37.8331794, 175.2866010833, "22"], +[-37.83388485, 175.2882834667, "6"], +[-37.8324013167, 175.2846680667, "42"], +[-37.8337015, 175.2864265667, "21"], +[-37.8328641333, 175.2845947333, "41"], +[-37.8183570833, 175.2773460833, "3"], +[-37.81870445, 175.2773157333, "9"], +[-37.81818015, 175.2772701833, "1"], +[-37.8182221833, 175.27698405, "2"], +[-37.8183560333, 175.2769919, "4"], +[-37.8184944833, 175.2773516833, "5"], +[-37.8185658167, 175.2770247833, "6"], +[-37.8186478833, 175.2775475833, "7"], +[-37.81862325, 175.2771624667, "8"], +[-37.7450121333, 175.289418, "36"], +[-37.7450004667, 175.28846825, "28"], +[-37.7437416667, 175.2867637, "6"], +[-37.74373375, 175.28706135, "8"], +[-37.7434596833, 175.2870766833, "11"], +[-37.7434449, 175.2868144667, "9"], +[-37.74347185, 175.2865770333, "7"], +[-37.7438146167, 175.2861873167, "2"], +[-37.7435091, 175.2863314333, "5"], +[-37.7435516333, 175.2860753667, "3"], +[-37.7436205, 175.2876278333, "15"], +[-37.74453895, 175.2877445667, "20"], +[-37.7446902167, 175.2878645167, "22"], +[-37.7448288, 175.2880244167, "24"], +[-37.7445640833, 175.2881582333, "27"], +[-37.7443891, 175.2880417167, "25"], +[-37.74519825, 175.2905097, "44"], +[-37.7448629333, 175.2910890333, "47"], +[-37.7454754, 175.2913967167, "62"], +[-37.7445449167, 175.2900538667, "39"], +[-37.7437926167, 175.2873165, "10"], +[-37.7439437667, 175.2875215333, "12"], +[-37.7441543333, 175.2876338667, "14"], +[-37.7443093333, 175.2872517667, "16"], +[-37.7443949, 175.28768445, "18"], +[-37.7442027333, 175.28798445, "23"], +[-37.7440214, 175.2879294833, "21"], +[-37.7438457, 175.28784705, "19"], +[-37.7437193167, 175.2877502833, "17"], +[-37.74525185, 175.2910754333, "48"], +[-37.7451950833, 175.2907623167, "46"], +[-37.7450064167, 175.2886865167, "30"], +[-37.7451906333, 175.29026745, "42"], +[-37.7448870167, 175.2901403333, "41"], +[-37.7449136167, 175.2903859167, "43"], +[-37.7448106667, 175.2912657667, "49"], +[-37.7451651333, 175.2912744333, "66"], +[-37.7453184667, 175.2913276667, "64"], +[-37.7455849167, 175.2915121167, "60"], +[-37.7457276333, 175.2915515, "58"], +[-37.7457401667, 175.29136035, "56"], +[-37.74578905, 175.2911438833, "54"], +[-37.7456322833, 175.2911679, "52"], +[-37.7454889167, 175.29115515, "50"], +[-37.7446924833, 175.28845025, "29"], +[-37.74470935, 175.2890596, "31"], +[-37.7447212167, 175.28939765, "33"], +[-37.7447667, 175.2896491833, "35"], +[-37.7448213833, 175.2898583833, "37"], +[-37.7449375333, 175.2882456333, "26"], +[-37.7450709667, 175.2896327, "38"], +[-37.7449923333, 175.2891541333, "34"], +[-37.7449995833, 175.2889097333, "32"], +[-37.7261783333, 175.2730343333, "7"], +[-37.7261284667, 175.27289445, "9"], +[-37.72605565, 175.2727405167, "12"], +[-37.72559145, 175.2727252, "2"], +[-37.7256576167, 175.2724881333, "4"], +[-37.7258387167, 175.27271475, "6"], +[-37.7259277, 175.27249705, "8"], +[-37.7256979667, 175.2730239833, "1"], +[-37.7260395333, 175.2732105167, "3"], +[-37.7261867333, 175.2732393, "5"], +[-37.7531439333, 175.2800905833, "13"], +[-37.7536453333, 175.2794159667, "6"], +[-37.7535330667, 175.2798059167, "10"], +[-37.7531899833, 175.2798975833, "11"], +[-37.7535056, 175.2800304667, "12"], +[-37.7534588167, 175.2802074167, "14"], +[-37.7531003333, 175.28029395, "15"], +[-37.7536804, 175.2804380167, "16"], +[-37.7534029833, 175.28042425, "18"], +[-37.7534305, 175.27889025, "1"], +[-37.7537223667, 175.2790136333, "2"], +[-37.7533679833, 175.27907115, "3"], +[-37.75367745, 175.2792016667, "4"], +[-37.7533321, 175.2792814333, "5"], +[-37.7532832333, 175.2794910167, "7"], +[-37.7535889, 175.2796081, "8"], +[-37.7532384833, 175.2797079833, "9"], +[-37.82303365, 175.2716509667, "16"], +[-37.82277955, 175.2726146, "9"], +[-37.8228803333, 175.2719730667, "12"], +[-37.822887, 175.2724695167, "11"], +[-37.8227472333, 175.2721508333, "10"], +[-37.8230111, 175.2723075667, "13"], +[-37.8229768167, 175.2718715833, "14"], +[-37.8231735667, 175.2722079833, "15"], +[-37.8233449167, 175.2722665167, "17"], +[-37.8231663167, 175.27180375, "18"], +[-37.82348395, 175.2723376667, "19"], +[-37.8233523833, 175.2717675667, "20"], +[-37.8235251333, 175.2721184167, "21"], +[-37.8234987833, 175.2718358, "22"], +[-37.8236074667, 175.27192575, "23"], +[-37.8222798667, 175.2727197833, "2"], +[-37.8224345833, 175.2729911833, "3"], +[-37.82242135, 175.2725701667, "4"], +[-37.8225555667, 175.2728868333, "5"], +[-37.8225351167, 175.2724099667, "6"], +[-37.8226759833, 175.2727397333, "7"], +[-37.8226497167, 175.2722744667, "8"], +[-37.79457935, 175.3294830333, "6"], +[-37.7946414333, 175.3293159167, "8"], +[-37.79438315, 175.3298496833, "2"], +[-37.7947900833, 175.3289492667, "12"], +[-37.7946411167, 175.32999355, "1"], +[-37.7947196667, 175.3291420333, "10"], +[-37.7949547167, 175.3294033333, "11"], +[-37.7949017333, 175.3287554, "14"], +[-37.7947642, 175.3298195167, "3"], +[-37.7944936167, 175.3296239167, "4"], +[-37.7948799167, 175.3295872, "9"], +[-37.7950342667, 175.3292254, "15"], +[-37.7951203333, 175.3289459167, "17"], +[-37.79508465, 175.3299507167, "5"], +[-37.7951445833, 175.3298622333, "7"], +[-37.7688447833, 175.2977332667, "29"], +[-37.7687704167, 175.2968420333, "21A"], +[-37.7688192, 175.29691475, "21"], +[-37.76887445, 175.2970055667, "23A"], +[-37.7689255, 175.2970986667, "23B"], +[-37.7687238667, 175.2979044167, "29A"], +[-37.76928125, 175.29589015, "20"], +[-37.7690640333, 175.2967222667, "28"], +[-37.7688702833, 175.29531005, "3"], +[-37.7688416167, 175.29486585, "2"], +[-37.7689823833, 175.2949081167, "4"], +[-37.7691439167, 175.2949711167, "6"], +[-37.7693198, 175.2951678, "10"], +[-37.76963085, 175.2952632833, "12A"], +[-37.7693779667, 175.2953558667, "12"], +[-37.76889565, 175.2960755167, "11"], +[-37.7688221167, 175.2962545, "13"], +[-37.7687551833, 175.29645245, "15"], +[-37.7693891833, 175.2955450333, "16"], +[-37.76869405, 175.2966548833, "17"], +[-37.7693472833, 175.2957188167, "18"], +[-37.7686103, 175.29680885, "19"], +[-37.7692194, 175.2960757833, "22"], +[-37.7691472, 175.2962498333, "24"], +[-37.7689578167, 175.2972688167, "25"], +[-37.7690688, 175.2964755833, "26"], +[-37.7694364667, 175.2966699333, "30"], +[-37.7689380833, 175.29749935, "27"], +[-37.7691631, 175.2969337167, "32"], +[-37.7692360833, 175.2971006167, "34"], +[-37.76958935, 175.2970918333, "36"], +[-37.76957595, 175.2972259833, "38"], +[-37.7692503667, 175.2973527333, "40"], +[-37.76923385, 175.2975484, "42"], +[-37.7691956667, 175.2976925667, "44"], +[-37.7691193333, 175.2978569833, "46"], +[-37.7690967333, 175.2954273333, "5"], +[-37.7692323667, 175.29504605, "8"], +[-37.76903325, 175.29568145, "7"], +[-37.7689596833, 175.2958911667, "9"], +[-37.7261803667, 175.2868996833, "20"], +[-37.7260356, 175.2867927667, "22"], +[-37.7257459833, 175.2865831667, "23"], +[-37.7255786833, 175.2865031667, "21"], +[-37.7261707333, 175.28663345, "18"], +[-37.7262476667, 175.28642965, "16"], +[-37.7259077167, 175.2866864, "24"], +[-37.7267901167, 175.28537865, "6"], +[-37.7266292, 175.2855584, "8"], +[-37.7265317833, 175.28577215, "10"], +[-37.7264580167, 175.2859867, "12"], +[-37.7263713167, 175.28617315, "14"], +[-37.7267095167, 175.2849505, "1"], +[-37.7264226333, 175.2852558333, "5"], +[-37.7265586167, 175.28513695, "3"], +[-37.72634815, 175.28542355, "7"], +[-37.7269048, 175.2852271667, "4"], +[-37.72627465, 175.2856253333, "9"], +[-37.7261957667, 175.2858418333, "11"], +[-37.7260790167, 175.2860911167, "13"], +[-37.7258890333, 175.2862879667, "15"], +[-37.7270224333, 175.2850970333, "2"], +[-37.7254002833, 175.2864695833, "19"], +[-37.7252550833, 175.28638285, "17"], +[-37.8131391333, 175.3453355667, "23D"], +[-37.81416985, 175.34497095, "23C"], +[-37.8150515333, 175.34601775, "24A"], +[-37.8151828833, 175.34562595, "24B"], +[-37.8166362, 175.3463807667, "18B"], +[-37.8163453167, 175.3459408833, "18A"], +[-37.8147089667, 175.3456657, "27A"], +[-37.8146036667, 175.3463915833, "27C"], +[-37.8141241333, 175.3459511167, "27B"], +[-37.8154362667, 175.3446129, "11"], +[-37.8149870833, 175.3451411, "23"], +[-37.8159877667, 175.3443993167, "8"], +[-37.8158854, 175.3445711167, "10"], +[-37.8159925833, 175.3456378167, "16"], +[-37.8138612667, 175.3447802667, "23B"], +[-37.8132738833, 175.3455090667, "23E"], +[-37.7398406167, 175.2658270333, "3"], +[-37.7397481, 175.2662339667, "11"], +[-37.7399824, 175.2662078167, "4"], +[-37.7397111667, 175.26597495, "5"], +[-37.7396339167, 175.2660955167, "7"], +[-37.7396372333, 175.2662183667, "9"], +[-37.8196066333, 175.27684685, "25"], +[-37.8213285, 175.2780567833, "16"], +[-37.8194791833, 175.2767327, "27"], +[-37.8207532333, 175.2775386, "9"], +[-37.8213182, 175.2777500333, "10"], +[-37.8215530333, 175.2778818333, "12A"], +[-37.82059735, 175.2774971667, "11"], +[-37.8215309333, 175.2779989667, "12"], +[-37.8215444, 175.2780965167, "14"], +[-37.8204455333, 175.277458, "13"], +[-37.8203075667, 175.2774327833, "15"], +[-37.8211845167, 175.2780736333, "18A"], +[-37.8210270833, 175.27811625, "18"], +[-37.82014485, 175.2773817833, "17"], +[-37.8210885333, 175.2780777, "18B"], +[-37.8212850167, 175.2770120833, "1"], +[-37.8209214167, 175.2779246167, "20"], +[-37.8200112167, 175.27723195, "19"], +[-37.8198489, 175.2770754, "21"], +[-37.8205814167, 175.2778404333, "22"], +[-37.8197119833, 175.2769518, "23"], +[-37.8204343167, 175.2777935333, "26"], +[-37.8202912667, 175.2777613333, "28"], +[-37.8193582167, 175.27660945, "29"], +[-37.8201227333, 175.277719, "30"], +[-37.8192523333, 175.2765064833, "31"], +[-37.8199870167, 175.2776442833, "32A"], +[-37.8199256333, 175.2778236167, "32B"], +[-37.8191626167, 175.2765446333, "33"], +[-37.81987985, 175.2775497, "34"], +[-37.8197511, 175.2774180667, "36"], +[-37.8196378, 175.2773029333, "38"], +[-37.82125025, 175.2772368833, "3"], +[-37.8195399667, 175.2777070167, "40"], +[-37.8215314333, 175.2772356, "4"], +[-37.8193583, 175.2775658, "42"], +[-37.8192795333, 175.2774592833, "44"], +[-37.81947495, 175.2771305667, "46"], +[-37.81935005, 175.2770218333, "48"], +[-37.8192269833, 175.2769684, "50"], +[-37.8190954167, 175.2768404, "52"], +[-37.8210984, 175.2775223333, "5"], +[-37.8191065667, 175.27668255, "54"], +[-37.82149415, 175.2774308833, "6"], +[-37.8209162, 175.2775557333, "7"], +[-37.82141955, 175.27761145, "8"], +[-37.7827064667, 175.29623785, "4"], +[-37.7823175667, 175.2963222, "5A"], +[-37.7828687833, 175.2964872167, "6A"], +[-37.7820643333, 175.2962220167, "5B"], +[-37.7820347833, 175.2974995167, "17"], +[-37.7823776667, 175.2961040833, "3A"], +[-37.7826383333, 175.2964561167, "6"], +[-37.78196285, 175.2966167167, "9B"], +[-37.7825407167, 175.2969538333, "10A"], +[-37.7825526833, 175.2968453, "10"], +[-37.7819957333, 175.2976974167, "19"], +[-37.7822103833, 175.2957954333, "1A"], +[-37.78242445, 175.295911, "1"], +[-37.7819697, 175.2978963167, "21"], +[-37.78275975, 175.2960506833, "2"], +[-37.78211235, 175.2960855833, "3B"], +[-37.78299125, 175.2963267167, "4A"], +[-37.7820390167, 175.2964425833, "7A"], +[-37.7822625667, 175.29650855, "7"], +[-37.7828878833, 175.2967811167, "8A"], +[-37.7825942167, 175.2966709333, "8"], +[-37.7822231167, 175.2966932833, "9"], +[-37.7824805, 175.2971239167, "12"], +[-37.7821726167, 175.2968949167, "11A"], +[-37.7819697333, 175.2967767667, "11B"], +[-37.7821177333, 175.2971052333, "13"], +[-37.7820750167, 175.2973086, "15"], +[-37.7912705667, 175.3212375833, "17"], +[-37.79150565, 175.3211464833, "14"], +[-37.7911343167, 175.3208163, "7"], +[-37.79138845, 175.32076065, "10"], +[-37.7909112833, 175.32120395, "11"], +[-37.7914481667, 175.3209573333, "12"], +[-37.7909455833, 175.3212996, "15"], +[-37.79157255, 175.3213324333, "16"], +[-37.7916413333, 175.3215566, "18"], +[-37.7913394, 175.3214490667, "19"], +[-37.7910306167, 175.3204641, "1"], +[-37.7910939, 175.32165995, "21"], +[-37.7911309667, 175.3217772667, "23"], +[-37.7914033167, 175.3216967333, "25"], +[-37.7914711333, 175.3218932333, "27"], +[-37.7912702333, 175.3203674167, "2"], +[-37.7906, 175.3208435333, "3A"], +[-37.7905407833, 175.3206679667, "3B"], +[-37.7907401, 175.3206739, "3"], +[-37.7913205, 175.3205184333, "4"], +[-37.7910635667, 175.3206372333, "5"], +[-37.7917129333, 175.3205171833, "6"], +[-37.7917226333, 175.3206142833, "8"], +[-37.79119815, 175.3210223, "9"], +[-37.7713489833, 175.2582518833, "7B"], +[-37.7711601167, 175.2583254167, "9"], +[-37.7712659167, 175.2589884833, "4"], +[-37.7714050167, 175.25910755, "2"], +[-37.77160715, 175.2587198667, "3"], +[-37.7714993167, 175.2583352667, "5A"], +[-37.7714567833, 175.25858695, "5"], +[-37.7709339667, 175.2589537333, "6B"], +[-37.7710925833, 175.2588155833, "6"], +[-37.7713024833, 175.2584562, "7"], +[-37.7709497167, 175.2586665833, "8"], +[-37.77115475, 175.2591240667, "4A"], +[-37.7985964833, 175.3119025667, "13A"], +[-37.7990228, 175.3113352833, "18A"], +[-37.7994158167, 175.3114540667, "22"], +[-37.7980403167, 175.31095165, "4"], +[-37.8017553333, 175.3133719167, "1/53"], +[-37.8015668, 175.3135033333, "53B"], +[-37.8018003167, 175.3140417833, "61A"], +[-37.8022132333, 175.3144532833, "69"], +[-37.80067015, 175.31194215, "48"], +[-37.7995726167, 175.3115488833, "24"], +[-37.7996678167, 175.3119668, "25"], +[-37.7998354833, 175.3112261667, "28B"], +[-37.80201275, 175.3138431833, "61"], +[-37.80157035, 175.3124238667, "62"], +[-37.8020462333, 175.3140934833, "63"], +[-37.8018941833, 175.3122134333, "64"], +[-37.80203285, 175.3145584833, "65A"], +[-37.8018489667, 175.3144845167, "65B"], +[-37.8016824333, 175.3126106667, "66"], +[-37.8021254667, 175.3146159333, "67"], +[-37.8020231333, 175.3123875167, "68"], +[-37.8020027833, 175.3132576667, "80"], +[-37.8023832667, 175.31310435, "82"], +[-37.8021077667, 175.3134575, "84"], +[-37.80248465, 175.3133058833, "86"], +[-37.8022164, 175.3136771, "88"], +[-37.7999501, 175.3116737667, "30"], +[-37.8001143833, 175.3121286167, "31"], +[-37.8013227167, 175.3118233167, "56A"], +[-37.7984700167, 175.3115052833, "11"], +[-37.7984954833, 175.3111383667, "12A"], +[-37.7985425833, 175.310762, "12B"], +[-37.7986302167, 175.3115801, "13"], +[-37.79874175, 175.3108463167, "14A"], +[-37.7986602833, 175.3111985167, "14"], +[-37.7987281167, 175.3119446333, "15A"], +[-37.7988211333, 175.3116340667, "15"], +[-37.7989284667, 175.3110093167, "16A"], +[-37.7989578, 175.3108800667, "16B"], +[-37.7988420667, 175.3112706, "16"], +[-37.7989925167, 175.31171005, "17A"], +[-37.7989022833, 175.3121223833, "17B"], +[-37.7991052, 175.3109696, "18B"], +[-37.7991905667, 175.31139645, "20"], +[-37.7991883167, 175.3117658833, "21"], +[-37.7996296333, 175.3111504, "24A"], +[-37.7997630833, 175.3116135833, "28"], +[-37.7998873167, 175.31204685, "29"], +[-37.7978711333, 175.310897, "2"], +[-37.8001555167, 175.3117698667, "32"], +[-37.800337, 175.3122184, "33"], +[-37.8005474167, 175.3122721667, "35"], +[-37.8003406167, 175.3118469167, "38"], +[-37.80051975, 175.3118957167, "40A"], +[-37.8009612167, 175.3124379167, "41"], +[-37.8005790167, 175.3115350667, "40B"], +[-37.8011507667, 175.3125160833, "43"], +[-37.8013294, 175.3126497333, "45"], +[-37.8014668667, 175.31283475, "47"], +[-37.80156965, 175.31301355, "49"], +[-37.8008122333, 175.3119993833, "50"], +[-37.80151155, 175.3133283, "51A"], +[-37.8016636, 175.31317815, "51"], +[-37.8009750667, 175.3120474, "52"], +[-37.8011104333, 175.3120817333, "54"], +[-37.8012738, 175.3121604167, "56"], +[-37.8018513667, 175.3135349833, "55"], +[-37.8014261167, 175.3122619, "58"], +[-37.8019303, 175.3137156667, "59"], +[-37.80172275, 175.3120300833, "60"], +[-37.80208945, 175.3125204167, "70"], +[-37.8022862167, 175.31429125, "71"], +[-37.8017954333, 175.3128516833, "72"], +[-37.8023621833, 175.3141341667, "73A"], +[-37.8026069667, 175.3142936, "73B"], +[-37.8021734667, 175.3127010167, "74"], +[-37.8019063, 175.3130525167, "76"], +[-37.8022767833, 175.3128994667, "78"], +[-37.8025901, 175.3138294667, "90A"], +[-37.8024885333, 175.3136887333, "90B"], +[-37.8023412333, 175.3138975333, "90"], +[-37.7713789333, 175.25754325, "9"], +[-37.7723705167, 175.2556853167, "43A"], +[-37.7721361167, 175.2554761667, "43"], +[-37.7711865, 175.2567123167, "16A"], +[-37.7720207833, 175.25497875, "36"], +[-37.77104155, 175.2573412, "10"], +[-37.7714724, 175.2573841667, "11"], +[-37.7711335833, 175.2572046333, "12"], +[-37.77185605, 175.2576419833, "13"], +[-37.7712336, 175.2570690333, "14"], +[-37.7718982, 175.2575307833, "15"], +[-37.7713235333, 175.2569308167, "16"], +[-37.7716094667, 175.25718235, "17"], +[-37.77142195, 175.2567625, "18"], +[-37.77202545, 175.2573451333, "19"], +[-37.7711488, 175.25784705, "1A"], +[-37.7710805, 175.25795155, "1"], +[-37.7714923167, 175.2565383833, "20"], +[-37.7717122333, 175.2569949833, "21"], +[-37.7714688167, 175.2562328, "22"], +[-37.77178515, 175.2568097667, "23"], +[-37.7720687, 175.2568894833, "25"], +[-37.7714518667, 175.25583165, "26"], +[-37.77231545, 175.2571004833, "27"], +[-37.7713460833, 175.2554194333, "28A"], +[-37.7715597667, 175.2556448833, "28"], +[-37.7723770333, 175.2569669, "29"], +[-37.7714737833, 175.2552539167, "30A"], +[-37.7716718333, 175.2554717667, "30"], +[-37.77210495, 175.2566877, "31"], +[-37.7717920667, 175.2552972167, "32A"], +[-37.7715791667, 175.2550623167, "32"], +[-37.7717887667, 175.2564330833, "33"], +[-37.7719061333, 175.2551199167, "34"], +[-37.7719418167, 175.2562837167, "35A"], +[-37.7718060667, 175.2562046833, "35"], +[-37.7720724333, 175.2561874333, "37B"], +[-37.77123395, 175.2577325, "3"], +[-37.7718411833, 175.2559662167, "37"], +[-37.7721669833, 175.2560253333, "39A"], +[-37.7719413167, 175.2558066333, "39"], +[-37.7722504667, 175.2553023333, "45"], +[-37.7724448667, 175.2555371167, "47"], +[-37.7716578667, 175.2580264, "5"], +[-37.7707915667, 175.2577747833, "6"], +[-37.7717069333, 175.2579035167, "7"], +[-37.7709478167, 175.2574981833, "8"], +[-37.7720486, 175.2556507667, "41"], +[-37.79587805, 175.25441405, "6B"], +[-37.79589455, 175.2538444333, "5A"], +[-37.79758885, 175.25362315, "28"], +[-37.7956690333, 175.2536137833, "3D"], +[-37.79574585, 175.2539179833, "3A"], +[-37.7957197167, 175.2538195333, "3B"], +[-37.7956963167, 175.2537247, "3C"], +[-37.79727665, 175.25376315, "24"], +[-37.796123, 175.2544965333, "8B"], +[-37.7960464833, 175.2545258667, "8A"], +[-37.7962097667, 175.25447535, "8C"], +[-37.7972887167, 175.2531796833, "23B"], +[-37.7970432667, 175.2541305167, "20C"], +[-37.7972393667, 175.25297555, "23D"], +[-37.7976157833, 175.2537512667, "28A"], +[-37.7953724833, 175.2540540833, "1A"], +[-37.7955985, 175.2539992833, "1C"], +[-37.7954909, 175.2540192833, "1B"], +[-37.7961243167, 175.2541803667, "10"], +[-37.7963502, 175.254544, "12A"], +[-37.79625845, 175.2541264167, "12"], +[-37.79675095, 175.2534998333, "15"], +[-37.7968418, 175.2539030333, "18A"], +[-37.7967548, 175.2539438333, "18"], +[-37.7970381167, 175.2534008833, "19"], +[-37.7971803667, 175.2533349667, "21"], +[-37.7971309833, 175.25381635, "22"], +[-37.7974577167, 175.2532286, "25"], +[-37.79742695, 175.2537101333, "26"], +[-37.7976220167, 175.25316595, "27A"], +[-37.7975149833, 175.2528101667, "27B"], +[-37.7955881833, 175.25438635, "2"], +[-37.7976513333, 175.2538975333, "28B"], +[-37.7976784667, 175.2540346167, "28C"], +[-37.7977601, 175.2531114667, "29A"], +[-37.7976575167, 175.25275885, "29B"], +[-37.7977196, 175.25359545, "30"], +[-37.7979022, 175.25304475, "31A"], +[-37.79780655, 175.25268235, "31B"], +[-37.7978538, 175.253552, "32"], +[-37.7981520833, 175.2533665333, "33A"], +[-37.7980523667, 175.2531895, "33"], +[-37.7979978, 175.2534871833, "34A"], +[-37.79808955, 175.2538812333, "34B"], +[-37.7980305, 175.2531285667, "35"], +[-37.7983866333, 175.2531511, "39"], +[-37.7957264667, 175.25433415, "4"], +[-37.7959289667, 175.2533688667, "7A"], +[-37.7960238167, 175.2537892833, "7"], +[-37.7959956167, 175.2542259333, "8"], +[-37.7961566, 175.25373805, "9"], +[-37.7963756, 175.2540825333, "14A"], +[-37.79698925, 175.2538621667, "20A"], +[-37.7970202667, 175.2540041167, "20B"], +[-37.7970658, 175.2542373167, "20D"], +[-37.7958626833, 175.2542717667, "6A"], +[-37.7972236, 175.2528737833, "23E"], +[-37.7972640333, 175.2530776167, "23C"], +[-37.7973136333, 175.2532705, "23A"], +[-37.7957767333, 175.2547091, "4A"], +[-37.7966590833, 175.253306, "15B"], +[-37.7968911833, 175.2534305167, "17A"], +[-37.79680035, 175.25308745, "17D"], +[-37.7968611833, 175.2533145, "17B"], +[-37.7969421, 175.25318265, "19A"], +[-37.7971131667, 175.25313765, "21A"], +[-37.7958080333, 175.2534614667, "5D"], +[-37.7959092333, 175.2545401167, "6C"], +[-37.7959424, 175.25467155, "6D"], +[-37.7958701833, 175.2537429, "5B"], +[-37.7958336667, 175.2535779167, "5C"], +[-37.7968327, 175.2532097, "17C"], +[-37.7576849333, 175.2862589833, "10"], +[-37.7580325667, 175.2861916833, "3"], +[-37.7578535333, 175.2864559333, "4"], +[-37.7579535167, 175.2860242667, "5A"], +[-37.75807475, 175.2857810833, "5B"], +[-37.7574786167, 175.2866469833, "6"], +[-37.7577757167, 175.2859978833, "7A"], +[-37.7578497833, 175.2859822833, "7"], +[-37.7575550833, 175.2864571, "8"], +[-37.7577053667, 175.2860876833, "9"], +[-37.7484130333, 175.2910038167, "2"], +[-37.7479481333, 175.2902868833, "10"], +[-37.7483814333, 175.2902337667, "11"], +[-37.7480841833, 175.2901904167, "12"], +[-37.7482676833, 175.2901062, "13"], +[-37.7481112, 175.2900487167, "14"], +[-37.7481803833, 175.2898670333, "15"], +[-37.7480425833, 175.28961865, "17"], +[-37.7479625833, 175.2897359167, "16"], +[-37.7485806667, 175.2911106, "1"], +[-37.7486408333, 175.2909362833, "3"], +[-37.7484694167, 175.2907489333, "4"], +[-37.7487478, 175.2907972833, "5"], +[-37.7483325333, 175.2906154667, "6"], +[-37.7486607667, 175.2906930833, "7"], +[-37.7481096167, 175.2904086167, "8"], +[-37.7485024, 175.2904257, "9"], +[-37.7510832667, 175.2848827167, "10"], +[-37.7512385833, 175.2846469333, "11"], +[-37.7509114167, 175.2846454667, "12"], +[-37.7510883667, 175.2846743333, "13"], +[-37.7515460833, 175.28468755, "7"], +[-37.7513892333, 175.2847298667, "9"], +[-37.7513926333, 175.2853674, "3"], +[-37.7510924167, 175.2855506833, "4"], +[-37.7513982667, 175.2851213, "5"], +[-37.75109745, 175.2853189333, "6"], +[-37.7511028667, 175.2851166167, "8"], +[-37.7726563667, 175.23961935, "12"], +[-37.77242595, 175.2394032167, "12A"], +[-37.7729487, 175.2398820167, "11"], +[-37.7731941833, 175.2401118, "11A"], +[-37.7727659, 175.2402254667, "7"], +[-37.7729635167, 175.2390893667, "18"], +[-37.7731508667, 175.238267, "26A"], +[-37.7730509833, 175.2381994333, "26B"], +[-37.7743644667, 175.2380455167, "37A"], +[-37.7742319833, 175.2382353833, "37B"], +[-37.77319685, 175.2381613, "26"], +[-37.7723553167, 175.2400890833, "6"], +[-37.7731152333, 175.240281, "9A"], +[-37.7729545333, 175.24037265, "7A"], +[-37.77307035, 175.2389060667, "20"], +[-37.7728342167, 175.2388874667, "18B"], +[-37.7727547, 175.2394347, "14"], +[-37.77253455, 175.2392433833, "14A"], +[-37.77273435, 175.2391356, "16A"], +[-37.7725813167, 175.2389916167, "16B"], +[-37.7723417167, 175.24086975, "1A"], +[-37.7748310833, 175.2365697667, "55"], +[-37.7739567833, 175.2380121, "33"], +[-37.7725572667, 175.2397703, "10"], +[-37.7733858167, 175.2391649833, "19"], +[-37.7730379, 175.2397156833, "13A"], +[-37.7731109333, 175.2398557, "13B"], +[-37.7728741, 175.2392612167, "16"], +[-37.7734766667, 175.23897935, "21"], +[-37.77319215, 175.2387021833, "22"], +[-37.7736578333, 175.2386690667, "23"], +[-37.7733117, 175.2385351167, "24"], +[-37.7724709833, 175.24068615, "1"], +[-37.77327325, 175.2378505333, "30"], +[-37.7738759167, 175.2381675167, "31"], +[-37.7735541, 175.2379811167, "32"], +[-37.77350045, 175.2378424333, "32B"], +[-37.7736509167, 175.23773985, "34"], +[-37.7742474, 175.2380402, "35B"], +[-37.7740472167, 175.2378565, "35A"], +[-37.7737581833, 175.2375385833, "36"], +[-37.7735895667, 175.2373213333, "38"], +[-37.7741503667, 175.2376485667, "39"], +[-37.77345785, 175.2382577833, "28"], +[-37.7740313167, 175.23659175, "50"], +[-37.7740931, 175.2364759167, "52"], +[-37.7743267333, 175.2366286167, "54"], +[-37.77442805, 175.2364631, "56"], +[-37.7749202167, 175.2363993667, "57"], +[-37.77457235, 175.2362383833, "58"], +[-37.7742450333, 175.23749925, "41"], +[-37.77389195, 175.2373546333, "42"], +[-37.7743504333, 175.23733875, "43"], +[-37.77410445, 175.23699985, "46"], +[-37.7740053167, 175.23717615, "44"], +[-37.7742029833, 175.2368296833, "48"], +[-37.77256655, 175.2405383, "3"], +[-37.7746552333, 175.2360761, "60B"], +[-37.7726715833, 175.24037485, "5"], +[-37.7728545667, 175.2400437667, "9"], +[-37.7721040333, 175.2398485333, "6A"], +[-37.7722080333, 175.2397115667, "8A"], +[-37.77246245, 175.239936, "8"], +[-37.7721857333, 175.2404091667, "2"], +[-37.7719904333, 175.2399992333, "4"], +[-37.7722613, 175.2402518833, "4A"], +[-37.7728565833, 175.2386901667, "20B"], +[-37.7727936833, 175.2386308667, "20C"], +[-37.7736511833, 175.2372162333, "40"], +[-37.7238824667, 175.2400725833, "7"], +[-37.7237582833, 175.2400129833, "9"], +[-37.7243025167, 175.2403143167, "1"], +[-37.7241433333, 175.24026235, "3"], +[-37.78578915, 175.3017027333, "14"], +[-37.7851565667, 175.3018642333, "3"], +[-37.7851415333, 175.3023054667, "5"], +[-37.7857271833, 175.30129105, "10"], +[-37.7854383167, 175.3024142667, "11"], +[-37.78587295, 175.3010134333, "12A"], +[-37.78552995, 175.3024392167, "13A"], +[-37.7858077833, 175.3013308167, "12"], +[-37.7855742, 175.3024640167, "13B"], +[-37.7857025167, 175.3020735, "15"], +[-37.7859061833, 175.3021323333, "17"], +[-37.7863957, 175.3021093333, "19"], +[-37.7850207667, 175.3018052, "1"], +[-37.7862091667, 175.3016737167, "20"], +[-37.7865086333, 175.3019985667, "21"], +[-37.78660045, 175.3017911333, "23"], +[-37.7852138, 175.3015330833, "2"], +[-37.7867714833, 175.3014394833, "25"], +[-37.7854065667, 175.30158865, "4"], +[-37.7853303, 175.3019246833, "7"], +[-37.78559545, 175.3016234833, "8"], +[-37.7854818667, 175.3020025, "9"], +[-37.78555435, 175.30121055, "6"], +[-37.78561365, 175.3010381, "6A"], +[-37.7825478, 175.29387605, "12"], +[-37.78330485, 175.2937698167, "22B"], +[-37.7832363333, 175.29407795, "22"], +[-37.7822560333, 175.29414205, "5"], +[-37.78246695, 175.2942346167, "7"], +[-37.7823377667, 175.2937644833, "10"], +[-37.78305505, 175.2944361, "11"], +[-37.7838486333, 175.2940697667, "28A"], +[-37.7837125, 175.2942674333, "28"], +[-37.7820528833, 175.2940744667, "3"], +[-37.7814575667, 175.2938271667, "1A"], +[-37.7816126333, 175.2938990667, "1B"], +[-37.7818395333, 175.2942004667, "1D"], +[-37.7825951167, 175.2936392167, "12A"], +[-37.783256, 175.2945081333, "13"], +[-37.7834402167, 175.29458135, "15"], +[-37.7826472167, 175.2936564667, "14A"], +[-37.78259475, 175.2938863333, "14"], +[-37.7827987667, 175.2939778167, "16"], +[-37.7829841333, 175.2937046167, "18"], +[-37.7831454833, 175.2936980833, "20B"], +[-37.78306055, 175.2940313833, "20"], +[-37.7818102, 175.2939893667, "1C"], +[-37.7833968167, 175.2941510167, "24"], +[-37.7840388667, 175.2948016167, "21"], +[-37.7842350667, 175.2948750333, "23"], +[-37.7844606167, 175.29495975, "25"], +[-37.78354925, 175.2942043833, "26"], +[-37.7839219833, 175.2943426833, "30"], +[-37.78160475, 175.2934981833, "2"], +[-37.7844742, 175.29454535, "32A"], +[-37.7842633167, 175.2944648667, "32"], +[-37.7820817333, 175.2935183333, "6"], +[-37.7821542667, 175.29370035, "8"], +[-37.7826217833, 175.2942869333, "9"], +[-37.7846419333, 175.2955732333, "1/34-8/34"], +[-37.7838497167, 175.2947370833, "19A"], +[-37.7837888167, 175.2947135833, "19"], +[-37.7835945167, 175.2946296167, "17"], +[-37.7544477, 175.28007585, "10"], +[-37.75413415, 175.27987365, "11"], +[-37.75441025, 175.2802901167, "12"], +[-37.7540896667, 175.2800669, "13"], +[-37.7543474833, 175.2804908333, "14"], +[-37.75403285, 175.2803080667, "15"], +[-37.75430355, 175.2806964333, "16"], +[-37.75397395, 175.28055355, "17"], +[-37.7542368667, 175.2808951167, "18"], +[-37.7539189667, 175.2807260833, "19"], +[-37.7542805667, 175.27923555, "1"], +[-37.7546549667, 175.2792878, "2"], +[-37.7542542333, 175.2794151333, "3"], +[-37.7546029833, 175.2794470833, "4"], +[-37.7542020333, 175.2796095833, "5"], +[-37.7545498167, 175.27966105, "6"], +[-37.75394295, 175.2795518667, "7"], +[-37.75450095, 175.2798953667, "8"], +[-37.7539044167, 175.2797002, "9"], +[-37.7577704333, 175.24310815, "27"], +[-37.7573712667, 175.2426846833, "25"], +[-37.7578399167, 175.2426856667, "26"], +[-37.7571066333, 175.24241235, "23"], +[-37.7569096333, 175.2421956167, "21"], +[-37.7564353667, 175.2417398667, "13"], +[-37.75677025, 175.24155645, "6"], +[-37.7566684833, 175.2419643833, "19"], +[-37.756237, 175.2421379667, "15"], +[-37.7758815, 175.2351903167, "10A"], +[-37.7759058667, 175.2359749667, "5"], +[-37.7761343667, 175.2349997833, "14"], +[-37.77622335, 175.2346635, "16A"], +[-37.77624915, 175.2348021167, "16"], +[-37.7764893833, 175.2349972333, "17"], +[-37.7763279, 175.23458105, "18"], +[-37.77660815, 175.2348425167, "19"], +[-37.77644855, 175.2344792667, "20A"], +[-37.7765018833, 175.2343314, "20B"], +[-37.77684835, 175.23440885, "21A"], +[-37.7766033167, 175.2345499833, "22A"], +[-37.7766740833, 175.2342888667, "22B"], +[-37.7767808833, 175.2347333833, "24"], +[-37.7759310833, 175.2353409667, "10"], +[-37.7761979667, 175.23548745, "11"], +[-37.77604665, 175.23514675, "12"], +[-37.7762937167, 175.2353310833, "13"], +[-37.7763806833, 175.2351729667, "15"], +[-37.7758034667, 175.2361502167, "3"], +[-37.7756109333, 175.2358901833, "4"], +[-37.7757148, 175.2357192833, "6"], +[-37.77600995, 175.2358084167, "7"], +[-37.7758263333, 175.2355348833, "8"], +[-37.7760936333, 175.2356551333, "9"], +[-37.72427625, 175.2393310333, "10"], +[-37.724261, 175.2398480667, "3"], +[-37.7243742167, 175.23965, "5"], +[-37.72452545, 175.2395233333, "7"], +[-37.7244024, 175.2394082333, "9"], +[-37.7241345667, 175.2392182333, "8"], +[-37.7241013833, 175.2394773833, "6"], +[-37.7240547, 175.2397156167, "4"], +[-37.7239993, 175.2399607, "2"], +[-37.7429212333, 175.2355938167, "12A"], +[-37.7430949833, 175.2349926333, "17A"], +[-37.7434734667, 175.235029, "15B"], +[-37.7433404, 175.2351421833, "15A"], +[-37.7427534667, 175.23583905, "12B"], +[-37.7432387, 175.2348263667, "17"], +[-37.7430328167, 175.235751, "10B"], +[-37.7432084667, 175.2355808, "10"], +[-37.7436939667, 175.2352619, "11"], +[-37.7435184, 175.2351640167, "13"], +[-37.7430743333, 175.2354285667, "14"], +[-37.7431174833, 175.2352172667, "16"], +[-37.7437699333, 175.2361036167, "2"], +[-37.7441369333, 175.23593015, "3A"], +[-37.7442794667, 175.23590895, "3B"], +[-37.7437997333, 175.2358794833, "4"], +[-37.74362365, 175.2356748, "6"], +[-37.7441162, 175.2356951667, "5"], +[-37.7439816667, 175.23557525, "7A"], +[-37.7440734833, 175.2353527333, "7B"], +[-37.7434391333, 175.2355992333, "8"], +[-37.7438708333, 175.2353656167, "9"], +[-37.7667084833, 175.2870810167, "14"], +[-37.7674885333, 175.2874984, "4"], +[-37.76442515, 175.2860163333, "51"], +[-37.7664169667, 175.2865121833, "21"], +[-37.7659812, 175.2863007, "27"], +[-37.7655802333, 175.2865989, "32"], +[-37.76712525, 175.2873442, "8"], +[-37.7665085167, 175.28698275, "18"], +[-37.7654248167, 175.28657885, "36"], +[-37.7638872667, 175.2862184, "58"], +[-37.76406215, 175.2862522833, "56"], +[-37.76411335, 175.2859065833, "55"], +[-37.7661176167, 175.2867202667, "26"], +[-37.7676063833, 175.2875452833, "2"], +[-37.7672954833, 175.28766255, "6A"], +[-37.7649186167, 175.2861486667, "41"], +[-37.7647461333, 175.2861158833, "43"], +[-37.7647003833, 175.2864585333, "46"], +[-37.7645855667, 175.2860692, "47"], +[-37.7645213833, 175.2864141333, "48"], +[-37.7643743167, 175.2863760833, "50"], +[-37.76421705, 175.28631705, "52"], +[-37.7643888833, 175.28576165, "53A"], +[-37.7642891, 175.2859641667, "53"], +[-37.7639619833, 175.2858606, "57"], +[-37.7637876, 175.2857922333, "61"], +[-37.76701985, 175.2872725833, "10"], +[-37.7669308, 175.28682585, "11"], +[-37.7668638, 175.2871842333, "12"], +[-37.7668019333, 175.2867485833, "15"], +[-37.7666762, 175.2866664833, "17"], +[-37.7665499167, 175.2865810833, "19"], +[-37.7676346667, 175.2871865, "1"], +[-37.76638595, 175.2869064667, "20"], +[-37.7662363667, 175.28682495, "22"], +[-37.7662644167, 175.2864271167, "23"], +[-37.7661276, 175.2863574167, "25"], +[-37.7658275667, 175.2862420833, "29"], +[-37.7657691667, 175.2866162, "30"], +[-37.7656426, 175.2862117333, "31"], +[-37.7653160667, 175.2862015, "37"], +[-37.7652437, 175.2865684667, "38"], +[-37.7651197667, 175.2861804, "39"], +[-37.7673402667, 175.2870560167, "5"], +[-37.7672830833, 175.2874301833, "6"], +[-37.7672034167, 175.2869747667, "7"], +[-37.7671182667, 175.2875461, "8A"], +[-37.7670711333, 175.28690865, "9"], +[-37.7674958, 175.2871216833, "3"], +[-37.8031477667, 175.2963037833, "1"], +[-37.8033708, 175.2964044333, "2"], +[-37.8031831833, 175.2960876, "3"], +[-37.8034309333, 175.29619905, "4"], +[-37.8032092, 175.2958646, "5"], +[-37.8034971667, 175.2959815333, "6"], +[-37.8033069, 175.2957710167, "7"], +[-37.8034377333, 175.2958376833, "8"], +[-37.7721098667, 175.238953, "13C"], +[-37.7720624333, 175.23901035, "11B"], +[-37.7711664833, 175.2372541667, "18C"], +[-37.7715349333, 175.2376004167, "18A"], +[-37.7713476333, 175.23740475, "18B"], +[-37.7707846833, 175.2376891167, "12E"], +[-37.7719385167, 175.23813615, "17"], +[-37.7721258, 175.2367869667, "26A"], +[-37.7735617, 175.23603805, "59"], +[-37.7710591, 175.2384735, "8B"], +[-37.7720618667, 175.2371429167, "24"], +[-37.7727636167, 175.2376226167, "25A"], +[-37.7724053667, 175.2373591833, "25"], +[-37.7721846667, 175.2369426333, "26"], +[-37.7726068833, 175.2372674167, "27A"], +[-37.7727467833, 175.2374171167, "27B"], +[-37.7728829333, 175.2375563833, "27C"], +[-37.7730303333, 175.23770395, "27D"], +[-37.7731285, 175.23748335, "27E"], +[-37.7729602167, 175.2373222667, "27F"], +[-37.7745849833, 175.2352906833, "58"], +[-37.7718472167, 175.2369893667, "24A"], +[-37.7716455, 175.23681805, "24B"], +[-37.77523015, 175.2358643167, "68"], +[-37.7740231, 175.2349987167, "54"], +[-37.7714073167, 175.23822285, "12A"], +[-37.7711920833, 175.2380627667, "12B"], +[-37.7710195167, 175.2379240167, "12C"], +[-37.7708907667, 175.2377964, "12D"], +[-37.7712966667, 175.2383964833, "10A"], +[-37.7711446667, 175.2381612, "10B"], +[-37.7709822833, 175.2380127333, "10C"], +[-37.770856, 175.2378834, "10D"], +[-37.7707419167, 175.23777895, "10E"], +[-37.7719284, 175.2388944, "11A"], +[-37.7716068, 175.2387041167, "11"], +[-37.77172265, 175.2377147833, "18"], +[-37.7720740833, 175.2379068333, "19A"], +[-37.7722341833, 175.2379567, "19B"], +[-37.7718740833, 175.2385101, "13A"], +[-37.7719662833, 175.238786, "13B"], +[-37.7717267167, 175.23849155, "13"], +[-37.7714952667, 175.238065, "14"], +[-37.77216265, 175.2386351167, "15B"], +[-37.7722813, 175.2387609167, "15C"], +[-37.7718475667, 175.2383160833, "15"], +[-37.7714340167, 175.2376602167, "16B"], +[-37.7713253, 175.2375318667, "16D"], +[-37.7711894167, 175.2374097667, "16E"], +[-37.7710627, 175.2372712167, "16F"], +[-37.7715954, 175.2378984667, "16"], +[-37.7720946, 175.2381805833, "17B"], +[-37.77151205, 175.2372870333, "20A"], +[-37.7713522, 175.23713805, "20B"], +[-37.7718378333, 175.2375071833, "20"], +[-37.7721822, 175.23774455, "21A"], +[-37.7723183, 175.23779555, "21B"], +[-37.77194235, 175.2373332667, "22A"], +[-37.7717646833, 175.2372021333, "22B"], +[-37.7715766, 175.2370330667, "22C"], +[-37.7714465667, 175.2369336667, "22D"], +[-37.7722915167, 175.23756435, "23A"], +[-37.77250185, 175.2376757, "23B"], +[-37.77264685, 175.2378117, "23C"], +[-37.7727905167, 175.2379469667, "23D"], +[-37.77111875, 175.2395071667, "1"], +[-37.7731894333, 175.2365215167, "39"], +[-37.7727235667, 175.2367997333, "29"], +[-37.7729401, 175.2369116333, "31"], +[-37.7731815667, 175.2371295333, "31A"], +[-37.7732315333, 175.2370425833, "33A"], +[-37.77329465, 175.23712285, "33B"], +[-37.77317975, 175.2367715, "35A"], +[-37.7730082167, 175.2368032167, "35"], +[-37.7724509, 175.23658885, "36"], +[-37.7728593333, 175.2365662333, "37"], +[-37.7727785333, 175.2371412, "27G"], +[-37.7726008833, 175.2369550667, "27H"], +[-37.7725128667, 175.237159, "27"], +[-37.7719799333, 175.2366540333, "28"], +[-37.7718001, 175.2364221667, "30A"], +[-37.7718423, 175.2363729167, "30"], +[-37.7732775167, 175.23721425, "31B"], +[-37.7720698833, 175.2365410167, "32"], +[-37.77235145, 175.2367213833, "34A"], +[-37.7721919, 175.2366605333, "34B"], +[-37.7708251333, 175.2392230333, "2"], +[-37.7736076, 175.23511605, "50B"], +[-37.7735228833, 175.2351625, "50A"], +[-37.77294825, 175.2357066667, "42"], +[-37.7728152833, 175.2354757, "44"], +[-37.7730398167, 175.2355605167, "46"], +[-37.7732295833, 175.2360007833, "51"], +[-37.7734532833, 175.2361385667, "53"], +[-37.7736893833, 175.2363445167, "55"], +[-37.7737660333, 175.2362477833, "57"], +[-37.7728558667, 175.23588335, "40"], +[-37.7735287333, 175.2368212333, "41B"], +[-37.7734351333, 175.23673955, "41"], +[-37.7729725333, 175.2363929, "43"], +[-37.7734809, 175.2366470333, "45A"], +[-37.7735577, 175.2367258, "45"], +[-37.7732666, 175.2363968167, "47"], +[-37.77311375, 175.2361872167, "49"], +[-37.7711994667, 175.2393845167, "3"], +[-37.77100535, 175.2389363167, "4A"], +[-37.77095355, 175.2390280333, "4"], +[-37.77130155, 175.2392199, "5A"], +[-37.77472415, 175.2353850167, "60"], +[-37.7748586667, 175.2355045833, "62"], +[-37.7749912833, 175.23562375, "64"], +[-37.7743412167, 175.2356140167, "75"], +[-37.7744598, 175.2359763, "77B"], +[-37.77442885, 175.23605715, "77C"], +[-37.7745008667, 175.2357653667, "77"], +[-37.7746477667, 175.2358773667, "81"], +[-37.7735298333, 175.2355776, "63"], +[-37.7737149833, 175.2354802, "65"], +[-37.7739084, 175.23544285, "67"], +[-37.7739325, 175.2358068333, "69"], +[-37.774038, 175.23584975, "71"], +[-37.7733650667, 175.23575365, "61"], +[-37.77413695, 175.23548305, "73"], +[-37.7714358167, 175.2394154667, "5B"], +[-37.7711238167, 175.2387223667, "6A"], +[-37.7709839333, 175.2385878, "6B"], +[-37.7708503167, 175.2384281167, "6C"], +[-37.7706878, 175.2382661333, "6D"], +[-37.7716062, 175.2391410833, "7B"], +[-37.7713943833, 175.23903795, "7"], +[-37.7712013667, 175.2385766333, "8A"], +[-37.7707319833, 175.2381821, "8C"], +[-37.7709172333, 175.23832955, "8"], +[-37.7716759, 175.2389628333, "9A"], +[-37.7718334167, 175.2391097, "9B"], +[-37.7719848833, 175.2392473833, "9C"], +[-37.7715081167, 175.2388692, "9"], +[-37.7751118333, 175.23574305, "66"], +[-37.7751297, 175.2362987333, "83"], +[-37.7750307333, 175.23671445, "85"], +[-37.77523105, 175.23666355, "87B"], +[-37.7752686167, 175.2365320667, "87"], +[-37.7755317, 175.23693825, "91A"], +[-37.7754219, 175.2366759833, "89A"], +[-37.7755739167, 175.23682165, "91"], +[-37.7753818667, 175.2367939667, "89B"], +[-37.7754748, 175.2371001667, "93"], +[-37.7346444, 175.2789038, "2"], +[-37.73438255, 175.27954795, "8"], +[-37.7345127833, 175.2799196333, "10"], +[-37.7343127833, 175.2798683333, "16"], +[-37.7344420167, 175.2793439, "6"], +[-37.7341903167, 175.2795962, "13"], +[-37.73395735, 175.2795189833, "11"], +[-37.7341259833, 175.2791845, "7"], +[-37.7342733667, 175.2790181167, "5"], +[-37.73436015, 175.2788273667, "3"], +[-37.7344413667, 175.2786190667, "1"], +[-37.7340495667, 175.2793507667, "9"], +[-37.73441065, 175.2800900167, "14"], +[-37.7345443, 175.2801093333, "12"], +[-37.7345412833, 175.2791213, "4"], +[-37.7325768167, 175.2653118167, "20"], +[-37.7325661833, 175.2654882667, "18"], +[-37.73304325, 175.2655560167, "19"], +[-37.7326992333, 175.2650763833, "25"], +[-37.7326542, 175.2666656167, "5"], +[-37.7331488833, 175.2656981167, "17"], +[-37.7325701, 175.2673415833, "1"], +[-37.7327983167, 175.2665334, "7A"], +[-37.73292055, 175.2653975833, "21"], +[-37.7327899333, 175.2652348833, "23"], +[-37.73257445, 175.2649410833, "27"], +[-37.7324493333, 175.2647785833, "29"], +[-37.7325205167, 175.2661045667, "10"], +[-37.73296615, 175.2660221167, "11"], +[-37.7326808833, 175.2659478167, "12"], +[-37.7330865667, 175.2658907167, "13"], +[-37.7326696333, 175.2655998167, "14"], +[-37.7332692167, 175.26583335, "15"], +[-37.7325004667, 175.2656875833, "16"], +[-37.7322400667, 175.26727825, "2"], +[-37.7322879333, 175.2671038167, "4"], +[-37.7324038667, 175.2665292167, "6"], +[-37.73271735, 175.2663288667, "7"], +[-37.7324408667, 175.2663019667, "8"], +[-37.7328531833, 175.2661816333, "9"], +[-37.7807592, 175.2856674, "28A"], +[-37.7808844667, 175.28426565, "17"], +[-37.7806737833, 175.2841392333, "19"], +[-37.7804962, 175.2840599, "23"], +[-37.7810152667, 175.2847992333, "24"], +[-37.7807027833, 175.28512375, "30"], +[-37.7818160167, 175.2848624667, "3"], +[-37.7803700333, 175.2844357833, "40"], +[-37.7808476167, 175.2847083167, "32"], +[-37.78072325, 175.2846388833, "34"], +[-37.78102475, 175.2843642167, "1/15"], +[-37.7811003, 175.28417895, "2/15"], +[-37.78194615, 175.2853608333, "4"], +[-37.7813000667, 175.28451135, "11"], +[-37.7812049833, 175.2844329167, "13"], +[-37.78120965, 175.2849405833, "14"], +[-37.7805925333, 175.2841079333, "21"], +[-37.78107775, 175.2848455667, "22"], +[-37.78054105, 175.2847916667, "36A"], +[-37.7805961333, 175.2845808, "36"], +[-37.7804599167, 175.2844973, "38"], +[-37.7816788833, 175.2847635667, "5"], +[-37.7815691333, 175.2846630833, "7"], +[-37.78149865, 175.2846128667, "9"], +[-37.7815553333, 175.2851186167, "10"], +[-37.7813659, 175.2850182833, "12"], +[-37.7820249833, 175.2849963333, "1"], +[-37.7808108167, 175.2852299333, "26"], +[-37.78062205, 175.2855926, "28B"], +[-37.7820827167, 175.2854548667, "2"], +[-37.7818176833, 175.2852635167, "6"], +[-37.7816833167, 175.2851862333, "8A"], +[-37.7815225333, 175.2855302833, "8B"], +[-37.78154825, 175.2854487, "8C"], +[-37.78149625, 175.2854107833, "8"], +[-37.77852095, 175.2208118333, "5"], +[-37.7784143, 175.2213477333, "4"], +[-37.7787684667, 175.2204117833, "9"], +[-37.77890455, 175.2202281167, "11"], +[-37.7789000833, 175.2200328167, "13"], +[-37.7787380667, 175.2199672667, "15"], +[-37.7785677, 175.2200362833, "20"], +[-37.7784409667, 175.2201741333, "18"], +[-37.77831555, 175.2202481333, "16"], +[-37.7783004833, 175.2204357167, "14"], +[-37.7782592667, 175.2206614667, "12"], +[-37.7782517, 175.2208954, "10"], +[-37.7780302333, 175.2211224333, "8"], +[-37.7783085667, 175.2211456167, "6"], +[-37.7785855333, 175.2215129333, "2"], +[-37.7786989167, 175.2212008, "1"], +[-37.77856685, 175.2210475, "3"], +[-37.7785798333, 175.2205476167, "7"], +[-37.7790331333, 175.22012835, "11B"], +[-37.7943541833, 175.2301190833, "10"], +[-37.79401995, 175.23067195, "11"], +[-37.79416855, 175.230337, "12"], +[-37.7940929833, 175.23086325, "13"], +[-37.7943760333, 175.23059305, "14"], +[-37.7940937, 175.2311265333, "15"], +[-37.79442305, 175.2307422, "16"], +[-37.7942260833, 175.2309248, "17"], +[-37.7943490833, 175.2308563833, "18"], +[-37.79368625, 175.2296129, "1"], +[-37.7939383167, 175.2295340333, "2"], +[-37.7937028167, 175.2297806167, "3"], +[-37.7939571167, 175.2297537, "4"], +[-37.7940396667, 175.2300647833, "6"], +[-37.7937759667, 175.2300463333, "5"], +[-37.7938580333, 175.2302606, "7"], +[-37.7943225167, 175.2300315, "8"], +[-37.79394275, 175.2304682667, "9"], +[-37.7243862, 175.2387046, "156"], +[-37.7247382333, 175.2387190667, "150"], +[-37.72507285, 175.2386454667, "149"], +[-37.7247210667, 175.2379777833, "155"], +[-37.7244816833, 175.2423332667, "122"], +[-37.72470835, 175.2409093833, "133"], +[-37.7245404, 175.2427533, "118"], +[-37.7246434167, 175.2434037333, "112"], +[-37.7240066167, 175.2380495833, "166"], +[-37.7241027167, 175.2381552833, "164"], +[-37.7242249, 175.2383916, "160"], +[-37.7244655833, 175.2388067667, "154"], +[-37.7244043833, 175.2380534667, "162"], +[-37.7245603, 175.2383964667, "158"], +[-37.7248887333, 175.2389744, "148"], +[-37.7247955333, 175.2381446333, "153"], +[-37.7249385167, 175.2384178167, "151"], +[-37.72499035, 175.2392794333, "146"], +[-37.7242581, 175.2377077833, "168"], +[-37.7245005, 175.23739735, "167"], +[-37.7248791, 175.24299825, "115"], +[-37.7249434167, 175.2396407333, "144"], +[-37.7248644667, 175.2398662333, "142"], +[-37.72464245, 175.2406119167, "135"], +[-37.7246393667, 175.24008405, "140"], +[-37.7247212167, 175.2416393167, "127"], +[-37.7247398833, 175.2414089333, "129"], +[-37.7245145, 175.24254485, "120"], +[-37.72447715, 175.2421021333, "126"], +[-37.7247671333, 175.2421174167, "123"], +[-37.7247392167, 175.2418942833, "125"], +[-37.72491095, 175.2432566, "113"], +[-37.72459645, 175.2431907833, "114"], +[-37.7245686333, 175.2429618167, "116"], +[-37.7247055833, 175.2435926833, "110"], +[-37.72480805, 175.2437832667, "108"], +[-37.7249897, 175.2434935667, "111"], +[-37.79639935, 175.2482892, "16"], +[-37.7967824167, 175.2487827667, "20"], +[-37.7969080667, 175.2496166, "5"], +[-37.7968646833, 175.24942225, "7"], +[-37.79661095, 175.2495348167, "8"], +[-37.7965625833, 175.2493236667, "10"], +[-37.7968066, 175.2490453833, "11"], +[-37.7964822833, 175.2491625667, "12"], +[-37.796344, 175.2488342333, "14A"], +[-37.79650925, 175.2488686, "14B"], +[-37.7965028667, 175.2486785833, "14"], +[-37.7966939833, 175.2485306833, "18"], +[-37.7969557, 175.2498245, "3"], +[-37.79665735, 175.2497349, "6"], +[-37.7968203333, 175.24922135, "9"], +[-37.7967485833, 175.2500956833, "2D"], +[-37.7967695333, 175.2501964167, "2C"], +[-37.7967943167, 175.2503032667, "2B"], +[-37.7968186333, 175.2503951, "2A"], +[-37.79671105, 175.2499304, "4"], +[-37.7531717833, 175.2878791, "19A"], +[-37.75342895, 175.2875856833, "11A"], +[-37.75356735, 175.2886655333, "10"], +[-37.7536480167, 175.2879886333, "11"], +[-37.7536925333, 175.2890448833, "12"], +[-37.75347555, 175.2888828833, "14"], +[-37.7534701667, 175.2880302167, "15"], +[-37.7533015667, 175.2888306167, "16"], +[-37.75341215, 175.2881773833, "17"], +[-37.75313075, 175.2881222667, "19"], +[-37.7544078167, 175.2881382, "1"], +[-37.753299, 175.2883781333, "21"], +[-37.7531786167, 175.2885613333, "23"], +[-37.7541479667, 175.2884753333, "2"], +[-37.7542521333, 175.2880819167, "3"], +[-37.7539593, 175.2884595167, "4"], +[-37.75409345, 175.2880488167, "5"], +[-37.7538439833, 175.2887316667, "6"], +[-37.7539356167, 175.2880335167, "7"], +[-37.7537229833, 175.2884509167, "8"], +[-37.7537851667, 175.2880318833, "9"], +[-37.7614510667, 175.2694801167, "24A"], +[-37.7625066667, 175.2687620167, "10"], +[-37.7614820333, 175.2686955167, "11"], +[-37.7623879167, 175.2688321833, "12"], +[-37.76130905, 175.2688548, "13"], +[-37.7621642833, 175.2689066833, "16"], +[-37.761467, 175.2689049167, "26"], +[-37.7620285667, 175.2681605, "3"], +[-37.7623263833, 175.2681599167, "4"], +[-37.7619678667, 175.2684848667, "5"], +[-37.7622722667, 175.2684009, "6"], +[-37.7617405833, 175.2686149, "7"], +[-37.7624087333, 175.2686692167, "8A"], +[-37.7622286333, 175.2686482667, "8"], +[-37.76156555, 175.26853395, "9"], +[-37.7617168167, 175.26898535, "22"], +[-37.7615979167, 175.2689996833, "24"], +[-37.7620193833, 175.2689513, "18"], +[-37.7618718167, 175.26896365, "20"], +[-37.7591266833, 175.2536359167, "35A"], +[-37.7592223167, 175.2534225167, "35B"], +[-37.7617776167, 175.2559226667, "5A"], +[-37.7612719167, 175.2562157833, "4"], +[-37.75935835, 175.2537111167, "31A"], +[-37.7601846, 175.2545102167, "23"], +[-37.7588501333, 175.2533539167, "39A"], +[-37.7589254833, 175.2531403333, "39B"], +[-37.7616101833, 175.2560240167, "5"], +[-37.76149615, 175.2558866333, "7"], +[-37.7592716667, 175.2538006833, "31"], +[-37.7594271833, 175.2535978667, "31B"], +[-37.7599397667, 175.2548615833, "18"], +[-37.76028355, 175.2546329833, "21A"], +[-37.7603776333, 175.2547706333, "21"], +[-37.7600801, 175.2549248833, "16"], +[-37.7591084167, 175.2544689333, "26A"], +[-37.7592673833, 175.2543674167, "26"], +[-37.7591314333, 175.2542499167, "28"], +[-37.75936075, 175.2538985, "29"], +[-37.7589648, 175.2541059167, "30"], +[-37.7595353, 175.2534685667, "31C"], +[-37.7596291667, 175.2533647667, "31D"], +[-37.7588255333, 175.2539617833, "32"], +[-37.7600364, 175.2544069667, "25"], +[-37.7589816333, 175.2535095167, "37"], +[-37.7608649667, 175.2558365167, "10"], +[-37.76127575, 175.25541625, "11A"], +[-37.76120805, 175.2556123333, "11"], +[-37.7607606167, 175.25574505, "12A"], +[-37.7606219667, 175.25560025, "12"], +[-37.7616983667, 175.2552372, "13A"], +[-37.7614313167, 175.2551904167, "13"], +[-37.7610485667, 175.2554404333, "15"], +[-37.7609172333, 175.25532435, "17"], +[-37.7608084, 175.2552367333, "19"], +[-37.76132055, 175.25642805, "2A"], +[-37.7613829667, 175.2563422167, "2"], +[-37.76200825, 175.2557070333, "3"], +[-37.76113995, 175.2560883167, "6"], +[-37.7616844, 175.2557609, "7A"], +[-37.7610017333, 175.2559656333, "8"], +[-37.7613694167, 175.2557583667, "9"], +[-37.76181785, 175.2554951667, "3A"], +[-37.8034314333, 175.3258953, "10"], +[-37.8038645333, 175.3265877667, "11"], +[-37.8034770833, 175.3262135, "12"], +[-37.8039897, 175.3267541833, "13"], +[-37.80363475, 175.32621485, "14"], +[-37.8042059333, 175.3267966, "15"], +[-37.8038109167, 175.3262249, "16"], +[-37.8040191333, 175.3263547667, "18"], +[-37.8042089333, 175.3265241167, "20"], +[-37.8042869, 175.3266681, "22"], +[-37.80304115, 175.3272165667, "2"], +[-37.8031283, 175.3269723167, "4"], +[-37.8034520833, 175.32700525, "5"], +[-37.8031659333, 175.3267119, "6"], +[-37.8035221667, 175.3265948167, "7"], +[-37.80369265, 175.3265562333, "9"], +[-37.8032211, 175.3264521333, "8"], +[-37.7917631667, 175.3187191833, "1/9-4/9"], +[-37.79146415, 175.3188434833, "12A-12D"], +[-37.7914571, 175.3193687167, "4"], +[-37.7916610333, 175.3189602333, "7"], +[-37.7913219333, 175.31881675, "10"], +[-37.79161625, 175.3187394, "11"], +[-37.79172525, 175.3194849833, "1"], +[-37.7916826833, 175.3193257, "3"], +[-37.7916611667, 175.31912655, "5"], +[-37.7913967, 175.3191943333, "6"], +[-37.79136865, 175.3190448667, "8"], +[-37.7775551333, 175.3009820833, "20"], +[-37.7771265833, 175.3014175833, "15"], +[-37.77745855, 175.30071895, "16"], +[-37.7773059, 175.30124025, "17"], +[-37.7775315, 175.3008776667, "18"], +[-37.77734365, 175.30129415, "19"], +[-37.7769214167, 175.3006947, "1"], +[-37.7774077833, 175.3013173333, "21"], +[-37.7775923333, 175.30118255, "22"], +[-37.7774684, 175.3013297667, "23"], +[-37.7775336667, 175.3012807667, "24"], +[-37.7770002667, 175.30034595, "2"], +[-37.7770702333, 175.30074165, "3"], +[-37.7772204, 175.3008027, "5"], +[-37.7771454333, 175.3004622167, "6"], +[-37.7773079833, 175.3009332667, "7"], +[-37.7772887833, 175.3005085167, "8"], +[-37.7771824333, 175.3012315667, "9"], +[-37.7774047333, 175.3006207667, "14"], +[-37.7771555167, 175.3013174167, "11"], +[-37.7951201167, 175.24086275, "14A"], +[-37.7950855667, 175.2410455333, "14B"], +[-37.7954598167, 175.2408821667, "10"], +[-37.79558165, 175.2405258333, "11"], +[-37.7952878833, 175.24087695, "12"], +[-37.7953958, 175.2404236833, "13"], +[-37.7955054333, 175.2406734, "15"], +[-37.7952619333, 175.2407338167, "17"], +[-37.7961893667, 175.2406244333, "1"], +[-37.7960759333, 175.2409470333, "2"], +[-37.7960066167, 175.2406173, "3"], +[-37.7959289333, 175.2409516167, "4"], +[-37.7961241167, 175.2403152333, "5A"], +[-37.7959629333, 175.2403369167, "5"], +[-37.7957659333, 175.2409434167, "6"], +[-37.7958679667, 175.24035365, "7"], +[-37.7955826333, 175.2409296333, "8"], +[-37.79571825, 175.2405446833, "9"], +[-37.8261191333, 175.2847879, "10"], +[-37.82766005, 175.2843613667, "35"], +[-37.8255551333, 175.2843152833, "3"], +[-37.8256417833, 175.2845258167, "5"], +[-37.8259511333, 175.2843667333, "6"], +[-37.8257295833, 175.2847289167, "7"], +[-37.8260263333, 175.2845692833, "8"], +[-37.8258112333, 175.2849317833, "9"], +[-37.8258700667, 175.2841562, "4"], +[-37.8262922667, 175.284986, "12"], +[-37.8266219, 175.2848352167, "14"], +[-37.8267982, 175.2847255167, "16"], +[-37.8270031833, 175.2845552, "18"], +[-37.8254623167, 175.2841044667, "1"], +[-37.8272197333, 175.2844083667, "20"], +[-37.8274001667, 175.2842448667, "22"], +[-37.8276464833, 175.2841376333, "24"], +[-37.82700695, 175.28498605, "25"], +[-37.8271867, 175.2848307167, "27"], +[-37.8273904, 175.2847219, "29"], +[-37.8275931833, 175.2846514667, "31"], +[-37.82779765, 175.2845043167, "33"], +[-37.8258915, 175.2851730167, "11"], +[-37.8259910333, 175.28537635, "13"], +[-37.8260777833, 175.2856179167, "15"], +[-37.8262087167, 175.2854758333, "17"], +[-37.8264254, 175.2853367333, "19"], +[-37.8266113, 175.2852120333, "21"], +[-37.8268076, 175.2851220667, "23"], +[-37.8079924167, 175.29630695, "4A"], +[-37.8080998167, 175.2968020667, "10"], +[-37.8079307667, 175.2970212333, "15"], +[-37.8076937667, 175.2968449, "11"], +[-37.80805395, 175.2969667667, "12"], +[-37.8078169833, 175.2970239333, "13"], +[-37.8080616833, 175.2972493333, "15A"], +[-37.80723685, 175.2960119167, "1A"], +[-37.80749535, 175.2959698833, "1"], +[-37.8075038, 175.2963507333, "5"], +[-37.8078438333, 175.29652085, "6"], +[-37.8075534167, 175.29652075, "7"], +[-37.8080421667, 175.2966617833, "8"], +[-37.8075961167, 175.2966981833, "9"], +[-37.8077696333, 175.2963362333, "4"], +[-37.8074918167, 175.2961528167, "3"], +[-37.8077253, 175.2960940833, "2"], +[-37.7305229833, 175.2775917833, "6"], +[-37.7305159, 175.2774592833, "4"], +[-37.73051015, 175.2773354833, "2"], +[-37.7303182, 175.2775681667, "3"], +[-37.7303141667, 175.2774423, "1"], +[-37.73053625, 175.277922, "10"], +[-37.7305271667, 175.27776655, "8"], +[-37.7305372667, 175.2780735333, "12"], +[-37.7908933833, 175.291523, "1/26-3/26"], +[-37.7934562667, 175.2881800833, "6D"], +[-37.7935060667, 175.2882109, "6E"], +[-37.7934048, 175.2881460833, "6C"], +[-37.7933577667, 175.2881079167, "6B"], +[-37.7934845667, 175.28732335, "10"], +[-37.7936396, 175.2876138167, "8"], +[-37.79275495, 175.2870696833, "7"], +[-37.7928746167, 175.2868678167, "5"], +[-37.7926146167, 175.2872909667, "9"], +[-37.79281615, 175.2877440667, "12"], +[-37.7924030167, 175.2884848833, "14"], +[-37.7910608, 175.2908433, "22"], +[-37.7909524167, 175.2912679667, "24"], +[-37.7903886, 175.2917389167, "47"], +[-37.7933111667, 175.2880708833, "6A"], +[-37.7935607, 175.2882496833, "6F"], +[-37.7909780833, 175.2910528833, "24A"], +[-37.7936045, 175.2864743333, "4"], +[-37.79292245, 175.2867640833, "3"], +[-37.8067848667, 175.3221183333, "46"], +[-37.8064167333, 175.3220002167, "21"], +[-37.8069921333, 175.3221584833, "32"], +[-37.8057945667, 175.3201004167, "6"], +[-37.8068889, 175.3219580167, "30"], +[-37.80680915, 175.3217391, "28"], +[-37.8067425333, 175.3215173, "26"], +[-37.8070644, 175.3224643, "42"], +[-37.8069872333, 175.3223295167, "44"], +[-37.8072292833, 175.3226953667, "40"], +[-37.8061383, 175.3202781, "10"], +[-37.8056587333, 175.3204548833, "3"], +[-37.8062255333, 175.3208036833, "11"], +[-37.8062713833, 175.3199038833, "12"], +[-37.8054637667, 175.3200472, "2"], +[-37.8062971667, 175.32104365, "13"], +[-37.80640815, 175.32016655, "14"], +[-37.8063620167, 175.3212529833, "15"], +[-37.8063631167, 175.3203989667, "16"], +[-37.8064748333, 175.3206122833, "18"], +[-37.8065481333, 175.3208481667, "20"], +[-37.8066257, 175.32105915, "22"], +[-37.8064303, 175.3214594167, "17"], +[-37.8065291, 175.32176815, "19"], +[-37.8066986667, 175.32129255, "24"], +[-37.8071455, 175.3224379667, "34A"], +[-37.8070901833, 175.3223472167, "34"], +[-37.8072231667, 175.3225304167, "36"], +[-37.8073608333, 175.3226814833, "38"], +[-37.8059514167, 175.3202277667, "8"], +[-37.80550245, 175.3204432, "1"], +[-37.8056057833, 175.3200587833, "4"], +[-37.8058591167, 175.3205488333, "5"], +[-37.80604765, 175.3206368, "7"], +[-37.73367115, 175.24652485, "13"], +[-37.73382115, 175.2465083, "11"], +[-37.7342870167, 175.2463027167, "7"], +[-37.7305953833, 175.2489494, "54"], +[-37.7387733333, 175.2493637833, "3"], +[-37.73872565, 175.2494916667, "1"], +[-37.7388281, 175.2492343667, "5"], +[-37.73887725, 175.2491047667, "7"], +[-37.7389367, 175.24895245, "9"], +[-37.7390566667, 175.2488021, "11"], +[-37.7389860833, 175.2487430667, "12"], +[-37.7388902333, 175.24867965, "10"], +[-37.7387583833, 175.2489962667, "6"], +[-37.7387040833, 175.24910265, "4"], +[-37.7386551333, 175.2492234, "2"], +[-37.7388102167, 175.2488720667, "8"], +[-37.7245607167, 175.2691385167, "35"], +[-37.7228076833, 175.2654605167, "75"], +[-37.7229659667, 175.2655303667, "73"], +[-37.72458645, 175.2697994833, "31"], +[-37.7237081833, 175.2658944833, "65"], +[-37.7242252833, 175.2690943833, "46"], +[-37.7244291167, 175.2680016, "45"], +[-37.7243487333, 175.2675878167, "49"], +[-37.7241308, 175.2664935167, "59"], +[-37.7243221667, 175.270259, "36"], +[-37.72435645, 175.2704999333, "34"], +[-37.7244024167, 175.2707129833, "32"], +[-37.72445325, 175.27096145, "30"], +[-37.7245154333, 175.27120325, "28"], +[-37.72458305, 175.2714522667, "26"], +[-37.7247362667, 175.2718945, "22"], +[-37.7248111667, 175.2709873667, "23"], +[-37.72496895, 175.2714791, "19"], +[-37.7253089667, 175.2723646667, "15"], +[-37.7253891, 175.27255065, "13"], +[-37.72506655, 175.2727092333, "16"], +[-37.7248892333, 175.2728867167, "14"], +[-37.7249633167, 175.2730937333, "12"], +[-37.7257299833, 175.27339395, "5"], +[-37.7258099667, 175.2735869833, "3"], +[-37.7258678667, 175.2737651833, "1"], +[-37.725012, 175.2716761667, "17"], +[-37.7254336, 175.2727130167, "11"], +[-37.7249949167, 175.27249705, "18"], +[-37.7246081333, 175.2700819333, "29"], +[-37.7254733333, 175.2737605333, "4"], +[-37.7232546833, 175.2661409833, "74"], +[-37.72343445, 175.26621745, "72"], +[-37.7236063833, 175.2663517833, "70"], +[-37.7238278167, 175.2660063167, "63"], +[-37.72357765, 175.2658280667, "67"], +[-37.7242345667, 175.2668952167, "55"], +[-37.7241960833, 175.2666865, "57"], +[-37.72386435, 175.2669411667, "64"], +[-37.7237375667, 175.2665468667, "68"], +[-37.7238349167, 175.2667742333, "66"], +[-37.7239844833, 175.2675053333, "60"], +[-37.7240295333, 175.26771865, "58"], +[-37.7240711167, 175.26794005, "56"], +[-37.7241058667, 175.2681694167, "54"], +[-37.7243038667, 175.26736645, "51"], +[-37.7243804333, 175.2678089833, "47"], +[-37.7242691667, 175.2671329, "53"], +[-37.7241406667, 175.2684028833, "52"], +[-37.7241784, 175.2686449, "50"], +[-37.724197, 175.2688653167, "48"], +[-37.7242332, 175.2693477833, "44"], +[-37.7244816333, 175.2684889, "41"], +[-37.7245068833, 175.2687053833, "39"], +[-37.72453525, 175.2689343833, "37"], +[-37.7242616667, 175.2695644667, "42"], +[-37.7242897167, 175.2697938333, "40"], +[-37.7242986333, 175.2700138667, "38"], +[-37.7230955, 175.2656112333, "71"], +[-37.7255387, 175.2739729, "2"], +[-37.7252582, 175.273188, "8"], +[-37.7251679, 175.2729523167, "10"], +[-37.7249007333, 175.2712582667, "21"], +[-37.7247492833, 175.2707314833, "25"], +[-37.7246621667, 175.2716875667, "24"], +[-37.7687316, 175.2800119333, "9"], +[-37.7688302833, 175.2799971833, "7"], +[-37.7686541, 175.2802855167, "10"], +[-37.76894265, 175.2805005167, "2"], +[-37.7689539833, 175.280031, "5"], +[-37.7687883667, 175.2804561833, "6"], +[-37.7686831333, 175.280403, "8"], +[-37.7688831667, 175.2797085167, "5A"], +[-37.8209105333, 175.2902648333, "10"], +[-37.821383, 175.2902984333, "11"], +[-37.8209967167, 175.2901260167, "12"], +[-37.8210837333, 175.2899616667, "14"], +[-37.8212747167, 175.2902, "15"], +[-37.8211866, 175.2900790833, "16"], +[-37.82110015, 175.2907487667, "3"], +[-37.8208136167, 175.2907970333, "4"], +[-37.8211150667, 175.2906205167, "5"], +[-37.8208063833, 175.2905977333, "6"], +[-37.8212660333, 175.2904615, "7"], +[-37.8208551167, 175.29042775, "8"], +[-37.8215049167, 175.2904060167, "9"], +[-37.7707052667, 175.2853725, "10A"], +[-37.7706021333, 175.2853325833, "10B"], +[-37.7717106833, 175.28575285, "2"], +[-37.7698511667, 175.2847207, "17"], +[-37.7697770667, 175.28504475, "16A"], +[-37.7696356333, 175.2850063167, "16"], +[-37.7714658833, 175.2856448667, "4"], +[-37.7713642, 175.2856048833, "6"], +[-37.7788546167, 175.29561625, "19"], +[-37.77908445, 175.2952923, "17A"], +[-37.77976585, 175.2964690833, "6"], +[-37.7795772, 175.2958772833, "9A"], +[-37.7796077167, 175.2957191833, "9B"], +[-37.7796911333, 175.2953207, "9C"], +[-37.7791480667, 175.2957199167, "15"], +[-37.7804234667, 175.2962377833, "1A"], +[-37.77941575, 175.2953902167, "11C"], +[-37.7792855667, 175.2951756167, "15D"], +[-37.78014755, 175.2961194167, "1/1"], +[-37.7794306833, 175.29634915, "10"], +[-37.7794403667, 175.2958269167, "11"], +[-37.7791567667, 175.2962407, "12"], +[-37.7792909667, 175.2957754, "13"], +[-37.77893095, 175.2961722167, "14"], +[-37.7792413333, 175.2954889167, "15B"], +[-37.7792725333, 175.29532775, "15C"], +[-37.7787564833, 175.29611445, "16"], +[-37.7790112, 175.2956734, "17"], +[-37.7800464, 175.2965656, "2"], +[-37.7802273333, 175.29573395, "3/1"], +[-37.7799969167, 175.2960682333, "3"], +[-37.7802805, 175.2955153167, "4/1"], +[-37.77990245, 175.2965164167, "4"], +[-37.7798508833, 175.2960085833, "5A"], +[-37.7798815833, 175.2958631333, "5B"], +[-37.7799363667, 175.2956046833, "5C"], +[-37.7796874167, 175.2968338333, "6B"], +[-37.7799543167, 175.29547885, "5D"], +[-37.7798252833, 175.2956671833, "7B"], +[-37.7798387167, 175.2954405833, "7C"], +[-37.7797217333, 175.2959363, "7"], +[-37.7796273167, 175.29642265, "8"], +[-37.7801737167, 175.2959632167, "2/1"], +[-37.78032035, 175.2961898, "1B"], +[-37.7794916833, 175.2954225667, "11B"], +[-37.74386375, 175.2448817333, "10"], +[-37.7437074667, 175.2440684333, "1"], +[-37.7437353333, 175.2443594833, "3"], +[-37.7440012167, 175.2443256, "4"], +[-37.7435427167, 175.2445075, "5"], +[-37.7440298, 175.2446131, "6"], +[-37.7436647667, 175.24470705, "7"], +[-37.7440134, 175.2448919167, "8"], +[-37.7437045667, 175.2449057667, "9"], +[-37.8006128167, 175.2351727667, "2"], +[-37.7998409333, 175.2346283833, "11"], +[-37.79984445, 175.2349598667, "12"], +[-37.7998037, 175.2347858667, "14"], +[-37.8005473333, 175.2348416333, "1"], +[-37.8002940333, 175.2347097, "3"], +[-37.8002570833, 175.2343761, "5"], +[-37.8001494333, 175.23433565, "7"], +[-37.8000617167, 175.2345947333, "9"], +[-37.7999792, 175.2351113333, "10"], +[-37.80044955, 175.2352196833, "4"], +[-37.8003083, 175.2352081833, "6"], +[-37.8001312333, 175.2351603167, "8"], +[-37.7799525, 175.2974575167, "1B"], +[-37.7801190167, 175.2976041, "1A"], +[-37.77914415, 175.2971647833, "11"], +[-37.77933535, 175.2968927833, "9A"], +[-37.7792899, 175.2972175667, "9"], +[-37.7789766167, 175.2979060167, "12A"], +[-37.7791934333, 175.2976415833, "10"], +[-37.7790373667, 175.2975835167, "12"], +[-37.7790144333, 175.2971160167, "13"], +[-37.7788011333, 175.2978906833, "14A"], +[-37.7788835, 175.2975476667, "14"], +[-37.7786695167, 175.2978575667, "16A"], +[-37.7788740333, 175.2970665, "15"], +[-37.7787425, 175.29749575, "16"], +[-37.7787355167, 175.2970141, "17"], +[-37.7786003333, 175.2974464333, "18"], +[-37.778565, 175.2966693167, "19A"], +[-37.7785686, 175.2970192833, "19"], +[-37.7798417333, 175.2974139333, "1"], +[-37.77846735, 175.2973923333, "20"], +[-37.7798148833, 175.2978473833, "2"], +[-37.7797006167, 175.2973664, "3"], +[-37.77966215, 175.2977957833, "4"], +[-37.7795642667, 175.2973160667, "5"], +[-37.7795014, 175.2977485833, "6"], +[-37.7794222667, 175.2972698667, "7"], +[-37.7793376333, 175.2976984667, "8"], +[-37.8116785667, 175.2760192167, "19"], +[-37.8117964833, 175.2755526667, "25"], +[-37.8110315167, 175.2766428, "5"], +[-37.8110774833, 175.2770778333, "7"], +[-37.8111846167, 175.2768626333, "9"], +[-37.8117443, 175.2757611167, "23"], +[-37.8105790167, 175.2763299333, "1"], +[-37.8116433167, 175.27489665, "18"], +[-37.81193555, 175.2748491333, "33"], +[-37.81181435, 175.2737351, "32"], +[-37.8117991833, 175.2739028333, "30"], +[-37.81178035, 175.2734147333, "34"], +[-37.8114162167, 175.2729867833, "40"], +[-37.8120704, 175.2739821, "41"], +[-37.8120886833, 175.27378785, "43A"], +[-37.812326, 175.2737999333, "43B"], +[-37.8121047167, 175.2735871167, "45"], +[-37.81240645, 175.2734069333, "47"], +[-37.8120609, 175.2733952667, "49"], +[-37.8123279667, 175.2731523667, "51"], +[-37.81199625, 175.27319415, "53"], +[-37.8119098333, 175.2730481667, "55"], +[-37.81180225, 175.2729061, "57"], +[-37.8107404, 175.27644105, "3A"], +[-37.81213705, 175.2757880167, "27A"], +[-37.8112802667, 175.2745154833, "20"], +[-37.81169285, 175.27465985, "22"], +[-37.81174165, 175.2744013167, "24"], +[-37.8117727833, 175.2741845167, "26"], +[-37.8114648167, 175.2739771, "28"], +[-37.8119844833, 175.27461955, "35"], +[-37.8116187167, 175.27318895, "36"], +[-37.8120272667, 175.2743513833, "37"], +[-37.8115384833, 175.2731232, "38"], +[-37.8120418833, 175.2741960167, "39"], +[-37.8112566, 175.2766546667, "11"], +[-37.8114180667, 175.27588875, "10"], +[-37.8114966, 175.2756076, "12"], +[-37.8116700333, 175.2769230833, "13"], +[-37.8115421667, 175.2753767667, "14"], +[-37.8114621167, 175.27648785, "15"], +[-37.81159805, 175.27514285, "16"], +[-37.8115855167, 175.2762645333, "17"], +[-37.8120636333, 175.2760939667, "21"], +[-37.8121922167, 175.2756507, "27"], +[-37.8107255667, 175.2760038833, "2"], +[-37.81220135, 175.2754002, "29A"], +[-37.8118471, 175.2753129833, "29"], +[-37.8118911333, 175.2750624833, "31"], +[-37.81086125, 175.27652865, "3"], +[-37.81094105, 175.27616745, "4"], +[-37.81121265, 175.27628275, "6"], +[-37.81116145, 175.2758251, "8A"], +[-37.8112399167, 175.2756594333, "8B"], +[-37.81138555, 175.2746951833, "18A"], +[-37.8122054833, 175.2745460333, "37A"], +[-37.8116624667, 175.2727641667, "59"], +[-37.83392545, 175.3193102333, "2"], +[-37.83322165, 175.3206149167, "12"], +[-37.8336397, 175.3198871667, "6"], +[-37.83196195, 175.3219759833, "34"], +[-37.83347235, 175.3193604833, "3"], +[-37.7223752, 175.2602661167, "4"], +[-37.7179522167, 175.2534344833, "83"], +[-37.7193376833, 175.2572555167, "46"], +[-37.7209307167, 175.2592043, "22"], +[-37.7207826667, 175.2581895667, "29"], +[-37.72004895, 175.2575804333, "41"], +[-37.7195538, 175.2567325167, "49"], +[-37.7190225833, 175.2554889833, "61"], +[-37.7184166167, 175.25552185, "64"], +[-37.71860205, 175.2546965833, "71"], +[-37.7183041167, 175.25411965, "75"], +[-37.7186976333, 175.2534766833, "79"], +[-37.7176076167, 175.2537596167, "84"], +[-37.7174641333, 175.2552777333, "72"], +[-37.7174114333, 175.25235305, "95"], +[-37.7632605167, 175.3053648833, "6"], +[-37.7633503, 175.30508105, "7"], +[-37.76307765, 175.3048088833, "11"], +[-37.7631957667, 175.3049604333, "9"], +[-37.7628981667, 175.3053845333, "10"], +[-37.7630081667, 175.3051895833, "12"], +[-37.7630360833, 175.3050283667, "13"], +[-37.7635377667, 175.3055144333, "2"], +[-37.7636314333, 175.30521785, "3"], +[-37.76339855, 175.3054586333, "4"], +[-37.7634921333, 175.3051496667, "5"], +[-37.7631011, 175.3053524833, "8"], +[-37.743599, 175.2605870833, "3"], +[-37.74361905, 175.2601251667, "4"], +[-37.7437747167, 175.2606077833, "5"], +[-37.7437909333, 175.2600834667, "6"], +[-37.743926, 175.2605321333, "7"], +[-37.7439161833, 175.26017635, "8"], +[-37.7439822833, 175.2603806333, "9"], +[-37.7895310667, 175.2449307833, "43"], +[-37.7894670833, 175.24474475, "45"], +[-37.7898968167, 175.2481256167, "12A"], +[-37.7901416667, 175.2476783167, "17"], +[-37.7899604333, 175.2464548833, "27"], +[-37.7896465667, 175.24653985, "28"], +[-37.7896798333, 175.2454849333, "37"], +[-37.7890705667, 175.2458426667, "38"], +[-37.7902768167, 175.24693065, "21A"], +[-37.7901221667, 175.2490765667, "6"], +[-37.7900487667, 175.24881575, "8A"], +[-37.7893076167, 175.2389141667, "96"], +[-37.7891375833, 175.2430184, "62"], +[-37.7902046167, 175.24803485, "13"], +[-37.7906650167, 175.2490355833, "3A"], +[-37.7901571333, 175.24920035, "4"], +[-37.7900813333, 175.2489367333, "8"], +[-37.7898700833, 175.2462203667, "29"], +[-37.7901880333, 175.2479285333, "15"], +[-37.7895647167, 175.2382313833, "100"], +[-37.78993205, 175.23830955, "101"], +[-37.7896206167, 175.2380731, "102"], +[-37.790066, 175.2381513333, "103"], +[-37.7891606, 175.23761735, "104A"], +[-37.78941215, 175.2377085333, "104B"], +[-37.7901659333, 175.23801285, "105"], +[-37.7894411, 175.2376154667, "106A"], +[-37.7891919, 175.2373974333, "106"], +[-37.7902985167, 175.2378453, "107"], +[-37.7895248, 175.2376374667, "108"], +[-37.7904082833, 175.2377168, "109"], +[-37.7898766167, 175.23775685, "112"], +[-37.7905626667, 175.2375896, "111"], +[-37.7906997333, 175.2374831333, "113"], +[-37.7908755833, 175.2373943167, "115"], +[-37.7910346333, 175.23735265, "117"], +[-37.7904497833, 175.2371186, "118"], +[-37.7912106, 175.2373053833, "119"], +[-37.7906042167, 175.2370368, "120"], +[-37.7913864833, 175.2376250833, "121"], +[-37.7907901833, 175.2369493333, "122"], +[-37.7914003833, 175.2372505167, "123"], +[-37.7909642, 175.2368915333, "124"], +[-37.7915529, 175.2372277833, "125"], +[-37.7911263833, 175.2368537833, "126"], +[-37.7912803, 175.2368485167, "128"], +[-37.7917267667, 175.2371653, "127"], +[-37.7921837667, 175.23704415, "129A"], +[-37.7918978, 175.2371061333, "129"], +[-37.7894023667, 175.24433475, "49"], +[-37.7891202167, 175.2446721833, "46"], +[-37.7894175333, 175.2445499, "47"], +[-37.78907235, 175.2444364, "50"], +[-37.7894177667, 175.2441246, "51"], +[-37.7894246, 175.24392185, "53A"], +[-37.7896638667, 175.2439476333, "53B"], +[-37.7894429667, 175.2437087167, "55"], +[-37.789508, 175.2434046333, "57"], +[-37.789238, 175.24187885, "70"], +[-37.7895436833, 175.24187315, "71"], +[-37.7892468333, 175.24164745, "72"], +[-37.7895700833, 175.2414384667, "73"], +[-37.78925975, 175.2414214833, "74"], +[-37.7895752333, 175.2412129167, "75"], +[-37.7892592833, 175.2412121667, "76"], +[-37.7895923167, 175.2409877667, "77"], +[-37.7891945, 175.2421526833, "66"], +[-37.7891668333, 175.2428230667, "64"], +[-37.7894912167, 175.2427035, "63"], +[-37.789503, 175.24248365, "65"], +[-37.7896074833, 175.2407288667, "79"], +[-37.7896173167, 175.2402679667, "83"], +[-37.7896202333, 175.2400516833, "85"], +[-37.78960145, 175.2398195667, "87"], +[-37.7892438, 175.2393776, "92"], +[-37.7892662833, 175.2391718333, "94"], +[-37.7896661333, 175.2388780667, "95"], +[-37.7893345667, 175.2387391667, "98"], +[-37.7897364333, 175.23867585, "97"], +[-37.7898142167, 175.2384845333, "99"], +[-37.7899465833, 175.2483073333, "10"], +[-37.7898094333, 175.2482021, "12"], +[-37.7898600333, 175.2479078167, "14"], +[-37.78975485, 175.2474101667, "18"], +[-37.7900385167, 175.2472280833, "19"], +[-37.79001395, 175.247091, "21"], +[-37.7899762333, 175.2468633667, "23"], +[-37.7895842, 175.2463758833, "30"], +[-37.7895455, 175.2462195167, "32"], +[-37.7894927, 175.2460233333, "34"], +[-37.78943405, 175.2458621167, "36"], +[-37.7899653333, 175.2466690667, "25"], +[-37.7902061167, 175.24936045, "2"], +[-37.7896263667, 175.2452989167, "39"], +[-37.7893677667, 175.2456495833, "40"], +[-37.7895731833, 175.2451162333, "41"], +[-37.7893403, 175.2454460333, "42"], +[-37.7904806, 175.2490594667, "3"], +[-37.7906594167, 175.248781, "5A"], +[-37.7904353333, 175.2489117667, "5"], +[-37.7903644667, 175.2485842, "9"], +[-37.7896327, 175.2405057, "81"], +[-37.7897589, 175.2378872167, "110"], +[-37.7804471333, 175.2238130833, "17"], +[-37.7810673833, 175.2241001333, "20"], +[-37.780515, 175.2230337167, "9"], +[-37.780651, 175.2221428667, "3"], +[-37.7808328667, 175.2228447, "6"], +[-37.7808465, 175.2225071, "4"], +[-37.7808010833, 175.2230766, "8"], +[-37.7805485167, 175.22274745, "7"], +[-37.7807928833, 175.2220395167, "1"], +[-37.7805614667, 175.2223331333, "5"], +[-37.7809941667, 175.2223414333, "2"], +[-37.7807398667, 175.2232497167, "10"], +[-37.7807028333, 175.2237436833, "14"], +[-37.78096155, 175.2237156333, "16"], +[-37.7809342, 175.2239235, "18"], +[-37.7805007833, 175.2240162833, "19"], +[-37.7806146167, 175.2241024833, "23"], +[-37.7804623167, 175.2242019333, "21"], +[-37.7804549833, 175.2232380833, "11"], +[-37.7806792333, 175.2234832, "12"], +[-37.7808636167, 175.2240789833, "22"], +[-37.78042635, 175.22341435, "13"], +[-37.7807341333, 175.2240990667, "24"], +[-37.78041845, 175.2236131333, "15"], +[-37.7981182167, 175.2457205167, "7A"], +[-37.7987384, 175.2454957, "16A"], +[-37.7987581333, 175.2452409667, "16B"], +[-37.7994318833, 175.2457419, "24"], +[-37.7998113833, 175.24694825, "40"], +[-37.7977822667, 175.24560845, "3"], +[-37.7999423167, 175.2459044833, "30B"], +[-37.80002345, 175.2458386167, "30A"], +[-37.79826195, 175.2453423333, "10"], +[-37.7984385333, 175.2458291167, "11"], +[-37.7984277167, 175.2453877167, "12"], +[-37.7985862333, 175.2458847167, "13"], +[-37.7985965833, 175.2454405833, "14"], +[-37.7987552333, 175.2459440167, "15"], +[-37.7989098333, 175.2455553333, "18"], +[-37.7976008333, 175.2455667, "1A"], +[-37.7974190333, 175.2454834667, "1"], +[-37.7990862667, 175.24562285, "20"], +[-37.79929685, 175.2460833167, "21"], +[-37.79924955, 175.2456742667, "22"], +[-37.7993995833, 175.2461185333, "23"], +[-37.7996261667, 175.2458020167, "26"], +[-37.79965305, 175.2462155333, "25"], +[-37.7997900667, 175.2458611667, "28"], +[-37.7996272, 175.2464606833, "27"], +[-37.7995661833, 175.2467273167, "29"], +[-37.7996162, 175.24691855, "31"], +[-37.8000809, 175.2460089833, "32"], +[-37.8001996333, 175.2461770167, "34A"], +[-37.8003096833, 175.2461490167, "34B"], +[-37.7999728333, 175.2462061333, "34"], +[-37.7999310333, 175.2464590667, "36"], +[-37.79992015, 175.2466746667, "38"], +[-37.7979436833, 175.2456757, "5"], +[-37.7979356333, 175.2452448167, "6A"], +[-37.7980962167, 175.2452914167, "8"], +[-37.7982805833, 175.24578525, "9"], +[-37.7980836, 175.2460120167, "7B"], +[-37.7979241, 175.2450457833, "6B"], +[-37.7977051333, 175.2451821167, "4"], +[-37.7485349333, 175.2874208, "11"], +[-37.7497137, 175.2888013, "32"], +[-37.7496921333, 175.2878512333, "10"], +[-37.7498528, 175.2879211667, "12"], +[-37.7499801667, 175.2880003667, "14"], +[-37.74866425, 175.2875157667, "15A"], +[-37.7488667333, 175.2876846, "15"], +[-37.74993585, 175.288182, "16"], +[-37.74888565, 175.2879631333, "17"], +[-37.7497600333, 175.2881603833, "18"], +[-37.7489231, 175.2881584167, "19"], +[-37.7495641833, 175.28805725, "20"], +[-37.74899935, 175.2883626833, "21"], +[-37.7492068333, 175.2879846, "22"], +[-37.74912375, 175.2886304, "23"], +[-37.7492363167, 175.2889303167, "25"], +[-37.74937495, 175.2884154833, "26"], +[-37.7493501333, 175.2891961333, "27"], +[-37.7496887667, 175.2885517, "28"], +[-37.7494607, 175.2893276833, "29"], +[-37.7494632667, 175.2886722833, "30"], +[-37.7495618, 175.2891770667, "31"], +[-37.7489075333, 175.2873409167, "3"], +[-37.74923165, 175.2874842833, "4"], +[-37.7486464167, 175.2873149167, "5"], +[-37.7483919667, 175.2872339833, "7"], +[-37.7495011667, 175.28779795, "8"], +[-37.7491926333, 175.2876818667, "6"], +[-37.74833895, 175.2873007, "9"], +[-37.7492881333, 175.2882016333, "24"], +[-37.7966520833, 175.3312045667, "29"], +[-37.7965107667, 175.33025715, "10"], +[-37.7959816667, 175.33000705, "11"], +[-37.7966069333, 175.3304091167, "12"], +[-37.79608455, 175.3301314333, "13"], +[-37.7966588333, 175.3306085, "14"], +[-37.7961828167, 175.3302738833, "15"], +[-37.7965911667, 175.3307564833, "16"], +[-37.79628055, 175.3304199667, "17"], +[-37.7963453, 175.3306428667, "19"], +[-37.79643715, 175.3307792667, "21"], +[-37.7964965833, 175.3310745167, "23"], +[-37.7965421667, 175.3313867167, "25"], +[-37.796611, 175.33133815, "27"], +[-37.79623055, 175.3294271833, "2"], +[-37.7959471167, 175.3294807333, "3"], +[-37.7961265667, 175.3297435667, "4"], +[-37.7958977333, 175.3296490167, "5"], +[-37.7963082667, 175.3299620333, "6"], +[-37.7955327667, 175.3298903667, "7"], +[-37.79640735, 175.3300979, "8"], +[-37.7958966, 175.32983745, "9"], +[-37.8044797, 175.2413208167, "15"], +[-37.8046591333, 175.2421560167, "2A"], +[-37.80402425, 175.2419246167, "10"], +[-37.8047528833, 175.2409259333, "11"], +[-37.8039179, 175.2418699833, "12"], +[-37.80457225, 175.2411413333, "13"], +[-37.8039400333, 175.2417667667, "14"], +[-37.8039608167, 175.2414777, "16"], +[-37.8042310333, 175.2413812667, "17"], +[-37.804153, 175.2416220833, "19"], +[-37.8047716667, 175.2421150167, "2"], +[-37.8049169833, 175.2416287833, "3"], +[-37.8046543, 175.2419582833, "4"], +[-37.804869, 175.2414110833, "5"], +[-37.8045592, 175.2417896667, "6"], +[-37.8042908, 175.2419025, "8"], +[-37.8047837833, 175.2410346833, "9"], +[-37.8050215833, 175.241799, "1"], +[-37.8047623333, 175.2412835333, "7"], +[-37.76417565, 175.2868709833, "3A"], +[-37.7638745833, 175.2867063833, "5A"], +[-37.7642447833, 175.2870613667, "1"], +[-37.7641886667, 175.2873749333, "2"], +[-37.7640877833, 175.2869680333, "3"], +[-37.76402005, 175.2873521667, "4"], +[-37.76395225, 175.2869333167, "5"], +[-37.76388205, 175.2873012167, "6"], +[-37.7638512833, 175.28703305, "7"], +[-37.7638164167, 175.2871696, "8"], +[-37.78321235, 175.2305955833, "1"], +[-37.7832991333, 175.2306314, "3"], +[-37.7833888, 175.2307894167, "5"], +[-37.76452005, 175.2503540333, "6A-6V"], +[-37.7654775167, 175.2504962333, "9"], +[-37.7648708, 175.24966025, "19"], +[-37.7659905333, 175.25124305, "1"], +[-37.7657421, 175.2508913833, "5"], +[-37.7658613833, 175.2510585, "3"], +[-37.76559295, 175.2506846667, "7"], +[-37.7653540833, 175.2503675833, "11"], +[-37.7651305333, 175.24996525, "15"], +[-37.7652357667, 175.2501533, "13"], +[-37.7650074833, 175.2498152167, "17"], +[-37.7902502833, 175.2388393333, "4"], +[-37.7907979, 175.2381111833, "14"], +[-37.7905547667, 175.2384053833, "10"], +[-37.7911818833, 175.2384292667, "11"], +[-37.7906839333, 175.2382621, "12"], +[-37.7913195667, 175.23818435, "15"], +[-37.7909088833, 175.2380203, "16"], +[-37.7912972167, 175.2383476667, "17"], +[-37.7910720833, 175.2379379667, "18"], +[-37.7905068667, 175.23909685, "1"], +[-37.7912051333, 175.2379101, "20"], +[-37.7912992, 175.23801565, "22"], +[-37.7902229833, 175.23901615, "2"], +[-37.7905706833, 175.2389178667, "3"], +[-37.79068085, 175.23877325, "5"], +[-37.79032625, 175.2386666, "6"], +[-37.7908212, 175.2386525, "7"], +[-37.79044465, 175.2385448333, "8"], +[-37.7910174833, 175.2383881167, "9A"], +[-37.7909112833, 175.2385037167, "9"], +[-37.7744398833, 175.2823347667, "6B"], +[-37.7743419333, 175.28255975, "6A"], +[-37.7747328667, 175.2819623833, "1"], +[-37.7745769167, 175.2824125333, "4"], +[-37.7747795667, 175.2824171333, "2"], +[-37.7742045833, 175.2820408667, "10"], +[-37.7745946833, 175.2818911333, "3"], +[-37.7744555, 175.28182435, "5"], +[-37.7743176333, 175.2817368833, "7"], +[-37.7743189833, 175.28226355, "8"], +[-37.7978152667, 175.31521175, "2"], +[-37.7919923333, 175.3180635167, "84E"], +[-37.7868993167, 175.3202323333, "166"], +[-37.7874368833, 175.3199840667, "164"], +[-37.7863411333, 175.32054655, "202-204"], +[-37.79670745, 175.3156303667, "18"], +[-37.7965866333, 175.3155356167, "18A"], +[-37.7972564667, 175.3149489833, "5"], +[-37.79015865, 175.3186364, "118A"], +[-37.79546995, 175.3154450667, "23A"], +[-37.7922887667, 175.3185156667, "84C"], +[-37.7945495, 175.3165011333, "40"], +[-37.7943995667, 175.3163816667, "40B"], +[-37.7943578, 175.31685685, "42C"], +[-37.7943993333, 175.3171254167, "42B"], +[-37.7943467167, 175.3172569667, "42A"], +[-37.7941478, 175.3174014333, "42D"], +[-37.7949284167, 175.31515935, "27"], +[-37.7932969833, 175.31735085, "60A"], +[-37.7925500167, 175.3174815, "74"], +[-37.7918893667, 175.3173219, "85"], +[-37.7917781, 175.3180795333, "88"], +[-37.7909338667, 175.3181483, "100"], +[-37.7953727333, 175.3151636333, "23"], +[-37.7859424, 175.3210028333, "214A"], +[-37.7915961333, 175.3181273167, "90A"], +[-37.7938141667, 175.3173506833, "50"], +[-37.7968272167, 175.3154645167, "14"], +[-37.7957824833, 175.3157612167, "22"], +[-37.7967042, 175.3150695167, "9"], +[-37.7949110667, 175.3162302, "34A"], +[-37.7867056, 175.32032235, "194"], +[-37.79455535, 175.3157025, "35"], +[-37.7947627667, 175.3160576, "34"], +[-37.7970197667, 175.3157758, "14A"], +[-37.78654855, 175.3204262667, "196"], +[-37.7919739833, 175.3185211333, "84A"], +[-37.7921366, 175.3185212333, "84B"], +[-37.7922843, 175.31823335, "84D"], +[-37.7905040833, 175.3184095833, "110A"], +[-37.7957343167, 175.3149645833, "19A"], +[-37.7974602833, 175.3149093333, "3"], +[-37.7971313167, 175.3149875833, "5A"], +[-37.7908271833, 175.3182193667, "104"], +[-37.7902942833, 175.3184791333, "112"], +[-37.7901444167, 175.3185847667, "118"], +[-37.7899918, 175.3186400333, "120"], +[-37.7898310667, 175.3187082, "124"], +[-37.78967155, 175.3187910833, "128"], +[-37.78950885, 175.3188718833, "130"], +[-37.7893625333, 175.3189638167, "132"], +[-37.78920685, 175.3190338167, "134"], +[-37.7890252333, 175.3191178, "136"], +[-37.7949099167, 175.3152896, "31A"], +[-37.7949277833, 175.3155827667, "31"], +[-37.7949931167, 175.3159978667, "32"], +[-37.7947305667, 175.3156499667, "33"], +[-37.7859848333, 175.3206933667, "212"], +[-37.7858280833, 175.32078345, "214"], +[-37.7856209167, 175.3208614167, "216"], +[-37.7853050333, 175.3210195, "220"], +[-37.7854610167, 175.3209421167, "218"], +[-37.79443765, 175.3157772167, "37"], +[-37.7949846167, 175.3165927, "36"], +[-37.7945784333, 175.3161746167, "38"], +[-37.7943228333, 175.3159232833, "39"], +[-37.79419685, 175.3160668167, "41"], +[-37.7940979667, 175.3162101667, "43"], +[-37.7940637333, 175.3168193167, "44"], +[-37.7939697167, 175.3163491667, "45"], +[-37.7938485167, 175.3164760833, "47"], +[-37.7938848833, 175.3170224667, "48"], +[-37.7936117, 175.3171289, "52"], +[-37.7934388167, 175.3171741333, "54"], +[-37.7932972333, 175.3168647333, "55"], +[-37.7934218333, 175.3175280667, "56"], +[-37.7933541667, 175.3175704833, "58"], +[-37.7928076, 175.3170172333, "59"], +[-37.7932117667, 175.3172369333, "60"], +[-37.7930434667, 175.3172973833, "62"], +[-37.7928886833, 175.3175571, "64A"], +[-37.7928337833, 175.3173753, "64"], +[-37.79179545, 175.3177564667, "86"], +[-37.79748155, 175.3158936833, "10"], +[-37.7965299167, 175.31512435, "11"], +[-37.7915938, 175.3178607, "90"], +[-37.7914172333, 175.3179063833, "92"], +[-37.7914369, 175.3183056833, "94"], +[-37.7912354833, 175.3179832833, "96"], +[-37.7910981333, 175.3180590833, "98"], +[-37.7970089167, 175.3154383833, "12"], +[-37.7963743667, 175.31516345, "13"], +[-37.7962020333, 175.3152092, "15"], +[-37.79715295, 175.3163813833, "16A"], +[-37.79695945, 175.3161055667, "16"], +[-37.7960298, 175.3152564, "17"], +[-37.7958164833, 175.3153379667, "19"], +[-37.7963801833, 175.3156014667, "20"], +[-37.7956028167, 175.3153993167, "21"], +[-37.7956309333, 175.31581255, "24"], +[-37.7954782833, 175.31586725, "26"], +[-37.7952364333, 175.3150603333, "25A"], +[-37.7950361167, 175.31509585, "25B"], +[-37.7952142667, 175.3155674333, "25"], +[-37.7976530667, 175.3152556667, "4"], +[-37.7974466333, 175.31529825, "6"], +[-37.7969037333, 175.3150265833, "7"], +[-37.7972820667, 175.3156374, "8A"], +[-37.79724675, 175.3153448167, "8"], +[-37.7862454, 175.3205790333, "210"], +[-37.7919923833, 175.3177091333, "82A"], +[-37.7921084333, 175.31764625, "82"], +[-37.7905245167, 175.3184730333, "110B"], +[-37.7951480167, 175.3159613667, "30"], +[-37.7953158167, 175.3159003833, "28"], +[-37.7942600667, 175.3165801, "42"], +[-37.72523915, 175.2400553167, "4"], +[-37.7253423333, 175.2401200833, "6"], +[-37.72493045, 175.2404984833, "1"], +[-37.7255231, 175.2402517, "8"], +[-37.7250974167, 175.2402846333, "2"], +[-37.7251250667, 175.2407475167, "3"], +[-37.725294, 175.24055125, "10"], +[-37.7371222167, 175.2846009667, "3"], +[-37.7377014, 175.2848781833, "11"], +[-37.7373439333, 175.28440075, "2"], +[-37.7376550167, 175.2846742833, "10"], +[-37.73769875, 175.2845029167, "8"], +[-37.7377098333, 175.28427995, "6"], +[-37.7375314667, 175.2843192167, "4"], +[-37.7370403833, 175.2844705333, "1"], +[-37.73724905, 175.2846955, "5"], +[-37.7375462333, 175.28482495, "9"], +[-37.7373907667, 175.2847852333, "7"], +[-37.7259923833, 175.2758627667, "1"], +[-37.773131, 175.2773791167, "15"], +[-37.7743828333, 175.2777646, "8"], +[-37.7743488167, 175.27721165, "10"], +[-37.77421415, 175.2776993333, "10A"], +[-37.77426425, 175.27664685, "7"], +[-37.7734762, 175.2770426833, "11"], +[-37.7738801667, 175.2772323167, "14"], +[-37.7749638833, 175.2769931167, "1"], +[-37.7747582167, 175.2768692833, "3"], +[-37.7740129167, 175.2765517333, "9"], +[-37.7748432167, 175.2776293167, "4"], +[-37.77455715, 175.2775963667, "6A"], +[-37.7744492667, 175.2767344667, "5"], +[-37.7733291, 175.2771835667, "13"], +[-37.7736467333, 175.27743, "16"], +[-37.7734733333, 175.277602, "18"], +[-37.7741903833, 175.2771468667, "12"], +[-37.7733366, 175.27775035, "20"], +[-37.7750208333, 175.2774954667, "2"], +[-37.77484085, 175.2774211667, "4A"], +[-37.7745157167, 175.27727945, "8A"], +[-37.7750888167, 175.2777106667, "2A"], +[-37.77469245, 175.2773203333, "6"], +[-37.7907791667, 175.2580750833, "3"], +[-37.7908221667, 175.2576455833, "6"], +[-37.79056495, 175.2575654167, "8"], +[-37.7904529, 175.2578967833, "1A"], +[-37.7903960333, 175.2581851833, "1B"], +[-37.7905253667, 175.2579574667, "1"], +[-37.7905245, 175.2582822667, "2B"], +[-37.790647, 175.2581019333, "2"], +[-37.7910704667, 175.2580384167, "4A"], +[-37.7910952833, 175.25793705, "4B"], +[-37.79084595, 175.2579542, "4"], +[-37.79089225, 175.2577873833, "5"], +[-37.79069835, 175.2575948, "7"], +[-37.7907742, 175.2573409667, "7A"], +[-37.80038905, 175.2996919, "2"], +[-37.8003682167, 175.2997762167, "3"], +[-37.8003189333, 175.30002115, "4"], +[-37.8003668667, 175.3000468, "5"], +[-37.8004547333, 175.2997826333, "6"], +[-37.7557376833, 175.2318598833, "5"], +[-37.7560415667, 175.2318479, "3"], +[-37.7545027333, 175.2325126, "17"], +[-37.75504355, 175.2275802333, "87"], +[-37.7545505833, 175.2265261667, "89"], +[-37.7539216833, 175.2256039, "91"], +[-37.75526295, 175.2326288833, "14"], +[-37.74892005, 175.2293479667, "103"], +[-37.74760325, 175.2281806, "124"], +[-37.74720385, 175.2269002833, "129"], +[-37.746474, 175.2261312167, "143"], +[-37.75045775, 175.2311623333, "79"], +[-37.7543137667, 175.23365135, "26"], +[-37.7534928833, 175.2337643833, "29"], +[-37.7540200333, 175.2339787333, "30"], +[-37.7537510167, 175.2342300333, "34"], +[-37.75304945, 175.2336604667, "41"], +[-37.7547679333, 175.2322368333, "15"], +[-37.7542360333, 175.2328405167, "23"], +[-37.7554687667, 175.2319364, "7"], +[-37.7565829333, 175.2316435833, "6"], +[-37.7506522667, 175.2313136333, "77"], +[-37.75601835, 175.2323809, "10"], +[-37.7556174667, 175.2324758833, "12"], +[-37.7565880333, 175.2322649667, "8"], +[-37.7523173333, 175.2330159833, "53"], +[-37.7519590833, 175.2326273833, "59"], +[-37.8186409333, 175.2864643833, "17B"], +[-37.8187146667, 175.2863127667, "15A"], +[-37.8189331167, 175.2858331, "11A"], +[-37.81922785, 175.2855088333, "7B"], +[-37.8196646167, 175.2867466667, "12B"], +[-37.8186684833, 175.2868808667, "21"], +[-37.8186127833, 175.2870046667, "21A"], +[-37.8183038667, 175.2876371, "29"], +[-37.8174481333, 175.2892140833, "44"], +[-37.8176581333, 175.28928525, "44B"], +[-37.8161756333, 175.2898204667, "61B"], +[-37.816946, 175.2888000167, "41A"], +[-37.8174009667, 175.2886465833, "37"], +[-37.8182582833, 175.2870007667, "25A"], +[-37.8184058167, 175.2872387, "23A"], +[-37.8195260333, 175.2863407333, "6A"], +[-37.8190292167, 175.28701645, "18"], +[-37.8149071167, 175.2919459, "87"], +[-37.8175765333, 175.2884590333, "35"], +[-37.8168419833, 175.28935195, "45"], +[-37.81606065, 175.2908560667, "68"], +[-37.81873225, 175.2867389333, "19"], +[-37.81590795, 175.29044375, "67"], +[-37.81807455, 175.2884715167, "36"], +[-37.8181896333, 175.2883349667, "34"], +[-37.81848155, 175.28834875, "32A"], +[-37.8186264, 175.2882262667, "30A"], +[-37.8193044333, 175.28689945, "16A"], +[-37.8171817667, 175.2890187167, "39A"], +[-37.8183972333, 175.28847675, "34A"], +[-37.8196966167, 175.28573965, "2"], +[-37.8158026667, 175.2905961333, "69"], +[-37.8187835667, 175.2875678167, "24A"], +[-37.8164726667, 175.2889824167, "47"], +[-37.8191334167, 175.2874996, "22A"], +[-37.8149383333, 175.2938707667, "100"], +[-37.8146591333, 175.2934634, "101"], +[-37.8146475, 175.29368225, "103"], +[-37.8149817, 175.2917738667, "85"], +[-37.8146782333, 175.2920480667, "89A"], +[-37.8148369667, 175.29214755, "89B"], +[-37.8147926167, 175.2923313833, "91"], +[-37.8149839167, 175.2930401, "92"], +[-37.8149759333, 175.2932545833, "94"], +[-37.8149604, 175.2934912167, "96"], +[-37.8146822, 175.2930346667, "97"], +[-37.8149442, 175.2937591167, "98"], +[-37.8146746, 175.2932312667, "99"], +[-37.8190672, 175.2859920667, "11"], +[-37.8195848833, 175.2869474167, "12"], +[-37.8189859333, 175.2862213333, "13"], +[-37.8193990667, 175.2872881, "14A"], +[-37.8195739833, 175.2870836667, "14"], +[-37.8188985667, 175.28637955, "15"], +[-37.8191135, 175.2868429333, "16"], +[-37.8188158167, 175.2865621, "17"], +[-37.8189537667, 175.2872157333, "20"], +[-37.8188809167, 175.2873906667, "22"], +[-37.8185323, 175.2873183667, "23"], +[-37.81813605, 175.2868966833, "25"], +[-37.8186751167, 175.28774895, "26"], +[-37.8183791, 175.2874942, "27"], +[-37.8185560833, 175.2878990333, "28"], +[-37.8184207167, 175.28805825, "30"], +[-37.8183084667, 175.2881865667, "32"], +[-37.8178044333, 175.28818205, "31"], +[-37.8176969667, 175.2883093, "33"], +[-37.8194448833, 175.2854379667, "3"], +[-37.81661495, 175.2887918, "43"], +[-37.8173576667, 175.2893292167, "46"], +[-37.8195767667, 175.2858773667, "4"], +[-37.8191314667, 175.2852741667, "5"], +[-37.8172252667, 175.2894727333, "48"], +[-37.8163960667, 175.2890566667, "49"], +[-37.8164910667, 175.2893769667, "51A"], +[-37.8166774, 175.2895300833, "51"], +[-37.8165457167, 175.2896813667, "53"], +[-37.816185, 175.2893059, "55"], +[-37.8160948, 175.2893873333, "57"], +[-37.8163862333, 175.2898823667, "59"], +[-37.81941005, 175.2861705667, "6"], +[-37.8192559667, 175.2856652833, "7"], +[-37.8162492167, 175.29001635, "61"], +[-37.8161565, 175.2901742333, "63"], +[-37.8160348833, 175.290305, "65"], +[-37.8156723, 175.2907085167, "71"], +[-37.8155633667, 175.29086055, "73"], +[-37.81543045, 175.2910235, "75"], +[-37.8156513, 175.2912670333, "76"], +[-37.81510645, 175.2908921, "77A"], +[-37.8152946833, 175.29123385, "77"], +[-37.8155109833, 175.2914278167, "78"], +[-37.8189423833, 175.2857118, "9A"], +[-37.8191521667, 175.2858256667, "9"], +[-37.8151630667, 175.2914174333, "81"], +[-37.8150707333, 175.2915888833, "83"], +[-37.8151840333, 175.2921205333, "84"], +[-37.815112, 175.2923418833, "86"], +[-37.8150539667, 175.2925726333, "88A"], +[-37.8151944667, 175.2926020333, "88B"], +[-37.8150102167, 175.2927993667, "90"], +[-37.8195444167, 175.28657455, "8A"], +[-37.8172538167, 175.2888812, "39"], +[-37.8179496833, 175.2886285, "38"], +[-37.8152669333, 175.2919343167, "82"], +[-37.8193133167, 175.2853998333, "3A"], +[-37.8182426167, 175.2873356667, "27A"], +[-37.81803565, 175.2888339167, "38A"], +[-37.8170400167, 175.2891561833, "41"], +[-37.8146364333, 175.2938742667, "105"], +[-37.8193125833, 175.2864110833, "8"], +[-37.8192335833, 175.2865797333, "10"], +[-37.8194686333, 175.28675635, "10A"], +[-37.8190448833, 175.2876936333, "24"], +[-37.81618745, 175.2895796667, "59A"], +[-37.7944294, 175.24467905, "3A"], +[-37.7943062, 175.2443221833, "4"], +[-37.7945037667, 175.2436821, "10"], +[-37.79496495, 175.24381695, "11"], +[-37.7946694333, 175.243733, "12"], +[-37.7948007833, 175.2437645333, "13"], +[-37.79452745, 175.2445468, "3"], +[-37.7946980167, 175.2443324, "5"], +[-37.7944912667, 175.2441228667, "6"], +[-37.7947834333, 175.2441568167, "7"], +[-37.7945416833, 175.2438849833, "8"], +[-37.7948561333, 175.24397485, "9"], +[-37.7903301833, 175.2296814833, "2"], +[-37.7898813, 175.2295794333, "10"], +[-37.7899125833, 175.22945385, "11"], +[-37.79059915, 175.22943535, "1"], +[-37.79052685, 175.2293141833, "3"], +[-37.7901701333, 175.2297108167, "4"], +[-37.7899912667, 175.2298217667, "6"], +[-37.7899101667, 175.2297178333, "8"], +[-37.7900333667, 175.2294431833, "9"], +[-37.7901885167, 175.2294372833, "7"], +[-37.7903764833, 175.22937095, "5"], +[-37.76775445, 175.2779216333, "10"], +[-37.7678026, 175.2781198167, "14"], +[-37.7672105667, 175.2781572667, "3"], +[-37.7675099167, 175.2783135833, "7"], +[-37.7676648167, 175.2783780333, "9"], +[-37.7677899167, 175.2780247167, "12"], +[-37.7677912, 175.2782157333, "13"], +[-37.7673642, 175.27822965, "5"], +[-37.7674538667, 175.277861, "6"], +[-37.7676224, 175.2778836167, "8"], +[-37.7618601333, 175.30931935, "9"], +[-37.7623983, 175.30926405, "6"], +[-37.7622276167, 175.3095616167, "10"], +[-37.7619625167, 175.3094276, "11"], +[-37.7620867167, 175.3094549167, "12"], +[-37.7620070667, 175.3089328, "1"], +[-37.7621934, 175.3089151167, "2"], +[-37.761929, 175.3091314, "3"], +[-37.7622033833, 175.30911665, "4"], +[-37.7616636667, 175.3092533, "5"], +[-37.7622030667, 175.3093595333, "8"], +[-37.76165605, 175.3093565, "7"], +[-37.7801696167, 175.2268388667, "1"], +[-37.78006255, 175.22733865, "2"], +[-37.7800489167, 175.2268130333, "3"], +[-37.77993675, 175.22724405, "4"], +[-37.7799517667, 175.2269730833, "5"], +[-37.7798184667, 175.2271313667, "6"], +[-37.7271165167, 175.2375068667, "7"], +[-37.7273851667, 175.23774315, "4"], +[-37.72727595, 175.2376087167, "5"], +[-37.7272314167, 175.2625501333, "12"], +[-37.72715045, 175.2621108, "8"], +[-37.7273483333, 175.2629963167, "16"], +[-37.7273086667, 175.2631708167, "18"], +[-37.7270512667, 175.2618977333, "6"], +[-37.72689285, 175.2630210333, "9"], +[-37.72675935, 175.2618147333, "2"], +[-37.72673065, 175.26323685, "11"], +[-37.7269232167, 175.2632999667, "13"], +[-37.72704755, 175.2633776833, "15"], +[-37.7272158167, 175.26330385, "17"], +[-37.7268280333, 175.2622363167, "3"], +[-37.7268979833, 175.2625561667, "5"], +[-37.7269428, 175.2627844833, "7"], +[-37.7269003667, 175.2617906333, "4"], +[-37.7272718667, 175.2627726333, "14"], +[-37.7271953833, 175.26233345, "10"], +[-37.8017419167, 175.23893235, "64A"], +[-37.8027975667, 175.24365655, "4A"], +[-37.8030392167, 175.2403585, "46A"], +[-37.8037712333, 175.2403199167, "47"], +[-37.8028421667, 175.2388147667, "61A"], +[-37.8035932167, 175.2397999167, "49"], +[-37.80305945, 175.2421787167, "21"], +[-37.8029515333, 175.2423586333, "19A"], +[-37.8032346, 175.2425247667, "19B"], +[-37.8028004667, 175.2428692, "15"], +[-37.80286965, 175.2416508667, "26A"], +[-37.80265285, 175.2415404667, "26"], +[-37.80362185, 175.2420274833, "27"], +[-37.8029337833, 175.24146815, "28"], +[-37.8032597, 175.2416969, "29"], +[-37.80301045, 175.24128505, "30"], +[-37.8033319833, 175.2415230333, "31"], +[-37.8030785833, 175.2410897667, "32"], +[-37.8034106833, 175.2413656, "33"], +[-37.8031535833, 175.2409004333, "34"], +[-37.8034944667, 175.2411640833, "35"], +[-37.8028950667, 175.2405039333, "36"], +[-37.8035554667, 175.2409727, "37"], +[-37.8036299833, 175.24078625, "39"], +[-37.8032148, 175.2406802333, "40A"], +[-37.8030827, 175.2405458333, "40B"], +[-37.8033435833, 175.2403768, "40C"], +[-37.8032754333, 175.2402589333, "40D"], +[-37.80369125, 175.2405719167, "41"], +[-37.8041058667, 175.2407672667, "43"], +[-37.8041485667, 175.24066235, "45"], +[-37.80319885, 175.23986695, "48"], +[-37.8032376833, 175.2433737333, "3"], +[-37.8029289833, 175.2400168667, "50A"], +[-37.8030476333, 175.2397036667, "50"], +[-37.8034975667, 175.2395841833, "51"], +[-37.8028504833, 175.2396033667, "52"], +[-37.8034095, 175.2393768667, "53"], +[-37.8026801167, 175.2395117, "54A"], +[-37.8025725167, 175.23986455, "54"], +[-37.8032612833, 175.2393158, "55"], +[-37.8031113, 175.2392051667, "57"], +[-37.8029611667, 175.2391326167, "59"], +[-37.8025095, 175.2394044833, "58"], +[-37.80297125, 175.2436181833, "4"], +[-37.8034053167, 175.2428190333, "5"], +[-37.8023108333, 175.2392925167, "60"], +[-37.80211035, 175.23916235, "62"], +[-37.80188225, 175.2390127667, "64"], +[-37.80248775, 175.2388620333, "65"], +[-37.8023544333, 175.2387878333, "67"], +[-37.8022035167, 175.2387103667, "69"], +[-37.8020519833, 175.2386284833, "71"], +[-37.80191865, 175.2385286167, "73"], +[-37.80179035, 175.2384545167, "75"], +[-37.8028081, 175.2390319833, "61"], +[-37.8020401833, 175.2393906, "62A"], +[-37.80274525, 175.2386987, "63A"], +[-37.8026639333, 175.2389562167, "63B"], +[-37.8025953167, 175.2436356667, "6A"], +[-37.8027781833, 175.2433992167, "6"], +[-37.8030644333, 175.2431741833, "7"], +[-37.8029155667, 175.2430028833, "9"], +[-37.8033413833, 175.2434786, "1"], +[-37.8035729, 175.2421767833, "25"], +[-37.8031532, 175.2419564, "23"], +[-37.8026180333, 175.2432451833, "8"], +[-37.8025919333, 175.2423698833, "1/24-26/24"], +[-37.80308355, 175.2424263, "19"], +[-37.8030132, 175.2402496667, "46"], +[-37.8029388833, 175.2408147667, "34A"], +[-37.8031888167, 175.2400972667, "48A"], +[-37.8039319333, 175.2404574833, "47B"], +[-37.8040083667, 175.2394576167, "47A"], +[-37.7772354333, 175.2942259667, "11A"], +[-37.7777397333, 175.2939285333, "10A"], +[-37.7777474667, 175.2940672167, "10"], +[-37.7777499333, 175.29422705, "12"], +[-37.7777749, 175.29455615, "16"], +[-37.7772032333, 175.29356645, "7A"], +[-37.7773599833, 175.29358915, "7"], +[-37.7773862167, 175.2941890667, "11"], +[-37.7773975167, 175.2944898, "13"], +[-37.7777648667, 175.2943888, "14"], +[-37.77740645, 175.2947586667, "15"], +[-37.7774119833, 175.2949802, "17"], +[-37.7777808667, 175.29474335, "18"], +[-37.7773391333, 175.2927114667, "1"], +[-37.7777932833, 175.2949499, "20"], +[-37.7776849833, 175.2929343, "2A"], +[-37.7778712, 175.2928302167, "2"], +[-37.7777372833, 175.2934570333, "6"], +[-37.7777312, 175.2937305833, "8"], +[-37.7773784333, 175.2938823, "9"], +[-37.77726785, 175.2952093833, "19"], +[-37.7778063167, 175.2951793333, "22"], +[-37.7777911167, 175.29541245, "24"], +[-37.7776345, 175.2956744333, "28"], +[-37.7774861333, 175.2956785667, "30"], +[-37.7773495167, 175.2956800833, "32"], +[-37.7773532333, 175.2932730667, "5"], +[-37.7773495333, 175.2929760333, "3"], +[-37.7777194167, 175.29319355, "4"], +[-37.7431097667, 175.2818197667, "6"], +[-37.7433133333, 175.28199675, "2"], +[-37.7432311, 175.28194295, "4"], +[-37.74318545, 175.28046185, "30"], +[-37.7427879833, 175.28147715, "12"], +[-37.7437758, 175.2802430833, "38"], +[-37.7432736167, 175.2810946167, "5"], +[-37.7432535333, 175.2814088833, "3"], +[-37.7434011167, 175.2816776333, "1"], +[-37.7440873333, 175.28075275, "15"], +[-37.7438618333, 175.2806544833, "13"], +[-37.7436942833, 175.2806943333, "11"], +[-37.7430691833, 175.28171345, "8"], +[-37.7429606333, 175.2813013, "14"], +[-37.7431132833, 175.2807885667, "26"], +[-37.7432054167, 175.2806923167, "28"], +[-37.7433619, 175.2805357833, "32"], +[-37.74351315, 175.2804131333, "34"], +[-37.7436394667, 175.28029815, "36"], +[-37.74391065, 175.2803667167, "19"], +[-37.7440711, 175.2805592833, "17"], +[-37.74300745, 175.2815411667, "10"], +[-37.7427686167, 175.2812183333, "16"], +[-37.7429688667, 175.2811228333, "18"], +[-37.74278265, 175.2809776333, "20"], +[-37.74299695, 175.2809648833, "22"], +[-37.7428368, 175.2807581333, "24"], +[-37.7435500667, 175.28080305, "9"], +[-37.7434235167, 175.2809293667, "7"], +[-37.8288207167, 175.2910423333, "5"], +[-37.8287779667, 175.2908198, "7"], +[-37.8288564167, 175.291265, "3"], +[-37.8278359333, 175.2909383, "10A"], +[-37.8279679167, 175.2910241833, "10"], +[-37.82787185, 175.2906056667, "12A"], +[-37.8278957833, 175.2908765, "12"], +[-37.82830195, 175.2894963833, "20"], +[-37.8283392667, 175.2892806333, "22"], +[-37.8283739833, 175.2890183833, "24"], +[-37.8284043833, 175.2887885333, "26"], +[-37.82795805, 175.2906269833, "14"], +[-37.8280578667, 175.2908672333, "16"], +[-37.82846825, 175.2909485, "18A"], +[-37.8282392, 175.2909391167, "18"], +[-37.8284354833, 175.2885261167, "28"], +[-37.8284688333, 175.2883287333, "30"], +[-37.8285142333, 175.2880852667, "32"], +[-37.8285477167, 175.28788305, "34"], +[-37.82858935, 175.2876395667, "36"], +[-37.8285475167, 175.2913255, "4"], +[-37.8283126167, 175.2911639833, "6"], +[-37.8281306667, 175.29108285, "8"], +[-37.7523281, 175.2559948, "2"], +[-37.7521220333, 175.2557754, "1"], +[-37.7522896, 175.2561877833, "4"], +[-37.7519743, 175.2559818667, "3"], +[-37.75181625, 175.2562270333, "5A"], +[-37.7518022667, 175.2561693833, "5"], +[-37.7521174833, 175.2564679833, "6"], +[-37.7520247667, 175.2563664, "7B"], +[-37.7519619, 175.2563154667, "7"], +[-37.8024696667, 175.2404268333, "12"], +[-37.80225035, 175.2411294333, "18"], +[-37.8020638667, 175.2397546333, "4"], +[-37.8024023833, 175.2402040833, "10"], +[-37.80247865, 175.2406668333, "14"], +[-37.8024004833, 175.24090715, "16"], +[-37.8019032, 175.2403286833, "1A"], +[-37.8020286167, 175.2402977833, "1B"], +[-37.8019255667, 175.2398921167, "2"], +[-37.8020743667, 175.2405625333, "3"], +[-37.8022666667, 175.2405905333, "5"], +[-37.8021373833, 175.2399303333, "6"], +[-37.8022712667, 175.2400548, "8"], +[-37.8021268667, 175.24127865, "20"], +[-37.8021081167, 175.2411807, "9"], +[-37.8022073667, 175.2410088, "7"], +[-37.80203255, 175.2414609333, "22"], +[-37.74737775, 175.2520101667, "6"], +[-37.7474031667, 175.2514504667, "10"], +[-37.7476532167, 175.2508658167, "11"], +[-37.7474356167, 175.2511762, "12"], +[-37.7475156667, 175.2509385667, "14"], +[-37.7476739, 175.25228475, "1"], +[-37.7474401833, 175.2525974667, "2"], +[-37.7476912667, 175.2519877833, "3"], +[-37.7473600167, 175.2523008667, "4"], +[-37.7477031667, 175.2517225667, "5"], +[-37.7477152667, 175.2514579833, "7"], +[-37.74772715, 175.2511013167, "9"], +[-37.7473884833, 175.2517337, "8"], +[-37.7607655667, 175.2946454, "1"], +[-37.7608636833, 175.2941969167, "10"], +[-37.76091315, 175.2947189333, "2"], +[-37.7611005167, 175.2948075167, "3"], +[-37.7613080167, 175.294895, "4"], +[-37.7614871833, 175.2948645167, "5"], +[-37.76151565, 175.2945941833, "6"], +[-37.7613363667, 175.2944564, "7"], +[-37.7611276, 175.2943410167, "8"], +[-37.7610430333, 175.2939465667, "9"], +[-37.75874245, 175.25298515, "15B"], +[-37.75868405, 175.2530911333, "15A"], +[-37.75857915, 175.2521678167, "28A"], +[-37.75850885, 175.2526400833, "22B"], +[-37.7579171667, 175.2547824333, "1A"], +[-37.75781835, 175.25493175, "1"], +[-37.7580334667, 175.2537880167, "10"], +[-37.7590136667, 175.2524707167, "23"], +[-37.7582440833, 175.2548355167, "3A"], +[-37.7595074667, 175.2515641167, "39"], +[-37.7580462333, 175.2546951, "3"], +[-37.76001955, 175.2506632333, "55"], +[-37.75969165, 175.2505366333, "56"], +[-37.7600816, 175.2505492, "57"], +[-37.7585018, 175.254459, "9A"], +[-37.7583092333, 175.2541614333, "9"], +[-37.7597609, 175.2511180833, "47"], +[-37.7594979333, 175.2508782, "48"], +[-37.7598292333, 175.2510030167, "49"], +[-37.7595584833, 175.2507642, "50"], +[-37.7598923333, 175.2508892167, "51"], +[-37.7596243333, 175.2506416167, "52"], +[-37.7608056, 175.2500154167, "53A"], +[-37.7605992667, 175.2504861, "53B"], +[-37.7604748667, 175.2507366833, "53C"], +[-37.7601149333, 175.25124195, "53D"], +[-37.7599503667, 175.25077565, "53"], +[-37.76012295, 175.24971805, "68"], +[-37.7582312, 175.2527642833, "18A"], +[-37.7583989833, 175.25288185, "18"], +[-37.758437, 175.25382115, "11A"], +[-37.7583496833, 175.2540233833, "11"], +[-37.7579154167, 175.25340235, "12A"], +[-37.7579747833, 175.2533381167, "12B"], +[-37.7581074833, 175.2535853833, "12"], +[-37.758495, 175.2536972833, "13"], +[-37.7582054833, 175.25335365, "14"], +[-37.7580669167, 175.2530990167, "16A"], +[-37.7582802667, 175.253209, "16"], +[-37.7588729833, 175.2527361833, "19"], +[-37.7589484333, 175.2525924167, "21"], +[-37.7585300667, 175.2525953167, "22"], +[-37.7576627333, 175.2545677333, "2"], +[-37.75860065, 175.2524674167, "24"], +[-37.7590638833, 175.2523658333, "25"], +[-37.7586649667, 175.2523721, "26"], +[-37.7587186167, 175.2522556833, "28"], +[-37.75912335, 175.25226325, "27"], +[-37.7591932667, 175.252146, "29"], +[-37.7592580667, 175.2520209833, "31"], +[-37.7593145333, 175.2519035167, "33"], +[-37.7590452, 175.2516655667, "34"], +[-37.7575302833, 175.2542309667, "4A"], +[-37.7577439, 175.2543612667, "4B"], +[-37.7593792, 175.2518028833, "35"], +[-37.7591093, 175.2515569833, "36"], +[-37.7594496833, 175.25168245, "37"], +[-37.7591788833, 175.2514419833, "38"], +[-37.7592473167, 175.2513196333, "40"], +[-37.7595715, 175.2514555167, "41"], +[-37.7593051167, 175.2512159333, "42"], +[-37.7596339667, 175.2513419667, "43"], +[-37.7593732667, 175.2511030667, "44"], +[-37.7594362833, 175.2509908833, "46"], +[-37.75969575, 175.2512286167, "45"], +[-37.7581352167, 175.2545355167, "5"], +[-37.7576206, 175.25405555, "6A"], +[-37.7578520667, 175.25419755, "6"], +[-37.7584733, 175.2545958833, "7A"], +[-37.7579573833, 175.2539935333, "8"], +[-37.75975385, 175.2504112833, "58"], +[-37.7601456667, 175.25043305, "59"], +[-37.7598221, 175.2503055833, "60"], +[-37.7598868833, 175.2501856333, "62"], +[-37.7602715333, 175.25021445, "63"], +[-37.7599734167, 175.2500093167, "64"], +[-37.7603250667, 175.2500918833, "65"], +[-37.7600651667, 175.2498445, "66"], +[-37.7603955333, 175.2499749833, "67"], +[-37.7602053167, 175.2503157167, "61"], +[-37.7582247, 175.2543701333, "7"], +[-37.7623657333, 175.2920884, "35"], +[-37.7622107833, 175.2896823167, "7"], +[-37.7620231833, 175.2903774167, "13"], +[-37.7623526833, 175.2902513167, "10"], +[-37.7620912333, 175.2901560333, "11"], +[-37.7622844667, 175.2904838833, "12"], +[-37.76222115, 175.2907254333, "14"], +[-37.7619565333, 175.2906343667, "15"], +[-37.7621572667, 175.2909449167, "16"], +[-37.7618973333, 175.2908728333, "17"], +[-37.7621034167, 175.2912006333, "18"], +[-37.7618312, 175.2911032667, "19"], +[-37.7624794, 175.2891852, "1"], +[-37.7624031167, 175.2913311, "20"], +[-37.7617695667, 175.2913134167, "21"], +[-37.7625404, 175.2914085333, "22"], +[-37.7616160167, 175.2915801167, "23"], +[-37.7627190333, 175.2914349833, "24"], +[-37.76188675, 175.2914993667, "25"], +[-37.7628597333, 175.29149255, "26"], +[-37.7618580667, 175.2918270833, "27"], +[-37.7630002167, 175.2915445167, "28"], +[-37.7620577167, 175.2915688833, "29"], +[-37.7627522333, 175.2893317333, "2"], +[-37.7622411833, 175.29165325, "31"], +[-37.76240625, 175.2917241667, "33"], +[-37.7623682833, 175.28929975, "3"], +[-37.7629735333, 175.2919254, "41"], +[-37.76252155, 175.2896277833, "4"], +[-37.7622874, 175.2894605333, "5"], +[-37.7624812667, 175.2897636333, "6"], +[-37.76241795, 175.2900128333, "8"], +[-37.7621421667, 175.2899246833, "9"], +[-37.7625969, 175.2917951833, "37"], +[-37.7627647167, 175.291854, "39"], +[-37.7570464, 175.2499422167, "13"], +[-37.7572096833, 175.2501190833, "11"], +[-37.7573788833, 175.2503084167, "9"], +[-37.7588475, 175.2518376667, "1"], +[-37.7587696833, 175.2517788, "2"], +[-37.75868755, 175.25170085, "3"], +[-37.7583827167, 175.2518472, "5"], +[-37.7573091, 175.25077355, "66A"], +[-37.7570675167, 175.2505269, "66"], +[-37.7575419833, 175.2494753, "11A"], +[-37.7567489333, 175.2501689167, "19"], +[-37.7565923667, 175.25001065, "21"], +[-37.7566072833, 175.24955265, "22"], +[-37.756339, 175.2497701833, "23"], +[-37.7568582, 175.24976065, "17"], +[-37.7922826667, 175.3032840833, "223B"], +[-37.7920178, 175.3038566167, "227B"], +[-37.7927204, 175.3035129, "213A"], +[-37.7919859167, 175.3040371833, "227A"], +[-37.7926227167, 175.3041535, "211B"], +[-37.7925640667, 175.3044347833, "211A"], +[-37.7924497833, 175.3052299833, "212A"], +[-37.7924068333, 175.3050813667, "214B"], +[-37.7909245, 175.3038829167, "249"], +[-37.78960395, 175.3038307333, "272"], +[-37.8001373833, 175.3066254833, "35"], +[-37.7939139, 175.3054057333, "180"], +[-37.7942932833, 175.3055294667, "176"], +[-37.7938767167, 175.3057425167, "180B"], +[-37.7988982333, 175.3058761333, "65B"], +[-37.7988567167, 175.30586055, "65A"], +[-37.7987826667, 175.3071629167, "64"], +[-37.7988319833, 175.3062619167, "63B"], +[-37.7926555833, 175.3049652167, "208"], +[-37.7897337, 175.3038937833, "268"], +[-37.78959025, 175.3042316, "270"], +[-37.78943725, 175.3037579, "276"], +[-37.7948133167, 175.3057193833, "156"], +[-37.80076055, 175.3074924, "15"], +[-37.8003957, 175.3067619, "27A"], +[-37.7986576167, 175.3061809667, "69"], +[-37.79791035, 175.3056767167, "91"], +[-37.7979241, 175.3054430333, "93"], +[-37.8000833167, 175.3061301667, "37A"], +[-37.79147565, 175.3044696, "236"], +[-37.7932689667, 175.3051257, "204"], +[-37.7922380667, 175.3034783833, "223A"], +[-37.79828325, 175.306228, "77A"], +[-37.7931435333, 175.30507925, "206"], +[-37.79868185, 175.3075007, "64A"], +[-37.7980759833, 175.3058713167, "87A"], +[-37.79182115, 175.3046585833, "228"], +[-37.7916562, 175.3046061, "234"], +[-37.79982515, 175.3071474167, "39"], +[-37.7941153167, 175.3056221167, "178A"], +[-37.7917015833, 175.3049044667, "230"], +[-37.7922690167, 175.3041757, "219A"], +[-37.7995084833, 175.3074540667, "42"], +[-37.79617905, 175.3065941167, "122A"], +[-37.7920880667, 175.3040993333, "225A"], +[-37.7921479167, 175.3038848333, "225B"], +[-37.7923969833, 175.3035582167, "221A"], +[-37.7924399667, 175.3033552333, "221B"], +[-37.79231655, 175.3040004833, "219B"], +[-37.7926264, 175.3034597, "215A"], +[-37.8010701333, 175.3080040833, "4"], +[-37.7936515667, 175.3048551333, "189"], +[-37.7925441833, 175.3049125667, "212"], +[-37.7926530333, 175.3038895, "213"], +[-37.7924002, 175.3048595, "214"], +[-37.7925486333, 175.3038499167, "215"], +[-37.7922882333, 175.3048223667, "216"], +[-37.7923823667, 175.30437365, "217"], +[-37.7922363333, 175.30431905, "219"], +[-37.7920287667, 175.3050381167, "220A"], +[-37.7921414833, 175.30476125, "220"], +[-37.79235375, 175.3037652333, "221"], +[-37.7921928333, 175.3036982667, "223"], +[-37.7919749, 175.3047165167, "224"], +[-37.7906299833, 175.3042056667, "256"], +[-37.79048755, 175.3041651333, "258"], +[-37.7904924, 175.3036970167, "259"], +[-37.78948965, 175.3033733833, "261"], +[-37.7935902333, 175.3052879667, "186"], +[-37.79343045, 175.3052365333, "192"], +[-37.7945721333, 175.305804, "172A"], +[-37.7946794333, 175.3056652333, "172"], +[-37.7944776667, 175.3055949667, "174"], +[-37.79404595, 175.3054493167, "178"], +[-37.7937544, 175.3053487833, "184"], +[-37.796811, 175.3064528667, "106"], +[-37.7968284333, 175.30679755, "108"], +[-37.7966421833, 175.3063822, "110"], +[-37.7965158333, 175.3063364667, "114"], +[-37.7963244833, 175.3066281, "118B"], +[-37.79636715, 175.3062880333, "118"], +[-37.79622185, 175.30622795, "122"], +[-37.79601935, 175.30657115, "124"], +[-37.7960435, 175.3061717667, "126"], +[-37.7958647667, 175.3061119, "130"], +[-37.7956855167, 175.3060563167, "136"], +[-37.7955150833, 175.3059975, "140"], +[-37.7953575167, 175.30594145, "146"], +[-37.80101865, 175.3070303667, "11"], +[-37.8009303167, 175.3069065833, "13"], +[-37.8006396167, 175.3074357333, "17"], +[-37.8007170667, 175.3068438167, "19"], +[-37.8006151, 175.3067943167, "21"], +[-37.8004511333, 175.3073832667, "23"], +[-37.8003173, 175.3073333167, "25"], +[-37.80043555, 175.3064952167, "27"], +[-37.8001656, 175.3072778667, "31A"], +[-37.80009715, 175.30726075, "31B"], +[-37.8000036167, 175.3072015167, "33"], +[-37.80123745, 175.3076636667, "3"], +[-37.7996942667, 175.3071025667, "41"], +[-37.79901715, 175.3068569667, "57"], +[-37.7988833167, 175.3067778833, "59"], +[-37.7987494, 175.3067175167, "61"], +[-37.7989256333, 175.3072273167, "62"], +[-37.79879945, 175.3062511, "63A"], +[-37.7988666167, 175.3062757667, "63C"], +[-37.7989377167, 175.3058884667, "65C"], +[-37.79861905, 175.3070935833, "66"], +[-37.7987764333, 175.3057942833, "67"], +[-37.80110405, 175.3076082833, "5"], +[-37.7985258, 175.3066189, "71"], +[-37.7984834167, 175.3070485333, "72"], +[-37.7983874667, 175.3065732333, "73"], +[-37.7982575167, 175.3069796167, "74A"], +[-37.7983398167, 175.307005, "74"], +[-37.79825375, 175.3065239167, "77"], +[-37.7981904333, 175.3069580167, "78A"], +[-37.7981071833, 175.3069343667, "78B"], +[-37.7982905167, 175.3058891333, "79"], +[-37.7979954, 175.3068927333, "82"], +[-37.7980756167, 175.3064545667, "83"], +[-37.7981199333, 175.3057388167, "85"], +[-37.7978359833, 175.3068306, "86"], +[-37.7978642833, 175.3057716833, "87B"], +[-37.8009514667, 175.3075606, "7"], +[-37.7976955667, 175.3067586667, "94"], +[-37.79762765, 175.3062986167, "95"], +[-37.7916418333, 175.3041203667, "233"], +[-37.7906351167, 175.3037616667, "255"], +[-37.7907533333, 175.3042422333, "250"], +[-37.79077895, 175.3038176833, "251"], +[-37.7908571, 175.3043169333, "248"], +[-37.7964064333, 175.3065780833, "114A"], +[-37.8010421833, 175.3072649167, "7A"], +[-37.79185645, 175.30494535, "226"], +[-37.7916238833, 175.3049387333, "234A"], +[-37.7978329, 175.306367, "89"], +[-37.7999633333, 175.3065439333, "37"], +[-37.8002654833, 175.3062484333, "35A"], +[-37.7920521167, 175.3042679333, "225"], +[-37.7917712833, 175.3041691333, "231"], +[-37.8002988833, 175.30669005, "29"], +[-37.7918923667, 175.3042139167, "229"], +[-37.80037975, 175.3063916167, "29A"], +[-37.7931463667, 175.3222742167, "13"], +[-37.7933603333, 175.3227962, "14"], +[-37.7939814667, 175.3226354, "7"], +[-37.7929798333, 175.3222233667, "15"], +[-37.79364575, 175.3228978833, "10"], +[-37.7933036667, 175.3224019833, "11"], +[-37.79350155, 175.3228494167, "12"], +[-37.7932032167, 175.3227354, "16"], +[-37.7930813167, 175.3226896333, "18"], +[-37.7925294667, 175.3223465333, "19"], +[-37.79292655, 175.3226337667, "20"], +[-37.7928072833, 175.32254725, "22"], +[-37.7926472667, 175.3224522667, "24"], +[-37.7929170333, 175.3223822167, "26"], +[-37.79425405, 175.3227254167, "3"], +[-37.79408005, 175.3230455333, "4"], +[-37.7940979833, 175.3226693833, "5"], +[-37.7939642167, 175.3230108333, "6"], +[-37.7938102667, 175.3229485167, "8"], +[-37.7934529667, 175.322457, "9"], +[-37.80131745, 175.23961435, "56"], +[-37.8007459333, 175.2433924667, "15"], +[-37.8015185833, 175.2367839667, "96"], +[-37.8020641833, 175.2369739167, "97"], +[-37.8015258333, 175.2365884667, "98"], +[-37.8020780333, 175.2368512333, "99"], +[-37.8019437333, 175.2355211667, "113"], +[-37.80176035, 175.2338867333, "131"], +[-37.8019750833, 175.2336032167, "133"], +[-37.8015008333, 175.2349103833, "112A"], +[-37.8014582167, 175.2346764, "112B"], +[-37.8013926, 175.2344453333, "114"], +[-37.8013343667, 175.2341382833, "116"], +[-37.8013580833, 175.2338858667, "118"], +[-37.8020636, 175.2349172167, "119"], +[-37.8014084, 175.2336824167, "120"], +[-37.8020390167, 175.23479095, "121"], +[-37.8018142333, 175.2347554333, "123"], +[-37.8017675167, 175.2345091667, "125"], +[-37.8017369, 175.23428135, "127"], +[-37.8017041333, 175.2340599667, "129"], +[-37.8015449167, 175.23637655, "100"], +[-37.80188135, 175.2367355167, "101"], +[-37.801562, 175.2361685, "102"], +[-37.8018975667, 175.2364866667, "103"], +[-37.8015728833, 175.2359733, "104"], +[-37.8021235833, 175.23633135, "105"], +[-37.8015898333, 175.2357508333, "106"], +[-37.8019133167, 175.2362029667, "107"], +[-37.8015627333, 175.2354851167, "108"], +[-37.80193555, 175.2359560833, "109"], +[-37.8015161833, 175.2351882667, "110"], +[-37.80196345, 175.23574155, "111"], +[-37.8021827667, 175.23550025, "113A"], +[-37.8019029167, 175.2353084333, "115"], +[-37.8018553333, 175.2350661833, "117"], +[-37.80006345, 175.2435923, "10"], +[-37.8003712333, 175.2435842333, "11"], +[-37.8000895833, 175.2433648167, "12"], +[-37.80073585, 175.2435645833, "13"], +[-37.8001121167, 175.2431547833, "14"], +[-37.8001446167, 175.2429186167, "16"], +[-37.8004080667, 175.2433238333, "17"], +[-37.8001727667, 175.2427025833, "18"], +[-37.8001958, 175.242481, "20"], +[-37.8002328833, 175.2422651167, "22"], +[-37.8002618167, 175.2420424333, "24"], +[-37.80064515, 175.2417608667, "25"], +[-37.8004439333, 175.2431089167, "19"], +[-37.8001104167, 175.2448179167, "1A"], +[-37.80029125, 175.241806, "26"], +[-37.8008189, 175.2417614667, "27"], +[-37.8003456, 175.24159545, "28"], +[-37.8010007833, 175.2417959167, "29"], +[-37.8011782833, 175.2418156333, "31"], +[-37.8013362167, 175.2417859667, "33"], +[-37.8015070667, 175.2417399167, "35"], +[-37.79982265, 175.2444786167, "2"], +[-37.8016707667, 175.2416233167, "37"], +[-37.8017902, 175.2414728667, "39"], +[-37.8018826833, 175.2412624167, "45"], +[-37.8016258833, 175.2407139167, "48A"], +[-37.8015009, 175.2406748833, "48"], +[-37.8001841333, 175.2445453667, "3"], +[-37.8014784167, 175.2402822333, "52A"], +[-37.801242, 175.2403849333, "52B"], +[-37.8017551333, 175.2400666667, "53"], +[-37.8018387167, 175.2396510833, "55A"], +[-37.80168985, 175.2397008333, "55"], +[-37.80165635, 175.23945425, "57A"], +[-37.8018337833, 175.2394392, "57B"], +[-37.8016735833, 175.2392240667, "59"], +[-37.80153865, 175.2404628667, "50"], +[-37.79995855, 175.24424895, "4"], +[-37.80028835, 175.2442506833, "5"], +[-37.8013101167, 175.23936665, "72"], +[-37.80130945, 175.2391258833, "74"], +[-37.8000060333, 175.2440128, "6"], +[-37.80132395, 175.2388676167, "78"], +[-37.80135185, 175.2386145167, "82"], +[-37.8013571, 175.2383957167, "84"], +[-37.8017651833, 175.23814565, "85"], +[-37.8017878833, 175.2379293833, "87"], +[-37.80285305, 175.2374904, "89"], +[-37.8003173667, 175.2440177833, "7"], +[-37.80003235, 175.2437983333, "8"], +[-37.8014572167, 175.2374180667, "90"], +[-37.8018262167, 175.2375261167, "91"], +[-37.8014799667, 175.2372043833, "92"], +[-37.80183715, 175.2373098667, "93"], +[-37.801499, 175.23700075, "94"], +[-37.8018513, 175.2370539833, "95"], +[-37.8003472333, 175.2437822333, "9"], +[-37.8011008667, 175.2387357167, "80"], +[-37.8010849333, 175.2390101667, "76"], +[-37.8005477333, 175.2420722, "23"], +[-37.8061467833, 175.3286779333, "3"], +[-37.8061914333, 175.3282492667, "2"], +[-37.8067676, 175.3284764167, "1"], +[-37.7108523167, 175.21352555, "40"], +[-37.7120408667, 175.2114104667, "18"], +[-37.71134885, 175.21139855, "21"], +[-37.7105621833, 175.2140477833, "50"], +[-37.71028455, 175.21446245, "58"], +[-37.7988288, 175.3409273167, "4C"], +[-37.7979689167, 175.34008905, "4A"], +[-37.7986738167, 175.34070745, "4D"], +[-37.7980556833, 175.3409793333, "5"], +[-37.7986148333, 175.3404328667, "4B"], +[-37.7913632833, 175.2325015167, "10"], +[-37.7917041167, 175.2323570167, "11"], +[-37.7915207, 175.2323972, "13"], +[-37.7917824833, 175.23301015, "3"], +[-37.7915139333, 175.2331856667, "4"], +[-37.7918688833, 175.2325751667, "7"], +[-37.7914774333, 175.2327296667, "8"], +[-37.79186425, 175.2323448167, "9"], +[-37.7917958167, 175.2327974833, "5"], +[-37.7915136333, 175.2329726, "6"], +[-37.7359139, 175.2526142667, "14"], +[-37.7356038, 175.2518085667, "13"], +[-37.7358497167, 175.2505326, "1"], +[-37.7363124667, 175.25068295, "2"], +[-37.7354373667, 175.2531941333, "25"], +[-37.7362801167, 175.25239015, "12A"], +[-37.7359645833, 175.25208365, "10"], +[-37.7356033833, 175.2515713, "11"], +[-37.7359483167, 175.2523901, "12"], +[-37.7356167, 175.25208545, "15"], +[-37.7358593167, 175.2528504, "16"], +[-37.7355970667, 175.25231, "17"], +[-37.7358248167, 175.2530746667, "18"], +[-37.7355137, 175.25275175, "21"], +[-37.7355633667, 175.2525092333, "19"], +[-37.7354745333, 175.2529695833, "23"], +[-37.7357658333, 175.2507475, "3"], +[-37.7357138833, 175.2509241833, "5"], +[-37.7359588333, 175.2518708333, "8"], +[-37.73566475, 175.2511314, "7"], +[-37.7356265833, 175.25132805, "9"], +[-37.7362965667, 175.2522097167, "10A"], +[-37.72907265, 175.26150925, "2"], +[-37.7286680833, 175.2604401167, "18"], +[-37.7288003167, 175.2611944667, "10"], +[-37.7289288667, 175.2614140833, "6"], +[-37.7291887333, 175.2606965667, "7"], +[-37.72923385, 175.26045605, "9"], +[-37.72877485, 175.2614037333, "8"], +[-37.7287855167, 175.26099185, "12"], +[-37.7288372667, 175.2607382333, "14"], +[-37.7289563833, 175.2604921333, "16"], +[-37.72870845, 175.2603270833, "20"], +[-37.72892225, 175.2602024333, "22"], +[-37.7288273333, 175.2599918667, "24"], +[-37.72884675, 175.2598701833, "21"], +[-37.7290750667, 175.26108645, "5"], +[-37.7289352667, 175.25977735, "19"], +[-37.7290466333, 175.2596028167, "17"], +[-37.72919875, 175.2600094, "13"], +[-37.7292405833, 175.2602341833, "11"], +[-37.7291164333, 175.2598019167, "15"], +[-37.7292370833, 175.2612194333, "3"], +[-37.80153045, 175.2424257833, "14A"], +[-37.8011601333, 175.2428663833, "7"], +[-37.8016605833, 175.2427527167, "13"], +[-37.8020844333, 175.2422415667, "20"], +[-37.8012194833, 175.2424929, "10"], +[-37.8014896833, 175.24281355, "11"], +[-37.8013775167, 175.2424591667, "12"], +[-37.8015688333, 175.24212955, "14B"], +[-37.80182985, 175.2427434833, "15"], +[-37.8017243333, 175.2422703833, "16"], +[-37.80194135, 175.2426059667, "17"], +[-37.80187835, 175.24228735, "18"], +[-37.8006228333, 175.2428677833, "1"], +[-37.8005605167, 175.24247755, "2"], +[-37.8008046333, 175.2428599333, "3A"], +[-37.8008066833, 175.2431653167, "3B"], +[-37.8007240333, 175.2424741, "4"], +[-37.8009784333, 175.242852, "5"], +[-37.8008922, 175.2424769333, "6"], +[-37.8010526333, 175.2424886333, "8"], +[-37.8013280333, 175.2428640333, "9"], +[-37.8020494167, 175.2424631333, "19"], +[-37.8152390667, 175.27611065, "16"], +[-37.8155372833, 175.2752809, "9"], +[-37.8159174833, 175.2745892833, "1"], +[-37.81615145, 175.2748263667, "2"], +[-37.8157228167, 175.2749524167, "5"], +[-37.8158328167, 175.27477775, "3"], +[-37.8148982333, 175.2760569, "21"], +[-37.81553945, 175.2758137833, "12"], +[-37.8153942667, 175.2760447, "14"], +[-37.8153339667, 175.2756100667, "15"], +[-37.8151973167, 175.2757441, "17"], +[-37.8151262, 175.2760671, "18"], +[-37.8151097667, 175.2759015, "19"], +[-37.81605925, 175.2750313833, "2A"], +[-37.8159529667, 175.2751614333, "4"], +[-37.8158312, 175.2753402, "6"], +[-37.8156190167, 175.2751313833, "7"], +[-37.8157335333, 175.2755004333, "8"], +[-37.8156327167, 175.2756646, "10"], +[-37.81543775, 175.2754592, "11"], +[-37.7945257333, 175.3008998667, "144B"], +[-37.7946207, 175.3008397667, "144C"], +[-37.7949255333, 175.2994913333, "1/111-5/111"], +[-37.7952423333, 175.2996048667, "1/103-4/103"], +[-37.79502785, 175.298806, "1/113-5/113"], +[-37.7951480667, 175.2990226333, "1/109-6/109"], +[-37.7934411833, 175.2997922, "164A"], +[-37.7932765667, 175.2998468667, "1/168-4/168"], +[-37.79163225, 175.2987399, "200"], +[-37.7914112333, 175.2990822833, "202A"], +[-37.79132365, 175.29864375, "208"], +[-37.79126375, 175.298975, "208B"], +[-37.79117735, 175.2989285167, "208A"], +[-37.7912634833, 175.2993095167, "1/204-5/204"], +[-37.7910199667, 175.2979495333, "1/173-12/173"], +[-37.7914739167, 175.2979154333, "163A"], +[-37.7912780667, 175.2981193667, "1/165-4/165"], +[-37.7914217167, 175.2972507667, "1/169-7/169"], +[-37.7955482833, 175.2993028, "1/101A-8/101A"], +[-37.7954805, 175.3001326167, "124A"], +[-37.79530875, 175.3006394167, "124B"], +[-37.79343705, 175.3000078667, "162"], +[-37.79580145, 175.3006008667, "118A"], +[-37.7955942167, 175.2994075667, "99C"], +[-37.8016162333, 175.3033474833, "10A"], +[-37.8013878, 175.3012310167, "15"], +[-37.8011853, 175.3018041, "17"], +[-37.8013849667, 175.3026197, "18B"], +[-37.80134375, 175.30189455, "13"], +[-37.7939624833, 175.2991229333, "127"], +[-37.7921592833, 175.29774745, "149"], +[-37.7931490833, 175.2997953, "170A"], +[-37.7930813333, 175.3001385, "170B"], +[-37.7930274167, 175.3003399167, "170C"], +[-37.79315495, 175.2995868833, "172A"], +[-37.7932102833, 175.2992975167, "172"], +[-37.8014371167, 175.30295565, "16"], +[-37.8000191833, 175.3002754167, "39A"], +[-37.7997368833, 175.3022674333, "48"], +[-37.7977309333, 175.3009681333, "86"], +[-37.79688515, 175.3001709833, "87"], +[-37.7948116333, 175.3001352333, "140"], +[-37.7973422333, 175.3011221167, "92A"], +[-37.7946312333, 175.3000303333, "140B"], +[-37.7994520667, 175.3019665, "58B"], +[-37.8021539833, 175.3025702, "4"], +[-37.7995229, 175.30161805, "58"], +[-37.7994329833, 175.3021674833, "56A"], +[-37.7990033667, 175.3009895, "55"], +[-37.7936333333, 175.2997640667, "158A"], +[-37.7996377, 175.3020494667, "52A"], +[-37.7905510333, 175.2983037667, "224"], +[-37.7979741333, 175.3010535333, "82"], +[-37.7972351667, 175.3002911667, "83"], +[-37.7918618833, 175.2977527333, "159C"], +[-37.7917149667, 175.2973755, "161"], +[-37.7914181333, 175.2981974833, "163"], +[-37.7948828167, 175.2991320167, "115B"], +[-37.7949192833, 175.2988531333, "115C"], +[-37.7947622, 175.2994344167, "115"], +[-37.79486785, 175.2987396167, "117"], +[-37.7949497833, 175.3009812667, "134A"], +[-37.7949737833, 175.3005647167, "134"], +[-37.7948189333, 175.3009099667, "136A"], +[-37.79488585, 175.3005435667, "136"], +[-37.7949589167, 175.29994215, "138"], +[-37.7937924333, 175.2990644, "129"], +[-37.7936437667, 175.2989992333, "131"], +[-37.79303055, 175.2987626167, "137A"], +[-37.7930784, 175.29878745, "137"], +[-37.7947510333, 175.29984265, "140A"], +[-37.7945283167, 175.3005951833, "142A"], +[-37.7945248, 175.3004220667, "142"], +[-37.7944117, 175.3007933833, "144A"], +[-37.7939431333, 175.29958175, "154"], +[-37.7938280833, 175.2995438833, "156"], +[-37.7937007167, 175.2994986833, "158"], +[-37.7921580833, 175.2981346, "147A"], +[-37.79188605, 175.29837175, "151"], +[-37.7919866667, 175.2976752, "153"], +[-37.7916275333, 175.29827755, "155"], +[-37.79173135, 175.29808265, "157B"], +[-37.7916689, 175.2976592667, "159A"], +[-37.791845, 175.2978626667, "157C"], +[-37.7917793667, 175.2977214167, "159B"], +[-37.7933573, 175.2996185333, "166A"], +[-37.7933873, 175.2993764333, "166"], +[-37.79307175, 175.2992649167, "174"], +[-37.792799, 175.3000934667, "176A"], +[-37.7929003333, 175.29975505, "176"], +[-37.7927954, 175.2999220167, "178B"], +[-37.7927445667, 175.30012635, "178C"], +[-37.7928838167, 175.2991917333, "180"], +[-37.7928346667, 175.29975695, "178"], +[-37.79279105, 175.2991242167, "182"], +[-37.7913575, 175.2975857333, "167"], +[-37.7907665833, 175.2979593167, "179"], +[-37.7919496667, 175.29885195, "192"], +[-37.79180025, 175.2992371167, "194"], +[-37.7917603, 175.2987805, "198"], +[-37.7915415333, 175.2991275833, "200B"], +[-37.7914861833, 175.2986778167, "202"], +[-37.7911788667, 175.2985517833, "210"], +[-37.79096035, 175.2991770833, "212A"], +[-37.7909041667, 175.2994972333, "212B"], +[-37.7910772833, 175.2996246667, "212"], +[-37.7909953, 175.2984916833, "216"], +[-37.7908345667, 175.2984377, "220"], +[-37.79067095, 175.2983771333, "222"], +[-37.7953997667, 175.29964555, "101"], +[-37.7969848667, 175.3010701167, "100"], +[-37.7969404333, 175.3006877, "102A"], +[-37.7969170667, 175.3008250333, "102B"], +[-37.7968510667, 175.3011247667, "102C"], +[-37.8016891667, 175.3023871167, "1/12-4/12"], +[-37.7953029833, 175.29908125, "105"], +[-37.7950861, 175.2995489667, "107"], +[-37.7959513667, 175.30031775, "116"], +[-37.7958298833, 175.3002708667, "118"], +[-37.7956269833, 175.30052425, "120A"], +[-37.7955072833, 175.3008214833, "120B"], +[-37.7956521333, 175.3002057, "120"], +[-37.7952741, 175.3003186333, "128B"], +[-37.7952189833, 175.3005658833, "128C"], +[-37.7951965333, 175.3007410167, "128D"], +[-37.7953199833, 175.3000819667, "130"], +[-37.79508445, 175.3003734667, "132A"], +[-37.79515115, 175.3000236, "132"], +[-37.7967332, 175.3009503667, "106A"], +[-37.7966758833, 175.3012225833, "106B"], +[-37.7967603833, 175.3006193667, "108"], +[-37.8016506667, 175.3030444667, "10"], +[-37.7966388, 175.3005737333, "110"], +[-37.8014570667, 175.302302, "18"], +[-37.8010495667, 175.30175535, "19"], +[-37.8013184333, 175.3034427667, "16A"], +[-37.8003980167, 175.3014940667, "27"], +[-37.8002717, 175.3014388167, "29"], +[-37.8012940167, 175.3028649167, "20"], +[-37.8007903333, 175.3015495, "21A"], +[-37.8009755667, 175.3015986333, "21"], +[-37.8011827667, 175.3028769, "22"], +[-37.8012783167, 175.3022414333, "24"], +[-37.8011577333, 175.30219235, "26"], +[-37.8010849167, 175.3025157167, "28A"], +[-37.8009070667, 175.3031871333, "28B"], +[-37.8023047833, 175.3021833333, "1"], +[-37.8001029167, 175.3013714667, "31"], +[-37.80004815, 175.3009172833, "33A"], +[-37.7999507167, 175.3013213, "33"], +[-37.7997957333, 175.3012488167, "37"], +[-37.7998413667, 175.30085515, "39"], +[-37.8009780333, 175.3021349667, "30"], +[-37.8008945333, 175.3020834333, "34"], +[-37.8024239333, 175.3012102667, "3"], +[-37.8007414667, 175.3020141, "36"], +[-37.8003117, 175.30192405, "40"], +[-37.7997996333, 175.300583, "41"], +[-37.80018, 175.3018657333, "42"], +[-37.7996163833, 175.3011956167, "43A"], +[-37.7997103333, 175.3008136833, "43B"], +[-37.8000226, 175.30181615, "44"], +[-37.7998472, 175.3023104167, "46"], +[-37.7993750333, 175.3011192, "47"], +[-37.79961535, 175.3028105167, "48B"], +[-37.7997685, 175.3021060833, "50B"], +[-37.7998436667, 175.3017322, "50"], +[-37.7997038167, 175.3016883333, "52"], +[-37.7991542667, 175.3010379333, "53"], +[-37.79953695, 175.3022178667, "54"], +[-37.7994294, 175.30265435, "54A"], +[-37.7993952667, 175.3024934, "56B"], +[-37.8023442167, 175.3014379, "5"], +[-37.7981377167, 175.3006802667, "63A"], +[-37.7981457833, 175.3005337833, "63B"], +[-37.79840525, 175.3007004333, "63"], +[-37.7980574167, 175.3006567833, "65"], +[-37.7978565167, 175.30059205, "71"], +[-37.79938485, 175.3015541, "60"], +[-37.7992413, 175.3015058167, "62"], +[-37.7990666333, 175.30219525, "64B"], +[-37.7991229167, 175.3019026833, "64"], +[-37.799004, 175.3023247833, "66"], +[-37.7989083833, 175.3022502, "68"], +[-37.7989856167, 175.3018429667, "70"], +[-37.8020425667, 175.3025455667, "6"], +[-37.7978607833, 175.2998684333, "73A"], +[-37.7979681167, 175.2994724667, "73B"], +[-37.7978268333, 175.2999705167, "75A"], +[-37.7977071333, 175.3004996, "75B"], +[-37.7977643167, 175.3002056, "75"], +[-37.7976223833, 175.3001164, "77A"], +[-37.7975753333, 175.30041805, "77"], +[-37.7977825333, 175.2994034167, "79A"], +[-37.79771405, 175.2998783833, "79"], +[-37.7974157833, 175.3003541667, "81"], +[-37.7990402167, 175.30145165, "72"], +[-37.7988842, 175.3013824333, "74"], +[-37.798779, 175.3013404167, "76"], +[-37.8022801, 175.3016627833, "7"], +[-37.7959549667, 175.2998919333, "95A"], +[-37.7960680833, 175.2999325, "95"], +[-37.7957991667, 175.2997946, "97"], +[-37.7955498, 175.2996780833, "99A"], +[-37.7955623, 175.2995599333, "99B"], +[-37.79562855, 175.29928855, "99D"], +[-37.7956726833, 175.2990995, "99E"], +[-37.7956001, 175.2997109333, "99"], +[-37.7978690167, 175.3010179833, "84"], +[-37.79704705, 175.3002373833, "85"], +[-37.79749075, 175.3015053167, "88A"], +[-37.7974776667, 175.3016632167, "88"], +[-37.79757775, 175.3008995667, "90"], +[-37.7974558833, 175.3008576, "92"], +[-37.79725465, 175.3012024667, "94"], +[-37.7972919833, 175.3007944667, "96"], +[-37.7971469, 175.30074295, "98"], +[-37.8019151167, 175.3024831, "8"], +[-37.8020927, 175.3021308667, "9"], +[-37.79346685, 175.3004787333, "160A"], +[-37.7935552333, 175.30009565, "160"], +[-37.7920644167, 175.29842485, "147"], +[-37.79352275, 175.2994317, "164"], +[-37.7922021167, 175.2978535, "147B"], +[-37.7888404833, 175.3040268333, "21"], +[-37.78893395, 175.3035664, "13"], +[-37.7889090333, 175.3036417667, "15"], +[-37.7889924167, 175.303291, "5A"], +[-37.7889671, 175.30338545, "5B"], +[-37.7890575, 175.3030263833, "3A"], +[-37.7893941, 175.3030415667, "8"], +[-37.7890266, 175.3031280167, "3B"], +[-37.7887810167, 175.3042931, "27"], +[-37.78879215, 175.30422955, "25"], +[-37.7888224167, 175.3040909167, "23"], +[-37.7888724, 175.3038806833, "19"], +[-37.7893842833, 175.30398875, "16B"], +[-37.78943935, 175.3028252, "6"], +[-37.7891981167, 175.30391495, "16"], +[-37.7888875, 175.3038124333, "17"], +[-37.7891657167, 175.3041034, "18"], +[-37.7891095833, 175.3027742, "1"], +[-37.7891215, 175.3043003, "20"], +[-37.7895034, 175.3026011333, "4"], +[-37.7696905333, 175.2350875167, "12"], +[-37.7697988167, 175.2349719333, "10"], +[-37.7695110833, 175.2347862, "11"], +[-37.7695853167, 175.2349731667, "16"], +[-37.7702551, 175.2344689333, "2"], +[-37.7698788833, 175.2343784167, "3"], +[-37.77015205, 175.2345851167, "4"], +[-37.7696590667, 175.2342729, "5"], +[-37.7700376833, 175.23472045, "6"], +[-37.76951725, 175.2342877833, "7"], +[-37.7699146333, 175.23484585, "8"], +[-37.7696249167, 175.2345441833, "9"], +[-37.7695389333, 175.2353357667, "14"], +[-37.7371973167, 175.2347308667, "6"], +[-37.7376960667, 175.234844, "7"], +[-37.73732935, 175.2346627, "8"], +[-37.7373068167, 175.23504645, "3"], +[-37.7374980667, 175.23458915, "10"], +[-37.7376459167, 175.23451485, "12"], +[-37.7379001167, 175.2347811667, "13"], +[-37.73778895, 175.2344209833, "14"], +[-37.7380637333, 175.2347851833, "15"], +[-37.7381093333, 175.2345957667, "17"], +[-37.7381127333, 175.23442475, "19"], +[-37.7376093667, 175.2340937667, "18"], +[-37.7377431167, 175.2340259, "20"], +[-37.7381237333, 175.2341421167, "21"], +[-37.73789305, 175.2339386667, "22"], +[-37.7379793667, 175.2343019833, "23"], +[-37.738045, 175.23385395, "24"], +[-37.7381809, 175.2337786667, "26"], +[-37.7383393667, 175.2337563333, "28"], +[-37.7370803, 175.2348324667, "4"], +[-37.7375440333, 175.2349156833, "5"], +[-37.7379924333, 175.23521055, "11"], +[-37.7379001167, 175.2352078833, "9"], +[-37.78895405, 175.2554049833, "23"], +[-37.78926215, 175.2554631333, "18"], +[-37.78904015, 175.25575445, "19"], +[-37.7894149333, 175.2573224667, "3"], +[-37.7895242333, 175.25651155, "6"], +[-37.7894767833, 175.2563499167, "8"], +[-37.7896402333, 175.25704875, "61"], +[-37.7892426333, 175.2566247333, "11"], +[-37.7894296333, 175.2561724333, "10"], +[-37.7893909333, 175.2559952333, "12"], +[-37.7891604833, 175.2562916, "13"], +[-37.7893524333, 175.25580735, "14"], +[-37.78912605, 175.2561091667, "15"], +[-37.7893093, 175.25564065, "16"], +[-37.7890790167, 175.2559263667, "17"], +[-37.78951595, 175.2576768833, "1A"], +[-37.7894658833, 175.2575002667, "1"], +[-37.7896101833, 175.25686115, "2"], +[-37.78921905, 175.2552859167, "20"], +[-37.7890012333, 175.2555825167, "21"], +[-37.7895628833, 175.256689, "4"], +[-37.7893671667, 175.2571515833, "5"], +[-37.7896954167, 175.2572477833, "62"], +[-37.7897225333, 175.2574353, "63"], +[-37.78928975, 175.2568022667, "9"], +[-37.7893285167, 175.2569742, "7"], +[-37.75569545, 175.2615540667, "63B"], +[-37.7555789167, 175.2618265167, "63C"], +[-37.7573727833, 175.2620652833, "62"], +[-37.7554610167, 175.2616738167, "63A"], +[-37.7558830333, 175.26142045, "61"], +[-37.7571850667, 175.2618660333, "60"], +[-37.7561727667, 175.2615776667, "59"], +[-37.7578038833, 175.2605467167, "30A"], +[-37.7576172333, 175.2604064167, "30"], +[-37.7576301667, 175.25898635, "7"], +[-37.7576078167, 175.2590225167, "9"], +[-37.7574239333, 175.2593624167, "25"], +[-37.7574427333, 175.2593186, "23"], +[-37.7574614833, 175.2592781167, "21"], +[-37.7574815833, 175.2592410333, "19"], +[-37.7575020167, 175.2592006, "17"], +[-37.7577256167, 175.2588247, "1"], +[-37.7576761667, 175.2589084667, "5"], +[-37.7575905833, 175.25905765, "11"], +[-37.7575708333, 175.2590942167, "13"], +[-37.7575470167, 175.2591420167, "15"], +[-37.7572299833, 175.2630695833, "88A"], +[-37.7565094167, 175.2609769667, "51"], +[-37.7571271167, 175.2606397333, "40"], +[-37.75667535, 175.2600957667, "41A"], +[-37.7563067167, 175.26047905, "43B"], +[-37.7573725167, 175.2606990667, "38"], +[-37.757677, 175.2600683833, "18A"], +[-37.7581428167, 175.2606533, "24"], +[-37.7573145333, 175.2603226667, "32"], +[-37.7563896167, 175.2602721, "43A"], +[-37.7579755333, 175.2613688833, "44A"], +[-37.7573669333, 175.26123005, "50A"], +[-37.7564112833, 175.2619013, "82A"], +[-37.7568638833, 175.2621167333, "80"], +[-37.756781, 175.2626507333, "88C"], +[-37.7570143167, 175.2628766667, "88B"], +[-37.75793465, 175.2592159667, "2"], +[-37.7563848, 175.2607851, "51A"], +[-37.7557759333, 175.2613117, "61A"], +[-37.7561944833, 175.2606889, "43C"], +[-37.7561250667, 175.2608596667, "43D"], +[-37.7562330167, 175.2610356833, "53A"], +[-37.7564265667, 175.2611926667, "53"], +[-37.7581132, 175.2595634333, "10A"], +[-37.7567913333, 175.2619115667, "78"], +[-37.7549739333, 175.2621253167, "71"], +[-37.7580077167, 175.2596912333, "12A"], +[-37.75778485, 175.2595414333, "12"], +[-37.75785775, 175.2593984833, "10"], +[-37.7578309167, 175.2597567667, "14A"], +[-37.7577015667, 175.2596901, "14"], +[-37.7577758, 175.25991515, "16A"], +[-37.75760495, 175.2598463333, "16"], +[-37.7575228667, 175.2599861167, "18"], +[-37.7577831, 175.2603179667, "20"], +[-37.7579726333, 175.2604940333, "22"], +[-37.7580950167, 175.2607778, "28"], +[-37.7584666833, 175.2609676833, "26A"], +[-37.75826705, 175.2607837833, "26"], +[-37.7581714667, 175.2610977, "28A"], +[-37.7583121333, 175.26094355, "28B"], +[-37.7577305, 175.26097155, "34"], +[-37.7575584, 175.26084385, "36"], +[-37.7570866167, 175.2599904667, "37"], +[-37.7568276667, 175.2599797167, "39A"], +[-37.7569591833, 175.2601570667, "39"], +[-37.7568413833, 175.2603803167, "41"], +[-37.7577608167, 175.2613430667, "42"], +[-37.7579487667, 175.2615291, "44"], +[-37.7580729333, 175.2617794167, "46"], +[-37.7566609, 175.2607191333, "47"], +[-37.7576761833, 175.2615053, "48A"], +[-37.7578578, 175.2616560333, "48"], +[-37.7571831667, 175.2610995167, "52"], +[-37.7569153333, 175.2610325, "54"], +[-37.7585989833, 175.25996875, "4"], +[-37.7568637667, 175.2615082667, "56A"], +[-37.7567805167, 175.2612525, "56"], +[-37.7559977167, 175.261198, "57A"], +[-37.7562840833, 175.26136295, "57"], +[-37.75704855, 175.2616989, "58"], +[-37.7560549, 175.26179505, "63"], +[-37.7557508333, 175.26224205, "65"], +[-37.7578186833, 175.2622315333, "66"], +[-37.7553855667, 175.2621641333, "67"], +[-37.7576568, 175.2623505167, "68"], +[-37.7577649667, 175.2627173167, "70"], +[-37.7575289833, 175.2622235833, "64"], +[-37.7583011833, 175.2597350167, "6"], +[-37.7552926, 175.2616728333, "71A"], +[-37.7574938667, 175.2623523, "72"], +[-37.7572792667, 175.2622219667, "74"], +[-37.7570194, 175.26197615, "76"], +[-37.7566211167, 175.2619472167, "82"], +[-37.7568380167, 175.2625197, "84"], +[-37.7572570333, 175.2629106167, "86"], +[-37.7563066333, 175.2627048167, "92"], +[-37.7560459167, 175.2625762667, "94"], +[-37.7584291667, 175.2601984, "8A"], +[-37.7561977333, 175.2623506, "90"], +[-37.7581408, 175.25999045, "8"], +[-37.7583643667, 175.2602969667, "8B"], +[-37.75581375, 175.2626864833, "96"], +[-37.7565676833, 175.2616327667, "78A"], +[-37.7573989167, 175.26125695, "50B"], +[-37.7574330333, 175.2612922, "50C"], +[-37.7576983833, 175.2588726667, "3"], +[-37.72703705, 175.261058, "1"], +[-37.7273010333, 175.2613592, "5"], +[-37.7274919333, 175.2611155167, "9"], +[-37.7275251, 175.2609410333, "10"], +[-37.7273486667, 175.26089275, "8"], +[-37.72718605, 175.26079165, "6"], +[-37.72701085, 175.26068485, "4"], +[-37.72716455, 175.2612164167, "3"], +[-37.7274328833, 175.2613157, "7"], +[-37.7268045333, 175.2606622833, "2"], +[-37.7915928167, 175.2615601167, "20"], +[-37.7913974167, 175.26346675, "4"], +[-37.7912438667, 175.2583594667, "46C"], +[-37.7914806, 175.2627002, "12"], +[-37.7915335333, 175.2621848833, "18"], +[-37.7918417333, 175.2622070667, "19"], +[-37.79163435, 175.2610634333, "26"], +[-37.7919570167, 175.26118625, "27"], +[-37.7916676667, 175.2609020333, "28"], +[-37.7917376, 175.2633061333, "3A"], +[-37.7917251167, 175.2634029833, "3B"], +[-37.7922908167, 175.2579425833, "53"], +[-37.7918779167, 175.2580798167, "1/54"], +[-37.7919793167, 175.2572723167, "70"], +[-37.79200695, 175.2570754333, "72"], +[-37.79202715, 175.2569058167, "74"], +[-37.7914461, 175.26305525, "8"], +[-37.7924352333, 175.2564086833, "65A"], +[-37.79258215, 175.2564914, "65B"], +[-37.7914559833, 175.2628843333, "10"], +[-37.7917837333, 175.2628364167, "11"], +[-37.79179865, 175.2626702333, "13"], +[-37.7915050833, 175.262525, "14"], +[-37.7918087333, 175.26251395, "15"], +[-37.7915225667, 175.2623572333, "16"], +[-37.7918305, 175.2623717167, "17"], +[-37.7918965667, 175.26165475, "21"], +[-37.7919280333, 175.2614918333, "23"], +[-37.7916003167, 175.2612303833, "24"], +[-37.7919429667, 175.2613426333, "25"], +[-37.7919743333, 175.26104055, "29"], +[-37.7916852333, 175.2607211833, "30"], +[-37.7919920333, 175.2608928333, "31"], +[-37.7917897333, 175.2594288667, "36"], +[-37.7918063, 175.25920235, "38"], +[-37.7918259, 175.25898745, "40"], +[-37.7921159167, 175.2595664833, "41"], +[-37.7918386333, 175.2587937833, "42"], +[-37.7921208667, 175.2593904667, "43"], +[-37.7918488333, 175.2586009667, "44"], +[-37.7921548833, 175.25919445, "45"], +[-37.7921758333, 175.2589934833, "47"], +[-37.7918550333, 175.2583902667, "48"], +[-37.7923360833, 175.2588460833, "49B"], +[-37.7920092833, 175.2607196167, "33"], +[-37.7921949167, 175.2587036667, "49"], +[-37.7923978833, 175.2567906667, "61"], +[-37.7924087667, 175.2566245333, "63"], +[-37.7918177833, 175.2580771667, "2/54"], +[-37.7917452, 175.2580666667, "3/54"], +[-37.7916873, 175.2580500833, "4/54"], +[-37.7915534333, 175.25802965, "5/54"], +[-37.7914897667, 175.2580192167, "6/54"], +[-37.7914209333, 175.2580069667, "7/54"], +[-37.7913406667, 175.2579830167, "8/54"], +[-37.7923246833, 175.2577265167, "55"], +[-37.7923256667, 175.25749865, "57"], +[-37.7923510667, 175.2572936667, "59"], +[-37.7916608667, 175.25777855, "60B"], +[-37.7914447, 175.2577444167, "60C"], +[-37.7919048333, 175.257857, "60"], +[-37.7919317667, 175.2576854833, "62"], +[-37.7918746833, 175.2582012167, "50A"], +[-37.79164305, 175.2581282667, "50B"], +[-37.7913953667, 175.2581025, "50D"], +[-37.7915070333, 175.2581151833, "50C"], +[-37.7922017333, 175.2585495, "51"], +[-37.7916428667, 175.2575616667, "64"], +[-37.7919597667, 175.2574770667, "66"], +[-37.7916446333, 175.2573593333, "68A"], +[-37.7914081333, 175.2573193167, "68B"], +[-37.7912232333, 175.25729325, "68C"], +[-37.7920410667, 175.25672425, "76B"], +[-37.7918740667, 175.25670035, "76C"], +[-37.7917612333, 175.2565539, "76D"], +[-37.7917271833, 175.2567862833, "76E"], +[-37.7917046667, 175.2570338333, "76F"], +[-37.7916887167, 175.2572275, "76G"], +[-37.7917652, 175.2629857667, "9"], +[-37.7916245333, 175.2585602667, "44A"], +[-37.7914585, 175.2584671333, "46A"], +[-37.7912394, 175.2584326, "46B"], +[-37.7914653, 175.2583766667, "46D"], +[-37.7915749667, 175.26140825, "22"], +[-37.7914286167, 175.2632345667, "6"], +[-37.7912658833, 175.2574991833, "64B"], +[-37.7920595667, 175.2565554167, "78"], +[-37.7914407833, 175.2575344167, "64A"], +[-37.7773771833, 175.2329814333, "2"], +[-37.7768997333, 175.23221465, "7B"], +[-37.7767453333, 175.2326737667, "10"], +[-37.7767462167, 175.2322839667, "11"], +[-37.7763924167, 175.2325726833, "12A"], +[-37.7765212, 175.23273955, "12"], +[-37.7766647333, 175.2324563833, "14"], +[-37.7771206167, 175.2325140833, "3"], +[-37.7771479833, 175.23290265, "4"], +[-37.77697725, 175.2323840167, "5"], +[-37.7769111167, 175.2331218333, "6A"], +[-37.77702265, 175.2328654667, "6"], +[-37.77703495, 175.2319603167, "7A"], +[-37.7768829833, 175.2327626833, "8"], +[-37.7767775667, 175.2321087667, "9"], +[-37.7771078167, 175.2320961833, "5A"], +[-37.7772772667, 175.2326647167, "1"], +[-37.7651862, 175.2814944167, "55"], +[-37.7652739667, 175.2815206, "53"], +[-37.7656330833, 175.2821224667, "44"], +[-37.7655599, 175.2820779333, "46"], +[-37.7663644, 175.2823774333, "32"], +[-37.7671626333, 175.2812287833, "7"], +[-37.7672562833, 175.28211855, "16"], +[-37.7669486167, 175.2827196833, "22A"], +[-37.7670086333, 175.2818394167, "15"], +[-37.7673001333, 175.2809470333, "1"], +[-37.7671578333, 175.2823501, "20A"], +[-37.7666082333, 175.2821007, "27"], +[-37.7664966333, 175.28245475, "28"], +[-37.7660847667, 175.2818109, "39"], +[-37.7654249333, 175.2819953667, "50"], +[-37.7654528667, 175.28156895, "51"], +[-37.7652706667, 175.281908, "52"], +[-37.7671094, 175.2814182833, "9"], +[-37.7662334333, 175.2823026, "34"], +[-37.7662510333, 175.2818764, "37"], +[-37.7675264833, 175.2811114333, "2"], +[-37.7663858833, 175.2819584333, "33"], +[-37.7671199, 175.282386, "20"], +[-37.7650805833, 175.28146045, "57"], +[-37.76512625, 175.2818667667, "54"], +[-37.76560565, 175.2816192167, "49"], +[-37.7657626667, 175.28167655, "45"], +[-37.7649545833, 175.2818227833, "58"], +[-37.7649426333, 175.2814237667, "59"], +[-37.7647091833, 175.2817463833, "60A"], +[-37.7648519, 175.2817858, "60"], +[-37.7648126, 175.2813778333, "67"], +[-37.7673707167, 175.2816758167, "10"], +[-37.7670455833, 175.2816989833, "13"], +[-37.7671915, 175.28224695, "18"], +[-37.7672648833, 175.2810436667, "1B"], +[-37.76698105, 175.2820910667, "21"], +[-37.7669937667, 175.2824955333, "22"], +[-37.7668032333, 175.2825407833, "24"], +[-37.7666366333, 175.2825244667, "26"], +[-37.7666885167, 175.2821889667, "25"], +[-37.7665023, 175.2820498667, "29"], +[-37.7660532833, 175.2822485, "38"], +[-37.7659137, 175.2822416667, "40"], +[-37.7657571, 175.2821766, "42"], +[-37.7659381333, 175.281738, "43"], +[-37.7674695833, 175.28131325, "6"], +[-37.7674126667, 175.2814840833, "8"], +[-37.76707575, 175.2815575, "11"], +[-37.82029495, 175.2214968167, "39"], +[-37.8204754333, 175.2247793333, "12B"], +[-37.8205440833, 175.22344905, "23"], +[-37.8195974333, 175.2254019333, "2"], +[-37.8210801, 175.2237748667, "20A"], +[-37.8209057333, 175.22389775, "18"], +[-37.8208016833, 175.2221582833, "32"], +[-37.8209372667, 175.2236919, "20"], +[-37.8210586833, 175.22351925, "22B"], +[-37.82092905, 175.2234855333, "22"], +[-37.8208587333, 175.2231887667, "24"], +[-37.8210241167, 175.2230882, "24B"], +[-37.8208547833, 175.2229410667, "26"], +[-37.8209917, 175.2228447667, "26B"], +[-37.82097645, 175.2227176167, "28B"], +[-37.8208099167, 175.2226765167, "28"], +[-37.8207666833, 175.2224338833, "30"], +[-37.8209508833, 175.2222094167, "32B"], +[-37.82076515, 175.2219195167, "34A"], +[-37.8207399667, 175.2218131667, "34B"], +[-37.8203075833, 175.2240482833, "19"], +[-37.8205368167, 175.2237746667, "21"], +[-37.8205025833, 175.2231658, "25A"], +[-37.820465, 175.2229733667, "27"], +[-37.82043535, 175.2227387, "29"], +[-37.8204582, 175.2225319667, "31"], +[-37.82024115, 175.2224347833, "31B"], +[-37.8203792333, 175.2222631667, "33"], +[-37.82034095, 175.2219843, "35"], +[-37.8201566167, 175.2219446, "35B"], +[-37.82030575, 175.2217594333, "37"], +[-37.8202966833, 175.2233158167, "25"], +[-37.8192714167, 175.2253842667, "1"], +[-37.81969695, 175.22516645, "4"], +[-37.8194904667, 175.22468815, "5"], +[-37.8198524333, 175.2249096667, "6"], +[-37.8200581833, 175.2247122, "8"], +[-37.8193447, 175.2244639667, "5C"], +[-37.8208238, 175.2241340167, "16"], +[-37.8193183667, 175.22515695, "1A"], +[-37.81940575, 175.2249383333, "3"], +[-37.8211855167, 175.2242545333, "18A"], +[-37.8207094833, 175.22430275, "14"], +[-37.82027725, 175.22488135, "10A"], +[-37.8202305833, 175.2245652667, "10"], +[-37.8205049667, 175.2244201333, "12"], +[-37.7863977167, 175.2818860167, "421"], +[-37.7897909, 175.2850451333, "131"], +[-37.7782651833, 175.2751294333, "1050"], +[-37.7785282833, 175.2753673167, "1030"], +[-37.7904748167, 175.2857535333, "99D"], +[-37.7890049167, 175.2843129667, "207"], +[-37.7906319167, 175.2859055833, "91"], +[-37.7740269167, 175.27018805, "1249"], +[-37.7894489333, 175.2843448667, "181"], +[-37.7892927833, 175.28444345, "185"], +[-37.7891786167, 175.2844661833, "191"], +[-37.7891437333, 175.28446025, "193"], +[-37.7891140167, 175.2844302667, "195"], +[-37.7890327333, 175.2843352, "203"], +[-37.7890756833, 175.2843753667, "199"], +[-37.78874515, 175.2847344167, "206"], +[-37.7888257167, 175.2848212667, "198"], +[-37.7889498333, 175.2849617667, "192"], +[-37.7890432833, 175.28503565, "186B"], +[-37.7864313167, 175.2819229167, "415"], +[-37.7866080167, 175.2818979, "405"], +[-37.7869507833, 175.2824153667, "381"], +[-37.7889524667, 175.28426485, "213"], +[-37.7889899667, 175.2842964, "211"], +[-37.78891165, 175.28421985, "217"], +[-37.78582425, 175.2820202167, "430"], +[-37.7857007, 175.2819217167, "454"], +[-37.7856576, 175.2818834333, "456"], +[-37.7856225833, 175.2818465, "458"], +[-37.78556815, 175.2817936, "462"], +[-37.7854422833, 175.2818924, "460"], +[-37.7802209667, 175.276247, "931"], +[-37.7905515167, 175.2858138, "95"], +[-37.7905825167, 175.2858588333, "93"], +[-37.7913760167, 175.2872128, "30"], +[-37.7765409333, 175.2732466333, "1/1161"], +[-37.7767992833, 175.272791, "6/1161"], +[-37.7767280167, 175.2729037667, "5/1161"], +[-37.7766577, 175.2730136833, "4/1161"], +[-37.77660095, 175.2731066667, "3/1161"], +[-37.7765602, 175.2731792, "2/1161"], +[-37.7764730833, 175.2723934833, "5/1171"], +[-37.7764092167, 175.2724837333, "4/1171"], +[-37.77635835, 175.2725615667, "3/1171"], +[-37.77631325, 175.27265125, "2/1171"], +[-37.77626605, 175.2727285, "1/1171"], +[-37.7762201, 175.2729265333, "1171A"], +[-37.77488905, 175.2725772833, "1/1200"], +[-37.7750355833, 175.2728015167, "5/1200"], +[-37.7749614, 175.2726857667, "3/1200"], +[-37.7750003, 175.2727429, "4/1200"], +[-37.7749322833, 175.2726296667, "2/1200"], +[-37.77492755, 175.2713927333, "1/1217"], +[-37.7751594167, 175.2712344833, "4/1217"], +[-37.7750712, 175.2712940167, "3/1217"], +[-37.7749969667, 175.2713449167, "2/1217"], +[-37.7741357833, 175.2704735167, "2/1243"], +[-37.7740596167, 175.2704954333, "1/1243"], +[-37.7703077667, 175.26414545, "1351"], +[-37.7856789, 175.2812437667, "469"], +[-37.78800915, 175.2840077667, "268"], +[-37.7849247167, 175.2799632667, "559"], +[-37.7744063667, 175.2708024167, "1231B"], +[-37.7880201833, 175.28428155, "262"], +[-37.7855759667, 175.2811513, "479"], +[-37.7780525667, 175.2744711167, "1/1105-6/1105"], +[-37.78006475, 175.2768447833, "920"], +[-37.7822160167, 175.2790361833, "734"], +[-37.7811154667, 175.2771186667, "1/851-4/851"], +[-37.790353, 175.2856389333, "99A"], +[-37.7755406333, 175.2729652333, "1186C"], +[-37.77437755, 175.270747, "1231A"], +[-37.7744546833, 175.2708302667, "1231C"], +[-37.77728675, 175.2744610833, "1130"], +[-37.7771785167, 175.2743703833, "1134"], +[-37.7770395167, 175.2742477, "1138"], +[-37.7774878833, 175.2736979333, "1139"], +[-37.7768147833, 175.2745629167, "1140"], +[-37.7767411833, 175.2739799167, "1148"], +[-37.77635465, 175.27457195, "1154"], +[-37.7765949167, 175.2738282833, "1150"], +[-37.77639845, 175.2740970833, "1152"], +[-37.77622625, 175.2743159333, "1156"], +[-37.7766745667, 175.2733843667, "1157"], +[-37.7760398, 175.2733578, "1166"], +[-37.7759706833, 175.2733091, "1170"], +[-37.7758255, 175.2731822167, "1172"], +[-37.7755492833, 175.273534, "1174A"], +[-37.7757050167, 175.2733932833, "1174B"], +[-37.77571245, 175.2730939, "1178"], +[-37.7754452167, 175.2733358667, "1180"], +[-37.77585845, 175.27260405, "1181"], +[-37.7787620167, 175.2755717, "1026"], +[-37.7826961, 175.2791833667, "700"], +[-37.7825215167, 175.27898635, "716"], +[-37.7823373, 175.2788289, "728"], +[-37.7824069333, 175.2782555333, "729"], +[-37.7820889333, 175.2779898833, "747"], +[-37.7820188333, 175.2785362, "750"], +[-37.7819806167, 175.27792685, "783"], +[-37.7819478, 175.2778823833, "787"], +[-37.7819165167, 175.2778407167, "789"], +[-37.7894102667, 175.2845994167, "171"], +[-37.78941945, 175.2843990833, "179"], +[-37.7887072667, 175.2841049833, "231"], +[-37.7884428667, 175.2844106333, "232"], +[-37.7885370667, 175.2839042, "237"], +[-37.7882540333, 175.2845194333, "238"], +[-37.7883548167, 175.2843299833, "240"], +[-37.7882863833, 175.2842487, "242"], +[-37.7872027333, 175.2833017167, "346"], +[-37.7869153, 175.28302035, "354"], +[-37.787025, 175.2824827833, "357"], +[-37.7867412833, 175.2828372833, "358"], +[-37.7866055333, 175.2827307, "370"], +[-37.7870935, 175.28380995, "340"], +[-37.7875087, 175.2829496833, "341"], +[-37.78709255, 175.283185, "348"], +[-37.7850930167, 175.2813226, "520"], +[-37.7879750333, 175.2845824333, "246"], +[-37.7876000167, 175.2837166667, "1/312-38/312"], +[-37.7922069833, 175.2873772833, "1"], +[-37.77837405, 175.27519055, "1040"], +[-37.7898599833, 175.2857852167, "114"], +[-37.7899555333, 175.2852314333, "117"], +[-37.7843062167, 175.27995655, "591"], +[-37.7756266667, 175.27302285, "1184"], +[-37.77517795, 175.2724488333, "1/1196-4/1196"], +[-37.7781948833, 175.2745691667, "1087"], +[-37.7783990167, 175.2747224, "1075"], +[-37.78457255, 175.2801274, "571"], +[-37.7904331333, 175.2857198667, "99C"], +[-37.7887843667, 175.2841643667, "221"], +[-37.7846348, 175.28092785, "532"], +[-37.7846099167, 175.2809775667, "532A"], +[-37.79039735, 175.2856863833, "99B"], +[-37.7842402333, 175.27988635, "611"], +[-37.7847647, 175.2810475833, "526"], +[-37.7864731833, 175.28261465, "384"], +[-37.7868767167, 175.2823495167, "371"], +[-37.7867383333, 175.2822017333, "391"], +[-37.7741991667, 175.27043355, "3/1243"], +[-37.7907071833, 175.2859902833, "81"], +[-37.779382, 175.2761419333, "960"], +[-37.7699347667, 175.2633541167, "1375"], +[-37.7699585167, 175.2634074667, "1373"], +[-37.7746236833, 175.2721672, "1204B"], +[-37.77450365, 175.2703825833, "1239A"], +[-37.7746747333, 175.2702777833, "1239B"], +[-37.77479385, 175.2702088, "1239C"], +[-37.7895953833, 175.2848320167, "155"], +[-37.7896346, 175.28486025, "153"], +[-37.7895637333, 175.2847986167, "159"], +[-37.7800738667, 175.2761223167, "941"], +[-37.7800070333, 175.27606255, "943"], +[-37.7799560167, 175.2760232333, "953"], +[-37.7764601, 175.2731713667, "1/1165-10/1165"], +[-37.776055, 175.2727905167, "1/1175-4/1175"], +[-37.7762305333, 175.27241495, "1/1177-8/1177"], +[-37.7763498167, 175.2730592333, "1/1167-10/1167"], +[-37.7857578167, 175.2813096833, "467"], +[-37.7856325667, 175.2811991667, "477"], +[-37.78526975, 175.2809308667, "519"], +[-37.7853135167, 175.2809726333, "513"], +[-37.7853586333, 175.28101165, "511"], +[-37.7851827167, 175.2808535167, "523"], +[-37.7852193833, 175.2808839833, "521"], +[-37.7854183667, 175.2810698333, "509"], +[-37.7816904167, 175.27822175, "800"], +[-37.7822121, 175.2786961167, "742"], +[-37.7808395833, 175.27681285, "871A"], +[-37.7809468, 175.2769121333, "865"], +[-37.7799172333, 175.275991, "955"], +[-37.7805137333, 175.2765298333, "903"], +[-37.7804774167, 175.2763781833, "907-911"], +[-37.7791717333, 175.2759909167, "1000"], +[-37.7788910667, 175.2756920833, "1010"], +[-37.77801435, 175.27491045, "1088"], +[-37.7767872667, 175.2743302667, "1/1142-12/1142"], +[-37.7839494667, 175.2794532333, "637"], +[-37.7838512167, 175.27931495, "643"], +[-37.7836423833, 175.2794019667, "651"], +[-37.7835503833, 175.27931055, "657"], +[-37.7834693167, 175.2792384, "661"], +[-37.78291275, 175.27867115, "711-737"], +[-37.7741544833, 175.2701690833, "1247D"], +[-37.7742377333, 175.27011475, "1247E"], +[-37.7745831167, 175.2705789, "1231D"], +[-37.7739302833, 175.2703633833, "1247A"], +[-37.77400285, 175.2703182, "1247B"], +[-37.7740881833, 175.2702732, "1247C"], +[-37.78517885, 175.2813745833, "500"], +[-37.7862752, 175.2823726667, "402"], +[-37.7859824833, 175.2821437833, "426"], +[-37.7776269833, 175.2747195167, "1110"], +[-37.7777831667, 175.27480195, "1100"], +[-37.7700077333, 175.2634952833, "1365"], +[-37.7700913333, 175.2636647333, "1359"], +[-37.7698151167, 175.2630901, "1381"], +[-37.7698521833, 175.2631609667, "1379"], +[-37.7699726167, 175.2632514667, "1377"], +[-37.7742614833, 175.2707170167, "1235A"], +[-37.7741987333, 175.2706366333, "1235B"], +[-37.7749679333, 175.2715211167, "1211A"], +[-37.78949515, 175.2854837333, "150"], +[-37.7767726167, 175.2735307, "1153A"], +[-37.7768702, 175.2734161, "1153B"], +[-37.7713617667, 175.2663753167, "1313"], +[-37.7744401167, 175.2705397, "1235D"], +[-37.7744130833, 175.2704786333, "1235C"], +[-37.7840486, 175.2803852333, "592"], +[-37.7890777167, 175.2850634333, "186"], +[-37.7888482667, 175.2840577167, "223"], +[-37.7846164833, 175.2803051333, "563"], +[-37.7843486167, 175.2806915, "564"], +[-37.7848539333, 175.2800667667, "565"], +[-37.7845187833, 175.2802156, "567"], +[-37.7842515, 175.2806106833, "570"], +[-37.7847015667, 175.2799069333, "573"], +[-37.78418575, 175.2805607, "578"], +[-37.7844307833, 175.2800622833, "581"], +[-37.7843834, 175.28001915, "585"], +[-37.78409795, 175.2804341333, "586"], +[-37.7843427667, 175.27998575, "587"], +[-37.7843558333, 175.2797710167, "595"], +[-37.7839997667, 175.2803432167, "596"], +[-37.7842682167, 175.2799175667, "599"], +[-37.7828339333, 175.2792739167, "690-692"], +[-37.7706258167, 175.2649083833, "1335"], +[-37.7706817833, 175.2646380833, "1337"], +[-37.7703923, 175.26434485, "1347"], +[-37.77048045, 175.2645739667, "1343"], +[-37.76996825, 175.2643245333, "1350"], +[-37.7698514, 175.2640310667, "1356"], +[-37.7702001667, 175.2638697333, "1357"], +[-37.7697665833, 175.2638458667, "1358"], +[-37.7695978, 175.2634178167, "1366"], +[-37.7695523167, 175.2631905, "1368"], +[-37.76939895, 175.26300235, "1370"], +[-37.7749941667, 175.2722763, "1202B"], +[-37.7749622333, 175.27231065, "1202C"], +[-37.7748178, 175.2724917, "1202"], +[-37.7749132167, 175.2720504833, "1204"], +[-37.7749960667, 175.2715912667, "1211"], +[-37.77473165, 175.271841, "1212"], +[-37.7745234167, 175.2719023333, "1214"], +[-37.7746315167, 175.2716807667, "1216"], +[-37.7745376, 175.2715445167, "1220"], +[-37.7743184667, 175.2713093333, "1226"], +[-37.7745542, 175.2709513333, "1227"], +[-37.7742445833, 175.2711483167, "1230"], +[-37.77412885, 175.2710335167, "1234A"], +[-37.7740900167, 175.27100565, "1234B"], +[-37.7740550167, 175.2709552333, "1234C"], +[-37.773949, 175.2708844667, "1240"], +[-37.7744762833, 175.2702886167, "1241"], +[-37.7717052333, 175.2675078167, "1295A"], +[-37.77180825, 175.2676880667, "1291"], +[-37.7718887333, 175.2674731333, "1295"], +[-37.7715796, 175.2672517667, "1297"], +[-37.7715042167, 175.2670168167, "1305"], +[-37.77170155, 175.2665924833, "1307B"], +[-37.7714360833, 175.2667552833, "1307"], +[-37.7713485833, 175.2665275667, "1311"], +[-37.7712484333, 175.2662918833, "1315"], +[-37.7711666667, 175.2660978167, "1319"], +[-37.7708828167, 175.2663515167, "1320"], +[-37.77092215, 175.2655685167, "1327"], +[-37.7708216667, 175.2652962833, "1331"], +[-37.7702972833, 175.2651956167, "1340"], +[-37.7759494333, 175.2722101833, "1185"], +[-37.77569875, 175.2724517667, "1187"], +[-37.7757823667, 175.27232325, "1187B"], +[-37.7754411167, 175.2728183167, "1188"], +[-37.7753099667, 175.2726641333, "1190"], +[-37.77502945, 175.27223865, "1202A"], +[-37.7849922, 175.28063525, "527"], +[-37.7846746167, 175.2809699833, "530"], +[-37.7849026, 175.28056535, "537"], +[-37.7845849667, 175.2808880333, "540"], +[-37.7848287167, 175.28044075, "541"], +[-37.7847594, 175.2803491333, "551"], +[-37.7844775333, 175.2807874833, "554"], +[-37.7847224, 175.28035635, "555"], +[-37.7849516167, 175.2800095833, "557"], +[-37.7843262167, 175.2797146833, "601"], +[-37.78427035, 175.2810904833, "602"], +[-37.7838537333, 175.2807074167, "604"], +[-37.7838504333, 175.2802208333, "610"], +[-37.7837485333, 175.2801357833, "616"], +[-37.78362755, 175.28004335, "630"], +[-37.7838703833, 175.27963685, "631"], +[-37.7835428833, 175.27996835, "636"], +[-37.7837274833, 175.2794943333, "641"], +[-37.78335825, 175.2798021833, "646"], +[-37.7832613, 175.27965355, "660"], +[-37.7818534833, 175.2777736667, "801"], +[-37.7817068833, 175.2776446167, "803"], +[-37.7810171833, 175.27763875, "820"], +[-37.7814303, 175.2774130833, "821"], +[-37.7808643, 175.2775336, "846"], +[-37.7812822, 175.27726765, "829"], +[-37.78074525, 175.2774288167, "848"], +[-37.78063015, 175.2773254833, "850"], +[-37.7804462, 175.2771773667, "856"], +[-37.7808944833, 175.2768517833, "871"], +[-37.7802743667, 175.2770323833, "900"], +[-37.7801721333, 175.2769337, "910"], +[-37.7803353333, 175.2763778333, "919"], +[-37.78012355, 175.2761646167, "937"], +[-37.7799371167, 175.2767111333, "950"], +[-37.7894920167, 175.2847164, "161"], +[-37.7889109833, 175.28493345, "194"], +[-37.7885833333, 175.2849163, "208"], +[-37.7885318667, 175.28480855, "210"], +[-37.7886418667, 175.2846141, "218"], +[-37.7886088167, 175.2845325667, "220"], +[-37.7882466333, 175.2842272167, "250"], +[-37.7885367833, 175.28448855, "222"], +[-37.7866080333, 175.2820344667, "399"], +[-37.7865263167, 175.2819970167, "407"], +[-37.7879464667, 175.2839372833, "274"], +[-37.7877582667, 175.2838618167, "286"], +[-37.7881354833, 175.2835030833, "287"], +[-37.78797815, 175.2833650667, "303"], +[-37.7878577667, 175.2832455833, "313"], +[-37.7877619167, 175.2831741333, "319"], +[-37.7875654, 175.2830074333, "337"], +[-37.78821165, 175.28419055, "254"], +[-37.7881331, 175.2841335333, "260"], +[-37.7880736833, 175.2840669333, "266"], +[-37.7864922833, 175.2819747167, "411"], +[-37.7864512167, 175.2819478333, "413"], +[-37.7863010833, 175.2817896833, "427"], +[-37.7862380167, 175.2817210167, "433"], +[-37.7861769667, 175.2816650833, "437"], +[-37.7858167667, 175.2813625167, "461"], +[-37.7854581167, 175.28175235, "478"], +[-37.7891173833, 175.2851029, "170"], +[-37.7897572167, 175.28573895, "120"], +[-37.7902917, 175.2855770167, "109"], +[-37.7920086667, 175.2872158667, "21"], +[-37.7916255, 175.2868513333, "33"], +[-37.791303, 175.2871422667, "44"], +[-37.7910343833, 175.2868878667, "50"], +[-37.7918674833, 175.2862742, "51"], +[-37.7912213833, 175.2864779667, "55"], +[-37.7911274167, 175.2863745833, "65"], +[-37.7910343167, 175.2862976167, "69"], +[-37.7744695167, 175.2713673833, "1222A"], +[-37.7743827833, 175.2713797167, "2/1222"], +[-37.7744044333, 175.2714088833, "3/1222"], +[-37.77382225, 175.2702331833, "1249A"], +[-37.7743894333, 175.27031565, "6/1243"], +[-37.7743197167, 175.27036085, "5/1243"], +[-37.7742569167, 175.2704011667, "4/1243"], +[-37.78636685, 175.28185635, "423"], +[-37.7864479167, 175.2817437167, "425"], +[-37.787818, 175.28321265, "317"], +[-37.7883144667, 175.2845743333, "236"], +[-37.7746320833, 175.2707091667, "1231F"], +[-37.77460645, 175.2706401333, "1231E"], +[-37.7744305833, 175.2714371333, "4/1222"], +[-37.7750246667, 175.2714351167, "1211B"], +[-37.77555095, 175.2728933333, "1186B"], +[-37.7755917, 175.2728428167, "1186A"], +[-37.78291765, 175.2793428833, "678"], +[-37.7897073167, 175.28493075, "147"], +[-37.78975315, 175.2849959, "139"], +[-37.7899615167, 175.2846742333, "141"], +[-37.7898243, 175.2850957167, "127"], +[-37.7873520667, 175.2834127167, "334"], +[-37.7874820833, 175.2835459167, "320"], +[-37.7876089833, 175.2830694833, "331"], +[-37.7876749333, 175.2831354667, "325"], +[-37.7482068333, 175.2435172833, "69"], +[-37.7480914833, 175.2423573, "94"], +[-37.7481320333, 175.2421332, "96"], +[-37.7470444, 175.2450989833, "46"], +[-37.7475942667, 175.2434392333, "76"], +[-37.7479263, 175.2430724167, "82"], +[-37.7480276833, 175.24263425, "88"], +[-37.7476738833, 175.2429011333, "84"], +[-37.7479749833, 175.2428314667, "86"], +[-37.7478848, 175.2432892167, "80"], +[-37.74837415, 175.2427537833, "79"], +[-37.74780125, 175.2423207667, "92"], +[-37.7477675, 175.2424798167, "90"], +[-37.7472676833, 175.2472383, "11"], +[-37.7486375333, 175.2423676, "83"], +[-37.7475466833, 175.2477838167, "7B"], +[-37.74783005, 175.2435742833, "74"], +[-37.7486607, 175.2419451833, "100"], +[-37.7480963333, 175.2441090667, "63"], +[-37.7474189833, 175.2441958333, "64"], +[-37.7481431, 175.24391225, "65"], +[-37.7474677333, 175.2440338833, "66"], +[-37.74818195, 175.24371375, "67"], +[-37.7477370833, 175.2440529833, "68"], +[-37.7477896167, 175.2438204167, "70"], +[-37.7482485, 175.24333745, "71"], +[-37.7476153167, 175.2433058333, "78"], +[-37.7463607, 175.2474261833, "10"], +[-37.7466588, 175.2474423167, "12"], +[-37.74727085, 175.2469764167, "13"], +[-37.7469028333, 175.2473932333, "14"], +[-37.7465909333, 175.2471281667, "18A"], +[-37.74636205, 175.24712025, "18B"], +[-37.7476132333, 175.2463309667, "19"], +[-37.7472125167, 175.2479932, "1"], +[-37.74660525, 175.24694895, "20"], +[-37.7473249333, 175.2462102833, "21"], +[-37.74691295, 175.24689895, "22"], +[-37.7473737167, 175.2460031, "23"], +[-37.7469273167, 175.2466824667, "24"], +[-37.7466569667, 175.2466207, "26"], +[-37.74665815, 175.2464514333, "28"], +[-37.7468871667, 175.2479619167, "2"], +[-37.7469359, 175.2463626667, "30A"], +[-37.7467978667, 175.24633925, "30B"], +[-37.7466534, 175.24614885, "32"], +[-37.7469495667, 175.2461134333, "34"], +[-37.7470038, 175.2458805, "36"], +[-37.7470925833, 175.2456731833, "38"], +[-37.7472549833, 175.2477634833, "3"], +[-37.7469001667, 175.24548355, "40"], +[-37.7471902167, 175.24544715, "42"], +[-37.7472813333, 175.2452511, "44"], +[-37.7475499333, 175.2455574, "45"], +[-37.7476526167, 175.2453462833, "47"], +[-37.7478634167, 175.2453490333, "49"], +[-37.7468985333, 175.24771305, "4"], +[-37.7473769333, 175.2450289333, "52"], +[-37.7477472333, 175.2451327, "53"], +[-37.7472665833, 175.24755345, "5"], +[-37.7464770667, 175.2476233, "6A"], +[-37.7466420167, 175.24762225, "6"], +[-37.7475602833, 175.2474459667, "7A"], +[-37.74848565, 175.2423953, "81"], +[-37.7483319333, 175.2429406833, "75"], +[-37.7476427833, 175.24432805, "62"], +[-37.7475342333, 175.2436832167, "72"], +[-37.7482852333, 175.2431506, "73"], +[-37.7469148, 175.2471665, "16"], +[-37.7472945167, 175.2464786833, "17"], +[-37.7480447167, 175.2443075, "61"], +[-37.7472781333, 175.2467136, "15"], +[-37.7475535, 175.2445461667, "60"], +[-37.7474570167, 175.2473396333, "9"], +[-37.7463069333, 175.2475837333, "8"], +[-37.74727465, 175.2445492, "58"], +[-37.7474439333, 175.2448376, "54"], +[-37.7479172833, 175.2447070667, "57"], +[-37.7471799667, 175.2446835167, "56"], +[-37.7479781333, 175.24450245, "59"], +[-37.7478403833, 175.2449047667, "55"], +[-37.7952249667, 175.2982130333, "1/110-5/110"], +[-37.79534035, 175.2972377833, "1/112-5/112"], +[-37.7955706667, 175.2973248833, "106A"], +[-37.7954997833, 175.2976536333, "106B"], +[-37.79564795, 175.2979548333, "100A"], +[-37.7961652833, 175.29707975, "1/69-10/69"], +[-37.79051925, 175.29501165, "119"], +[-37.7920033333, 175.2964235167, "1/150-5/150"], +[-37.79207875, 175.2965072333, "1/148-6/148"], +[-37.7922301333, 175.2960868833, "1/146-7/146"], +[-37.7923858333, 175.29615795, "1/142-4/142"], +[-37.7935864, 175.2967432167, "128A"], +[-37.7943058167, 175.2968451833, "1/122-6/122"], +[-37.7941541167, 175.2967946667, "1/124-4/124"], +[-37.7974262333, 175.29798645, "72"], +[-37.7937660167, 175.29663935, "126"], +[-37.7959432833, 175.2974534333, "1/94-8/94"], +[-37.7981475333, 175.2977989667, "39"], +[-37.797673, 175.2976353667, "49"], +[-37.8005623, 175.2987070833, "5"], +[-37.7979773833, 175.2986229, "62"], +[-37.8005362167, 175.29925, "6"], +[-37.7955341167, 175.2984242, "102B"], +[-37.7977497667, 175.2981112, "68"], +[-37.79790175, 175.298174, "66"], +[-37.7955462833, 175.2980214333, "102A"], +[-37.7999029667, 175.2994017833, "24A"], +[-37.7999998333, 175.298909, "24"], +[-37.7944523, 175.2968953833, "120A"], +[-37.7998719167, 175.2980791667, "13A"], +[-37.7934509333, 175.2967195333, "132D"], +[-37.7934798167, 175.2966123333, "132B"], +[-37.7936058, 175.2966034833, "128"], +[-37.7925530333, 175.29619495, "138"], +[-37.7945087167, 175.2969196167, "120B"], +[-37.7945546667, 175.29695055, "120C"], +[-37.7922692833, 175.296778, "144"], +[-37.7920667, 175.2960541833, "152"], +[-37.7919121667, 175.2960023333, "154"], +[-37.7927587667, 175.2958495333, "89"], +[-37.7926332333, 175.2957972333, "91"], +[-37.7924795167, 175.29574355, "93"], +[-37.7923203833, 175.2956812, "95"], +[-37.7921395667, 175.2955761167, "97"], +[-37.7954966, 175.2978869833, "104A"], +[-37.79537765, 175.29835635, "104B"], +[-37.7954502, 175.2981302333, "104"], +[-37.79536495, 175.2976423167, "108A"], +[-37.79532505, 175.297791, "108B"], +[-37.7952886, 175.2979715333, "108C"], +[-37.7952628833, 175.2980886333, "108D"], +[-37.7951429333, 175.2977171167, "114"], +[-37.8005243833, 175.2991071667, "10"], +[-37.7998551833, 175.2984579333, "11"], +[-37.8004919167, 175.2992416333, "12"], +[-37.7996544333, 175.2983931667, "13"], +[-37.8004663833, 175.2993752167, "14"], +[-37.79948405, 175.2983196, "15"], +[-37.8001102, 175.2992904333, "18A"], +[-37.8003196, 175.2990388, "16"], +[-37.8001698833, 175.2989772167, "18"], +[-37.7986541, 175.2979887333, "25"], +[-37.7987618333, 175.2973219833, "27"], +[-37.7986742, 175.2972787, "29"], +[-37.8009802833, 175.2988785, "1"], +[-37.8000185333, 175.2994611, "20"], +[-37.7999208667, 175.2998178667, "22"], +[-37.7998076833, 175.2995116667, "26"], +[-37.798571, 175.2974152, "31B"], +[-37.7984680167, 175.2979254167, "31"], +[-37.7984257333, 175.29742485, "33B"], +[-37.7983273167, 175.2978745167, "33"], +[-37.798414, 175.2972375, "35"], +[-37.7983279833, 175.2972098, "37"], +[-37.800785, 175.2991884333, "2"], +[-37.79960475, 175.2987760667, "32"], +[-37.8007753167, 175.2988003833, "3"], +[-37.7980065333, 175.29775775, "41"], +[-37.7980315, 175.2974028333, "43"], +[-37.7978343833, 175.2976935333, "45"], +[-37.7978713667, 175.2972747167, "47"], +[-37.7993582333, 175.29868255, "40"], +[-37.8005708, 175.29911865, "4"], +[-37.7985482333, 175.2984122833, "50"], +[-37.7976864, 175.29726995, "51"], +[-37.79747545, 175.29755795, "53"], +[-37.7983947667, 175.29835815, "54A"], +[-37.7983039, 175.2988096833, "54B"], +[-37.79818615, 175.2990383333, "54C"], +[-37.7981263667, 175.2993992833, "54D"], +[-37.7973335333, 175.2974985667, "55"], +[-37.798118, 175.2988304, "58A"], +[-37.7980692667, 175.29902715, "58B"], +[-37.7980315667, 175.2992414833, "58C"], +[-37.7982507667, 175.2983061333, "58"], +[-37.7966051167, 175.2972271667, "61"], +[-37.7964852667, 175.2971767, "65"], +[-37.7963115667, 175.29711145, "67"], +[-37.79601965, 175.2970088833, "71"], +[-37.7980553667, 175.2982419333, "62A"], +[-37.7975915667, 175.29804495, "70"], +[-37.7960435667, 175.2961885833, "73A"], +[-37.7959599833, 175.29641475, "73"], +[-37.7959268167, 175.2966248333, "75"], +[-37.7957739833, 175.2969462667, "77"], +[-37.7955318, 175.2968405833, "81A-81E"], +[-37.7966914, 175.2977181833, "82"], +[-37.7972000333, 175.29792205, "74"], +[-37.8004016833, 175.2983920333, "7A"], +[-37.80027605, 175.2986237333, "7"], +[-37.7965343167, 175.2976531833, "84"], +[-37.7963911667, 175.2976141333, "86"], +[-37.7962461333, 175.29756615, "88"], +[-37.7961151333, 175.2975146667, "90"], +[-37.7956792333, 175.2968888333, "79A-79E"], +[-37.8005092333, 175.2993851333, "8"], +[-37.8000487333, 175.2985384833, "9"], +[-37.7934928333, 175.2965568167, "132A"], +[-37.7934697667, 175.29666795, "132C"], +[-37.79576095, 175.2973744, "98"], +[-37.7957152333, 175.2976832167, "98A"], +[-37.7957006, 175.2977972, "98B"], +[-37.7987384, 175.2975541333, "25A"], +[-37.7956071833, 175.2978622667, "100"], +[-37.7869567, 175.2890311667, "60"], +[-37.7879764667, 175.2891463833, "52"], +[-37.7876264, 175.2892871333, "54"], +[-37.7875871167, 175.2889348667, "58"], +[-37.7863278833, 175.28859705, "92"], +[-37.7865368167, 175.2883394333, "90"], +[-37.7869525833, 175.2869048667, "103"], +[-37.7871379167, 175.28916225, "1/56-6/56"], +[-37.7878730667, 175.2882613, "57"], +[-37.7873817167, 175.28880825, "68"], +[-37.78728525, 175.2887527333, "70"], +[-37.78717165, 175.2886804833, "72"], +[-37.78707025, 175.2886232833, "74"], +[-37.7869718167, 175.2885606667, "76"], +[-37.7868825167, 175.28850675, "78"], +[-37.786745, 175.2884453667, "86"], +[-37.8242441167, 175.29160585, "2"], +[-37.8244173, 175.2913811167, "3"], +[-37.8242886833, 175.2919309333, "1"], +[-37.8245284167, 175.2912627167, "4"], +[-37.8246561833, 175.2911401167, "5"], +[-37.8247696, 175.29100465, "6"], +[-37.8249162833, 175.29088285, "7"], +[-37.8250616333, 175.2907829833, "8"], +[-37.8251346667, 175.2906497833, "9"], +[-37.7858259167, 175.2476508833, "24"], +[-37.7860617, 175.2480771667, "28"], +[-37.7860075167, 175.2484925833, "5"], +[-37.7856388833, 175.2485993667, "8"], +[-37.7863073167, 175.2481970833, "15"], +[-37.7862942833, 175.2480589333, "17"], +[-37.7859494167, 175.24760185, "23"], +[-37.7858072333, 175.2480494833, "22"], +[-37.7858834667, 175.2478337333, "26"], +[-37.7862519833, 175.2483489667, "11"], +[-37.7862981333, 175.2482828, "13"], +[-37.7862802667, 175.2479095333, "19"], +[-37.7861778167, 175.2478377667, "21"], +[-37.78552285, 175.2492773333, "1"], +[-37.7854196, 175.2489434333, "2"], +[-37.7859129, 175.2486268333, "3"], +[-37.7854795667, 175.2489149667, "4"], +[-37.78610505, 175.2483734833, "7"], +[-37.78559785, 175.24883085, "6"], +[-37.7861930167, 175.2483576167, "9"], +[-37.7853155667, 175.2483024333, "14"], +[-37.7855666333, 175.2482659, "20"], +[-37.78546355, 175.2482144, "18"], +[-37.7854844167, 175.2485271333, "10"], +[-37.7853542667, 175.24842615, "12"], +[-37.7853633167, 175.2482051667, "16"], +[-37.7384109167, 175.2609039667, "2"], +[-37.7391860833, 175.2606897667, "15"], +[-37.7386543167, 175.26087655, "4"], +[-37.7381623333, 175.2611883167, "1"], +[-37.73897975, 175.2609710167, "11"], +[-37.73912555, 175.2608959833, "13"], +[-37.7382883, 175.26122345, "3"], +[-37.7384498, 175.2612419833, "5"], +[-37.7387781667, 175.2606722667, "6"], +[-37.73860825, 175.2612383, "7"], +[-37.7389007, 175.2607024333, "8"], +[-37.7387717667, 175.2611594, "9"], +[-37.75672105, 175.2676245833, "4"], +[-37.7574891833, 175.26758675, "11"], +[-37.7576885, 175.2676540167, "13"], +[-37.7577242333, 175.2675636167, "15"], +[-37.7574890833, 175.26743355, "19"], +[-37.7566762167, 175.2680703, "1"], +[-37.7572773333, 175.2674421667, "21"], +[-37.7570562167, 175.2674534667, "23"], +[-37.7565490667, 175.2677713667, "2"], +[-37.75689425, 175.26796525, "3"], +[-37.7570378667, 175.2680593167, "5A"], +[-37.7570431833, 175.2679345, "5"], +[-37.7571008667, 175.2676666833, "7"], +[-37.7572769167, 175.2676078833, "9"], +[-37.7576970333, 175.2674358167, "17"], +[-37.7261385, 175.2697990333, "11"], +[-37.7262499, 175.27095305, "1"], +[-37.7260313333, 175.2711815167, "2"], +[-37.7259072833, 175.2708043667, "6"], +[-37.72602185, 175.2702572833, "7"], +[-37.72598755, 175.2698879333, "9"], +[-37.7264736833, 175.26976445, "15"], +[-37.7265310167, 175.2693762333, "19"], +[-37.7265017667, 175.2695991333, "17"], +[-37.7263236167, 175.2697185, "13"], +[-37.7262598167, 175.2692854667, "26"], +[-37.7261208167, 175.2694396667, "24"], +[-37.7259526333, 175.26953885, "22"], +[-37.7259831167, 175.27101865, "4"], +[-37.7261871, 175.2707584333, "3"], +[-37.7256659833, 175.2697292333, "18"], +[-37.7265753667, 175.26917795, "21"], +[-37.72579585, 175.2696396333, "20"], +[-37.7255062167, 175.2697865, "16"], +[-37.72575415, 175.2703602333, "10"], +[-37.7258278333, 175.2705840167, "8"], +[-37.7256825167, 175.2701292833, "12"], +[-37.72562885, 175.2699542167, "14"], +[-37.7264124167, 175.2692062667, "23"], +[-37.7876718167, 175.2565425167, "20A"], +[-37.78769985, 175.2566520167, "20B"], +[-37.7878562833, 175.2572654, "14"], +[-37.7879606333, 175.2576454667, "10"], +[-37.7879074167, 175.2574610833, "12"], +[-37.7877389167, 175.2568193167, "18"], +[-37.7882500833, 175.2575394167, "19"], +[-37.7880989667, 175.25678085, "27"], +[-37.78805785, 175.2579430667, "6"], +[-37.7884318833, 175.2582795333, "11"], +[-37.7883897333, 175.2581067167, "13"], +[-37.7883385167, 175.2579199833, "15"], +[-37.7878026833, 175.2571061167, "16"], +[-37.78829915, 175.257737, "17"], +[-37.78821475, 175.2573602333, "21"], +[-37.78818515, 175.2571649833, "23"], +[-37.7881468667, 175.2569750333, "25"], +[-37.7880504167, 175.2566077833, "29"], +[-37.7880021167, 175.25641295, "31"], +[-37.78796725, 175.25626595, "33"], +[-37.7885165667, 175.2586510333, "7"], +[-37.7884729167, 175.2584526, "9"], +[-37.7812340833, 175.2274072167, "10"], +[-37.7815532333, 175.2276997667, "11"], +[-37.7812155167, 175.2271933, "12"], +[-37.7815437833, 175.2274861333, "13"], +[-37.7812014, 175.2269852667, "14"], +[-37.7815526833, 175.22727305, "15"], +[-37.7815939167, 175.2270437667, "17"], +[-37.7812118667, 175.2267029167, "16"], +[-37.78147425, 175.2268614167, "18"], +[-37.7816301, 175.2268488667, "19"], +[-37.7814175, 175.2287507833, "1"], +[-37.7814767167, 175.2285450333, "3"], +[-37.7814994333, 175.2283266833, "5"], +[-37.7815039667, 175.2281019333, "7"], +[-37.78123, 175.2276089167, "8"], +[-37.7815268333, 175.2278777, "9"], +[-37.7812122833, 175.228035, "4"], +[-37.7812265333, 175.22778175, "6"], +[-37.8299724, 175.3347902833, "8"], +[-37.8298954833, 175.3344637667, "10"], +[-37.7652613167, 175.3032827667, "33"], +[-37.76459205, 175.3056492167, "55"], +[-37.7653784667, 175.3029315333, "29"], +[-37.7646359667, 175.3054697167, "53"], +[-37.76192925, 175.3114174167, "117"], +[-37.7627153, 175.3121030333, "119"], +[-37.7629087, 175.3114470833, "111"], +[-37.7644828833, 175.30599625, "59"], +[-37.76559235, 175.30220265, "21"], +[-37.7658741167, 175.3023988167, "22"], +[-37.76390445, 175.3082322833, "77"], +[-37.7639644333, 175.30801615, "75"], +[-37.7638357333, 175.3084414167, "79"], +[-37.7641441, 175.30739045, "69"], +[-37.76402545, 175.3078024167, "73"], +[-37.7640846167, 175.3075871167, "71"], +[-37.7637695833, 175.3086653167, "81"], +[-37.76488125, 175.3070517167, "78"], +[-37.7646127833, 175.3068428167, "76"], +[-37.7646578667, 175.30667715, "74"], +[-37.7648993167, 175.3058052333, "68"], +[-37.7647311167, 175.30645955, "72"], +[-37.7662222167, 175.3001737, "1"], +[-37.7654699333, 175.3050596, "56"], +[-37.76173295, 175.3151515333, "145"], +[-37.7637046167, 175.308884, "83"], +[-37.7636356667, 175.30911015, "85"], +[-37.76357285, 175.3093265167, "87"], +[-37.7634425167, 175.3097569333, "91"], +[-37.7633850667, 175.3099863833, "93"], +[-37.7633259667, 175.3101932333, "95"], +[-37.7596063833, 175.3240402167, "211A"], +[-37.7619412, 175.3166601, "158"], +[-37.7601242833, 175.3233253, "211C"], +[-37.7650103167, 175.3041909167, "39A"], +[-37.76491775, 175.3040888667, "39B"], +[-37.7649456, 175.3043953, "41"], +[-37.7648944167, 175.30458365, "43"], +[-37.7648422833, 175.3047488833, "45"], +[-37.7647759667, 175.3049295333, "47"], +[-37.7654750167, 175.3039551, "1/44-6/44"], +[-37.7662436, 175.301169, "10"], +[-37.7659258, 175.3010293, "11"], +[-37.7661742833, 175.30139325, "12"], +[-37.7661184833, 175.3015892333, "14"], +[-37.7656964, 175.3018502167, "17"], +[-37.7656375, 175.3020227167, "19"], +[-37.76606475, 175.3017874, "16A"], +[-37.7662798, 175.3018094167, "16B"], +[-37.7661792333, 175.3003396167, "1A"], +[-37.7660123667, 175.3019428333, "18"], +[-37.7656807667, 175.3031415667, "30"], +[-37.76533565, 175.30311795, "31"], +[-37.7655371167, 175.3023859167, "23"], +[-37.7660535667, 175.3026993667, "24A"], +[-37.7658340667, 175.3025596, "24"], +[-37.7654953667, 175.3025629333, "25"], +[-37.7660225167, 175.3028525833, "26B"], +[-37.7657853, 175.3027515333, "26"], +[-37.7654365167, 175.3027451833, "27"], +[-37.7657251333, 175.3029514167, "28"], +[-37.7665128667, 175.3001809833, "2"], +[-37.76508635, 175.3039920167, "37"], +[-37.7656290667, 175.3033093833, "32"], +[-37.76591815, 175.30352535, "34"], +[-37.7658875667, 175.3036650667, "36"], +[-37.76556005, 175.3035608833, "38"], +[-37.7655173833, 175.3037427, "40"], +[-37.7653363833, 175.3043558, "48"], +[-37.7652653, 175.30454715, "50"], +[-37.7652208, 175.30472205, "52"], +[-37.7655133, 175.3049304667, "54"], +[-37.76643225, 175.3004663333, "4"], +[-37.7663945667, 175.30068035, "6"], +[-37.7663215667, 175.3009353167, "8"], +[-37.7623392333, 175.3131760167, "127"], +[-37.7646879167, 175.3052865667, "51"], +[-37.7645426667, 175.3058263833, "57"], +[-37.7644381667, 175.3061826, "61"], +[-37.7649553333, 175.3056563167, "62"], +[-37.7643886833, 175.3063683, "63"], +[-37.7647371167, 175.3050991167, "49"], +[-37.7645448667, 175.3071267833, "80"], +[-37.7644800333, 175.30734355, "82"], +[-37.7644270833, 175.3075217667, "84"], +[-37.7643816667, 175.3076821, "86"], +[-37.7645148667, 175.3082818667, "90A"], +[-37.7642984833, 175.3080177, "90"], +[-37.7641353833, 175.3085265667, "94"], +[-37.7650482667, 175.30533755, "62A"], +[-37.7651868333, 175.30543615, "62B"], +[-37.7651474, 175.3049803667, "58"], +[-37.7650926333, 175.3051663, "60"], +[-37.76100985, 175.3176028333, "169"], +[-37.7595047, 175.3226611667, "211B"], +[-37.7635045, 175.3095424167, "89"], +[-37.7622761167, 175.31338645, "129"], +[-37.7632548, 175.3104030833, "97"], +[-37.7792083333, 175.2424279833, "21A"], +[-37.7778041, 175.2434882333, "2"], +[-37.7791857167, 175.24219755, "25"], +[-37.7783345, 175.2436348, "3A"], +[-37.7784796, 175.2433095333, "5A"], +[-37.77902985, 175.24265515, "15A"], +[-37.7789727833, 175.2420457667, "27"], +[-37.77820135, 175.2428075, "10"], +[-37.7785687833, 175.2427960333, "11"], +[-37.778328, 175.242617, "12"], +[-37.7786696833, 175.2426293167, "13"], +[-37.77842155, 175.2424536667, "14"], +[-37.7787948833, 175.2424327833, "15"], +[-37.7782181833, 175.2419836167, "16A"], +[-37.77851515, 175.2422829167, "16"], +[-37.77920255, 175.2428081167, "17"], +[-37.7783517333, 175.2418156167, "18A"], +[-37.7786427, 175.2420989167, "18B"], +[-37.7792587833, 175.24268705, "19"], +[-37.7780263333, 175.2436863333, "1"], +[-37.7789128333, 175.2422621167, "21"], +[-37.7786953667, 175.2419495, "20"], +[-37.7786937333, 175.2416287167, "22"], +[-37.7794392, 175.2423770333, "23"], +[-37.7781587833, 175.2434770667, "3"], +[-37.7776687667, 175.24313415, "4A"], +[-37.7783094, 175.2432403833, "5"], +[-37.7777532667, 175.2429879667, "6B"], +[-37.7779654667, 175.2432174333, "6"], +[-37.7784268167, 175.2430444833, "7"], +[-37.7778482667, 175.2428062333, "8B"], +[-37.7780732, 175.2430285833, "8"], +[-37.7791166167, 175.2434063, "9B"], +[-37.7789184333, 175.24323805, "9"], +[-37.7788377333, 175.2419248167, "24"], +[-37.7778739, 175.2433691667, "4"], +[-37.7884112667, 175.2828792167, "24"], +[-37.8029993333, 175.2531336167, "5"], +[-37.8032592667, 175.2532533167, "3"], +[-37.80303775, 175.2536577833, "10"], +[-37.8033605833, 175.2531876167, "1"], +[-37.80348725, 175.2534408833, "2"], +[-37.8031769, 175.2536247833, "6"], +[-37.8030319, 175.2532994, "7"], +[-37.80311515, 175.2536722667, "8"], +[-37.8030440167, 175.2534941167, "9"], +[-37.8033125167, 175.2535326333, "4"], +[-37.744207, 175.2269256833, "1"], +[-37.74215165, 175.22568555, "22"], +[-37.7428360167, 175.2263211833, "14"], +[-37.7429208, 175.2258256667, "15"], +[-37.7389047333, 175.2215276833, "45A-45E"], +[-37.74356375, 175.22696205, "6"], +[-37.7434450667, 175.22626855, "9"], +[-37.7364626167, 175.2194838667, "78"], +[-37.73701, 175.2202568, "70"], +[-37.7432979833, 175.2260488, "13"], +[-37.7425403833, 175.2253911, "17"], +[-37.74213185, 175.2249488167, "19"], +[-37.74175165, 175.2245720667, "21"], +[-37.7348161, 175.2181043667, "96"], +[-37.7356774333, 175.21875575, "86"], +[-37.7354312667, 175.2185399833, "90"], +[-37.73551885, 175.2186187167, "88"], +[-37.7350138167, 175.21826045, "94"], +[-37.7385335333, 175.2218593833, "54"], +[-37.7378898167, 175.2212267333, "58"], +[-37.7375165833, 175.2208883833, "62"], +[-37.7373653667, 175.2207027, "64"], +[-37.7371279167, 175.2204184167, "68"], +[-37.7372413333, 175.2205426667, "66"], +[-37.7367717833, 175.2199228833, "74"], +[-37.73688945, 175.2200897167, "72"], +[-37.7366349833, 175.2197270333, "76"], +[-37.7404890833, 175.2231678167, "27"], +[-37.7402581, 175.2229474833, "31"], +[-37.7398974167, 175.2226221, "37"], +[-37.7396446667, 175.222859, "48"], +[-37.7416246167, 175.2243784333, "23"], +[-37.7414023833, 175.2241031, "25"], +[-37.74143765, 175.2248149667, "26"], +[-37.7412427, 175.2246283333, "30"], +[-37.74105335, 175.2243585833, "34"], +[-37.74084865, 175.22410635, "38"], +[-37.7390606667, 175.2216970333, "43A-43F"], +[-37.7387539667, 175.2220299833, "52"], +[-37.7431942333, 175.2266342333, "10"], +[-37.74261045, 175.22611345, "16"], +[-37.7439832667, 175.2268347, "5"], +[-37.7376768333, 175.2210390167, "60"], +[-37.7352034167, 175.2184018, "92"], +[-37.7346547, 175.2179707167, "98"], +[-37.7360641667, 175.21908535, "82"], +[-37.73585575, 175.2188968833, "84"], +[-37.7429699833, 175.2264321167, "12"], +[-37.7383204333, 175.2215445833, "56"], +[-37.7587366, 175.28677405, "8A"], +[-37.75828245, 175.2862679, "7"], +[-37.7588309, 175.28613595, "2"], +[-37.7585844333, 175.2868045667, "8B"], +[-37.7584498, 175.2865640833, "10"], +[-37.7584316167, 175.2869501167, "12A"], +[-37.7582931167, 175.2867657, "12"], +[-37.7579068667, 175.2867527, "13"], +[-37.7581873, 175.2869081667, "14"], +[-37.7578041667, 175.28688195, "15"], +[-37.7576936333, 175.287011, "17"], +[-37.7580896667, 175.2870511333, "16"], +[-37.7579721833, 175.2871835167, "18"], +[-37.7586323167, 175.2858630667, "1"], +[-37.7578617333, 175.2873186, "20"], +[-37.75867855, 175.2864533667, "4A"], +[-37.7587306167, 175.2862811667, "4"], +[-37.7583952333, 175.2861281833, "5"], +[-37.7587497167, 175.2866099667, "6A"], +[-37.7589105, 175.2865032833, "6B"], +[-37.75850905, 175.2859908167, "3"], +[-37.7603125833, 175.2781028333, "2"], +[-37.7601410333, 175.2777605, "4A"], +[-37.7605838833, 175.2782253167, "1"], +[-37.76035035, 175.2779175, "4"], +[-37.7603117, 175.2777319333, "6"], +[-37.7604164667, 175.2776704167, "8"], +[-37.76054365, 175.2775956167, "7"], +[-37.7377796167, 175.26517535, "8"], +[-37.73772125, 175.2653192833, "10"], +[-37.7375410833, 175.2645009833, "3"], +[-37.7380260667, 175.2648368667, "4"], +[-37.7374819667, 175.2647319167, "5"], +[-37.7377572833, 175.2648571, "6"], +[-37.7374311167, 175.2649325333, "7"], +[-37.7373924, 175.2651585167, "11"], +[-37.73755555, 175.2652678833, "12"], +[-37.7372185833, 175.2650643833, "9"], +[-37.7538300167, 175.2926222667, "11"], +[-37.7545648667, 175.2922548667, "19"], +[-37.7539256333, 175.2924535, "13"], +[-37.7540918333, 175.2923428333, "15"], +[-37.75426445, 175.2922537333, "17"], +[-37.75344375, 175.2933113333, "1"], +[-37.7544135333, 175.2921423833, "21"], +[-37.7542791833, 175.2920348333, "23"], +[-37.7535732167, 175.2923637833, "2"], +[-37.7535702333, 175.2931712667, "3"], +[-37.75370125, 175.2921487833, "4"], +[-37.7538333167, 175.2932888833, "5"], +[-37.7539715667, 175.2919154, "6"], +[-37.7537262333, 175.29301875, "7"], +[-37.7541739667, 175.2918644167, "8"], +[-37.7537912833, 175.2928445667, "9"], +[-37.7386113167, 175.2559703667, "1A"], +[-37.7392294833, 175.2584305167, "42"], +[-37.7393696333, 175.2581801667, "42A"], +[-37.7389933667, 175.2574724333, "23A"], +[-37.7398995167, 175.2579401667, "36"], +[-37.73979645, 175.2577876833, "36A"], +[-37.7390822667, 175.2572975667, "15"], +[-37.7390317333, 175.2577832667, "25"], +[-37.7389382167, 175.2583091167, "27"], +[-37.7394255, 175.2560247333, "20"], +[-37.73942425, 175.2570055167, "28"], +[-37.7385186167, 175.2559585, "1"], +[-37.7395141167, 175.2557211, "20A"], +[-37.7388880333, 175.2561634, "5"], +[-37.7394628333, 175.2567727167, "26"], +[-37.7396163667, 175.25501325, "18A"], +[-37.7393712, 175.2549063667, "18"], +[-37.73918995, 175.2558868, "10"], +[-37.73936115, 175.2556694833, "12"], +[-37.7394620333, 175.2553983833, "14"], +[-37.7395206833, 175.2551987167, "16"], +[-37.73915125, 175.2567997333, "11"], +[-37.7391072, 175.2570740333, "13"], +[-37.7385679333, 175.2555323167, "2"], +[-37.7387352167, 175.2572177, "17"], +[-37.7386438167, 175.2573141, "19"], +[-37.7388390167, 175.2574051333, "21"], +[-37.7390382, 175.2575846167, "23"], +[-37.73914305, 175.2579379833, "29"], +[-37.7394065833, 175.2572728, "30"], +[-37.7393897333, 175.2574739167, "32"], +[-37.7396053333, 175.2576868833, "34"], +[-37.73959485, 175.2578485333, "38"], +[-37.7393350333, 175.2579047333, "40"], +[-37.7387619, 175.2556254167, "4"], +[-37.7389149667, 175.2554071333, "6"], +[-37.7389369, 175.2564573, "7"], +[-37.7390087667, 175.2557566333, "8"], +[-37.7391994, 175.2563732667, "9"], +[-37.7387277667, 175.2560799667, "3"], +[-37.8221851333, 175.29701165, "18"], +[-37.8221195333, 175.29660535, "19"], +[-37.823331, 175.29618215, "1"], +[-37.8224537833, 175.2965304167, "15"], +[-37.8223584167, 175.2969785667, "16"], +[-37.8220848333, 175.2967982833, "21"], +[-37.8228793167, 175.2968323167, "10"], +[-37.8227393, 175.2961516333, "11"], +[-37.8227059, 175.2968732167, "12"], +[-37.8226028667, 175.2964891167, "13"], +[-37.82253255, 175.2969064, "14"], +[-37.8223052833, 175.2965646667, "17"], +[-37.8219878667, 175.2970128, "20"], +[-37.8232062833, 175.29624775, "3"], +[-37.8233401, 175.29662495, "4"], +[-37.82300835, 175.2959764667, "5"], +[-37.82319005, 175.2967111833, "6"], +[-37.8230463167, 175.2967990167, "8"], +[-37.8228633667, 175.2964121833, "9"], +[-37.8230315, 175.2963413333, "7"], +[-37.72149425, 175.2626525667, "12"], +[-37.72107235, 175.2626943167, "27"], +[-37.7209758167, 175.2638665667, "24"], +[-37.7208197, 175.2635175833, "35"], +[-37.7208797, 175.2633138, "33"], +[-37.72169705, 175.2626108, "10"], +[-37.7206895167, 175.2637674833, "37"], +[-37.7211692667, 175.2632555833, "18"], +[-37.7209044333, 175.2640651167, "28"], +[-37.7210717, 175.2640658, "26"], +[-37.7207848, 175.2641797167, "30"], +[-37.7211055167, 175.2634544333, "20"], +[-37.7210437, 175.2636533333, "22"], +[-37.7206589, 175.2643028167, "32"], +[-37.7205170167, 175.2636362, "39"], +[-37.7201018667, 175.2646297667, "40"], +[-37.7196560667, 175.2642508333, "52"], +[-37.7201181, 175.2643602167, "38"], +[-37.7198766667, 175.2643906, "48"], +[-37.7198329667, 175.2648111833, "44"], +[-37.71974515, 175.2640771, "56"], +[-37.7204941667, 175.2637900667, "41"], +[-37.72004225, 175.2639159833, "49"], +[-37.72030055, 175.2644326667, "36"], +[-37.7205252167, 175.2643954, "34"], +[-37.72059015, 175.2639173167, "43"], +[-37.7203739333, 175.26409505, "45"], +[-37.7202047, 175.2640122167, "47"], +[-37.7198971333, 175.2641484667, "58"], +[-37.7196312333, 175.2640732, "54"], +[-37.7197166833, 175.2643935167, "50"], +[-37.7198215167, 175.2646204833, "46"], +[-37.7199833667, 175.2647415, "42"], +[-37.7222989167, 175.2623849, "1"], +[-37.7222696167, 175.2620377333, "3"], +[-37.722229, 175.2619565333, "5"], +[-37.7221473333, 175.26199985, "7"], +[-37.7221781167, 175.2623712667, "9"], +[-37.7221351167, 175.2626748667, "4"], +[-37.72101645, 175.2628861667, "29"], +[-37.72188165, 175.2620153333, "13"], +[-37.7217737, 175.2623071333, "17"], +[-37.7215354333, 175.2622968833, "19"], +[-37.7213724167, 175.26236655, "21"], +[-37.7212270667, 175.2624670167, "23"], +[-37.7213162333, 175.2628440167, "14"], +[-37.7211276167, 175.26253395, "25"], +[-37.7212310333, 175.2630591, "16"], +[-37.7219483167, 175.262325, "11"], +[-37.7219449333, 175.2626662, "6"], +[-37.7217694833, 175.26204555, "15"], +[-37.7395522667, 175.2765986167, "11"], +[-37.7393669333, 175.2766682833, "10"], +[-37.73923845, 175.2767065667, "8"], +[-37.7391443, 175.2769019167, "4"], +[-37.7394978, 175.2768758667, "3"], +[-37.7401002, 175.2762430833, "5"], +[-37.73915795, 175.2767843, "6"], +[-37.73987335, 175.2763207333, "7"], +[-37.7397236167, 175.2764813333, "9"], +[-37.7758910667, 175.2530455167, "11"], +[-37.77554385, 175.2536212833, "5"], +[-37.7760094, 175.2529521, "13"], +[-37.7760794167, 175.2528001833, "15"], +[-37.7762312167, 175.2526311667, "17"], +[-37.77507395, 175.25362145, "6"], +[-37.775604, 175.25324435, "7A"], +[-37.7755244333, 175.2533107833, "7"], +[-37.7757349167, 175.2531450667, "9"], +[-37.7753728, 175.2540303667, "2"], +[-37.7756263, 175.2538318, "3"], +[-37.7766591167, 175.2602964, "12"], +[-37.77651465, 175.2603022333, "9"], +[-37.77635585, 175.2598567667, "5A"], +[-37.7764816333, 175.2594935667, "1A"], +[-37.7764254, 175.2596643167, "3A"], +[-37.7771914667, 175.2601452833, "6"], +[-37.7763599333, 175.2603697667, "9A"], +[-37.7767987167, 175.26027245, "10"], +[-37.776719, 175.2596108667, "1"], +[-37.77697915, 175.25971265, "2"], +[-37.7766653333, 175.2597964, "3"], +[-37.7766149667, 175.2599537833, "5"], +[-37.7764743333, 175.26014845, "7"], +[-37.7768552667, 175.26008615, "8"], +[-37.77690815, 175.2598977333, "4"], +[-37.7993600667, 175.2559040333, "39B"], +[-37.7981227333, 175.2565994167, "23A"], +[-37.7983688167, 175.2556205667, "30"], +[-37.7985884333, 175.25640175, "29A"], +[-37.7984402833, 175.2560703667, "29"], +[-37.7955775667, 175.2570441667, "2"], +[-37.7957130667, 175.2573908333, "3"], +[-37.7982892667, 175.2561497667, "27"], +[-37.7983206, 175.2565626, "25B"], +[-37.7981077333, 175.2557685333, "26"], +[-37.7985898667, 175.2559918333, "31"], +[-37.7977441667, 175.2559603667, "20"], +[-37.7994746167, 175.25503125, "40"], +[-37.79798935, 175.25581965, "24"], +[-37.7981624833, 175.25621975, "25A"], +[-37.79670295, 175.2565375, "8"], +[-37.7975998833, 175.2565190333, "17A"], +[-37.7974100667, 175.2565889167, "17"], +[-37.7982348667, 175.2556804, "28"], +[-37.8001132, 175.2551310167, "51C"], +[-37.8001314333, 175.2554042667, "51D"], +[-37.7999510167, 175.2552077333, "51"], +[-37.79967625, 175.2553631833, "45"], +[-37.7978598667, 175.2559101833, "22"], +[-37.8000259, 175.25441965, "48A"], +[-37.7978821333, 175.2563794667, "21"], +[-37.7997899833, 175.25486565, "44"], +[-37.7996296167, 175.25495365, "42"], +[-37.7957796833, 175.2569534833, "4"], +[-37.8004378, 175.2545430833, "52A"], +[-37.8006837333, 175.2544128, "52"], +[-37.8004967, 175.2549255667, "57"], +[-37.8006385833, 175.2548323833, "59"], +[-37.7992689833, 175.2556328167, "39"], +[-37.7966340667, 175.257013, "11B"], +[-37.7964810167, 175.25705615, "11"], +[-37.7955862, 175.2574218333, "1A"], +[-37.7957801333, 175.2577985667, "1"], +[-37.7967628, 175.2569089833, "15A"], +[-37.79698965, 175.2567844, "15"], +[-37.7976061333, 175.2560294833, "18"], +[-37.7977233167, 175.25647995, "19"], +[-37.7984896333, 175.25555885, "32"], +[-37.7987266667, 175.2559403167, "31A"], +[-37.7988331667, 175.2558621667, "33"], +[-37.7986171167, 175.25550365, "34"], +[-37.7989742667, 175.2557840333, "35"], +[-37.79877845, 175.255395, "36"], +[-37.7991084833, 175.2556956, "37"], +[-37.7992519833, 175.2560426167, "37A"], +[-37.7993973167, 175.255537, "41"], +[-37.7958434333, 175.25731975, "5"], +[-37.7965262667, 175.2566014667, "6"], +[-37.79966175, 175.2558074, "43A"], +[-37.7995297833, 175.2554586667, "43"], +[-37.7998034833, 175.2552861833, "47A"], +[-37.7998952167, 175.2556371, "47B"], +[-37.8002306, 175.2550704833, "49"], +[-37.8003613167, 175.25501125, "55A"], +[-37.80046655, 175.2551112333, "55"], +[-37.7980200333, 175.2562486, "23"], +[-37.8002703333, 175.2546088, "50"], +[-37.8001719833, 175.2544354833, "50A"], +[-37.8001054, 175.2546920833, "48"], +[-37.7999319, 175.2547818833, "46"], +[-37.7801836333, 175.2862138, "3"], +[-37.7786386667, 175.28596745, "10A-10D"], +[-37.7788113, 175.2850703833, "9A"], +[-37.7789413167, 175.2853910833, "7A"], +[-37.7789618333, 175.2851641833, "1/7"], +[-37.7790602667, 175.2852279667, "4/7"], +[-37.77899385, 175.28518175, "2/7"], +[-37.7790239, 175.2851964167, "3/7"], +[-37.7785933833, 175.2858959, "12B"], +[-37.7785473667, 175.2860460833, "12C"], +[-37.7777822833, 175.2855593833, "22E"], +[-37.7801334667, 175.2858861833, "1/5A-6/5A"], +[-37.7781863, 175.2848829, "17"], +[-37.7780309833, 175.2847754833, "19"], +[-37.7784630667, 175.2855941667, "1/14-8/14"], +[-37.7799611333, 175.2860765, "1/5-8/5"], +[-37.7800424833, 175.2865803667, "1/4-8/4"], +[-37.7783349833, 175.28498735, "1/15-6/15"], +[-37.7779098667, 175.2852374, "22A"], +[-37.7778448833, 175.2853916833, "22C"], +[-37.7778134667, 175.2854727833, "22D"], +[-37.7778763333, 175.28531395, "22B"], +[-37.7778811833, 175.2846835167, "21"], +[-37.77876785, 175.2857790333, "10"], +[-37.7786442333, 175.2852031667, "11"], +[-37.7786166333, 175.2856827333, "12"], +[-37.7784987, 175.2850924167, "13"], +[-37.7783183833, 175.28550515, "16"], +[-37.77816395, 175.2853929333, "18"], +[-37.7780139, 175.2853056, "20"], +[-37.7777093, 175.2851093333, "24"], +[-37.7802935833, 175.2864321167, "1"], +[-37.78025025, 175.2866012333, "2"], +[-37.7787971833, 175.2852988167, "9"], +[-37.7798458667, 175.2864590333, "6"], +[-37.7796889167, 175.28636335, "8"], +[-37.7784247833, 175.21514155, "39"], +[-37.7781836833, 175.2151226167, "37"], +[-37.7769278167, 175.2138469333, "16"], +[-37.7766531, 175.21440155, "17"], +[-37.7814584833, 175.2109568833, "52"], +[-37.7798433167, 175.2147970667, "54"], +[-37.77747905, 175.2150798, "29"], +[-37.7764768333, 175.2130093167, "6"], +[-37.7775473667, 175.21269895, "10"], +[-37.781569, 175.3112308833, "11"], +[-37.7810110333, 175.3112194833, "19"], +[-37.7807870833, 175.3114458, "24"], +[-37.7814334167, 175.3115313333, "12"], +[-37.7812936833, 175.31154615, "14"], +[-37.78102345, 175.3115800167, "18"], +[-37.7811542167, 175.3115492833, "16"], +[-37.7808875833, 175.3115988667, "20"], +[-37.7807690333, 175.31161085, "22"], +[-37.7821679167, 175.3112399667, "3"], +[-37.7820365, 175.31123555, "5"], +[-37.7818933333, 175.3112344167, "7"], +[-37.7817443, 175.3112331167, "9"], +[-37.78143175, 175.3112262167, "13"], +[-37.7812974667, 175.31121805, "15"], +[-37.781157, 175.3112280667, "17"], +[-37.7808882833, 175.3112209, "21"], +[-37.7807529, 175.3111279833, "23"], +[-37.7807724333, 175.3113090667, "25"], +[-37.7815760667, 175.3115244167, "10"], +[-37.7817430667, 175.3115378333, "8"], +[-37.7818793667, 175.3115385167, "6"], +[-37.7820248667, 175.3115434, "4"], +[-37.8160393, 175.26809345, "7"], +[-37.8163829167, 175.2682997, "5"], +[-37.8157444833, 175.26794035, "11"], +[-37.8159067, 175.2680030833, "9"], +[-37.81584555, 175.2684409333, "12"], +[-37.8159706167, 175.26852205, "10"], +[-37.8149502833, 175.2678041333, "21"], +[-37.8148003167, 175.2677733167, "23"], +[-37.8145641167, 175.2677490833, "25"], +[-37.8155852, 175.26790665, "13"], +[-37.8157006, 175.2683820333, "14"], +[-37.8154185667, 175.26788275, "15"], +[-37.8155517333, 175.2683538, "16"], +[-37.81526485, 175.2678656667, "17"], +[-37.8154068333, 175.2683238667, "18"], +[-37.8151117333, 175.2678353833, "19"], +[-37.8167429667, 175.2682939667, "1"], +[-37.8152487167, 175.2683006667, "20"], +[-37.816229, 175.2686820333, "6"], +[-37.8166092, 175.2683542833, "3"], +[-37.8160984, 175.26863305, "8"], +[-37.7550528333, 175.2853085833, "8"], +[-37.7532823667, 175.2845200667, "40"], +[-37.7534973167, 175.2842863333, "34"], +[-37.7545454333, 175.2844544, "11"], +[-37.7544023, 175.2843516, "15"], +[-37.7544058333, 175.2848457333, "16"], +[-37.7542563167, 175.2847808833, "18"], +[-37.7541071333, 175.2846879333, "20"], +[-37.75395405, 175.2849628333, "22"], +[-37.7538262167, 175.2849464667, "24"], +[-37.7536628833, 175.28480115, "30"], +[-37.7537056, 175.2844271667, "32"], +[-37.7538966833, 175.2845501167, "26"], +[-37.7532858667, 175.2841493333, "44"], +[-37.7530928833, 175.2840415667, "46"], +[-37.7528846333, 175.2838902833, "52"], +[-37.7527179167, 175.2837822167, "54"], +[-37.75251815, 175.2836889667, "58"], +[-37.7547164833, 175.2846133, "7"], +[-37.7547242167, 175.2841408833, "9"], +[-37.7553915, 175.2849801667, "3"], +[-37.7552366333, 175.2849362833, "5"], +[-37.7548769, 175.2852124667, "12"], +[-37.75489445, 175.2855865333, "10"], +[-37.75478295, 175.2851389833, "14"], +[-37.7553318167, 175.2854582, "4"], +[-37.7551907167, 175.2854045833, "6"], +[-37.7528777833, 175.28424125, "48"], +[-37.7426079833, 175.2833009, "8"], +[-37.7421947167, 175.28306375, "1"], +[-37.7423721333, 175.2834686167, "5"], +[-37.74241345, 175.2837146833, "7"], +[-37.7425315333, 175.2839260667, "9"], +[-37.7427903, 175.2838761333, "12"], +[-37.7426954, 175.28356445, "10"], +[-37.74254465, 175.28309665, "6"], +[-37.7423188167, 175.2827859333, "2"], +[-37.7424382333, 175.2829335167, "4"], +[-37.7427008333, 175.2841125667, "11"], +[-37.74229625, 175.2832586333, "3"], +[-37.7701715, 175.2575373667, "10"], +[-37.76994795, 175.257755, "11"], +[-37.77002365, 175.25764195, "12"], +[-37.7694852833, 175.2573586667, "1A"], +[-37.7693951667, 175.2572691333, "1"], +[-37.76974565, 175.2572400333, "4"], +[-37.7696960833, 175.2576616333, "5"], +[-37.7698902, 175.25736515, "6"], +[-37.7697957333, 175.2577862833, "7"], +[-37.77000965, 175.25746325, "8"], +[-37.7698912167, 175.2579621333, "9"], +[-37.7695934333, 175.2575090333, "3"], +[-37.75660495, 175.2298753167, "4"], +[-37.7548286667, 175.2304360167, "22"], +[-37.7560572833, 175.23003895, "6"], +[-37.8012069167, 175.3147404, "2"], +[-37.8004167833, 175.3155014333, "18"], +[-37.8005630667, 175.31539275, "16"], +[-37.8011611167, 175.3143639833, "1"], +[-37.8009995167, 175.3145180667, "3"], +[-37.80107455, 175.3148573333, "4"], +[-37.8008820833, 175.3146407, "5"], +[-37.8007584, 175.3147669333, "7"], +[-37.8006288333, 175.3148909667, "9"], +[-37.8007217833, 175.3152203833, "10"], +[-37.800498, 175.3150271667, "11"], +[-37.8008954, 175.3156377167, "12"], +[-37.8003642833, 175.3151200333, "13"], +[-37.80080575, 175.3156925667, "14"], +[-37.8002814667, 175.3152702833, "15"], +[-37.7999398667, 175.3152076333, "17"], +[-37.800171, 175.3153974167, "17A"], +[-37.8002424667, 175.3155213167, "20"], +[-37.8009497333, 175.3149911167, "6"], +[-37.80083935, 175.3151076667, "8"], +[-37.8118415833, 175.2974148667, "42"], +[-37.8117436667, 175.2975780833, "40"], +[-37.8119474167, 175.2982401667, "47A"], +[-37.8104223833, 175.29801475, "25A"], +[-37.8116411167, 175.2977172333, "38"], +[-37.8122460833, 175.2976574333, "55A"], +[-37.8112430167, 175.29722865, "66B"], +[-37.8103047333, 175.2978606, "23A"], +[-37.80939025, 175.2973775667, "11A"], +[-37.8107787833, 175.2982287833, "31A"], +[-37.80945595, 175.29645755, "6"], +[-37.8092472333, 175.2967830833, "5"], +[-37.8119717667, 175.2958869, "81"], +[-37.8117863167, 175.2958126333, "85"], +[-37.8117677333, 175.2970316833, "44A"], +[-37.8120081833, 175.2971231333, "46"], +[-37.8104159667, 175.297, "20A"], +[-37.8098213667, 175.2964536333, "10A"], +[-37.8099755, 175.2965951333, "10B"], +[-37.8097405833, 175.2966624167, "10"], +[-37.8104328667, 175.2972572667, "22"], +[-37.8104186833, 175.2976899333, "23"], +[-37.8125514833, 175.2972029, "61B"], +[-37.8124278833, 175.2970239833, "61"], +[-37.8114258333, 175.2969673, "62A"], +[-37.8119170333, 175.2972666333, "44"], +[-37.81089135, 175.2980903, "31"], +[-37.8116284833, 175.2972530167, "42A"], +[-37.8104822833, 175.2968808167, "20B"], +[-37.8123674833, 175.2976119167, "57A"], +[-37.8122130667, 175.2973584167, "57"], +[-37.81251695, 175.2972756833, "59B"], +[-37.8123217667, 175.2971740167, "59"], +[-37.8120364667, 175.2963949833, "52"], +[-37.8118830667, 175.2962769167, "54"], +[-37.8117252833, 175.2961609833, "56"], +[-37.8102999333, 175.2975993667, "21"], +[-37.8105390167, 175.2977862667, "25"], +[-37.8092273167, 175.2962963167, "2A"], +[-37.8091562833, 175.2962626667, "2B"], +[-37.8091066167, 175.2972441667, "3"], +[-37.80932595, 175.2963592833, "4"], +[-37.8093825833, 175.2968725167, "7"], +[-37.8107744667, 175.2979914833, "29"], +[-37.8108523667, 175.2976194333, "30"], +[-37.8109954167, 175.2977455833, "32"], +[-37.8110150833, 175.2981852833, "33"], +[-37.81115215, 175.2978646833, "34"], +[-37.8111634, 175.2982905833, "35"], +[-37.8114191333, 175.2979643, "36"], +[-37.8114412833, 175.2983321, "39"], +[-37.8111662833, 175.2962956167, "97"], +[-37.8114279333, 175.2954107333, "89"], +[-37.8117686167, 175.2980424167, "47"], +[-37.8114523333, 175.2964088333, "58"], +[-37.81093445, 175.2966921667, "101"], +[-37.8106799667, 175.2965865167, "103A"], +[-37.8108532667, 175.2968724833, "103"], +[-37.8104602667, 175.2966319, "105"], +[-37.81075505, 175.2970719667, "107A"], +[-37.81065195, 175.2972939, "107"], +[-37.8101801667, 175.29705, "18"], +[-37.8100715333, 175.2974107333, "17"], +[-37.8101785667, 175.2975017333, "19"], +[-37.8103034333, 175.2971436167, "20"], +[-37.8094765333, 175.2974580333, "11"], +[-37.8099052, 175.2968043167, "12"], +[-37.8096944667, 175.2971171833, "13"], +[-37.80980985, 175.2972052667, "15"], +[-37.81018655, 175.2967843167, "16A"], +[-37.8100366333, 175.2969311333, "16"], +[-37.8090516667, 175.29719445, "1"], +[-37.8128939333, 175.2967699333, "67"], +[-37.8127078167, 175.29657015, "69A"], +[-37.81249865, 175.2966271333, "69"], +[-37.81246875, 175.2964680167, "71"], +[-37.8124193667, 175.2963169167, "73"], +[-37.8123302333, 175.2962027333, "75"], +[-37.8124868833, 175.2968679167, "63"], +[-37.8128738167, 175.2969132667, "65"], +[-37.81157085, 175.29673235, "60A"], +[-37.8113737833, 175.2965503, "60"], +[-37.8113024167, 175.2966964333, "62"], +[-37.8112202667, 175.29686065, "64"], +[-37.8111318667, 175.2970453, "66"], +[-37.8110373833, 175.2972235333, "68"], +[-37.8120761667, 175.2959766333, "79"], +[-37.8120937, 175.2953785, "83"], +[-37.8116336667, 175.2958114667, "87"], +[-37.81145995, 175.2958674667, "91"], +[-37.81134605, 175.2959720833, "93"], +[-37.8112522, 175.2961308667, "95"], +[-37.81107015, 175.2964966667, "99"], +[-37.8097679, 175.2963662833, "8A"], +[-37.8095914167, 175.2962614667, "8B"], +[-37.8095960833, 175.2965613833, "8"], +[-37.8095139833, 175.2969936, "9"], +[-37.8112911667, 175.29833695, "37"], +[-37.8106705333, 175.2978893333, "27"], +[-37.8121680667, 175.2965624167, "50"], +[-37.8120949833, 175.2969724333, "48"], +[-37.8120390833, 175.2976106, "53"], +[-37.8121158833, 175.29748455, "55"], +[-37.811873, 175.2978968167, "49"], +[-37.8119468667, 175.2977534167, "51"], +[-37.7909610333, 175.3196679667, "10A"], +[-37.79068025, 175.3196360833, "9A-9C"], +[-37.7903956667, 175.3190921833, "5D"], +[-37.7906309167, 175.3194488, "7A"], +[-37.7904902667, 175.31944805, "7B"], +[-37.7906005667, 175.3187031, "1D"], +[-37.7906196167, 175.31875865, "1E"], +[-37.7904427, 175.3192534833, "5B"], +[-37.79041715, 175.3191701, "5C"], +[-37.7909406167, 175.3195665333, "10"], +[-37.79062285, 175.31901765, "3"], +[-37.7909105, 175.3188599333, "4"], +[-37.7904694333, 175.3193351667, "5A"], +[-37.7908823, 175.3190605167, "6"], +[-37.7908774167, 175.31936365, "8"], +[-37.79058315, 175.3186436667, "1C"], +[-37.7905641333, 175.31858615, "1B"], +[-37.7905434833, 175.3185325, "1A"], +[-37.7277505333, 175.263635, "18"], +[-37.7274516833, 175.2618148667, "27"], +[-37.7276937667, 175.2621243167, "32"], +[-37.72769975, 175.26347105, "20"], +[-37.7278143833, 175.2637138667, "16"], +[-37.7279512167, 175.2624555833, "4"], +[-37.7283701667, 175.2607727667, "9"], +[-37.7282017167, 175.2606165, "11"], +[-37.7280453167, 175.2605345667, "13"], +[-37.7280336833, 175.2607674167, "15"], +[-37.7279324333, 175.2611850833, "19"], +[-37.72784675, 175.2613955833, "21"], +[-37.7277663167, 175.2616773667, "23"], +[-37.72825855, 175.2611445333, "5"], +[-37.7279554833, 175.2626860833, "6"], +[-37.72802255, 175.2631547167, "10"], +[-37.7277159167, 175.2630166667, "24"], +[-37.7276911167, 175.2627968167, "26"], +[-37.7276800833, 175.2625661, "28"], +[-37.7277280333, 175.2618894, "25"], +[-37.7274555167, 175.2619571833, "29"], +[-37.7277381167, 175.2632534167, "22"], +[-37.72796485, 175.2622341833, "2"], +[-37.72768, 175.2623527833, "30"], +[-37.7280599667, 175.2634204667, "12"], +[-37.7279777167, 175.2629200333, "8"], +[-37.7281822333, 175.2613382833, "3"], +[-37.72835075, 175.26094565, "7"], +[-37.7280018333, 175.26099675, "17"], +[-37.7279676667, 175.2636222, "14"], +[-37.72057095, 175.2633591667, "4"], +[-37.72058745, 175.2630920833, "6"], +[-37.7198954333, 175.2635907333, "37"], +[-37.7204163833, 175.2630974333, "8"], +[-37.7202451167, 175.2632188833, "10"], +[-37.7202457, 175.2636135667, "14"], +[-37.7196302, 175.26348265, "31"], +[-37.71957915, 175.26362175, "29"], +[-37.7194639, 175.2633668833, "25"], +[-37.7200087833, 175.2630950667, "17"], +[-37.7196520667, 175.2632737, "33"], +[-37.7208448167, 175.2625182833, "3"], +[-37.7206879333, 175.2627919333, "5"], +[-37.7205826667, 175.2626862667, "7"], +[-37.72029975, 175.2628093833, "11"], +[-37.7197989, 175.2630661, "19"], +[-37.71961025, 175.2630736833, "21"], +[-37.7194480167, 175.2631842, "23"], +[-37.71949295, 175.26354995, "27"], +[-37.7199549667, 175.2633581167, "35"], +[-37.7200938167, 175.26364425, "16"], +[-37.7202207333, 175.26344145, "12"], +[-37.720448, 175.2627370167, "9"], +[-37.7200061167, 175.2629018667, "15"], +[-37.7201536, 175.2628818167, "13"], +[-37.79380585, 175.3039718667, "17B"], +[-37.79384165, 175.3042096833, "19"], +[-37.7939064833, 175.3033591667, "5A"], +[-37.7940426333, 175.3032890333, "5"], +[-37.7939009667, 175.3038967167, "17"], +[-37.7941115, 175.3030186167, "1"], +[-37.79398905, 175.3035497, "15"], +[-37.7937647833, 175.3036140333, "15A"], +[-37.7401422667, 175.2664579167, "35"], +[-37.74013635, 175.26674055, "37"], +[-37.7400951333, 175.2669179833, "39"], +[-37.73816865, 175.2645196833, "15"], +[-37.7365203, 175.2637191167, "3"], +[-37.7364593, 175.2641178167, "5"], +[-37.7399291167, 175.26543895, "27"], +[-37.73901, 175.2643432, "28"], +[-37.7391761333, 175.2644071167, "30"], +[-37.7393399167, 175.26447575, "32"], +[-37.73908525, 175.2648057, "21"], +[-37.7389049167, 175.2647438, "19"], +[-37.7403862333, 175.267073, "62"], +[-37.7404434167, 175.26638245, "52"], +[-37.7407365333, 175.2665673667, "56"], +[-37.7404488667, 175.2666350667, "58"], +[-37.740433, 175.2668872833, "60"], +[-37.7407445167, 175.26644305, "54"], +[-37.73977255, 175.2646658667, "36A"], +[-37.7379827833, 175.2644875167, "13"], +[-37.7373934, 175.2641035333, "11"], +[-37.7374883667, 175.2637143, "12"], +[-37.7376196333, 175.26385545, "14"], +[-37.73774055, 175.2639688333, "16"], +[-37.7383014667, 175.2645635333, "17"], +[-37.7379734167, 175.264084, "18"], +[-37.73812745, 175.2641244, "20"], +[-37.7382919667, 175.26416085, "22"], +[-37.7363492833, 175.2636329333, "1"], +[-37.7364172833, 175.2632512167, "2"], +[-37.73949255, 175.2645264167, "34"], +[-37.73968055, 175.26460435, "36"], +[-37.7398859333, 175.2647277, "38"], +[-37.7399984833, 175.26485495, "40"], +[-37.7365826, 175.2633204, "4"], +[-37.7367551333, 175.2633897333, "6"], +[-37.7367150333, 175.2637759167, "7"], +[-37.7369098833, 175.2634448667, "8"], +[-37.7372864333, 175.26401795, "9"], +[-37.7398241, 175.2652329667, "25"], +[-37.7400397167, 175.2656525, "29"], +[-37.740136, 175.2660029667, "31"], +[-37.7401042667, 175.265032, "42"], +[-37.7402474167, 175.2653333, "44"], +[-37.74034675, 175.2655319333, "46"], +[-37.74013695, 175.2662416167, "33"], +[-37.7404271, 175.2660992333, "50"], +[-37.7930997667, 175.23081895, "1"], +[-37.7930161833, 175.2312638333, "2"], +[-37.7929129, 175.23084665, "3"], +[-37.7928573, 175.23107305, "4"], +[-37.7729120667, 175.3014407167, "3"], +[-37.7728123667, 175.3016159833, "5"], +[-37.77322085, 175.3016819667, "6"], +[-37.7729588333, 175.3016945833, "7"], +[-37.7731694833, 175.3019083667, "8"], +[-37.7732742333, 175.3015322833, "4"], +[-37.7377171, 175.2878362, "11"], +[-37.7385977, 175.2882797667, "4"], +[-37.7384935, 175.2879120333, "1"], +[-37.7387077667, 175.2880654, "2"], +[-37.7376272333, 175.28799275, "13"], +[-37.7378312, 175.2878320167, "7"], +[-37.7379765667, 175.2879485167, "5"], +[-37.73820695, 175.2880386, "3"], +[-37.7346374333, 175.25257805, "3"], +[-37.7347602167, 175.2528436833, "5"], +[-37.7351065, 175.2528504833, "9"], +[-37.7345312833, 175.2523919167, "1"], +[-37.7347790833, 175.2521265167, "4"], +[-37.7348901667, 175.25225025, "6"], +[-37.73491225, 175.2528617, "7"], +[-37.7350574667, 175.2523690667, "10"], +[-37.73502825, 175.2526124167, "12"], +[-37.7351039333, 175.2521263, "8"], +[-37.7340689833, 175.2615075, "6"], +[-37.7340217333, 175.2619379, "2"], +[-37.7343144667, 175.2618575833, "3"], +[-37.7340702333, 175.2617420167, "4"], +[-37.7342300667, 175.2615542, "5"], +[-37.7829380333, 175.3074965667, "11"], +[-37.7831943333, 175.3071656333, "18"], +[-37.7820898833, 175.3070164, "1"], +[-37.7822847, 175.30712445, "3"], +[-37.7822180333, 175.3067423667, "4"], +[-37.7828041167, 175.3074084833, "9"], +[-37.7826285167, 175.3069552833, "10"], +[-37.7830146833, 175.3075214833, "13"], +[-37.7829221167, 175.3070475833, "14"], +[-37.7831030333, 175.3073807167, "15"], +[-37.7830525333, 175.3070933, "16"], +[-37.7821021333, 175.30671585, "2"], +[-37.7824586833, 175.30722805, "5"], +[-37.7822272833, 175.30644185, "6"], +[-37.7826428833, 175.3072754167, "7"], +[-37.7824422, 175.30687015, "8"], +[-37.78280035, 175.30701725, "12"], +[-37.7203712167, 175.24968385, "4"], +[-37.7205826167, 175.2499859667, "8"], +[-37.7200801167, 175.2497648, "3"], +[-37.7203759333, 175.2500723333, "7"], +[-37.7199509667, 175.2495742667, "1"], +[-37.7202359833, 175.2498921833, "5"], +[-37.7205147333, 175.2501035167, "9"], +[-37.7205399667, 175.2498037667, "6"], +[-37.7513775833, 175.2692647833, "24B"], +[-37.7523542667, 175.2697189833, "12"], +[-37.7502113, 175.26790035, "39"], +[-37.7493801, 175.26686075, "66"], +[-37.7523377667, 175.2704468167, "2"], +[-37.7528251833, 175.270315, "3"], +[-37.7508535167, 175.2681667333, "31"], +[-37.75007915, 175.2684352, "38"], +[-37.75038645, 175.2679729667, "37"], +[-37.74926745, 175.2684093833, "48A"], +[-37.7523827333, 175.2699008667, "10"], +[-37.7527255833, 175.2695478333, "11"], +[-37.7525737, 175.2693323833, "13A"], +[-37.7526826, 175.26924045, "13B"], +[-37.7518336, 175.26942215, "18A"], +[-37.751879, 175.2691483667, "18"], +[-37.7524763667, 175.2691285333, "15"], +[-37.7520187833, 175.26924975, "16"], +[-37.7523793833, 175.2689900667, "17"], +[-37.7517432333, 175.2690914, "20"], +[-37.7515315, 175.2685445333, "23"], +[-37.7515644667, 175.2690290333, "22"], +[-37.7527739, 175.270507, "1"], +[-37.75145715, 175.26897395, "24"], +[-37.751362, 175.2683766667, "25"], +[-37.751257, 175.2688721333, "26B"], +[-37.7511770667, 175.2682960833, "27"], +[-37.7511215333, 175.2689008333, "28"], +[-37.75100665, 175.2682169667, "29"], +[-37.7507343333, 175.2681461667, "33"], +[-37.7505308167, 175.2680410667, "35"], +[-37.7503111, 175.2685056333, "36"], +[-37.7499323667, 175.2683747333, "40"], +[-37.7500468333, 175.2678477, "41"], +[-37.74978835, 175.2683156167, "42"], +[-37.7498795667, 175.2677885167, "43"], +[-37.7496526333, 175.2682495, "44"], +[-37.7495629667, 175.2676316667, "45"], +[-37.74951635, 175.2681798167, "46"], +[-37.7496165667, 175.2672953333, "47"], +[-37.74936545, 175.2681156167, "48"], +[-37.7496403, 175.2671156333, "49"], +[-37.7523706833, 175.2703257167, "4"], +[-37.7492775333, 175.2680865333, "50"], +[-37.7497133, 175.2668283833, "51"], +[-37.74907075, 175.2681070167, "52"], +[-37.7492522667, 175.2678519667, "54"], +[-37.74881575, 175.2680177333, "56"], +[-37.7491300333, 175.2676997, "58"], +[-37.7491939167, 175.2675155667, "60"], +[-37.7492395833, 175.26730425, "62"], +[-37.7493013667, 175.2671100167, "64"], +[-37.7530417833, 175.2702428, "5"], +[-37.7523883833, 175.2701864333, "6"], +[-37.7524157333, 175.2700737667, "8"], +[-37.75284205, 175.2697402, "9"], +[-37.7519008333, 175.26957565, "14A"], +[-37.7491207167, 175.2682676833, "50A"], +[-37.7513146333, 175.26890745, "26A"], +[-37.7528581333, 175.2700423, "7"], +[-37.7520645333, 175.2696901, "14B"], +[-37.75074255, 175.2677675667, "33A"], +[-37.7522936333, 175.26883605, "19"], +[-37.7516861333, 175.2693781667, "20A"], +[-37.75212235, 175.2693311167, "14"], +[-37.748917, 175.2815428167, "10"], +[-37.7487874833, 175.2813419333, "12"], +[-37.7490971, 175.2809327, "2"], +[-37.7488193667, 175.2807786667, "3"], +[-37.7492166333, 175.28123155, "4"], +[-37.7487101667, 175.2809262333, "5"], +[-37.7490412167, 175.2811876, "6"], +[-37.74854845, 175.2810429333, "7"], +[-37.74907655, 175.2816644, "8"], +[-37.7486897667, 175.2812435167, "9"], +[-37.7533967333, 175.2745766333, "88A"], +[-37.7522171833, 175.2786713167, "138"], +[-37.7521786333, 175.27888705, "140"], +[-37.7522726, 175.2784940667, "136"], +[-37.7520944333, 175.2775412833, "127"], +[-37.7520536, 175.2777254, "129"], +[-37.7531719167, 175.2744801167, "88"], +[-37.7536755, 175.2706578167, "37"], +[-37.7525986333, 175.2769677167, "118A"], +[-37.7529292667, 175.2673409167, "2"], +[-37.7528848833, 175.27660625, "110B"], +[-37.7537107333, 175.2704853333, "35B"], +[-37.7528092, 175.2678404833, "5A"], +[-37.7527590167, 175.2746255167, "87"], +[-37.75385995, 175.27452715, "86B"], +[-37.7536402, 175.27083805, "39"], +[-37.7532094, 175.2726545333, "65"], +[-37.753168, 175.2728279167, "67"], +[-37.7542483833, 175.2694534667, "34"], +[-37.75400065, 175.26904205, "26"], +[-37.7520439333, 175.27947455, "146"], +[-37.7531734833, 175.26846575, "13"], +[-37.7534806833, 175.2694533, "23"], +[-37.7530675167, 175.2683064667, "11"], +[-37.75350945, 175.26826375, "12"], +[-37.7528843, 175.2687424667, "13A"], +[-37.75342155, 175.2681152167, "10"], +[-37.7522914667, 175.27663325, "115"], +[-37.7536361333, 175.2745985, "90"], +[-37.7527833667, 175.277288, "120A"], +[-37.75231045, 175.27612185, "111"], +[-37.7537919167, 175.2717174833, "1/52-26/52"], +[-37.7541250333, 175.2692166, "30"], +[-37.75322705, 175.2742515667, "84"], +[-37.7532800833, 175.2722835333, "61"], +[-37.7538579333, 175.2696949167, "29A"], +[-37.7529166, 175.27630085, "108A"], +[-37.75292675, 175.2767864167, "110C"], +[-37.7529932667, 175.2769184333, "110D"], +[-37.7530591333, 175.2760289, "104A"], +[-37.7539738833, 175.2709909167, "46"], +[-37.7531473333, 175.2718584333, "57"], +[-37.75332425, 175.2738179, "78"], +[-37.7542882167, 175.2707556667, "40A"], +[-37.7530196167, 175.2688266667, "15"], +[-37.7536944, 175.2685671667, "16"], +[-37.7533765, 175.2687276167, "19A"], +[-37.75366335, 175.2692500333, "21"], +[-37.7541744833, 175.2687383667, "24"], +[-37.7534522333, 175.2695892, "25"], +[-37.7534864333, 175.2703334833, "35A"], +[-37.7534483, 175.2705248833, "37A"], +[-37.7533156833, 175.2706771333, "39A"], +[-37.7538030333, 175.2700708333, "31"], +[-37.7545067333, 175.2692423167, "32"], +[-37.7540062167, 175.2708257833, "40"], +[-37.7536071, 175.2709977833, "41"], +[-37.7542393833, 175.2711671167, "48"], +[-37.75307995, 175.2675432333, "4"], +[-37.7531266, 175.2730013167, "69"], +[-37.75397895, 175.2721014833, "54"], +[-37.7534183, 175.2716922833, "55"], +[-37.7541484833, 175.2721303667, "56"], +[-37.7533754833, 175.2718554, "57A"], +[-37.7536847167, 175.2721191667, "58"], +[-37.7533282667, 175.2720784167, "59"], +[-37.7536399167, 175.2723085667, "60"], +[-37.7529373833, 175.2739244333, "79"], +[-37.75326975, 175.2740147, "80"], +[-37.75289565, 175.2741137, "81"], +[-37.75284795, 175.2742868833, "83"], +[-37.75280605, 175.2744840833, "85"], +[-37.7536702667, 175.2744597833, "86A"], +[-37.7530911833, 175.2731907833, "71"], +[-37.7530497833, 175.2733641667, "73"], +[-37.75300805, 175.2735534333, "75"], +[-37.7533596667, 175.2736284333, "76"], +[-37.7531106167, 175.2747005167, "92"], +[-37.7529942, 175.2681635, "9"], +[-37.7530279167, 175.2766344, "108B"], +[-37.75203575, 175.2754497167, "101A"], +[-37.7519952, 175.275599, "101B"], +[-37.7530618167, 175.2759494833, "102A"], +[-37.7528978667, 175.27579855, "102"], +[-37.7522355333, 175.2755950167, "103"], +[-37.75285415, 175.2760368333, "104"], +[-37.7525199, 175.2757433667, "105"], +[-37.7531324667, 175.27632075, "106"], +[-37.7524792167, 175.2759156, "107"], +[-37.7529630333, 175.2765045667, "108"], +[-37.7524509333, 175.2760670167, "109"], +[-37.7527109, 175.27627915, "110"], +[-37.7526917167, 175.2766746333, "116A"], +[-37.7527460167, 175.2767962, "116B"], +[-37.75256185, 175.2771497167, "120"], +[-37.75221105, 175.27698705, "121"], +[-37.7525349167, 175.2773549333, "122"], +[-37.7521774667, 175.2771817333, "123"], +[-37.7521351833, 175.2773645667, "125"], +[-37.7524776333, 175.2776329833, "126"], +[-37.752135, 175.2801584833, "154"], +[-37.751887, 175.2801372333, "156"], +[-37.7518375667, 175.2803725167, "158"], +[-37.7526182333, 175.2753079167, "95"], +[-37.7525749333, 175.27549075, "97"], +[-37.7529456667, 175.2756168667, "98"], +[-37.7522651167, 175.2753837333, "99"], +[-37.7529728, 175.2737349667, "77"], +[-37.7532385167, 175.27246485, "63"], +[-37.7535525, 175.2726934167, "70"], +[-37.7538904333, 175.2712882333, "50"], +[-37.7537501667, 175.2702885667, "33"], +[-37.7542619833, 175.26974085, "36"], +[-37.7544594333, 175.2699816667, "38A"], +[-37.7542203333, 175.2699638167, "38"], +[-37.7526178167, 175.2677122167, "3"], +[-37.7526405667, 175.2680754667, "5B"], +[-37.7532212667, 175.26777515, "6"], +[-37.75291025, 175.2680148167, "7"], +[-37.7534411167, 175.26775095, "8"], +[-37.75225095, 175.2768141167, "117"], +[-37.7527817833, 175.27704395, "118B"], +[-37.7519664333, 175.2798691333, "152"], +[-37.7527918333, 175.27644995, "110A"], +[-37.7531533333, 175.2688489, "17A"], +[-37.7521355, 175.27907365, "142"], +[-37.7536017, 175.2724834, "62B"], +[-37.7527683, 175.2682329333, "7A"], +[-37.7538274833, 175.2694996, "27"], +[-37.7538438167, 175.26992095, "29"], +[-37.7538655167, 175.2688243333, "20"], +[-37.7524613833, 175.2676575667, "1"], +[-37.7535459833, 175.2689862167, "19"], +[-37.75335635, 175.26901375, "17"], +[-37.7520094167, 175.2796805333, "150"], +[-37.7523264, 175.2764390333, "113"], +[-37.75208605, 175.2792896167, "144"], +[-37.7393293333, 175.2410631333, "28B"], +[-37.7394022, 175.2410075667, "28"], +[-37.7398086, 175.24069615, "27"], +[-37.7406062833, 175.2408748167, "17"], +[-37.74077125, 175.2411502, "11"], +[-37.7407761167, 175.2409328167, "13"], +[-37.74035735, 175.2417531167, "14"], +[-37.7407664333, 175.24075405, "15"], +[-37.74039015, 175.2415113, "16"], +[-37.7402485667, 175.2411847, "18"], +[-37.74046445, 175.24083425, "19"], +[-37.7400693, 175.2411839167, "20"], +[-37.7410598667, 175.2420464333, "1"], +[-37.7395544667, 175.2410350167, "26"], +[-37.73965565, 175.2406475167, "29"], +[-37.7391852833, 175.2413051333, "30"], +[-37.7394899667, 175.2406095333, "31"], +[-37.7391569833, 175.2409242667, "32"], +[-37.7393331667, 175.2405673333, "33"], +[-37.73898095, 175.2408727833, "34"], +[-37.7391813167, 175.2405384833, "35"], +[-37.7390268167, 175.2404953167, "37"], +[-37.7388677167, 175.2404448833, "39"], +[-37.7409116333, 175.2424786333, "2"], +[-37.7408998667, 175.2419952833, "3"], +[-37.74075615, 175.2424544, "4"], +[-37.7407175333, 175.2419495667, "5"], +[-37.74057135, 175.2427833, "6"], +[-37.7407071, 175.2415603667, "7"], +[-37.7405392167, 175.2423885333, "8"], +[-37.7407394, 175.2413454, "9"], +[-37.7397304667, 175.2410839667, "24"], +[-37.7401371167, 175.2407698333, "23"], +[-37.7399718, 175.2407273833, "25"], +[-37.73988605, 175.2411273667, "22"], +[-37.7403003667, 175.2408141667, "21"], +[-37.7403506833, 175.2423039833, "10"], +[-37.7403502833, 175.2426296833, "10A"], +[-37.7452459167, 175.2610780667, "6"], +[-37.7449718, 175.2607729, "5A"], +[-37.7449174667, 175.2610211, "7"], +[-37.7451758333, 175.26047675, "3"], +[-37.7453199833, 175.26089635, "4"], +[-37.7450482333, 175.2606518833, "5"], +[-37.7451633667, 175.2613196, "8"], +[-37.7454980333, 175.2610695333, "4A"], +[-37.7698714333, 175.2312245333, "14B"], +[-37.7693531667, 175.2314412333, "4"], +[-37.7717226167, 175.2298316167, "51"], +[-37.7740671167, 175.22543425, "137"], +[-37.77144805, 175.2305360333, "29C"], +[-37.7761733833, 175.2196234333, "234"], +[-37.7710477667, 175.2305291, "29"], +[-37.7713018167, 175.2305653333, "29A"], +[-37.7752902, 175.22364775, "203"], +[-37.7756674, 175.22286195, "209"], +[-37.7759665667, 175.22195085, "221"], +[-37.7760639667, 175.2215313333, "225"], +[-37.7762443833, 175.2210048, "227"], +[-37.7758257, 175.2223835, "213"], +[-37.7753216333, 175.2225754167, "214"], +[-37.7750346, 175.2231005833, "208"], +[-37.77513995, 175.2229374, "210"], +[-37.7754725167, 175.2222088167, "216"], +[-37.77562995, 175.2215958667, "220"], +[-37.7755514333, 175.2219206167, "218"], +[-37.7757546, 175.22111335, "222"], +[-37.7759143833, 175.2205545333, "226"], +[-37.7760279, 175.22016225, "228"], +[-37.7693055667, 175.231533, "2A"], +[-37.7726061833, 175.2284790333, "101"], +[-37.7729077333, 175.2277604, "117"], +[-37.7730456833, 175.2274835167, "119"], +[-37.77012575, 175.2315095, "11A"], +[-37.7731465, 175.2272832833, "121"], +[-37.7732496667, 175.2270638, "123"], +[-37.7733481, 175.2268588, "125"], +[-37.7734095667, 175.2267103333, "127"], +[-37.7702192667, 175.2316641, "11B"], +[-37.7703621333, 175.2318981833, "11C"], +[-37.7705308333, 175.2318098667, "11D"], +[-37.7702471, 175.2313872, "13"], +[-37.7703845667, 175.2315834667, "13A"], +[-37.77052345, 175.2314128, "15A"], +[-37.7703862833, 175.2312557833, "15"], +[-37.7698083833, 175.2307624167, "16B"], +[-37.7700774833, 175.23045755, "16C"], +[-37.7701908167, 175.2306193667, "16D"], +[-37.77001355, 175.2309930667, "16"], +[-37.7707174833, 175.2315508333, "17A"], +[-37.770522, 175.2311399, "17"], +[-37.7707242167, 175.23114305, "19A"], +[-37.7707819667, 175.2312548333, "19B"], +[-37.77064465, 175.2310083833, "19"], +[-37.7707811167, 175.23086505, "21"], +[-37.76945365, 175.2321731833, "1"], +[-37.7716417333, 175.23071645, "31"], +[-37.7713152833, 175.2302392167, "33"], +[-37.7714344333, 175.23011435, "35"], +[-37.77165195, 175.2302452167, "37"], +[-37.7717275167, 175.2302700167, "39"], +[-37.7693677167, 175.23173645, "2"], +[-37.7695891333, 175.2320272167, "3"], +[-37.77206165, 175.22951205, "55"], +[-37.7721705167, 175.2293934167, "57"], +[-37.77189105, 175.2305122833, "41"], +[-37.7719285667, 175.23041085, "43"], +[-37.7718548667, 175.2302536167, "45"], +[-37.7717548, 175.2301460167, "47"], +[-37.7715910667, 175.2299636167, "49"], +[-37.7719129, 175.2296665167, "53"], +[-37.7694065333, 175.2313953833, "4A"], +[-37.7724844333, 175.22870275, "99"], +[-37.7699898167, 175.2316504333, "9A"], +[-37.7702263167, 175.2319732667, "9"], +[-37.7696143, 175.2314831333, "6"], +[-37.7698689, 175.2317743333, "7"], +[-37.7702615, 175.2307641667, "16E"], +[-37.7697279167, 175.2319045667, "5"], +[-37.7696864, 175.2313968833, "6A"], +[-37.7736689, 175.2261270667, "129"], +[-37.7737395167, 175.2259909, "131"], +[-37.7738557667, 175.2258038167, "133"], +[-37.7739613167, 175.2256227333, "135"], +[-37.77607825, 175.2199681, "230"], +[-37.7761283333, 175.2197856333, "232"], +[-37.7769252333, 175.2213274167, "229"], +[-37.7709218833, 175.23072325, "23"], +[-37.77062965, 175.2303931833, "26"], +[-37.7703760333, 175.2306774333, "20"], +[-37.7712324167, 175.2308844167, "25"], +[-37.7704845167, 175.2305422667, "22"], +[-37.7702144167, 175.2303891333, "20A"], +[-37.7742976167, 175.2250553, "141"], +[-37.7697172667, 175.2309306333, "14C"], +[-37.76975535, 175.2313184333, "14A"], +[-37.7758414833, 175.2208327167, "224"], +[-37.7752361167, 175.2227710333, "212"], +[-37.8178983833, 175.3037322, "8"], +[-37.8172046, 175.3031685, "7"], +[-37.8168059, 175.3036424667, "15"], +[-37.8173098, 175.30434575, "27"], +[-37.8177191667, 175.3037075667, "12"], +[-37.8176290833, 175.3035739833, "14"], +[-37.8178455167, 175.3038263, "10"], +[-37.8171897667, 175.3042272167, "25"], +[-37.8170995667, 175.3040963833, "23"], +[-37.8173403167, 175.3040005667, "24"], +[-37.8175402333, 175.3028814833, "1"], +[-37.8174386, 175.3029925833, "3"], +[-37.8173248167, 175.3030793167, "5"], +[-37.8170944167, 175.3032846333, "9"], +[-37.81699455, 175.3034117667, "11"], +[-37.8168863, 175.3035359667, "13"], +[-37.81747025, 175.3040961333, "26"], +[-37.8172661833, 175.3038548, "22"], +[-37.817184, 175.3036444667, "20"], +[-37.8174538833, 175.3033657333, "16"], +[-37.8176215333, 175.30323305, "4"], +[-37.8177398167, 175.3031331333, "2"], +[-37.81776005, 175.3034773333, "6"], +[-37.8173356667, 175.30346305, "18"], +[-37.7848073333, 175.2349492167, "7"], +[-37.7845719, 175.2352394333, "10"], +[-37.7849197667, 175.2350957, "3"], +[-37.78491295, 175.2356053333, "4"], +[-37.7847935667, 175.2354980167, "6"], +[-37.7847111333, 175.23535275, "8"], +[-37.78476765, 175.2351766667, "9"], +[-37.7850406833, 175.2352209667, "1"], +[-37.78506745, 175.2347704333, "5"], +[-37.8222328, 175.2751118167, "18"], +[-37.82228375, 175.2756734167, "9"], +[-37.8225655833, 175.2747445167, "23"], +[-37.8226810833, 175.2749068667, "19"], +[-37.82230405, 175.2749546833, "20"], +[-37.8227074, 175.2747340833, "21"], +[-37.8223911333, 175.2747568167, "22"], +[-37.8224584333, 175.2746171833, "24"], +[-37.8219034833, 175.2757352, "10"], +[-37.8223586, 175.2755299833, "11"], +[-37.8219803, 175.2755891667, "12"], +[-37.8224403667, 175.27537745, "13"], +[-37.8220660667, 175.2754316, "14"], +[-37.8225111667, 175.27522355, "15"], +[-37.8221436167, 175.2752650833, "16"], +[-37.82262785, 175.2750672333, "17"], +[-37.8220161667, 175.2761499667, "3"], +[-37.8216615333, 175.27620285, "4"], +[-37.82210495, 175.2759924167, "5"], +[-37.8217376, 175.27604325, "6"], +[-37.8221939333, 175.2758377, "7"], +[-37.8218171833, 175.2758743167, "8"], +[-37.7753489333, 175.2259241, "16"], +[-37.7748906833, 175.2266918167, "6"], +[-37.7749162167, 175.2265875833, "8"], +[-37.7751816, 175.2265330167, "10"], +[-37.7757725167, 175.22570875, "11"], +[-37.7751941667, 175.22632215, "12"], +[-37.77579865, 175.2255194667, "13"], +[-37.77524165, 175.2261160833, "14"], +[-37.7758178, 175.2253317333, "15"], +[-37.7759336667, 175.2251260333, "17"], +[-37.7754752167, 175.2270193167, "1"], +[-37.77547635, 175.2257045833, "18"], +[-37.77578235, 175.22514585, "19"], +[-37.7754777167, 175.2254282833, "20"], +[-37.7756294333, 175.2251726, "21"], +[-37.7753069833, 175.2252256833, "22"], +[-37.7754810333, 175.22518375, "24"], +[-37.77521405, 175.2269906333, "2"], +[-37.7754547167, 175.2268424833, "3"], +[-37.7751993333, 175.2268194333, "4"], +[-37.7755951, 175.2261238167, "7"], +[-37.7757180667, 175.2259147, "9"], +[-37.8016401833, 175.3013633167, "6"], +[-37.8019350167, 175.3012387333, "7"], +[-37.8017668, 175.3010810167, "10"], +[-37.8017417, 175.3019483333, "1"], +[-37.801801, 175.3017012667, "3"], +[-37.8015914, 175.3016114, "4"], +[-37.80186115, 175.30148475, "5"], +[-37.80166015, 175.3011423333, "8"], +[-37.8018795667, 175.3011255833, "9"], +[-37.7565626333, 175.2805092167, "5"], +[-37.7567099667, 175.2813437333, "14"], +[-37.7565383167, 175.2827320167, "27"], +[-37.7566563167, 175.28276695, "29"], +[-37.75680455, 175.2827770667, "31"], +[-37.75643065, 175.2826453167, "25"], +[-37.7567838833, 175.2809871833, "10"], +[-37.756427, 175.2810317167, "11"], +[-37.7567478833, 175.2811709833, "12"], +[-37.7563790333, 175.2811872333, "13"], +[-37.7563366167, 175.2813666167, "15"], +[-37.7566507333, 175.2815223333, "16"], +[-37.7562898167, 175.2815411667, "17"], +[-37.75661135, 175.28170105, "18"], +[-37.7562463667, 175.2817380167, "19"], +[-37.7566514333, 175.28019105, "1"], +[-37.7565539167, 175.2818803, "20"], +[-37.7560674167, 175.2818233833, "21"], +[-37.75651785, 175.2820369667, "22"], +[-37.7562241667, 175.28208715, "23"], +[-37.7566079167, 175.28229005, "24"], +[-37.7563702167, 175.2829556667, "25A"], +[-37.7566096, 175.2803377, "3"], +[-37.7569146333, 175.28047085, "4"], +[-37.7568648, 175.28063325, "6"], +[-37.7565145667, 175.2806866333, "7"], +[-37.7568251333, 175.2808037833, "8"], +[-37.7564747333, 175.2808496833, "9"], +[-37.7566942667, 175.2829427, "29A"], +[-37.7884597, 175.2998148333, "17"], +[-37.7885633167, 175.2997837, "14"], +[-37.78865865, 175.29988055, "12"], +[-37.7884082333, 175.3011752167, "1A"], +[-37.7886617833, 175.2999647, "10"], +[-37.7883508167, 175.3000185833, "13"], +[-37.7884165833, 175.2998870333, "15"], +[-37.78833915, 175.3010191833, "1"], +[-37.7885807167, 175.3007610833, "2"], +[-37.7882985167, 175.3008130167, "3"], +[-37.7885649333, 175.3005433667, "4"], +[-37.7885705333, 175.3003488, "6"], +[-37.7882786667, 175.3005899833, "7"], +[-37.7886341333, 175.3001318, "8"], +[-37.7882866667, 175.3003988333, "9"], +[-37.7883161, 175.3002527333, "11"], +[-37.7337239167, 175.2400006167, "6"], +[-37.7333063667, 175.2402769, "2"], +[-37.7334329833, 175.2401799667, "4"], +[-37.8185574667, 175.2926854167, "66"], +[-37.8220104833, 175.2910288167, "16"], +[-37.8217024833, 175.2907303333, "17"], +[-37.8219501, 175.2904352667, "13"], +[-37.8220982167, 175.29089555, "14"], +[-37.8188308667, 175.2930393667, "60"], +[-37.8192822667, 175.2923245167, "57"], +[-37.8223743667, 175.2902947167, "10"], +[-37.8220216, 175.2902104833, "11"], +[-37.8221767, 175.2907787167, "12"], +[-37.8218322167, 175.2906026333, "15"], +[-37.8224623167, 175.2892640333, "1"], +[-37.82155845, 175.29084585, "19"], +[-37.8217600833, 175.2912247667, "20"], +[-37.8214159667, 175.2909428667, "21"], +[-37.8216208833, 175.2913322667, "22"], +[-37.82124195, 175.2910348667, "23"], +[-37.8215059333, 175.29141835, "24"], +[-37.8213405, 175.29147065, "26"], +[-37.8211846667, 175.2915263667, "28"], +[-37.82085575, 175.2911432, "27"], +[-37.8226829333, 175.2896450167, "2"], +[-37.8206963833, 175.2911613333, "29"], +[-37.8210090167, 175.2915565333, "30"], +[-37.82054405, 175.2908157, "31"], +[-37.8208612167, 175.29161125, "32"], +[-37.8204656667, 175.2908849667, "33"], +[-37.8204377, 175.2917504, "34"], +[-37.8204899167, 175.2912312333, "35"], +[-37.8203019667, 175.2917939, "36"], +[-37.8203509, 175.29127665, "37"], +[-37.8201848167, 175.2918672667, "38"], +[-37.8223718667, 175.2893775667, "3"], +[-37.82019875, 175.2909805333, "39"], +[-37.8200267, 175.2920168167, "40"], +[-37.8201734833, 175.2913390667, "41"], +[-37.8201847333, 175.2923215833, "42"], +[-37.8200447333, 175.29142585, "43"], +[-37.8198928, 175.29151745, "45"], +[-37.8201148667, 175.2924077, "44"], +[-37.81988975, 175.2921868333, "46"], +[-37.81980425, 175.2916601333, "47"], +[-37.8197790667, 175.2923319667, "48"], +[-37.8225809833, 175.28970935, "4"], +[-37.8222428, 175.2895472, "5"], +[-37.81969735, 175.2917742333, "49"], +[-37.8196737667, 175.2924403833, "50"], +[-37.8195870833, 175.29190765, "51"], +[-37.8194911833, 175.2920655833, "53"], +[-37.8193912833, 175.2921859, "55"], +[-37.8189661333, 175.2929632167, "58"], +[-37.8224752, 175.2899596667, "6"], +[-37.8190038833, 175.2925274, "61"], +[-37.8187593, 175.2929015667, "62"], +[-37.8186330167, 175.29279665, "64"], +[-37.8224110333, 175.29014365, "8"], +[-37.8220458667, 175.2900327, "9"], +[-37.8194077, 175.2927135833, "52"], +[-37.8218987667, 175.2911202667, "18"], +[-37.8191629, 175.2924662, "59"], +[-37.8192614, 175.29286795, "54"], +[-37.81912265, 175.2929297167, "56"], +[-37.8164463333, 175.2867150833, "18B"], +[-37.81710065, 175.2857040167, "17A"], +[-37.8167218, 175.2862260667, "21A"], +[-37.8167739667, 175.2860255667, "21B"], +[-37.81645595, 175.2861546167, "25B"], +[-37.8172841833, 175.28742845, "10A"], +[-37.8171586833, 175.2882127667, "6A"], +[-37.8164323, 175.2861675667, "25A"], +[-37.81676205, 175.2867380667, "16"], +[-37.8176062333, 175.28793385, "4A"], +[-37.8179375833, 175.2871205333, "5A"], +[-37.8166304833, 175.2868848833, "16A"], +[-37.8163655833, 175.28633665, "22"], +[-37.8174286, 175.2873784667, "10"], +[-37.8175270333, 175.28686835, "11"], +[-37.8173066167, 175.2872053333, "12"], +[-37.8169016833, 175.2868141667, "14"], +[-37.8170584667, 175.2864789833, "15"], +[-37.8171494333, 175.2859387, "17"], +[-37.81657095, 175.2865869333, "18"], +[-37.8168968667, 175.2863324833, "19"], +[-37.8181138, 175.28770995, "1"], +[-37.8163936333, 175.2865357667, "20"], +[-37.81658125, 175.28612615, "23"], +[-37.818001, 175.2875586167, "3"], +[-37.8177324833, 175.2877923333, "4"], +[-37.8178507833, 175.28734355, "5"], +[-37.8172855167, 175.2880215167, "6"], +[-37.8177421333, 175.2871890833, "7"], +[-37.81755905, 175.2875718667, "8"], +[-37.8177879833, 175.28673905, "9A"], +[-37.8176322167, 175.28704235, "9"], +[-37.8174261667, 175.28779585, "8A"], +[-37.7937283, 175.2332655, "9"], +[-37.7934104833, 175.2336623833, "5A"], +[-37.7935341167, 175.23093285, "54"], +[-37.79360695, 175.2316702833, "47"], +[-37.7934691333, 175.23143785, "45"], +[-37.7934718167, 175.2306730167, "52"], +[-37.7927847, 175.2299605833, "42"], +[-37.7932028833, 175.2337235167, "5"], +[-37.79373405, 175.2334298833, "7A"], +[-37.7922467167, 175.23299275, "10"], +[-37.79222645, 175.2327869, "12"], +[-37.7929096667, 175.2332294, "13"], +[-37.7922351167, 175.2325615, "14"], +[-37.79226005, 175.23233145, "16"], +[-37.7925999167, 175.2330451, "17"], +[-37.7922603167, 175.2321160333, "18"], +[-37.79221955, 175.23191475, "20"], +[-37.7925791833, 175.23285975, "19"], +[-37.7925874333, 175.2326496833, "21"], +[-37.7921556667, 175.2310405, "26"], +[-37.7921713667, 175.2316772333, "22"], +[-37.7921439167, 175.2314199167, "24"], +[-37.7925405, 175.2317453167, "27"], +[-37.79217925, 175.23081435, "28"], +[-37.7922329667, 175.2305947333, "30"], +[-37.7924838333, 175.2311175667, "31"], +[-37.7922592167, 175.2303791, "32"], +[-37.7925185, 175.2308481667, "33"], +[-37.7922012833, 175.2301722167, "34"], +[-37.7926015333, 175.2305374667, "35"], +[-37.7921496167, 175.22992885, "36"], +[-37.7927878833, 175.2303568667, "37"], +[-37.7923691667, 175.2300026167, "38"], +[-37.79308, 175.230449, "39"], +[-37.7924763833, 175.2314919, "29"], +[-37.7925482667, 175.2299991167, "40"], +[-37.7929983667, 175.2299651, "44"], +[-37.7931873333, 175.2300221, "46"], +[-37.79330715, 175.2301454333, "48"], +[-37.7934068, 175.2303720833, "50"], +[-37.7933124167, 175.2312370667, "43"], +[-37.7937471667, 175.2316955, "49"], +[-37.7936609, 175.2311744833, "56"], +[-37.7922951833, 175.2332149167, "8"], +[-37.7931916167, 175.2307012333, "41"], +[-37.7938293667, 175.2314241, "58"], +[-37.79357415, 175.2335661, "7"], +[-37.79353325, 175.2333724667, "9A"], +[-37.7931620833, 175.23351865, "11"], +[-37.7933698333, 175.2334575167, "11A"], +[-37.7939342167, 175.2317498167, "60"], +[-37.79281835, 175.2337525667, "6"], +[-37.7426473833, 175.2585464167, "1"], +[-37.74287395, 175.2584392833, "2"], +[-37.7431529333, 175.2583744333, "3"], +[-37.7430916833, 175.2582244167, "4"], +[-37.7430203333, 175.2580741, "5"], +[-37.7428386333, 175.2580883333, "6"], +[-37.7426406667, 175.2582312333, "7"], +[-37.7384859833, 175.2653594833, "8"], +[-37.7386400333, 175.2649368833, "4"], +[-37.7383449833, 175.2657236, "12"], +[-37.7384114667, 175.2655538833, "10"], +[-37.73838565, 175.2650235833, "3"], +[-37.7382679167, 175.2652950167, "5"], +[-37.73857505, 175.26515285, "6"], +[-37.7381662667, 175.2655537833, "7"], +[-37.7884761167, 175.2563964167, "5A"], +[-37.7887902167, 175.2563972333, "3"], +[-37.78890635, 175.2572581833, "6"], +[-37.78860105, 175.25723005, "8"], +[-37.7886893, 175.25677205, "10"], +[-37.7888754833, 175.2567783667, "4"], +[-37.7886617, 175.2564838167, "5"], +[-37.7886331833, 175.2566317333, "7"], +[-37.7651320833, 175.3090828333, "13A"], +[-37.7661713, 175.3091481667, "27B"], +[-37.7653159333, 175.3089753833, "15"], +[-37.7647772333, 175.3082769167, "3A"], +[-37.7649597833, 175.3083474833, "3"], +[-37.7653123667, 175.3086180833, "4"], +[-37.7646229167, 175.30886895, "9B"], +[-37.76586785, 175.3093909667, "23A"], +[-37.76596155, 175.3089867667, "29"], +[-37.76498345, 175.308812, "11"], +[-37.7648124833, 175.3081643667, "1A"], +[-37.7646599, 175.3081011167, "1B"], +[-37.7646457333, 175.3081996833, "1C"], +[-37.7650004833, 175.3082484333, "1"], +[-37.7649530167, 175.3085683, "5"], +[-37.7647698333, 175.30872545, "7A"], +[-37.7646843167, 175.3087798167, "7"], +[-37.7647681667, 175.3089254833, "9A"], +[-37.7652645333, 175.30834465, "2A"], +[-37.7654294833, 175.30841905, "2B"], +[-37.7662428, 175.3089646, "31A"], +[-37.7663027, 175.3087828333, "33A"], +[-37.7661010167, 175.3086839333, "33"], +[-37.7655105833, 175.3087282833, "6"], +[-37.76565105, 175.3087859333, "8"], +[-37.7654506833, 175.3090603667, "17"], +[-37.7660375167, 175.30886145, "31"], +[-37.7660090333, 175.3094991833, "25A"], +[-37.7661160333, 175.3094613333, "25"], +[-37.76583675, 175.3086020667, "10A"], +[-37.7653032667, 175.3091708833, "15A"], +[-37.7651693167, 175.30891385, "13"], +[-37.7656923333, 175.3084708167, "10B"], +[-37.7660970667, 175.3093560167, "27A"], +[-37.7655220167, 175.30923725, "19B"], +[-37.7657113833, 175.3093268333, "21"], +[-37.7655822667, 175.3090773833, "19"], +[-37.7658228333, 175.3090982167, "23B"], +[-37.8185891333, 175.2729906833, "23"], +[-37.8188176833, 175.2720097167, "9"], +[-37.8189332, 175.2723561667, "12"], +[-37.8187370333, 175.2721644167, "11"], +[-37.81901735, 175.27219825, "10"], +[-37.8184034, 175.2720990833, "13"], +[-37.8188628167, 175.2725239833, "14"], +[-37.8186412167, 175.2723697333, "15"], +[-37.8188634, 175.27276295, "16"], +[-37.8186035, 175.2725907167, "17"], +[-37.8191431333, 175.2714033, "1"], +[-37.8187181333, 175.2730410167, "20"], +[-37.8185338167, 175.2728522833, "21"], +[-37.81936005, 175.2715594333, "2"], +[-37.8190535833, 175.2715509833, "3"], +[-37.8192755333, 175.2717247167, "4"], +[-37.8183569, 175.2727065167, "19"], +[-37.8191007833, 175.2720398167, "8"], +[-37.8188985667, 175.27185305, "7"], +[-37.8191913333, 175.2718850333, "6"], +[-37.8189749667, 175.2717165833, "5"], +[-37.8188243167, 175.27295955, "18"], +[-37.8031621167, 175.2994559167, "55"], +[-37.8032612833, 175.2990792333, "53A"], +[-37.8032201667, 175.29925355, "53"], +[-37.8033004167, 175.29790675, "37C"], +[-37.8030694167, 175.2978910667, "37E"], +[-37.8033023833, 175.2987903833, "51"], +[-37.8031541333, 175.2989066167, "51A"], +[-37.80336775, 175.2985367833, "49"], +[-37.80405205, 175.2954821833, "17"], +[-37.80384495, 175.2965008, "27"], +[-37.80417975, 175.2949501667, "11"], +[-37.8034925, 175.29791315, "37A"], +[-37.80449065, 175.2936619333, "1A"], +[-37.80424495, 175.2935761167, "1B"], +[-37.8044106667, 175.2939082167, "1"], +[-37.8042381667, 175.2947300833, "9"], +[-37.8041301833, 175.2952941167, "15A"], +[-37.8041597833, 175.2951504333, "15"], +[-37.8040016833, 175.29566815, "19"], +[-37.8039763833, 175.2958354667, "21A"], +[-37.8039497333, 175.2959840333, "21B"], +[-37.8039154167, 175.29614775, "25A"], +[-37.8038831333, 175.29629405, "25B"], +[-37.8035519, 175.2977042, "35"], +[-37.8031931833, 175.2982488, "43B"], +[-37.8029592833, 175.2980215167, "43C"], +[-37.80293685, 175.2981377167, "43D"], +[-37.8034240333, 175.2982442833, "43"], +[-37.80311375, 175.2983712, "47A"], +[-37.8029358, 175.2986576833, "47B"], +[-37.8034714167, 175.2980145167, "37B"], +[-37.8032026667, 175.29786685, "37D"], +[-37.8030411167, 175.2977308333, "37F"], +[-37.7691297, 175.2547617167, "19"], +[-37.7694709333, 175.25458245, "15"], +[-37.7690203333, 175.2546199333, "21"], +[-37.7686696167, 175.2555757667, "16A"], +[-37.7689302833, 175.2554444167, "16B"], +[-37.7685056333, 175.2552806667, "22"], +[-37.7689139333, 175.25445615, "25"], +[-37.7673435, 175.2537715167, "56"], +[-37.7672868333, 175.2537208333, "58"], +[-37.7696064333, 175.2543907667, "15B"], +[-37.7699106333, 175.2546379833, "11A"], +[-37.7687524333, 175.25489785, "24"], +[-37.7692558833, 175.2549383833, "13"], +[-37.7697519167, 175.2547474, "11"], +[-37.7694051667, 175.25512765, "9"], +[-37.7658232167, 175.2522320667, "100"], +[-37.7654765833, 175.2519032333, "101"], +[-37.7674584333, 175.2537714333, "54"], +[-37.7646693, 175.2513597, "89"], +[-37.7693010667, 175.2541542667, "23"], +[-37.7686284667, 175.2547442, "26"], +[-37.7678245167, 175.2536241667, "44"], +[-37.76770885, 175.2534703, "50"], +[-37.76738775, 175.2536738, "60"], +[-37.76846765, 175.2538996333, "31"], +[-37.7684157667, 175.2544614, "36"], +[-37.7685061167, 175.2545851833, "28"], +[-37.7674115167, 175.2530916, "66"], +[-37.7675922333, 175.2532941333, "62"], +[-37.7674730333, 175.2535378833, "64"], +[-37.7699264167, 175.2547246333, "7A"], +[-37.7698364, 175.2548453833, "7"], +[-37.7695479, 175.2549469333, "9A"], +[-37.769256, 175.2555568, "10"], +[-37.76914635, 175.2554059, "12"], +[-37.7687897833, 175.2557549, "14"], +[-37.7690285, 175.2552382, "16"], +[-37.7686320333, 175.2554526, "18"], +[-37.7694079833, 175.2557441667, "4"], +[-37.7696915667, 175.2549941, "5B"], +[-37.7695413, 175.2553138167, "5"], +[-37.7691171333, 175.2560218333, "6"], +[-37.7690465, 175.2559393667, "8"], +[-37.7688768833, 175.2550498833, "20"], +[-37.7693935667, 175.2545320833, "17"], +[-37.7678080667, 175.2529399833, "61"], +[-37.7696915167, 175.2555184167, "3"], +[-37.74479415, 175.2451375667, "2"], +[-37.74482105, 175.2447060833, "3"], +[-37.74467455, 175.2446198, "5"], +[-37.7444851333, 175.244499, "7"], +[-37.7444306667, 175.24492245, "8"], +[-37.74445585, 175.244702, "9"], +[-37.7445713667, 175.2451632667, "4"], +[-37.7443962333, 175.2451106167, "6"], +[-37.74493515, 175.2448225333, "1"], +[-37.72638155, 175.2529728, "16"], +[-37.7258118833, 175.2534765667, "28"], +[-37.7262808667, 175.252247, "11"], +[-37.72644525, 175.2530600667, "12"], +[-37.7265504833, 175.2527981833, "10"], +[-37.7265639833, 175.2536798167, "38"], +[-37.7260120333, 175.2539842333, "39"], +[-37.7258274, 175.2542836167, "37"], +[-37.7270298833, 175.25335885, "54"], +[-37.7271367333, 175.2538305167, "50"], +[-37.7270592, 175.2521585, "1"], +[-37.7261435667, 175.2522427, "13"], +[-37.7262989667, 175.2532065, "14A"], +[-37.7263692333, 175.2532226667, "14"], +[-37.7260135667, 175.2523363833, "15"], +[-37.7258691, 175.2524698833, "17"], +[-37.7264505333, 175.25274935, "18"], +[-37.7257192167, 175.2526265833, "19"], +[-37.726191, 175.2526130333, "20"], +[-37.7255922, 175.2527953667, "21"], +[-37.7255525333, 175.2536181167, "29"], +[-37.7259743667, 175.2535912333, "30"], +[-37.7256874167, 175.2537433, "31"], +[-37.7261325, 175.2536942833, "32"], +[-37.7258360333, 175.2538576167, "33"], +[-37.7265003167, 175.2535617833, "34A"], +[-37.7263377333, 175.2538608333, "34"], +[-37.7257562, 175.2542009667, "35"], +[-37.7266806, 175.2535873, "36A"], +[-37.72597235, 175.25279015, "22"], +[-37.7254744667, 175.2529586333, "23"], +[-37.7258455, 175.2529476167, "24"], +[-37.7253980333, 175.2531175167, "25"], +[-37.7256570167, 175.2532122833, "26"], +[-37.7273085333, 175.2524335, "4"], +[-37.7268799667, 175.2543003833, "46"], +[-37.7270265, 175.2540746833, "48"], +[-37.7269277833, 175.2546533, "49"], +[-37.7270535833, 175.2545478333, "51"], +[-37.7271422667, 175.2535566833, "52"], +[-37.7271715833, 175.2543674, "53"], +[-37.7264477667, 175.2539234167, "40"], +[-37.7261786333, 175.2541221667, "41"], +[-37.72656085, 175.25408895, "42"], +[-37.7262936333, 175.2543276833, "43"], +[-37.7267379333, 175.2540138, "44"], +[-37.72644235, 175.25443605, "45"], +[-37.7269351167, 175.2525084, "5"], +[-37.7272142, 175.2526310833, "6"], +[-37.7274552333, 175.2543765333, "55"], +[-37.7269359333, 175.2531772167, "56"], +[-37.7272952333, 175.2541409167, "57"], +[-37.727377, 175.25394765, "59"], +[-37.7274177833, 175.2537415, "61"], +[-37.7274169333, 175.2535628167, "63"], +[-37.7273716667, 175.2533956667, "65"], +[-37.7275705, 175.2531297833, "67"], +[-37.7272359, 175.2531668167, "73"], +[-37.7276093667, 175.2530517167, "69"], +[-37.7275469167, 175.2529896, "71"], +[-37.7271641167, 175.2530039833, "75"], +[-37.7266170667, 175.2524714, "7"], +[-37.72675275, 175.2528567833, "8"], +[-37.7264210667, 175.2523321667, "9"], +[-37.7270028667, 175.2523099667, "3"], +[-37.7266389833, 175.2534962667, "36"], +[-37.8127111833, 175.27181905, "11"], +[-37.8127075333, 175.2726675667, "12"], +[-37.8135147333, 175.2725060833, "1"], +[-37.8125572833, 175.2725671167, "14"], +[-37.8127058833, 175.2722130167, "9"], +[-37.8125326167, 175.2720900667, "13A"], +[-37.8124332333, 175.2720131833, "13B"], +[-37.8123556167, 175.2728018, "16A"], +[-37.812419, 175.2724571167, "16"], +[-37.8133830833, 175.2724769667, "3"], +[-37.8133231667, 175.2728632167, "4"], +[-37.8128419833, 175.2722651167, "7"], +[-37.8130082833, 175.27274865, "8"], +[-37.8131699, 175.2728124833, "6"], +[-37.8128441833, 175.2726975167, "10"], +[-37.78259495, 175.2750159167, "513"], +[-37.79280425, 175.28436125, "121"], +[-37.7959265167, 175.2873566167, "33A"], +[-37.79614295, 175.2870485333, "33"], +[-37.79615225, 175.2867789667, "39A"], +[-37.7962287667, 175.2868245833, "39B"], +[-37.79631195, 175.28689985, "39C"], +[-37.7963756, 175.2868296333, "39D"], +[-37.796709, 175.2871176, "1/13-5/13"], +[-37.79680785, 175.2869280333, "6/11-10/11"], +[-37.794538, 175.2851591333, "73A"], +[-37.7947250667, 175.2861420333, "61A"], +[-37.7948944333, 175.2859249333, "61D"], +[-37.79483695, 175.2860171833, "61C"], +[-37.7947767333, 175.2860972667, "61B"], +[-37.7944546667, 175.2859349833, "67A"], +[-37.7945454833, 175.2858206167, "67B"], +[-37.794621, 175.2856668167, "67C"], +[-37.7949316667, 175.28727655, "48"], +[-37.7948607167, 175.2869870833, "50"], +[-37.7947676333, 175.2871243167, "52"], +[-37.79458005, 175.2870854167, "54A"], +[-37.7832133667, 175.2761756333, "480"], +[-37.7899420167, 175.2816932167, "239"], +[-37.79458605, 175.2860465667, "1/65-7/65"], +[-37.7906890333, 175.282321, "191"], +[-37.7907161667, 175.2830682333, "192"], +[-37.7918945, 175.283474, "163"], +[-37.7953897, 175.2868085333, "51"], +[-37.7832683333, 175.2755964667, "481"], +[-37.7953888667, 175.2874376833, "44C"], +[-37.7943597667, 175.2853713167, "1/73-4/73"], +[-37.78346505, 175.2763593167, "468"], +[-37.7835294167, 175.2758318833, "473"], +[-37.7833471167, 175.27629745, "474"], +[-37.7834597833, 175.27573265, "475"], +[-37.7830705667, 175.2760605667, "486"], +[-37.79328875, 175.2848438667, "101"], +[-37.7931949833, 175.2847467167, "105"], +[-37.793073, 175.2846100167, "109"], +[-37.7914041, 175.2829469667, "173"], +[-37.79125975, 175.2828030667, "181"], +[-37.7903443333, 175.28153535, "225"], +[-37.79050925, 175.2812864, "227"], +[-37.7901267333, 175.28179985, "229"], +[-37.78982085, 175.2815927167, "241"], +[-37.78579475, 175.2784806667, "370"], +[-37.7929478833, 175.2852286833, "116"], +[-37.7957566833, 175.28782705, "34"], +[-37.7966619167, 175.2874924167, "15"], +[-37.7963551667, 175.2883790333, "2"], +[-37.7959266167, 175.2879862667, "24"], +[-37.7963838167, 175.2877565167, "21"], +[-37.79424785, 175.2863866667, "60"], +[-37.79418765, 175.2855028, "75"], +[-37.7903883667, 175.2827680667, "204-208"], +[-37.78997135, 175.2817183833, "237"], +[-37.7900157667, 175.2817723167, "233"], +[-37.7905174, 175.28215575, "211-219"], +[-37.7908188, 175.2821258, "193"], +[-37.7813311333, 175.2745823333, "558"], +[-37.7812757667, 175.2745095, "560"], +[-37.79689015, 175.2873997833, "7A"], +[-37.7970407333, 175.2876060833, "7"], +[-37.7949832667, 175.28710265, "46"], +[-37.78544715, 175.2764999167, "419"], +[-37.7852926167, 175.2768069667, "415"], +[-37.7850926833, 175.2772295833, "413"], +[-37.7846991167, 175.2774283, "420"], +[-37.7944069167, 175.2865306333, "58"], +[-37.7910577167, 175.2826224667, "189"], +[-37.7947273667, 175.2868676833, "56"], +[-37.78999365, 175.2817470333, "235"], +[-37.7969000667, 175.2871996333, "11"], +[-37.79006485, 175.2824623667, "218A"], +[-37.7899602, 175.2823622333, "218B"], +[-37.7890550667, 175.28181585, "238A"], +[-37.7891922833, 175.2815249, "236A"], +[-37.7954478333, 175.2874982333, "44B"], +[-37.7825, 175.27493215, "517"], +[-37.7823822833, 175.27479515, "521"], +[-37.78225, 175.27467655, "527"], +[-37.7821130333, 175.2745573667, "533"], +[-37.78182555, 175.2748862167, "538"], +[-37.7817011833, 175.2747569667, "544"], +[-37.7815703333, 175.27462555, "550"], +[-37.7814354, 175.2745041667, "556"], +[-37.7813027333, 175.2743873333, "562"], +[-37.7811705167, 175.2742609667, "568"], +[-37.78105585, 175.2741613667, "574"], +[-37.7849421333, 175.2778958833, "408"], +[-37.7848573333, 175.2777104667, "416"], +[-37.78427125, 175.2765098, "441"], +[-37.7841350333, 175.2763926667, "443"], +[-37.7840148167, 175.2769190833, "444"], +[-37.7838772667, 175.2767418167, "450"], +[-37.7843229667, 175.27595805, "453"], +[-37.7842300167, 175.2758522667, "455"], +[-37.7836094833, 175.2764926333, "456"], +[-37.7838807167, 175.27614775, "457"], +[-37.7838458, 175.2760783667, "461"], +[-37.78367445, 175.2759549667, "467"], +[-37.7822222, 175.2752525167, "520"], +[-37.7925763, 175.2841326833, "131"], +[-37.7924338667, 175.2840303, "139"], +[-37.7924399667, 175.2847098833, "140"], +[-37.7923698833, 175.2839572167, "143"], +[-37.7921753667, 175.2837214, "157"], +[-37.7920367167, 175.28360075, "160"], +[-37.7902107667, 175.2825853667, "212"], +[-37.78596805, 175.2780075, "373"], +[-37.7855708167, 175.27830035, "380"], +[-37.7856750833, 175.2777512333, "383"], +[-37.7854638333, 175.27820575, "386"], +[-37.7855427, 175.2773486833, "389"], +[-37.7853552833, 175.2781129333, "392"], +[-37.78522885, 175.2780093833, "398"], +[-37.7853391167, 175.2774235333, "401"], +[-37.7851029833, 175.2779023333, "404"], +[-37.7852113667, 175.2773292333, "409"], +[-37.7937946167, 175.285249, "83"], +[-37.7942539667, 175.2857381833, "73"], +[-37.7968206333, 175.2872069833, "13"], +[-37.7961194, 175.2881638833, "18"], +[-37.7966958333, 175.2880770833, "1"], +[-37.79577255, 175.2883424833, "24A"], +[-37.7962276333, 175.2876029833, "25"], +[-37.7960741667, 175.287478, "29"], +[-37.79579255, 175.28724235, "35A"], +[-37.7958290833, 175.2871405833, "35B"], +[-37.7960096833, 175.2868913833, "35"], +[-37.7956155, 175.2877106667, "36"], +[-37.7949997833, 175.2864524, "53"], +[-37.7965799667, 175.2879543333, "3"], +[-37.7959693, 175.2866696833, "45"], +[-37.7956416333, 175.2870491333, "47"], +[-37.795506, 175.2869145833, "49"], +[-37.7969481, 175.2872652333, "9"], +[-37.79483525, 175.286269, "57"], +[-37.7854869333, 175.2776099833, "387"], +[-37.7948382667, 175.287328, "48A"], +[-37.7947634, 175.2872543, "52A"], +[-37.7946261833, 175.2869685333, "56B"], +[-37.79465635, 175.287154, "54B"], +[-37.7967772, 175.2875643833, "5A"], +[-37.79436565, 175.2858342167, "71"], +[-37.79605885, 175.28676545, "39"], +[-37.7893190667, 175.2816462167, "236"], +[-37.788961, 175.2818422, "238B"], +[-37.79407325, 175.2862139667, "64"], +[-37.7969117333, 175.2877104833, "5"], +[-37.7955101, 175.28755225, "44A"], +[-37.7633870667, 175.30764625, "3"], +[-37.7634189333, 175.3072660167, "4"], +[-37.7635646333, 175.3076893667, "5"], +[-37.7635355667, 175.3073534167, "6"], +[-37.7635334167, 175.3075378, "7"], +[-37.76371365, 175.3073980667, "9"], +[-37.80823235, 175.2806729333, "4"], +[-37.8081794167, 175.2809444833, "10"], +[-37.8081524167, 175.2810707667, "10A"], +[-37.8082062333, 175.2807860833, "8"], +[-37.80821755, 175.2807300167, "6"], +[-37.8082453333, 175.2806123167, "2"], +[-37.8069351833, 175.2847857, "43A"], +[-37.8072253667, 175.2856537, "49"], +[-37.8077600333, 175.2828727833, "28"], +[-37.8078335333, 175.2828966, "28A"], +[-37.8078945, 175.2829092667, "28B"], +[-37.8079532667, 175.2829272, "28C"], +[-37.8080099667, 175.28293985, "28D"], +[-37.807611, 175.2853353167, "52B"], +[-37.8077919167, 175.2853187, "52D"], +[-37.8077008833, 175.2853289833, "52C"], +[-37.8077046, 175.2854036333, "54C"], +[-37.80751795, 175.2853415333, "52A"], +[-37.8075245, 175.28543225, "54A"], +[-37.8077967167, 175.2853920667, "54D"], +[-37.80807475, 175.2813269667, "12"], +[-37.80750205, 175.2824757667, "19"], +[-37.8073771833, 175.2830780667, "25"], +[-37.8080858167, 175.2827805, "26A"], +[-37.8075834833, 175.2836115667, "36A"], +[-37.8077392, 175.2836431833, "36"], +[-37.80747195, 175.2846974833, "46"], +[-37.8072296333, 175.28583135, "51"], +[-37.8077909833, 175.2826861667, "26"], +[-37.8074651667, 175.2826662833, "21A-21D"], +[-37.8076063833, 175.2818596833, "13"], +[-37.80799905, 175.2816403167, "14A"], +[-37.8075909167, 175.2820662667, "15"], +[-37.8079776, 175.2817612, "16"], +[-37.8075381333, 175.28227935, "17"], +[-37.8080237167, 175.2815279, "14"], +[-37.8078732833, 175.2822812333, "22"], +[-37.8074140667, 175.2828746833, "23"], +[-37.8081174333, 175.28255625, "24A"], +[-37.8078328167, 175.2824813, "24"], +[-37.8073252167, 175.2832810167, "27"], +[-37.8070125333, 175.2841188667, "37A"], +[-37.8071880167, 175.2840839333, "37"], +[-37.8072906667, 175.2834651667, "29"], +[-37.8080076, 175.2831110167, "30A"], +[-37.8077243333, 175.2830115667, "30"], +[-37.8079653167, 175.283358, "32A"], +[-37.80767735, 175.2832265667, "32"], +[-37.8076285667, 175.2834202, "34"], +[-37.8077437833, 175.2838050167, "38"], +[-37.80715465, 175.2843095667, "39"], +[-37.8075064833, 175.2840084667, "40A"], +[-37.8076621333, 175.2839710333, "40"], +[-37.8074715333, 175.2842447667, "42"], +[-37.80692725, 175.2845653, "41A"], +[-37.80715145, 175.284542, "41"], +[-37.8071556333, 175.2847694333, "43"], +[-37.8074684167, 175.2844822, "44"], +[-37.8074992333, 175.2850995167, "50"], +[-37.8076161667, 175.2848987333, "48B"], +[-37.8071722333, 175.2849876667, "45"], +[-37.8074808, 175.28490725, "48"], +[-37.8076133667, 175.2854245667, "54B"], +[-37.8079094167, 175.2821163, "1/20-6/20"], +[-37.8079400167, 175.28192225, "1/18-6/18"], +[-37.800138, 175.2833794167, "47"], +[-37.8000834833, 175.2832289667, "1/47"], +[-37.8002690833, 175.28326385, "2/47"], +[-37.8013863167, 175.2817746833, "20A"], +[-37.8011461833, 175.2825054, "1/29-3/29"], +[-37.8006809833, 175.2817651833, "28A"], +[-37.8022960833, 175.2817401, "14"], +[-37.8024996667, 175.28249065, "9A"], +[-37.8024716667, 175.2817447667, "10"], +[-37.8029263, 175.2817514333, "4"], +[-37.8030842167, 175.2817451833, "2"], +[-37.8027797833, 175.2817384, "6"], +[-37.8026305833, 175.28173695, "8"], +[-37.8017431333, 175.28296755, "23B"], +[-37.8007156667, 175.28235295, "28"], +[-37.801326, 175.2818316333, "20"], +[-37.8011957333, 175.2818262833, "22A"], +[-37.8012258333, 175.2817737167, "22"], +[-37.8019500833, 175.2821509167, "21"], +[-37.8017472, 175.2826355667, "23A"], +[-37.8006969667, 175.2827891833, "39"], +[-37.7998604, 175.2824447333, "40"], +[-37.8005626833, 175.2827837167, "41"], +[-37.8029786333, 175.2825528333, "3A"], +[-37.8029862333, 175.2821749667, "3"], +[-37.8014884, 175.2822801167, "25B"], +[-37.8013269333, 175.2823377333, "27A"], +[-37.8008535167, 175.28228415, "26"], +[-37.8010338167, 175.2821131667, "24"], +[-37.7996808167, 175.2824612, "44"], +[-37.7999780833, 175.283579, "49"], +[-37.7997061, 175.2820928167, "42"], +[-37.8014229667, 175.28298515, "27"], +[-37.8023605667, 175.2821550667, "11"], +[-37.80241285, 175.28269865, "13A"], +[-37.8022694333, 175.2826705667, "13"], +[-37.80216605, 175.2826872, "15"], +[-37.8020978333, 175.2817296333, "16"], +[-37.8021741167, 175.2821684667, "17"], +[-37.8019064167, 175.2817173167, "18"], +[-37.8020506167, 175.2821630667, "19"], +[-37.8031603167, 175.2821613667, "1"], +[-37.8017770167, 175.2821327333, "23"], +[-37.8014923167, 175.2826279, "25A"], +[-37.80163255, 175.2821528833, "25"], +[-37.79999855, 175.2837167667, "51"], +[-37.800586, 175.2823634333, "30"], +[-37.8010115333, 175.28261215, "31"], +[-37.8003543167, 175.2821261667, "32A"], +[-37.8004556, 175.28241815, "32"], +[-37.8009934833, 175.28304355, "33"], +[-37.8002249167, 175.2821645, "34B"], +[-37.8002922667, 175.2823935333, "34"], +[-37.80093695, 175.28330955, "35"], +[-37.8001505333, 175.2824115833, "36"], +[-37.8008203667, 175.2827665667, "37"], +[-37.8000016, 175.2824349, "38"], +[-37.80041625, 175.2827918667, "43"], +[-37.8002194333, 175.2828231833, "45"], +[-37.8028147833, 175.28217015, "5"], +[-37.80265595, 175.2821752167, "7"], +[-37.8025020333, 175.2821736, "9"], +[-37.8018811833, 175.28238065, "21A"], +[-37.7534513, 175.2813934167, "4"], +[-37.7534957667, 175.2812067833, "2"], +[-37.7531445167, 175.2812376333, "1"], +[-37.75317925, 175.2810935667, "3"], +[-37.7293643167, 175.26850065, "1"], +[-37.7289674, 175.2692552333, "18"], +[-37.7292945833, 175.2692386333, "14"], +[-37.7294585833, 175.26925975, "12"], +[-37.7291445667, 175.2692456333, "16"], +[-37.7296689833, 175.26865955, "2"], +[-37.7293573833, 175.26866705, "3"], +[-37.72882355, 175.268828, "9"], +[-37.7287860333, 175.2690224667, "11"], +[-37.7296136, 175.26929165, "10"], +[-37.7287976667, 175.26920395, "20"], +[-37.7296656833, 175.2688322833, "4"], +[-37.7286885667, 175.2691616333, "22"], +[-37.72913895, 175.26884415, "5"], +[-37.7297918167, 175.2692282833, "8"], +[-37.7289618833, 175.2688040167, "7"], +[-37.729661, 175.26906265, "6"], +[-37.79670775, 175.3231805167, "29A"], +[-37.79714545, 175.3239733, "26A"], +[-37.7967205333, 175.32295665, "27A"], +[-37.7985325167, 175.3246017333, "4"], +[-37.7984688333, 175.3240475333, "5"], +[-37.7964811167, 175.3247495333, "45"], +[-37.7965301167, 175.3245330333, "43"], +[-37.7973696667, 175.3238052, "22"], +[-37.7967722833, 175.3236215, "33"], +[-37.7983645, 175.3239296833, "7"], +[-37.7976478333, 175.3239255833, "18"], +[-37.7975318167, 175.32348485, "19"], +[-37.7977905667, 175.3239811333, "16"], +[-37.79693185, 175.3230941333, "27"], +[-37.7968592833, 175.3234541167, "31"], +[-37.7981987667, 175.3242397667, "10"], +[-37.7981213, 175.3237307667, "11"], +[-37.7980758167, 175.3241186167, "12"], +[-37.79799825, 175.3236682833, "13"], +[-37.7979126167, 175.3240375333, "14"], +[-37.7976888833, 175.3235529667, "17"], +[-37.7970706667, 175.32373765, "24"], +[-37.7969733667, 175.3239103167, "26"], +[-37.7975117167, 175.32386385, "20"], +[-37.7973872667, 175.3234304, "21"], +[-37.79726325, 175.3233874167, "23"], +[-37.7970796667, 175.3233611167, "25"], +[-37.79643665, 175.3249426167, "47"], +[-37.7967115333, 175.3238441667, "37"], +[-37.7966345833, 175.3241323333, "39"], +[-37.7965897167, 175.3243412667, "41"], +[-37.7985949333, 175.3241855, "3"], +[-37.7984185167, 175.3245093167, "6"], +[-37.7983234667, 175.3243632, "8"], +[-37.7982533833, 175.3237967, "9"], +[-37.7966679333, 175.3251275167, "34"], +[-37.7969276, 175.32413345, "28"], +[-37.7968992, 175.3232952, "29"], +[-37.7978373333, 175.3235944667, "15"], +[-37.76499815, 175.3064731, "6"], +[-37.76515315, 175.3065421833, "4"], +[-37.7651845667, 175.3061836667, "5"], +[-37.76503795, 175.3061224167, "7"], +[-37.7653170833, 175.3062584167, "3"], +[-37.7652821167, 175.3066031667, "2"], +[-37.7719979167, 175.2654652, "4"], +[-37.77239845, 175.2658819, "10"], +[-37.77265065, 175.26696035, "15"], +[-37.7728540833, 175.26630405, "16"], +[-37.7722829, 175.2653235667, "6A"], +[-37.7721396167, 175.2655979167, "6"], +[-37.7718967833, 175.26600285, "5B"], +[-37.7718558667, 175.2662966667, "7A"], +[-37.7720373167, 175.2661386167, "7"], +[-37.7722824833, 175.2657328833, "8"], +[-37.7729101833, 175.2665271333, "18"], +[-37.77158775, 175.2661379, "3A"], +[-37.7724306333, 175.2654747833, "8A"], +[-37.7725374333, 175.2655932833, "10A"], +[-37.7723677667, 175.2664470167, "11"], +[-37.7725413667, 175.2660234667, "12"], +[-37.77259295, 175.2666607167, "13"], +[-37.7726958, 175.2661501167, "14"], +[-37.7723382167, 175.2670919667, "15A"], +[-37.7721376167, 175.2672011333, "15B"], +[-37.7727030667, 175.2671323667, "17"], +[-37.77141115, 175.26542425, "1A"], +[-37.7716662, 175.2656535333, "1B"], +[-37.7715232333, 175.265514, "1"], +[-37.7717442, 175.2658627167, "3"], +[-37.77300985, 175.2667742833, "24"], +[-37.7719762167, 175.2665590167, "9A"], +[-37.7721861833, 175.2662700167, "9"], +[-37.7716865167, 175.2663154333, "5"], +[-37.7717711167, 175.26535635, "2A"], +[-37.7716947167, 175.2652887833, "2"], +[-37.7398314, 175.2789662167, "14"], +[-37.73999035, 175.2790135333, "10"], +[-37.7398852833, 175.2790160833, "12"], +[-37.7396703667, 175.2783329333, "20"], +[-37.7401375167, 175.27897515, "8"], +[-37.73980115, 175.27881195, "16"], +[-37.7396991833, 175.27855015, "18"], +[-37.7400372, 175.2787083833, "3"], +[-37.7400015, 175.2784729, "5"], +[-37.7403243333, 175.27890115, "6"], +[-37.7399182167, 175.2782430333, "7"], +[-37.73979785, 175.27828295, "9"], +[-37.7404670833, 175.2788006, "4"], +[-37.8110581833, 175.2907692667, "2A"], +[-37.81117625, 175.2909238667, "2B"], +[-37.8115583167, 175.2913153833, "3"], +[-37.8115357333, 175.2907215167, "6"], +[-37.8117139667, 175.2910090167, "10"], +[-37.8110202333, 175.2913438, "1A"], +[-37.8114246333, 175.2915987, "1B"], +[-37.8114143667, 175.2913174333, "1"], +[-37.8114113333, 175.2909646333, "4A"], +[-37.81142115, 175.2908319333, "4B"], +[-37.8116311667, 175.2915499333, "5A"], +[-37.8116098167, 175.2913005167, "5"], +[-37.8117114333, 175.2913693833, "7"], +[-37.811618, 175.2908954833, "8"], +[-37.81172235, 175.2911703667, "9"], +[-37.7400469833, 175.2520126167, "13"], +[-37.74011505, 175.2514658833, "21"], +[-37.7401282667, 175.2512692, "23"], +[-37.7390007667, 175.2531181667, "1"], +[-37.7391066833, 175.2530380833, "3"], +[-37.7402530167, 175.2521385167, "11"], +[-37.73977355, 175.25194415, "15"], +[-37.73994425, 175.2517049833, "17"], +[-37.74026275, 175.2516616833, "19"], +[-37.7392651667, 175.2527030833, "5"], +[-37.7395178333, 175.2524011, "7"], +[-37.7398211167, 175.2521722667, "9"], +[-37.74614105, 175.2406946833, "2"], +[-37.74551755, 175.2424685, "19"], +[-37.7455396833, 175.24472475, "34"], +[-37.7456947333, 175.2413512833, "9"], +[-37.74447455, 175.24760015, "68"], +[-37.7449956833, 175.2428453833, "27"], +[-37.74496795, 175.2429977, "29"], +[-37.74601315, 175.2416538333, "10"], +[-37.7456227333, 175.2418091, "13"], +[-37.74565605, 175.2415792667, "11"], +[-37.7458881167, 175.2423190667, "16"], +[-37.74555105, 175.2422386333, "17"], +[-37.745859, 175.242558, "18"], +[-37.7458200667, 175.24279535, "20"], +[-37.74548415, 175.2426769, "21"], +[-37.7457864167, 175.2430243833, "22"], +[-37.7454531833, 175.2428842667, "23"], +[-37.7457527167, 175.2432602667, "24"], +[-37.745174, 175.2428928833, "25"], +[-37.74571905, 175.2434617, "26"], +[-37.7451488333, 175.2430574167, "31"], +[-37.7454077667, 175.2431486333, "33"], +[-37.7453841167, 175.2433549, "35"], +[-37.7456913833, 175.24367955, "28"], +[-37.74535115, 175.24354685, "37"], +[-37.7458267833, 175.2405144167, "1"], +[-37.7452072, 175.2444366333, "41"], +[-37.7451685667, 175.24464445, "43"], +[-37.7454914833, 175.2449562833, "44"], +[-37.7458023167, 175.24067555, "3"], +[-37.7457621333, 175.2409196, "5"], +[-37.7447838, 175.2454521667, "49"], +[-37.7449672333, 175.2459432167, "50"], +[-37.7446986, 175.2456135833, "51"], +[-37.7448613833, 175.2461773667, "52"], +[-37.7446133833, 175.24579295, "53"], +[-37.7447813, 175.2463492167, "54"], +[-37.7443446, 175.2456247333, "55"], +[-37.7447309833, 175.2464866333, "56"], +[-37.7445074, 175.2459968167, "57"], +[-37.74423915, 175.2458530667, "59"], +[-37.7443900833, 175.2462407, "61"], +[-37.7442067167, 175.24614635, "63"], +[-37.7441425, 175.2462678167, "65"], +[-37.7443771167, 175.2470875167, "62"], +[-37.7442817667, 175.2472553667, "64"], +[-37.7442063833, 175.2473999167, "66"], +[-37.74426765, 175.24648875, "67"], +[-37.7441371333, 175.2466962, "69"], +[-37.7440474167, 175.2468691, "73"], +[-37.74394515, 175.2471119833, "75"], +[-37.7438143333, 175.2473503, "77"], +[-37.74508205, 175.2457439167, "48"], +[-37.7460471167, 175.24144435, "8"], +[-37.7457284333, 175.2411507167, "7"], +[-37.7253214167, 175.2754234333, "19"], +[-37.7253665333, 175.2762106667, "22"], +[-37.7255007333, 175.2765271167, "35"], +[-37.7249594333, 175.2760163833, "27"], +[-37.7251817333, 175.275889, "20"], +[-37.7253822833, 175.27572545, "18"], +[-37.7250436, 175.2756256167, "23"], +[-37.7255441, 175.2756634333, "16"], +[-37.7257468667, 175.27566305, "14"], +[-37.72621865, 175.2761324667, "3"], +[-37.7262289333, 175.2759094333, "5"], +[-37.7262151, 175.27630255, "1"], +[-37.72571805, 175.2754245333, "15"], +[-37.7258953667, 175.2756998667, "12"], +[-37.7261879833, 175.27571315, "7"], +[-37.7251728333, 175.2755058, "21"], +[-37.7255876667, 175.2762747, "24"], +[-37.7257638833, 175.2762956, "26"], +[-37.8029455667, 175.2528935333, "8"], +[-37.80266345, 175.25214275, "16"], +[-37.80253585, 175.2516733833, "20"], +[-37.8032022167, 175.2524231, "2"], +[-37.8028539667, 175.2519266167, "5"], +[-37.8029302833, 175.2521881, "3"], +[-37.8028909333, 175.2526856333, "10"], +[-37.8028123333, 175.2525348833, "12"], +[-37.80272095, 175.2523669667, "14"], +[-37.8025836, 175.25189315, "18"], +[-37.8024940667, 175.2514825667, "22"], +[-37.80299865, 175.2525152, "4"], +[-37.80301745, 175.2528784, "6"], +[-37.8027929, 175.2515607833, "7"], +[-37.8026370167, 175.2515243, "9"], +[-37.7847741833, 175.23626435, "20"], +[-37.78485745, 175.2360919333, "22"], +[-37.7844725667, 175.2373676833, "8"], +[-37.7866621333, 175.2341265, "40"], +[-37.7858696333, 175.23536825, "29"], +[-37.7857353333, 175.2355073167, "27"], +[-37.7867685333, 175.2345431167, "39"], +[-37.7858918833, 175.2347974, "32"], +[-37.7860063, 175.2347027833, "34A"], +[-37.7860717333, 175.2346507667, "34"], +[-37.7863201333, 175.2349073, "35"], +[-37.7862086167, 175.23455405, "36"], +[-37.7864873333, 175.2347581833, "37"], +[-37.78690815, 175.23446385, "41"], +[-37.78683775, 175.2340012, "42"], +[-37.7845129833, 175.2371915167, "10"], +[-37.7849571833, 175.23690415, "11"], +[-37.78444255, 175.23693155, "12"], +[-37.7844912667, 175.2367415167, "14A"], +[-37.7846024833, 175.2369102333, "14"], +[-37.7846660667, 175.2366562667, "16"], +[-37.7847216, 175.2364500833, "18"], +[-37.7847138667, 175.23608885, "22A"], +[-37.7847796, 175.23774365, "3"], +[-37.7844525, 175.23775315, "4"], +[-37.78478705, 175.2375250167, "5"], +[-37.7844439667, 175.2375717167, "6"], +[-37.7848395333, 175.2373084833, "7"], +[-37.78489695, 175.2370955667, "9"], +[-37.78500615, 175.2367095167, "13"], +[-37.7850840167, 175.2364806667, "15"], +[-37.7852648667, 175.2361225833, "19"], +[-37.78551645, 175.2358272667, "23"], +[-37.78539835, 175.2359518333, "21"], +[-37.7850452333, 175.2358196, "24"], +[-37.78598895, 175.2351985833, "31"], +[-37.7857593167, 175.23581075, "25A"], +[-37.7856277833, 175.2356531167, "25"], +[-37.7852627833, 175.2353096167, "26B"], +[-37.7853060667, 175.2354625833, "26"], +[-37.78541575, 175.23528335, "28"], +[-37.78615135, 175.2350652167, "33"], +[-37.78514385, 175.2363087833, "17"], +[-37.8012616, 175.3158489667, "27"], +[-37.80158385, 175.3156709333, "28"], +[-37.8010345333, 175.31297555, "2A"], +[-37.8012949167, 175.3138505833, "10"], +[-37.8015571167, 175.31503705, "22"], +[-37.8013419833, 175.3163383, "36"], +[-37.80067655, 175.3160162333, "33"], +[-37.8015133, 175.3144175, "16"], +[-37.8014217167, 175.3161803333, "34"], +[-37.8010953, 175.3161316667, "31"], +[-37.8014871833, 175.3160331, "32"], +[-37.8008388333, 175.31361275, "11"], +[-37.8013934, 175.3140197667, "12"], +[-37.8009667167, 175.3138189667, "13"], +[-37.8010997, 175.31405695, "15"], +[-37.8015352833, 175.31484345, "20"], +[-37.8012788, 175.3147312167, "21"], +[-37.8008005, 175.31289205, "2"], +[-37.8009435667, 175.31325715, "4"], +[-37.8005000833, 175.3130183667, "5"], +[-37.8011019667, 175.3135251333, "6"], +[-37.8006033, 175.3132169333, "7"], +[-37.8011934167, 175.3136689667, "8"], +[-37.8007179167, 175.3134087167, "9"], +[-37.80132295, 175.3152964333, "23"], +[-37.8015676667, 175.3152684833, "24"], +[-37.8013249333, 175.3156331167, "25"], +[-37.8011737, 175.3160149833, "29"], +[-37.8015523833, 175.3158579667, "30"], +[-37.8008517333, 175.3162135333, "35"], +[-37.8017032167, 175.3164518, "38"], +[-37.80164635, 175.3166094667, "40"], +[-37.8010233833, 175.3164293, "37"], +[-37.8009305833, 175.3166529833, "39"], +[-37.8014010333, 175.3165997, "42"], +[-37.80120155, 175.31650925, "44"], +[-37.8010165333, 175.3166805167, "46"], +[-37.8005108, 175.3128482333, "3"], +[-37.8015782, 175.3154830333, "26"], +[-37.8008151, 175.3126319167, "2B"], +[-37.8015281167, 175.31460735, "18"], +[-37.8005128333, 175.3126944167, "1"], +[-37.8014784167, 175.3142106667, "14"], +[-37.7893290167, 175.3259546333, "9A"], +[-37.7891975, 175.3267072667, "8"], +[-37.7893203833, 175.3263579333, "7"], +[-37.7873481167, 175.3289220333, "43A"], +[-37.7877226333, 175.3291356, "36"], +[-37.7876226667, 175.3293039667, "36A"], +[-37.7879279167, 175.3288242333, "32"], +[-37.7878176333, 175.32901285, "34"], +[-37.7876654833, 175.3286856, "39"], +[-37.7891927, 175.3258327333, "11B"], +[-37.7877588167, 175.32851875, "37"], +[-37.7868128667, 175.3301629667, "55"], +[-37.7875382333, 175.3294757833, "40"], +[-37.78944975, 175.32647735, "5"], +[-37.78742335, 175.3296555167, "42"], +[-37.7870215667, 175.3298934333, "51"], +[-37.7872994, 175.3298607833, "44"], +[-37.7870853, 175.3297038833, "49"], +[-37.7872498167, 175.3300510167, "46"], +[-37.7872978167, 175.32936115, "45"], +[-37.7872009167, 175.3295168833, "47"], +[-37.7897427167, 175.3267655667, "1"], +[-37.7893663833, 175.3268648, "4"], +[-37.7890614, 175.3272224833, "10"], +[-37.7897478333, 175.3264724167, "3A"], +[-37.7890224167, 175.3261638667, "11"], +[-37.7890424833, 175.3263879833, "13"], +[-37.7888597333, 175.32724055, "14"], +[-37.7889378, 175.3265587333, "15"], +[-37.7887617167, 175.3274122833, "16"], +[-37.7888483833, 175.3267179667, "17"], +[-37.78862735, 175.3276628167, "18"], +[-37.7887476667, 175.3268720167, "19"], +[-37.7886544167, 175.3270367333, "21"], +[-37.7885259, 175.3280622333, "22A"], +[-37.7884625667, 175.3279221833, "22"], +[-37.7880351667, 175.328637, "30"], +[-37.7878631833, 175.3283505, "35"], +[-37.78851975, 175.32725075, "23"], +[-37.7883564833, 175.3281184833, "24"], +[-37.7883737833, 175.3274944667, "25"], +[-37.7882449, 175.3282894333, "26"], +[-37.78826685, 175.3276664833, "27"], +[-37.7881340333, 175.3284593667, "28"], +[-37.7881644333, 175.32784175, "29"], +[-37.7894673833, 175.3269772667, "2"], +[-37.78806025, 175.3280219667, "31"], +[-37.7879684, 175.3281885, "33"], +[-37.7875808167, 175.3288922, "41"], +[-37.7874030833, 175.32917765, "43"], +[-37.7869479, 175.3300249, "53"], +[-37.7891799333, 175.32623055, "9"], +[-37.7895207667, 175.3262841333, "5A"], +[-37.7869841167, 175.3303119167, "57"], +[-37.78959365, 175.3266267667, "3"], +[-37.7894722, 175.3262289333, "7A"], +[-37.7177394667, 175.22734915, "18"], +[-37.7177812833, 175.2263786333, "8"], +[-37.7176379333, 175.22858285, "19D"], +[-37.7174560167, 175.2278261833, "19A"], +[-37.71732825, 175.2272739167, "17"], +[-37.7173881167, 175.2265416667, "9"], +[-37.7177511, 175.2280950167, "19B"], +[-37.7181695833, 175.2269394667, "14"], +[-37.7174599833, 175.2285097833, "19C"], +[-37.7469601333, 175.23530825, "15"], +[-37.74812675, 175.2364283167, "2/9"], +[-37.7460629333, 175.2354423833, "20"], +[-37.7471798333, 175.23506195, "19"], +[-37.7470745167, 175.2351824333, "17"], +[-37.7475211667, 175.2361586, "10/9"], +[-37.7482069167, 175.2363653167, "3/9"], +[-37.74801265, 175.23574365, "15/9"], +[-37.74765415, 175.2371138, "10"], +[-37.7479503333, 175.2368447167, "7"], +[-37.7481678167, 175.2372237667, "5"], +[-37.7470882833, 175.2363324833, "14"], +[-37.7483877833, 175.2376678, "3"], +[-37.7478692333, 175.23621425, "7/9"], +[-37.7483329167, 175.2383814833, "4"], +[-37.7486552, 175.23816075, "1"], +[-37.7473909333, 175.2358104333, "11"], +[-37.7473772, 175.2366845667, "12"], +[-37.7479146, 175.237558, "8"], +[-37.7468358, 175.2354349833, "13"], +[-37.7467923, 175.2359495333, "16"], +[-37.7485142833, 175.2386654833, "2"], +[-37.7476331667, 175.2363963167, "4/9"], +[-37.7480722, 175.23647975, "1/9"], +[-37.747755, 175.2359480833, "13/9"], +[-37.74772035, 175.2363335333, "5/9"], +[-37.7476746667, 175.23601995, "12/9"], +[-37.74803255, 175.2360776833, "9/9"], +[-37.7475830833, 175.23609145, "11/9"], +[-37.7478710167, 175.23585255, "14/9"], +[-37.74794505, 175.2361564167, "8/9"], +[-37.74780045, 175.2362723, "6/9"], +[-37.7464793833, 175.2357566667, "18"], +[-37.7457273333, 175.2351904333, "22"], +[-37.7453746, 175.2347907, "24"], +[-37.7481380833, 175.2380921833, "6"], +[-37.78209255, 175.2458325333, "15B"], +[-37.7818095167, 175.2458322, "17"], +[-37.7820084167, 175.2457162167, "17B"], +[-37.7817730833, 175.2456151167, "19"], +[-37.7812094833, 175.2456338167, "8"], +[-37.7816519, 175.2464721333, "7A"], +[-37.7819205167, 175.24557225, "17A"], +[-37.7814002, 175.2448971333, "12A"], +[-37.7812083833, 175.2449886, "12B"], +[-37.7812043833, 175.24537905, "10"], +[-37.7814363, 175.2458989, "11"], +[-37.7817787, 175.2459923667, "13"], +[-37.7819116, 175.2458934667, "15A"], +[-37.78149655, 175.2456356667, "21"], +[-37.7815010167, 175.2452694833, "25"], +[-37.7813700833, 175.24531295, "27"], +[-37.7811825333, 175.2464239833, "3"], +[-37.7810355333, 175.2461470667, "4"], +[-37.7812944, 175.24628105, "5"], +[-37.7811555667, 175.2459827333, "6"], +[-37.7815993833, 175.2463932, "7"], +[-37.7813845667, 175.2460857, "9"], +[-37.78130665, 175.246453, "3A"], +[-37.7815039167, 175.2454462833, "23"], +[-37.7229395167, 175.28627055, "7"], +[-37.7234152, 175.2863706, "1"], +[-37.7236162167, 175.2865783167, "2"], +[-37.72348935, 175.2868354, "4"], +[-37.7237576667, 175.2884874, "29"], +[-37.7238374333, 175.2876489667, "12"], +[-37.7232881, 175.2865596667, "3"], +[-37.7238875333, 175.2885961, "22"], +[-37.72400035, 175.28852495, "20"], +[-37.7239213833, 175.2883530167, "18"], +[-37.7238912833, 175.2881825167, "16"], +[-37.7238804167, 175.2879471333, "14"], +[-37.7237586667, 175.2874540167, "10"], +[-37.72367225, 175.2872522667, "8"], +[-37.7235726333, 175.2870631167, "6"], +[-37.7229171333, 175.2864779667, "9"], +[-37.7230349167, 175.2866673333, "11"], +[-37.7231607, 175.2868319833, "13"], +[-37.7237212, 175.2882515, "27"], +[-37.72364765, 175.28805345, "25"], +[-37.7235455167, 175.2878609667, "23"], +[-37.7234153333, 175.2874002167, "19"], +[-37.7233204833, 175.2872307833, "17"], +[-37.7232211333, 175.2870286, "15"], +[-37.72350685, 175.2876053833, "21"], +[-37.7230623167, 175.2864288667, "5"], +[-37.7616901, 175.2408952, "101"], +[-37.7583557833, 175.2454177833, "2/1"], +[-37.7583011, 175.2454881167, "3/1"], +[-37.75826285, 175.2455655167, "4/1"], +[-37.7583890833, 175.2453638833, "1/1"], +[-37.75844455, 175.245262, "10/1"], +[-37.7585446667, 175.2451335333, "1C"], +[-37.7585763833, 175.24451905, "22B"], +[-37.76065735, 175.2411863167, "76"], +[-37.76062285, 175.2402209667, "86A"], +[-37.7596795667, 175.2434241, "43"], +[-37.75957465, 175.2436083, "41"], +[-37.7594661333, 175.2437551, "39"], +[-37.7590808, 175.2430880167, "50"], +[-37.7598888833, 175.2423944333, "54"], +[-37.75916775, 175.2429308667, "48"], +[-37.7592515, 175.2427881667, "46"], +[-37.760791, 175.2429025833, "59"], +[-37.7602401167, 175.2418682167, "60"], +[-37.76029165, 175.2417992667, "62"], +[-37.75936745, 175.2439124833, "37"], +[-37.7591487333, 175.2441802, "31"], +[-37.7589416333, 175.2445244333, "29"], +[-37.75873225, 175.24486235, "17"], +[-37.7590525833, 175.2437318667, "30"], +[-37.7583939667, 175.2448565667, "18"], +[-37.7600513333, 175.2428797833, "45"], +[-37.7607841333, 175.2417933333, "65"], +[-37.7610146333, 175.2414165167, "81"], +[-37.7612360833, 175.2410603833, "99"], +[-37.7598028167, 175.2425739667, "52"], +[-37.7600301, 175.2422147333, "56"], +[-37.76124725, 175.2433729833, "57"], +[-37.7601003667, 175.2421073667, "58B"], +[-37.7601339833, 175.24204585, "58"], +[-37.76052805, 175.2414626833, "64"], +[-37.7599619667, 175.2405837833, "66"], +[-37.76105315, 175.2406821333, "86"], +[-37.7615856333, 175.2403580167, "90"], +[-37.7592689, 175.2452644333, "21"], +[-37.7593551833, 175.2453303, "23"], +[-37.7594110333, 175.2452982167, "25"], +[-37.7592362, 175.24508645, "27"], +[-37.7582362833, 175.2450057167, "2"], +[-37.7604219333, 175.2422953333, "61"], +[-37.7608081, 175.2409876833, "78"], +[-37.75867875, 175.24438755, "22"], +[-37.7598154667, 175.2398751833, "82"], +[-37.7601886333, 175.2402657833, "80"], +[-37.7652353667, 175.24937285, "1-6"], +[-37.74266405, 175.2771616333, "10"], +[-37.7425206167, 175.2771030167, "12"], +[-37.74231795, 175.2770695667, "14"], +[-37.7431741167, 175.2768494833, "13"], +[-37.74326745, 175.2769792833, "11"], +[-37.7423654667, 175.27876635, "30"], +[-37.74197915, 175.2777447, "20"], +[-37.7414514, 175.2775948167, "35"], +[-37.7430408833, 175.2773066167, "6"], +[-37.7433922167, 175.2773640167, "7"], +[-37.7428509167, 175.27719655, "8"], +[-37.7432366167, 175.2780394333, "2"], +[-37.74283715, 175.2767635167, "17"], +[-37.7430197833, 175.2767810167, "15"], +[-37.7426551833, 175.2766999833, "19"], +[-37.7421893833, 175.2773190667, "16"], +[-37.7421081667, 175.2774836167, "18"], +[-37.7420755167, 175.2779554333, "22"], +[-37.74202075, 175.2768407, "25"], +[-37.7422833167, 175.2783139333, "26"], +[-37.74191545, 175.2770621167, "27"], +[-37.7423382, 175.2785348333, "28"], +[-37.7418152, 175.2772607, "29"], +[-37.7415341, 175.2771362, "31"], +[-37.7416868833, 175.2774987333, "33"], +[-37.7434982667, 175.2777768833, "3"], +[-37.7431583833, 175.27783515, "4"], +[-37.7434291, 175.27757855, "5"], +[-37.74173885, 175.2780828333, "41"], +[-37.7418761333, 175.2783064333, "43"], +[-37.7419769667, 175.2785231333, "45"], +[-37.7420415333, 175.2787213333, "47"], +[-37.7420269667, 175.27897455, "49"], +[-37.7433510333, 175.2771434333, "9"], +[-37.7414481667, 175.2777504, "37"], +[-37.74167535, 175.2778327833, "39"], +[-37.7421867, 175.2781147333, "24"], +[-37.7430555, 175.2737201667, "1A"], +[-37.74381095, 175.27362975, "13B"], +[-37.7438359167, 175.2734481167, "13A"], +[-37.74348935, 175.27338615, "9"], +[-37.7436646167, 175.2734426, "11"], +[-37.7438003333, 175.2731212167, "15"], +[-37.7435939333, 175.27302525, "17"], +[-37.7428432, 175.27369515, "1"], +[-37.7424871667, 175.2736195833, "2"], +[-37.7433938333, 175.27296395, "19"], +[-37.7430731833, 175.2727775333, "21"], +[-37.7429046667, 175.2733859833, "3"], +[-37.7425377, 175.2733610667, "4"], +[-37.7422827333, 175.27321305, "6"], +[-37.7426471667, 175.2730033, "8"], +[-37.74314375, 175.2732732667, "5"], +[-37.7433142167, 175.2733296833, "7"], +[-37.7431443167, 175.2724892667, "23"], +[-37.7423513667, 175.2729667667, "10A"], +[-37.7428971167, 175.2719171167, "26"], +[-37.7428409167, 175.27160095, "28"], +[-37.74247095, 175.27278045, "10"], +[-37.7422502167, 175.2727251833, "12"], +[-37.74225, 175.27240875, "14"], +[-37.74241875, 175.2724396167, "16"], +[-37.742852, 175.2713297, "30"], +[-37.7429940167, 175.2712630167, "32"], +[-37.7428392333, 175.27238805, "20"], +[-37.7424800167, 175.2720011333, "22"], +[-37.7426912833, 175.27202145, "24"], +[-37.7425844833, 175.2724820667, "18"], +[-37.7432371833, 175.2718498, "37"], +[-37.74354805, 175.271333, "39"], +[-37.7433899167, 175.2713440167, "41"], +[-37.7432345667, 175.2713563, "43"], +[-37.7431350833, 175.2712547333, "45"], +[-37.7431858833, 175.2722349833, "23A"], +[-37.7435806, 175.2725199833, "27"], +[-37.7435834, 175.2721686667, "27A"], +[-37.7434042333, 175.2718459833, "35"], +[-37.7433991833, 175.2721571333, "25"], +[-37.7437240167, 175.2720908, "29"], +[-37.7437023833, 175.2718534, "31"], +[-37.7435789, 175.271832, "33"], +[-37.7559127833, 175.2809561667, "14"], +[-37.7558225833, 175.2799351167, "3"], +[-37.7557092333, 175.2817288167, "24"], +[-37.756013, 175.2805733667, "10"], +[-37.7559549, 175.28077165, "12"], +[-37.7555465, 175.2810222333, "13"], +[-37.7554989333, 175.2811895667, "15"], +[-37.7558707, 175.2811391, "16"], +[-37.7554639167, 175.28134125, "17"], +[-37.7558365333, 175.2813143833, "18"], +[-37.7557848833, 175.2814914, "20"], +[-37.75590215, 175.2817139833, "22"], +[-37.75585925, 175.2797746833, "1"], +[-37.7561294833, 175.2800513333, "4"], +[-37.7557693833, 175.2801283333, "5"], +[-37.7560928, 175.2802292833, "6"], +[-37.75605165, 175.28040485, "8"], +[-37.7289686167, 175.2230958167, "37"], +[-37.7283802, 175.2225988, "29"], +[-37.7277943833, 175.2215788, "18"], +[-37.7279099, 175.2216836667, "20"], +[-37.7277601833, 175.2223179, "1/21-5/21"], +[-37.7274565833, 175.22180905, "17"], +[-37.7271738667, 175.2215860333, "13"], +[-37.7276217, 175.2214371667, "16"], +[-37.7280222167, 175.2222688667, "25"], +[-37.7289928833, 175.2225623333, "32"], +[-37.7288120333, 175.22244965, "30"], +[-37.7286891167, 175.22234445, "28"], +[-37.7283728833, 175.2220811667, "24"], +[-37.7281713167, 175.2218890833, "22"], +[-37.7292786667, 175.2232239167, "39"], +[-37.72883665, 175.22299595, "35"], +[-37.7286701167, 175.2228387333, "33"], +[-37.7285425, 175.2227446333, "31"], +[-37.72823485, 175.2224985, "27"], +[-37.7291884833, 175.2226080167, "34"], +[-37.7285219, 175.22222095, "26"], +[-37.7275750167, 175.2219101, "19"], +[-37.7275031333, 175.2213439, "14"], +[-37.7273104, 175.2217071167, "15"], +[-37.7293761833, 175.2230414833, "41"], +[-37.7294556167, 175.2228697167, "43"], +[-37.7317174833, 175.2617492, "12"], +[-37.7319445667, 175.2608084167, "26"], +[-37.7320187, 175.2602877833, "34"], +[-37.7320276333, 175.2621079667, "6"], +[-37.734024, 175.26070585, "62"], +[-37.7343587167, 175.2608515167, "66"], +[-37.7326205667, 175.2601122333, "46"], +[-37.7347018167, 175.261001, "70"], +[-37.7322485333, 175.2600008, "42"], +[-37.7329333833, 175.2616783833, "17A"], +[-37.7328677833, 175.2617826333, "17"], +[-37.7316524167, 175.2619686667, "10"], +[-37.7323602167, 175.2624965667, "3"], +[-37.7361891167, 175.2616222, "88"], +[-37.7358939167, 175.26147075, "84"], +[-37.7357347667, 175.2614088167, "82"], +[-37.7355645167, 175.2613394333, "80"], +[-37.7352243667, 175.26118295, "76"], +[-37.7350427333, 175.2611202833, "74"], +[-37.7348750333, 175.2610633833, "72"], +[-37.7345317167, 175.2609245333, "68"], +[-37.7328101333, 175.2601999667, "48"], +[-37.7353975833, 175.26124535, "78"], +[-37.7323354667, 175.2626717667, "1"], +[-37.7335022833, 175.2604831667, "56"], +[-37.7323240333, 175.26215385, "11"], +[-37.73233335, 175.2616963333, "13"], +[-37.7320947, 175.2612310167, "18"], +[-37.7328274, 175.2615344667, "19"], +[-37.7318309667, 175.26141865, "20"], +[-37.7326006167, 175.2614726333, "21"], +[-37.7317501, 175.2612816, "22"], +[-37.7323720167, 175.2613598, "23"], +[-37.7318169, 175.2609822667, "24"], +[-37.7325122833, 175.2609973333, "25"], +[-37.7327096833, 175.2608003167, "27"], +[-37.73220275, 175.26088585, "28"], +[-37.7328861833, 175.2610495667, "29"], +[-37.7320172, 175.26261605, "2"], +[-37.73229335, 175.2606890167, "30"], +[-37.7333377667, 175.2607281667, "35"], +[-37.73227925, 175.2602492, "36"], +[-37.7334854, 175.2608000167, "37"], +[-37.7324934167, 175.2605030333, "38"], +[-37.7336338167, 175.2608653833, "39"], +[-37.7326698667, 175.2604391, "40"], +[-37.7337875833, 175.26093105, "41"], +[-37.7340311667, 175.2610466833, "43"], +[-37.7341586167, 175.2610911833, "45"], +[-37.7343177167, 175.2611569333, "47"], +[-37.734482, 175.2612295667, "49"], +[-37.7320336833, 175.26237695, "4"], +[-37.7346305333, 175.2612882333, "51"], +[-37.73481635, 175.26135485, "53"], +[-37.73499695, 175.2614145833, "55"], +[-37.7326232333, 175.2624795333, "5"], +[-37.7326814333, 175.2623143333, "7"], +[-37.73170505, 175.2622174, "8"], +[-37.7325256, 175.2621749167, "9"], +[-37.7351403833, 175.2614596333, "57"], +[-37.7352573, 175.2614970667, "59"], +[-37.73547275, 175.2615908833, "61"], +[-37.7356072167, 175.261643, "63"], +[-37.73571825, 175.2617072333, "65"], +[-37.7359085333, 175.2618278, "67"], +[-37.7360295167, 175.2619193333, "69"], +[-37.7360586833, 175.2617787, "71"], +[-37.7325947167, 175.2617520667, "15"], +[-37.732015, 175.26174065, "14"], +[-37.7324307667, 175.2600351333, "44"], +[-37.73302735, 175.26031165, "50"], +[-37.733164, 175.2603728333, "52"], +[-37.7333258833, 175.2604384, "54"], +[-37.7336868833, 175.26053885, "58"], +[-37.7338571333, 175.2606082333, "60"], +[-37.7341915, 175.2607716, "64"], +[-37.73204, 175.2615053333, "16"], +[-37.7360222667, 175.2615245833, "86"], +[-37.7329919833, 175.2610752333, "31"], +[-37.7320266667, 175.2604623667, "32"], +[-37.7330407833, 175.2608475833, "33"], +[-37.7449628167, 175.2873903833, "7"], +[-37.7450710667, 175.2875696, "9"], +[-37.7452094, 175.2877232333, "11"], +[-37.7453481167, 175.28785565, "13"], +[-37.7454313167, 175.2880207167, "15"], +[-37.7454425667, 175.28828985, "17"], +[-37.7451613667, 175.2870884667, "4"], +[-37.7454611667, 175.2885114167, "19"], +[-37.7456267333, 175.2874684167, "10"], +[-37.7447131167, 175.2871052667, "3"], +[-37.74490145, 175.2871940667, "5"], +[-37.7457668, 175.2874384667, "12"], +[-37.7451423667, 175.2868879167, "2"], +[-37.7452808833, 175.2873345667, "6"], +[-37.74545145, 175.2874652833, "8"], +[-37.74571135, 175.2876628, "14"], +[-37.74565535, 175.2878179167, "16"], +[-37.7456048333, 175.2880106, "18"], +[-37.7455802333, 175.2882757833, "20"], +[-37.7455589833, 175.2884827, "22"], +[-37.74486975, 175.2869908, "1"], +[-37.6998548833, 175.2208550333, "39"], +[-37.7005687333, 175.2217029, "49"], +[-37.7002316, 175.2168318333, "6"], +[-37.6999754167, 175.2193732167, "29"], +[-37.7000851667, 175.2177085, "9"], +[-37.7017573167, 175.2194298333, "22B"], +[-37.70033955, 175.2205770167, "38"], +[-37.7001901167, 175.2228626833, "47"], +[-37.7004537833, 175.2193511667, "28"], +[-37.7005470167, 175.2176738833, "12"], +[-37.7006103667, 175.21835225, "18"], +[-37.7001164333, 175.2184991833, "19"], +[-37.7014815, 175.2195872167, "22A"], +[-37.70153975, 175.21916835, "22D"], +[-37.7769253167, 175.2369861333, "4"], +[-37.77709635, 175.2369737, "1"], +[-37.7770396833, 175.2369409667, "2"], +[-37.7769781667, 175.2369046, "3"], +[-37.7769823667, 175.2370447833, "5"], +[-37.77702735, 175.23710105, "6"], +[-37.7814353333, 175.23099525, "10"], +[-37.7818879, 175.2303194, "2"], +[-37.7815736333, 175.2303664, "3"], +[-37.7812553833, 175.2305721, "7"], +[-37.7815802667, 175.2308919333, "8"], +[-37.7813607667, 175.23072655, "9"], +[-37.7814454667, 175.2304917167, "5"], +[-37.7817870667, 175.2305601833, "4"], +[-37.7816975333, 175.2307445333, "6"], +[-37.7809572333, 175.2380301, "19"], +[-37.78081005, 175.2378968833, "20"], +[-37.7809018, 175.23830165, "15"], +[-37.7799998667, 175.2391778167, "4"], +[-37.7803304167, 175.2386031833, "10"], +[-37.7807861333, 175.2384499333, "13"], +[-37.78068035, 175.23862255, "11"], +[-37.78042975, 175.2384259667, "12A"], +[-37.78025405, 175.23829575, "12B"], +[-37.7805356, 175.2382394167, "14"], +[-37.7806134833, 175.23806795, "16"], +[-37.7810487, 175.2381647167, "17A"], +[-37.7812722167, 175.2379831333, "17B"], +[-37.780654, 175.2378390333, "18"], +[-37.7802120667, 175.2394023, "3"], +[-37.7804544, 175.2393537833, "5B"], +[-37.7803299333, 175.2392105333, "5"], +[-37.7800995, 175.2390075667, "6"], +[-37.78044515, 175.2390049333, "7"], +[-37.7802076667, 175.2388183333, "8A"], +[-37.7800302833, 175.2386779, "8B"], +[-37.7805581333, 175.2388190167, "9A"], +[-37.7806728, 175.2389442333, "9"], +[-37.7309373, 175.2425026333, "91"], +[-37.7294645667, 175.2393492833, "60"], +[-37.7306890167, 175.2404983333, "80"], +[-37.7309277, 175.2420446833, "87"], +[-37.7302121667, 175.2395607667, "70"], +[-37.7295419167, 175.2399485667, "63"], +[-37.7312746333, 175.24284205, "98"], +[-37.7279035833, 175.2361779167, "12"], +[-37.72748235, 175.23611235, "16"], +[-37.7302683, 175.23998275, "74"], +[-37.7299158667, 175.2397957833, "64"], +[-37.7277685333, 175.2357258333, "8"], +[-37.73013085, 175.2403061833, "73"], +[-37.7265441833, 175.2374492667, "33"], +[-37.7271865167, 175.2380318833, "34"], +[-37.72762215, 175.2380743333, "38"], +[-37.7317132833, 175.2444538333, "111"], +[-37.7317117167, 175.2442278833, "109"], +[-37.7316485833, 175.2440132333, "107"], +[-37.73201185, 175.2443120333, "118"], +[-37.7315862, 175.2448881333, "115"], +[-37.7316708333, 175.2446703667, "113"], +[-37.7318581833, 175.245006, "122"], +[-37.73139285, 175.2430506333, "100"], +[-37.7315186, 175.2432036833, "102"], +[-37.73160905, 175.2433236667, "104"], +[-37.7309438667, 175.242697, "93"], +[-37.7322939667, 175.2442221833, "116"], +[-37.7323485, 175.24403505, "114"], +[-37.7319970833, 175.2441726, "110"], +[-37.7322079167, 175.24409165, "112"], +[-37.7311678667, 175.2433135333, "99"], +[-37.73131625, 175.2434965833, "101"], +[-37.73143965, 175.24366025, "103"], +[-37.73097155, 175.2428921333, "95"], +[-37.7319090167, 175.2438442833, "108"], +[-37.73000095, 175.2396354833, "66"], +[-37.7301054, 175.2394882, "68"], +[-37.7300799333, 175.23989685, "72"], +[-37.7297282333, 175.2401065333, "65"], +[-37.7310730667, 175.2415084333, "88"], +[-37.7311537833, 175.2416919, "90"], +[-37.7296023833, 175.2394937, "62"], +[-37.7293359, 175.2391898667, "58"], +[-37.7289243, 175.2387543, "52"], +[-37.7286646333, 175.2384593667, "48"], +[-37.7283952333, 175.2382099333, "44"], +[-37.7285365, 175.2383226833, "46"], +[-37.7288060167, 175.2391607667, "55"], +[-37.7278816833, 175.23805765, "40"], +[-37.7269813167, 175.23783065, "32"], +[-37.7274292, 175.2381088167, "36"], +[-37.7278404667, 175.2384736667, "45"], +[-37.7270426333, 175.2383629833, "39"], +[-37.7268513333, 175.2374216, "28"], +[-37.7268906667, 175.2370465333, "26"], +[-37.72703135, 175.2367464833, "24"], +[-37.72763055, 175.2359225167, "14"], +[-37.7279992, 175.2360383, "10"], +[-37.7309397167, 175.2422819, "89"], +[-37.7315672, 175.2438266833, "105"], +[-37.7278762833, 175.2355626167, "6"], +[-37.7294109833, 175.2398086833, "61"], +[-37.7287901167, 175.2386055667, "50"], +[-37.7848726667, 175.2397927833, "18"], +[-37.7841164333, 175.2386681667, "1A"], +[-37.7848374833, 175.2399314667, "20"], +[-37.7841166167, 175.2388717333, "1B"], +[-37.7841435167, 175.2393997, "5"], +[-37.7844317667, 175.2393505833, "8"], +[-37.7842279167, 175.2395619167, "7"], +[-37.7844088167, 175.2397851167, "11"], +[-37.7845543667, 175.2399086833, "13"], +[-37.7845714667, 175.2395321833, "10"], +[-37.7846608167, 175.2399905, "15"], +[-37.7849527833, 175.2394883167, "16B"], +[-37.78474575, 175.2402706, "17"], +[-37.7847700333, 175.2400386667, "19"], +[-37.7844008167, 175.238903, "2"], +[-37.7841112167, 175.2391036833, "3"], +[-37.7848727167, 175.2390004, "4B"], +[-37.7847178167, 175.2389991167, "4"], +[-37.7844095167, 175.2390884333, "6"], +[-37.7840916167, 175.2396186167, "7B"], +[-37.7843130833, 175.2396832167, "9"], +[-37.7850254667, 175.2391188333, "14A"], +[-37.7850321, 175.2392809167, "14"], +[-37.7847987167, 175.2393734667, "12B"], +[-37.7846839667, 175.2395958, "12A"], +[-37.7848554667, 175.2396639667, "16"], +[-37.7624328167, 175.28524555, "23"], +[-37.7619217167, 175.2864443833, "6"], +[-37.7621847833, 175.28650075, "7A"], +[-37.7626002833, 175.2862206, "9A"], +[-37.7619899167, 175.2861455, "8"], +[-37.7623719167, 175.2865252167, "7"], +[-37.7616425667, 175.2868026, "2"], +[-37.76181545, 175.2866169667, "4"], +[-37.7615063833, 175.28500415, "32"], +[-37.7620794333, 175.2850742333, "29"], +[-37.7619033, 175.2850203667, "31"], +[-37.76148705, 175.2851589, "30"], +[-37.7615404333, 175.2847937333, "35A"], +[-37.7622201167, 175.2868313667, "5A"], +[-37.7617601333, 175.2849716667, "33"], +[-37.7614206, 175.2847557167, "34"], +[-37.7616039833, 175.2849115333, "35"], +[-37.7620384333, 175.2859188667, "10"], +[-37.7622258833, 175.2862807167, "11"], +[-37.7622737333, 175.2860924333, "13"], +[-37.7623185, 175.28587865, "15"], +[-37.7620829833, 175.2857236833, "16"], +[-37.7623769333, 175.2856783167, "17"], +[-37.7619686333, 175.2854306667, "18"], +[-37.7627547, 175.2855862833, "19B"], +[-37.7628024833, 175.2853681833, "19"], +[-37.7623702667, 175.2854116833, "21"], +[-37.761813, 175.28535585, "22"], +[-37.76153535, 175.2857109833, "24A"], +[-37.7616509667, 175.2857603833, "24"], +[-37.7623134, 175.2851983667, "25"], +[-37.7616077333, 175.2853339667, "26"], +[-37.7621968333, 175.2851331, "27"], +[-37.7614479667, 175.2853445833, "28"], +[-37.7621309833, 175.2866651333, "5"], +[-37.7625348833, 175.2864544167, "9"], +[-37.7620432167, 175.2868166167, "3"], +[-37.7636647, 175.3022143167, "26B"], +[-37.7637922, 175.3022878833, "26A"], +[-37.7632874167, 175.3012983667, "25"], +[-37.762992, 175.3011675167, "29"], +[-37.7638962167, 175.3023261167, "24"], +[-37.7634343333, 175.3013790167, "23"], +[-37.7638189833, 175.3019316333, "28"], +[-37.7631315167, 175.3012463667, "27"], +[-37.7636719333, 175.3018650667, "30"], +[-37.7651184833, 175.3017833, "4"], +[-37.76496765, 175.3023112167, "10"], +[-37.7641786667, 175.3016915, "11A"], +[-37.7643329333, 175.3017593, "11"], +[-37.76478425, 175.3023588667, "12"], +[-37.7646338, 175.3022901, "14"], +[-37.7640389167, 175.3016330833, "15"], +[-37.7645138167, 175.3022243667, "16"], +[-37.7638799, 175.3015644333, "17"], +[-37.7643613667, 175.3021566833, "18A"], +[-37.7643856167, 175.3023324, "18B"], +[-37.76373725, 175.3015093667, "19"], +[-37.7642017, 175.3020900667, "20"], +[-37.76359125, 175.3014421333, "21"], +[-37.7640389833, 175.3020178667, "22"], +[-37.7633894167, 175.3017269167, "34"], +[-37.7625544833, 175.3009589667, "35"], +[-37.7632223833, 175.302098, "36"], +[-37.7631133, 175.3020393, "38"], +[-37.764904, 175.3015345667, "3"], +[-37.7631988667, 175.3016508667, "40"], +[-37.7630522833, 175.3015841167, "42"], +[-37.76291985, 175.3015202, "44"], +[-37.76277555, 175.3014586, "46"], +[-37.7626044, 175.3018127, "48"], +[-37.7625873333, 175.3013713833, "50"], +[-37.7624527167, 175.3012923833, "52"], +[-37.7648443167, 175.3017212167, "5"], +[-37.7647961333, 175.3019142833, "7"], +[-37.7644728167, 175.30181555, "9"], +[-37.7651648, 175.3016152667, "2"], +[-37.7650657333, 175.30196635, "6"], +[-37.7635318, 175.3017915, "32"], +[-37.76501495, 175.30214865, "8"], +[-37.7626951333, 175.30102495, "33"], +[-37.7628413, 175.3011039167, "31"], +[-37.7252768667, 175.2858272833, "39"], +[-37.7251813, 175.2860325833, "41"], +[-37.7253529667, 175.28606595, "40"], +[-37.72613405, 175.2825743, "4"], +[-37.7260856167, 175.2830322, "8"], +[-37.7258475833, 175.2823754667, "3"], +[-37.7258087333, 175.2855237167, "30"], +[-37.7259408167, 175.2841378667, "16"], +[-37.7252846667, 175.2853744167, "35"], +[-37.7252901, 175.2849533833, "31"], +[-37.7251719333, 175.2845442167, "27"], +[-37.7257350667, 175.2834726333, "15"], +[-37.72551855, 175.2829995667, "11"], +[-37.7258122333, 175.282854, "7"], +[-37.72609895, 175.2827986333, "6"], +[-37.7258737167, 175.28217635, "1"], +[-37.7258311333, 175.2825961667, "5"], +[-37.725612, 175.2828941667, "9"], +[-37.7260252333, 175.2834950167, "12"], +[-37.7258516333, 175.2843625333, "18"], +[-37.7252865167, 175.2856084833, "37"], +[-37.72552805, 175.28440285, "21"], +[-37.7260591667, 175.2832461833, "10"], +[-37.7257771167, 175.2831591833, "13"], +[-37.7256427, 175.2840918167, "19"], +[-37.7252874667, 175.28515965, "33"], +[-37.7253612667, 175.2847015333, "29"], +[-37.7253173333, 175.28437885, "23"], +[-37.7255606833, 175.285023, "24"], +[-37.7255772167, 175.2855245333, "32"], +[-37.7251607833, 175.28435025, "25"], +[-37.7256776333, 175.2858937667, "34"], +[-37.7255147667, 175.2860862, "38"], +[-37.7255604167, 175.2852782667, "26"], +[-37.7258475, 175.2853665167, "28"], +[-37.7256432167, 175.28479385, "22"], +[-37.7261499167, 175.2823003833, "2"], +[-37.7827152167, 175.2669377333, "8"], +[-37.7826653167, 175.2651315333, "19"], +[-37.7824514333, 175.2661956, "1/14-4/14"], +[-37.7826543333, 175.2665598, "10"], +[-37.7825191, 175.2655053833, "20"], +[-37.78283245, 175.2655798167, "15"], +[-37.7825732333, 175.2659369333, "16"], +[-37.7831668, 175.2677692, "1"], +[-37.7824864833, 175.2653481667, "22"], +[-37.7831375667, 175.2675576, "3"], +[-37.78311335, 175.2673731667, "5"], +[-37.7829425, 175.2661583667, "9"], +[-37.7824919333, 175.26519525, "24"], +[-37.7823427, 175.2655492667, "1/20-6/20"], +[-37.7826039667, 175.2661666667, "14"], +[-37.7823595, 175.2664568, "12"], +[-37.78260965, 175.2669722167, "8B"], +[-37.7829082167, 175.2659751167, "11"], +[-37.7826221833, 175.26637085, "12A"], +[-37.7828835, 175.2657931667, "13"], +[-37.7827837833, 175.2653184167, "17"], +[-37.7825404167, 175.2657024167, "18"], +[-37.7825830667, 175.266866, "8A"], +[-37.7826210667, 175.26709865, "8C"], +[-37.78309715, 175.26719625, "7"], +[-37.7824794833, 175.2666219, "1/10-8/10"], +[-37.7597504833, 175.2538294167, "1/4"], +[-37.7606522, 175.2539928833, "9A"], +[-37.7603274167, 175.2536633833, "11"], +[-37.7595836167, 175.25372635, "2/4"], +[-37.7596923167, 175.2539812167, "2"], +[-37.760061, 175.2541011333, "3"], +[-37.7601809333, 175.2539225667, "5"], +[-37.7598443, 175.2536890833, "6"], +[-37.7603764, 175.25413965, "7B"], +[-37.760479, 175.2540011833, "7"], +[-37.75995195, 175.2535132333, "8"], +[-37.7605351667, 175.2538995333, "9"], +[-37.8142647167, 175.29588845, "10A"], +[-37.8141523333, 175.2956623667, "10B"], +[-37.8145259, 175.2959641, "5"], +[-37.8144401167, 175.2958561667, "7"], +[-37.814215, 175.2961794833, "6"], +[-37.8144337833, 175.2962903333, "4"], +[-37.81415115, 175.2955115667, "11"], +[-37.8141950167, 175.2960154, "8"], +[-37.8143154333, 175.2956368333, "9"], +[-37.81463225, 175.2961358, "3"], +[-37.8145120667, 175.2964456333, "2"], +[-37.7267252, 175.24639565, "1"], +[-37.7267363, 175.24607095, "2"], +[-37.7272662667, 175.2464523833, "7"], +[-37.7268794167, 175.2464094833, "3"], +[-37.7270709667, 175.24641145, "5"], +[-37.7272869167, 175.2462229333, "9"], +[-37.7273377333, 175.2459922833, "11"], +[-37.7272791167, 175.2458228, "10"], +[-37.7272242333, 175.2456467, "8"], +[-37.7270979667, 175.2458302667, "6"], +[-37.7269099667, 175.2460811333, "4"], +[-37.7269516667, 175.26654195, "19"], +[-37.7272433667, 175.2688282167, "20"], +[-37.7272086, 175.26856935, "18"], +[-37.7270515167, 175.2663482, "17"], +[-37.7269029167, 175.2684720333, "37"], +[-37.7269129667, 175.2687034167, "39"], +[-37.7270226833, 175.269985, "49"], +[-37.7273227833, 175.27040065, "32"], +[-37.7269961667, 175.2697445667, "47"], +[-37.7277992333, 175.26607075, "10A"], +[-37.7267754833, 175.2668876, "23"], +[-37.7269725833, 175.2695108833, "45"], +[-37.7270770833, 175.2704350667, "53"], +[-37.7270976833, 175.2706593, "55"], +[-37.72769385, 175.26626005, "12B"], +[-37.7273659833, 175.2657939833, "11"], +[-37.7275722833, 175.2659764, "10"], +[-37.7278991667, 175.264895, "1"], +[-37.7270492, 175.2670066667, "16"], +[-37.7272566, 175.2659714833, "13"], +[-37.7271470333, 175.2661578333, "15"], +[-37.7268324667, 175.2677899167, "31"], +[-37.7268681167, 175.2680062167, "33"], +[-37.72689075, 175.2682406167, "35"], +[-37.7269306833, 175.2689642833, "41"], +[-37.72696875, 175.269263, "43"], +[-37.7280193667, 175.2652022667, "2"], +[-37.7278003, 175.2650767167, "3"], +[-37.7277980833, 175.2656216667, "6"], +[-37.7274714833, 175.2661344, "12A"], +[-37.7272278, 175.2690721167, "22"], +[-37.7279022167, 175.26542265, "4"], +[-37.7276824667, 175.2652469167, "5"], +[-37.7268506333, 175.266725, "21"], +[-37.72681425, 175.2673108, "27"], +[-37.7267847667, 175.26708975, "25"], +[-37.7268163333, 175.2675368833, "29"], +[-37.7272382167, 175.2692983333, "24"], +[-37.7270493, 175.27021985, "51"], +[-37.7275880333, 175.2654261, "7"], +[-37.7274762, 175.2656128333, "9"], +[-37.7276818833, 175.2657883, "8"], +[-37.7597651667, 175.2605711667, "6"], +[-37.76018805, 175.2609881, "2"], +[-37.7602787167, 175.2614594333, "2A"], +[-37.7601363333, 175.2614756833, "2B"], +[-37.7599083333, 175.26127835, "4B"], +[-37.7600629667, 175.2613225667, "4A"], +[-37.7591153333, 175.2608816, "9"], +[-37.7594763, 175.2604528333, "3"], +[-37.7595980167, 175.2607975, "10"], +[-37.7592820333, 175.2612282667, "14A"], +[-37.7594027667, 175.2613270333, "14B"], +[-37.7589391833, 175.2613034833, "13"], +[-37.7589293667, 175.2614704, "15"], +[-37.7594669333, 175.26142695, "16"], +[-37.7595715, 175.2603478, "1"], +[-37.7587638667, 175.2617398, "17"], +[-37.75928755, 175.2615212167, "18"], +[-37.7590696333, 175.26160655, "20"], +[-37.76004645, 175.2609580333, "4"], +[-37.7593509167, 175.2605798667, "5"], +[-37.7599710167, 175.2607496667, "6A"], +[-37.75922275, 175.2607182667, "7"], +[-37.7597137667, 175.2612152667, "8"], +[-37.7590570667, 175.26111555, "11"], +[-37.75938005, 175.2610309167, "12"], +[-37.8094496333, 175.29109025, "8A"], +[-37.8096383, 175.2908512833, "6A"], +[-37.8095118833, 175.2907225, "6"], +[-37.8095745, 175.2903304333, "2"], +[-37.8091726, 175.2911845333, "10A"], +[-37.8093263, 175.2908983333, "10"], +[-37.8093507333, 175.2901929667, "1"], +[-37.8093190333, 175.2903236333, "3"], +[-37.8095235833, 175.29050985, "4"], +[-37.8092396833, 175.2904833667, "5"], +[-37.80915545, 175.2906272167, "7"], +[-37.8094314667, 175.2908612, "8"], +[-37.8092101333, 175.2908132833, "9"], +[-37.7533304667, 175.2494180833, "43"], +[-37.7526352, 175.2483552333, "42"], +[-37.7545179333, 175.2496692833, "62"], +[-37.7543923667, 175.2495332667, "62A"], +[-37.7534358667, 175.2504690667, "9"], +[-37.75329495, 175.2497042167, "15A"], +[-37.7540200167, 175.2497675667, "53B"], +[-37.7535320667, 175.2498621167, "49"], +[-37.75358825, 175.2496730833, "49A"], +[-37.7532715667, 175.2495825167, "43A"], +[-37.7530439333, 175.24837735, "35A"], +[-37.7531751167, 175.2483719, "35B"], +[-37.7527424167, 175.24818575, "44"], +[-37.75283325, 175.2480310333, "46"], +[-37.7535719333, 175.2492009333, "45"], +[-37.7540046167, 175.2504339167, "70"], +[-37.75249145, 175.250112, "24A"], +[-37.7538706667, 175.2509267, "5A"], +[-37.7541943667, 175.2492624667, "58"], +[-37.7540283833, 175.2491471, "56"], +[-37.75237835, 175.2499499, "26"], +[-37.75370355, 175.2502355167, "59"], +[-37.7526963167, 175.24923805, "25C"], +[-37.7527793833, 175.2504055667, "18"], +[-37.75318385, 175.2502221167, "13"], +[-37.7543455667, 175.2493899667, "60"], +[-37.7531738833, 175.2486192, "35C"], +[-37.7530230667, 175.2486677, "35E"], +[-37.7530415667, 175.2476700333, "48B"], +[-37.7543446667, 175.2497958833, "64"], +[-37.7541102167, 175.2501747, "68"], +[-37.7542193167, 175.2499942667, "66"], +[-37.7524716, 175.2484220833, "40B"], +[-37.7525259167, 175.24859275, "40A"], +[-37.75304995, 175.24791705, "48A"], +[-37.7533106, 175.2503497833, "11"], +[-37.7535395667, 175.25122055, "10"], +[-37.7530557, 175.2505998333, "14"], +[-37.7534549833, 175.2510777667, "12"], +[-37.7532645, 175.2498790167, "15"], +[-37.7529169167, 175.2505167333, "16"], +[-37.7530122, 175.2501154167, "17"], +[-37.7528793667, 175.2500031, "19"], +[-37.7524861667, 175.250491, "20A"], +[-37.7525711833, 175.25061535, "20B"], +[-37.7527637, 175.2498751667, "21"], +[-37.7526454833, 175.2502624667, "22"], +[-37.7540655667, 175.25139255, "1"], +[-37.7528507167, 175.2495407833, "23"], +[-37.75266675, 175.2490152167, "29"], +[-37.7521746833, 175.24958125, "30"], +[-37.7527662667, 175.2488566833, "31"], +[-37.7520474667, 175.2491321333, "32A"], +[-37.7519347667, 175.2493122333, "32B"], +[-37.7519778, 175.24944285, "32C"], +[-37.7521468667, 175.249391, "32D"], +[-37.75304875, 175.2489884333, "33"], +[-37.7521923833, 175.2490508167, "34"], +[-37.7522956333, 175.24890365, "36"], +[-37.7532920167, 175.2486579167, "37"], +[-37.75239395, 175.2487506167, "38"], +[-37.75335085, 175.24882495, "39"], +[-37.7534400667, 175.24903275, "41"], +[-37.7539658833, 175.2512702167, "3"], +[-37.7536349, 175.2487029667, "50"], +[-37.7538621, 175.2494562, "51"], +[-37.7537511333, 175.2488972667, "52"], +[-37.7540289, 175.2495731, "53"], +[-37.7538807833, 175.2490229333, "54"], +[-37.7538779333, 175.24998435, "55A"], +[-37.7537814, 175.2497839333, "55B"], +[-37.7537928333, 175.2501063833, "57"], +[-37.7538317833, 175.25161815, "4"], +[-37.7539651, 175.2505948667, "72"], +[-37.7538675, 175.2511449833, "5"], +[-37.7535527833, 175.2515935333, "6"], +[-37.7529532333, 175.2496368167, "23B"], +[-37.7528883833, 175.2492822833, "27A"], +[-37.7529762333, 175.2493908, "27B"], +[-37.7524936667, 175.2493519833, "25B"], +[-37.7525876667, 175.2491184, "25A"], +[-37.7527940667, 175.2493274333, "25D"], +[-37.7529821167, 175.2476663833, "48C"], +[-37.7529520833, 175.2478886333, "48D"], +[-37.7526021333, 175.2496809833, "25"], +[-37.7524205833, 175.2502557167, "24"], +[-37.7537035833, 175.2493436, "47"], +[-37.7535693, 175.2506006667, "7"], +[-37.75362475, 175.2513740333, "8"], +[-37.7529255833, 175.2485607333, "35D"], +[-37.7406592, 175.2541540333, "20"], +[-37.73970635, 175.2542623167, "2"], +[-37.7408172333, 175.2542480667, "22"], +[-37.7401503, 175.25436535, "1"], +[-37.7413353, 175.2546195333, "17"], +[-37.7404642833, 175.2540473833, "18"], +[-37.7402663667, 175.25397305, "16"], +[-37.7399413667, 175.2535634167, "10"], +[-37.741079, 175.2547560667, "11"], +[-37.7400583667, 175.2533637167, "12"], +[-37.7412374833, 175.25481145, "13"], +[-37.7400478333, 175.2539777167, "14"], +[-37.7414328, 175.2548579333, "15"], +[-37.73943015, 175.2540313667, "4"], +[-37.7405255667, 175.2544956, "5"], +[-37.7398022833, 175.2540526167, "6"], +[-37.74070675, 175.2545902667, "7"], +[-37.7398755667, 175.2537977833, "8"], +[-37.7408881667, 175.254673, "9"], +[-37.7403441833, 175.2544100333, "3"], +[-37.7388455667, 175.2626767167, "62/3"], +[-37.7372424667, 175.2626006167, "24/3"], +[-37.7387254833, 175.2626415667, "61/3"], +[-37.73830135, 175.2624793833, "57/3"], +[-37.7374028667, 175.2620363833, "16/3"], +[-37.7370862667, 175.26191675, "13/3"], +[-37.7374895833, 175.2632328667, "32/3"], +[-37.7373917333, 175.2631711333, "31/3"], +[-37.7376033167, 175.2632756167, "33/3"], +[-37.7368605333, 175.2629430333, "3/3"], +[-37.7377045, 175.26332575, "34/3"], +[-37.7379133667, 175.2632624, "43/3"], +[-37.7379307833, 175.26316935, "44/3"], +[-37.7379521833, 175.2624367, "53/3"], +[-37.7380988833, 175.2623830167, "55/3"], +[-37.73761405, 175.2621603333, "18/3"], +[-37.73750525, 175.2629252167, "35/3"], +[-37.73791505, 175.2625837167, "54/3"], +[-37.7384692333, 175.2628984, "66/3"], +[-37.7376195667, 175.2624920833, "49/3"], +[-37.7378294667, 175.26282665, "42/3"], +[-37.73799185, 175.2629139, "46/3"], +[-37.737702, 175.262998, "37/3"], +[-37.7375974, 175.26296335, "36/3"], +[-37.7370049833, 175.2629984833, "2/3"], +[-37.7367591, 175.2629045833, "4/3"], +[-37.7371307833, 175.2630572333, "1/3"], +[-37.7379644167, 175.2630417333, "45/3"], +[-37.7373141, 175.2633483333, "1"], +[-37.73663385, 175.2626703333, "6/3"], +[-37.7375158167, 175.2627149167, "39/3"], +[-37.7373195667, 175.2623184, "28/3"], +[-37.7366752333, 175.2621685, "9/3"], +[-37.7366931333, 175.2620520667, "10/3"], +[-37.7368461167, 175.2619946833, "11/3"], +[-37.73694355, 175.2619276667, "12/3"], +[-37.73718485, 175.2619434, "14/3"], +[-37.7373047667, 175.26198635, "15/3"], +[-37.7375193667, 175.2620948167, "17/3"], +[-37.7370616333, 175.2622085, "30/3"], +[-37.7371940167, 175.26224795, "29/3"], +[-37.7374514, 175.2623851333, "27/3"], +[-37.73701605, 175.26246445, "26/3"], +[-37.7371355833, 175.2625268833, "25/3"], +[-37.73733795, 175.2626271667, "23/3"], +[-37.7366885667, 175.2624224833, "8/3"], +[-37.7368083167, 175.2624732333, "7/3"], +[-37.7376435, 175.26238365, "50/3"], +[-37.7377576, 175.2622586833, "51/3"], +[-37.7378621333, 175.2622972167, "52/3"], +[-37.7381938833, 175.26243295, "56/3"], +[-37.73840285, 175.2625139333, "58/3"], +[-37.7385259667, 175.2625530833, "59/3"], +[-37.7381541, 175.2627086, "63/3"], +[-37.7382732833, 175.2627866333, "64/3"], +[-37.73838385, 175.2628331667, "65/3"], +[-37.7386233667, 175.2629346667, "67/3"], +[-37.7387464, 175.2629777167, "68/3"], +[-37.7367412333, 175.2627206667, "5/3"], +[-37.7369866833, 175.2626858333, "22/3"], +[-37.7382063667, 175.2630262833, "48/3"], +[-37.7381730667, 175.2631383167, "47/3"], +[-37.73863995, 175.2631809667, "69/3"], +[-37.73876925, 175.2632203167, "70/3"], +[-37.7377186, 175.2627957, "41/3"], +[-37.7386056333, 175.2625947167, "60/3"], +[-37.73780955, 175.2630405333, "38/3"], +[-37.7375927167, 175.26274085, "40/3"], +[-37.7372908167, 175.26280895, "19/3"], +[-37.7371831167, 175.2627742, "20/3"], +[-37.73706645, 175.26272355, "21/3"], +[-37.7848857333, 175.2653156167, "3"], +[-37.7846897, 175.2649621833, "2"], +[-37.7848253333, 175.2649359833, "4"], +[-37.7849487333, 175.26489275, "6"], +[-37.78521955, 175.2648237167, "10"], +[-37.7854084333, 175.2648019167, "12"], +[-37.7847416667, 175.2653472667, "1"], +[-37.78507545, 175.2648510167, "8"], +[-37.7851414167, 175.2652587, "7-9"], +[-37.7810749167, 175.2260865833, "28"], +[-37.7812585833, 175.2260324333, "22"], +[-37.7816422167, 175.2264606, "14"], +[-37.7814536667, 175.2249716667, "19"], +[-37.7813703667, 175.2248887, "21"], +[-37.7806153833, 175.2258977167, "38A"], +[-37.7813339667, 175.2249035167, "23"], +[-37.7818254167, 175.2261700667, "10"], +[-37.7817087, 175.22580625, "11"], +[-37.7817169833, 175.2265438167, "12"], +[-37.7815778833, 175.2255506167, "13"], +[-37.7815293, 175.2253271167, "15"], +[-37.7816527833, 175.2260800333, "16"], +[-37.7815431667, 175.2250600667, "17"], +[-37.78147695, 175.2260127667, "18"], +[-37.78140705, 175.2259951333, "20"], +[-37.78140725, 175.2250611, "25"], +[-37.7821701667, 175.22568695, "2"], +[-37.7808256833, 175.2261806333, "30"], +[-37.7803146667, 175.2263645333, "34"], +[-37.7804821167, 175.2260699167, "36"], +[-37.78057945, 175.2260467167, "38B"], +[-37.78084715, 175.2260197667, "42"], +[-37.7820658833, 175.22585655, "4"], +[-37.78197925, 175.2255501167, "5"], +[-37.7820102167, 175.225945, "6"], +[-37.7818008333, 175.2254454, "7"], +[-37.78191465, 175.2261307333, "8"], +[-37.7818532167, 175.2256932667, "9"], +[-37.7805437, 175.22621785, "32"], +[-37.7810805833, 175.2263333667, "28A"], +[-37.7811762667, 175.22631885, "24"], +[-37.7807639333, 175.2260749333, "40"], +[-37.7793021, 175.24564255, "49"], +[-37.7777651833, 175.2456859833, "15"], +[-37.7784421167, 175.24699685, "33A"], +[-37.7793903333, 175.24547755, "51A"], +[-37.77822765, 175.2468752, "31B"], +[-37.7785936833, 175.247085, "33B"], +[-37.7767959667, 175.2444615667, "4"], +[-37.7772640833, 175.24537225, "11A"], +[-37.7772418333, 175.2455807167, "11B"], +[-37.7774392333, 175.2455002833, "11"], +[-37.7788892833, 175.24638605, "41"], +[-37.7765553833, 175.24510125, "5A"], +[-37.7772556167, 175.2443746667, "8B"], +[-37.7783660167, 175.2465965833, "29"], +[-37.7783746667, 175.2469562667, "31A"], +[-37.7785127333, 175.2462833, "27"], +[-37.77828355, 175.2467222, "29B"], +[-37.7778905667, 175.2449757333, "14B"], +[-37.77811685, 175.2459887333, "21"], +[-37.77812625, 175.2451698, "16B"], +[-37.77685575, 175.2454074167, "9B"], +[-37.7778224, 175.2448942333, "12D"], +[-37.7776097667, 175.2449414833, "12B"], +[-37.7773122167, 175.2449827167, "10A"], +[-37.7774564333, 175.2448546667, "10B"], +[-37.7771903667, 175.2448475833, "10"], +[-37.7766183, 175.24437525, "2"], +[-37.7765997, 175.2447507333, "3"], +[-37.7767436833, 175.2448779167, "5"], +[-37.7791788667, 175.2448347667, "59"], +[-37.7769282, 175.2445856833, "6"], +[-37.7772878333, 175.2445667, "8A"], +[-37.7770573667, 175.2447268, "8"], +[-37.7774421667, 175.2450888333, "12A"], +[-37.7775949333, 175.2451998, "12"], +[-37.7775823, 175.2455937, "13"], +[-37.7779028, 175.2453971167, "16"], +[-37.77770755, 175.2460571667, "17"], +[-37.7779564833, 175.2458486833, "19"], +[-37.7783202667, 175.2461386667, "25"], +[-37.7786794667, 175.2468893167, "35A"], +[-37.7785339333, 175.2467651, "35"], +[-37.7785958, 175.2465777833, "37"], +[-37.7786866667, 175.2464246167, "39"], +[-37.7789980667, 175.2461917, "43"], +[-37.7787656, 175.2459418333, "44"], +[-37.7791077333, 175.2460125, "45"], +[-37.7789203833, 175.2456892667, "46"], +[-37.7791866167, 175.2458314333, "47"], +[-37.7796122667, 175.24551655, "51B"], +[-37.779086, 175.2453891167, "48"], +[-37.77941975, 175.2453601833, "53"], +[-37.7768613, 175.2450064167, "7"], +[-37.7793459, 175.2451804, "55"], +[-37.7792608667, 175.2450142, "57"], +[-37.7771182, 175.2452336, "9A"], +[-37.7769709167, 175.2451158333, "9"], +[-37.7780683667, 175.2463389167, "23"], +[-37.7778037167, 175.2451369167, "14A"], +[-37.7777571667, 175.2453339, "14"], +[-37.7777204833, 175.2450323833, "12C"], +[-37.7775124667, 175.24586945, "13B"], +[-37.7780105333, 175.2453026167, "16A"], +[-37.7764697833, 175.2446005667, "1"], +[-37.7262197667, 175.2569535667, "17"], +[-37.7257716667, 175.25708405, "12"], +[-37.7267243667, 175.2571549667, "11"], +[-37.7253754167, 175.2567279167, "20"], +[-37.72629745, 175.2577646333, "4"], +[-37.7262989167, 175.257438, "6"], +[-37.7253687167, 175.2571796833, "16"], +[-37.7253943667, 175.25695295, "18"], +[-37.7254218, 175.2565116333, "22"], +[-37.7260980167, 175.2572696667, "8"], +[-37.7259295333, 175.25718165, "10"], +[-37.7255974, 175.2570222, "14"], +[-37.7254344333, 175.2562712333, "24"], +[-37.7256040833, 175.2565605, "25"], +[-37.72622785, 175.2579636833, "2"], +[-37.72574695, 175.2566180167, "23"], +[-37.7259075667, 175.2567189833, "21"], +[-37.7260596167, 175.2568460167, "19"], +[-37.7264394, 175.2582478833, "1"], +[-37.7263907333, 175.2570548833, "15"], +[-37.7265411333, 175.2571325, "13"], +[-37.7266598167, 175.2573508333, "9"], +[-37.7266342, 175.2575744167, "7"], +[-37.72659495, 175.2578238667, "5"], +[-37.7265300167, 175.25804945, "3"], +[-37.7235586333, 175.23853725, "14"], +[-37.7233930333, 175.2389119667, "10"], +[-37.7234124, 175.2390997167, "8"], +[-37.7234167, 175.23934255, "6"], +[-37.7236546833, 175.2391763167, "7"], +[-37.7239294167, 175.2390302833, "9"], +[-37.7236308167, 175.2395468667, "3"], +[-37.7237559, 175.2388842833, "11"], +[-37.7233825833, 175.2398735833, "2"], +[-37.7236054333, 175.2397653333, "1"], +[-37.7238064167, 175.23936545, "5"], +[-37.72364645, 175.2387857, "13"], +[-37.7234661333, 175.23874475, "12"], +[-37.7234067333, 175.23960245, "4"], +[-37.7612120833, 175.2913805, "9"], +[-37.7609759667, 175.2911731833, "10"], +[-37.7612604167, 175.2912083667, "11"], +[-37.7610263333, 175.2909914833, "12"], +[-37.7613012833, 175.29104985, "13"], +[-37.7610748333, 175.2908352667, "14"], +[-37.7613606, 175.2908732167, "15"], +[-37.7611239667, 175.29066575, "16"], +[-37.76140845, 175.2907058667, "17"], +[-37.76117655, 175.2904879167, "18"], +[-37.7614558, 175.2905301833, "19"], +[-37.7612256, 175.2903076833, "20"], +[-37.7614981333, 175.2903653833, "21"], +[-37.7612767667, 175.2901167167, "22"], +[-37.7615602667, 175.29019715, "23"], +[-37.7613307, 175.2899242833, "24"], +[-37.7616580667, 175.2900509833, "25"], +[-37.7616780667, 175.2898703833, "27"], +[-37.7615554167, 175.2897332, "29"], +[-37.76082765, 175.29169955, "4"], +[-37.7611175333, 175.2917206167, "5"], +[-37.7608783667, 175.2915259833, "6"], +[-37.7611563667, 175.2915801667, "7"], +[-37.7609342833, 175.2913477167, "8"], +[-37.7610753, 175.2919082, "3"], +[-37.7868609, 175.31038555, "4A"], +[-37.7875078833, 175.30979325, "5D"], +[-37.7875478667, 175.31022405, "1"], +[-37.7874755, 175.3100678667, "3"], +[-37.7873802333, 175.31057055, "2A"], +[-37.7874522, 175.3097792167, "5C"], +[-37.7873398167, 175.30975355, "5A"], +[-37.7869160833, 175.3099653833, "8A"], +[-37.7872524333, 175.3103806167, "2B"], +[-37.7873316333, 175.3104712833, "2"], +[-37.7871303333, 175.3103019333, "4"], +[-37.7873681333, 175.3099448833, "5"], +[-37.7872229167, 175.3099507833, "7"], +[-37.78712425, 175.3100595333, "8"], +[-37.7869908, 175.3098661, "8B"], +[-37.7874031667, 175.3097702667, "5B"], +[-37.7875616, 175.30980965, "5E"], +[-37.7868954333, 175.3104884667, "4B"], +[-37.7869749667, 175.3102161167, "1/6-4/6"], +[-37.81723905, 175.3135433833, "60"], +[-37.8197645833, 175.3135668333, "90"], +[-37.8178333667, 175.3133243667, "66"], +[-37.8172077167, 175.3149371667, "49"], +[-37.8202736833, 175.3126768, "103"], +[-37.81753045, 175.3132870167, "64"], +[-37.8149975, 175.3147039667, "30"], +[-37.8164975833, 175.3151276667, "42"], +[-37.81865045, 175.3134551167, "76"], +[-37.8168650833, 175.3142839167, "52"], +[-37.8193460667, 175.31226025, "112"], +[-37.8197158833, 175.312024, "111"], +[-37.8201446333, 175.31411415, "89"], +[-37.81856725, 175.3141600833, "75"], +[-37.8167579167, 175.3158202, "41"], +[-37.8149139333, 175.3154098833, "29"], +[-37.8138394333, 175.3154171333, "15"], +[-37.8154037667, 175.31333145, "48"], +[-37.8156662833, 175.3139124167, "46"], +[-37.8167651167, 175.3144913833, "50"], +[-37.8171282333, 175.3137053667, "58"], +[-37.8170286, 175.3138978333, "56"], +[-37.8169531167, 175.3140760333, "54"], +[-37.8160352667, 175.31454215, "44"], +[-37.7848640333, 175.2339577, "14C"], +[-37.78473585, 175.2340143667, "14D"], +[-37.7847924167, 175.2338084333, "14B"], +[-37.7849254333, 175.23385995, "14A"], +[-37.7852154667, 175.23443205, "8"], +[-37.7849546667, 175.23321465, "17"], +[-37.7848192833, 175.2334281, "19A"], +[-37.7849937667, 175.2336859667, "19"], +[-37.7851260833, 175.2342534, "10"], +[-37.7853004167, 175.2338535833, "11"], +[-37.7850403, 175.2340968833, "12"], +[-37.7852105167, 175.23370195, "13"], +[-37.7851887167, 175.233361, "15A"], +[-37.7850661167, 175.23303105, "15B"], +[-37.7851036667, 175.23356135, "17A"], +[-37.7855327, 175.2349759667, "2"], +[-37.78577185, 175.2345580167, "3A"], +[-37.7856608667, 175.2345678167, "3"], +[-37.7854231833, 175.2348101333, "4"], +[-37.78574885, 175.2342694167, "5A"], +[-37.7854728833, 175.2341992667, "7"], +[-37.78538635, 175.2340378167, "9"], +[-37.7853413667, 175.23463415, "6"], +[-37.7855578833, 175.2343827333, "5"], +[-37.7631439, 175.2622562, "110A"], +[-37.7602843333, 175.2603932, "168"], +[-37.7637956667, 175.2621008833, "98"], +[-37.7639773, 175.2622828667, "92"], +[-37.7638037, 175.26264755, "94"], +[-37.7659342833, 175.2635993667, "56A"], +[-37.7659368, 175.2633496167, "56"], +[-37.7616370167, 175.2603603667, "127A"], +[-37.7600091833, 175.2599642167, "147"], +[-37.7634513333, 175.26197995, "104"], +[-37.7636101167, 175.2611197, "105"], +[-37.7613393, 175.2607631, "150"], +[-37.76809015, 175.2620409333, "1"], +[-37.7673668167, 175.2628163333, "19"], +[-37.7630548333, 175.2612535167, "111"], +[-37.76370055, 175.2611883667, "103"], +[-37.7625179167, 175.2619525333, "122"], +[-37.7618442833, 175.2610729833, "140"], +[-37.7605836333, 175.2600042333, "141"], +[-37.7616891, 175.2609799, "142"], +[-37.7603969333, 175.2599739667, "143"], +[-37.7662387, 175.2639369667, "48B"], +[-37.76613545, 175.2643097167, "48"], +[-37.7643338667, 175.2619961167, "95"], +[-37.7630043667, 175.2607461333, "113A"], +[-37.7624281667, 175.2608832833, "119"], +[-37.762713, 175.2607140667, "117A"], +[-37.7627966167, 175.26211305, "116"], +[-37.7629270167, 175.2611316, "113"], +[-37.7627582333, 175.2610575, "115"], +[-37.76554175, 175.2626782833, "69"], +[-37.7652250667, 175.2635738833, "72"], +[-37.7631116667, 175.2617963333, "112"], +[-37.767608, 175.2620602, "9"], +[-37.7632698667, 175.2623898167, "106A"], +[-37.76343155, 175.2608935667, "107A"], +[-37.7632021167, 175.2608483333, "107B"], +[-37.7663723333, 175.2635169833, "46"], +[-37.7650728833, 175.2629089, "78"], +[-37.7651788, 175.2624390333, "77"], +[-37.7666549833, 175.2628606, "45A"], +[-37.7667356167, 175.2626501833, "45B"], +[-37.7636187667, 175.2615776, "101"], +[-37.7654196333, 175.2631131333, "70"], +[-37.76542265, 175.2626103167, "73"], +[-37.7652197167, 175.2629768333, "76"], +[-37.76556085, 175.2631906833, "68"], +[-37.7678409, 175.2623011333, "7"], +[-37.7654621833, 175.2635061333, "68A"], +[-37.76349695, 175.2623010167, "1/100"], +[-37.7617466667, 175.26051765, "125"], +[-37.76624285, 175.2630277, "49"], +[-37.76316045, 175.2625332333, "106"], +[-37.7628951833, 175.2621484667, "114"], +[-37.76258995, 175.2609849, "117"], +[-37.7615124667, 175.2603941667, "127"], +[-37.7612858333, 175.2601207667, "129A"], +[-37.7613251667, 175.2602899333, "129"], +[-37.7611459667, 175.2602042833, "131"], +[-37.76098395, 175.2600962167, "133"], +[-37.7607920333, 175.2601076333, "135"], +[-37.7608030167, 175.2596704833, "137"], +[-37.76066405, 175.2596351167, "139"], +[-37.76142355, 175.26129425, "144"], +[-37.7602187333, 175.2599644833, "145"], +[-37.76151385, 175.2608684333, "146"], +[-37.7611856667, 175.2612429667, "148"], +[-37.7611686833, 175.2609431, "150A"], +[-37.7610617167, 175.2606134833, "154"], +[-37.7608407667, 175.2605341667, "156"], +[-37.7606834, 175.26102525, "158"], +[-37.7605736667, 175.2610025667, "162"], +[-37.7606162167, 175.26045155, "164"], +[-37.7604574167, 175.2604188333, "166"], +[-37.7634871167, 175.2625684667, "2/100"], +[-37.76013195, 175.2603759667, "170"], +[-37.7595281167, 175.2600975667, "174"], +[-37.7633335667, 175.2626626667, "3/100"], +[-37.7634545333, 175.2628791333, "4/100"], +[-37.7632051, 175.2629954, "5/100"], +[-37.7649572667, 175.2628267333, "80"], +[-37.7645753667, 175.2621035667, "91"], +[-37.7644162, 175.2620150833, "93"], +[-37.7675026833, 175.2619648667, "11A"], +[-37.76750395, 175.2616956167, "11B"], +[-37.7636826667, 175.2625631333, "96A"], +[-37.7635224167, 175.2629220833, "96B"], +[-37.7639099667, 175.2617144333, "97"], +[-37.7636263667, 175.2619930667, "98A"], +[-37.7637816167, 175.2616396667, "99"], +[-37.7675461333, 175.2621574333, "13"], +[-37.7677011, 175.2629696, "14"], +[-37.7676711667, 175.2624652667, "15"], +[-37.76751225, 175.2626591167, "17"], +[-37.7634095667, 175.26144075, "107"], +[-37.76759425, 175.2631043333, "20"], +[-37.76752035, 175.26316515, "22"], +[-37.7673445833, 175.26336365, "30"], +[-37.76705165, 175.2631237667, "31"], +[-37.7667426, 175.26362875, "36"], +[-37.7665981333, 175.2635913833, "38"], +[-37.7682917333, 175.2623185333, "4"], +[-37.7664966833, 175.2639979333, "42"], +[-37.76643365, 175.26399685, "44A"], +[-37.7679647333, 175.2621665667, "5"], +[-37.7661842333, 175.26349525, "50A"], +[-37.7661278, 175.2637593333, "50B"], +[-37.765972, 175.2638264333, "52"], +[-37.7660366833, 175.2629253833, "53"], +[-37.7658739, 175.2638590667, "54"], +[-37.76585005, 175.2627796333, "59"], +[-37.76579965, 175.2633010833, "60"], +[-37.7656056, 175.2637216, "62"], +[-37.7654908333, 175.2636888833, "64"], +[-37.76819325, 175.2624454333, "6"], +[-37.7651119, 175.2635572667, "74A"], +[-37.7649997167, 175.2639338167, "74"], +[-37.7652990667, 175.26253295, "75"], +[-37.76243125, 175.2619099167, "124"], +[-37.76321585, 175.2613505333, "109"], +[-37.7625282167, 175.2614639, "126"], +[-37.7623786167, 175.2613814, "128"], +[-37.7672029833, 175.2629611333, "25"], +[-37.7632550667, 175.2618796, "110"], +[-37.7627351167, 175.2615822667, "120"], +[-37.76216785, 175.2612444333, "130"], +[-37.7619757167, 175.26162375, "134"], +[-37.7618845667, 175.2615612833, "136"], +[-37.7619889167, 175.2611511333, "138"], +[-37.76651215, 175.26310165, "45"], +[-37.7664078167, 175.2642878667, "44"], +[-37.7677464667, 175.2617644, "9A"], +[-37.7630702333, 175.2625542833, "108"], +[-37.7666945167, 175.2631189, "39"], +[-37.7628911333, 175.2616631833, "118"], +[-37.7611787167, 175.26070385, "152"], +[-37.8022260167, 175.2841593833, "20"], +[-37.8023124167, 175.2842192667, "22"], +[-37.8013041833, 175.2842338833, "6"], +[-37.8015845167, 175.28420325, "10"], +[-37.8017325333, 175.2841912667, "12"], +[-37.8018818667, 175.2841748, "14"], +[-37.8020688833, 175.2837133833, "16A"], +[-37.8020296, 175.2841606333, "16"], +[-37.8021405, 175.2841617833, "18"], +[-37.8023036167, 175.2843752833, "24"], +[-37.8022950333, 175.2845544833, "26"], +[-37.80102785, 175.2842638333, "2"], +[-37.80116085, 175.28425295, "4"], +[-37.8014396167, 175.2842133333, "8"], +[-37.8059534167, 175.3390774833, "54"], +[-37.8074238833, 175.3390668, "48"], +[-37.80841195, 175.33703695, "12"], +[-37.8054835333, 175.3365260667, "39"], +[-37.8064726833, 175.3377237167, "46"], +[-37.8061424833, 175.3385769667, "50"], +[-37.8050082667, 175.3375369333, "51"], +[-37.80582995, 175.3382473833, "49"], +[-37.8091662333, 175.3369300167, "6"], +[-37.7970732, 175.3040193833, "2"], +[-37.7971802667, 175.3042689333, "4A"], +[-37.7970212333, 175.3042299167, "4"], +[-37.7969339667, 175.30470555, "8"], +[-37.7969721, 175.3044727333, "6"], +[-37.7238877333, 175.2845341167, "12"], +[-37.72385565, 175.2847481333, "14"], +[-37.72362125, 175.28552295, "20"], +[-37.72357865, 175.2849301833, "17"], +[-37.7236221667, 175.2844840667, "13"], +[-37.7236022833, 175.2847084333, "15"], +[-37.7236505333, 175.2839464167, "3"], +[-37.7231911833, 175.2842734833, "9"], +[-37.72335805, 175.2842048333, "7"], +[-37.7233429833, 175.28438145, "11"], +[-37.7236239667, 175.28376125, "1"], +[-37.7236490333, 175.2842000667, "5"], +[-37.72341735, 175.28530825, "21"], +[-37.7235087833, 175.28517445, "19"], +[-37.7239102333, 175.2843383167, "10"], +[-37.7239014167, 175.2837946667, "4"], +[-37.7238560833, 175.2835903833, "2"], +[-37.79713865, 175.3306502, "10"], +[-37.7973972667, 175.3302434833, "4"], +[-37.79727295, 175.3299370667, "1"], +[-37.7974492667, 175.33006675, "2"], +[-37.7970996833, 175.3302588667, "3"], +[-37.7969803, 175.3304307667, "5"], +[-37.7973279, 175.3304096833, "6"], +[-37.797011, 175.3306054167, "7"], +[-37.79725645, 175.3305611833, "8"], +[-37.7888188667, 175.2464136333, "14"], +[-37.7890352167, 175.2464170667, "12"], +[-37.7876791667, 175.2459399667, "13"], +[-37.7888092167, 175.2462404333, "8"], +[-37.7885796167, 175.2460883333, "6"], +[-37.7881572333, 175.2463688, "7"], +[-37.7884441833, 175.2465412667, "18A"], +[-37.7883078833, 175.2466674, "20"], +[-37.7877977, 175.2466454833, "28"], +[-37.7882779833, 175.2461990833, "5"], +[-37.788575, 175.2466896333, "18B"], +[-37.7885240167, 175.2463747833, "16"], +[-37.7876996833, 175.2461526667, "15"], +[-37.78910025, 175.2461287833, "10A"], +[-37.7890114833, 175.2462971833, "10"], +[-37.7877894333, 175.2459782833, "11"], +[-37.7883999333, 175.2455651, "1"], +[-37.7881298, 175.2467494833, "22"], +[-37.7879991667, 175.2468147, "24"], +[-37.7878671667, 175.2469551167, "26A"], +[-37.7878669333, 175.2467953667, "26"], +[-37.7886727333, 175.2456061667, "2"], +[-37.7883223667, 175.2459710167, "3"], +[-37.78863865, 175.245792, "4"], +[-37.7879123833, 175.2463825333, "9"], +[-37.7877528167, 175.2464523167, "17"], +[-37.7846624333, 175.30716505, "6A"], +[-37.78448545, 175.3070917333, "6B"], +[-37.7847634833, 175.3075953, "2"], +[-37.7850645833, 175.3074598667, "1/3-5/3"], +[-37.78509625, 175.3072963167, "5"], +[-37.7851417, 175.30709635, "7"], +[-37.7851844333, 175.3069033667, "9"], +[-37.7853633167, 175.3073257333, "1/5-12/5"], +[-37.7855009167, 175.3072189833, "1/7-4/7"], +[-37.7849711667, 175.3059643, "18A"], +[-37.7854620833, 175.306929, "11B"], +[-37.7848751833, 175.3067755333, "10B"], +[-37.78496055, 175.3079613167, "1"], +[-37.7850248, 175.30641015, "14"], +[-37.7855647, 175.3067048833, "11A"], +[-37.78544885, 175.3066311833, "15B"], +[-37.7853874167, 175.3064388167, "15"], +[-37.7848091333, 175.3073622833, "4A-4D"], +[-37.7847143, 175.30670495, "10D"], +[-37.7849549333, 175.3068006833, "10A"], +[-37.7849811333, 175.30661645, "12"], +[-37.7848520667, 175.3071772833, "6"], +[-37.7848887, 175.3070031333, "8"], +[-37.7854819, 175.3063326833, "19"], +[-37.7852513667, 175.3061564833, "20"], +[-37.7853723167, 175.3062221667, "21"], +[-37.7854518, 175.3068039333, "11"], +[-37.7856529167, 175.3063900167, "17"], +[-37.7847939167, 175.3067368333, "10C"], +[-37.7851991833, 175.3060330333, "20A"], +[-37.78510575, 175.3060572167, "18"], +[-37.7850909, 175.3062396667, "16"], +[-37.7853377667, 175.3066394333, "15A"], +[-37.8078117833, 175.2892149667, "2"], +[-37.8075308167, 175.2887978167, "5"], +[-37.8074579833, 175.28919455, "6"], +[-37.8072038167, 175.28909925, "10"], +[-37.80705015, 175.28874655, "11A"], +[-37.8076613, 175.2888589, "3"], +[-37.8076320667, 175.2894985167, "4B"], +[-37.8076472333, 175.289191, "4"], +[-37.8074063833, 175.2887118333, "7"], +[-37.8072960333, 175.2892243667, "8"], +[-37.8071351667, 175.28849385, "9A"], +[-37.80724875, 175.2887472333, "9"], +[-37.8071736, 175.2888959167, "11"], +[-37.7242600167, 175.24159215, "3"], +[-37.7242534833, 175.2419106333, "4"], +[-37.7243799833, 175.2415754333, "1"], +[-37.7241185333, 175.2416265167, "5"], +[-37.7505920667, 175.2473854333, "5"], +[-37.7507176333, 175.2470587167, "6B"], +[-37.7507239333, 175.2468372, "6A"], +[-37.7506521333, 175.24679705, "4A"], +[-37.7504650833, 175.2470270333, "1"], +[-37.7505821333, 175.2469708667, "4"], +[-37.75045465, 175.2473287667, "3"], +[-37.7507022, 175.2473127333, "7"], +[-37.7507579167, 175.2471758167, "8"], +[-37.8130554667, 175.2968399833, "3"], +[-37.8126748833, 175.29689275, "1"], +[-37.7988459833, 175.29440365, "11"], +[-37.79933545, 175.2949584167, "8"], +[-37.7991592167, 175.2948438, "10"], +[-37.7992777333, 175.2942814833, "7A"], +[-37.7995463333, 175.2944530167, "4"], +[-37.7987133333, 175.2944380333, "13"], +[-37.7988976667, 175.29460205, "15"], +[-37.7998327, 175.2941548333, "1"], +[-37.7997495333, 175.29442295, "2"], +[-37.79968245, 175.2941395, "3"], +[-37.79952535, 175.2941553667, "5"], +[-37.7993490167, 175.2945872833, "6"], +[-37.7993712833, 175.2942207833, "7"], +[-37.7991736, 175.2943882167, "9"], +[-37.7990521, 175.2947493833, "12"], +[-37.7649190667, 175.2412935333, "110"], +[-37.7661134, 175.2415559167, "106"], +[-37.7658534667, 175.2396078, "100"], +[-37.7674721167, 175.242039, "102"], +[-37.7666788667, 175.2417925333, "104"], +[-37.7668731833, 175.2392888333, "98"], +[-37.7654888833, 175.2413174, "108"], +[-37.7676173833, 175.2395723333, "26"], +[-37.7678023667, 175.23974805, "18"], +[-37.7842102333, 175.2625544833, "2A"], +[-37.7853071333, 175.262265, "12A"], +[-37.786041, 175.2624418167, "19"], +[-37.7850346667, 175.26232015, "8"], +[-37.7851776, 175.2622838833, "10"], +[-37.7843287333, 175.2625276167, "2"], +[-37.7856592, 175.2621971, "16"], +[-37.78593495, 175.2624569667, "17"], +[-37.7858555167, 175.2624850333, "15"], +[-37.7853585, 175.2622487, "12"], +[-37.7846963, 175.2628002167, "3"], +[-37.7844491333, 175.2624548833, "4"], +[-37.7846683333, 175.2624216833, "6"], +[-37.78655525, 175.2618610667, "21"], +[-37.78455735, 175.26285885, "1"], +[-37.7854721, 175.2622175, "14"], +[-37.78509525, 175.2626384167, "7"], +[-37.8196320333, 175.2255586, "22"], +[-37.8209711, 175.2250444667, "8"], +[-37.82120665, 175.2252942833, "5"], +[-37.8210184, 175.2254290333, "7"], +[-37.8213430333, 175.2252086167, "3"], +[-37.8207887833, 175.2251555667, "10"], +[-37.82060805, 175.2257042333, "13"], +[-37.8208330333, 175.22553905, "9"], +[-37.8216988833, 175.2249665667, "1"], +[-37.8215665833, 175.2246573333, "2"], +[-37.8213729, 175.2247789333, "4"], +[-37.8211700667, 175.2249324333, "6"], +[-37.8205967667, 175.2252867, "12"], +[-37.8204008833, 175.2254234667, "14"], +[-37.82043265, 175.22582195, "15"], +[-37.8202037333, 175.2255415833, "16"], +[-37.8200154333, 175.2256547667, "18"], +[-37.8197443167, 175.2256164833, "20"], +[-37.8202814333, 175.22590955, "17"], +[-37.7464336167, 175.26606315, "4"], +[-37.7456806667, 175.2644742333, "17A"], +[-37.745334, 175.2650242667, "19"], +[-37.7462760833, 175.265957, "6"], +[-37.7454419167, 175.26487095, "17"], +[-37.7459381167, 175.26576525, "10"], +[-37.7458954333, 175.2652767, "11"], +[-37.7457833, 175.2656899167, "12"], +[-37.7457353333, 175.2651871333, "13"], +[-37.7456211833, 175.2650204, "15"], +[-37.7454982333, 175.2655094833, "16"], +[-37.7453630667, 175.2654104667, "18"], +[-37.7452693833, 175.2652033167, "21"], +[-37.7465629667, 175.2661208167, "2"], +[-37.7464986833, 175.2656454, "3"], +[-37.7463329, 175.26552635, "5"], +[-37.7461966167, 175.26542885, "7"], +[-37.7461075833, 175.2658617333, "8"], +[-37.7460412667, 175.26536825, "9"], +[-37.7456523167, 175.2656088, "14"], +[-37.7451934333, 175.2653592, "20"], +[-37.7427715333, 175.20623525, "27"], +[-37.74566845, 175.2057879167, "56"], +[-37.7471736333, 175.20593555, "76"], +[-37.7419744, 175.20617225, "17"], +[-37.7510156167, 175.2046167333, "124"], +[-37.75244, 175.2047492, "135"], +[-37.7527787167, 175.20421825, "139"], +[-37.7430591833, 175.20629565, "29"], +[-37.7441205, 175.2057358833, "38"], +[-37.7502797667, 175.2054581333, "111"], +[-37.75055145, 175.2052155167, "113"], +[-37.7516109333, 175.2051043833, "129"], +[-37.7463663, 175.2058849167, "64"], +[-37.7480004333, 175.2059869333, "82"], +[-37.7489092333, 175.2067328333, "87"], +[-37.7498675667, 175.2065260333, "89"], +[-37.7487339833, 175.2058888667, "92"], +[-37.73773305, 175.2320632, "14"], +[-37.7384815, 175.2328300667, "2"], +[-37.7382538, 175.2326238833, "6"], +[-37.7383460667, 175.23214375, "7"], +[-37.73795715, 175.232614, "8A"], +[-37.7381004833, 175.2324674333, "8"], +[-37.7360197, 175.2300411167, "39"], +[-37.7359505, 175.2305166167, "38"], +[-37.7366929667, 175.23062495, "29"], +[-37.7351097, 175.2306819667, "52"], +[-37.7379831333, 175.2323429167, "10"], +[-37.7380715167, 175.2318607833, "11"], +[-37.7378585, 175.23218295, "12"], +[-37.7379467, 175.2317427667, "13"], +[-37.7349211333, 175.23058085, "56"], +[-37.7348779333, 175.2301760167, "57"], +[-37.7347014, 175.2305358167, "58"], +[-37.73481065, 175.2303679833, "59"], +[-37.7378243, 175.2316112667, "15"], +[-37.7376118, 175.23193355, "16"], +[-37.7376865167, 175.23149555, "17"], +[-37.73748255, 175.2318036167, "18"], +[-37.7375598667, 175.2313612, "19"], +[-37.7373491167, 175.2316836167, "20"], +[-37.7374137167, 175.23123165, "21"], +[-37.7372114833, 175.2315735667, "22"], +[-37.73726565, 175.2310911833, "23"], +[-37.73708585, 175.2314638833, "24"], +[-37.73711255, 175.23098585, "25"], +[-37.7369485167, 175.2313387333, "26"], +[-37.7369726, 175.2308700667, "27"], +[-37.7367989, 175.2312282833, "28"], +[-37.7386017667, 175.2323989667, "3"], +[-37.7365530167, 175.2305091667, "31"], +[-37.73638755, 175.2308075333, "32"], +[-37.7364366, 175.2303714167, "33"], +[-37.7362605333, 175.2306921833, "34"], +[-37.73630295, 175.2302614833, "35"], +[-37.73614155, 175.2306069833, "36"], +[-37.7361655333, 175.2301413667, "37"], +[-37.7357456167, 175.2307667167, "40"], +[-37.73589885, 175.22991545, "41"], +[-37.7356709, 175.2307039, "42"], +[-37.7357620167, 175.2298044833, "43"], +[-37.7383516, 175.2327064667, "4"], +[-37.7384772333, 175.2322673833, "5"], +[-37.7382213667, 175.2320203167, "9"], +[-37.7357733833, 175.2303605833, "44"], +[-37.7356252667, 175.2296897167, "45"], +[-37.7354624667, 175.2302446333, "46"], +[-37.7355630167, 175.2294783667, "47"], +[-37.7354276333, 175.2295996333, "49"], +[-37.73518595, 175.2299224833, "53"], +[-37.7352911667, 175.2297965, "51"], +[-37.7352780333, 175.2305807333, "50"], +[-37.7353785167, 175.2303861333, "48"], +[-37.7350218, 175.2308391167, "54"], +[-37.7350140333, 175.2300277167, "55"], +[-37.7399005167, 175.22132115, "29"], +[-37.7402768, 175.2213922167, "25"], +[-37.74113625, 175.22354575, "1"], +[-37.74102125, 175.2230412, "2"], +[-37.7412212, 175.2222862333, "11-19"], +[-37.74028625, 175.2220677, "20"], +[-37.7404880333, 175.2216159833, "21"], +[-37.7397858833, 175.22172485, "33"], +[-37.7396080333, 175.2220267167, "37"], +[-37.7414898833, 175.2226238333, "5-9"], +[-37.7908772167, 175.2845330667, "29"], +[-37.7909315833, 175.28444245, "29A"], +[-37.7908778833, 175.2837861833, "30"], +[-37.7906916833, 175.2852726167, "19A"], +[-37.7907148, 175.2848330667, "17B"], +[-37.7906273167, 175.2849705833, "38"], +[-37.7905938167, 175.2854330333, "15E"], +[-37.7904068333, 175.2846061, "20"], +[-37.790849, 175.2849685, "17A"], +[-37.7904937333, 175.2844335333, "26"], +[-37.7903816667, 175.2853694167, "5"], +[-37.7903647333, 175.28467505, "18"], +[-37.79079725, 175.2839289, "30A"], +[-37.7905561, 175.28540185, "15D"], +[-37.7910169667, 175.2843010667, "33"], +[-37.7907814, 175.2846988167, "27"], +[-37.7912784167, 175.2838885333, "41"], +[-37.7903247667, 175.2847402833, "16"], +[-37.7901632833, 175.2845915333, "12"], +[-37.7900592833, 175.2848031667, "8"], +[-37.7904761167, 175.2852089167, "15"], +[-37.7905265333, 175.2851277333, "17"], +[-37.7906344, 175.2854719833, "15F"], +[-37.79052095, 175.2853654, "15C"], +[-37.79044035, 175.2852802, "15A"], +[-37.6977625167, 175.21575595, "20"], +[-37.6980328333, 175.2155096167, "19"], +[-37.6979958, 175.2170664, "10"], +[-37.6980388333, 175.2163462833, "12"], +[-37.6983196, 175.2155760833, "17"], +[-37.69861325, 175.2162961833, "9"], +[-37.6986991667, 175.2169955, "6"], +[-37.7709299667, 175.2857408167, "23"], +[-37.7709680833, 175.2870442, "36"], +[-37.77114955, 175.2862611833, "28"], +[-37.77119435, 175.2860529667, "26"], +[-37.7715152833, 175.2846512, "14"], +[-37.7711521833, 175.2847219833, "15"], +[-37.7713401, 175.2839167, "7"], +[-37.7708333667, 175.2861361167, "27"], +[-37.7710606167, 175.2866493833, "32"], +[-37.7706005833, 175.2869267833, "35A"], +[-37.77129495, 175.28411535, "9"], +[-37.7713947333, 175.2837120667, "5"], +[-37.77177155, 175.2834127167, "2"], +[-37.7717351333, 175.2836859667, "4"], +[-37.7716605333, 175.2840382667, "8"], +[-37.7709897833, 175.28553645, "21"], +[-37.7716165667, 175.28422055, "10"], +[-37.7712484, 175.2843200167, "11"], +[-37.7715654333, 175.2844269, "12"], +[-37.7714467833, 175.2835164667, "3"], +[-37.7717058833, 175.2838450167, "6"], +[-37.7711089, 175.28491455, "17"], +[-37.7714263667, 175.2850367, "18"], +[-37.7710580167, 175.2851123167, "19"], +[-37.7712463667, 175.28586055, "24"], +[-37.7708866833, 175.2859344333, "25"], +[-37.77137395, 175.2852321667, "20"], +[-37.7707845167, 175.2863328, "29"], +[-37.7711056, 175.2864452333, "30"], +[-37.77074, 175.2865307167, "31"], +[-37.7706997167, 175.28672985, "33"], +[-37.77101615, 175.2868565167, "34"], +[-37.7706464167, 175.2869416667, "35"], +[-37.7709265, 175.2872536667, "38"], +[-37.7708782167, 175.28744335, "40"], +[-37.7708398, 175.2876040333, "42"], +[-37.7714758167, 175.2848402, "16"], +[-37.7712025333, 175.2845221, "13"], +[-37.8084510833, 175.3244664, "33"], +[-37.8077443833, 175.324569, "6"], +[-37.8080136667, 175.3235749667, "47B"], +[-37.8083957833, 175.3239633333, "41"], +[-37.8074293667, 175.3246557667, "2"], +[-37.8076834167, 175.3249115333, "3"], +[-37.8087160833, 175.3242267667, "37"], +[-37.8087020833, 175.3243953167, "35"], +[-37.8080471, 175.3239027, "14A"], +[-37.8084237167, 175.3241466833, "39"], +[-37.8079608333, 175.3248647667, "7"], +[-37.808179, 175.3243688667, "10"], +[-37.8081068667, 175.3241184, "12"], +[-37.80789365, 175.3240233333, "14B"], +[-37.8079841667, 175.3237117667, "16"], +[-37.8083537833, 175.3237930167, "43"], +[-37.80819955, 175.32369655, "45"], +[-37.8081080667, 175.3235813667, "47A"], +[-37.80789445, 175.3245189833, "8"], +[-37.8077989333, 175.3249014333, "5"], +[-37.8075928, 175.3246096333, "4"], +[-37.8082474333, 175.32482065, "9"], +[-37.8084971, 175.3247570833, "31"], +[-37.8083108667, 175.3255868833, "21"], +[-37.8084567833, 175.3255169333, "23"], +[-37.80826495, 175.32506315, "11"], +[-37.8081687667, 175.3253094167, "15"], +[-37.80815125, 175.3257147333, "19"], +[-37.8086476667, 175.3255055833, "25"], +[-37.8084934833, 175.32522715, "27"], +[-37.8081693, 175.32548725, "17"], +[-37.75465545, 175.2886869333, "70"], +[-37.7565894333, 175.2849604667, "10B"], +[-37.7564452333, 175.2848626167, "10A"], +[-37.7550108167, 175.28676585, "51"], +[-37.7551996, 175.2885642, "64"], +[-37.7557789167, 175.2858911833, "34"], +[-37.7554111, 175.2857365833, "35"], +[-37.7559936667, 175.28589185, "32A"], +[-37.7557914833, 175.2857093833, "32"], +[-37.7559153333, 175.28552805, "30A"], +[-37.7552305333, 175.2861826, "45"], +[-37.75572375, 175.2873566667, "44"], +[-37.7561373333, 175.2851842167, "12A-12E"], +[-37.75654065, 175.2845533333, "6B"], +[-37.7551624667, 175.2873586333, "52"], +[-37.7563046833, 175.2848781667, "10"], +[-37.7538264667, 175.2914749667, "102"], +[-37.7560897833, 175.28399825, "1"], +[-37.7560208333, 175.28416595, "3"], +[-37.7559565833, 175.2843443333, "5"], +[-37.7563600833, 175.2844474333, "6"], +[-37.7558804833, 175.2845366167, "7"], +[-37.7565146167, 175.2847500833, "8A"], +[-37.7562918333, 175.28461535, "8"], +[-37.7558055833, 175.2847280667, "9"], +[-37.753966, 175.2913588833, "100"], +[-37.7529304667, 175.2915266833, "101"], +[-37.7536827, 175.2915738333, "104"], +[-37.7535162333, 175.2916662667, "106"], +[-37.75336815, 175.2917592167, "108"], +[-37.75192515, 175.2920579667, "111"], +[-37.7517235333, 175.2921546333, "113"], +[-37.75267425, 175.2921682833, "114"], +[-37.7524943, 175.29224865, "116"], +[-37.7518162, 175.2925485167, "124"], +[-37.7548138333, 175.2857892667, "39"], +[-37.7549378667, 175.2879405333, "56"], +[-37.7548727, 175.2881401667, "58"], +[-37.7545233667, 175.2874034833, "61"], +[-37.7544223333, 175.2872818167, "63"], +[-37.7543322333, 175.2873859167, "65"], +[-37.7545624, 175.2878903333, "67"], +[-37.7547685, 175.2883865333, "68"], +[-37.7542188, 175.2887389667, "77"], +[-37.7541494167, 175.2889338, "79"], +[-37.7540799, 175.2891198167, "81"], +[-37.7539843833, 175.2893283167, "83"], +[-37.7539652667, 175.2904647333, "89"], +[-37.7538518167, 175.2907332, "91"], +[-37.7537225667, 175.2909439667, "93"], +[-37.7545438667, 175.29143705, "88"], +[-37.7532536, 175.2913351667, "97"], +[-37.7530734167, 175.2914342167, "99"], +[-37.7559964833, 175.2853717833, "28"], +[-37.7556600167, 175.2850855667, "29"], +[-37.7560977, 175.2857174667, "30"], +[-37.7550420833, 175.28769355, "54"], +[-37.7550996333, 175.2882341667, "60"], +[-37.7554302167, 175.2873159167, "50A"], +[-37.7552574833, 175.2883451167, "62"], +[-37.7550021833, 175.2885192833, "66"], +[-37.75497765, 175.2859436, "43"], +[-37.7523190667, 175.29232345, "118"], +[-37.75525035, 175.2871843333, "50"], +[-37.7547671333, 175.2874253667, "59"], +[-37.7555668667, 175.2868759833, "38B"], +[-37.7553520333, 175.2869827167, "40"], +[-37.7553472, 175.2859014, "37"], +[-37.7554232667, 175.2868067333, "38"], +[-37.7565495, 175.28436905, "4"], +[-37.7527701, 175.2916164, "103"], +[-37.7556870833, 175.2876502667, "46"], +[-37.7526106667, 175.2916762667, "105"], +[-37.7521621, 175.2923988333, "120"], +[-37.7524462667, 175.29174845, "107"], +[-37.75226205, 175.2918396667, "109"], +[-37.75166395, 175.29261255, "126"], +[-37.7519866333, 175.2924851167, "122"], +[-37.7551592, 175.2863879, "47"], +[-37.7550860167, 175.28656925, "49"], +[-37.7533328833, 175.2910669833, "95"], +[-37.7535933333, 175.2911284833, "95A"], +[-37.7557416833, 175.28491195, "27"], +[-37.7540010167, 175.2902619667, "87"], +[-37.7555865667, 175.2873836167, "48"], +[-37.7824673, 175.30347885, "19"], +[-37.7812289167, 175.3034411, "26"], +[-37.7812991833, 175.3040371, "20"], +[-37.7812468833, 175.3038093333, "24"], +[-37.7815347333, 175.3035233667, "30"], +[-37.7815611167, 175.3040483667, "16"], +[-37.7820265, 175.3035413167, "25"], +[-37.7823503333, 175.3035148833, "21"], +[-37.7820368, 175.3039543167, "12"], +[-37.7823311167, 175.3038257333, "15"], +[-37.7817627333, 175.3051207333, "2"], +[-37.78171665, 175.3040585333, "14"], +[-37.7820225333, 175.3041264167, "10"], +[-37.7821347167, 175.30468675, "7"], +[-37.7820416167, 175.3050440167, "3"], +[-37.7818396167, 175.30490755, "4"], +[-37.7824172167, 175.30365025, "17"], +[-37.78228495, 175.3040105333, "13"], +[-37.78187235, 175.3035361667, "27"], +[-37.7813770167, 175.30380375, "22"], +[-37.7814252833, 175.30403885, "18"], +[-37.7816963333, 175.3035263, "29"], +[-37.78139305, 175.3035111833, "28"], +[-37.7821910167, 175.3035548, "23"], +[-37.7820252833, 175.3052132, "1"], +[-37.7822429333, 175.3042218, "11"], +[-37.7820876167, 175.3048606333, "5"], +[-37.7821917167, 175.30442545, "9"], +[-37.7819760333, 175.3043218833, "8"], +[-37.7371970667, 175.24919005, "21"], +[-37.7362905, 175.24788945, "16"], +[-37.7362365333, 175.2476614, "18"], +[-37.7367900833, 175.2489841833, "15"], +[-37.73723525, 175.2492930333, "19A"], +[-37.7361304333, 175.2474447, "20"], +[-37.7363053, 175.2492253167, "1"], +[-37.73647285, 175.2483665, "6A"], +[-37.7364553333, 175.24879085, "6"], +[-37.7364858833, 175.2498399833, "5"], +[-37.7361696, 175.2466445667, "45"], +[-37.73632205, 175.24844605, "4"], +[-37.7370736, 175.249078, "23"], +[-37.7371445667, 175.2493872333, "19"], +[-37.73670395, 175.24846815, "10"], +[-37.73648255, 175.2491569667, "11"], +[-37.7365995167, 175.2481560667, "12"], +[-37.7366357, 175.24909675, "13"], +[-37.7363534333, 175.2480134333, "14"], +[-37.73634315, 175.2475168167, "22"], +[-37.7369137833, 175.24884025, "23A"], +[-37.7362102167, 175.2471376, "24"], +[-37.7361345833, 175.2469439, "26"], +[-37.7369955667, 175.24839055, "27"], +[-37.7369746333, 175.2482332667, "29"], +[-37.7362814333, 175.2488504667, "2"], +[-37.7368891667, 175.2480172833, "31"], +[-37.7367952667, 175.2478794667, "33"], +[-37.7366641667, 175.2477012167, "35"], +[-37.7365463167, 175.2475495667, "37"], +[-37.7363951, 175.2495454667, "3"], +[-37.7363891167, 175.2470523167, "41"], +[-37.73630745, 175.24679925, "43"], +[-37.7365528, 175.24960285, "7"], +[-37.73659515, 175.24871695, "8"], +[-37.73669985, 175.24950765, "9"], +[-37.7370169333, 175.2492090833, "17"], +[-37.73647065, 175.24730995, "39"], +[-37.7369987167, 175.2485732667, "25"], +[-37.81592545, 175.2666954667, "21B"], +[-37.8156271167, 175.26645455, "25B"], +[-37.8155455333, 175.2666041333, "25A"], +[-37.8157952833, 175.26675765, "21A"], +[-37.8151054333, 175.2672671833, "37"], +[-37.8150398333, 175.26745055, "39"], +[-37.8163364167, 175.2667188, "17A"], +[-37.8156323167, 175.26666255, "23"], +[-37.8163435833, 175.2673686833, "9"], +[-37.8152560667, 175.2672533667, "20"], +[-37.8158361667, 175.26720525, "10"], +[-37.8153884333, 175.2672906167, "18"], +[-37.8162970667, 175.2671864833, "11"], +[-37.8163119333, 175.26689465, "13"], +[-37.8155037667, 175.26699405, "14"], +[-37.8161670667, 175.2668233667, "15B"], +[-37.8161428667, 175.26698885, "15"], +[-37.8157054333, 175.2674911, "16A"], +[-37.81557555, 175.2674192, "16"], +[-37.8161653833, 175.2666084333, "17B"], +[-37.8159268, 175.2668434833, "19"], +[-37.8154132833, 175.2665237833, "27"], +[-37.8153058833, 175.2665798667, "29"], +[-37.8152664167, 175.2667276, "31"], +[-37.815167, 175.2668968833, "33"], +[-37.8151100167, 175.2670822833, "35"], +[-37.81597845, 175.2673146667, "8"], +[-37.8161635833, 175.2677781833, "4"], +[-37.8164788, 175.267947, "3"], +[-37.8163973667, 175.26755775, "7"], +[-37.8164606667, 175.26774825, "5"], +[-37.8160650333, 175.2674945667, "6"], +[-37.81569555, 175.2671108667, "12"], +[-37.77218465, 175.2600498833, "8A"], +[-37.77194935, 175.25999705, "6"], +[-37.7725503833, 175.2598112833, "12"], +[-37.7736971667, 175.2590442667, "27A"], +[-37.7735561333, 175.2588596, "27"], +[-37.77388295, 175.25885765, "31A"], +[-37.7727827333, 175.26011665, "9"], +[-37.7726734333, 175.2603192, "5"], +[-37.7735424667, 175.2581290167, "36"], +[-37.7726478, 175.2605747167, "1B"], +[-37.7727515833, 175.2606605667, "1C"], +[-37.7722898833, 175.26028405, "8"], +[-37.7722691667, 175.2598519167, "10A"], +[-37.7724130333, 175.2600075167, "10"], +[-37.7731497333, 175.2601101, "11A"], +[-37.7729096167, 175.25993645, "11"], +[-37.7724284167, 175.2596675333, "12A"], +[-37.7726777833, 175.2595375833, "14"], +[-37.7730194833, 175.25972575, "15"], +[-37.7726630333, 175.2593755, "16"], +[-37.7730981833, 175.2596072, "17"], +[-37.7728349833, 175.25925485, "18"], +[-37.7721856833, 175.26068735, "1A"], +[-37.7725602833, 175.2605236167, "1"], +[-37.77278915, 175.2590791167, "20"], +[-37.77299615, 175.2590019667, "22"], +[-37.7734660333, 175.2590380167, "25"], +[-37.7741660333, 175.25818615, "39B"], +[-37.7741263667, 175.2579165, "41"], +[-37.7719874, 175.2603393167, "4"], +[-37.77415665, 175.2576864167, "43A-43G"], +[-37.7740246167, 175.2575665167, "42"], +[-37.7736691333, 175.2586680167, "31"], +[-37.77378195, 175.25848365, "33A"], +[-37.7739770333, 175.25852095, "33B"], +[-37.77185835, 175.2605017833, "2"], +[-37.7717489833, 175.2602786833, "2B"], +[-37.7743859167, 175.25833175, "39C"], +[-37.7740020667, 175.25810035, "39"], +[-37.7738159167, 175.2576825, "40"], +[-37.7736847667, 175.2579021833, "38"], +[-37.773889, 175.2582991167, "37"], +[-37.83491715, 175.3441067, "21"], +[-37.8367185833, 175.3434576667, "2"], +[-37.83613, 175.3437234167, "6"], +[-37.8358959667, 175.34316015, "11"], +[-37.8365817833, 175.3444002833, "4C"], +[-37.8366725833, 175.3428844667, "1"], +[-37.8356870833, 175.34565185, "32"], +[-37.8366183167, 175.34601835, "44A"], +[-37.8372875333, 175.3459188167, "44B"], +[-37.8366940333, 175.3464129, "44C"], +[-37.835292, 175.3435397, "15"], +[-37.83596395, 175.3463309333, "42"], +[-37.8354140667, 175.3450954167, "26"], +[-37.83741535, 175.3447958667, "4B"], +[-37.8369487667, 175.3442004833, "4A"], +[-37.8363591333, 175.3424001333, "3"], +[-37.7287048333, 175.2676467, "1"], +[-37.7290948833, 175.26632085, "11"], +[-37.7289650167, 175.26627415, "10"], +[-37.7289484167, 175.2668766, "7"], +[-37.7288324, 175.2664691333, "8"], +[-37.7290719167, 175.2666176667, "9"], +[-37.7286090833, 175.2672773167, "2"], +[-37.72886895, 175.2671528833, "5"], +[-37.7286917, 175.2670541667, "4"], +[-37.7287688, 175.2667910667, "6"], +[-37.7287896667, 175.2674160167, "3"], +[-37.7285785333, 175.2372511667, "18"], +[-37.72852925, 175.2370159167, "14"], +[-37.7286799167, 175.2370824833, "16"], +[-37.72775865, 175.2367702333, "6"], +[-37.72799195, 175.23745595, "11"], +[-37.7282264, 175.2377101833, "17"], +[-37.72784795, 175.2373149667, "9"], +[-37.7284232167, 175.2374115667, "20"], +[-37.72809995, 175.2375924667, "13"], +[-37.7281172, 175.2378851, "15"], +[-37.7278871167, 175.2369139333, "8"], +[-37.7280258, 175.2370612, "10"], +[-37.7275784167, 175.2370109333, "5"], +[-37.7274423333, 175.2368605167, "3"], +[-37.7276201167, 175.23661325, "4"], +[-37.72729875, 175.2367001, "1"], +[-37.7277170667, 175.2371614667, "7"], +[-37.7282811833, 175.23717335, "12"], +[-37.7283145833, 175.2375573167, "19"], +[-37.7275034333, 175.23650165, "2"], +[-37.7464760167, 175.23383385, "8"], +[-37.7463658833, 175.2339710667, "10"], +[-37.74608315, 175.2342378667, "14"], +[-37.7462287, 175.2341186833, "12"], +[-37.7498630333, 175.2862217667, "8"], +[-37.7498464167, 175.2856385167, "3"], +[-37.7500305333, 175.2859657333, "4"], +[-37.74969965, 175.2858323, "5"], +[-37.7500115, 175.2861553667, "6"], +[-37.74959845, 175.2860213167, "7"], +[-37.7497046, 175.2861596667, "9"], +[-37.7284828333, 175.2474047, "13"], +[-37.7286938833, 175.2473442167, "15"], +[-37.7286767833, 175.24701215, "20"], +[-37.7289150667, 175.2473390167, "17"], +[-37.7288725667, 175.2470096667, "22"], +[-37.72777295, 175.2483707667, "2"], +[-37.7279133333, 175.2486643667, "1"], +[-37.7280811833, 175.2485138333, "3"], +[-37.7280085333, 175.24800965, "6"], +[-37.7266282167, 175.2456317667, "86"], +[-37.7279167667, 175.2482212667, "4"], +[-37.7282866, 175.2479071167, "9"], +[-37.7283351833, 175.2471215667, "16"], +[-37.72818415, 175.2471396833, "14"], +[-37.7284975333, 175.2470329, "18"], +[-37.7266317667, 175.2451179, "85"], +[-37.7267492, 175.2449274167, "83"], +[-37.7268612333, 175.2447433833, "79"], +[-37.7269742, 175.2451179667, "80"], +[-37.72697675, 175.24456395, "77"], +[-37.7272205, 175.2447081333, "76"], +[-37.7283083167, 175.24760465, "11"], +[-37.72932535, 175.2473351167, "29"], +[-37.72802055, 175.2477672167, "8"], +[-37.7281764167, 175.2473096333, "12"], +[-37.7265090167, 175.2453017, "87"], +[-37.7268601, 175.2453175333, "82"], +[-37.72674105, 175.2454969, "84"], +[-37.7440598333, 175.2438976833, "1"], +[-37.74485035, 175.2436470833, "12"], +[-37.7456523167, 175.24427425, "19"], +[-37.74622735, 175.2440350167, "26"], +[-37.7459413167, 175.24433535, "23"], +[-37.7461011167, 175.2439680833, "24"], +[-37.745829, 175.2439763333, "20"], +[-37.7457838333, 175.24430135, "21"], +[-37.74594145, 175.2439870833, "22"], +[-37.7443387667, 175.2435048333, "6"], +[-37.7446851, 175.2435936833, "10"], +[-37.7440458333, 175.2434172, "2"], +[-37.7441927, 175.2439344, "3"], +[-37.744193, 175.2434666, "4"], +[-37.74436575, 175.2439862, "5"], +[-37.7445344833, 175.2440334, "7"], +[-37.7445136, 175.2435632667, "8"], +[-37.74471845, 175.2440746333, "9"], +[-37.7450761167, 175.24417255, "13"], +[-37.7450029, 175.2436993333, "14"], +[-37.7451513667, 175.2437530667, "16"], +[-37.7460973833, 175.2444525167, "25"], +[-37.7462422833, 175.2445057, "27"], +[-37.7464274333, 175.2440192, "28"], +[-37.74625495, 175.2442597, "29"], +[-37.74488575, 175.2441353333, "11"], +[-37.8343160667, 175.34158065, "15"], +[-37.83387165, 175.3414090333, "12"], +[-37.8344868, 175.34101275, "16"], +[-37.8345970333, 175.3413381333, "17"], +[-37.7815385333, 175.30530665, "4"], +[-37.7813643833, 175.30530085, "8"], +[-37.78169145, 175.30531665, "2"], +[-37.7814146167, 175.30512325, "6"], +[-37.7813605, 175.3054836833, "7"], +[-37.78124655, 175.3056555, "5"], +[-37.7813592667, 175.3056812333, "3"], +[-37.7815512, 175.3056693833, "1"], +[-37.7836176, 175.2649137, "21A"], +[-37.78362065, 175.2657997167, "13"], +[-37.78360045, 175.26557675, "15"], +[-37.7832557333, 175.2655563333, "16"], +[-37.7834654667, 175.2675291167, "2A"], +[-37.7838346167, 175.2671334, "5"], +[-37.7834649167, 175.2670825333, "6"], +[-37.7834034167, 175.2646842167, "1/23-6/23"], +[-37.7837487333, 175.2667044167, "9"], +[-37.7838008167, 175.26692335, "1/7-6/7"], +[-37.7838698167, 175.2673462167, "3"], +[-37.78331215, 175.2661069, "1/10-4/10"], +[-37.7832637667, 175.2656982833, "14"], +[-37.7832971667, 175.26590105, "12"], +[-37.7834537333, 175.26491565, "21"], +[-37.7833554167, 175.26625175, "8"], +[-37.7836403, 175.2660257333, "11"], +[-37.7838167833, 175.2657357167, "13A"], +[-37.7835059833, 175.26733225, "4"], +[-37.7835620667, 175.26533595, "17"], +[-37.7832045333, 175.2652327667, "18"], +[-37.7835297667, 175.2651208333, "19"], +[-37.7835822833, 175.26756335, "2"], +[-37.8053530833, 175.2706493667, "54B"], +[-37.8052431333, 175.2708151667, "52A"], +[-37.8057644333, 175.271256, "64"], +[-37.80262825, 175.2717537667, "7A"], +[-37.8043252833, 175.2717184833, "27"], +[-37.8033295667, 175.2708546833, "18"], +[-37.8039450333, 175.27064425, "28B"], +[-37.8041924167, 175.2705858333, "28D"], +[-37.8071143333, 175.2712577667, "78"], +[-37.80628395, 175.2716609833, "45"], +[-37.8056854333, 175.2705817, "62B"], +[-37.8051505833, 175.27107425, "50B"], +[-37.8055662833, 175.2712889833, "58B"], +[-37.8029361167, 175.2720037, "11"], +[-37.80343805, 175.2717582, "17"], +[-37.8045712, 175.2709000667, "38"], +[-37.8057158833, 175.2708003, "62A"], +[-37.8028033167, 175.2717498833, "9"], +[-37.8053550333, 175.2710269833, "56A"], +[-37.80559015, 175.2710683333, "58A"], +[-37.80540055, 175.2712931167, "56"], +[-37.80527785, 175.2705563167, "52B"], +[-37.8053516, 175.2708248333, "54A"], +[-37.8051842667, 175.2712720333, "50A"], +[-37.8050179, 175.2712841, "48"], +[-37.8048427333, 175.2712855, "42A"], +[-37.8049409, 175.2706877167, "46B"], +[-37.8021672833, 175.27201235, "3"], +[-37.80485105, 175.2710483333, "42"], +[-37.8044761667, 175.2709568167, "36"], +[-37.8046366333, 175.2712926833, "40"], +[-37.8044248, 175.2713051667, "34"], +[-37.8047355167, 175.2717042, "31"], +[-37.8049042667, 175.2716996167, "33"], +[-37.8042367667, 175.271302, "32"], +[-37.8041543167, 175.271721, "25"], +[-37.8033556, 175.2713225167, "20"], +[-37.8045991, 175.2718542333, "29A"], +[-37.8045391, 175.2717184, "29"], +[-37.80308255, 175.2707972, "14"], +[-37.8038283167, 175.2707725667, "26"], +[-37.8038550667, 175.2702753, "26A"], +[-37.8024172, 175.2717577833, "7"], +[-37.8039915, 175.2707578, "28A"], +[-37.8049680667, 175.2708703167, "46A"], +[-37.8048658667, 175.2708687167, "44"], +[-37.8041589667, 175.2705195333, "28C"], +[-37.8029532167, 175.2713417, "12"], +[-37.8030518, 175.2717545167, "13"], +[-37.80271695, 175.2713571833, "10"], +[-37.8036240333, 175.27175875, "19"], +[-37.8038045333, 175.2717497667, "21"], +[-37.8035811333, 175.2713080333, "22"], +[-37.8039900167, 175.27172635, "23"], +[-37.8037905833, 175.2713139833, "24"], +[-37.8032615, 175.2717534833, "15"], +[-37.8040755833, 175.27132085, "30"], +[-37.80218305, 175.2714766167, "4"], +[-37.8024518833, 175.27201735, "5"], +[-37.8024971, 175.2713484667, "6"], +[-37.8050839333, 175.2716998667, "35"], +[-37.8052705167, 175.2716863167, "37"], +[-37.8054582333, 175.2716864333, "39"], +[-37.8059554, 175.2712133667, "66"], +[-37.8056036667, 175.2708046, "60A"], +[-37.8056222833, 175.2705938, "60B"], +[-37.8066315833, 175.27167595, "49"], +[-37.80316795, 175.2713264, "16"], +[-37.80282485, 175.2708698167, "8"], +[-37.8026254833, 175.2709482, "8A"], +[-37.8033825833, 175.2705384833, "18B"], +[-37.8032591167, 175.2708417167, "18C"], +[-37.8055794667, 175.2723449667, "58"], +[-37.8052938333, 175.27235255, "54"], +[-37.8038940167, 175.2744582833, "16A"], +[-37.8041596833, 175.2738211333, "19A"], +[-37.8042525, 175.2735043167, "21B"], +[-37.8041433667, 175.27339445, "21A"], +[-37.805398, 175.27216485, "56A"], +[-37.8044811333, 175.2755792667, "4"], +[-37.8039857333, 175.2743029167, "18"], +[-37.80386925, 175.2725829667, "38"], +[-37.8046529667, 175.2752734, "3"], +[-37.8043763833, 175.2754546, "6"], +[-37.8041338, 175.2753520333, "8B"], +[-37.80407355, 175.2747473667, "14"], +[-37.80443475, 175.2749695833, "7"], +[-37.8053063167, 175.2731424667, "39"], +[-37.8054987, 175.2727198167, "43"], +[-37.8052013833, 175.2731387333, "37"], +[-37.8053336333, 175.27272605, "41"], +[-37.80515515, 175.2727293167, "35"], +[-37.8049228833, 175.27236335, "50"], +[-37.8038816667, 175.2727519167, "32"], +[-37.80450735, 175.2728067, "27"], +[-37.8038835833, 175.2732627333, "28"], +[-37.8039375167, 175.2741181833, "20"], +[-37.8038596667, 175.2736818167, "24A"], +[-37.8038976167, 175.2738991333, "22"], +[-37.8042054, 175.2731730333, "23"], +[-37.8040306, 175.2745319167, "16"], +[-37.8042568167, 175.2737981667, "19B"], +[-37.8044840167, 175.2750694, "5B"], +[-37.8046222333, 175.2750492833, "5A"], +[-37.8042796833, 175.2753184167, "8A"], +[-37.8041249833, 175.2749319333, "12A"], +[-37.8040233333, 175.2749047333, "12B"], +[-37.8037383833, 175.27363245, "24B"], +[-37.80432, 175.2729700333, "25A"], +[-37.8044776333, 175.27305825, "25B"], +[-37.80466145, 175.2727565167, "29"], +[-37.8039534, 175.2729955667, "30"], +[-37.8048680667, 175.27273155, "31"], +[-37.8041013667, 175.2727760833, "32A"], +[-37.8049917833, 175.2727257167, "33"], +[-37.8036940833, 175.2727389167, "34"], +[-37.8036740167, 175.2725809, "36"], +[-37.8040506, 175.2725563, "40"], +[-37.8042288, 175.2726127833, "42A"], +[-37.8042495667, 175.2724273833, "42B"], +[-37.80439955, 175.2724857333, "44"], +[-37.8045487167, 175.2724020333, "46"], +[-37.80480925, 175.2723687, "48"], +[-37.8051046667, 175.27235775, "52"], +[-37.8054675, 175.2723469167, "56"], +[-37.8041686167, 175.2751259667, "10"], +[-37.8047297833, 175.2754086833, "1"], +[-37.8042249333, 175.27412555, "15"], +[-37.8038605667, 175.2734780333, "26"], +[-37.7585591333, 175.294548, "4"], +[-37.7596517667, 175.2957121167, "25"], +[-37.7601598833, 175.2936215167, "36"], +[-37.7601597, 175.2952117333, "37"], +[-37.7593754, 175.2955941333, "21"], +[-37.76011415, 175.2953884167, "33"], +[-37.7595118833, 175.2956523667, "23"], +[-37.7599291833, 175.2949869333, "24"], +[-37.7593473167, 175.2951583, "16"], +[-37.7597948167, 175.2957770333, "27"], +[-37.7599837333, 175.2947640833, "26"], +[-37.7601679167, 175.29412245, "32"], +[-37.76025635, 175.29385, "34"], +[-37.7600434, 175.29352125, "38"], +[-37.7599248833, 175.2934068167, "40"], +[-37.7583172833, 175.2947893667, "3"], +[-37.7603658, 175.29448775, "45"], +[-37.7597977333, 175.29330205, "42"], +[-37.7604413167, 175.2942331333, "47"], +[-37.7605108167, 175.2939909, "49"], +[-37.760265, 175.2948664833, "41"], +[-37.7603263167, 175.2946733667, "43"], +[-37.76054835, 175.2938170833, "51"], +[-37.7605540833, 175.2936566333, "53"], +[-37.7608115333, 175.2933954167, "55"], +[-37.7604880333, 175.29348295, "57"], +[-37.76057525, 175.2931419333, "59"], +[-37.7603464833, 175.2933068333, "61"], +[-37.7601578667, 175.2930892833, "65"], +[-37.7586592667, 175.2947154667, "6"], +[-37.7587857833, 175.2948792333, "8"], +[-37.7586959833, 175.29531005, "11"], +[-37.7590752333, 175.2950396333, "12"], +[-37.7588273, 175.2953496833, "13"], +[-37.7592026333, 175.2950955167, "14"], +[-37.7589676, 175.29540085, "15"], +[-37.75910205, 175.2954629167, "17"], +[-37.7594869167, 175.2952097833, "18"], +[-37.75923995, 175.2955314833, "19"], +[-37.75964045, 175.2952700667, "20"], +[-37.75981885, 175.29534005, "22"], +[-37.7600463833, 175.29557725, "29"], +[-37.7602033833, 175.2955984, "31"], +[-37.7602265667, 175.2950364833, "39"], +[-37.7583905, 175.2949728333, "5"], +[-37.7584591, 175.2951308833, "7"], +[-37.7585648167, 175.2952653333, "9"], +[-37.75894505, 175.2949756833, "10"], +[-37.7264514667, 175.2643778667, "7"], +[-37.7266805833, 175.2661147, "28"], +[-37.7269702667, 175.2654253333, "22"], +[-37.72676915, 175.2657621667, "26"], +[-37.7266492667, 175.2657902, "19"], +[-37.7268468833, 175.2651952167, "18"], +[-37.7265291, 175.2648556833, "11"], +[-37.72659805, 175.2653851167, "15"], +[-37.7262406167, 175.2638996833, "3"], +[-37.7263343833, 175.2635393333, "2"], +[-37.7264612, 175.2637264167, "4"], +[-37.7266612, 175.2641755, "10"], +[-37.72656365, 175.2639246833, "6"], +[-37.7264983333, 175.2646262167, "9"], +[-37.7268570833, 175.26384645, "8"], +[-37.7267202833, 175.2643867167, "12"], +[-37.7261238, 175.2637201167, "1"], +[-37.7263565667, 175.26412075, "5"], +[-37.72657125, 175.2651478167, "13"], +[-37.72678705, 175.2648993167, "16"], +[-37.7271134167, 175.2651919833, "20"], +[-37.7268955, 175.2656049667, "24"], +[-37.72664975, 175.2655841167, "17"], +[-37.7266295, 175.2660091833, "21"], +[-37.7479165667, 175.2522852167, "3"], +[-37.7469074167, 175.25308245, "13"], +[-37.74743975, 175.25323135, "10"], +[-37.7470799, 175.2528122167, "11A"], +[-37.7470854333, 175.2529362167, "11"], +[-37.7468019333, 175.25379215, "18"], +[-37.7480209333, 175.2522168, "1"], +[-37.7462647667, 175.2536501167, "21"], +[-37.7461222167, 175.2537735, "23"], +[-37.7459446167, 175.25390845, "25"], +[-37.74612705, 175.2543174667, "26A"], +[-37.7462186667, 175.2543633167, "26B"], +[-37.74544645, 175.2543526167, "27"], +[-37.7452949833, 175.2544579833, "29"], +[-37.7481475667, 175.2526970333, "2"], +[-37.74517685, 175.2545711833, "31"], +[-37.7455755333, 175.2547668833, "32"], +[-37.7454512667, 175.2548880833, "34"], +[-37.7472537333, 175.2528122667, "9"], +[-37.7237698167, 175.2603745667, "129"], +[-37.7236523667, 175.26055265, "131"], +[-37.7232773, 175.26153905, "122"], +[-37.7290005167, 175.2630605667, "18"], +[-37.7291478, 175.26356725, "9"], +[-37.7292319667, 175.2633747333, "11"], +[-37.7266252167, 175.25882975, "72"], +[-37.7259286167, 175.2578351333, "91"], +[-37.7262888, 175.2586274, "76"], +[-37.7230121, 175.26161975, "126"], +[-37.7296806167, 175.26049935, "36"], +[-37.7299222167, 175.2608037333, "33"], +[-37.7296325, 175.2607167833, "34"], +[-37.7295583833, 175.2609367, "32"], +[-37.72314885, 175.2615882667, "124"], +[-37.7287058333, 175.2634629833, "14"], +[-37.7282713667, 175.2640175833, "6"], +[-37.7281687833, 175.2642357667, "2"], +[-37.7292175, 175.2592033333, "50"], +[-37.7299896333, 175.2602537, "37"], +[-37.7296653, 175.2600151167, "40"], +[-37.72987095, 175.25961655, "43"], +[-37.7295918167, 175.2597765667, "42"], +[-37.7299265833, 175.2597980833, "41"], +[-37.7237424, 175.2611094333, "116"], +[-37.7293474167, 175.2616842, "28"], +[-37.729515, 175.2622455667, "21"], +[-37.7294673167, 175.2624797333, "19"], +[-37.72849355, 175.2633262167, "12"], +[-37.72363945, 175.2612213167, "118"], +[-37.7287459333, 175.25862975, "69"], +[-37.7294113167, 175.2627167333, "17"], +[-37.7295678833, 175.2620181667, "23"], +[-37.7294022167, 175.2593589333, "46"], +[-37.7285240167, 175.2642242667, "3"], +[-37.7279862667, 175.2640419, "4"], +[-37.7288677333, 175.2638668833, "5"], +[-37.7285079833, 175.2636230833, "10"], +[-37.7283761167, 175.2638255167, "8"], +[-37.7299888667, 175.26003595, "39"], +[-37.7296974167, 175.2602522, "38"], +[-37.7295031, 175.25957135, "44"], +[-37.7291250667, 175.2625834333, "22"], +[-37.7288914833, 175.2632860167, "16"], +[-37.7292285833, 175.2621249333, "24"], +[-37.7293084167, 175.2631717, "13"], +[-37.7294875167, 175.2612104167, "30"], +[-37.7296900833, 175.2615607833, "27"], +[-37.72983595, 175.2610803, "31"], +[-37.7299847333, 175.26049925, "35"], +[-37.7255364833, 175.25777615, "97"], +[-37.7296313, 175.2617979167, "25"], +[-37.7293663333, 175.2629476333, "15"], +[-37.72613185, 175.2584836167, "78"], +[-37.72644905, 175.2587281667, "74"], +[-37.72596755, 175.2583066833, "80"], +[-37.72565475, 175.25751925, "95"], +[-37.7257668, 175.25779365, "93"], +[-37.7253424333, 175.2575286, "99"], +[-37.7253002167, 175.2578559, "101"], +[-37.7253630667, 175.2582472667, "86"], +[-37.7248367667, 175.2582010833, "109"], +[-37.7247440333, 175.2584024333, "111"], +[-37.72502775, 175.2586511, "90"], +[-37.7246685167, 175.2586137, "113"], +[-37.7245882, 175.25882495, "115"], +[-37.7252096833, 175.2588006833, "92"], +[-37.7252296333, 175.25893855, "94"], +[-37.7249156333, 175.25892505, "96"], +[-37.72430395, 175.259457, "121"], +[-37.7246494167, 175.25954015, "102"], +[-37.7244639833, 175.2599265167, "106"], +[-37.7290122, 175.25907195, "52"], +[-37.7286472833, 175.2590028667, "54"], +[-37.7294711333, 175.25899955, "57"], +[-37.7294955167, 175.2587686, "59"], +[-37.72932515, 175.2588679, "61"], +[-37.7291684167, 175.2587854833, "63"], +[-37.7289919833, 175.25869745, "65"], +[-37.7288597, 175.2583865667, "67"], +[-37.7283892167, 175.2590319167, "56"], +[-37.72785795, 175.25916445, "60"], +[-37.7276817, 175.2591637333, "62"], +[-37.7275060833, 175.25913315, "64"], +[-37.7273307333, 175.2590876, "66"], +[-37.7284840333, 175.2586562333, "71"], +[-37.7282669167, 175.2587189667, "73"], +[-37.7274718, 175.2587629833, "77"], +[-37.7273809833, 175.2587525667, "79"], +[-37.7284498, 175.2644481167, "1"], +[-37.7243088833, 175.2601942, "108"], +[-37.7239169833, 175.2601274167, "127"], +[-37.7240407667, 175.2599209, "125"], +[-37.72975625, 175.2613237667, "29"], +[-37.7281518667, 175.2645009167, "2A"], +[-37.7289854167, 175.2637420333, "7"], +[-37.7251392, 175.2579208167, "103"], +[-37.7280527167, 175.2643818667, "2B"], +[-37.72455935, 175.2597286167, "104"], +[-37.72440965, 175.2592466833, "119"], +[-37.7242006833, 175.2596675333, "123"], +[-37.7245078667, 175.2590329, "117"], +[-37.7251597167, 175.2583969667, "88"], +[-37.7290720167, 175.2628372833, "20"], +[-37.72928115, 175.2619110833, "26"], +[-37.8005708833, 175.2504949333, "9"], +[-37.8008429667, 175.24958865, "17"], +[-37.8009772333, 175.2494226167, "19"], +[-37.8010276333, 175.2485618667, "30A"], +[-37.8028632667, 175.2474882333, "48"], +[-37.80297, 175.2478680833, "47"], +[-37.8042292667, 175.2470206833, "65"], +[-37.80344315, 175.2470683833, "56"], +[-37.8028798, 175.2472749, "48B"], +[-37.8013031833, 175.2485576167, "32A"], +[-37.8013609, 175.2482318, "34B"], +[-37.80114125, 175.248704, "30"], +[-37.8015609167, 175.2488273167, "27"], +[-37.8003417333, 175.25091275, "8"], +[-37.8002773167, 175.2507024, "10"], +[-37.8005238833, 175.2502900833, "11"], +[-37.8005003167, 175.2500973833, "13"], +[-37.8006970833, 175.24977875, "15"], +[-37.8002369333, 175.25049785, "12"], +[-37.8001781833, 175.2502826333, "14"], +[-37.8011132833, 175.2492808, "21"], +[-37.800455, 175.2494471167, "22A"], +[-37.80037885, 175.2496476, "22"], +[-37.8012478167, 175.2491406, "23"], +[-37.8005477167, 175.2493322833, "24"], +[-37.8013971333, 175.2489834667, "25"], +[-37.8007525333, 175.2491285667, "26A"], +[-37.8008467667, 175.24899845, "26"], +[-37.8009505833, 175.2488930667, "28"], +[-37.8016995, 175.2487042, "29"], +[-37.8018476333, 175.24862465, "31"], +[-37.8011876167, 175.2483977667, "32B"], +[-37.8020507833, 175.2487994667, "33B"], +[-37.8020018167, 175.2485338167, "33A"], +[-37.8014427, 175.2484321167, "34A"], +[-37.8015960167, 175.2483276333, "36"], +[-37.8017514, 175.2482232833, "38"], +[-37.8018940167, 175.2481171, "40"], +[-37.80203755, 175.2480413, "42"], +[-37.8026864333, 175.2480776833, "43"], +[-37.8025958667, 175.2476789833, "44"], +[-37.8007111667, 175.2510879833, "3"], +[-37.8028996333, 175.24815125, "45A"], +[-37.80280855, 175.24799755, "45"], +[-37.8027226167, 175.2474007333, "46A"], +[-37.8026917333, 175.2475824333, "46"], +[-37.8030507, 175.24804245, "47A"], +[-37.8031159333, 175.2479788833, "49A"], +[-37.8030969, 175.2477952833, "49"], +[-37.8030340167, 175.24736645, "50"], +[-37.80327425, 175.2476687167, "51"], +[-37.8031686167, 175.2472652333, "52"], +[-37.80340595, 175.2475944167, "53"], +[-37.80331135, 175.2471641333, "54"], +[-37.8004382333, 175.2513264333, "4"], +[-37.8035520667, 175.2474953833, "55"], +[-37.8036865333, 175.2473937, "57"], +[-37.8035886667, 175.2469740833, "58"], +[-37.8038186333, 175.24729585, "59"], +[-37.8037116167, 175.2468831167, "60"], +[-37.80395465, 175.2472001167, "61"], +[-37.8038451, 175.24677645, "62"], +[-37.8040964333, 175.2471234167, "63"], +[-37.80397785, 175.2466758167, "64"], +[-37.8040885833, 175.2466027333, "66A"], +[-37.8042038167, 175.2465233833, "66B"], +[-37.8006577667, 175.2508656667, "5"], +[-37.8003925333, 175.2511317333, "6"], +[-37.8006232, 175.2506654833, "7"], +[-37.8001591167, 175.2499652167, "18"], +[-37.8021330167, 175.24844575, "35"], +[-37.8000210833, 175.2500617667, "16"], +[-37.8002305, 175.2498052333, "20"], +[-37.8299606, 175.3424753, "8"], +[-37.8331754, 175.3417286667, "42"], +[-37.8328197833, 175.3422380833, "37"], +[-37.8327976333, 175.3416636333, "40"], +[-37.8308993667, 175.3420987667, "18"], +[-37.8303908833, 175.3423422, "12"], +[-37.83165435, 175.3425764667, "25"], +[-37.82997625, 175.3417457167, "10"], +[-37.7465139167, 175.2813636, "12"], +[-37.7466733, 175.2818481667, "16"], +[-37.7464054667, 175.281953, "13"], +[-37.74630365, 175.2815561333, "11"], +[-37.7466137667, 175.2816021333, "14"], +[-37.7461665333, 175.2821980833, "15"], +[-37.7462239833, 175.28237585, "17"], +[-37.7466415, 175.2821126667, "18"], +[-37.7457915667, 175.2806532, "1"], +[-37.7465560167, 175.2823626167, "20"], +[-37.74640785, 175.2827711, "24"], +[-37.7463098167, 175.28253265, "26"], +[-37.7460455, 175.2809540167, "3"], +[-37.7460684667, 175.2804408167, "2"], +[-37.74617745, 175.2812463667, "5"], +[-37.7462027833, 175.2806213667, "6"], +[-37.746009, 175.2814564, "7"], +[-37.7463163333, 175.2808736333, "8"], +[-37.7460246667, 175.2815404333, "9"], +[-37.7464160833, 175.2811165167, "10"], +[-37.7464577, 175.28255505, "22"], +[-37.79976975, 175.26071515, "12"], +[-37.79982425, 175.2610320833, "10"], +[-37.7999093167, 175.26134375, "8"], +[-37.8001647333, 175.2614730833, "6"], +[-37.8003441833, 175.2614154667, "4"], +[-37.8001157333, 175.2608749667, "11"], +[-37.8003589, 175.26093835, "9"], +[-37.8007052, 175.26120255, "7"], +[-37.8008848333, 175.26161255, "3"], +[-37.8009536667, 175.2619272, "1"], +[-37.8008377667, 175.2614407833, "5"], +[-37.8005375667, 175.2616417667, "2"], +[-37.7926528667, 175.2447962667, "3"], +[-37.7925379333, 175.2442495, "4"], +[-37.7928333333, 175.2436823, "10"], +[-37.7928949167, 175.2438909333, "12"], +[-37.7928981, 175.2441369167, "14"], +[-37.7923569833, 175.2446961667, "1"], +[-37.79271305, 175.24455775, "5"], +[-37.79267845, 175.2441293167, "6"], +[-37.7928754333, 175.2445908167, "7"], +[-37.7927015, 175.2436985833, "8"], +[-37.7928460833, 175.24439865, "9"], +[-37.8007768833, 175.2397744333, "10"], +[-37.8006970167, 175.2396200167, "7"], +[-37.8008913667, 175.2399363, "8"], +[-37.8011673, 175.24013945, "4"], +[-37.8012957333, 175.2400906667, "2"], +[-37.8011288833, 175.2396196, "3"], +[-37.8009679167, 175.2397083, "5"], +[-37.8009972833, 175.2400813333, "6"], +[-37.7270216667, 175.2711712333, "34"], +[-37.72771635, 175.2710482333, "26"], +[-37.7278943333, 175.2714110833, "22"], +[-37.7277623333, 175.2714097833, "24"], +[-37.7275399167, 175.2710731, "28"], +[-37.7273611167, 175.2711010833, "30"], +[-37.7252975833, 175.27215055, "58"], +[-37.72842505, 175.2706335167, "17"], +[-37.7282464667, 175.2706460833, "19"], +[-37.7276605, 175.2706836667, "25"], +[-37.7278661667, 175.2706627333, "23"], +[-37.72806185, 175.2706538, "21"], +[-37.7281040667, 175.27100185, "18"], +[-37.7301143333, 175.2709216167, "1"], +[-37.72792945, 175.2710214667, "20"], +[-37.7282733167, 175.2709974667, "16"], +[-37.7287839667, 175.2709957333, "14"], +[-37.7265024833, 175.2713970167, "42"], +[-37.7265954333, 175.2713280167, "40"], +[-37.7267309167, 175.2712507167, "38"], +[-37.7265228, 175.2709706, "39"], +[-37.7268735333, 175.2711989, "36"], +[-37.7266586333, 175.27090015, "37"], +[-37.7259428667, 175.27139155, "45"], +[-37.72604375, 175.2716834833, "46"], +[-37.7274559833, 175.2707143833, "27"], +[-37.7288465, 175.2706621167, "11"], +[-37.7291982, 175.2710491333, "10"], +[-37.7289922167, 175.2710028167, "12"], +[-37.7292691667, 175.27073615, "7"], +[-37.7294102167, 175.27113215, "8"], +[-37.7290649167, 175.2706785167, "9"], +[-37.7300301167, 175.271293, "4"], +[-37.7286283833, 175.27063715, "15"], +[-37.7254250167, 175.2720879167, "56"], +[-37.7253125333, 175.2717429833, "53"], +[-37.725191, 175.2718320333, "55"] +]; \ No newline at end of file diff --git a/lib/Leaflet.markercluster/example/screen.css b/lib/Leaflet.markercluster/example/screen.css new file mode 100644 index 000000000..c89cba86c --- /dev/null +++ b/lib/Leaflet.markercluster/example/screen.css @@ -0,0 +1,28 @@ +#map { + width: 800px; + height: 600px; + border: 1px solid #ccc; +} + +#progress { + display: none; + position: absolute; + z-index: 1000; + left: 400px; + top: 300px; + width: 200px; + height: 20px; + margin-top: -20px; + margin-left: -100px; + background-color: #fff; + background-color: rgba(255, 255, 255, 0.7); + border-radius: 4px; + padding: 2px; +} + +#progress-bar { + width: 0; + height: 100%; + background-color: #76A6FC; + border-radius: 4px; +} diff --git a/lib/Leaflet.markercluster/package.json b/lib/Leaflet.markercluster/package.json new file mode 100644 index 000000000..da096caf8 --- /dev/null +++ b/lib/Leaflet.markercluster/package.json @@ -0,0 +1,22 @@ +{ + "name": "leaflet.markercluster", + "repository": "https://github.com/Leaflet/Leaflet.markercluster", + "version": "0.4.0", + "description": "Provides Beautiful Animated Marker Clustering functionality for Leaflet", + "dependencies": { + "leaflet": "~0.7.1" + }, + "devDependencies": { + "jshint": "~2.1.3", + "mocha": "~1.10.0", + "karma": "~0.8.5", + "uglify-js": "~2.3.6", + "jake": "~0.5.16" + }, + "main": "dist/leaflet.markercluster.js", + "scripts": { + "test": "jake test", + "prepublish": "jake" + }, + "keywords": ["gis", "map"] +} diff --git a/lib/Leaflet.markercluster/spec/after.js b/lib/Leaflet.markercluster/spec/after.js new file mode 100644 index 000000000..7dcd1d9b3 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/after.js @@ -0,0 +1,2 @@ +// put after Leaflet files as imagePath can't be detected in a PhantomJS env +L.Icon.Default.imagePath = "../dist/images"; diff --git a/lib/Leaflet.markercluster/spec/expect.js b/lib/Leaflet.markercluster/spec/expect.js new file mode 100644 index 000000000..58c7049e0 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/expect.js @@ -0,0 +1,1253 @@ + +(function (global, module) { + + if ('undefined' == typeof module) { + var module = { exports: {} } + , exports = module.exports + } + + /** + * Exports. + */ + + module.exports = expect; + expect.Assertion = Assertion; + + /** + * Exports version. + */ + + expect.version = '0.1.2'; + + /** + * Possible assertion flags. + */ + + var flags = { + not: ['to', 'be', 'have', 'include', 'only'] + , to: ['be', 'have', 'include', 'only', 'not'] + , only: ['have'] + , have: ['own'] + , be: ['an'] + }; + + function expect (obj) { + return new Assertion(obj); + } + + /** + * Constructor + * + * @api private + */ + + function Assertion (obj, flag, parent) { + this.obj = obj; + this.flags = {}; + + if (undefined != parent) { + this.flags[flag] = true; + + for (var i in parent.flags) { + if (parent.flags.hasOwnProperty(i)) { + this.flags[i] = true; + } + } + } + + var $flags = flag ? flags[flag] : keys(flags) + , self = this + + if ($flags) { + for (var i = 0, l = $flags.length; i < l; i++) { + // avoid recursion + if (this.flags[$flags[i]]) continue; + + var name = $flags[i] + , assertion = new Assertion(this.obj, name, this) + + if ('function' == typeof Assertion.prototype[name]) { + // clone the function, make sure we dont touch the prot reference + var old = this[name]; + this[name] = function () { + return old.apply(self, arguments); + } + + for (var fn in Assertion.prototype) { + if (Assertion.prototype.hasOwnProperty(fn) && fn != name) { + this[name][fn] = bind(assertion[fn], assertion); + } + } + } else { + this[name] = assertion; + } + } + } + }; + + /** + * Performs an assertion + * + * @api private + */ + + Assertion.prototype.assert = function (truth, msg, error) { + var msg = this.flags.not ? error : msg + , ok = this.flags.not ? !truth : truth; + + if (!ok) { + throw new Error(msg.call(this)); + } + + this.and = new Assertion(this.obj); + }; + + /** + * Check if the value is truthy + * + * @api public + */ + + Assertion.prototype.ok = function () { + this.assert( + !!this.obj + , function(){ return 'expected ' + i(this.obj) + ' to be truthy' } + , function(){ return 'expected ' + i(this.obj) + ' to be falsy' }); + }; + + /** + * Assert that the function throws. + * + * @param {Function|RegExp} callback, or regexp to match error string against + * @api public + */ + + Assertion.prototype.throwError = + Assertion.prototype.throwException = function (fn) { + expect(this.obj).to.be.a('function'); + + var thrown = false + , not = this.flags.not + + try { + this.obj(); + } catch (e) { + if ('function' == typeof fn) { + fn(e); + } else if ('object' == typeof fn) { + var subject = 'string' == typeof e ? e : e.message; + if (not) { + expect(subject).to.not.match(fn); + } else { + expect(subject).to.match(fn); + } + } + thrown = true; + } + + if ('object' == typeof fn && not) { + // in the presence of a matcher, ensure the `not` only applies to + // the matching. + this.flags.not = false; + } + + var name = this.obj.name || 'fn'; + this.assert( + thrown + , function(){ return 'expected ' + name + ' to throw an exception' } + , function(){ return 'expected ' + name + ' not to throw an exception' }); + }; + + /** + * Checks if the array is empty. + * + * @api public + */ + + Assertion.prototype.empty = function () { + var expectation; + + if ('object' == typeof this.obj && null !== this.obj && !isArray(this.obj)) { + if ('number' == typeof this.obj.length) { + expectation = !this.obj.length; + } else { + expectation = !keys(this.obj).length; + } + } else { + if ('string' != typeof this.obj) { + expect(this.obj).to.be.an('object'); + } + + expect(this.obj).to.have.property('length'); + expectation = !this.obj.length; + } + + this.assert( + expectation + , function(){ return 'expected ' + i(this.obj) + ' to be empty' } + , function(){ return 'expected ' + i(this.obj) + ' to not be empty' }); + return this; + }; + + /** + * Checks if the obj exactly equals another. + * + * @api public + */ + + Assertion.prototype.be = + Assertion.prototype.equal = function (obj) { + this.assert( + obj === this.obj + , function(){ return 'expected ' + i(this.obj) + ' to equal ' + i(obj) } + , function(){ return 'expected ' + i(this.obj) + ' to not equal ' + i(obj) }); + return this; + }; + + /** + * Checks if the obj sortof equals another. + * + * @api public + */ + + Assertion.prototype.eql = function (obj) { + this.assert( + expect.eql(obj, this.obj) + , function(){ return 'expected ' + i(this.obj) + ' to sort of equal ' + i(obj) } + , function(){ return 'expected ' + i(this.obj) + ' to sort of not equal ' + i(obj) }); + return this; + }; + + /** + * Assert within start to finish (inclusive). + * + * @param {Number} start + * @param {Number} finish + * @api public + */ + + Assertion.prototype.within = function (start, finish) { + var range = start + '..' + finish; + this.assert( + this.obj >= start && this.obj <= finish + , function(){ return 'expected ' + i(this.obj) + ' to be within ' + range } + , function(){ return 'expected ' + i(this.obj) + ' to not be within ' + range }); + return this; + }; + + /** + * Assert typeof / instance of + * + * @api public + */ + + Assertion.prototype.a = + Assertion.prototype.an = function (type) { + if ('string' == typeof type) { + // proper english in error msg + var n = /^[aeiou]/.test(type) ? 'n' : ''; + + // typeof with support for 'array' + this.assert( + 'array' == type ? isArray(this.obj) : + 'object' == type + ? 'object' == typeof this.obj && null !== this.obj + : type == typeof this.obj + , function(){ return 'expected ' + i(this.obj) + ' to be a' + n + ' ' + type } + , function(){ return 'expected ' + i(this.obj) + ' not to be a' + n + ' ' + type }); + } else { + // instanceof + var name = type.name || 'supplied constructor'; + this.assert( + this.obj instanceof type + , function(){ return 'expected ' + i(this.obj) + ' to be an instance of ' + name } + , function(){ return 'expected ' + i(this.obj) + ' not to be an instance of ' + name }); + } + + return this; + }; + + /** + * Assert numeric value above _n_. + * + * @param {Number} n + * @api public + */ + + Assertion.prototype.greaterThan = + Assertion.prototype.above = function (n) { + this.assert( + this.obj > n + , function(){ return 'expected ' + i(this.obj) + ' to be above ' + n } + , function(){ return 'expected ' + i(this.obj) + ' to be below ' + n }); + return this; + }; + + /** + * Assert numeric value below _n_. + * + * @param {Number} n + * @api public + */ + + Assertion.prototype.lessThan = + Assertion.prototype.below = function (n) { + this.assert( + this.obj < n + , function(){ return 'expected ' + i(this.obj) + ' to be below ' + n } + , function(){ return 'expected ' + i(this.obj) + ' to be above ' + n }); + return this; + }; + + /** + * Assert string value matches _regexp_. + * + * @param {RegExp} regexp + * @api public + */ + + Assertion.prototype.match = function (regexp) { + this.assert( + regexp.exec(this.obj) + , function(){ return 'expected ' + i(this.obj) + ' to match ' + regexp } + , function(){ return 'expected ' + i(this.obj) + ' not to match ' + regexp }); + return this; + }; + + /** + * Assert property "length" exists and has value of _n_. + * + * @param {Number} n + * @api public + */ + + Assertion.prototype.length = function (n) { + expect(this.obj).to.have.property('length'); + var len = this.obj.length; + this.assert( + n == len + , function(){ return 'expected ' + i(this.obj) + ' to have a length of ' + n + ' but got ' + len } + , function(){ return 'expected ' + i(this.obj) + ' to not have a length of ' + len }); + return this; + }; + + /** + * Assert property _name_ exists, with optional _val_. + * + * @param {String} name + * @param {Mixed} val + * @api public + */ + + Assertion.prototype.property = function (name, val) { + if (this.flags.own) { + this.assert( + Object.prototype.hasOwnProperty.call(this.obj, name) + , function(){ return 'expected ' + i(this.obj) + ' to have own property ' + i(name) } + , function(){ return 'expected ' + i(this.obj) + ' to not have own property ' + i(name) }); + return this; + } + + if (this.flags.not && undefined !== val) { + if (undefined === this.obj[name]) { + throw new Error(i(this.obj) + ' has no property ' + i(name)); + } + } else { + var hasProp; + try { + hasProp = name in this.obj + } catch (e) { + hasProp = undefined !== this.obj[name] + } + + this.assert( + hasProp + , function(){ return 'expected ' + i(this.obj) + ' to have a property ' + i(name) } + , function(){ return 'expected ' + i(this.obj) + ' to not have a property ' + i(name) }); + } + + if (undefined !== val) { + this.assert( + val === this.obj[name] + , function(){ return 'expected ' + i(this.obj) + ' to have a property ' + i(name) + + ' of ' + i(val) + ', but got ' + i(this.obj[name]) } + , function(){ return 'expected ' + i(this.obj) + ' to not have a property ' + i(name) + + ' of ' + i(val) }); + } + + this.obj = this.obj[name]; + return this; + }; + + /** + * Assert that the array contains _obj_ or string contains _obj_. + * + * @param {Mixed} obj|string + * @api public + */ + + Assertion.prototype.string = + Assertion.prototype.contain = function (obj) { + if ('string' == typeof this.obj) { + this.assert( + ~this.obj.indexOf(obj) + , function(){ return 'expected ' + i(this.obj) + ' to contain ' + i(obj) } + , function(){ return 'expected ' + i(this.obj) + ' to not contain ' + i(obj) }); + } else { + this.assert( + ~indexOf(this.obj, obj) + , function(){ return 'expected ' + i(this.obj) + ' to contain ' + i(obj) } + , function(){ return 'expected ' + i(this.obj) + ' to not contain ' + i(obj) }); + } + return this; + }; + + /** + * Assert exact keys or inclusion of keys by using + * the `.own` modifier. + * + * @param {Array|String ...} keys + * @api public + */ + + Assertion.prototype.key = + Assertion.prototype.keys = function ($keys) { + var str + , ok = true; + + $keys = isArray($keys) + ? $keys + : Array.prototype.slice.call(arguments); + + if (!$keys.length) throw new Error('keys required'); + + var actual = keys(this.obj) + , len = $keys.length; + + // Inclusion + ok = every($keys, function (key) { + return ~indexOf(actual, key); + }); + + // Strict + if (!this.flags.not && this.flags.only) { + ok = ok && $keys.length == actual.length; + } + + // Key string + if (len > 1) { + $keys = map($keys, function (key) { + return i(key); + }); + var last = $keys.pop(); + str = $keys.join(', ') + ', and ' + last; + } else { + str = i($keys[0]); + } + + // Form + str = (len > 1 ? 'keys ' : 'key ') + str; + + // Have / include + str = (!this.flags.only ? 'include ' : 'only have ') + str; + + // Assertion + this.assert( + ok + , function(){ return 'expected ' + i(this.obj) + ' to ' + str } + , function(){ return 'expected ' + i(this.obj) + ' to not ' + str }); + + return this; + }; + /** + * Assert a failure. + * + * @param {String ...} custom message + * @api public + */ + Assertion.prototype.fail = function (msg) { + msg = msg || "explicit failure"; + this.assert(false, msg, msg); + return this; + }; + + /** + * Function bind implementation. + */ + + function bind (fn, scope) { + return function () { + return fn.apply(scope, arguments); + } + } + + /** + * Array every compatibility + * + * @see bit.ly/5Fq1N2 + * @api public + */ + + function every (arr, fn, thisObj) { + var scope = thisObj || global; + for (var i = 0, j = arr.length; i < j; ++i) { + if (!fn.call(scope, arr[i], i, arr)) { + return false; + } + } + return true; + }; + + /** + * Array indexOf compatibility. + * + * @see bit.ly/a5Dxa2 + * @api public + */ + + function indexOf (arr, o, i) { + if (Array.prototype.indexOf) { + return Array.prototype.indexOf.call(arr, o, i); + } + + if (arr.length === undefined) { + return -1; + } + + for (var j = arr.length, i = i < 0 ? i + j < 0 ? 0 : i + j : i || 0 + ; i < j && arr[i] !== o; i++); + + return j <= i ? -1 : i; + }; + + // https://gist.github.com/1044128/ + var getOuterHTML = function(element) { + if ('outerHTML' in element) return element.outerHTML; + var ns = "http://www.w3.org/1999/xhtml"; + var container = document.createElementNS(ns, '_'); + var elemProto = (window.HTMLElement || window.Element).prototype; + var xmlSerializer = new XMLSerializer(); + var html; + if (document.xmlVersion) { + return xmlSerializer.serializeToString(element); + } else { + container.appendChild(element.cloneNode(false)); + html = container.innerHTML.replace('><', '>' + element.innerHTML + '<'); + container.innerHTML = ''; + return html; + } + }; + + // Returns true if object is a DOM element. + var isDOMElement = function (object) { + if (typeof HTMLElement === 'object') { + return object instanceof HTMLElement; + } else { + return object && + typeof object === 'object' && + object.nodeType === 1 && + typeof object.nodeName === 'string'; + } + }; + + /** + * Inspects an object. + * + * @see taken from node.js `util` module (copyright Joyent, MIT license) + * @api private + */ + + function i (obj, showHidden, depth) { + var seen = []; + + function stylize (str) { + return str; + }; + + function format (value, recurseTimes) { + // Provide a hook for user-specified inspect functions. + // Check that value is an object with an inspect function on it + if (value && typeof value.inspect === 'function' && + // Filter out the util module, it's inspect function is special + value !== exports && + // Also filter out any prototype objects using the circular check. + !(value.constructor && value.constructor.prototype === value)) { + return value.inspect(recurseTimes); + } + + // Primitive types cannot have properties + switch (typeof value) { + case 'undefined': + return stylize('undefined', 'undefined'); + + case 'string': + var simple = '\'' + json.stringify(value).replace(/^"|"$/g, '') + .replace(/'/g, "\\'") + .replace(/\\"/g, '"') + '\''; + return stylize(simple, 'string'); + + case 'number': + return stylize('' + value, 'number'); + + case 'boolean': + return stylize('' + value, 'boolean'); + } + // For some reason typeof null is "object", so special case here. + if (value === null) { + return stylize('null', 'null'); + } + + if (isDOMElement(value)) { + return getOuterHTML(value); + } + + // Look up the keys of the object. + var visible_keys = keys(value); + var $keys = showHidden ? Object.getOwnPropertyNames(value) : visible_keys; + + // Functions without properties can be shortcutted. + if (typeof value === 'function' && $keys.length === 0) { + if (isRegExp(value)) { + return stylize('' + value, 'regexp'); + } else { + var name = value.name ? ': ' + value.name : ''; + return stylize('[Function' + name + ']', 'special'); + } + } + + // Dates without properties can be shortcutted + if (isDate(value) && $keys.length === 0) { + return stylize(value.toUTCString(), 'date'); + } + + var base, type, braces; + // Determine the object type + if (isArray(value)) { + type = 'Array'; + braces = ['[', ']']; + } else { + type = 'Object'; + braces = ['{', '}']; + } + + // Make functions say that they are functions + if (typeof value === 'function') { + var n = value.name ? ': ' + value.name : ''; + base = (isRegExp(value)) ? ' ' + value : ' [Function' + n + ']'; + } else { + base = ''; + } + + // Make dates with properties first say the date + if (isDate(value)) { + base = ' ' + value.toUTCString(); + } + + if ($keys.length === 0) { + return braces[0] + base + braces[1]; + } + + if (recurseTimes < 0) { + if (isRegExp(value)) { + return stylize('' + value, 'regexp'); + } else { + return stylize('[Object]', 'special'); + } + } + + seen.push(value); + + var output = map($keys, function (key) { + var name, str; + if (value.__lookupGetter__) { + if (value.__lookupGetter__(key)) { + if (value.__lookupSetter__(key)) { + str = stylize('[Getter/Setter]', 'special'); + } else { + str = stylize('[Getter]', 'special'); + } + } else { + if (value.__lookupSetter__(key)) { + str = stylize('[Setter]', 'special'); + } + } + } + if (indexOf(visible_keys, key) < 0) { + name = '[' + key + ']'; + } + if (!str) { + if (indexOf(seen, value[key]) < 0) { + if (recurseTimes === null) { + str = format(value[key]); + } else { + str = format(value[key], recurseTimes - 1); + } + if (str.indexOf('\n') > -1) { + if (isArray(value)) { + str = map(str.split('\n'), function (line) { + return ' ' + line; + }).join('\n').substr(2); + } else { + str = '\n' + map(str.split('\n'), function (line) { + return ' ' + line; + }).join('\n'); + } + } + } else { + str = stylize('[Circular]', 'special'); + } + } + if (typeof name === 'undefined') { + if (type === 'Array' && key.match(/^\d+$/)) { + return str; + } + name = json.stringify('' + key); + if (name.match(/^"([a-zA-Z_][a-zA-Z_0-9]*)"$/)) { + name = name.substr(1, name.length - 2); + name = stylize(name, 'name'); + } else { + name = name.replace(/'/g, "\\'") + .replace(/\\"/g, '"') + .replace(/(^"|"$)/g, "'"); + name = stylize(name, 'string'); + } + } + + return name + ': ' + str; + }); + + seen.pop(); + + var numLinesEst = 0; + var length = reduce(output, function (prev, cur) { + numLinesEst++; + if (indexOf(cur, '\n') >= 0) numLinesEst++; + return prev + cur.length + 1; + }, 0); + + if (length > 50) { + output = braces[0] + + (base === '' ? '' : base + '\n ') + + ' ' + + output.join(',\n ') + + ' ' + + braces[1]; + + } else { + output = braces[0] + base + ' ' + output.join(', ') + ' ' + braces[1]; + } + + return output; + } + return format(obj, (typeof depth === 'undefined' ? 2 : depth)); + }; + + function isArray (ar) { + return Object.prototype.toString.call(ar) == '[object Array]'; + }; + + function isRegExp(re) { + var s; + try { + s = '' + re; + } catch (e) { + return false; + } + + return re instanceof RegExp || // easy case + // duck-type for context-switching evalcx case + typeof(re) === 'function' && + re.constructor.name === 'RegExp' && + re.compile && + re.test && + re.exec && + s.match(/^\/.*\/[gim]{0,3}$/); + }; + + function isDate(d) { + if (d instanceof Date) return true; + return false; + }; + + function keys (obj) { + if (Object.keys) { + return Object.keys(obj); + } + + var keys = []; + + for (var i in obj) { + if (Object.prototype.hasOwnProperty.call(obj, i)) { + keys.push(i); + } + } + + return keys; + } + + function map (arr, mapper, that) { + if (Array.prototype.map) { + return Array.prototype.map.call(arr, mapper, that); + } + + var other= new Array(arr.length); + + for (var i= 0, n = arr.length; i= 2) { + var rv = arguments[1]; + } else { + do { + if (i in this) { + rv = this[i++]; + break; + } + + // if array contains no values, no initial value to return + if (++i >= len) + throw new TypeError(); + } while (true); + } + + for (; i < len; i++) { + if (i in this) + rv = fun.call(null, rv, this[i], i, this); + } + + return rv; + }; + + /** + * Asserts deep equality + * + * @see taken from node.js `assert` module (copyright Joyent, MIT license) + * @api private + */ + + expect.eql = function eql (actual, expected) { + // 7.1. All identical values are equivalent, as determined by ===. + if (actual === expected) { + return true; + } else if ('undefined' != typeof Buffer + && Buffer.isBuffer(actual) && Buffer.isBuffer(expected)) { + if (actual.length != expected.length) return false; + + for (var i = 0; i < actual.length; i++) { + if (actual[i] !== expected[i]) return false; + } + + return true; + + // 7.2. If the expected value is a Date object, the actual value is + // equivalent if it is also a Date object that refers to the same time. + } else if (actual instanceof Date && expected instanceof Date) { + return actual.getTime() === expected.getTime(); + + // 7.3. Other pairs that do not both pass typeof value == "object", + // equivalence is determined by ==. + } else if (typeof actual != 'object' && typeof expected != 'object') { + return actual == expected; + + // 7.4. For all other Object pairs, including Array objects, equivalence is + // determined by having the same number of owned properties (as verified + // with Object.prototype.hasOwnProperty.call), the same set of keys + // (although not necessarily the same order), equivalent values for every + // corresponding key, and an identical "prototype" property. Note: this + // accounts for both named and indexed properties on Arrays. + } else { + return objEquiv(actual, expected); + } + } + + function isUndefinedOrNull (value) { + return value === null || value === undefined; + } + + function isArguments (object) { + return Object.prototype.toString.call(object) == '[object Arguments]'; + } + + function objEquiv (a, b) { + if (isUndefinedOrNull(a) || isUndefinedOrNull(b)) + return false; + // an identical "prototype" property. + if (a.prototype !== b.prototype) return false; + //~~~I've managed to break Object.keys through screwy arguments passing. + // Converting to array solves the problem. + if (isArguments(a)) { + if (!isArguments(b)) { + return false; + } + a = pSlice.call(a); + b = pSlice.call(b); + return expect.eql(a, b); + } + try{ + var ka = keys(a), + kb = keys(b), + key, i; + } catch (e) {//happens when one is a string literal and the other isn't + return false; + } + // having the same number of owned properties (keys incorporates hasOwnProperty) + if (ka.length != kb.length) + return false; + //the same set of keys (although not necessarily the same order), + ka.sort(); + kb.sort(); + //~~~cheap key test + for (i = ka.length - 1; i >= 0; i--) { + if (ka[i] != kb[i]) + return false; + } + //equivalent values for every corresponding key, and + //~~~possibly expensive deep test + for (i = ka.length - 1; i >= 0; i--) { + key = ka[i]; + if (!expect.eql(a[key], b[key])) + return false; + } + return true; + } + + var json = (function () { + "use strict"; + + if ('object' == typeof JSON && JSON.parse && JSON.stringify) { + return { + parse: nativeJSON.parse + , stringify: nativeJSON.stringify + } + } + + var JSON = {}; + + function f(n) { + // Format integers to have at least two digits. + return n < 10 ? '0' + n : n; + } + + function date(d, key) { + return isFinite(d.valueOf()) ? + d.getUTCFullYear() + '-' + + f(d.getUTCMonth() + 1) + '-' + + f(d.getUTCDate()) + 'T' + + f(d.getUTCHours()) + ':' + + f(d.getUTCMinutes()) + ':' + + f(d.getUTCSeconds()) + 'Z' : null; + }; + + var cx = /[\u0000\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, + escapable = /[\\\"\x00-\x1f\x7f-\x9f\u00ad\u0600-\u0604\u070f\u17b4\u17b5\u200c-\u200f\u2028-\u202f\u2060-\u206f\ufeff\ufff0-\uffff]/g, + gap, + indent, + meta = { // table of character substitutions + '\b': '\\b', + '\t': '\\t', + '\n': '\\n', + '\f': '\\f', + '\r': '\\r', + '"' : '\\"', + '\\': '\\\\' + }, + rep; + + + function quote(string) { + + // If the string contains no control characters, no quote characters, and no + // backslash characters, then we can safely slap some quotes around it. + // Otherwise we must also replace the offending characters with safe escape + // sequences. + + escapable.lastIndex = 0; + return escapable.test(string) ? '"' + string.replace(escapable, function (a) { + var c = meta[a]; + return typeof c === 'string' ? c : + '\\u' + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); + }) + '"' : '"' + string + '"'; + } + + + function str(key, holder) { + + // Produce a string from holder[key]. + + var i, // The loop counter. + k, // The member key. + v, // The member value. + length, + mind = gap, + partial, + value = holder[key]; + + // If the value has a toJSON method, call it to obtain a replacement value. + + if (value instanceof Date) { + value = date(key); + } + + // If we were called with a replacer function, then call the replacer to + // obtain a replacement value. + + if (typeof rep === 'function') { + value = rep.call(holder, key, value); + } + + // What happens next depends on the value's type. + + switch (typeof value) { + case 'string': + return quote(value); + + case 'number': + + // JSON numbers must be finite. Encode non-finite numbers as null. + + return isFinite(value) ? String(value) : 'null'; + + case 'boolean': + case 'null': + + // If the value is a boolean or null, convert it to a string. Note: + // typeof null does not produce 'null'. The case is included here in + // the remote chance that this gets fixed someday. + + return String(value); + + // If the type is 'object', we might be dealing with an object or an array or + // null. + + case 'object': + + // Due to a specification blunder in ECMAScript, typeof null is 'object', + // so watch out for that case. + + if (!value) { + return 'null'; + } + + // Make an array to hold the partial results of stringifying this object value. + + gap += indent; + partial = []; + + // Is the value an array? + + if (Object.prototype.toString.apply(value) === '[object Array]') { + + // The value is an array. Stringify every element. Use null as a placeholder + // for non-JSON values. + + length = value.length; + for (i = 0; i < length; i += 1) { + partial[i] = str(i, value) || 'null'; + } + + // Join all of the elements together, separated with commas, and wrap them in + // brackets. + + v = partial.length === 0 ? '[]' : gap ? + '[\n' + gap + partial.join(',\n' + gap) + '\n' + mind + ']' : + '[' + partial.join(',') + ']'; + gap = mind; + return v; + } + + // If the replacer is an array, use it to select the members to be stringified. + + if (rep && typeof rep === 'object') { + length = rep.length; + for (i = 0; i < length; i += 1) { + if (typeof rep[i] === 'string') { + k = rep[i]; + v = str(k, value); + if (v) { + partial.push(quote(k) + (gap ? ': ' : ':') + v); + } + } + } + } else { + + // Otherwise, iterate through all of the keys in the object. + + for (k in value) { + if (Object.prototype.hasOwnProperty.call(value, k)) { + v = str(k, value); + if (v) { + partial.push(quote(k) + (gap ? ': ' : ':') + v); + } + } + } + } + + // Join all of the member texts together, separated with commas, + // and wrap them in braces. + + v = partial.length === 0 ? '{}' : gap ? + '{\n' + gap + partial.join(',\n' + gap) + '\n' + mind + '}' : + '{' + partial.join(',') + '}'; + gap = mind; + return v; + } + } + + // If the JSON object does not yet have a stringify method, give it one. + + JSON.stringify = function (value, replacer, space) { + + // The stringify method takes a value and an optional replacer, and an optional + // space parameter, and returns a JSON text. The replacer can be a function + // that can replace values, or an array of strings that will select the keys. + // A default replacer method can be provided. Use of the space parameter can + // produce text that is more easily readable. + + var i; + gap = ''; + indent = ''; + + // If the space parameter is a number, make an indent string containing that + // many spaces. + + if (typeof space === 'number') { + for (i = 0; i < space; i += 1) { + indent += ' '; + } + + // If the space parameter is a string, it will be used as the indent string. + + } else if (typeof space === 'string') { + indent = space; + } + + // If there is a replacer, it must be a function or an array. + // Otherwise, throw an error. + + rep = replacer; + if (replacer && typeof replacer !== 'function' && + (typeof replacer !== 'object' || + typeof replacer.length !== 'number')) { + throw new Error('JSON.stringify'); + } + + // Make a fake root object containing our value under the key of ''. + // Return the result of stringifying the value. + + return str('', {'': value}); + }; + + // If the JSON object does not yet have a parse method, give it one. + + JSON.parse = function (text, reviver) { + // The parse method takes a text and an optional reviver function, and returns + // a JavaScript value if the text is a valid JSON text. + + var j; + + function walk(holder, key) { + + // The walk method is used to recursively walk the resulting structure so + // that modifications can be made. + + var k, v, value = holder[key]; + if (value && typeof value === 'object') { + for (k in value) { + if (Object.prototype.hasOwnProperty.call(value, k)) { + v = walk(value, k); + if (v !== undefined) { + value[k] = v; + } else { + delete value[k]; + } + } + } + } + return reviver.call(holder, key, value); + } + + + // Parsing happens in four stages. In the first stage, we replace certain + // Unicode characters with escape sequences. JavaScript handles many characters + // incorrectly, either silently deleting them, or treating them as line endings. + + text = String(text); + cx.lastIndex = 0; + if (cx.test(text)) { + text = text.replace(cx, function (a) { + return '\\u' + + ('0000' + a.charCodeAt(0).toString(16)).slice(-4); + }); + } + + // In the second stage, we run the text against regular expressions that look + // for non-JSON patterns. We are especially concerned with '()' and 'new' + // because they can cause invocation, and '=' because it can cause mutation. + // But just to be safe, we want to reject all unexpected forms. + + // We split the second stage into 4 regexp operations in order to work around + // crippling inefficiencies in IE's and Safari's regexp engines. First we + // replace the JSON backslash pairs with '@' (a non-JSON character). Second, we + // replace all simple value tokens with ']' characters. Third, we delete all + // open brackets that follow a colon or comma or that begin the text. Finally, + // we look to see that the remaining characters are only whitespace or ']' or + // ',' or ':' or '{' or '}'. If that is so, then the text is safe for eval. + + if (/^[\],:{}\s]*$/ + .test(text.replace(/\\(?:["\\\/bfnrt]|u[0-9a-fA-F]{4})/g, '@') + .replace(/"[^"\\\n\r]*"|true|false|null|-?\d+(?:\.\d*)?(?:[eE][+\-]?\d+)?/g, ']') + .replace(/(?:^|:|,)(?:\s*\[)+/g, ''))) { + + // In the third stage we use the eval function to compile the text into a + // JavaScript structure. The '{' operator is subject to a syntactic ambiguity + // in JavaScript: it can begin a block or an object literal. We wrap the text + // in parens to eliminate the ambiguity. + + j = eval('(' + text + ')'); + + // In the optional fourth stage, we recursively walk the new structure, passing + // each name/value pair to a reviver function for possible transformation. + + return typeof reviver === 'function' ? + walk({'': j}, '') : j; + } + + // If the text is not JSON parseable, then a SyntaxError is thrown. + + throw new SyntaxError('JSON.parse'); + }; + + return JSON; + })(); + + if ('undefined' != typeof window) { + window.expect = module.exports; + } + +})( + this + , 'undefined' != typeof module ? module : {} + , 'undefined' != typeof exports ? exports : {} +); diff --git a/lib/Leaflet.markercluster/spec/happen.js b/lib/Leaflet.markercluster/spec/happen.js new file mode 100644 index 000000000..874285f81 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/happen.js @@ -0,0 +1,93 @@ +// https://github.com/tmcw/happen + +!(function(context) { + var h = {}; + + // Make inheritance bearable: clone one level of properties + function extend(child, parent) { + for (var property in parent) { + if (typeof child[property] == 'undefined') { + child[property] = parent[property]; + } + } + return child; + } + + h.once = function(x, o) { + var evt; + + if (o.type.slice(0, 3) === 'key') { + if (typeof Event === 'function') { + evt = new Event(o.type); + evt.keyCode = o.keyCode || 0; + evt.charCode = o.charCode || 0; + evt.shift = o.shift || false; + evt.meta = o.meta || false; + evt.ctrl = o.ctrl || false; + evt.alt = o.alt || false; + } else { + evt = document.createEvent('KeyboardEvent'); + // https://developer.mozilla.org/en/DOM/event.initKeyEvent + // https://developer.mozilla.org/en/DOM/KeyboardEvent + evt[(evt.initKeyEvent) ? 'initKeyEvent' + : 'initKeyboardEvent']( + o.type, // in DOMString typeArg, + true, // in boolean canBubbleArg, + true, // in boolean cancelableArg, + null, // in nsIDOMAbstractView viewArg, Specifies UIEvent.view. This value may be null. + o.ctrl || false, // in boolean ctrlKeyArg, + o.alt || false, // in boolean altKeyArg, + o.shift || false, // in boolean shiftKeyArg, + o.meta || false, // in boolean metaKeyArg, + o.keyCode || 0, // in unsigned long keyCodeArg, + o.charCode || 0 // in unsigned long charCodeArg); + ); + } + } else { + evt = document.createEvent('MouseEvents'); + // https://developer.mozilla.org/en/DOM/event.initMouseEvent + evt.initMouseEvent(o.type, + true, // canBubble + true, // cancelable + window, // 'AbstractView' + o.clicks || 0, // click count + o.screenX || 0, // screenX + o.screenY || 0, // screenY + o.clientX || 0, // clientX + o.clientY || 0, // clientY + o.ctrl || 0, // ctrl + o.alt || false, // alt + o.shift || false, // shift + o.meta || false, // meta + o.button || false, // mouse button + null // relatedTarget + ); + } + + x.dispatchEvent(evt); + }; + + var shortcuts = ['click', 'mousedown', 'mouseup', 'mousemove', 'keydown', 'keyup', 'keypress'], + s, i = 0; + + while (s = shortcuts[i++]) { + h[s] = (function(s) { + return function(x, o) { + h.once(x, extend(o || {}, { type: s })); + }; + })(s); + } + + h.dblclick = function(x, o) { + h.once(x, extend(o || {}, { + type: 'dblclick', + clicks: 2 + })); + }; + + this.happen = h; + + if (typeof module !== 'undefined') { + module.exports = this.happen; + } +})(this); diff --git a/lib/Leaflet.markercluster/spec/index.html b/lib/Leaflet.markercluster/spec/index.html new file mode 100644 index 000000000..ad1549cf1 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/index.html @@ -0,0 +1,66 @@ + + + + + Spec Runner + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/lib/Leaflet.markercluster/spec/karma.conf.js b/lib/Leaflet.markercluster/spec/karma.conf.js new file mode 100644 index 000000000..dc64d629d --- /dev/null +++ b/lib/Leaflet.markercluster/spec/karma.conf.js @@ -0,0 +1,67 @@ +// Karma configuration +var libSources = require(__dirname+'/../build/build.js').getFiles(); +var leafletSources = require(__dirname+'/../node_modules/leaflet/build/build.js').getFiles(); + +// base path, that will be used to resolve files and exclude +basePath = ''; + +for (var i=0; i < libSources.length; i++) { + libSources[i] = "../" + libSources[i]; +} +for (var i=0; i < leafletSources.length; i++) { + leafletSources[i] = "../node_modules/leaflet/" + leafletSources[i]; +} + +// list of files / patterns to load in the browser +files = [].concat([ + "../node_modules/mocha/mocha.js", + MOCHA_ADAPTER, + "sinon.js", + "expect.js" +], leafletSources, libSources, [ + "after.js", + "happen.js", + "suites/SpecHelper.js", + "suites/**/*.js" +]); + +// list of files to exclude +exclude = [ +]; + +// test results reporter to use +// possible values: 'dots', 'progress', 'junit' +reporters = ['dots']; + +// web server port +port = 8080; + +// cli runner port +runnerPort = 9100; + +// enable / disable colors in the output (reporters and logs) +colors = true; + +// level of logging +// possible values: LOG_DISABLE || LOG_ERROR || LOG_WARN || LOG_INFO || LOG_DEBUG +logLevel = LOG_WARN; + +// enable / disable watching file and executing tests whenever any file changes +autoWatch = false; + +// Start these browsers, currently available: +// - Chrome +// - ChromeCanary +// - Firefox +// - Opera +// - Safari (only Mac) +// - PhantomJS +// - IE (only Windows) +browsers = ['PhantomJS']; + +// If browser does not capture in given timeout [ms], kill it +captureTimeout = 5000; + +// Continuous Integration mode +// if true, it capture browsers, run tests and exit +singleRun = true; diff --git a/lib/Leaflet.markercluster/spec/sinon.js b/lib/Leaflet.markercluster/spec/sinon.js new file mode 100644 index 000000000..d08a0e082 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/sinon.js @@ -0,0 +1,4223 @@ +/** + * Sinon.JS 1.6.0, 2013/02/18 + * + * @author Christian Johansen (christian@cjohansen.no) + * @author Contributors: https://github.com/cjohansen/Sinon.JS/blob/master/AUTHORS + * + * (The BSD License) + * + * Copyright (c) 2010-2013, Christian Johansen, christian@cjohansen.no + * All rights reserved. + * + * 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. + * * Neither the name of Christian Johansen nor the names of his contributors + * may be used to endorse or promote products derived from this software + * without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "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 THE COPYRIGHT HOLDER OR 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. + */ + +var sinon = (function () { +"use strict"; + +var buster = (function (setTimeout, B) { + var isNode = typeof require == "function" && typeof module == "object"; + var div = typeof document != "undefined" && document.createElement("div"); + var F = function () {}; + + var buster = { + bind: function bind(obj, methOrProp) { + var method = typeof methOrProp == "string" ? obj[methOrProp] : methOrProp; + var args = Array.prototype.slice.call(arguments, 2); + return function () { + var allArgs = args.concat(Array.prototype.slice.call(arguments)); + return method.apply(obj, allArgs); + }; + }, + + partial: function partial(fn) { + var args = [].slice.call(arguments, 1); + return function () { + return fn.apply(this, args.concat([].slice.call(arguments))); + }; + }, + + create: function create(object) { + F.prototype = object; + return new F(); + }, + + extend: function extend(target) { + if (!target) { return; } + for (var i = 1, l = arguments.length, prop; i < l; ++i) { + for (prop in arguments[i]) { + target[prop] = arguments[i][prop]; + } + } + return target; + }, + + nextTick: function nextTick(callback) { + if (typeof process != "undefined" && process.nextTick) { + return process.nextTick(callback); + } + setTimeout(callback, 0); + }, + + functionName: function functionName(func) { + if (!func) return ""; + if (func.displayName) return func.displayName; + if (func.name) return func.name; + var matches = func.toString().match(/function\s+([^\(]+)/m); + return matches && matches[1] || ""; + }, + + isNode: function isNode(obj) { + if (!div) return false; + try { + obj.appendChild(div); + obj.removeChild(div); + } catch (e) { + return false; + } + return true; + }, + + isElement: function isElement(obj) { + return obj && obj.nodeType === 1 && buster.isNode(obj); + }, + + isArray: function isArray(arr) { + return Object.prototype.toString.call(arr) == "[object Array]"; + }, + + flatten: function flatten(arr) { + var result = [], arr = arr || []; + for (var i = 0, l = arr.length; i < l; ++i) { + result = result.concat(buster.isArray(arr[i]) ? flatten(arr[i]) : arr[i]); + } + return result; + }, + + each: function each(arr, callback) { + for (var i = 0, l = arr.length; i < l; ++i) { + callback(arr[i]); + } + }, + + map: function map(arr, callback) { + var results = []; + for (var i = 0, l = arr.length; i < l; ++i) { + results.push(callback(arr[i])); + } + return results; + }, + + parallel: function parallel(fns, callback) { + function cb(err, res) { + if (typeof callback == "function") { + callback(err, res); + callback = null; + } + } + if (fns.length == 0) { return cb(null, []); } + var remaining = fns.length, results = []; + function makeDone(num) { + return function done(err, result) { + if (err) { return cb(err); } + results[num] = result; + if (--remaining == 0) { cb(null, results); } + }; + } + for (var i = 0, l = fns.length; i < l; ++i) { + fns[i](makeDone(i)); + } + }, + + series: function series(fns, callback) { + function cb(err, res) { + if (typeof callback == "function") { + callback(err, res); + } + } + var remaining = fns.slice(); + var results = []; + function callNext() { + if (remaining.length == 0) return cb(null, results); + var promise = remaining.shift()(next); + if (promise && typeof promise.then == "function") { + promise.then(buster.partial(next, null), next); + } + } + function next(err, result) { + if (err) return cb(err); + results.push(result); + callNext(); + } + callNext(); + }, + + countdown: function countdown(num, done) { + return function () { + if (--num == 0) done(); + }; + } + }; + + if (typeof process === "object" && + typeof require === "function" && typeof module === "object") { + var crypto = require("crypto"); + var path = require("path"); + + buster.tmpFile = function (fileName) { + var hashed = crypto.createHash("sha1"); + hashed.update(fileName); + var tmpfileName = hashed.digest("hex"); + + if (process.platform == "win32") { + return path.join(process.env["TEMP"], tmpfileName); + } else { + return path.join("/tmp", tmpfileName); + } + }; + } + + if (Array.prototype.some) { + buster.some = function (arr, fn, thisp) { + return arr.some(fn, thisp); + }; + } else { + // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/some + buster.some = function (arr, fun, thisp) { + if (arr == null) { throw new TypeError(); } + arr = Object(arr); + var len = arr.length >>> 0; + if (typeof fun !== "function") { throw new TypeError(); } + + for (var i = 0; i < len; i++) { + if (arr.hasOwnProperty(i) && fun.call(thisp, arr[i], i, arr)) { + return true; + } + } + + return false; + }; + } + + if (Array.prototype.filter) { + buster.filter = function (arr, fn, thisp) { + return arr.filter(fn, thisp); + }; + } else { + // https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Array/filter + buster.filter = function (fn, thisp) { + if (this == null) { throw new TypeError(); } + + var t = Object(this); + var len = t.length >>> 0; + if (typeof fn != "function") { throw new TypeError(); } + + var res = []; + for (var i = 0; i < len; i++) { + if (i in t) { + var val = t[i]; // in case fun mutates this + if (fn.call(thisp, val, i, t)) { res.push(val); } + } + } + + return res; + }; + } + + if (isNode) { + module.exports = buster; + buster.eventEmitter = require("./buster-event-emitter"); + Object.defineProperty(buster, "defineVersionGetter", { + get: function () { + return require("./define-version-getter"); + } + }); + } + + return buster.extend(B || {}, buster); +}(setTimeout, buster)); +if (typeof buster === "undefined") { + var buster = {}; +} + +if (typeof module === "object" && typeof require === "function") { + buster = require("buster-core"); +} + +buster.format = buster.format || {}; +buster.format.excludeConstructors = ["Object", /^.$/]; +buster.format.quoteStrings = true; + +buster.format.ascii = (function () { + + var hasOwn = Object.prototype.hasOwnProperty; + + var specialObjects = []; + if (typeof global != "undefined") { + specialObjects.push({ obj: global, value: "[object global]" }); + } + if (typeof document != "undefined") { + specialObjects.push({ obj: document, value: "[object HTMLDocument]" }); + } + if (typeof window != "undefined") { + specialObjects.push({ obj: window, value: "[object Window]" }); + } + + function keys(object) { + var k = Object.keys && Object.keys(object) || []; + + if (k.length == 0) { + for (var prop in object) { + if (hasOwn.call(object, prop)) { + k.push(prop); + } + } + } + + return k.sort(); + } + + function isCircular(object, objects) { + if (typeof object != "object") { + return false; + } + + for (var i = 0, l = objects.length; i < l; ++i) { + if (objects[i] === object) { + return true; + } + } + + return false; + } + + function ascii(object, processed, indent) { + if (typeof object == "string") { + var quote = typeof this.quoteStrings != "boolean" || this.quoteStrings; + return processed || quote ? '"' + object + '"' : object; + } + + if (typeof object == "function" && !(object instanceof RegExp)) { + return ascii.func(object); + } + + processed = processed || []; + + if (isCircular(object, processed)) { + return "[Circular]"; + } + + if (Object.prototype.toString.call(object) == "[object Array]") { + return ascii.array.call(this, object, processed); + } + + if (!object) { + return "" + object; + } + + if (buster.isElement(object)) { + return ascii.element(object); + } + + if (typeof object.toString == "function" && + object.toString !== Object.prototype.toString) { + return object.toString(); + } + + for (var i = 0, l = specialObjects.length; i < l; i++) { + if (object === specialObjects[i].obj) { + return specialObjects[i].value; + } + } + + return ascii.object.call(this, object, processed, indent); + } + + ascii.func = function (func) { + return "function " + buster.functionName(func) + "() {}"; + }; + + ascii.array = function (array, processed) { + processed = processed || []; + processed.push(array); + var pieces = []; + + for (var i = 0, l = array.length; i < l; ++i) { + pieces.push(ascii.call(this, array[i], processed)); + } + + return "[" + pieces.join(", ") + "]"; + }; + + ascii.object = function (object, processed, indent) { + processed = processed || []; + processed.push(object); + indent = indent || 0; + var pieces = [], properties = keys(object), prop, str, obj; + var is = ""; + var length = 3; + + for (var i = 0, l = indent; i < l; ++i) { + is += " "; + } + + for (i = 0, l = properties.length; i < l; ++i) { + prop = properties[i]; + obj = object[prop]; + + if (isCircular(obj, processed)) { + str = "[Circular]"; + } else { + str = ascii.call(this, obj, processed, indent + 2); + } + + str = (/\s/.test(prop) ? '"' + prop + '"' : prop) + ": " + str; + length += str.length; + pieces.push(str); + } + + var cons = ascii.constructorName.call(this, object); + var prefix = cons ? "[" + cons + "] " : "" + + return (length + indent) > 80 ? + prefix + "{\n " + is + pieces.join(",\n " + is) + "\n" + is + "}" : + prefix + "{ " + pieces.join(", ") + " }"; + }; + + ascii.element = function (element) { + var tagName = element.tagName.toLowerCase(); + var attrs = element.attributes, attribute, pairs = [], attrName; + + for (var i = 0, l = attrs.length; i < l; ++i) { + attribute = attrs.item(i); + attrName = attribute.nodeName.toLowerCase().replace("html:", ""); + + if (attrName == "contenteditable" && attribute.nodeValue == "inherit") { + continue; + } + + if (!!attribute.nodeValue) { + pairs.push(attrName + "=\"" + attribute.nodeValue + "\""); + } + } + + var formatted = "<" + tagName + (pairs.length > 0 ? " " : ""); + var content = element.innerHTML; + + if (content.length > 20) { + content = content.substr(0, 20) + "[...]"; + } + + var res = formatted + pairs.join(" ") + ">" + content + ""; + + return res.replace(/ contentEditable="inherit"/, ""); + }; + + ascii.constructorName = function (object) { + var name = buster.functionName(object && object.constructor); + var excludes = this.excludeConstructors || buster.format.excludeConstructors || []; + + for (var i = 0, l = excludes.length; i < l; ++i) { + if (typeof excludes[i] == "string" && excludes[i] == name) { + return ""; + } else if (excludes[i].test && excludes[i].test(name)) { + return ""; + } + } + + return name; + }; + + return ascii; +}()); + +if (typeof module != "undefined") { + module.exports = buster.format; +} +/*jslint eqeqeq: false, onevar: false, forin: true, nomen: false, regexp: false, plusplus: false*/ +/*global module, require, __dirname, document*/ +/** + * Sinon core utilities. For internal use only. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +var sinon = (function (buster) { + var div = typeof document != "undefined" && document.createElement("div"); + var hasOwn = Object.prototype.hasOwnProperty; + + function isDOMNode(obj) { + var success = false; + + try { + obj.appendChild(div); + success = div.parentNode == obj; + } catch (e) { + return false; + } finally { + try { + obj.removeChild(div); + } catch (e) { + // Remove failed, not much we can do about that + } + } + + return success; + } + + function isElement(obj) { + return div && obj && obj.nodeType === 1 && isDOMNode(obj); + } + + function isFunction(obj) { + return typeof obj === "function" || !!(obj && obj.constructor && obj.call && obj.apply); + } + + function mirrorProperties(target, source) { + for (var prop in source) { + if (!hasOwn.call(target, prop)) { + target[prop] = source[prop]; + } + } + } + + var sinon = { + wrapMethod: function wrapMethod(object, property, method) { + if (!object) { + throw new TypeError("Should wrap property of object"); + } + + if (typeof method != "function") { + throw new TypeError("Method wrapper should be function"); + } + + var wrappedMethod = object[property]; + + if (!isFunction(wrappedMethod)) { + throw new TypeError("Attempted to wrap " + (typeof wrappedMethod) + " property " + + property + " as function"); + } + + if (wrappedMethod.restore && wrappedMethod.restore.sinon) { + throw new TypeError("Attempted to wrap " + property + " which is already wrapped"); + } + + if (wrappedMethod.calledBefore) { + var verb = !!wrappedMethod.returns ? "stubbed" : "spied on"; + throw new TypeError("Attempted to wrap " + property + " which is already " + verb); + } + + // IE 8 does not support hasOwnProperty on the window object. + var owned = hasOwn.call(object, property); + object[property] = method; + method.displayName = property; + + method.restore = function () { + // For prototype properties try to reset by delete first. + // If this fails (ex: localStorage on mobile safari) then force a reset + // via direct assignment. + if (!owned) { + delete object[property]; + } + if (object[property] === method) { + object[property] = wrappedMethod; + } + }; + + method.restore.sinon = true; + mirrorProperties(method, wrappedMethod); + + return method; + }, + + extend: function extend(target) { + for (var i = 1, l = arguments.length; i < l; i += 1) { + for (var prop in arguments[i]) { + if (arguments[i].hasOwnProperty(prop)) { + target[prop] = arguments[i][prop]; + } + + // DONT ENUM bug, only care about toString + if (arguments[i].hasOwnProperty("toString") && + arguments[i].toString != target.toString) { + target.toString = arguments[i].toString; + } + } + } + + return target; + }, + + create: function create(proto) { + var F = function () {}; + F.prototype = proto; + return new F(); + }, + + deepEqual: function deepEqual(a, b) { + if (sinon.match && sinon.match.isMatcher(a)) { + return a.test(b); + } + if (typeof a != "object" || typeof b != "object") { + return a === b; + } + + if (isElement(a) || isElement(b)) { + return a === b; + } + + if (a === b) { + return true; + } + + if ((a === null && b !== null) || (a !== null && b === null)) { + return false; + } + + var aString = Object.prototype.toString.call(a); + if (aString != Object.prototype.toString.call(b)) { + return false; + } + + if (aString == "[object Array]") { + if (a.length !== b.length) { + return false; + } + + for (var i = 0, l = a.length; i < l; i += 1) { + if (!deepEqual(a[i], b[i])) { + return false; + } + } + + return true; + } + + var prop, aLength = 0, bLength = 0; + + for (prop in a) { + aLength += 1; + + if (!deepEqual(a[prop], b[prop])) { + return false; + } + } + + for (prop in b) { + bLength += 1; + } + + if (aLength != bLength) { + return false; + } + + return true; + }, + + functionName: function functionName(func) { + var name = func.displayName || func.name; + + // Use function decomposition as a last resort to get function + // name. Does not rely on function decomposition to work - if it + // doesn't debugging will be slightly less informative + // (i.e. toString will say 'spy' rather than 'myFunc'). + if (!name) { + var matches = func.toString().match(/function ([^\s\(]+)/); + name = matches && matches[1]; + } + + return name; + }, + + functionToString: function toString() { + if (this.getCall && this.callCount) { + var thisValue, prop, i = this.callCount; + + while (i--) { + thisValue = this.getCall(i).thisValue; + + for (prop in thisValue) { + if (thisValue[prop] === this) { + return prop; + } + } + } + } + + return this.displayName || "sinon fake"; + }, + + getConfig: function (custom) { + var config = {}; + custom = custom || {}; + var defaults = sinon.defaultConfig; + + for (var prop in defaults) { + if (defaults.hasOwnProperty(prop)) { + config[prop] = custom.hasOwnProperty(prop) ? custom[prop] : defaults[prop]; + } + } + + return config; + }, + + format: function (val) { + return "" + val; + }, + + defaultConfig: { + injectIntoThis: true, + injectInto: null, + properties: ["spy", "stub", "mock", "clock", "server", "requests"], + useFakeTimers: true, + useFakeServer: true + }, + + timesInWords: function timesInWords(count) { + return count == 1 && "once" || + count == 2 && "twice" || + count == 3 && "thrice" || + (count || 0) + " times"; + }, + + calledInOrder: function (spies) { + for (var i = 1, l = spies.length; i < l; i++) { + if (!spies[i - 1].calledBefore(spies[i]) || !spies[i].called) { + return false; + } + } + + return true; + }, + + orderByFirstCall: function (spies) { + return spies.sort(function (a, b) { + // uuid, won't ever be equal + var aCall = a.getCall(0); + var bCall = b.getCall(0); + var aId = aCall && aCall.callId || -1; + var bId = bCall && bCall.callId || -1; + + return aId < bId ? -1 : 1; + }); + }, + + log: function () {}, + + logError: function (label, err) { + var msg = label + " threw exception: " + sinon.log(msg + "[" + err.name + "] " + err.message); + if (err.stack) { sinon.log(err.stack); } + + setTimeout(function () { + err.message = msg + err.message; + throw err; + }, 0); + }, + + typeOf: function (value) { + if (value === null) { + return "null"; + } + else if (value === undefined) { + return "undefined"; + } + var string = Object.prototype.toString.call(value); + return string.substring(8, string.length - 1).toLowerCase(); + }, + + createStubInstance: function (constructor) { + if (typeof constructor !== "function") { + throw new TypeError("The constructor should be a function."); + } + return sinon.stub(sinon.create(constructor.prototype)); + } + }; + + var isNode = typeof module == "object" && typeof require == "function"; + + if (isNode) { + try { + buster = { format: require("buster-format") }; + } catch (e) {} + module.exports = sinon; + module.exports.spy = require("./sinon/spy"); + module.exports.stub = require("./sinon/stub"); + module.exports.mock = require("./sinon/mock"); + module.exports.collection = require("./sinon/collection"); + module.exports.assert = require("./sinon/assert"); + module.exports.sandbox = require("./sinon/sandbox"); + module.exports.test = require("./sinon/test"); + module.exports.testCase = require("./sinon/test_case"); + module.exports.assert = require("./sinon/assert"); + module.exports.match = require("./sinon/match"); + } + + if (buster) { + var formatter = sinon.create(buster.format); + formatter.quoteStrings = false; + sinon.format = function () { + return formatter.ascii.apply(formatter, arguments); + }; + } else if (isNode) { + try { + var util = require("util"); + sinon.format = function (value) { + return typeof value == "object" && value.toString === Object.prototype.toString ? util.inspect(value) : value; + }; + } catch (e) { + /* Node, but no util module - would be very old, but better safe than + sorry */ + } + } + + return sinon; +}(typeof buster == "object" && buster)); + +/* @depend ../sinon.js */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Match functions + * + * @author Maximilian Antoni (mail@maxantoni.de) + * @license BSD + * + * Copyright (c) 2012 Maximilian Antoni + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function assertType(value, type, name) { + var actual = sinon.typeOf(value); + if (actual !== type) { + throw new TypeError("Expected type of " + name + " to be " + + type + ", but was " + actual); + } + } + + var matcher = { + toString: function () { + return this.message; + } + }; + + function isMatcher(object) { + return matcher.isPrototypeOf(object); + } + + function matchObject(expectation, actual) { + if (actual === null || actual === undefined) { + return false; + } + for (var key in expectation) { + if (expectation.hasOwnProperty(key)) { + var exp = expectation[key]; + var act = actual[key]; + if (match.isMatcher(exp)) { + if (!exp.test(act)) { + return false; + } + } else if (sinon.typeOf(exp) === "object") { + if (!matchObject(exp, act)) { + return false; + } + } else if (!sinon.deepEqual(exp, act)) { + return false; + } + } + } + return true; + } + + matcher.or = function (m2) { + if (!isMatcher(m2)) { + throw new TypeError("Matcher expected"); + } + var m1 = this; + var or = sinon.create(matcher); + or.test = function (actual) { + return m1.test(actual) || m2.test(actual); + }; + or.message = m1.message + ".or(" + m2.message + ")"; + return or; + }; + + matcher.and = function (m2) { + if (!isMatcher(m2)) { + throw new TypeError("Matcher expected"); + } + var m1 = this; + var and = sinon.create(matcher); + and.test = function (actual) { + return m1.test(actual) && m2.test(actual); + }; + and.message = m1.message + ".and(" + m2.message + ")"; + return and; + }; + + var match = function (expectation, message) { + var m = sinon.create(matcher); + var type = sinon.typeOf(expectation); + switch (type) { + case "object": + if (typeof expectation.test === "function") { + m.test = function (actual) { + return expectation.test(actual) === true; + }; + m.message = "match(" + sinon.functionName(expectation.test) + ")"; + return m; + } + var str = []; + for (var key in expectation) { + if (expectation.hasOwnProperty(key)) { + str.push(key + ": " + expectation[key]); + } + } + m.test = function (actual) { + return matchObject(expectation, actual); + }; + m.message = "match(" + str.join(", ") + ")"; + break; + case "number": + m.test = function (actual) { + return expectation == actual; + }; + break; + case "string": + m.test = function (actual) { + if (typeof actual !== "string") { + return false; + } + return actual.indexOf(expectation) !== -1; + }; + m.message = "match(\"" + expectation + "\")"; + break; + case "regexp": + m.test = function (actual) { + if (typeof actual !== "string") { + return false; + } + return expectation.test(actual); + }; + break; + case "function": + m.test = expectation; + if (message) { + m.message = message; + } else { + m.message = "match(" + sinon.functionName(expectation) + ")"; + } + break; + default: + m.test = function (actual) { + return sinon.deepEqual(expectation, actual); + }; + } + if (!m.message) { + m.message = "match(" + expectation + ")"; + } + return m; + }; + + match.isMatcher = isMatcher; + + match.any = match(function () { + return true; + }, "any"); + + match.defined = match(function (actual) { + return actual !== null && actual !== undefined; + }, "defined"); + + match.truthy = match(function (actual) { + return !!actual; + }, "truthy"); + + match.falsy = match(function (actual) { + return !actual; + }, "falsy"); + + match.same = function (expectation) { + return match(function (actual) { + return expectation === actual; + }, "same(" + expectation + ")"); + }; + + match.typeOf = function (type) { + assertType(type, "string", "type"); + return match(function (actual) { + return sinon.typeOf(actual) === type; + }, "typeOf(\"" + type + "\")"); + }; + + match.instanceOf = function (type) { + assertType(type, "function", "type"); + return match(function (actual) { + return actual instanceof type; + }, "instanceOf(" + sinon.functionName(type) + ")"); + }; + + function createPropertyMatcher(propertyTest, messagePrefix) { + return function (property, value) { + assertType(property, "string", "property"); + var onlyProperty = arguments.length === 1; + var message = messagePrefix + "(\"" + property + "\""; + if (!onlyProperty) { + message += ", " + value; + } + message += ")"; + return match(function (actual) { + if (actual === undefined || actual === null || + !propertyTest(actual, property)) { + return false; + } + return onlyProperty || sinon.deepEqual(value, actual[property]); + }, message); + }; + } + + match.has = createPropertyMatcher(function (actual, property) { + if (typeof actual === "object") { + return property in actual; + } + return actual[property] !== undefined; + }, "has"); + + match.hasOwn = createPropertyMatcher(function (actual, property) { + return actual.hasOwnProperty(property); + }, "hasOwn"); + + match.bool = match.typeOf("boolean"); + match.number = match.typeOf("number"); + match.string = match.typeOf("string"); + match.object = match.typeOf("object"); + match.func = match.typeOf("function"); + match.array = match.typeOf("array"); + match.regexp = match.typeOf("regexp"); + match.date = match.typeOf("date"); + + if (commonJSModule) { + module.exports = match; + } else { + sinon.match = match; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend match.js + */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Spy functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var spyCall; + var callId = 0; + var push = [].push; + var slice = Array.prototype.slice; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function spy(object, property) { + if (!property && typeof object == "function") { + return spy.create(object); + } + + if (!object && !property) { + return spy.create(function () { }); + } + + var method = object[property]; + return sinon.wrapMethod(object, property, spy.create(method)); + } + + sinon.extend(spy, (function () { + + function delegateToCalls(api, method, matchAny, actual, notCalled) { + api[method] = function () { + if (!this.called) { + if (notCalled) { + return notCalled.apply(this, arguments); + } + return false; + } + + var currentCall; + var matches = 0; + + for (var i = 0, l = this.callCount; i < l; i += 1) { + currentCall = this.getCall(i); + + if (currentCall[actual || method].apply(currentCall, arguments)) { + matches += 1; + + if (matchAny) { + return true; + } + } + } + + return matches === this.callCount; + }; + } + + function matchingFake(fakes, args, strict) { + if (!fakes) { + return; + } + + var alen = args.length; + + for (var i = 0, l = fakes.length; i < l; i++) { + if (fakes[i].matches(args, strict)) { + return fakes[i]; + } + } + } + + function incrementCallCount() { + this.called = true; + this.callCount += 1; + this.notCalled = false; + this.calledOnce = this.callCount == 1; + this.calledTwice = this.callCount == 2; + this.calledThrice = this.callCount == 3; + } + + function createCallProperties() { + this.firstCall = this.getCall(0); + this.secondCall = this.getCall(1); + this.thirdCall = this.getCall(2); + this.lastCall = this.getCall(this.callCount - 1); + } + + var vars = "a,b,c,d,e,f,g,h,i,j,k,l"; + function createProxy(func) { + // Retain the function length: + var p; + if (func.length) { + eval("p = (function proxy(" + vars.substring(0, func.length * 2 - 1) + + ") { return p.invoke(func, this, slice.call(arguments)); });"); + } + else { + p = function proxy() { + return p.invoke(func, this, slice.call(arguments)); + }; + } + return p; + } + + var uuid = 0; + + // Public API + var spyApi = { + reset: function () { + this.called = false; + this.notCalled = true; + this.calledOnce = false; + this.calledTwice = false; + this.calledThrice = false; + this.callCount = 0; + this.firstCall = null; + this.secondCall = null; + this.thirdCall = null; + this.lastCall = null; + this.args = []; + this.returnValues = []; + this.thisValues = []; + this.exceptions = []; + this.callIds = []; + if (this.fakes) { + for (var i = 0; i < this.fakes.length; i++) { + this.fakes[i].reset(); + } + } + }, + + create: function create(func) { + var name; + + if (typeof func != "function") { + func = function () { }; + } else { + name = sinon.functionName(func); + } + + var proxy = createProxy(func); + + sinon.extend(proxy, spy); + delete proxy.create; + sinon.extend(proxy, func); + + proxy.reset(); + proxy.prototype = func.prototype; + proxy.displayName = name || "spy"; + proxy.toString = sinon.functionToString; + proxy._create = sinon.spy.create; + proxy.id = "spy#" + uuid++; + + return proxy; + }, + + invoke: function invoke(func, thisValue, args) { + var matching = matchingFake(this.fakes, args); + var exception, returnValue; + + incrementCallCount.call(this); + push.call(this.thisValues, thisValue); + push.call(this.args, args); + push.call(this.callIds, callId++); + + try { + if (matching) { + returnValue = matching.invoke(func, thisValue, args); + } else { + returnValue = (this.func || func).apply(thisValue, args); + } + } catch (e) { + push.call(this.returnValues, undefined); + exception = e; + throw e; + } finally { + push.call(this.exceptions, exception); + } + + push.call(this.returnValues, returnValue); + + createCallProperties.call(this); + + return returnValue; + }, + + getCall: function getCall(i) { + if (i < 0 || i >= this.callCount) { + return null; + } + + return spyCall.create(this, this.thisValues[i], this.args[i], + this.returnValues[i], this.exceptions[i], + this.callIds[i]); + }, + + calledBefore: function calledBefore(spyFn) { + if (!this.called) { + return false; + } + + if (!spyFn.called) { + return true; + } + + return this.callIds[0] < spyFn.callIds[spyFn.callIds.length - 1]; + }, + + calledAfter: function calledAfter(spyFn) { + if (!this.called || !spyFn.called) { + return false; + } + + return this.callIds[this.callCount - 1] > spyFn.callIds[spyFn.callCount - 1]; + }, + + withArgs: function () { + var args = slice.call(arguments); + + if (this.fakes) { + var match = matchingFake(this.fakes, args, true); + + if (match) { + return match; + } + } else { + this.fakes = []; + } + + var original = this; + var fake = this._create(); + fake.matchingAguments = args; + push.call(this.fakes, fake); + + fake.withArgs = function () { + return original.withArgs.apply(original, arguments); + }; + + for (var i = 0; i < this.args.length; i++) { + if (fake.matches(this.args[i])) { + incrementCallCount.call(fake); + push.call(fake.thisValues, this.thisValues[i]); + push.call(fake.args, this.args[i]); + push.call(fake.returnValues, this.returnValues[i]); + push.call(fake.exceptions, this.exceptions[i]); + push.call(fake.callIds, this.callIds[i]); + } + } + createCallProperties.call(fake); + + return fake; + }, + + matches: function (args, strict) { + var margs = this.matchingAguments; + + if (margs.length <= args.length && + sinon.deepEqual(margs, args.slice(0, margs.length))) { + return !strict || margs.length == args.length; + } + }, + + printf: function (format) { + var spy = this; + var args = slice.call(arguments, 1); + var formatter; + + return (format || "").replace(/%(.)/g, function (match, specifyer) { + formatter = spyApi.formatters[specifyer]; + + if (typeof formatter == "function") { + return formatter.call(null, spy, args); + } else if (!isNaN(parseInt(specifyer), 10)) { + return sinon.format(args[specifyer - 1]); + } + + return "%" + specifyer; + }); + } + }; + + delegateToCalls(spyApi, "calledOn", true); + delegateToCalls(spyApi, "alwaysCalledOn", false, "calledOn"); + delegateToCalls(spyApi, "calledWith", true); + delegateToCalls(spyApi, "calledWithMatch", true); + delegateToCalls(spyApi, "alwaysCalledWith", false, "calledWith"); + delegateToCalls(spyApi, "alwaysCalledWithMatch", false, "calledWithMatch"); + delegateToCalls(spyApi, "calledWithExactly", true); + delegateToCalls(spyApi, "alwaysCalledWithExactly", false, "calledWithExactly"); + delegateToCalls(spyApi, "neverCalledWith", false, "notCalledWith", + function () { return true; }); + delegateToCalls(spyApi, "neverCalledWithMatch", false, "notCalledWithMatch", + function () { return true; }); + delegateToCalls(spyApi, "threw", true); + delegateToCalls(spyApi, "alwaysThrew", false, "threw"); + delegateToCalls(spyApi, "returned", true); + delegateToCalls(spyApi, "alwaysReturned", false, "returned"); + delegateToCalls(spyApi, "calledWithNew", true); + delegateToCalls(spyApi, "alwaysCalledWithNew", false, "calledWithNew"); + delegateToCalls(spyApi, "callArg", false, "callArgWith", function () { + throw new Error(this.toString() + " cannot call arg since it was not yet invoked."); + }); + spyApi.callArgWith = spyApi.callArg; + delegateToCalls(spyApi, "callArgOn", false, "callArgOnWith", function () { + throw new Error(this.toString() + " cannot call arg since it was not yet invoked."); + }); + spyApi.callArgOnWith = spyApi.callArgOn; + delegateToCalls(spyApi, "yield", false, "yield", function () { + throw new Error(this.toString() + " cannot yield since it was not yet invoked."); + }); + // "invokeCallback" is an alias for "yield" since "yield" is invalid in strict mode. + spyApi.invokeCallback = spyApi.yield; + delegateToCalls(spyApi, "yieldOn", false, "yieldOn", function () { + throw new Error(this.toString() + " cannot yield since it was not yet invoked."); + }); + delegateToCalls(spyApi, "yieldTo", false, "yieldTo", function (property) { + throw new Error(this.toString() + " cannot yield to '" + property + + "' since it was not yet invoked."); + }); + delegateToCalls(spyApi, "yieldToOn", false, "yieldToOn", function (property) { + throw new Error(this.toString() + " cannot yield to '" + property + + "' since it was not yet invoked."); + }); + + spyApi.formatters = { + "c": function (spy) { + return sinon.timesInWords(spy.callCount); + }, + + "n": function (spy) { + return spy.toString(); + }, + + "C": function (spy) { + var calls = []; + + for (var i = 0, l = spy.callCount; i < l; ++i) { + var stringifiedCall = " " + spy.getCall(i).toString(); + if (/\n/.test(calls[i - 1])) { + stringifiedCall = "\n" + stringifiedCall; + } + push.call(calls, stringifiedCall); + } + + return calls.length > 0 ? "\n" + calls.join("\n") : ""; + }, + + "t": function (spy) { + var objects = []; + + for (var i = 0, l = spy.callCount; i < l; ++i) { + push.call(objects, sinon.format(spy.thisValues[i])); + } + + return objects.join(", "); + }, + + "*": function (spy, args) { + var formatted = []; + + for (var i = 0, l = args.length; i < l; ++i) { + push.call(formatted, sinon.format(args[i])); + } + + return formatted.join(", "); + } + }; + + return spyApi; + }())); + + spyCall = (function () { + + function throwYieldError(proxy, text, args) { + var msg = sinon.functionName(proxy) + text; + if (args.length) { + msg += " Received [" + slice.call(args).join(", ") + "]"; + } + throw new Error(msg); + } + + var callApi = { + create: function create(spy, thisValue, args, returnValue, exception, id) { + var proxyCall = sinon.create(spyCall); + delete proxyCall.create; + proxyCall.proxy = spy; + proxyCall.thisValue = thisValue; + proxyCall.args = args; + proxyCall.returnValue = returnValue; + proxyCall.exception = exception; + proxyCall.callId = typeof id == "number" && id || callId++; + + return proxyCall; + }, + + calledOn: function calledOn(thisValue) { + if (sinon.match && sinon.match.isMatcher(thisValue)) { + return thisValue.test(this.thisValue); + } + return this.thisValue === thisValue; + }, + + calledWith: function calledWith() { + for (var i = 0, l = arguments.length; i < l; i += 1) { + if (!sinon.deepEqual(arguments[i], this.args[i])) { + return false; + } + } + + return true; + }, + + calledWithMatch: function calledWithMatch() { + for (var i = 0, l = arguments.length; i < l; i += 1) { + var actual = this.args[i]; + var expectation = arguments[i]; + if (!sinon.match || !sinon.match(expectation).test(actual)) { + return false; + } + } + return true; + }, + + calledWithExactly: function calledWithExactly() { + return arguments.length == this.args.length && + this.calledWith.apply(this, arguments); + }, + + notCalledWith: function notCalledWith() { + return !this.calledWith.apply(this, arguments); + }, + + notCalledWithMatch: function notCalledWithMatch() { + return !this.calledWithMatch.apply(this, arguments); + }, + + returned: function returned(value) { + return sinon.deepEqual(value, this.returnValue); + }, + + threw: function threw(error) { + if (typeof error == "undefined" || !this.exception) { + return !!this.exception; + } + + if (typeof error == "string") { + return this.exception.name == error; + } + + return this.exception === error; + }, + + calledWithNew: function calledWithNew(thisValue) { + return this.thisValue instanceof this.proxy; + }, + + calledBefore: function (other) { + return this.callId < other.callId; + }, + + calledAfter: function (other) { + return this.callId > other.callId; + }, + + callArg: function (pos) { + this.args[pos](); + }, + + callArgOn: function (pos, thisValue) { + this.args[pos].apply(thisValue); + }, + + callArgWith: function (pos) { + this.callArgOnWith.apply(this, [pos, null].concat(slice.call(arguments, 1))); + }, + + callArgOnWith: function (pos, thisValue) { + var args = slice.call(arguments, 2); + this.args[pos].apply(thisValue, args); + }, + + "yield": function () { + this.yieldOn.apply(this, [null].concat(slice.call(arguments, 0))); + }, + + yieldOn: function (thisValue) { + var args = this.args; + for (var i = 0, l = args.length; i < l; ++i) { + if (typeof args[i] === "function") { + args[i].apply(thisValue, slice.call(arguments, 1)); + return; + } + } + throwYieldError(this.proxy, " cannot yield since no callback was passed.", args); + }, + + yieldTo: function (prop) { + this.yieldToOn.apply(this, [prop, null].concat(slice.call(arguments, 1))); + }, + + yieldToOn: function (prop, thisValue) { + var args = this.args; + for (var i = 0, l = args.length; i < l; ++i) { + if (args[i] && typeof args[i][prop] === "function") { + args[i][prop].apply(thisValue, slice.call(arguments, 2)); + return; + } + } + throwYieldError(this.proxy, " cannot yield to '" + prop + + "' since no callback was passed.", args); + }, + + toString: function () { + var callStr = this.proxy.toString() + "("; + var args = []; + + for (var i = 0, l = this.args.length; i < l; ++i) { + push.call(args, sinon.format(this.args[i])); + } + + callStr = callStr + args.join(", ") + ")"; + + if (typeof this.returnValue != "undefined") { + callStr += " => " + sinon.format(this.returnValue); + } + + if (this.exception) { + callStr += " !" + this.exception.name; + + if (this.exception.message) { + callStr += "(" + this.exception.message + ")"; + } + } + + return callStr; + } + }; + callApi.invokeCallback = callApi.yield; + return callApi; + }()); + + spy.spyCall = spyCall; + + // This steps outside the module sandbox and will be removed + sinon.spyCall = spyCall; + + if (commonJSModule) { + module.exports = spy; + } else { + sinon.spy = spy; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend spy.js + */ +/*jslint eqeqeq: false, onevar: false*/ +/*global module, require, sinon*/ +/** + * Stub functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function stub(object, property, func) { + if (!!func && typeof func != "function") { + throw new TypeError("Custom stub should be function"); + } + + var wrapper; + + if (func) { + wrapper = sinon.spy && sinon.spy.create ? sinon.spy.create(func) : func; + } else { + wrapper = stub.create(); + } + + if (!object && !property) { + return sinon.stub.create(); + } + + if (!property && !!object && typeof object == "object") { + for (var prop in object) { + if (typeof object[prop] === "function") { + stub(object, prop); + } + } + + return object; + } + + return sinon.wrapMethod(object, property, wrapper); + } + + function getChangingValue(stub, property) { + var index = stub.callCount - 1; + var values = stub[property]; + var prop = index in values ? values[index] : values[values.length - 1]; + stub[property + "Last"] = prop; + + return prop; + } + + function getCallback(stub, args) { + var callArgAt = getChangingValue(stub, "callArgAts"); + + if (callArgAt < 0) { + var callArgProp = getChangingValue(stub, "callArgProps"); + + for (var i = 0, l = args.length; i < l; ++i) { + if (!callArgProp && typeof args[i] == "function") { + return args[i]; + } + + if (callArgProp && args[i] && + typeof args[i][callArgProp] == "function") { + return args[i][callArgProp]; + } + } + + return null; + } + + return args[callArgAt]; + } + + var join = Array.prototype.join; + + function getCallbackError(stub, func, args) { + if (stub.callArgAtsLast < 0) { + var msg; + + if (stub.callArgPropsLast) { + msg = sinon.functionName(stub) + + " expected to yield to '" + stub.callArgPropsLast + + "', but no object with such a property was passed." + } else { + msg = sinon.functionName(stub) + + " expected to yield, but no callback was passed." + } + + if (args.length > 0) { + msg += " Received [" + join.call(args, ", ") + "]"; + } + + return msg; + } + + return "argument at index " + stub.callArgAtsLast + " is not a function: " + func; + } + + var nextTick = (function () { + if (typeof process === "object" && typeof process.nextTick === "function") { + return process.nextTick; + } else if (typeof setImmediate === "function") { + return setImmediate; + } else { + return function (callback) { + setTimeout(callback, 0); + }; + } + })(); + + function callCallback(stub, args) { + if (stub.callArgAts.length > 0) { + var func = getCallback(stub, args); + + if (typeof func != "function") { + throw new TypeError(getCallbackError(stub, func, args)); + } + + var callbackArguments = getChangingValue(stub, "callbackArguments"); + var callbackContext = getChangingValue(stub, "callbackContexts"); + + if (stub.callbackAsync) { + nextTick(function() { + func.apply(callbackContext, callbackArguments); + }); + } else { + func.apply(callbackContext, callbackArguments); + } + } + } + + var uuid = 0; + + sinon.extend(stub, (function () { + var slice = Array.prototype.slice, proto; + + function throwsException(error, message) { + if (typeof error == "string") { + this.exception = new Error(message || ""); + this.exception.name = error; + } else if (!error) { + this.exception = new Error("Error"); + } else { + this.exception = error; + } + + return this; + } + + proto = { + create: function create() { + var functionStub = function () { + + callCallback(functionStub, arguments); + + if (functionStub.exception) { + throw functionStub.exception; + } else if (typeof functionStub.returnArgAt == 'number') { + return arguments[functionStub.returnArgAt]; + } else if (functionStub.returnThis) { + return this; + } + return functionStub.returnValue; + }; + + functionStub.id = "stub#" + uuid++; + var orig = functionStub; + functionStub = sinon.spy.create(functionStub); + functionStub.func = orig; + + functionStub.callArgAts = []; + functionStub.callbackArguments = []; + functionStub.callbackContexts = []; + functionStub.callArgProps = []; + + sinon.extend(functionStub, stub); + functionStub._create = sinon.stub.create; + functionStub.displayName = "stub"; + functionStub.toString = sinon.functionToString; + + return functionStub; + }, + + resetBehavior: function () { + var i; + + this.callArgAts = []; + this.callbackArguments = []; + this.callbackContexts = []; + this.callArgProps = []; + + delete this.returnValue; + delete this.returnArgAt; + this.returnThis = false; + + if (this.fakes) { + for (i = 0; i < this.fakes.length; i++) { + this.fakes[i].resetBehavior(); + } + } + }, + + returns: function returns(value) { + this.returnValue = value; + + return this; + }, + + returnsArg: function returnsArg(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.returnArgAt = pos; + + return this; + }, + + returnsThis: function returnsThis() { + this.returnThis = true; + + return this; + }, + + "throws": throwsException, + throwsException: throwsException, + + callsArg: function callsArg(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push([]); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgOn: function callsArgOn(pos, context) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push([]); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgWith: function callsArgWith(pos) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + callsArgOnWith: function callsArgWith(pos, context) { + if (typeof pos != "number") { + throw new TypeError("argument index is not number"); + } + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(pos); + this.callbackArguments.push(slice.call(arguments, 2)); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + yields: function () { + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 0)); + this.callbackContexts.push(undefined); + this.callArgProps.push(undefined); + + return this; + }, + + yieldsOn: function (context) { + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(context); + this.callArgProps.push(undefined); + + return this; + }, + + yieldsTo: function (prop) { + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 1)); + this.callbackContexts.push(undefined); + this.callArgProps.push(prop); + + return this; + }, + + yieldsToOn: function (prop, context) { + if (typeof context != "object") { + throw new TypeError("argument context is not an object"); + } + + this.callArgAts.push(-1); + this.callbackArguments.push(slice.call(arguments, 2)); + this.callbackContexts.push(context); + this.callArgProps.push(prop); + + return this; + } + }; + + // create asynchronous versions of callsArg* and yields* methods + for (var method in proto) { + // need to avoid creating anotherasync versions of the newly added async methods + if (proto.hasOwnProperty(method) && + method.match(/^(callsArg|yields|thenYields$)/) && + !method.match(/Async/)) { + proto[method + 'Async'] = (function (syncFnName) { + return function () { + this.callbackAsync = true; + return this[syncFnName].apply(this, arguments); + }; + })(method); + } + } + + return proto; + + }())); + + if (commonJSModule) { + module.exports = stub; + } else { + sinon.stub = stub; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + */ +/*jslint eqeqeq: false, onevar: false, nomen: false*/ +/*global module, require, sinon*/ +/** + * Mock functions. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var push = [].push; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function mock(object) { + if (!object) { + return sinon.expectation.create("Anonymous mock"); + } + + return mock.create(object); + } + + sinon.mock = mock; + + sinon.extend(mock, (function () { + function each(collection, callback) { + if (!collection) { + return; + } + + for (var i = 0, l = collection.length; i < l; i += 1) { + callback(collection[i]); + } + } + + return { + create: function create(object) { + if (!object) { + throw new TypeError("object is null"); + } + + var mockObject = sinon.extend({}, mock); + mockObject.object = object; + delete mockObject.create; + + return mockObject; + }, + + expects: function expects(method) { + if (!method) { + throw new TypeError("method is falsy"); + } + + if (!this.expectations) { + this.expectations = {}; + this.proxies = []; + } + + if (!this.expectations[method]) { + this.expectations[method] = []; + var mockObject = this; + + sinon.wrapMethod(this.object, method, function () { + return mockObject.invokeMethod(method, this, arguments); + }); + + push.call(this.proxies, method); + } + + var expectation = sinon.expectation.create(method); + push.call(this.expectations[method], expectation); + + return expectation; + }, + + restore: function restore() { + var object = this.object; + + each(this.proxies, function (proxy) { + if (typeof object[proxy].restore == "function") { + object[proxy].restore(); + } + }); + }, + + verify: function verify() { + var expectations = this.expectations || {}; + var messages = [], met = []; + + each(this.proxies, function (proxy) { + each(expectations[proxy], function (expectation) { + if (!expectation.met()) { + push.call(messages, expectation.toString()); + } else { + push.call(met, expectation.toString()); + } + }); + }); + + this.restore(); + + if (messages.length > 0) { + sinon.expectation.fail(messages.concat(met).join("\n")); + } else { + sinon.expectation.pass(messages.concat(met).join("\n")); + } + + return true; + }, + + invokeMethod: function invokeMethod(method, thisValue, args) { + var expectations = this.expectations && this.expectations[method]; + var length = expectations && expectations.length || 0, i; + + for (i = 0; i < length; i += 1) { + if (!expectations[i].met() && + expectations[i].allowsCall(thisValue, args)) { + return expectations[i].apply(thisValue, args); + } + } + + var messages = [], available, exhausted = 0; + + for (i = 0; i < length; i += 1) { + if (expectations[i].allowsCall(thisValue, args)) { + available = available || expectations[i]; + } else { + exhausted += 1; + } + push.call(messages, " " + expectations[i].toString()); + } + + if (exhausted === 0) { + return available.apply(thisValue, args); + } + + messages.unshift("Unexpected call: " + sinon.spyCall.toString.call({ + proxy: method, + args: args + })); + + sinon.expectation.fail(messages.join("\n")); + } + }; + }())); + + var times = sinon.timesInWords; + + sinon.expectation = (function () { + var slice = Array.prototype.slice; + var _invoke = sinon.spy.invoke; + + function callCountInWords(callCount) { + if (callCount == 0) { + return "never called"; + } else { + return "called " + times(callCount); + } + } + + function expectedCallCountInWords(expectation) { + var min = expectation.minCalls; + var max = expectation.maxCalls; + + if (typeof min == "number" && typeof max == "number") { + var str = times(min); + + if (min != max) { + str = "at least " + str + " and at most " + times(max); + } + + return str; + } + + if (typeof min == "number") { + return "at least " + times(min); + } + + return "at most " + times(max); + } + + function receivedMinCalls(expectation) { + var hasMinLimit = typeof expectation.minCalls == "number"; + return !hasMinLimit || expectation.callCount >= expectation.minCalls; + } + + function receivedMaxCalls(expectation) { + if (typeof expectation.maxCalls != "number") { + return false; + } + + return expectation.callCount == expectation.maxCalls; + } + + return { + minCalls: 1, + maxCalls: 1, + + create: function create(methodName) { + var expectation = sinon.extend(sinon.stub.create(), sinon.expectation); + delete expectation.create; + expectation.method = methodName; + + return expectation; + }, + + invoke: function invoke(func, thisValue, args) { + this.verifyCallAllowed(thisValue, args); + + return _invoke.apply(this, arguments); + }, + + atLeast: function atLeast(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not number"); + } + + if (!this.limitsSet) { + this.maxCalls = null; + this.limitsSet = true; + } + + this.minCalls = num; + + return this; + }, + + atMost: function atMost(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not number"); + } + + if (!this.limitsSet) { + this.minCalls = null; + this.limitsSet = true; + } + + this.maxCalls = num; + + return this; + }, + + never: function never() { + return this.exactly(0); + }, + + once: function once() { + return this.exactly(1); + }, + + twice: function twice() { + return this.exactly(2); + }, + + thrice: function thrice() { + return this.exactly(3); + }, + + exactly: function exactly(num) { + if (typeof num != "number") { + throw new TypeError("'" + num + "' is not a number"); + } + + this.atLeast(num); + return this.atMost(num); + }, + + met: function met() { + return !this.failed && receivedMinCalls(this); + }, + + verifyCallAllowed: function verifyCallAllowed(thisValue, args) { + if (receivedMaxCalls(this)) { + this.failed = true; + sinon.expectation.fail(this.method + " already called " + times(this.maxCalls)); + } + + if ("expectedThis" in this && this.expectedThis !== thisValue) { + sinon.expectation.fail(this.method + " called with " + thisValue + " as thisValue, expected " + + this.expectedThis); + } + + if (!("expectedArguments" in this)) { + return; + } + + if (!args) { + sinon.expectation.fail(this.method + " received no arguments, expected " + + sinon.format(this.expectedArguments)); + } + + if (args.length < this.expectedArguments.length) { + sinon.expectation.fail(this.method + " received too few arguments (" + sinon.format(args) + + "), expected " + sinon.format(this.expectedArguments)); + } + + if (this.expectsExactArgCount && + args.length != this.expectedArguments.length) { + sinon.expectation.fail(this.method + " received too many arguments (" + sinon.format(args) + + "), expected " + sinon.format(this.expectedArguments)); + } + + for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) { + if (!sinon.deepEqual(this.expectedArguments[i], args[i])) { + sinon.expectation.fail(this.method + " received wrong arguments " + sinon.format(args) + + ", expected " + sinon.format(this.expectedArguments)); + } + } + }, + + allowsCall: function allowsCall(thisValue, args) { + if (this.met() && receivedMaxCalls(this)) { + return false; + } + + if ("expectedThis" in this && this.expectedThis !== thisValue) { + return false; + } + + if (!("expectedArguments" in this)) { + return true; + } + + args = args || []; + + if (args.length < this.expectedArguments.length) { + return false; + } + + if (this.expectsExactArgCount && + args.length != this.expectedArguments.length) { + return false; + } + + for (var i = 0, l = this.expectedArguments.length; i < l; i += 1) { + if (!sinon.deepEqual(this.expectedArguments[i], args[i])) { + return false; + } + } + + return true; + }, + + withArgs: function withArgs() { + this.expectedArguments = slice.call(arguments); + return this; + }, + + withExactArgs: function withExactArgs() { + this.withArgs.apply(this, arguments); + this.expectsExactArgCount = true; + return this; + }, + + on: function on(thisValue) { + this.expectedThis = thisValue; + return this; + }, + + toString: function () { + var args = (this.expectedArguments || []).slice(); + + if (!this.expectsExactArgCount) { + push.call(args, "[...]"); + } + + var callStr = sinon.spyCall.toString.call({ + proxy: this.method || "anonymous mock expectation", + args: args + }); + + var message = callStr.replace(", [...", "[, ...") + " " + + expectedCallCountInWords(this); + + if (this.met()) { + return "Expectation met: " + message; + } + + return "Expected " + message + " (" + + callCountInWords(this.callCount) + ")"; + }, + + verify: function verify() { + if (!this.met()) { + sinon.expectation.fail(this.toString()); + } else { + sinon.expectation.pass(this.toString()); + } + + return true; + }, + + pass: function(message) { + sinon.assert.pass(message); + }, + fail: function (message) { + var exception = new Error(message); + exception.name = "ExpectationError"; + + throw exception; + } + }; + }()); + + if (commonJSModule) { + module.exports = mock; + } else { + sinon.mock = mock; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + * @depend mock.js + */ +/*jslint eqeqeq: false, onevar: false, forin: true*/ +/*global module, require, sinon*/ +/** + * Collections of stubs, spies and mocks. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var push = [].push; + var hasOwnProperty = Object.prototype.hasOwnProperty; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function getFakes(fakeCollection) { + if (!fakeCollection.fakes) { + fakeCollection.fakes = []; + } + + return fakeCollection.fakes; + } + + function each(fakeCollection, method) { + var fakes = getFakes(fakeCollection); + + for (var i = 0, l = fakes.length; i < l; i += 1) { + if (typeof fakes[i][method] == "function") { + fakes[i][method](); + } + } + } + + function compact(fakeCollection) { + var fakes = getFakes(fakeCollection); + var i = 0; + while (i < fakes.length) { + fakes.splice(i, 1); + } + } + + var collection = { + verify: function resolve() { + each(this, "verify"); + }, + + restore: function restore() { + each(this, "restore"); + compact(this); + }, + + verifyAndRestore: function verifyAndRestore() { + var exception; + + try { + this.verify(); + } catch (e) { + exception = e; + } + + this.restore(); + + if (exception) { + throw exception; + } + }, + + add: function add(fake) { + push.call(getFakes(this), fake); + return fake; + }, + + spy: function spy() { + return this.add(sinon.spy.apply(sinon, arguments)); + }, + + stub: function stub(object, property, value) { + if (property) { + var original = object[property]; + + if (typeof original != "function") { + if (!hasOwnProperty.call(object, property)) { + throw new TypeError("Cannot stub non-existent own property " + property); + } + + object[property] = value; + + return this.add({ + restore: function () { + object[property] = original; + } + }); + } + } + if (!property && !!object && typeof object == "object") { + var stubbedObj = sinon.stub.apply(sinon, arguments); + + for (var prop in stubbedObj) { + if (typeof stubbedObj[prop] === "function") { + this.add(stubbedObj[prop]); + } + } + + return stubbedObj; + } + + return this.add(sinon.stub.apply(sinon, arguments)); + }, + + mock: function mock() { + return this.add(sinon.mock.apply(sinon, arguments)); + }, + + inject: function inject(obj) { + var col = this; + + obj.spy = function () { + return col.spy.apply(col, arguments); + }; + + obj.stub = function () { + return col.stub.apply(col, arguments); + }; + + obj.mock = function () { + return col.mock.apply(col, arguments); + }; + + return obj; + } + }; + + if (commonJSModule) { + module.exports = collection; + } else { + sinon.collection = collection; + } +}(typeof sinon == "object" && sinon || null)); + +/*jslint eqeqeq: false, plusplus: false, evil: true, onevar: false, browser: true, forin: false*/ +/*global module, require, window*/ +/** + * Fake timer API + * setTimeout + * setInterval + * clearTimeout + * clearInterval + * tick + * reset + * Date + * + * Inspired by jsUnitMockTimeOut from JsUnit + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + var sinon = {}; +} + +(function (global) { + var id = 1; + + function addTimer(args, recurring) { + if (args.length === 0) { + throw new Error("Function requires at least 1 parameter"); + } + + var toId = id++; + var delay = args[1] || 0; + + if (!this.timeouts) { + this.timeouts = {}; + } + + this.timeouts[toId] = { + id: toId, + func: args[0], + callAt: this.now + delay, + invokeArgs: Array.prototype.slice.call(args, 2) + }; + + if (recurring === true) { + this.timeouts[toId].interval = delay; + } + + return toId; + } + + function parseTime(str) { + if (!str) { + return 0; + } + + var strings = str.split(":"); + var l = strings.length, i = l; + var ms = 0, parsed; + + if (l > 3 || !/^(\d\d:){0,2}\d\d?$/.test(str)) { + throw new Error("tick only understands numbers and 'h:m:s'"); + } + + while (i--) { + parsed = parseInt(strings[i], 10); + + if (parsed >= 60) { + throw new Error("Invalid time " + str); + } + + ms += parsed * Math.pow(60, (l - i - 1)); + } + + return ms * 1000; + } + + function createObject(object) { + var newObject; + + if (Object.create) { + newObject = Object.create(object); + } else { + var F = function () {}; + F.prototype = object; + newObject = new F(); + } + + newObject.Date.clock = newObject; + return newObject; + } + + sinon.clock = { + now: 0, + + create: function create(now) { + var clock = createObject(this); + + if (typeof now == "number") { + clock.now = now; + } + + if (!!now && typeof now == "object") { + throw new TypeError("now should be milliseconds since UNIX epoch"); + } + + return clock; + }, + + setTimeout: function setTimeout(callback, timeout) { + return addTimer.call(this, arguments, false); + }, + + clearTimeout: function clearTimeout(timerId) { + if (!this.timeouts) { + this.timeouts = []; + } + + if (timerId in this.timeouts) { + delete this.timeouts[timerId]; + } + }, + + setInterval: function setInterval(callback, timeout) { + return addTimer.call(this, arguments, true); + }, + + clearInterval: function clearInterval(timerId) { + this.clearTimeout(timerId); + }, + + tick: function tick(ms) { + ms = typeof ms == "number" ? ms : parseTime(ms); + var tickFrom = this.now, tickTo = this.now + ms, previous = this.now; + var timer = this.firstTimerInRange(tickFrom, tickTo); + + var firstException; + while (timer && tickFrom <= tickTo) { + if (this.timeouts[timer.id]) { + tickFrom = this.now = timer.callAt; + try { + this.callTimer(timer); + } catch (e) { + firstException = firstException || e; + } + } + + timer = this.firstTimerInRange(previous, tickTo); + previous = tickFrom; + } + + this.now = tickTo; + + if (firstException) { + throw firstException; + } + + return this.now; + }, + + firstTimerInRange: function (from, to) { + var timer, smallest, originalTimer; + + for (var id in this.timeouts) { + if (this.timeouts.hasOwnProperty(id)) { + if (this.timeouts[id].callAt < from || this.timeouts[id].callAt > to) { + continue; + } + + if (!smallest || this.timeouts[id].callAt < smallest) { + originalTimer = this.timeouts[id]; + smallest = this.timeouts[id].callAt; + + timer = { + func: this.timeouts[id].func, + callAt: this.timeouts[id].callAt, + interval: this.timeouts[id].interval, + id: this.timeouts[id].id, + invokeArgs: this.timeouts[id].invokeArgs + }; + } + } + } + + return timer || null; + }, + + callTimer: function (timer) { + if (typeof timer.interval == "number") { + this.timeouts[timer.id].callAt += timer.interval; + } else { + delete this.timeouts[timer.id]; + } + + try { + if (typeof timer.func == "function") { + timer.func.apply(null, timer.invokeArgs); + } else { + eval(timer.func); + } + } catch (e) { + var exception = e; + } + + if (!this.timeouts[timer.id]) { + if (exception) { + throw exception; + } + return; + } + + if (exception) { + throw exception; + } + }, + + reset: function reset() { + this.timeouts = {}; + }, + + Date: (function () { + var NativeDate = Date; + + function ClockDate(year, month, date, hour, minute, second, ms) { + // Defensive and verbose to avoid potential harm in passing + // explicit undefined when user does not pass argument + switch (arguments.length) { + case 0: + return new NativeDate(ClockDate.clock.now); + case 1: + return new NativeDate(year); + case 2: + return new NativeDate(year, month); + case 3: + return new NativeDate(year, month, date); + case 4: + return new NativeDate(year, month, date, hour); + case 5: + return new NativeDate(year, month, date, hour, minute); + case 6: + return new NativeDate(year, month, date, hour, minute, second); + default: + return new NativeDate(year, month, date, hour, minute, second, ms); + } + } + + return mirrorDateProperties(ClockDate, NativeDate); + }()) + }; + + function mirrorDateProperties(target, source) { + if (source.now) { + target.now = function now() { + return target.clock.now; + }; + } else { + delete target.now; + } + + if (source.toSource) { + target.toSource = function toSource() { + return source.toSource(); + }; + } else { + delete target.toSource; + } + + target.toString = function toString() { + return source.toString(); + }; + + target.prototype = source.prototype; + target.parse = source.parse; + target.UTC = source.UTC; + target.prototype.toUTCString = source.prototype.toUTCString; + return target; + } + + var methods = ["Date", "setTimeout", "setInterval", + "clearTimeout", "clearInterval"]; + + function restore() { + var method; + + for (var i = 0, l = this.methods.length; i < l; i++) { + method = this.methods[i]; + if (global[method].hadOwnProperty) { + global[method] = this["_" + method]; + } else { + delete global[method]; + } + } + + // Prevent multiple executions which will completely remove these props + this.methods = []; + } + + function stubGlobal(method, clock) { + clock[method].hadOwnProperty = Object.prototype.hasOwnProperty.call(global, method); + clock["_" + method] = global[method]; + + if (method == "Date") { + var date = mirrorDateProperties(clock[method], global[method]); + global[method] = date; + } else { + global[method] = function () { + return clock[method].apply(clock, arguments); + }; + + for (var prop in clock[method]) { + if (clock[method].hasOwnProperty(prop)) { + global[method][prop] = clock[method][prop]; + } + } + } + + global[method].clock = clock; + } + + sinon.useFakeTimers = function useFakeTimers(now) { + var clock = sinon.clock.create(now); + clock.restore = restore; + clock.methods = Array.prototype.slice.call(arguments, + typeof now == "number" ? 1 : 0); + + if (clock.methods.length === 0) { + clock.methods = methods; + } + + for (var i = 0, l = clock.methods.length; i < l; i++) { + stubGlobal(clock.methods[i], clock); + } + + return clock; + }; +}(typeof global != "undefined" && typeof global !== "function" ? global : this)); + +sinon.timers = { + setTimeout: setTimeout, + clearTimeout: clearTimeout, + setInterval: setInterval, + clearInterval: clearInterval, + Date: Date +}; + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/*jslint eqeqeq: false, onevar: false*/ +/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/ +/** + * Minimal Event interface implementation + * + * Original implementation by Sven Fuchs: https://gist.github.com/995028 + * Modifications and tests by Christian Johansen. + * + * @author Sven Fuchs (svenfuchs@artweb-design.de) + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2011 Sven Fuchs, Christian Johansen + */ + +if (typeof sinon == "undefined") { + this.sinon = {}; +} + +(function () { + var push = [].push; + + sinon.Event = function Event(type, bubbles, cancelable) { + this.initEvent(type, bubbles, cancelable); + }; + + sinon.Event.prototype = { + initEvent: function(type, bubbles, cancelable) { + this.type = type; + this.bubbles = bubbles; + this.cancelable = cancelable; + }, + + stopPropagation: function () {}, + + preventDefault: function () { + this.defaultPrevented = true; + } + }; + + sinon.EventTarget = { + addEventListener: function addEventListener(event, listener, useCapture) { + this.eventListeners = this.eventListeners || {}; + this.eventListeners[event] = this.eventListeners[event] || []; + push.call(this.eventListeners[event], listener); + }, + + removeEventListener: function removeEventListener(event, listener, useCapture) { + var listeners = this.eventListeners && this.eventListeners[event] || []; + + for (var i = 0, l = listeners.length; i < l; ++i) { + if (listeners[i] == listener) { + return listeners.splice(i, 1); + } + } + }, + + dispatchEvent: function dispatchEvent(event) { + var type = event.type; + var listeners = this.eventListeners && this.eventListeners[type] || []; + + for (var i = 0; i < listeners.length; i++) { + if (typeof listeners[i] == "function") { + listeners[i].call(this, event); + } else { + listeners[i].handleEvent(event); + } + } + + return !!event.defaultPrevented; + } + }; +}()); + +/** + * @depend ../../sinon.js + * @depend event.js + */ +/*jslint eqeqeq: false, onevar: false*/ +/*global sinon, module, require, ActiveXObject, XMLHttpRequest, DOMParser*/ +/** + * Fake XMLHttpRequest object + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + this.sinon = {}; +} +sinon.xhr = { XMLHttpRequest: this.XMLHttpRequest }; + +// wrapper for global +(function(global) { + var xhr = sinon.xhr; + xhr.GlobalXMLHttpRequest = global.XMLHttpRequest; + xhr.GlobalActiveXObject = global.ActiveXObject; + xhr.supportsActiveX = typeof xhr.GlobalActiveXObject != "undefined"; + xhr.supportsXHR = typeof xhr.GlobalXMLHttpRequest != "undefined"; + xhr.workingXHR = xhr.supportsXHR ? xhr.GlobalXMLHttpRequest : xhr.supportsActiveX + ? function() { return new xhr.GlobalActiveXObject("MSXML2.XMLHTTP.3.0") } : false; + + /*jsl:ignore*/ + var unsafeHeaders = { + "Accept-Charset": true, + "Accept-Encoding": true, + "Connection": true, + "Content-Length": true, + "Cookie": true, + "Cookie2": true, + "Content-Transfer-Encoding": true, + "Date": true, + "Expect": true, + "Host": true, + "Keep-Alive": true, + "Referer": true, + "TE": true, + "Trailer": true, + "Transfer-Encoding": true, + "Upgrade": true, + "User-Agent": true, + "Via": true + }; + /*jsl:end*/ + + function FakeXMLHttpRequest() { + this.readyState = FakeXMLHttpRequest.UNSENT; + this.requestHeaders = {}; + this.requestBody = null; + this.status = 0; + this.statusText = ""; + + if (typeof FakeXMLHttpRequest.onCreate == "function") { + FakeXMLHttpRequest.onCreate(this); + } + } + + function verifyState(xhr) { + if (xhr.readyState !== FakeXMLHttpRequest.OPENED) { + throw new Error("INVALID_STATE_ERR"); + } + + if (xhr.sendFlag) { + throw new Error("INVALID_STATE_ERR"); + } + } + + // filtering to enable a white-list version of Sinon FakeXhr, + // where whitelisted requests are passed through to real XHR + function each(collection, callback) { + if (!collection) return; + for (var i = 0, l = collection.length; i < l; i += 1) { + callback(collection[i]); + } + } + function some(collection, callback) { + for (var index = 0; index < collection.length; index++) { + if(callback(collection[index]) === true) return true; + }; + return false; + } + // largest arity in XHR is 5 - XHR#open + var apply = function(obj,method,args) { + switch(args.length) { + case 0: return obj[method](); + case 1: return obj[method](args[0]); + case 2: return obj[method](args[0],args[1]); + case 3: return obj[method](args[0],args[1],args[2]); + case 4: return obj[method](args[0],args[1],args[2],args[3]); + case 5: return obj[method](args[0],args[1],args[2],args[3],args[4]); + }; + }; + + FakeXMLHttpRequest.filters = []; + FakeXMLHttpRequest.addFilter = function(fn) { + this.filters.push(fn) + }; + var IE6Re = /MSIE 6/; + FakeXMLHttpRequest.defake = function(fakeXhr,xhrArgs) { + var xhr = new sinon.xhr.workingXHR(); + each(["open","setRequestHeader","send","abort","getResponseHeader", + "getAllResponseHeaders","addEventListener","overrideMimeType","removeEventListener"], + function(method) { + fakeXhr[method] = function() { + return apply(xhr,method,arguments); + }; + }); + + var copyAttrs = function(args) { + each(args, function(attr) { + try { + fakeXhr[attr] = xhr[attr] + } catch(e) { + if(!IE6Re.test(navigator.userAgent)) throw e; + } + }); + }; + + var stateChange = function() { + fakeXhr.readyState = xhr.readyState; + if(xhr.readyState >= FakeXMLHttpRequest.HEADERS_RECEIVED) { + copyAttrs(["status","statusText"]); + } + if(xhr.readyState >= FakeXMLHttpRequest.LOADING) { + copyAttrs(["responseText"]); + } + if(xhr.readyState === FakeXMLHttpRequest.DONE) { + copyAttrs(["responseXML"]); + } + if(fakeXhr.onreadystatechange) fakeXhr.onreadystatechange.call(fakeXhr); + }; + if(xhr.addEventListener) { + for(var event in fakeXhr.eventListeners) { + if(fakeXhr.eventListeners.hasOwnProperty(event)) { + each(fakeXhr.eventListeners[event],function(handler) { + xhr.addEventListener(event, handler); + }); + } + } + xhr.addEventListener("readystatechange",stateChange); + } else { + xhr.onreadystatechange = stateChange; + } + apply(xhr,"open",xhrArgs); + }; + FakeXMLHttpRequest.useFilters = false; + + function verifyRequestSent(xhr) { + if (xhr.readyState == FakeXMLHttpRequest.DONE) { + throw new Error("Request done"); + } + } + + function verifyHeadersReceived(xhr) { + if (xhr.async && xhr.readyState != FakeXMLHttpRequest.HEADERS_RECEIVED) { + throw new Error("No headers received"); + } + } + + function verifyResponseBodyType(body) { + if (typeof body != "string") { + var error = new Error("Attempted to respond to fake XMLHttpRequest with " + + body + ", which is not a string."); + error.name = "InvalidBodyException"; + throw error; + } + } + + sinon.extend(FakeXMLHttpRequest.prototype, sinon.EventTarget, { + async: true, + + open: function open(method, url, async, username, password) { + this.method = method; + this.url = url; + this.async = typeof async == "boolean" ? async : true; + this.username = username; + this.password = password; + this.responseText = null; + this.responseXML = null; + this.requestHeaders = {}; + this.sendFlag = false; + if(sinon.FakeXMLHttpRequest.useFilters === true) { + var xhrArgs = arguments; + var defake = some(FakeXMLHttpRequest.filters,function(filter) { + return filter.apply(this,xhrArgs) + }); + if (defake) { + return sinon.FakeXMLHttpRequest.defake(this,arguments); + } + } + this.readyStateChange(FakeXMLHttpRequest.OPENED); + }, + + readyStateChange: function readyStateChange(state) { + this.readyState = state; + + if (typeof this.onreadystatechange == "function") { + try { + this.onreadystatechange(); + } catch (e) { + sinon.logError("Fake XHR onreadystatechange handler", e); + } + } + + this.dispatchEvent(new sinon.Event("readystatechange")); + }, + + setRequestHeader: function setRequestHeader(header, value) { + verifyState(this); + + if (unsafeHeaders[header] || /^(Sec-|Proxy-)/.test(header)) { + throw new Error("Refused to set unsafe header \"" + header + "\""); + } + + if (this.requestHeaders[header]) { + this.requestHeaders[header] += "," + value; + } else { + this.requestHeaders[header] = value; + } + }, + + // Helps testing + setResponseHeaders: function setResponseHeaders(headers) { + this.responseHeaders = {}; + + for (var header in headers) { + if (headers.hasOwnProperty(header)) { + this.responseHeaders[header] = headers[header]; + } + } + + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.HEADERS_RECEIVED); + } else { + this.readyState = FakeXMLHttpRequest.HEADERS_RECEIVED; + } + }, + + // Currently treats ALL data as a DOMString (i.e. no Document) + send: function send(data) { + verifyState(this); + + if (!/^(get|head)$/i.test(this.method)) { + if (this.requestHeaders["Content-Type"]) { + var value = this.requestHeaders["Content-Type"].split(";"); + this.requestHeaders["Content-Type"] = value[0] + ";charset=utf-8"; + } else { + this.requestHeaders["Content-Type"] = "text/plain;charset=utf-8"; + } + + this.requestBody = data; + } + + this.errorFlag = false; + this.sendFlag = this.async; + this.readyStateChange(FakeXMLHttpRequest.OPENED); + + if (typeof this.onSend == "function") { + this.onSend(this); + } + }, + + abort: function abort() { + this.aborted = true; + this.responseText = null; + this.errorFlag = true; + this.requestHeaders = {}; + + if (this.readyState > sinon.FakeXMLHttpRequest.UNSENT && this.sendFlag) { + this.readyStateChange(sinon.FakeXMLHttpRequest.DONE); + this.sendFlag = false; + } + + this.readyState = sinon.FakeXMLHttpRequest.UNSENT; + }, + + getResponseHeader: function getResponseHeader(header) { + if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) { + return null; + } + + if (/^Set-Cookie2?$/i.test(header)) { + return null; + } + + header = header.toLowerCase(); + + for (var h in this.responseHeaders) { + if (h.toLowerCase() == header) { + return this.responseHeaders[h]; + } + } + + return null; + }, + + getAllResponseHeaders: function getAllResponseHeaders() { + if (this.readyState < FakeXMLHttpRequest.HEADERS_RECEIVED) { + return ""; + } + + var headers = ""; + + for (var header in this.responseHeaders) { + if (this.responseHeaders.hasOwnProperty(header) && + !/^Set-Cookie2?$/i.test(header)) { + headers += header + ": " + this.responseHeaders[header] + "\r\n"; + } + } + + return headers; + }, + + setResponseBody: function setResponseBody(body) { + verifyRequestSent(this); + verifyHeadersReceived(this); + verifyResponseBodyType(body); + + var chunkSize = this.chunkSize || 10; + var index = 0; + this.responseText = ""; + + do { + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.LOADING); + } + + this.responseText += body.substring(index, index + chunkSize); + index += chunkSize; + } while (index < body.length); + + var type = this.getResponseHeader("Content-Type"); + + if (this.responseText && + (!type || /(text\/xml)|(application\/xml)|(\+xml)/.test(type))) { + try { + this.responseXML = FakeXMLHttpRequest.parseXML(this.responseText); + } catch (e) { + // Unable to parse XML - no biggie + } + } + + if (this.async) { + this.readyStateChange(FakeXMLHttpRequest.DONE); + } else { + this.readyState = FakeXMLHttpRequest.DONE; + } + }, + + respond: function respond(status, headers, body) { + this.setResponseHeaders(headers || {}); + this.status = typeof status == "number" ? status : 200; + this.statusText = FakeXMLHttpRequest.statusCodes[this.status]; + this.setResponseBody(body || ""); + } + }); + + sinon.extend(FakeXMLHttpRequest, { + UNSENT: 0, + OPENED: 1, + HEADERS_RECEIVED: 2, + LOADING: 3, + DONE: 4 + }); + + // Borrowed from JSpec + FakeXMLHttpRequest.parseXML = function parseXML(text) { + var xmlDoc; + + if (typeof DOMParser != "undefined") { + var parser = new DOMParser(); + xmlDoc = parser.parseFromString(text, "text/xml"); + } else { + xmlDoc = new ActiveXObject("Microsoft.XMLDOM"); + xmlDoc.async = "false"; + xmlDoc.loadXML(text); + } + + return xmlDoc; + }; + + FakeXMLHttpRequest.statusCodes = { + 100: "Continue", + 101: "Switching Protocols", + 200: "OK", + 201: "Created", + 202: "Accepted", + 203: "Non-Authoritative Information", + 204: "No Content", + 205: "Reset Content", + 206: "Partial Content", + 300: "Multiple Choice", + 301: "Moved Permanently", + 302: "Found", + 303: "See Other", + 304: "Not Modified", + 305: "Use Proxy", + 307: "Temporary Redirect", + 400: "Bad Request", + 401: "Unauthorized", + 402: "Payment Required", + 403: "Forbidden", + 404: "Not Found", + 405: "Method Not Allowed", + 406: "Not Acceptable", + 407: "Proxy Authentication Required", + 408: "Request Timeout", + 409: "Conflict", + 410: "Gone", + 411: "Length Required", + 412: "Precondition Failed", + 413: "Request Entity Too Large", + 414: "Request-URI Too Long", + 415: "Unsupported Media Type", + 416: "Requested Range Not Satisfiable", + 417: "Expectation Failed", + 422: "Unprocessable Entity", + 500: "Internal Server Error", + 501: "Not Implemented", + 502: "Bad Gateway", + 503: "Service Unavailable", + 504: "Gateway Timeout", + 505: "HTTP Version Not Supported" + }; + + sinon.useFakeXMLHttpRequest = function () { + sinon.FakeXMLHttpRequest.restore = function restore(keepOnCreate) { + if (xhr.supportsXHR) { + global.XMLHttpRequest = xhr.GlobalXMLHttpRequest; + } + + if (xhr.supportsActiveX) { + global.ActiveXObject = xhr.GlobalActiveXObject; + } + + delete sinon.FakeXMLHttpRequest.restore; + + if (keepOnCreate !== true) { + delete sinon.FakeXMLHttpRequest.onCreate; + } + }; + if (xhr.supportsXHR) { + global.XMLHttpRequest = sinon.FakeXMLHttpRequest; + } + + if (xhr.supportsActiveX) { + global.ActiveXObject = function ActiveXObject(objId) { + if (objId == "Microsoft.XMLHTTP" || /^Msxml2\.XMLHTTP/i.test(objId)) { + + return new sinon.FakeXMLHttpRequest(); + } + + return new xhr.GlobalActiveXObject(objId); + }; + } + + return sinon.FakeXMLHttpRequest; + }; + + sinon.FakeXMLHttpRequest = FakeXMLHttpRequest; +})(this); + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/** + * @depend fake_xml_http_request.js + */ +/*jslint eqeqeq: false, onevar: false, regexp: false, plusplus: false*/ +/*global module, require, window*/ +/** + * The Sinon "server" mimics a web server that receives requests from + * sinon.FakeXMLHttpRequest and provides an API to respond to those requests, + * both synchronously and asynchronously. To respond synchronuously, canned + * answers have to be provided upfront. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof sinon == "undefined") { + var sinon = {}; +} + +sinon.fakeServer = (function () { + var push = [].push; + function F() {} + + function create(proto) { + F.prototype = proto; + return new F(); + } + + function responseArray(handler) { + var response = handler; + + if (Object.prototype.toString.call(handler) != "[object Array]") { + response = [200, {}, handler]; + } + + if (typeof response[2] != "string") { + throw new TypeError("Fake server response body should be string, but was " + + typeof response[2]); + } + + return response; + } + + var wloc = typeof window !== "undefined" ? window.location : {}; + var rCurrLoc = new RegExp("^" + wloc.protocol + "//" + wloc.host); + + function matchOne(response, reqMethod, reqUrl) { + var rmeth = response.method; + var matchMethod = !rmeth || rmeth.toLowerCase() == reqMethod.toLowerCase(); + var url = response.url; + var matchUrl = !url || url == reqUrl || (typeof url.test == "function" && url.test(reqUrl)); + + return matchMethod && matchUrl; + } + + function match(response, request) { + var requestMethod = this.getHTTPMethod(request); + var requestUrl = request.url; + + if (!/^https?:\/\//.test(requestUrl) || rCurrLoc.test(requestUrl)) { + requestUrl = requestUrl.replace(rCurrLoc, ""); + } + + if (matchOne(response, this.getHTTPMethod(request), requestUrl)) { + if (typeof response.response == "function") { + var ru = response.url; + var args = [request].concat(!ru ? [] : requestUrl.match(ru).slice(1)); + return response.response.apply(response, args); + } + + return true; + } + + return false; + } + + function log(response, request) { + var str; + + str = "Request:\n" + sinon.format(request) + "\n\n"; + str += "Response:\n" + sinon.format(response) + "\n\n"; + + sinon.log(str); + } + + return { + create: function () { + var server = create(this); + this.xhr = sinon.useFakeXMLHttpRequest(); + server.requests = []; + + this.xhr.onCreate = function (xhrObj) { + server.addRequest(xhrObj); + }; + + return server; + }, + + addRequest: function addRequest(xhrObj) { + var server = this; + push.call(this.requests, xhrObj); + + xhrObj.onSend = function () { + server.handleRequest(this); + }; + + if (this.autoRespond && !this.responding) { + setTimeout(function () { + server.responding = false; + server.respond(); + }, this.autoRespondAfter || 10); + + this.responding = true; + } + }, + + getHTTPMethod: function getHTTPMethod(request) { + if (this.fakeHTTPMethods && /post/i.test(request.method)) { + var matches = (request.requestBody || "").match(/_method=([^\b;]+)/); + return !!matches ? matches[1] : request.method; + } + + return request.method; + }, + + handleRequest: function handleRequest(xhr) { + if (xhr.async) { + if (!this.queue) { + this.queue = []; + } + + push.call(this.queue, xhr); + } else { + this.processRequest(xhr); + } + }, + + respondWith: function respondWith(method, url, body) { + if (arguments.length == 1 && typeof method != "function") { + this.response = responseArray(method); + return; + } + + if (!this.responses) { this.responses = []; } + + if (arguments.length == 1) { + body = method; + url = method = null; + } + + if (arguments.length == 2) { + body = url; + url = method; + method = null; + } + + push.call(this.responses, { + method: method, + url: url, + response: typeof body == "function" ? body : responseArray(body) + }); + }, + + respond: function respond() { + if (arguments.length > 0) this.respondWith.apply(this, arguments); + var queue = this.queue || []; + var request; + + while(request = queue.shift()) { + this.processRequest(request); + } + }, + + processRequest: function processRequest(request) { + try { + if (request.aborted) { + return; + } + + var response = this.response || [404, {}, ""]; + + if (this.responses) { + for (var i = 0, l = this.responses.length; i < l; i++) { + if (match.call(this, this.responses[i], request)) { + response = this.responses[i].response; + break; + } + } + } + + if (request.readyState != 4) { + log(response, request); + + request.respond(response[0], response[1], response[2]); + } + } catch (e) { + sinon.logError("Fake server request processing", e); + } + }, + + restore: function restore() { + return this.xhr.restore && this.xhr.restore.apply(this.xhr, arguments); + } + }; +}()); + +if (typeof module == "object" && typeof require == "function") { + module.exports = sinon; +} + +/** + * @depend fake_server.js + * @depend fake_timers.js + */ +/*jslint browser: true, eqeqeq: false, onevar: false*/ +/*global sinon*/ +/** + * Add-on for sinon.fakeServer that automatically handles a fake timer along with + * the FakeXMLHttpRequest. The direct inspiration for this add-on is jQuery + * 1.3.x, which does not use xhr object's onreadystatehandler at all - instead, + * it polls the object for completion with setInterval. Dispite the direct + * motivation, there is nothing jQuery-specific in this file, so it can be used + * in any environment where the ajax implementation depends on setInterval or + * setTimeout. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function () { + function Server() {} + Server.prototype = sinon.fakeServer; + + sinon.fakeServerWithClock = new Server(); + + sinon.fakeServerWithClock.addRequest = function addRequest(xhr) { + if (xhr.async) { + if (typeof setTimeout.clock == "object") { + this.clock = setTimeout.clock; + } else { + this.clock = sinon.useFakeTimers(); + this.resetClock = true; + } + + if (!this.longestTimeout) { + var clockSetTimeout = this.clock.setTimeout; + var clockSetInterval = this.clock.setInterval; + var server = this; + + this.clock.setTimeout = function (fn, timeout) { + server.longestTimeout = Math.max(timeout, server.longestTimeout || 0); + + return clockSetTimeout.apply(this, arguments); + }; + + this.clock.setInterval = function (fn, timeout) { + server.longestTimeout = Math.max(timeout, server.longestTimeout || 0); + + return clockSetInterval.apply(this, arguments); + }; + } + } + + return sinon.fakeServer.addRequest.call(this, xhr); + }; + + sinon.fakeServerWithClock.respond = function respond() { + var returnVal = sinon.fakeServer.respond.apply(this, arguments); + + if (this.clock) { + this.clock.tick(this.longestTimeout || 0); + this.longestTimeout = 0; + + if (this.resetClock) { + this.clock.restore(); + this.resetClock = false; + } + } + + return returnVal; + }; + + sinon.fakeServerWithClock.restore = function restore() { + if (this.clock) { + this.clock.restore(); + } + + return sinon.fakeServer.restore.apply(this, arguments); + }; +}()); + +/** + * @depend ../sinon.js + * @depend collection.js + * @depend util/fake_timers.js + * @depend util/fake_server_with_clock.js + */ +/*jslint eqeqeq: false, onevar: false, plusplus: false*/ +/*global require, module*/ +/** + * Manages fake collections as well as fake utilities such as Sinon's + * timers and fake XHR implementation in one convenient object. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +if (typeof module == "object" && typeof require == "function") { + var sinon = require("../sinon"); + sinon.extend(sinon, require("./util/fake_timers")); +} + +(function () { + var push = [].push; + + function exposeValue(sandbox, config, key, value) { + if (!value) { + return; + } + + if (config.injectInto) { + config.injectInto[key] = value; + } else { + push.call(sandbox.args, value); + } + } + + function prepareSandboxFromConfig(config) { + var sandbox = sinon.create(sinon.sandbox); + + if (config.useFakeServer) { + if (typeof config.useFakeServer == "object") { + sandbox.serverPrototype = config.useFakeServer; + } + + sandbox.useFakeServer(); + } + + if (config.useFakeTimers) { + if (typeof config.useFakeTimers == "object") { + sandbox.useFakeTimers.apply(sandbox, config.useFakeTimers); + } else { + sandbox.useFakeTimers(); + } + } + + return sandbox; + } + + sinon.sandbox = sinon.extend(sinon.create(sinon.collection), { + useFakeTimers: function useFakeTimers() { + this.clock = sinon.useFakeTimers.apply(sinon, arguments); + + return this.add(this.clock); + }, + + serverPrototype: sinon.fakeServer, + + useFakeServer: function useFakeServer() { + var proto = this.serverPrototype || sinon.fakeServer; + + if (!proto || !proto.create) { + return null; + } + + this.server = proto.create(); + return this.add(this.server); + }, + + inject: function (obj) { + sinon.collection.inject.call(this, obj); + + if (this.clock) { + obj.clock = this.clock; + } + + if (this.server) { + obj.server = this.server; + obj.requests = this.server.requests; + } + + return obj; + }, + + create: function (config) { + if (!config) { + return sinon.create(sinon.sandbox); + } + + var sandbox = prepareSandboxFromConfig(config); + sandbox.args = sandbox.args || []; + var prop, value, exposed = sandbox.inject({}); + + if (config.properties) { + for (var i = 0, l = config.properties.length; i < l; i++) { + prop = config.properties[i]; + value = exposed[prop] || prop == "sandbox" && sandbox; + exposeValue(sandbox, config, prop, value); + } + } else { + exposeValue(sandbox, config, "sandbox", value); + } + + return sandbox; + } + }); + + sinon.sandbox.useFakeXMLHttpRequest = sinon.sandbox.useFakeServer; + + if (typeof module == "object" && typeof require == "function") { + module.exports = sinon.sandbox; + } +}()); + +/** + * @depend ../sinon.js + * @depend stub.js + * @depend mock.js + * @depend sandbox.js + */ +/*jslint eqeqeq: false, onevar: false, forin: true, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Test function, sandboxes fakes + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function test(callback) { + var type = typeof callback; + + if (type != "function") { + throw new TypeError("sinon.test needs to wrap a test function, got " + type); + } + + return function () { + var config = sinon.getConfig(sinon.config); + config.injectInto = config.injectIntoThis && this || config.injectInto; + var sandbox = sinon.sandbox.create(config); + var exception, result; + var args = Array.prototype.slice.call(arguments).concat(sandbox.args); + + try { + result = callback.apply(this, args); + } catch (e) { + exception = e; + } + + if (typeof exception !== "undefined") { + sandbox.restore(); + throw exception; + } + else { + sandbox.verifyAndRestore(); + } + + return result; + }; + } + + test.config = { + injectIntoThis: true, + injectInto: null, + properties: ["spy", "stub", "mock", "clock", "server", "requests"], + useFakeTimers: true, + useFakeServer: true + }; + + if (commonJSModule) { + module.exports = test; + } else { + sinon.test = test; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend test.js + */ +/*jslint eqeqeq: false, onevar: false, eqeqeq: false*/ +/*global module, require, sinon*/ +/** + * Test case, sandboxes all test functions + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon || !Object.prototype.hasOwnProperty) { + return; + } + + function createTest(property, setUp, tearDown) { + return function () { + if (setUp) { + setUp.apply(this, arguments); + } + + var exception, result; + + try { + result = property.apply(this, arguments); + } catch (e) { + exception = e; + } + + if (tearDown) { + tearDown.apply(this, arguments); + } + + if (exception) { + throw exception; + } + + return result; + }; + } + + function testCase(tests, prefix) { + /*jsl:ignore*/ + if (!tests || typeof tests != "object") { + throw new TypeError("sinon.testCase needs an object with test functions"); + } + /*jsl:end*/ + + prefix = prefix || "test"; + var rPrefix = new RegExp("^" + prefix); + var methods = {}, testName, property, method; + var setUp = tests.setUp; + var tearDown = tests.tearDown; + + for (testName in tests) { + if (tests.hasOwnProperty(testName)) { + property = tests[testName]; + + if (/^(setUp|tearDown)$/.test(testName)) { + continue; + } + + if (typeof property == "function" && rPrefix.test(testName)) { + method = property; + + if (setUp || tearDown) { + method = createTest(property, setUp, tearDown); + } + + methods[testName] = sinon.test(method); + } else { + methods[testName] = tests[testName]; + } + } + } + + return methods; + } + + if (commonJSModule) { + module.exports = testCase; + } else { + sinon.testCase = testCase; + } +}(typeof sinon == "object" && sinon || null)); + +/** + * @depend ../sinon.js + * @depend stub.js + */ +/*jslint eqeqeq: false, onevar: false, nomen: false, plusplus: false*/ +/*global module, require, sinon*/ +/** + * Assertions matching the test spy retrieval interface. + * + * @author Christian Johansen (christian@cjohansen.no) + * @license BSD + * + * Copyright (c) 2010-2013 Christian Johansen + */ + +(function (sinon, global) { + var commonJSModule = typeof module == "object" && typeof require == "function"; + var slice = Array.prototype.slice; + var assert; + + if (!sinon && commonJSModule) { + sinon = require("../sinon"); + } + + if (!sinon) { + return; + } + + function verifyIsStub() { + var method; + + for (var i = 0, l = arguments.length; i < l; ++i) { + method = arguments[i]; + + if (!method) { + assert.fail("fake is not a spy"); + } + + if (typeof method != "function") { + assert.fail(method + " is not a function"); + } + + if (typeof method.getCall != "function") { + assert.fail(method + " is not stubbed"); + } + } + } + + function failAssertion(object, msg) { + object = object || global; + var failMethod = object.fail || assert.fail; + failMethod.call(object, msg); + } + + function mirrorPropAsAssertion(name, method, message) { + if (arguments.length == 2) { + message = method; + method = name; + } + + assert[name] = function (fake) { + verifyIsStub(fake); + + var args = slice.call(arguments, 1); + var failed = false; + + if (typeof method == "function") { + failed = !method(fake); + } else { + failed = typeof fake[method] == "function" ? + !fake[method].apply(fake, args) : !fake[method]; + } + + if (failed) { + failAssertion(this, fake.printf.apply(fake, [message].concat(args))); + } else { + assert.pass(name); + } + }; + } + + function exposedName(prefix, prop) { + return !prefix || /^fail/.test(prop) ? prop : + prefix + prop.slice(0, 1).toUpperCase() + prop.slice(1); + }; + + assert = { + failException: "AssertError", + + fail: function fail(message) { + var error = new Error(message); + error.name = this.failException || assert.failException; + + throw error; + }, + + pass: function pass(assertion) {}, + + callOrder: function assertCallOrder() { + verifyIsStub.apply(null, arguments); + var expected = "", actual = ""; + + if (!sinon.calledInOrder(arguments)) { + try { + expected = [].join.call(arguments, ", "); + actual = sinon.orderByFirstCall(slice.call(arguments)).join(", "); + } catch (e) { + // If this fails, we'll just fall back to the blank string + } + + failAssertion(this, "expected " + expected + " to be " + + "called in order but were called as " + actual); + } else { + assert.pass("callOrder"); + } + }, + + callCount: function assertCallCount(method, count) { + verifyIsStub(method); + + if (method.callCount != count) { + var msg = "expected %n to be called " + sinon.timesInWords(count) + + " but was called %c%C"; + failAssertion(this, method.printf(msg)); + } else { + assert.pass("callCount"); + } + }, + + expose: function expose(target, options) { + if (!target) { + throw new TypeError("target is null or undefined"); + } + + var o = options || {}; + var prefix = typeof o.prefix == "undefined" && "assert" || o.prefix; + var includeFail = typeof o.includeFail == "undefined" || !!o.includeFail; + + for (var method in this) { + if (method != "export" && (includeFail || !/^(fail)/.test(method))) { + target[exposedName(prefix, method)] = this[method]; + } + } + + return target; + } + }; + + mirrorPropAsAssertion("called", "expected %n to have been called at least once but was never called"); + mirrorPropAsAssertion("notCalled", function (spy) { return !spy.called; }, + "expected %n to not have been called but was called %c%C"); + mirrorPropAsAssertion("calledOnce", "expected %n to be called once but was called %c%C"); + mirrorPropAsAssertion("calledTwice", "expected %n to be called twice but was called %c%C"); + mirrorPropAsAssertion("calledThrice", "expected %n to be called thrice but was called %c%C"); + mirrorPropAsAssertion("calledOn", "expected %n to be called with %1 as this but was called with %t"); + mirrorPropAsAssertion("alwaysCalledOn", "expected %n to always be called with %1 as this but was called with %t"); + mirrorPropAsAssertion("calledWithNew", "expected %n to be called with new"); + mirrorPropAsAssertion("alwaysCalledWithNew", "expected %n to always be called with new"); + mirrorPropAsAssertion("calledWith", "expected %n to be called with arguments %*%C"); + mirrorPropAsAssertion("calledWithMatch", "expected %n to be called with match %*%C"); + mirrorPropAsAssertion("alwaysCalledWith", "expected %n to always be called with arguments %*%C"); + mirrorPropAsAssertion("alwaysCalledWithMatch", "expected %n to always be called with match %*%C"); + mirrorPropAsAssertion("calledWithExactly", "expected %n to be called with exact arguments %*%C"); + mirrorPropAsAssertion("alwaysCalledWithExactly", "expected %n to always be called with exact arguments %*%C"); + mirrorPropAsAssertion("neverCalledWith", "expected %n to never be called with arguments %*%C"); + mirrorPropAsAssertion("neverCalledWithMatch", "expected %n to never be called with match %*%C"); + mirrorPropAsAssertion("threw", "%n did not throw exception%C"); + mirrorPropAsAssertion("alwaysThrew", "%n did not always throw exception%C"); + + if (commonJSModule) { + module.exports = assert; + } else { + sinon.assert = assert; + } +}(typeof sinon == "object" && sinon || null, typeof window != "undefined" ? window : global)); + +return sinon;}.call(typeof window != 'undefined' && window || {})); diff --git a/lib/Leaflet.markercluster/spec/suites/AddLayer.MultipleSpec.js b/lib/Leaflet.markercluster/spec/suites/AddLayer.MultipleSpec.js new file mode 100644 index 000000000..f2ab53401 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/AddLayer.MultipleSpec.js @@ -0,0 +1,114 @@ +describe('addLayer adding multiple markers', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('creates a cluster when 2 overlapping markers are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + group.addLayer(marker2); + map.addLayer(group); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + }); + it('creates a cluster when 2 overlapping markers are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._icon).to.be(null); //Null as was added and then removed + expect(marker2._icon).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + }); + it('creates a cluster with an animation when 2 overlapping markers are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup({ animateAddingMarkers: true }); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + expect(marker2._icon.parentNode).to.be(map._panes.markerPane); + + expect(map._panes.markerPane.childNodes.length).to.be(3); + + //Run the the animation + clock.tick(1000); + + //Then markers should be removed from map + expect(marker._icon).to.be(null); + expect(marker2._icon).to.be(null); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + }); + + it('creates a cluster and marker when 2 overlapping markers and one non-overlapping are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + var marker3 = new L.Marker([3.0, 1.5]); + + group.addLayer(marker); + group.addLayer(marker2); + group.addLayer(marker3); + map.addLayer(group); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + expect(marker3._icon.parentNode).to.be(map._panes.markerPane); + + expect(map._panes.markerPane.childNodes.length).to.be(2); + }); + it('creates a cluster and marker when 2 overlapping markers and one non-overlapping are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + var marker3 = new L.Marker([3.0, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + group.addLayer(marker3); + + expect(marker._icon).to.be(null); //Null as was added and then removed + expect(marker2._icon).to.be(undefined); + expect(marker3._icon.parentNode).to.be(map._panes.markerPane); + + expect(map._panes.markerPane.childNodes.length).to.be(2); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/AddLayer.SingleSpec.js b/lib/Leaflet.markercluster/spec/suites/AddLayer.SingleSpec.js new file mode 100644 index 000000000..1b78f6d4b --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/AddLayer.SingleSpec.js @@ -0,0 +1,78 @@ +describe('addLayer adding a single marker', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + + it('appears when added to the group before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._icon).to.not.be(undefined); + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + }); + it('appears when added to the group after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + + expect(marker._icon).to.not.be(undefined); + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + }); + it('appears (using animations) when added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup({ animateAddingMarkers: true }); + var marker = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + + expect(marker._icon).to.not.be(undefined); + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + }); + + + it('does not appear when too far away when added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([3.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._icon).to.be(undefined); + }); + it('does not appear when too far away when added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([3.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + + expect(marker._icon).to.be(undefined); + }); + + +}); diff --git a/lib/Leaflet.markercluster/spec/suites/AddLayersSpec.js b/lib/Leaflet.markercluster/spec/suites/AddLayersSpec.js new file mode 100644 index 000000000..dfa0066e2 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/AddLayersSpec.js @@ -0,0 +1,85 @@ +describe('addLayers adding multiple markers', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('creates a cluster when 2 overlapping markers are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.addLayers([marker, marker2]); + map.addLayer(group); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + }); + + it('creates a cluster when 2 overlapping markers are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayers([marker, marker2]); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + }); + + + + it('creates a cluster and marker when 2 overlapping markers and one non-overlapping are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + var marker3 = new L.Marker([3.0, 1.5]); + + group.addLayers([marker, marker2, marker3]); + map.addLayer(group); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + expect(marker3._icon.parentNode).to.be(map._panes.markerPane); + + expect(map._panes.markerPane.childNodes.length).to.be(2); + }); + it('creates a cluster and marker when 2 overlapping markers and one non-overlapping are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + var marker3 = new L.Marker([3.0, 1.5]); + + map.addLayer(group); + group.addLayers([marker, marker2, marker3]); + + expect(marker._icon).to.be(undefined); + expect(marker2._icon).to.be(undefined); + expect(marker3._icon.parentNode).to.be(map._panes.markerPane); + + expect(map._panes.markerPane.childNodes.length).to.be(2); + }); + +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/ChildChangingIconSupportSpec.js b/lib/Leaflet.markercluster/spec/suites/ChildChangingIconSupportSpec.js new file mode 100644 index 000000000..2814a1606 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/ChildChangingIconSupportSpec.js @@ -0,0 +1,45 @@ +describe('support child markers changing icon', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('child markers end up with the right icon after becoming unclustered', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5], { icon: new L.DivIcon({html: 'Inner1Text' }) }); + var marker2 = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + expect(marker._icon.innerHTML).to.contain('Inner1Text'); + + group.addLayer(marker2); + + expect(marker._icon).to.be(null); //Have been removed from the map + + marker.setIcon(new L.DivIcon({ html: 'Inner2Text' })); //Change the icon + + group.removeLayer(marker2); //Remove the other marker, so we'll become unclustered + + expect(marker._icon.innerHTML).to.contain('Inner2Text'); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/CircleMarkerSupportSpec.js b/lib/Leaflet.markercluster/spec/suites/CircleMarkerSupportSpec.js new file mode 100644 index 000000000..04b667a35 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/CircleMarkerSupportSpec.js @@ -0,0 +1,121 @@ +describe('support for CircleMarker elements', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('appears when added to the group before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + }); + it('appears when added to the group after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + }); + it('appears animated when added to the group after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup({ animateAddingMarkers: true }); + var marker = new L.CircleMarker([1.5, 1.5]); + var marker2 = new L.CircleMarker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._container.parentNode).to.be(map._pathRoot); + expect(marker2._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + + expect(marker._container.parentNode).to.be(null); + expect(marker2._container.parentNode).to.be(null); + }); + + + it('creates a cluster when 2 overlapping markers are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + var marker2 = new L.CircleMarker([1.5, 1.5]); + + group.addLayers([marker, marker2]); + map.addLayer(group); + + expect(marker._container).to.be(undefined); + expect(marker2._container).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + + clock.tick(1000); + }); + it('creates a cluster when 2 overlapping markers are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + var marker2 = new L.CircleMarker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._container.parentNode).to.be(null); //Removed then re-added, so null + expect(marker2._container).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + + clock.tick(1000); + }); + + it('disappears when removed from the group', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + group.removeLayer(marker); + + expect(marker._container.parentNode).to.be(null); + + clock.tick(1000); + }); + +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/CircleSupportSpec.js b/lib/Leaflet.markercluster/spec/suites/CircleSupportSpec.js new file mode 100644 index 000000000..245951a3b --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/CircleSupportSpec.js @@ -0,0 +1,118 @@ +describe('support for Circle elements', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('appears when added to the group before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 200); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + }); + it('appears when added to the group after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 200); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + }); + it('appears animated when added to the group after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup({ animateAddingMarkers: true }); + var marker = new L.Circle([1.5, 1.5], 200); + var marker2 = new L.Circle([1.5, 1.5], 200); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._container.parentNode).to.be(map._pathRoot); + expect(marker2._container.parentNode).to.be(map._pathRoot); + + clock.tick(1000); + }); + + + it('creates a cluster when 2 overlapping markers are added before the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 200); + var marker2 = new L.Circle([1.5, 1.5], 200); + + group.addLayers([marker, marker2]); + map.addLayer(group); + + expect(marker._container).to.be(undefined); + expect(marker2._container).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + + clock.tick(1000); + }); + it('creates a cluster when 2 overlapping markers are added after the group is added to the map', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 200); + var marker2 = new L.Circle([1.5, 1.5], 200); + + map.addLayer(group); + group.addLayer(marker); + group.addLayer(marker2); + + expect(marker._container.parentNode).to.be(null); //Removed then re-added, so null + expect(marker2._container).to.be(undefined); + + expect(map._panes.markerPane.childNodes.length).to.be(1); + + clock.tick(1000); + }); + + it('disappears when removed from the group', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 200); + + group.addLayer(marker); + map.addLayer(group); + + expect(marker._container).to.not.be(undefined); + expect(marker._container.parentNode).to.be(map._pathRoot); + + group.removeLayer(marker); + + expect(marker._container.parentNode).to.be(null); + + clock.tick(1000); + }); + +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/DistanceGridSpec.js b/lib/Leaflet.markercluster/spec/suites/DistanceGridSpec.js new file mode 100644 index 000000000..118dbecd3 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/DistanceGridSpec.js @@ -0,0 +1,21 @@ +describe('distance grid', function () { + it('addObject', function () { + var grid = new L.DistanceGrid(100), + obj = {}; + + expect(grid.addObject(obj, { x: 0, y: 0 })).to.eql(undefined); + expect(grid.removeObject(obj, { x: 0, y: 0 })).to.eql(true); + }); + + it('eachObject', function (done) { + var grid = new L.DistanceGrid(100), + obj = {}; + + expect(grid.addObject(obj, { x: 0, y: 0 })).to.eql(undefined); + + grid.eachObject(function(o) { + expect(o).to.eql(obj); + done(); + }); + }); +}); diff --git a/lib/Leaflet.markercluster/spec/suites/LeafletSpec.js b/lib/Leaflet.markercluster/spec/suites/LeafletSpec.js new file mode 100644 index 000000000..9e954d9f0 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/LeafletSpec.js @@ -0,0 +1,6 @@ +describe('L#noConflict', function() { + it('restores the previous L value and returns Leaflet namespace', function(){ + + expect(L.version).to.be.ok(); + }); +}); diff --git a/lib/Leaflet.markercluster/spec/suites/NonPointSpec.js b/lib/Leaflet.markercluster/spec/suites/NonPointSpec.js new file mode 100644 index 000000000..561167e2c --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/NonPointSpec.js @@ -0,0 +1,199 @@ +describe('adding non point data works', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('Allows adding a polygon before via addLayer', function () { + + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0,2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + + expect(polygon._container).to.not.be(undefined); + expect(polygon._container.parentNode).to.be(map._pathRoot); + + expect(group.hasLayer(polygon)); + }); + + it('Allows adding a polygon before via addLayers([])', function () { + + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayers([polygon]); + map.addLayer(group); + + expect(polygon._container).to.not.be(undefined); + expect(polygon._container.parentNode).to.be(map._pathRoot); + }); + + it('Removes polygons from map when removed', function () { + + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + map.removeLayer(group); + + expect(polygon._container.parentNode).to.be(null); + }); + + describe('hasLayer', function () { + it('returns false when not added', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + expect(group.hasLayer(polygon)).to.be(false); + + map.addLayer(group); + + expect(group.hasLayer(polygon)).to.be(false); + + map.addLayer(polygon); + + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('returns true before adding to map', function() { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayers([polygon]); + + expect(group.hasLayer(polygon)).to.be(true); + }); + + it('returns true after adding to map after adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + + expect(group.hasLayer(polygon)).to.be(true); + }); + + it('returns true after adding to map before adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + map.addLayer(group); + group.addLayer(polygon); + + expect(group.hasLayer(polygon)).to.be(true); + }); + }); + + describe('removeLayer', function() { + it('removes before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayer(polygon); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayer(polygon); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes after adding to map after adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayer(polygon); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes after adding to map before adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + map.addLayer(group); + group.addLayer(polygon); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayer(polygon); + expect(group.hasLayer(polygon)).to.be(false); + }); + }); + + describe('removeLayers', function () { + it('removes before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes after adding to map after adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(false); + }); + + it('removes after adding to map before adding polygon', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + map.addLayer(group); + group.addLayer(polygon); + expect(group.hasLayer(polygon)).to.be(true); + + group.removeLayers([polygon]); + expect(group.hasLayer(polygon)).to.be(false); + }); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/QuickHullSpec.js b/lib/Leaflet.markercluster/spec/suites/QuickHullSpec.js new file mode 100644 index 000000000..a11325fa5 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/QuickHullSpec.js @@ -0,0 +1,35 @@ +describe('quickhull', function () { + describe('getDistant', function () { + it('zero distance', function () { + var bl = [ + { lat: 0, lng: 0 }, + { lat: 0, lng: 10 } + ]; + expect(L.QuickHull.getDistant({ lat: 0, lng: 0 }, bl)).to.eql(0); + }); + it('non-zero distance', function () { + var bl = [ + { lat: 0, lng: 0 }, + { lat: 0, lng: 10 } + ]; + expect(L.QuickHull.getDistant({ lat: 5, lng: 5 }, bl)).to.eql(-50); + }); + }); + + describe('getConvexHull', function () { + it('creates a hull', function () { + expect(L.QuickHull.getConvexHull([ + { lat: 0, lng: 0 }, + { lat: 10, lng: 0 }, + { lat: 10, lng: 10 }, + { lat: 0, lng: 10 }, + { lat: 5, lng: 5 }, + ])).to.eql([ + { lat: 0, lng: 10 }, + { lat: 10, lng: 10 }, + { lat: 10, lng: 0 }, + { lat: 0, lng: 0 }, + ]); + }); + }); +}); diff --git a/lib/Leaflet.markercluster/spec/suites/RememberOpacity.js b/lib/Leaflet.markercluster/spec/suites/RememberOpacity.js new file mode 100644 index 000000000..bb023a59f --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/RememberOpacity.js @@ -0,0 +1,151 @@ +describe('Remember opacity', function () { + var map, div, clock, markers; + + var markerDefs = [ + {latLng: [ 0, 0], opts: {opacity: 0.9}}, + {latLng: [ 0, 1], opts: {opacity: 0.5}}, + {latLng: [ 0,-1], opts: {opacity: 0.5}}, + {latLng: [ 1, 0], opts: {opacity: 0.5}}, + {latLng: [-1, 0], opts: {opacity: 0.5}}, + {latLng: [ 1, 1], opts: {opacity: 0.2}}, + {latLng: [ 1,-1], opts: {opacity: 0.2}}, + {latLng: [-1, 1], opts: {opacity: 0.2}}, + {latLng: [-1,-1], opts: {opacity: 0.2}} + ]; + + var bounds = L.latLngBounds( L.latLng( -1.1, -1.1), + L.latLng( 1.1, 1.1) ); + + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + markers = []; + for (var i=0; i>> 0; + if (typeof fun !== "function") + throw new TypeError(); + + var res = new Array(len); + var thisp = arguments[1]; + for (var i = 0; i < len; i++) { + if (i in t) + res[i] = fun.call(thisp, t[i], i, t); + } + + return res; + }; +} \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/clearLayersSpec.js b/lib/Leaflet.markercluster/spec/suites/clearLayersSpec.js new file mode 100644 index 000000000..3dde7625e --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/clearLayersSpec.js @@ -0,0 +1,44 @@ +describe('clearLayer', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('clears everything before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + group.clearLayers(); + + expect(group.hasLayer(polygon)).to.be(false); + expect(group.hasLayer(marker)).to.be(false); + }); + + it('hits polygons and markers after adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + map.addLayer(group); + group.clearLayers(); + + expect(group.hasLayer(polygon)).to.be(false); + expect(group.hasLayer(marker)).to.be(false); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/eachLayerSpec.js b/lib/Leaflet.markercluster/spec/suites/eachLayerSpec.js new file mode 100644 index 000000000..0b10a9285 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/eachLayerSpec.js @@ -0,0 +1,54 @@ +describe('eachLayer', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('hits polygons and markers before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + + var layers = []; + group.eachLayer(function (l) { + layers.push(l); + }); + + expect(layers.length).to.be(2); + expect(layers).to.contain(marker); + expect(layers).to.contain(polygon); + }); + + it('hits polygons and markers after adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + map.addLayer(group); + + var layers = []; + group.eachLayer(function (l) { + layers.push(l); + }); + + expect(layers.length).to.be(2); + expect(layers).to.contain(marker); + expect(layers).to.contain(polygon); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/eventsSpec.js b/lib/Leaflet.markercluster/spec/suites/eventsSpec.js new file mode 100644 index 000000000..38599b8d5 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/eventsSpec.js @@ -0,0 +1,159 @@ +describe('events', function() { + var map, div; + beforeEach(function() { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function() { + document.body.removeChild(div); + }); + + it('is fired for a single child marker', function () { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var marker = new L.Marker([1.5, 1.5]); + + group.on('click', callback); + group.addLayer(marker); + map.addLayer(group); + + marker.fire('click'); + + expect(callback.called).to.be(true); + }); + + it('is fired for a child polygon', function () { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.on('click', callback); + group.addLayer(polygon); + map.addLayer(group); + + polygon.fire('click'); + + expect(callback.called).to.be(true); + }); + + it('is fired for a cluster click', function () { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.on('clusterclick', callback); + group.addLayers([marker, marker2]); + map.addLayer(group); + + var cluster = group.getVisibleParent(marker); + expect(cluster instanceof L.MarkerCluster).to.be(true); + + cluster.fire('click'); + + expect(callback.called).to.be(true); + }); + + describe('after being added, removed, re-added from the map', function() { + it('still fires events for nonpoint data', function() { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.on('click', callback); + group.addLayer(polygon); + map.addLayer(group); + map.removeLayer(group); + map.addLayer(group); + + polygon.fire('click'); + + expect(callback.called).to.be(true); + }); + + it('still fires events for point data', function() { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var marker = new L.Marker([1.5, 1.5]); + + group.on('click', callback); + group.addLayer(marker); + map.addLayer(group); + map.removeLayer(group); + map.addLayer(group); + + marker.fire('click'); + + expect(callback.called).to.be(true); + }); + + it('still fires cluster events', function() { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.on('clusterclick', callback); + group.addLayers([marker, marker2]); + map.addLayer(group); + + map.removeLayer(group); + map.addLayer(group); + + var cluster = group.getVisibleParent(marker); + expect(cluster instanceof L.MarkerCluster).to.be(true); + + cluster.fire('click'); + + expect(callback.called).to.be(true); + }); + + it('doesnt break map events', function () { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + map.on('zoomend', callback); + map.addLayer(group); + + map.removeLayer(group); + map.addLayer(group); + + map.fire('zoomend'); + + expect(callback.called).to.be(true); + }); + }); + /* + //No normal events can be fired by a clustered marker, so probably don't need this. + it('is fired for a clustered child marker', function() { + var callback = sinon.spy(); + var group = new L.MarkerClusterGroup(); + + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.on('click', callback); + group.addLayers([marker, marker2]); + map.addLayer(group); + + marker.fire('click'); + + expect(callback.called).to.be(true); + }); + */ +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/getBoundsSpec.js b/lib/Leaflet.markercluster/spec/suites/getBoundsSpec.js new file mode 100644 index 000000000..b4976f93e --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/getBoundsSpec.js @@ -0,0 +1,118 @@ +describe('getBounds', function() { + var map, div; + beforeEach(function() { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function() { + document.body.removeChild(div); + }); + + describe('polygon layer', function() { + it('returns the correct bounds before adding to the map', function() { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + + expect(group.getBounds().equals(polygon.getBounds())).to.be(true); + }); + + it('returns the correct bounds after adding to the map after adding polygon', function() { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayer(polygon); + map.addLayer(group); + + expect(group.getBounds().equals(polygon.getBounds())).to.be(true); + }); + + it('returns the correct bounds after adding to the map before adding polygon', function() { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + map.addLayer(group); + group.addLayer(polygon); + + expect(group.getBounds().equals(polygon.getBounds())).to.be(true); + }); + }); + + describe('marker layers', function () { + it('returns the correct bounds before adding to the map', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.0, 5.0]); + var marker3 = new L.Marker([6.0, 2.0]); + + group.addLayers([marker, marker2, marker3]); + + expect(group.getBounds().equals(L.latLngBounds([1.0, 5.0], [6.0, 1.5]))).to.be(true); + }); + + it('returns the correct bounds after adding to the map after adding markers', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.0, 5.0]); + var marker3 = new L.Marker([6.0, 2.0]); + + group.addLayers([marker, marker2, marker3]); + map.addLayer(group); + + expect(group.getBounds().equals(L.latLngBounds([1.0, 5.0], [6.0, 1.5]))).to.be(true); + }); + + it('returns the correct bounds after adding to the map before adding markers', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.0, 5.0]); + var marker3 = new L.Marker([6.0, 2.0]); + + map.addLayer(group); + group.addLayers([marker, marker2, marker3]); + + expect(group.getBounds().equals(L.latLngBounds([1.0, 5.0], [6.0, 1.5]))).to.be(true); + }); + }); + + describe('marker and polygon layers', function() { + it('returns the correct bounds before adding to the map', function() { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([6.0, 3.0]); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + group.addLayers([marker, polygon]); + + expect(group.getBounds().equals(L.latLngBounds([1.5, 1.5], [6.0, 3.0]))).to.be(true); + }); + + it('returns the correct bounds after adding to the map', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([6.0, 3.0]); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + + map.addLayer(group); + group.addLayers([marker, polygon]); + + expect(group.getBounds().equals(L.latLngBounds([1.5, 1.5], [6.0, 3.0]))).to.be(true); + }); + }); + + describe('blank layer', function () { + it('returns a blank bounds', function () { + var group = new L.MarkerClusterGroup(); + + expect(group.getBounds().isValid()).to.be(false); + }); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/getLayersSpec.js b/lib/Leaflet.markercluster/spec/suites/getLayersSpec.js new file mode 100644 index 000000000..1c4509635 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/getLayersSpec.js @@ -0,0 +1,48 @@ +describe('getLayers', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('hits polygons and markers before adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + + var layers = group.getLayers(); + + expect(layers.length).to.be(2); + expect(layers).to.contain(marker); + expect(layers).to.contain(polygon); + }); + + it('hits polygons and markers after adding to map', function () { + var group = new L.MarkerClusterGroup(); + var polygon = new L.Polygon([[1.5, 1.5], [2.0, 1.5], [2.0, 2.0], [1.5, 2.0]]); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayers([polygon, marker]); + map.addLayer(group); + + var layers = group.getLayers(); + + expect(layers.length).to.be(2); + expect(layers).to.contain(marker); + expect(layers).to.contain(polygon); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/getVisibleParentSpec.js b/lib/Leaflet.markercluster/spec/suites/getVisibleParentSpec.js new file mode 100644 index 000000000..7318184aa --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/getVisibleParentSpec.js @@ -0,0 +1,59 @@ +describe('getVisibleParent', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + it('gets the marker if the marker is visible', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + map.addLayer(group); + + var vp = group.getVisibleParent(marker); + + expect(vp).to.be(marker); + }); + + it('gets the visible cluster if it is clustered', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.addLayers([marker, marker2]); + map.addLayer(group); + + var vp = group.getVisibleParent(marker); + + expect(vp).to.be.a(L.MarkerCluster); + expect(vp._icon).to.not.be(null); + expect(vp._icon).to.not.be(undefined); + }); + + it('returns null if the marker and parents are all not visible', function () { + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([5.5, 1.5]); + var marker2 = new L.Marker([5.5, 1.5]); + + group.addLayers([marker, marker2]); + map.addLayer(group); + + var vp = group.getVisibleParent(marker); + + expect(vp).to.be(null); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/onAddSpec.js b/lib/Leaflet.markercluster/spec/suites/onAddSpec.js new file mode 100644 index 000000000..336e45a07 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/onAddSpec.js @@ -0,0 +1,55 @@ +describe('onAdd', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + + it('throws an error if maxZoom is not specified', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + + var ex = null; + try { + map.addLayer(group); + } catch (e) { + ex = e; + } + + expect(ex).to.not.be(null); + }); + + it('successfully handles removing and re-adding a layer while not on the map', function () { + map.options.maxZoom = 18; + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + + map.addLayer(group); + group.addLayer(marker); + + map.removeLayer(group); + group.removeLayer(marker); + group.addLayer(marker); + + map.addLayer(group); + + expect(map.hasLayer(group)).to.be(true); + expect(group.hasLayer(marker)).to.be(true); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/onRemoveSpec.js b/lib/Leaflet.markercluster/spec/suites/onRemoveSpec.js new file mode 100644 index 000000000..a1dae431d --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/onRemoveSpec.js @@ -0,0 +1,42 @@ +describe('onRemove', function () { + var map, div; + beforeEach(function () { + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + document.body.removeChild(div); + }); + + + it('removes the shown coverage polygon', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + var marker3 = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + group.addLayer(marker2); + group.addLayer(marker3); + + map.addLayer(group); + + group._showCoverage({ layer: group._topClusterLevel }); + + expect(group._shownPolygon).to.not.be(null); + + map.removeLayer(group); + + expect(group._shownPolygon).to.be(null); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/removeLayersSpec.js b/lib/Leaflet.markercluster/spec/suites/removeLayersSpec.js new file mode 100644 index 000000000..8f24ecf12 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/removeLayersSpec.js @@ -0,0 +1,75 @@ +describe('removeLayers', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('removes all the layer given to it', function () { + + var group = new L.MarkerClusterGroup(); + var markers = [ + new L.Marker([1.5, 1.5]), + new L.Marker([1.5, 1.5]), + new L.Marker([1.5, 1.5]) + ]; + + map.addLayer(group); + + group.addLayers(markers); + + group.removeLayers(markers); + + expect(group.hasLayer(markers[0])).to.be(false); + expect(group.hasLayer(markers[1])).to.be(false); + expect(group.hasLayer(markers[2])).to.be(false); + + expect(group.getLayers().length).to.be(0); + }); + + + it('doesnt break if we are spiderfied', function () { + + var group = new L.MarkerClusterGroup(); + var markers = [ + new L.Marker([1.5, 1.5]), + new L.Marker([1.5, 1.5]), + new L.Marker([1.5, 1.5]) + ]; + + map.addLayer(group); + + group.addLayers(markers); + + markers[0].__parent.spiderfy(); + + // We must wait for the spiderfy animation to timeout + clock.tick(200); + + group.removeLayers(markers); + + expect(group.hasLayer(markers[0])).to.be(false); + expect(group.hasLayer(markers[1])).to.be(false); + expect(group.hasLayer(markers[2])).to.be(false); + + expect(group.getLayers().length).to.be(0); + + group.on('spiderfied', function() { + expect(group._spiderfied).to.be(null); + }); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/spiderfySpec.js b/lib/Leaflet.markercluster/spec/suites/spiderfySpec.js new file mode 100644 index 000000000..366bf1a34 --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/spiderfySpec.js @@ -0,0 +1,92 @@ +describe('spiderfy', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + + map.fitBounds(new L.LatLngBounds([ + [1, 1], + [2, 2] + ])); + }); + afterEach(function () { + clock.restore(); + document.body.removeChild(div); + }); + + it('Spiderfies 2 Markers', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Marker([1.5, 1.5]); + var marker2 = new L.Marker([1.5, 1.5]); + + group.addLayer(marker); + group.addLayer(marker2); + map.addLayer(group); + + marker.__parent.spiderfy(); + + expect(marker._icon.parentNode).to.be(map._panes.markerPane); + expect(marker2._icon.parentNode).to.be(map._panes.markerPane); + }); + + it('Spiderfies 2 CircleMarkers', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.CircleMarker([1.5, 1.5]); + var marker2 = new L.CircleMarker([1.5, 1.5]); + + group.addLayer(marker); + group.addLayer(marker2); + map.addLayer(group); + + marker.__parent.spiderfy(); + + expect(marker._container.parentNode).to.be(map._pathRoot); + expect(marker2._container.parentNode).to.be(map._pathRoot); + }); + + it('Spiderfies 2 Circles', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 10); + var marker2 = new L.Circle([1.5, 1.5], 10); + + group.addLayer(marker); + group.addLayer(marker2); + map.addLayer(group); + + marker.__parent.spiderfy(); + + expect(marker._container.parentNode).to.be(map._pathRoot); + expect(marker2._container.parentNode).to.be(map._pathRoot); + }); + + describe('zoomend event listener', function () { + it('unspiderfies correctly', function () { + + var group = new L.MarkerClusterGroup(); + var marker = new L.Circle([1.5, 1.5], 10); + var marker2 = new L.Circle([1.5, 1.5], 10); + + group.addLayer(marker); + group.addLayer(marker2); + map.addLayer(group); + + marker.__parent.spiderfy(); + + expect(group._spiderfied).to.not.be(null); + + map.fire('zoomend'); + + //We should unspiderfy with no animation, so this should be null + expect(group._spiderfied).to.be(null); + }); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/spec/suites/zoomAnimationSpec.js b/lib/Leaflet.markercluster/spec/suites/zoomAnimationSpec.js new file mode 100644 index 000000000..dbf60f9bc --- /dev/null +++ b/lib/Leaflet.markercluster/spec/suites/zoomAnimationSpec.js @@ -0,0 +1,95 @@ +describe('zoomAnimation', function () { + var map, div, clock; + beforeEach(function () { + clock = sinon.useFakeTimers(); + + div = document.createElement('div'); + div.style.width = '200px'; + div.style.height = '200px'; + document.body.appendChild(div); + + map = L.map(div, { maxZoom: 18 }); + }); + afterEach(function () { + clock.restore(); + + document.body.removeChild(div); + }); + + it('adds the visible marker to the map when zooming in', function () { + map.setView(new L.LatLng(-37.36142550190516, 174.254150390625), 7); + + var markers = new L.MarkerClusterGroup({ + showCoverageOnHover: true, + maxClusterRadius: 20, + disableClusteringAtZoom: 15 + }); + var marker = new L.Marker([-37.77852090603777, 175.3103667497635]); + markers.addLayer(marker); //The one we zoom in on + markers.addLayer(new L.Marker([-37.711800591811055, 174.50034790039062])); //Marker that we cluster with at the top zoom level, but not 1 level down + map.addLayer(markers); + + clock.tick(1000); + map.setView([-37.77852090603777, 175.3103667497635], 15); + + //Run the the animation + clock.tick(1000); + + expect(marker._icon).to.not.be(undefined); + expect(marker._icon).to.not.be(null); + }); + + it('adds the visible marker to the map when jumping around', function () { + + var markers = new L.MarkerClusterGroup(); + var marker1 = new L.Marker([48.858280181884766, 2.2945759296417236]); + var marker2 = new L.Marker([16.02359962463379, -61.70280075073242]); + markers.addLayer(marker1); //The one we zoom in on first + markers.addLayer(marker2); //Marker that we cluster with at the top zoom level, but not 1 level down + map.addLayer(markers); + + //show the first + map.fitBounds(new L.LatLngBounds(new L.LatLng(41.371582, -5.142222), new L.LatLng(51.092804, 9.561556))); + + clock.tick(1000); + + map.fitBounds(new L.LatLngBounds(new L.LatLng(15.830972671508789, -61.807167053222656), new L.LatLng(16.516849517822266, -61.0))); + + //Run the the animation + clock.tick(1000); + + //Now the second one should be visible on the map + expect(marker2._icon).to.not.be(undefined); + expect(marker2._icon).to.not.be(null); + }); + + it('adds the visible markers to the map, but not parent clusters when jumping around', function () { + + var markers = new L.MarkerClusterGroup(), + marker1 = new L.Marker([59.9520, 30.3307]), + marker2 = new L.Marker([59.9516, 30.3308]), + marker3 = new L.Marker([59.9513, 30.3312]); + + markers.addLayer(marker1); + markers.addLayer(marker2); + markers.addLayer(marker3); + map.addLayer(markers); + + //Show none of them + map.setView([53.0676, 170.6835], 16); + + clock.tick(1000); + + //Zoom so that all the markers will be visible (Same as zoomToShowLayer) + map.setView(marker1.getLatLng(), 18); + + //Run the the animation + clock.tick(1000); + + //Now the markers should all be visible, and there should be no visible clusters + expect(marker1._icon.parentNode).to.be(map._panes.markerPane); + expect(marker2._icon.parentNode).to.be(map._panes.markerPane); + expect(marker3._icon.parentNode).to.be(map._panes.markerPane); + expect(map._panes.markerPane.childNodes.length).to.be(3); + }); +}); \ No newline at end of file diff --git a/lib/Leaflet.markercluster/src/DistanceGrid.js b/lib/Leaflet.markercluster/src/DistanceGrid.js new file mode 100644 index 000000000..5670c49fc --- /dev/null +++ b/lib/Leaflet.markercluster/src/DistanceGrid.js @@ -0,0 +1,116 @@ + +L.DistanceGrid = function (cellSize) { + this._cellSize = cellSize; + this._sqCellSize = cellSize * cellSize; + this._grid = {}; + this._objectPoint = { }; +}; + +L.DistanceGrid.prototype = { + + addObject: function (obj, point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + grid = this._grid, + row = grid[y] = grid[y] || {}, + cell = row[x] = row[x] || [], + stamp = L.Util.stamp(obj); + + this._objectPoint[stamp] = point; + + cell.push(obj); + }, + + updateObject: function (obj, point) { + this.removeObject(obj); + this.addObject(obj, point); + }, + + //Returns true if the object was found + removeObject: function (obj, point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + grid = this._grid, + row = grid[y] = grid[y] || {}, + cell = row[x] = row[x] || [], + i, len; + + delete this._objectPoint[L.Util.stamp(obj)]; + + for (i = 0, len = cell.length; i < len; i++) { + if (cell[i] === obj) { + + cell.splice(i, 1); + + if (len === 1) { + delete row[x]; + } + + return true; + } + } + + }, + + eachObject: function (fn, context) { + var i, j, k, len, row, cell, removed, + grid = this._grid; + + for (i in grid) { + row = grid[i]; + + for (j in row) { + cell = row[j]; + + for (k = 0, len = cell.length; k < len; k++) { + removed = fn.call(context, cell[k]); + if (removed) { + k--; + len--; + } + } + } + } + }, + + getNearObject: function (point) { + var x = this._getCoord(point.x), + y = this._getCoord(point.y), + i, j, k, row, cell, len, obj, dist, + objectPoint = this._objectPoint, + closestDistSq = this._sqCellSize, + closest = null; + + for (i = y - 1; i <= y + 1; i++) { + row = this._grid[i]; + if (row) { + + for (j = x - 1; j <= x + 1; j++) { + cell = row[j]; + if (cell) { + + for (k = 0, len = cell.length; k < len; k++) { + obj = cell[k]; + dist = this._sqDist(objectPoint[L.Util.stamp(obj)], point); + if (dist < closestDistSq) { + closestDistSq = dist; + closest = obj; + } + } + } + } + } + } + return closest; + }, + + _getCoord: function (x) { + return Math.floor(x / this._cellSize); + }, + + _sqDist: function (p, p2) { + var dx = p2.x - p.x, + dy = p2.y - p.y; + return dx * dx + dy * dy; + } +}; diff --git a/lib/Leaflet.markercluster/src/MarkerCluster.QuickHull.js b/lib/Leaflet.markercluster/src/MarkerCluster.QuickHull.js new file mode 100644 index 000000000..b0819d5b3 --- /dev/null +++ b/lib/Leaflet.markercluster/src/MarkerCluster.QuickHull.js @@ -0,0 +1,145 @@ +/* Copyright (c) 2012 the authors listed at the following URL, and/or +the authors of referenced articles or incorporated external code: +http://en.literateprograms.org/Quickhull_(Javascript)?action=history&offset=20120410175256 + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. +IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY +CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, +TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE +SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +Retrieved from: http://en.literateprograms.org/Quickhull_(Javascript)?oldid=18434 +*/ + +(function () { + L.QuickHull = { + + /* + * @param {Object} cpt a point to be measured from the baseline + * @param {Array} bl the baseline, as represented by a two-element + * array of latlng objects. + * @returns {Number} an approximate distance measure + */ + getDistant: function (cpt, bl) { + var vY = bl[1].lat - bl[0].lat, + vX = bl[0].lng - bl[1].lng; + return (vX * (cpt.lat - bl[0].lat) + vY * (cpt.lng - bl[0].lng)); + }, + + /* + * @param {Array} baseLine a two-element array of latlng objects + * representing the baseline to project from + * @param {Array} latLngs an array of latlng objects + * @returns {Object} the maximum point and all new points to stay + * in consideration for the hull. + */ + findMostDistantPointFromBaseLine: function (baseLine, latLngs) { + var maxD = 0, + maxPt = null, + newPoints = [], + i, pt, d; + + for (i = latLngs.length - 1; i >= 0; i--) { + pt = latLngs[i]; + d = this.getDistant(pt, baseLine); + + if (d > 0) { + newPoints.push(pt); + } else { + continue; + } + + if (d > maxD) { + maxD = d; + maxPt = pt; + } + } + + return { maxPoint: maxPt, newPoints: newPoints }; + }, + + + /* + * Given a baseline, compute the convex hull of latLngs as an array + * of latLngs. + * + * @param {Array} latLngs + * @returns {Array} + */ + buildConvexHull: function (baseLine, latLngs) { + var convexHullBaseLines = [], + t = this.findMostDistantPointFromBaseLine(baseLine, latLngs); + + if (t.maxPoint) { // if there is still a point "outside" the base line + convexHullBaseLines = + convexHullBaseLines.concat( + this.buildConvexHull([baseLine[0], t.maxPoint], t.newPoints) + ); + convexHullBaseLines = + convexHullBaseLines.concat( + this.buildConvexHull([t.maxPoint, baseLine[1]], t.newPoints) + ); + return convexHullBaseLines; + } else { // if there is no more point "outside" the base line, the current base line is part of the convex hull + return [baseLine[0]]; + } + }, + + /* + * Given an array of latlngs, compute a convex hull as an array + * of latlngs + * + * @param {Array} latLngs + * @returns {Array} + */ + getConvexHull: function (latLngs) { + // find first baseline + var maxLat = false, minLat = false, + maxPt = null, minPt = null, + i; + + for (i = latLngs.length - 1; i >= 0; i--) { + var pt = latLngs[i]; + if (maxLat === false || pt.lat > maxLat) { + maxPt = pt; + maxLat = pt.lat; + } + if (minLat === false || pt.lat < minLat) { + minPt = pt; + minLat = pt.lat; + } + } + var ch = [].concat(this.buildConvexHull([minPt, maxPt], latLngs), + this.buildConvexHull([maxPt, minPt], latLngs)); + return ch; + } + }; +}()); + +L.MarkerCluster.include({ + getConvexHull: function () { + var childMarkers = this.getAllChildMarkers(), + points = [], + p, i; + + for (i = childMarkers.length - 1; i >= 0; i--) { + p = childMarkers[i].getLatLng(); + points.push(p); + } + + return L.QuickHull.getConvexHull(points); + } +}); diff --git a/lib/Leaflet.markercluster/src/MarkerCluster.Spiderfier.js b/lib/Leaflet.markercluster/src/MarkerCluster.Spiderfier.js new file mode 100644 index 000000000..9ef784ae2 --- /dev/null +++ b/lib/Leaflet.markercluster/src/MarkerCluster.Spiderfier.js @@ -0,0 +1,433 @@ +//This code is 100% based on https://github.com/jawj/OverlappingMarkerSpiderfier-Leaflet +//Huge thanks to jawj for implementing it first to make my job easy :-) + +L.MarkerCluster.include({ + + _2PI: Math.PI * 2, + _circleFootSeparation: 25, //related to circumference of circle + _circleStartAngle: Math.PI / 6, + + _spiralFootSeparation: 28, //related to size of spiral (experiment!) + _spiralLengthStart: 11, + _spiralLengthFactor: 5, + + _circleSpiralSwitchover: 9, //show spiral instead of circle from this marker count upwards. + // 0 -> always spiral; Infinity -> always circle + + spiderfy: function () { + if (this._group._spiderfied === this || this._group._inZoomAnimation) { + return; + } + + var childMarkers = this.getAllChildMarkers(), + group = this._group, + map = group._map, + center = map.latLngToLayerPoint(this._latlng), + positions; + + this._group._unspiderfy(); + this._group._spiderfied = this; + + //TODO Maybe: childMarkers order by distance to center + + if (childMarkers.length >= this._circleSpiralSwitchover) { + positions = this._generatePointsSpiral(childMarkers.length, center); + } else { + center.y += 10; //Otherwise circles look wrong + positions = this._generatePointsCircle(childMarkers.length, center); + } + + this._animationSpiderfy(childMarkers, positions); + }, + + unspiderfy: function (zoomDetails) { + /// Argument from zoomanim if being called in a zoom animation or null otherwise + if (this._group._inZoomAnimation) { + return; + } + this._animationUnspiderfy(zoomDetails); + + this._group._spiderfied = null; + }, + + _generatePointsCircle: function (count, centerPt) { + var circumference = this._group.options.spiderfyDistanceMultiplier * this._circleFootSeparation * (2 + count), + legLength = circumference / this._2PI, //radius from circumference + angleStep = this._2PI / count, + res = [], + i, angle; + + res.length = count; + + for (i = count - 1; i >= 0; i--) { + angle = this._circleStartAngle + i * angleStep; + res[i] = new L.Point(centerPt.x + legLength * Math.cos(angle), centerPt.y + legLength * Math.sin(angle))._round(); + } + + return res; + }, + + _generatePointsSpiral: function (count, centerPt) { + var legLength = this._group.options.spiderfyDistanceMultiplier * this._spiralLengthStart, + separation = this._group.options.spiderfyDistanceMultiplier * this._spiralFootSeparation, + lengthFactor = this._group.options.spiderfyDistanceMultiplier * this._spiralLengthFactor, + angle = 0, + res = [], + i; + + res.length = count; + + for (i = count - 1; i >= 0; i--) { + angle += separation / legLength + i * 0.0005; + res[i] = new L.Point(centerPt.x + legLength * Math.cos(angle), centerPt.y + legLength * Math.sin(angle))._round(); + legLength += this._2PI * lengthFactor / angle; + } + return res; + }, + + _noanimationUnspiderfy: function () { + var group = this._group, + map = group._map, + fg = group._featureGroup, + childMarkers = this.getAllChildMarkers(), + m, i; + + this.setOpacity(1); + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + fg.removeLayer(m); + + if (m._preSpiderfyLatlng) { + m.setLatLng(m._preSpiderfyLatlng); + delete m._preSpiderfyLatlng; + } + if (m.setZIndexOffset) { + m.setZIndexOffset(0); + } + + if (m._spiderLeg) { + map.removeLayer(m._spiderLeg); + delete m._spiderLeg; + } + } + + group._spiderfied = null; + } +}); + +L.MarkerCluster.include(!L.DomUtil.TRANSITION ? { + //Non Animated versions of everything + _animationSpiderfy: function (childMarkers, positions) { + var group = this._group, + map = group._map, + fg = group._featureGroup, + i, m, leg, newPos; + + for (i = childMarkers.length - 1; i >= 0; i--) { + newPos = map.layerPointToLatLng(positions[i]); + m = childMarkers[i]; + + m._preSpiderfyLatlng = m._latlng; + m.setLatLng(newPos); + if (m.setZIndexOffset) { + m.setZIndexOffset(1000000); //Make these appear on top of EVERYTHING + } + + fg.addLayer(m); + + var legOptions = this._group.options.spiderLegPolylineOptions; + leg = new L.Polyline([this._latlng, newPos], legOptions); + map.addLayer(leg); + m._spiderLeg = leg; + } + this.setOpacity(0.3); + group.fire('spiderfied'); + }, + + _animationUnspiderfy: function () { + this._noanimationUnspiderfy(); + } +} : { + //Animated versions here + SVG_ANIMATION: (function () { + return document.createElementNS('http://www.w3.org/2000/svg', 'animate').toString().indexOf('SVGAnimate') > -1; + }()), + + _animationSpiderfy: function (childMarkers, positions) { + var me = this, + group = this._group, + map = group._map, + fg = group._featureGroup, + thisLayerPos = map.latLngToLayerPoint(this._latlng), + i, m, leg, newPos; + + //Add markers to map hidden at our center point + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + //If it is a marker, add it now and we'll animate it out + if (m.setOpacity) { + m.setZIndexOffset(1000000); //Make these appear on top of EVERYTHING + m.clusterHide(); + + fg.addLayer(m); + + m._setPos(thisLayerPos); + } else { + //Vectors just get immediately added + fg.addLayer(m); + } + } + + group._forceLayout(); + group._animationStart(); + + var initialLegOpacity = L.Path.SVG ? 0 : 0.3, + xmlns = L.Path.SVG_NS; + + + for (i = childMarkers.length - 1; i >= 0; i--) { + newPos = map.layerPointToLatLng(positions[i]); + m = childMarkers[i]; + + //Move marker to new position + m._preSpiderfyLatlng = m._latlng; + m.setLatLng(newPos); + + if (m.setOpacity) { + m.clusterShow(); + } + + + //Add Legs. + var legOptions = this._group.options.spiderLegPolylineOptions; + if (legOptions.opacity === undefined) { + legOptions.opacity = initialLegOpacity; + } + leg = new L.Polyline([me._latlng, newPos], legOptions); + map.addLayer(leg); + m._spiderLeg = leg; + + //Following animations don't work for canvas + if (!L.Path.SVG || !this.SVG_ANIMATION) { + continue; + } + + //How this works: + //http://stackoverflow.com/questions/5924238/how-do-you-animate-an-svg-path-in-ios + //http://dev.opera.com/articles/view/advanced-svg-animation-techniques/ + + //Animate length + var length = leg._path.getTotalLength(); + leg._path.setAttribute("stroke-dasharray", length + "," + length); + + var anim = document.createElementNS(xmlns, "animate"); + anim.setAttribute("attributeName", "stroke-dashoffset"); + anim.setAttribute("begin", "indefinite"); + anim.setAttribute("from", length); + anim.setAttribute("to", 0); + anim.setAttribute("dur", 0.25); + leg._path.appendChild(anim); + anim.beginElement(); + + //Animate opacity + anim = document.createElementNS(xmlns, "animate"); + anim.setAttribute("attributeName", "stroke-opacity"); + anim.setAttribute("attributeName", "stroke-opacity"); + anim.setAttribute("begin", "indefinite"); + anim.setAttribute("from", 0); + anim.setAttribute("to", 0.5); + anim.setAttribute("dur", 0.25); + leg._path.appendChild(anim); + anim.beginElement(); + } + me.setOpacity(0.3); + + //Set the opacity of the spiderLegs back to their correct value + // The animations above override this until they complete. + // If the initial opacity of the spiderlegs isn't 0 then they appear before the animation starts. + if (L.Path.SVG) { + this._group._forceLayout(); + + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]._spiderLeg; + + m.options.opacity = 0.5; + m._path.setAttribute('stroke-opacity', 0.5); + } + } + + setTimeout(function () { + group._animationEnd(); + group.fire('spiderfied'); + }, 200); + }, + + _animationUnspiderfy: function (zoomDetails) { + var group = this._group, + map = group._map, + fg = group._featureGroup, + thisLayerPos = zoomDetails ? map._latLngToNewLayerPoint(this._latlng, zoomDetails.zoom, zoomDetails.center) : map.latLngToLayerPoint(this._latlng), + childMarkers = this.getAllChildMarkers(), + svg = L.Path.SVG && this.SVG_ANIMATION, + m, i, a; + + group._animationStart(); + + //Make us visible and bring the child markers back in + this.setOpacity(1); + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + //Marker was added to us after we were spidified + if (!m._preSpiderfyLatlng) { + continue; + } + + //Fix up the location to the real one + m.setLatLng(m._preSpiderfyLatlng); + delete m._preSpiderfyLatlng; + //Hack override the location to be our center + if (m.setOpacity) { + m._setPos(thisLayerPos); + m.clusterHide(); + } else { + fg.removeLayer(m); + } + + //Animate the spider legs back in + if (svg) { + a = m._spiderLeg._path.childNodes[0]; + a.setAttribute('to', a.getAttribute('from')); + a.setAttribute('from', 0); + a.beginElement(); + + a = m._spiderLeg._path.childNodes[1]; + a.setAttribute('from', 0.5); + a.setAttribute('to', 0); + a.setAttribute('stroke-opacity', 0); + a.beginElement(); + + m._spiderLeg._path.setAttribute('stroke-opacity', 0); + } + } + + setTimeout(function () { + //If we have only <= one child left then that marker will be shown on the map so don't remove it! + var stillThereChildCount = 0; + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + if (m._spiderLeg) { + stillThereChildCount++; + } + } + + + for (i = childMarkers.length - 1; i >= 0; i--) { + m = childMarkers[i]; + + if (!m._spiderLeg) { //Has already been unspiderfied + continue; + } + + + if (m.setOpacity) { + m.clusterShow(); + m.setZIndexOffset(0); + } + + if (stillThereChildCount > 1) { + fg.removeLayer(m); + } + + map.removeLayer(m._spiderLeg); + delete m._spiderLeg; + } + group._animationEnd(); + }, 200); + } +}); + + +L.MarkerClusterGroup.include({ + //The MarkerCluster currently spiderfied (if any) + _spiderfied: null, + + _spiderfierOnAdd: function () { + this._map.on('click', this._unspiderfyWrapper, this); + + if (this._map.options.zoomAnimation) { + this._map.on('zoomstart', this._unspiderfyZoomStart, this); + } + //Browsers without zoomAnimation or a big zoom don't fire zoomstart + this._map.on('zoomend', this._noanimationUnspiderfy, this); + + if (L.Path.SVG && !L.Browser.touch) { + this._map._initPathRoot(); + //Needs to happen in the pageload, not after, or animations don't work in webkit + // http://stackoverflow.com/questions/8455200/svg-animate-with-dynamically-added-elements + //Disable on touch browsers as the animation messes up on a touch zoom and isn't very noticable + } + }, + + _spiderfierOnRemove: function () { + this._map.off('click', this._unspiderfyWrapper, this); + this._map.off('zoomstart', this._unspiderfyZoomStart, this); + this._map.off('zoomanim', this._unspiderfyZoomAnim, this); + + this._unspiderfy(); //Ensure that markers are back where they should be + }, + + + //On zoom start we add a zoomanim handler so that we are guaranteed to be last (after markers are animated) + //This means we can define the animation they do rather than Markers doing an animation to their actual location + _unspiderfyZoomStart: function () { + if (!this._map) { //May have been removed from the map by a zoomEnd handler + return; + } + + this._map.on('zoomanim', this._unspiderfyZoomAnim, this); + }, + _unspiderfyZoomAnim: function (zoomDetails) { + //Wait until the first zoomanim after the user has finished touch-zooming before running the animation + if (L.DomUtil.hasClass(this._map._mapPane, 'leaflet-touching')) { + return; + } + + this._map.off('zoomanim', this._unspiderfyZoomAnim, this); + this._unspiderfy(zoomDetails); + }, + + + _unspiderfyWrapper: function () { + /// _unspiderfy but passes no arguments + this._unspiderfy(); + }, + + _unspiderfy: function (zoomDetails) { + if (this._spiderfied) { + this._spiderfied.unspiderfy(zoomDetails); + } + }, + + _noanimationUnspiderfy: function () { + if (this._spiderfied) { + this._spiderfied._noanimationUnspiderfy(); + } + }, + + //If the given layer is currently being spiderfied then we unspiderfy it so it isn't on the map anymore etc + _unspiderfyLayer: function (layer) { + if (layer._spiderLeg) { + this._featureGroup.removeLayer(layer); + + layer.setOpacity(1); + //Position will be fixed up immediately in _animationUnspiderfy + layer.setZIndexOffset(0); + + this._map.removeLayer(layer._spiderLeg); + delete layer._spiderLeg; + } + } +}); diff --git a/lib/Leaflet.markercluster/src/MarkerCluster.js b/lib/Leaflet.markercluster/src/MarkerCluster.js new file mode 100644 index 000000000..2ce3190c7 --- /dev/null +++ b/lib/Leaflet.markercluster/src/MarkerCluster.js @@ -0,0 +1,369 @@ +L.MarkerCluster = L.Marker.extend({ + initialize: function (group, zoom, a, b) { + + L.Marker.prototype.initialize.call(this, a ? (a._cLatLng || a.getLatLng()) : new L.LatLng(0, 0), { icon: this }); + + + this._group = group; + this._zoom = zoom; + + this._markers = []; + this._childClusters = []; + this._childCount = 0; + this._iconNeedsUpdate = true; + + this._bounds = new L.LatLngBounds(); + + if (a) { + this._addChild(a); + } + if (b) { + this._addChild(b); + } + }, + + //Recursively retrieve all child markers of this cluster + getAllChildMarkers: function (storageArray) { + storageArray = storageArray || []; + + for (var i = this._childClusters.length - 1; i >= 0; i--) { + this._childClusters[i].getAllChildMarkers(storageArray); + } + + for (var j = this._markers.length - 1; j >= 0; j--) { + storageArray.push(this._markers[j]); + } + + return storageArray; + }, + + //Returns the count of how many child markers we have + getChildCount: function () { + return this._childCount; + }, + + //Zoom to the minimum of showing all of the child markers, or the extents of this cluster + zoomToBounds: function () { + var childClusters = this._childClusters.slice(), + map = this._group._map, + boundsZoom = map.getBoundsZoom(this._bounds), + zoom = this._zoom + 1, + mapZoom = map.getZoom(), + i; + + //calculate how far we need to zoom down to see all of the markers + while (childClusters.length > 0 && boundsZoom > zoom) { + zoom++; + var newClusters = []; + for (i = 0; i < childClusters.length; i++) { + newClusters = newClusters.concat(childClusters[i]._childClusters); + } + childClusters = newClusters; + } + + if (boundsZoom > zoom) { + this._group._map.setView(this._latlng, zoom); + } else if (boundsZoom <= mapZoom) { //If fitBounds wouldn't zoom us down, zoom us down instead + this._group._map.setView(this._latlng, mapZoom + 1); + } else { + this._group._map.fitBounds(this._bounds); + } + }, + + getBounds: function () { + var bounds = new L.LatLngBounds(); + bounds.extend(this._bounds); + return bounds; + }, + + _updateIcon: function () { + this._iconNeedsUpdate = true; + if (this._icon) { + this.setIcon(this); + } + }, + + //Cludge for Icon, we pretend to be an icon for performance + createIcon: function () { + if (this._iconNeedsUpdate) { + this._iconObj = this._group.options.iconCreateFunction(this); + this._iconNeedsUpdate = false; + } + return this._iconObj.createIcon(); + }, + createShadow: function () { + return this._iconObj.createShadow(); + }, + + + _addChild: function (new1, isNotificationFromChild) { + + this._iconNeedsUpdate = true; + this._expandBounds(new1); + + if (new1 instanceof L.MarkerCluster) { + if (!isNotificationFromChild) { + this._childClusters.push(new1); + new1.__parent = this; + } + this._childCount += new1._childCount; + } else { + if (!isNotificationFromChild) { + this._markers.push(new1); + } + this._childCount++; + } + + if (this.__parent) { + this.__parent._addChild(new1, true); + } + }, + + //Expand our bounds and tell our parent to + _expandBounds: function (marker) { + var addedCount, + addedLatLng = marker._wLatLng || marker._latlng; + + if (marker instanceof L.MarkerCluster) { + this._bounds.extend(marker._bounds); + addedCount = marker._childCount; + } else { + this._bounds.extend(addedLatLng); + addedCount = 1; + } + + if (!this._cLatLng) { + // when clustering, take position of the first point as the cluster center + this._cLatLng = marker._cLatLng || addedLatLng; + } + + // when showing clusters, take weighted average of all points as cluster center + var totalCount = this._childCount + addedCount; + + //Calculate weighted latlng for display + if (!this._wLatLng) { + this._latlng = this._wLatLng = new L.LatLng(addedLatLng.lat, addedLatLng.lng); + } else { + this._wLatLng.lat = (addedLatLng.lat * addedCount + this._wLatLng.lat * this._childCount) / totalCount; + this._wLatLng.lng = (addedLatLng.lng * addedCount + this._wLatLng.lng * this._childCount) / totalCount; + } + }, + + //Set our markers position as given and add it to the map + _addToMap: function (startPos) { + if (startPos) { + this._backupLatlng = this._latlng; + this.setLatLng(startPos); + } + this._group._featureGroup.addLayer(this); + }, + + _recursivelyAnimateChildrenIn: function (bounds, center, maxZoom) { + this._recursively(bounds, 0, maxZoom - 1, + function (c) { + var markers = c._markers, + i, m; + for (i = markers.length - 1; i >= 0; i--) { + m = markers[i]; + + //Only do it if the icon is still on the map + if (m._icon) { + m._setPos(center); + m.clusterHide(); + } + } + }, + function (c) { + var childClusters = c._childClusters, + j, cm; + for (j = childClusters.length - 1; j >= 0; j--) { + cm = childClusters[j]; + if (cm._icon) { + cm._setPos(center); + cm.clusterHide(); + } + } + } + ); + }, + + _recursivelyAnimateChildrenInAndAddSelfToMap: function (bounds, previousZoomLevel, newZoomLevel) { + this._recursively(bounds, newZoomLevel, 0, + function (c) { + c._recursivelyAnimateChildrenIn(bounds, c._group._map.latLngToLayerPoint(c.getLatLng()).round(), previousZoomLevel); + + //TODO: depthToAnimateIn affects _isSingleParent, if there is a multizoom we may/may not be. + //As a hack we only do a animation free zoom on a single level zoom, if someone does multiple levels then we always animate + if (c._isSingleParent() && previousZoomLevel - 1 === newZoomLevel) { + c.clusterShow(); + c._recursivelyRemoveChildrenFromMap(bounds, previousZoomLevel); //Immediately remove our children as we are replacing them. TODO previousBounds not bounds + } else { + c.clusterHide(); + } + + c._addToMap(); + } + ); + }, + + _recursivelyBecomeVisible: function (bounds, zoomLevel) { + this._recursively(bounds, 0, zoomLevel, null, function (c) { + c.clusterShow(); + }); + }, + + _recursivelyAddChildrenToMap: function (startPos, zoomLevel, bounds) { + this._recursively(bounds, -1, zoomLevel, + function (c) { + if (zoomLevel === c._zoom) { + return; + } + + //Add our child markers at startPos (so they can be animated out) + for (var i = c._markers.length - 1; i >= 0; i--) { + var nm = c._markers[i]; + + if (!bounds.contains(nm._latlng)) { + continue; + } + + if (startPos) { + nm._backupLatlng = nm.getLatLng(); + + nm.setLatLng(startPos); + if (nm.clusterHide) { + nm.clusterHide(); + } + } + + c._group._featureGroup.addLayer(nm); + } + }, + function (c) { + c._addToMap(startPos); + } + ); + }, + + _recursivelyRestoreChildPositions: function (zoomLevel) { + //Fix positions of child markers + for (var i = this._markers.length - 1; i >= 0; i--) { + var nm = this._markers[i]; + if (nm._backupLatlng) { + nm.setLatLng(nm._backupLatlng); + delete nm._backupLatlng; + } + } + + if (zoomLevel - 1 === this._zoom) { + //Reposition child clusters + for (var j = this._childClusters.length - 1; j >= 0; j--) { + this._childClusters[j]._restorePosition(); + } + } else { + for (var k = this._childClusters.length - 1; k >= 0; k--) { + this._childClusters[k]._recursivelyRestoreChildPositions(zoomLevel); + } + } + }, + + _restorePosition: function () { + if (this._backupLatlng) { + this.setLatLng(this._backupLatlng); + delete this._backupLatlng; + } + }, + + //exceptBounds: If set, don't remove any markers/clusters in it + _recursivelyRemoveChildrenFromMap: function (previousBounds, zoomLevel, exceptBounds) { + var m, i; + this._recursively(previousBounds, -1, zoomLevel - 1, + function (c) { + //Remove markers at every level + for (i = c._markers.length - 1; i >= 0; i--) { + m = c._markers[i]; + if (!exceptBounds || !exceptBounds.contains(m._latlng)) { + c._group._featureGroup.removeLayer(m); + if (m.clusterShow) { + m.clusterShow(); + } + } + } + }, + function (c) { + //Remove child clusters at just the bottom level + for (i = c._childClusters.length - 1; i >= 0; i--) { + m = c._childClusters[i]; + if (!exceptBounds || !exceptBounds.contains(m._latlng)) { + c._group._featureGroup.removeLayer(m); + if (m.clusterShow) { + m.clusterShow(); + } + } + } + } + ); + }, + + //Run the given functions recursively to this and child clusters + // boundsToApplyTo: a L.LatLngBounds representing the bounds of what clusters to recurse in to + // zoomLevelToStart: zoom level to start running functions (inclusive) + // zoomLevelToStop: zoom level to stop running functions (inclusive) + // runAtEveryLevel: function that takes an L.MarkerCluster as an argument that should be applied on every level + // runAtBottomLevel: function that takes an L.MarkerCluster as an argument that should be applied at only the bottom level + _recursively: function (boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel) { + var childClusters = this._childClusters, + zoom = this._zoom, + i, c; + + if (zoomLevelToStart > zoom) { //Still going down to required depth, just recurse to child clusters + for (i = childClusters.length - 1; i >= 0; i--) { + c = childClusters[i]; + if (boundsToApplyTo.intersects(c._bounds)) { + c._recursively(boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel); + } + } + } else { //In required depth + + if (runAtEveryLevel) { + runAtEveryLevel(this); + } + if (runAtBottomLevel && this._zoom === zoomLevelToStop) { + runAtBottomLevel(this); + } + + //TODO: This loop is almost the same as above + if (zoomLevelToStop > zoom) { + for (i = childClusters.length - 1; i >= 0; i--) { + c = childClusters[i]; + if (boundsToApplyTo.intersects(c._bounds)) { + c._recursively(boundsToApplyTo, zoomLevelToStart, zoomLevelToStop, runAtEveryLevel, runAtBottomLevel); + } + } + } + } + }, + + _recalculateBounds: function () { + var markers = this._markers, + childClusters = this._childClusters, + i; + + this._bounds = new L.LatLngBounds(); + delete this._wLatLng; + + for (i = markers.length - 1; i >= 0; i--) { + this._expandBounds(markers[i]); + } + for (i = childClusters.length - 1; i >= 0; i--) { + this._expandBounds(childClusters[i]); + } + }, + + + //Returns true if we are the parent of only one cluster and that cluster is the same as us + _isSingleParent: function () { + //Don't need to check this._markers as the rest won't work if there are any + return this._childClusters.length > 0 && this._childClusters[0]._childCount === this._childCount; + } +}); diff --git a/lib/Leaflet.markercluster/src/MarkerClusterGroup.js b/lib/Leaflet.markercluster/src/MarkerClusterGroup.js new file mode 100644 index 000000000..1f158eefb --- /dev/null +++ b/lib/Leaflet.markercluster/src/MarkerClusterGroup.js @@ -0,0 +1,1099 @@ +/* + * L.MarkerClusterGroup extends L.FeatureGroup by clustering the markers contained within + */ + +L.MarkerClusterGroup = L.FeatureGroup.extend({ + + options: { + maxClusterRadius: 80, //A cluster will cover at most this many pixels from its center + iconCreateFunction: null, + + spiderfyOnMaxZoom: true, + showCoverageOnHover: true, + zoomToBoundsOnClick: true, + singleMarkerMode: false, + + disableClusteringAtZoom: null, + + // Setting this to false prevents the removal of any clusters outside of the viewpoint, which + // is the default behaviour for performance reasons. + removeOutsideVisibleBounds: true, + + //Whether to animate adding markers after adding the MarkerClusterGroup to the map + // If you are adding individual markers set to true, if adding bulk markers leave false for massive performance gains. + animateAddingMarkers: false, + + //Increase to increase the distance away that spiderfied markers appear from the center + spiderfyDistanceMultiplier: 1, + + // Make it possible to specify a polyline options on a spider leg + spiderLegPolylineOptions: { weight: 1.5, color: '#222' }, + + // When bulk adding layers, adds markers in chunks. Means addLayers may not add all the layers in the call, others will be loaded during setTimeouts + chunkedLoading: false, + chunkInterval: 200, // process markers for a maximum of ~ n milliseconds (then trigger the chunkProgress callback) + chunkDelay: 50, // at the end of each interval, give n milliseconds back to system/browser + chunkProgress: null, // progress callback: function(processed, total, elapsed) (e.g. for a progress indicator) + + //Options to pass to the L.Polygon constructor + polygonOptions: {} + }, + + initialize: function (options) { + L.Util.setOptions(this, options); + if (!this.options.iconCreateFunction) { + this.options.iconCreateFunction = this._defaultIconCreateFunction; + } + + this._featureGroup = L.featureGroup(); + this._featureGroup.on(L.FeatureGroup.EVENTS, this._propagateEvent, this); + + this._nonPointGroup = L.featureGroup(); + this._nonPointGroup.on(L.FeatureGroup.EVENTS, this._propagateEvent, this); + + this._inZoomAnimation = 0; + this._needsClustering = []; + this._needsRemoving = []; //Markers removed while we aren't on the map need to be kept track of + //The bounds of the currently shown area (from _getExpandedVisibleBounds) Updated on zoom/move + this._currentShownBounds = null; + + this._queue = []; + }, + + addLayer: function (layer) { + + if (layer instanceof L.LayerGroup) { + var array = []; + for (var i in layer._layers) { + array.push(layer._layers[i]); + } + return this.addLayers(array); + } + + //Don't cluster non point data + if (!layer.getLatLng) { + this._nonPointGroup.addLayer(layer); + return this; + } + + if (!this._map) { + this._needsClustering.push(layer); + return this; + } + + if (this.hasLayer(layer)) { + return this; + } + + + //If we have already clustered we'll need to add this one to a cluster + + if (this._unspiderfy) { + this._unspiderfy(); + } + + this._addLayer(layer, this._maxZoom); + + //Work out what is visible + var visibleLayer = layer, + currentZoom = this._map.getZoom(); + if (layer.__parent) { + while (visibleLayer.__parent._zoom >= currentZoom) { + visibleLayer = visibleLayer.__parent; + } + } + + if (this._currentShownBounds.contains(visibleLayer.getLatLng())) { + if (this.options.animateAddingMarkers) { + this._animationAddLayer(layer, visibleLayer); + } else { + this._animationAddLayerNonAnimated(layer, visibleLayer); + } + } + return this; + }, + + removeLayer: function (layer) { + + if (layer instanceof L.LayerGroup) + { + var array = []; + for (var i in layer._layers) { + array.push(layer._layers[i]); + } + return this.removeLayers(array); + } + + //Non point layers + if (!layer.getLatLng) { + this._nonPointGroup.removeLayer(layer); + return this; + } + + if (!this._map) { + if (!this._arraySplice(this._needsClustering, layer) && this.hasLayer(layer)) { + this._needsRemoving.push(layer); + } + return this; + } + + if (!layer.__parent) { + return this; + } + + if (this._unspiderfy) { + this._unspiderfy(); + this._unspiderfyLayer(layer); + } + + //Remove the marker from clusters + this._removeLayer(layer, true); + + if (this._featureGroup.hasLayer(layer)) { + this._featureGroup.removeLayer(layer); + if (layer.clusterShow) { + layer.clusterShow(); + } + } + + return this; + }, + + //Takes an array of markers and adds them in bulk + addLayers: function (layersArray) { + var fg = this._featureGroup, + npg = this._nonPointGroup, + chunked = this.options.chunkedLoading, + chunkInterval = this.options.chunkInterval, + chunkProgress = this.options.chunkProgress, + newMarkers, i, l, m; + + if (this._map) { + var offset = 0, + started = (new Date()).getTime(); + var process = L.bind(function () { + var start = (new Date()).getTime(); + for (; offset < layersArray.length; offset++) { + if (chunked && offset % 200 === 0) { + // every couple hundred markers, instrument the time elapsed since processing started: + var elapsed = (new Date()).getTime() - start; + if (elapsed > chunkInterval) { + break; // been working too hard, time to take a break :-) + } + } + + m = layersArray[offset]; + + //Not point data, can't be clustered + if (!m.getLatLng) { + npg.addLayer(m); + continue; + } + + if (this.hasLayer(m)) { + continue; + } + + this._addLayer(m, this._maxZoom); + + //If we just made a cluster of size 2 then we need to remove the other marker from the map (if it is) or we never will + if (m.__parent) { + if (m.__parent.getChildCount() === 2) { + var markers = m.__parent.getAllChildMarkers(), + otherMarker = markers[0] === m ? markers[1] : markers[0]; + fg.removeLayer(otherMarker); + } + } + } + + if (chunkProgress) { + // report progress and time elapsed: + chunkProgress(offset, layersArray.length, (new Date()).getTime() - started); + } + + if (offset === layersArray.length) { + //Update the icons of all those visible clusters that were affected + this._featureGroup.eachLayer(function (c) { + if (c instanceof L.MarkerCluster && c._iconNeedsUpdate) { + c._updateIcon(); + } + }); + + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._zoom, this._currentShownBounds); + } else { + setTimeout(process, this.options.chunkDelay); + } + }, this); + + process(); + } else { + newMarkers = []; + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + + //Not point data, can't be clustered + if (!m.getLatLng) { + npg.addLayer(m); + continue; + } + + if (this.hasLayer(m)) { + continue; + } + + newMarkers.push(m); + } + this._needsClustering = this._needsClustering.concat(newMarkers); + } + return this; + }, + + //Takes an array of markers and removes them in bulk + removeLayers: function (layersArray) { + var i, l, m, + fg = this._featureGroup, + npg = this._nonPointGroup; + + if (this._unspiderfy) { + this._unspiderfy(); + } + + if (!this._map) { + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + this._arraySplice(this._needsClustering, m); + npg.removeLayer(m); + } + return this; + } + + for (i = 0, l = layersArray.length; i < l; i++) { + m = layersArray[i]; + + if (!m.__parent) { + npg.removeLayer(m); + continue; + } + + this._removeLayer(m, true, true); + + if (fg.hasLayer(m)) { + fg.removeLayer(m); + if (m.clusterShow) { + m.clusterShow(); + } + } + } + + //Fix up the clusters and markers on the map + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._zoom, this._currentShownBounds); + + fg.eachLayer(function (c) { + if (c instanceof L.MarkerCluster) { + c._updateIcon(); + } + }); + + return this; + }, + + //Removes all layers from the MarkerClusterGroup + clearLayers: function () { + //Need our own special implementation as the LayerGroup one doesn't work for us + + //If we aren't on the map (yet), blow away the markers we know of + if (!this._map) { + this._needsClustering = []; + delete this._gridClusters; + delete this._gridUnclustered; + } + + if (this._noanimationUnspiderfy) { + this._noanimationUnspiderfy(); + } + + //Remove all the visible layers + this._featureGroup.clearLayers(); + this._nonPointGroup.clearLayers(); + + this.eachLayer(function (marker) { + delete marker.__parent; + }); + + if (this._map) { + //Reset _topClusterLevel and the DistanceGrids + this._generateInitialClusters(); + } + + return this; + }, + + //Override FeatureGroup.getBounds as it doesn't work + getBounds: function () { + var bounds = new L.LatLngBounds(); + + if (this._topClusterLevel) { + bounds.extend(this._topClusterLevel._bounds); + } + + for (var i = this._needsClustering.length - 1; i >= 0; i--) { + bounds.extend(this._needsClustering[i].getLatLng()); + } + + bounds.extend(this._nonPointGroup.getBounds()); + + return bounds; + }, + + //Overrides LayerGroup.eachLayer + eachLayer: function (method, context) { + var markers = this._needsClustering.slice(), + i; + + if (this._topClusterLevel) { + this._topClusterLevel.getAllChildMarkers(markers); + } + + for (i = markers.length - 1; i >= 0; i--) { + method.call(context, markers[i]); + } + + this._nonPointGroup.eachLayer(method, context); + }, + + //Overrides LayerGroup.getLayers + getLayers: function () { + var layers = []; + this.eachLayer(function (l) { + layers.push(l); + }); + return layers; + }, + + //Overrides LayerGroup.getLayer, WARNING: Really bad performance + getLayer: function (id) { + var result = null; + + this.eachLayer(function (l) { + if (L.stamp(l) === id) { + result = l; + } + }); + + return result; + }, + + //Returns true if the given layer is in this MarkerClusterGroup + hasLayer: function (layer) { + if (!layer) { + return false; + } + + var i, anArray = this._needsClustering; + + for (i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === layer) { + return true; + } + } + + anArray = this._needsRemoving; + for (i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === layer) { + return false; + } + } + + return !!(layer.__parent && layer.__parent._group === this) || this._nonPointGroup.hasLayer(layer); + }, + + //Zoom down to show the given layer (spiderfying if necessary) then calls the callback + zoomToShowLayer: function (layer, callback) { + + var showMarker = function () { + if ((layer._icon || layer.__parent._icon) && !this._inZoomAnimation) { + this._map.off('moveend', showMarker, this); + this.off('animationend', showMarker, this); + + if (layer._icon) { + callback(); + } else if (layer.__parent._icon) { + var afterSpiderfy = function () { + this.off('spiderfied', afterSpiderfy, this); + callback(); + }; + + this.on('spiderfied', afterSpiderfy, this); + layer.__parent.spiderfy(); + } + } + }; + + if (layer._icon && this._map.getBounds().contains(layer.getLatLng())) { + //Layer is visible ond on screen, immediate return + callback(); + } else if (layer.__parent._zoom < this._map.getZoom()) { + //Layer should be visible at this zoom level. It must not be on screen so just pan over to it + this._map.on('moveend', showMarker, this); + this._map.panTo(layer.getLatLng()); + } else { + var moveStart = function () { + this._map.off('movestart', moveStart, this); + moveStart = null; + }; + + this._map.on('movestart', moveStart, this); + this._map.on('moveend', showMarker, this); + this.on('animationend', showMarker, this); + layer.__parent.zoomToBounds(); + + if (moveStart) { + //Never started moving, must already be there, probably need clustering however + showMarker.call(this); + } + } + }, + + //Overrides FeatureGroup.onAdd + onAdd: function (map) { + this._map = map; + var i, l, layer; + + if (!isFinite(this._map.getMaxZoom())) { + throw "Map has no maxZoom specified"; + } + + this._featureGroup.onAdd(map); + this._nonPointGroup.onAdd(map); + + if (!this._gridClusters) { + this._generateInitialClusters(); + } + + for (i = 0, l = this._needsRemoving.length; i < l; i++) { + layer = this._needsRemoving[i]; + this._removeLayer(layer, true); + } + this._needsRemoving = []; + + //Remember the current zoom level and bounds + this._zoom = this._map.getZoom(); + this._currentShownBounds = this._getExpandedVisibleBounds(); + + this._map.on('zoomend', this._zoomEnd, this); + this._map.on('moveend', this._moveEnd, this); + + if (this._spiderfierOnAdd) { //TODO FIXME: Not sure how to have spiderfier add something on here nicely + this._spiderfierOnAdd(); + } + + this._bindEvents(); + + //Actually add our markers to the map: + l = this._needsClustering; + this._needsClustering = []; + this.addLayers(l); + }, + + //Overrides FeatureGroup.onRemove + onRemove: function (map) { + map.off('zoomend', this._zoomEnd, this); + map.off('moveend', this._moveEnd, this); + + this._unbindEvents(); + + //In case we are in a cluster animation + this._map._mapPane.className = this._map._mapPane.className.replace(' leaflet-cluster-anim', ''); + + if (this._spiderfierOnRemove) { //TODO FIXME: Not sure how to have spiderfier add something on here nicely + this._spiderfierOnRemove(); + } + + + + //Clean up all the layers we added to the map + this._hideCoverage(); + this._featureGroup.onRemove(map); + this._nonPointGroup.onRemove(map); + + this._featureGroup.clearLayers(); + + this._map = null; + }, + + getVisibleParent: function (marker) { + var vMarker = marker; + while (vMarker && !vMarker._icon) { + vMarker = vMarker.__parent; + } + return vMarker || null; + }, + + //Remove the given object from the given array + _arraySplice: function (anArray, obj) { + for (var i = anArray.length - 1; i >= 0; i--) { + if (anArray[i] === obj) { + anArray.splice(i, 1); + return true; + } + } + }, + + //Internal function for removing a marker from everything. + //dontUpdateMap: set to true if you will handle updating the map manually (for bulk functions) + _removeLayer: function (marker, removeFromDistanceGrid, dontUpdateMap) { + var gridClusters = this._gridClusters, + gridUnclustered = this._gridUnclustered, + fg = this._featureGroup, + map = this._map; + + //Remove the marker from distance clusters it might be in + if (removeFromDistanceGrid) { + for (var z = this._maxZoom; z >= 0; z--) { + if (!gridUnclustered[z].removeObject(marker, map.project(marker.getLatLng(), z))) { + break; + } + } + } + + //Work our way up the clusters removing them as we go if required + var cluster = marker.__parent, + markers = cluster._markers, + otherMarker; + + //Remove the marker from the immediate parents marker list + this._arraySplice(markers, marker); + + while (cluster) { + cluster._childCount--; + + if (cluster._zoom < 0) { + //Top level, do nothing + break; + } else if (removeFromDistanceGrid && cluster._childCount <= 1) { //Cluster no longer required + //We need to push the other marker up to the parent + otherMarker = cluster._markers[0] === marker ? cluster._markers[1] : cluster._markers[0]; + + //Update distance grid + gridClusters[cluster._zoom].removeObject(cluster, map.project(cluster._cLatLng, cluster._zoom)); + gridUnclustered[cluster._zoom].addObject(otherMarker, map.project(otherMarker.getLatLng(), cluster._zoom)); + + //Move otherMarker up to parent + this._arraySplice(cluster.__parent._childClusters, cluster); + cluster.__parent._markers.push(otherMarker); + otherMarker.__parent = cluster.__parent; + + if (cluster._icon) { + //Cluster is currently on the map, need to put the marker on the map instead + fg.removeLayer(cluster); + if (!dontUpdateMap) { + fg.addLayer(otherMarker); + } + } + } else { + cluster._recalculateBounds(); + if (!dontUpdateMap || !cluster._icon) { + cluster._updateIcon(); + } + } + + cluster = cluster.__parent; + } + + delete marker.__parent; + }, + + _isOrIsParent: function (el, oel) { + while (oel) { + if (el === oel) { + return true; + } + oel = oel.parentNode; + } + return false; + }, + + _propagateEvent: function (e) { + if (e.layer instanceof L.MarkerCluster) { + //Prevent multiple clustermouseover/off events if the icon is made up of stacked divs (Doesn't work in ie <= 8, no relatedTarget) + if (e.originalEvent && this._isOrIsParent(e.layer._icon, e.originalEvent.relatedTarget)) { + return; + } + e.type = 'cluster' + e.type; + } + + this.fire(e.type, e); + }, + + //Default functionality + _defaultIconCreateFunction: function (cluster) { + var childCount = cluster.getChildCount(); + + var c = ' marker-cluster-'; + if (childCount < 10) { + c += 'small'; + } else if (childCount < 100) { + c += 'medium'; + } else { + c += 'large'; + } + + return new L.DivIcon({ html: '
' + childCount + '
', className: 'marker-cluster' + c, iconSize: new L.Point(40, 40) }); + }, + + _bindEvents: function () { + var map = this._map, + spiderfyOnMaxZoom = this.options.spiderfyOnMaxZoom, + showCoverageOnHover = this.options.showCoverageOnHover, + zoomToBoundsOnClick = this.options.zoomToBoundsOnClick; + + //Zoom on cluster click or spiderfy if we are at the lowest level + if (spiderfyOnMaxZoom || zoomToBoundsOnClick) { + this.on('clusterclick', this._zoomOrSpiderfy, this); + } + + //Show convex hull (boundary) polygon on mouse over + if (showCoverageOnHover) { + this.on('clustermouseover', this._showCoverage, this); + this.on('clustermouseout', this._hideCoverage, this); + map.on('zoomend', this._hideCoverage, this); + } + }, + + _zoomOrSpiderfy: function (e) { + var map = this._map; + if (e.layer._bounds._northEast.equals(e.layer._bounds._southWest)) { + if (this.options.spiderfyOnMaxZoom) { + e.layer.spiderfy(); + } + } else if (map.getMaxZoom() === map.getZoom()) { + if (this.options.spiderfyOnMaxZoom) { + e.layer.spiderfy(); + } + } else if (this.options.zoomToBoundsOnClick) { + e.layer.zoomToBounds(); + } + + // Focus the map again for keyboard users. + if (e.originalEvent && e.originalEvent.keyCode === 13) { + map._container.focus(); + } + }, + + _showCoverage: function (e) { + var map = this._map; + if (this._inZoomAnimation) { + return; + } + if (this._shownPolygon) { + map.removeLayer(this._shownPolygon); + } + if (e.layer.getChildCount() > 2 && e.layer !== this._spiderfied) { + this._shownPolygon = new L.Polygon(e.layer.getConvexHull(), this.options.polygonOptions); + map.addLayer(this._shownPolygon); + } + }, + + _hideCoverage: function () { + if (this._shownPolygon) { + this._map.removeLayer(this._shownPolygon); + this._shownPolygon = null; + } + }, + + _unbindEvents: function () { + var spiderfyOnMaxZoom = this.options.spiderfyOnMaxZoom, + showCoverageOnHover = this.options.showCoverageOnHover, + zoomToBoundsOnClick = this.options.zoomToBoundsOnClick, + map = this._map; + + if (spiderfyOnMaxZoom || zoomToBoundsOnClick) { + this.off('clusterclick', this._zoomOrSpiderfy, this); + } + if (showCoverageOnHover) { + this.off('clustermouseover', this._showCoverage, this); + this.off('clustermouseout', this._hideCoverage, this); + map.off('zoomend', this._hideCoverage, this); + } + }, + + _zoomEnd: function () { + if (!this._map) { //May have been removed from the map by a zoomEnd handler + return; + } + this._mergeSplitClusters(); + + this._zoom = this._map._zoom; + this._currentShownBounds = this._getExpandedVisibleBounds(); + }, + + _moveEnd: function () { + if (this._inZoomAnimation) { + return; + } + + var newBounds = this._getExpandedVisibleBounds(); + + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, this._zoom, newBounds); + this._topClusterLevel._recursivelyAddChildrenToMap(null, this._map._zoom, newBounds); + + this._currentShownBounds = newBounds; + return; + }, + + _generateInitialClusters: function () { + var maxZoom = this._map.getMaxZoom(), + radius = this.options.maxClusterRadius, + radiusFn = radius; + + //If we just set maxClusterRadius to a single number, we need to create + //a simple function to return that number. Otherwise, we just have to + //use the function we've passed in. + if (typeof radius !== "function") { + radiusFn = function () { return radius; }; + } + + if (this.options.disableClusteringAtZoom) { + maxZoom = this.options.disableClusteringAtZoom - 1; + } + this._maxZoom = maxZoom; + this._gridClusters = {}; + this._gridUnclustered = {}; + + //Set up DistanceGrids for each zoom + for (var zoom = maxZoom; zoom >= 0; zoom--) { + this._gridClusters[zoom] = new L.DistanceGrid(radiusFn(zoom)); + this._gridUnclustered[zoom] = new L.DistanceGrid(radiusFn(zoom)); + } + + this._topClusterLevel = new L.MarkerCluster(this, -1); + }, + + //Zoom: Zoom to start adding at (Pass this._maxZoom to start at the bottom) + _addLayer: function (layer, zoom) { + var gridClusters = this._gridClusters, + gridUnclustered = this._gridUnclustered, + markerPoint, z; + + if (this.options.singleMarkerMode) { + layer.options.icon = this.options.iconCreateFunction({ + getChildCount: function () { + return 1; + }, + getAllChildMarkers: function () { + return [layer]; + } + }); + } + + //Find the lowest zoom level to slot this one in + for (; zoom >= 0; zoom--) { + markerPoint = this._map.project(layer.getLatLng(), zoom); // calculate pixel position + + //Try find a cluster close by + var closest = gridClusters[zoom].getNearObject(markerPoint); + if (closest) { + closest._addChild(layer); + layer.__parent = closest; + return; + } + + //Try find a marker close by to form a new cluster with + closest = gridUnclustered[zoom].getNearObject(markerPoint); + if (closest) { + var parent = closest.__parent; + if (parent) { + this._removeLayer(closest, false); + } + + //Create new cluster with these 2 in it + + var newCluster = new L.MarkerCluster(this, zoom, closest, layer); + gridClusters[zoom].addObject(newCluster, this._map.project(newCluster._cLatLng, zoom)); + closest.__parent = newCluster; + layer.__parent = newCluster; + + //First create any new intermediate parent clusters that don't exist + var lastParent = newCluster; + for (z = zoom - 1; z > parent._zoom; z--) { + lastParent = new L.MarkerCluster(this, z, lastParent); + gridClusters[z].addObject(lastParent, this._map.project(closest.getLatLng(), z)); + } + parent._addChild(lastParent); + + //Remove closest from this zoom level and any above that it is in, replace with newCluster + for (z = zoom; z >= 0; z--) { + if (!gridUnclustered[z].removeObject(closest, this._map.project(closest.getLatLng(), z))) { + break; + } + } + + return; + } + + //Didn't manage to cluster in at this zoom, record us as a marker here and continue upwards + gridUnclustered[zoom].addObject(layer, markerPoint); + } + + //Didn't get in anything, add us to the top + this._topClusterLevel._addChild(layer); + layer.__parent = this._topClusterLevel; + return; + }, + + //Enqueue code to fire after the marker expand/contract has happened + _enqueue: function (fn) { + this._queue.push(fn); + if (!this._queueTimeout) { + this._queueTimeout = setTimeout(L.bind(this._processQueue, this), 300); + } + }, + _processQueue: function () { + for (var i = 0; i < this._queue.length; i++) { + this._queue[i].call(this); + } + this._queue.length = 0; + clearTimeout(this._queueTimeout); + this._queueTimeout = null; + }, + + //Merge and split any existing clusters that are too big or small + _mergeSplitClusters: function () { + + //Incase we are starting to split before the animation finished + this._processQueue(); + + if (this._zoom < this._map._zoom && this._currentShownBounds.intersects(this._getExpandedVisibleBounds())) { //Zoom in, split + this._animationStart(); + //Remove clusters now off screen + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, this._zoom, this._getExpandedVisibleBounds()); + + this._animationZoomIn(this._zoom, this._map._zoom); + + } else if (this._zoom > this._map._zoom) { //Zoom out, merge + this._animationStart(); + + this._animationZoomOut(this._zoom, this._map._zoom); + } else { + this._moveEnd(); + } + }, + + //Gets the maps visible bounds expanded in each direction by the size of the screen (so the user cannot see an area we do not cover in one pan) + _getExpandedVisibleBounds: function () { + if (!this.options.removeOutsideVisibleBounds) { + return this._map.getBounds(); + } + + var map = this._map, + bounds = map.getBounds(), + sw = bounds._southWest, + ne = bounds._northEast, + latDiff = L.Browser.mobile ? 0 : Math.abs(sw.lat - ne.lat), + lngDiff = L.Browser.mobile ? 0 : Math.abs(sw.lng - ne.lng); + + return new L.LatLngBounds( + new L.LatLng(sw.lat - latDiff, sw.lng - lngDiff, true), + new L.LatLng(ne.lat + latDiff, ne.lng + lngDiff, true)); + }, + + //Shared animation code + _animationAddLayerNonAnimated: function (layer, newCluster) { + if (newCluster === layer) { + this._featureGroup.addLayer(layer); + } else if (newCluster._childCount === 2) { + newCluster._addToMap(); + + var markers = newCluster.getAllChildMarkers(); + this._featureGroup.removeLayer(markers[0]); + this._featureGroup.removeLayer(markers[1]); + } else { + newCluster._updateIcon(); + } + } +}); + +L.MarkerClusterGroup.include(!L.DomUtil.TRANSITION ? { + + //Non Animated versions of everything + _animationStart: function () { + //Do nothing... + }, + _animationZoomIn: function (previousZoomLevel, newZoomLevel) { + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel); + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + + //We didn't actually animate, but we use this event to mean "clustering animations have finished" + this.fire('animationend'); + }, + _animationZoomOut: function (previousZoomLevel, newZoomLevel) { + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel); + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + + //We didn't actually animate, but we use this event to mean "clustering animations have finished" + this.fire('animationend'); + }, + _animationAddLayer: function (layer, newCluster) { + this._animationAddLayerNonAnimated(layer, newCluster); + } +} : { + + //Animated versions here + _animationStart: function () { + this._map._mapPane.className += ' leaflet-cluster-anim'; + this._inZoomAnimation++; + }, + _animationEnd: function () { + if (this._map) { + this._map._mapPane.className = this._map._mapPane.className.replace(' leaflet-cluster-anim', ''); + } + this._inZoomAnimation--; + this.fire('animationend'); + }, + _animationZoomIn: function (previousZoomLevel, newZoomLevel) { + var bounds = this._getExpandedVisibleBounds(), + fg = this._featureGroup, + i; + + //Add all children of current clusters to map and remove those clusters from map + this._topClusterLevel._recursively(bounds, previousZoomLevel, 0, function (c) { + var startPos = c._latlng, + markers = c._markers, + m; + + if (!bounds.contains(startPos)) { + startPos = null; + } + + if (c._isSingleParent() && previousZoomLevel + 1 === newZoomLevel) { //Immediately add the new child and remove us + fg.removeLayer(c); + c._recursivelyAddChildrenToMap(null, newZoomLevel, bounds); + } else { + //Fade out old cluster + c.clusterHide(); + c._recursivelyAddChildrenToMap(startPos, newZoomLevel, bounds); + } + + //Remove all markers that aren't visible any more + //TODO: Do we actually need to do this on the higher levels too? + for (i = markers.length - 1; i >= 0; i--) { + m = markers[i]; + if (!bounds.contains(m._latlng)) { + fg.removeLayer(m); + } + } + + }); + + this._forceLayout(); + + //Update opacities + this._topClusterLevel._recursivelyBecomeVisible(bounds, newZoomLevel); + //TODO Maybe? Update markers in _recursivelyBecomeVisible + fg.eachLayer(function (n) { + if (!(n instanceof L.MarkerCluster) && n._icon) { + n.clusterShow(); + } + }); + + //update the positions of the just added clusters/markers + this._topClusterLevel._recursively(bounds, previousZoomLevel, newZoomLevel, function (c) { + c._recursivelyRestoreChildPositions(newZoomLevel); + }); + + //Remove the old clusters and close the zoom animation + this._enqueue(function () { + //update the positions of the just added clusters/markers + this._topClusterLevel._recursively(bounds, previousZoomLevel, 0, function (c) { + fg.removeLayer(c); + c.clusterShow(); + }); + + this._animationEnd(); + }); + }, + + _animationZoomOut: function (previousZoomLevel, newZoomLevel) { + this._animationZoomOutSingle(this._topClusterLevel, previousZoomLevel - 1, newZoomLevel); + + //Need to add markers for those that weren't on the map before but are now + this._topClusterLevel._recursivelyAddChildrenToMap(null, newZoomLevel, this._getExpandedVisibleBounds()); + //Remove markers that were on the map before but won't be now + this._topClusterLevel._recursivelyRemoveChildrenFromMap(this._currentShownBounds, previousZoomLevel, this._getExpandedVisibleBounds()); + }, + _animationZoomOutSingle: function (cluster, previousZoomLevel, newZoomLevel) { + var bounds = this._getExpandedVisibleBounds(); + + //Animate all of the markers in the clusters to move to their cluster center point + cluster._recursivelyAnimateChildrenInAndAddSelfToMap(bounds, previousZoomLevel + 1, newZoomLevel); + + var me = this; + + //Update the opacity (If we immediately set it they won't animate) + this._forceLayout(); + cluster._recursivelyBecomeVisible(bounds, newZoomLevel); + + //TODO: Maybe use the transition timing stuff to make this more reliable + //When the animations are done, tidy up + this._enqueue(function () { + + //This cluster stopped being a cluster before the timeout fired + if (cluster._childCount === 1) { + var m = cluster._markers[0]; + //If we were in a cluster animation at the time then the opacity and position of our child could be wrong now, so fix it + m.setLatLng(m.getLatLng()); + if (m.clusterShow) { + m.clusterShow(); + } + } else { + cluster._recursively(bounds, newZoomLevel, 0, function (c) { + c._recursivelyRemoveChildrenFromMap(bounds, previousZoomLevel + 1); + }); + } + me._animationEnd(); + }); + }, + _animationAddLayer: function (layer, newCluster) { + var me = this, + fg = this._featureGroup; + + fg.addLayer(layer); + if (newCluster !== layer) { + if (newCluster._childCount > 2) { //Was already a cluster + + newCluster._updateIcon(); + this._forceLayout(); + this._animationStart(); + + layer._setPos(this._map.latLngToLayerPoint(newCluster.getLatLng())); + layer.clusterHide(); + + this._enqueue(function () { + fg.removeLayer(layer); + layer.clusterShow(); + + me._animationEnd(); + }); + + } else { //Just became a cluster + this._forceLayout(); + + me._animationStart(); + me._animationZoomOutSingle(newCluster, this._map.getMaxZoom(), this._map.getZoom()); + } + } + }, + + //Force a browser layout of stuff in the map + // Should apply the current opacity and location to all elements so we can update them again for an animation + _forceLayout: function () { + //In my testing this works, infact offsetWidth of any element seems to work. + //Could loop all this._layers and do this for each _icon if it stops working + + L.Util.falseFn(document.body.offsetWidth); + } +}); + +L.markerClusterGroup = function (options) { + return new L.MarkerClusterGroup(options); +}; diff --git a/lib/Leaflet.markercluster/src/MarkerOpacity.js b/lib/Leaflet.markercluster/src/MarkerOpacity.js new file mode 100644 index 000000000..beaef098b --- /dev/null +++ b/lib/Leaflet.markercluster/src/MarkerOpacity.js @@ -0,0 +1,26 @@ + +/* +* Extends L.Marker to include two extra methods: clusterHide and clusterShow. +* +* They work as setOpacity(0) and setOpacity(1) respectively, but +* they will remember the marker's opacity when hiding and showing it again. +* +*/ + + +L.Marker.include({ + + clusterHide: function () { + this.options.opacityWhenUnclustered = this.options.opacity || 1; + return this.setOpacity(0); + }, + + clusterShow: function () { + var ret = this.setOpacity(this.options.opacity || this.options.opacityWhenUnclustered); + delete this.options.opacityWhenUnclustered; + return ret; + } + +}); + + diff --git a/lib/Leaflet.markercluster/src/copyright.js b/lib/Leaflet.markercluster/src/copyright.js new file mode 100644 index 000000000..2fdcec950 --- /dev/null +++ b/lib/Leaflet.markercluster/src/copyright.js @@ -0,0 +1,5 @@ +/* + Leaflet.markercluster, Provides Beautiful Animated Marker Clustering functionality for Leaflet, a JS library for interactive maps. + https://github.com/Leaflet/Leaflet.markercluster + (c) 2012-2013, Dave Leaver, smartrak +*/ diff --git a/lib/jQuery-Mapael/README.md b/lib/jQuery-Mapael/README.md new file mode 100644 index 000000000..d4efc0de2 --- /dev/null +++ b/lib/jQuery-Mapael/README.md @@ -0,0 +1,84 @@ +# jQuery Mapael - Dynamic vector maps + +The complete documentation is available on [Mapael website](http://www.vincentbroute.fr/mapael). + +Additional maps are stored in the repository ['neveldo/mapael-maps'](https://github.com/neveldo/mapael-maps). + +## Overview + +jQuery Mapael is a [jQuery](http://jquery.com/) plugin based on [raphael.js](http://raphaeljs.com/) that allows you to display dynamic vector maps. + +For example, with Mapael, you can display a map of the world with clickable countries. You can also build simple dataviz by setting some parameters in order to automatically set a color depending on a value to each area of your map and display the associated legend. Moreover, you can plot cities on the map with circles, squares or images by their latitude and longitude. Many more options are available, read the documentation in order to get a complete overview of mapael abilities. + +As Raphaël, Mapael supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+. + +![Dataviz example](http://www.vincentbroute.fr/mapael/world-example.png) +[See this example !](http://www.vincentbroute.fr/mapael/usecases/world) + +## Key features + +* based on **jQuery and raphael.js**. And optionnaly based on jQuery mousewheel for the zoom on mousewheel feature. +* **Interactive.** Set href, tooltip, add events and many more on the elements of your map. +* **Plottable cities** Cities can be plotted on the map with circles, squares or images by their latitude and longitude +* **Areas and plotted points colorization with legends.** Mapael automatically sets attributes like color and size to each area and plotted point displayed on map and generates an interactive legend in order to build pretty dataviz +* **Easy to add new maps.** Build your own maps based on SVG paths +* **SEO-friendly.** An alternative content can be set for non-JS users and web crawlers +* **Resizable** Maps are easily resizable. +* **Zoom** Zoom and panning abilities. + +## Basic code example + +Here is the simplest example that shows how to display an empty map of the world : + +**HTML :** + +
+
Alternative content
+
+ +**JS :** + + $(".container").mapael({ + map : { + name : "world_countries" + } + }); + +## Examples + +**Basic** + +* [Minimal example](http://jsfiddle.net/neveldo/tn5AF/) +* [Map with some custom plotted cities and areas](http://jsfiddle.net/neveldo/z559d0s2/) +* [Map with zoom-in, zoom-out buttons and zoom on mousewheel](http://jsfiddle.net/neveldo/jh4jzyhw/) +* [Map with a legend for areas](http://jsfiddle.net/neveldo/TUYHN/) +* [Map with a legend for plotted cities](http://jsfiddle.net/neveldo/n6XyQ/) +* [Map with a legend where slices are specified with a fixed value instead of min and max values](http://jsfiddle.net/neveldo/bgjh7a4f/) +* [Map with a legend for images](http://jsfiddle.net/neveldo/1jjq6g9y/) +* [Map with a legend for plotted cities and areas](http://jsfiddle.net/neveldo/VqwUZ/) +* [Use legendSpecificAttrs option to apply specific attributes to the legend elements](http://jsfiddle.net/neveldo/5o16cw7s/) +* [Map with an horizontal legend for plotted cities and areas](http://jsfiddle.net/neveldo/qr540oyv/) +* [Map with href on areas and plotted cities](http://jsfiddle.net/neveldo/dqcbkp4z/) + +**Advanced** + +* [Map with links between the plotted cities](http://jsfiddle.net/neveldo/yckqj78q/) +* [Map with multiple plotted cities legends that handle different criteria](http://jsfiddle.net/neveldo/xd2azoxL/) +* [Trigger an 'update' event for refreshing elements](http://jsfiddle.net/neveldo/TKUy4/) +* [Use the 'eventHandlers' option and the 'update' event for refreshing areas when the user click on them](http://jsfiddle.net/neveldo/qGwWr/) +* [Use 'zoom' event in order to zoom on specific areas of the map](http://jsfiddle.net/neveldo/ejf9dsL9/) +* [Use 'zoom.init' option in order to set an initial zoom level on a specific position](http://jsfiddle.net/neveldo/6ms3vusb/) +* [Use 'afterInit' option to extend the Raphael paper](http://jsfiddle.net/neveldo/xqpwwLqg/) +* [Use the 'eventHandlers' option to display information about plotted cities in a div on mouseover](http://jsfiddle.net/neveldo/b5fj4qod/) + +## License + +Copyright (C) 2013-2015 [Vincent Brouté](http://www.vincentbroute.fr) + +jQuery Mapael is licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php). + +Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/jQuery-Mapael/bower.json b/lib/jQuery-Mapael/bower.json new file mode 100644 index 000000000..e1d54b224 --- /dev/null +++ b/lib/jQuery-Mapael/bower.json @@ -0,0 +1,13 @@ +{ + "name": "neveldo/jQuery-Mapael", + "version": "1.0.1", + "main": "./js/jquery.mapael.js", + "description": "jQuery Mapael is a jQuery plugin based on raphael.js that allows you to display dynamic vector maps.", + "license": "MIT", + "ignore": [], + "dependencies": { + "raphael": ">=2.1.4", + "jquery": ">=1.7", + "jquery-mousewheel": ">=3.1.6" + } +} diff --git a/lib/jQuery-Mapael/examples.html b/lib/jQuery-Mapael/examples.html new file mode 100644 index 000000000..cf7f637ff --- /dev/null +++ b/lib/jQuery-Mapael/examples.html @@ -0,0 +1,134 @@ + + + + + jQuery Mapael examples + + + + +
+ +

Minimal example

+
+
+ Alternative content for the map +
+
+ +

Map with some custom plots and areas

+
+
+ Alternative content for the map +
+
+ +

Map with links between the plots

+
+
+ Alternative content for the map +
+
+ +

Map with zoom-in, zoom-out buttons and zoom on mousewheel

+
+
+ Alternative content for the map +
+
+ +

Map with a legend for areas

+
+
+ Alternative content for the map +
+
+ Alternative content for the legend +
+
+ + + + All example for jQuery Mapael are available here. + +
+ + + + + + + + + + + + + + diff --git a/lib/jQuery-Mapael/examples.js b/lib/jQuery-Mapael/examples.js new file mode 100644 index 000000000..326eb96c9 --- /dev/null +++ b/lib/jQuery-Mapael/examples.js @@ -0,0 +1,978 @@ +$(function(){ + + $(function(){ + $(".container1").mapael({ + map : { + // Set the name of the map to display + name : "france_departments", + } + }); + }); + + $(".container2").mapael({ + map : { + name : "france_departments" + + // Set default plots and areas style + , defaultPlot : { + attrs : { + fill: "#004a9b" + , opacity : 0.6 + } + , attrsHover : { + opacity : 1 + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + , defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + , attrsHover : { + fill: "#a4e100" + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + }, + + // Customize some areas of the map + areas: { + "department-56" : { + text : {content : "Morbihan", attrs : {"font-size" : 10}}, + tooltip: {content : "Morbihan
Bretagne"} + }, + "department-21" : { + attrs : { + fill : "#488402" + } + , attrsHover : { + fill: "#a4e100" + } + } + }, + + // Add some plots on the map + plots : { + // Image plot + 'paris' : { + type : "image", + url: "http://www.vincentbroute.fr/mapael/marker.png", + width: 12, + height: 40, + latitude : 48.86, + longitude: 2.3444, + attrs : { + opacity : 1 + }, + attrsHover: { + transform : "s1.5" + } + }, + // Circle plot + 'lyon' : { + type: "circle", + size:50, + latitude :45.758888888889, + longitude: 4.8413888888889, + tooltip: {content : "City : Lyon
Rhône-Alpes"}, + text : {content : "Lyon"} + }, + // Square plot + 'rennes' : { + type :"square", + size :20, + latitude : 48.114166666667, + longitude: -1.6808333333333, + tooltip: {content : "City : Rennes
Bretagne"}, + text : {content : "Rennes"} + }, + // Plot positioned by x and y instead of latitude, longitude + 'myplot' : { + x : 300, + y: 200, + text : { + content : "My plot" + , position: "bottom" + , attrs : {"font-size" : 10, fill : "#004a9b", opacity: 0.6} + , attrsHover : {fill : "#004a9b", opacity: 1} + }, + }, + 'Bordeaux' : { + type: "circle", + size:30, + latitude :44.834763, + longitude: -0.580991, + attrs : { + opacity : 1 + }, + text : { + content : "33", + position : "inner", + attrs : { + "font-size" : 16 + , "font-weight" : "bold" + , fill : "#fff" + }, + attrsHover : { + "font-size" : 16 + , "font-weight" : "bold" + , fill : "#fff" + } + } + } + } + }); + + $(".container3").mapael({ + map : { + name : "world_countries", + defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + } + // Default attributes can be set for all links + , defaultLink: { + factor : 0.4 + , attrsHover : { + stroke: "#a4e100" + } + } + , defaultPlot : { + text : { + attrs : { + fill:"#000" + }, + attrsHover : { + fill:"#000" + } + } + } + }, + plots : { + 'paris' : { + latitude :48.86, + longitude :2.3444, + tooltip: {content : "Paris
Population: 500000000"} + }, + 'newyork' : { + latitude :40.667, + longitude :-73.833, + tooltip: {content : "New york
Population: 200001"} + }, + 'sanfrancisco' : { + latitude: 37.792032, + longitude: -122.394613, + tooltip: {content : "San Francisco"} + }, + 'brasilia' : { + latitude :-15.781682, + longitude :-47.924195, + tooltip: {content : "Brasilia
Population: 200000001"} + }, + 'roma': { + latitude :41.827637, + longitude :12.462732, + tooltip: {content : "Roma"} + }, + 'miami' : { + latitude: 25.789125, + longitude: -80.205674, + tooltip: {content : "Miami"} + }, + + // Size=0 in order to make plots invisible + 'tokyo': { + latitude :35.687418, + longitude :139.692306, + size:0, + text : {content : 'Tokyo'} + }, + 'sydney' : { + latitude :-33.917, + longitude :151.167, + size:0, + text : {content : 'Sydney'} + }, + 'plot1': { + latitude :22.906561, + longitude :86.840170, + size:0, + text : {content : 'Plot1', position : 'left', margin:5} + }, + 'plot2': { + latitude :-0.390553, + longitude :115.586762, + size:0, + text : {content : 'Plot2'} + }, + 'plot3': { + latitude :44.065626, + longitude :94.576079, + size:0, + text : {content : 'Plot3'} + } + }, + // Links allow you to connect plots between them + links: { + 'parisnewyork' : { + // The curve can be inverted by setting a negative factor + factor : -0.3 + , between : ['paris', 'newyork'] + , attrs : { + "stroke-width" : 2 + } + , tooltip: {content : "Paris - New-York"} + } + , 'parissanfrancisco' : { + factor : -0.5 + , between : ['paris', 'sanfrancisco'] + , attrs : { + "stroke-width" : 4 + } + , tooltip: {content : "Paris - San - Francisco"} + } + , 'parisbrasilia' : { + factor : -0.8 + , between : ['paris', 'brasilia'] + , attrs : { + "stroke-width" : 1 + } + , tooltip: {content : "Paris - Brasilia"} + } + , 'romamiami' : { + factor : 0.2 + , between : ['roma', 'miami'] + , attrs : { + "stroke-width" : 4 + } + , tooltip: {content : "Roma - Miami"} + } + , 'sydneyplot1' : { + factor : -0.2 + , between : ['sydney', 'plot1'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 3, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot1"} + } + , 'sydneyplot2' : { + factor : -0.1 + , between : ['sydney', 'plot2'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 8, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot2"} + } + , 'sydneyplot3' : { + factor : 0.2 + , between : ['sydney', 'plot3'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 4, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot3"} + } + , 'sydneytokyo' : { + factor : 0.2 + , between : ['sydney', 'tokyo'] + , attrs : { + stroke: "#a4e100", + "stroke-width" : 6, + "stroke-linecap":"round", + opacity:0.6 + } + , tooltip: {content : "Sydney - Plot2"} + } + } + }); + + $(".container4").mapael({ + map : { + name : "france_departments" + // Enable zoom on the map + , zoom : { + enabled : true + } + // Set default plots and areas style + , defaultPlot : { + attrs : { + fill: "#004a9b" + , opacity : 0.6 + } + , attrsHover : { + opacity : 1 + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + , defaultArea: { + attrs : { + fill : "#f4f4e8" + , stroke: "#ced8d0" + } + , attrsHover : { + fill: "#a4e100" + } + , text : { + attrs : { + fill : "#505444" + } + , attrsHover : { + fill : "#000" + } + } + } + }, + + // Customize some areas of the map + areas: { + "department-56" : { + text : {content : "Morbihan", attrs : {"font-size" : 10}}, + tooltip: {content : "Morbihan (56)"} + }, + "department-21" : { + attrs : { + fill : "#488402" + } + , attrsHover : { + fill: "#a4e100" + } + } + }, + + // Add some plots on the map + plots : { + // Image plot + 'paris' : { + type : "image", + url: "http://www.vincentbroute.fr/mapael/marker.png", + width: 12, + height: 40, + latitude : 48.86, + longitude: 2.3444, + attrs : { + opacity : 1 + }, + attrsHover: { + transform : "s1.5" + } + }, + // Circle plot + 'lyon' : { + type: "circle", + size:50, + latitude :45.758888888889, + longitude: 4.8413888888889, + value : 700000, + tooltip: {content : "City : Lyon"}, + text : {content : "Lyon"} + }, + // Square plot + 'rennes' : { + type :"square", + size :20, + latitude : 48.114166666667, + longitude: -1.6808333333333, + tooltip: {content : "City : Rennes"}, + text : {content : "Rennes"} + }, + // Plot positioned by x and y instead of latitude, longitude + 'myplot' : { + x : 300, + y: 200, + text : { + content : "My plot" + , position: "bottom" + , attrs : {"font-size" : 10, fill : "#004a9b", opacity: 0.6} + , attrsHover : {fill : "#004a9b", opacity: 1} + }, + } + } + }); + + $(".container5").mapael({ + map : { + name : "france_departments", + defaultArea: { + attrs : { + stroke : "#fff", + "stroke-width" : 1 + }, + attrsHover : { + "stroke-width" : 2 + } + } + }, + legend : { + area : { + title :"Population of France by department", + slices : [ + { + max :300000, + attrs : { + fill : "#97e766" + }, + label :"Less than de 300 000 inhabitants" + }, + { + min :300000, + max :500000, + attrs : { + fill : "#7fd34d" + }, + label :"Between 100 000 and 500 000 inhabitants" + }, + { + min :500000, + max :1000000, + attrs : { + fill : "#5faa32" + }, + label :"Between 500 000 and 1 000 000 inhabitants" + }, + { + min :1000000, + attrs : { + fill : "#3f7d1a" + }, + label :"More than 1 million inhabitants" + } + ] + } + }, + areas: { + "department-59": { + value: "2617939", + href : "#", + tooltip: {content : "Nord (59)
Population : 2617939"} + }, + "department-75": { + value: "2268265", + href : "#", + tooltip: {content : "Paris (75)
Population : 2268265"} + }, + "department-13": { + value: "2000550", + href : "#", + tooltip: {content : "Bouches-du-Rhône (13)
Population : 2000550"} + }, + "department-69": { + value: "1756069", + href : "#", + tooltip: {content : "Rhône (69)
Population : 1756069"} + }, + "department-92": { + value: "1590749", + href : "#", + tooltip: {content : "Hauts-de-Seine (92)
Population : 1590749"} + }, + "department-93": { + value: "1534895", + href : "#", + tooltip: {content : "Seine-Saint-Denis (93)
Population : 1534895"} + }, + "department-62": { + value: "1489209", + href : "#", + tooltip: {content : "Pas-de-Calais (62)
Population : 1489209"} + }, + "department-33": { + value: "1479277", + href : "#", + tooltip: {content : "Gironde (33)
Population : 1479277"} + }, + "department-78": { + value: "1435448", + href : "#", + tooltip: {content : "Yvelines (78)
Population : 1435448"} + }, + "department-77": { + value: "1347008", + href : "#", + tooltip: {content : "Seine-et-Marne (77)
Population : 1347008"} + }, + "department-94": { + value: "1340868", + href : "#", + tooltip: {content : "Val-de-Marne (94)
Population : 1340868"} + }, + "department-44": { + value: "1317685", + href : "#", + tooltip: {content : "Loire-Atlantique (44)
Population : 1317685"} + }, + "department-76": { + value: "1275952", + href : "#", + tooltip: {content : "Seine-Maritime (76)
Population : 1275952"} + }, + "department-31": { + value: "1268370", + href : "#", + tooltip: {content : "Haute-Garonne (31)
Population : 1268370"} + }, + "department-38": { + value: "1233759", + href : "#", + tooltip: {content : "Isère (38)
Population : 1233759"} + }, + "department-91": { + value: "1233645", + href : "#", + tooltip: {content : "Essonne (91)
Population : 1233645"} + }, + "department-95": { + value: "1187836", + href : "#", + tooltip: {content : "Val-d'Oise (95)
Population : 1187836"} + }, + "department-67": { + value: "1115226", + href : "#", + tooltip: {content : "Bas-Rhin (67)
Population : 1115226"} + }, + "department-06": { + value: "1094579", + href : "#", + tooltip: {content : "Alpes-Maritimes (06)
Population : 1094579"} + }, + "department-57": { + value: "1066667", + href : "#", + tooltip: {content : "Moselle (57)
Population : 1066667"} + }, + "department-34": { + value: "1062617", + href : "#", + tooltip: {content : "Hérault (34)
Population : 1062617"} + }, + "department-83": { + value: "1026222", + href : "#", + tooltip: {content : "Var (83)
Population : 1026222"} + }, + "department-35": { + value: "1015470", + href : "#", + tooltip: {content : "Ille-et-Vilaine (35)
Population : 1015470"} + }, + "department-29": { + value: "929286", + href : "#", + tooltip: {content : "Finistère (29)
Population : 929286"} + }, + "department-974": { + value: "829903", + href : "#", + tooltip: {content : "La Réunion (974)
Population : 829903"} + }, + "department-60": { + value: "823668", + href : "#", + tooltip: {content : "Oise (60)
Population : 823668"} + }, + "department-49": { + value: "808298", + href : "#", + tooltip: {content : "Maine-et-Loire (49)
Population : 808298"} + }, + "department-42": { + value: "766729", + href : "#", + tooltip: {content : "Loire (42)
Population : 766729"} + }, + "department-68": { + value: "765634", + href : "#", + tooltip: {content : "Haut-Rhin (68)
Population : 765634"} + }, + "department-74": { + value: "760979", + href : "#", + tooltip: {content : "Haute-Savoie (74)
Population : 760979"} + }, + "department-54": { + value: "746502", + href : "#", + tooltip: {content : "Meurthe-et-Moselle (54)
Population : 746502"} + }, + "department-56": { + value: "744663", + href : "#", + tooltip: {content : "Morbihan (56)
Population : 744663"} + }, + "department-30": { + value: "726285", + href : "#", + tooltip: {content : "Gard (30)
Population : 726285"} + }, + "department-14": { + value: "699561", + href : "#", + tooltip: {content : "Calvados (14)
Population : 699561"} + }, + "department-45": { + value: "674913", + href : "#", + tooltip: {content : "Loiret (45)
Population : 674913"} + }, + "department-64": { + value: "674908", + href : "#", + tooltip: {content : "Pyrénées-Atlantiques (64)
Population : 674908"} + }, + "department-85": { + value: "654096", + href : "#", + tooltip: {content : "Vendée (85)
Population : 654096"} + }, + "department-63": { + value: "649643", + href : "#", + tooltip: {content : "Puy-de-Dôme (63)
Population : 649643"} + }, + "department-17": { + value: "640803", + href : "#", + tooltip: {content : "Charente-Maritime (17)
Population : 640803"} + }, + "department-01": { + value: "614331", + href : "#", + tooltip: {content : "Ain (01)
Population : 614331"} + }, + "department-22": { + value: "612383", + href : "#", + tooltip: {content : "Côtes-d'Armor (22)
Population : 612383"} + }, + "department-37": { + value: "605819", + href : "#", + tooltip: {content : "Indre-et-Loire (37)
Population : 605819"} + }, + "department-27": { + value: "603194", + href : "#", + tooltip: {content : "Eure (27)
Population : 603194"} + }, + "department-80": { + value: "583388", + href : "#", + tooltip: {content : "Somme (80)
Population : 583388"} + }, + "department-51": { + value: "579533", + href : "#", + tooltip: {content : "Marne (51)
Population : 579533"} + }, + "department-72": { + value: "579497", + href : "#", + tooltip: {content : "Sarthe (72)
Population : 579497"} + }, + "department-71": { + value: "574874", + href : "#", + tooltip: {content : "Saône-et-Loire (71)
Population : 574874"} + }, + "department-84": { + value: "555240", + href : "#", + tooltip: {content : "Vaucluse (84)
Population : 555240"} + }, + "department-02": { + value: "555094", + href : "#", + tooltip: {content : "Aisne (02)
Population : 555094"} + }, + "department-25": { + value: "542509", + href : "#", + tooltip: {content : "Doubs (25)
Population : 542509"} + }, + "department-21": { + value: "538505", + href : "#", + tooltip: {content : "Côte-d'Or (21)
Population : 538505"} + }, + "department-50": { + value: "517121", + href : "#", + tooltip: {content : "Manche (50)
Population : 517121"} + }, + "department-26": { + value: "499313", + href : "#", + tooltip: {content : "Drôme (26)
Population : 499313"} + }, + "department-66": { + value: "457238", + href : "#", + tooltip: {content : "Pyrénées-Orientales (66)
Population : 457238"} + }, + "department-28": { + value: "440291", + href : "#", + tooltip: {content : "Eure-et-Loir (28)
Population : 440291"} + }, + "department-86": { + value: "438566", + href : "#", + tooltip: {content : "Vienne (86)
Population : 438566"} + }, + "department-73": { + value: "428751", + href : "#", + tooltip: {content : "Savoie (73)
Population : 428751"} + }, + "department-24": { + value: "426607", + href : "#", + tooltip: {content : "Dordogne (24)
Population : 426607"} + }, + "department-971": { + value: "409905", + href : "#", + tooltip: {content : "Guadeloupe (971)
Population : 409905"} + }, + "department-972": { + value: "400535", + href : "#", + tooltip: {content : "Martinique (972)
Population : 400535"} + }, + "department-40": { + value: "397766", + href : "#", + tooltip: {content : "Landes (40)
Population : 397766"} + }, + "department-88": { + value: "392846", + href : "#", + tooltip: {content : "Vosges (88)
Population : 392846"} + }, + "department-81": { + value: "387099", + href : "#", + tooltip: {content : "Tarn (81)
Population : 387099"} + }, + "department-87": { + value: "384781", + href : "#", + tooltip: {content : "Haute-Vienne (87)
Population : 384781"} + }, + "department-79": { + value: "380569", + href : "#", + tooltip: {content : "Deux-Sèvres (79)
Population : 380569"} + }, + "department-11": { + value: "365854", + href : "#", + tooltip: {content : "Aude (11)
Population : 365854"} + }, + "department-16": { + value: "364429", + href : "#", + tooltip: {content : "Charente (16)
Population : 364429"} + }, + "department-89": { + value: "353366", + href : "#", + tooltip: {content : "Yonne (89)
Population : 353366"} + }, + "department-03": { + value: "353124", + href : "#", + tooltip: {content : "Allier (03)
Population : 353124"} + }, + "department-47": { + value: "342500", + href : "#", + tooltip: {content : "Lot-et-Garonne (47)
Population : 342500"} + }, + "department-41": { + value: "340729", + href : "#", + tooltip: {content : "Loir-et-Cher (41)
Population : 340729"} + }, + "department-07": { + value: "324885", + href : "#", + tooltip: {content : "Ardèche (07)
Population : 324885"} + }, + "department-18": { + value: "319600", + href : "#", + tooltip: {content : "Cher (18)
Population : 319600"} + }, + "department-53": { + value: "317006", + href : "#", + tooltip: {content : "Mayenne (53)
Population : 317006"} + }, + "department-10": { + value: "311720", + href : "#", + tooltip: {content : "Aube (10)
Population : 311720"} + }, + "department-61": { + value: "301421", + href : "#", + tooltip: {content : "Orne (61)
Population : 301421"} + }, + "department-08": { + value: "291678", + href : "#", + tooltip: {content : "Ardennes (08)
Population : 291678"} + }, + "department-12": { + value: "288364", + href : "#", + tooltip: {content : "Aveyron (12)
Population : 288364"} + }, + "department-39": { + value: "271973", + href : "#", + tooltip: {content : "Jura (39)
Population : 271973"} + }, + "department-19": { + value: "252235", + href : "#", + tooltip: {content : "Corrèze (19)
Population : 252235"} + }, + "department-82": { + value: "248227", + href : "#", + tooltip: {content : "Tarn-et-Garonne (82)
Population : 248227"} + }, + "department-70": { + value: "247311", + href : "#", + tooltip: {content : "Haute-Saône (70)
Population : 247311"} + }, + "department-36": { + value: "238261", + href : "#", + tooltip: {content : "Indre (36)
Population : 238261"} + }, + "department-65": { + value: "237945", + href : "#", + tooltip: {content : "Hautes-Pyrénées (65)
Population : 237945"} + }, + "department-43": { + value: "231877", + href : "#", + tooltip: {content : "Haute-Loire (43)
Population : 231877"} + }, + "department-973": { + value: "231167", + href : "#", + tooltip: {content : "Guyane (973)
Population : 231167"} + }, + "department-58": { + value: "226997", + href : "#", + tooltip: {content : "Nièvre (58)
Population : 226997"} + }, + "department-55": { + value: "200509", + href : "#", + tooltip: {content : "Meuse (55)
Population : 200509"} + }, + "department-32": { + value: "195489", + href : "#", + tooltip: {content : "Gers (32)
Population : 195489"} + }, + "department-52": { + value: "191004", + href : "#", + tooltip: {content : "Haute-Marne (52)
Population : 191004"} + }, + "department-46": { + value: "181232", + href : "#", + tooltip: {content : "Lot (46)
Population : 181232"} + }, + "department-2B": { + value: "168869", + href : "#", + tooltip: {content : "Haute-Corse (2B)
Population : 168869"} + }, + "department-04": { + value: "165155", + href : "#", + tooltip: {content : "Alpes-de-Haute-Provence (04)
Population : 165155"} + }, + "department-09": { + value: "157582", + href : "#", + tooltip: {content : "Ariège (09)
Population : 157582"} + }, + "department-15": { + value: "154135", + href : "#", + tooltip: {content : "Cantal (15)
Population : 154135"} + }, + "department-90": { + value: "146475", + href : "#", + tooltip: {content : "Territoire de Belfort (90)
Population : 146475"} + }, + "department-2A": { + value: "145998", + href : "#", + tooltip: {content : "Corse-du-Sud (2A)
Population : 145998"} + }, + "department-05": { + value: "142312", + href : "#", + tooltip: {content : "Hautes-Alpes (05)
Population : 142312"} + }, + "department-23": { + value: "127919", + href : "#", + tooltip: {content : "Creuse (23)
Population : 127919"} + }, + "department-48": { + value: "81281", + href : "#", + tooltip: {content : "Lozère (48)
Population : 81281"} + } + } + }); + +}); \ No newline at end of file diff --git a/lib/jQuery-Mapael/js/jquery.mapael.js b/lib/jQuery-Mapael/js/jquery.mapael.js new file mode 100644 index 000000000..1879f32bd --- /dev/null +++ b/lib/jQuery-Mapael/js/jquery.mapael.js @@ -0,0 +1,1248 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Version: 1.0.1 +* +* Copyright (c) 2015 Vincent Brouté (http://www.vincentbroute.fr/mapael) +* Licensed under the MIT license (http://www.opensource.org/licenses/mit-license.php). +* +*/ +(function($) { + + "use strict"; + + $.fn.mapael = function(options) { + + // Extend legend default options with user options + options = $.extend(true, {}, $.fn.mapael.defaultOptions, options); + + for (var type in options.legend) { + if ($.isArray(options.legend[type])) { + for (var i = 0; i < options.legend[type].length; ++i) + options.legend[type][i] = $.extend(true, {}, $.fn.mapael.legendDefaultOptions[type], options.legend[type][i]); + } else { + options.legend[type] = $.extend(true, {}, $.fn.mapael.legendDefaultOptions[type], options.legend[type]); + } + } + + return this.each(function() { + + var $self = $(this) + , $container = $("." + options.map.cssClass, this).empty() + , $tooltip = $("
").addClass(options.map.tooltip.cssClass).css("display", "none").appendTo(options.map.tooltip.target || $container) + , mapConf = $.fn.mapael.maps[options.map.name] + , paper = new Raphael($container[0], mapConf.width, mapConf.height) + , elemOptions = {} + , resizeTO = 0 + , areas = {} + , plots = {} + , legends = [] + , id = 0; + + options.map.tooltip.css && $tooltip.css(options.map.tooltip.css); + paper.setViewBox(0, 0, mapConf.width, mapConf.height, false); + + // Draw map areas + for (id in mapConf.elems) { + elemOptions = $.fn.mapael.getElemOptions( + options.map.defaultArea + , (options.areas[id] ? options.areas[id] : {}) + , options.legend.area + ); + areas[id] = {"mapElem" : paper.path(mapConf.elems[id]).attr(elemOptions.attrs)}; + } + + // Init map areas in a second loop (prevent texts to be hidden by map elements) + for (id in mapConf.elems) { + elemOptions = $.fn.mapael.getElemOptions( + options.map.defaultArea + , (options.areas[id] ? options.areas[id] : {}) + , options.legend.area + ); + $.fn.mapael.initElem(paper, areas[id], elemOptions, $tooltip, id); + } + + // Draw links + $.fn.mapael.drawLinksCollection(paper, options, mapConf.getCoords, $tooltip); + + // Draw plots + for (id in options.plots) { + plots[id] = $.fn.mapael.drawPlot(id, options, mapConf, paper, $tooltip); + } + + /** + * Zoom on the map at a specific level focused on specific coordinates + * If no coordinates are specified, the zoom will be focused on the center of the map + * options : + * "level" : level of the zoom between 0 and maxLevel + * "x" or "latitude" : x coordinate or latitude of the point to focus on + * "y" or "longitude" : y coordinate or longitude of the point to focus on + * "fixedCenter" : set to true in order to preserve the position of x,y in the canvas when zoomed + */ + $self.on("zoom", function(e, zoomOptions) { + var newLevel = Math.min(Math.max(zoomOptions.level, 0), options.map.zoom.maxLevel) + , panX = 0 + , panY = 0 + , previousZoomLevel = (1 + $self.data("zoomLevel") * options.map.zoom.step) + , zoomLevel = (1 + newLevel * options.map.zoom.step) + , offsetX = 0 + , offsetY = 0 + , coords = {}; + + if (typeof zoomOptions.latitude != "undefined" && typeof zoomOptions.longitude != "undefined") { + coords = mapConf.getCoords(zoomOptions.latitude, zoomOptions.longitude); + zoomOptions.x = coords.x; + zoomOptions.y = coords.y; + } + + if (typeof zoomOptions.x == "undefined") + zoomOptions.x = paper._viewBox[0] + paper._viewBox[2] / 2; + + if (typeof zoomOptions.y == "undefined") + zoomOptions.y = (paper._viewBox[1] + paper._viewBox[3] / 2); + + // Update zoom level of the map + if (newLevel == 0) { + paper.setViewBox(panX, panY, mapConf.width, mapConf.height); + } else { + if (typeof zoomOptions.fixedCenter != 'undefined' && zoomOptions.fixedCenter == true) { + if (zoomLevel == previousZoomLevel) return; + + offsetX = $self.data("panX") + ((zoomOptions.x - $self.data("panX")) * (zoomLevel - previousZoomLevel)) / zoomLevel; + offsetY = $self.data("panY") + ((zoomOptions.y - $self.data("panY")) * (zoomLevel - previousZoomLevel)) / zoomLevel; + + panX = Math.min(Math.max(0, offsetX), (mapConf.width - (mapConf.width / zoomLevel))); + panY = Math.min(Math.max(0, offsetY), (mapConf.height - (mapConf.height / zoomLevel))); + } else { + panX = Math.min(Math.max(0, zoomOptions.x - (mapConf.width / zoomLevel)/2), (mapConf.width - (mapConf.width / zoomLevel))); + panY = Math.min(Math.max(0, zoomOptions.y - (mapConf.height / zoomLevel)/2), (mapConf.height - (mapConf.height / zoomLevel))); + } + + paper.setViewBox(panX, panY, mapConf.width / zoomLevel, mapConf.height / zoomLevel); + } + $self.data({"zoomLevel" : newLevel, "panX" : panX, "panY" : panY, "zoomX" : zoomOptions.x, "zoomY" : zoomOptions.y}); + }); + + /** + * Update the zoom level of the map on mousewheel + */ + options.map.zoom.enabled && options.map.zoom.mousewheel && $self.on("mousewheel", function(e) { + var offset = $container.offset(), + initFactor = (options.map.width) ? ($.fn.mapael.maps[options.map.name].width / options.map.width) : ($.fn.mapael.maps[options.map.name].width / $container.width()) + , zoomLevel = (e.deltaY > 0) ? 1 : -1 + , zoomFactor = 1 / (1 + ($self.data("zoomLevel")) * options.map.zoom.step) + , x = zoomFactor * initFactor * (e.clientX + $(window).scrollLeft() - offset.left) + $self.data("panX") + , y = zoomFactor * initFactor * (e.clientY + $(window).scrollTop() - offset.top) + $self.data("panY"); + + $self.trigger("zoom", {fixedCenter : true, "level" : $self.data("zoomLevel") + zoomLevel, "x" : x, "y" : y}); + + return false; + }); + + // Enable zoom + if (options.map.zoom.enabled) + $.fn.mapael.initZoom($container, paper, mapConf.width, mapConf.height, options.map.zoom); + + // Set initial zoom + if (typeof options.map.zoom.init != "undefined") { + $self.trigger("zoom", options.map.zoom.init); + } + + // Create the legends for areas + $.merge(legends, $.fn.mapael.createLegends($self, options, "area", areas, 1)); + + /** + * + * Update the current map + * Refresh attributes and tooltips for areas and plots + * @param updatedOptions options to update for plots and areas + * @param newPlots new plots to add to the map + * @param deletedPlotsplots to delete from the map + * @param opt option for the refresh : + * opt.animDuration animation duration in ms (default = 0) + * opt.resetAreas true to reset previous areas options + * opt.resetPlots true to reset previous plots options + * opt.afterUpdate Hook that allows to add custom processing on the map + */ + $self.on("update", function(e, updatedOptions, newPlots, deletedPlots, opt) { + var i = 0 + , id = 0 + , animDuration = 0 + , elemOptions = {}; + + // Reset hidden map elements (when user click on legend elements) + legends.forEach(function(el) { + el.forEach && el.forEach(function(el) { + if(typeof el.hidden != "undefined" && el.hidden == true) { + $(el.node).trigger("click"); + } + }) + }); + + if (typeof opt != "undefined") { + (opt.resetAreas) && (options.areas = {}); + (opt.resetPlots) && (options.plots = {}); + (opt.animDuration) && (animDuration = opt.animDuration); + } + + $.extend(true, options, updatedOptions); + + // Delete plots + if (typeof deletedPlots == "object") { + for (;i < deletedPlots.length; i++) { + if (typeof plots[deletedPlots[i]] != "undefined") { + if (animDuration > 0) { + (function(plot) { + plot.mapElem.animate({"opacity":0}, animDuration, "linear", function() {plot.mapElem.remove();}); + if (plot.textElem) { + plot.textElem.animate({"opacity":0}, animDuration, "linear", function() {plot.textElem.remove();}); + } + })(plots[deletedPlots[i]]); + } else { + plots[deletedPlots[i]].mapElem.remove(); + if (plots[deletedPlots[i]].textElem) { + plots[deletedPlots[i]].textElem.remove(); + } + } + delete plots[deletedPlots[i]]; + } + } + } + + // New plots + if (typeof newPlots == "object") { + for (id in newPlots) { + if (typeof plots[id] == "undefined") { + options.plots[id] = newPlots[id]; + plots[id] = $.fn.mapael.drawPlot(id, options, mapConf, paper, $tooltip); + if (animDuration > 0) { + plots[id].mapElem.attr({opacity : 0}); + plots[id].textElem.attr({opacity : 0}); + plots[id].mapElem.animate({"opacity": (typeof plots[id].mapElem.originalAttrs.opacity != "undefined") ? plots[id].mapElem.originalAttrs.opacity : 1}, animDuration); + plots[id].textElem.animate({"opacity": (typeof plots[id].textElem.originalAttrs.opacity != "undefined") ? plots[id].textElem.originalAttrs.opacity : 1}, animDuration); + } + } + } + } + + // Update areas attributes and tooltips + for (id in areas) { + elemOptions = $.fn.mapael.getElemOptions( + options.map.defaultArea + , (options.areas[id] ? options.areas[id] : {}) + , options.legend.area + ); + + $.fn.mapael.updateElem(elemOptions, areas[id], $tooltip, animDuration); + } + + // Update plots attributes and tooltips + for (id in plots) { + elemOptions = $.fn.mapael.getElemOptions( + options.map.defaultPlot + , (options.plots[id] ? options.plots[id] : {}) + , options.legend.plot + ); + if (elemOptions.type == "square") { + elemOptions.attrs.width = elemOptions.size; + elemOptions.attrs.height = elemOptions.size; + elemOptions.attrs.x = plots[id].mapElem.attrs.x - (elemOptions.size - plots[id].mapElem.attrs.width) / 2; + elemOptions.attrs.y = plots[id].mapElem.attrs.y - (elemOptions.size - plots[id].mapElem.attrs.height) / 2; + } else if (elemOptions.type == "image") { + elemOptions.attrs.x = plots[id].mapElem.attrs.x - (elemOptions.width - plots[id].mapElem.attrs.width) / 2; + elemOptions.attrs.y = plots[id].mapElem.attrs.y - (elemOptions.height - plots[id].mapElem.attrs.height) / 2; + } else { // Default : circle + elemOptions.attrs.r = elemOptions.size / 2; + } + + $.fn.mapael.updateElem(elemOptions, plots[id], $tooltip, animDuration); + } + + if(typeof opt != "undefined") + opt.afterUpdate && opt.afterUpdate($self, paper, areas, plots, options); + }); + + // Handle resizing of the map + if (options.map.width) { + paper.setSize(options.map.width, mapConf.height * (options.map.width / mapConf.width)); + + // Create the legends for plots taking into account the scale of the map + $.merge(legends, $.fn.mapael.createLegends($self, options, "plot", plots, (options.map.width / mapConf.width))); + } else { + $(window).on("resize", function() { + clearTimeout(resizeTO); + resizeTO = setTimeout(function(){$container.trigger("resizeEnd");}, 150); + }); + + // Create the legends for plots taking into account the scale of the map + var createPlotLegend = function() { + $.merge(legends, $.fn.mapael.createLegends($self, options, "plot", plots, ($container.width() / mapConf.width))); + + $container.unbind("resizeEnd", createPlotLegend); + }; + + $container.on("resizeEnd", function() { + var containerWidth = $container.width(); + if (paper.width != containerWidth) { + paper.setSize(containerWidth, mapConf.height * (containerWidth / mapConf.width)); + } + }).on("resizeEnd", createPlotLegend).trigger("resizeEnd"); + } + + // Hook that allows to add custom processing on the map + options.map.afterInit && options.map.afterInit($self, paper, areas, plots, options); + + $(paper.desc).append(" and Mapael (http://www.vincentbroute.fr/mapael/)"); + }); + }; + + /** + * Init the element "elem" on the map (drawing, setting attributes, events, tooltip, ...) + */ + $.fn.mapael.initElem = function(paper, elem, options, $tooltip, id) { + var bbox = {}, textPosition = {}; + if (typeof options.value != "undefined") + elem.value = options.value; + + // Init attrsHover + $.fn.mapael.setHoverOptions(elem.mapElem, options.attrs, options.attrsHover); + + // Init the label related to the element + if (options.text && typeof options.text.content != "undefined") { + // Set a text label in the area + bbox = elem.mapElem.getBBox(); + textPosition = $.fn.mapael.getTextPosition(bbox, options.text.position, options.text.margin); + options.text.attrs["text-anchor"] = textPosition.textAnchor; + elem.textElem = paper.text(textPosition.x, textPosition.y, options.text.content).attr(options.text.attrs); + $.fn.mapael.setHoverOptions(elem.textElem, options.text.attrs, options.text.attrsHover); + options.eventHandlers && $.fn.mapael.setEventHandlers(id, options, elem.mapElem, elem.textElem); + $.fn.mapael.setHover(paper, elem.mapElem, elem.textElem); + $(elem.textElem.node).attr("data-id", id); + } else { + options.eventHandlers && $.fn.mapael.setEventHandlers(id, options, elem.mapElem); + $.fn.mapael.setHover(paper, elem.mapElem); + } + + // Init the tooltip + if (options.tooltip && options.tooltip.content) { + elem.mapElem.tooltipContent = options.tooltip.content; + $.fn.mapael.setTooltip(elem.mapElem, $tooltip); + + if (options.text && typeof options.text.content != "undefined") { + elem.textElem.tooltipContent = options.tooltip.content; + $.fn.mapael.setTooltip(elem.textElem, $tooltip); + } + } + + // Init the link + if (options.href) { + elem.mapElem.href = options.href; + elem.mapElem.target = options.target; + $.fn.mapael.setHref(elem.mapElem); + + if (options.text && typeof options.text.content != "undefined") { + elem.textElem.href = options.href; + elem.textElem.target = options.target; + $.fn.mapael.setHref(elem.textElem); + } + } + + $(elem.mapElem.node).attr("data-id", id); + }; + + /** + * Draw all links between plots on the paper + */ + $.fn.mapael.drawLinksCollection = function(paper, options, getCoords, $tooltip) { + var p1 = {} + , p2 = {} + , elemOptions = {} + , coordsP1 = {} + , coordsP2 ={}; + + for (var id in options.links) { + elemOptions = $.fn.mapael.getElemOptions(options.map.defaultLink, options.links[id], {}); + + if (typeof options.links[id].between[0] == 'string') { + p1 = options.plots[options.links[id].between[0]]; + } else { + p1 = options.links[id].between[0]; + } + + if (typeof options.links[id].between[1] == 'string') { + p2 = options.plots[options.links[id].between[1]]; + } else { + p2 = options.links[id].between[1]; + } + + if (typeof p1.latitude != "undefined" && typeof p1.longitude != "undefined") { + coordsP1 = getCoords(p1.latitude, p1.longitude); + } else { + coordsP1.x = p1.x; + coordsP1.y = p1.y; + } + + if (typeof p2.latitude != "undefined" && typeof p2.longitude != "undefined") { + coordsP2 = getCoords(p2.latitude, p2.longitude); + } else { + coordsP2.x = p2.x; + coordsP2.y = p2.y; + } + $.fn.mapael.drawLink(id, paper, coordsP1.x, coordsP1.y, coordsP2.x, coordsP2.y, elemOptions, $tooltip); + } + }; + + /** + * Draw a curved link between two couples of coordinates a(xa,ya) and b(xb, yb) on the paper + */ + $.fn.mapael.drawLink = function(id, paper, xa, ya, xb, yb, elemOptions, $tooltip) { + var elem = {} + + // Compute the "curveto" SVG point, d(x,y) + // c(xc, yc) is the center of (xa,ya) and (xb, yb) + , xc = (xa + xb) / 2 + , yc = (ya + yb) / 2 + + // Equation for (cd) : y = acd * x + bcd (d is the cure point) + , acd = - 1 / ((yb - ya) / (xb - xa)) + , bcd = yc - acd * xc + + // dist(c,d) = dist(a,b) (=abDist) + , abDist = Math.sqrt((xb-xa)*(xb-xa) + (yb-ya)*(yb-ya)) + + // Solution for equation dist(cd) = sqrt((xd - xc)² + (yd - yc)²) + // dist(c,d)² = (xd - xc)² + (yd - yc)² + // We assume that dist(c,d) = dist(a,b) + // so : (xd - xc)² + (yd - yc)² - dist(a,b)² = 0 + // With the factor : (xd - xc)² + (yd - yc)² - (factor*dist(a,b))² = 0 + // (xd - xc)² + (acd*xd + bcd - yc)² - (factor*dist(a,b))² = 0 + , a = 1 + acd*acd + , b = -2 * xc + 2*acd*bcd - 2 * acd*yc + , c = xc*xc + bcd*bcd - bcd*yc - yc*bcd + yc*yc - ((elemOptions.factor*abDist) * (elemOptions.factor*abDist)) + , delta = b*b - 4*a*c + , x = 0 + , y = 0; + + // There are two solutions, we choose one or the other depending on the sign of the factor + if (elemOptions.factor > 0) { + x = (-b + Math.sqrt(delta)) / (2*a); + y = acd * x + bcd; + } else { + x = (-b - Math.sqrt(delta)) / (2*a); + y = acd * x + bcd; + } + + elem.mapElem = paper.path("m "+xa+","+ya+" C "+x+","+y+" "+xb+","+yb+" "+xb+","+yb+"").attr(elemOptions.attrs); + $.fn.mapael.initElem(paper, elem, elemOptions, $tooltip, id); + + return elem; + }; + + /** + * Update the element "elem" on the map with the new elemOptions options + */ + $.fn.mapael.updateElem = function(elemOptions, elem, $tooltip, animDuration) { + var bbox, textPosition, plotOffset; + if (typeof elemOptions.value != "undefined") + elem.value = elemOptions.value; + + // Update the label + if (elem.textElem) { + if (typeof elemOptions.text != "undefined" && typeof elemOptions.text.content != "undefined" && elemOptions.text.content != elem.textElem.attrs.text) + elem.textElem.attr({text : elemOptions.text.content}); + + bbox = elem.mapElem.getBBox(); + if (elemOptions.size) { + plotOffset = (elemOptions.size - bbox.height) / 2; + bbox.x -= plotOffset; + bbox.x2 += plotOffset; + bbox.y -= plotOffset; + bbox.y2 += plotOffset; + } + textPosition = $.fn.mapael.getTextPosition(bbox, elemOptions.text.position, elemOptions.text.margin); + if (textPosition.x != elem.textElem.attrs.x || textPosition.y != elem.textElem.attrs.y) { + if (animDuration > 0) { + elem.textElem.attr({"text-anchor" : textPosition.textAnchor}); + elem.textElem.animate({x : textPosition.x, y : textPosition.y}, animDuration); + } else + elem.textElem.attr({x : textPosition.x, y : textPosition.y, "text-anchor" : textPosition.textAnchor}); + } + + $.fn.mapael.setHoverOptions(elem.textElem, elemOptions.text.attrs, elemOptions.text.attrsHover); + if (animDuration > 0) + elem.textElem.animate(elemOptions.text.attrs, animDuration); + else + elem.textElem.attr(elemOptions.text.attrs); + } + + // Update elements attrs and attrsHover + $.fn.mapael.setHoverOptions(elem.mapElem, elemOptions.attrs, elemOptions.attrsHover); + if (animDuration > 0) + elem.mapElem.animate(elemOptions.attrs, animDuration); + else + elem.mapElem.attr(elemOptions.attrs); + + // Update the tooltip + if (elemOptions.tooltip && typeof elemOptions.tooltip.content != "undefined") { + if (typeof elem.mapElem.tooltipContent == "undefined") { + $.fn.mapael.setTooltip(elem.mapElem, $tooltip); + (elem.textElem) && $.fn.mapael.setTooltip(elem.textElem, $tooltip); + } + elem.mapElem.tooltipContent = elemOptions.tooltip.content; + (elem.textElem) && (elem.textElem.tooltipContent = elemOptions.tooltip.content); + } + + // Update the link + if (typeof elemOptions.href != "undefined") { + if (typeof elem.mapElem.href == "undefined") { + $.fn.mapael.setHref(elem.mapElem); + (elem.textElem) && $.fn.mapael.setHref(elem.textElem); + } + elem.mapElem.href = elemOptions.href; + elem.mapElem.target = elemOptions.target; + if (elem.textElem) { + elem.textElem.href = elemOptions.href; + elem.textElem.target = elemOptions.target; + } + } + }; + + /** + * Draw the plot + */ + $.fn.mapael.drawPlot = function(id, options, mapConf, paper, $tooltip) { + var plot = {} + , coords = {} + , elemOptions = $.fn.mapael.getElemOptions( + options.map.defaultPlot + , (options.plots[id] ? options.plots[id] : {}) + , options.legend.plot + ); + + if (typeof elemOptions.x != "undefined" && typeof elemOptions.y != "undefined") + coords = {x : elemOptions.x, y : elemOptions.y}; + else + coords = mapConf.getCoords(elemOptions.latitude, elemOptions.longitude); + + if (elemOptions.type == "square") { + plot = {"mapElem" : paper.rect( + coords.x - (elemOptions.size / 2) + , coords.y - (elemOptions.size / 2) + , elemOptions.size + , elemOptions.size + ).attr(elemOptions.attrs)}; + } else if (elemOptions.type == "image") { + plot = { + "mapElem" : paper.image( + elemOptions.url + , coords.x - elemOptions.width / 2 + , coords.y - elemOptions.height / 2 + , elemOptions.width + , elemOptions.height + ).attr(elemOptions.attrs) + }; + } else { // Default = circle + plot = {"mapElem" : paper.circle(coords.x, coords.y, elemOptions.size / 2).attr(elemOptions.attrs)}; + } + + $.fn.mapael.initElem(paper, plot, elemOptions, $tooltip, id); + + return plot; + }; + + /** + * Set target link on elem + */ + $.fn.mapael.setHref = function(elem) { + elem.attr({cursor : "pointer"}); + $(elem.node).bind("click", function() { + if (!$.fn.mapael.panning && elem.href) + window.open(elem.href, elem.target); + }); + }; + + /** + * Set a tooltip for the areas and plots + * @param elem area or plot element + * @param $tooltip the tooltip container + * @param content the content to set in the tooltip + */ + $.fn.mapael.setTooltip = function(elem, $tooltip) { + var tooltipTO = 0 + , $container = $tooltip.parent() + , containerY2 = $container.offset().left + $container.width(); + + $(elem.node).on("mouseover", function(e) { + tooltipTO = setTimeout( + function() { + elem.tooltipContent && $tooltip.html(elem.tooltipContent).css("display", "block"); + $tooltip.css({"left" : Math.min(containerY2 - $tooltip.outerWidth() - 5, e.pageX + 10 - $(window).scrollLeft()), "top" : e.pageY + 20 - $(window).scrollTop()}); + } + , 120 + ); + }).on("mouseout", function(e) { + clearTimeout(tooltipTO); + $tooltip.css("display", "none"); + }).on("mousemove", function(e) { + $tooltip.css({"left" : Math.min(containerY2 - $tooltip.outerWidth() - 5, e.pageX + 10 - $(window).scrollLeft()), "top" : e.pageY + 20 - $(window).scrollTop()}); + }); + }; + + /** + * Set user defined handlers for events on areas and plots + * @param id the id of the element + * @param elemOptions the element parameters + * @param mapElem the map element to set callback on + * @param textElem the optional text within the map element + */ + $.fn.mapael.setEventHandlers = function(id, elemOptions, mapElem, textElem) { + for(var event in elemOptions.eventHandlers) { + (function(event) { + $(mapElem.node).on(event, function(e) {!$.fn.mapael.panning && elemOptions.eventHandlers[event](e, id, mapElem, textElem, elemOptions)}); + textElem && $(textElem.node).on(event, function(e) {!$.fn.mapael.panning && elemOptions.eventHandlers[event](e, id, mapElem, textElem, elemOptions)}); + })(event); + } + }; + + $.fn.mapael.panning = false; + + /** + * Init zoom and panning for the map + * @param $container + * @param paper + * @param mapWidth + * @param mapHeight + * @param options + */ + $.fn.mapael.initZoom = function($container, paper, mapWidth, mapHeight, options) { + var $parentContainer = $container.parent() + , $zoomIn = $("
").addClass(options.zoomInCssClass).html("+") + , $zoomOut = $("
").addClass(options.zoomOutCssClass).html("−") + , mousedown = false + , previousX = 0 + , previousY = 0; + + // Zoom + $parentContainer.data("zoomLevel", 0).data({"panX" : 0, "panY" : 0}); + $container.append($zoomIn).append($zoomOut); + + $zoomIn.on("click", function() {$parentContainer.trigger("zoom", {"level" : $parentContainer.data("zoomLevel") + 1});}); + $zoomOut.on("click", function() {$parentContainer.trigger("zoom", {"level" : $parentContainer.data("zoomLevel") - 1});}); + + // Panning + $("body").on("mouseup", function(e) { + mousedown = false; + setTimeout(function () {$.fn.mapael.panning = false;}, 50); + }); + + $container.on("mousedown", function(e) { + mousedown = true; + previousX = e.pageX; + previousY = e.pageY; + return false; + }).on("mousemove", function(e) { + var currentLevel = $parentContainer.data("zoomLevel"); + if (mousedown && currentLevel != 0) { + var offsetX = (previousX - e.pageX) / (1 + (currentLevel * options.step)) * (mapWidth / paper.width) + , offsetY = (previousY - e.pageY) / (1 + (currentLevel * options.step)) * (mapHeight / paper.height) + , panX = Math.min(Math.max(0, paper._viewBox[0] + offsetX), (mapWidth - paper._viewBox[2])) + , panY = Math.min(Math.max(0, paper._viewBox[1] + offsetY), (mapHeight - paper._viewBox[3])); + + if (Math.abs(offsetX) > 5 || Math.abs(offsetY) > 5) { + $parentContainer.data({"panX" : panX, "panY" : panY}); + + paper.setViewBox(panX, panY, paper._viewBox[2], paper._viewBox[3]); + + previousX = e.pageX; + previousY = e.pageY; + $.fn.mapael.panning = true; + } + } + return false; + }); + }; + + /** + * Draw a legend for areas and / or plots + * @param legendOptions options for the legend to draw + * @param $container the map container + * @param options map options object + * @param legendType the type of the legend : "area" or "plot" + * @param elems collection of plots or areas on the maps + * @param legendIndex index of the legend in the conf array + */ + $.fn.mapael.drawLegend = function (legendOptions, $container, options, legendType, elems, scale, legendIndex) { + var $legend = {} + , paper = {} + , width = 0 + , height = 0 + , title = {} + , elem = {} + , elemBBox = {} + , label = {} + , i = 0 + , x = 0 + , y = 0 + , yCenter = 0 + , sliceAttrs = [] + , length = 0; + + if (!legendOptions.slices || !legendOptions.display) + return; + + $legend = $("." + legendOptions.cssClass, $container).empty(); + paper = new Raphael($legend.get(0)); + height = width = 0; + + // Set the title of the legend + if(legendOptions.title) { + title = paper.text(legendOptions.marginLeftTitle, 0, legendOptions.title).attr(legendOptions.titleAttrs); + title.attr({y : 0.5 * title.getBBox().height}); + + width = legendOptions.marginLeftTitle + title.getBBox().width; + height += legendOptions.marginBottomTitle + title.getBBox().height; + } + + // Calculate attrs (and width, height and r (radius)) for legend elements, and yCenter for horizontal legends + for(i = 0, length = legendOptions.slices.length; i < length; ++i) { + if (typeof legendOptions.slices[i].legendSpecificAttrs == "undefined") + legendOptions.slices[i].legendSpecificAttrs = {}; + + sliceAttrs[i] = $.extend( + {} + , (legendType == "plot") ? options.map["defaultPlot"].attrs : options.map["defaultArea"].attrs + , legendOptions.slices[i].attrs + , legendOptions.slices[i].legendSpecificAttrs + ); + + if (legendType == "area") { + if (typeof sliceAttrs[i].width == "undefined") + sliceAttrs[i].width = 30; + if (typeof sliceAttrs[i].height == "undefined") + sliceAttrs[i].height = 20; + } else if (legendOptions.slices[i].type == "square") { + if (typeof sliceAttrs[i].width == "undefined") + sliceAttrs[i].width = legendOptions.slices[i].size; + if (typeof sliceAttrs[i].height == "undefined") + sliceAttrs[i].height = legendOptions.slices[i].size; + } else if (legendOptions.slices[i].type == "image") { + if (typeof sliceAttrs[i].width == "undefined") + sliceAttrs[i].width = legendOptions.slices[i].width; + if (typeof sliceAttrs[i].height == "undefined") + sliceAttrs[i].height = legendOptions.slices[i].height; + } else { + if (typeof sliceAttrs[i].r == "undefined") + sliceAttrs[i].r = legendOptions.slices[i].size / 2; + } + + if(legendOptions.slices[i].type == "image" || legendType == "area") { + yCenter = Math.max(yCenter, legendOptions.marginBottomTitle + title.getBBox().height + scale * sliceAttrs[i].height/2); + } else { + yCenter = Math.max(yCenter, legendOptions.marginBottomTitle + title.getBBox().height + scale * sliceAttrs[i].r); + } + } + + if (legendOptions.mode == "horizontal") { + width = legendOptions.marginLeft; + } + + // Draw legend elements (circle, square or image in vertical or horizontal mode) + for(i = 0, length = legendOptions.slices.length; i < length; ++i) { + if (typeof legendOptions.slices[i].display == "undefined" || legendOptions.slices[i].display == true) { + if(legendType == "area") { + if (legendOptions.mode == "horizontal") { + x = width + legendOptions.marginLeft; + y = yCenter - (0.5 * scale * sliceAttrs[i].height); + } else { + x = legendOptions.marginLeft; + y = height; + } + + elem = paper.rect(x, y, scale * (sliceAttrs[i].width), scale * (sliceAttrs[i].height)); + } else if(legendOptions.slices[i].type == "square") { + if (legendOptions.mode == "horizontal") { + x = width + legendOptions.marginLeft; + y = yCenter - (0.5 * scale * sliceAttrs[i].height); + } else { + x = legendOptions.marginLeft; + y = height; + } + + elem = paper.rect(x, y, scale * (sliceAttrs[i].width), scale * (sliceAttrs[i].height)); + + } else if(legendOptions.slices[i].type == "image") { + if (legendOptions.mode == "horizontal") { + x = width + legendOptions.marginLeft; + y = yCenter - (0.5 * scale * sliceAttrs[i].height); + } else { + x = legendOptions.marginLeft; + y = height; + } + + elem = paper.image( + legendOptions.slices[i].url, x, y, scale * sliceAttrs[i].width, scale * sliceAttrs[i].height); + } else { + if (legendOptions.mode == "horizontal") { + x = width + legendOptions.marginLeft + scale * (sliceAttrs[i].r); + y = yCenter; + } else { + x = legendOptions.marginLeft + scale * (sliceAttrs[i].r); + y = height + scale * (sliceAttrs[i].r); + } + elem = paper.circle(x, y, scale * (sliceAttrs[i].r)); + } + + // Set attrs to the element drawn above + delete sliceAttrs[i].width; + delete sliceAttrs[i].height; + delete sliceAttrs[i].r; + elem.attr(sliceAttrs[i]); + elemBBox = elem.getBBox(); + + // Draw the label associated with the element + if (legendOptions.mode == "horizontal") { + x = width + legendOptions.marginLeft + elemBBox.width + legendOptions.marginLeftLabel; + y = yCenter; + } else { + x = legendOptions.marginLeft + elemBBox.width + legendOptions.marginLeftLabel; + y = height + (elemBBox.height / 2); + } + + label = paper.text(x, y, legendOptions.slices[i].label).attr(legendOptions.labelAttrs); + + // Update the width and height for the paper + if (legendOptions.mode == "horizontal") { + width += legendOptions.marginLeft + elemBBox.width + legendOptions.marginLeftLabel + label.getBBox().width; + if(legendOptions.slices[i].type == "image" || legendType == "area") { + height = Math.max(height, legendOptions.marginBottom + title.getBBox().height + elemBBox.height); + } else { + height = Math.max(height, legendOptions.marginBottomTitle + legendOptions.marginBottom + title.getBBox().height + elemBBox.height); + } + } else { + width = Math.max(width, legendOptions.marginLeft + elemBBox.width + legendOptions.marginLeftLabel + label.getBBox().width); + height += legendOptions.marginBottom + elemBBox.height; + } + + $(elem.node).attr({"data-type": "elem", "data-index": i, "data-hidden": 0}); + $(label.node).attr({"data-type": "label", "data-index": i, "data-hidden": 0}); + + // Hide map elements when the user clicks on a legend item + if (legendOptions.hideElemsOnClick.enabled) { + // Hide/show elements when user clicks on a legend element + label.attr({cursor:"pointer"}); + elem.attr({cursor:"pointer"}); + + $.fn.mapael.setHoverOptions(elem, sliceAttrs[i], sliceAttrs[i]); + $.fn.mapael.setHoverOptions(label, legendOptions.labelAttrs, legendOptions.labelAttrsHover); + $.fn.mapael.setHover(paper, elem, label); + $.fn.mapael.handleClickOnLegendElem($container, legendOptions, legendOptions.slices[i], label, elem, elems, legendIndex); + } + } + } + + // VMLWidth option allows you to set static width for the legend + // only for VML render because text.getBBox() returns wrong values on IE6/7 + if (Raphael.type != "SVG" && legendOptions.VMLWidth) + width = legendOptions.VMLWidth; + + paper.setSize(width, height); + return paper; + }; + + /** + * Allow to hide elements of the map when the user clicks on a related legend item + * @param $container the map container + * @param legendOptions options for the legend to draw + * @param sliceOptions options of the slice + * @param label label of the legend item + * @param elem element of the legend item + * @param elems collection of plots or areas displayed on the map + * @param legendIndex index of the legend in the conf array + */ + $.fn.mapael.handleClickOnLegendElem = function($container, legendOptions, sliceOptions, label, elem, elems, legendIndex) { + var hideMapElems = function(e, hideOtherElems) { + var elemValue = 0 + , hidden = $(label.node).attr('data-hidden') + , hiddenNewAttr = (hidden == 0) ? {"data-hidden": 1} : {"data-hidden": 0}; + + if (hidden == 0) { + label.animate({"opacity":0.5}, 300); + } else { + label.animate({"opacity":1}, 300); + } + + for (var id in elems) { + if ($.isArray(elems[id].value)) { + elemValue = elems[id].value[legendIndex]; + } else { + elemValue = elems[id].value; + } + + if ((typeof sliceOptions.sliceValue != "undefined" && elemValue == sliceOptions.sliceValue) + || ((typeof sliceOptions.sliceValue == "undefined") + && (typeof sliceOptions.min == "undefined" || elemValue >= sliceOptions.min) + && (typeof sliceOptions.max == "undefined" || elemValue < sliceOptions.max)) + ) { + (function(id) { + if (hidden == 0) { + elems[id].mapElem.animate({"opacity":legendOptions.hideElemsOnClick.opacity}, 300, "linear", function() {(legendOptions.hideElemsOnClick.opacity == 0) && elems[id].mapElem.hide();}); + elems[id].textElem && elems[id].textElem.animate({"opacity":legendOptions.hideElemsOnClick.opacity}, 300, "linear", function() {(legendOptions.hideElemsOnClick.opacity == 0) && elems[id].textElem.hide();}); + } else { + if (legendOptions.hideElemsOnClick.opacity == 0) { + elems[id].mapElem.show(); + elems[id].textElem && elems[id].textElem.show(); + } + elems[id].mapElem.animate({"opacity":typeof elems[id].mapElem.originalAttrs.opacity != "undefined" ? elems[id].mapElem.originalAttrs.opacity : 1}, 300); + elems[id].textElem && elems[id].textElem.animate({"opacity":typeof elems[id].textElem.originalAttrs.opacity != "undefined" ? elems[id].textElem.originalAttrs.opacity : 1}, 300); + } + })(id); + } + } + + $(elem.node).attr(hiddenNewAttr); + $(label.node).attr(hiddenNewAttr); + + if ((typeof hideOtherElems === "undefined" || hideOtherElems === true) + && typeof legendOptions.exclusive !== "undefined" && legendOptions.exclusive === true + ) { + $("[data-type='elem'][data-hidden=0]", $container).each(function() { + if ($(this).attr('data-index') !== $(elem.node).attr('data-index')) { + $(this).trigger('click', false); + } + }); + } + }; + $(label.node).on("click", hideMapElems); + $(elem.node).on("click", hideMapElems); + + if (typeof sliceOptions.hidden !== "undefined" && sliceOptions.hidden === true) { + $(elem.node).trigger('click', false); + } + }; + + /** + * Create all legends for a specified type (area or plot) + * @param $container the map container + * @param options map options + * @param legendType the type of the legend : "area" or "plot" + * @param elems collection of plots or areas displayed on the map + * @param scale scale ratio of the map + */ + $.fn.mapael.createLegends = function ($container, options, legendType, elems, scale) { + var legends = []; + + if ($.isArray(options.legend[legendType])) { + for (var j = 0; j < options.legend[legendType].length; ++j) { + legends.push($.fn.mapael.drawLegend(options.legend[legendType][j], $container, options, legendType, elems, scale, j)); + } + } else { + legends.push($.fn.mapael.drawLegend(options.legend[legendType], $container, options, legendType, elems, scale)); + } + return legends; + }; + + /** + * Set the attributes on hover and the attributes to restore for a map element + * @param elem the map element + * @param originalAttrs the original attributes to restore on mouseout event + * @param attrsHover the attributes to set on mouseover event + */ + $.fn.mapael.setHoverOptions = function (elem, originalAttrs, attrsHover) { + // Disable transform option on hover for VML (IE<9) because of several bugs + if (Raphael.type != "SVG") delete attrsHover.transform; + elem.attrsHover = attrsHover; + + if (elem.attrsHover.transform) elem.originalAttrs = $.extend({transform : "s1"}, originalAttrs); + else elem.originalAttrs = originalAttrs; + }; + + /** + * Set the hover behavior (mouseover & mouseout) for plots and areas + * @param paper Raphael paper object + * @param mapElem the map element + * @param textElem the optional text element (within the map element) + */ + $.fn.mapael.setHover = function (paper, mapElem, textElem) { + var $mapElem = {} + , $textElem = {} + , hoverTO = 0 + , overBehaviour = function() {hoverTO = setTimeout(function () {$.fn.mapael.elemHover(paper, mapElem, textElem);}, 120);} + , outBehaviour = function () {clearTimeout(hoverTO);$.fn.mapael.elemOut(paper, mapElem, textElem);}; + + $mapElem = $(mapElem.node); + $mapElem.on("mouseover", overBehaviour); + $mapElem.on("mouseout", outBehaviour); + + if (textElem) { + $textElem = $(textElem.node); + $textElem.on("mouseover", overBehaviour); + $(textElem.node).on("mouseout", outBehaviour); + } + }; + + /** + * Set he behaviour for "mouseover" event + * @param paper paper Raphael paper object + * @param mapElem mapElem the map element + * @param textElem the optional text element (within the map element) + */ + $.fn.mapael.elemHover = function (paper, mapElem, textElem) { + mapElem.animate(mapElem.attrsHover, mapElem.attrsHover.animDuration); + textElem && textElem.animate(textElem.attrsHover, textElem.attrsHover.animDuration); + paper.safari(); + }; + + /** + * Set he behaviour for "mouseout" event + * @param paper Raphael paper object + * @param mapElem the map element + * @param textElem the optional text element (within the map element) + */ + $.fn.mapael.elemOut = function (paper, mapElem, textElem) { + mapElem.animate(mapElem.originalAttrs, mapElem.attrsHover.animDuration); + textElem && textElem.animate(textElem.originalAttrs, textElem.attrsHover.animDuration); + paper.safari(); + }; + + /** + * Get element options by merging default options, element options and legend options + * @param defaultOptions + * @param elemOptions + * @param legendOptions + */ + $.fn.mapael.getElemOptions = function(defaultOptions, elemOptions, legendOptions) { + var options = $.extend(true, {}, defaultOptions, elemOptions); + if (typeof options.value != "undefined") { + if ($.isArray(legendOptions)) { + for (var i = 0, length = legendOptions.length;i= legend.slices[i].min) + && (typeof legend.slices[i].max == "undefined" || value < legend.slices[i].max)) + ) { + return legend.slices[i]; + } + } + return {}; + }; + + // Default map options + $.fn.mapael.defaultOptions = { + map : { + cssClass : "map" + , tooltip : { + cssClass : "mapTooltip", + target: null + } + , defaultArea : { + attrs : { + fill : "#343434" + , stroke : "#5d5d5d" + , "stroke-width" : 1 + , "stroke-linejoin" : "round" + } + , attrsHover : { + fill : "#f38a03" + , animDuration : 300 + } + , text : { + position : "inner" + , margin : 10 + , attrs : { + "font-size" : 15 + , fill : "#c7c7c7" + } + , attrsHover : { + fill : "#eaeaea" + , "animDuration" : 300 + } + } + , target : "_self" + } + , defaultPlot : { + type : "circle" + , size : 15 + , attrs : { + fill : "#0088db" + , stroke : "#fff" + , "stroke-width" : 0 + , "stroke-linejoin" : "round" + } + , attrsHover : { + "stroke-width" : 3 + , animDuration : 300 + } + , text : { + position : "right" + , margin : 10 + , attrs : { + "font-size" : 15 + , fill : "#c7c7c7" + } + , attrsHover : { + fill : "#eaeaea" + , animDuration : 300 + } + } + , target : "_self" + } + , defaultLink : { + factor : 0.5 + , attrs : { + stroke : "#0088db" + , "stroke-width" : 2 + } + , attrsHover : { + animDuration : 300 + } + , text : { + position : "inner" + , margin : 10 + , attrs : { + "font-size" : 15 + , fill : "#c7c7c7" + } + , attrsHover : { + fill : "#eaeaea" + , animDuration : 300 + } + } + , target : "_self" + } + , zoom : { + enabled : false + , maxLevel : 5 + , step : 0.25 + , zoomInCssClass : "zoomIn" + , zoomOutCssClass : "zoomOut" + , mousewheel : true + } + } + , legend : { + area : [] + , plot : [] + } + , areas : {} + , plots : {} + , links : {} + }; + + $.fn.mapael.legendDefaultOptions = { + area : { + cssClass : "areaLegend" + , display : true + , marginLeft : 10 + , marginLeftTitle : 5 + , marginBottomTitle: 10 + , marginLeftLabel : 10 + , marginBottom : 10 + , titleAttrs : { + "font-size" : 16 + , fill : "#343434" + , "text-anchor" : "start" + } + , labelAttrs : { + "font-size" : 12 + , fill : "#343434" + , "text-anchor" : "start" + } + , labelAttrsHover : { + fill : "#787878" + , animDuration : 300 + } + , hideElemsOnClick : { + enabled : true + , opacity : 0.2 + } + , slices : [] + , mode : "vertical" + } + , plot : { + cssClass : "plotLegend" + , display : true + , marginLeft : 10 + , marginLeftTitle : 5 + , marginBottomTitle: 10 + , marginLeftLabel : 10 + , marginBottom : 10 + , titleAttrs : { + "font-size" : 16 + , fill : "#343434" + , "text-anchor" : "start" + } + , labelAttrs : { + "font-size" : 12 + , fill : "#343434" + , "text-anchor" : "start" + } + , labelAttrsHover : { + fill : "#787878" + , animDuration : 300 + } + , hideElemsOnClick : { + enabled : true + , opacity : 0.2 + } + , slices : [] + , mode : "vertical" + } + }; +})(jQuery); diff --git a/lib/jQuery-Mapael/js/maps/france_departments.js b/lib/jQuery-Mapael/js/maps/france_departments.js new file mode 100644 index 000000000..5587c2863 --- /dev/null +++ b/lib/jQuery-Mapael/js/maps/france_departments.js @@ -0,0 +1,142 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of metropolitan France by department +* Equirectangular projection + +* @author Vincent Brouté +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_departments : { + width : 600.08728, + height : 626.26221, + getCoords : function (lat, lon) { + // Corse + if (lat < 43.15710 && lon > 8.17199) { + var xfactor = 43.64246; + var xoffset = 181.34520; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.77758; + var yoffset = 3346.37839; + var y = (lat * yfactor) + yoffset; + } else { + var xfactor = 45.48385; + var xoffset = 220.22005; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3371.10748; + var y = (lat * yfactor) + yoffset; + } + return {x : x, y : y}; + }, + elems : { + "department-29" : "m 37.28,156.11 c -1.42,1.23 -3.84,1.18 -3.99,3.49 -1.31,-2.24 -8,-0.27 -6.23,1.86 -0.83,0.29 -3.61,-0.09 -4.72,1.08 1.27,-3.15 -2.84,-2.76 -4.74,-1.32 -1.52,0.3 0.5,1.51 -1.67,1.26 -1.43,1.46 -5.78,-1.22 -5,1.7 2.01,2.28 -4.44,-1.17 -2.19,2.21 2.05,2.35 -1.91,-1.21 -3.2,0.17 -2.44,0.46 -5.9,3.28 -4.27,6.2 1.31,1.03 -2.45,2.79 -0.89,4.68 1.85,1.54 -1.54,4.66 1.85,4.99 2.29,0.7 2.49,-2.98 4.87,-0.96 3.08,0.74 5.89,-2.07 8.89,-2.74 1.93,-0.34 5.67,-2.04 6.34,-1.85 -2,1.78 -5.83,1.89 -6.41,4.93 -0.69,1.92 2.11,-0.67 2.33,1.07 1.34,-0.89 2.68,-1.87 3.94,-1.39 3.81,-2.03 -2.75,2.24 0.52,1.99 1.47,0.34 4.01,0.96 4.33,1.46 -1.94,0.3 -3.28,1.07 -4.57,-0.08 -2.38,0.71 -4.58,1.45 -6.63,0.05 -2.75,0.86 -5.75,0.61 -4.18,-2.84 -3.29,-0.24 -0.4,5.1 -3.79,3.67 -1.2,2.84 5.41,0.67 2.62,3.42 0.89,1.41 -0.15,5.78 1.86,2.76 0.83,-2.29 2.62,-4.57 5.09,-2.36 1.97,1.37 5.1,0.79 5.41,4 1.86,2.04 -0.29,6.23 -3,3.6 -3.95,0.62 -7.67,1.95 -11.58,2.45 -2.09,0.38 -5.98,-0.08 -4.41,2.7 2.53,0.06 4.87,1.62 7.03,1.82 2.62,-1.48 5.9,3.16 7.51,5.27 1.61,2.44 2.66,5.4 0.91,7.66 1.94,1.19 5.11,1.18 7.5,0.75 1.99,-0.45 3.16,-2.44 1.04,-3.28 -1.05,-1.98 0.82,-2.27 1.51,-0.45 3.34,0.23 -0.63,-4.11 0.69,-3.65 0.91,2.75 3.66,3.46 5.82,3.53 2.26,0.86 -0.02,-4.66 2.92,-2.01 2.11,1.7 2.69,4.22 4.57,6.13 2.01,0.11 4.17,0.12 6.01,-0.65 1.82,2.12 5.68,2.27 8.25,2.23 1.8,-1.51 -1.55,-4.66 0.95,-5.09 0.94,2.57 3.24,-0.19 3.58,-1.33 2.95,0.23 0.38,-3.13 2.08,-4.2 -0.21,-1.43 -0.64,-3.61 -2.53,-1.94 -1.44,2.09 -1.76,-1.59 -3.7,-1.52 -2.13,-1.41 -5.77,1.37 -6.1,-2.55 -0.44,-2.07 -2.04,-3.22 -2.32,-5.05 -2.23,-0.45 0.49,-4.53 2.59,-4.02 1.42,-1.43 5.76,-1.87 5.77,-3.15 -3.54,-1.5 2.53,-4.55 -0.88,-5.73 0.6,-1.35 -0.87,-3.79 -0.56,-5.72 -3.53,0.13 -1.65,-3.79 0.06,-4.6 -3.56,-1.53 -0.98,-4.21 0.33,-6.05 -1.3,-1.16 -2.22,-1.16 -1.99,-2.94 -3.12,-0.26 -3.41,-4.67 -2.3,-6.54 -0.38,-1.53 -3.23,-0.42 -4.45,-1.94 -2.01,-0.12 -5.18,-1.19 -4.7,2.29 -0.84,1.4 0.25,4.35 -1.82,2.22 -1.36,-0.49 -0.48,-3.38 -2.36,-1.3 -1.28,1.93 -1.52,-3.86 -1.99,-4.38 z m -9.88,28.66 0,0.02 0,-0.02 z", + "department-22" : "m 77.67,146.73 c -2.58,0.94 -4.37,2.6 -5.78,4.84 1.21,-2.76 0.01,-6.18 -2.26,-2.58 -2.86,-0.54 -4.85,2.02 -7.32,2.35 0.05,-2.38 -5.14,-2.89 -4.97,-0.27 -1.65,0.69 -2.79,2.55 -0.54,3.83 1.42,1.41 -3.19,1.12 -1.21,3.58 0.75,2.79 -2.62,-0.53 -2.95,1.74 -2.03,2.25 0.93,5.14 2.73,6.11 -0.89,1.81 3.77,1.87 0.94,3.62 -2.27,1.33 -1.69,4.1 0.71,4.68 -2.37,0.99 -3.54,4.66 -0.18,4.93 -0.75,1.8 0.34,4.07 1.35,3.89 -2.23,1.45 2.07,3.31 -1.02,4.81 -1.32,1.63 3.39,3.81 -0.37,3.46 -0,1.68 3.4,-0.17 4.6,0.64 2.17,-1.15 0.09,3.47 2.84,1.65 2.78,-2.51 5.12,2.28 8.16,0.11 1.28,-1.21 4.21,0.16 3.71,-2.72 2.36,-2.11 5.53,-0.32 6.55,2.07 3.1,-1.66 5.66,1.79 8.52,1.44 1.09,1.13 1.31,4.63 2.54,1.67 1.77,0.69 4.7,-2.67 4.36,1 -1.42,1.92 -0.06,5.98 2.29,3.25 2.15,-1.33 3.24,-3.52 3.71,-5.84 -1.55,-1.8 3.03,-1.29 4.1,-2.17 2.56,0.5 2.84,5.71 5.3,2.6 2.48,-0.52 4.76,-2.21 4.35,-5.23 2.66,1.35 0.38,-3.98 3.68,-3.07 2.3,0.76 0.88,-1.21 2.74,-1.68 0.93,-2.46 3.26,2.1 3.88,-0.74 2.87,-0.05 0.28,-3.49 2.75,-3.67 -0.67,-1.88 -0.1,-4.12 -0.62,-6.07 1.57,-1.46 2.25,-5.3 0.59,-6.78 -0.36,1.32 -2.86,3.56 -2.08,0.75 -0.58,-2.28 -2.24,-1.04 -3,-0.66 -0.39,-2.19 -3.7,-1.69 -4.26,-4.29 -2.01,-0.96 -0.92,3.96 -2.61,1.33 -0.93,2.11 -1.72,-1.85 -2.25,-2.64 -0.23,-2.69 -5.02,3.57 -3.11,-0.38 2.12,-1.4 -0.5,-4.55 -1.42,-1.9 -1.94,1.15 -2.92,1.92 -4.85,1.1 -2.9,-0.12 0.52,1.54 -2.1,2.49 -3.58,0.78 -5.19,5.69 -8.5,5.48 0.49,3.36 -2.74,-0.19 -2.06,-1.81 -2.95,-1.1 -4.73,-3.24 -4.7,-6.38 -2,-2 -5.44,-3.63 -5.11,-6.81 -0.95,-1.07 -6.79,-1.08 -3.38,-3.09 0.47,-2.76 -4.12,-1.19 -3.66,1.11 -0.44,1.73 -2.27,2.41 -0.65,0.39 1.33,-1.47 1.44,-4.62 0.53,-6.14 z", + "department-56" : "m 78.99,190.76 c -3.41,-1.13 -2.2,3.92 -5.32,2.9 -1.41,0.4 -1.19,1.61 -2.99,0.82 -1.13,0.79 -2.69,-0.38 -3.4,-0.47 -0.84,-2.28 -6.08,2.96 -4.76,-1.3 -1.92,-0.69 -4.61,-0.08 -6.81,-0.32 -2.56,1.49 -6.48,1.43 -6.89,4.97 1.66,0.45 1.27,1.18 1.54,2.72 2.29,1.28 1.38,6.71 5.21,4.85 2.27,-0.57 4.21,1.54 5.35,2.54 1.09,-1.75 3.9,-1.39 3.21,0.95 0.1,1.55 -1.11,2.84 -0.3,4.77 -2.2,-0.71 -3.03,4.58 -5.67,1.76 -1.43,0.94 1.23,2.98 -0.19,4.47 0.79,3.11 4.25,6.81 7.21,3.89 -1.96,-1.82 1.17,-1.04 2.08,-2.79 1.53,-1.34 1.85,-1.47 0.72,0.46 -0.96,1.01 -3.43,3.3 -0.38,3.09 1.49,0.45 3.45,4.36 4.77,2.88 -0.27,-2.53 3.83,-3.05 1.1,-5.44 1.05,0.63 2.71,-0.96 2.12,1.15 2.98,0.99 -0.94,3.03 -2.44,3.55 -2.08,3.14 3.5,3.77 1.75,6.92 -0.29,1.59 0.31,5.9 2.13,4.03 -1.68,-0.96 -1.89,-7.61 0.51,-4.94 -0.5,1.26 4.8,0.74 3.44,-1.25 0.35,-0.76 1.34,3.45 1.43,0.83 0.89,1.74 3.91,2.47 1.59,0.06 -0.51,-1.47 -0.02,-3.03 -0.87,-4.45 1.76,1.65 1.37,4.11 4.01,4.31 0.21,-1.28 1.88,-0.67 1.78,-2.23 1.83,0.46 2.89,-0.48 3.79,-0.93 2.28,0.82 -0.59,1.71 2.06,2.43 1.57,0.52 0.39,-4.11 1.62,-1.05 -0.46,2.03 -2.17,6.08 -4.56,4.17 -1.51,0.14 -2.97,0.56 -4.53,-0.67 -3.37,0.66 2.51,2.11 2.17,4.25 2.28,1.57 4.95,-1.33 7.46,-0.04 0.09,-2.03 1.34,-0.88 2.36,-1.71 -1.31,-1.38 4.01,-1.27 0.96,-0.1 0.22,1.93 4.41,-1.17 5.9,0.75 1.01,1.43 4.31,0.26 4.44,1.04 -2.33,0.43 -6.75,-0.69 -5.01,3.23 1.5,1.03 2.59,-3.6 4.01,-0.77 1.99,-0.12 4.3,0.38 4.4,-2.43 0.29,-2.58 2.25,-0.15 3.16,-0.22 1.19,-1.05 2.3,-1.01 2.74,0.42 1.6,-0.29 0.66,-3.06 3.03,-2.61 0.96,-1.59 -0.11,-4.05 1.01,-5.76 -1.21,-2.25 -1.75,-4.67 -1.62,-7.13 1.06,-1.01 4.05,-0.69 1.57,-1.96 -1.94,-0.06 -2.1,-1.17 -0.12,-1.66 0.89,-1.32 3.49,-4.07 1.04,-4.6 -2.47,1.93 -2.55,-3.4 -0.68,-4.04 -0.57,-3.25 -3.22,-4.81 -6.13,-5.41 -2.4,0.4 -4.25,0.1 -2.46,-2.49 0.6,-2.26 5.5,-0.56 4.09,-3.23 -1.75,-0.22 -3.84,2.7 -3.33,-0.63 0.01,-3.41 -3.32,-2.88 -4.84,-1.45 -0.88,-3.11 -3.48,-4.72 -6.36,-3.01 -2.15,-0.01 0.26,2.97 -2.05,3.88 -0.09,2.06 -3.87,4.92 -5.31,3.84 -1.21,-1.39 2.06,-7.27 -1.57,-5.21 -1.38,0.54 -2.88,0.33 -3.62,2.06 -0.18,-2.38 -1.59,-4.23 -4.05,-3.7 -1.5,-2.53 -4.89,-0.74 -6.39,-1.56 -0.77,-1.17 -1.33,-2.65 -3.1,-2.43 z", + "department-35" : "m 134.53,157.78 c -2.29,1.25 -4.29,0.31 -6.19,1.59 -0.35,1.67 -2.93,2.17 -1.16,4.31 0.18,1.71 3.99,2.25 1.51,3.04 0.71,1.27 0.98,3.59 2.33,1.22 1.69,2.12 0.9,4.75 -0.11,6.67 -1.16,1.66 0.84,3.78 -0.19,5.68 1.34,1.46 -2.11,1.58 -0.78,3.48 0.21,2.25 -2.03,-0.13 -2.56,2.08 -1.42,-0.68 -2.58,-1.61 -3.47,0.21 -1.19,0.31 -0.39,2.42 -2.44,1.14 -3.01,-0.11 -1.06,4.1 -3.56,3.46 -0.04,2.21 -0.64,4.46 -2.86,4.2 0.62,1.53 1.56,3.49 1.75,5.16 0.54,-2.03 5.23,-1.03 2.52,0.76 -2.33,-0.69 -5.1,2.03 -3.97,3.88 2.89,-0.33 6.41,0.27 7.93,3.03 1.44,1.66 0.87,2.99 -0.39,4.33 0.11,1.6 0.84,3.69 2.2,1.35 0.71,-0.77 0.83,2.07 1.01,2.45 -1.23,1.26 -2.05,2.91 -3.28,3.92 1.71,0.13 3.61,2.39 0.59,2.1 -2.68,1.22 0.26,4 -0.22,5.86 2.34,-0.34 4.15,-1.76 6.12,-3.07 0.06,2.7 3.03,-0.8 4.56,-0.57 2.43,-1.1 5.63,0.82 7.84,-0.63 3.6,0.5 2.72,-4.87 6.32,-4.78 1.62,-0.77 5.16,-0.84 3.73,-3.31 2.85,-0.62 4.57,1.21 6.54,2.5 1.91,0.57 5.04,2.11 4.63,-1.3 1.15,-1.21 0.6,-2.9 1.92,-3.9 0.7,-1.81 1.08,-4.73 2.39,-6.4 1.07,-2.4 6.58,0.52 5.22,-3.48 -0.09,-3.31 -1.44,-6.24 -2.22,-9.58 0.1,-2.96 -2.26,-6.23 0.02,-8.8 1.83,-2.19 0.74,-5.58 -0.28,-8.01 0.55,-2.21 1.33,-6.39 -2.22,-6.48 -2.56,-0.06 -6.32,-3.21 -7.21,0.93 -2.37,0.79 -4.8,5.49 -7.02,1.82 -2.57,-0.44 -4.28,-3.63 -3.95,-6.18 -0.99,-1.91 -2.39,-5.92 -4.86,-2.88 -3.41,0.04 -8.02,2.16 -10.43,-0.96 -1.67,-2.06 2.03,-3.1 0.24,-4.85 z", + "department-44" : "m 152.12,215.29 c 0.59,4.69 -7.52,2.23 -7.55,6.92 -2.45,2.92 -6.64,1.42 -9.84,1.79 -2.21,0.47 -4.62,2.21 -6.1,1.16 -2.15,1.71 -5.77,2.38 -4.86,5.66 -0.41,1.99 0.14,5.32 -2.78,5.46 0.29,3.39 -2.45,-0.35 -3.39,1.23 -1.97,-0.43 -3.4,-1.22 -3.87,1.43 -1.39,3.38 -7.86,-1.72 -6.53,3.45 1.04,0.36 3.95,1.27 1.26,1.45 -1.78,0.18 -4.38,-0.42 -5.51,2.1 0.81,1.67 6.76,3.88 3.55,5.8 -1.04,-0.85 -4.89,-1.36 -1.91,0.14 1.73,1.23 3.86,1.82 5.03,0.15 2.77,0.79 5.25,4.76 7.99,1.3 2.33,-2.98 5.67,-3.71 9.18,-3.56 3.26,1.31 7.02,1.76 9.14,4.89 0.59,1.56 5.82,2.63 2.15,2.16 -4.08,-0.08 -5.45,-5.45 -9.25,-4.42 -2.59,-1.44 -6.59,-0.45 -8.62,1.17 0.15,2.98 1.07,6.99 -2.64,7.63 1.56,2.78 6.83,0.77 8.69,4.16 2.99,2.74 4.83,7.09 8.9,8.42 0.9,1.88 5.53,0.57 5.08,3.59 3.08,0.7 6.82,2.86 9.67,1.11 2.13,-1.29 -2.55,-2.42 -0.14,-3.94 -2.91,-1.74 -0.81,-8.5 2.35,-5.93 0.6,2.44 -0.71,8.47 3.28,5.3 3.57,-0.9 -1,-7.35 3.9,-6.19 0.83,-0.5 2.39,-4.6 3.91,-1.32 1.06,2.31 6.94,2.33 4.03,-0.72 -1.16,-2.43 -6.27,-0.49 -4.19,-3.49 1.19,-2.09 4.14,-3.59 2.27,-6.58 -0.11,-2.99 -2.79,0.14 -3.66,-2.47 -0.42,-1.81 -2.18,-3.14 -3.54,-3 1.51,-3.16 6.07,-2.52 8.85,-3.95 3.12,-0.79 9.37,1.47 9.71,-3.23 -1.08,-2.47 -1.12,-5.9 -4.66,-5.46 -2.8,0.23 -7.97,-1.25 -5.65,-4.79 1.85,-0.34 7.04,1.35 6.32,-1.48 -2.96,-1.34 -7.7,-2.06 -7.06,-6.38 -0.89,-2.42 -4.47,-2.43 -3.18,-5.19 -2.78,-1.29 -5.51,-2.7 -8.1,-4.12 -0.73,-0.11 -1.47,-0.12 -2.19,-0.28 z", + "department-50" : "m 131.13,90.31 c -1.88,0.95 -0.8,4.82 1.86,4.23 3.56,1.9 1.73,6.62 0.2,9.04 2.05,2.45 3.1,5.7 3,9 0.14,1.74 2.63,0.2 3.07,2.34 0.75,1.03 1.85,2.12 2.19,0.36 1.37,1.6 -1.38,2.27 1.05,3.66 1.37,1.28 0.99,6.4 3.69,4.06 1.9,0.29 2.45,1.19 0.04,0.86 -1.6,1.67 0.46,4.57 0.89,5.74 -2.97,1.02 -0.03,4.32 -0.89,6.45 0.25,4.18 2.26,-2.3 3.97,0.71 -3,-1.64 -2.73,4.63 -1.52,5.52 -1.39,1.53 -0.75,4.59 -2.48,6.57 2.85,1.89 0.3,6.73 3.77,8.41 0.72,3.65 6.47,2.47 6.87,4.86 -3.09,-0.67 -6.13,1.28 -9.29,0.14 2.12,2.48 1.69,5.44 3.35,8.16 0.49,2.03 2.9,1.69 3.89,3.28 2.85,0.97 3.52,-2.95 6.22,-3.35 0.5,-4.19 4.83,-0.16 7.12,-0.52 2.46,0.21 4.49,2.11 6.88,1.58 1.14,-3.4 4.72,2.61 6.05,-1.83 2.14,-1.71 4.11,-4.11 4,-6.8 -2.86,-1.65 2.62,-4.05 -1.04,-4.65 -1.19,-1.03 -1.99,-2.17 -3.44,-2.39 0.65,-1.72 0.69,-2.24 -1.24,-1.46 -2.15,-1.56 -3.83,-1.87 -6.18,-1.16 -1.5,-0.55 -4.16,0.68 -4.02,-2.14 -1.26,-0.78 -4.15,-1.48 -1.38,-2.84 0.99,-1.27 1.76,-1.9 2.97,-1.76 1.12,-1.18 3.8,-4.02 0.24,-2.9 -1.76,-0.83 1.02,-4.16 2.87,-2.17 3.08,-0.43 3.89,-3.82 6.01,-5.35 -2.27,-0.59 1.2,-4.39 -1.22,-5.32 -2.09,1.3 -1,0.15 0.07,-0.89 -1.07,-1.07 -4.55,-2.49 -1.49,-2.88 2.17,-1.47 -0.09,-4.82 -1.5,-1.9 -3.17,0.81 -5.99,-2.78 -7.94,-5.02 -1.69,-1.95 2.34,-3.94 -0.73,-4.53 -0.02,-1.64 -2.94,0.31 -1.33,-2.17 1.04,-2.89 -2.27,-4.45 -3.47,-6.64 -1.37,-1.99 -4.59,-6.54 -0.56,-7.31 0.17,-1.79 2.56,-1.35 1.09,-3.59 -0.43,-3.65 -3.79,-3.85 -6.83,-3.94 -3.88,-1.03 -4.69,4.08 -8.52,3.07 -3.16,1.2 -5.48,-1.83 -8.81,-1.65 -2.47,0.02 -3.19,-2.65 -5.7,-1.92 -0.51,-0.38 -1.01,-1.1 -1.74,-0.94 z", + "department-53" : "m 208.55,167.1 c -1.01,1 0.05,3.16 -1.88,3.54 -1.52,-1.01 -2.64,-0.44 -3.16,1.13 -2.16,0.27 -4.3,-2.6 -6.35,-0.72 -2.51,0.71 -4.34,2.89 -6.91,3.52 -1.47,-0.07 -0.73,-3.05 -2.63,-1.24 -1.44,-0.25 -1.57,0.24 -1.23,1.52 -1.95,1.91 -3.12,-1.9 -4.31,-1.2 -0.57,-2.91 -4.17,-1.79 -5.68,-3.27 -1.71,1.43 -3.54,2.05 -5.24,0.23 -1.62,1.36 -0.04,4.11 -0.87,5.96 1,2.8 1.94,6.2 -0.3,8.68 -1.8,2.64 0.64,5.51 0.63,8.4 0.26,2.57 1.34,4.89 2.01,7.32 0.27,1.9 0.56,4.67 -2.4,4.46 -3.58,-1.21 -3.75,3.46 -4.8,5.71 -0.32,2.32 -3.14,4.44 -1.31,6.55 2.18,1.99 5.34,0.43 7.83,1.57 1.63,0.66 3.95,1.05 3.53,-1.27 2.64,-0.54 3.9,3.91 6.54,1.42 2.25,1.91 5.27,1.85 7.94,2.38 1.76,-0.55 3.96,-1.63 5.33,-1.8 0.74,-3.63 3.49,1.65 5.63,-0.72 3.1,-0.49 -0.69,-2.25 -1.75,-2.95 -1.24,-2.55 5.38,-2.7 2.17,-4.78 -2.1,-2.18 2.21,-3.41 3.9,-3.25 2.7,-2.12 -2.9,-5 -0.82,-7.18 1.54,-1.12 5.56,-0.07 4.23,-2.96 2.04,-1.51 -2.56,-3.7 0.57,-5.19 2.14,-0.95 4.31,-2.8 2.75,-5.2 0.4,-1.84 1.4,-3.83 0.29,-5.45 0.84,-2.27 2.74,-2.67 4.64,-3.69 0.49,-2.31 0.11,-5.38 -2.99,-3.91 -2.18,-0.9 -2.07,-4.02 -1.67,-5.52 -0.9,-1.11 -2.32,-1.86 -3.72,-2.1 z", + "department-49" : "m 163.22,217.21 c -0.83,2.37 -1.6,5.33 1.37,5.86 1.81,2.08 0.91,5.95 4.42,6.63 2.22,0.05 6.13,2.61 1.99,3.38 -1.68,0.33 -6.88,-1.51 -4.42,1.8 -0.28,3.95 5.62,1.28 7.64,2.98 2.45,0.74 1.41,5.07 2.67,6.48 -2.29,2.93 -6.35,1.4 -9.46,1.86 -2.75,1.47 -6.15,1.11 -8.63,2.95 -2.19,2.35 2.81,0.48 2.57,3.2 0.31,2.29 2.55,1.71 3.57,1.87 1.63,2.89 1.11,5.74 -1.65,7.56 -1.38,3.05 3.73,1.85 4.64,4.57 0.65,0.86 -1.19,3.33 1.44,2.98 2.09,1.51 5.06,-0.93 6.83,0.87 2.12,0.24 3.87,3.37 5.76,0.52 2.61,-0.75 5.23,0.76 7.87,-0.16 3.45,0.68 4.18,-2.89 4.98,-5 2.46,-1.53 5.74,1.7 7.32,-1.15 3.52,-0.32 7.2,-1.11 10.47,-0.77 1.05,1.17 -2.26,1.94 0.29,2.63 2.66,0.88 1.49,-3.86 4.67,-2.23 0.32,-1.55 1.08,-6.07 4.26,-4.7 1.02,-3.55 0.54,-7.68 3.15,-10.63 1.2,-1.75 2.78,-3.33 2.02,-5.32 0.89,-2.49 1.94,-4.87 2.33,-7.52 -2.3,-1.25 2.95,-6.06 -1.28,-5.83 -1.14,3.4 -4.78,-0.25 -6.77,-0.21 -1.89,-1.86 -5.83,-3.95 -7.59,-1.47 -2.9,0.48 -5.51,-3.13 -2.87,-5.2 -1.31,-0.36 -3.53,1.25 -5.3,-0.11 -1.96,-0.38 -3.12,0.57 -3.07,-1.96 -1.12,-2.87 -4.12,0.14 -5.77,-2.2 -1.77,-0.71 -0.8,2.61 -3.03,1.75 -3.13,1.53 -6.89,1.32 -10.17,-0.06 -1.72,-2.25 -3.57,1.59 -5.08,-1.25 -0.8,-0.99 -3.72,-1.84 -2.9,0.37 -3.4,0.17 -6.97,-0.89 -10.18,-1.14 -0.72,-0.44 -1.37,-0.99 -2.14,-1.36 z", + "department-85" : "m 161.28,265.2 c -0.97,1.7 -1.54,3.91 -3.7,2.64 -1.76,1.98 1.21,6.33 -3.05,6.68 -4.15,2.13 -1.3,-4.19 -2.86,-6.14 -3.81,-0.88 -3.43,4.2 -2.06,6.39 -1.18,1.59 2.88,3.89 -0.56,4.36 -2.8,1.01 -5.58,-1.25 -8.45,-1.27 -0.94,-1.21 -1.09,-3.22 -3.4,-2.64 -2.06,0.15 -1.35,-2.2 -3.49,-1.71 -2.48,-1.21 -5.24,-7.8 -7.15,-2.42 -0.59,3.85 -5.53,4.8 -4.91,9.21 0.37,4.17 5.72,4.87 7.16,8.67 2.67,2.58 4.99,5.43 6.65,8.8 0.87,1.89 0.24,6.13 2,6.75 0.16,-1.73 0.12,-2.45 1.07,-0.5 1.66,2.86 6.15,2.45 7.02,5.1 3.4,-0.42 6.93,0.3 7.04,4.36 1.27,2.81 4.49,-1.27 6.02,1.84 2.09,-0.13 3,3.11 4.96,3.02 -0.36,-3.97 4.41,-1.93 6.48,-3.3 1.71,-1.96 4.7,-2.5 6.81,-2.37 -1.17,1.68 -0.83,3.92 1.65,2.75 2.07,-0.36 4.04,-2.66 5.25,0.14 2.09,1.8 3.55,-0.97 5.61,-0.12 1.62,-1.38 3.3,-2.9 5.04,-3.72 0.18,-2.56 -3.47,-1.87 -3.87,-1.44 -0.63,-2.59 1.8,-5.29 -0.47,-7.7 0.94,-1.38 2.03,-1.54 1.08,-3.45 0.09,-2.1 -0.29,-4.13 -1.61,-5.22 0.65,-2.15 -1.16,-2.52 -0.79,-4.52 -1.57,-1.94 -3.3,-3.94 -1.89,-6.5 -1.72,-1.62 -5.39,-2.92 -5.22,-6.11 0.38,-2.29 -3.29,-2.9 -3.68,-5.31 -1.81,-2.01 -4.49,-1.74 -7.1,-1.32 -3.49,-1.03 -6.73,-2.66 -9.6,-4.96 z", + "department-79" : "m 211.41,263.54 c -3.47,1 -7.46,-0.24 -10.55,2.01 -1.54,0.87 -3.61,1.5 -3.45,-0.55 -2.89,-0.11 -3.46,3 -4.1,4.64 -2.76,1.84 -6.3,1.53 -9.35,1.02 -2.77,-0.37 -6.01,2.62 -2.55,4.27 1.05,2.29 0.26,5.24 3.5,6.22 3.7,1.27 0.35,4.83 3.08,6.91 1.95,2.46 1.89,5.88 3.13,8.43 0.79,2.29 0.53,5.23 -0.6,6.69 2.08,1.92 -1.04,5.98 0.79,6.87 2.26,-2.05 4.86,2.6 1.35,3.21 -1.82,2.1 -4.84,2.03 -7.01,3.55 -1.92,3.7 2.7,4.91 3.24,8.13 1.44,0.37 2.62,0.88 2.81,2.1 3.32,-0.93 5.83,3.57 8.63,3.01 2.89,1.17 6.03,0.6 8.47,3.22 3.7,-0.54 3.87,6.56 7.56,4.57 1.73,-2.11 1.24,-5.98 4.87,-5.81 1.63,-2.21 4.23,-2.49 6.45,-1.63 1.55,-1.48 2.11,-4.78 -0.83,-4.33 -3.29,-1.46 -1.71,-5.49 -0.5,-7.4 1.75,-0.97 0.56,-7.43 -1.84,-3.75 -2.3,2.89 -5.28,-1.21 -4.22,-3.39 -2.48,-2.03 -1.19,-5.37 -2.68,-7.99 1.33,-2.02 1.71,-4.55 3.11,-6.42 -0.55,-0.92 -2.28,-2.13 -2.08,-2.45 -3.66,1.58 0.19,-4.05 1.24,-5.25 2.3,-2.33 -3.14,-3.07 -0.93,-5.56 1.44,-1.85 -3.47,-1.82 -0.33,-2.92 3.33,-0.16 0.56,-1.18 -0.24,-2.53 0.5,-2.54 0.1,-5.85 -1.91,-7.36 -1.96,-0.52 -0.38,-5.88 -4.15,-4.77 -2.43,-0.12 2.22,-3.17 -0.9,-2.74 z", + "department-17" : "m 175.73,312.62 c -2.1,1.05 -4.89,0.98 -6.33,3.16 -2.59,0.12 1.24,4.72 -2.26,5.02 -2,0.79 -4.42,5.17 -2.11,6.01 2.93,0 2.49,3.17 4.17,4.84 0.72,1.37 3.67,5.65 0.03,4.87 -2.18,0.36 1.95,2.77 0.48,4.24 1.55,2.23 0.05,3.13 -1.55,3.46 -0.38,1.57 -2.23,1.63 -0.92,3.81 0.7,3.56 3.92,5.46 6.53,7.53 -3.66,-0.31 -5.1,-4.96 -7.98,-5.25 -3.89,-1.1 -3.52,4.91 -2.88,6.67 2.74,-1.46 4.76,2.94 7.48,3.54 3.34,1.31 3.69,5.42 7.19,6.15 4.09,3 7.55,7.17 8.5,12.27 0.26,3.76 5.67,2.29 7.12,1.56 -1.08,5.27 6.99,0.78 7.08,5.12 0.92,1.82 -0.24,5.87 1.93,6.53 3.38,-1.84 5.25,4.16 8.91,4.29 2.53,1.16 3.84,-3.72 5.99,-0.43 0.42,-1.35 1.41,-3.02 1.97,-3.79 -0.43,-1.67 1.72,-4.75 -1.44,-5.53 -1.82,-0.53 -4.59,0.36 -3.27,-2.54 -1.47,-1.11 -5.11,-3.27 -7.08,-1.29 -2.02,-1.16 -0.75,-3.34 0.78,-3.22 -1.02,-0.53 -4.64,-2.27 -1.19,-3.33 4.28,-0.66 -2.5,-4.27 0.56,-5.26 2.44,-2.46 -2.28,-2.77 -2.54,-4.29 2.17,-2.32 -2.75,-3.59 -3.55,-5.14 -2.87,0.92 -0.97,-2.62 0.33,-2.63 -2.65,-1.14 -0.44,-4.4 -1.57,-5.27 -2.89,0.77 -1.45,-2.34 0.53,-2.18 1.34,-1.34 4.68,-0.44 6.11,-2.14 2.35,-0.74 2.26,3.5 4.57,1.02 2.44,-0.29 1.26,-3.78 2.59,-5.17 -1.46,-1.93 -1.99,-4.68 1.15,-4.47 0.21,-2.43 -3.03,-4.09 -3.83,-6.1 -0.81,-1.69 -4.49,-0.9 -5.2,-3.54 -1.75,0.56 -3.25,0.45 -4.22,-0.82 -1.42,1.85 -1.72,-1.94 -2.91,-0.25 -3.3,-0.03 -3.97,-4.4 -7.72,-2.73 0.56,-2.08 -4.7,-2.08 -3.15,-4.59 -0.87,-1.66 -4.22,-2.08 -2.44,-4.29 -0.3,-2.54 -4.15,-5.59 -5.48,-2.93 -1.22,-0.57 -5.78,1.4 -3.85,-1.55 0.3,-0.71 0.63,-1.62 -0.55,-1.38 z m -24.48,7.33 c -2.5,0.03 -3.87,1.14 -1.7,3.09 3.95,0.17 7.19,2.31 10.9,3.68 3.89,-1.05 -3.64,-4.87 -5.82,-4.1 0.29,-2.41 -4.61,1.24 -3.83,-1.48 1.5,1.02 1.83,-1.02 0.46,-1.19 z m 4.27,13.72 c -0.7,1.54 2.03,3.7 0.87,5.86 3.02,2.81 6.53,5.8 7.08,10.16 2.32,-1.62 3.28,-6.49 0.08,-7.91 -0.51,-2.29 -0.47,-5.1 -3.54,-5.11 -1.46,-1 -2.65,-2.71 -4.49,-2.99 z", + "department-33" : "m 170.37,365.5 c -2.88,2.39 -3.66,6.38 -3.67,9.99 -0.06,6.47 -0.57,12.93 -1.99,19.26 -0.93,8.17 -1.59,16.38 -2.58,24.55 0.15,2.18 -1.38,7.44 -0.06,8.1 -0.08,-3.31 1.98,-7.54 4.36,-8.96 1.97,1.72 7.34,5.74 3.76,7.49 -2.73,1.04 -6.38,-2.36 -6.38,2.52 -1.52,2.69 -2.74,7 -1.06,9.24 2.84,-0.63 5.96,-2.27 7.61,-3.75 2.03,1.26 5.7,0.92 3.77,4.43 -2.89,4.65 3.5,-0.33 5.45,2.23 3.86,1.51 7.87,-3.74 11.26,-0.84 -1.42,4.09 4.44,3.2 5.19,6.56 1.94,1.37 4.07,0.77 4.89,3.31 2.18,0.86 -1.21,6.6 3.33,5.68 2.58,1.12 6.14,0.42 4.75,-3.03 1.75,-3.72 3.17,3 5.62,1.04 3.5,-1.1 3.84,-4.91 0.95,-7.06 1.78,-1.99 6.6,-1.58 3.43,-5.47 1.27,-2.35 -1.77,-5.16 1.09,-7.2 -1.95,-2.11 4.08,0.01 3.42,-3.48 2.15,-0.49 2.85,-2.17 2.61,-3.54 1.82,1.01 2.01,-3.15 -0.54,-1.86 -1.24,-1.31 -2.01,-2.64 0.2,-3.47 -0.33,-1.44 2,-1.21 2.56,-1.67 0.96,3.46 0.77,-3.24 2.88,-0.59 3.44,-0.12 -2.08,-5.38 2.19,-5.6 -0.3,-3.57 -4.29,-0.98 -5.16,1.24 -2.94,-0.94 -4.42,-0.02 -6.92,-0.52 -0.48,-1.95 -5.24,-0.86 -1.96,-2.84 3,-2.61 -1.26,-5.76 1.74,-8.21 0.18,-2.65 3.61,-7.86 -1.4,-8.03 -1.8,0.66 -3.02,1.85 -4.53,-0.13 -2.79,3.68 -7.23,0.65 -9.47,-1.85 -1.02,0.81 -2.89,-3.34 -3.74,-0.02 -1.83,-2.9 -1.15,-5.89 -1.94,-8.56 -2.49,-1.97 -7.58,0.6 -7.16,-4.13 -0.99,3.32 -7.86,-1.7 -5.65,3.47 1.12,5.25 -0.04,11.74 4.13,15.79 1.6,0.97 5.46,1.4 5.09,3.59 -1.14,-1.76 -5.95,-2.2 -2.42,0.16 0.89,1.86 0.32,4.86 0.46,6.96 -0.86,-3.57 -0.31,-7.65 -4.4,-9.5 -4,-3.65 -3.81,-9.3 -4.62,-14.2 -0.83,-4.14 -2.82,-8.05 -6.26,-10.61 -1.82,-3.68 -6.55,-3.9 -8.36,-7.63 -0.3,-0.84 1.03,-2.73 -0.47,-2.88 z", + "department-40" : "m 169.77,433.93 c -1.39,4.09 -9.03,1.92 -8.11,7.38 -1.02,7.04 -1.81,14.11 -3.21,21.09 -1.27,6.3 -2.02,12.7 -3.64,18.93 -1,6.23 -2.25,12.44 -3.8,18.55 2.58,-1.5 3.77,4.05 6.97,1.91 3.34,1.32 5.68,-3.95 8.44,-2.39 2.07,1.33 0.83,1.91 -0.48,2.62 2.25,0.71 3.66,-2.53 5.72,-0.83 1.43,1.01 3.09,-0.31 2.14,-1.78 2.65,0.58 4.62,-1.18 7.1,-0.71 0.89,-0.91 2.56,-0.97 3.4,-1.93 1.42,1.18 2.14,3.21 3.39,1.18 1.9,-0.75 2.12,-1.21 2.41,0.33 1.62,2.42 3.07,-1.23 4.2,0.55 1.35,-0.65 5.1,-4.97 5.14,-2 -2.25,3.45 3.32,-1.25 4.51,1.48 1.42,-0.66 5.29,-2.61 3.41,-4.06 -2.62,-1.1 2.2,-2.69 0.51,-4.53 -0.4,-2.09 3.75,-3.09 1.72,-4.6 0.25,-1.62 -1.17,-3.73 0.82,-4.32 -0.1,-1.59 -0.15,-2.99 -0.15,-4.15 -3.84,-1.04 1.14,-3.46 2.82,-3.81 1.4,0.08 1.6,0.86 2.46,-0.49 1.85,-0.5 2.29,-3.87 4,-0.74 -0.03,1.42 -1.08,2.56 1.12,3.35 3.85,1.54 0.42,-3.68 2.06,-5.19 -1.31,-3.01 1.52,-6.01 2.73,-8.67 -3.45,-0.68 -6.76,-2.36 -10.44,-2.46 -3.14,0.72 -0.38,-5.12 -3.37,-6.17 -1.68,-2.94 -3.31,0.33 -2.44,2.4 -1.45,2.03 -6.15,0.75 -7.76,-0.49 0.06,-2.43 0.64,-4.45 -1.66,-5.74 -0.75,-1.94 -4.67,-0.97 -4.92,-3.99 -2.01,-1.55 -5.69,-1.4 -4.21,-4.64 -1.24,-2.31 -3.79,0.2 -5.94,-0.34 -3.05,3.71 -7.01,-1.41 -10.49,1 -4.03,1.42 2.63,-4.52 -0.65,-5.54 -1.61,0.68 -2.43,-1.07 -3.83,-1.21 z", + "department-64" : "m 211.2,495.72 c -1.9,1.07 -4.71,-0.23 -5.99,2.39 -1.98,0.52 -4.11,-1.44 -6.18,0.45 -1.47,-0.65 2.04,-3.79 -1.1,-2.24 -1.84,1.1 -3.29,3.13 -5.1,2.48 -1.96,1.45 -5,-2.73 -6.29,0.37 -1.3,-1.42 -2.42,-3.2 -3.7,-1.06 -1.86,0.3 -2.9,1.44 -5.06,0.79 -0.86,1.97 -4.19,-0.71 -3.64,2.4 -2.25,0.68 -5.49,-1.09 -7.26,1.32 -3.27,-0.97 2.34,-1.26 -0.09,-2.53 -2.18,-3.25 -4.64,2.8 -7.39,1.71 -2.74,0.92 -5.67,0.14 -7,-2.21 -3.51,1.11 -4.76,4.93 -7.06,7.37 -1.86,2.09 -5.86,0.94 -7.14,3.17 0.39,1.82 2.63,2.08 2.45,4.31 2.16,-0.79 5.47,-0.83 4.92,2.37 1.44,2.55 2.98,-0.5 3.6,-1.51 2.37,0.53 4.98,1.17 7.12,1.91 1.21,3.15 -0.34,6.66 -1.84,9.39 -3.7,1.82 -0.21,5.81 2.82,5.62 2.52,-0.18 0.25,-6.64 4.3,-5.38 -2.77,2.45 0.66,4.77 3.15,4.41 2.76,1.62 4.75,2.53 7.73,3.53 2.51,0.74 4.11,3.68 7.28,2.92 2.81,1.52 7.35,-3.02 7.16,2.26 -1.02,2.96 3.25,2.28 4.34,4.46 1.78,1.41 3.01,6.8 5.13,3.41 1.29,-2.94 5.1,2.52 7.14,-0.85 1.53,-1.11 3.1,-1.71 2.2,-4.29 -2.14,-2.89 3.19,-3.06 1.08,-6.08 -0.73,-2.21 1.82,-2.45 1.78,-4.48 3.8,1.19 0.42,-4.25 3.06,-5 2.06,-1.26 1.63,-4.46 4.21,-4.01 0.61,-1.33 0.15,-2.87 1.47,-3.33 2.68,-2.17 -1.51,-4.94 1.51,-6.75 3.94,0.18 -1.17,-3.74 0.89,-5.91 -0.71,-3.82 -1.88,1.82 -3.23,0.54 -0.52,-1.85 0.16,-3.46 1.54,-4.09 -0.91,-1.78 -0.41,-4.39 -2.84,-4.92 0.66,-3.73 -2.6,-1.04 -3.99,-2.95 z", + "department-65" : "m 216.99,494.91 c -1.84,0.25 -2.8,4.03 -0.53,4.11 1.88,1.3 0.29,3.67 2.23,4.92 -1.93,0.09 -2.67,2 -1.81,3.38 0.3,1.54 2.42,-3.88 2.78,-0.62 0.04,1.77 -0.37,4.08 1.04,5.66 -0.74,1.52 -3.19,0.65 -3.23,3.06 1.46,1.22 1.22,2.8 0.07,4.31 -0.99,0.9 -1.52,1.78 -1.24,3.38 -1.18,1.4 -2.47,-0.59 -2.75,1.65 -0.31,2.34 -3.5,2.62 -2.83,5.08 -0.23,1.21 0.77,2.46 -1.27,2.75 -1.74,-1.03 -0.67,2.29 -2.47,2.46 -0.22,2.15 1.18,4.49 -1.44,5.52 0.13,2.35 0.39,5.58 3.33,6.26 1.51,1 2.85,2.84 4.69,1.37 -0.57,1.85 1.47,3.6 2.41,4.96 1.56,0.38 2.66,3.5 4.75,1.97 1.8,-0.64 3.96,-1.24 5.98,-1.71 2.21,-1.74 5.92,-0.18 6.53,2.47 2.16,1.45 2.84,-4.54 5.11,-1.48 1.05,2.42 6.1,0.26 2.72,-1.38 -0.47,-1.86 -0.16,-4.75 -0.08,-7.05 -0.01,-1.71 0.82,-4 2.68,-2.21 3.39,1.23 2.02,-4.26 4.56,-5.2 1.78,-1.39 -1.78,-2.01 -0.27,-3.71 -0.3,-0.99 -0.83,-2.98 -1.65,-1.25 -1.08,0.21 -3.2,2.39 -2.44,-0.12 -0.09,-1.57 2.08,-1.37 1.06,-3.26 -1.4,-1.24 -3.29,-2.47 -4.49,-3.12 -2.02,-2.1 3.51,-3.46 2.42,-5.76 0.93,-0.47 4.3,-0.56 1.96,-2.04 0.32,-1.95 5.47,-3.77 2.06,-5.05 -2.3,-1.28 -4.63,-0.69 -6.84,-1.39 -2.1,2.1 -2.26,-2.3 -4.28,-0.93 -1.76,1.3 -0.81,-1.74 -2.47,-1.53 -0.55,-2.46 -4.01,1.85 -5.67,-0.21 0.62,-1.85 -3.42,-2.4 -1.35,-4.21 1.51,-1.16 -1.9,-2.45 -1.19,-4.22 -1.14,-1.21 -3.48,-0.65 -4.39,-2.66 -2.13,-0.62 -0.57,-4.95 -3.7,-4.22 z", + "department-32" : "m 246.37,463.78 c -1.87,2.87 -5.69,0.08 -7.22,3.28 -1.88,1.49 -4.2,0.57 -5.81,2.33 -2.39,-0.54 -4.55,-3.39 -6.11,0.1 -0.16,1.89 -1.71,0.96 -1.7,-0.3 -2.5,0.36 -4.05,2.53 -2.63,4.96 0.01,3.29 -6.18,-0.5 -3.3,-1.85 -0.54,-2.21 -2.13,-1.97 -3.07,-0.29 -1.34,0.89 -1.71,2.04 -3.36,1.03 -1.68,0.34 -3.48,1.37 -4.38,2.76 1.22,0.28 3.13,1.71 1.37,2.42 1.01,1.6 0.51,3.2 -0.73,3.83 -0.07,2.44 2.42,4.6 -0.76,5.86 -1.18,1.63 0.66,4.33 -1.94,5.01 -0.42,1.69 2.27,1.13 1.62,3.13 2.18,-0.55 3.63,0.28 6.01,0.22 1.55,-0.54 3.47,-2.96 4.82,-0.45 0.15,2.77 2.68,4.35 4.51,5.25 2.48,-0.68 1.19,3.49 3.25,4.21 -0.48,0.88 -2.09,2.3 -0,3.14 1.28,0.27 0.25,2.29 2,2.07 2.01,0.08 3.81,-1.91 5.13,-0.1 0.83,0.3 0.34,2.73 2.13,1.32 1.65,-1.02 1.99,3.25 3.69,0.87 2.91,0.44 5.72,1.25 8.79,1.59 2.28,-1 2.83,-4 4.96,-4.85 -0.08,-1.97 1.2,-2.17 2.72,-1.09 2.04,-2.03 5.8,0.4 7.36,1.79 1.25,2.38 1.53,-1.44 1.56,-2.27 1.63,-0.08 0.78,-2.07 1.64,-3.14 -1.95,-1.43 1.97,-2.65 1.07,-4.39 -0.66,-1.2 0.97,-1.78 2.08,-0.85 0.33,-1.45 2.39,-1.29 3.2,-2.18 2.33,0.7 0.78,-3.33 -0.81,-2.33 -0.96,-0.86 -0.26,-2.97 -2.3,-2.06 -1.55,-0.33 0.33,-2.07 -1.76,-1.78 -1.88,-0.75 0.92,-3.18 -2.09,-3.14 -1.61,-1.44 -2.45,-4.37 -4.36,-5.15 -3.35,1.69 1.17,-3.08 -1.5,-3.24 0.76,-1.49 -1.03,-2.76 -0.22,-4.22 -1.16,-1.24 -2.92,-1.03 -4.29,-1.63 -2.35,1.17 -1.75,-1.94 -0.23,-2.55 1.5,-1.23 1.3,-2.73 1.39,-4.08 3.53,-0.83 -1.38,-2.38 -2.33,-0.22 -1.18,0.08 -0.41,-3.33 -2.53,-1.63 -1.28,0.69 -2.36,3.52 -3.35,0.81 -0.67,-0.82 -1.46,-1.92 -2.53,-2.18 z", + "department-47" : "m 230.07,418.5 c -0.81,0.77 -0.9,3.82 -1.83,1.38 -1.82,-0.02 -3.21,2.14 -3.88,3.3 1.04,0.9 2.08,1.66 3.3,1.8 -0.04,1.51 -1.7,2.55 -2.03,4.05 -1.55,0.64 -2.55,2.47 -3.24,3.29 -3.01,0.59 -4.44,4.14 -2.78,6.75 -1.33,1.76 2.46,5.68 -1.08,5.69 -2.16,-0.16 -3.67,2.4 -1.25,3.45 1.89,2.62 -1.53,5.28 -3.79,5.58 -0.01,1.94 -0.52,5.85 2.43,4.84 2.83,-0.58 4.82,1.94 7.53,1.7 1.96,-0.36 2.73,1.43 1.07,2.55 -0.51,2.08 -4.01,5.95 -0.67,6.93 1.39,-0.27 1.71,-1.54 2.32,0.34 1.42,0.2 1.56,-3.84 3.99,-2.43 2.21,2.53 4.49,0.26 7.07,0 2.57,-0.7 3.69,-3.71 6.77,-2.71 1.7,-0.39 3.39,-2.44 4.44,0.28 1.31,3.29 3.19,-0.23 4.88,-1.16 0.36,-1.62 1.13,-2.69 2.56,-3.54 -1.25,-2.97 5.51,1.65 4.18,-2.52 -0.96,-0.29 -2.25,-1.68 -0.22,-2.14 2.35,-0.03 2.05,-4.03 2.4,-5.78 -1.23,-1.07 -4.15,-1.71 -2.2,-3.71 -0.38,-1.68 1.32,-4.27 2.55,-1.77 1.53,0.85 4.19,-0.22 5.25,-0.41 0.48,-2.12 -0.42,-3.89 -1.57,-5.33 0.06,-1.97 -1.67,-5.18 -1.15,-6.13 2.23,0.07 5.01,-2.93 1.78,-3.93 -1.73,-2.48 -5.12,-2.94 -6.92,-0.28 -2.08,2.1 -3.89,-1.44 -2.14,-3.04 0.26,-1.39 -1.37,-4.01 -2.62,-1.92 -2.44,1.01 -5.83,0.37 -7,-0.95 -2.41,-0.18 -2.86,2.94 -5.17,1.62 -2.31,0.8 -5.39,2.91 -7.69,0.67 0.42,-2.17 -0.14,-6.16 -2.93,-6.02 -0.81,0.25 -1.86,0.44 -2.38,-0.43 z", + "department-31" : "m 290.02,474.31 c -1.06,1.38 -2.08,2.2 -3.14,1.27 -0.58,4.46 -6.27,-1.79 -5.29,3.06 -1.9,-0.93 -3.5,1.28 -0.64,0.98 2.48,2.1 -3.77,2.63 -4.93,4.19 -2.22,1.21 -0.1,-1.87 -2.62,-1.46 -1.27,-3.41 -2.92,1.42 -4.53,-1.01 -1.38,1.57 -7.9,0.39 -4.49,3.87 1.19,2.36 4.47,2.68 3.64,5.37 2.67,0.06 0.55,2.9 3.52,1.95 0.58,0.93 0.66,2.79 2.12,2.09 2.71,3.12 -2.63,3.32 -4.16,4.93 -1.1,-1.53 -1.56,1.15 -1.34,1.61 0.44,1.44 -2.97,2.2 -1.16,3.88 -0.09,2.59 -2.4,2.6 -1.68,5.18 -1.9,1.75 -3.41,-2.85 -6.25,-2.48 -1.97,-0.25 -2.83,1.49 -4.6,-0.2 -0.73,3 -3.35,2.98 -4.53,6.1 -1.7,0.77 -1.89,0.75 -1.75,2.05 -1.29,1.74 -3.85,2.87 -2.67,4.97 -1.64,0.77 -2.86,0.43 -2.8,2.37 -2.19,1.55 -3.92,4.34 -0.36,4.93 1.97,0.94 4.52,4.07 1.77,4.79 -1.3,4.88 3.7,-2.96 3.72,1.66 0.49,1.32 -0.65,2.24 1.07,3.28 -2.79,1.64 -2.18,9.05 -6.68,5.6 -1.73,2.41 -1.93,7.77 -0.38,10.18 1.27,3.59 5.97,0.17 8.88,1.83 2.51,-1.92 -1.95,-5.09 0.25,-7.4 -0.76,-3.42 2.9,-4.02 4.93,-2.32 1.62,-0.12 4.31,1.32 2.68,-1.53 -0.93,-1.79 -1.4,-4.59 1.53,-4.74 -1.15,-3.31 5.98,-1.18 5.47,-5.37 -2.22,-1.5 -0.83,-5.26 0.13,-6.33 2.45,2.03 0.85,-3.56 3.56,-1.87 1.66,-2.07 2.75,0.56 4.53,0.43 1.14,1.96 2.46,4.41 4.04,1.37 2.25,-2.5 -5.64,-2.56 -1.56,-4.98 1.91,-0.32 6.85,-0.7 5.84,-3.41 -3.62,0.11 -4.71,-4.72 -0.54,-4.92 1.7,1.78 3.23,3.99 3.46,6.31 3.43,1.14 2.88,-2.05 2.74,-4.44 1.24,-0.74 2.86,2.59 3.98,0.85 2.05,0.25 3.31,3.93 3.51,0.42 1.87,-1.02 3.37,-2.54 3.2,-4.86 1.65,-0.79 5.11,0.92 3.61,-2.58 0.23,-2.56 3.55,-6.11 4.18,-1.52 0.52,0.87 1.91,-3.3 3.78,-0.91 2.24,0.69 2.87,-1.22 1.62,-2.8 0.91,-0.95 2.23,-3.84 -0.03,-2.5 -1.07,2.43 -6.09,-0.82 -6.91,-3.1 -0.98,-3.43 -6.75,-3 -7.98,-6.29 2.91,-1.68 0.76,-3.48 -1.25,-4.16 3.26,-0.53 0.29,-2.11 -0.5,-3.7 0.64,-3.06 -3.23,-3.07 -3.17,-5.79 -1.79,-0.87 -1.06,-3.76 -1.85,-4.82 z", + "department-09" : "m 281,514.26 c -1.93,0.45 -2.81,3.42 -0.61,3.74 0.47,1.06 3.65,0.84 1.91,2.92 -1.78,0.48 -2.86,1.94 -5,1.65 -1.94,-0.47 -2.72,3.01 -0.2,2.59 2.24,0.58 1.95,2.32 0.27,3.21 -1.24,2.42 -2.69,-0.31 -3.19,-1.7 -1.18,-0.65 -2.35,-0.74 -3.49,-1.68 -1.21,1.5 -3.6,0.41 -3.5,3.08 -0.69,0.69 -2.14,-1.23 -2.07,0.85 0.78,1.23 -1.59,1.79 -0.08,3.25 -1.18,1.45 2.43,1.96 0.17,3.11 -0.33,2.96 -5.7,1.12 -4.88,4.08 -1,0.73 -3.51,0.76 -1.93,2.67 -0.14,2.58 1.36,4.98 3.85,6.04 1.3,1.43 2.44,-0.82 3.84,0.84 2.2,0.69 5.28,-0.08 6.42,2.49 -0.04,2.84 2.56,2.9 4.54,2 2.27,0.7 5.31,-0.62 6.28,1.97 2.47,1.03 1.46,6.42 4.53,5.84 0.33,-1.46 -0.02,-3.65 2.25,-2.77 2.58,-1.67 3.67,2.32 6.42,1.51 1.59,0.01 4.16,0.09 3.44,2.23 1.96,0.82 4.9,1.1 6.14,-0.77 0.17,-1.61 2.36,0.02 3.34,-1.21 1.09,-1.15 1.09,-3.64 3.34,-2.57 1.75,-1.21 4.32,-0.24 5.87,-0.95 0.4,-2.48 -3.41,-3.46 -4.42,-5.35 -2.08,0.81 -4.89,2.28 -6.69,-0.08 -1.29,-0.72 0.48,-2.24 -1.27,-3.27 -1.88,-0.45 -2.07,-2.21 -0.54,-3.2 2.84,0.11 5.65,-1.41 4.42,-4.62 -1.62,-0.54 -3.31,-2.15 -0.6,-2.68 1.86,-1.01 -0.44,-3.29 0.61,-4.77 -1.01,-0.87 -2.68,-1.46 -1.18,-2.69 -0.07,-1.43 -0.47,-4.45 -2.45,-3.41 -0.92,1.43 -0.96,-2.2 -2.67,-1.24 -2.3,-0.25 -5.38,-1.98 -6.1,-3.66 0.91,-1.6 -0.72,-3.91 -1.67,-5.05 -0.92,0.6 -1.38,4.39 -1.98,1.49 -1.2,-0.67 -2.47,-1.05 -3.16,-0.2 -0.47,-1.65 -2.24,-0.25 -2.45,-1.94 -1.91,1 1.34,4.52 -1.22,4.39 -1.46,2.03 -3.74,-0.79 -2.75,-2.52 -1.34,-0.95 -2.09,-3.13 -3.54,-3.63 z", + "department-11" : "m 322.74,505.07 c -2.05,0.87 -0.82,6.47 -3.43,3.37 -1.24,-1.83 -5.19,2.71 -5.61,-1.17 -0.96,-1.29 -3.24,1.91 -4.87,-0.09 -1.63,-0.8 -2.35,3.52 -2.64,0.63 -0.96,-2.44 -1.93,-1.82 -2.84,-0.31 -0.91,1.07 -1.52,2.84 -0.93,4.7 -1.36,0.65 -4.52,-0.56 -3.73,2 -2.59,1.87 -0.87,4.71 -0.49,7.11 -1.27,1.72 2.24,1.99 3.14,3.2 1.19,0.53 2.27,1.21 2.96,0.05 1.12,0.9 1.35,2.64 3.05,1.69 2.12,0.9 2.09,4.11 1.18,5.21 3.13,0.75 0.58,4.42 2.61,6.09 -0.39,0.99 -3.64,-0.55 -2.72,1.47 3.15,0.22 2.69,5.73 -0.43,5.57 -2.23,-0.56 -4.71,2.43 -1.69,3.29 1.21,1.07 1.25,2.2 0.94,3.14 2.17,2.52 4.98,0.67 7.49,0.33 1.51,2.48 4.82,3.48 4.44,6.58 1.77,-0.41 3.17,-3.16 4.49,-3.39 3.31,0.6 4.11,-3.13 3.04,-5.57 -1.83,-2.22 -0.3,-4.53 2.45,-3.77 2.55,1.09 4.79,-0.72 7.38,0.01 2.84,0.15 6.37,1.82 8.78,-0.17 0.65,-3.39 5.24,-6.04 7.54,-2.78 1.85,0.63 5.78,4.21 6.08,0.38 -0.45,-2.41 3.52,0.65 2.08,-2.31 -2.01,-0.09 -2.51,-4.47 -0.81,-3.38 -1.64,2.12 0.92,2.66 1.07,0.34 -0.46,-2.15 2.38,-4.6 1.05,-6.15 -2.36,0.27 -1.35,-5.67 0.64,-3.13 -2.54,0.73 1.01,4.03 1.12,0.84 1.32,-2.4 3.72,-4.96 4.13,-7.43 -1.48,-1.18 -2.13,-3.67 -4.25,-2.51 -1.21,-1.56 -3.82,-0.43 -5.13,-2.43 -2.87,1.08 -0.98,-4.2 -4.12,-2.08 -1.35,-0.41 -2.91,-0.78 -3.72,-1.82 -0.39,1.7 -3.42,0.2 -2.88,2.31 -1.03,1.88 -2.16,4.69 -4.29,2.05 -1.21,-0.21 -0.6,-4.63 -2.32,-1.66 -2.18,1.62 -3.12,-0.12 -3.87,-2.12 -3.09,-0.03 -1.41,-4.42 0.31,-5.1 -2.19,-1.27 -5.18,-2.28 -7.77,-1.42 -1.98,2 -4.51,-1.63 -6.72,-1.15 -0.21,-0.07 -0.4,-0.62 -0.72,-0.42 z", + "department-34" : "m 390.74,470.95 c -2.99,-0.26 -2.82,5.22 -4.91,4.05 -0.85,-0.82 -3.55,2.9 -1.7,3.78 -2.23,1.02 -3.63,-1.19 -4.2,-2.93 -1.16,0.9 -4.89,3.4 -3.25,0.24 -0.72,-2.79 -3.95,-1 -5.3,0 -2.69,-1.07 -4.43,1.99 -3.3,4.01 -2.19,2.21 -5.5,0.8 -7.8,-0.28 -1.78,1.11 -0.38,3.61 -0.42,5.05 -1.55,1.49 1.67,5.37 -2.24,4.09 -1.98,-1.46 -4.85,0.46 -4.95,2.6 -2.71,0.38 -5.15,2.58 -7.61,2.47 -1.2,-2.9 -5.65,-2.66 -5.41,0.83 -0.2,2.13 -0.02,4.29 2.09,5.91 -1.23,1.35 0.72,3.85 -1.77,4.6 -0.84,1.05 -3.22,1.42 -1.8,2.86 -2.1,0.55 -3.27,4.78 -0.38,4.9 0.41,3.09 3.29,3.1 4.71,0.7 1.12,1.12 0.35,3.34 2.55,3.76 2.97,1.15 1.66,-5.18 5.05,-4.27 1.09,-0.26 0.38,-2.58 1.62,-0.55 1.21,1.33 3.32,1.66 5.28,1.1 -0.81,3.2 2.64,2.34 4.33,4 1.73,-0.69 2.59,1.52 4.38,0.6 1.39,1.92 3.62,4.56 5.52,1.34 2.58,-2.15 5.39,-4.64 8.99,-3.22 1.68,-2.14 3.28,-4.7 5.33,-6.66 2.9,-0.94 5.12,-2.93 7.63,-4.62 1.32,-0.52 2.38,-2.93 0.36,-1.17 -0.86,0.97 -3.9,2.82 -4.09,1.95 2.86,-0.54 3.94,-3.18 5.35,-4.98 2.22,-0.89 3.15,-3.57 5.97,-3.69 2.76,-1.69 5.46,-2.2 8.14,-1.32 3.13,-2.28 2.15,-5.6 0.6,-8.52 -0.42,-1.85 -2.64,-1.51 -3.41,-3.24 -1.72,-0.64 -2.58,-4.02 -5.12,-2.47 -0.36,-1.17 1.06,-3.05 -1.22,-3.23 -1.16,-1.21 -1.48,-2.47 -3.51,-1.47 -2.48,1.54 -3.44,-1.7 -1.82,-3.25 0.15,-1.49 -1.98,-1.29 -2.11,-2.79 -0.5,-0.22 -1.04,-0.13 -1.56,-0.19 z", + "department-81" : "m 317.26,455.8 c -1.38,0.45 -1.96,1.61 -3.59,0.76 -0.3,1.95 -3.52,3.22 -5.56,2.27 -1.35,-1.6 -1.97,-0.02 -0.95,1.04 -0.95,0.36 -4.67,-1.27 -3.47,1.46 -0.16,1.66 -2.33,-1.92 -2.18,0.76 -1.1,0.98 -2.79,-1.57 -4.48,-0.74 -2.96,-0.67 -1.32,3.31 0.16,3.83 0.79,1.92 -1.89,3.01 -2.42,4.25 -1.32,0.93 -1.16,3.17 -3.54,1.88 -3.23,0.63 2.44,1.72 -0.33,3.16 -1.29,2.54 1.59,4.57 1.92,6.82 3.43,0.3 1.18,4.78 4.33,5.68 1.56,1.28 -3.01,2.06 -0.13,2.25 2.4,0.02 1.46,2.84 -0.02,3.51 0.41,1.89 3.59,2.46 5.14,3.73 3.27,0.27 2.72,5.06 6.14,5.64 1.57,0.82 3.54,1.72 3.47,-0.75 2.28,-0.44 1.4,2 0.21,3 0.06,1.82 2.22,2.93 2.93,4.31 2.14,0.3 3.89,-2.52 5.16,0.35 2.18,0.85 0.37,-3.47 2.64,-4.11 1.88,0.14 4.42,2.05 6.83,2.16 2.71,-2.86 6.35,1.58 9.11,-0.98 1.2,-0.64 2.07,-1.84 2.78,-2.36 -0.59,-1.87 0.29,-4.05 -1.8,-5.38 -0.4,-2.17 -0.06,-5.25 1.22,-6.85 1.68,0.37 3.78,1.08 4.87,2.68 2.13,-1.79 6.04,-1.49 7.35,-3.74 0.82,-2 0.39,-5.04 -2.37,-4.51 -1.51,-1.26 -3.19,-1.55 -4.19,0.39 -2.37,0.97 -5.11,-0.89 -6.55,-2.85 -1.52,-2.15 -3.76,-4.35 -2.85,-6.85 -1.52,-0.96 -0.28,-3.74 -2.85,-4.01 -0.47,-0.84 1.76,-2.39 -0.4,-3.07 -0.29,-2.52 -2.16,-4.07 -4.11,-4.88 -0.57,-2.53 -3.81,-3.32 -5.31,-4.22 -0.15,-2.48 -4.32,0.72 -4.86,-1.12 1.44,0.14 3.17,-1.78 0.74,-1.46 -0.91,0.39 -2.23,-1.71 -3,-2.06 z", + "department-82" : "m 270.52,443.01 c -2.14,1.16 -4.19,2.19 -6.63,2.16 -1.8,1.76 -1.62,-2.78 -3.54,-0.83 0.31,1.77 -1.92,4.88 1.19,4.85 2.39,1.55 0.09,4.21 -0.3,6.31 -0.44,1.21 -4,0.94 -1.6,2.01 1.97,0.84 -0.06,4.23 -1.88,2.4 -1.71,-1.22 -1.76,0.34 -2.14,1.6 -2.88,-0.32 -2.21,4.49 -0.81,4.92 0.76,-1.3 4.97,-1.27 3.43,0.36 -1.84,1.04 -0.66,3.8 -2.94,4.81 -1.25,0.84 -0.68,2.87 0.84,1.84 1.82,0.52 5.75,1.1 3.97,3.56 1.04,0.67 0.69,2.25 0.98,2.38 1.77,0.78 -1.98,4.07 1.01,3.39 2.26,-0.43 4.92,-0.42 6.74,-1.49 1.27,0.58 2.39,0.31 3.28,-0.35 1.56,0.75 2.53,2.41 3.56,2.88 1.74,-0.62 2.22,-2.04 4.12,-2 1.89,-0.5 1.91,-2.44 -0.22,-2.07 -1.95,-1.13 1.52,-1.46 1.74,-1.49 -0.38,-2.02 1.51,-2.5 2.7,-1.14 2.06,1 2.76,-3.06 4.11,-1.34 0.99,-1.05 2.54,-1.76 3.38,-2.23 -0.31,-0.89 -2.82,-2.03 -0.52,-2.27 3.19,1.02 3.39,-3.02 5.79,-4.18 1.52,-1.98 -2.9,-3.42 -1.35,-5.63 1.94,-1.07 4.17,0.24 5.66,0.61 0.71,-1.21 1.03,-1.65 2.08,-0.63 0.24,-1.33 0.21,-2.59 2.09,-1.85 1.1,0.24 2.24,0.41 1.15,-0.79 0.51,-1.8 4.19,2 3.66,-0.96 -0.31,-2.1 -2.39,0.61 -2.47,-1.31 -3.3,-1.19 0.65,-3.45 1.77,-4.89 0.21,-2.45 -4.44,-0.16 -4.38,-2.98 0.49,-1.88 -1.6,-1.91 -2.4,-1.54 -1.21,-0.58 -1.91,1.84 -3.15,0.41 -2.28,-0.21 -4.04,4.15 -5.85,2.74 -0.79,-2.47 -3.62,0.05 -1.56,1.51 0.31,2.35 -3.95,2.36 -3.07,-0.25 -2.24,-2.68 -3.51,1.69 -5.86,2.39 -1.45,2.53 -2.73,-0.71 -4.63,-0.48 -0.83,-1.02 1.91,-4.61 -0.86,-3.31 -1.97,2.14 -4.17,-0.81 -5.73,-2.04 -1.54,-0.03 -2.07,-2.27 -2.71,-3.05 0.48,-0.77 3.85,-1.24 1.34,-2.04 z", + "department-12" : "m 344.82,407.22 c -2.14,2.24 -4.92,3.53 -5.91,6.44 -0.2,3.05 -2.88,4.6 -2.81,7.85 -2.78,1.77 -2.83,6.44 -7.03,4.76 -2.85,0.81 -3.66,-2.92 -6.7,-0.63 -2.79,-0.18 -0.5,4.84 -3.68,4.44 -1,2.09 -4.35,0.18 -4.99,0.68 -2.27,1.36 -4.93,3.35 -6.47,5.56 -0.5,0.74 -1.33,-2.39 -1.72,0.49 -3.55,0.2 0.23,4.71 0.28,6.73 2.91,2.12 -2.27,3.27 -0.47,5.85 1.39,1.46 5.91,0.06 3.8,3.53 -3.1,-0.35 -2.94,5.1 0.37,3.8 0.84,2.24 2.93,2.1 3.97,0.28 0.64,-0.72 3.02,-0.92 4.38,-1.29 0.38,2.53 5.59,1.47 2.9,3.68 1.7,0.61 3.86,-0.93 4.36,1.52 3.19,-0.21 4.33,4.36 7.18,4.97 1.07,2.25 3.3,4.6 2.21,6.63 2.23,0.9 1.85,3.49 2.9,4.9 -1.38,2.72 2.8,5.25 4.08,7.58 2.19,1.85 5.01,1.88 6.77,-0.28 2.08,1.32 5.71,0.5 5.44,3.99 1.27,0.35 3.33,-1.02 4.93,0.31 1.97,-0.43 -0.03,-3.71 1.21,-5.08 -2.26,-3.18 1.08,-5.37 3.72,-2.96 2.82,0.94 5.31,-0.91 4.29,-3.64 1.04,-3.15 6.02,0.38 5.11,-4.28 0.93,-2.39 7.18,-5.33 2.04,-7.25 -1.51,-0.47 -2.97,-0.34 -3.42,-2.06 -1.73,1.9 -3.93,-2.51 -0.51,-1.95 0.48,-1.6 1.14,-3.68 2.65,-4.73 -0.68,-4.43 -9.42,2.3 -6.63,-3.08 -1.18,-1.25 -3.15,-1.32 -3.65,-2.81 -2.6,0.85 1.8,-4.01 -0.75,-5.21 -0.72,-3.41 2.21,-7.15 -2.14,-9.54 -0.76,-2.6 0.83,-5.86 -2.52,-7.49 -2.49,-2.83 -5.19,-5.99 -4.63,-9.9 -1,-0.3 1.62,-2.72 -0.79,-2.1 -2.92,-0.77 -0.83,-7.54 -5.15,-5.36 -2.76,2.56 0.68,-4.65 -2.57,-4.34 z", + "department-46" : "m 289.52,399.9 c -1.93,0.63 -3.22,2.08 -5.19,2.51 -0.55,2.48 1.91,5.04 0.2,6.77 1.53,1.17 0.68,2.13 -0.64,2.71 -0.49,1.39 -2.82,1.08 -2.03,3.22 -2.04,0.31 -3.93,1.87 -1.84,3.73 -0.63,1.48 -1.5,2.57 -2.96,3.19 -1.15,2.55 -6.2,0.92 -4.86,4.75 -0.81,1.54 -2.94,2.2 -2.41,4.25 -2.21,-0.14 -3.42,2.82 -5.02,1.78 1.06,2.16 1.42,4.31 1.76,6.68 1.42,0.87 1.66,2.27 1.65,3.98 1.08,0.06 4.12,-1.76 2.93,0.81 -1.71,0.25 -2.37,1.31 -0.78,2.24 0.3,2.25 3.42,1.16 3.62,3.37 1.9,1.69 3.3,-0.16 5.08,-0.35 0.72,1.57 -2.26,4.22 0.76,4.02 1.46,0.62 1.81,2.15 3.19,0.31 1.85,-0.6 3.07,-3.05 4.33,-3.46 2.43,-0.2 1.29,4.21 3.91,2.83 1.72,-1.05 -1.79,-4.67 1.45,-4.27 1,-0.03 1.35,3.17 2.11,1.18 -1.32,-1.83 1.53,0.24 1.9,-1.51 1.38,-1.16 3.1,-1.29 4.45,-0.92 0.2,-1.96 1.81,0.11 2.71,-1.11 1.67,0.1 4.18,-1.49 1.89,-2.9 -0.47,-2.26 -2.34,-4.82 -1.67,-6.85 1.76,-0.03 1.59,-1.88 3.42,-1.54 2.32,-1.45 3.8,-3.77 6.26,-4.75 1.66,-0.78 4.05,1.82 5.11,-0.84 2.37,0.13 1.47,-2.41 -0.05,-3.14 -0.16,-1.64 0.62,-3.82 -1.82,-3.9 0.88,-2.1 0.95,-4.43 1.69,-6.42 -0.75,-2.19 -3.06,-3.63 -3.78,-5.98 -0.22,-1.15 1.69,-2.17 -0.2,-3.09 0.38,-3.82 -4.01,-3.64 -6.05,-1.43 -0.4,-1.8 -2.37,-1.92 -3.03,-0.03 -1.66,0.66 -3.24,2.7 -4.53,1.71 -1.67,0.61 -1.38,-2.93 -3.39,-2.7 -0.94,-2.08 -2.85,-4.19 -5.2,-4.37 -1.54,-0.53 -2.13,1.38 -2.99,-0.49 z", + "department-24" : "m 247.71,356.64 c -1.33,1.72 -2.15,5.44 -4.37,3.98 -1.29,2.19 0.65,6.02 -2.78,7.22 -1.07,1.73 -1.22,3.17 -3.43,2.89 -1.35,1.3 -2.7,2.47 -3.69,2.4 1.31,1.44 -2.43,1.19 -1.92,3.33 -1.11,2.86 2.21,7.18 -2.16,7.82 -1.72,1.11 -2.1,4.21 -4.37,4.44 -1.83,-1.85 -4.84,-0.09 -5.58,2.19 -1.71,0.92 1.62,1.85 -0.97,2.36 -2.09,3.33 4.38,0.08 4.2,3.85 0.13,2.45 -1.7,4.67 -1.9,7.15 -2.34,1.81 1.75,4.57 -1.01,6.63 -1.98,1.62 -0.57,1.93 1.18,2.08 1.5,2.41 4.72,0.24 7.34,1.24 1.58,-2.14 3.57,-4.36 5.67,-1.25 -1.59,1.46 -2.98,1.82 -1.65,4.38 2.67,1.95 3.57,5.11 3.66,7.87 2.89,2.27 5.83,-2.31 8.31,-0.64 1.5,-0.14 1.73,-2.6 3.78,-2.17 1.74,-0.66 1.71,2.87 4.06,1.59 2.32,0.27 4.87,-3.2 5.62,0.33 1.53,0.48 -2.2,5.61 1.71,4.55 1.86,-2.63 5.57,-3.37 7.55,-0.26 1.61,0.15 2.83,4.14 2.8,0.73 3.09,-1.47 0.93,-6.06 5.03,-5.87 2.1,-1.49 4.63,-2.68 4.89,-5.07 -3.18,-2.94 3.24,-2.15 2.07,-5.03 1.39,-0.77 2.75,-1.97 3.62,-3.12 -2.55,-1.45 1.11,-2.89 -0.92,-4.95 -0.82,-1.88 -0.06,-3.23 0.88,-4.14 -1.12,-2.13 -3.92,-5.19 -1.35,-6.5 -1.47,-1.44 -7.7,-0.59 -6.45,-3.12 3.25,-2.31 -3.9,-1.43 -1.21,-3.75 2.08,-0.54 1.75,-2.32 -0.17,-2.44 -0.66,-1.42 -0.44,-4.25 1.4,-4.42 0.7,-1.32 4.27,-4.12 0.61,-3.76 -2.11,-1.25 -0.47,-1.95 0.2,-2.77 -1.16,-1.12 -2.39,-0.61 -3.26,-2.06 -1.89,0.78 -2.29,-1.48 -4.2,-1.06 -0.44,-1.95 3.54,-4.4 -0.69,-4.44 -2.48,1.66 -3.1,-3.01 -4.18,-4.31 -2.45,-0.69 -5.34,1.33 -6.92,-0.8 -0.28,1.94 -2.24,3.99 -3.3,1.71 -4.01,-0.32 1.3,-5.83 -3.25,-6.54 -2.23,1.7 -3.48,-1.31 -4.85,-0.28 z", + "department-16" : "m 252.54,327.65 c -2.29,0.72 -1.44,3.44 -4.4,2.98 -1.27,1.85 -4.05,0.47 -4.98,-1.39 -0.68,-3.54 -5.06,1.6 -1.79,2.2 -0.58,3.13 -3.4,1.11 -5.1,0.91 -3.14,1.37 -5.19,-1.3 -7.86,-1.81 -1.52,1.5 -2.93,-1.91 -4.66,0.15 -1.97,-0.37 -2.45,3.38 -5.06,2.24 -1.93,0.04 0.82,2.24 -1.2,2.74 0.87,2.68 -3.95,2.15 -2.09,4.68 -0.28,1.91 -3.6,0.31 -2.2,2.53 -0.11,1.44 2.16,2.96 -0.03,4.42 -0.09,1.53 -0.09,4.77 -2.18,3.4 -1.96,2.42 -3.18,-3.47 -5.22,-0.43 -2.04,1.16 -4.38,0.45 -6.15,1.89 -2.73,1.16 0.38,1.62 1.39,1.98 -2.76,2.08 2.9,5.14 -0.46,5.78 -1.46,1.75 0.17,2.05 1.51,1.62 1.01,2.19 5.21,3.29 2.97,5.77 2.34,0.08 4.85,3.05 1.84,4.29 -0.18,1.67 3.8,4.33 0.08,4.95 -3.11,0.84 0.04,2.57 1.34,2.89 -0.62,0.79 -3.1,1.95 -1.06,3.18 2.2,-2.04 4.86,0.36 7.25,0.92 -0.44,1.96 0.03,3.48 2.36,2.77 1.73,0.17 2.65,2.07 3.44,2.83 1.42,-1.43 3.54,-1.84 5.23,-0.38 1.69,-1.46 2.03,-3.29 3.72,-4.47 1.1,-1.12 3.55,-1.27 2.27,-3.69 -1.79,-2.79 1.03,-5.85 1.8,-7.57 0.23,-1.21 1.54,0.42 2.16,-1.12 1.02,-1.12 2.42,-1.8 3.66,-1.6 0.38,-3.16 4.03,-3.24 3.74,-6.43 -0.64,-1.42 -0.09,-4.56 1.85,-3.02 1.5,-1.35 2.27,-4.04 4,-5.85 1.03,-2.13 3.92,-2.7 3.46,-5.45 1.36,-0.67 3.4,1.91 3.05,-0.98 1.5,-1.75 2.07,-3.92 1.46,-6.01 -0.57,-2.93 3.18,0.64 4.34,-1.8 2.69,-1.02 0.69,-6.52 -1.66,-5.43 -1.88,-0.53 -3.24,-3.11 -1.94,-5.21 -0.3,-3.28 -2.38,-2.24 -4.88,-2.46 z", + "department-86" : "m 220.19,259.01 c -2.67,1.11 -1.14,6.66 -4.7,5.46 -1.12,2.67 -0.28,6.33 2.34,7.3 1.21,2.8 -0.12,6.86 2.81,8.58 -0.34,0.88 -4.74,0.94 -2.01,2.12 1.66,0.91 -1.21,4.66 1.86,5.01 0.17,2.88 -3.53,4.96 -3.39,7.51 2.34,-1.74 2.86,1.09 4.01,2.56 -2.36,1.41 -1.42,4.19 -3.11,6.09 1.11,2.79 0.46,6.03 2.68,8.32 -0.98,2.26 1.88,5.6 3.64,2.56 3.26,-2.86 4.22,4.09 1.42,5.44 -1.17,2.3 -1.1,6.6 2.78,6.31 1.76,0.42 -1.54,4.9 1.9,4.82 2.58,2.29 6.42,0.33 9.24,2 3.12,-1.13 -1.64,-3.61 1.54,-4.88 2.93,-0.45 3.66,4.64 7.15,2.55 2.65,-1.24 4.01,-4.64 7.5,-3.07 5.18,0.43 -2.68,-6.17 1.99,-6.32 0.93,-3.5 4.73,-3.96 7.28,-4.09 1.27,-2.3 2.21,-5.88 5.59,-4.54 3.05,-1.23 4.82,-4.66 1.43,-6.65 -0.96,-2.09 -0.63,-5.43 -4.09,-4.96 -2.4,-0.38 -3.1,-2.52 -5.49,-3.06 -4.32,-2.56 0.87,-7.41 -2.39,-10.17 -3.73,-2.36 -3.49,-7.19 -7.25,-9.59 -1.82,-2.65 -1.18,-7.21 -5.41,-7.83 -3.82,-1.6 1.37,4.35 -2.65,2.83 -3.22,-0.17 -6.05,2.2 -9.36,1.21 -5,0.41 0.09,-6.41 -3.44,-7.54 -1.02,-1.75 -5.86,1.14 -3.94,-2.42 -1.49,-2.05 -5.43,-1.78 -6.57,-4.86 -0.36,-0.36 -0.83,-0.61 -1.33,-0.67 z", + "department-37" : "m 248.48,223.77 c -1.42,3.62 -6.45,2.73 -8.2,5.37 -1.46,1.36 -3.9,-2.72 -3.72,0.4 1.37,1.11 1.66,4.33 -0.82,2.81 -1.82,-1.23 -6.06,-3.74 -5.96,0.05 -1.81,2.38 0.79,4.4 -1.19,6.79 -1.59,2.5 -0.38,5.84 -2.27,7.78 -1.62,2.49 -3.61,4.89 -3.44,8.06 -0.62,2.26 -1.45,6.53 1.54,7.19 1.25,-0.87 1.94,2.54 3.31,0.71 0.97,1.11 -0.63,5.21 2.13,3.2 1.8,-1.1 1.89,1.61 3.57,1.4 0.89,2.11 -1.82,7.48 2.05,6.94 1.94,-0.66 4.56,0.68 6.7,-0.98 1.61,-0.96 6.42,0.73 3.58,-2.33 -0.63,-2.85 4.7,0.45 5.56,1.73 0.59,2.71 0.86,5.99 3.94,7.28 1.95,1.88 1.63,7.78 6,6.31 1.43,1.23 2.54,1.03 3.52,-0.09 1.84,-0.7 -1.13,-3.48 0.89,-4.6 0.94,-2.88 0.5,-6.24 2.1,-8.75 -0.51,-3.01 1.88,-5.04 4.77,-5.05 2.3,-0.22 4.18,2.32 5.36,-0.8 1.09,-2.04 2.29,-3.59 3.83,-4.89 -0.17,-3.29 -2.68,-5.86 -4.09,-8.7 -1.3,-3.91 -5.06,-1e-4 -7.13,-2.72 -1.96,-2.54 1.63,-6.07 -1.07,-8.64 1.91,-0.4 1.97,-2.18 -0.13,-2.78 -0.17,-1.99 -3.11,-4.5 -0.71,-6.14 -0.62,-1.2 -2.55,-4.44 -3.27,-1.51 -0.57,-2.17 -2.63,-4.19 -4.63,-1.88 -3.07,2.82 -2.07,-3.8 -2.27,-4.29 -2.95,-0.2 -5.98,-1.05 -8.71,-0.82 -1.21,0.63 -0.51,-1.11 -1.23,-1.05 z", + "department-72" : "m 231.9,172.51 c -2.61,0.34 -4.43,1.91 -6.19,3.04 -1.38,0.48 -2.05,1.94 -3.42,2.6 -0.33,3.05 -3.2,-1.34 -4.33,0.83 -1.43,1.08 -5.63,0.06 -4.24,2.95 -3.08,-0.79 0.86,3.38 -1.37,4.58 -0.86,1.81 1.85,4.28 -0.94,5.2 -2.01,1.1 -4.73,3.07 -1.86,4.9 -0.99,1.29 0.02,2.59 -0.74,3.79 -2.44,-0.68 -6.78,1.67 -3.4,3.85 0.73,2.09 1.76,4.48 -1.53,4.5 -2.58,-0.44 -3.89,2.42 -1.36,3.52 0.5,2.29 -5.19,2.01 -2.45,4.82 3.47,-0.45 1.48,4.86 3.4,5.98 2.31,-1.32 4.91,2 6.78,-0.52 3.29,0.6 -2.46,2.42 0.25,4.06 0.74,1.66 3.87,2.49 4.49,0.08 2.3,1.12 4.71,0.48 6.02,2.83 1.69,1.36 4.05,0.33 5.35,2.19 1.62,-0.93 1.69,-2.65 3.94,-1.78 2.54,-0.05 4.67,2.82 7.14,2.4 0.9,-1.5 -2.93,-3.52 -0.02,-4.31 1.04,1.34 2.82,2.12 3.33,-0.2 2.31,-0.39 4.79,-1.35 6.51,-2.6 -2.85,-2.23 1.58,-5.3 3.79,-5.52 0.46,-1.4 2.4,-3.52 3.78,-4.83 -1.44,-1.85 -0.29,-6.03 1.78,-3.82 -1.09,-2.59 3.21,-2.96 0.58,-5.37 0.08,-1.7 1.43,-3.61 -1.11,-3.97 -1.64,-2.45 2.4,-1.51 1.74,-3.29 -2.05,-0.4 1.4,-1.62 0.89,-2.96 2.29,0.52 3.2,-1.49 0.55,-1.94 -2.01,-0.09 -3.25,-2.56 -5.32,-1.22 -2.38,-0.82 -2.49,-6.22 -5.36,-4.81 0.79,2.39 -2.74,0.17 -4.1,0.37 -1.11,-1.06 -2.58,-1.99 -2.45,-3.6 -1.86,0.23 -5.36,-0.71 -4.94,-3.08 -0.44,-3.4 0.09,-8.02 -4.58,-8.58 l -0.59,-0.08 2e-5,0 z", + "department-61" : "m 236.9,140.22 c -1.37,2.93 -4.44,0.95 -5.77,0.51 -0.7,2.09 -2.92,0.83 -4.24,2.34 -1.35,-2.77 -4.38,-0.25 -5.26,1.87 -3.09,0.73 -4.56,4.12 -8.22,4.12 0.6,2.97 -3.23,-1.05 -4.99,-0.78 -2.07,-0.19 -4.42,-1.53 -4.55,1.51 -1.86,-0.97 -4.38,-5.01 -6.99,-1.88 -2.67,0.7 -5.63,2.58 -8.38,0.81 -1.94,-0.21 0.58,2.41 -2,2.73 -2.21,0.79 -4.81,2.48 -5.8,4.18 1.64,0.47 4.03,2.64 4.89,3.81 -2.6,1.08 -0.04,3.17 -0.37,4.16 -0.1,3.46 -3.63,4.61 -4.76,7.47 1.29,1.59 1.78,3.06 3.56,2.81 -0.2,2.49 3.05,0.83 2.04,-0.77 2.19,0.16 3.37,-1.72 3.97,1.42 2.29,-1.26 4.74,-2.16 6.49,-3.76 2.15,-0.24 4.6,-0.72 6.51,1.02 1.07,-1.63 2.35,-2.41 3.95,-1.42 1.83,-1.07 -0.27,-4.47 3.02,-3.12 1.81,1.18 3.45,2.14 1.99,3.87 0.35,2.25 1.92,4.62 4.47,2.94 1.72,0.65 -0.84,6.99 2.46,4.03 1.16,0.36 3.03,2.09 3.43,-0.38 1.63,-0.81 2.66,-2.19 4.04,-2.85 0.28,-1.38 5.31,-3.16 7.52,-1.96 3.9,1.26 2.59,5.53 3.26,8.6 -0.11,2.92 4.56,1.76 5.41,3.53 -0.07,1.99 3.35,3.78 5.67,2.91 3.19,-3.99 3.88,7.21 7.66,3.4 3.17,-1.53 -1.64,-4 -0.17,-6.33 -3.57,-0.8 0.8,-4.69 3.13,-4.08 2.2,-1.01 6.03,-4.76 3.83,-6.66 -0.95,-2.15 2.33,-4.5 -0.88,-5.72 0.72,-2.4 -4.26,-1.56 -3.98,-4.43 -1.88,-0.39 0.25,-5.19 -3.06,-4.1 -0.43,-1.15 -0.37,-2.32 -1.89,-2.36 3.89,-2.53 -0.45,-5.72 -3.19,-6.87 -1.23,-0.78 -2.92,-1.32 -1.88,-2.86 -1.36,-1.19 -1.22,-3.67 -3.26,-1.5 -2.58,-0.67 -7.27,0.22 -7.13,-3.52 0.64,-0.73 0.75,-2.65 -0.53,-2.7 z", + "department-27" : "m 242.33,106.21 c -2.25,1.4 -4.46,3.12 -7.27,3.2 -3.13,0.01 -1.44,3.96 -0.97,5.79 -0.25,1.42 -0.2,3.07 0.05,4.32 1.56,-2.67 4.74,1.16 1.61,1.68 -3.49,1.51 3.09,2.25 1.65,4.56 -0.6,1.84 0.47,2.5 1.82,3.11 -1.56,1.19 -0.91,2.9 -0.68,4.31 -3.08,-0.3 -1.43,3.4 0.78,3.14 1.11,2.25 -1.15,5.22 -2.03,7.57 1.97,1.86 5.79,2.95 8.17,1.67 1.68,-0.94 2.06,2.46 2.78,2.55 -1.38,3.04 5.18,3.21 5.92,5.84 1.68,1.55 -0.55,2.63 -0.78,3.74 1.84,0.46 1,3.47 3.6,1.89 2.3,-0.06 2.09,-4.03 4.58,-2.4 2.21,-1.11 4.77,-0.84 6.52,-3.04 1.78,1 3.18,0.1 2.69,-1.95 1.73,0.3 3.34,2.1 5.52,1.18 1.73,0.91 5.58,0.54 5.97,-1.71 -2.26,-3.14 2.59,-4.24 4.24,-5.72 -0.13,-1.58 -1.51,-4.22 1.43,-3.88 0.74,-0.67 -0.33,-1.93 0.53,-2.57 -1.47,0.74 -2.69,-0.27 -1.44,-1.58 -1.04,-1.31 -2.12,-4.8 0.61,-3.44 1.11,-1.2 0.8,-1.98 2.49,-1.09 3.37,-0.07 4.6,-2.86 5.45,-5.81 0.13,-2.58 1.39,-4.89 2.52,-6.95 1.56,-1.59 3.56,2.74 3.6,-0.58 -1.93,-1.54 -0.62,-5.1 -2.69,-7.09 -0.94,-2.78 -3.12,-0.33 -5.23,-1.99 -1.74,0.33 -2.23,-3.11 -4.08,-1.45 -2.23,-1.34 -5.13,-1.37 -7.71,-1.23 -0.89,1.39 -2.82,1.34 -2.49,3.35 -1.48,1.47 -1.23,4.8 -4.4,3.5 -1.42,0.9 -3.69,0.83 -4.18,2.58 -2.63,-0.42 -3.44,1.09 -2.81,3.24 -1.76,0.32 -3.16,0.76 -4.2,-0.95 -1.28,0.44 -0.68,-4.41 -2.73,-1.94 -0.92,0.95 -1.47,-2.05 -3.03,-1.54 0.47,-2.75 5.09,0.66 3.34,-3.08 -0.36,-1.37 -2.02,1.31 -1.95,-1 -2.7,-0.13 -3.88,-2.85 -6.72,-1.29 -2.27,1 -3.56,-0.22 -5.16,-1.45 -2.66,0.51 -3.03,-3.16 -5.33,-3.52 z", + "department-14" : "m 231.23,109.9 c -4.06,0.09 -6.85,2.84 -9.55,5.38 -3.34,2.06 -7.05,3.56 -10.99,3.85 -1.95,1.92 -3.54,-1.01 -5.94,-1.28 -2.67,-1.83 -5.65,-1.96 -8.71,-2.47 -2.52,-0.48 -5.06,0.57 -7.64,-0.13 -3.42,-0.41 -7.08,-0.38 -10.19,-1.98 -1.94,-1.82 -4.91,-0.74 -7.32,-0.9 -3.6,0.27 -1.56,4.12 -3.38,5.89 0.35,2.42 2.43,4.3 4.66,5.41 1.29,2.26 4.25,1.82 4.95,-0.81 0.89,1.47 2.18,1.84 0.71,3.15 -2.85,2.72 2.74,3.63 1.8,6.79 0.25,1.58 -1.34,2.53 0.39,3.45 -2.56,1.47 -4.13,6.64 -7.82,4.57 -1.7,0.05 -2.56,3.86 0.25,2.27 1.68,0.8 -1.5,3.01 -2.33,3.69 -1.18,-0.64 -2.61,2.05 -3.44,2.77 1.51,0.52 3.07,1.11 2.99,2.92 1.94,0.53 4.35,0.57 6.32,-0.18 1.55,1.73 4.66,1.77 5.78,1.31 0.33,1.85 2.06,-2.55 3.65,-1.79 1.67,-0.4 2.88,-1.72 1.91,-3.16 2.07,-1.17 2.99,1.93 4.94,0.32 1.69,0.63 2.6,-1.47 4.44,-1.14 2.02,-2.53 4.71,-0.49 6.27,0.75 0.09,2.25 1.52,-0.03 1.58,-1.02 2.72,0.42 5.75,0.47 7.89,2.34 0.72,-2.21 4.15,-0.58 5.38,-3.06 1.98,-1.59 4.45,-2.16 5.53,-4.57 1.56,-0.47 2.62,-1.63 3.42,0.6 1.16,-0.33 2.13,-1.63 3.58,-1.13 0.5,-2.08 1.78,-0.88 2.61,-0.44 1.61,0.55 3,0.24 4,-1.29 0.95,1.22 2.59,1.22 2.01,-0.7 1.28,-2.16 0.25,-3.37 -2.04,-3.81 -1.78,-1.67 1.38,-2.37 1.39,-3.02 -1.93,-1.58 2.62,-4.1 -0.98,-4.39 -0.16,-2.06 0.6,-4.48 -2.13,-4.95 -3.24,-2.19 4.22,-2.19 0.79,-4.43 -0.9,-0.04 -3.11,2.04 -1.98,-0.25 -0.33,-1.14 -1.2,-1.29 -0.01,-2.61 -1.49,-1.67 0.64,-7.09 -2.8,-5.97 z", + "department-76" : "m 285.08,67.51 c -1.66,1.28 -3.92,-0.27 -5.32,2.21 -2.55,2.82 -5.75,4.75 -9.23,6.16 -2.69,2.07 -6.27,0.91 -9.1,2.49 -3.04,0.83 -5.97,2.2 -9.16,2.2 -4.64,-0.08 -8.38,2.85 -12.2,5.03 -3.19,1.24 -5.65,3.53 -8.97,4.44 -4.45,0.63 -4.32,5.58 -6.08,8.7 -1.33,2.41 -3.69,6.09 0.02,7.66 2.71,1.09 5.28,1.25 8.39,1.98 3.84,1.23 7.92,-4.2 10.87,-0.97 1.02,1.67 2.99,3.04 4.68,1.44 -0.81,3.45 3.88,2.23 5.92,1.74 1.25,0.7 1.48,-1.8 1.82,0.62 0.74,1.56 3.24,0.12 3.81,1.84 1.65,-0.96 2.48,4.22 -0.34,2.48 -3.28,0.03 0.21,1.48 0.51,2.68 2.73,-3.35 2.83,4.25 5.77,2.84 2.8,-0.27 -0.27,-3.85 3.3,-3.41 1.82,-0.28 2.83,-2.57 4.57,-2.23 0.36,-1.37 4.68,0.8 4.04,-2.57 1.27,-2.05 1.52,-4.08 4.3,-5.05 2.08,0.14 5.31,0.85 7.56,1.4 2.14,-0.45 3.59,3.15 6.18,2.19 2.06,0.69 2.28,-3.97 4.3,-4.86 1.52,-1.49 -0.75,-3.01 -1.45,-0.94 -2.42,-0.89 0.93,-2.53 -0.81,-3.95 0.3,-1.61 -2.27,-1.27 -1.03,-2.58 -0.73,-1.35 1.8,-2.21 -0.04,-3.48 1.02,-1.01 3.32,-5.11 0.67,-2.57 -2.48,-0.31 0.5,-3.34 1.11,-4.23 -0.07,-1.57 3.34,-0.34 1.01,-2.16 -2.4,-2.69 -1.34,-6.85 -4.28,-9.1 -3.65,-1.5 -5.37,-5.07 -8.6,-7.13 -2.03,-0.46 -0.42,-2.8 -2.2,-2.85 z", + "department-60" : "m 299.82,88.06 c -0.68,1.53 -2.52,3 -2.62,4.61 0.88,0.83 2.72,-2.26 2.36,0.47 -2.03,0.88 -1.5,2.81 -1.5,4.35 -1.65,1.28 0.75,1.64 0.2,3.03 0.54,1.64 1.83,2.54 0.02,4.14 0.78,1.65 2.88,-1.94 3.18,0.81 -0.81,1.88 -3.2,3.3 -3.32,5.72 1.83,-0.19 -0.44,1.38 1.38,2.1 1.48,2.13 0.75,4.92 2.41,6.82 0.2,2.27 -1.63,1.56 -2.48,0.39 -2.21,-0.34 -2.49,2.24 -0.48,2.81 -0.83,1.16 -0.47,2.78 1.13,3 2.38,-0.91 4.68,1.32 7.04,0.62 2.19,-0.63 4.26,-0.42 6.14,-1.88 1.82,-1.52 2.59,1.29 4.7,0.92 0.24,2.48 3.26,-1.11 3.69,1.4 -0.75,1.55 3.2,0.09 3.21,-1.39 1.69,-0.21 1.93,2.59 3.71,1.86 2.57,0.22 4.8,1.97 6.25,3.43 0.62,-1.34 1.71,-1.33 1.95,0.34 1.46,2.81 2.94,-2.02 4.79,0.35 1.09,0.96 1.32,2.68 2.73,1.05 0.38,2.06 2.62,0.41 2.41,-0.61 2.06,-2.04 3.56,2.74 5.7,0.23 1.37,0.79 3.07,-1.58 3.55,0.59 0.9,-2.08 4.02,0.32 3.84,-2.61 0.97,-1.2 1.9,-2.09 3.15,-2.84 -1.43,-0.2 -1,-3.93 -2.02,-1.23 0.12,2.36 -0.59,-0.15 -0.51,-1.14 -0.98,-0.34 -1.96,-0.8 -2.82,-1.45 1.46,-1.59 0.58,-5.08 -1.78,-5.51 -1.64,-1.93 1.32,-3.14 3,-2.37 2.78,-1.33 1.45,-5.56 2.96,-6.93 1.83,1.02 3.46,-1.08 0.88,-1.43 -2.12,-0.58 0.91,-1.96 -1.18,-3 -0.31,-1.21 1.9,-1.71 1.13,-3.46 1.11,-2.28 -2.26,-3.66 -0.83,-5.46 -1.28,-1.35 1.28,-1.82 0.48,-3.31 0.33,-2.37 -2.35,1.17 -1.98,-1.22 -1.06,0.07 -2.21,3.33 -3.26,0.83 -1.15,-1.16 -2.97,0.6 -2.46,1.87 -0.95,-1.04 -2.28,-2.96 -3.61,-2.19 0.98,1.2 1.14,2.51 -0.39,1.26 -0.14,2.4 -4.2,0.61 -3.1,3.55 -0.54,2.6 -5.29,-1.86 -5.5,1.9 0.32,2.24 -2.85,2.23 -2.21,0.03 -1.14,-1.83 -2.74,1.59 -3.58,-0.97 -1.21,-1.4 -2.44,-1.07 -3.66,-0.6 -0.85,-3.25 -4.16,-1.53 -6.1,-3.1 -0.93,-1.42 -3.34,-0.98 -4.87,-2.04 -2.87,-0.39 -5.38,1.28 -8.22,0.91 -0.21,-2.15 -3.87,-1.59 -4.92,-1.24 -1.09,-1.54 -2.79,1.74 -4.47,0.11 -1.06,-0.76 -1.06,-1.17 -0.69,-2.16 -0.99,-0.72 -2.08,-1.47 -3.42,-1.36 z", + "department-80" : "m 292.25,47.76 c -3.3,0.48 -3.7,7.09 -0.18,7.88 1.08,1.67 4.2,2.74 3.06,4.24 -2.73,-1.29 -6.63,-3.63 -7.9,0.8 -0.08,3.06 -3.29,5.38 -4.22,7.27 1.37,-0.11 3.64,-1.46 3.18,1.37 3.11,1.87 5.05,5.06 7.98,7.06 3.9,1.29 3.89,5.38 5.12,8.61 0.56,2.66 4.89,3.47 4.09,5.66 1.46,2.82 4.15,-0.88 5.54,0.73 2.25,-2 4.72,2.18 7.27,1.01 2.7,-0.93 5.98,-1.02 8.68,0.5 1.84,-0.03 3.1,2.73 5.49,1.65 1.93,0.79 2.11,3.17 3.94,1.57 2.03,0.38 2.41,3.33 4.24,1.67 1.8,-0.87 1.46,4.54 3.03,1.36 0.02,-3.92 4.11,-1.35 5.69,-2.17 -0.71,-2.24 0.89,-2.61 2.47,-2.96 0.23,-1.49 2.58,-0.96 0.98,-2.41 1.05,-1.53 0.91,1.46 2.09,-0.25 0.9,2.74 1.49,1.35 3.01,0.23 1.35,0.58 3.49,2.16 3.45,-0.59 1.21,0.66 3.53,0.99 2.21,-1.27 0.39,-2.05 -3.23,-2.65 -0.99,-4.12 0.13,-1.56 -2.17,-2.32 -0.06,-3.42 -0.06,-1.95 2.47,-2.66 2.02,-5.11 0.89,-1.27 2.86,-3.19 2.9,-4.11 -2.64,0.29 0.37,-2.52 -2.05,-2.42 -2.22,-1.41 -5.14,-3.16 -7.9,-1.23 -1.34,-2.15 -4.91,2.97 -5.09,0.51 1.42,-1.44 -0.8,-3.49 -2.15,-1.79 -0.94,1.46 -4.33,1.85 -2.41,-0.4 3.11,-2.33 -2.99,-5.63 -2.46,-2.07 1.41,1.98 -2.63,-0.12 -3.46,-0.4 -1.61,-0.21 -3.12,-0.74 -2.69,-2.12 -1.34,-0.69 -1.48,3.04 -2.43,0.22 -3.21,-2.44 -3.38,5.35 -5.85,1.64 -1.72,-1.93 1.49,-5.21 3.99,-5.44 1.33,-2.2 -4.48,-3.79 -5.35,-1.18 -0.74,-1.34 -1.37,-2.06 -1.64,-0.43 -2.88,-0.65 -5.6,0.07 -8.2,1.37 -1.11,-1.55 -3.47,0.2 -3.68,-2.58 1.41,-3.13 -8.2,-2.22 -4.92,-5.34 -0.16,-2.3 -3.14,1.95 -4.11,-1.07 -2.18,-2.39 -5.42,-2.15 -7.98,-0.54 -2.27,1.67 -2.44,-2.55 -4.75,-1.91 z", + "department-95" : "m 297.89,122.77 c -1.93,0.92 -1.82,3.28 -2.24,5.06 -0.18,1.39 -0.88,2.57 -1.71,3.66 -1.18,2.5 3.25,0.35 3.28,2.76 0.67,1.03 2.44,0.71 2.86,-0.15 1.62,0.83 1.89,-1.96 3.5,-0.67 1.15,0.5 1.54,1.3 0.91,2.4 0.05,1.46 1.28,0.91 1.47,-0.15 1.23,-1.85 1.56,1.36 3.2,0.93 1.81,-0.33 2.63,2.19 4.51,1.19 1,-0.65 2.03,-0.32 2.94,-0.74 0.27,0.84 -0.01,2.32 1.49,2.09 1.39,0.41 0.73,2.42 2.34,2.4 -0.26,0.82 -0.29,3.2 0.91,1.57 0.86,-1.05 2.61,-1.25 3.07,-2.57 1.17,0.19 2.33,0.34 3.34,-0.64 1.5,0.48 3.52,2.04 5,0.44 1.28,-0.6 2.07,-1.91 3.13,-2.67 -1.04,-1.28 1.15,-1.17 1.41,-2.36 0.47,-0.74 -0.21,-1.51 0.41,-2.34 -0.57,-0.87 -1.19,-1.72 -1.74,-2.51 -0.76,0.04 -0.35,1.66 -1.56,0.99 -1.63,0.01 0.09,-1.59 -1.48,-1.79 -0.96,-0.62 -1.98,-0.38 -2.67,-1.33 -1.15,-0.06 -2.21,-0.73 -3.09,-0.09 -0.52,-1.59 -2.64,-3.14 -3.11,-0.65 -0.81,0.43 -3.97,1.21 -2.53,-0.5 -0.87,-1.58 -3.19,1.28 -3.56,-1.01 -1.15,-0.35 -2.65,-0.19 -3.11,-1.46 -1.37,0.13 -2.53,1.17 -3.72,1.84 -1.32,-0.26 -2.69,0.49 -4.1,0.64 -1.33,0.67 -2.12,-0.84 -3.46,0.08 -0.96,-1.47 -2.91,-0.73 -4.2,-0.81 -0.5,-0.95 -2.12,-1.82 -0.57,-2.52 0.13,-0.53 -0.36,-1.09 -0.9,-1.1 z", + "department-78" : "m 292.32,132.84 c -1.68,0.81 -3.67,0.76 -5.14,1.83 -1.97,-1.3 -0.99,2.02 -0.1,2.67 0.55,0.79 -1.34,2.61 0.69,2.07 1.64,-0.39 0.59,0.65 0.37,1.44 0.56,0.92 0.3,2.44 1.88,2.64 -0.09,1.26 1.67,1.89 0.48,3.08 1.64,0.66 2.24,2.6 1.48,4.19 -1.03,2.01 0.99,3.08 1.85,4.34 -0.58,1.19 -2.9,3.12 -0.68,3.75 -0.47,1.26 0.09,2.42 1.54,2.47 0.18,1.99 1.68,2.21 3.27,2.53 -0.41,1.11 -0.51,2.96 1.4,2.43 1.42,0.39 2.18,2 1.59,3.43 0.23,1.67 0.57,3.89 2.53,3.87 0.36,1.68 3.78,2.12 3.77,0.29 -0.23,-1.35 1.17,-2.66 1.54,-4.05 1.67,-0.97 -2.33,-2.06 -0.18,-2.66 1.44,0.17 3.44,0.88 3.57,-1.25 0.08,-1.12 0.7,-1.71 1.35,-2.36 -0.8,-1.15 -2.97,-2.42 -1.13,-3.55 0.61,-1.71 3.54,-1.04 3.46,-3.33 -0.81,-1.48 0.7,-1.23 1.5,-1.61 0.73,-1.13 2.67,-0.43 2.55,-1.99 1.23,0.53 1.88,-0.53 0.53,-1.07 -0.97,-1.07 -3.27,-1.54 -2.66,-3.59 -0.02,-1.82 0.75,-3.53 2.25,-4.55 0.27,-1.43 0.56,-2.46 -1.03,-2.77 0.42,-2.23 -2.99,-1.71 -2.63,-3.73 -1.61,-0.09 -3.2,1.35 -4.8,0.6 -1.14,-1.79 -3.8,-0.64 -4.79,-2.64 -0.79,0.03 -1.9,3.2 -2.31,1.04 -0.6,-0.85 0.89,-2.23 -0.76,-2.51 -1.37,-1.91 -2.01,1.2 -3.59,0.52 -1.03,1.41 -3.22,0.49 -3.58,-1.01 -1.62,-1.22 -2.88,0.79 -4.21,-0.53 z", + "department-28" : "m 287.11,142.32 c -2.1,1.04 1.22,5.31 -2.55,5.04 -3.13,0.47 -2.25,4.05 -2.79,5.7 -2.08,1.39 -4.66,0.71 -6.89,0.79 -1.67,0.17 -4.55,-2.91 -4.14,0.39 -0.94,1.3 -4.08,-0.75 -3.86,1.85 -2.43,0.08 -5.51,1.27 -7.37,1.58 -1.08,1.71 -3.78,2.6 -2.33,4.99 0.77,3.5 4.78,4.24 6.38,7.09 -0.22,2.23 -1.98,4.13 0.4,5.86 -1.32,2.12 -2.68,4.96 -5.61,5.63 -2.31,-0.78 -5.36,3.02 -2.13,3.95 -1.7,2.27 2.62,5.08 0.17,6.87 0.96,1.32 5.87,1.56 4.27,3.23 -2.59,-0.41 -2.61,3.43 0.12,2 1.93,-0.18 2.86,0.02 4.27,-1.38 2.46,-1.17 2.35,1.12 0.44,1.89 0.94,1.94 5.72,-0.14 5.24,3.16 2.38,1.44 2.98,5.53 5.88,5 2.46,1.01 5.04,1.84 7.07,-0.1 2.12,0.96 1.21,-4.35 3.42,-1.33 2.91,1.91 0.9,-4.73 4.83,-2.76 1.99,-0.3 2.54,-3.35 5.19,-2.24 2.89,0.64 5.49,-1.07 8.22,-1.66 2.33,-1.48 0.35,-5.82 3.98,-5.14 -0.56,-1.06 0.03,-1.81 0.2,-2.18 -1.12,-2.33 1.98,-4.62 -0.13,-6.47 1.22,-2.57 0.51,-6.45 -1.46,-7.17 0.98,-3.67 -3.12,-0.53 -4.61,-2.82 -3.57,-1.35 -1.08,-6.34 -4.19,-7.79 -2.86,0.53 -0.05,-3.49 -3.13,-2.7 -2.21,-2.24 -5.44,-5.53 -2.5,-8.36 -1.41,-1.65 -2.75,-3.31 -1.37,-5.55 -0.35,-2.12 -1.91,-3.29 -1.97,-5.44 -0.63,-1.06 -1.8,-1.83 -3.04,-1.94 z", + "department-75" : "m 326.98,144.71 c -1.27,-0.06 -2.46,0.68 -3.27,1.54 -0.47,-0.15 -0.85,0.06 -1.23,0.25 -0.65,0.03 -1.66,1.18 -0.69,1.52 0.81,0.18 0.93,1.2 1.8,1.35 1.65,0.28 3.42,1.43 5.03,0.39 1.03,-0.88 2.21,0.62 3.32,0.28 0.54,-0.43 0.6,-1.27 -0.33,-1.23 -0.68,-0.16 -1.14,-0.33 -1.46,-0.06 -0.34,-1.13 -0.06,-2.23 -0.93,-3.14 -0.12,-1.14 -1.17,-0.96 -2.05,-0.92 l -0.18,0 -0.03,3e-4 z", + "department-93" : "m 336.5,137.58 c -0.46,0.33 -1.14,0.34 -1.42,0.97 -0.75,1.19 -2.15,1.71 -3.14,2.62 -0.82,-0.03 -1.72,-0.07 -2.53,-0.25 -0.64,-0.37 -1.29,-1.34 -2.07,-0.64 -0.6,0.3 -1.08,1.1 -1.81,0.59 -0.35,-0.19 -1.46,-0.42 -1.19,0.3 0.56,0.53 2.05,0.32 2.05,1.33 -0.06,0.69 -1.13,1.34 -0.68,2.02 1.05,0.43 2.37,-0.21 3.33,0.37 0.27,0.54 0.5,1.08 0.89,1.55 0.18,0.57 -0.13,1.72 0.86,1.53 1.07,-0.15 2.16,-1.04 3.23,-0.34 1.04,0.72 2.32,1.35 3.05,2.37 -0.11,0.74 1.41,0.94 1.04,0.05 -0.24,-0.71 -0.92,-1.55 -0.78,-2.26 0.67,-0.23 -0.04,-0.79 -0.4,-0.86 0.27,-0.43 -0.26,-0.81 -0.29,-1.14 0.41,-0.57 1.31,-0.71 1.23,-1.58 -0.09,-0.8 0.8,-1.4 0.35,-2.19 -0.23,-0.84 -1.06,-1.46 -1.25,-2.26 0.77,-0.61 0.45,-1.99 -0.49,-2.17 z", + "department-94" : "m 332.85,147.49 c -0.56,0.21 -2.03,0.43 -2.18,1.01 0.31,0.21 1.82,-0.09 1.77,0.51 0.02,0.58 -0.23,1.64 -1.05,1.16 -1.03,-0.16 -2.09,-1.01 -3.03,-0.14 -0.7,0.5 -1.59,0.2 -2.33,0.5 -0.4,1.12 0.01,2.46 -0.66,3.53 -0.23,0.79 0.87,0.44 1.11,0.99 0.42,0.39 0.99,0.13 1.33,-0.1 0.46,0.44 -0.1,1.74 0.84,1.68 0.59,-0.25 1.17,-0.38 1.79,-0.16 1.34,-0.05 2.64,-0.54 3.94,-0.71 0.51,0.63 0.39,1.61 1.15,2.11 0.31,0.19 0.6,0.29 0.75,0.66 0.59,0.31 1.26,-0.47 0.77,-0.99 -0.01,-0.93 1.56,-1.44 0.88,-2.44 0.49,-0.32 0.24,-1.11 0.85,-1.28 0.43,-0.58 -0.47,-0.6 -0.83,-0.71 -0.34,-0.52 0.66,-1.17 0.14,-1.69 0.12,-0.8 -1.11,-0.7 -1.2,-1.46 -1.03,-1.05 -2.25,-2.13 -3.71,-2.49 -0.1,-0.01 -0.2,-0.01 -0.31,0 z", + "department-92" : "m 324.24,141.53 c -2,0.52 -3.26,2.41 -5.06,3.32 -1.07,0.77 -1.1,2.2 -0.99,3.39 -0.4,0.4 -0.48,0.98 -0.25,1.53 0.01,0.71 0.73,0.52 1.15,0.65 0.16,0.65 0.67,1.01 1.28,1.14 0.25,0.33 0.49,0.67 0.86,0.85 0.32,0.72 0.72,1.57 1.66,1.53 0.78,-0.01 1.11,0.83 1.08,1.46 0.36,0.27 0.92,-0.2 1.18,0.31 0.73,-0.09 0.08,-1 0.1,-1.43 0.14,-0.72 0.7,-1.47 0.38,-2.22 -0.12,-0.62 0.28,-1.24 0.24,-1.78 -0.96,-0.79 -2.46,-0.33 -3.22,-1.42 -0.37,-0.47 -1.1,-0.68 -1.44,-1.08 0.22,-1.13 1.41,-1.83 2.5,-1.7 0.39,-0.7 1.58,-0.82 1.76,-1.68 -0.35,-0.89 1.37,-1.42 0.54,-2.3 -0.48,-0.39 -1.16,-0.56 -1.77,-0.58 z", + "department-91" : "m 320.25,153.32 c -0.58,0.51 -0.49,1.56 -1.65,1.15 -1.09,0.27 -1.38,1.31 -2.58,1.12 0.11,1.05 -0.02,2.93 -1.5,3.32 -1.61,-0.22 -1.97,1.45 -2.84,2.24 0.58,0.86 2.2,1.77 1.79,2.96 -1.64,0.36 -0.55,3.52 -2.55,3.44 -0.79,0.15 -3.39,-0.81 -2.43,0.71 1.02,0.53 2.16,1.11 0.51,1.61 -0.86,0.93 -0.75,2.41 -1.65,3.25 0.14,1.24 1.76,2.59 0.46,3.92 0.71,0.75 2.78,0.14 2.06,1.92 1.07,1.28 -0.54,2.43 0.19,3.85 0.08,0.92 -1.54,1.43 -0.06,2.16 1.67,1.02 3.4,-0.35 5.09,-0.44 0.79,-1.48 2.15,0.97 2.97,-0.44 -0.22,-1.14 1.58,-0.26 1.55,-1.49 0.43,-1.63 2.01,-0.33 2.65,0.23 -0.12,0.95 0.48,1.61 1.08,0.67 0.98,0.38 1.68,0 2.09,-1.03 1.19,-0.35 1.89,2.24 3.4,1.07 0.49,-0.63 -0.03,-1.81 1.37,-1.59 1.11,-0.46 0.12,-2.39 1.77,-2.49 0.99,-0.33 0.83,-1.84 2.2,-1.42 0.62,-0.47 2.15,-0.38 0.97,-1.39 -1.69,-0.77 -1.16,-2.85 -1,-4.34 0.63,-1.35 -0.62,-2.47 -0.1,-3.88 0.63,-1.33 0.75,-2.86 1.78,-3.97 -0.3,-0.67 -1.97,-1.85 -0.32,-2.16 1.12,-0.7 -0.81,-1.91 0.75,-2.52 1.46,0.63 1.85,-1.77 0.18,-1 -1.09,-0.51 -1.76,-1.71 -2.13,-2.88 -1.08,-0.05 -2.24,1 -2.98,0.91 -0.9,-0.56 -2.37,0.31 -3.35,-0.26 0.08,-0.81 -0.25,-1.5 -1.11,-1.09 -0.9,-1.03 -1.16,0.24 -1.83,0.61 -0.49,-0.5 -1.91,-0.11 -1.24,-1.2 -0.57,-1.05 -2.44,-1.17 -3.52,-1.52 z", + "department-45" : "m 320.43,181.91 c -1.93,3.75 -6.85,2.12 -9.9,4.16 -1.95,2.44 0.54,6.83 -3.34,8.04 -0.15,3.54 -2.85,4.96 -6.06,5.24 -2.92,1.1 -6.42,-0.72 -8.49,2.39 -1.57,0.69 -5.05,0.19 -3.17,3.06 1.8,0.69 1.81,1.21 0.63,2.66 -1.69,2.43 4.05,3.22 1.25,6.02 -2.34,2.28 -0.38,4.59 0.09,7.04 1.76,1.74 4.95,-1.17 6.29,2.07 1.03,2.45 2.79,7.52 5.89,3.78 1.72,-3.2 5.45,1.69 8.15,-0.49 3.31,-0.11 8.68,-1.55 10.42,2.55 3,0.8 5.42,3.73 8.74,2.17 2.13,1.16 4.32,2.3 6.96,2.83 1.97,1.01 3.09,6.61 5.84,4.26 -0,-3.62 2.76,-1.68 4.41,-0.43 2.59,0.81 2.19,-2.3 2.2,-3.37 1.94,-0.4 6.46,-0.48 3.87,-3.36 0.34,-3.56 -2.17,-6.48 -4.41,-8.39 0.34,-3.92 6.29,-1.58 7.84,-4.63 1.26,-2.84 -2.35,-5.65 1.12,-7.77 4,-1.7 4.51,-6.41 1.51,-9.33 -2.16,-2.35 -2.73,-6.91 -6.87,-6.87 -1.86,0.13 -5.92,3.75 -6.03,-0.07 -2.63,1.14 -5.36,4.25 -8.22,1.8 -2.17,-0.24 -6.58,1.49 -7.34,0.08 2.67,-1.6 4.53,-6.27 0.45,-7.38 -2.86,-1.04 -1.71,-5.28 -5.43,-4.57 -1.53,-1.38 -4.89,2.52 -5.34,-1.02 -0.33,-0.2 -0.71,-0.32 -1.06,-0.48 z", + "department-41" : "m 266.29,195.63 c -2.06,2.95 -7.43,0.3 -8.5,3.42 -1.9,1 -2.23,2.67 -0.22,3.62 0.19,3.26 0.26,5.82 -1.16,8.6 -4.07,-1.69 0.07,5.24 -3.5,5.91 -0.99,3.4 -6.81,3.06 -5.94,7 2.53,-0.22 6.07,1.21 9.36,0.87 2.33,-0.38 3.21,0.87 2.33,3.13 -0.6,3 2.08,2.14 3.12,0.52 2.68,-0.46 3,3.47 5.15,1.95 3.31,1.92 -0.52,5.3 2.24,7.5 2.87,2.54 0.27,5.57 1.51,8.9 -2.12,3.16 1.39,5.4 4.47,4.52 3.84,-0.06 2.69,7.22 7.32,5.56 1.87,-1.68 3.74,-3.34 6.46,-2 0.88,-3.66 5.55,-2.27 8.48,-2.51 2.88,0.7 4.8,4.16 8.08,3.56 2.17,-0.93 0.23,-5.2 4,-4.24 2.53,1.03 9.23,0.49 7.7,-3.24 -2.46,-1.98 -1.75,-6.33 1.55,-6.48 1.62,0.43 3.89,1.9 3.49,-1.2 0.4,-2.84 -2.55,-3.04 -1.96,-5.71 -0.66,-1.86 -5.5,-1.35 -2.85,-4.03 2.3,-0.71 6.5,-3.18 2.67,-5.2 -3.4,-0.6 -6.94,-0.37 -10.34,0.3 -2.3,0.89 -5.75,-3.14 -6.32,0.82 -3.73,2.59 -5.33,-2.8 -6.15,-5.3 -2.21,-2.59 -5.58,2.04 -6.3,-1.81 -0.8,-1.62 0.46,-2.55 -1.18,-3.79 1.15,-2.66 3.49,-5.56 -0.29,-7.32 0.2,-1.64 2.39,-4.45 -1.04,-3.94 -1.34,-0.61 -4.15,-1.65 -3.51,1.01 -2.97,0.88 -5.87,1.72 -8.76,0.26 -3.05,-0.48 -3.65,-3.81 -5.67,-5.58 -0.41,-3.18 -5.31,-0.86 -5.28,-3.08 0.5,-0.52 3.23,-1.6 1.02,-2.02 z", + "department-36" : "m 292.75,252.32 c -0.22,1.96 -4.71,0.36 -3.09,3.11 -2.43,-0.72 -5.02,-1.03 -6.59,1.34 -2.69,0.52 -2.88,2.56 -1.18,4.37 -0.27,2.79 -3.21,4.19 -4.35,6.82 -1.44,3.03 -4.42,-1.33 -6.53,0.46 -3.18,0.46 -2.88,3.92 -3.68,6.03 -1.05,3.06 -0.95,6.5 -2.13,9.41 1.56,2.64 -2,4.95 -4.07,2.91 -3.4,-0.16 1.5,2.15 0.47,4.03 -1.36,3.26 -0.89,7.48 3.29,8.02 1.63,1.02 1.82,2.51 4.05,2.13 3.15,0.49 2.87,3.8 3.42,5.86 3.01,0.61 1.99,2.49 1.57,4.47 1.47,-0.43 1.97,1.71 3.8,0.38 1.85,0.34 2.68,-2.93 4.56,-0.65 1.37,1.89 2.88,2.94 4.14,0.35 1.12,-1.38 3.37,-4.31 4.14,-1.21 1.33,-0.81 3.52,-2.34 3.35,0.47 1.47,0.6 2.78,-3.28 3.75,-0.32 2.88,0.93 1.17,-5.91 4.57,-3.2 2.52,2.22 5.64,-0.66 8.59,0.82 2.5,1.04 7.68,2.32 7.46,-1.55 4.04,-2.02 -1.08,-5.26 0.41,-8.47 1.23,-2.22 0.34,-4.16 -1.32,-5.77 1.29,-2.28 -5.15,-3.19 -2.63,-5.41 3.7,-2.03 -4.12,-5.08 0.13,-6.45 0.15,-1.85 5.09,-3.55 1.3,-4.36 -3.14,-0.2 -1.71,-2.81 -0.75,-4.45 0.55,-3.16 -4.43,-3.11 -2.28,-6.14 0.71,-2.59 -1.84,-0.34 -2.34,-2.38 -2.14,-1.4 -4.51,2.29 -6.97,0.12 -1.89,-0.3 -3.87,-1.35 -1.68,-3.08 2.9,-1.88 1.03,-5.37 -2,-5.37 -1.57,-1.11 -2.26,-2.41 -4.45,-1.38 -1.18,-0.07 -1.7,-1.07 -2.98,-0.88 z", + "department-18" : "m 323.87,229.07 c -2.35,0.13 -9.34,2.52 -5.77,4.83 3.63,-0.55 1.32,4.29 3.95,4.19 1.09,2.3 -0.24,7.95 -2.97,4.02 -2.53,0.84 -4.38,3.27 -2.23,5.76 1.94,2.35 0.54,4.87 -2.44,4.09 -2,0.97 -4.54,0.79 -6.09,-0.04 -3.26,0.8 0.48,4.8 -3.11,4.5 -2.3,-0.84 -0.78,2.92 -3.07,3.74 -2.13,3.21 4.52,3.78 6.54,2.69 2.19,-2.06 2.95,2.09 4.74,0.99 0.13,1.95 -1.78,4.73 1.47,5.08 2.39,1.98 -3.09,7.46 2.34,7.01 1.98,2.06 -4.63,4.48 -3.1,6.87 3.2,0.9 1.23,3.63 0.29,5.24 0.67,1.68 4.73,1.92 3.03,4.22 4.54,2.34 -0.65,6.57 2.07,9.85 1.42,2.13 -0.12,3.45 -1.35,4.8 0.97,3.01 6.38,2.02 6.61,-1.43 1.68,-1.43 2.79,-4.1 5.74,-3.71 2.61,-0.19 8.61,0.85 7.95,-3.28 -1.28,-1.97 -0.29,-4.02 -0.99,-5.76 1.11,-0.26 2.76,0.38 2.1,-1.66 2.77,0.03 3.8,-5.99 6.55,-2.38 4.02,-0.1 5.48,-4.84 9.43,-5.17 5.09,1.19 4.04,-5.2 3.91,-8.3 0.71,-2.84 1.27,-6.86 -1.24,-8.77 -0.49,-3.87 -0.61,-7.69 -2.18,-11.39 0.6,-4.25 -6.27,-4.24 -4.71,-8.26 2.14,-3.02 2.74,-7.4 -0.15,-10.16 -1.82,-0.35 -3.52,2.23 -5.06,-0.44 -2.66,-2.76 -1.08,3.94 -4.37,2.1 -2.06,-1.93 -3.82,-6.36 -7.51,-5.63 -1.58,-0.2 -3.8,-3.83 -5.86,-1.15 -1.78,-0.24 -2.82,-2.01 -4.51,-2.45 z", + "department-23" : "m 301.06,306.59 c -2.18,-0.09 -0.48,5.24 -3.46,3.84 -1.17,-2.86 -2.05,0.79 -3.59,0.42 -1.13,-0.79 -0,-3.31 -1.73,-1.25 -1.24,0.55 -2.36,1.38 -2.36,-0.7 -1.54,-0.88 -2.18,2.59 -3.79,3.02 -0.98,0.84 -2.88,2.44 -0.45,2.76 0.29,1.69 -1.79,2.6 -0.56,4.04 -2.11,0.16 0.28,2.07 -1.84,2.35 -1.71,2.37 1.37,3.88 3.12,3.98 -0.87,1.98 3.03,2.32 1.47,4.18 0.81,1.46 2.68,2.16 2.08,4.13 0.59,1.41 -1.07,3.49 1.38,3.72 1.8,2.32 -4.92,2.97 -1.35,4.46 1.26,1.18 3.64,-2.06 4.21,0.35 0.31,1.19 0.8,2.47 -1.06,2.08 -1.31,1.78 2.07,3.75 3.94,3.02 1.79,0.62 3.88,-3.62 3.75,-0.15 0.21,1.27 2.24,2.17 2.82,1.56 1.47,1.11 3.83,3.39 1.98,4.77 0.21,1.09 -0.08,4.28 1.82,2.42 1.13,0.08 1.99,-1.04 3.2,-0.95 0.33,-2.76 3.75,-2.96 4.66,-0.46 1.35,-0.17 2.6,0.94 3.34,-0.03 1.49,1.32 3.49,2.43 4.82,3.44 0.2,2.09 4,0.09 3.38,-1.73 2.36,-0.58 5.37,1.33 6.38,-2.1 -1.37,-1.09 -2.62,-1.96 -3.06,-3.78 -1.55,-1.24 -1.59,-2.93 0.65,-2.9 0.54,-1.38 1.04,-2.45 2.73,-1.85 0.62,-1.79 3.09,-2.23 2.56,-4.51 0.36,-1.75 3.84,-1.53 2.12,-3.52 1.2,-2.89 -2.25,-4.14 -2.04,-6.95 -0.08,-2.21 1.4,-4.81 -1.02,-6.11 0.02,-2.5 -1.86,-3.91 -2.39,-6.08 -1.13,-1.7 -3.1,0.63 -2.89,-2.06 -0.52,-1.65 -1.48,-0.92 -2.17,-0.16 -2.13,-0.72 -3.54,-2.45 -1.59,-4.12 -3.08,0.61 -1.54,-4.21 -4.75,-3.19 -2.85,-0.75 -5.52,1.57 -8.05,0.18 -2.39,-0.94 -4.83,-0.98 -7.12,-1.05 -1.87,0.89 -3.74,0.71 -4.87,-1.08 l -0.28,-0.01 10e-6,10e-5 z", + "department-87" : "m 281.04,310.22 c -0.51,0.05 -1.17,0.12 -1.14,0.78 -0.25,1 -1.41,1.2 -2.23,0.78 -0.91,-0.55 -1.46,0.97 -2.37,0.47 -0.41,-0.24 -0.15,-1.36 -0.88,-1.06 -0.15,0.36 -0.49,0.69 -0.87,0.31 -0.42,-0.56 -1.48,-0.46 -1.39,0.36 -0.29,0.51 -0.98,0.78 -0.95,1.46 -0.55,0.47 -1.05,-0.38 -1.56,-0.48 -1.22,-0.29 -2.83,0.17 -3.07,1.56 0.1,1.34 -1.16,2.36 -1.14,3.65 -1.12,-0.21 -2.43,-0.58 -3.48,-0.02 -0.57,-0.29 -1.43,-0.46 -1.55,0.41 -0.29,0.71 -1.42,0.57 -1.53,1.41 -0.45,0.32 -0.59,0.81 -0.41,1.28 -0.57,0.79 -2.14,-0.04 -2.35,1.21 -0.11,1.15 1.52,1.66 1.49,2.82 0.45,0.61 -0.22,1.55 0.51,2.07 0.3,0.78 -1.04,0.68 -1.22,1.21 0.1,0.73 1.16,1.32 0.57,2.1 -0.2,0.88 -0.43,1.82 -0.37,2.7 0.55,0.71 1.53,1.06 1.85,1.96 0.6,0.29 0.77,-1.11 1.42,-0.47 0.52,0.57 1.56,1 1.37,1.9 0.17,0.33 0.61,0.45 0.5,0.91 0.25,0.56 0.69,1.22 0.15,1.8 -0.4,0.33 -0.69,0.93 -0.79,1.33 -1.08,0.03 -1.62,1.44 -2.79,1.15 -0.74,0.09 -1.45,-0.83 -2.12,-0.41 -0.07,0.49 0.25,0.98 0.12,1.53 -0.13,0.54 0.63,1.01 0.41,1.49 -0.44,0.28 -0.27,0.69 -0.21,1.04 -0.23,1.22 -1.06,2.19 -1.62,3.25 -0.26,0.54 0.17,1.51 -0.39,1.85 -0.92,-0.16 -1.85,-1.49 -2.8,-0.78 -0.33,0.63 -0.36,1.44 0.03,2.02 -0.07,0.89 -1.28,0.52 -1.72,1.1 -0.39,0.39 -0.56,0.91 -1.06,1.2 -0.36,0.39 -0.09,1.12 -0.8,1.16 -0.53,0.7 0.73,1.29 1.05,1.78 1.12,0.48 2.72,-0.73 3.83,0.16 0.41,0.49 0.74,1.16 1.39,1.34 0.08,1.16 -0.5,2.25 -0.79,3.32 0.28,0.85 0.98,1.77 1.99,1.46 0.49,0.16 0.41,1.27 1.18,1.08 1.27,-0.42 1.02,-2.31 2.06,-2.9 0.55,0.27 0.58,1.69 1.39,1.27 0.5,-0.37 1.3,-0.2 1.85,-0.57 0.8,-0.12 1.59,0.64 2.37,0.08 1.2,-0.25 2.21,0.92 2.02,2.08 -0.09,0.92 0.66,1.5 1.35,1.88 0.41,0.32 0.61,1.42 1.32,0.86 0.49,-0.58 1.3,-0.68 1.86,-0.14 0.33,0.35 1.23,0.52 1.23,1.08 -0.69,0.87 -1.91,1.66 -1.92,2.87 0.34,0.84 1.26,0.35 1.87,0.21 0.56,0.26 0.58,0.97 0.93,1.33 0.84,-0.26 2.33,-0.56 2.49,0.7 0.19,0.63 0.87,0.23 0.77,-0.27 0.67,-0.31 0.04,-1.73 0.98,-1.81 0.57,0.07 0.21,-0.87 0.71,-0.67 0.95,0.21 1.74,1.1 2.68,1.15 0.76,-1.2 1.96,-2.1 2.52,-3.45 0.35,-0.6 1.02,-0.45 1.52,-0.23 0.86,-0.13 0.35,-1.3 0.75,-1.74 0.56,-0.03 0.98,-0.4 1.21,-0.85 0.63,0.05 0.58,1.16 1.29,0.85 0.37,-0.17 0.08,-0.99 0.68,-0.63 0.79,0.46 1.82,0.91 2.6,0.18 0.48,-0.4 0.34,-1.43 1.2,-1.3 1.25,0.1 2.05,-1.03 2.55,-1.98 0.73,-0.73 1.34,-1.82 2.34,-2.13 0.74,0.12 1.5,-0.28 1.86,-0.87 0.93,-0.17 1.13,-1.16 1.48,-1.85 0.37,-0.07 0.64,0.49 1.11,0.2 0.61,0.2 0.96,1.44 1.71,0.76 0.42,-0.5 1.1,0.52 1.33,-0.26 -0.03,-0.66 0.6,-0.53 1.03,-0.64 0.45,-0.2 0.16,-0.77 -0.12,-0.88 -0.02,-0.51 -0.84,-0.68 -0.83,-1.1 0.48,-0.35 0.14,-0.82 -0.21,-1.07 0.24,-0.6 0.41,-1.25 0.01,-1.83 -0.05,-0.55 1.2,0 0.86,-0.75 -0.45,-0.79 -0.3,-1.85 -1.25,-2.36 -0.47,-0.29 -0.97,-0.56 -1.37,-0.86 -0.42,0.28 -0.85,0.21 -1.19,-0.2 -0.57,-0.6 -1.85,-0.61 -1.72,-1.7 0.17,-0.43 0.1,-1.78 -0.62,-1.22 -0.17,0.44 -0.43,0.74 -0.89,0.86 -0.71,0.92 -2.04,0.24 -2.93,0.86 -0.49,0.28 -0.9,0.12 -1.15,-0.31 -0.68,-0.45 -1.84,-0.44 -2.21,-1.23 0.21,-0.61 -0.04,-1.24 -0.49,-1.61 0.25,-0.59 1.1,-0.28 1.36,-0.78 0.47,0.27 0.94,-0.21 0.51,-0.63 -0.6,-0.41 0.17,-1.39 -0.62,-1.58 -0.8,-0.29 -1.69,0.05 -2.03,0.8 -0.73,0.21 -1.51,-0.02 -1.97,-0.63 -0.45,-0.19 -1.31,-0.18 -0.96,-0.92 0.42,-1.4 2.91,-1.11 2.81,-2.77 -0.02,-0.79 -0.76,-1.12 -1.46,-1.02 -0.74,-0.49 -0.23,-1.62 0.01,-2.28 0.07,-0.84 -0.67,-1.62 -0.2,-2.45 -0.01,-0.95 -1.08,-1.21 -1.63,-1.75 -0.29,-0.44 -0.89,-1.12 -0.22,-1.54 0.59,-0.47 -0.22,-1.14 -0.7,-1.29 -0.29,-0.51 -0.96,-0.67 -1.32,-1.01 0.65,-0.4 0.49,-1.69 -0.42,-1.53 -0.93,0.06 -2.05,-0.18 -2.28,-1.2 -0.52,-0.39 -1.08,-1.35 -0.53,-1.94 0.31,-0.58 0.65,-1.21 1.38,-1.2 0.66,-0.47 -0.77,-0.84 -0.18,-1.34 0.43,-0.32 0.7,-0.79 0.48,-1.28 -0.02,-0.63 0.42,-1.1 0.86,-1.45 0.24,-0.83 0.18,-2.06 -0.9,-2.22 -0.7,-0.32 -0.2,-1.35 -0.83,-1.79 -0.85,-0.67 -1.34,-1.98 -2.45,-2.23 l -0.03,0.01 z", + "department-19" : "m 313.35,352.38 c -1.86,0.13 -2.22,1.42 -2.96,2.7 -1.7,-0.45 -2.02,1.25 -3.41,1.04 0.1,2.65 -3.23,3.39 -4.97,1.84 -1.53,1.04 -2.82,2.64 -4.95,2.95 -1.42,1.63 -2.47,3.68 -4.63,4.05 -0.78,2.4 -3.28,0.32 -4.72,1.32 -0.15,-2.02 -2.14,1.24 -2.3,2.01 -1.89,-1.15 -2.49,2.34 -3.89,3.21 -1.28,0.53 -3.65,-2.27 -4.12,0.75 -1.21,1.38 2.97,2.44 0.01,3.18 -0.68,2.09 4.29,0.8 2.12,3.47 -1.5,0.61 -1.7,2.64 -3.24,3.07 -0.37,1.74 -0.74,3.8 1.62,4.02 0.64,1.56 -3.73,2.47 -1.44,3.5 2.52,-0.79 2.31,2.08 0.75,2.84 2.1,1.86 4.91,0.57 6.95,2.2 -1.97,1.83 -0.08,4.96 1.55,6.77 1.57,0.57 3.76,-3.02 4.88,-0.71 2.49,-1.36 5.15,0.9 6.6,2.82 0.89,1.66 2.62,2.3 3.51,3.98 0.84,-0.76 2.22,0.94 2.83,-0.95 1.95,-0.25 4.19,-4.21 5.12,-0.84 2.18,-2.19 5.35,-1.42 8,-1.89 1.92,-1.72 -3.18,-4.39 -0.13,-5.96 1.44,-0.92 3.38,-0.83 2.82,-3.25 -0.27,-1.27 3.56,-2.56 1.06,-3.66 -2.12,-2.49 1.31,-4.07 2.09,-6.03 1.52,-1.54 3.08,-3.21 4.69,-4.48 0.47,-1.62 0.7,-3.32 -0.12,-4.93 2.48,-0.49 5.95,4.22 7.88,1.25 -2.68,-1.36 -0.86,-4.01 -0.65,-6.27 0.65,-2.61 -0.12,-4.5 -1.81,-6.42 -0.37,-1.09 0.41,-2.79 1.03,-3.68 2.2,0.41 0.72,-2.34 1.39,-3.43 -0.08,-1.62 -1.77,-3.7 -2.72,-1.42 -1.49,2.45 -5.53,-1.84 -5.69,2.21 -1.2,1.04 -3.48,1.86 -3.57,-0.45 -2.4,-0.22 -2.77,-1.54 -4.33,-2.87 -0.57,1 -2.92,0.03 -3.77,-0.11 0.11,-0.94 -1.07,-1.2 -1.5,-1.83 z", + "department-15" : "m 334.72,370.94 c -1.28,1.82 -1.55,4.58 0.43,5.9 -1.81,2.51 -4.37,0.04 -6.57,-1.17 -2.6,-1.06 0.22,2.76 -1.15,4.1 -0.02,1.86 -2.79,1.83 -3.22,3.86 -1.83,1.13 -3.51,3.59 -4.24,5.64 0.35,1.77 2.71,2.41 0.56,3.82 -1.95,0.87 -0.07,4.99 -2.89,4.16 -3.55,0.88 -0.82,4.03 -0.22,5.71 -0.43,1.88 -4.6,-0.03 -2.81,2.9 -0.04,1.62 2.21,2.57 0.46,3.91 0.13,3.08 4.46,4.57 3.6,7.69 -0.92,1.52 -0.85,3.76 -1.46,5.32 3.14,-0.54 0.43,4.14 3.05,4.94 0.99,0 -0.12,-3.03 2.23,-2.19 1.58,-0.83 4.01,-1.56 4.43,0.74 2.75,-0.34 6.48,0.85 7.12,-2.96 2.85,-1.73 1.71,-5.71 4.3,-7.33 -0.14,-2.33 1,-4.52 2.76,-5.39 0.66,-1.77 2.62,-2.11 3.53,-3.79 2.71,0.19 1.23,4.39 2.14,5.14 1.36,-1.39 4.37,-1.42 3.78,1.12 0.34,1.62 0.97,4.51 2.8,3.48 0.84,2.32 -0.52,5.11 1.01,7.65 0.5,1.69 1.9,2.45 2.17,0.12 0.35,-2.14 2.27,-2.85 1.68,-4.93 0.92,-1.91 0.56,-5.47 2.78,-5.83 -0.12,-1.77 1.65,-6.61 3.22,-3.03 1.26,2.36 3.56,-0.59 3.31,-2.05 0.59,-1.14 0.92,-2.65 1.95,-1.09 1.6,-1 4.29,-1.63 3.3,-3.81 1.88,-0.88 -1.23,-1.49 -1.31,-2.37 -2.47,-0.36 0.7,-4.16 -1.68,-4.86 0.04,-1.43 3.56,1.01 2.84,-0.76 -3.52,-0.25 -3.97,-3.78 -3.79,-6.72 -2.86,-0.25 -0.48,-5.68 -3.84,-4.2 -1,0.06 -0.92,-1.73 -2.53,-0.75 -1.83,0.05 -2.03,-0.79 -0.71,-1.66 -1.98,-0.82 1.54,-2.18 -0.51,-2.67 -1.63,1.16 -2.03,4.92 -4.8,3.76 -3.45,-0.77 -2.59,-5.89 -6.01,-5.8 -1.98,-1.95 -3.93,0.16 -6.22,-0.38 -1.82,0.76 -1.98,-2.81 -2.23,-3.3 -2,0.21 -2.37,-1.95 -4.2,-1.04 -0.86,-1.4 -2.85,0.57 -2.19,-1.65 -0.21,-0.26 -0.61,-0.13 -0.87,-0.22 z", + "department-30" : "m 402.45,438.56 c -1.2,2.08 -2.01,3.99 -4.41,4.18 -0.91,2.13 4,4.03 1.37,6.32 -0.45,1.86 3.55,2.45 0.94,3.7 -0.76,1.99 0.11,3.59 0.97,5.15 -2.84,-2.29 -3.24,4.22 -6.65,2.09 -2.84,1.31 -5.14,-3.82 -7.86,-2.71 -1.9,-0.09 0.68,4.12 -2.36,3.87 -3.59,-0.21 -7.54,0.01 -9.81,-3.3 -3.88,-0.94 -1.76,4.82 -5.2,4.63 -0.2,1.99 1.7,1.26 2.49,1.37 0.64,2.2 6.26,1.35 5.12,4.79 -0.92,1.9 -5.78,3.67 -3.13,5.83 2.48,-0.75 3.13,1.64 2.84,3.17 1.93,-1.62 4.32,-2.9 4.52,0.69 1.23,0.34 3.7,1.07 1.85,-0.84 1.05,-1.8 2.07,-3.7 4.36,-3.11 -0.01,-3.76 5,-4.67 6.38,-1.85 2.32,1.17 -2.54,5.3 1.82,4.76 1.89,-0.76 3.45,-1.45 3.7,1.02 2.53,0.02 1.7,2.08 1.81,3.51 2.89,-1.55 4.4,2.61 6.33,3.87 2.8,0.69 3.15,4.82 3.78,7.11 -0.67,2.22 -2.4,3.52 -4.18,3.93 1.03,2.15 2.04,4.41 2.86,6.75 1.85,2.05 3.54,0.51 3.74,-1.66 2.08,-0.46 3.52,-1.72 3.36,-3.55 0.97,2.31 4.15,-0.86 5.01,-1.94 1.98,0.27 2.78,-2.49 0.23,-2.01 -0.41,-2.17 1.81,-4.53 3.24,-5.76 1.92,-1.29 6.52,3.05 5.01,-1.07 0.59,-2.7 2.29,-5.32 1.74,-7.95 1.25,-0.84 -1.73,-1.91 0.74,-2.53 2.32,-1.47 3.71,-3.79 6.04,-5.21 0.4,-1.57 0.8,-2.1 2,-2.68 -1.38,-1.85 -2.67,-6.36 -5.46,-5.62 -1.54,-2.69 0.63,-6.1 -0.98,-8.69 -2.44,0.11 -1.5,-4.81 -4.22,-4.74 -2.14,-0.69 -5.48,-5.75 -7.17,-2.57 0.92,4.08 -4.49,2.27 -2.46,-0.85 -1.91,-1.19 -5.21,1.01 -5.19,3.34 -1.4,3.16 -4.03,-1.21 -5.4,-1.88 -1.7,0.52 -1.47,-2.53 -3.73,-1.05 -1.71,1.8 -2.68,-0.11 -1.46,-1.57 -0.15,-1.56 -0.74,-2.62 0.35,-3.62 -1.57,-1 -0.67,-2.78 -2.91,-3.32 z", + "department-48" : "m 373.48,404.94 c -1.47,0.89 -3.46,3.53 -5.12,1.98 -0.01,1.49 -1.57,1.93 -1.04,3.5 -1.43,1.81 -3.11,1.2 -3.88,-0.85 -2.88,-0.45 -1.07,4.27 -3.39,4.9 -1.4,1.6 -1.16,4.02 -1.76,5.9 0.45,1.49 -1.64,2.13 -1.6,3.92 -1.61,2.48 1.66,4.55 3.09,6.26 2.11,1.84 -1.38,5.67 2.08,6.72 1.92,1.77 1.3,4.27 0.7,6.32 -0.81,2.08 2.13,3.68 0.68,5.63 -1.2,1 -0.69,2.92 0.49,1.55 -0.34,2.49 4.49,1.53 3.22,4.04 -0.61,3.08 3.16,-0.47 4.71,0.57 2.33,-0.24 2.39,2.9 4.55,3.55 1.02,2.18 4.4,1.65 6.21,1.9 1.73,0.64 4.49,-0.1 3.28,-2.39 -0.17,-1.71 2.49,-2.35 3.14,-0.7 2.15,-0.14 3.4,3.16 5.36,2.3 1.4,-0.48 2.81,0.78 3.7,-1.01 1.48,-0.27 0.79,-2.83 2.56,-1.71 0.48,-1.13 -1.37,-1.78 -0.45,-3.23 -0.32,-1.45 2.55,-2.77 -0.12,-3.02 -0.49,-1.4 -1.27,-2.69 0.33,-3.79 -0.9,-1.25 -2.65,-3.18 -2.62,-4.42 1.46,-1.07 3.7,-0.89 3.95,-3.34 1.21,-1.8 0.03,-4.2 -0.54,-6.13 -0.14,-2.55 -3.1,-2.32 -3.01,-4.96 -0.51,-1.42 -0.74,-3.3 -1.23,-4.8 0.21,-0.99 -1.02,-2.2 -0.2,-3.43 -0.96,-0.75 -2.32,-0.83 -1.55,-2.36 -1.84,1.16 -1.86,-1.71 -3.45,-2.23 0.02,-3.18 -3.5,-0.79 -4.63,-2.01 2.18,-2.04 -3.67,-4.45 -2.82,-1.23 0.29,3.23 -3.33,0.7 -4.65,2.81 -2.12,0.38 -2.38,-3.83 -3.37,-5.42 -0.69,-1.57 0.03,-3.98 -2.15,-4.28 l -0.25,-0.51 -0.23,-0.01 -2.2e-4,-1e-4 z", + "department-63" : "m 350.25,319.87 c -2.41,0.1 -1.39,6.08 -4.36,2.69 -2.2,-1.55 -1.13,2.91 -3.36,2.6 -0.99,2.15 -2.4,5.06 -4.99,2.48 -3.53,1.71 0.74,5.9 1.02,8.31 0.33,2.26 -0.13,3.09 -1.85,4.34 -0.59,3.07 -2.87,5.1 -5.46,5.93 -0.78,1.08 -3.3,2.29 -0.7,4.14 1.84,2.94 6.68,6.33 3.76,10.01 -3.59,1.58 -0.37,5.2 0.63,7.47 -1.63,3.1 2.57,5.33 4.8,4.69 1.04,1.88 3.32,0.49 2.64,2.92 1.95,3.55 6.09,-0.43 8.67,2.01 3.48,0.74 2.44,6.76 6.82,5.67 2.39,-1.04 2.55,-4.68 5.97,-4.03 2.84,-0.11 5.33,-4.21 7.45,-3.45 1.17,-0.15 2.17,-1.54 3.06,0.31 2.88,1.39 5.17,-2.92 7.03,0.16 3.24,-0.64 2.05,6.51 5.21,2.85 1.13,-3.37 5.41,3.07 6.68,-1.35 0.83,-2.19 5.07,4.34 4.28,-0.59 0.72,-2.92 5.73,-4.1 3.45,-7.91 -0.98,-3.57 -2.63,-6.42 -6.17,-8.13 -2.69,-2.1 -1.82,-6.45 -4.74,-8.34 -0.45,-1.7 -2.19,-2.8 -0.35,-4.4 -0.69,-2.91 2.62,-4.84 -0.62,-6.96 -2.59,-1.57 -3.98,-4.12 -5.91,-6.12 -2.16,0.37 -6.24,1.62 -5.45,-1.98 -1.98,-2.68 -5.33,1.55 -7.73,-0.76 -2.66,-0.65 -5.11,0.01 -7.56,-0.72 -1.51,-1.52 -2.18,-2.56 -4.49,-2.07 -3.09,-0.49 -3.15,-3.91 -5.15,-5.29 0.27,-2.13 2.01,-5.11 -1.71,-4.35 l -0.47,-0.05 -0.43,-0.12 0,0 z", + "department-42" : "m 397.37,318.49 c -1.6,0.83 -3.4,1.29 -4.64,2.21 -1.3,0.59 1.02,2.59 0.48,3.98 0.61,1.85 -0.41,4.23 1.11,6.23 -1.61,2.5 2.37,7.25 -2.15,7.3 -1.09,-0.11 -1.49,1.09 -2.88,0.34 -2.32,2.56 2.22,3.36 1.74,5.81 -1.98,1.61 -0.24,4.65 -2.31,6.15 1.69,0.49 1.3,2.13 2.33,2.91 2.23,1.34 1.14,4.92 3.25,6.83 1.78,1.97 5.01,2.91 6.17,5.68 -1.24,2.45 2.85,3.93 0.67,5.95 0.89,3.06 -5.47,3.2 -3.23,7.04 0.42,3.41 2.25,-3.4 4.17,-0.43 0.87,1.44 1.19,2.02 2.38,0.77 1.23,1.18 1.39,0.75 2.25,-0.33 1.05,-0.89 3.38,0.13 2.65,-1.8 2.25,-0.56 4.93,-0.17 6.2,1.72 1.74,-1.96 5.45,1.48 2.47,2.65 0.55,1.23 1.98,1.3 0.84,2.91 0.86,2.54 3.62,-1.67 4.48,1.3 1.58,2.36 4.9,0.89 6.79,-0.08 -1.25,-1.91 1.2,-3.4 2.26,-5.02 1.49,-1.32 5.89,-1.48 4.47,-4.32 -0.52,-1.74 0.97,-3.48 -0.58,-5.25 -0.48,-1.69 -3.61,1.7 -3.93,-1.3 0.42,-2.1 -0.24,-3.68 -1.93,-4.86 -1.43,0.06 -2.67,-1.02 -4.29,-0.14 -2.32,-0.62 -2.91,-2.86 -5.1,-4.24 -1.42,-1.8 -2.51,-3.8 -0.78,-6.03 1.82,-2.31 -3.43,-0.74 -1.14,-3.43 0.94,-1.31 1.04,-3.98 1.15,-5.42 -2.5,-0.01 -3.12,-2.67 -2.32,-4.33 -1.63,-1.26 -2.43,-3.07 -4.07,-4.21 0.9,-0.54 3.97,0.36 2.35,-1.72 -1.31,0.09 -3.3,-2.79 -0.85,-2.47 1.97,-1.74 0.65,-5.53 4.11,-6 0.97,-0.45 2.45,1.37 2.78,-0.77 -0.25,-1.57 -2.38,-2.12 -0.65,-3.5 -1.51,-1.51 -2.16,1.22 -2.41,1.83 -1.97,-0.74 -4.16,3.26 -5.16,1 1.12,-2.05 -1.54,-0.14 -2.23,-1.49 -1.1,1.9 -3.25,0.89 -4.63,-0.3 -2.08,0.61 -5.43,3.53 -6.14,-0.27 -1.61,-0.39 -4.74,-0.44 -2.93,-2.93 0.29,-0.63 0.34,-2.13 -0.72,-1.99 z", + "department-69" : "m 433.73,316.51 c -1.23,0.46 -2.5,0.15 -2.78,2.07 -0.74,1.45 -2.37,-0.51 -2.67,-1.28 -0.69,1.49 -2.76,2.38 -3.71,0.45 -1.68,-1.33 -4.39,-0.82 -4.01,1.84 -0.71,1.65 0.63,2.41 1.38,3.48 -2.55,0.77 0.51,1.73 0.61,2.71 -0.41,1.66 -1.38,2.06 -2.7,1.09 -2.04,0.63 -3.43,2.17 -3.25,4.46 0.34,2.11 -3.89,1.45 -1.52,3.28 0.64,0.85 2.57,0.6 1.5,2.34 -0.59,0.49 -3.83,-0.49 -1.93,0.9 1.83,0.38 1.7,2.77 3.5,3.41 0.3,1.24 -1.23,2.13 0.17,3.34 0.85,1.23 3.47,0.4 1.96,2.6 -0.03,1.87 -0.27,3.49 -1.48,4.83 0.06,1.49 3.29,0.29 1.61,2.31 -1.06,1.85 -1.32,4.02 0.45,5.41 1.27,1.35 2.68,3.31 4.18,4.13 1.51,1.5 3.36,-0.41 4.88,1.05 1.7,-0.73 1.49,2.06 2.91,2.19 -1.19,1.71 0.21,5.2 2.42,3.21 1.24,-1.16 2.04,4.15 2.96,1.45 1.23,-1.41 3.83,-2.33 3.98,-4.32 -1.76,-0.7 -2.47,-2.54 -4.09,-3.51 1.84,-0.94 3.53,1.28 4.58,-0.77 1.51,-1.17 4.45,-0.14 5.27,-1.51 0.95,-0.25 2.74,0.97 2.03,-1.03 1.24,-1.85 2.79,-4.63 5.26,-4.54 0.24,-2.22 -3.33,-1.77 -3.23,-3.97 -1.59,-0.5 -1.14,-2.19 0.43,-1.77 0.7,-2.69 -4,-0.18 -5.55,-0.99 -1.61,0.21 -2.66,0.21 -2.4,-1.73 -0.63,-1.95 -1.32,-4.61 -3.64,-4.95 -0.96,0.68 -1.86,1.05 -1.38,-0.57 -0.83,-1.37 -2.55,-0.91 -3.49,-1.92 2.14,-2.03 -0.39,-5.26 0.95,-7.43 1.04,-0.99 -1.1,-2.32 0.59,-3.24 1.49,-1.45 2.32,-4.9 -0.84,-4.45 -2.61,-1.01 0.89,-5.07 -2.78,-5.24 -1.21,-1.33 2.19,-1.14 0.43,-2.68 -0.12,-0.26 -0.3,-0.58 -0.61,-0.66 z", + "department-43" : "m 379.31,374.73 c -1.62,2.39 -4.9,1.8 -6.71,0.33 -0.7,1.72 -0.87,1.21 -1.91,0.1 -0.8,1.98 -3.58,1.56 -4.38,3.23 -1.25,1.09 -2.57,1.35 -4.33,1.17 0.74,1.5 -1.58,1.78 -0.04,2.79 -2.08,1.77 1.79,1.15 2.36,1.2 -0.13,1.97 3.13,-0.54 2.89,1.98 -0.29,1.8 0.97,2.96 2.14,3.73 -0.86,2.28 -0.05,5.34 2.48,5.9 2.93,0.43 -0.37,2.07 -1.36,0.74 -1.49,0.56 1.82,1.51 0.26,2.94 -1.01,2.64 2.59,2.31 2.97,4.1 -2.04,1.24 0.26,1.73 1.03,2.74 1.8,0.69 0.7,3.92 2.11,5.44 0.56,1.74 1.53,5.67 3.68,3.09 2.13,0.18 4,-0.58 3.52,-3.06 1.72,-1.57 4.47,0.99 3.25,2.73 2.03,-0.35 4.24,-0.91 4.56,1.81 1.6,0.42 1.42,3.2 3.32,1.95 -0.31,0.86 -0.01,2.7 1.4,1.48 3.08,-0.04 2.22,-4.19 4.35,-5.07 0.8,1.72 0.74,-0.65 2.16,-0.3 0.91,-0.43 0.22,-3.47 2.51,-2.52 2.14,-0.66 5.33,0.63 5.55,-2.64 1.54,-1.36 1.15,-4.48 3.81,-3.54 1.57,0.05 2.24,-1.12 0.99,-2.15 -1.14,-2.94 5.69,-1.67 3.23,-3.83 -1.6,-1.11 -0.01,-3.44 1.47,-3.61 -1.01,-0.84 -1.65,-2.84 0.52,-2.06 0.75,0.25 1.93,2.57 1.79,0.63 -0.57,-2.5 2.93,-4.77 1.26,-7.19 -1.2,-1.98 -2.64,-2.48 -4.48,-1.26 -2.08,-0.82 0.53,-3 -1.95,-3.68 1.6,-1.09 1.44,-3.36 -0.89,-3.47 -2.17,2.19 -2.9,-2.58 -5.24,-0.98 -1.45,-1.18 -2.23,0.2 -2.36,1.14 -1.72,-0.24 -2.79,0.8 -3.72,1.87 -0.74,-1.86 -1.9,-0.59 -2.28,0.4 -0.52,-2.16 -2.78,-4.05 -4.23,-1.53 -0.3,1.52 -1.03,1.38 -1.49,0.05 -2.13,0.67 -3.37,-3.95 -4.67,-1.3 0.12,2.86 -4.25,0.82 -5.13,-0.4 -0.84,1.48 -2.99,4.23 -4.08,1.09 -0.06,-2.97 -3.34,-1.73 -4.39,-4.01 z", + "department-07" : "m 436.62,378.68 c -2.11,1.19 -5.05,1.82 -5.73,4.31 -0.61,0.74 -1.7,1.47 -0.63,2.83 -1.48,1.55 -5.39,0.21 -5.65,3.05 -0.4,2.17 -2.13,4.1 -1.51,6.11 -0.82,1.35 -2.2,-3.55 -3.34,-0.83 2.87,1.6 -1.37,1.64 -1.06,3.7 -0.07,1.01 2.58,2.11 0.3,2.78 -2.43,-0.04 -3.73,1.92 -2.22,3.92 -1.62,1.35 -4.39,-0.37 -4.36,2.53 -1.51,1.8 -1.89,5.12 -5.04,3.9 -1.64,0.68 -4.72,-0.35 -3.54,2.75 -1.69,0.44 -2.07,1.93 -3.57,0.7 -0.65,2.39 -1.67,4.38 -3.7,5.18 0.05,1.23 -0.23,2.66 0.56,3.58 -0.09,2.42 0.91,5.06 1.8,7.31 3.3,1.24 2.04,5.97 4.07,8.24 1.96,0.49 1.37,2.56 2.59,3.64 -1.74,0.94 0.2,3.57 -1,5.13 1.45,0.08 4.13,-2.2 4.71,0.49 2.27,-0.88 3.84,4.84 5.98,2.4 0.11,-2.69 3.06,-5.02 5.54,-4.01 -0.84,1.71 0.49,4.93 2.22,2.69 -1.12,-4.19 4.37,-2.87 5.2,-0.35 2.07,1.28 5.06,2.67 3.99,-1.18 -0.44,-2.49 0.5,-4.84 0.92,-7.23 2.57,-1.67 0.05,-4.72 1.41,-6.94 -1.34,-2.75 2.73,-3.36 2.63,-6.07 2.5,-3.08 -0.98,-6.81 0.47,-10.07 2,-1.59 2.83,-4.11 4.16,-6.22 -0.81,-2.28 2.55,-4.4 -0.11,-6.44 -1.37,-1.98 -0.41,-4.12 -0.17,-5.92 -1.82,-0.69 -0.96,-3.19 -2.25,-4.49 1.8,-2.26 -0.83,-5.08 0.05,-7.93 1.49,-3.08 -3.02,-4.17 -1.77,-7.12 l -0.36,-0.33 -0.59,-0.1 0,0 z", + "department-26" : "m 448.07,380.12 c -2.89,1.17 -5.09,3.5 -8.19,2.69 -0.39,2.66 -1.05,6.79 0.49,9.42 -1.96,1.97 0.32,3.64 0.34,5.76 2.35,1.37 -0.99,4.81 1.33,6.93 2.06,2.38 -0.62,5.13 -0.81,7.77 -1.22,2.58 -4.32,4.41 -3.69,7.71 1.66,3.46 0.06,6.59 -1.3,9.7 -3.02,0.93 -0.83,4.24 -2.03,6.3 0.95,3.33 -2.55,6.12 -1.92,9.81 1.2,3.03 7.51,-0.99 7.1,4.18 0.14,2.04 0.67,4.67 2.58,1.79 2.97,-0.92 6.04,-2.27 9.06,-3.52 1.12,3.67 4.14,-0.81 5.13,-0.14 -0.85,1.68 -0.59,3.54 -0.5,5.19 1.36,1.14 3.35,1.14 4.16,-0.1 1.72,1.86 4.28,0.89 5.95,1.95 0.03,1.94 0.09,3.52 2.41,3.44 1.06,4.04 4.77,0.96 6.47,-0.43 -1.58,-2.47 1.9,-2.75 3,-1.1 1.64,-1.37 2.06,-2.86 1.41,-5.21 1.53,-2.36 -2.87,-0.24 -1.73,-2.96 -1.59,-0.67 -0.77,-1.18 -0.59,-2.32 -2.51,0.48 -4.35,-1.04 -6.35,-0.89 -1.23,-1.45 -2.87,-1.53 -2.12,-3.69 -1.62,-1.67 -0.01,-2.82 1.69,-1.61 2.12,-0.83 -1.87,-1.85 -0.65,-3.64 -0.28,-2.93 4.33,0.48 6.05,0.59 1.73,0.39 1.15,-2.66 3.01,-2.35 -1.71,-1.67 -3.84,-2.97 -1.6,-5.43 1.79,-1.45 -0.55,-5.71 2.99,-3.98 1.94,0.82 3.33,-0.86 4.9,-1.06 1.29,-0.88 2.08,-3.19 -0.35,-2.44 -2.24,0.57 -3.91,-2.09 -6.41,-1.58 -1.16,-1.43 -2.84,-3.52 -4.34,-3.81 0.14,1.78 -6.09,-0.53 -3.44,-2.33 -1.37,-2.79 0.85,-6.84 0.11,-10.1 0.96,-2.47 -1.42,-5.35 0.09,-7.37 -2.07,0.93 -4.59,4.84 -6.88,1.6 -1.84,0.62 -4.04,-0.31 -5.88,-1.61 -1.29,0.02 -2.1,2.02 -3.13,0.34 2.95,-1.62 2.73,-5.57 1.54,-8.29 2.1,-1.71 -0.25,-3.63 -2.12,-2.9 0.27,-1.74 0.99,-4.37 -1.59,-2.47 -1.31,0.06 -1.04,-2.86 -3.02,-2.37 -0.42,-0.45 -0.36,-1.52 -1.19,-1.46 z m -1.27,60.35 c 2.68,0.18 1.93,3.2 4.79,3.14 -1.88,1.51 -2.98,3.63 -4.06,5.91 -1.76,-1.35 -5.66,0.15 -4.33,-3.15 -1.66,-0.66 1.47,-2.81 1.37,-4.36 0.67,-0.62 1.73,-0.72 2.23,-1.54 z", + "department-84" : "m 446.86,440.69 c -1.95,0.68 -2.59,2.23 -3.24,3.95 -1.54,1.08 0.24,1.84 -0.38,3.25 0.79,1.16 2.95,0.74 4.3,1.12 1.33,-1.76 1.41,-4.26 3.76,-4.92 -0.23,-0.92 -2.69,-0.73 -2.57,-2.42 -0.66,-0.27 -1.12,-0.97 -1.86,-0.99 z m -10.7,6.69 c -1.75,0.63 -4.36,-0.72 -3.75,2.23 -0.47,1.96 1.22,3.5 1.32,5.13 2.22,-0.26 1.8,3.29 1.6,4.89 -0.71,1.78 -0.16,4.41 1.97,3.57 1.39,1.79 2.8,3.83 3.94,5.76 0.11,1.52 -2.28,0.28 -1.54,2.26 -0.27,1.54 -4.74,2.54 -1.78,2.92 1.98,0.36 4.26,0.33 5.81,1.82 2.69,0.61 4.43,2.7 6.08,4.74 0.55,2.14 2.45,3.17 4.31,4.09 2.3,2.43 5.12,0.03 7.83,1.23 2.38,1.21 4.48,2.96 6.96,4.03 2.69,1.26 6.11,1.9 8.79,0.34 1.35,-1.61 3.7,-0.97 4.73,-3.09 0.97,-1.51 -1.94,-2.24 -1.96,-3.86 -1.56,-1.86 -3.42,-4.41 -6.24,-2.8 -2.07,0.95 -0.48,-2.95 0.61,-3.43 0.51,-1.33 1.55,-2.66 -0.1,-3.23 -0.29,-2.08 -4.3,-0.54 -3.06,-3.3 0.45,-2.01 1.86,-3.87 1.45,-6.01 -1.1,0.12 -2.63,0.07 -2.14,-1.74 0.53,-2.35 -2.66,-1.28 -2.71,-3.51 -1.05,-0.88 -3.35,-0.4 -2.48,-2.73 -0.01,-3.12 -4.03,-0.26 -5.3,-2.66 -1.51,-1.06 -0.98,1.74 -2.66,0.68 -2.01,-0.15 -3.06,-1.35 -2.27,-3.12 -1.69,-0.64 1.81,-3.73 -0.28,-2.95 -1.07,2.14 -3.56,1.91 -4.6,0.21 -2.41,0.78 -4.55,2.65 -7.11,2.79 -1.53,-0.33 -4,4.19 -3.94,0.55 -0.37,-2.16 -0.51,-5.06 -3.51,-4.81 z", + "department-13" : "m 436.6,474.08 c -0.74,1.85 -4.74,2.73 -4.06,4.51 1.26,0.66 -1.41,1.72 -0.12,3.06 0.08,2.7 -2.74,5.11 -1.37,7.86 -2.28,-0.28 -6.4,-2.34 -7.04,1.21 -2.02,1.17 -2.34,4.33 0.25,4.07 -0.26,2.18 -2.99,1.15 -3.24,3.2 -2.53,0.88 -3.65,1.48 -5.33,3.13 -3.12,0.45 -3.32,4.69 0.25,3.69 2.78,0.47 5.55,1.05 8.35,0.35 2.37,-0.45 7.29,1.42 4.55,4.28 -0.6,3.55 5.03,2.05 7.33,2.58 1.71,0.43 5.71,0.01 2.7,-2.11 -3.88,-1.35 -2.85,-5.16 -3.05,-8.31 -0.04,-1.21 -2.55,-5.59 -0.42,-2.89 1.89,2.36 1,5.34 0.95,8.05 0.88,2.13 3.62,3.05 5.46,4.22 1.53,-0.81 -2.25,-2.45 0.5,-3.11 1.91,-1.46 4.03,-0.52 5.49,0.58 3.35,0.39 4.55,-4.15 1.3,-5.2 -0.68,-1.48 -0.16,-6.09 1.79,-3.06 2.23,-0.56 2.91,0.56 2.79,2.29 1.26,2.1 3.09,1.09 4.71,0.38 1.06,3.09 -3.48,5.94 -6.44,5.14 -4.78,-0.48 -3.49,6.19 0.68,5.18 2.9,-0.06 6.07,0.58 8.6,-1.26 3.09,-1.75 3.91,2.83 3.27,4.72 2.03,1.28 -2.35,4.61 1.58,4.55 2.59,-0.26 5.17,0.78 7.33,0.32 0.97,2.95 3.72,1.97 5.67,1.14 -0.33,-3.01 1.95,-4.41 4.07,-5.87 -0.58,-2.14 -2.28,-2.58 -3.96,-3.03 2.56,-1.22 -1.49,-6.49 2.6,-5.65 1.54,0.73 3.39,-0.95 1.08,-1.75 -1.32,-1.96 -3.23,-3.39 -1.84,-5.73 2.26,-2.81 -4.73,-2.76 -1.41,-4.42 -0.82,-3.37 2.37,-4.88 5.13,-5.19 1.46,-1.69 -2.03,-5.66 -3.21,-2.42 -1.87,0.81 -3.79,1.87 -5.79,2.74 -4.96,0.73 -9.29,-2.44 -13.26,-4.94 -3.21,-1.31 -6.53,0.84 -9.27,-1.96 -2.79,-0.81 -2.96,-3.66 -4.98,-5.35 -1.7,-2.34 -4.64,-3.03 -7.08,-4.31 -1.52,-0.14 -3,-0.57 -4.52,-0.71 z", + "department-83" : "m 517.2,482.16 c -2.21,0.45 -4.51,0.15 -4.56,3.03 -1.71,2.89 -5.34,-0.75 -6.7,-2.47 -3.07,-2.54 -3.41,4.73 -6.6,3.29 -1.58,1.5 -2.96,3.5 -4.46,4.67 -1.25,-1.47 -1.71,-3.25 -3.55,-3.95 0.03,-1.86 -1.87,-1.86 -1.91,-0.09 -1.33,1.02 -2.66,0.95 -3.16,-0.75 -1.91,-1.9 -4.18,0.89 -2.09,2.04 0.53,1.23 1.97,1.94 0.53,3.38 -2.84,-0.21 -5.92,2 -4.84,5.1 -3.44,1.27 3.35,1.25 1.35,3.57 -0.22,1.94 -1.24,3.31 0.74,4.69 0.22,1.73 4.1,2.93 0.81,3.75 -2.63,-1.28 -3.72,1.11 -2.27,3.16 -1.33,1.63 -0.65,2.88 1.29,2.7 1.09,1.33 2.34,3.31 -0.22,3.83 -2.89,1.3 -2.33,4.54 -1.48,6.82 1.05,1.11 2.71,1.01 3.71,1.52 -0.45,1.28 3.17,1.21 0.61,2.02 -2.2,1.64 1.53,2.03 2.31,3.24 1.87,0.49 2.01,-2.69 4.02,-1.64 0.25,-1.17 -3.62,-2.32 -0.77,-2.94 1.5,-0.75 1.25,1.72 3.11,0.9 1.98,-0.44 2.88,1.82 4.97,0.72 2.49,0.17 1.79,3.18 -0.25,3.1 1.03,0.17 3.75,1.02 4.22,-0.22 -1.87,-1.01 -0.43,-5.47 2.18,-4.51 2.27,-1.02 4.3,0.74 5.47,2.2 2.95,0.7 -0.7,-3.95 2.56,-4.14 1.82,-1.17 4.32,-0.11 5.81,-1.82 1.19,-1.87 3.53,-0.69 3.91,0.87 1.83,-0.26 1.02,-2.97 3.25,-2.97 -1.94,-1.52 0.52,-2.56 0.71,-4.09 -0.88,-1.35 -6.14,0.84 -4.2,-1.29 1.98,-0.49 3.13,-1.3 3.41,-3.27 3.09,-0.38 1.58,-4.33 3.42,-5.76 2.02,1.51 4.49,0.53 6.29,-0.38 1.97,-1.45 2.07,-3.69 -0.21,-4.86 0.39,-1.48 -0.82,-2.76 0.73,-4.13 0.32,-1.33 0.43,-3.31 -1.68,-2.51 -2.08,-0.91 -4.86,-2.77 -4.6,-5.2 1.21,-2.45 -1.26,-3.59 -2.82,-4.44 -1.3,-0.4 -2.5,0.43 -2.84,-1.45 -0.36,-2.95 -3.06,-1.75 -4.46,-0.37 0.04,-0.84 -0.83,-2.43 -1.72,-1.38 z", + "department-06" : "m 534.65,445.17 c -2.26,1.07 -5.06,2.58 -4.36,5.66 -3,-0.21 -3.04,3.43 -4.06,5.54 -1.08,2.46 0.95,4.86 2.25,6.92 -1.14,3.22 2.36,4.62 4.05,6.69 0.63,2.61 3.53,3.37 4.77,5.63 -2.57,2.29 -4.92,-3.17 -6.86,-0.03 -0.74,2.32 -3.13,1.4 -4.56,1.36 1.15,1.61 -2.67,2.88 0.34,3.69 1.19,1.89 -4.95,1.17 -2.32,3.78 0.53,1.35 2.49,-0.04 3.3,1.63 2.89,-0.16 1.89,3.58 2.03,5.2 1.45,1.97 3.65,3.89 6.12,3.69 1.22,2.02 -1.58,4.04 -0.48,6.02 -0.26,2.6 3.76,2.43 2.74,-0.52 1.75,-2.03 4.78,-1.82 7.05,-2.83 2.15,2.34 0.79,-2.94 1.42,-4.1 0.35,-2.64 3.85,-1.42 4.44,-3.92 1.43,-0.64 4.04,-1.22 4.41,0.38 0.69,-1.18 0.32,-2.51 2.45,-2.28 -0.13,-1.76 1.58,-4.07 3.07,-2.16 1.7,0.06 1.19,-2.66 3.34,-2.27 -0.27,-2.4 -3,-5.81 0.3,-7.3 1.54,-1.45 0.99,-4.2 3.51,-4.76 2.78,-1.39 1.89,-4.43 4.17,-6.12 1.59,-2.77 -3.27,-4.24 -1.5,-7.3 -1.21,-2.71 -2.61,1.55 -4.47,0.73 -2.22,0.84 -4.68,1.32 -6.76,2.38 -2.04,0.2 -3.62,-0.51 -4.81,-1.86 -2.43,0.52 -3.44,-1.96 -5.53,-2.49 -1.15,-2.34 -3.58,-0.83 -4.96,-2.82 -1.54,-1.59 -4.78,0.61 -4.95,-2.66 -1.4,-1.9 -2.37,-3.95 -3.93,-5.85 l -0.23,-0.02 -1.8e-4,10e-5 z", + "department-04" : "m 536.03,425.47 c -1.91,1.96 -3.88,3.46 -6.49,4.44 -1.02,2.88 -4.75,3.12 -5.32,6.34 -1.11,1.83 -1.21,3.9 -4.02,3.07 -3.01,-0.06 -6.66,-0.3 -8.11,-3.08 -0.64,-1.8 -3.43,-1.98 -2.19,0.22 -0.26,3.25 -2.7,-0.14 -4.23,1.68 -1.44,0.61 2.06,5.8 -1.43,5.09 -2.1,-2.16 -2.71,-5.63 -6.09,-5.69 -0.87,3.33 -6.54,3.63 -7.12,7.81 -0.96,1.13 -2.01,2.66 -0.4,3.1 -0.61,1.4 0.72,5.52 -1.66,2.94 -0.44,-1.65 -2.49,-3.59 -2.83,-0.6 1.02,1.86 2.62,3.82 3.95,5.12 -2.91,0.83 -6.3,-2.29 -9.28,0.12 -0.78,0.38 -3.94,0.37 -2.37,1.8 0.52,0.59 -1.17,0.62 -1.27,-0.25 -1.21,-2.36 -3.58,-0.6 -2.43,1.22 -2.05,0.82 -5.12,3.55 -2.92,5.69 3.34,-0.23 0.15,4.71 -0.09,6.55 -0.21,2.32 3.26,0.85 3.55,3.17 2.24,1.52 -3.59,5.18 -1.33,6.48 2.81,-2.13 5.06,0.73 6.7,2.59 0.57,1.46 2.26,4.38 3.61,1.7 2.13,0.13 4.41,4.24 5.38,0.42 1.94,-1.62 1.55,2.48 3.59,2.29 0.43,1.7 2.31,4.04 2.93,1.23 2.03,-0.76 2.24,-3.96 4.52,-2.9 1.73,-1.32 3.93,-6.5 5.92,-2.58 1.76,2.61 6.67,4.01 6.46,-0.53 1.66,-0.48 3.88,-1.21 5.41,-0.9 0.99,2.9 3.19,-2.27 4.59,0.48 1.62,-0.3 5.25,-1.56 1.66,-2.44 0.5,-1.52 2.15,-2.44 0.07,-3.65 2.45,0.82 5.17,0.99 6.43,-1.88 1.98,-0.91 4.27,3.34 5.6,0.53 -2.39,-1.94 -3.94,-3.66 -5.54,-6.13 -1.97,-1.55 -3.7,-3.16 -3.01,-5.85 -1.63,-2.1 -3.46,-4.86 -1.89,-7.35 0.29,-2.57 2.02,-4.78 3.68,-5.75 -0.2,-4 5.64,-3.6 4.5,-7.78 -0.28,-2.01 3.78,-1.57 1.15,-3.33 -2.21,-1.59 -4,-5.51 -0.76,-7.08 1.56,-1.02 4.77,-6.03 1.11,-6.32 z", + "department-05" : "m 505.98,394.66 c -0.92,0.25 -1.63,1.24 -1.1,2.16 0.19,0.48 0.58,1.51 -0.28,1.51 -1.03,0.5 -0.62,1.96 -1.08,2.79 -0.5,0.85 0.81,1.35 1.44,1.52 1.22,0.46 2.5,-0.16 3.7,-0.25 0.54,0.61 -0.39,1.36 0.2,1.99 0.46,0.55 -0.24,1.49 0.61,1.76 1.28,0.11 1.04,1.22 0.99,2.19 0.04,1.33 -0.36,2.63 -0.12,3.94 -0.53,0.79 -1.69,0.39 -2,-0.4 -0.51,-1.19 -2.09,-0.47 -2.63,0.32 -1,0.97 -2.33,-0.4 -3.46,0.21 -0.85,0.38 -1.73,-1.03 -2.42,-0.12 -0.98,1 -2.08,1.88 -3.19,2.74 -0.6,-0.52 -1.36,-2.29 -1.99,-0.92 -0.19,0.45 -0.47,0.63 -0.95,0.63 -0.5,0.26 -1.64,0.37 -1.59,1.05 0.28,0.44 1.46,0.83 1.02,1.47 -0.54,0.3 -1.13,0.65 -1.29,1.26 -0.7,-0.05 -1.3,0.89 -1.97,0.42 -0.72,-0.21 -1.09,0.98 -1.85,0.43 -0.58,0.09 -1.28,-0.82 -1.74,-0.36 0.25,1.1 -0.94,2.04 -0.76,3.1 0.52,0.18 0.81,0.66 0.78,1.23 -0.53,0.61 -1.46,0.99 -1.58,1.94 -0.18,0.9 -1.25,0.06 -1.79,0.32 -0.68,0.37 -1.24,1.41 -2.12,0.79 -0.93,-0.21 -2.04,-0.85 -2.95,-0.39 -0.57,0.89 0.83,2.18 -0.26,2.82 -0.65,0.74 -0.7,1.84 -1.37,2.59 -0.33,0.63 -0.72,1.79 0.31,1.98 1.01,0.26 1.61,1.36 2.24,2.13 -0.07,0.59 -1.06,0.18 -1.47,0.37 -0.6,0.27 -0.26,1.22 -0.74,1.67 -0.29,0.65 -1.01,0.59 -1.49,0.18 -0.57,-0.34 -1.27,-0.05 -1.74,-0.61 -0.9,-0.62 -2,-0.67 -3.03,-0.83 -0.44,-0.35 -1.26,-0.9 -0.84,0.18 0.34,0.85 -0.18,1.94 0.35,2.71 0.46,0.27 1.64,0.66 1.06,1.38 -0.5,0.81 -1.41,0.3 -2.05,-0.05 -0.52,-0.37 -1.25,0.09 -0.87,0.7 0.33,0.77 0.86,1.66 0.62,2.5 -0.66,0.38 0.12,0.97 0.62,0.79 0.61,0.08 0.48,1.09 1.17,1.15 0.27,0.47 0.79,0.78 1.25,0.32 0.66,-0.57 1.26,0.29 1.64,0.72 1.26,0.36 2.77,-0.21 3.93,0.31 -0.15,0.66 -1.33,1.39 -0.16,1.75 0.4,0.17 0.78,0.55 0.44,0.97 -0.13,0.75 0.67,1.6 1.38,1.06 0.44,-0.36 1.29,0.39 0.73,0.76 -0.45,0.57 -0.47,1.41 -0.01,1.94 -0.06,0.96 -0.14,2.01 0.32,2.89 0.74,-0.36 1.48,-0.84 2.32,-1.03 0.89,-0.54 2.04,-0.3 3.03,-0.47 1.36,0.7 2.9,1.36 4.48,1.28 0.82,-0.57 -0.52,-1.06 -0.97,-1.25 -0.83,-0.92 -1,-2.37 -2.18,-3.02 -0.89,-0.61 -0.47,-1.72 -0.01,-2.44 0.2,-0.82 1.38,-0.21 1.78,0.12 0.44,0.5 0.07,1.39 0.76,1.79 0.27,0.34 1.29,1.11 1.39,0.28 -0.46,-0.7 -0.4,-1.72 0.04,-2.4 0.24,-0.63 -0.28,-0.96 -0.8,-0.99 -0.4,-0.58 -0.19,-1.66 0.53,-1.93 1.11,-0.98 1.03,-2.64 1.93,-3.7 0.84,-0.83 2.18,-1.02 2.91,-1.96 0.3,-0.69 1.08,-1.23 1.8,-1.37 0.77,0.34 0.76,-0.99 0.72,-1.47 0.2,-0.8 1.42,-0.33 1.96,-0.19 0.77,0.29 1.87,0.6 1.76,1.64 -0.03,0.5 0.41,0.7 0.8,0.64 0.65,1.23 1.63,2.21 2.33,3.38 0.67,0.53 1.08,-0.73 1.28,-1.18 0.53,-1.39 -0.98,-2.61 -0.83,-3.89 0.95,-0.06 1.68,-0.79 2.53,-1.06 0.55,0.33 1.53,1.41 2.02,0.36 0.44,-0.73 0.48,-1.61 -0.08,-2.27 0.17,-0.42 0.83,-0.77 1.24,-0.86 0.91,1 1.94,1.96 2.46,3.23 0.51,0.3 1.22,-0.11 1.7,0.41 0.56,0.61 1.25,1.09 2.14,1 1.98,0.14 3.96,0.2 5.94,0.29 0.53,-0.84 0.08,-2.27 1.05,-2.94 1.09,-0.75 1.13,-2.18 1.48,-3.28 1.39,0.19 2.51,-0.88 3.23,-1.94 0.77,-0.23 0.49,-1.3 1.27,-1.53 0.82,-0.72 1.93,-0.86 2.92,-1.25 0.49,-0.42 0.51,-1.23 1.32,-1.26 0.83,-0.36 1.14,-1.4 1.93,-1.78 0.77,0.27 1.79,0.29 2.08,-0.66 0.66,-1.38 2.4,-1.81 3.71,-1.06 0.39,0.18 1.29,0.5 1.12,-0.27 0.09,-1.44 -0.99,-2.46 -1.92,-3.38 -0.16,-1.25 0.2,-2.81 -0.7,-3.82 0.26,-0.63 1.23,-1.27 0.5,-1.95 -0.48,-0.56 -0.7,-1.27 -1.5,-1.47 -0.9,-0.29 -1.99,-1.36 -2.93,-0.65 -1.03,0.93 -2.61,0.14 -3.63,-0.46 -1.39,-1.22 -3.06,-2.05 -4.52,-3.16 -0.14,-0.64 0.04,-1.36 -0.18,-2.01 0.26,-0.67 0.64,-1.39 0.32,-2.14 -0.46,-0.77 -0.27,-1.65 -0.34,-2.48 -0.67,-1.47 -2.82,-0.12 -3.68,-1.29 -0.42,-1.05 0.19,-2.49 -0.93,-3.24 -0.45,-0.58 -0.89,-1.29 -0.84,-2.02 -0.58,-0.55 -1.68,-0.52 -2.38,-0.21 -0.4,0.9 -1.61,1.62 -2.44,0.8 -0.83,-0.16 -1.61,0.86 -1.3,1.66 0.16,0.65 0.15,1.68 -0.74,1.69 -0.9,0.39 -1.54,-0.53 -2.43,-0.47 -0.85,-0.07 -1.72,-0.21 -2.49,-0.62 0.67,-1.13 -0.23,-2.74 -1.37,-3.11 -0.83,0.45 -1.99,0.92 -2.79,0.12 -0.24,-0.12 -0.29,-0.52 -0.63,-0.43 z", + "department-38" : "m 464.21,344.5 c -2.79,1.9 -2.68,8.48 -7.27,6.99 -0.9,-2.78 -3.83,-2.24 -5.03,-0.76 -2.02,0.29 1.51,1.68 1.08,3.08 2.47,0.08 3.5,3.16 0.44,2.72 -1.73,1.6 -3.23,3.88 -3.85,5.57 -1.57,-1.3 -1.06,1.72 -2.92,0.29 -3.28,-0.47 -4.55,3.17 -7.48,1.48 -1.5,1.31 5.74,3.47 2.07,5.5 -2.26,2.06 -5.1,3.74 -4.23,6.93 0.77,2.57 -0.06,8.04 4.48,6.03 2.27,2 6.34,-5.1 8.45,-0.76 1.77,0.21 1.71,3.96 3.93,1.45 1.68,0.13 -1.09,4.61 1.72,3.03 1.9,0.92 2.02,2.4 0.5,3.24 1.61,2.88 0.73,6.17 -0.85,8.65 1.08,-0.16 3.1,-1.79 4.37,0.45 2.36,0.7 4.24,0.15 6.23,1.33 0.84,-0.27 3.02,-1.03 3.81,-2.77 2.64,0.63 -1.49,2.67 0.72,4.47 0.38,3.59 -0.09,7.56 -0.56,11.3 0.4,1.45 0.41,2.4 -0.01,3.62 1.24,0.79 4,2.16 3.74,0.13 2.61,1.83 4.3,5.05 7.54,4.72 2.17,2.94 5.3,0.26 5.21,-2.58 1.66,1.44 8.14,-0.42 5.75,-2.57 -0.07,-1 2.61,-2.26 3.54,-2.4 2.26,2.99 3.89,-3.83 6.67,-1.32 2.19,0.23 3.45,-0.22 5.31,-1.27 0.97,1.39 3.24,2.32 2.54,-0.45 1.1,-3.23 -1.77,-5.43 -1.86,-8.01 -3.37,1.84 -6.82,-1.82 -3.61,-4.41 -0.13,-1.84 0.52,-3.31 1.32,-4.86 -1.82,-0.13 -3.26,-1.51 -5.13,-0.74 1.43,-2.69 -1.8,-4.98 -0.71,-7.76 -0.38,-2.56 4.12,-3.93 2.03,-6.04 0.5,-3.14 -3.24,-5.89 -6.15,-5.13 -1.66,-1.14 -3.77,-5.23 -5.46,-1.87 -0.31,1.87 -0.63,3.21 -0.4,4.62 -2.15,1.23 -4.77,-3.87 -7.68,-2.52 -0.95,-2.94 -2.79,-6.19 -4.33,-9.02 -1.66,-2.41 -2.31,-5.84 -4.73,-7.23 -0.04,-3.77 -5.4,-5.53 -5.81,-9.3 0.88,-1.39 -2.2,-3.36 -3.39,-3.83 z", + "department-73" : "m 486.16,340.96 c -0.45,0.45 0.31,1.19 0.03,1.77 -0.43,2.29 -1.49,4.41 -1.88,6.69 -0.26,1.38 -0.01,2.88 -0.3,4.22 -0.62,0.31 0.02,1.17 -0.58,1.57 -0.45,1.17 -1.58,0.73 -2.55,0.64 -0.84,0.07 0.16,1.14 -0.18,1.7 -0.39,0.69 -1.23,1.27 -0.9,2.19 0.16,0.81 -0.73,0.85 -1.28,0.92 -0.46,0.22 -0.52,0.84 -0.99,1.02 -0.1,0.57 -0.89,1.04 -0.26,1.63 0.76,1.32 2.36,2.45 2.11,4.11 0.23,0.33 0.74,0.34 0.74,0.83 0.84,0.69 0.84,1.99 1.51,2.8 0.86,0.69 -0.26,2.79 1.33,2.79 0.69,-0.42 1.75,-0.43 2.21,0.36 0.86,0.8 2.15,0.9 3.12,1.6 0.57,0.15 0.69,0.71 1.06,1.03 0.59,0.02 1.32,-1.15 0.42,-1.31 -0.57,-0.83 0.26,-1.71 0.62,-2.42 0.32,-0.63 -0.18,-1.37 -0.02,-1.93 0.76,-0.47 1.65,-0.69 2.47,-1.04 0.43,0.56 1.01,1.07 1.58,1.38 0.13,0.76 0.39,1.57 1.25,1.79 0.96,0.51 2.24,-0.49 3,0.51 0.5,0.17 1.21,-0.47 1.46,0.31 0.64,1.59 2.48,2.51 2.66,4.29 -0.29,0.15 -0.79,0.54 -0.21,0.73 0.85,0.23 0.12,1.35 0.11,1.91 -0.05,0.98 -1.42,0.76 -1.63,1.63 -0.67,0.52 -0.97,1.32 -0.71,2.16 0.28,0.8 -0.51,1.41 -0.41,2.16 0.41,0.87 0.74,1.73 1.41,2.45 0.62,1.01 -0.59,1.95 -0.5,2.93 0.52,0.56 1.11,-0.22 1.49,-0.5 0.92,-0.1 1.37,0.91 2.13,1.15 0.63,-0.3 1.62,-0.2 1.66,0.68 -0.1,1.41 1.8,2.18 2.81,1.25 0.65,-0.79 1.23,0.33 1.67,0.84 0.46,0.64 0.68,1.43 0.45,2.15 0.54,0.74 1.75,0.36 2.53,0.62 0.86,0.16 1.92,1 2.66,0.13 0.38,-0.92 -0.65,-2.23 0.57,-2.71 0.35,-0.45 0.85,-0.56 1.27,-0.15 0.94,0.49 1.73,-0.4 2.13,-1.14 0.91,-0.24 1.86,0.12 2.72,0.29 0.81,-0.21 1.62,-0.66 2.1,-1.32 0.99,-0.68 2.46,0.1 3.22,-1.02 0.35,-0.43 0.97,-0.89 1.45,-0.3 0.85,0.52 2.11,0.47 2.52,1.51 0.72,0.63 1.87,0.09 2.61,-0.25 0.41,-0.56 -0.74,-1.63 0.24,-1.82 0.89,-0.31 2.18,-0.09 2.35,-1.31 0.28,-0.94 0.93,-1.7 1.94,-1.85 1,-0.19 1.96,-0.56 2.92,-0.94 0.28,0.29 0.54,1.02 1.07,0.58 0.47,-0.87 0.96,-2.03 2.06,-2.12 0.86,-0.78 0.12,-2.12 -0.06,-3.06 -0.11,-0.72 -1,-1.93 0.07,-2.33 0.68,-0.07 0.41,-0.73 0.59,-1.12 0.98,-0.99 1.63,-2.36 1.9,-3.7 -0.59,-0.97 -1.87,-1.22 -2.71,-1.86 -0.94,-0.95 -0.87,-3.04 -2.54,-3.15 -0.56,-0.01 -0.92,-0.42 -0.89,-0.96 -0.58,-0.7 -1.85,-0.56 -2.18,-1.57 -0.64,-1.44 -0.23,-3.2 -1.06,-4.6 -0.34,-1.1 0.49,-2.08 0.76,-3.02 -0.69,-0.83 -1.62,-1.51 -2.76,-1.31 -0.88,0.14 -0.91,-0.82 -1.25,-1.33 -0.99,-0.62 -2.63,-0.33 -3.11,-1.66 -0.83,-0.95 -1.39,-2.07 -1.33,-3.37 -0.05,-0.49 -0.09,-1.83 -0.91,-1.34 -0.91,0.06 -1.72,0.7 -1.99,1.6 -0.42,0.52 -0.86,1.4 -1.45,1.52 -0.4,-0.17 -1.27,-0.31 -0.7,-0.87 0.23,-0.66 -0.51,-1.2 -0.28,-1.88 -0.34,-0.89 -0.91,-2.04 -1.95,-2.2 -0.89,-0.13 -2.19,0.76 -2.83,-0.15 -0.09,-0.52 -0.37,-0.96 -0.88,-1.06 -0.72,-0.81 -1.07,-2.03 -1.15,-3.07 0.63,0.06 1.62,-0.31 1.26,-1.11 -0.35,-1.05 -1.53,-1.04 -2.36,-1.47 -0.67,-0.01 -0.86,0.94 -1.52,1.08 -0.85,0.88 -1.48,2.09 -1.51,3.29 -0.72,0.95 -0.91,2.24 -1.97,2.95 -0.76,0.61 -1.69,1.28 -1.54,2.39 -0.21,0.67 -0.99,1.04 -1.01,1.82 -0.44,0.97 -0.54,2.37 -1.86,2.41 -1.14,0.38 -2.33,0.53 -3.53,0.54 -0.06,-0.45 0.01,-1.66 -0.76,-1.32 -0.31,0.13 -0.76,0.69 -1.03,0.56 -0.25,-0.91 0.24,-2.16 -0.62,-2.79 -0.14,-0.81 -1.14,-1.57 -1.94,-1.34 -0.21,0.5 -0.78,0.26 -1.03,-0.06 -0.76,0.04 -0.24,1.32 -0.76,1.53 -0.34,-0.65 -1.25,-0.37 -1.8,-0.73 -0.47,-0.07 -0.73,0.7 -1.2,0.25 -0.48,-0.36 -1.21,-0.4 -1.7,-0.51 0.01,-0.61 -0.44,-1.04 -0.93,-1.29 0.04,-0.57 0.55,-1.77 -0.49,-1.68 -0.47,-0.1 -0.19,-0.97 -0.81,-1.05 -0.66,-0.37 -1.22,0.91 -1.76,0.14 -0.38,-0.36 -0.12,-1.3 -0.92,-1.18 -1.02,-0.5 -0.45,-1.96 -0.7,-2.86 -0.23,-1.29 -0.31,-2.65 -0.65,-3.91 -0.34,-0.35 -0.97,-0.38 -1.43,-0.38 z", + "department-74" : "m 522.73,306.41 c -1.97,0.51 -4.09,-0.11 -6.02,0.54 -1.69,0.88 -2.87,2.78 -4.92,2.88 -1.61,0.19 -3.71,0.06 -4.62,1.7 -1.07,1.16 -2.72,2.21 -2.73,3.97 0.1,0.69 1.48,0.71 0.93,1.55 -0.41,0.84 0.21,1.93 0.9,2.4 0.42,0.09 0.95,-0.58 1.26,0.01 0.37,0.53 0.48,1.32 -0.23,1.62 -1.53,1.19 -3.48,2.08 -4.62,3.7 0.15,0.96 -1.06,1.44 -1.7,1.89 -0.92,0.54 -2.12,0.67 -2.99,-0.02 -0.94,-0.11 -1.74,0.7 -2.72,0.57 -1.73,-0.1 -3.26,0.92 -4.93,1 -0.77,0.2 -1.52,0.85 -1.16,1.71 0.19,0.63 -0.32,1.15 -0.97,1 -0.99,0.19 -1.36,-0.93 -2.04,-1.36 -0.25,0.5 -0.16,1.27 -0.57,1.8 -0.32,1.76 -0.11,3.58 -0.18,5.37 -0.05,1.02 1.4,1.33 1.1,2.4 -0.08,0.89 -0.37,2.18 0.97,1.91 0.75,0.22 0.29,1.37 0.52,1.94 0.31,1.44 0.48,2.91 0.5,4.37 0.07,0.67 0.88,0.58 1.19,0.96 -0.06,0.61 0.65,1.43 1.18,0.8 0.34,-0.42 1.1,-0.12 1.48,0.06 -0.19,0.54 0.13,1.08 0.73,0.94 0.45,0.32 -0.03,1.12 0.02,1.58 0.26,0.43 0.87,0.53 0.99,1.06 0.58,0.39 1.43,1.09 2.13,0.73 0.22,-0.52 0.78,-0.22 1.09,0 0.59,0.21 1.53,0.05 1.32,-0.78 -0.01,-0.66 0.68,-0.27 0.9,0.03 0.57,0.28 0.97,-0.69 1.55,-0.21 0.84,0.25 1.11,1.08 1.58,1.67 0.61,0.22 0.16,1.19 0.32,1.69 -0.08,0.68 0.71,0.6 0.85,0.07 0.5,-0.09 1,0.52 0.86,1.04 0.4,0.69 1.5,0.24 2.16,0.27 0.76,-0.24 1.79,-0.22 2.32,-0.85 0.55,-0.82 0.59,-1.89 1.06,-2.69 0.59,-0.47 1.08,-1.17 0.58,-1.84 1.1,-1.12 2.6,-2.01 3.15,-3.59 0.44,-0.46 0.57,-1.04 0.46,-1.64 0.43,-1.24 1.14,-2.4 2.27,-3.1 0.24,-0.19 0.68,-1.23 1.02,-0.66 0.87,0.56 2.4,0.81 2.5,2.07 0.05,0.67 -0.39,0.98 -1.01,0.85 -0.65,0.38 0.05,1.31 0.13,1.86 0.25,0.92 1.4,1.05 1.58,2.03 0.48,0.87 1.65,0.01 2.41,0.12 0.73,-0.31 1.18,0.28 1.5,0.85 0.45,0.56 1.16,1.11 0.82,1.91 -0.09,0.58 0.7,0.95 0.24,1.52 -0.21,0.76 0.9,0.79 1.18,0.23 0.84,-0.71 0.9,-2.01 2.02,-2.43 1.02,-0.06 1.62,-1 1.61,-1.96 -0.09,-1.02 0.58,-2.66 1.85,-2.26 0.39,0.29 1.11,0.3 0.98,-0.35 0.01,-0.41 0.22,-0.99 0.72,-0.64 1.66,0.72 3.32,-0.42 4.67,-1.3 1.07,-1.02 1.17,-2.69 2.2,-3.72 0.24,-1.07 0.13,-2.38 -0.92,-2.98 -0.31,-0.29 0.4,-0.66 0.03,-1.04 -1.08,-1.72 -2.7,-3.09 -3.82,-4.78 -0.93,-0.47 -1.81,1.29 -2.7,0.56 -0.35,-0.84 0.72,-1.72 0.05,-2.53 0.03,-0.72 1.46,-1.61 0.49,-2.23 -0.76,-0.34 -1.61,-0.31 -2.36,-0.72 -0.84,-0.04 -2.06,-0.19 -2.06,-1.31 0.09,-1.22 0.81,-2.32 0.63,-3.59 0.03,-1.74 2.08,-2.69 2.14,-4.38 -0.61,-2.1 -2.81,-3.32 -3.41,-5.34 0.58,-0.82 1.83,-1.33 1.69,-2.56 0.1,-0.89 0.32,-2.26 -0.88,-2.5 -2.33,-0.82 -4.77,-1.84 -7.27,-1.85 z", + "department-71" : "m 412,260.36 c -2.93,0.55 -4.26,2.21 -6.96,2.68 -1.28,2.48 2.3,4.5 -0.5,6.99 -1.43,0.66 -3.07,3.09 -0.49,1.44 1.9,1.91 -1.31,5.49 2.35,6.61 2.41,2.48 -3.47,2.49 -1.06,5.02 0.77,3.39 -3.9,1.03 -5.18,3.67 -2.25,1.4 -4.63,2.62 -7.04,3.38 -0.31,-4.58 -4.86,-2.18 -7.6,-2.64 0.33,3.18 3.53,4.95 4.3,8.11 0.37,1.27 1.28,3.31 0.8,5.05 2.56,1.6 5.5,0.03 6.06,3.56 2.3,-0.67 6.83,0.19 5.63,3.81 -1.65,2.24 1.1,6.27 -0.41,7.48 -1.83,-0.26 -2.1,1.92 -4,2.06 1.17,2.28 -1.61,6.17 2.72,5.49 0.93,1.98 2.84,2.96 4.81,1.08 2.24,-1.83 4.53,2.66 6.18,-0.34 0.99,0.81 3.97,-0.12 2.52,2.07 1.82,0.5 3.17,-1.98 5.29,-1.84 0.91,-1.94 0.34,-5.84 2.53,-7.3 2.38,-0.25 4.64,4.02 6.14,0.44 0.69,1.02 2.58,2.86 3.18,0.21 1.5,-2.57 5.41,0.79 2.63,2.19 4.35,0.26 -0.17,5.73 3.79,5.35 1.63,-2.32 1.8,-5.62 3.02,-8.28 1.07,-3.54 2,-7.12 3.47,-10.47 -0.24,-4.22 3.76,-4.44 6.12,-2.01 2.73,0.91 5.4,-3.24 7.43,-0.63 0.71,4.46 5.42,3.07 8.23,1.96 3.48,-0.33 -0.18,-2.98 -1.2,-3.64 -0.19,-2.06 -0.14,-4 2.12,-4.12 -1.13,-2.06 2.54,-2.7 0.55,-4.54 0.27,-1.18 -1.25,-2.07 -0.87,-3.37 -1.29,-1.52 -2.14,-2.53 -0.54,-4.28 -1.91,-0.7 -4.07,-3.41 -0.68,-3.56 1.47,-0.64 5.77,0.15 2.85,-1.99 -1.77,-0.79 -1.54,-3.02 -3.84,-2.16 -2.27,0.63 -1.51,-5.03 -4.1,-2.86 0.12,-2.06 -1.07,-4.73 -3.5,-2.61 -2.78,0.86 -4.3,2.07 -6.4,-0.46 -1.94,0.4 -2.39,2.11 -4.89,0.86 -2.61,0.33 -5.24,2.44 -8.14,3.19 -1.76,-0.3 -4.71,2.29 -4.23,-1.06 -3.18,-0.15 -5.08,-3.48 -5.63,-5.52 -2.23,0.19 -4.16,-1.65 -6.41,-2.36 0.94,-2.91 -1.62,-1.37 -2.5,-0.96 0.79,-4 -4.82,-1.4 -5.2,-5.1 -0.71,0.24 -0.8,-0.59 -1.34,-0.6 z", + "department-03" : "m 355.26,283.59 c -2.47,0.46 -4.86,3.44 -6.02,4.72 -1.76,-0.99 -3.8,2.31 -4.59,-0.78 -1.76,0.08 -2.97,3.69 -5.04,3.94 1.97,2.84 -4.43,0.31 -1.55,2.39 0.4,1.42 -1.37,2.94 0.6,3.99 1.55,3.09 -3.65,5.08 -5.37,3.61 -2.24,1.35 -6.48,-0.24 -7.16,3.06 -1.54,1.23 -3.6,4.68 -1.43,6.74 2.23,0.25 1.54,1.18 0.45,2.24 0.46,1.75 3.06,2.36 3.77,1.35 1.79,0.78 0.58,3.48 2.71,2.33 2.32,1.7 3.03,4.85 4.13,7.52 1.59,1.1 1.36,3.94 4.21,3.81 2.2,-0.4 1.29,-4.32 4.06,-4.34 -0.38,-2.36 1.13,-2.81 2.64,-1.17 2.87,2.05 0.78,-4.7 4.25,-3.15 2.6,-0.56 4.31,1.53 2.01,3.27 -0.51,2.53 2.71,1.85 2.18,4.56 1.6,1.64 4.19,2.18 6.12,1.98 0.53,3.71 5.09,1.32 7.41,2.58 2.46,-0.35 4.25,2.07 6.4,-0.15 2.05,-0.87 3.81,1.48 3.14,3.62 2.97,-0.38 6.89,-1.86 7.42,2.51 1.3,0.31 3.13,3.55 3.29,0.55 1.79,-0.98 4.46,0.16 5.67,-2.24 -1.33,-3.25 -0.2,-6.45 -1.49,-9.65 1.17,-1.65 -1.28,-4.71 -0.7,-6.42 1.4,-0.12 2.34,-1.59 4.2,-1.58 1.27,-1.45 2.99,-2.22 4.25,-3.49 2.82,-0.46 -0.34,-5.16 1.28,-7.19 1.51,-3 -3.08,-4.88 -5.16,-3.65 -1.18,-1.3 -1.26,-3.58 -3.47,-2.38 -1.93,-1.04 -3.95,-1.45 -2.9,-4.14 -1.14,-2.8 -2.34,-5.73 -4.5,-8.23 0.48,-2.03 -3.61,-4.95 -2.1,-1.56 -0.34,1.45 -3.05,0.68 -1.66,2.91 -1.17,0.41 -2.72,0.17 -3.32,2.29 -3.21,0.75 -0.8,-5.19 -4.58,-3.84 -1.04,2.99 -3.56,1.08 -4.7,-0.26 -2.1,1.25 -4.73,3.83 -6.34,0.2 -2.17,-1.67 -4.84,-2.89 -5.84,-5.6 -0.73,-0.27 -1.51,-0.18 -2.26,-0.35 z", + "department-58" : "m 361.05,231.75 c -1.61,0.98 -3.32,2.58 -5.23,1.22 -1.54,0.66 -5.16,0.31 -5.72,1.84 1.58,2.33 4.2,5.39 3.03,8.27 -0.46,2.34 -4.01,5.74 -0.25,7.04 1.92,1.64 3.66,3.16 3.28,5.91 2.2,3.19 1.4,7.61 2.45,10.69 2.84,1.44 0.59,4.96 1.6,7.25 -1.99,2.66 1.02,5.99 -1.24,8.7 -1.75,2.29 0.81,5.12 3.16,5.53 1.64,1.06 3.28,4.95 5.39,2.27 1.52,-1.93 3.16,-1.38 4.16,0.57 1.96,0.7 3.24,-3.41 4.93,-1.11 0.68,1.01 0.94,1.95 1.13,3.28 1.84,0.37 2.58,-2.94 4.39,-2.04 -0.61,-1.82 -0.49,-2.4 1.36,-2.38 -0.2,-1.17 -0.22,-3.61 1.45,-1.97 2.29,2.03 7.01,-1.91 8.02,2.31 1.41,2.29 3.54,-1.84 5.75,-1.47 1.68,-2.02 4.85,-2.71 6.51,-3.23 -0.22,-2.14 -1.12,-3.85 1.59,-4.65 -0.2,-2.28 -4.24,-3.86 -1.97,-6.79 0.18,-2.41 -4.07,0.3 -1.77,-2.02 2.77,-1.18 2.72,-4.62 1.41,-6.48 -0.21,-2.71 3.29,-1.57 3.61,-3.64 2.41,0.12 4.36,-0.55 4.66,-3.1 0.33,-2.07 -2.28,-4.7 -4.14,-3.18 -2.16,-1.91 1.5,-6.7 -2.23,-6.47 -2.06,-0.11 -3.88,3.63 -5.15,0.03 -0.32,-1.35 -0.05,-4.35 -2.03,-2.79 -1.29,0.05 -2.91,2.04 -2.96,-0.58 1.08,-0.8 1.65,-3.07 -0.35,-2.77 -1.09,1.35 -0.9,4.62 -3.13,2.61 -0.88,-1.42 -3.65,0.48 -4.06,-2.21 -1.01,-1.24 -3.05,-2.54 -4.54,-2.45 -1.62,0.35 -0.42,-3.16 -2.49,-3.09 -1.47,-0.17 -1.9,-4.94 -2.3,-1.85 0.35,2 -0.34,3.67 -2.39,2.1 -2.63,-1.51 -3.86,4.14 -5.82,1.03 -1.87,-1.04 -4.17,1.13 -5,-2 -2.26,0.34 -4.45,-1.48 -4.25,-4 -0.17,-0.32 -0.55,-0.4 -0.88,-0.38 z", + "department-89" : "m 374.12,178.1 c -1.36,2.82 -5.36,0.91 -7.76,1.83 -2.91,0.12 -7.22,-0.23 -8.27,2.98 0.14,3.17 1.58,6.21 -2.22,8.02 -3.13,1.63 -1.03,2.94 1.17,4.04 2.28,2.02 1.91,5.48 4.92,6.98 0.09,2.23 1.57,5.13 -1.56,6.65 -2.34,1.36 -4.04,3.95 -2.14,6.31 -0.68,1.5 0.04,4.08 -2.76,4.29 -2.25,0.39 -7.34,0.64 -4.79,4.05 2.45,0.93 4.06,4.45 3.33,7.05 1.14,3.61 5.07,3.17 7.39,1.37 1.4,1.71 1.46,5.08 4.64,4.36 1.07,1.7 2.94,2.2 4.19,1.56 2.83,2.78 4.94,-2.42 8.04,-0.36 2.24,0.32 0.05,-5.91 2.11,-2.26 1.33,1.79 2.94,3.05 3.85,4.95 3.33,-1.09 4.42,4.4 7.1,3.73 1.63,0.4 3.4,2.47 3.61,-0.47 1.06,-2.78 3.75,-0.39 1.71,1.41 -0.27,3 5.9,-2.28 4.47,2.93 0.46,3.12 3.19,1.32 4.4,0.59 4.42,-0.6 -2.45,-5.06 1.49,-6.94 2.21,-1.57 -0.41,-5.47 2.78,-6.83 1.14,-2.73 3.9,-5.69 3.26,-8.58 1.88,-0.52 1.26,-1.92 0.64,-3.48 1.6,-1.09 4.66,-1.22 3.88,-4.34 0.07,-2.34 -0.26,-3.73 -2.7,-3.42 -3.53,-2.05 4.19,-4.69 -0.03,-5.12 -1.97,-0.1 -2.62,-5.1 -3.28,-1.27 -2.05,-2.67 -2.92,2.59 -5.45,0.23 -2.35,0.79 -5.27,0.01 -8.15,0.79 0.15,-1.59 0.88,-6.21 -1.65,-3.46 -2.36,-1.38 1.3,-2.55 -1.24,-3.58 -0.94,-2.75 -2.25,-5.79 -4.33,-7.09 0.87,-2.25 -1.27,-2.36 -1.7,-0.43 -3.07,1.65 -2.16,-4.29 -5.46,-2.45 0.07,-1.1 1.54,-2.74 1.12,-4.43 -0.2,-2.34 -3.48,-5.41 -5.2,-7.74 -2.07,-0.04 -3.97,0.46 -4.78,-1.75 -0.22,-0.05 -0.43,-0.1 -0.65,-0.14 z", + "department-77" : "m 360.11,130.7 c -0.75,1.23 -0.27,2.29 -2.33,1.67 -1.38,-0.38 -1.84,2.1 -2.56,0.07 -2.14,0.21 -4.49,1.91 -6.24,0.1 -2.04,-1.53 -3.2,3.4 -5.16,0.88 -1.56,1.65 -2.68,-3.86 -4.86,-1.22 -1.42,0.6 -1.4,2.29 -1.08,2.9 -0.79,0.91 -3.3,2.12 -0.93,2.41 0.92,1.64 0.15,3.36 1.66,4.95 -0.21,1.86 -2.5,3.75 -0.77,5.03 -0.42,1.69 1.07,3.83 0.45,5.54 1.88,0.5 -0.47,2.18 -0.41,3.35 -1.82,0.99 1.36,3.93 -1.65,3.64 -0.82,0.84 0.31,2.38 -1.22,3.04 1.7,1.22 -0.11,2.87 -0.29,4.11 -0.83,2.76 -0.35,5.7 -0.38,8.61 1.13,0.77 2.32,2.24 0.22,2.19 -1.67,0.77 -3.86,1.83 -3.71,4.1 -3.26,-0.23 0.46,3.05 -0.39,4.73 1.93,0.89 5.35,1.9 4.16,4.93 0.05,1.63 -0.21,2.35 -1.8,2.26 -2.59,2.58 2.06,2.09 3.18,0.95 1.95,0.94 4.16,-0.38 5.89,1.16 1.74,-0.08 3.98,-1.65 3.26,-2.69 2.16,-0.61 3.3,-0.11 2.62,2.03 1.99,0.05 3.64,-2.23 5.85,-2.23 1.28,-2.5 4.18,-3.1 5.17,-5.95 -1.75,-1.86 -0.91,-4.39 0.11,-6.51 2.23,0.08 3.58,-0.87 5.81,-1.29 2.4,1.59 4.47,-0.91 6.89,0.03 1.85,0.05 2.21,-2.32 4.09,-1.22 1.02,-1.56 -1.94,-1.95 -0.46,-3.63 -1.01,-1.71 -0.67,-2.54 1.28,-3.16 -0.64,-1.19 -1.85,-3.14 0.59,-2.27 3.2,-0.16 -0.39,-3.09 2.44,-3.84 0.11,-1.36 2.11,-1.25 2.34,-2.32 -1.35,-1.35 -2.61,-1.35 -4.33,-0.87 -0.83,-1.72 0,-2.93 0.73,-4.28 -0.27,-1.41 0.18,-2.58 -1.57,-2.81 -0.08,-1.26 -2.46,0.08 -1.43,-1.87 0.29,-0.92 3.06,-1.11 0.77,-1.96 -2,-1.6 4.65,-0.07 2.85,-3.04 -0.62,0.26 -2.18,0.96 -1.62,-0.5 -2.19,-0.35 -3.93,-1.72 -3.63,-4.09 -1.91,1.44 -2.54,-0.3 -3.11,-1.76 -2.53,1.6 -2.02,-2.84 -4.2,-3.33 -1.26,-1.06 -2.94,-1.79 -1.15,-3.4 -0.57,-2.97 -1.82,-4.38 -5.07,-4.44 z", + "department-10" : "m 415.76,157.34 c -2.6,0.51 -5.55,-0.05 -7.71,1.48 -2.64,-2.28 -2.21,2.93 -5.08,1.84 -1.93,0.67 -1.61,4.36 -4.3,3.88 -0.4,1.61 -1.36,1.64 -2.59,1.72 1.3,3.01 -1.42,4.79 -3.84,3.13 -2.09,-1.39 -6.82,1.14 -6.65,-2.55 -0.6,-0.93 -2.3,-0.55 -2.52,-2.29 -2.04,-2.28 -2.83,1.06 -4.5,1.77 -0.06,1.25 0.93,2.82 -1.41,3.08 -3.5,-1.29 1.33,2.83 -1.65,2.81 -1.9,0.54 0.78,2.64 -0.38,3.85 2.1,0.63 -0.62,5.56 2.52,3.51 3.16,-0.12 4.15,3.44 6.03,5.22 0.01,1.47 3.08,2.04 0.93,3.9 2.08,0.85 -3.12,4.07 0.15,3.27 2.29,-0.8 2.03,4.35 4.19,2.52 1.08,-0.14 0.3,-2.78 1.94,-1.13 0.93,0.76 -0.96,2.98 1.14,2.23 2.34,1.66 1.67,5.24 3.89,6.96 2.43,1.45 -2.11,1.84 0.59,3.02 0.73,-0.46 1.14,-2.22 1.92,-0.23 0.37,1.61 -1.44,4.62 1.62,3.35 1.95,0.01 2.99,-0.54 4.79,0.26 0.99,-3.03 2.57,1.82 4.01,-0.76 0.84,-1.92 1.99,-0.84 2.76,-0.15 -0.14,-1.03 0.29,-2.65 1.27,-1.4 -0.33,2.78 3.95,3.53 3.81,0.39 2.92,-0.59 5.93,0.14 8.85,-0.56 2.39,0.31 2.85,-0.77 1.49,-2.56 2.05,-2.2 4.43,-1.32 6.94,-0.84 2.63,-1.11 0.34,-3.51 -1.25,-4.11 2.37,-0.23 3.32,-3.91 6.03,-1.87 3.03,1.11 1.67,-2.97 2.47,-4.56 1.68,-1.76 -0.94,-2.47 -0.07,-3.99 1.1,-2.25 -0.53,-3.76 -1.25,-5.67 2.38,-2.25 -3.94,-1.43 -2.88,-4.17 -1.47,-0.37 -2.51,-0.25 -2.96,-1.8 0.24,-1.72 -4.18,-2.97 -1.75,-4.03 0.72,-2.19 1.43,-3.93 -1.16,-5.04 -2.33,-0.81 -3.68,3.05 -5.35,0.57 -2.15,0.43 -4.7,-0.92 -6.23,-2.52 -2.9,-1.25 -2.44,-3.78 -2.05,-6.39 -0.16,-1 -0.29,-2.51 -1.75,-2.14 z", + "department-51" : "m 405.08,111.51 c -1.06,0.78 -0.74,4.64 -2.69,2.03 -2.26,-0.62 -3.69,-3.04 -5.85,-0.46 -0.76,1.47 -0.53,3.07 -2.6,1.59 -2.67,0.5 -5.66,1.55 -7.69,3.27 1.02,2.06 1.46,4.73 0.89,6.32 2.55,-0.42 1.18,3.01 3.85,2.11 0.48,4.28 -5.3,-0.05 -6.19,3.06 -0.39,1.65 2.79,4.09 -0.6,4.59 -2.26,3.23 5.49,0.01 3.06,3.78 -2.35,0.83 -2.21,3.44 -4.02,4.55 -0.04,2.3 -3.69,1.38 -3.38,4.24 -1.75,1.12 0.58,4.63 -2.54,3.99 -2.46,-0.16 -1.14,0.3 -0.32,1.22 0.08,0.89 -3.17,1.69 -1.26,2.59 2.53,0.21 3.88,3.9 1.46,5.7 0.25,2.2 1.1,2.12 2.94,1.45 1.92,0.52 2.98,4.27 5.46,4.81 -0.12,4.68 6.56,0.97 8.91,3.79 3.18,-0.68 -0.17,-4.93 3.46,-4.46 0.45,-2.04 3.42,-1.33 3.65,-3.97 0.75,-2.28 4.33,-0.39 4.38,-3.49 1.36,-0.34 2.79,1.39 3.81,-0.56 2.71,0.28 5.46,-1.6 7.64,0.42 0.89,2.81 -1.6,6.2 2.08,7.6 1.6,3.05 5.89,1.61 7.51,3.56 1.84,-1.76 4.32,-2.12 5.98,-0.45 1.91,-1.07 7.38,1.87 5.1,-2.02 -2.42,-2.79 6.05,-2.46 2.44,-5.4 -1.35,-0.11 -4.14,-0.27 -1.58,-1.69 1.66,-0.63 3.72,1.24 5.25,-0.9 2.3,1.31 5.6,-0.99 4.11,-3.45 -1.93,-1.13 -3.33,-3.27 -5.05,-4.35 0.2,-1.89 3.07,-2.43 1.04,-4.46 -0.24,-2.76 1.96,-3.93 4.51,-4.61 2.25,-1.35 -0.39,-2.44 -0.39,-3.09 2.85,-0.57 0.54,-4.33 -1.51,-2.09 2.09,-1.98 1.44,-5.68 -0.12,-8.2 -0.96,-1.63 -1.81,-3.48 0.73,-4.04 -0.24,-1.82 -2.4,-2.81 -3.5,-3.66 -2.15,0.23 -1.49,3.78 -3.82,1.54 -2.45,0 -5.77,-1.84 -7.92,0.23 -2.68,0.36 -2.07,-5.98 -5.47,-3.2 -2.64,0.89 -6.12,0.77 -7.24,-2.32 -2.8,0.56 -4.24,-2.36 -6.09,-4.01 -2.61,-1.4 -5.28,-1.58 -8.44,-1.57 z", + "department-02" : "m 388.2,68.13 c -1.08,1.13 -2.82,3.24 -4.4,1.16 -2.84,-2.2 -4.67,3.68 -7.97,1.02 -2.67,-1.47 -4.82,2.26 -7.41,-0.08 -2.13,-0.29 -5.92,2.27 -2.52,2.96 -2.98,2.53 -3.74,6.36 -5.63,9.48 -1.75,0.96 2.24,2.4 -0.4,3.91 1.95,1.43 2.51,4.94 2.65,7.7 -1.5,0.24 -0.31,2.46 -1.01,3.2 2.8,2.14 0.67,5.53 0.21,7.42 1.3,1.39 -0.62,2.75 2.02,3.19 1.86,2.58 -4.01,-0.19 -2.57,2.99 0.21,2.78 -1.91,6.35 -4.84,5.03 -3.19,2.38 3.18,2.33 1.82,4.68 0.73,2 -0.93,3.6 1.68,4.15 1.16,1.34 2.5,-0.57 2.39,2.15 3.19,1.07 -5.03,3.79 0.04,3.92 2.54,0.03 3.91,4.01 2.15,5.73 2.04,1.28 3.84,3.72 5.3,5.32 1.97,-1.81 1.27,4.11 3.47,1.27 1.13,0.14 0.62,4.1 3.08,3.73 1.02,1.15 2.26,2.18 2.67,-0.16 1.3,-1.34 1.82,-3.4 3.99,-3.73 1.01,-2.49 2.46,-4.36 4.65,-6 0.1,-2.93 -6.07,0.28 -3.5,-3.33 4.06,-0.79 -1.61,-3.63 1.16,-5.63 1.74,-0.53 6.13,1.2 5.33,-1.72 -2.24,0.27 -1.72,-2.21 -3.92,-2.36 2.32,-2 -2.35,-5.73 0.53,-7.34 2.85,-0.42 5.37,-3.57 8.29,-1.65 -0.29,-1.73 3.19,-4.87 4.55,-2.85 1.43,0.76 4.63,3.46 4.24,0.06 0.75,-1.54 -0.52,-3.16 0.75,-4.21 -1.86,-2.09 0.18,-3.94 0.86,-5.41 -1.97,-0.87 0.95,-3.51 -1.67,-4.78 -1.57,-3.69 5.08,0.31 4.01,-3.96 1.21,-2.05 5.54,-3.68 5.14,-6.49 -2.5,-0.39 -0.05,-2.22 -0.82,-3.84 1.25,-2 2.5,-4.89 -0.05,-6.15 1.79,-3.26 -2.77,-4.61 -5.35,-3.57 -2.14,-1.09 -7,-0.34 -5.08,-4.21 -1.57,-0.94 -4.83,3.39 -5.36,0.08 -2.78,-0.3 -5.86,-1.9 -8.53,-1.67 z", + "department-59" : "m 335.57,0.12 c -3.45,1.43 -6.99,2.74 -10.76,2.39 -2.72,1.29 -8.66,1.44 -9.11,3.85 2.44,2.79 3.25,6.62 4.77,9.94 0.43,4.77 5.56,3.66 8.58,4.42 2.32,1.45 -4.63,1.65 -1.51,3.98 2.44,0.67 -1.2,3.42 2.07,2.61 2.93,3.85 6.72,1.92 9.95,3.5 2.19,-0.65 4.1,-0.87 5.68,0.87 0.41,-1.85 2.1,-1.38 0.62,-3.01 2.05,-2.57 7.25,2.09 2.69,2.82 -1.83,1.68 0.07,3.54 -0.61,5.52 2.34,0.14 3.9,-1 3.93,1.59 2.5,-1.01 7,0.2 5.64,3.54 1.27,0.39 3.92,-0.75 2.32,1.89 -3.74,0.21 -4.27,4.12 -0.66,5.49 2.67,1.86 -0.52,2.17 0.31,4.28 2.66,0.03 5.42,1.44 5.6,3.59 -3.49,-0.01 -0.66,2 -1.8,3.32 -2.94,0.76 0.82,2.08 -1.93,3.52 1.19,2.22 -2.19,4.81 1.75,6.08 2.76,1.37 5.33,-1.11 8.08,0.5 2.78,-2.8 7.12,1.76 9.94,-1.66 1.88,-2.21 4.77,3.11 6.2,-0.72 3.06,-1.45 6.64,0.94 9.78,1.44 0.46,3.12 6.54,-3.53 4.81,1.34 0,2.28 5.16,2.43 7.07,2.12 1.13,-1.37 -0.83,-4.12 2.33,-4.63 2.68,-0.88 0.57,-5.07 -0.84,-5.54 -3.3,1 -0.12,-4.14 0.06,-5.58 2.39,-1.25 2.41,-3.76 -0.41,-4.14 -0.6,4.11 -2.68,-3.09 -5.06,-3.38 -1.96,-3.39 -6.66,2.37 -9.45,-1.06 -3.02,-1.09 -5.18,0.58 -6.36,2.66 -3.42,-1.36 -0.95,-6.36 -2.22,-9.19 -1.09,-3.5 -4.72,-3.12 -7.3,-3.15 1.15,-5.24 -5.66,2.5 -7.97,-1.03 -3.9,-1.63 -1.34,-6.5 -3.82,-9.41 1.83,-3.67 -3.12,-4.71 -3.84,-8.29 -2.91,-1.52 -7.12,1 -10.06,2.09 -0.33,4.97 -4.26,1.63 -6.9,0.96 -1.64,-3.04 -3.74,-6.42 -7.35,-5.98 -1.29,-2.74 -2.17,-6.28 -0.14,-8.73 -2.25,-2.77 -2.84,-5.71 -4.09,-8.81 z m 28.08,54.5 0.01,0.01 -0.01,-0.01 z", + "department-62" : "m 313.33,5.46 c -4.94,0.63 -9.82,2.03 -14.3,4.19 -2.31,2.03 -4.44,4.39 -7.41,5.25 0.4,3 1.9,6.23 -0.01,9.07 -1.39,2.89 0.06,6.1 -0.08,9.15 0.12,1.92 1.85,2.89 0.02,4.03 0.23,3.04 -1.19,6.37 -0.33,9.17 2.74,1.63 4.65,4.95 7.93,2.3 3.81,-2.29 6.82,4.56 9.77,1.72 1.01,1.14 -1.99,2.68 0.88,2.9 2.1,1.36 5.3,1.26 4.69,4.15 0.88,1.54 2.94,0.71 3.92,1.37 1.81,-1.07 3.99,-1.33 5.74,-1.4 1.16,1.12 1.77,-0.42 1.57,-0.98 1.33,-0.36 1.77,3.47 2.74,0.75 1.51,-1.51 6.22,0.91 4.51,2.46 -2.54,0.07 -6.33,4.05 -3.27,5.63 1.73,2.15 1.55,-3.53 4.22,-2.43 1.09,-0.01 1.95,2.52 2.26,-0.06 2.83,-0.7 -0.14,2.46 2.59,2.02 1.28,-0.01 4.09,2 4.68,1.23 -1.22,-1.42 0.73,-3.47 2.15,-1.5 3.8,-0.04 -3.11,6.76 1.65,4.07 2.16,-2.39 3.64,-1.2 4.04,1.36 2.23,-1.54 4.16,-0.79 6.67,-1.69 1.7,0.68 3.25,0.84 2.92,-1.52 2.01,-0.93 -0.86,-3.26 1.69,-4.17 -3.08,-1.56 3.06,-1.88 0.19,-3.89 0.22,-1.46 4.13,-1.5 1.13,-2.69 -0.34,-2.78 -7.17,-0.62 -4.12,-4.27 0.8,-2.23 -5.36,-4.49 -3.06,-6.23 1.03,-0.79 5.01,-2.22 2.55,-3.36 -2.01,2.19 -1.83,-1.12 -1.83,-2.28 -1.69,-2.27 -3.83,-0.79 -5.87,-1.11 1.15,-3.86 -4.88,0.62 -3.97,-3.05 1.99,-1.08 -1.84,-2.64 0.61,-4.04 1.4,-1.06 3.51,-1.23 1.17,-2.9 -1.51,-1.43 -4.89,0 -2.23,1.47 -1.85,-0.59 -1.52,3.3 -3.1,0.89 -1.9,-1.78 -4.14,1.01 -6.2,-0.92 -1.66,1.28 -2.66,-1.12 -4.47,0.08 -1.69,-1.59 -4.29,-2.33 -5.63,-3.51 2,-1.35 -3.65,-3.85 0.56,-4.64 3.01,-2.03 -3.3,-1.35 -4.61,-1.78 -3.99,-1.02 -3.27,-5.59 -5.16,-8.44 -1.11,-2.34 -2,-6.31 -5.19,-6.38 z", + "department-08" : "m 440.07,60.88 c -1.81,2.16 -4.2,3.74 -5.88,5.87 0.42,3.23 -0.62,6.85 -4.6,6.61 -2.61,1.4 -5.4,3.78 -8.53,2.23 -2.57,-0.31 -6.87,-3.07 -8.21,0.49 -1.09,2.27 2.57,2.05 1.26,4.47 -0.9,1.91 -2.03,4.96 -1.4,6.42 2.68,1.57 -1.58,4.47 -2.94,5.51 -2.03,1.01 -1.06,5.37 -4.36,3.7 -3.54,0.85 2.51,3.79 -0.29,5.51 1.51,0.87 0.58,2.56 -0.65,3.44 -0.53,1.71 1.98,3.37 -0.03,4.16 0.01,4.05 5.16,0.95 6.98,2.81 3.3,0.55 4.18,4.27 7.37,4.91 1.8,0.07 3.13,4.15 6,2.59 2.07,-0.07 4.96,-2.29 5.47,0.74 0.38,2.71 2.61,2.41 4.09,0.8 2.57,1.18 5.4,0.24 7.56,1.64 0.31,-2.7 3.11,-2.45 4.13,-0.68 1.4,-1.13 3.89,-1.64 4.64,-3.09 -2.15,-1.79 -0.62,-5.71 2.04,-5.88 0.24,-1.22 -1.21,-1.95 0.54,-2.89 0.24,-2.32 -1.77,-3.52 -2.04,-5.72 1.86,-0.63 0.83,-2.98 2.1,-3.97 -0.49,-2.87 2.16,-0.91 2.97,0.03 2.69,-1.68 3.87,3.39 6.05,0.41 0.28,-2.43 4.57,-1.6 3.3,-4.01 -0.97,-0.75 -4.08,1.55 -3.04,-1.15 1.75,-1.77 -2.34,-4.79 -3.97,-3 -1.63,-0.09 -2.52,-1.03 -3.35,-1.82 -2.04,-0.2 -1.16,-4.65 -4.28,-3.56 -2.09,-0.97 -3.75,-3.12 -6.22,-1.46 -1.91,0.12 -3.56,-0.3 -2.44,-2.42 -2.07,-2.68 2.55,-6.08 -1.42,-8.03 -4.13,-0.79 1.05,-4.77 -0.06,-7.24 0.2,-2.35 3.01,-3.4 2.16,-5.95 -1.43,-0.71 -2.14,0.48 -2.93,-1.47 z", + "department-55" : "m 466.47,97.47 c -1.56,1.83 -3.96,2.91 -5.49,4.69 -1.73,-0.62 -3.36,-2.29 -5.13,-1.66 -3.57,-3.74 -2.07,3.57 -4.83,4.43 1.86,1.88 2.97,4.89 1.69,6.85 0.61,2.43 -4.88,3.04 -2.52,6.02 2.38,3.31 -6.19,2.92 -2.28,6.6 -4.21,1.78 0.99,5.9 0.55,8.83 -0.1,1.57 -1.24,3.24 0.94,2.92 1.75,1.64 -1.92,3.15 0.48,3.93 0.25,3.59 -6.19,2.07 -5.18,5.89 1.08,1.97 -0.23,3.47 -1.14,4.72 1.38,2.47 5.49,3.27 5.15,6.61 0.23,1.76 -1.52,5.98 0.78,6.29 1.9,-2.79 1.64,2.85 3.89,1.37 2.31,2.74 5.53,4.67 8.96,5.55 2.27,1.43 4.35,3.02 5.92,5.23 2.69,2.59 4.85,-1.27 7.77,-0.65 1.95,-0.75 1.99,-2.61 4.21,-1.43 3.14,0.06 4.5,-5.18 1.4,-6.29 -3.87,-2.46 6.35,-3.69 1.46,-4.42 -1.47,-2.21 0.74,-5.44 -1.65,-7.38 0.52,-3.01 3.49,-5.5 2.03,-8.71 1.74,-1.41 -2.37,-3.07 0.56,-4.22 1.59,-0.69 4.2,-1.75 1.55,-3.18 -1.32,-1.7 3.57,-5.15 -0.4,-5.57 1.51,-1.93 -0.24,-3.53 -1.91,-2.99 -2.09,-1.69 1.38,-6.16 -1.64,-5.8 -0.54,-2.63 -0.07,-4.79 1.7,-6.78 -2.19,-0.64 -1.63,-2.43 -1.84,-4.23 -1.39,-1.72 -2.89,-6.03 -5.8,-3.74 -2.4,-0.05 -3.98,1.51 -4.61,0.54 -0.96,-0.51 -0.02,-0.62 -1.25,-1.61 0.46,-1.47 -0.85,-2.06 -0.1,-2.7 -0.17,-2.17 1.28,-0.21 0.11,-1.81 -0.06,-2.69 -0.83,-5.88 -3.37,-7.28 z", + "department-54" : "m 483.26,101.56 c -1.75,2.39 -6.72,-0.76 -7.03,2.38 -2.62,-1.44 -7.36,1.12 -6.17,4.43 0.74,4.88 5.26,0.58 8.1,1.48 2.96,1.01 3.57,5.58 4.1,7.38 3.12,1.31 -1.93,3.72 -0.52,5.95 -0.87,2.35 2.62,1.44 1.12,3.56 0.09,2.56 -0.17,4.4 2.68,4.39 0.95,1.44 -0.85,2.5 1.32,3.1 0.08,2.43 -2.65,4.77 0.06,6.73 -1.86,1.53 -5.42,2.68 -2.94,4.96 -0.32,3.14 0.42,6.53 -2.29,8.78 0.3,2.26 1.85,3.57 0.92,5.93 -0.21,2.42 4.1,2.54 0.74,3.73 -2.75,0.52 -2.79,3.37 -0.09,3.76 0.33,2.01 0.1,5.32 3,2.95 5.39,-1.2 1.3,5.69 5.29,7.31 -0.38,3.55 5.14,2.54 6.11,0.87 0.8,0.45 2.56,2.67 3.02,-0.32 0.4,-3.41 3.98,0.7 5.58,-2.34 2.07,-1.7 2.85,1.78 5.26,0.83 2.41,0.96 5.78,-1.97 8.72,-1.33 -0.11,-2.51 2.69,-4.44 3.49,-1.11 1.87,2.12 5.7,3.02 8.46,2.03 1.11,-2.51 3,0.55 4.43,-2.06 1.4,-3.3 8.67,-2.58 5.72,-7.33 -1.28,-1.26 -2.12,-2.52 -2.84,-3.74 -2.12,0.62 -3.12,-2.23 -5.19,-0.6 -3.43,-1.47 -6.2,-3.18 -9.79,-3.87 -0.04,-2.22 -3.9,-2.63 -5.43,-4.68 -2.97,-0.67 -5.52,-2.5 -8.38,-2.2 -1.35,-2.37 -4.49,-3.45 -2.73,-6.5 1.93,-3.82 -4.9,-3.21 -7.26,-3.68 -1.33,-1.55 -2.62,-2.04 -4.55,-3.04 0.53,-3.54 -7.57,-4.55 -4.54,-8.33 3.1,1.07 1.22,-3.19 3.24,-3.88 -1.85,-1.34 -2.22,-2.92 0.05,-3.88 0.24,-1.64 -0.87,-4.88 -1.53,-5.53 -2.45,-0.97 -0.9,-3.36 -2.63,-4.79 -0.94,-2.62 2.2,-6.94 -2.47,-7.44 -1.91,-1.02 -2.61,-3.63 -5,-3.91 z", + "department-57" : "m 503.4,104.95 c -3.5,0.04 -5.26,4.42 -8.98,3.78 -1.89,-0.4 -2.66,-4.83 -4.84,-2.71 4.17,0.85 -0.69,5.81 2.03,8.08 0.95,1.12 1.47,1.12 0.16,1.85 2.72,1.47 3.97,5.18 2.78,8.12 -3.16,1.23 2.9,3.39 -0.76,4.28 0.68,2.17 0.05,3.22 -2.29,2.94 -2.22,3.61 4.41,3.78 4.47,6.79 0.32,2.5 4.34,1.92 4.61,4.09 2.63,0.22 7.9,-0.18 8.05,3.09 -1.51,2.09 -1.02,3.76 1.16,4.61 -0.07,2.41 2.71,3.1 4.16,2.64 2.31,1.86 5.93,1.31 7.61,4.01 3.25,1.89 6.08,3.97 9.68,5.11 1.62,1.34 4.4,1.49 5.37,1.07 1.15,1.63 4.32,0.61 3.99,3.06 2.04,2.55 6.14,5.26 8.81,1.93 1.69,-2.04 5.6,-6.38 2.03,-8.09 -0.63,-2.26 4.24,-5.88 0.71,-8.42 -2.28,-1.08 -5.5,-4.67 -6.48,-0.31 -1.32,2.17 -2.68,0.9 -2.94,-0.66 -3.5,-1.06 4.07,-2.79 -0.09,-3.01 -2.21,-1.11 -5.81,-2.3 -5.04,-4.57 1.13,0.06 2.3,-2.29 3.7,-2.54 0.74,-1.99 0.82,-7.28 3.45,-6.47 0.09,2.59 1.3,4.57 3.75,4.84 3.24,0.28 5.22,3.37 8.36,2.73 2.95,-1.6 5.64,0.34 8.22,0.72 1.73,-1.99 3.39,-5.75 3.26,-7.88 -3.15,-1.08 -5.79,-2.77 -6.37,-6.36 -2.47,-1.1 -4.98,-1.26 -6.78,1.45 -3.22,2.32 -7.72,1.44 -11.17,-0.38 -0.64,3.79 -3.96,0.62 -3.06,-1.79 -1.61,-2.56 -5.77,-3.52 -8.36,-2.33 2.56,4.39 -5.29,4.06 -5.55,1.2 0.78,-2.3 -2.24,-2.11 -2.29,-4.46 -1.24,-2.84 -6.04,-4.38 -3.87,-7.88 -2.52,-2.26 -3.82,-6.64 -8.27,-6.11 -4.17,1.53 -5.59,-3.04 -9.23,-2.45 z", + "department-67" : "m 544.44,133.33 c -2.55,1.2 -1.86,5.34 -3.54,7.57 -2.79,-0.45 -3.98,5.32 -0.38,4.93 0.87,1.03 5.75,1.83 2.14,2.53 -1.78,1.5 1.91,2.4 0.8,3.44 3.07,0.38 2.8,-5.61 5.59,-2.68 1.27,0.5 2.75,1.06 3.36,2.31 3.21,1.88 -0.45,5.47 -1.04,7.67 0.4,1.75 3.37,1.12 1.47,2.94 -0.9,2.92 -2.34,6.34 -5.54,7.14 -1.52,-0.27 -6.22,0.31 -2.38,1.08 1.92,0.81 -2.32,1.02 0.26,2.27 -0.26,2.11 -1.22,5.21 -0.98,7.34 -1.59,2.69 3.49,1.95 4.06,2.53 1.12,2.38 5.28,1.06 5.74,4.01 2.04,-0.84 -0.91,2.57 1.9,1.72 3.01,0.58 6.32,2.58 6.2,5.56 1.67,1.12 3.39,4.4 5.2,1.29 0.87,-3.2 3.75,-5.3 4.22,-8.66 0.15,-2.7 3.74,-3.64 2.22,-6.76 -0.27,-3.01 1.17,-6.05 2.5,-8.7 1.39,-2.29 -0.7,-5.94 1.56,-8.31 1.96,-2.54 5.71,-3.61 6.25,-7.2 0.97,-1.38 2.5,-0.59 3.09,-2.39 3.71,-1.2 3.61,-5.01 5.11,-7.95 0.24,-2.03 5.28,-4.42 1.59,-4.91 -3.51,-0.14 -6.34,-2.15 -9.28,-3.81 -2.69,-1.53 -5.76,0.29 -8.43,-1.4 -2.54,1.19 -6.23,-0.86 -8.22,1.79 -0.69,2.41 -2.45,7.76 -5.69,4.83 -2.43,-2.51 -5.76,1.35 -8.43,-0.25 -1.12,-1.59 -3.01,-2.5 -4.57,-2.09 -2.06,-1.13 -5.18,-2.13 -4.56,-5.04 0.33,-0.23 0.21,-0.84 -0.21,-0.81 z", + "department-88" : "m 543.7,170.72 c -3.31,1.38 -6.33,2.9 -8.64,5.73 -1.29,0.67 -1.97,-1.71 -3,0.67 -1.48,2.53 -4.46,-1.14 -6.53,-0.37 -3.07,0.39 -1.42,-5.29 -4.45,-2.86 -1.72,1.06 0.93,4.33 -2.07,2.2 -1.78,0.74 -4.05,0.76 -5.72,1.72 -1.57,1.83 -1.69,-1.56 -3.59,-0.23 -1.77,0.14 -2.17,-3.2 -3.48,-0.63 -1.05,2.66 -5.79,-1 -5.2,1.97 -0.89,2.75 -2.59,1.71 -3.28,0.37 -0.1,2.4 -3.59,0.58 -5.16,1.87 -1.7,-0.72 0.13,-3.65 -2.1,-3.15 -3.28,-1.76 1.05,-7.74 -3.76,-6.9 -1.91,1.57 -3.93,0.03 -4.94,2.56 -1.62,0.54 -3.6,-1.45 -4.31,0.83 -0.98,2.28 -4.98,-0.54 -5.76,2.63 -1.49,-1.12 -4.76,0.24 -4.44,1.84 2.72,-0.76 -1.5,4.16 1.48,2.83 2.58,-2.8 4.27,0.92 5.47,2.86 0.99,2.29 2.44,-0.84 3.66,1.62 0.19,1.46 -0.14,2.91 2.21,2.73 1.05,0.81 2.84,3.4 0.16,2.99 -1.16,2.1 -0.8,4.9 -2.74,6.18 0.01,1.72 3.18,0.08 3.76,2.45 2.71,0.96 3.73,3.61 3.02,6.15 1.1,2.31 3.31,-2.88 3.5,0.86 1.43,3.89 3.56,-4.88 4.18,-0.76 -1.87,1.59 0.22,2.12 0.99,0.26 2.44,-0.34 2.63,-4.83 6.01,-3.79 2.78,-2.08 1.94,3.16 3.04,3.81 1.67,1.1 3.1,2.11 4.88,0.16 2.8,0.02 6.14,-1.3 7.82,1.99 0.57,3.89 4.42,1.42 5.62,-0.82 2.89,-1.35 3.54,3.7 6.5,4.05 2.19,0.9 3.46,2.55 5.11,3.85 2.21,-0.74 5.19,-1.96 3.36,-4.73 1.56,-1.66 0.35,-4.44 1.89,-6.56 0.98,-1.7 3.7,-2.62 3.88,-5.25 1.52,-1.58 3,-3.43 1.6,-5.14 1.49,-2.96 3.07,-5.84 4.54,-8.75 0.95,-1.35 2.26,-2.99 0.28,-4.02 -1.87,1.29 -5.67,-0.97 -2.92,-2.78 -2.18,-1.78 1.85,-5.54 -0.21,-7.07 -0.57,-0.2 -0.01,-1.38 -0.66,-1.38 z", + "department-52" : "m 446.82,158.96 c -1.69,0.91 -3.13,-0.45 -4.82,1.2 -1.12,-0.83 -4.57,-0.69 -3.54,0.9 2.8,-1.2 4.68,3.32 1.31,3.37 -2.26,0.28 -2.04,1.83 -1.08,2.97 1.74,4.14 -5.82,-1.2 -5.38,2.99 -0.5,1.16 -1.78,3.02 -1.22,3.88 2.37,0.94 2.16,4.62 5.26,4.46 -0.97,2.99 5.41,1.68 2.86,4.7 2.62,1.68 0.37,4.97 1.38,6.77 1.02,1.49 -1.35,3.52 -0.54,5.29 0.17,4.44 -5.3,-1.1 -6.39,2.93 -2.48,1.02 2.31,2.62 0.41,4.4 1.49,1.78 5.61,0.36 3.83,3.87 2.37,-0.59 4.42,1.86 1.79,3.34 0.65,2.75 2.75,-2.78 3.64,0.5 0.65,2.55 3.6,4.14 3.33,6.7 -1.31,0.89 -4.49,2.9 -1.32,2.84 1.47,1.51 -1.34,5.58 1.92,4.46 1.63,-2.16 2.42,0.63 2.94,1.7 1.79,1.42 3.81,1.4 4.82,-0.8 0.79,0.32 -0.13,2.53 1.75,2.49 0.96,1.39 3.18,1.14 1.74,3.15 0.89,2.65 3.78,-3.01 5.24,-0.13 1.75,-1.89 1.15,-6.06 4.57,-5.11 1.28,-1.4 3.49,1.3 4.33,-1.4 1.59,-1.92 1.63,2.72 3.95,1.22 2.18,-0.12 2.71,-1.17 2.09,-3.01 0.93,-1.34 1.22,-2.86 -0.38,-3.56 -0.59,-2.58 1.37,-2.98 3.06,-3.3 -0.71,-3.1 2.46,-1.42 3.57,-1.95 -0.16,-2.01 1.36,-3.53 2.99,-3.36 -0.29,-2.42 -2.17,-4.47 -4.19,-2.78 -1.26,-1.95 0.41,-5.52 -3.04,-6.35 -1,-1.34 -2.58,-2.41 -4.02,-2.13 -1.13,-1.43 1.6,-1.92 0.97,-3.42 1.1,-1.79 0.88,-4.33 2.89,-4.52 -0.46,-2.76 -4.86,-1.71 -3.68,-4.79 -1.34,-2.4 -3.06,0.93 -3.95,-2 -1.16,-2.97 -3.69,-4.38 -6.2,-2.11 -0.59,-1.91 1.12,-3.24 -1.32,-3.92 1.85,-0.41 3.47,-2.52 0.93,-3.26 -0.38,-1.87 -1.16,-2.02 -2.78,-2.58 -1.73,-3.16 -6.41,-1.82 -8.19,-4.99 -2.15,-0.46 -2.78,-2.81 -5.04,-3 -0.12,-2.21 -1.01,-1.61 -2.26,-0.66 -2.79,-0.35 1.41,-5.66 -2.22,-4.93 z", + "department-70" : "m 499.88,202.89 c -2.63,0.3 -4.89,2.11 -5.97,4.12 -0.94,0.91 -3.97,2.32 -2.12,-0.03 0.13,-1.92 -1.88,-0.34 -1.76,0.64 -1.02,1.34 -0.98,3.88 -3.06,3.55 -0.55,1.66 -1.23,4.46 -3.43,2.67 -1.42,0.7 -1.13,3.58 -3.32,2.54 -2.26,2.15 1.83,3.96 -0.2,6.21 1.24,3.12 -4.32,4.77 -5.32,1.82 -0.58,-0.92 -2.73,2.87 -4.37,1.01 -1.22,1.14 -4.49,-0.07 -3.8,2.59 -2.11,1.09 0.1,3.94 1.06,1.41 2.21,-1.57 4.14,3.91 2.96,5.69 -0.66,2.07 -2.95,2.72 -4.23,3.24 1.21,1.06 -1.76,2.05 0.86,1.83 2.25,0.29 -0.16,6.1 3.34,4.24 1.79,2.16 -1.88,5.33 1.36,5.71 1.44,2.16 3.91,4.38 6.57,2.71 2.27,-0.86 4.59,0.16 6.71,-1.75 2.79,-1.14 5.72,-4.18 8.47,-2.76 2.5,-0.09 4.56,-1.97 5.85,-3.76 1.83,0.46 2.61,-0.36 2.86,-1.77 2.63,-0.46 5.27,-1.6 5.54,-4.7 2.29,-1.29 5.83,-3.32 7.88,-0.71 1.23,-0.95 5.65,1.5 4.64,-1.81 -0.18,-2.44 4.57,1.54 3.74,-2.01 -0.12,-2.68 3.06,0.48 4.42,0.6 2.85,1.79 2.94,-3.34 1.04,-4.6 1.68,-2.26 -0.76,-5 -0.83,-7.47 -0.79,-2.86 4.43,-4.21 1.79,-6.71 -2.08,-2.66 -6.24,-2.87 -7.71,-6.14 -2.5,-2.92 -3.93,3.02 -6.8,2.39 -1.62,-1.8 -2.57,-4.88 -5.66,-4.53 -2.96,-0.21 -6.08,3.12 -8.15,0.41 -2.4,-0.51 0.23,-4.03 -2.37,-4.63 z", + "department-21" : "m 430.26,202.39 c -2.98,-0.36 -2.28,3.5 -2.89,4.09 -3.52,0.85 -7.72,-0.28 -10.91,1.13 0.12,1.91 0.16,3.7 -1.78,4.39 -1.43,2.57 2.23,2.59 2.78,2.96 0.78,2.82 0.56,7.26 -3.23,7.04 -0.11,2.16 1.99,3.62 -1,3.9 0.72,2.94 -2.41,6.52 -3.86,9.44 -2.44,2.06 0.03,6.34 -3.4,7.86 -0.01,1.52 1.54,3.57 2.08,4.44 2.08,-1.74 -0.71,3.97 0.05,5.35 0.76,2.06 4.84,0.48 4.74,3.88 -1.32,3.42 1.69,6.38 5.01,6.9 1.3,1.42 0.65,2.78 2.51,1.23 2.03,0.22 0.19,2.75 2.63,2.77 2.7,1.39 5.44,1.37 6.15,4.62 1.34,1.99 4.7,1.98 4.57,4.24 2.88,-1.34 6.42,-1.22 9.16,-3.33 2.31,-0.8 6.07,-0.86 8.14,-1.17 2.91,2.58 6.21,-1.12 9.25,-0.89 2.24,-0.61 1.63,-2.43 0.75,-3.34 1.62,-2.89 6.07,-2.65 6.78,-6.47 1.41,-2.73 2.01,-5.54 2.73,-8.48 0.14,-1.92 1.96,-2.74 -0.25,-3.51 0.43,-2.24 1.54,-5.31 -1.69,-5.06 -0.44,-1.89 -1.3,-4.9 -2.86,-4.55 0.22,-3.37 5.14,-1.91 4.96,-5.91 0.76,-2.96 -2.67,-7.08 -4.51,-2.82 -2.22,-0.25 -3.54,-1.43 -5.3,0.74 -2.39,1.02 -0.78,-3.81 -3.53,-3.94 -1.77,-1.18 -0.62,-3.19 -2.39,-0.9 -3.64,2.12 -4.58,-4.93 -7.28,-2.21 -2.89,-0.45 0.78,-4.91 -3.01,-5.07 0.9,-1.64 5.08,-3.23 1.85,-5.04 -1.35,-1.96 -2.46,-6.59 -4.91,-3.77 -2.57,-0.44 2.15,-3.15 -0.94,-3.86 -1.96,-0.39 -2.06,-0.68 -1.78,-2.38 -2.58,-1.59 -5.78,-1.16 -8.59,-2.28 l 0,0 z", + "department-25" : "m 524.75,232.72 c 0.6,3.47 -5.06,1.11 -4.41,4.65 -1.59,0.18 -4.21,0.28 -5.1,0.07 -2.83,-2.93 -7.31,0.27 -8.34,3.45 -1.29,2.51 -4.23,1.18 -5.23,3.59 -1.44,0.48 -2.41,0.42 -2.71,1.78 -2.17,0.44 -3.6,3.16 -6.39,2.02 -3.22,-0.12 -5.72,2.6 -8.74,3.57 -3.03,0.32 -3.9,3.34 -1.23,5.03 3.1,1.51 4.18,4.87 1.57,7.47 0.1,1.6 -1.31,3.03 -1.29,4.53 1.26,1.41 2.75,-3.16 3.11,0.11 0.9,2.49 4.55,-0.29 4.63,2.13 3.8,0.81 1.81,4.9 4.19,7.22 0.91,2.91 5.17,1.46 6.56,4.25 3.53,2.93 0.14,6.33 -2.84,7.54 -1.4,1.89 0.42,3.62 -1.39,5.19 -0.75,2.81 3.69,5.73 3.76,1.72 2.39,-2.03 4.37,-4.58 7.12,-6.18 2.26,-1.76 5.45,-2.91 6.57,-5.72 -0.74,-2.93 1.48,-6 -0.08,-9.15 0.11,-4.19 6.86,-3.29 9.42,-5.9 2.72,-1.98 2.28,-6.41 5.92,-7.6 2.76,-2.22 4.53,-5.44 7.39,-7.56 -0.61,-3.67 3.46,-4.22 4.78,-6.73 -0.15,-3.82 -4.97,0.07 -7.07,-1.46 0.7,-1.9 3.21,-4.13 1.45,-6.71 -0.76,-1.48 -0.67,-2.19 0.61,-2.92 -0.66,-3.47 -5.22,-3.74 -7.78,-2.34 -1.29,-1.12 -3.19,-0.98 -4.5,-2.06 z", + "department-2B" : "m 591.47,517.82 c -3.8,0.59 0.96,5.58 -2.34,7.11 0.41,2.37 -1.56,4.36 0.27,6.51 0.91,2.65 0.16,5.25 -1.21,7.52 -1.7,1.4 -2.28,-3.59 -4.88,-2.82 -2.72,-0.68 -5.78,0.73 -6.51,3.55 -0.96,3.57 -5.53,1.85 -7.86,3.52 -1.89,1.06 -3.87,1.71 -4.61,3.96 -1.27,0.02 -3.62,-0.97 -3.17,1.52 -0.83,1.46 -4.01,3 -1.97,4.89 -0.74,1.76 -0.34,3.49 -2.71,3.49 -0.21,1.44 -2.22,2.88 0.58,2.71 2.53,1.11 5.12,2.12 7.69,3.24 1.52,0.72 3.8,-1.59 3.24,1.35 1.14,3.16 4.05,4.22 6.73,6.16 3.36,0.28 1.41,5.5 4.55,6.47 1.71,1.96 0.79,6.36 4.83,5.7 0.18,2.3 0.59,4.8 0.39,7.09 3.14,0.81 -1.89,5.25 2.18,4.96 1.78,0.52 2.82,0.98 4.16,-0.94 3.62,-1.36 0.49,-5.59 2.73,-7.46 1.3,-1.69 2.64,-3.75 1.77,-5.45 1.89,-0.05 4.02,-2.43 3.98,-4.66 -3.67,0.56 1.98,-2.55 0.4,-4.61 0.47,-4.5 -0.6,-8.88 -1.01,-13.3 -0.14,-3.75 0.34,-7.67 -0.54,-11.31 -2.55,0.11 -3.67,-4.24 -3.35,-6.45 -0.43,-3.66 1.56,-7.1 1.67,-10.65 -0.63,-3.67 -1.07,-7.33 -1.55,-11 -0.76,-1.12 -2.26,-1.12 -3.47,-1.1 z", + "department-2A" : "m 553.92,559.49 c -0.76,0.55 -0.1,3.85 1.13,1.96 1.53,-0.6 3.16,1.13 1.04,1.7 0.18,1.06 4.56,1.95 3.28,3.75 -1.7,0.83 -4.95,1.13 -5.71,2.43 1.47,0.55 1.4,3.03 1,3.92 1.78,0.17 -1.16,0.99 0.63,1.63 0.63,1.3 2.89,1.78 3.93,2.6 2.01,-0.69 1.72,2.93 3.31,3.71 -1.37,1.54 -4.97,1.78 -3.83,4.58 -1,1.17 -4.84,0.3 -2.28,2.46 0.58,1.07 -0.7,3.38 1.57,2.3 2.41,0.81 4.08,-2.02 6.12,-1.18 1.97,1.46 -0.22,3.37 0.14,5 -2.75,0 1.8,1.85 -1.02,2.54 -3.01,0.03 -0.83,3.83 -3.9,3.99 -1.68,0.23 1.57,0.7 1.54,1.65 1.76,-0.59 3.68,-1.62 3.39,1.11 1.89,0.2 4.59,0.62 6.1,1.72 -1.54,1.28 -2.78,3.54 -5.39,3.37 -1.08,2.57 -0.44,5.65 2.26,6.65 0.47,1.48 3.07,1.49 4.07,2.79 2.06,-0.18 4.37,2.72 5.98,1.13 0.61,-0.03 -0.33,2.68 1.6,1.9 1.78,0.68 -1.94,3.73 1.39,3.43 1.92,2.48 5.07,2.16 5.35,-1.31 -0.28,-1.01 -2.21,1.4 -1.26,-0.4 -1.13,-2.4 4.15,-2.95 2.21,-5.91 -0.37,-2.45 4.29,-3.07 3.59,-5.68 -1.11,-1.47 -3.9,2.07 -2.85,-0.95 0.15,-2.4 3.01,0.56 2.82,-1.99 2.59,-0.18 0.07,-3.36 2.35,-4.13 0.15,-3.28 0.23,-6.85 -0.14,-10.22 -1.57,-1.53 -3.07,3.01 -4.83,0.98 -2.75,0.63 -3.37,-1.87 -1.99,-3.78 0.22,-1.35 -2.56,-0.55 -1.08,-2.17 -0.85,-2.32 1.32,-7.41 -2.67,-6.39 -2.45,-0.98 -0.65,-4.44 -2.73,-5.65 -2.85,-1.24 -1.36,-6.19 -4.82,-6.53 -1.64,-1.96 -4.77,-2 -5.5,-4.65 -1.21,-1.02 -0.51,-3.66 -2.85,-2.55 -2.75,-0.46 -5.3,-1.82 -7.74,-2.91 -1.28,-0.57 -2.84,-0.72 -4.21,-0.9 z", + "department-66" : "m 350.33,540.74 c -2.96,0.38 -4.31,2.8 -5.6,5.05 -3.53,0.71 -7.2,-0.41 -10.77,-0.57 -2.35,1.71 -6.82,-1.75 -7.77,1.56 0.2,2.13 1.85,4.41 0.81,6.44 -1.56,1.89 -4.34,1.3 -5.68,3.47 -1.35,1.08 -2.18,1.99 -3.65,0.52 -2.39,0.04 -5.76,-0.02 -7.25,1.69 -0.99,2.71 -4.23,1.36 -5.45,3.77 -3.15,-0.36 -6.54,2.28 -5.14,5.7 2.43,0.62 5.15,0.58 6.86,2.76 2.19,0.36 3.92,1.1 3.79,3.75 0.25,2.56 3.21,3.71 5.32,2.52 1.96,-1.04 2.2,-4.45 4.97,-3.96 2.58,-0.15 5.03,-1.38 7.33,0.7 1.62,1.14 4.07,1.03 4.94,3.03 1.26,1.86 4.32,3.14 5.35,0.56 1.73,0.75 6.82,2.34 4.14,-1.14 0.71,-2.52 4.05,-2.95 6.3,-2.62 1.56,-1.63 3.48,-3.18 5.81,-2.8 0.99,-2.12 3.1,-0.12 4.88,-0.88 1.63,1.07 2.93,3.67 5.54,2.51 3.2,-0.39 -1.16,-3.71 -1.44,-5.38 -2.92,-1.29 -2.81,-4.63 -3.06,-7.37 0.78,-2.2 -2.64,-2.22 -1.43,-4.12 2.29,1.97 1.16,-2.93 1.55,-4.24 0.36,-2.22 -0.89,-3.89 -3.17,-3.82 -1.26,-1.48 0.41,-4.01 -2.35,-4.33 -1.89,-0.44 -3.32,-1.87 -4.85,-2.81 z", + "department-01" : "m 445.43,302.59 c -1.44,3.02 -1.75,6.16 -3.18,9.18 -0.78,3.16 -1.85,6.34 -2.91,9.5 -0.74,1.88 -1.31,3.79 -0.09,5.37 -0.73,2.05 -2.97,3.67 -1.95,5.9 -1.67,2.26 0.87,5.73 -1.18,7.83 1.88,0.01 3.46,1.61 3.99,2.62 2.16,-1.53 3.89,1.88 4.07,3.41 0.92,1.26 -0.03,3.77 2.46,2.77 2.89,0.46 5.98,-0.89 8.76,0.39 1.35,2.24 3.89,2.93 5.42,0.31 1.18,-1.7 1.66,-5.65 4.09,-5.27 2.02,1.24 3.75,2.88 3.08,4.98 1.95,2.32 3.67,4.97 5.93,6.73 1.33,1.23 0.17,0.8 -0.53,0.61 0.61,1.8 3.11,2.49 3.34,4.83 0.97,0.84 1.38,-1.89 2.87,-1.59 -0.3,-1.63 1.67,-2.68 0.77,-4.34 3.81,0.96 3.71,-3.34 3.75,-5.95 0.89,-3.44 1.98,-6.82 2.27,-10.31 -1.07,-2.3 -1.36,-4.85 -1.09,-7.47 0.3,-1.5 0.9,-3.58 2.27,-1.4 2.48,1.01 0.53,-3.51 3.59,-2.7 2.71,-0.13 3.55,-3.26 1.37,-4.78 1.32,-2.8 5.95,-1.73 6.82,-4.09 -1.66,-3.05 4.61,-7.07 -0.2,-9.19 -2.62,-2.47 -4.13,2.14 -6.1,3.38 -0.9,2.11 -2.5,3.05 -3.65,4.53 -1.99,2.56 -5.47,0.79 -8.11,1.25 0.84,-3.04 -2.73,-3.43 -3.76,-4.72 -2.02,1.65 -3.16,4.49 -6.19,4.68 -2.73,0.46 -1.81,-2.02 -1.56,-3.51 -1.42,0.56 -1.69,-0.36 -2.26,-1.49 -0.06,1.35 -0.96,2.99 -0.83,0.6 -1.4,-1.01 -1.59,-2.59 -1.58,-3.72 -1.32,-0.93 -3.93,-1.28 -2.29,-3.07 -1.76,-1.43 -5.48,-1.31 -5.42,-4.72 -2.13,-0.62 -4.08,0.9 -6.23,1.42 -1.93,-0.36 -3.28,-2.81 -5.2,-1.46 0.07,-0.1 -0.3,-0.68 -0.54,-0.51 z", + "department-39" : "m 472.04,250.64 c -2.16,1.79 -1.36,5.28 -2.94,7.45 0.09,2.73 -2.31,4.73 -3.53,7.05 -3.03,-0.47 -5.35,3.74 -3.19,4.71 -2.06,0.47 -3.73,5.36 -0.52,4.7 1.33,0.76 0.69,4.17 3.48,3.21 1.68,-0.66 1.23,2.18 3.27,2.09 2.46,1.35 -0.2,2.67 -1.91,2.03 -2.06,-0.51 -4.46,1.94 -1.6,2.77 2.43,1.33 -1.33,3.03 1.08,4.08 0.89,2.1 1.19,3.82 2.13,6.05 -2.12,0.95 -0.43,3.73 -3.06,3.72 -1.86,2.41 0.74,4.14 2.3,5.69 -0.13,2.93 -6.18,0.76 -4.86,4.67 0.41,1.69 3.59,1.72 2.72,3.84 0.3,1.7 2.14,1.5 2.39,1.42 0.16,2.17 2.98,0.53 1.91,2.98 -0.9,3.13 3.87,1.82 4.85,0.12 1.46,-0.55 2.58,-4.59 4.24,-1.99 2.29,0.06 2.46,3.2 3.09,3.77 2.93,-0.04 7.08,0.91 8.5,-2.49 2.02,-1.97 3.8,-4.92 6.21,-7.02 2.27,-1.54 0.39,-4.74 2.54,-6.4 1.4,-1.49 3.11,-3.84 -0.06,-3.89 -2.06,-1.17 -3.31,-3.74 -0.87,-5.29 0.4,-1.53 -1.44,-3.09 0.76,-4.19 2.73,-1.36 6.13,-4.43 2.26,-6.76 -1.6,-2.02 -3.91,-2.65 -5.92,-3.04 -1.27,-2 -1.73,-3.98 -2.6,-5.89 -0.82,-0.25 1.22,-2.33 -1.1,-2.27 -1.84,-1.29 -4.2,-1.14 -5.91,-2.76 -0.62,-1.82 -0.09,-1.2 -1.26,-0.03 -2.05,2.08 -3.47,-2.98 -0.74,-2.02 0.76,-1.1 -0.4,-3.36 1.4,-4.52 2.37,-3.1 -2.64,-4.46 -3.59,-6.62 -0.37,-1.97 -2.06,-4.51 -3.97,-2.34 -2.56,0.88 -4.13,-1.12 -5.49,-2.82 z", + "department-68" : "m 549.43,183.82 c -2.25,1 -2.94,3.73 -3.79,5.81 -0.9,2.15 -3.75,4.26 -2.11,6.74 -0.93,2.22 -2.92,4.25 -3.93,6.64 -2.43,1.18 -3.51,3.7 -3.19,6.38 0.13,1.69 -1.55,2.36 -0.44,3.95 0.77,2.64 -4.62,1.97 -2.6,4.52 2.13,1.91 5.37,1.9 7.52,3.96 0.67,1.81 1.6,4.32 0.06,6.09 -1.78,1.43 -0.08,4 1.85,2.88 1.83,0.98 2.47,3.66 3.32,5.16 -0.72,2.04 1.34,2.1 2.39,2.44 -0.32,1.38 -1.23,4 1.33,3.32 1.03,1.33 2.07,1.29 3.35,0.31 2.56,-0.08 5.85,0.35 7.17,-2.31 -0.73,-1.24 -0.96,-2.18 0.78,-1.43 2.66,0.8 0.35,-2.42 2.52,-2.38 0.82,-0.85 -1.99,-1.47 0.03,-2.05 1.88,-1.02 4.21,-2.78 2.05,-4.99 -1.7,-1.63 -3.7,-3.88 -1.43,-6.04 0.91,-2.16 -1.41,-4.57 0.56,-6.71 0.67,-2 0.44,-4 1.78,-5.83 -0.03,-2.09 3.45,-4.94 0.43,-6.95 -3.06,-1.46 0.88,-6.62 -2.19,-7 -1.65,-0.56 -1.53,-2.31 -3.25,-2.51 -0.17,-1.94 -0.33,-3.93 -2.69,-4.35 -2.09,-1.1 -4.78,-1.23 -5.71,-3.58 0.07,-2.15 -2.48,-1.52 -3.79,-2.06 z", + "department-90" : "m 532.37,216.22 c -0.55,0.23 -0.49,0.97 -0.95,1.33 -0.62,0.8 -1.51,1.36 -1.95,2.3 -0.77,0.99 -0.8,2.48 -0.08,3.5 -0.03,0.67 0.48,1.24 0.41,1.93 -0.01,0.83 -0.07,1.76 0.62,2.36 0.29,0.29 0.48,0.66 0.1,0.97 -0.14,0.38 -0.57,0.43 -0.76,0.72 -0.05,0.5 0.53,0.78 0.56,1.29 0.18,0.47 0.52,0.85 0.75,1.28 0.26,0.15 0.87,0.53 0.4,0.81 -0.7,0.47 -0.05,1.72 0.76,1.5 0.78,0.02 1.57,-0.19 2.27,-0.46 0.8,0.18 1.42,0.82 1.45,1.64 0.04,0.86 1.41,0.54 1.43,1.42 0.01,0.47 0.26,1.11 -0.01,1.5 -0.5,0.35 -0.45,-0.64 -0.86,-0.74 -0.5,-0.2 -0.94,0.42 -0.64,0.85 0.2,0.34 -0.18,0.93 0.34,1.04 0.43,0.61 0.84,1.44 0.71,2.19 -0.36,0.5 0.42,0.64 0.75,0.45 0.83,-0.18 1.47,-0.8 2.26,-1.07 0.62,-0.6 -0.22,-1.42 -0.38,-2.05 -0.12,-0.36 -0.45,-1.06 0.17,-1.13 0.42,-0.08 0.81,-0.3 1.15,-0.48 0.96,0.2 1.82,0.91 2.86,0.71 1.1,-0.11 2.47,-0.62 2.45,-1.94 0.16,-1 -0.69,-1.62 -1.41,-2.13 -0.16,-0.46 -0.02,-1.09 -0.52,-1.4 -0.45,-0.55 -0.43,-1.71 -1.38,-1.73 -0.72,-0.12 -1.46,0.05 -1.95,0.59 -0.4,0.24 -0.3,-0.53 -0.6,-0.62 -0.31,-0.79 -0.34,-1.73 0.1,-2.47 0.16,-0.36 0.01,-1.1 0.63,-0.98 0.41,0.01 0.38,-0.37 0.4,-0.64 0.61,-1 -0.15,-2.14 -0.3,-3.13 0.23,-0.47 0.38,-1.05 -0.1,-1.44 -0.8,-1.1 -2.3,-1.18 -3.29,-2.06 -0.38,-0.36 -0.84,-0.58 -1.33,-0.6 -0.84,-0.67 -2.13,-0.38 -2.92,-1.15 -0.45,-0.63 -0.74,-1.4 -0.95,-2.13 -0.05,-0.04 -0.12,-0.05 -0.18,-0.04 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/jQuery-Mapael/js/maps/usa_states.js b/lib/jQuery-Mapael/js/maps/usa_states.js new file mode 100644 index 000000000..8d26bc8e1 --- /dev/null +++ b/lib/jQuery-Mapael/js/maps/usa_states.js @@ -0,0 +1,129 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of USA by state +* +* @source http://the55.net/_11/sketch/us_map +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps :{ + usa_states : { + width : 959, + height : 593, + latLngToGrid: function(lat, lng, phi1, phi2, midLng, scale) { + var pi =Math.PI + , midLat = (phi1 + phi2) / 2 + , n, tmp1, tmp2, tmp3, x, y, p; + + n = (Math.sin(phi1 / 180 * pi) + Math.sin(phi2 / 180 * pi)) / 2; + tmp1 = Math.sqrt(Math.cos(phi1 / 180 * pi)) + 2 * n * Math.sin(phi1 / 180 * pi); + tmp2 = scale * Math.pow(tmp1 - 2 * n * Math.sin(midLat / 180 * pi),0.5) / n; + tmp3 = n * (lng - midLng); + p = scale * Math.pow(tmp1 - 2 * n * Math.sin(lat / 180 * pi),0.5) / n; + x = p * Math.sin(tmp3 / 180 * pi); + y = tmp2 - p * Math.cos(tmp3 / 180 * pi); + + return([x,y]); + }, + getCoords : function (lat, lon) { + var coords = {}; + if(lat > 51) { // alaska + + // these are guesses + var phi1= 15; // standard parallels + var phi2= 105; + var midLng = -134; + var scale = 530; + coords = this.latLngToGrid(lat, lon, phi1, phi2, midLng, scale); + xOffset = 190; + yOffset = 543; + scaleX= 1; + scaleY= -1; + + } else if (lon < -140) { // hawaii + // Lat: 18°?55' N to 28°?27' N, Lng:154°?48' W to 178°?22' W + // (225, 504) to (356, 588) on map + + // these are guesses + var phi1= 0; // standard parallels + var phi2= 26; + var midLng = -166; + var scale = 1280; + coords = this.latLngToGrid(lat, lon, phi1, phi2, midLng, scale); + xOffset = 115; + yOffset = 723; + scaleX= 1; + scaleY= -1; + } else { + xOffset = -17; + yOffset = -22; + scaleX = 10.05; + scaleY = 6.26; + + coords[0] = 50.0 + 124.03149777329222 * ((1.9694462586094064-(lat* Math.PI / 180)) * Math.sin(0.6010514667026994 * (lon + 96) * Math.PI / 180)); + coords[1] = 50.0 + 1.6155950752393982 * 124.03149777329222 * 0.02613325650382181 - 1.6155950752393982* 124.03149777329222 * (1.3236744353715044- (1.9694462586094064-(lat* Math.PI / 180)) * Math.cos(0.6010514667026994 * (lon + 96) * Math.PI / 180)); + } + return {x : (coords[0] * scaleX + xOffset), y : (coords[1] * scaleY + yOffset)}; + }, + elems : { + "HI" : "m 233.08751,519.30948 1.93993,-3.55655 2.26326,-0.32332 0.32332,0.8083 -2.1016,3.07157 -2.42491,0 z m 10.18466,-3.71821 6.14313,2.58657 2.10159,-0.32332 1.61661,-3.87987 -0.64664,-3.39488 -4.2032,-0.48498 -4.04153,1.77827 -0.96996,3.71821 z m 30.71563,10.023 3.7182,5.49647 2.42492,-0.32332 1.13163,-0.48498 1.45495,1.29329 3.71821,-0.16166 0.96997,-1.45495 -2.90991,-1.77827 -1.93993,-3.71822 -2.1016,-3.55654 -5.8198,2.9099 -0.64664,1.77828 z m 20.20765,8.89137 1.29329,-1.93994 4.68817,0.96996 0.64665,-0.48498 6.14312,0.64664 -0.32332,1.2933 -2.58658,1.45494 -4.36485,-0.32332 -5.49648,-1.6166 z m 5.33482,5.17315 1.93994,3.87987 3.07155,-1.13163 0.32333,-1.61662 -1.61661,-2.10159 -3.71821,-0.32332 0,1.29329 z m 6.95143,-1.13163 2.26326,-2.9099 4.68817,2.42492 4.36485,1.13163 4.36486,2.74824 0,1.93993 -3.55654,1.77828 -4.84985,0.96996 -2.42491,-1.45495 -4.84984,-6.62811 z m 16.65111,15.51947 1.61661,-1.29328 3.39489,1.61662 7.59807,3.55654 3.39489,2.10159 1.6166,2.42492 1.93994,4.36485 4.04153,2.58658 -0.32332,1.2933 -3.87987,3.23322 -4.20319,1.45495 -1.45495,-0.64664 -3.07157,1.77826 -2.42491,3.23323 -2.26326,2.9099 -1.77828,-0.16166 -3.55654,-2.58658 -0.32332,-4.52651 0.64664,-2.42492 -1.61661,-5.65814 -2.1016,-1.77828 -0.16166,-2.58658 2.26326,-0.96996 2.1016,-3.07156 0.48498,-0.96997 -1.61661,-1.77828 -0.32332,-2.1016 z", + "AK" : "m 158.07671,453.67502 -0.32332,85.35713 1.6166,0.96996 3.07157,0.16166 1.45494,-1.13162 2.58658,0 0.16167,2.9099 6.95143,6.78977 0.48499,2.58658 3.39488,-1.93994 0.64665,-0.16166 0.32332,-3.07156 1.45494,-1.61661 1.13164,-0.16166 1.93993,-1.45496 3.07156,2.1016 0.64665,2.90991 1.93993,1.13162 1.13163,2.42492 3.87988,1.77827 3.39488,5.98147 2.74823,3.87986 2.26326,2.74825 1.45496,3.7182 5.01149,1.77828 5.17317,2.10159 0.96996,4.36486 0.48498,3.07156 -0.96996,3.39489 -1.77828,2.26325 -1.61661,-0.8083 -1.45495,-3.07157 -2.74824,-1.45494 -1.77827,-1.13164 -0.80831,0.80831 1.45495,2.74825 0.16166,3.7182 -1.13163,0.48498 -1.93993,-1.93993 -2.10159,-1.29329 0.48498,1.61661 1.29328,1.77828 -0.8083,0.8083 c 0,0 -0.8083,-0.32332 -1.29328,-0.96997 -0.485,-0.64664 -2.1016,-3.39488 -2.1016,-3.39488 l -0.96997,-2.26326 c 0,0 -0.32332,1.29329 -0.96997,0.96996 -0.64665,-0.32332 -1.29329,-1.45494 -1.29329,-1.45494 l 1.77827,-1.93994 -1.45495,-1.45495 0,-5.0115 -0.8083,0 -0.8083,3.39488 -1.13164,0.485 -0.96996,-3.71822 -0.64665,-3.71821 -0.80831,-0.48498 0.32333,5.65815 0,1.13162 -1.45496,-1.29328 -3.55654,-5.98147 -2.1016,-0.48498 -0.64664,-3.71821 -1.61661,-2.9099 -1.61662,-1.13164 0,-2.26325 2.1016,-1.29329 -0.48498,-0.32332 -2.58658,0.64664 -3.39489,-2.42491 -2.58658,-2.90991 -4.84983,-2.58658 -4.04154,-2.58658 1.2933,-3.23322 0,-1.61661 -1.77828,1.61661 -2.9099,1.13163 -3.71821,-1.13163 -5.65815,-2.42491 -5.49647,0 -0.64664,0.48498 -6.46645,-3.87988 -2.1016,-0.32332 -2.74824,-5.8198 -3.55655,0.32332 -3.55655,1.45495 0.48499,4.52652 1.13162,-2.9099 0.96998,0.32332 -1.45496,4.36485 3.23322,-2.74824 0.64665,1.61661 -3.87987,4.36485 -1.29329,-0.32332 -0.48498,-1.93994 -1.29329,-0.8083 -1.29329,1.13163 -2.74824,-1.77827 -3.07157,2.1016 -1.77826,2.10159 -3.39489,2.1016 -4.68818,-0.16167 -0.48498,-2.10159 3.7182,-0.64665 0,-1.29328 -2.26326,-0.64666 0.96998,-2.42491 2.26325,-3.87987 0,-1.77827 0.16166,-0.80831 4.36486,-2.26326 0.96996,1.29329 2.74825,0 -1.29329,-2.58657 -3.71822,-0.32333 -5.01149,2.74824 -2.42492,3.39488 -1.77827,2.58659 -1.13163,2.26326 -4.20319,1.45494 -3.07157,2.58658 -0.323321,1.61662 2.263257,0.96997 0.808313,2.10158 -2.748249,3.23323 -6.466439,4.2032 -7.759747,4.20319 -2.101597,1.13162 -5.334818,1.13164 -5.334826,2.26325 1.778275,1.29329 -1.454954,1.45495 -0.484982,1.13163 -2.748238,-0.96997 -3.23322,0.16166 -0.808312,2.26326 -0.969963,0 0.323321,-2.42492 -3.556551,1.2933 -2.909899,0.96996 -3.394886,-1.29329 -2.909901,1.93993 -3.233224,0 -2.101597,1.2933 -1.616612,0.8083 -2.101595,-0.32332 -2.58658,-1.13163 -2.263257,0.64665 -0.969967,0.96996 -1.616613,-1.13162 0,-1.93994 3.071564,-1.29329 6.304787,0.64665 4.364853,-1.61662 2.101596,-2.10159 2.909902,-0.64665 1.778273,-0.80831 2.748241,0.16166 1.616612,1.2933 0.969963,-0.32332 2.263257,-2.74824 3.07157,-0.96998 3.39488,-0.64664 1.293294,-0.32332 0.646642,0.48498 0.808312,0 1.293284,-3.71821 4.041533,-1.45494 1.939936,-3.71821 2.263259,-4.52652 1.616615,-1.45495 0.323321,-2.58658 -1.616615,1.29329 -3.394893,0.64665 -0.646642,-2.42492 -1.293284,-0.32332 -0.969973,0.96996 -0.16166,2.90991 -1.454955,-0.16167 -1.454944,-5.8198 -1.293294,1.29328 -1.131624,-0.48498 -0.32332,-1.93993 -4.041533,0.16166 -2.101596,1.13163 -2.586578,-0.32332 1.454944,-1.45495 0.484981,-2.58658 -0.646641,-1.93994 1.454954,-0.96996 1.293284,-0.16166 -0.646642,-1.77828 0,-4.36485 -0.969963,-0.96997 -0.808312,1.45495 -6.143123,0 -1.454951,-1.29329 -0.646645,-3.87986 -2.101596,-3.55656 0,-0.96996 2.101596,-0.80831 0.161661,-2.1016 1.131628,-1.13162 -0.808305,-0.48498 -1.29329,0.48498 -1.131628,-2.74824 0.969967,-5.01151 4.526514,-3.23321 2.586575,-1.61662 1.939936,-3.7182 2.748249,-1.2933 2.586578,1.13164 0.323321,2.42492 2.424917,-0.32334 3.23322,-2.42491 1.616615,0.64665 0.969962,0.64664 1.616615,0 2.263259,-1.29329 0.808313,-4.36486 c 0,0 0.323321,-2.90989 0.969963,-3.39488 0.646642,-0.48498 0.969963,-0.96996 0.969963,-0.96996 l -1.131623,-1.93994 -2.58658,0.80831 -3.23323,0.8083 -1.939936,-0.48498 -3.556541,-1.77828 -5.011495,-0.16166 -3.556551,-3.7182 0.484981,-3.87987 0.646652,-2.42492 -2.101596,-1.77827 -1.939938,-3.71822 0.484983,-0.8083 6.789771,-0.48498 2.101596,0 0.969963,0.96996 0.646652,0 -0.16166,-1.61661 3.879862,-0.64664 2.586577,0.32332 1.454955,1.13163 -1.454955,2.1016 -0.484981,1.45494 2.748249,1.61662 5.011497,1.77827 1.778276,-0.96996 -2.263257,-4.36485 -0.969974,-3.23323 0.969974,-0.80831 -3.394891,-1.93993 -0.484983,-1.13164 0.484983,-1.6166 -0.808304,-3.87987 -2.909909,-4.68818 -2.424918,-4.20319 2.909909,-1.93994 3.233222,0 1.778276,0.64665 4.203192,-0.16166 3.718205,-3.55654 1.131633,-3.07157 3.718212,-2.42492 1.616604,0.96997 2.748239,-0.64665 3.718209,-2.1016 1.13164,-0.16166 0.96996,0.80832 4.52651,-0.16167 2.74824,-3.07156 1.13163,0 3.55655,2.42491 1.93993,2.1016 -0.48498,1.13163 0.64664,1.13163 1.61662,-1.61661 3.87987,0.32332 0.32332,3.7182 1.93994,1.45496 7.11309,0.64664 6.30479,4.20319 1.45494,-0.96996 5.17317,2.58658 2.10159,-0.64664 1.93994,-0.80832 4.84983,1.93994 4.36486,2.9099 z m -115.102797,28.93736 2.101596,5.33482 -0.161662,0.96997 -2.909902,-0.32333 -1.778273,-4.04153 -1.778273,-1.45494 -2.424919,0 -0.16166,-2.58659 1.778273,-2.42492 1.131629,2.42492 1.45495,1.45495 2.748241,0.64665 z m -2.58658,33.46387 3.718209,0.80831 3.718207,0.96996 0.808307,0.96998 -1.616612,3.7182 -3.071564,-0.16166 -3.394885,-3.55654 -0.161662,-2.74825 z m -20.692636,-14.06452 1.13163,2.58657 1.131628,1.61662 -1.131628,0.8083 -2.101597,-3.07156 0,-1.93993 0.969967,0 z m -13.7412027,73.07087 3.3948853,-2.26326 3.3948854,-0.96997 2.58658,0.32332 0.484983,1.61661 1.939935,0.48499 1.939934,-1.93993 -0.323322,-1.61661 2.748241,-0.64665 2.909902,2.58658 -1.131629,1.77827 -4.364852,1.13163 -2.748242,-0.48498 -3.718207,-1.13163 -4.3648533,1.45495 -1.616612,0.32332 -1.1316284,-0.64664 z m 48.9833487,-4.52651 1.616612,1.93993 2.101593,-1.61661 -1.454948,-1.2933 -2.263257,0.96998 z m 2.909902,3.07155 1.131624,-2.26325 2.101597,0.32332 -0.808303,1.93993 -2.424918,0 z m 23.602535,-1.93993 1.454954,1.77827 0.969974,-1.13162 -0.808313,-1.93994 -1.616615,1.29329 z m 8.72971,-12.44791 1.131633,5.8198 2.909899,0.80831 5.011495,-2.90991 4.364853,-2.58658 -1.6166,-2.42491 0.48498,-2.42492 -2.1016,1.29329 -2.909898,-0.80831 1.616605,-1.13162 1.939933,0.8083 3.87987,-1.77828 0.48499,-1.45494 -2.42492,-0.80831 0.8083,-1.93994 -2.74824,1.93994 -4.688172,3.55655 -4.849834,2.9099 -1.293294,1.13163 z m 42.35524,-19.88433 2.42492,-1.45495 -0.96997,-1.77828 -1.77827,0.96997 0.32332,2.26326 z", + "FL" : "m 759.8167,439.1428 2.26566,7.3186 3.7297,9.74226 5.33479,9.3763 3.71819,6.30476 4.84982,5.49646 4.04151,3.71819 1.6166,2.90989 -1.13162,1.29328 -0.8083,1.29328 2.90988,7.43639 2.90989,2.90988 2.58657,5.3348 3.55653,5.81978 4.52649,8.24468 1.29329,7.59804 0.48498,11.96288 0.64664,1.77826 -0.32332,3.39487 -2.42491,1.29329 0.32332,1.93992 -0.64664,1.93993 0.32332,2.4249 0.48498,1.93993 -2.74822,3.23321 -3.07155,1.45494 -3.87985,0.16166 -1.45495,1.61661 -2.4249,0.96996 -1.29329,-0.48498 -1.13162,-0.96996 -0.32332,-2.90989 -0.80831,-3.39487 -3.39487,-5.17314 -3.55653,-2.26324 -3.87985,-0.32332 -0.8083,1.29328 -3.07155,-4.36483 -0.64664,-3.55653 -2.58657,-4.04151 -1.77826,-1.13163 -1.61661,2.10159 -1.77826,-0.32332 -2.10159,-5.01148 -2.90989,-3.87985 -2.90989,-5.33479 -2.58656,-3.07155 -3.55653,-3.71819 2.10158,-2.42491 3.23321,-5.49646 -0.16166,-1.6166 -4.52649,-0.96996 -1.61661,0.64664 0.32333,0.64664 2.58656,0.96996 -1.45494,4.5265 -0.8083,0.48498 -1.77827,-4.04151 -1.29328,-4.84982 -0.32332,-2.74823 1.45494,-4.68815 0,-9.53797 -3.07155,-3.71819 -1.29328,-3.07155 -5.17314,-1.29328 -1.93992,-0.64664 -1.61661,-2.58657 -3.39487,-1.61661 -1.13162,-3.39487 -2.74823,-0.96996 -2.42491,-3.71819 -4.20317,-1.45494 -2.90989,-1.45495 -2.58656,0 -4.04152,0.80831 -0.16166,1.93992 0.80831,0.96996 -0.48499,1.13163 -3.07154,-0.16166 -3.71819,3.55653 -3.55654,1.93992 -3.87985,0 -3.23321,1.29329 -0.32332,-2.74823 -1.6166,-1.93993 -2.90989,-1.13162 -1.6166,-1.45495 -8.08303,-3.87985 -7.59804,-1.77826 -4.36483,0.64664 -5.98144,0.48498 -5.98144,2.10159 -3.47924,0.61296 -0.23792,-8.04975 -2.58657,-1.93992 -1.77827,-1.77827 0.32332,-3.07156 10.18462,-1.29328 25.5424,-2.90989 6.78975,-0.64664 5.436,0.28027 2.58657,3.87986 1.45494,1.45494 8.09816,0.51522 10.81975,-0.64664 21.51239,-1.29329 5.44572,-0.67437 5.10758,0.20451 0.42683,2.90989 2.233,0.8083 0.23494,-4.63 -1.52822,-4.17295 1.3084,-1.43983 5.55463,0.45475 5.17314,0.32332 z m 12.54541,132.40508 2.42492,-0.64664 1.29328,-0.24249 1.45496,-2.34409 2.34408,-1.61661 1.29329,0.48499 1.69744,0.32332 0.40415,1.05079 -3.4757,1.21246 -4.2032,1.45495 -2.34408,1.21246 -0.88914,-0.88914 z m 13.4987,-5.01149 1.21246,1.0508 2.74824,-2.10159 5.33481,-4.20319 3.7182,-3.87987 2.50575,-6.6281 0.96997,-1.69744 0.16166,-3.39488 -0.72748,0.48498 -0.96996,2.82907 -1.45496,4.60733 -3.23322,5.254 -4.36484,4.20318 -3.39488,1.93993 -2.50575,1.53578 z", + "NH" : "m 880.79902,142.42476 0.869,-1.0765 1.09022,-3.29102 -2.54308,-0.91347 -0.48499,-3.07156 -3.87985,-1.13162 -0.32332,-2.74824 -7.27475,-23.44082 -4.60142,-14.542988 -0.89708,-0.0051 -0.64664,1.616605 -0.64664,-0.484981 -0.96997,-0.969963 -1.45494,1.939925 -0.0485,5.032054 0.31165,5.667218 1.93992,2.74824 0,4.04152 -3.7182,5.06278 -2.58657,1.13164 0,1.13162 1.13163,1.77827 0,8.56802 -0.80831,9.21467 -0.16166,4.84982 0.96997,1.2933 -0.16166,4.52649 -0.48499,1.77828 0.96881,0.70922 16.78767,-4.42455 2.17487,-0.60245 1.84357,-2.77333 3.60523,-1.61312 z", + "MI" : "M581.61931,82.059006 L 583.4483,80.001402 L 585.62022,79.201221 L 590.99286,75.314624 L 593.27908,74.743065 L 593.73634,75.200319 L 588.59232,80.344339 L 585.27728,82.287628 L 583.21967,83.202124 L 581.61931,82.059006 z M 667.79369,114.18719 L 668.44033,116.69293 L 671.67355,116.85459 L 672.96684,115.64213 C 672.96684,115.64213 672.88601,114.18719 672.56269,114.02552 C 672.23936,113.86386 670.94608,112.16642 670.94608,112.16642 L 668.76366,112.40891 L 667.14704,112.57057 L 666.82372,113.7022 L 667.79369,114.18719 z M 567.49209,111.21318 L 568.20837,110.63278 L 570.9566,109.82447 L 574.51313,107.56123 L 574.51313,106.59126 L 575.15978,105.94462 L 581.14121,104.97466 L 583.56612,103.03473 L 587.93095,100.93315 L 588.09261,99.639864 L 590.03254,96.729975 L 591.8108,95.921673 L 593.10409,94.143408 L 595.36733,91.880161 L 599.73217,89.455254 L 604.42032,88.970273 L 605.55194,90.101896 L 605.22862,91.071859 L 601.51043,92.041822 L 600.05549,95.113371 L 597.79224,95.921673 L 597.30726,98.34658 L 594.88235,101.57979 L 594.55903,104.16636 L 595.36733,104.65134 L 596.3373,103.51972 L 599.89383,100.60983 L 601.18711,101.90311 L 603.45036,101.90311 L 606.68357,102.87307 L 608.13851,104.0047 L 609.59345,107.07625 L 612.34168,109.82447 L 616.22153,109.66281 L 617.67648,108.69285 L 619.29308,109.98613 L 620.90969,110.47112 L 622.20297,109.66281 L 623.33459,109.66281 L 624.9512,108.69285 L 628.99271,105.13632 L 632.38758,104.0047 L 639.01566,103.68138 L 643.54215,101.74145 L 646.12872,100.44817 L 647.58367,100.60983 L 647.58367,106.26794 L 648.06865,106.59126 L 650.97853,107.39957 L 652.91846,106.91458 L 659.06156,105.29798 L 660.19318,104.16636 L 661.64813,104.65134 L 661.64813,111.60274 L 664.88134,114.67429 L 666.17462,115.32093 L 667.4679,116.29089 L 666.17462,116.61421 L 665.36632,116.29089 L 661.64813,115.80591 L 659.54654,116.45255 L 657.28329,116.29089 L 654.05008,117.74584 L 652.27182,117.74584 L 646.45204,116.45255 L 641.27891,116.61421 L 639.33898,119.20078 L 632.38758,119.84742 L 629.96267,120.65572 L 628.83105,123.72727 L 627.53777,124.8589 L 627.05279,124.69724 L 625.59784,123.08063 L 621.07135,125.50554 L 620.42471,125.50554 L 619.29308,123.88893 L 618.48478,124.05059 L 616.54486,128.41543 L 615.57489,132.45694 L 612.39377,139.45774 L 611.21701,138.42347 L 609.84527,137.39215 L 607.90449,127.10413 L 604.36001,125.73408 L 602.30743,123.44785 L 590.18707,120.70437 L 587.3318,119.67473 L 579.10138,117.50199 L 571.21139,116.35887 L 567.49209,111.21318 z,M697.8,177.2L694.6,168.9L692.3,159.9L689.9,156.7L687.3,154.9L685.7,156L681.8,157.8L679.9,162.8L677.1,166.5L676,167.2L674.5,166.5 C 674.5,166.5 671.9,165.1 672.1,164.4 C 672.3,163.8 672.6,159.4 672.6,159.4L676,158.1L676.8,154.7L677.4,152.1L679.9,150.5L679.5,140.5L677.9,138.2L676.6,137.4L675.8,135.3L676.6,134.5L678.2,134.8L678.4,133.2L676,131L674.7,128.4L672.1,128.4L667.6,126.9L662.1,123.5L659.3,123.5L658.7,124.2L657.7,123.7L654.6,121.4L651.7,123.2L648.8,125.5L649.2,129L650.1,129.3L652.2,129.8L652.7,130.6L650.1,131.4L647.5,131.8L646.1,133.5L645.8,135.6L646.1,137.3L646.4,142.8L642.8,144.9L642.2,144.7L642.2,140.5L643.5,138.1L644.1,135.6L643.3,134.8L641.4,135.6L640.4,139.8L637.7,141L635.9,142.9L635.7,143.9L636.4,144.7L635.7,147.3L633.5,147.8L633.5,148.9L634.3,151.3L633.1,157.5L631.5,161.5L632.2,166.2L632.7,167.3L631.9,169.8L631.5,170.6L631.2,173.3L634.8,179.3L637.7,185.8L639.1,190.6L638.3,195.3L637.3,201.3L634.9,206.4L634.6,209.2L631.3,212.3L635.8,212.1L657.2,209.9L664.4,208.9L664.5,210.5L671.4,209.3L681.7,207.8L685.5,207.4L685.7,206.8L685.8,205.3L687.9,201.6L689.9,199.9L689.7,194.8L691.3,193.2L692.4,192.9L692.6,189.3L694.2,186.3L695.2,186.9L695.4,187.5L696.2,187.7L698.1,186.7L697.8,177.2z", + "VT" : "m 844.48416,154.05791 0.3167,-5.34563 -2.89071,-10.78417 -0.64664,-0.32332 -2.9099,-1.29329 0.8083,-2.90989 -0.8083,-2.10159 -2.70005,-4.63998 0.96997,-3.87986 -0.80831,-5.17315 -2.42491,-6.46644 -0.80557,-4.92251 26.41936,-6.73182 0.3087,5.52221 1.91626,2.74223 0,4.04152 -3.70715,5.05799 -2.58657,1.14267 -0.011,1.12057 1.30997,1.51912 -0.31093,8.09797 -0.60943,9.25886 -0.22795,5.55694 0.96996,1.29329 -0.16166,4.57069 -0.48498,1.68989 1.01418,0.72716 -7.43755,1.50671 -4.50174,0.72383 z", + "ME" : "m 922.83976,78.830719 1.93993,2.101586 2.26325,3.718191 0,1.939926 -2.10159,4.688153 -1.93993,0.646642 -3.39487,3.071549 -4.84981,5.496454 c 0,0 -0.64664,0 -1.29328,0 -0.64664,0 -0.96997,-2.101584 -0.96997,-2.101584 l -1.77826,0.16166 -0.96996,1.454944 -2.42491,1.45495 -0.96996,1.45494 1.6166,1.45494 -0.48498,0.64665 -0.48498,2.74822 -1.93993,-0.16166 0,-1.6166 -0.32332,-1.29329 -1.45494,0.32333 -1.77827,-3.23321 -2.10158,1.29328 1.29328,1.45494 0.32332,1.13163 -0.8083,1.29328 0.32332,3.07155 0.16166,1.6166 -1.6166,2.58657 -2.90989,0.48498 -0.32332,2.90989 -5.3348,3.07155 -1.29328,0.48498 -1.61661,-1.45494 -3.07155,3.55653 0.96997,3.23321 -1.45495,1.29328 -0.16166,4.36483 -1.12328,6.25936 -2.46225,-1.15595 -0.48499,-3.07156 -3.87985,-1.13163 -0.32332,-2.74824 -7.27475,-23.44082 -4.69858,-14.639742 1.42054,-0.118165 1.51379,0.409899 0,-2.586568 1.3083,-4.496456 2.58657,-4.688153 1.45495,-4.041512 -1.93993,-2.424907 0,-5.981437 0.8083,-0.969963 0.80831,-2.748228 -0.16166,-1.454944 -0.16167,-4.849814 1.77827,-4.849814 2.90989,-8.891326 2.10158,-4.203172 1.29329,0 1.29328,0.16166 0,1.131623 1.29329,2.263247 2.74822,0.646642 0.80831,-0.808303 0,-0.969962 4.04151,-2.909889 1.77826,-1.778265 1.45495,0.161661 5.98143,2.424907 1.93993,0.969962 9.05299,29.907187 5.98143,0 0.80831,1.939926 0.16166,4.849814 2.90988,2.263246 0.80831,0 0.16166,-0.484981 -0.48498,-1.131623 2.74822,-0.161661 z m -20.93175,30.147531 1.53578,-1.53578 1.37412,1.0508 0.56581,2.42492 -1.69744,0.88913 -1.77827,-2.82907 z m 6.70893,-5.90062 1.77827,1.8591 c 0,0 1.29329,0.0808 1.29329,-0.2425 0,-0.32332 0.24249,-2.02076 0.24249,-2.02076 l 0.88914,-0.8083 -0.80831,-1.77828 -2.02076,0.72748 -1.37412,2.26326 z", + "RI" : "m 874.07001,178.89536 -3.69579,-14.95599 6.26928,-1.84514 2.19113,1.92712 3.30649,4.32065 2.6879,4.40209 -2.99934,1.62479 -1.29328,-0.16166 -1.13162,1.77827 -2.42491,1.93992 -2.90986,0.96995 z", + "NY" : "m 830.37944,188.7456 -1.13163,-0.96996 -2.58658,-0.16166 -2.26324,-1.93992 -1.63061,-6.12913 -3.45846,0.0905 -2.44371,-2.7082 -19.38532,4.38194 -43.00178,8.72969 -7.52965,1.22799 -0.73816,-6.46834 1.4281,-1.12538 1.29328,-1.13162 0.96997,-1.61661 1.77826,-1.13162 1.93993,-1.77827 0.48498,-1.6166 2.10158,-2.74823 1.13163,-0.96996 -0.16166,-0.96997 -1.29329,-3.07154 -1.77826,-0.16166 -1.93993,-6.1431 2.90989,-1.77827 4.36483,-1.45494 4.04152,-1.29329 3.23321,-0.48498 6.30475,-0.16166 1.93993,1.29329 1.6166,0.16166 2.10159,-1.29329 2.58657,-1.13162 5.17313,-0.48498 2.10159,-1.77827 1.77826,-3.23321 1.61661,-1.93992 2.10158,0 1.93993,-1.13163 0.16166,-2.26324 -1.45494,-2.10159 -0.32332,-1.45494 1.13162,-2.10159 0,-1.45494 -1.77827,0 -1.77826,-0.8083 -0.8083,-1.13163 -0.16166,-2.58657 5.81977,-5.49645 0.64664,-0.8083 1.45495,-2.90989 2.90989,-4.5265 2.74823,-3.71819 2.10158,-2.4249 2.4151,-1.82561 3.08136,-1.24594 5.49645,-1.29329 3.23321,0.16166 4.5265,-1.45494 7.56519,-2.07117 0.51979,4.97967 2.42492,6.46644 0.8083,5.17315 -0.96996,3.87986 2.58657,4.5265 0.8083,2.10159 -0.8083,2.9099 2.9099,1.29328 0.64664,0.32332 3.07156,10.99294 -0.53629,5.05967 -0.48498,10.83127 0.8083,5.49647 0.8083,3.55654 1.45495,7.27474 0,8.08304 -1.13163,2.26325 1.83933,1.99279 0.79655,1.67842 -1.93992,1.77827 0.32332,1.29328 1.29328,-0.32332 1.45495,-1.29328 2.26324,-2.58657 1.13163,-0.64664 1.6166,0.64664 2.26325,0.16166 7.92136,-3.87985 2.90989,-2.74823 1.29328,-1.45494 4.20317,1.6166 -3.39487,3.55653 -3.87985,2.90989 -7.11306,5.33479 -2.58656,0.96997 -5.81978,1.93992 -4.04151,1.13163 -1.17474,-0.53293 -0.24402,-3.68853 0.48498,-2.74824 -0.16166,-2.10158 -2.81351,-1.699 -4.5265,-0.96997 -3.87986,-1.13162 -3.7182,-1.77828 z", + "PA" : "m 825.1237,224.69205 1.30842,-0.271 2.32953,-1.25325 1.21188,-2.48307 1.61661,-2.26325 3.23321,-3.07156 0,-0.8083 -2.42491,-1.6166 -3.55654,-2.42492 -0.96996,-2.58657 -2.74824,-0.32332 -0.16166,-1.13163 -0.8083,-2.74823 2.26326,-1.13162 0.16166,-2.42492 -1.2933,-1.29329 0.16166,-1.61661 1.93994,-3.07155 0,-3.07156 2.69763,-2.64588 -0.92028,-0.67498 -2.52408,-0.19291 -2.29449,-1.93992 -1.54992,-6.11606 -3.50458,0.10052 -2.45523,-2.70333 -18.09099,4.19777 -43.00178,8.72969 -8.89135,1.45494 -0.62067,-6.52139 -5.36253,5.06765 -1.29329,0.48498 -4.20229,3.00889 2.91076,19.13745 2.48166,9.72936 3.5718,19.26149 3.26931,-0.63768 11.94358,-1.50247 37.92663,-7.6652 14.87621,-2.82332 8.30035,-1.62236 0.26711,-0.23853 2.1016,-1.61662 2.10158,-0.68084 z", + "NJ" : "m 829.67942,188.46016 -2.32255,2.73427 0,3.07156 -1.93994,3.07155 -0.16166,1.61662 1.2933,1.29328 -0.16166,2.42492 -2.26326,1.13162 0.8083,2.74823 0.16166,1.13163 2.74824,0.32332 0.96996,2.58657 3.55654,2.42492 2.42491,1.6166 0,0.80831 -2.98321,2.69656 -1.61661,2.26324 -1.45495,2.74824 -2.26325,1.29328 -0.46245,1.60248 -0.2425,1.21246 -0.60923,2.60674 1.09227,2.24419 3.23321,2.90989 4.84981,2.26325 4.04151,0.64664 0.16166,1.45494 -0.8083,0.96996 0.32332,2.74823 0.8083,0 2.10159,-2.4249 0.8083,-4.84982 2.74823,-4.04151 3.07155,-6.46642 1.13162,-5.49645 -0.64664,-1.13163 -0.16166,-9.37631 -1.61661,-3.39486 -1.13162,0.8083 -2.74823,0.32332 -0.48498,-0.48498 1.13163,-0.96997 2.10158,-1.93992 0.0631,-1.09383 -0.38439,-3.43384 0.57337,-2.74824 -0.11747,-1.96901 -2.80754,-1.75035 -5.09214,-1.17576 -4.13744,-1.38163 -3.58563,-1.64569 z", + "DE" : "m 825.6261,228.2791 0.36831,-2.14689 0.37507,-1.69105 -1.623,0.39776 -1.61546,0.46756 -2.20626,1.7643 1.72012,5.04288 2.26326,5.65812 2.10158,9.69965 1.61662,6.30478 5.01148,-0.16166 6.14212,-1.18068 -2.26423,-7.38627 -0.96997,0.48498 -3.55653,-2.4249 -1.77826,-4.68816 -1.93993,-3.55653 -3.14712,-2.87031 -0.86416,-2.09812 0.36636,-1.61546 z", + "MD" : "m 839.79175,252.41476 -6.00855,1.20384 -5.1429,0.11746 -1.84356,-6.92233 -1.92481,-9.16932 -2.57262,-6.18845 -1.28838,-4.39833 -7.50602,1.62236 -14.87621,2.82332 -37.45143,7.5509 1.1313,5.01166 0.96996,5.65811 0.32332,-0.32332 2.1016,-2.4249 2.26324,-2.61766 2.42491,-0.61556 1.45496,-1.45495 1.77826,-2.58657 1.29328,0.64665 2.90989,-0.32333 2.58658,-2.10158 2.00689,-1.45327 1.84523,-0.48498 1.64435,1.12995 2.90989,1.45494 1.93992,1.77827 1.21246,1.53578 4.12235,1.69743 0,2.90989 5.49646,1.29329 1.14444,0.54198 1.4119,-2.02832 2.88197,1.97016 -1.27817,2.48193 -0.76527,3.98566 -1.77826,2.58657 0,2.10159 0.64664,1.77827 5.06395,1.35569 4.3111,-0.0617 3.07154,0.96997 2.10159,0.32332 0.96996,-2.10159 -1.45494,-2.10158 0,-1.77827 -2.42491,-2.10159 -2.10158,-5.49645 1.29328,-5.3348 -0.16166,-2.10158 -1.29328,-1.29329 c 0,0 1.45494,-1.6166 1.45494,-2.26324 0,-0.64665 0.48498,-2.10159 0.48498,-2.10159 l 1.93993,-1.29328 1.93992,-1.61661 0.48498,0.96997 -1.45494,1.6166 -1.29328,3.71819 0.32332,1.13162 1.77826,0.32332 0.48498,5.49646 -2.10158,0.96996 0.32332,3.55653 0.48498,-0.16166 1.13162,-1.93992 1.61661,1.77826 -1.61661,1.29329 -0.32332,3.39487 2.58657,3.39487 3.87985,0.48498 1.61661,-0.8083 3.23655,4.18293 1.35835,0.5363 6.65367,-2.79695 2.00758,-4.02387 -0.43596,-4.90798 z m -15.96958,9.02872 1.13162,2.50575 0.16166,1.77827 1.13163,1.8591 c 0,0 0.88914,-0.88914 0.88914,-1.21246 0,-0.32332 -0.72747,-3.07156 -0.72747,-3.07156 l -0.72748,-2.34409 -1.8591,0.48499 z", + "VA" : "m 831.63885,266.06892 -0.14391,-1.94703 6.45343,-2.54988 -0.77041,3.21784 -2.91995,3.77911 -0.41809,4.58582 0.46175,3.39044 -1.82797,4.97816 -2.16427,1.91614 -1.47034,-4.64081 0.44589,-5.44911 1.587,-4.18307 0.76687,-3.09761 z m 3.34019,28.30136 -58.17418,12.57543 -37.42697,5.27907 -6.67833,-0.37518 -2.58525,1.92638 -7.33913,0.22069 -8.38211,0.97767 -10.91496,1.61462 10.46943,-5.6112 -0.0131,-2.07493 1.52005,-2.14613 10.55378,-11.50143 3.94672,4.47746 3.78301,0.96398 2.54346,-1.14032 2.23722,-1.31116 2.53661,1.34352 3.91417,-1.42776 1.87673,-4.55634 2.60092,0.54002 2.85524,-2.13125 1.79927,0.4936 2.82721,-3.67657 0.34825,-2.08311 -0.96366,-1.27557 1.00277,-1.86663 5.27427,-12.27715 0.61677,-5.73508 1.22889,-0.52354 2.17853,2.44287 3.93586,-0.30117 1.92921,-7.57363 2.79399,-0.56086 1.04975,-2.74107 2.57982,-2.34688 2.77183,-5.69519 0.0849,-5.06755 9.82151,3.82282 c 0.68085,0.34042 0.83288,-5.04915 0.83288,-5.04915 l 3.65256,1.59833 0.0683,2.93816 5.78425,1.29949 2.13295,1.1762 1.65992,2.05569 -0.65455,3.64867 -1.94744,2.59098 0.10985,2.05907 0.58896,1.85291 4.97875,1.26843 4.45127,0.0399 3.06883,0.95864 1.94351,0.3093 0.71481,3.08846 3.19044,0.40253 0.86807,1.20002 -0.43949,4.69008 1.37473,1.10255 -0.47895,1.93039 1.22941,0.78977 -0.2218,1.3846 -2.69399,-0.0949 0.089,1.61552 2.28099,1.54287 0.12154,1.4119 1.77311,1.78538 0.49179,2.52413 -2.55304,1.38131 1.57222,1.4943 5.80102,-1.68583 3.60762,6.01193 z", + "WV" : "m 761.18551,238.96731 1.11201,4.94453 1.08344,6.03133 2.13029,-2.58034 2.26324,-3.07156 2.53838,-0.61555 1.45495,-1.45494 1.77827,-2.58657 1.44498,0.64664 2.90989,-0.32332 2.58658,-2.10159 2.00689,-1.45326 1.84523,-0.48499 1.30392,1.01647 3.64325,1.82163 1.93993,1.77827 1.37412,1.29328 -0.76172,5.55494 -5.83491,-2.54122 -4.24525,-1.62202 -0.10114,5.17843 -2.74764,5.53673 -2.53003,2.42666 -1.19209,2.74939 -2.64358,0.5001 -0.89784,3.60188 -1.04323,3.94967 -3.96824,0.34074 -2.32373,-2.43888 -1.07115,0.55941 -0.63268,5.4697 -1.35029,3.5345 -4.9584,10.95497 0.89669,1.1607 -0.20586,1.90854 -2.80869,3.88447 -1.8085,-0.54429 -2.96805,2.15974 -2.54238,-0.57221 -1.99923,4.55557 c 0,0 -3.25931,1.43022 -3.92291,1.36772 -0.16051,-0.0151 -2.4691,-1.2491 -2.4691,-1.2491 l -2.33652,1.37937 -2.4098,1.0444 -3.74469,-0.88912 -1.1214,-1.16828 -2.19222,-3.02336 -3.14259,-1.98812 -1.71157,-3.62324 -4.28488,-3.46819 -0.64665,-2.26325 -2.58657,-1.45495 -0.80831,-1.6166 -0.24249,-5.25398 2.18242,-0.0808 1.93994,-0.8083 0.16166,-2.74823 1.6166,-1.45495 0.16166,-5.01148 0.96996,-3.87986 1.29329,-0.64664 1.29328,1.13162 0.48499,1.77827 1.77827,-0.96997 0.48498,-1.6166 -1.13162,-1.77827 0,-2.42491 0.96996,-1.29329 2.26325,-3.39487 1.29328,-1.45494 2.1016,0.48498 2.26324,-1.61662 3.07155,-3.39487 2.26326,-3.87986 0.32332,-5.65811 0.48498,-5.01149 0,-4.68816 -1.13162,-3.07155 0.96996,-1.45496 1.28348,-1.29328 3.49125,19.82712 4.63101,-0.75115 12.42832,-1.79965 z", + "OH" : "m 735.32497,193.32832 -6.09354,4.05335 -3.87985,2.26325 -3.39487,3.71819 -4.04151,3.87985 -3.23321,0.8083 -2.90989,0.48498 -5.49646,2.58657 -2.10158,0.16166 -3.39487,-3.07155 -5.17314,0.64665 -2.58656,-1.45495 -2.38107,-1.35083 -4.89257,0.70341 -10.18462,1.61661 -11.20687,2.18473 1.29329,14.63028 1.77827,13.74117 2.58656,23.4408 0.56582,4.83117 4.12235,-0.12902 2.42491,-0.80831 3.3638,1.50314 2.07049,4.36483 5.13894,-0.0171 1.89174,2.1187 1.76117,-0.0653 2.53839,-1.34146 2.50417,0.3715 5.42128,0.48268 1.72697,-2.13268 2.34565,-1.29328 2.07049,-0.68085 0.64664,2.74824 1.77828,0.96996 3.47569,2.34407 2.18242,-0.0808 1.33312,-0.49248 0.18471,-2.76153 1.58536,-1.45496 0.0992,-4.79272 c 0,0 1.02396,-4.10906 1.02396,-4.10906 l 1.29927,-0.60128 1.32135,1.14774 0.53815,1.69702 1.71913,-1.03742 0.43898,-1.46075 -1.11669,-1.90306 0.0663,-2.31443 0.749,-1.07231 2.15276,-3.30648 1.05022,-1.54334 2.10159,0.48498 2.26325,-1.61661 3.07155,-3.39487 2.77149,-4.07873 0.32033,-5.05551 0.48498,-5.01149 -0.17678,-5.30688 -0.95484,-2.89478 0.35124,-1.18978 1.80439,-1.75011 -2.28879,-9.04733 -2.90989,-19.36177 z", + "IN" : "m 619.56954,299.97132 0.0653,-2.85858 0.48499,-4.52651 2.26324,-2.90988 1.77828,-3.87987 2.58656,-4.20317 -0.48498,-5.81979 -1.77826,-2.74823 -0.32332,-3.23321 0.8083,-5.49647 -0.48498,-6.95141 -1.2933,-16.00441 -1.29328,-15.35776 -0.97047,-11.72002 3.07106,0.88951 1.45495,0.96996 1.13162,-0.32332 2.10159,-1.93992 2.82957,-1.61699 5.0928,-0.16204 21.98587,-2.26326 5.57573,-0.53316 1.50314,15.95621 4.25135,36.84155 0.59846,5.7716 -0.3715,2.26325 1.22798,1.79537 0.0964,1.37255 -2.52129,1.59951 -3.53943,1.55131 -3.20213,0.55028 -0.59846,4.86693 -4.57469,3.31247 -2.79642,4.01044 0.32332,2.37673 -0.58134,1.5342 -3.32647,0 -1.58553,-1.6166 -2.49331,1.2622 -2.68296,1.50314 0.16167,3.05445 -1.19379,0.25803 -0.46788,-1.01814 -2.16688,-1.50314 -3.25032,1.34148 -1.55131,3.00625 -1.43784,-0.8083 -1.45495,-1.59951 -4.46434,0.48499 -5.59283,0.96996 -2.90989,1.55132 z", + "IL" : "m 619.54145,300.34244 0.0312,-3.22971 0.56739,-4.64596 2.33253,-2.91586 1.86665,-4.07576 2.23302,-3.99533 -0.3715,-5.2524 -2.00521,-3.54257 -0.0964,-3.34668 0.69483,-5.26951 -0.82541,-7.17837 -1.06634,-15.77745 -1.29328,-15.01734 -0.92228,-11.6392 -0.27251,-0.92139 -0.8083,-2.58657 -1.29328,-3.71819 -1.61661,-1.77827 -1.45494,-2.58656 -0.23357,-5.48896 -45.79643,2.59825 0.22862,2.37195 2.28623,0.68587 0.91448,1.14311 0.45725,1.82898 3.88658,3.42934 0.68588,2.28623 -0.68588,3.42934 -1.82898,3.65796 -0.68586,2.51484 -2.28623,1.82899 -1.82898,0.68587 -5.25832,1.37173 -0.68587,1.82898 -0.68587,2.05761 0.68587,1.37174 1.82898,1.60036 -0.22862,4.1152 -1.82899,1.60036 -0.68586,1.60036 0,2.74347 -1.82898,0.45724 -1.60036,1.14312 -0.22862,1.37174 0.22862,2.0576 -1.71467,1.31457 -1.0288,2.80064 0.45724,3.65795 2.28623,7.31593 7.31593,7.54455 5.48693,3.65796 -0.22862,4.34383 0.9145,1.37174 6.40143,0.45724 2.74347,1.37174 -0.68586,3.65796 -2.28623,5.94419 -0.68587,3.20072 2.28622,3.88658 6.40144,5.25832 4.57246,0.68587 2.05759,5.0297 2.05761,3.20071 -0.91449,2.97209 1.60036,4.11521 1.82898,2.05761 1.41403,-0.88069 0.90766,-2.07479 2.21308,-1.7472 2.13147,-0.6144 2.60253,1.1798 3.62699,1.3757 1.18895,-0.29823 0.19987,-2.25845 -1.2873,-2.41179 0.30422,-2.37672 1.8384,-1.34745 3.02254,-0.81029 1.2609,-0.45852 -0.61261,-1.38688 -0.79137,-2.35437 1.4326,-0.98096 1.15747,-3.21403 z", + "CT" : "m 874.06831,178.86288 -3.67743,-14.87881 -4.71882,0.92031 -21.22878,4.74309 1.00019,3.22567 1.45495,7.27474 0.17678,8.96692 -1.22002,2.17487 1.92079,1.93234 4.27153,-3.90564 3.55653,-3.23321 1.93992,-2.10159 0.80831,0.64664 2.74822,-1.45494 5.17314,-1.13162 7.79469,-3.17877 z", + "WI" : "m 615.06589,197.36866 -0.0667,-3.15742 -1.17911,-4.5265 -0.64664,-6.14309 -1.13162,-2.42491 0.96996,-3.07155 0.8083,-2.90989 1.45495,-2.58656 -0.64665,-3.39487 -0.64664,-3.55653 0.48498,-1.77827 1.93993,-2.42491 0.16166,-2.74823 -0.8083,-1.29328 0.64664,-2.58657 -0.45252,-4.17071 2.74823,-5.65811 2.90989,-6.78974 0.16166,-2.26325 -0.32332,-0.96996 -0.80831,0.48498 -4.20317,6.30476 -2.74823,4.04151 -1.93992,1.77827 -0.8083,2.26324 -1.95495,0.8083 -1.13162,1.93993 -1.45495,-0.32332 -0.16166,-1.77827 1.29329,-2.4249 2.10158,-4.68816 1.77827,-1.6166 0.99083,-2.35785 -2.56045,-1.90134 -1.97482,-10.36699 -3.54747,-1.34198 -1.94626,-2.30833 -12.12971,-2.72164 -2.87589,-1.01205 -8.21312,-2.16729 -7.91792,-1.15875 -3.76516,-5.13067 -0.7504,0.55401 -1.19791,-0.16166 -0.64665,-1.13162 -1.33401,0.29655 -1.13163,0.16166 -1.77826,0.96996 -0.96997,-0.64664 0.64665,-1.93993 1.93992,-3.07155 1.13162,-1.13162 -1.93992,-1.45494 -2.10159,0.8083 -2.90989,1.93992 -7.43638,3.23321 -2.90989,0.64664 -2.90988,-0.48498 -0.98173,-0.87825 -2.1167,2.83518 -0.22862,2.74347 0,8.45903 -1.14312,1.60037 -5.25832,3.88657 -2.28622,5.94419 0.45724,0.22862 2.51485,2.05761 0.68586,3.20072 -1.82898,3.20071 0,3.88659 0.45725,6.63005 2.97209,2.9721 3.42935,0 1.82898,3.20072 3.42933,0.45724 3.88659,5.71557 7.0873,4.11521 2.0576,2.74347 0.9145,7.43024 0.68586,3.31502 2.28623,1.60036 0.22862,1.37174 -2.0576,3.42933 0.22862,3.20073 2.51485,3.88658 2.51485,1.14311 2.97209,0.45724 1.34234,1.38012 45.29836,-2.66945 z", + "NC" : "m 834.98153,294.31554 2.085,4.91735 3.55653,6.46642 2.4249,2.42491 0.64664,2.26325 -2.4249,0.16166 0.8083,0.64664 -0.32332,4.20317 -2.58657,1.29328 -0.64664,2.10159 -1.29328,2.90989 -3.7182,1.6166 -2.4249,-0.32332 -1.45495,-0.16166 -1.6166,-1.29328 0.32332,1.29328 0,0.96997 1.93993,0 0.8083,1.29328 -1.93993,6.30476 4.20317,0 0.64665,1.6166 2.26324,-2.26324 1.29329,-0.48499 -1.93993,3.55653 -3.07155,4.84982 -1.29328,0 -1.13163,-0.48498 -2.74822,0.64664 -5.17314,2.42491 -6.46642,5.33479 -3.39487,4.68815 -1.93992,6.46642 -0.48498,2.42491 -4.68816,0.48498 -5.45313,1.33666 -9.94641,-8.20253 -12.60954,-7.59805 -2.90989,-0.80831 -12.60953,1.45495 -4.27646,0.75015 -1.6166,-3.23322 -2.97036,-2.1167 -16.48939,0.48498 -7.27474,0.8083 -9.05299,4.52651 -6.14311,2.58656 -21.17755,2.58658 0.50009,-4.05433 1.77827,-1.45494 2.74824,-0.64665 0.64664,-3.7182 4.20318,-2.74822 3.87985,-1.45496 4.20319,-3.55653 4.36483,-2.10159 0.64664,-3.07156 3.87986,-3.87985 0.64664,-0.16166 c 0,0 0,1.13163 0.80831,1.13163 0.8083,0 1.93993,0.32332 1.93993,0.32332 l 2.26325,-3.55654 2.10159,-0.64665 2.26324,0.32333 1.61662,-3.55653 2.90989,-2.58658 0.48498,-2.10159 0.1875,-3.64819 4.2765,-0.0225 7.19859,-0.85579 15.75723,-2.25243 15.13604,-2.08657 21.64048,-4.71935 19.98332,-4.25857 11.17694,-2.40581 5.04998,-1.15688 z m 4.27046,33.20657 2.58658,-2.50575 3.15238,-2.58658 1.53578,-0.64664 0.16166,-2.02076 -0.64664,-6.14312 -1.45495,-2.34408 -0.64665,-1.8591 0.72748,-0.2425 2.74824,5.49648 0.40415,4.44567 -0.16166,3.39489 -3.39488,1.53577 -2.82907,2.42492 -1.13162,1.21246 -1.0508,-0.16166 z", + "DC" : "m 805.81945,250.84384 -1.85828,-1.82417 -1.23263,-0.68629 1.44301,-2.02247 2.88909,1.9485 -1.24119,2.58443 z", + "MA" : "m 899.62349,173.25394 2.17192,-0.68588 0.45726,-1.71467 1.0288,0.11431 1.0288,2.28624 -1.25742,0.45724 -3.8866,0.11432 0.45724,-0.57156 z m -9.37354,0.80018 2.28622,-2.62917 1.60037,0 1.82899,1.48605 -2.40054,1.0288 -2.17192,1.0288 -1.14312,-0.91448 z m -34.79913,-21.98819 17.64687,-4.64068 2.26326,-0.64664 1.91408,-2.79571 3.73677,-1.66331 2.88924,4.41284 -2.42491,5.17314 -0.32332,1.45494 1.93993,2.58657 1.13162,-0.8083 1.77827,0 2.26324,2.58656 3.87986,5.98144 3.55653,0.48498 2.26324,-0.96996 1.77827,-1.77827 -0.80831,-2.74822 -2.10158,-1.61661 -1.45495,0.8083 -0.96996,-1.29328 0.48498,-0.48498 2.10159,-0.16166 1.77826,0.8083 1.93993,2.42491 0.96996,2.90989 0.32332,2.4249 -4.20317,1.45495 -3.87985,1.93992 -3.87985,4.5265 -1.93993,1.45494 0,-0.96996 2.42491,-1.45495 0.48498,-1.77826 -0.8083,-3.07155 -2.90989,1.45494 -0.8083,1.45495 0.48498,2.26324 -2.06633,1.00043 -2.7472,-4.52713 -3.39488,-4.36484 -2.0705,-1.81247 -6.53327,1.8762 -5.09233,1.05079 -20.67516,4.59221 -0.66776,-4.76785 0.64664,-10.58877 4.28927,-0.88914 6.78975,-1.2933 z", + "TN" : "m 696.67788,318.25411 -51.89309,5.01149 -15.75956,1.77826 -4.6212,0.51271 -3.86835,-0.0277 -0.22097,4.10083 -8.18538,0.26401 -6.95141,0.64664 -8.09083,-0.12386 -1.41378,7.07286 -1.69623,5.48005 -3.29317,2.75084 -1.34874,4.38106 -0.32332,2.58657 -4.04152,2.26324 1.45494,3.55654 -0.96996,4.36484 -0.96838,0.78965 108.15855,-10.40755 0.40327,-3.95494 1.81073,-1.49039 2.83415,-0.74945 0.67193,-3.71698 4.0986,-2.70496 4.04693,-1.49403 4.08358,-3.57033 4.43609,-2.02546 0.52126,-3.06735 4.0646,-3.98499 0.5508,-0.11417 c 0,0 0.0312,1.13162 0.83955,1.13162 0.8083,0 1.93993,0.35457 1.93993,0.35457 l 2.26325,-3.58779 2.07034,-0.64664 2.27511,0.29521 1.59831,-3.53286 2.95525,-2.64391 0.42168,-1.93911 0.30896,-3.71115 -2.14655,-0.19977 -2.60168,2.02833 -6.99331,0.0291 -18.35929,2.38682 -8.06109,1.9082 z", + "AR" : "m 593.82477,343.05296 -3.97988,0.7167 -5.11215,-0.63403 0.4207,-1.60207 2.97975,-2.56669 0.94338,-3.65625 -1.82898,-2.9721 -78.41757,2.51485 1.60036,6.85869 -1e-5,8.23042 1.37175,10.97399 0.22862,37.83693 2.28623,1.94329 2.97209,-1.37173 2.74348,1.14311 0.68034,6.5733 55.62126,-1.1406 1.14563,-2.09037 -0.28662,-3.54951 -1.82563,-2.9721 1.59869,-1.48521 -1.59869,-2.5115 0.6842,-2.50983 1.36839,-5.60543 2.51819,-2.06263 -0.68587,-2.28456 3.65797,-5.37179 2.74347,-1.36839 -0.11348,-1.49358 -0.34544,-1.82564 2.85695,-5.59873 2.40304,-1.25659 0.38413,-3.42763 1.77067,-1.2417 -3.14352,-0.48427 -1.34146,-4.01044 2.80408,-2.37671 0.55026,-2.0192 1.27948,-4.04661 1.06619,-3.25539 z", + "MO" : "m 558.44022,248.11316 -2.51987,-3.08725 -1.14312,-2.28623 -64.35723,2.40054 -2.28626,0.11431 1.25743,2.51485 -0.22862,2.28622 2.51484,3.88659 3.0864,4.11521 3.08641,2.74347 2.16123,0.22862 1.49673,0.9145 0,2.97209 -1.82897,1.60036 -0.45726,2.28622 2.05761,3.42935 2.51486,2.97209 2.51484,1.82898 1.37173,11.65975 0.31414,36.07221 0.22862,4.68675 0.45724,5.38351 22.43299,-0.86682 23.20603,-0.68587 20.80466,-0.80101 11.65474,-0.2303 2.1694,3.426 -0.68419,3.3075 -3.08725,2.40304 -0.57239,1.83734 5.37849,0.45726 3.89496,-0.68588 1.71718,-5.49363 0.65142,-5.85679 2.09803,-2.55516 2.59603,-1.48689 0.0514,-3.05024 1.01602,-1.93648 -1.69423,-2.54377 -1.33093,0.98426 -1.99262,-2.22724 -1.28503,-4.759 0.80101,-2.5182 -1.94413,-3.42766 -1.83064,-4.5758 -4.79941,-0.79934 -6.9688,-5.59875 -1.71886,-4.11353 0.79935,-3.20072 2.05927,-6.05767 0.45892,-2.86363 -1.94914,-1.03131 -6.85534,-0.79767 -1.02797,-1.71216 -0.1118,-4.23036 -5.48694,-3.43101 -6.97551,-7.7715 -2.28622,-7.31593 -0.23029,-4.22532 0.80101,-2.2879 z", + "GA" : "m 672.29229,355.5518 0,2.18242 0.16166,2.1016 0.64664,3.39487 3.39488,7.92137 2.42491,9.86131 1.45494,6.14311 1.61661,4.84981 1.45495,6.95141 2.10159,6.30477 2.58657,3.39488 0.48498,3.39487 1.93993,0.8083 0.16166,2.1016 -1.77827,4.84981 -0.48498,3.23322 -0.16166,1.93993 1.61661,4.36484 0.32332,5.3348 -0.80831,2.42491 0.64665,0.80831 1.45495,0.8083 0.2047,3.21809 2.23301,3.34953 2.25044,2.16205 7.92138,0.16166 10.81975,-0.64664 21.51239,-1.29328 5.44572,-0.67437 4.57725,0.0277 0.16166,2.90989 2.58657,0.8083 0.32332,-4.36484 -1.61661,-4.5265 1.13163,-1.6166 5.81978,0.8083 4.97741,0.31778 -0.77542,-6.29879 2.26324,-10.02295 1.45495,-4.20318 -0.48499,-2.58656 3.33441,-6.2443 -0.5103,-1.35168 -1.91341,0.70458 -2.58656,-1.2933 -0.64665,-2.10159 -1.29328,-3.55653 -2.26326,-2.10159 -2.58656,-0.64664 -1.61661,-4.84982 -2.92501,-6.335 -4.20317,-1.93993 -2.1016,-1.93993 -1.29329,-2.58657 -2.10158,-1.93993 -2.26325,-1.29329 -2.26325,-2.90989 -3.07155,-2.26324 -4.52651,-1.77828 -0.48498,-1.45494 -2.42491,-2.90989 -0.48498,-1.45495 -3.39488,-4.97048 -3.51987,0.0992 -3.75491,-2.35614 -1.41828,-1.29328 -0.32332,-1.77827 0.8708,-1.93992 2.22664,-1.11014 -0.63394,-2.09722 -41.86975,4.98893 z", + "SC" : "m 764.94328,408.16488 -1.77706,0.9695 -2.58657,-1.29329 -0.64664,-2.10159 -1.29328,-3.55653 -2.26326,-2.1016 -2.58657,-0.64664 -1.6166,-4.84981 -2.74824,-5.98145 -4.20317,-1.93994 -2.1016,-1.93992 -1.29328,-2.58657 -2.10159,-1.93994 -2.26325,-1.29328 -2.26325,-2.90989 -3.07155,-2.26324 -4.52651,-1.77828 -0.48498,-1.45494 -2.4249,-2.90989 -0.48499,-1.45496 -3.39488,-5.17313 -3.39487,0.16166 -4.04152,-2.42492 -1.29328,-1.29328 -0.32332,-1.77827 0.8083,-1.93992 2.26325,-0.96998 -0.51082,-2.28908 5.7681,-2.33657 9.1155,-4.589 7.77473,-0.80831 16.1144,-0.42248 2.63825,1.87743 1.6791,3.35822 4.30235,-0.60998 12.60953,-1.45496 2.90989,0.80831 12.60954,7.59806 10.10808,8.12168 -5.42117,5.45834 -2.58657,6.1431 -0.48498,6.30476 -1.6166,0.8083 -1.13163,2.74823 -2.4249,0.64664 -2.10159,3.55653 -2.74823,2.74823 -2.26324,3.39487 -1.61661,0.8083 -3.55653,3.39487 -2.90989,0.16166 0.96997,3.23321 -5.01148,5.49646 -2.10159,1.29328 z", + "KY" : "m 725.9944,295.2707 -2.29332,2.40168 -3.57819,3.99404 -4.92455,5.46467 -1.21577,1.71577 -0.0625,2.10158 -4.37986,2.16409 -5.65812,3.39488 -7.23187,1.79885 -51.86789,4.89886 -15.75956,1.77826 -4.6212,0.51271 -3.86835,-0.0277 -0.22695,4.22028 -8.17941,0.14456 -6.95141,0.64664 -7.98748,-0.0602 1.20778,-1.32008 2.49954,-1.54085 0.22863,-3.20073 0.91449,-1.82898 -1.60682,-2.5389 0.80183,-1.90681 2.26326,-1.77826 2.10158,-0.64665 2.74823,1.29329 3.55654,1.29328 1.13163,-0.32332 0.16166,-2.26325 -1.29329,-2.42491 0.32332,-2.26325 1.93993,-1.45494 2.58658,-0.64665 1.6166,-0.64664 -0.8083,-1.77827 -0.64664,-1.93993 1.50662,-0.9958 c 0.003,-0.0371 1.25396,-3.52229 1.23829,-3.65781 l 3.05322,-1.47868 5.31979,-0.96996 4.49404,-0.48498 1.39244,1.62743 1.52827,0.8708 1.59077,-3.10821 3.18708,-1.28262 2.20509,1.48403 0.41056,0.99904 1.17352,-0.26401 -0.16167,-2.95293 3.13087,-1.74919 2.14809,-1.07348 1.52936,1.66081 3.31815,-0.0442 0.58733,-1.57125 -0.36751,-2.26324 2.60053,-3.9985 4.77655,-3.4379 0.70595,-4.83586 2.92502,-0.45591 3.79146,-1.64568 2.44332,-1.70824 -0.19833,-1.56493 -1.14245,-1.45494 0.56582,-2.99491 4.18485,-0.1175 2.29991,-0.7458 3.34739,1.4291 2.05411,4.36484 5.13229,0.0108 2.05101,2.20819 1.61545,-0.1477 2.60169,-1.27817 5.23706,0.57337 2.57492,0.21751 1.68758,-2.05624 2.61795,-1.42588 1.88178,-0.7071 0.64664,2.83663 2.04343,1.05834 2.64276,2.08249 0.11747,5.67324 0.8083,1.57241 2.58972,1.55628 0.77164,2.29451 4.15989,3.43694 1.80531,3.62324 2.45655,1.65852 z", + "AL" : "m 631.30647,460.41572 -1.4906,-14.3215 -2.74824,-18.75264 0.16166,-14.06449 0.8083,-31.03885 -0.16166,-16.65106 0.16509,-6.41906 44.48448,-3.61945 -0.1478,2.18242 0.16166,2.1016 0.64665,3.39487 3.39488,7.92137 2.4249,9.86131 1.45495,6.14311 1.6166,4.84982 1.45496,6.95141 2.10158,6.30476 2.58657,3.39489 0.48498,3.39486 1.93994,0.80831 0.16166,2.10159 -1.77828,4.84982 -0.48498,3.23322 -0.16166,1.93992 1.61662,4.36485 0.32332,5.33479 -0.80832,2.42492 0.64666,0.8083 1.45494,0.8083 0.32814,2.88882 -5.59766,-0.35355 -6.78975,0.64665 -25.5424,2.90988 -10.41156,1.40677 -0.22138,2.8774 1.77827,1.77827 2.58657,1.93992 0.58086,7.93544 -5.54206,2.5729 -2.74822,-0.32332 2.74822,-1.93993 0,-0.96996 -3.07154,-5.98144 -2.26325,-0.64664 -1.45495,4.36483 -1.29328,2.74823 -0.64664,-0.16166 -2.74823,0 z", + "LA" : "m 607.96706,459.16125 -3.28461,-3.16614 1.00991,-5.50023 -0.66135,-0.89308 -9.26167,1.00656 -25.02832,0.45892 -0.68419,-2.39468 0.91281,-8.4557 3.31588,-5.94585 5.03136,-8.69102 -0.57407,-2.39802 1.25659,-0.68085 0.45893,-1.95249 -2.28624,-2.05593 -0.11179,-1.94245 -1.83066,-4.34551 -0.14705,-6.3386 -55.47379,0.92397 0.0286,9.57357 0.68587,9.37353 0.68587,3.88658 2.51485,4.11521 0.91449,5.02971 4.34383,5.48693 0.22862,3.20072 0.68587,0.68587 -0.68587,8.45904 -2.97209,5.02969 1.60036,2.05761 -0.68588,2.51484 -0.68586,7.31593 -1.37174,3.20071 0.12246,3.61645 4.68648,-1.52015 12.11335,0.20701 10.34627,3.55653 6.46642,1.13163 3.71819,-1.45495 3.23321,1.13163 3.23321,0.96996 0.8083,-2.10159 -3.23321,-1.13162 -2.58657,0.48498 -2.74823,-1.6166 c 0,0 0.16167,-1.29329 0.80831,-1.45495 0.64664,-0.16166 3.07155,-0.96996 3.07155,-0.96996 l 1.77826,1.45494 1.77827,-0.96996 3.23321,0.64664 1.45494,2.42491 0.32332,2.26325 4.52649,0.32332 1.77827,1.77826 -0.8083,1.61661 -1.29329,0.8083 1.61661,1.6166 8.40634,3.55653 3.55653,-1.29328 0.96997,-2.42491 2.58656,-0.64664 1.77827,-1.45494 1.29328,0.96996 0.8083,2.90989 -2.26324,0.8083 0.64664,0.64664 3.39487,-1.29328 2.26325,-3.39487 0.8083,-0.48498 -2.10159,-0.32332 0.8083,-1.61661 -0.16166,-1.45494 2.10159,-0.48498 1.13162,-1.29329 0.64664,0.8083 c 0,0 -0.16166,3.07155 0.64665,3.07155 0.8083,0 4.20317,0.64665 4.20317,0.64665 l 4.04151,1.93992 0.96996,1.45495 2.90989,0 1.13163,0.96996 2.26324,-3.07155 0,-1.45495 -1.29328,0 -3.39487,-2.74822 -5.81978,-0.80831 -3.23321,-2.26324 1.13163,-2.74823 2.26324,0.32332 0.16166,-0.64664 -1.77826,-0.96996 0,-0.48499 3.23321,0 1.77826,-3.07154 -1.29328,-1.93993 -0.32332,-2.74823 -1.45495,0.16166 -1.93992,2.10159 -0.64664,2.58657 -3.07155,-0.64665 -0.96997,-1.77826 1.77827,-1.93993 1.90333,-3.4456 -1.0611,-2.41227 -1.16564,-3.98133 z", + "MS" : "m 631.55882,459.34458 -0.25426,1.25615 -5.17314,0 -1.45494,-0.8083 -2.10159,-0.32332 -6.78974,1.93992 -1.77826,-0.8083 -2.58657,4.20317 -1.10254,0.77802 -1.12383,-2.48798 -1.14312,-3.88659 -3.42933,-3.20071 1.1431,-5.54455 -0.68586,-0.91449 -1.82898,0.22862 -7.91792,0.87337 -24.5465,0.37337 -0.76974,-2.22536 0.87337,-8.3768 3.11684,-5.67281 5.22707,-9.1449 -0.44574,-2.4326 1.23686,-0.65625 0.43587,-1.91947 -2.31748,-2.07898 -0.11512,-2.14148 -1.83572,-4.12109 -0.109,-5.96277 1.32753,-2.48097 -0.2233,-3.41575 -1.76949,-3.08259 1.52642,-1.48221 -1.57061,-2.49954 0.45725,-1.65221 1.5774,-6.52637 2.48595,-2.03635 -0.64167,-2.36697 3.65797,-5.30253 2.83186,-1.35642 -0.22097,-1.67516 -0.28813,-1.6811 2.87606,-5.56767 2.34572,-1.23151 0.15163,-0.89301 37.34348,-3.88117 0.18486,6.28333 0.16166,16.65106 -0.8083,31.03885 -0.16166,14.06449 2.74824,18.75264 1.48437,13.39529 z", + "IA" : "m 569.19154,199.5843 0.26438,2.7862 2.22372,0.57726 0.95394,1.22533 0.50001,1.85536 3.79284,3.35865 0.68587,2.3915 -0.67434,3.42447 -1.58231,3.23198 -0.79934,2.74179 -2.17275,1.60204 -1.71551,0.5724 -5.57902,1.8602 -1.39146,3.84869 0.72864,1.37174 1.84051,1.68259 -0.28293,4.03629 -1.76315,1.53786 -0.77141,1.64314 0.12722,2.77632 -1.88631,0.45724 -1.62545,1.10491 -0.27879,1.35263 0.27879,2.11492 -1.55102,1.11607 -2.47053,-3.13328 -1.26257,-2.44987 -65.73582,2.51485 -0.91803,0.16544 -2.0524,-4.51596 -0.22862,-6.63007 -1.60036,-4.11521 -0.68586,-5.25831 -2.28623,-3.65797 -0.91448,-4.80107 -2.74348,-7.54455 -1.14311,-5.37264 -1.37174,-2.17191 -1.60036,-2.74346 1.95398,-4.84383 1.37174,-5.71557 -2.74347,-2.05761 -0.45725,-2.74347 0.9145,-2.51485 1.71467,0 82.654,-1.26948 0.83426,4.18312 2.25218,1.56097 0.25671,1.42309 -2.02954,3.38931 0.19041,3.20552 2.51486,3.7982 2.52679,1.29362 3.07928,0.50305 0.65834,0.83236 z", + "MN" : "m 475.23781,128.82439 -0.45725,-8.45904 -1.82898,-7.31592 -1.82898,-13.488725 -0.45725,-9.830778 -1.82898,-3.429343 -1.60036,-5.029695 0,-10.28802 0.68586,-3.886587 -1.82093,-5.451667 30.13242,0.03527 0.32332,-8.244684 0.64664,-0.161661 2.26325,0.484982 1.93992,0.808302 0.8083,5.496456 1.45495,6.143098 1.6166,1.616605 4.84982,0 0.32332,1.454944 6.30476,0.323321 0,2.101586 4.84981,0 0.32332,-1.293284 1.13162,-1.131623 2.26325,-0.646642 1.29328,0.969963 2.90989,0 3.87985,2.586567 5.3348,2.424907 2.42491,0.484982 0.48498,-0.969963 1.45494,-0.484982 0.48498,2.909889 2.58657,1.293284 0.48498,-0.484982 1.29329,0.161661 0,2.101586 2.58656,0.969963 3.07155,0 1.61661,-0.808303 3.23321,-3.233209 2.58656,-0.484981 0.80831,1.778265 0.48498,1.293283 0.96996,0 0.96996,-0.808302 8.89133,-0.323321 1.77826,3.071549 0.64665,0 0.71361,-1.084279 4.43991,-0.370665 -0.6121,2.279459 -3.93872,1.837125 -9.24578,4.061128 -4.77474,2.006897 -3.07155,2.586568 -2.42491,3.55653 -2.26324,3.879851 -1.77827,0.808304 -4.52649,5.01147 -1.29329,0.16166 -4.32778,2.75712 -2.46288,3.20511 -0.22862,3.19139 0.0944,8.04335 -1.37604,1.68875 -5.08154,3.75997 -2.23008,5.98241 2.87175,2.23371 0.67989,3.22698 -1.85524,3.23893 0.17079,3.74802 0.36886,6.7304 3.02825,3.00199 3.329,0 1.89111,3.1326 3.37917,0.50327 3.85916,5.67147 7.08729,4.11675 2.14315,2.87512 0.67115,6.43951 -81.2115,1.14479 -0.33792,-35.67685 -0.45724,-2.97209 -4.11521,-3.42934 -1.14312,-1.82898 0,-1.60037 2.0576,-1.60035 1.37174,-1.37174 0.22863,-3.20072 z", + "OK" : "m 380.34313,320.82146 -16.68418,-1.27331 -0.88022,10.95243 20.46538,1.15688 32.05555,1.3036 -2.3346,24.41865 -0.45725,17.83257 0.22863,1.60036 4.34383,3.65796 2.0576,1.14311 0.68587,-0.22862 0.68587,-2.05761 1.37174,1.82899 2.0576,0 0,-1.37174 2.74347,1.37174 -0.45724,3.88658 4.11521,0.22862 2.51484,1.14312 4.11521,0.68587 2.51485,1.82898 2.28623,-2.0576 3.42934,0.68586 2.51485,3.42934 0.91448,0 0,2.28623 2.28623,0.68586 2.28622,-2.28622 1.82899,0.68586 2.51484,0 0.9145,2.51486 6.30107,2.07897 1.37174,-0.68586 1.82898,-4.11521 1.14311,0 1.14312,2.0576 4.11521,0.68587 3.65795,1.37174 2.9721,0.91449 1.82899,-0.91449 0.68586,-2.51485 4.34383,0 2.0576,0.91449 2.74347,-2.05761 1.14312,0 0.68587,1.60036 4.1152,0 1.60036,-2.0576 1.82899,0.45724 2.0576,2.51486 3.20071,1.82897 3.20073,0.9145 1.94108,1.11893 -0.3891,-37.21701 -1.37175,-10.97398 -0.16046,-8.87234 -1.43989,-6.53773 -0.7782,-7.17964 -0.0681,-3.81622 -12.13684,0.31874 -46.41004,-0.45724 -45.03891,-2.05762 -24.2912,-1.37173 z", + "TX" : "m 361.46423,330.57358 22.69079,1.08594 31.09269,1.14312 -2.33461,23.4558 -0.29676,18.15352 0.0681,2.08179 4.34383,3.81843 1.98665,1.44716 1.18421,-0.55969 0.37337,-1.81772 1.14032,1.80362 2.11164,0.0439 -0.003,-1.44709 1.66994,0.96727 1.1387,0.40887 -0.35927,3.96765 4.08819,0.0935 2.92532,1.19717 3.95474,0.52538 2.38138,2.07898 2.1241,-2.07617 3.72494,0.61491 2.22091,3.22494 1.07496,0.32096 -0.16047,1.96527 2.21361,0.79229 2.33015,-2.0548 2.13302,0.61492 2.22938,0.0355 0.93307,2.43544 6.32809,2.11445 1.59305,-0.76693 1.48947,-4.17771 0.34072,0 0.90649,0.0816 1.22905,2.06863 3.92988,0.66528 3.337,1.12288 3.42563,1.19597 1.84058,-0.975 0.71376,-2.51484 4.45322,0.0442 1.80874,0.93078 2.79925,-2.10651 1.10364,0.0442 0.85104,1.60507 4.05472,0 1.51887,-2.02862 1.86737,0.40724 1.94603,2.40328 3.52057,2.04415 2.85876,0.80981 1.51362,0.79984 2.4467,1.99732 3.04304,-1.32779 2.69109,1.13888 0.56381,6.10594 -0.0398,9.70217 0.68586,9.53401 0.70218,3.60511 2.67533,4.41986 0.89818,4.95073 4.21595,5.53802 0.19602,3.14494 0.74637,0.78584 -0.73007,8.38007 -2.8721,5.0065 1.53297,2.15287 -0.63008,2.33808 -0.66957,7.40432 -1.50432,3.338 0.29488,3.50235 -5.66488,1.58518 -9.86129,4.5265 -0.96996,1.93992 -2.58657,1.93993 -2.10158,1.45494 -1.29329,0.8083 -5.65811,5.3348 -2.74823,2.10159 -5.3348,3.2332 -5.65811,2.42491 -6.30476,3.39487 -1.77826,1.45495 -5.81978,3.55653 -3.39487,0.64664 -3.87985,5.49645 -4.04151,0.32333 -0.96997,1.93992 2.26325,1.93993 -1.45495,5.49645 -1.29328,4.5265 -1.13162,3.87985 -0.8083,4.52649 0.8083,2.42491 1.77826,6.9514 0.96997,6.14309 1.77826,2.74823 -0.96996,1.45495 -3.07155,1.93992 -5.65812,-3.87985 -5.49645,-1.13162 -1.29329,0.48498 -3.23321,-0.64664 -4.20317,-3.07155 -5.17313,-1.13162 -7.59805,-3.39487 -2.10158,-3.87986 -1.29329,-6.46641 -3.2332,-1.93993 -0.64665,-2.26325 0.64665,-0.64664 0.32332,-3.39487 -1.29329,-0.64664 -0.64664,-0.96996 1.29328,-4.36484 -1.6166,-2.26324 -3.23321,-1.29329 -3.39487,-4.36483 -3.55653,-6.62808 -4.20317,-2.58657 0.16166,-1.93992 -5.3348,-12.2862 -0.8083,-4.20317 -1.77826,-1.93992 -0.16166,-1.45495 -5.98144,-5.33479 -2.58657,-3.07155 0,-1.13163 -2.58657,-2.10158 -6.78974,-1.13163 -7.43638,-0.64664 -3.07155,-2.26324 -4.52649,1.77826 -3.55653,1.45495 -2.26325,3.2332 -0.96996,3.7182 -4.36483,6.14309 -2.42491,2.42491 -2.58657,-0.96996 -1.77826,-1.13163 -1.93993,-0.64664 -3.87985,-2.26324 0,-0.64665 -1.77826,-1.93992 -5.17314,-2.10159 -7.43638,-7.7597 -2.26325,-4.68815 0,-8.08303 -3.23321,-6.46642 -0.48498,-2.74822 -1.6166,-0.96997 -1.13163,-2.10158 -5.01147,-2.10159 -1.29328,-1.6166 -7.11307,-7.92137 -1.29328,-3.23321 -4.68816,-2.26325 -1.45495,-4.36487 -2.58659,-2.90987 -1.93991,-0.48496 -0.64923,-4.67764 8.00187,0.68589 29.03499,2.74345 29.03508,1.60036 2.23353,-19.46182 3.88655,-55.55502 1.60039,-18.74732 1.37174,0.0286 m 99.02935,229.66274 -0.56581,-7.11308 -2.74824,-7.19392 -0.56582,-7.03225 1.53578,-8.24471 3.31406,-6.87059 3.4757,-5.41565 3.1524,-3.55655 0.64664,0.2425 -4.769,6.6281 -4.36484,6.54728 -2.02077,6.62809 -0.32332,5.17316 0.88913,6.14312 2.58658,7.19392 0.48498,5.17314 0.16166,1.45496 -0.88913,0.24248 z", + "NM" : "m 288.15255,424.01315 -0.77541,-4.7481 8.64378,0.5254 30.17176,2.9459 27.26816,1.68989 2.21527,-18.70747 3.85736,-55.87597 1.73768,-19.38923 1.5717,0.12856 0.8254,-11.16339 -104.00445,-10.63595 -17.49735,120.43481 15.46067,1.98915 1.29328,-10.02295 29.23215,2.82935 z", + "KS" : "m 507.88059,324.38028 -12.61826,0.20443 -46.08909,-0.45723 -44.55748,-2.05763 -24.62974,-1.25741 3.89379,-64.59497 22.08346,0.67517 40.28913,0.8414 44.30124,0.98758 5.09563,0 2.1844,2.1624 2.01766,-0.0214 1.6403,1.01247 -0.0625,3.00923 -1.82898,1.72537 -0.33225,2.23217 1.84308,3.40233 2.95236,3.19506 2.32735,1.61446 1.30077,11.24082 0.18913,36.08573 z", + "NE" : "m 486.09787,240.70058 3.23061,7.01991 -0.12863,2.30252 3.45922,5.49388 2.71929,3.15234 -5.04948,0 -43.48256,-0.93868 -40.78686,-0.8903 -22.25222,-0.78387 1.07277,-21.32785 -32.31824,-2.92025 4.34383,-44.00986 15.54633,1.02881 20.11879,1.1431 17.83257,1.14312 23.77676,1.14311 10.74526,-0.45724 2.0576,2.28622 4.80108,2.9721 1.14311,0.91449 4.34383,-1.37174 3.88659,-0.45724 2.74347,-0.22863 1.82898,1.37174 4.05743,1.60036 2.97209,1.60036 0.45725,1.60036 0.91449,2.0576 1.82898,0 0.79798,0.0462 0.89423,4.68182 2.92026,8.46792 0.57253,3.75671 2.52349,3.77425 0.56959,5.11414 1.60724,4.24037 0.25234,6.47426 z", + "SD" : "m 476.44687,204.02465 -0.0474,-0.58087 -2.89571,-4.84544 1.86023,-4.71211 1.49273,-5.88654 -2.78187,-2.07971 -0.38516,-2.74346 0.7924,-2.55435 3.18851,0.0152 -0.12308,-5.00614 -0.3333,-30.17425 -0.61773,-3.76758 -4.07232,-3.33093 -0.98263,-1.67696 -0.0625,-1.60882 2.02212,-1.5294 1.53222,-1.66567 0.24496,-2.65679 -58.25709,-1.60035 -54.79921,-3.44909 -5.32527,63.69119 14.59027,0.9038 19.94985,1.20561 17.74305,0.92859 23.77676,1.30358 11.9827,-0.42464 1.9663,2.24518 5.19464,3.25335 0.76389,0.72275 4.54144,-1.45281 6.54054,-0.61491 1.6753,1.33627 4.20451,1.59613 2.94506,1.63583 0.39898,1.48381 1.03949,2.24088 2.23737,-0.20136 z", + "ND" : "m 475.30528,128.91846 -0.61491,-8.43367 -1.67695,-6.81592 -1.89149,-13.02422 -0.45724,-10.987026 -1.73946,-3.077142 -1.75661,-5.194396 0.0312,-10.44427 0.62336,-3.824087 -1.8341,-5.467761 -28.64225,-0.564027 -18.59095,-0.646642 -26.51232,-1.293284 -22.94634,-2.133869 -6.99324,67.176834 54.93224,3.34365 58.06901,1.38583 z", + "WY" : "m 360.37668,143.27587 -106.7426,-13.45706 -14.08348,88.45803 113.26461,13.58549 7.56147,-88.58646 z", + "MT" : "M 369.20952,56.969133 338.5352,54.1613 l -29.26055,-3.55653 -29.26054,-4.041512 -32.3321,-5.334795 -18.42929,-3.39487 -32.72365,-6.932736 -4.47902,21.347532 3.42934,7.544541 -1.37174,4.572452 1.82898,4.572451 3.20073,1.371739 4.62082,10.769453 2.6951,3.176523 0.45724,1.143118 3.42934,1.143118 0.45725,2.057593 -7.0873,17.603953 0,2.51485 2.51485,3.20071 0.91448,0 4.80107,-2.97209 0.68588,-1.14312 1.60036,0.68587 -0.22863,5.25832 2.74348,12.57425 2.97209,2.51484 0.91448,0.68587 1.82899,2.28622 -0.45725,3.42935 0.68587,3.42933 1.14312,0.9145 2.28622,-2.28623 2.74347,0 3.20072,1.60036 2.51485,-0.91449 4.11521,0 3.65795,1.60036 2.74348,-0.45725 0.45724,-2.9721 2.97209,-0.68586 1.37174,1.37174 0.45725,3.20071 1.42587,0.83464 1.88695,-11.03474 106.74567,13.42892 8.80221,-86.299157 z", + "CO" : "m 380.03242,320.96457 4.90324,-86.32496 -113.38856,-12.64396 -12.21382,87.93916 120.69914,11.02976 z", + "ID" : "m 148.47881,176.48395 8.77087,-35.22072 1.37174,-4.22952 2.51484,-5.94418 -1.25742,-2.28623 -2.51486,0.11431 -0.80017,-1.0288 0.45725,-1.14311 0.34292,-3.08641 4.45815,-5.48695 1.82898,-0.45724 1.14311,-1.14311 0.57156,-3.20072 0.91448,-0.68586 3.88659,-5.82988 3.88659,-4.34383 0.22862,-3.772268 -3.42934,-2.629163 -1.53555,-4.400983 13.62491,-63.341691 13.51759,2.528111 -4.40808,21.383013 3.56035,7.485352 -1.58111,4.66084 1.96985,4.641233 3.13822,1.255191 3.83534,9.556588 3.51269,4.437154 0.50725,1.143118 3.34095,1.143118 0.36885,2.097075 -6.97101,17.376092 -0.16518,2.56593 2.63112,3.3217 0.90508,-0.0489 4.91129,-3.0256 0.67742,-1.09497 1.56231,0.65886 -0.27844,5.35372 2.73925,12.58271 3.91783,3.17791 1.68118,2.16545 -0.71661,4.08386 1.06622,2.80741 1.06163,1.09128 2.47929,-2.35142 2.84816,0.0489 2.91925,1.3352 2.78002,-0.68193 3.79426,-0.16048 3.9789,1.60036 2.74348,-0.29676 0.49674,-3.03731 2.93259,-0.76483 1.26017,1.51591 0.44093,2.94496 1.42434,1.21321 -8.386,53.60866 c 0,0 -87.96599,-16.70061 -94.95939,-18.20435 z", + "UT" : "m 259.49836,310.10509 -83.74903,-11.87225 20.58761,-112.54135 46.78031,8.74514 -1.4848,10.63042 -2.31162,13.17266 7.80769,0.92837 16.40652,1.80479 8.21097,0.85564 -12.24765,88.27658 z", + "AZ" : "m 144.9112,382.62909 -2.62701,2.15833 -0.32332,1.45495 0.48498,0.96996 18.91427,10.66959 12.12454,7.59804 14.7111,8.56801 16.81269,10.02295 12.2862,2.42491 24.95116,2.70491 17.25561,-119.12707 -83.73563,-11.91725 -3.09239,16.41246 -1.60629,0.0153 -1.71467,2.62916 -2.51485,-0.11432 -1.25742,-2.74347 -2.74347,-0.34293 -0.9145,-1.14311 -0.91448,0 -0.9145,0.57156 -1.94329,1.0288 -0.1143,6.97298 -0.22864,1.71467 -0.57154,12.57424 -1.48605,2.17191 -0.57156,3.31503 2.74347,4.91539 1.25742,5.82988 0.80019,1.0288 1.0288,0.57156 -0.11432,2.28622 -1.60035,1.37173 -3.42934,1.71467 -1.94329,1.9433 -1.48605,3.65795 -0.57156,4.91539 -2.85778,2.74347 -2.0576,0.68587 0.13569,0.82988 -0.45725,1.71467 0.45725,0.80018 3.65796,0.57154 -0.57156,2.74348 -1.48605,2.17191 -3.77227,0.91449 z", + "NV" : "m 196.39273,185.57552 -23.63891,128.82275 -1.83224,0.34915 -1.57276,2.40618 -2.37294,0.0107 -1.47195,-2.74347 -2.61847,-0.37842 -0.77092,-1.10763 -1.03783,-0.054 -2.77837,1.64429 -0.31026,6.78548 -0.36209,5.77717 -0.34857,8.59281 -1.4471,2.08916 -2.43892,-1.07403 -69.079886,-104.20119 18.989116,-67.58491 93.0921,20.66601 z", + "OR" : "m 148.72184,175.53153 8.8497,-34.80151 1.05079,-4.22952 2.35437,-5.62323 -0.61551,-1.16288 -2.51486,-0.0462 -1.2816,-1.6707 0.45724,-1.46407 0.50341,-3.24688 4.45815,-5.48695 1.82898,-1.09915 1.14311,-1.14311 1.48604,-3.56563 4.04706,-5.6694 3.56563,-3.8624 0.22862,-3.451314 -3.26886,-2.468682 -1.78341,-4.642625 -12.66377,-3.61197 -15.08909,-3.54365 -15.43202,0.114306 -0.45724,-1.371729 -5.48695,2.057604 -4.45814,-0.571559 -2.40054,-1.600361 -1.25742,0.685875 -4.68676,-0.228632 -1.71467,-1.371729 -5.25832,-2.057604 -0.800182,0.114316 -4.34383,-1.486056 -1.943291,1.828983 -6.172812,-0.342927 -5.944183,-4.115209 0.685865,-0.80018 0.228621,-7.773173 -2.286225,-3.886577 -4.115208,-0.571559 -0.685865,-2.514847 -2.353932,-0.466565 -5.798525,2.058784 -2.263247,6.466418 -3.233209,10.022949 -3.23321,6.466419 -5.011474,14.064461 -6.466419,13.579473 -8.083023,12.60952 -1.939926,2.90989 -0.808302,8.568 0.386095,12.08023 112.578342,26.32133 z", + "WA" : "m 102.07324,7.6117734 4.36483,1.4549443 9.69963,2.7482283 8.568,1.939925 20.0459,5.658117 22.95579,5.658116 15.22312,3.207173 -13.63236,63.585811 -12.445,-3.525318 -15.50801,-3.570679 -15.22929,0.03324 -0.45557,-1.344699 -5.59922,2.179293 -4.59543,-0.736744 -2.14697,-1.584054 -1.31321,0.657976 -4.73566,-0.140243 -1.69836,-1.349633 -5.26304,-2.112303 -0.734971,0.146918 -4.389122,-1.524448 -1.893298,1.817379 -6.265906,-0.298733 -5.925698,-4.125702 0.778957,-0.932763 0.121223,-7.677452 -2.281999,-3.839701 -4.115208,-0.60704 -0.67741,-2.510616 -2.275512,-0.456932 -3.554948,1.230576 -2.263247,-3.219247 0.323321,-2.909889 2.748228,-0.323321 1.616605,-4.041511 -2.586568,-1.131624 0.161661,-3.718191 4.364833,-0.646641 -2.748228,-2.748228 -1.454945,-7.113061 0.646642,-2.909888 0,-7.921363 -1.778265,-3.23321 2.263247,-9.376307 2.101586,0.484981 2.424907,2.909889 2.748228,2.586567 3.233209,1.939926 4.526493,2.101586 3.071551,0.646642 2.909889,1.454944 3.394873,0.969963 2.263246,-0.16166 0,-2.424908 1.293284,-1.131623 2.101582,-1.293284 0.32333,1.131624 0.32332,1.778265 -2.263251,0.484981 -0.323321,2.101586 1.778262,1.454945 1.13163,2.424907 0.64664,1.939925 1.45494,-0.16166 0.16166,-1.293284 -0.96996,-1.293284 -0.48498,-3.233209 0.8083,-1.778265 -0.64664,-1.454944 0,-2.263247 1.77827,-3.55653 -1.13163,-2.586568 -2.42491,-4.8498139 0.32333,-0.8083023 1.13162,-0.8083024 z m -9.456692,5.9789646 2.020764,-0.16166 0.484982,1.374119 1.535779,-1.616615 2.344082,0 0.808303,1.535779 -1.53578,1.69744 0.646652,0.808313 -0.727477,2.020761 -1.374119,0.404146 c 0,0 -0.889138,0.08084 -0.889138,-0.242485 0,-0.323321 1.454955,-2.586578 1.454955,-2.586578 l -1.69744,-0.565817 -0.323321,1.454954 -0.727478,0.646642 -1.535782,-2.263257 -0.484982,-2.505742 z", + "CA" : "m 144.69443,382.19813 3.94008,-0.48862 1.48604,-2.01144 0.54454,-2.94109 -3.55152,-0.59012 -0.51417,-0.66822 0.4775,-2.03231 -0.15928,-0.58967 1.92257,-0.61959 3.04278,-2.83268 0.58156,-4.9951 1.3799,-3.40211 1.94329,-2.16626 3.51887,-1.58967 1.65439,-1.60483 0.0687,-2.10884 -0.99333,-0.58001 -1.02315,-1.07273 -1.15522,-5.84845 -2.6852,-4.83009 0.56581,-3.505 -2.41958,-1.02931 -69.061322,-104.1784 18.902112,-67.60149 -67.079863,-15.69796 -1.506896,4.73324 -0.161661,7.43638 -5.173135,11.80121 -3.071548,2.58657 -0.323321,1.13162 -1.778266,0.80831 -1.454944,4.20317 -0.808302,3.23321 2.748228,4.20317 1.616605,4.20317 1.131623,3.55653 -0.323321,6.46642 -1.778265,3.07155 -0.646642,5.81978 -0.969963,3.71819 1.778265,3.87985 2.748228,4.52649 2.263247,4.84982 1.293283,4.04151 -0.32332,3.23321 -0.323321,0.48498 0,2.10158 5.658116,6.30476 -0.484981,2.42491 -0.646642,2.26325 -0.646642,1.93992 0.16166,8.24469 2.101586,3.71819 1.939926,2.58656 2.748228,0.48499 0.969963,2.74822 -1.131623,3.55653 -2.101587,1.61661 -1.131623,0 -0.808302,3.87985 0.484981,2.90989 3.23321,4.36483 1.616604,5.3348 1.454944,4.68815 1.293284,3.07155 3.39487,5.81978 1.454944,2.58656 0.484982,2.90989 1.616604,0.96996 0,2.42491 -0.808302,1.93993 -1.778265,7.11306 -0.484982,1.93992 2.424908,2.74823 4.203172,0.48498 4.526493,1.77827 3.879851,2.10158 2.909889,0 2.909888,3.07155 2.586567,4.84982 1.131624,2.26324 3.879851,2.10159 4.849814,0.8083 1.454944,2.10159 0.646642,3.23321 -1.454944,0.64664 0.323321,0.96996 3.233211,0.8083 2.748228,0.16167 3.159889,-1.68685 3.879854,4.20317 0.808302,2.26325 2.586572,4.20317 0.32332,3.23321 0,9.37631 0.48498,1.77826 10.02295,1.45495 19.72257,2.74822 13.84504,1.3497 z m -88.135212,-43.71668 1.293288,1.53578 -0.16166,1.29329 -3.233221,-0.0808 -0.565814,-1.21246 -0.646644,-1.45495 3.314051,-0.0808 z m 1.939932,0 1.212458,-0.64664 3.556543,2.10159 3.07156,1.21245 -0.889136,0.64666 -4.526509,-0.2425 -1.61661,-1.61661 -0.808306,-1.45495 z m 20.692614,19.80348 1.778265,2.34408 0.808313,0.96997 1.535779,0.56581 0.565807,-1.45495 -0.969963,-1.77827 -2.667403,-2.02076 -1.050798,0.16166 0,1.21246 z m -1.454955,8.64886 1.778276,3.15239 1.212458,1.93994 -1.454954,0.24248 -1.293284,-1.21245 c 0,0 -0.727477,-1.45495 -0.727477,-1.85911 0,-0.40414 0,-2.18242 0,-2.18242 l 0.484981,-0.0808 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/jQuery-Mapael/js/maps/world_countries.js b/lib/jQuery-Mapael/js/maps/world_countries.js new file mode 100644 index 000000000..cd0e4e7b9 --- /dev/null +++ b/lib/jQuery-Mapael/js/maps/world_countries.js @@ -0,0 +1,212 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of World by country +* +* @source http://backspace.com/mapapp/javascript_world/ +*/ + +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + world_countries : { + width : 1000, + height : 400, + getCoords : function (lat, lon) { + var xfactor = 2.752; + var xoffset = 473.75; + var x = (lon * xfactor) + xoffset; + + var yfactor = -2.753; + var yoffset = 231; + var y = (lat * yfactor) + yoffset; + + return {x : x, y : y}; + }, + 'elems': { + "AE" : "M615.622,164.177l0.582,0.000l0.000,0.580l2.324,-0.289l2.326,0.000l1.455,0.000l2.033,-1.743l2.034,-1.743l1.745,-1.742l0.583,0.871l0.291,2.324l-1.456,0.000l-0.289,1.742l0.581,0.291l-1.163,0.580l0.000,1.161l-0.873,1.162l0.000,1.162l-0.580,0.580l-8.430,-1.452l-0.872,-2.613l0.291,0.871z", + "AF" : "M642.364,132.815l2.617,1.162l2.034,-0.291l0.581,-1.452l2.325,-0.291l1.454,-0.870l0.583,-2.323l2.326,-0.291l0.580,-1.162l1.164,0.871l0.871,0.000l1.453,0.000l2.035,0.582l0.871,0.290l2.036,-0.872l0.872,0.582l0.872,-1.162l1.745,0.000l0.289,-0.291l0.290,-1.161l1.455,-1.161l1.454,0.871l-0.291,0.871l0.581,0.000l0.000,2.323l0.873,0.872l1.161,-0.581l1.162,-0.291l1.744,-1.162l1.745,0.290l2.909,0.000l0.580,0.582l-1.743,0.290l-1.454,0.581l-2.907,0.291l-3.197,0.580l-1.454,1.161l0.581,1.162l0.289,1.452l-1.450,1.161l0.289,1.162l-0.872,0.871l-2.616,0.000l1.161,1.743l-1.742,0.580l-1.162,1.743l0.000,1.743l-0.875,0.580l-1.160,0.000l-2.036,0.290l-0.292,0.581l-2.034,0.000l-1.452,1.742l-0.291,2.323l-3.488,1.161l-2.035,-0.289l-0.581,0.580l-1.455,-0.291l-2.907,0.291l-4.649,-1.452l2.615,-2.323l-0.289,-1.742l-2.036,-0.581l-0.290,-1.743l-0.873,-2.032l1.163,-1.742l-1.163,-0.291l0.873,-2.032l-1.161,3.485z", + "AL" : "M530.451,115.973l-0.289,0.871l0.289,1.161l1.165,0.581l0.000,0.872l-0.873,0.291l-0.292,0.869l-1.160,1.453l-0.583,-0.291l0.000,-0.580l-1.454,-0.871l-0.292,-1.452l0.292,-1.742l0.292,-0.872l-0.584,-0.580l0.000,-0.872l1.163,-1.162l0.292,0.291l0.582,0.000l0.581,0.581l0.582,0.290l-0.289,-1.162z", + "AM" : "M593.82,118.005l3.780,-0.580l0.581,0.870l0.871,0.291l-0.289,0.872l1.452,0.871l-0.871,0.871l1.163,0.871l1.162,0.290l0.000,2.032l-0.873,0.000l-1.163,-1.451l0.000,-0.581l-1.160,0.000l-0.873,-0.581l-0.582,0.000l-1.162,-0.871l-2.036,-0.580l0.292,-1.452l0.292,0.872z", + "AO" : "M518.825,247.227l0.582,2.032l0.871,1.453l0.581,0.87l0.874,1.452h2.033l0.873-0.581l1.452,0.581l0.582-0.871l0.581-1.451l1.744-0.291v-0.29h1.452l-0.289,0.871h3.488v1.742l0.579,1.161l-0.579,1.453l0.29,1.74l0.873,1.162v3.195l0.581-0.292h1.162l1.745-0.29h1.161l0.291,0.871l-0.291,1.452l0.583,1.161l-0.292,1.161v0.873h-5.524l-0.289,8.711l2.034,2.322l1.745,1.744l-5.232,1.161l-6.396-0.582l-2.033-1.161h-11.047l-0.581,0.291l-1.745-1.161l-1.743-0.292l-1.455,0.581l-1.452,0.581l-0.29-1.742l0.581-2.612l0.871-2.324v-1.161l0.874-2.613l0.871-1.163l1.452-1.742l0.873-1.16l0.292-2.033v-1.451l-0.874-1.162l-0.871-1.742l-0.581-1.452v-0.581l0.872-1.161l-0.872-2.613l-0.291-1.742l-1.455-1.741l0.292-0.582l1.163-0.581l0.581,0.291l1.162-0.581L518.825,247.227zM508.071,246.646l-0.874,0.291l-0.581-2.031l1.163-1.163l0.87-0.581l0.874,0.871l-0.874,0.58l-0.578,0.872V246.646z", + "AR" : "M293.546,382.836h-2.616l-1.454-0.87h-1.745h-2.907v-6.389l1.163,1.45l1.163,2.033l3.779,1.744l3.778,0.58L293.546,382.836zM295,291.656l1.452,2.033l1.163-2.323l3.198,0.29l0.291,0.581l5.232,4.356l2.326,0.29l3.198,2.033l2.906,1.161l0.291,1.162l-2.617,4.354l2.617,0.58l3.197,0.581l2.326-0.581l2.326-2.032l0.582-2.322l1.163-0.58l1.454,1.45v2.324l-2.325,1.45l-1.745,1.163l-3.198,2.612l-3.779,3.777l-0.582,2.321l-0.872,2.613l0.291,2.905l-0.872,0.58v1.741l-0.29,1.452l3.487,2.323l-0.291,2.033l1.745,1.161l-0.291,1.162l-2.616,3.773l-4.07,1.455l-5.522,0.579l-2.907-0.29l0.582,1.451l-0.582,2.033l0.291,1.452l-1.454,0.871l-2.907,0.58l-2.616-1.161l-1.163,0.871l0.583,2.613l1.744,0.872l1.452-0.872l0.873,1.453l-2.617,0.87l-2.035,1.743l-0.582,2.613l-0.58,1.451h-2.617l-2.035,1.451l-0.873,2.033l2.617,2.032l2.615,0.582l-0.872,2.613l-3.197,1.452l-1.744,3.194l-2.616,1.161l-1.163,1.163l0.872,2.902l2.035,1.742l-1.163-0.291l-2.617-0.29l-6.685-0.58l-1.163-1.453v-2.03h-1.744l-0.873-0.873l-0.291-2.904l2.035-1.161l0.873-1.741l-0.292-1.453l1.455-2.323l0.872-3.775l-0.291-1.451l1.452-0.58l-0.29-1.162l-1.454-0.289l0.873-1.162l-1.162-1.162l-0.582-3.194l1.164-0.581l-0.582-3.193l0.582-2.904l0.872-2.613l1.453-0.87l-0.581-2.615l-0.292-2.613l2.326-1.742l-0.29-2.323l1.744-2.613v-2.613l-0.873-0.58l-1.163-4.646l1.744-2.904l-0.291-2.612l0.872-2.614l2.035-2.324l1.744-1.741l-0.872-1.163l0.582-0.87v-4.646l2.907-1.451l1.163-2.613l-0.291-0.872l2.034-2.324L295,291.656z", + "AT" : "M520.57,98.549l-0.292,1.162l-1.453,0.000l0.582,0.581l-1.164,1.742l-0.291,0.580l-2.616,0.000l-1.162,0.582l-2.326,-0.291l-4.069,-0.580l-0.582,-0.872l-2.615,0.292l-0.291,0.580l-1.746,-0.291l-1.452,0.000l-1.162,-0.581l0.289,-0.581l0.000,-0.580l0.873,-0.291l1.452,0.871l0.292,-0.871l2.326,0.291l2.034,-0.581l1.452,0.000l0.584,0.581l0.290,-0.291l-0.290,-1.742l0.872,-0.580l1.162,-1.162l2.035,0.871l1.453,-1.162l0.871,0.000l2.326,0.581l1.163,0.000l1.455,0.581l-0.292,0.291l-0.292,-0.870z", + "AU" : "M874.039,343.054l2.616,0.871l1.454-0.29l2.325-0.581l1.453,0.291l0.291,3.193l-0.87,0.872l-0.293,2.321l-1.162-0.579l-1.744,1.741h-0.582l-1.743-0.289l-1.745-2.324l-0.289-1.742l-1.744-2.323l0.29-1.451L874.039,343.054zM868.806,268.715l1.163,2.324l1.744-1.163l0.873,1.163l1.452,1.161l-0.289,1.161l0.58,2.324l0.291,1.45l0.873,0.29l0.579,2.323l-0.289,1.453l0.871,1.741l3.198,1.453l1.744,1.451l2.034,1.161l-0.582,0.581l1.745,1.742l0.87,2.904l1.165-0.581l1.163,1.452l0.581-0.581l0.579,2.904l2.036,1.742l1.163,1.161l2.034,2.033l0.873,2.322v1.452v1.742l1.163,2.323v2.323l-0.582,1.452l-0.581,2.323v1.742l-0.582,2.033l-1.162,2.322l-2.034,1.453l-1.163,2.031l-0.872,1.453l-0.872,2.322l-0.871,1.451l-0.873,2.033l-0.292,1.743v0.87l-1.452,1.163h-3.198l-2.326,1.159l-1.452,1.163l-1.454,1.161l-2.325-1.45l-1.743-0.293l0.289-1.45l-1.452,0.58l-2.325,1.744l-2.326-0.581l-1.743-0.582h-1.454l-2.616-0.871l-1.744-1.743l-0.582-2.032l-0.58-1.452l-1.456-1.162l-2.614-0.29l0.873-1.161l-0.581-2.033l-1.455,1.744l-2.326,0.579l1.455-1.452l0.292-1.74l1.161-1.453l-0.291-2.032l-2.324,2.612l-1.745,0.873l-0.873,2.03l-2.323-1.161l0.29-1.452l-1.744-1.741l-1.455-1.161l0.583-0.581l-3.779-1.743h-1.744l-2.616-1.45l-4.942,0.29l-3.778,0.871l-2.907,1.162l-2.615-0.292l-2.908,1.451l-2.616,0.581l-0.289,1.452l-1.163,1.161h-2.325l-1.744,0.291l-2.325-0.581l-2.036,0.29l-2.034,0.291l-1.455,1.452l-0.871-0.291l-1.452,0.871l-1.163,0.873h-2.036h-2.034l-2.906-1.744l-1.452-0.58v-1.742l1.452-0.291l0.581-0.58l-0.29-1.161l0.58-1.743l-0.29-1.741l-1.454-2.614l-0.579-1.742v-1.452l-0.873-1.743l-0.29-0.87l-1.163-1.162l-0.292-2.033l-1.454-2.323l-0.579-1.161l1.163,1.161l-0.874-2.321l1.455,0.58l0.873,1.161v-1.451l-1.454-2.033l-0.292-0.87l-0.582-0.872l0.29-1.742l0.584-0.581l0.289-1.451l-0.289-1.453l1.162-2.032l0.292,2.032l1.161-1.743l2.034-1.159l1.454-1.162l2.034-0.872l1.454-0.29l0.581,0.29l2.325-0.871l1.455-0.29l0.579-0.58l0.582-0.291h1.744l2.616-0.871l1.745-1.161l0.579-1.452l1.744-1.452v-1.162v-1.45l2.036-2.324l1.163,2.324l1.163-0.292l-0.871-1.45l0.871-1.453l1.163,0.871l0.289-2.322l1.454-1.162l0.58-1.162l1.454-0.58v-0.581l1.163,0.291l0.291-0.872l1.163-0.291l1.163-0.289l2.034,1.161l1.743,1.742h1.453l1.744,0.291l-0.581-1.742l1.454-2.032l1.163-0.873l-0.291-0.581l1.162-1.452l1.744-1.161l1.165,0.291l2.323-0.291v-1.452l-2.034-0.87l1.453-0.58l2.035,0.869l1.453,1.163l2.326,0.581l0.581-0.29l1.744,0.87l1.744-0.87l0.871,0.29l0.872-0.581l1.164,1.451l-0.873,1.453l-0.872,1.16h-0.873l0.292,1.162l-0.873,1.452l-1.163,1.161l0.292,0.872l2.325,1.452l2.034,0.87l1.454,0.871l2.034,1.742h0.581l1.452,0.582l0.582,0.87l2.617,1.161l1.745-1.161l0.581-1.452l0.581-1.161l0.29-1.452l0.873-2.322l-0.291-1.161v-0.872l-0.291-1.452l0.291-2.322l0.581-0.29l-0.29-1.163l0.581-1.451l0.582-1.452v-0.872l1.163-0.869l0.58,1.45l0.291,1.743l0.581,0.291l0.291,1.16l0.871,1.163l0.292,1.74L868.806,268.715z", + "AZ" : "M597.6,121.78l0.873,0.581h1.16v0.581l1.163,1.451l-2.033-0.29l-1.163-1.453l-0.582-0.871H597.6zM604.285,117.715h1.165l0.29-0.581l1.744-1.162l1.452,1.452l1.453,2.033h1.165l0.87,0.871h-2.325l-0.292,2.322l-0.579,0.873l-0.873,0.58v1.452l-0.582,0.291l-1.743-1.453l0.871-1.451l-0.871-0.871l-0.872,0.291l-3.488,2.032v-2.032l-1.162-0.291l-1.163-0.871l0.871-0.871l-1.452-0.871l0.289-0.871l-0.871-0.291l-0.581-0.871l0.581-0.29l2.034,0.581l1.454,0.29l0.582-0.29l-1.455-1.453l0.582-0.29h0.873L604.285,117.715z", + "BA" : "M526.091,107.552l0.871,0.000l-0.581,1.161l1.455,1.162l-0.582,1.161l-0.581,0.291l-0.582,0.290l-0.872,0.581l-0.291,1.451l-2.614,-1.161l-0.874,-1.161l-1.162,-0.581l-1.163,-0.871l-0.579,-0.872l-1.454,-1.451l0.581,-0.872l1.162,0.581l0.582,-0.581l1.163,0.000l2.325,0.291l2.033,0.000l-1.163,-0.581z", + "BD" : "M728.989,170.275l-0.292,2.033l-0.871,-0.291l0.291,2.033l-0.872,-1.452l-0.292,-1.452l-0.290,-1.162l-1.163,-1.742l-2.615,0.000l0.289,1.161l-0.873,1.453l-1.161,-0.581l-0.581,0.581l-0.582,-0.292l-1.164,-0.289l-0.290,-2.324l-1.160,-2.032l0.579,-1.742l-1.744,-0.582l0.582,-1.160l1.743,-0.873l-2.034,-1.451l1.163,-2.032l2.034,1.451l1.454,0.000l0.291,2.032l2.616,0.291l2.327,0.000l1.743,0.291l-1.454,2.324l-1.163,0.289l-0.872,1.452l1.454,1.452l0.581,-1.742l0.872,0.000l-1.454,-4.356z", + "BE" : "M482.78,89.837l2.034,0.000l2.617,-0.580l1.745,1.451l1.452,0.582l-0.290,1.742l-0.583,0.291l-0.290,1.451l-2.615,-1.161l-1.162,0.000l-2.036,-1.162l-1.163,-1.161l-1.452,0.000l-0.293,-0.872l-2.036,0.581z", + "BF" : "M465.919,204.54l-1.744,-0.872l-1.452,0.291l-0.872,0.581l-1.164,-0.581l-0.579,-0.871l-1.165,-0.582l-0.290,-1.741l0.873,-1.161l0.000,-0.871l2.034,-2.324l0.291,-1.742l0.872,-0.871l1.452,0.581l1.163,-0.581l0.291,-0.872l2.035,-1.161l0.582,-0.871l2.617,-1.162l1.452,-0.290l0.582,0.581l2.035,0.000l-0.292,1.161l0.292,1.162l1.453,2.033l0.291,1.161l3.198,0.581l-0.291,2.032l-0.583,0.872l-1.161,0.290l-0.584,1.162l-0.870,0.290l-2.616,0.000l-1.163,-0.290l-0.872,0.290l-1.163,0.000l-4.942,0.000l0.000,1.452l-0.290,-2.323z", + "BG" : "M536.265,109.294l0.581,1.162l1.164,-0.291l2.035,0.581l4.071,0.000l1.452,-0.581l3.196,-0.581l2.035,0.872l1.454,0.290l-1.163,1.161l-1.163,2.033l0.872,1.452l-2.324,-0.290l-2.907,0.871l0.000,1.452l-2.326,0.000l-2.034,-0.872l-2.326,0.872l-2.036,-0.290l0.000,-1.743l-1.452,-0.871l0.290,-0.292l-0.290,-0.289l0.580,-0.871l1.164,-0.871l-1.454,-1.162l-0.290,-1.161l-0.871,0.581z", + "BI" : "M554.579,243.451l-0.290,-3.484l-0.583,-1.161l1.743,0.290l0.874,-1.743l1.454,0.291l0.000,0.871l0.582,0.871l0.000,0.872l-0.582,0.580l-1.163,1.454l-0.872,0.870l1.163,-0.289z", + "BJ" : "M481.037,213.833l-2.037,0.290l-0.872,-2.033l0.290,-6.388l-0.579,-0.289l-0.291,-1.454l-0.872,-0.871l-0.873,-0.871l0.582,-1.452l0.870,-0.290l0.584,-1.162l1.161,-0.290l0.583,-0.872l1.161,-0.871l0.874,0.000l2.034,1.453l0.000,1.160l0.580,1.453l-0.580,1.160l0.291,0.873l-1.454,1.452l-0.582,0.871l-0.581,1.743l0.000,1.741l0.289,-4.647z", + "BN" : "M787.998,218.479l1.163,-0.872l2.324,-1.741l0.000,1.451l-0.291,1.743l-1.163,0.000l-0.580,0.870l1.453,1.451z", + "BO" : "M300.812,291.656l-3.197,-0.290l-1.163,2.323l-1.452,-2.033l-3.781,-0.582l-2.033,2.324l-2.036,0.582l-1.163,-4.065l-1.453,-2.906l0.872,-2.612l-1.453,-1.163l-0.291,-2.031l-1.454,-2.033l1.745,-2.904l-1.163,-2.324l0.582,-0.869l-0.582,-0.872l1.163,-1.452l0.000,-2.323l0.290,-2.033l0.582,-0.873l-2.326,-4.355l2.035,0.000l1.163,0.000l0.872,-0.870l2.326,-0.872l1.453,-1.162l3.487,-0.580l-0.289,2.031l0.289,1.163l0.000,1.743l2.909,2.612l3.196,0.290l0.872,1.162l2.035,0.581l1.163,0.872l1.744,0.000l1.453,0.580l0.000,1.743l0.582,0.871l0.000,1.162l-0.582,0.000l0.872,3.195l5.233,0.000l-0.291,1.740l0.291,0.873l1.453,0.871l0.872,1.742l-0.581,2.032l-0.873,1.453l0.291,1.451l-0.872,0.580l0.000,-0.871l-2.615,-1.451l-2.616,0.000l-4.652,0.871l-1.453,2.324l0.000,1.451l-1.163,3.485l0.291,0.581z", + "BR" : "M315.056,314.017l3.778,-3.777l3.198,-2.613l1.745,-1.163l2.325,-1.450l0.000,-2.324l-1.454,-1.450l-1.162,0.580l0.580,-1.742l0.292,-1.454l0.000,-1.741l-1.163,-0.290l-0.872,0.290l-1.163,0.000l-0.290,-1.162l-0.291,-2.613l-0.291,-0.581l-2.035,-0.871l-1.163,0.581l-2.907,-0.581l0.291,-3.776l-0.872,-1.452l0.872,-0.580l-0.291,-1.451l0.873,-1.453l0.581,-2.032l-0.872,-1.742l-1.453,-0.871l-0.291,-0.873l0.291,-1.740l-5.233,0.000l-0.872,-3.195l0.582,0.000l0.000,-1.162l-0.582,-0.871l0.000,-1.743l-1.453,-0.580l-1.744,0.000l-1.163,-0.872l-2.035,-0.581l-0.872,-1.162l-3.196,-0.290l-2.909,-2.612l0.000,-1.743l-0.289,-1.163l0.289,-2.031l-3.487,0.580l-1.453,1.162l-2.326,0.872l-0.872,0.870l-1.163,0.000l-2.035,0.000l-1.744,0.292l-1.163,-0.292l0.292,-4.066l-2.326,1.453l-2.616,0.000l-0.872,-1.453l-1.744,0.000l0.581,-1.451l-1.744,-1.451l-1.163,-2.614l0.872,-0.581l0.000,-1.162l1.744,-0.581l-0.290,-1.451l0.581,-1.162l0.291,-1.161l3.198,-2.034l2.033,-0.289l0.583,-0.580l2.324,0.290l1.163,-7.551l0.291,-1.161l-0.582,-1.743l-1.162,-0.871l0.000,-2.033l1.453,-0.581l0.582,0.290l0.291,-0.871l-1.745,-0.290l0.000,-1.742l5.233,0.000l0.871,-0.871l0.873,0.871l0.582,1.452l0.581,-0.290l1.452,1.451l2.036,-0.289l0.580,-0.582l2.036,-0.870l1.162,-0.291l0.291,-1.162l2.035,-0.871l-0.291,-0.581l-2.324,-0.289l-0.292,-1.744l0.000,-1.741l-1.163,-0.872l0.582,0.000l2.034,0.290l2.326,0.582l0.581,-0.582l2.035,-0.580l3.198,-0.871l0.872,-1.162l-0.291,-0.580l1.453,-0.291l0.582,0.582l-0.290,1.451l0.872,0.290l0.580,1.161l-0.580,1.162l-0.582,2.324l0.582,1.451l0.291,1.162l1.743,1.162l1.454,0.290l0.290,-0.581l0.872,0.000l1.163,-0.581l0.871,-0.871l1.454,0.290l0.872,0.000l1.454,0.291l0.290,-0.581l-0.581,-0.581l0.291,-0.870l1.163,0.289l1.162,-0.289l1.745,0.581l1.161,0.581l0.873,-0.873l0.582,0.292l0.290,0.581l1.453,0.000l0.872,-1.162l0.872,-2.034l1.745,-2.323l0.872,-0.290l0.581,1.452l1.744,4.936l1.453,0.291l0.000,2.032l-2.034,2.323l0.872,0.872l4.942,0.290l0.000,2.904l2.034,-2.033l3.489,1.163l4.650,1.741l1.163,1.453l-0.290,1.451l3.197,-0.872l5.232,1.453l4.070,0.000l4.069,2.322l3.780,3.196l2.034,0.582l2.326,0.289l0.872,0.870l1.162,3.485l0.291,1.452l-1.162,4.646l-1.163,1.742l-4.070,3.775l-1.744,3.194l-2.035,2.323l-0.581,0.290l-0.873,2.034l0.291,4.936l-0.872,4.357l-0.290,1.742l-0.873,1.162l-0.581,3.774l-2.615,3.483l-0.583,2.906l-2.034,1.161l-0.872,1.453l-2.907,0.000l-4.360,1.160l-1.745,1.162l-3.197,0.871l-3.198,2.324l-2.325,2.613l-0.581,2.032l0.581,1.452l-0.581,2.904l-0.581,1.163l-2.035,1.742l-2.907,4.645l-2.325,2.323l-2.036,1.162l-1.162,2.615l-1.744,1.740l-0.872,-1.740l1.163,-1.164l-1.454,-2.032l-2.325,-1.451l-2.907,-1.743l-0.872,0.000l-2.907,-2.033l1.744,-0.292z", + "BS" : "M260.408,165.628h-0.872l-0.581-1.452l-1.163-0.871l0.872-1.743l0.581,0.291l1.164,2.033V165.628zM259.536,157.788l-2.907,0.581l-0.291-1.162l1.454-0.29l1.744,0.29V157.788zM261.86,157.788l-0.58,2.032l-0.583-0.29l0.291-1.451l-1.453-1.162v-0.291L261.86,157.788z", + "BT" : "M726.082,154.594l1.163,0.871l0.000,1.742l-2.326,0.000l-2.326,-0.290l-1.744,0.581l-2.615,-1.162l0.000,-0.581l1.743,-2.033l1.454,-0.580l2.035,0.580l1.453,0.000l-1.163,-0.872z", + "BW" : "M544.405,281.784l0.582,0.580l0.870,1.742l2.907,2.903l1.455,0.292l0.000,0.870l0.580,1.744l2.326,0.579l1.745,1.162l-4.071,2.033l-2.324,2.032l-0.871,1.742l-0.874,1.161l-1.452,0.293l-0.584,1.161l-0.289,0.870l-1.744,0.582l-2.327,0.000l-1.162,-0.872l-1.162,-0.290l-1.454,0.580l-0.582,1.453l-1.452,0.870l-1.164,1.162l-2.033,0.290l-0.582,-0.872l0.289,-1.741l-1.741,-2.613l-0.874,-0.580l0.000,-7.843l2.908,-0.289l0.000,-9.582l2.033,-0.291l4.361,-0.871l0.871,1.162l1.744,-1.162l0.874,0.000l1.743,-0.582l0.291,0.291l-1.163,-2.034z", + "BY" : "M538.301,82.579l2.907,0.000l2.908,-0.872l0.578,-1.452l2.326,-1.162l-0.290,-1.160l1.745,-0.291l2.906,-1.162l2.908,0.581l0.290,0.872l1.454,-0.291l2.615,0.581l0.289,1.161l-0.578,0.871l1.743,1.743l1.163,0.581l-0.292,0.290l2.036,0.580l0.872,0.872l-1.163,0.580l-2.326,-0.290l-0.581,0.290l0.871,0.872l0.583,2.033l-2.328,0.000l-0.870,0.580l-0.290,1.451l-0.873,-0.289l-2.615,0.000l-0.583,-0.581l-1.162,0.581l-1.163,-0.291l-2.036,-0.290l-3.196,-0.581l-2.615,-0.291l-2.035,0.291l-1.746,0.581l-1.163,0.000l0.000,-1.161l-0.871,-1.162l1.453,-0.582l0.000,-1.161l-0.582,-0.870l0.289,1.452z", + "BZ" : "M228.433,181.89l0.000,-0.290l0.290,-0.290l0.582,0.580l0.872,-1.742l0.580,0.000l0.000,0.290l0.581,0.000l-0.289,0.872l-0.292,1.162l0.292,0.289l-0.292,1.162l0.000,0.291l-0.290,1.161l-0.582,0.872l-0.291,0.000l-0.581,0.870l-0.872,0.000l0.292,-2.903l0.000,2.324z", + "CA" : "M298.487,102.905l2.035,0.291h2.617l-1.454,1.162l-0.872,0.29l-3.488-1.162l-0.873-1.161l1.163-0.872L298.487,102.905zM303.719,95.937h-1.454l-3.488-0.872l-2.616-1.162l0.872-0.291l3.779,0.581l2.616,1.162L303.719,95.937zM133.669,97.679l-1.163,0.291l-4.651-1.162l-0.872-1.162l-2.324-0.871l-0.582-0.871l-2.907-0.581l-0.872-1.452V91.29l2.907,0.581l1.744,0.58l2.617,0.291l0.872,0.872l1.454,1.162l2.615,1.162L133.669,97.679zM319.125,91.581l-1.744,2.323l1.744-0.871l2.035,0.581l-1.163,0.871l2.617,0.873l1.163-0.582l2.906,0.871l-0.872,1.742l1.744-0.291l0.292,1.452l0.872,1.742l-1.164,2.323h-1.162l-1.744-0.29l0.582-2.323l-0.872-0.29l-3.198,2.323h-1.453l1.744-1.452l-2.617-0.581h-2.907h-5.232l-0.58-0.872l1.744-0.871l-1.164-0.871l2.326-1.451l2.906-4.356l1.745-1.743l2.325-0.87h1.163l-0.582,0.87L319.125,91.581zM108.38,82.289l2.616-0.291l-0.58,3.195l2.324,2.323h-1.163l-1.744-1.453l-0.871-1.161l-1.454-0.871l-0.582-1.162l0.291-0.871L108.38,82.289zM255.466,59.928l-0.872,1.453l-1.453-0.291l-0.582-0.58v-0.291l1.163-0.872h1.163L255.466,59.928zM248.198,58.477l-3.197,1.451h-1.744l-0.581-0.581l2.034-1.452h3.779L248.198,58.477zM239.478,50.346l0.291,1.161l1.454-0.29l1.744,0.581l2.906,1.162l3.198,0.871l0.29,1.162l2.035-0.29l1.745,0.871l-2.326,0.872l-4.361-0.581l-1.453-1.161l-2.617,1.452l-4.069,1.451l-0.872-1.742l-3.779,0.291l2.325-1.162l0.291-2.323l1.163-2.613L239.478,50.346zM265.058,46.28l-3.198,0.291l-0.58-1.453l1.162-1.451l2.326-0.581l2.326,0.871v1.161l-0.291,0.292L265.058,46.28zM210.41,40.763l-1.744,1.162l-3.488-0.872l-2.325,0.291l-3.779-1.162l2.325-0.872l2.035-1.162l2.907,0.581l1.744,0.581l0.581,0.581L210.41,40.763zM224.653,39.891v2.614l3.488-2.032l3.197,1.742l-0.581,2.033l2.616,2.032l2.907-2.032l2.035-2.324v-3.195l4.069,0.292l4.07,0.29l3.488,1.452l0.291,1.452l-2.035,1.452l1.744,1.451l-0.291,1.162l-5.231,2.033l-3.779,0.291l-2.907-0.581l-0.872,1.161l-2.617,2.323l-0.872,1.453l-3.196,1.743l-3.78,0.29l-2.325,1.162l-0.292,1.741l-3.197,0.291l-3.198,2.324l-2.907,2.904l-1.162,2.323l-0.292,3.194l4.07,0.291l1.454,2.614l1.163,2.033l3.779-0.582l5.232,1.453l2.616,0.871l2.035,1.452l3.489,0.582l2.907,1.162l4.651,0.29l2.906,0.291l-0.581,2.323l0.872,2.614l2.035,3.194l4.07,2.613l2.326-0.871l1.452-2.903l-1.452-4.357l-2.035-1.452l4.36-1.162l3.197-2.033l1.455-1.742l-0.292-2.032l-1.744-2.324L257.5,69.22l3.489-2.904l-1.162-2.323l-1.163-4.355l2.034-0.582l4.651,0.582l2.907,0.29l2.326-0.581l2.616,0.872l3.198,1.451l0.872,1.162l4.941,0.291v2.323l0.872,3.484l2.616,0.291l1.745,1.742l4.07-1.742l2.616-2.904l1.744-1.161l2.325,2.323l3.488,3.484l3.198,3.195l-1.163,1.742l3.487,1.742l2.616,1.451l4.36,0.872l1.744,0.871l1.163,2.324l2.035,0.29l1.163,0.872l0.291,3.194l-2.035,1.161l-2.035,0.872l-4.65,0.871l-3.198,2.323l-4.942,0.582l-5.814-0.582h-4.07h-2.906l-2.326,2.033l-3.488,1.162l-3.779,3.775l-3.197,2.613l2.325-0.58l4.36-3.486l5.814-2.322l4.069-0.291l2.326,1.162l-2.616,2.032l0.872,2.905l0.872,2.032l3.779,1.452l4.361-0.581l2.906-2.903l0.292,2.032l1.744,0.871l-3.489,1.742l-6.104,1.743l-2.616,1.161l-3.198,2.033l-2.034-0.291l-0.29-2.323l4.94-2.324h-4.36l-3.197,0.291l-1.744-1.452v-3.775l-1.163-0.87l-2.035,0.581l-0.872-0.581l-2.035,2.032l-0.873,2.033l-0.872,1.162l-1.162,0.58h-0.872l-0.292,0.871h-5.232h-4.07l-1.163,0.581l-2.907,1.743l-0.291,0.29l-0.872,1.162h-2.616h-2.616l-1.454,0.291l0.582,0.581l0.291,0.871l-0.291,0.291l-3.488,1.453l-2.907,0.29l-3.197,1.452h-0.581l-0.872-0.29l-0.292-0.581v-0.29l0.581-0.873l1.163-1.451l0.872-1.742l-0.58-2.323l-0.583-2.613l-2.906-1.162l0.581-0.581l-0.581-0.29h-0.581l-0.583-0.291l-0.29-0.871l-0.583,0.291h-0.58v-0.291l-0.582-0.291l-0.291-0.58l-2.035-0.871l-2.326-0.872l-2.616-1.162l-2.617-1.161l-2.326,0.87h-0.872l-3.488-0.581l-2.325,0.291l-2.616-0.871l-2.907-0.291l-1.744-0.291l-0.871-0.581l-0.582-1.452h-0.873v1.161h-5.813h-9.302h-9.302h-8.43h-8.138h-8.14h-8.43h-2.616h-8.139h-7.849h-0.582l-5.231-2.613l-2.036-1.452l-4.941-0.871l-1.454-2.614l0.291-1.742l-3.488-1.161l-0.291-2.033l-3.488-2.033v-1.452l1.454-1.452v-1.743l-4.65-1.742l-2.908-2.903l-1.744-2.033l-2.616-1.162l-1.744-1.162l-1.454-1.451l-2.616,0.871L95.3,68.93l-2.326-1.741l-2.035-1.162l-2.616-0.872h-2.616V49.475V39.311l5.232,0.581l4.069,1.453h2.907l2.616-0.871l3.198-0.871l4.07,0.29l4.069-1.162l4.651-0.87l1.744,1.162l2.035-0.581l0.872-1.452l1.744,0.29l4.651,2.613l3.778-1.742l0.292,2.033l3.487-0.581l0.872-0.872l3.487,0.292l4.071,1.161l6.395,0.871l3.779,0.582l2.907-0.291l3.488,1.452l-3.779,1.453l4.94,0.581l7.559-0.291l2.325-0.581l2.906,1.742l2.908-1.451l-2.616-1.162l1.744-0.871l3.196-0.291l2.326-0.29l2.035,0.871l2.907,1.452l3.197-0.291l4.65,1.162l4.361-0.291h4.07l-0.291-1.742l2.326-0.581l4.36,1.162v2.614l1.744-2.324h2.035l1.454-2.614l-3.198-1.742l-3.196-1.162l0.291-2.903l3.198-2.033l3.778,0.29l2.617,1.453l3.779,2.904l-2.326,1.451L224.653,39.891zM159.54,29.728l-1.453,1.453l6.104-0.871l3.779,1.451l3.197-1.451l2.617,0.871l2.035,2.613l1.454-1.161l-1.745-2.615l2.327-0.581l2.615,0.581l3.198,1.162l1.744,2.613l0.872,2.033l4.651,1.162l4.941,1.452l-0.29,1.162l-4.651,0.29l1.744,0.872l-0.873,1.162l-4.941-0.581l-4.651-0.581h-3.198l-5.231,1.162l-6.977,0.291l-4.941,0.29l-1.454-1.452l-3.778-0.58l-2.617,0.29l-3.198-2.323l1.744-0.291l4.36-0.29h3.778l3.488-0.291l-5.233-0.871l-5.813,0.291h-4.069l-1.454-1.162l6.396-0.871h-4.07l-4.941-0.872l2.325-2.033l2.036-1.162l7.267-1.452L159.54,29.728zM185.993,29.147l-2.326,1.742l-4.361-2.032l1.163-0.291h3.488L185.993,29.147zM263.604,30.018l0.291,0.582h-2.907h-2.906l-3.197,0.29l-0.582-0.29l-3.198-1.452l0.291-0.872l1.163-0.291l6.396,0.291L263.604,30.018zM235.409,29.728l2.325,1.743l2.326-2.323l6.977-0.872l4.941,2.614l-0.582,2.033l5.523-0.871l2.616-1.162l6.104,1.451l3.78,1.162l0.29,1.162l5.233-0.581l2.906,1.742l6.687,1.162l2.326,1.161l2.616,2.614l-5.233,1.162l6.687,1.742l4.359,0.582l3.779,2.613l4.36,0.29l-0.872,1.743l-4.651,3.194l-3.488-1.162l-4.36-2.613l-3.488,0.291l-0.291,1.742l2.907,1.452l3.778,1.452l0.872,0.581l2.036,2.904l-1.164,1.743l-3.488-0.582l-6.685-2.323l3.779,2.323l2.906,1.743l0.292,0.871l-7.268-0.871l-6.104-1.743l-3.198-1.161l0.872-0.871l-4.07-1.451l-4.07-1.453v0.871l-7.848,0.582L257.5,53.25l1.745-2.033h5.232l5.814-0.291l-1.163-0.871l1.163-1.452l3.488-2.613l-0.872-1.162l-0.873-1.162l-4.36-1.162l-5.522-1.161l1.743-0.581l-2.907-1.742h-2.325l-2.326-1.162l-1.453,0.87l-4.942,0.292l-9.883-0.581l-5.814-0.581l-4.651-0.582l-2.325-0.871l2.908-1.451h-3.78l-0.872-2.615l2.036-2.613l2.906-0.87l6.977-0.872L235.409,29.728zM197.62,27.985l3.198,0.582l4.942-0.582l0.582,0.872l-2.617,1.452l4.361,1.162l-0.582,2.323l-4.361,1.162l-2.907-0.291l-1.744-0.871l-6.976-2.323l0.29-0.871l5.523,0.29l-3.196-1.742L197.62,27.985zM217.096,30.89l-2.907,2.033h-3.197l-1.454-2.613v-1.452l1.454-1.162l2.616-0.581h5.814l5.232,0.871l-4.069,2.324L217.096,30.89zM142.099,34.665l-7.267,1.162l-1.453-1.162l-6.396-1.452l1.455-1.162l1.743-2.033l2.326-1.742l-2.615-1.742l9.301-0.29l4.07,0.581h6.976l2.616,0.871l2.907,1.162l-3.488,0.87l-6.686,1.743l-3.488,2.032V34.665zM216.224,24.792l-1.744,1.162l-3.778-0.291l-3.489-0.871l1.453-1.162l4.07-0.58l2.326,0.871L216.224,24.792zM202.562,19.855l2.035,1.452l0.291,1.452l-1.454,2.033l-4.36,0.291l-2.908-0.582v-1.452h-4.65v-2.033h2.906l4.07-0.871l4.07,0.291V19.855zM175.819,21.307l1.163,1.162l2.324-0.582l2.907,0.291l0.582,1.161l-1.745,1.453l-9.301,0.291l-6.977,1.162h-4.07l-0.291-0.873l5.523-1.16l-12.208,0.29l-4.07-0.29l3.779-2.904l2.616-0.581l7.848,0.871l4.942,1.453l4.651,0.29l-3.779-2.613l2.326-0.871l2.907,0.29L175.819,21.307zM213.026,18.984l3.198,0.872h5.523l2.326,0.871l-0.582,1.161l2.906,0.582l1.744,0.58h3.779l4.069,0.29l4.361-0.58l5.522-0.29l4.651,0.29l2.907,0.871l0.582,1.162l-1.744,0.871l-4.07,0.582l-3.488-0.291l-7.848,0.291h-5.813l-4.36-0.291l-7.268-0.871l-0.872-1.453l-0.582-1.451l-2.617-1.162l-5.814-0.291l-3.196-0.871l1.163-1.162L213.026,18.984zM154.018,17.532l-0.582,2.033l-2.035,0.871l-2.616,0.29l-4.941,1.161l-4.65,0.291l-3.488-0.582l4.651-2.032l5.523-1.742h4.36L154.018,17.532zM215.351,17.823h-1.163l-5.231-0.291l-0.582-0.581h5.522l1.744,0.581L215.351,17.823zM170.586,17.243l-5.232,0.87l-4.071-0.87l2.326-0.873l3.779-0.29l4.07,0.29L170.586,17.243zM172.04,14.919l-3.488,0.291H163.9v-0.291l2.907-0.872l1.453,0.29L172.04,14.919zM210.12,16.37l-4.07,0.581l-2.326-0.87l-1.163-0.871l-0.291-1.162h3.488l1.744,0.29l3.198,0.872L210.12,16.37zM198.201,15.499l1.163,1.162l-4.361-0.291l-4.65-0.871h-6.104l2.616-0.871l-3.198-0.581l-0.291-1.162l5.524,0.291l7.266,1.161L198.201,15.499zM234.246,12.015l3.198,0.871l-3.779,0.582l-4.942,2.322h-4.942l-5.813-0.291l-2.907-1.162v-0.87l2.325-0.872h-4.941l-3.198-0.872l-1.744-1.162l2.034-1.161l1.744-0.871l2.907-0.291l-1.163-0.581l6.395-0.29l3.489,1.452l4.651,0.871l4.36,0.29L234.246,12.015zM285.116,2.432l7.558,0.29l5.813,0.291l4.942,0.58v0.873l-6.685,1.161l-6.687,0.581l-2.616,0.582h6.104L287.15,8.53l-4.651,0.581l-4.651,2.324l-5.813,0.58l-1.744,0.581l-8.139,0.291l3.778,0.291l-2.035,0.58l2.326,1.162l-2.616,1.162l-4.36,0.581l-1.162,1.162l-3.779,0.871l0.291,0.581h4.65v0.581l-7.267,1.741l-7.268-0.871l-7.848,0.291l-4.361-0.291h-4.941l-0.581-1.452l5.231-0.581l-1.454-2.033h1.744l7.268,1.162l-3.779-1.742l-4.36-0.582l2.326-1.162l4.651-0.581l0.872-0.871l-3.779-1.162l-1.163-1.451h7.558l2.034,0.29l4.361-0.87l-6.105-0.291h-9.883L227.85,8.53l-2.325-1.162l-3.197-0.581l-0.582-1.162l4.07-0.291l3.197-0.29l5.232-0.291l4.07-1.162l3.488,0.291l2.906,0.582l2.327-1.453l3.487-0.291l4.942-0.29l8.429-0.291l1.454,0.291l7.849-0.291h6.104L285.116,2.432z", + "CD" : "M558.648,221.382l-0.289,3.196l1.162,0.289l-0.873,0.871l-0.871,0.872l-1.163,1.451l-0.581,1.161l-0.291,2.324l-0.582,0.871l0.000,2.324l-0.871,0.580l0.000,1.742l-0.290,0.290l-0.293,1.453l0.583,1.161l0.290,3.484l0.581,2.324l-0.290,1.452l0.290,1.742l1.744,1.452l1.455,3.485l-1.163,-0.290l-3.490,0.581l-0.873,0.290l-0.873,1.742l0.873,1.161l-0.580,3.195l-0.293,2.904l0.584,0.291l2.035,1.160l0.581,-0.581l0.289,2.904l-2.033,0.000l-1.163,-1.451l-0.872,-1.162l-2.325,-0.291l-0.581,-1.452l-1.745,0.873l-2.036,-0.291l-0.871,-1.452l-1.743,-0.291l-1.454,0.291l0.000,-0.872l-1.164,-0.290l-1.161,0.000l-1.745,0.290l-1.162,0.000l-0.581,0.292l0.000,-3.196l-0.873,-1.162l-0.290,-1.740l0.579,-1.453l-0.579,-1.161l0.000,-1.743l-3.488,0.000l0.289,-0.871l-1.452,0.000l0.000,0.290l-1.745,0.291l-0.581,1.452l-0.582,0.871l-1.452,-0.581l-0.873,0.581l-2.033,0.000l-0.874,-1.452l-0.581,-0.871l-0.871,-1.453l-0.582,-2.032l-8.140,-0.290l-1.162,0.581l-0.581,-0.291l-1.163,0.581l-0.582,-0.871l0.874,-0.291l0.000,-1.161l0.578,-0.872l0.874,-0.580l0.871,0.291l0.873,-0.873l1.452,0.000l0.292,0.582l0.871,0.580l1.744,-1.741l1.456,-1.454l0.870,-0.870l-0.289,-2.033l1.162,-2.903l1.453,-1.162l1.746,-1.452l0.290,-0.871l0.000,-1.162l0.581,-0.871l-0.292,-1.451l0.292,-2.614l0.579,-1.451l0.874,-1.744l0.291,-1.452l0.289,-2.032l0.874,-1.452l1.452,-0.870l2.326,0.870l1.745,1.162l2.033,0.290l2.036,0.580l0.871,-1.742l0.291,-0.290l1.454,0.290l2.907,-1.160l1.163,0.579l0.871,-0.290l0.291,-0.580l1.163,-0.291l2.034,0.291l1.744,0.000l0.873,-0.291l1.743,2.323l1.161,0.291l0.873,-0.291l1.166,0.000l1.450,-0.581l0.874,1.162l-2.325,-2.032z", + "CF" : "M515.918,210.638l2.325,-0.290l0.293,-0.871l0.579,0.291l0.582,0.580l3.488,-1.162l1.163,-1.161l1.454,-0.872l-0.292,-0.870l0.871,-0.291l2.618,0.291l2.617,-1.452l2.034,-2.905l1.452,-1.161l1.744,-0.581l0.292,1.162l1.452,1.742l0.000,1.162l-0.289,1.163l0.000,0.870l0.871,0.870l2.327,1.162l1.452,1.162l0.000,0.871l1.743,1.452l1.163,1.161l0.873,1.743l2.034,0.871l0.292,0.871l-0.873,0.291l-1.744,0.000l-2.034,-0.291l-1.163,0.291l-0.291,0.580l-0.871,0.290l-1.163,-0.579l-2.907,1.160l-1.454,-0.290l-0.291,0.290l-0.871,1.742l-2.036,-0.580l-2.033,-0.290l-1.745,-1.162l-2.326,-0.870l-1.452,0.870l-0.874,1.452l-0.289,2.032l-1.744,-0.290l-2.036,-0.290l-1.452,1.451l-1.455,2.325l-0.289,-0.581l-0.292,-1.453l-1.163,-0.872l-1.161,-1.452l0.000,-0.870l-1.454,-1.452l0.289,-0.870l-0.289,-1.162l0.289,-2.033l0.581,-0.581l-1.455,2.614z", + "CG" : "M509.523,244.033l-0.874,-0.871l-0.870,0.581l-1.163,1.163l-2.325,-2.906l2.035,-1.742l-0.872,-1.743l0.872,-0.580l1.745,-0.291l0.289,-1.451l1.454,1.451l2.616,0.000l0.581,-1.162l0.582,-1.741l-0.291,-2.324l-1.454,-1.452l1.163,-3.194l-0.581,-0.580l-2.036,0.000l-0.871,-1.162l0.291,-1.451l3.488,0.289l2.034,0.581l2.327,0.871l0.289,-1.741l1.455,-2.325l1.452,-1.451l2.036,0.290l1.744,0.290l-0.291,1.452l-0.874,1.744l-0.579,1.451l-0.292,2.614l0.292,1.451l-0.581,0.871l0.000,1.162l-0.290,0.871l-1.746,1.452l-1.453,1.162l-1.162,2.903l0.289,2.033l-0.870,0.870l-1.456,1.454l-1.744,1.741l-0.871,-0.580l-0.292,-0.582l-1.452,0.000l-0.873,0.873l0.871,0.291z", + "CH" : "M500.22,100.292l0.000,0.580l-0.289,0.581l1.162,0.581l1.452,0.000l-0.289,1.162l-1.163,0.290l-2.034,-0.290l-0.583,1.161l-1.453,0.000l-0.291,-0.290l-1.744,0.871l-1.160,0.000l-1.165,-0.581l-0.871,-1.161l-1.454,0.580l0.000,-1.451l2.034,-1.453l0.000,-0.580l1.163,0.291l0.873,-0.582l2.324,0.000l0.582,-0.580l-2.906,-0.871z", + "CI" : "M465.919,217.317l-1.162,0.000l-2.034,-0.580l-1.744,0.000l-3.197,0.580l-2.036,0.581l-2.615,1.162l-0.582,0.000l0.289,-2.323l0.293,-0.291l-0.293,-1.162l-1.162,-1.161l-0.871,-0.290l-0.582,-0.581l0.582,-1.452l-0.291,-1.162l0.000,-0.870l0.581,0.000l0.000,-1.162l-0.290,-0.581l0.290,-0.290l1.162,-0.290l-0.871,-2.323l-0.581,-1.163l0.290,-0.871l0.581,-0.290l0.292,-0.292l0.870,0.582l2.037,0.000l0.582,-0.871l0.581,0.000l0.582,-0.291l0.579,1.162l0.583,-0.290l1.161,-0.292l1.165,0.582l0.579,0.871l1.164,0.581l0.872,-0.581l1.452,-0.291l1.744,0.872l0.874,3.775l-1.164,2.323l-0.872,3.195l1.162,2.323l0.000,-1.161z", + "CL" : "M284.825,375.578v6.389h2.907h1.745l-0.872,1.162l-2.326,0.87l-1.454-0.291l-1.744-0.289l-1.744-0.582l-2.907-0.58l-3.487-1.451l-2.907-1.453l-3.779-3.193l2.326,0.58l3.778,2.033l3.78,0.87l1.453-1.16l0.872-2.033l2.326-1.162L284.825,375.578zM285.987,289.915l1.163,4.065l2.035-0.582l0.291,0.872l-1.163,2.613l-2.907,1.451v4.646l-0.582,0.87l0.872,1.163l-1.744,1.741l-2.035,2.324l-0.872,2.614l0.291,2.612l-1.744,2.904l1.163,4.646l0.873,0.58v2.613l-1.744,2.613l0.29,2.323l-2.326,1.742l0.292,2.613l0.581,2.615l-1.453,0.87l-0.872,2.613l-0.582,2.904l0.582,3.193l-1.164,0.581l0.582,3.194l1.162,1.162l-0.873,1.162l1.454,0.289l0.29,1.162l-1.452,0.58l0.291,1.451l-0.872,3.775l-1.455,2.323l0.292,1.453l-0.873,1.741l-2.035,1.161l0.291,2.904l0.873,0.873h1.744v2.03l1.163,1.453l6.685,0.58l2.617,0.29h-2.617l-1.163,0.581l-2.616,1.162l-0.291,2.612h-1.162l-3.198-0.87l-3.198-2.032l-3.488-1.453l-0.872-1.74l0.872-1.744l-1.454-1.742l-0.291-4.646l1.163-2.614l2.907-2.323l-4.07-0.581l2.617-2.612l0.872-4.357l2.907,0.873l1.453-5.808l-1.744-0.581l-0.872,3.484l-1.744-0.582l0.872-3.773l0.872-5.228l1.454-1.742l-0.872-2.905l-0.291-2.902l1.163-0.29l1.744-4.356l1.744-4.356l1.162-4.064l-0.581-4.065l0.872-2.323l-0.292-3.485l1.744-3.192l0.292-5.518l0.872-5.519l0.871-6.388v-4.356l-0.582-3.774l1.163-0.872l0.872-1.45l1.454,2.032l0.291,2.031l1.454,1.163l-0.872,2.612L285.987,289.915z", + "CM" : "M509.814,224.578l-0.291,0.000l-1.744,0.289l-1.744,-0.289l-1.163,0.000l-4.652,0.000l0.582,-2.034l-1.163,-1.742l-1.163,-0.582l-0.581,-1.160l-0.872,-0.581l0.000,-0.581l0.872,-2.032l1.164,-2.614l0.872,0.000l1.743,-1.743l0.871,0.000l1.746,1.161l1.744,-0.870l0.291,-1.162l0.580,-1.161l0.581,-1.452l1.455,-1.161l0.581,-1.742l0.582,-0.582l0.289,-1.452l0.873,-1.742l2.326,-2.323l0.000,-0.872l0.289,-0.580l-1.163,-0.871l0.292,-0.871l0.582,-0.291l1.162,1.742l0.292,1.743l-0.292,2.032l1.453,2.324l-1.453,0.000l-0.581,0.289l-1.455,-0.289l-0.579,1.161l1.742,1.743l1.165,0.581l0.289,1.161l0.872,1.743l-0.290,0.870l-1.455,2.614l-0.581,0.581l-0.289,2.033l0.289,1.162l-0.289,0.870l1.454,1.452l0.000,0.870l1.161,1.452l1.163,0.872l0.292,1.453l0.289,0.581l-0.289,1.741l-2.327,-0.871l-2.034,-0.581l3.488,0.289z", + "CN" : "M777.533,179.567l-2.325,1.451l-2.326-0.871v-2.323l1.163-1.453l3.196-0.581h1.455l0.581,0.872l-1.163,1.451L777.533,179.567zM825.204,94.194l4.651,0.871l3.488,1.742l0.871,2.614h4.361l2.325-0.872l4.651-0.871l-1.454,2.323l-1.163,1.162l-0.871,2.904l-2.034,2.613l-3.198-0.291l-2.325,0.871l0.581,2.324l-0.29,3.194l-1.454,0.291v1.161l-1.744-1.451l-1.163,1.451l-4.067,1.162l0.289,1.453h-2.325l-1.452-0.872l-1.745,2.032l-3.198,1.453l-2.033,1.742l-3.781,0.871l-2.033,1.162l-3.197,0.871l1.452-1.453l-0.58-1.16l2.325-1.742l-1.455-1.453l-2.324,1.162l-3.197,1.742l-1.745,1.742l-2.615,0.291l-1.452,1.16l1.452,1.743l2.326,0.581v1.162l2.325,0.872l2.906-2.033l2.616,1.162h1.744l0.289,1.452l-3.777,0.871l-1.454,1.452l-2.615,1.453l-1.453,1.742l3.196,1.742l0.872,2.614l1.743,2.613l1.745,2.033v2.033l-1.745,0.581l0.873,1.453l1.455,0.87l-0.292,2.324l-0.873,2.323h-1.452l-2.034,3.194l-2.326,3.484l-2.327,3.195l-3.778,2.613l-4.069,2.323l-2.905,0.291l-1.744,1.162l-0.873-0.871l-1.743,1.452l-3.779,1.451l-2.906,0.291l-0.872,2.904l-1.454,0.29l-0.873-2.033l0.584-1.162l-3.488-0.872l-1.455,0.581l-2.615-0.87l-1.454-0.873l0.581-1.742l-2.615-0.581l-1.452-0.871l-2.328,1.451l-2.615,0.291h-2.034l-1.454,0.58l-1.453,0.582l0.29,2.903h-1.455l-0.289-0.581v-1.161l-2.034,0.87l-1.163-0.581l-2.035-1.162l0.872-2.033l-1.743-0.581l-0.873-2.613l-2.905,0.58l0.29-3.484l2.615-2.323l0.291-2.033l-0.291-2.323l-1.161-0.581l-0.873-1.452h-1.455l-3.194-0.291l1.161-1.161l-1.455-1.743l-2.034,1.162l-2.033-0.581l-3.198,1.742l-2.615,2.033l-2.326,0.29l-1.162-0.872h-1.453l-2.035-0.58l-1.454,0.58l-1.743,2.033l-0.292-2.033l-1.744,0.582L713,154.013l-2.906-0.581l-2.326-1.162l-2.034-0.581l-1.162-1.452l-1.454-0.291l-2.615-1.742l-2.326-0.871l-1.162,0.581l-3.781-2.033l-2.615-1.742l-0.873-2.904l2.036,0.291v-1.453l-1.163-1.161l0.293-2.324l-2.908-3.194l-4.361-1.161l-0.87-2.033l-2.036-1.451l-0.58-0.582l-0.292-1.742v-1.161l-1.743-0.582l-0.874,0.291l-0.579-2.324l0.579-0.871l-0.289-0.581l2.615-1.162l2.036-0.58l2.906,0.291l0.871-1.744l3.489-0.29l1.162-1.162l4.362-1.451l0.289-0.581l-0.289-1.743l2.033-0.581l-2.617-4.646l5.524-1.162l1.452-0.58l2.034-4.938l5.232,0.873l1.744-1.162v-2.904l2.328-0.291l2.033-1.742l1.163-0.29l0.581,2.032l2.326,1.452l4.067,0.872l1.746,2.323l-0.873,3.194l0.873,1.162l3.197,0.582l3.778,0.29l3.488,1.742l1.743,0.291l1.163,2.613l1.455,1.453h3.196l5.522,0.58l3.78-0.291l2.615,0.291l4.069,1.743h3.489l1.162,0.871l3.197-1.451l4.361-0.873l4.359-0.29l3.198-0.871l1.745-1.452l2.033-0.871l-0.581-0.872l-0.873-1.161l1.454-1.742l1.745,0.29l2.614,0.581l2.908-1.452l4.069-1.162l2.034-1.742l2.035-0.872l4.07-0.29l2.034,0.29l0.291-1.162l-2.325-1.741l-2.326-0.872l-2.036,0.872l-2.904-0.291l-1.455,0.291l-0.581-1.162l1.744-2.613l1.453-2.324l3.197,1.162l4.068-1.742v-1.162l2.328-2.903l1.452-0.872v-1.452l-1.452-0.871l2.325-1.162l3.486-0.58h3.491l4.067,0.58l2.617,1.162l1.744,2.903l0.871,1.161l0.874,1.453L825.204,94.194z", + "CO" : "M266.221,231.256l-1.163,-0.582l-1.163,-0.870l-0.871,0.290l-2.326,-0.290l-0.582,-1.161l-0.580,0.000l-2.907,-1.452l-0.291,-0.872l1.162,-0.290l-0.290,-1.451l0.582,-0.873l1.452,-0.289l1.164,-1.744l1.161,-1.452l-1.161,-0.580l0.580,-1.452l-0.580,-2.613l0.580,-0.580l-0.580,-2.325l-1.164,-1.451l0.582,-1.451l0.872,0.289l0.582,-0.871l-0.872,-1.741l0.290,-0.292l1.454,0.000l2.034,-2.031l1.163,-0.291l0.000,-0.872l0.581,-2.322l1.744,-1.162l1.745,0.000l0.000,-0.582l2.325,0.291l2.035,-1.451l1.163,-0.582l1.454,-1.451l0.872,0.290l0.580,0.581l-0.290,0.871l-2.035,0.581l-0.581,1.452l-1.163,0.580l-0.581,1.162l-0.582,2.033l-0.581,1.452l1.453,0.290l0.291,1.161l0.580,0.582l0.292,1.161l-0.292,1.161l0.000,0.581l0.583,0.000l0.872,1.162l3.488,-0.291l1.453,0.291l2.035,2.323l1.163,-0.290l2.034,0.290l1.454,-0.290l0.872,0.290l-0.291,1.452l-0.872,0.871l0.000,2.033l0.581,2.033l0.582,0.580l0.291,0.580l-1.454,1.453l0.872,0.580l0.873,1.162l0.872,2.614l-0.581,0.290l-0.582,-1.452l-0.873,-0.871l-0.871,0.871l-5.233,0.000l0.000,1.742l1.745,0.290l-0.291,0.871l-0.582,-0.290l-1.453,0.581l0.000,2.033l1.162,0.871l0.582,1.743l-0.291,1.161l-1.163,7.551l-1.452,-1.454l-0.582,-0.290l1.744,-2.613l-2.326,-1.452l-1.452,0.290l-1.164,-0.579l-1.453,0.870l-2.035,-0.291l-1.744,-2.903l-1.163,-0.870l-0.872,-1.163l-1.744,-1.452l0.872,-0.291z", + "CR" : "M245.292,208.315l-1.453,-0.580l-0.582,-0.582l0.291,-0.580l0.000,-0.581l-0.872,-0.579l-0.872,-0.582l-1.163,-0.291l0.000,-0.872l-0.872,-0.580l0.291,0.871l-0.582,0.581l-0.581,-0.581l-0.872,-0.291l-0.291,-0.580l0.000,-0.871l0.291,-0.871l-0.872,-0.291l0.581,-0.580l0.581,-0.291l1.745,0.581l0.581,-0.290l0.871,0.290l0.583,0.581l0.872,0.000l0.581,-0.581l0.580,1.452l1.164,1.162l1.162,1.161l-0.872,0.291l0.000,1.161l0.583,0.291l-0.583,0.581l0.291,0.289l-0.291,0.582l0.290,-0.580z", + "CU" : "M247.326,167.081l2.326,0.290l2.326,0.000l2.325,0.871l1.163,1.161l2.616,-0.290l0.873,0.581l2.325,1.743l1.744,1.161l0.871,0.000l1.744,0.581l-0.290,0.871l2.035,0.000l2.325,1.161l-0.581,0.581l-1.744,0.291l-1.745,0.290l-2.035,-0.290l-3.778,0.290l1.743,-1.452l-1.161,-0.871l-1.744,0.000l-0.872,-0.871l-0.582,-1.742l-1.744,0.289l-2.616,-0.870l-0.582,-0.581l-3.779,-0.291l-0.872,-0.581l0.872,-0.580l-2.616,-0.290l-2.034,1.451l-1.163,0.000l-0.292,0.580l-1.452,0.292l-1.163,0.000l1.454,-0.872l0.581,-1.161l1.453,-0.581l1.163,-0.581l2.325,-0.290l-0.581,0.290z", + "CY" : "M567.37,134.557l0.000,0.291l-2.909,1.161l-1.162,-0.581l-0.874,-1.161l1.456,0.000l0.580,0.290l0.582,-0.290l0.582,0.000l0.290,0.290l0.581,0.000l0.581,0.000l-0.293,0.000z", + "CZ" : "M520.57,97.388l-1.455,-0.581l-1.163,0.000l-2.326,-0.581l-0.871,0.000l-1.453,1.162l-2.035,-0.871l-1.744,-1.161l-1.163,-0.582l-0.289,-1.161l-0.584,-0.872l2.036,-0.580l0.871,-0.871l2.036,-0.291l0.581,-0.581l0.871,0.290l1.165,-0.290l1.453,0.872l2.036,0.291l-0.293,0.580l1.454,0.580l0.581,-0.580l1.746,0.290l0.290,0.872l2.034,0.290l1.454,1.161l-0.874,0.000l-0.580,0.582l-0.582,0.000l-0.292,0.581l-0.289,0.289l-0.290,0.291l-0.871,0.290l-1.165,0.000l0.289,-0.581z", + "DE" : "M501.093,79.674l0.000,1.161l2.906,0.582l0.000,0.872l2.617,-0.291l1.744,-0.872l2.907,1.163l1.452,0.870l0.583,1.452l-0.872,0.581l1.163,1.162l0.581,1.452l-0.292,0.870l1.165,1.742l-1.165,0.290l-0.871,-0.290l-0.581,0.581l-2.036,0.291l-0.871,0.871l-2.036,0.580l0.584,0.872l0.289,1.161l1.163,0.582l1.744,1.161l-1.162,1.162l-0.872,0.580l0.290,1.742l-0.290,0.291l-0.584,-0.581l-1.452,0.000l-2.034,0.581l-2.326,-0.291l-0.292,0.871l-1.452,-0.871l-0.873,0.291l-2.906,-0.871l-0.582,0.580l-2.324,0.000l0.290,-2.032l1.455,-1.743l-4.070,-0.580l-1.166,-0.581l0.000,-1.452l-0.579,-0.581l0.290,-1.742l-0.290,-2.904l1.454,0.000l0.871,-1.162l0.581,-2.323l-0.581,-1.161l0.581,-0.581l2.327,0.000l0.582,0.581l1.742,-1.451l-0.581,-0.872l0.000,-1.743l2.035,0.581l-1.744,0.581z", + "DJ" : "M592.368,196.119l0.581,0.871l0.000,1.161l-1.453,0.582l1.161,0.580l-1.161,1.452l-0.583,-0.290l-0.581,0.000l-1.743,0.000l0.000,-0.871l0.000,-0.581l0.871,-1.452l0.872,-1.162l1.164,0.291l-0.872,0.581z", + "DK" : "M508.649,77.933l-1.743,2.323l-2.615-1.452l-0.582-1.162l4.07-0.872L508.649,77.933zM503.708,75.609l-0.581,1.162l-0.871-0.291l-2.036,2.033l0.873,1.161l-1.744,0.582l-2.035-0.582l-1.161-1.451v-2.904l0.289-0.581l0.872-0.871h2.325l1.163-0.871l2.035-0.871v1.453l-0.872,0.87l0.291,0.871L503.708,75.609z", + "DO" : "M276.396,176.664l0.290,-0.291l2.034,0.000l1.744,0.580l0.872,0.000l0.291,0.872l1.454,0.000l0.000,0.871l1.162,0.000l1.454,1.162l-0.872,1.161l-1.453,-0.871l-1.164,0.290l-0.872,-0.290l-0.581,0.581l-1.163,0.290l-0.290,-0.871l-0.873,0.581l-1.161,1.743l-0.872,-0.291l0.000,-0.871l0.000,-0.872l-0.582,-0.580l0.582,-0.582l0.290,-1.161l0.290,1.451z", + "DZ" : "M506.906,166.5l-9.592,5.226l-7.849,5.227l-4.070,1.453l-2.906,0.000l0.000,-1.742l-1.452,-0.291l-1.454,-0.872l-0.873,-1.161l-9.301,-6.098l-9.301,-6.098l-10.176,-6.679l0.000,-0.291l0.000,-0.290l0.000,-3.194l4.361,-2.032l2.906,-0.581l2.036,-0.581l1.162,-1.452l3.197,-1.162l0.000,-2.032l1.744,-0.291l1.162,-0.870l3.782,-0.582l0.289,-0.871l-0.582,-0.580l-0.871,-2.905l-0.291,-1.742l-1.163,-1.742l2.907,-1.452l2.907,-0.581l1.744,-1.161l2.617,-0.872l4.650,-0.289l4.651,-0.291l1.162,0.291l2.615,-1.162l2.911,0.000l1.160,0.871l2.035,-0.290l-0.581,1.451l0.290,2.614l-0.579,2.323l-1.745,1.451l0.290,2.034l2.325,1.742l0.000,0.581l1.745,1.162l1.163,4.936l0.871,2.322l0.000,1.453l-0.291,2.033l0.000,1.451l-0.291,1.452l0.291,1.743l-1.162,1.161l1.744,2.033l0.000,1.162l1.163,1.451l1.163,-0.580l2.035,1.451l-1.452,-1.743z", + "EC" : "M252.85,240.258l1.453,-2.033l-0.581,-1.162l-1.163,1.162l-1.744,-1.162l0.581,-0.581l-0.291,-2.613l0.873,-0.580l0.581,-1.454l0.872,-2.031l0.000,-0.872l1.454,-0.581l1.744,-1.160l2.907,1.452l0.580,0.000l0.582,1.161l2.326,0.290l0.871,-0.290l1.163,0.870l1.163,0.582l0.581,2.324l-0.872,1.741l-3.198,2.904l-3.196,0.871l-1.744,2.613l-0.582,1.742l-1.454,1.162l-1.162,-1.451l-1.163,-0.290l-1.163,0.290l0.000,-1.162l0.873,-0.582l0.291,1.160z", + "EE" : "M540.626,72.125l0.291,-1.743l-0.872,0.290l-1.744,-0.870l-0.291,-1.743l3.489,-0.581l3.488,-0.582l2.906,0.582l2.906,0.000l0.291,0.291l-1.745,1.742l0.582,2.614l-1.163,0.871l-2.034,0.000l-2.614,-1.162l-1.165,-0.290l2.325,-0.581z", + "EG" : "M569.987,149.947l-0.874,0.872l-0.581,2.323l-0.873,1.162l-0.582,0.580l-0.870,-0.871l-1.164,-1.161l-2.034,-4.066l-0.291,0.291l1.163,2.903l1.744,2.904l2.034,4.065l0.873,1.743l0.871,1.452l2.618,2.904l-0.584,0.580l0.000,1.743l3.198,2.613l0.581,0.580l-10.755,0.000l-10.755,0.000l-11.045,0.000l0.000,-10.162l0.000,-9.873l-0.871,-2.324l0.579,-1.451l-0.289,-1.162l0.871,-1.452l3.779,0.000l2.615,0.581l2.615,0.871l1.456,0.580l2.033,-0.870l1.165,-0.872l2.323,-0.290l2.036,0.290l0.872,1.452l0.580,-0.870l2.036,0.580l2.327,0.290l1.161,-0.870l-2.038,-4.935z", + "ER" : "M590.332,196.409l-0.872,-0.871l-1.162,-1.452l-1.163,-1.162l-0.871,-0.870l-2.326,-1.162l-1.744,0.000l-0.873,-0.580l-1.453,0.870l-1.743,-1.452l-0.873,2.033l-3.198,-0.581l-0.290,-0.870l1.161,-4.065l0.291,-2.033l0.874,-0.873l2.035,-0.289l1.454,-1.742l1.452,3.193l0.871,2.614l1.454,1.452l3.779,2.613l1.454,1.453l1.453,1.742l0.871,0.871l1.455,0.871l-0.872,0.581l1.164,0.291z", + "ES" : "M448.769,115.683l0.292,-1.743l-1.163,-1.452l3.778,-1.742l3.489,0.290l3.778,0.000l2.908,0.581l2.324,-0.290l4.362,0.290l1.163,0.871l4.940,1.452l1.163,-0.580l2.907,1.161l3.197,-0.292l0.292,1.454l-2.616,2.032l-3.489,0.580l-0.291,0.872l-1.744,1.451l-1.162,2.324l1.162,1.451l-1.453,1.162l-0.581,1.742l-2.325,0.581l-1.744,2.323l-3.489,0.000l-2.616,0.000l-1.743,0.872l-1.165,1.161l-1.452,-0.291l-0.871,-0.870l-0.874,-1.742l-2.615,-0.291l0.000,-1.162l0.871,-0.871l0.291,-0.871l-0.873,-0.581l0.873,-2.032l-1.162,-1.452l1.162,-0.291l0.000,-1.451l0.582,-0.291l0.000,-2.033l1.163,-0.870l-0.581,-1.452l-1.746,0.000l-0.291,0.290l-1.744,0.000l-0.581,-1.162l-1.163,0.291l1.163,-0.581z", + "ET" : "M578.125,189.73l1.743,1.452l1.453,-0.870l0.873,0.580l1.744,0.000l2.326,1.162l0.871,0.870l1.163,1.162l1.162,1.452l0.872,0.871l-0.872,1.162l-0.871,1.452l0.000,0.581l0.000,0.871l1.743,0.000l0.581,0.000l0.583,0.290l-0.583,1.161l1.163,1.453l0.873,1.452l1.163,0.871l9.010,3.194l2.328,0.000l-7.850,8.421l-3.780,0.000l-2.324,2.033l-1.744,0.000l-0.874,0.870l-1.743,0.000l-1.161,-0.870l-2.618,1.162l-0.581,1.160l-2.036,-0.290l-0.580,-0.290l-0.580,0.000l-0.874,0.000l-3.489,-2.323l-2.033,0.000l-0.873,-0.871l0.000,-1.742l-1.452,-0.290l-1.455,-3.196l-1.454,-0.580l-0.290,-1.161l-1.452,-1.161l-1.746,-0.291l0.872,-1.452l1.455,0.000l0.582,-0.872l0.000,-2.613l0.579,-2.903l1.454,-0.582l0.292,-1.162l1.163,-2.322l1.743,-1.162l0.872,-2.904l0.581,-2.323l3.198,0.581l-0.873,2.033z", + "FI" : "M552.544,41.053l-0.584,2.033l4.363,1.743l-2.617,2.032l3.198,3.194l-1.744,2.324l2.325,2.033l-1.162,1.742l4.069,2.032l-0.871,1.161l-2.617,1.742l-5.814,3.485l-4.941,0.291l-4.941,0.871l-4.362,0.580l-1.744,-1.451l-2.615,-0.871l0.581,-2.614l-1.452,-2.613l1.452,-1.453l2.616,-1.742l6.106,-3.193l2.033,-0.582l-0.289,-1.160l-4.072,-1.162l-0.872,-1.162l0.000,-4.065l-4.361,-2.033l-3.486,-1.452l1.453,-0.581l3.198,1.452l3.488,0.000l2.908,0.581l2.615,-1.162l1.452,-2.032l4.362,-1.162l3.487,1.162l1.162,-2.032z", + "FJ" : "M964.732,278.588l0.873,0.871l-0.292,1.452l-1.744,0.291l-1.452-0.291l-0.292-1.162l0.873-0.87l1.455,0.291L964.732,278.588zM969.382,276.557l-1.741,0.579l-2.036,0.582l-0.292-1.161l1.455-0.291l0.873-0.291l1.741-0.871h-0.01h0.58l-0.29,1.162l-0.29,0.291H969.382z", + "FK" : "M305.173,373.544l3.488,-1.741l2.326,0.870l1.744,-1.161l2.034,1.161l-0.872,0.871l-3.778,0.872l-1.164,-0.872l-2.325,1.162l1.453,1.162z", + "FR" : "M329.008,223.997l-0.873,1.162h-1.453l-0.29-0.581l-0.582-0.292l-0.872,0.873l-1.162-0.581l0.581-1.162l0.291-1.162l0.582-1.161l-1.164-1.742l-0.289-1.743l1.453-2.612l0.872,0.289l2.034,0.872l2.907,2.323l0.582,1.161l-1.744,2.323L329.008,223.997zM500.22,115.102l-1.161,2.033l-1.164-0.582l-0.581-1.742l0.581-1.162l1.744-0.871L500.22,115.102zM483.652,92.451l2.036,1.162h1.162l2.615,1.162l0.581,0.291h0.871l1.165,0.581l4.07,0.58l-1.455,1.744l-0.29,2.032l-0.873,0.581l-1.163-0.291v0.581l-2.033,1.453v1.452l1.453-0.581l0.871,1.162l-0.291,0.871l0.872,1.162l-0.872,0.871l0.582,2.033l1.454,0.291l-0.291,1.162l-2.325,1.452l-5.523-0.581l-4.069,0.872l-0.292,1.741l-3.196,0.292l-2.907-1.162l-1.163,0.58l-4.94-1.452l-1.163-0.872l1.452-1.742l0.582-5.517l-2.907-2.905l-2.034-1.451l-4.36-0.872v-2.033l3.488-0.581l4.651,0.581l-0.872-2.903l2.615,1.162l6.396-2.324l0.87-2.324l2.325-0.29l0.293,0.872h1.452L483.652,92.451z", + "GA" : "M504.291,242l-2.908,-2.904l-1.744,-2.322l-1.744,-2.905l0.291,-0.871l0.582,-0.871l0.581,-2.033l0.582,-2.033l0.871,0.000l4.070,0.000l0.000,-3.483l1.163,0.000l1.744,0.289l1.744,-0.289l0.291,0.000l-0.291,1.451l0.871,1.162l2.036,0.000l0.581,0.580l-1.163,3.194l1.454,1.452l0.291,2.324l-0.582,1.741l-0.581,1.162l-2.616,0.000l-1.454,-1.451l-0.289,1.451l-1.745,0.291l-0.872,0.580l0.872,1.743l2.035,-1.742z", + "GB" : "M458.072,80.835l-1.452,2.033l-2.036-0.58h-1.745l0.582-1.453l-0.582-1.451l2.326-0.291L458.072,80.835zM465.629,69.802l-3.198,2.903l2.907-0.289h2.907l-0.582,2.032l-2.615,2.613h2.907l0.29,0.291l2.325,3.484l2.035,0.291l1.745,3.195l0.581,1.161l3.486,0.291l-0.29,2.033l-1.452,0.58l1.163,1.452l-2.617,1.453h-3.488l-4.94,0.871l-1.164-0.581l-1.744,1.161l-2.616-0.291l-2.034,1.162l-1.453-0.581l4.069-2.904l2.616-0.581l-4.359-0.581l-0.873-0.872l2.906-0.871l-1.454-1.451l0.582-2.033l4.069,0.291l0.291-1.452l-1.744-1.743l-3.488-0.58l-0.582-0.871l0.872-1.162l-0.872-0.581l-1.452,1.162V76.19l-1.454-1.453l0.873-2.904l2.326-2.032h2.033H465.629z", + "GE" : "M588.298,116.844l0.291,-1.161l-0.582,-2.034l-1.743,-0.871l-1.455,-0.580l-1.162,-0.581l0.581,-0.581l2.325,0.581l3.779,0.581l3.780,1.162l0.581,0.580l1.745,-0.580l2.614,0.580l0.581,1.162l1.745,0.871l-0.582,0.290l1.455,1.452l-0.582,0.290l-1.454,-0.290l-2.034,-0.580l-0.581,0.290l-3.780,0.580l-2.615,-1.452l2.907,-0.291z", + "GH" : "M476.676,214.704l-4.361,1.452l-1.452,1.161l-2.617,0.581l-2.327,-0.581l0.000,-1.161l-1.162,-2.323l0.872,-3.195l1.164,-2.323l-0.874,-3.775l-0.290,-2.323l0.000,-1.452l4.942,0.000l1.163,0.000l0.872,-0.290l1.163,0.290l0.000,0.872l0.871,1.161l0.000,2.033l0.292,2.322l0.871,0.872l-0.581,2.613l0.000,1.162l0.872,1.742l-0.582,-1.162z", + "GL" : "M344.996,3.593l9.302,-1.451l9.593,0.000l3.488,-0.871l9.883,-0.291l21.800,0.291l17.442,2.322l-5.232,0.872l-10.465,0.290l-14.824,0.291l1.453,0.289l9.593,-0.289l8.429,0.871l5.232,-0.582l2.326,0.872l-2.907,1.452l6.977,-0.871l13.370,-1.162l8.139,0.581l1.455,1.162l-11.047,2.032l-1.743,0.580l-8.721,0.581l6.395,0.000l-3.196,2.033l-2.326,1.742l0.290,3.195l3.198,1.742l-4.361,0.000l-4.361,0.872l4.943,1.451l0.581,2.323l-2.908,0.291l3.781,2.323l-6.106,0.291l2.906,1.160l-0.871,0.872l-3.780,0.581l-3.777,0.000l3.488,1.742l0.000,1.161l-5.522,-1.161l-1.455,0.871l3.778,0.582l3.488,1.741l1.163,2.324l-4.940,0.580l-2.034,-1.162l-3.489,-1.742l0.871,2.033l-3.197,1.452l7.267,0.000l3.780,0.290l-7.269,2.324l-7.557,2.322l-7.848,0.872l-3.198,0.000l-2.907,0.871l-3.779,2.903l-5.814,2.034l-2.034,0.290l-3.489,0.581l-4.069,0.580l-2.326,1.742l0.000,2.034l-1.453,1.742l-4.360,2.033l0.872,2.323l-1.162,2.323l-1.454,2.613l-3.779,0.000l-4.069,-2.033l-5.524,0.000l-2.615,-1.742l-2.036,-2.614l-4.650,-3.484l-1.454,-1.742l-0.291,-2.324l-3.778,-2.613l0.872,-2.033l-1.744,-0.871l2.617,-3.194l4.359,-1.162l0.872,-1.161l0.582,-2.034l-3.198,0.873l-1.454,0.289l-2.325,0.582l-3.488,-0.871l0.000,-2.034l0.871,-1.452l2.617,0.000l5.523,0.872l-4.651,-1.742l-2.325,-1.162l-2.907,0.581l-2.326,-0.872l3.198,-2.322l-1.744,-1.162l-2.035,-2.033l-3.489,-2.904l-3.488,-0.871l0.000,-1.162l-7.266,-1.742l-5.814,0.000l-7.558,0.000l-6.685,0.290l-3.199,-0.870l-4.649,-1.743l7.266,-0.871l5.523,-0.291l-11.917,-0.580l-6.105,-1.162l0.291,-1.161l10.464,-1.162l10.173,-1.452l0.872,-0.871l-7.266,-1.162l2.326,-1.161l9.592,-1.742l4.070,-0.290l-1.163,-1.162l6.395,-0.872l8.429,-0.289l8.430,0.000l3.199,0.580l7.266,-1.453l6.395,1.162l4.070,0.291l5.523,0.871l-6.395,-1.451l-0.290,1.453z", + "GM" : "M427.549,194.667l0.291,-1.162l2.909,0.000l0.581,-0.581l0.871,0.000l1.163,0.581l0.873,0.000l0.870,-0.581l0.582,0.872l-1.163,0.581l-1.162,0.000l-1.163,-0.581l-1.163,0.581l-0.582,0.000l-0.580,0.581l2.327,0.291z", + "GN" : "M450.514,209.768l-0.871,0.000l-0.582,1.161l-0.581,0.000l-0.582,-0.581l0.290,-1.162l-1.162,-1.741l-0.872,0.290l-0.581,0.000l-0.581,0.290l0.000,-1.161l-0.582,-0.581l0.000,-0.870l-0.581,-1.163l-0.582,-0.871l-2.326,0.000l-0.581,0.580l-0.871,0.000l-0.292,0.581l-0.289,0.582l-1.455,1.451l-1.453,-1.742l-0.873,-1.163l-0.870,-0.289l-0.582,-0.581l-0.291,-1.161l-0.582,-0.582l-0.581,-0.580l1.163,-1.162l0.873,0.000l0.581,-0.580l0.582,0.000l0.580,-0.291l-0.291,-0.871l0.291,-0.291l0.000,-0.871l1.453,0.000l2.036,0.581l0.581,0.000l0.000,-0.290l1.744,0.290l0.289,-0.290l0.293,1.162l0.290,0.000l0.581,-0.582l0.582,0.291l0.871,0.580l1.165,0.291l0.579,-0.580l0.873,-0.582l0.871,-0.290l0.581,0.000l0.582,0.581l0.292,0.871l1.162,1.162l-0.582,0.580l-0.291,1.162l0.582,-0.291l0.581,0.291l-0.290,0.871l0.871,0.581l-0.581,0.290l-0.290,0.871l0.581,1.163l0.871,2.323l-1.162,0.290l-0.290,0.290l0.290,0.581l0.000,1.162l0.581,0.000z", + "GQ" : "M499.931,228.061l-0.582,-0.290l0.871,-3.193l4.652,0.000l0.000,3.483l-4.070,0.000l0.871,0.000z", + "GR" : "M538.882,132.815l1.744,0.871l2.034-0.29l2.033,0.29v0.582l1.455-0.291l-0.292,0.581l-4.067,0.291v-0.291l-3.199-0.581L538.882,132.815zM547.02,116.553l-0.871,1.742l-0.581,0.291h-1.745l-1.454-0.291l-3.196,0.872l1.744,1.451l-1.454,0.291h-1.452l-1.454-1.16l-0.582,0.58l0.582,1.452l1.454,1.453l-0.872,0.58l1.452,1.162l1.455,0.871v1.452l-2.617-0.581l0.873,1.452l-1.745,0.291l0.872,2.323h-1.744l-2.326-1.161l-0.871-2.324l-0.581-1.742l-1.163-1.162l-1.452-1.742v-0.58l1.16-1.453l0.292-0.87l0.873-0.291v-0.871l1.742-0.291l1.164-0.58h1.452l0.582-0.291l0.29-0.29l2.036,0.29l2.325-0.872l2.034,0.872h2.326v-1.452L547.02,116.553z", + "GT" : "M225.816,193.215l-1.453,-0.580l-1.744,0.000l-1.163,-0.581l-1.454,-1.162l0.000,-0.871l0.291,-0.581l-0.291,-0.580l1.164,-2.033l3.487,0.000l0.292,-0.871l-0.582,-0.291l-0.291,-0.581l-1.162,-0.581l-0.872,-0.870l1.163,0.000l0.000,-1.743l2.615,0.000l2.617,0.000l0.000,2.324l-0.292,2.903l0.872,0.000l0.872,0.581l0.292,-0.291l0.872,0.291l-1.455,1.162l-1.161,0.580l-0.292,0.581l0.292,0.581l-0.583,0.580l-0.581,0.291l0.000,0.290l-0.580,0.291l-0.873,0.581l0.000,-0.580z", + "GW" : "M432.201,200.475l-1.452,-1.162l-1.164,0.000l-0.582,-0.871l0.000,-0.291l-0.871,-0.580l-0.292,-0.581l1.453,-0.581l0.874,0.000l0.871,-0.290l4.942,0.290l0.000,0.871l-0.291,0.291l0.291,0.871l-0.580,0.291l-0.582,0.000l-0.581,0.580l-0.873,0.000l1.163,-1.162z", + "GY" : "M309.243,208.025l1.744,0.871l1.744,1.742l0.000,1.452l1.162,0.000l1.453,1.452l1.163,0.873l-0.582,2.613l-1.453,0.579l0.000,0.872l-0.581,1.161l1.453,2.032l0.872,0.000l0.291,1.744l1.744,2.322l-0.872,0.000l-1.454,-0.290l-0.871,0.871l-1.163,0.581l-0.872,0.000l-0.290,0.581l-1.454,-0.290l-1.743,-1.162l-0.291,-1.162l-0.582,-1.451l0.582,-2.324l0.580,-1.162l-0.580,-1.161l-0.872,-0.290l0.290,-1.451l-0.582,-0.582l-1.453,0.291l-2.035,-2.322l0.873,-0.582l0.000,-1.163l1.743,-0.580l0.582,-0.581l-0.872,-0.871l0.290,-1.161l-2.036,1.452z", + "HN" : "M233.374,195.248l-0.291,-0.871l-0.872,-0.291l0.000,-1.162l-0.291,-0.289l-0.582,0.000l-1.161,0.289l0.000,-0.289l-0.872,-0.581l-0.582,-0.581l-0.873,-0.291l0.583,-0.580l-0.292,-0.581l0.292,-0.581l1.161,-0.580l1.455,-1.162l0.289,0.000l0.582,-0.291l0.581,0.000l0.291,0.000l0.582,0.000l1.163,0.291l1.162,-0.291l0.873,-0.290l0.581,-0.290l0.872,0.290l0.581,0.000l0.582,0.000l0.581,-0.290l1.454,0.580l0.289,0.000l0.872,0.582l0.873,0.580l0.871,0.291l0.873,0.870l-1.162,0.000l-0.291,0.291l-0.872,0.291l-0.872,0.000l-0.581,0.290l-0.582,0.000l-0.290,-0.290l-0.291,0.000l-0.291,0.580l-0.291,0.000l0.000,0.581l-1.163,0.871l-0.581,0.291l-0.291,0.289l-0.581,-0.580l-0.581,0.871l-0.582,-0.291l-0.871,0.291l0.290,1.162l-0.581,0.000l-0.291,0.871l0.872,0.000z", + "HR" : "M525.51,104.647l0.871,1.163l0.873,0.870l-1.163,0.872l-1.163,-0.581l-2.033,0.000l-2.325,-0.291l-1.163,0.000l-0.582,0.581l-1.162,-0.581l-0.581,0.872l1.454,1.451l0.579,0.872l1.163,0.871l1.162,0.581l0.874,1.161l2.614,1.161l-0.289,0.580l-2.615,-1.160l-1.746,-0.871l-2.326,-0.871l-2.326,-2.033l0.582,-0.291l-1.453,-1.162l0.000,-0.870l-1.744,-0.291l-0.871,1.161l-0.873,-1.161l0.292,-0.870l1.743,0.000l0.580,-0.291l0.873,0.291l1.163,0.000l0.000,-0.582l0.871,-0.290l0.293,-1.162l2.325,-0.580l0.871,0.290l2.036,1.161l2.325,0.581l-0.871,0.581z", + "HT" : "M272.326,176.083l1.744,0.290l2.326,0.291l0.290,1.451l-0.290,1.161l-0.582,0.582l0.582,0.580l0.000,0.872l-1.745,-0.581l-1.453,0.290l-1.744,-0.290l-1.163,0.581l-1.454,-0.872l0.291,-0.871l2.326,0.291l2.325,0.290l0.872,-0.581l-1.163,-1.161l0.000,-1.161l-1.744,-0.292l-0.582,0.870z", + "HU" : "M518.243,102.034l1.164,-1.742l-0.582,-0.581l1.453,0.000l0.292,-1.162l1.454,0.872l0.871,0.290l2.324,-0.581l0.291,-0.291l1.163,-0.290l1.163,-0.290l0.289,0.000l1.455,-0.290l0.582,-0.581l0.870,-0.291l2.908,0.872l0.582,-0.290l1.452,0.870l0.291,0.581l-1.743,0.581l-1.164,2.034l-1.742,1.741l-2.325,0.581l-1.455,0.000l-2.326,0.580l-0.871,0.581l-2.325,-0.581l-2.036,-1.161l-0.871,-0.290l-0.582,-1.162l0.582,0.000z", + "ID" : "M806.019,259.132h-1.163l-3.488-2.033l2.326-0.289l1.454,0.58l1.162,0.871L806.019,259.132zM816.193,258.842l-2.323,0.581l-0.292-0.291l0.292-0.871l1.16-1.742l2.617-1.16l0.29,0.58l0.29,0.871L816.193,258.842zM798.17,253.326l1.163,0.58l1.745-0.29l0.581,1.161l-3.198,0.582l-1.745,0.58l-1.743-0.291l1.162-1.451h1.455L798.17,253.326zM812.123,253.326l-0.579,1.451l-4.072,0.871l-3.486-0.58v-0.871l2.034-0.581l1.745,0.871l1.743-0.29L812.123,253.326zM772.881,249.55l5.232,0.29l0.582-1.161l4.94,1.452l1.163,1.742l4.07,0.58l3.487,1.452l-3.196,1.162l-3.199-1.162h-2.325h-2.907l-2.615-0.58l-3.199-1.162l-2.033-0.29l-1.163,0.29l-4.942-0.871l-0.58-1.452h-2.325l1.745-2.613h3.488l2.033,1.163l1.162,0.289L772.881,249.55zM844.679,248.098l-1.452,1.742l-0.292-2.032l0.583-0.871l0.58-1.162l0.581,0.871V248.098zM824.043,240.548l-1.163,0.87l-1.745-0.58l-0.581-1.162h2.907L824.043,240.548zM833.053,239.386l0.871,2.032l-2.325-0.87l-2.324-0.29h-1.454h-2.034l0.582-1.452l3.486-0.291L833.053,239.386zM842.935,234.16l0.874,4.355l2.906,1.743l2.325-2.905l3.199-1.741h2.323l2.326,0.87l2.033,1.162l2.909,0.581v8.712l0.29,9.002l-2.615-2.323l-2.91-0.29l-0.578,0.58l-3.489,0.291l1.161-2.323l1.744-0.871l-0.579-2.904l-1.454-2.323l-5.233-2.324l-2.323-0.289l-4.069-2.613L840.901,242l-1.162,0.292l-0.581-1.163v-1.161l-2.034-1.161l2.906-1.162h2.034l-0.289-0.581h-4.072l-1.161-1.742l-2.327-0.58l-1.161-1.161l3.778-0.872l1.455-0.872l4.359,1.162L842.935,234.16zM818.518,226.9l-2.325,2.904l-2.034,0.58l-2.615-0.58h-4.651l-2.325,0.58l-0.292,2.033l2.326,2.323l1.454-1.161l5.23-0.872l-0.29,1.161l-1.162-0.289l-1.163,1.451l-2.326,1.162l2.615,3.483l-0.581,0.872l2.326,3.194v1.742l-1.452,0.872l-0.874-0.872l1.165-2.323l-2.617,1.162l-0.871-0.873l0.579-0.869l-2.033-1.743l0.291-2.613l-2.036,0.871l0.292,3.195v3.773l-1.744,0.581l-1.165-0.871l0.874-2.613l-0.291-2.613h-1.162l-0.871-2.033l1.161-1.741l0.289-2.033l1.455-4.356l0.581-0.871l2.326-2.032l2.033,0.58l3.488,0.582l3.199-0.292l2.615-2.032L818.518,226.9zM828.111,227.771l-0.29,2.323h-1.452l-0.292,1.452l1.162,1.451l-0.87,0.291l-1.165-1.742l-0.871-3.485l0.581-2.032l0.873-1.162l0.29,1.452l1.744,0.291L828.111,227.771zM798.17,226.029l3.197,2.322l-3.197,0.292l-1.162,2.031l0.292,2.614l-2.618,1.742v2.613L793.52,242l-0.581-0.871l-2.908,1.163l-1.161-1.743l-2.034-0.29l-1.163-0.872l-3.488,1.162l-0.871-1.452l-1.744,0.29l-2.328-0.29l-0.581-3.775l-1.163-0.871l-1.452-2.322l-0.292-2.323l0.292-2.613l1.452-1.743l0.584,1.743l2.033,1.741l1.744-0.581h1.744l1.453-1.16l1.454-0.291l2.615,0.581l2.036-0.581l1.452-3.774l1.163-0.872l0.871-3.193h3.198l2.325,0.58l-1.454,2.323l2.036,2.614L798.17,226.029zM765.034,246.937l-2.907,0.29l-2.325-2.321l-3.779-2.324l-1.162-1.743l-2.033-2.323l-1.165-2.033l-2.325-3.774l-2.326-2.323l-0.871-2.323l-0.873-2.032l-2.615-1.743l-1.454-2.322l-2.034-1.743l-2.908-2.903l-0.289-1.451h1.745l4.358,0.58l2.618,2.614l2.033,2.032l1.453,1.161l2.615,2.905h2.908l2.325,2.032l1.454,2.322l2.033,1.161l-0.871,2.323l1.454,0.871h0.872l0.581,2.033l0.873,1.451l2.034,0.291l1.452,1.742l-0.871,3.485V246.937z", + "IE" : "M456.62,82.869l0.579,2.032l-2.034,2.323l-4.942,1.743l-3.779,-0.581l2.036,-2.904l-1.454,-2.613l3.779,-2.323l2.033,-1.162l0.582,1.451l-0.582,1.454l1.745,0.000l-2.037,-0.580z", + "IL" : "M572.021,140.946l-0.293,0.870l-1.163,-0.289l-0.578,1.743l0.871,0.289l-0.871,0.581l0.000,0.581l1.160,-0.291l0.000,0.872l-1.160,4.645l-2.038,-4.935l0.873,-0.872l0.581,-1.451l0.584,-2.033l0.289,-0.582l0.289,0.000l0.872,0.000l0.291,-0.580l0.582,0.000l0.000,1.162l-0.289,0.290l0.000,0.000z", + "IN" : "M688.002,133.396l2.909,3.194l-0.293,2.324l1.163,1.160l0.000,1.453l-2.036,-0.291l0.873,2.904l2.615,1.742l3.781,2.034l-1.745,1.161l-1.163,2.613l2.908,1.162l2.614,1.161l3.490,1.742l3.779,0.291l1.453,1.452l2.325,0.290l3.197,0.581l2.326,0.000l0.291,-1.162l-0.291,-1.742l0.000,-1.161l1.744,-0.582l0.292,2.033l0.000,0.581l2.615,1.162l1.744,-0.581l2.326,0.290l2.326,0.000l0.000,-1.742l-1.163,-0.871l2.326,-0.290l2.615,-2.033l3.198,-1.742l2.033,0.580l2.035,-1.162l1.455,1.743l-1.161,1.162l3.194,0.290l0.000,1.162l-0.871,0.580l0.291,1.452l-2.034,-0.290l-3.489,1.742l0.000,1.742l-1.453,2.323l-0.292,1.162l-1.163,2.322l-2.033,-0.580l-0.290,2.904l-0.583,0.872l0.291,1.161l-1.162,0.581l-1.454,-4.356l-0.872,0.000l-0.581,1.742l-1.454,-1.452l0.872,-1.452l1.163,-0.289l1.454,-2.324l-1.743,-0.291l-2.327,0.000l-2.616,-0.291l-0.291,-2.032l-1.454,0.000l-2.034,-1.451l-1.163,2.032l2.034,1.451l-1.743,0.873l-0.582,1.160l1.744,0.582l-0.579,1.742l1.160,2.032l0.290,2.324l-0.290,1.162l-2.034,-0.291l-3.197,0.580l0.000,2.033l-1.455,1.742l-4.069,1.744l-2.904,3.484l-2.038,1.743l-2.906,1.742l0.000,1.161l-1.163,0.581l-2.615,1.161l-1.162,0.000l-0.874,2.323l0.582,3.484l0.000,2.324l-1.163,2.614l0.000,4.644l-1.454,0.000l-1.160,2.325l0.870,0.871l-2.615,0.581l-0.874,2.032l-1.163,0.581l-2.615,-2.323l-1.163,-4.067l-1.162,-2.613l-0.874,-1.451l-1.452,-2.613l-0.581,-3.485l-0.581,-1.742l-2.618,-3.775l-1.161,-5.227l-0.584,-3.485l0.000,-3.194l-0.581,-2.613l-4.068,1.451l-2.035,-0.290l-3.488,-3.194l1.454,-1.162l-0.873,-0.871l-3.198,-2.323l1.745,-2.033l6.106,0.000l-0.583,-2.324l-1.455,-1.451l-0.579,-2.032l-1.745,-1.162l3.197,-2.904l3.199,0.291l2.904,-2.904l1.745,-2.904l2.618,-2.614l0.000,-2.032l2.325,-1.743l-2.325,-1.161l-0.874,-2.032l-1.160,-2.324l1.453,-1.162l4.069,0.581l3.196,-0.290l-2.617,2.323z", + "IQ" : "M598.763,131.943l1.744,0.872l0.289,1.742l-1.452,0.871l-0.581,2.033l2.033,2.613l3.200,1.453l1.454,2.323l-0.292,1.742l0.872,0.000l0.000,1.742l1.454,1.452l-1.744,-0.290l-1.744,-0.291l-2.037,2.614l-5.230,0.000l-7.561,-5.517l-4.067,-2.032l-3.488,-0.873l-1.163,-3.193l6.103,-2.904l1.163,-3.195l-0.292,-2.032l1.454,-0.872l1.454,-1.742l1.164,-0.291l3.197,0.291l0.873,0.872l1.452,-0.581l-1.745,-3.193z", + "IR" : "M622.309,128.75l2.323,-0.582l2.036,-1.742l1.745,0.291l1.162,-0.581l2.034,0.290l2.907,1.452l2.325,0.290l3.200,2.324l2.034,0.000l0.289,2.323l-1.161,3.485l-0.873,2.032l1.163,0.291l-1.163,1.742l0.873,2.032l0.290,1.743l2.036,0.581l0.289,1.742l-2.615,2.323l1.453,1.452l1.162,1.742l2.617,1.162l0.000,2.613l1.453,0.291l0.290,1.452l-4.070,1.162l-1.161,3.193l-4.943,-0.580l-3.197,-0.871l-2.906,-0.291l-1.454,-3.194l-1.163,-0.581l-2.034,0.581l-2.908,1.162l-3.196,-0.872l-2.907,-2.033l-2.617,-0.870l-1.745,-2.614l-2.034,-3.774l-1.744,0.580l-1.744,-0.871l-0.871,1.161l-1.454,-1.452l0.000,-1.742l-0.872,0.000l0.292,-1.742l-1.454,-2.323l-3.200,-1.453l-2.033,-2.613l0.581,-2.033l1.452,-0.871l-0.289,-1.742l-1.744,-0.872l-1.745,-3.193l-1.452,-2.324l0.579,-0.871l-0.870,-2.904l1.743,-0.871l0.582,0.871l1.163,1.453l2.033,0.289l0.873,0.000l3.489,-2.032l0.872,-0.290l0.871,0.871l-0.871,1.451l1.743,1.453l0.582,-0.291l0.873,2.033l2.615,0.580l1.744,1.453l4.069,0.291l4.360,-0.581l-0.293,0.581z", + "IS" : "M433.944,48.313l-0.870,1.742l3.196,1.742l-3.488,2.033l-8.138,2.033l-2.326,0.581l-3.488,-0.581l-7.849,-0.871l2.906,-1.162l-6.103,-1.451l4.940,-0.291l0.000,-0.871l-5.811,-0.580l1.744,-2.033l4.067,-0.291l4.362,1.742l4.360,-1.451l3.198,0.871l4.649,-1.452l-4.651,-0.290z", + "IT" : "M516.5,125.846l-0.873,2.033l0.292,0.872l-0.582,1.451l-2.034-0.871l-1.454-0.291l-3.777-1.451l0.289-1.452l3.199,0.29l2.904-0.29L516.5,125.846zM499.059,117.715l1.743,1.742l-0.291,3.775l-1.452-0.291l-1.164,0.871l-0.872-0.58l-0.291-3.195l-0.579-1.742l1.452,0.291L499.059,117.715zM507.779,102.325l4.069,0.581l-0.289,1.452l0.581,1.161l-2.326-0.291l-2.035,0.872v1.452l-0.292,0.871l0.873,1.162l2.615,1.452l1.455,2.324l2.906,2.323h2.326l0.58,0.58l-0.872,0.582l2.617,0.871l2.036,0.871l2.324,1.451l0.291,0.581l-0.581,0.873l-1.455-1.453l-2.325-0.289l-1.163,1.742l2.036,1.16l-0.581,1.453h-0.873l-1.745,2.323l-0.87,0.291v-0.871l0.289-1.453l0.872-0.58l-1.161-1.742l-0.873-1.162l-1.161-0.58l-0.873-1.162l-1.744-0.29l-1.163-1.162l-2.034-0.291l-2.036-1.162l-2.615-1.741l-1.744-1.743l-0.872-2.614l-1.454-0.29l-2.325-0.872l-1.163,0.291l-1.743,1.162l-1.163,0.291l0.291-1.162l-1.454-0.291l-0.582-2.033l0.872-0.871l-0.872-1.162l0.291-0.871l1.165,0.581h1.16l1.744-0.871l0.291,0.29h1.453l0.583-1.162l2.034,0.29l1.163-0.29l0.289-1.162l1.745,0.291l0.291-0.58l2.615-0.292L507.779,102.325z", + "JM" : "M260.116,180.148l2.036,0.290l1.452,0.581l0.291,0.871l-1.743,0.000l-0.872,0.291l-1.454,-0.291l-1.744,-1.161l0.290,-0.581l1.164,-0.290l-0.580,-0.290z", + "JO" : "M571.728,141.816l0.293,-0.870l3.195,1.161l5.234,-2.903l1.163,3.193l-0.582,0.582l-5.522,1.451l2.905,2.614l-0.872,0.581l-0.581,0.871l-2.036,0.290l-0.581,1.161l-1.161,0.582l-3.196,-0.291l0.000,-0.291l1.160,-4.645l0.000,-0.872l0.581,-0.871l0.000,1.743z", + "JP" : "M844.39,137.17l0.289,0.871l-1.452,1.742l-1.163-1.161l-1.454,0.871l-0.58,1.452l-2.035-0.581l0.292-1.452l1.452-1.743l1.452,0.291l1.165-1.161L844.39,137.17zM861.832,128.75l-1.165,2.323l0.584,1.162l-1.455,2.033l-3.488,1.452h-4.94l-3.78,3.195l-1.742-1.162l-0.292-2.033l-4.651,0.582l-3.488,1.451h-3.198l2.909,2.032l-1.745,4.646l-1.743,1.162l-1.454-1.162l0.582-2.323l-1.745-0.871l-1.163-1.742l2.617-0.871l1.452-1.742l2.907-1.453l2.035-2.033l5.523-0.581l2.907,0.291l2.904-4.646l1.746,1.162l4.07-2.614l1.452-1.161l1.744-3.484l-0.292-2.904l1.164-1.742l2.906-0.581l1.454,3.774v2.324l-2.615,2.613V128.75zM869.969,109.584l1.744,0.58l2.036-1.162l0.58,2.904l-4.068,0.871l-2.326,2.613l-4.36-1.742l-1.453,2.904h-3.199l-0.29-2.613l1.454-2.033l2.906-0.291l0.873-3.775l0.581-2.032l3.488,2.613L869.969,109.584z", + "KE" : "M586.553,233.289l1.745,2.323l-2.034,1.162l-0.582,1.161l-1.163,0.000l-0.291,2.032l-0.872,1.161l-0.581,1.744l-1.162,0.871l-3.780,-2.615l-0.291,-1.742l-9.883,-5.517l-0.582,-0.289l0.000,-2.906l0.872,-1.161l1.164,-1.742l1.163,-2.033l-1.163,-3.194l-0.291,-1.452l-1.452,-1.742l1.743,-1.743l1.745,-1.741l1.452,0.290l0.000,1.742l0.873,0.871l2.033,0.000l3.489,2.323l0.874,0.000l0.580,0.000l0.580,0.290l2.036,0.290l0.581,-1.160l2.618,-1.162l1.161,0.870l1.743,0.000l-2.325,3.196l0.000,-9.873z", + "KG" : "M669.108,114.811l0.581,-1.162l1.745,-0.580l4.649,0.871l0.292,-1.452l1.745,-0.581l3.779,1.162l1.161,-0.291l4.361,0.000l4.068,0.291l1.455,0.871l1.744,0.581l-0.289,0.581l-4.362,1.451l-1.162,1.162l-3.490,0.290l-0.871,1.744l-2.906,-0.291l-2.036,0.580l-2.615,1.162l0.289,0.580l-0.579,0.871l-5.233,0.291l-3.488,-0.871l-2.908,0.290l0.291,-1.743l2.906,0.582l0.873,-0.871l2.326,0.289l3.488,-2.032l-3.199,-1.451l-2.034,0.580l-2.035,-0.871l2.326,-1.742l0.872,0.291z", + "KH" : "M758.638,201.637l-1.162,-1.453l-1.454,-2.613l-0.580,-3.485l1.741,-2.323l3.781,-0.581l2.326,0.581l2.326,0.872l1.160,-1.743l2.617,0.871l0.581,2.033l-0.289,3.194l-4.651,2.033l1.162,1.742l-2.906,0.290l-2.326,1.162l2.326,0.580z", + "KO" : "M531.032,115.392l-0.289,0.581l-0.292,0.000l-0.289,-1.162l-0.582,-0.290l-0.581,-0.581l0.581,-0.871l0.582,0.000l0.289,-0.871l0.581,-0.291l0.293,0.291l0.581,0.290l0.290,0.581l0.583,0.000l0.579,0.580l0.292,0.000l-0.292,0.580l-0.290,0.292l0.000,0.290l-0.581,0.000l1.455,-0.581z", + "KP" : "M833.343,114.229l0.292,0.582l-0.872,0.000l-1.164,0.872l-0.872,0.870l0.000,2.033l-1.452,0.581l-0.291,0.582l-1.163,0.580l-1.744,0.580l-1.163,0.582l-0.292,1.451l-0.289,0.291l1.163,0.290l1.452,1.161l-0.290,0.871l-1.162,0.000l-2.035,0.291l-0.874,1.161l-1.452,0.000l-1.454,-0.290l-0.289,0.290l-0.874,0.290l0.000,-0.580l-0.581,0.000l-0.871,-0.581l0.871,-1.161l0.581,-0.291l-0.291,-0.580l0.583,-1.453l0.000,-0.580l-1.744,-0.291l-1.162,-0.580l2.033,-1.742l3.198,-1.453l1.745,-2.032l1.453,0.871l2.325,0.000l-0.289,-1.452l4.067,-1.163l1.163,-1.451l-1.744,-1.451z", + "KR" : "M826.948,124.684l2.617,3.194l0.582,2.034l0.000,2.903l-1.163,1.742l-2.326,0.582l-2.325,0.870l-2.326,0.291l-0.292,-1.452l0.292,-2.033l-1.163,-2.903l2.036,-0.291l-1.745,-2.614l1.452,0.000l0.874,-1.161l2.035,-0.291l1.162,0.000l-0.290,0.871z", + "KW" : "M605.74,148.496l0.581,1.162l-0.291,0.580l0.871,2.323l-1.743,0.000l-0.873,-1.452l-2.326,-0.290l2.037,-2.614l-1.744,-0.291z", + "KZ" : "M669.108,114.811l-1.454,0.291l-3.779,2.033l-1.163,2.032l-1.163,0.000l-0.580,-1.452l-3.489,0.000l-0.581,-2.323l-1.453,0.000l0.290,-2.614l-3.196,-2.032l-4.944,0.290l-3.196,0.291l-2.618,-2.614l-2.324,-0.872l-4.071,-2.031l-0.580,-0.291l-6.976,1.742l0.000,10.164l-1.455,0.000l-1.744,-2.033l-2.034,-0.871l-3.199,0.581l-1.160,0.871l0.000,-0.581l0.582,-1.163l-0.582,-0.869l-3.197,-1.162l-1.165,-2.323l-1.453,-0.581l-0.291,-1.161l2.909,0.289l0.000,-2.032l2.324,-0.290l2.326,0.290l0.581,-2.614l-0.581,-1.742l-2.616,0.291l-2.326,-0.872l-3.196,1.452l-2.618,0.581l-1.452,-0.581l0.289,-1.452l-1.743,-1.742l-2.034,0.000l-2.327,-1.742l1.453,-2.323l-0.580,-0.290l2.036,-3.195l2.906,1.742l0.289,-2.032l5.814,-3.195l4.362,0.000l5.812,2.032l3.489,1.163l2.906,-1.163l4.360,-0.290l3.488,1.453l0.871,-0.872l3.781,0.291l0.581,-1.453l-4.362,-1.742l2.618,-1.451l-0.581,-0.582l2.617,-0.870l-2.036,-1.743l1.454,-1.160l10.172,-0.872l1.454,-0.582l6.976,-1.161l2.326,-1.161l4.942,0.580l0.872,2.905l2.906,-0.581l3.488,0.872l-0.290,1.451l2.618,0.000l6.974,-2.614l-0.871,0.872l3.488,2.033l6.104,6.968l1.453,-1.451l3.780,1.742l4.070,-0.872l1.455,0.581l1.160,1.452l2.034,0.581l1.163,1.162l3.488,-0.291l1.455,1.743l-2.034,1.742l-2.328,0.291l0.000,2.904l-1.744,1.162l-5.232,-0.873l-2.034,4.938l-1.453,0.580l-5.524,1.162l2.617,4.646l-2.033,0.580l0.289,1.743l-1.744,-0.581l-1.455,-0.871l-4.068,-0.291l-4.361,0.000l-1.161,0.291l-3.779,-1.162l-1.745,0.581l-0.292,1.452l-4.649,-0.871l-1.745,0.580l0.581,-1.162z", + "LA" : "M763.29,191.763l0.872,-1.451l0.291,-2.323l-2.327,-2.324l0.000,-2.613l-2.325,-2.323l-2.036,0.000l-0.582,0.871l-1.452,0.000l-0.871,-0.581l-2.907,1.742l0.000,-2.323l0.579,-2.904l-1.743,-0.289l-0.290,-1.744l-1.163,-0.580l0.581,-1.162l2.326,-1.742l0.289,0.581l1.455,0.000l-0.290,-2.904l1.453,-0.581l1.454,2.324l1.161,2.322l3.488,0.000l1.165,2.614l-1.747,0.580l-0.870,0.872l3.197,1.742l2.325,3.194l1.745,2.614l2.036,1.742l0.870,2.032l-0.581,2.614l-2.617,-0.871l-1.160,1.743l2.326,0.872z", + "LB" : "M572.31,139.494l-0.582,0.000l-0.291,0.580l-0.872,0.000l0.872,-2.323l1.454,-2.032l1.163,0.000l0.581,1.162l-1.452,1.161l0.873,-1.452z", + "LK" : "M699.047,210.348l-0.579,2.904l-1.165,0.581l-2.323,0.582l-1.455,-2.034l-0.292,-4.066l1.166,-4.356l2.033,1.454l1.162,2.032l-1.453,-2.903z", + "LR" : "M452.549,219.06l-0.873,0.000l-2.615,-1.453l-2.617,-2.032l-2.324,-1.452l-1.744,-1.742l0.580,-0.872l0.000,-0.871l1.454,-1.452l1.163,-1.451l0.581,0.000l0.872,-0.290l1.162,1.741l-0.290,1.162l0.582,0.581l0.581,0.000l0.582,-1.161l0.871,0.000l0.000,0.870l0.291,1.162l-0.582,1.452l0.582,0.581l0.871,0.290l1.162,1.161l0.293,1.162l-0.293,0.291l0.289,-2.323z", + "LS" : "M553.416,310.531l1.163,0.872l-0.873,1.451l-0.581,0.871l-1.454,0.292l-0.581,0.869l-0.871,0.291l-2.036,-2.032l1.454,-1.742l1.453,-1.163l1.163,-0.579l-1.163,-0.870z", + "LT" : "M536.265,81.417l-0.291,-0.582l0.582,-0.870l-1.454,-0.291l-2.906,-0.581l-0.580,-2.322l3.197,-0.871l4.649,0.290l2.618,-0.290l0.581,0.580l1.455,0.291l2.614,1.162l0.290,1.160l-2.326,1.162l-0.578,1.452l-2.908,0.872l-2.907,0.000l-0.582,-0.872l1.454,0.290z", + "LU" : "M490.338,93.032l0.579,0.581l0.000,1.452l-0.871,0.000l-0.581,-0.291l0.290,-1.451l-0.583,0.291z", + "LV" : "M531.616,76.771l0.290,-2.033l1.162,-1.742l2.616,-0.871l2.326,2.033l2.035,0.000l0.581,-2.033l2.325,-0.581l1.165,0.290l2.614,1.162l2.034,0.000l1.455,0.581l0.291,1.161l0.871,1.742l-2.906,1.162l-1.745,0.291l-2.614,-1.162l-1.455,-0.291l-0.581,-0.580l-2.618,0.290l-4.649,-0.290l3.197,-0.871z", + "LY" : "M514.755,167.951l-2.036,1.162l-1.452,-1.452l-4.361,-1.161l-1.452,-1.743l-2.035,-1.451l-1.163,0.580l-1.163,-1.451l0.000,-1.162l-1.744,-2.033l1.162,-1.161l-0.291,-1.743l0.291,-1.452l0.000,-1.451l0.291,-2.033l0.000,-1.453l-0.871,-2.322l1.162,-0.581l0.290,-1.162l-0.290,-1.161l2.034,-1.162l0.872,-0.870l1.164,-0.873l0.291,-2.032l3.195,0.872l1.165,0.000l2.326,0.290l3.486,1.161l1.456,2.614l2.325,0.581l4.067,1.161l2.907,1.162l1.165,-0.581l1.453,-1.452l-0.582,-2.033l0.874,-1.162l1.741,-1.451l2.036,-0.290l3.778,0.580l0.873,1.161l1.163,0.000l0.871,0.582l2.616,0.291l0.582,0.870l-0.871,1.452l0.289,1.162l-0.579,1.451l0.871,2.324l0.000,9.873l0.000,10.162l0.000,5.228l-3.199,0.291l0.000,0.870l-11.045,-5.227l-11.046,-5.226l2.616,-1.451z", + "MA" : "M459.526,132.525l1.743,1.161l2.616,0.000l2.615,0.581l1.164,0.000l1.163,1.742l0.291,1.742l0.871,2.905l0.582,0.580l-0.289,0.871l-3.782,0.582l-1.162,0.870l-1.744,0.291l0.000,2.032l-3.197,1.162l-1.162,1.452l-2.036,0.581l-2.906,0.581l-4.361,2.032l0.000,3.194l-0.581,0.000l0.292,1.452l-1.745,0.000l-0.872,0.871l-1.161,0.000l-1.165,-0.581l-2.324,0.291l-0.873,2.323l-0.872,0.000l-1.162,3.485l-4.069,3.194l-0.874,3.775l-1.162,1.162l-0.290,0.870l-6.107,0.291l0.000,-1.161l1.165,-0.872l0.871,-1.451l-0.291,-0.872l1.164,-2.033l1.454,-1.742l0.871,-0.291l0.873,-1.742l0.000,-1.451l0.870,-1.742l2.036,-0.872l1.745,-2.904l1.452,-1.162l2.326,-0.289l2.326,-1.743l1.452,-0.871l2.036,-2.323l-0.582,-3.194l1.163,-2.323l0.290,-1.452l1.744,-2.033l2.906,-1.162l2.037,-1.162l1.745,-2.903l0.871,-1.742l-2.035,0.000z", + "MD" : "M547.02,98.259l0.584,-0.290l2.033,-0.290l2.034,0.870l1.162,0.000l1.166,0.872l-0.293,0.871l1.164,0.580l0.290,1.162l0.873,0.580l0.000,0.291l0.290,0.291l-0.581,0.290l-1.743,0.000l-0.293,-0.581l-0.581,0.291l0.291,0.580l-0.872,0.871l-0.291,0.872l-0.872,0.291l-0.291,-1.163l0.291,-1.161l-0.291,-1.161l-1.453,-1.742l-0.873,-1.162l-0.871,-0.872l0.873,0.290z", + "ME" : "M528.417,113.94l-0.292,-0.291l-1.163,1.162l0.000,0.872l-0.581,0.000l-0.579,-0.872l-1.163,-0.582l0.289,-0.580l0.291,-1.451l0.872,-0.581l0.582,-0.290l0.873,0.290l0.290,0.581l0.872,0.290l1.162,0.581l-0.290,0.000l-0.581,0.871l0.582,0.000z", + "MG" : "M610.099,265.23l0.873,1.163l0.582,1.742l0.579,3.485l0.584,1.160l-0.293,1.454l-0.581,0.579l-0.871,-1.451l-0.583,0.872l0.583,2.032l-0.291,1.160l-0.582,0.581l-0.292,2.325l-1.162,3.194l-1.161,3.775l-1.744,5.226l-1.162,3.775l-1.165,3.195l-2.325,0.581l-2.325,1.162l-1.455,-0.582l-2.324,-0.871l-0.872,-1.453l0.000,-2.613l-1.163,-2.032l0.000,-2.033l0.292,-2.032l1.452,-0.582l0.000,-0.871l1.163,-2.032l0.289,-1.742l-0.579,-1.453l-0.582,-1.451l-0.291,-2.614l1.163,-1.743l0.289,-1.742l1.455,0.000l1.452,-0.581l0.872,-0.579l1.454,0.000l1.455,-1.454l2.325,-1.740l0.872,-1.454l-0.580,-1.160l1.161,0.289l1.744,-1.743l0.000,-1.742l0.873,-1.160l-0.871,-1.160z", + "MK" : "M530.451,115.973l0.292,0.000l0.289,-0.581l1.455,-0.581l0.581,0.000l1.161,-0.290l1.165,0.000l1.452,0.871l0.000,1.743l-0.290,0.290l-0.582,0.290l-1.452,0.000l-1.164,0.580l-1.742,0.291l-1.165,-0.581l-0.289,-1.161l-0.289,0.871z", + "ML" : "M440.34,190.602l0.871,-0.290l0.583,-1.743l0.872,0.000l1.744,0.871l1.455,-0.580l1.161,0.000l0.581,-0.581l11.046,0.000l0.582,-2.032l-0.582,-0.291l-1.454,-11.906l-1.161,-11.615l4.070,-0.291l9.301,6.098l9.301,6.098l0.873,1.161l1.454,0.872l1.452,0.291l0.000,1.742l2.906,0.000l0.000,6.097l-1.452,2.034l-0.291,1.452l-2.326,0.580l-3.778,0.291l-0.872,0.870l-1.744,0.291l-2.035,0.000l-0.582,-0.581l-1.452,0.290l-2.617,1.162l-0.582,0.871l-2.035,1.161l-0.291,0.872l-1.163,0.581l-1.452,-0.581l-0.872,0.871l-0.291,1.742l-2.034,2.324l0.000,0.871l-0.873,1.161l0.290,1.741l-1.161,0.292l-0.583,0.290l-0.579,-1.162l-0.582,0.291l-0.581,0.000l-0.582,0.871l-2.037,0.000l-0.870,-0.582l-0.292,0.292l-0.871,-0.581l0.290,-0.871l-0.581,-0.291l-0.582,0.291l0.291,-1.162l0.582,-0.580l-1.162,-1.162l-0.292,-0.871l-0.582,-0.581l-0.581,0.000l-0.871,0.290l-0.873,0.582l-0.579,0.580l-1.165,-0.291l-0.871,-0.580l-0.582,-0.291l-0.581,0.582l-0.290,0.000l-0.293,-1.162l0.000,-0.871l0.000,-1.162l-1.162,-0.581l-0.581,-1.742l0.000,1.742z", + "MM" : "M747.882,175.501l-1.743,1.163l-2.034,0.000l-1.163,3.194l-1.165,0.290l1.455,2.613l1.744,1.742l1.163,2.034l-1.163,2.323l-0.871,0.580l0.582,1.162l1.741,2.322l0.582,1.453l-0.290,1.452l1.162,2.322l-1.454,2.614l-1.452,2.903l-0.289,-2.031l0.870,-2.033l-0.870,-1.742l0.289,-2.904l-1.163,-1.453l-0.871,-3.484l-0.581,-3.484l-1.164,-2.034l-1.743,1.162l-3.200,2.033l-1.454,-0.291l-1.741,-0.580l0.870,-3.486l-0.579,-2.612l-2.036,-2.904l0.290,-1.161l-1.744,-0.291l-1.743,-2.323l-0.291,-2.033l0.871,0.291l0.292,-2.033l1.162,-0.581l-0.291,-1.161l0.583,-0.872l0.290,-2.904l2.033,0.580l1.163,-2.322l0.292,-1.162l1.453,-2.323l0.000,-1.742l3.489,-1.742l2.034,0.290l-0.291,-1.452l0.871,-0.580l0.000,-1.162l1.455,0.000l0.873,1.452l1.161,0.580l0.291,2.324l-0.291,2.032l-2.615,2.323l-0.290,3.484l2.905,-0.580l0.873,2.614l1.743,0.580l-0.872,2.033l2.035,1.162l1.163,0.580l2.035,-0.870l0.000,1.161l-2.326,1.742l-0.581,1.162l1.454,-0.580z", + "MN" : "M715.327,95.356l2.907,-0.582l5.232,-2.323l4.069,-1.161l2.616,0.871l2.908,0.000l1.741,1.162l2.617,0.290l4.071,0.581l2.617,-2.033l-1.163,-1.453l2.907,-2.902l3.196,1.161l2.327,0.290l3.488,0.580l0.290,2.324l4.069,1.162l2.617,-0.582l3.487,-0.290l2.618,0.290l2.615,1.162l1.743,1.453l2.616,0.000l3.490,0.581l2.616,-0.872l3.488,-0.291l4.070,-2.033l1.745,0.291l1.452,0.871l3.197,-0.290l-1.453,2.324l-1.744,2.612l0.581,1.162l1.455,-0.290l2.904,0.290l2.036,-0.872l2.327,0.872l2.325,1.742l-0.291,1.161l-2.034,-0.289l-4.071,0.289l-2.035,0.872l-2.034,1.742l-4.069,1.162l-2.909,1.451l-2.614,-0.580l-1.745,-0.290l-1.454,1.742l0.873,1.162l0.581,0.871l-2.033,0.871l-1.745,1.452l-3.199,0.871l-4.359,0.289l-4.361,0.873l-3.197,1.451l-1.163,-0.870l-3.489,0.000l-4.069,-1.743l-2.615,-0.291l-3.781,0.291l-5.522,-0.580l-3.196,0.000l-1.456,-1.453l-1.163,-2.613l-1.743,-0.291l-3.488,-1.742l-3.778,-0.290l-3.198,-0.581l-0.873,-1.162l0.873,-3.194l-1.746,-2.323l-4.067,-0.872l-2.326,-1.451l0.581,2.032z", + "MR" : "M440.34,190.602l-2.034,-1.742l-1.454,-2.033l-2.034,-0.580l-1.163,-0.872l-1.454,0.000l-1.452,0.581l-1.456,-0.291l-0.871,0.872l-0.290,-1.453l0.871,-1.451l0.290,-2.614l-0.290,-2.613l-0.291,-1.453l0.291,-1.161l-0.871,-1.452l-1.454,-1.161l0.582,-0.871l11.046,0.000l-0.581,-4.066l0.581,-1.451l2.615,0.000l0.000,-7.261l9.011,0.290l0.000,-4.355l10.176,6.679l-4.070,0.291l1.161,11.615l1.454,11.906l0.582,0.291l-0.582,2.032l-11.046,0.000l-0.581,0.581l-1.161,0.000l-1.455,0.580l-1.744,-0.871l-0.872,0.000l-0.583,1.743l0.871,-0.290z", + "MW" : "M568.822,262.618l-0.582,2.032l0.582,3.776l1.165,-0.291l0.871,0.871l1.163,2.034l0.289,3.483l-1.163,0.581l-0.871,2.032l-1.744,-1.742l-0.292,-2.032l0.582,-1.161l-0.290,-1.161l-0.873,-0.582l-0.871,0.291l-1.455,-1.454l-1.452,-0.580l0.580,-2.612l0.872,-0.873l-0.290,-2.323l0.290,-2.322l0.582,-0.582l-0.582,-2.322l-1.452,-1.452l2.907,0.581l0.289,0.871l1.163,1.161l-0.582,-3.776z", + "MX" : "M206.341,159.82l-1.163,2.324l-0.291,2.033l-0.290,3.774l-0.291,1.162l0.581,1.743l0.872,1.161l0.582,2.033l1.744,2.323l0.581,1.452l1.163,1.451l2.906,0.582l1.163,1.161l2.326,-0.871l2.034,-0.290l2.035,-0.291l1.745,-0.581l1.743,-1.161l0.872,-1.452l0.000,-2.323l0.582,-0.871l2.034,-0.581l2.908,-0.872l2.324,0.291l1.745,-0.291l0.582,0.582l0.000,1.161l-1.454,1.742l-0.873,1.742l0.582,0.581l-0.291,1.162l-0.872,2.033l-0.582,-0.581l-0.581,0.000l-0.580,0.000l-0.872,1.742l-0.582,-0.580l-0.290,0.290l0.000,0.290l-2.617,0.000l-2.615,0.000l0.000,1.743l-1.163,0.000l0.872,0.870l1.162,0.581l0.291,0.581l0.582,0.291l-0.292,0.871l-3.487,0.000l-1.164,2.033l0.291,0.580l-0.291,0.581l0.000,0.871l-3.197,-2.903l-1.454,-0.872l-2.325,-0.870l-1.453,0.290l-2.325,1.161l-1.163,0.291l-2.035,-0.872l-2.035,-0.580l-2.617,-1.162l-2.034,-0.291l-3.198,-1.451l-2.325,-1.161l-0.582,-0.872l-1.453,0.000l-2.906,-0.871l-1.163,-1.453l-2.907,-1.451l-1.454,-1.742l-0.581,-1.453l0.872,-0.290l-0.291,-0.581l0.582,-0.871l0.000,-0.871l-0.873,-1.161l-0.290,-1.162l-0.872,-1.452l-2.325,-2.614l-2.908,-2.322l-1.453,-1.453l-2.325,-1.161l-0.290,-0.872l0.290,-1.451l-1.454,-0.871l-1.453,-1.162l-0.872,-2.032l-1.454,-0.291l-1.453,-1.452l-1.454,-1.161l0.000,-0.871l-1.453,-2.033l-1.162,-2.324l0.290,-0.870l-2.035,-1.162l-0.872,0.000l-1.744,-0.581l-0.290,1.162l0.290,1.161l0.290,2.034l0.872,1.161l2.036,2.032l0.581,0.581l0.291,0.290l0.581,0.872l0.291,0.000l0.581,1.742l0.872,0.580l0.581,1.162l1.745,1.162l0.872,2.613l0.872,1.162l0.872,1.452l0.000,1.452l1.453,0.000l0.872,1.160l1.164,1.454l0.000,0.290l-1.164,1.161l-0.581,0.000l-0.581,-1.742l-2.035,-1.452l-1.744,-1.453l-1.454,-0.580l0.000,-2.033l-0.291,-1.452l-1.453,-0.870l-1.744,-1.453l-0.581,0.581l-0.582,-0.871l-1.743,-0.581l-1.745,-1.742l0.291,0.000l1.163,0.000l1.162,-0.872l0.000,-1.451l-2.034,-1.742l-1.744,-0.871l-0.873,-1.742l-1.162,-1.744l-1.163,-2.322l-1.163,-2.323l3.198,-0.291l3.487,-0.290l-0.290,0.581l4.070,1.452l6.395,1.742l5.232,0.000l2.326,0.000l0.000,-1.162l4.650,0.000l1.163,1.162l1.453,0.871l1.454,1.162l0.872,1.451l0.872,1.453l1.454,0.871l2.325,0.871l1.744,-2.323l2.035,0.000l2.034,1.161l1.454,1.742l0.872,1.742l1.744,1.452l0.582,2.033l0.581,1.162l2.326,0.871l1.744,0.580l-1.163,0.000z", + "MY" : "M751.953,213.833l0.29,1.451l1.744-0.289l0.873-1.162l0.582,0.29l1.741,1.743l1.165,1.741l0.29,1.743l-0.29,1.452v0.87l0.29,1.453l0.871,0.871l1.162,2.322v1.162h-2.033l-2.616-2.033l-3.195-2.032l-0.295-1.452l-1.452-1.743l-0.581-2.322l-0.871-1.452l0.289-2.031l-0.58-1.162l0.291-0.582L751.953,213.833zM800.205,218.769l-2.034,0.871l-2.325-0.58h-3.198l-0.871,3.193l-1.163,0.872l-1.452,3.774l-2.036,0.581l-2.615-0.581l-1.454,0.291l-1.453,1.16h-1.744l-1.744,0.581l-2.033-1.741l-0.584-1.743l2.036,0.871l2.325-0.581l0.581-2.322l1.163-0.29l3.197-0.581l2.036-2.324l1.162-1.741l1.453,1.451l0.58-0.87h1.163l0.291-1.743v-1.451l2.327-1.743l1.161-2.322h1.162l1.455,1.452v1.162l2.034,0.869l2.325,0.872l-0.29,0.872l-1.744,0.289L800.205,218.769z", + "MZ" : "M568.822,262.618l2.036,-0.292l3.486,0.872l0.581,-0.291l2.036,-0.289l0.872,-0.581l1.746,0.000l2.907,-1.162l2.323,-1.452l0.292,1.162l0.000,2.613l0.289,2.614l0.000,4.064l0.584,1.453l-0.873,2.033l-0.873,1.742l-1.742,1.742l-2.618,1.161l-3.199,1.163l-2.905,3.194l-1.163,0.290l-2.036,2.033l-1.162,0.580l0.000,2.034l1.162,2.032l0.582,1.741l0.000,0.874l0.581,-0.292l-0.291,2.614l-0.290,1.451l0.581,0.290l-0.291,1.162l-1.161,1.161l-2.327,0.873l-3.198,1.451l-1.452,1.162l0.289,1.161l0.873,0.000l-0.291,1.452l-2.034,0.000l-0.291,-1.162l-0.580,-1.161l0.000,-1.162l0.290,-2.904l-0.582,-2.033l-1.452,-3.774l2.904,-3.195l0.874,-2.033l0.289,-0.290l0.293,-1.452l-0.293,-0.870l0.000,-2.033l0.582,-2.032l0.000,-3.486l-1.452,-0.871l-1.163,-0.289l-0.582,-0.582l-1.452,-0.581l-2.325,0.000l0.000,-0.870l-0.292,-2.033l8.429,-2.325l1.455,1.454l0.871,-0.291l0.873,0.582l0.290,1.161l-0.582,1.161l0.292,2.032l1.744,1.742l0.871,-2.032l1.163,-0.581l-0.289,-3.483l-1.163,-2.034l-0.871,-0.871l-1.165,0.291l-0.582,-3.776l-0.582,2.032z", + "NA" : "M518.825,309.661l-2.036,-2.325l-1.163,-2.033l-0.579,-2.613l-0.584,-2.032l-1.161,-4.065l0.000,-3.485l-0.291,-1.452l-1.163,-1.162l-1.454,-2.034l-1.452,-3.483l-0.582,-1.743l-2.034,-2.613l-0.291,-2.033l1.452,-0.581l1.455,-0.581l1.743,0.292l1.745,1.161l0.581,-0.291l11.047,0.000l2.033,1.162l6.396,0.582l5.232,-1.162l2.326,-0.582l1.745,0.000l0.871,0.582l0.290,0.289l-1.743,0.582l-0.874,0.000l-1.744,1.162l-0.871,-1.162l-4.361,0.871l-2.033,0.291l0.000,9.582l-2.908,0.289l0.000,7.843l0.000,10.163l-2.326,1.451l-1.452,0.290l-1.744,-0.581l-1.162,-0.290l-0.582,-1.162l-1.163,-0.580l1.163,-1.453z", + "NC" : "M930.142,289.042l2.325,1.452l1.452,1.454l-1.162,0.579l-1.453,-0.871l-2.036,-1.162l-1.744,-1.452l-1.742,-1.741l-0.582,-1.162l1.161,0.000l1.745,1.162l1.162,0.870l-0.874,-0.871z", + "NCY" : "M563.881,134.267l0.289,0.000l0.291,-0.581l2.035,0.000l2.326,-0.871l-1.745,1.162l0.293,0.580l-0.293,0.000l-0.581,0.000l-0.581,0.000l-0.290,-0.290l-0.582,0.000l-0.582,0.290l0.580,0.290z", + "NE" : "M479.583,198.151l0.291,-2.032l-3.198,-0.581l-0.291,-1.161l-1.453,-2.033l-0.292,-1.162l0.292,-1.161l1.744,-0.291l0.872,-0.870l3.778,-0.291l2.326,-0.580l0.291,-1.452l1.452,-2.034l0.000,-6.097l4.070,-1.453l7.849,-5.227l9.592,-5.226l4.361,1.161l1.452,1.452l2.036,-1.162l0.581,4.357l1.164,0.871l0.000,0.871l1.163,0.871l-0.581,1.162l-1.164,5.517l-0.292,3.484l-3.486,2.614l-1.165,3.775l1.165,0.871l0.000,1.742l1.742,0.291l-0.289,1.161l-0.582,0.291l-0.292,0.871l-0.289,0.000l-2.036,-2.904l-0.580,-0.291l-2.327,1.453l-2.033,-0.581l-1.455,-0.291l-0.872,0.291l-1.453,0.000l-1.743,1.161l-1.455,0.000l-3.196,-1.161l-1.452,0.581l-1.165,0.000l-1.163,-1.162l-2.617,-0.872l-3.195,0.291l-0.582,0.581l-0.292,1.452l-0.871,1.161l-0.291,2.324l-2.034,-1.453l-0.874,0.000l1.161,-0.871z", + "NG" : "M497.023,217.898l-2.615,0.871l-1.164,0.000l-1.161,0.581l-2.037,0.000l-1.452,-1.743l-0.873,-2.032l-2.033,-1.742l-2.036,0.000l-2.615,0.000l0.289,-4.647l0.000,-1.741l0.581,-1.743l0.582,-0.871l1.454,-1.452l-0.291,-0.873l0.580,-1.160l-0.580,-1.453l0.000,-1.160l0.291,-2.324l0.871,-1.161l0.292,-1.452l0.582,-0.581l3.195,-0.291l2.617,0.872l1.163,1.162l1.165,0.000l1.452,-0.581l3.196,1.161l1.455,0.000l1.743,-1.161l1.453,0.000l0.872,-0.291l1.455,0.291l2.033,0.581l2.327,-1.453l0.580,0.291l2.036,2.904l0.289,0.000l1.163,0.871l-0.289,0.580l0.000,0.872l-2.326,2.323l-0.873,1.742l-0.289,1.452l-0.582,0.582l-0.581,1.742l-1.455,1.161l-0.581,1.452l-0.580,1.161l-0.291,1.162l-1.744,0.870l-1.746,-1.161l-0.871,0.000l-1.743,1.743l-0.872,0.000l-1.164,2.614l0.872,-2.032z", + "NI" : "M237.734,200.475l-0.872,-0.871l-1.163,-1.162l-0.581,-0.871l-1.163,-0.871l-1.454,-1.162l0.291,-0.580l0.291,0.580l0.291,-0.290l0.872,0.000l0.291,-0.871l0.581,0.000l-0.290,-1.162l0.871,-0.291l0.582,0.291l0.581,-0.871l0.581,0.580l0.291,-0.289l0.581,-0.291l1.163,-0.871l0.000,-0.581l0.291,0.000l0.291,-0.580l0.291,0.000l0.290,0.290l0.582,0.000l0.581,-0.290l0.872,0.000l0.872,-0.291l0.291,-0.291l1.162,0.000l-0.291,0.291l-0.290,0.581l0.290,0.871l-0.582,1.162l-0.289,0.870l0.000,1.453l0.000,0.580l0.289,1.162l-0.580,0.290l-0.291,1.161l0.291,0.872l-0.581,0.581l0.000,0.871l0.581,0.290l-0.581,0.581l-0.872,0.000l-0.583,-0.581l-0.871,-0.290l-0.581,0.290l-1.745,-0.581l0.581,-0.291z", + "NL" : "M490.628,83.74l2.035,0.000l0.581,1.161l-0.581,2.323l-0.871,1.162l-1.454,0.000l0.290,2.904l-1.452,-0.582l-1.745,-1.451l-2.617,0.580l-2.034,0.000l1.452,-0.870l2.618,-4.066l-3.778,1.161z", + "NO" : "M551.381,35.246l8.43,2.032l-3.488,0.582l3.198,1.742l-4.942,1.161l-2.034,0.29l1.161-2.032l-3.486-1.162l-4.362,1.162l-1.452,2.032l-2.615,1.162l-2.907-0.581h-3.488l-3.198-1.452l-1.453,0.581l-1.744,0.29l-0.582,1.743l-5.231-0.291l-0.582,1.452h-2.615l-1.745,2.033l-2.906,2.903l-4.361,3.775l1.165,1.162l-0.873,0.872h-2.907l-1.744,2.613l0.29,3.775l1.743,1.162l-1.162,3.484l-2.033,1.742l-1.455,1.742l-1.742-1.742l-5.524,3.194l-3.488,0.582l-3.778-1.452l-1.163-2.905l-0.871-6.387l2.615-1.743l7.268-2.323l5.523-2.904l4.941-3.774l6.685-5.228l4.651-2.033l7.559-3.484l5.813-1.162h4.651l4.069-2.324l5.231,0.291L551.381,35.246zM541.79,16.951l-6.105,1.162l-4.941-0.87l2.036-0.582l-1.747-0.872l5.814-0.58l0.873,1.161L541.79,16.951zM524.058,11.724l9.01,2.033l-6.977,1.162l-1.452,2.032l-2.325,0.581l-1.455,2.324h-3.196l-6.104-1.743l2.615-0.87l-4.069-0.873l-5.523-2.323l-2.036-2.033l7.56-1.162l1.454,1.162l3.777-0.291l1.163-0.871h4.07L524.058,11.724zM543.823,9.692l5.522,1.161l-4.358,1.452l-7.849,0.29l-8.14-0.581l-0.582-0.58h-3.777l-3.199-1.453l8.722-0.58l3.778,0.58l2.906-0.871L543.823,9.692z", + "NP" : "M716.198,154.304l0.000,1.161l0.291,1.742l-0.291,1.162l-2.326,0.000l-3.197,-0.581l-2.325,-0.290l-1.453,-1.452l-3.779,-0.291l-3.490,-1.742l-2.614,-1.161l-2.908,-1.162l1.163,-2.613l1.745,-1.161l1.162,-0.582l2.326,0.871l2.616,1.742l1.454,0.291l1.162,1.452l2.034,0.581l2.326,1.162l2.906,0.580l-3.198,-0.291z", + "NZ" : "M949.907,343.345l0.873,1.161l1.745-1.161l0.87,1.161v1.161l-0.87,1.452l-2.036,2.033l-1.163,1.161l0.873,1.162h-2.034l-2.327,1.162l-0.871,1.74l-1.455,2.904l-2.323,1.161l-1.165,0.871l-2.615-0.289l-1.742-0.872h-3.198l-0.292-1.162l1.453-2.033l3.49-2.613l1.744-0.58l2.034-1.16l2.325-1.452l1.744-1.453l1.162-2.032l0.872-0.58l0.58-1.452l1.745-1.451L949.907,343.345zM954.559,330.277l1.743,2.904l0.292-1.743l1.16,0.58l0.293,2.324l2.324,0.872h1.745l1.743-0.872l1.453,0.289l-0.871,2.326l-0.873,1.74h-2.033l-0.582,0.581v1.452l-0.289,0.291l-1.165,1.452l-1.163,2.032l-2.325,1.161l-0.29-0.87l-1.162-0.291l1.452-2.322l-0.871-1.453l-2.907-1.16v-0.873l2.035-1.159l0.58-2.034l-0.289-1.743l-1.164-1.743l0.292-0.58l-1.454-1.161l-2.034-2.323l-1.162-2.032l0.87-0.291l1.455,1.453l2.325,0.87L954.559,330.277z", + "OM" : "M635.678,172.888l-0.871,1.742h-1.163l-0.58,0.581l-0.582,1.452l0.29,1.742l-0.29,0.581l-1.163-0.29l-1.744,1.162l-0.291,1.452l-0.58,0.581h-1.743l-1.165,0.582v1.162l-1.163,0.581l-1.452-0.291l-2.034,1.162h-1.163l-0.873-1.743l-2.325-4.645l8.431-2.613l1.745-5.519l-1.165-2.032v-1.162l0.873-1.162v-1.161l1.162-0.581l-0.581-0.291l0.289-1.742h1.456l1.161,1.742l1.745,1.161l2.036,0.291l1.45,0.581l1.165,1.452l0.871,0.872l0.872,0.58v0.582l-0.872,1.451l-0.582,0.872L635.678,172.888zM628.995,159.82l-0.291,0.291l-0.583-0.871l0.874-0.872l0.289,0.291L628.995,159.82z", + "PA" : "M259.244,211.219l-0.872,-0.871l-0.580,-1.452l0.872,-0.871l-0.872,-0.290l-0.582,-0.871l-1.163,-0.581l-1.162,0.000l-0.582,1.162l-1.162,0.580l-0.582,0.000l-0.291,0.581l1.163,1.451l-0.581,0.581l-0.582,0.291l-1.163,0.290l-0.581,-1.742l-0.291,0.291l-0.872,0.000l-0.581,-1.162l-1.163,-0.291l-0.580,-0.290l-1.164,0.000l-0.291,0.581l-0.290,-0.291l0.290,-0.580l0.291,-0.582l-0.291,-0.289l0.583,-0.581l-0.583,-0.291l0.000,-1.161l0.872,-0.291l1.163,1.162l0.000,0.581l0.872,0.000l0.291,-0.291l0.872,0.872l1.163,-0.291l1.163,-0.581l1.744,-0.579l0.872,-0.873l1.744,0.000l-0.291,0.291l1.745,0.291l1.163,0.291l0.871,0.870l0.872,0.870l-0.290,0.292l0.872,1.741l-0.582,0.871l-0.872,-0.289l0.582,-1.451z", + "PE" : "M282.208,279.17l-0.872,1.451l-1.163,0.872l-2.905,-1.743l-0.292,-1.162l-5.232,-2.613l-4.942,-3.195l-2.325,-1.451l-1.163,-2.323l0.581,-0.871l-2.326,-3.485l-2.905,-5.227l-2.326,-5.517l-1.163,-1.161l-0.872,-2.033l-2.325,-1.743l-1.745,-1.161l0.872,-1.162l-1.453,-2.613l0.872,-2.033l2.326,-1.742l0.291,1.160l-0.873,0.582l0.000,1.162l1.163,-0.290l1.163,0.290l1.162,1.451l1.454,-1.162l0.582,-1.742l1.744,-2.613l3.196,-0.871l3.198,-2.904l0.872,-1.741l-0.581,-2.324l0.872,-0.291l1.744,1.452l0.872,1.163l1.163,0.870l1.744,2.903l2.035,0.291l1.453,-0.870l1.164,0.579l1.452,-0.290l2.326,1.452l-1.744,2.613l0.582,0.290l1.452,1.454l-2.324,-0.290l-0.583,0.580l-2.033,0.289l-3.198,2.034l-0.291,1.161l-0.581,1.162l0.290,1.451l-1.744,0.581l0.000,1.162l-0.872,0.581l1.163,2.614l1.744,1.451l-0.581,1.451l1.744,0.000l0.872,1.453l2.616,0.000l2.326,-1.453l-0.292,4.066l1.163,0.292l1.744,-0.292l2.326,4.355l-0.582,0.873l-0.290,2.033l0.000,2.323l-1.163,1.452l0.582,0.872l-0.582,0.869l1.163,2.324l1.745,-2.904z", + "PG" : "M902.817,249.55l-0.873,0.29l-1.163-0.871l-1.162-1.742l-0.581-2.032l0.581-0.289l0.29,0.579l0.583,0.872l1.452,1.741l1.163,0.871L902.817,249.55zM892.063,246.065l-1.455,0.292l-0.29,0.58l-1.454,0.871l-1.452,0.582h-1.452l-2.328-0.872l-1.453-0.872v-0.871l2.616,0.582l1.454-0.292l0.289-1.159l0.582-0.293l0.292,1.452h1.452l0.873-1.159l1.452-0.873l-0.289-1.741h1.741l0.584,0.58l-0.291,1.452L892.063,246.065zM878.982,251.292l2.326,1.742l1.741,2.904h1.745v1.16l2.035,0.582l-0.87,0.291l2.904,1.16l-0.29,0.871l-1.744,0.292l-0.87-0.872l-2.328-0.291l-2.616-0.29l-2.325-1.743l-1.452-1.451l-1.454-2.613l-3.488-1.161l-2.326,0.871l-1.744,0.871l0.292,2.032l-2.034,0.871l-1.744-0.29l-2.617-0.29l-0.29-9.002v-8.712l4.94,1.742l4.941,1.451l2.036,1.453l1.452,1.452l0.292,1.741l4.649,1.743l0.583,1.451l-2.328,0.291L878.982,251.292zM895.259,243.451l-0.873,0.582l-0.582-1.741l-0.579-0.873l-1.162-0.87l-1.455-1.162l-2.034-0.871l0.579-0.58l1.455,0.58l1.163,0.581l1.163,0.871l0.87,1.161l1.165,0.871L895.259,243.451z", + "PH" : "M821.715,207.735l0.292,2.033v1.451l-0.872,2.322l-0.871-2.612l-1.454,1.452l0.871,2.033l-0.871,1.16l-3.199-1.452l-0.581-2.032l0.874-1.452l-1.745-1.161l-0.873,1.161l-1.452-0.29l-2.034,1.742l-0.292-0.871l0.871-2.323l1.744-0.871l1.455-0.872l1.163,1.162l2.035-0.87l0.29-1.162h2.033v-2.323l2.036,1.453l0.29,1.451L821.715,207.735zM815.03,202.798l-0.871,0.87l-0.873,1.744l-0.871,0.579l-1.744-1.741l0.582-0.871l0.581-0.581l0.289-1.743l1.455-0.29l-0.292,2.033l2.036-2.614L815.03,202.798zM799.916,205.413l-3.488,2.612l1.163-2.033l2.034-1.741l1.743-1.744l1.454-2.902l0.291,2.322l-1.745,1.453L799.916,205.413zM809.216,198.151l1.743,0.872h1.745v1.161l-1.452,1.162l-1.745,0.871v-1.162l0.292-1.451L809.216,198.151zM819.099,197.571l0.874,2.904l-2.036-0.582v0.872l0.581,1.741l-1.162,0.582l-0.29-2.033h-0.584l-0.578-1.742l1.743,0.291v-1.162l-1.743-2.033h2.614L819.099,197.571zM808.344,194.958l-0.873,2.323l-1.161-1.162l-1.454-2.323l2.615,0.291L808.344,194.958zM807.764,180.148l1.743,0.581l0.871-0.581v0.581l-0.289,1.162l0.87,2.033l-0.581,2.324l-1.744,0.87l-0.29,2.323l0.582,2.033l1.452,0.29l1.165-0.29l3.486,1.451l-0.289,1.743l0.87,0.581l-0.289,1.161l-2.036-1.161l-1.163-1.452l-0.579,0.871l-1.744-1.743l-2.617,0.581l-1.454-0.581l0.291-1.162l0.873-0.871l-0.873-0.58l-0.291,1.162l-1.453-1.743l-0.29-1.161l-0.291-2.613l1.162,0.871l0.292-4.355l0.871-2.324H807.764z", + "PK" : "M680.735,128.75l2.036,1.451l0.870,2.033l4.361,1.162l-2.617,2.323l-3.196,0.290l-4.069,-0.581l-1.453,1.162l1.160,2.324l0.874,2.032l2.325,1.161l-2.325,1.743l0.000,2.032l-2.618,2.614l-1.745,2.904l-2.904,2.904l-3.199,-0.291l-3.197,2.904l1.745,1.162l0.579,2.032l1.455,1.451l0.583,2.324l-6.106,0.000l-1.745,2.033l-2.033,-0.871l-0.873,-2.033l-2.034,-2.033l-5.234,0.580l-4.360,0.000l-4.068,0.291l1.161,-3.193l4.070,-1.162l-0.290,-1.452l-1.453,-0.291l0.000,-2.613l-2.617,-1.162l-1.162,-1.742l-1.453,-1.452l4.649,1.452l2.907,-0.291l1.455,0.291l0.581,-0.580l2.035,0.289l3.488,-1.161l0.291,-2.323l1.452,-1.742l2.034,0.000l0.292,-0.581l2.036,-0.290l1.160,0.000l0.875,-0.580l0.000,-1.743l1.162,-1.743l1.742,-0.580l-1.161,-1.743l2.616,0.000l0.872,-0.871l-0.289,-1.162l1.450,-1.161l-0.289,-1.452l-0.581,-1.162l1.454,-1.161l3.197,-0.580l2.907,-0.291l1.454,-0.581l-1.743,0.290z", + "PL" : "M515.047,90.418l-1.165,-1.742l0.292,-0.870l-0.581,-1.452l-1.163,-1.162l0.872,-0.581l-0.583,-1.452l1.744,-0.870l4.362,-1.163l3.489,-1.161l2.614,0.581l0.291,0.580l2.617,0.291l3.489,0.290l4.940,-0.290l1.454,0.290l0.582,0.872l0.289,1.452l0.582,0.870l0.000,1.161l-1.453,0.582l0.871,1.162l0.000,1.161l1.455,2.614l-0.292,0.580l-1.452,0.580l-2.617,2.033l0.872,1.452l-0.582,-0.289l-2.616,-1.163l-2.033,0.582l-1.455,-0.291l-1.453,0.581l-1.455,-1.163l-1.160,0.582l0.000,-0.291l-1.454,-1.161l-2.034,-0.290l-0.290,-0.872l-1.746,-0.290l-0.581,0.580l-1.454,-0.580l0.293,-0.580l-2.036,-0.291l1.453,0.872z", + "PR" : "M291.219,180.148l1.455,0.000l0.581,0.581l-0.872,0.871l-2.035,0.000l-1.453,0.000l-0.291,-1.162l0.582,-0.290l-2.033,0.000z", + "PS" : "M571.728,141.816l0.000,1.743l-0.581,0.871l-1.160,0.291l0.000,-0.581l0.871,-0.581l-0.871,-0.289l0.578,-1.743l-1.163,-0.289z", + "PT" : "M448.769,115.683l1.163,-0.581l1.163,-0.291l0.581,1.162l1.744,0.000l0.291,-0.290l1.746,0.000l0.581,1.452l-1.163,0.870l0.000,2.033l-0.582,0.291l0.000,1.451l-1.162,0.291l1.162,1.452l-0.873,2.032l0.873,0.581l-0.291,0.871l-0.871,0.871l0.000,1.162l-0.874,0.581l-1.452,-0.290l-1.454,0.290l0.292,-2.324l-0.292,-1.451l-1.163,-0.291l-0.581,-1.162l0.291,-1.742l0.871,-1.160l0.292,-0.873l0.582,-1.741l0.000,-1.162l-0.582,-0.871l0.292,1.161z", + "PY" : "M301.103,292.237l1.163,-3.485l0.000,-1.451l1.453,-2.324l4.652,-0.871l2.616,0.000l2.615,1.451l0.000,0.871l0.872,1.452l-0.291,3.776l2.907,0.581l1.163,-0.581l2.035,0.871l0.291,0.581l0.291,2.613l0.290,1.162l1.163,0.000l0.872,-0.290l1.163,0.290l0.000,1.741l-0.292,1.454l-0.580,1.742l-0.582,2.322l-2.325,2.032l-2.326,0.581l-3.197,-0.581l-2.617,-0.580l2.617,-4.354l-0.291,-1.162l-2.906,-1.161l-3.198,-2.034l-2.326,-0.290l5.232,4.356z", + "QA" : "M613.587,162.725l0.000,-1.743l0.582,-1.452l0.873,-0.290l0.871,0.871l0.000,1.451l-0.581,1.744l-0.872,0.000l0.873,0.581z", + "RO" : "M536.265,99.13l1.163,-0.581l1.744,0.581l1.745,0.000l1.163,0.581l1.162,-0.581l2.036,-0.291l0.579,-0.580l1.163,0.000l0.873,0.290l0.871,0.872l0.873,1.162l1.453,1.742l0.291,1.161l-0.291,1.161l0.291,1.163l1.452,0.580l1.166,-0.580l1.161,0.580l0.289,0.581l-1.450,0.581l-0.874,0.000l-0.872,3.194l-1.454,-0.290l-2.035,-0.872l-3.196,0.581l-1.452,0.581l-4.071,0.000l-2.035,-0.581l-1.164,0.291l-0.581,-1.162l-0.581,-0.581l0.581,-0.291l-0.581,-0.289l-0.871,0.580l-1.745,-0.872l-0.289,-1.161l-1.454,-0.580l-0.293,-0.872l-1.741,-1.161l2.325,-0.581l1.742,-1.741l1.164,-2.034l-1.743,0.581z", + "RS" : "M531.325,106.1l1.454,0.580l0.289,1.161l1.745,0.872l0.871,-0.580l0.581,0.289l-0.581,0.291l0.581,0.581l-0.871,0.581l0.290,1.161l1.454,1.162l-1.164,0.871l-0.580,0.871l0.290,0.289l-0.290,0.292l-1.165,0.000l-1.161,0.290l0.000,-0.290l0.290,-0.292l0.292,-0.580l-0.292,0.000l-0.579,-0.580l-0.583,0.000l-0.290,-0.581l-0.581,-0.290l-0.293,-0.291l-0.581,0.291l-0.289,0.871l-0.582,0.000l0.290,0.000l-1.162,-0.581l-0.872,-0.290l-0.290,-0.581l-0.873,-0.290l0.581,-0.291l0.582,-1.161l-1.455,-1.162l0.581,-1.161l-0.871,0.000l1.163,-0.872l-0.873,-0.870l-0.871,-1.163l2.326,-0.580l1.455,0.000l1.741,1.161l-0.293,-0.872z", + "RU" : "M869.098,91.29l2.907,4.936l-4.07-0.87l-1.743,4.065l2.614,2.613v2.033l-2.034-1.743l-1.743,2.323l-0.582-2.323l0.292-2.904l-0.292-2.904l0.582-2.033v-3.775l-1.454-2.613l0.291-3.774l2.326-1.162l-0.872-1.452l1.163-0.29l0.58,1.742l1.162,2.614l-0.29,2.903L869.098,91.29zM536.265,81.417l-4.94,0.29l-3.488-0.29l0.58-1.452l3.779-0.872l2.906,0.581l1.454,0.291l-0.582,0.871L536.265,81.417zM969.382,36.116l-3.196,0.291l-0.581-0.871l3.777-1.162h-0.01l0.58-0.29h2.326l3.779,0.872v0.29l-2.907,0.871h-3.778H969.382zM869.098,29.728h-4.069l-5.814-0.29l-0.582-0.29l2.618-1.162h3.488l4.067,0.872L869.098,29.728zM888.574,24.501l-3.198,1.162l-4.36-0.291l-4.942-1.16l0.582-0.873l5.232,0.291L888.574,24.501zM873.167,23.049l-2.324,2.033h-9.884l-4.651,0.58l-5.521-1.742l1.454-1.742l3.778-0.582h7.266L873.167,23.049zM632.19,36.407l-1.743,0.291l-9.012-0.291l-0.581-1.161l-4.941-0.872l-0.581-1.452l2.907-0.582V30.89l5.232-2.323l-2.325-0.291l6.393-2.613l-0.578-1.162l6.104-1.452l9.011-1.742l9.3-0.581l4.653-0.871l5.23-0.581l2.036,1.162l-1.745,0.871l-9.883,1.452l-8.43,1.162l-8.43,2.613l-4.069,2.614l-4.361,2.904l0.584,2.033L632.19,36.407zM969.382,52.379h-0.291l-3.486,1.161l-3.488-0.29l2.615,1.452l1.454,2.323l1.455,0.58l0.289,1.162l-0.873,0.872l-4.94-0.582l-7.849,2.033l-2.325,0.291l-4.362,2.033l-4.069,1.742l-0.871,1.161l-4.069-2.033l-6.977,2.324l-1.452-1.162l-2.618,1.162l-3.488-0.291l-0.871,1.742l-3.486,2.613l0.29,1.162l2.906,0.582l-0.291,4.064h-2.615l-1.163,2.324l1.163,1.161l-4.651,1.452l-1.163,3.194l-4.07,0.582l-0.87,2.903l-3.781,2.613l-1.162-2.032l-1.163-3.775l-1.454-6.389l1.164-3.775l2.324-1.453l0.291-1.451l4.36-0.581l4.942-3.484l4.649-2.904l4.943-2.033l2.326-3.775h-3.489l-1.744,2.324l-6.977,3.194l-2.034-3.485l-7.269,0.872l-6.975,4.646l2.325,1.742l-6.105,0.58l-4.359,0.291l0.291-2.032l-4.358-0.292l-3.199,1.453l-8.431-0.581l-9.01,0.871l-9.013,5.227l-10.463,6.679l4.357,0.29l1.165,1.743l2.615,0.581l1.744-1.452l3.196,0.291l3.78,2.904l0.29,2.323l-2.326,2.904v3.194l-1.452,4.356l-4.07,4.066l-0.87,1.741l-3.781,3.194l-3.777,3.194l-1.744,1.742l-3.488,1.452l-1.744,0.291l-1.744-1.453l-3.78,2.033l-0.579,0.871l-0.292-0.582v-1.161l1.454-0.291l0.29-3.194l-0.581-2.324l2.325-0.871l3.198,0.291l2.034-2.613l0.871-2.904l1.163-1.162l1.454-2.323l-4.651,0.871l-2.325,0.872h-4.361l-0.871-2.614l-3.488-1.742l-4.651-0.871l-1.16-2.904l-0.874-1.453l-0.871-1.161l-1.744-2.903l-2.617-1.162l-4.067-0.58h-3.491l-3.486,0.58l-2.325,1.162l1.452,0.871v1.452l-1.452,0.872l-2.328,2.903v1.162l-4.068,1.742l-3.197-1.162l-3.197,0.291l-1.452-0.871l-1.745-0.291l-4.069,2.033l-3.488,0.291l-2.616,0.872l-3.49-0.581h-2.615l-1.743-1.453l-2.615-1.162l-2.618-0.291l-3.486,0.291l-2.617,0.582l-4.069-1.162l-0.29-2.324l-3.488-0.58l-2.326-0.29l-3.196-1.162l-2.907,2.903l1.163,1.453l-2.617,2.033l-4.07-0.581l-2.617-0.29l-1.741-1.162h-2.908l-2.616-0.871l-4.068,1.161l-5.232,2.324l-2.907,0.582l-1.163,0.29l-1.454-1.742l-3.488,0.291l-1.163-1.162l-2.034-0.582l-1.16-1.452l-1.455-0.581l-4.069,0.872l-3.78-1.742l-1.453,1.451l-6.104-6.968l-3.488-2.033l0.871-0.871l-6.975,2.613h-2.617l0.29-1.451l-3.488-0.872l-2.906,0.581l-0.872-2.904l-4.941-0.581l-2.326,1.161l-6.977,1.162l-1.454,0.582l-10.172,0.872l-1.454,1.161l2.036,1.743l-2.617,0.87l0.581,0.581l-2.617,1.452l4.361,1.742l-0.581,1.453l-3.78-0.291l-0.871,0.872l-3.488-1.452l-4.36,0.29l-2.906,1.162l-3.488-1.162l-5.812-2.032h-4.361l-5.814,3.194l-0.289,2.033l-2.906-1.742l-2.036,3.195l0.58,0.29l-1.452,2.324l2.326,1.742h2.034l1.743,1.741l-0.289,1.453l1.452,0.581l-1.163,1.452l-2.906,0.581l-2.615,2.614l2.615,2.613l-0.289,2.032l2.906,3.194l-1.744,1.162l-0.29,0.581h-1.165l-2.033-1.743h-0.873l-1.745-0.871l-0.581-1.162l-2.614-0.58l-1.745,0.58l-0.581-0.58l-3.78-1.162l-3.778-0.581l-2.325-0.581l-0.581,0.581l-3.488-2.323l-3.197-1.161l-2.326-1.743l2.034-0.29l2.328-2.324l-1.455-1.162l4.07-1.162l-0.292-0.581l-2.323,0.581v-1.161l1.452-0.871l2.615-0.291l0.582-0.871l-0.582-1.452l1.163-1.451l-0.29-0.873l-4.07-0.871h-1.454l-1.744-1.162l-2.034,0.291l-3.488-0.871V91.29l-0.871-1.162h-2.327l-0.29-0.871l0.873-0.581l-1.744-1.742l-2.906,0.29h-0.872l-0.584,0.582h-1.16l-0.583-2.033l-0.871-0.872l0.581-0.291l2.326,0.291l1.163-0.58l-0.872-0.872l-2.036-0.581l0.292-0.29l-1.163-0.581l-1.743-1.742l0.578-0.871l-0.289-1.162l-2.615-0.581l-1.454,0.291l-0.29-0.872l-2.907-0.581l-0.871-1.742l-0.291-1.161l-1.455-0.582l1.163-0.871l-0.582-2.613l1.745-1.742l-0.291-0.291l3.199-1.742l-2.908-1.162l5.813-3.485l2.617-1.742l0.871-1.162l-4.069-2.032l1.162-1.742l-2.325-2.033l1.744-2.324l-3.198-3.194l2.617-2.033l-4.362-1.743l0.584-2.033l2.034-0.29l4.942-1.161l2.615-0.872l4.651,1.743l7.557,0.58l10.465,3.195l2.035,1.162v1.741l-2.906,1.453l-4.651,0.871l-12.21-2.033l-2.033,0.291l4.651,2.033v1.161l0.292,2.904l3.486,0.872l2.036,0.58l0.581-1.161l-1.746-1.162l1.746-1.162l6.685,1.742l2.326-0.581l-1.745-2.033l6.396-2.903l2.323,0.29l2.617,0.871l1.745-1.742l-2.326-1.742l1.163-1.742l-2.034-1.452l7.848,0.872l1.453,1.452l-3.489,0.289v1.453l2.326,1.162l4.361-0.582l0.581-2.033l5.812-1.161l9.594-2.323h2.034l-2.907,1.742l3.488,0.29l2.034-0.871h5.232l4.069-1.161l3.197,1.452l2.906-1.742l-2.906-1.453l1.454-1.162l8.14,0.872l3.778,0.871l10.176,3.194l1.742-1.452l-2.907-1.452v-0.581l-3.197-0.291l0.874-1.162l-1.455-2.323v-0.871l4.943-2.323l1.742-2.613l2.035-0.582l7.268,0.872l0.581,1.451l-2.615,2.324l1.743,0.871l0.872,1.742l-0.581,3.775l3.198,1.743l-1.165,1.742l-5.521,4.066l3.197,0.29l1.161-0.871l2.907-0.872l0.874-1.161l2.325-1.453l-1.744-1.452l1.454-1.742l-3.198-0.291l-0.582-1.451l2.326-2.904l-3.778-2.324l4.94-1.741l-0.581-2.033h1.453l1.454,1.452l-1.163,2.613l2.907,0.581l-1.162-2.033l4.65-0.872l5.522-0.29l5.232,1.451l-2.617-2.032l-0.29-3.195l4.94-0.291h6.688l5.812-0.29l-2.324-1.451l3.197-1.743l3.197-0.29l5.521-1.162l7.27-0.58l0.872-0.582l7.268-0.291l2.325,0.582l6.104-1.452h4.94l0.873-1.161l2.615-1.162l6.396-1.161l4.651,0.87l-3.489,0.872l6.104,0.291l0.874,1.452l2.324-0.871h8.141l6.104,1.452l2.325,1.162l-0.873,1.451l-2.907,0.581l-7.267,1.743l-2.036,0.581l3.49,0.58l4.068,0.581l2.326-0.581l1.452,1.743l1.165-0.581l4.359-0.582l9.013,0.582l0.579,1.161l11.628,0.582v-2.033l5.814,0.291h4.359l4.651,1.451l1.163,1.742l-1.745,1.162l3.488,2.323l4.36,1.161l2.615-2.904l4.653,1.162l4.65-0.871l5.233,0.871l2.034-0.581l4.648,0.29l-2.033-2.614l3.488-1.161l24.998,1.741l2.327,1.743l7.267,2.032l11.045-0.581l5.524,0.581l2.324,1.162l-0.58,2.033l3.486,0.581l3.78-0.581h4.941l4.94,0.581l5.234-0.29l4.938,2.323l3.488-0.872l-2.322-1.742l1.162-1.162l8.721,0.872l5.812-0.292l7.848,1.453l4.069,1.162h-0.01l6.976,2.033l6.977,2.614v1.742l1.744,0.871l-0.581-2.033l7.559,0.291l5.231,2.613l-2.616,1.162l-4.651,0.29v2.613l-1.161,0.581h-2.617l-2.034-0.871l-3.779-0.871l-0.582-1.162l-2.615-0.58l-3.199,0.58l-1.452-1.162l0.581-0.872l-3.198,0.582l1.165,1.452l-1.745,1.162H969.382zM762.998,15.499l-15.406,1.162l4.94-3.484l2.328-0.291h2.034l6.977,1.742L762.998,15.499zM614.46,9.401l-3.488,0.291l-2.617,0.29l-0.289,0.581l-3.199,0.291l-3.197-0.581l1.743-0.871h-6.104l5.233-0.581h4.359l0.291,0.581l1.744-0.581l2.618-0.291l4.067,0.581L614.46,9.401zM748.754,14.047l-5.812,0.29l-7.85-0.87l-4.359-0.872l-2.325-2.033l-3.779-0.581l7.268-1.742L738,7.369l5.232,1.452l6.396,2.614L748.754,14.047z", + "RW" : "M557.485,234.16l1.163,1.452l-0.289,1.741l-0.582,0.291l-1.454,-0.291l-0.874,1.743l-1.743,-0.290l0.293,-1.453l0.290,-0.290l0.000,-1.742l0.871,-0.580l0.582,0.290l-1.743,0.871z", + "SA" : "M591.496,185.956l-0.291,-1.162l-0.873,-0.871l-0.290,-1.162l-1.453,-0.871l-1.454,-2.323l-0.582,-2.322l-2.034,-1.744l-1.163,-0.580l-1.743,-2.613l-0.292,-1.744l0.000,-1.741l-1.453,-2.904l-1.454,-1.162l-1.453,-0.580l-0.871,-1.452l0.000,-0.872l-0.581,-1.451l-0.874,-0.582l-1.162,-2.032l-1.452,-2.033l-1.456,-2.033l-1.452,0.000l0.290,-1.451l0.292,-0.871l0.292,-1.162l3.196,0.291l1.161,-0.582l0.581,-1.161l2.036,-0.290l0.581,-0.871l0.872,-0.581l-2.905,-2.614l5.522,-1.451l0.582,-0.582l3.488,0.873l4.067,2.032l7.561,5.517l5.230,0.000l2.326,0.290l0.873,1.452l1.743,0.000l1.165,2.323l1.452,0.581l0.289,0.871l2.036,1.162l0.290,1.162l-0.290,0.870l0.290,0.872l0.584,0.871l0.578,0.871l0.292,0.581l0.873,0.581l0.872,0.000l0.290,0.871l0.291,0.871l0.872,2.613l8.430,1.452l0.580,-0.580l1.165,2.031l-1.745,5.519l-8.430,2.613l-7.849,1.162l-2.615,1.161l-2.036,2.904l-1.163,0.291l-0.580,-0.873l-1.164,0.292l-2.615,-0.292l-0.582,-0.289l-3.197,0.000l-0.582,0.289l-1.161,-0.869l-0.873,1.451l0.289,1.161l1.161,-0.872z", + "SB" : "M919.968,259.712l0.871,0.873h-2.034l-0.873-1.453l1.452,0.58H919.968zM916.48,257.972l-0.874,0.289l-1.743-0.289l-0.58-0.582v-1.161l2.034,0.581l0.873,0.58L916.48,257.972zM918.805,257.39l-0.291,0.582l-2.034-2.613l-0.582-1.453h0.871l0.873,2.033L918.805,257.39zM913.863,253.906v0.581l-2.034-1.161l-1.454-1.162l-1.161-0.871l0.579-0.29l1.164,0.871l2.326,1.161L913.863,253.906zM907.468,251.002l-0.581,0.29l-1.162-0.58l-1.163-1.162v-0.581l1.744,1.162L907.468,251.002z", + "SD" : "M567.37,204.831l-0.582,0.000l0.000,-1.452l-0.292,-0.873l-1.453,-1.160l-0.292,-1.742l0.292,-2.033l-1.162,-0.291l-0.293,0.582l-1.452,0.289l0.582,0.582l0.291,1.742l-1.454,1.451l-1.453,2.033l-1.454,0.291l-2.325,-1.744l-1.163,0.582l0.000,0.871l-1.454,0.581l-0.290,0.582l-2.617,0.000l-0.289,-0.582l-2.035,0.000l-1.164,0.291l-0.581,-0.291l-1.452,-1.452l-0.584,-0.871l-2.033,0.581l-0.581,1.161l-0.872,2.324l-0.874,0.581l-0.872,0.289l-0.290,0.000l-0.871,-0.870l0.000,-0.870l0.289,-1.163l0.000,-1.162l-1.452,-1.742l-0.292,-1.162l0.000,-0.580l-1.162,-0.871l0.000,-1.453l-0.582,-1.161l-0.873,0.290l0.293,-1.161l0.580,-1.162l-0.289,-1.162l0.871,-0.870l-0.582,-0.581l0.872,-1.743l1.164,-2.032l2.324,0.291l0.000,-11.036l0.000,-0.870l3.199,-0.291l0.000,-5.228l11.045,0.000l10.755,0.000l10.755,0.000l0.874,2.615l-0.581,0.580l0.289,2.614l1.163,3.485l1.164,0.580l1.454,0.872l-1.454,1.742l-2.035,0.289l-0.874,0.873l-0.291,2.033l-1.161,4.065l0.290,0.870l-0.581,2.323l-0.872,2.904l-1.743,1.162l-1.163,2.322l-0.292,1.162l-1.454,0.582l-0.579,2.903l0.000,-0.291z", + "SE" : "M534.813,50.346l-2.617,1.742l0.291,1.742l-4.362,2.324l-5.230,2.323l-2.036,3.774l2.036,2.033l2.615,1.452l-2.615,3.194l-2.907,0.581l-0.873,4.647l-1.744,2.613l-3.197,-0.291l-1.455,2.033l-3.196,0.291l-0.874,-2.614l-2.323,-3.194l-2.327,-3.776l1.455,-1.742l2.033,-1.742l1.162,-3.485l-1.743,-1.162l-0.290,-3.775l1.744,-2.612l2.907,0.000l0.873,-0.872l-1.165,-1.162l4.361,-3.774l2.907,-2.904l1.745,-2.033l2.615,0.000l0.582,-1.452l5.232,0.290l0.582,-1.742l1.744,-0.290l3.486,1.452l4.361,2.033l0.000,4.065l0.872,1.162l4.649,-0.871z", + "SI" : "M511.848,102.905l2.326,0.291l1.162,-0.582l2.616,0.000l0.291,-0.580l0.582,0.000l0.582,1.162l-2.325,0.580l-0.293,1.162l-0.871,0.290l0.000,0.582l-1.163,0.000l-0.873,-0.291l-0.580,0.291l-1.743,0.000l0.581,-0.291l-0.581,-1.162l-0.289,1.452z", + "SK" : "M525.802,94.774l0.000,0.291l1.160,-0.582l1.455,1.163l1.453,-0.581l1.455,0.291l2.033,-0.582l2.616,1.163l-0.872,0.870l-0.580,0.872l-0.582,0.290l-2.908,-0.872l-0.870,0.291l-0.582,0.581l-1.455,0.290l-0.289,0.000l-1.163,0.290l-1.163,0.290l-0.291,0.291l-2.324,0.581l-0.871,-0.290l-1.454,-0.872l-0.292,-0.870l0.292,-0.291l0.289,-0.581l1.165,0.000l0.871,-0.290l0.290,-0.291l0.289,-0.289l0.292,-0.581l0.582,0.000l0.580,-0.582l-0.874,0.000z", + "SL" : "M442.376,212.381l-0.873,-0.291l-2.034,-1.161l-1.455,-1.452l-0.289,-0.871l-0.292,-2.033l1.455,-1.451l0.289,-0.582l0.292,-0.581l0.871,0.000l0.581,-0.580l2.326,0.000l0.582,0.871l0.581,1.163l0.000,0.870l0.582,0.581l0.000,1.161l0.581,-0.290l-1.163,1.451l-1.454,1.452l0.000,0.871l0.580,-0.872z", + "SN" : "M427.84,193.505l-1.162,-2.032l-1.454,-1.161l1.164,-0.291l1.452,-2.032l0.582,-1.452l0.871,-0.872l1.456,0.291l1.452,-0.581l1.454,0.000l1.163,0.872l2.034,0.580l1.454,2.033l2.034,1.742l0.000,1.742l0.581,1.742l1.162,0.581l0.000,1.162l0.000,0.871l-0.289,0.290l-1.744,-0.290l0.000,0.290l-0.581,0.000l-2.036,-0.581l-1.453,0.000l-4.942,-0.290l-0.871,0.290l-0.874,0.000l-1.453,0.581l-0.291,-2.323l2.327,0.291l0.580,-0.581l0.582,0.000l1.163,-0.581l1.163,0.581l1.162,0.000l1.163,-0.581l-0.582,-0.872l-0.870,0.581l-0.873,0.000l-1.163,-0.581l-0.871,0.000l-0.581,0.581l2.909,0.000z", + "SO" : "M610.681,199.023l1.452,-0.290l1.162,-0.871l1.165,0.000l0.000,0.871l-0.291,1.451l0.000,1.453l-0.582,1.161l-0.581,2.904l-1.452,2.904l-1.747,3.484l-2.323,4.066l-2.326,3.194l-3.199,3.775l-2.907,2.323l-4.068,2.613l-2.616,2.033l-2.908,3.486l-0.582,1.451l-0.580,0.581l-1.745,-2.323l0.000,-9.873l2.325,-3.196l0.874,-0.870l1.744,0.000l2.324,-2.033l3.780,0.000l7.850,-8.421l1.742,-2.323l1.163,-1.742l0.000,-1.452l0.000,-2.614l0.000,-1.161l0.290,0.000l0.873,0.000l-1.163,0.581z", + "SOL" : "M608.355,204.831l-1.163,1.742l-1.742,2.323l-2.328,0.000l-9.010,-3.194l-1.163,-0.871l-0.873,-1.452l-1.163,-1.453l0.583,-1.161l1.161,-1.452l0.873,0.580l0.582,1.162l1.163,1.162l1.163,0.000l2.614,-0.580l3.199,-0.582l2.327,-0.580l1.452,-0.291l0.871,-0.580l1.744,0.000l-0.290,0.000l0.000,1.161l0.000,2.614l0.000,-1.452z", + "SR" : "M316.509,214.415l3.198,0.580l0.290,-0.291l2.326,-0.289l2.907,0.580l-1.453,2.612l0.289,1.743l1.164,1.742l-0.582,1.161l-0.290,1.163l-0.581,1.162l-1.745,-0.581l-1.162,0.289l-1.163,-0.289l-0.291,0.870l0.581,0.581l-0.290,0.581l-1.454,-0.291l-1.744,-2.322l-0.291,-1.744l-0.872,0.000l-1.453,-2.032l0.581,-1.161l0.000,-0.872l1.453,-0.579l-0.582,2.613z", + "SS" : "M567.37,204.831l0.000,2.322l-0.582,0.872l-1.455,0.000l-0.872,1.452l1.746,0.291l1.452,1.161l0.290,1.161l1.454,0.580l1.455,3.196l-1.745,1.741l-1.743,1.743l-1.745,1.162l-1.744,0.000l-2.326,0.580l-1.744,-0.580l-1.163,0.870l-2.325,-2.032l-0.874,-1.162l-1.450,0.581l-1.166,0.000l-0.873,0.291l-1.161,-0.291l-1.743,-2.323l-0.292,-0.871l-2.034,-0.871l-0.873,-1.743l-1.163,-1.161l-1.743,-1.452l0.000,-0.871l-1.452,-1.162l-2.037,-1.162l0.872,-0.289l0.874,-0.581l0.872,-2.324l0.581,-1.161l2.033,-0.581l0.584,0.871l1.452,1.452l0.581,0.291l1.164,-0.291l2.035,0.000l0.289,0.582l2.617,0.000l0.290,-0.582l1.454,-0.581l0.000,-0.871l1.163,-0.582l2.325,1.744l1.454,-0.291l1.453,-2.033l1.454,-1.451l-0.291,-1.742l-0.582,-0.582l1.452,-0.289l0.293,-0.582l1.162,0.291l-0.292,2.033l0.292,1.742l1.453,1.160l0.292,0.873l0.000,1.452l-0.582,0.000z", + "SV" : "M232.211,194.086l-0.291,0.581l-1.743,0.000l-0.872,-0.290l-1.164,-0.581l-1.452,0.000l-0.873,-0.581l0.000,-0.580l0.873,-0.581l0.580,-0.291l0.000,-0.290l0.581,-0.291l0.873,0.291l0.582,0.581l0.872,0.581l0.000,0.289l1.161,-0.289l0.582,0.000l0.291,0.289l0.000,-1.162z", + "SY" : "M580.45,139.204l-5.234,2.903l-3.195,-1.161l0.289,-0.290l0.000,-1.162l0.873,-1.452l1.452,-1.161l-0.581,-1.162l-1.163,0.000l-0.290,-2.033l0.582,-1.161l0.871,-0.582l0.581,-0.580l0.290,-1.742l0.873,0.580l2.907,-0.870l1.454,0.581l2.327,0.000l3.196,-0.872l1.453,0.000l3.197,-0.581l-1.454,1.742l-1.454,0.872l0.292,2.032l-1.163,3.195l6.103,-2.904z", + "SZ" : "M562.136,304.433l-0.581,1.161l-1.744,0.290l-1.452,-1.451l-0.292,-0.871l0.870,-1.161l0.293,-0.581l0.872,-0.290l1.163,0.580l0.580,1.161l-0.291,-1.162z", + "TD" : "M513.593,195.538l0.289,-1.161l-1.742,-0.291l0.000,-1.742l-1.165,-0.871l1.165,-3.775l3.486,-2.614l0.292,-3.484l1.164,-5.517l0.581,-1.162l-1.163,-0.871l0.000,-0.871l-1.164,-0.871l-0.581,-4.357l2.616,-1.451l11.046,5.226l11.045,5.227l0.000,11.036l-2.324,-0.291l-1.164,2.032l-0.872,1.743l0.582,0.581l-0.871,0.870l0.289,1.162l-0.580,1.162l-0.293,1.161l0.873,-0.290l0.582,1.161l0.000,1.453l1.162,0.871l0.000,0.580l-1.744,0.581l-1.452,1.161l-2.034,2.905l-2.617,1.452l-2.618,-0.291l-0.871,0.291l0.292,0.870l-1.454,0.872l-1.163,1.161l-3.488,1.162l-0.582,-0.580l-0.579,-0.291l-0.293,0.871l-2.325,0.290l0.290,-0.870l-0.872,-1.743l-0.289,-1.161l-1.165,-0.581l-1.742,-1.743l0.579,-1.161l1.455,0.289l0.581,-0.289l1.453,0.000l-1.453,-2.324l0.292,-2.032l-0.292,-1.743l1.162,1.742z", + "TF" : "M663.583,364.542l1.746,0.872l2.617,0.581l0.000,0.291l-0.584,1.452l-4.360,0.000l0.000,-1.452l0.292,-1.161l-0.289,0.583z", + "TG" : "M479,214.123l-2.324,0.581l-0.582,-1.162l-0.872,-1.742l0.000,-1.162l0.581,-2.613l-0.871,-0.872l-0.292,-2.322l0.000,-2.033l-0.871,-1.161l0.000,-0.872l2.616,0.000l-0.582,1.452l0.873,0.871l0.872,0.871l0.291,1.454l0.579,0.289l-0.290,6.388l-0.872,-2.033z", + "TH" : "M756.022,197.571l-2.325,-1.452l-2.325,0.000l0.290,-2.033l-2.326,0.000l-0.291,2.904l-1.454,4.065l-0.871,2.613l0.290,1.745l1.744,0.289l1.163,2.323l0.291,2.613l1.745,1.452l1.453,0.291l1.454,1.452l-0.873,1.162l-1.744,0.289l-0.290,-1.451l-2.326,-1.163l-0.291,0.582l-1.163,-1.162l-0.582,-1.452l-1.452,-1.452l-1.163,-1.161l-0.582,1.452l-0.581,-1.452l0.292,-1.742l0.871,-2.615l1.452,-2.903l1.454,-2.614l-1.162,-2.322l0.290,-1.452l-0.582,-1.453l-1.741,-2.322l-0.582,-1.162l0.871,-0.580l1.163,-2.323l-1.163,-2.034l-1.744,-1.742l-1.455,-2.613l1.165,-0.290l1.163,-3.194l2.034,0.000l1.743,-1.163l1.454,-0.580l1.163,0.580l0.290,1.744l1.743,0.289l-0.579,2.904l0.000,2.323l2.907,-1.742l0.871,0.581l1.452,0.000l0.582,-0.871l2.036,0.000l2.325,2.323l0.000,2.613l2.327,2.324l-0.291,2.323l-0.872,1.451l-2.326,-0.581l-3.781,0.581l-1.741,2.323l-0.580,-3.485z", + "TJ" : "M669.108,120.329l-0.873,0.871l-2.906,-0.582l-0.291,1.743l2.908,-0.290l3.488,0.871l5.233,-0.291l0.579,2.324l0.874,-0.291l1.743,0.582l0.000,1.160l0.292,1.742l-2.909,0.000l-1.745,-0.290l-1.744,1.162l-1.162,0.291l-1.161,0.581l-0.873,-0.872l0.000,-2.323l-0.581,0.000l0.291,-0.871l-1.454,-0.871l-1.455,1.161l-0.290,1.161l-0.289,0.291l-1.745,0.000l-0.872,1.162l-0.872,-0.582l-2.036,0.872l-0.871,-0.290l1.744,-2.614l-0.582,-2.032l-2.033,-0.871l0.579,-1.162l2.328,0.290l1.452,-1.743l0.872,-1.741l3.488,-0.582l-0.581,1.163l0.581,0.871l-0.873,0.000z", + "TL" : "M817.647,255.359l0.580,-0.582l2.327,-0.580l1.744,-0.291l0.871,-0.290l1.164,0.290l-1.164,0.871l-2.905,1.162l-2.037,0.871l-0.290,-0.871l0.290,0.580z", + "TM" : "M642.364,132.815l-0.289,-2.323l-2.034,0.000l-3.200,-2.324l-2.325,-0.290l-2.907,-1.452l-2.034,-0.290l-1.162,0.581l-1.745,-0.291l-2.036,1.742l-2.323,0.582l-0.582,-2.033l0.289,-2.904l-2.033,-0.871l0.581,-2.033l-1.743,0.000l0.578,-2.323l2.617,0.581l2.326,-0.872l-2.033,-1.742l-0.582,-1.451l-2.328,0.581l-0.289,2.032l-0.871,-1.742l1.160,-0.871l3.199,-0.581l2.034,0.871l1.744,2.033l1.455,0.000l3.199,0.000l-0.583,-1.452l2.325,-0.871l2.325,-1.742l3.778,1.451l0.292,2.324l1.163,0.580l2.907,-0.290l0.871,0.580l1.455,2.904l2.906,1.742l2.034,1.453l2.909,1.162l3.487,1.160l0.000,1.742l-0.871,0.000l-1.164,-0.871l-0.580,1.162l-2.326,0.291l-0.583,2.323l-1.454,0.870l-2.325,0.291l-0.581,1.452l-2.034,0.291l2.617,1.162z", + "TN" : "M499.931,147.625l-1.163,-4.936l-1.745,-1.162l0.000,-0.581l-2.325,-1.742l-0.290,-2.034l1.745,-1.451l0.579,-2.323l-0.290,-2.614l0.581,-1.451l2.908,-1.163l2.034,0.291l-0.291,1.453l2.325,-0.872l0.292,0.291l-1.454,1.451l0.000,1.161l1.162,0.872l-0.580,2.324l-1.745,1.451l0.582,1.452l1.452,0.000l0.583,1.452l1.163,0.290l-0.291,2.032l-1.164,0.873l-0.872,0.870l-2.034,1.162l0.290,1.161l-0.290,1.162l1.162,-0.581z", + "TR" : "M575.509,117.135l3.777,1.161l3.199-0.291l2.323,0.291l3.489-1.451l2.906-0.291l2.615,1.452l0.292,0.872l-0.292,1.452l2.036,0.58l1.162,0.872l-1.743,0.871l0.87,2.904l-0.579,0.871l1.452,2.324l-1.452,0.581l-0.873-0.872l-3.197-0.291l-1.164,0.291l-3.196,0.581h-1.453l-3.196,0.872h-2.327l-1.454-0.581l-2.906,0.871l-0.873-0.58l-0.29,1.742l-0.581,0.58l-0.871,0.582l-0.873-1.452l0.873-0.872l-1.455,0.291l-2.325-0.871l-2.033,1.742l-4.07,0.29l-2.326-1.452h-2.906l-0.582,1.162l-2.036,0.29l-2.615-1.452h-2.906l-1.744-2.904l-2.034-1.452l1.455-2.033l-1.747-1.452l2.907-2.613h4.361l1.163-2.033l5.232,0.29l3.197-1.742l3.196-0.871h4.65L575.509,117.135zM548.764,119.167l-2.325,1.451l-0.871-1.451v-0.581l0.581-0.291l0.871-1.742l-1.452-0.581l2.907-0.871l2.324,0.29l0.291,1.162l2.615,0.872l-0.58,0.58l-3.198,0.291L548.764,119.167z", + "TT" : "M304.01,201.346l1.454,-0.291l0.581,0.000l0.000,2.033l-2.326,0.291l-0.581,-0.291l0.872,-0.582l0.000,1.160z", + "TW" : "M808.926,163.886l-1.744,4.356l-1.163,2.322l-1.452,-2.322l-0.292,-2.033l1.744,-2.614l2.325,-2.322l1.163,0.871l0.581,-1.742z", + "TZ" : "M567.077,233.58l0.582,0.289l9.883,5.517l0.291,1.742l3.780,2.615l-1.163,3.484l0.000,1.452l1.744,1.161l0.292,0.581l-0.873,1.743l0.289,0.871l-0.289,1.162l0.873,1.742l1.161,2.903l1.162,0.581l-2.323,1.452l-2.907,1.162l-1.746,0.000l-0.872,0.581l-2.036,0.289l-0.581,0.291l-3.486,-0.872l-2.036,0.292l-0.582,-3.776l-1.163,-1.161l-0.289,-0.871l-2.907,-0.581l-1.456,-0.870l-1.743,-0.291l-1.161,-0.581l-1.162,-0.581l-1.455,-3.485l-1.744,-1.452l-0.290,-1.742l0.290,-1.452l-0.581,-2.324l1.163,-0.289l0.872,-0.870l1.163,-1.454l0.582,-0.580l0.000,-0.872l-0.582,-0.871l0.000,-0.871l0.582,-0.291l0.289,-1.741l-1.163,-1.452l0.874,-0.291l3.196,0.000l-5.522,0.289z", + "UA" : "M561.265,87.806l1.160,0.000l0.584,-0.582l0.872,0.000l2.907,-0.290l1.744,1.742l-0.873,0.581l0.290,0.871l2.327,0.000l0.871,1.162l0.000,0.581l3.488,0.870l2.034,-0.290l1.745,1.162l1.454,0.000l4.070,0.870l0.290,0.873l-1.163,1.451l0.582,1.452l-0.582,0.871l-2.615,0.291l-1.452,0.871l0.000,1.161l-2.329,0.292l-1.744,0.869l-2.615,0.000l-2.323,1.162l0.289,1.743l1.161,0.581l2.907,-0.290l-0.580,1.161l-2.906,0.290l-3.781,1.742l-1.452,-0.581l0.582,-1.451l-3.198,-0.581l0.579,-0.580l2.619,-0.872l-0.874,-0.581l-4.068,-0.871l-0.292,-0.872l-2.614,0.291l-0.874,1.452l-2.325,2.033l-1.161,-0.580l-1.166,0.580l-1.452,-0.580l0.872,-0.291l0.291,-0.872l0.872,-0.871l-0.291,-0.580l0.581,-0.291l0.293,0.581l1.743,0.000l0.581,-0.290l-0.290,-0.291l0.000,-0.291l-0.873,-0.580l-0.290,-1.162l-1.164,-0.580l0.293,-0.871l-1.166,-0.872l-1.162,0.000l-2.034,-0.870l-2.033,0.290l-0.584,0.290l-1.163,0.000l-0.579,0.580l-2.036,0.291l-1.162,0.581l-1.163,-0.581l-1.745,0.000l-1.744,-0.581l-1.163,0.581l-0.291,-0.581l-1.452,-0.870l0.580,-0.872l0.872,-0.870l0.582,0.289l-0.872,-1.452l2.617,-2.033l1.452,-0.580l0.292,-0.580l-1.455,-2.614l1.163,0.000l1.746,-0.581l2.035,-0.291l2.615,0.291l3.196,0.581l2.036,0.290l1.163,0.291l1.162,-0.581l0.583,0.581l2.615,0.000l0.873,0.289l0.290,-1.451l0.870,-0.580l-2.328,0.000z", + "UG" : "M561.555,233.869l-3.196,0.000l-0.874,0.291l-1.743,0.871l-0.582,-0.290l0.000,-2.324l0.582,-0.871l0.291,-2.324l0.581,-1.161l1.163,-1.451l0.871,-0.872l0.873,-0.871l-1.162,-0.289l0.289,-3.196l1.163,-0.870l1.744,0.580l2.326,-0.580l1.744,0.000l1.745,-1.162l1.452,1.742l0.291,1.452l1.163,3.194l-1.163,2.033l-1.164,1.742l-0.872,1.161l0.000,2.906l5.522,-0.289z", + "US" : "M45.593,178.406l-0.292,0.581l-0.873-0.581l0.292-0.581l-0.582-1.162l0.29-0.291l0.292-0.29l-0.292-0.582l0.292-0.29h0.291l0.872,0.581l0.582,0.291l0.581,0.29l0.582,0.872v0.29l-1.162,0.581L45.593,178.406zM44.14,174.05l-0.872,0.29l-0.582-0.581l-0.292-0.29l0.292-0.291l0.872,0.291l0.872,0.29L44.14,174.05zM42.395,172.598l-0.29,0.291h-1.453l0.29-0.291H42.395zM39.779,172.308v0.29l-0.291-0.29h-0.873l-0.582-0.582l0.873-0.581v0.291L39.779,172.308zM35.128,170.564l-0.291,0.292l-0.872-0.582v-0.291l0.581-0.29l0.582,0.29V170.564zM212.735,95.065l0.582,1.452l0.871,0.581l1.744,0.291l2.907,0.291l2.616,0.871l2.325-0.291l3.488,0.581h0.872l2.326-0.87l2.617,1.161l2.616,1.162l2.326,0.872l2.035,0.871l0.291,0.58l0.582,0.291v0.291h0.58l0.583-0.291l0.29,0.871l0.583,0.291h0.581l0.581,0.29l-0.581,0.581l2.906,1.162l0.583,2.613l0.58,2.323l-0.872,1.742l-1.163,1.451l-0.581,0.873v0.29l0.292,0.581l0.872,0.29h0.581l3.197-1.452l2.907-0.29l3.488-1.453l0.291-0.291l-0.291-0.871l-0.582-0.581l1.454-0.291h2.616h2.616l0.872-1.162l0.291-0.29l2.907-1.743l1.163-0.581h4.07h5.232l0.292-0.871h0.872l1.162-0.58l0.872-1.162l0.873-2.033l2.035-2.032l0.872,0.581l2.035-0.581l1.163,0.87v3.775l1.744,1.452l0.582,1.161l-2.907,1.162l-2.907,0.872l-2.907,0.872l-1.453,1.742l-0.582,0.581v1.453l0.872,1.451h1.163l-0.291-0.871l0.872,0.581l-0.291,0.871l-1.744,0.291h-1.162l-2.036,0.581h-1.452l-1.454,0.291l-2.326,0.58l4.07-0.291l0.872,0.291l-4.07,0.872H270l0.291-0.29l-0.872,0.872h0.872l-0.582,2.032l-2.035,2.033l-0.291-0.58l-0.582-0.291l-0.872-0.581l0.582,1.452l0.582,0.58v0.873l-0.873,1.161l-1.453,2.033h-0.291l0.873-1.742l-1.454-1.162l-0.291-2.322l-0.58,1.16l0.58,1.743l-1.744-0.291l1.744,0.871l0.291,2.614l0.873,0.291l0.291,0.871l0.291,2.613l-1.745,2.033l-2.907,0.871l-1.743,1.742H257.5l-1.452,1.162l-0.291,0.87l-2.907,1.744l-1.744,1.451l-1.163,1.452l-0.582,2.033l0.582,1.742l0.873,2.614l1.163,1.742v1.161l1.453,3.195v2.032l-0.29,0.871l-0.582,1.742l-0.873,0.291l-1.453-0.291l-0.291-1.161l-1.163-0.582l-1.454-2.323l-1.162-2.032l-0.583-1.161l0.583-1.743l-0.583-1.742l-2.325-2.323l-0.873-0.291l-2.906,1.162h-0.581l-1.163-1.451l-1.744-0.581l-3.197,0.29l-2.326-0.29l-2.326,0.29l-0.872,0.291l0.292,0.87v1.162l0.581,0.582l-0.581,0.29l-0.872-0.581l-1.164,0.581h-2.034l-2.035-1.452l-2.325,0.291l-2.035-0.581l-1.745,0.29l-2.325,0.581l-2.325,2.033l-2.908,1.162l-1.452,1.162l-0.582,1.451v1.742v1.452l0.582,0.871h-1.163l-1.744-0.58l-2.326-0.872l-0.581-1.162l-0.582-2.033l-1.744-1.452l-0.873-1.742l-1.453-1.742l-2.034-1.162h-2.036l-1.743,2.323l-2.326-0.871l-1.454-0.871l-0.872-1.453l-0.872-1.451l-1.454-1.162l-1.454-0.871l-1.163-1.162h-4.65v1.162h-2.326h-5.232l-6.395-1.742l-4.07-1.451l0.29-0.582l-3.487,0.291l-3.198,0.291l-0.581-1.453l-1.744-1.451l-1.163-0.582l-0.291-0.58l-1.743-0.291l-0.872-0.581l-2.616-0.29l-0.582-0.582l-0.291-1.452l-2.908-2.904l-2.034-3.775v-0.582l-1.163-0.871l-2.326-2.323l-0.291-2.322l-1.454-1.453l0.582-2.322v-2.324l-0.872-2.032l0.872-2.614l0.582-2.613l0.291-2.323l-0.581-3.775l-0.873-2.323l-0.872-1.162l0.291-0.58l4.069,0.87l1.454,2.613l0.581-0.87l-0.291-2.033l-0.872-2.324h7.849h8.139h2.616h8.43h8.14h8.138h8.43h9.302h9.302h5.813v-1.161H212.735zM52.569,73.867l-2.616,1.162l-1.454-0.871l-0.581-1.162l2.616-1.162l1.454-0.29l1.744,0.29l1.163,0.871L52.569,73.867zM17.978,66.316l-1.744,0.291l-1.745-0.581l-1.744-0.582l2.907-0.581l2.035,0.291L17.978,66.316zM1.118,55.572l1.744,0.582l1.744-0.291l2.035,0.581l2.907,0.581l-0.291,0.29l-2.035,0.581l-2.326-0.87l-0.872-0.291H1.409l-0.582-0.29L1.118,55.572zM47.046,35.246l1.744,1.161l1.453-0.291h4.651l-0.291,0.582l4.36,0.58l2.617-0.29l5.813,0.871l5.232,0.29l2.326,0.291l3.488-0.291l4.36,0.581l2.907,0.581v10.164v15.681h2.616l2.616,0.872l2.035,1.162L95.3,68.93l2.906-1.452l2.616-0.871l1.454,1.451l1.744,1.162l2.616,1.162l1.744,2.033l2.908,2.903l4.65,1.742v1.743l-1.454,1.452l-1.454-1.162l-2.615-0.871l-0.583-2.323l-3.778-2.323l-1.454-2.324l-2.616-0.291h-4.361l-3.197-0.871l-5.814-2.903l-2.616-0.581l-4.651-0.872l-3.778,0.291l-5.523-1.453l-3.198-1.161l-3.197,0.581l0.581,2.033l-1.454,0.29l-3.196,0.58l-2.326,0.873l-3.198,0.581l-0.291-1.742l1.163-2.614l2.907-0.871l-0.582-0.581l-3.488,1.452l-2.035,1.742l-4.07,2.033l2.035,1.161l-2.617,2.033l-2.907,1.162l-2.616,0.871l-0.872,1.162l-4.07,1.451l-0.872,1.452l-3.198,1.162l-2.035-0.29l-2.615,0.871l-2.617,0.87l-2.326,0.872l-4.65,0.871l-0.581-0.582l2.907-1.162l2.906-0.87l2.907-1.453l3.489-0.291l1.163-1.161l3.779-1.742l0.582-0.581l2.035-0.873l0.58-2.033l1.455-1.742l-3.198,0.872l-0.872-0.582L36,70.382l-1.745-1.453l-0.872,0.872l-1.162-1.162l-2.617,0.871h-1.743l-0.292-1.453l0.581-1.162l-1.744-0.87l-3.487,0.581l-2.326-1.452l-2.035-0.581v-1.452l-2.035-1.162l1.163-1.742l2.035-1.452l1.163-1.452l2.035-0.29l2.034,0.58l2.036-1.451l2.035,0.29l2.326-0.872l-0.583-1.161l-1.743-0.582l2.034-1.162h-1.453l-2.906,0.871l-0.873,0.581l-2.325-0.581l-3.779,0.291l-4.07-0.871l-1.163-0.871l-3.487-1.742l3.778-1.162l6.105-1.451h2.325l-0.29,1.451h5.814l-2.327-1.742l-3.197-1.162l-2.034-1.162l-2.616-1.161l-3.779-0.871l1.455-1.452l4.941-0.291l3.488-1.162l0.582-1.453l2.906-1.161l2.617-0.291L36,36.116h2.616l4.07-1.452L47.046,35.246z", + "UY" : "M315.056,314.017l1.744,-0.292l2.907,2.033l0.872,0.000l2.907,1.743l2.325,1.451l1.454,2.032l-1.163,1.164l0.872,1.740l-1.453,1.742l-2.907,1.453l-2.035,-0.582l-1.454,0.291l-2.616,-1.162l-2.035,0.000l-1.453,-1.452l0.000,-1.741l0.872,-0.580l-0.291,-2.905l0.872,-2.614l-0.582,2.321z", + "UZ" : "M656.899,128.168l0.000,-1.742l-3.487,-1.160l-2.909,-1.162l-2.034,-1.453l-2.906,-1.742l-1.455,-2.904l-0.871,-0.580l-2.907,0.290l-1.163,-0.580l-0.292,-2.324l-3.778,-1.451l-2.325,1.742l-2.325,0.871l0.583,1.452l-3.199,0.000l0.000,-10.164l6.976,-1.742l0.580,0.291l4.071,2.031l2.324,0.872l2.618,2.614l3.196,-0.291l4.944,-0.290l3.196,2.032l-0.290,2.614l1.453,0.000l0.581,2.323l3.489,0.000l0.580,1.452l1.163,0.000l1.163,-2.032l3.779,-2.033l1.454,-0.291l0.872,0.291l-2.326,1.742l2.035,0.871l2.034,-0.580l3.199,1.451l-3.488,2.032l-2.326,-0.289l-0.873,0.000l-0.581,-0.871l0.581,-1.163l-3.488,0.582l-0.872,1.741l-1.452,1.743l-2.328,-0.290l-0.579,1.162l2.033,0.871l0.582,2.032l-1.744,2.614l-2.035,-0.582l1.453,0.000z", + "VE" : "M277.558,198.442l-0.290,0.871l-1.454,0.291l0.872,1.161l0.000,1.452l-1.454,1.451l1.164,2.324l1.162,-0.290l0.582,-1.743l-0.872,-1.161l0.000,-2.033l3.487,-1.161l-0.582,-1.162l1.163,-0.871l0.872,1.742l2.035,0.291l1.744,1.451l0.000,0.871l2.617,0.000l2.907,-0.289l1.452,1.161l2.326,0.290l1.455,-0.582l0.000,-0.869l3.487,0.000l3.198,-0.291l-2.326,0.871l0.872,1.451l2.326,0.000l2.034,1.454l0.291,2.323l1.453,-0.292l1.164,0.872l-2.036,1.452l-0.290,1.161l0.872,0.871l-0.582,0.581l-1.743,0.580l0.000,1.163l-0.873,0.582l2.035,2.322l0.291,0.580l-0.872,1.162l-3.198,0.871l-2.035,0.580l-0.581,0.582l-2.326,-0.582l-2.034,-0.290l-0.582,0.000l1.163,0.872l0.000,1.741l0.292,1.744l2.324,0.289l0.291,0.581l-2.035,0.871l-0.291,1.162l-1.162,0.291l-2.036,0.870l-0.580,0.582l-2.036,0.289l-1.452,-1.451l-0.872,-2.614l-0.873,-1.162l-0.872,-0.580l1.454,-1.453l-0.291,-0.580l-0.582,-0.580l-0.581,-2.033l0.000,-2.033l0.872,-0.871l0.291,-1.452l-0.872,-0.290l-1.454,0.290l-2.034,-0.290l-1.163,0.290l-2.035,-2.323l-1.453,-0.291l-3.488,0.291l-0.872,-1.162l-0.583,0.000l0.000,-0.581l0.292,-1.161l-0.292,-1.161l-0.580,-0.582l-0.291,-1.161l-1.453,-0.290l0.581,-1.452l0.582,-2.033l0.581,-1.162l1.163,-0.580l0.581,-1.452l-2.035,0.581z", + "VN" : "M771.137,171.726l-3.488,2.324l-2.326,2.614l-0.581,1.742l2.034,2.904l2.617,3.774l2.325,1.743l1.744,2.033l1.163,5.226l-0.290,4.647l-2.327,2.032l-3.195,1.741l-2.037,2.325l-3.486,2.322l-1.164,-1.740l0.872,-1.745l-2.034,-1.451l2.326,-1.162l2.906,-0.290l-1.162,-1.742l4.651,-2.033l0.289,-3.194l-0.581,-2.033l0.581,-2.614l-0.870,-2.032l-2.036,-1.742l-1.745,-2.614l-2.325,-3.194l-3.197,-1.742l0.870,-0.872l1.747,-0.580l-1.165,-2.614l-3.488,0.000l-1.161,-2.322l-1.454,-2.324l1.454,-0.580l2.034,0.000l2.615,-0.291l2.329,-1.451l1.452,0.870l2.615,0.581l-0.581,1.742l1.454,0.872l-2.615,-0.870z", + "VU" : "M935.666,276.266l-0.872,0.291l-0.874-1.163v-0.871L935.666,276.266zM933.628,271.91l0.583,2.324l-0.874-0.292h-0.58l-0.29-0.58v-2.322L933.628,271.91z", + "WS" : "M449.643,156.336l-0.292,-1.452l0.581,0.000l0.000,0.290l0.000,0.291l0.000,4.355l-9.011,-0.290l0.000,7.261l-2.615,0.000l-0.581,1.451l0.581,4.066l-11.046,0.000l-0.582,0.871l0.289,-1.162l6.107,-0.291l0.290,-0.870l1.162,-1.162l0.874,-3.775l4.069,-3.194l1.162,-3.485l0.872,0.000l0.873,-2.323l2.324,-0.291l1.165,0.581l1.161,0.000l0.872,-0.871l-1.745,0.000z", + "YE" : "M619.983,185.084l-2.034,0.872l-0.583,1.161l0.000,0.872l-2.616,1.160l-4.651,1.453l-2.326,1.742l-1.162,0.291l-0.871,-0.291l-1.744,1.161l-1.745,0.581l-2.327,0.291l-0.580,0.000l-0.581,0.871l-0.582,0.000l-0.581,0.871l-1.455,-0.290l-0.870,0.580l-1.745,-0.290l-0.873,-1.452l0.292,-1.452l-0.581,-0.871l-0.581,-2.032l-0.874,-1.163l0.583,-0.289l-0.291,-1.162l0.582,-0.581l-0.291,-1.161l1.161,-0.872l-0.289,-1.161l0.873,-1.451l1.161,0.869l0.582,-0.289l3.197,0.000l0.582,0.289l2.615,0.292l1.164,-0.292l0.580,0.873l1.163,-0.291l2.036,-2.904l2.615,-1.161l7.849,-1.162l2.325,4.645l-0.873,-1.743z", + "ZA" : "M560.392,311.403l-0.29,0.291l-1.165,1.451l-0.87,1.451l-1.453,2.034l-3.198,2.902l-2.034,1.451l-2.036,1.453l-2.906,0.871l-1.452,0.29l-0.293,0.58l-1.743-0.29l-1.161,0.581l-3.199-0.581l-1.452,0.29h-1.164l-2.906,0.872l-2.325,0.58l-1.744,0.871l-1.162,0.29l-1.163-1.161h-0.871l-1.454-1.161v0.292l-0.29-0.583v-1.741l-0.873-1.742l0.873-0.581v-2.032l-2.034-2.613l-1.165-2.323l-2.034-3.484l1.163-1.453l1.163,0.58l0.582,1.162l1.162,0.29l1.744,0.581l1.452-0.29l2.325-1.451v-10.163l0.874,0.58l1.741,2.613l-0.289,1.741l0.582,0.872l2.033-0.29l1.164-1.162l1.452-0.87l0.582-1.453l1.454-0.58l1.162,0.29l1.162,0.872h2.326l1.744-0.582l0.289-0.87l0.584-1.161l1.452-0.293l0.874-1.16l0.871-1.742l2.324-2.032l4.07-2.033h1.163l1.163,0.581l0.871-0.289l1.454,0.289l1.452,3.774l0.582,2.033l-0.29,2.903v1.162l-1.163-0.58l-0.872,0.29l-0.293,0.581l-0.87,1.161l0.292,0.871l1.452,1.451l1.744-0.29l0.581-1.161h2.034l-0.582,2.031l-0.579,2.323l-0.584,1.162L560.392,311.403zM553.416,310.531l-1.162-0.87l-1.163,0.579l-1.453,1.163l-1.454,1.742l2.036,2.032l0.871-0.291l0.581-0.869l1.454-0.292l0.58-0.871l0.873-1.451L553.416,310.531z", + "ZM" : "M563.881,256.229l1.452,1.452l0.582,2.322l-0.582,0.582l-0.290,2.322l0.290,2.323l-0.872,0.873l-0.580,2.612l1.452,0.580l-8.429,2.325l0.292,2.033l-2.036,0.289l-1.744,1.162l-0.291,0.871l-0.872,0.291l-2.616,2.322l-1.454,1.744l-0.872,0.000l-0.872,-0.291l-3.197,-0.291l-0.291,-0.291l-0.290,-0.289l-0.871,-0.582l-1.745,0.000l-2.326,0.582l-1.745,-1.744l-2.034,-2.322l0.289,-8.711l5.524,0.000l0.000,-0.873l0.292,-1.161l-0.583,-1.161l0.291,-1.452l-0.291,-0.871l1.164,0.290l0.000,0.872l1.454,-0.291l1.743,0.291l0.871,1.452l2.036,0.291l1.745,-0.873l0.581,1.452l2.325,0.291l0.872,1.162l1.163,1.451l2.033,0.000l-0.289,-2.904l-0.581,0.581l-2.035,-1.160l-0.584,-0.291l0.293,-2.904l0.580,-3.195l-0.873,-1.161l0.873,-1.742l0.873,-0.290l3.490,-0.581l1.163,0.290l1.162,0.581l1.161,0.581l1.743,0.291l-1.456,-0.870z", + "ZW" : "M559.521,292.237l-1.454,-0.289l-0.871,0.289l-1.163,-0.581l-1.163,0.000l-1.745,-1.162l-2.326,-0.579l-0.580,-1.744l0.000,-0.870l-1.455,-0.292l-2.907,-2.903l-0.870,-1.742l-0.582,-0.580l-1.163,-2.034l3.197,0.291l0.872,0.291l0.872,0.000l1.454,-1.744l2.616,-2.322l0.872,-0.291l0.291,-0.871l1.744,-1.162l2.036,-0.289l0.000,0.870l2.325,0.000l1.452,0.581l0.582,0.582l1.163,0.289l1.452,0.871l0.000,3.486l-0.582,2.032l0.000,2.033l0.293,0.870l-0.293,1.452l-0.289,0.290l-0.874,2.033l2.904,-3.195z" + + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/jQuery-Mapael/mapael.jquery.json b/lib/jQuery-Mapael/mapael.jquery.json new file mode 100644 index 000000000..fbfc5bdfc --- /dev/null +++ b/lib/jQuery-Mapael/mapael.jquery.json @@ -0,0 +1,40 @@ +{ + "name": "mapael", + "title": "jQuery Mapael", + "description": "jQuery Mapael is a jQuery plugin based on raphael.js that allows you to display dynamic vector maps.", + "keywords": [ + "map", + "vector", + "svg", + "dataviz", + "dynamic" + ], + "version": "1.0.1", + "author": { + "name": "Vincent Brouté", + "url": "http://www.vincentbroute.fr" + }, + "maintainers": [ + { + "name": "Vincent Brouté", + "email": "contact@vincentbroute.fr", + "url": "http://www.vincentbroute.fr" + } + ], + "licenses": [ + { + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.php" + } + ], + "bugs": "https://github.com/neveldo/jQuery-Mapael/issues", + "homepage": "http://www.vincentbroute.fr/mapael/", + "docs": "http://www.vincentbroute.fr/mapael/", + "demo": "http://www.vincentbroute.fr/mapael/usecases/world/", + "download": "https://github.com/neveldo/jQuery-Mapael/tags", + "dependencies": { + "jquery": ">=1.7", + "raphael": ">=2.1.4", + "jquery-mousewheel": ">=3.1.6" + } +} diff --git a/lib/jQuery-Mapael/package.json b/lib/jQuery-Mapael/package.json new file mode 100644 index 000000000..57b851cb7 --- /dev/null +++ b/lib/jQuery-Mapael/package.json @@ -0,0 +1,26 @@ +{ + "name": "jquery-mapael", + "version": "1.0.1", + "description": "jQuery Mapael is a jQuery plugin based on raphael.js that allows you to display dynamic vector maps.", + "homepage": "http://www.vincentbroute.fr/mapael/", + "main": "./js/jquery.mapael.js", + "repository": { + "type": "git", + "url": "https://github.com/neveldo/jQuery-Mapael.git" + }, + "author": "Vincent Brouté (http://www.vincentbroute.fr/)", + "license": "MIT", + "bugs": { + "url": "https://github.com/neveldo/jQuery-Mapael/issues" + }, + "keywords": [ + "jquery", + "map", + "vector", + "svg", + "dataviz", + "dynamic", + "jquery-plugin", + "browser" + ] +} diff --git a/lib/jquery-mousewheel/.gitignore b/lib/jquery-mousewheel/.gitignore new file mode 100644 index 000000000..384a0ee88 --- /dev/null +++ b/lib/jquery-mousewheel/.gitignore @@ -0,0 +1,4 @@ +.DS_Store +/npm-debug.log +/node_modules +/test/browserify/node_modules diff --git a/lib/jquery-mousewheel/.jshintrc b/lib/jquery-mousewheel/.jshintrc new file mode 100644 index 000000000..11709d1d5 --- /dev/null +++ b/lib/jquery-mousewheel/.jshintrc @@ -0,0 +1,19 @@ +{ + "bitwise": true, + "browser": true, + "camelcase": true, + "curly": true, + "eqeqeq": true, + "indent": 4, + "jquery" : true, + "latedef": true, + "noarg": true, + "node": true, + "noempty": true, + "plusplus": false, + "quotmark": "single", + "strict": false, + "trailing": true, + "unused": true, + "globals": { "define": true, "require": true } +} diff --git a/lib/jquery-mousewheel/ChangeLog.md b/lib/jquery-mousewheel/ChangeLog.md new file mode 100644 index 000000000..76752a1a0 --- /dev/null +++ b/lib/jquery-mousewheel/ChangeLog.md @@ -0,0 +1,147 @@ +# Mouse Wheel ChangeLog + +## 3.1.13 + +* Update copyright notice and license to remove years +* Create the correct compressed version +* Remove the obsolete jQuery Plugin Registry file + +## 3.1.12 + +* Fix possible 0 value for line height when in delta mode 1 + +## 3.1.11 + +* Fix version number for package managers... + +## 3.1.10 + +* Fix issue with calculating line height when using older versions of jQuery +* Add offsetX/Y normalization with setting to turn it off +* Cleans up data on teardown + +## 3.1.9 + +* Fix bower.json file +* Updated how the deltas are adjusted for older mousewheel based events that have deltas that are factors of 120. +* Add $.event.special.mousewheel.settings.adjustOldDeltas (defaults to true) to turn off adjusting of old deltas that are factors of 120. You'd turn this off if you want to be as close to native scrolling as possible. + +## 3.1.8 + +* Even better handling of older browsers that use a wheelDelta based on 120 +* And fix version reported by `$.event.special.mousewheel` + +## 3.1.7 + +* Better handle the `deltaMode` values 1 (lines) and 2 (pages) +* Attempt to better handle older browsers that use a wheelDelta based on 120 + +## 3.1.6 + +* Deprecating `delta`, `deltaX`, and `deltaY` event handler arguments +* Update actual event object with normalized `deltaX `and `deltaY` values (`event.deltaX`, `event.deltaY`) +* Add `deltaFactor` to the event object (`event.deltaFactor`) +* Handle `> 0` but `< 1` deltas better +* Do not fire the event if `deltaX` and `deltaY` are `0` +* Better handle different devices that give different `lowestDelta` values +* Add `$.event.special.mousewheel.version` +* Some clean up + +## 3.1.5 + +* Bad release because I did not update the new `$.event.special.mousewheel.version` + +## 3.1.4 + +* Always set the `deltaY` +* Add back in the `deltaX` and `deltaY` support for older Firefox versions + +## 3.1.3 + +* Include `MozMousePixelScroll` in the to fix list to avoid inconsistent behavior in older Firefox + +## 3.1.2 + +* Include grunt utilities for development purposes (jshint and uglify) +* Include support for browserify +* Some basic cleaning up + +## 3.1.1 + +* Fix rounding issue with deltas less than zero + + +## 3.1.0 + +* Fix Firefox 17+ issues by using new wheel event +* Normalize delta values +* Adds horizontal support for IE 9+ by using new wheel event +* Support AMD loaders + + +## 3.0.6 + +* Fix issue with delta being 0 in Firefox + + +## 3.0.5 + +* jQuery 1.7 compatibility + + +## 3.0.4 + +* Fix IE issue + + +## 3.0.3 + +* Added `deltaX` and `deltaY` for horizontal scrolling support (Thanks to Seamus Leahy) + + +## 3.0.2 + +* Fixed delta being opposite value in latest Opera +* No longer fix `pageX`, `pageY` for older Mozilla browsers +* Removed browser detection +* Cleaned up the code + + +## 3.0.1 + +* Bad release... creating a new release due to plugins.jquery.com issue :( + + +## 3.0 + +* Uses new special events API in jQuery 1.2.2+ +* You can now treat `mousewheel` as a normal event and use `.bind`, `.unbind` and `.trigger` +* Using jQuery.data API for expandos + + +## 2.2 + +* Fixed `pageX`, `pageY`, `clientX` and `clientY` event properties for Mozilla based browsers + + +## 2.1.1 + +* Updated to work with jQuery 1.1.3 +* Used one instead of bind to do unload event for clean up + + +## 2.1 + +* Fixed an issue with the unload handler + + +## 2.0 + +* Major reduction in code size and complexity (internals have change a whole lot) + + +## 1.0 + +* Fixed Opera issue +* Fixed an issue with children elements that also have a mousewheel handler +* Added ability to handle multiple handlers diff --git a/lib/jquery-mousewheel/Gruntfile.js b/lib/jquery-mousewheel/Gruntfile.js new file mode 100644 index 000000000..ccae0d03f --- /dev/null +++ b/lib/jquery-mousewheel/Gruntfile.js @@ -0,0 +1,47 @@ +module.exports = function(grunt) { + + // Project configuration. + grunt.initConfig({ + jshint: { + options: { + jshintrc: '.jshintrc' + }, + all: ['jquery.mousewheel.js'] + }, + uglify: { + options: { + compress: true, + mangle: true, + preserveComments: 'some', + report: 'gzip' + }, + build: { + src: 'jquery.mousewheel.js', + dest: 'jquery.mousewheel.min.js' + } + }, + connect: { + server: { + options: { + hostname: '*', + keepalive: true, + middleware: function(connect, options) { + return [ + connect.static(options.base), + connect.directory(options.base) + ]; + } + } + } + } + }); + + // Load the plugin that provides the 'uglify' task. + grunt.loadNpmTasks('grunt-contrib-jshint'); + grunt.loadNpmTasks('grunt-contrib-uglify'); + grunt.loadNpmTasks('grunt-contrib-connect'); + + // Default task(s). + grunt.registerTask('default', ['jshint', 'uglify']); + +}; diff --git a/lib/jquery-mousewheel/LICENSE.txt b/lib/jquery-mousewheel/LICENSE.txt new file mode 100644 index 000000000..919fe6a7e --- /dev/null +++ b/lib/jquery-mousewheel/LICENSE.txt @@ -0,0 +1,37 @@ +Copyright jQuery Foundation and other contributors +https://jquery.org/ + +This software consists of voluntary contributions made by many +individuals. For exact contribution history, see the revision history +available at https://github.com/jquery/jquery-mousewheel + +The following license applies to all parts of this software except as +documented below: + +==== + +Permission is hereby granted, free of charge, to any person obtaining +a copy of this software and associated documentation files (the +"Software"), to deal in the Software without restriction, including +without limitation the rights to use, copy, modify, merge, publish, +distribute, sublicense, and/or sell copies of the Software, and to +permit persons to whom the Software is furnished to do so, subject to +the following conditions: + +The above copyright notice and this permission notice shall be +included in all copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, +EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF +MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND +NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE +LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION +OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION +WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. + +==== + +All files located in the node_modules and external directories are +externally maintained libraries used by this software which have their +own licenses; we recommend you read them, as their terms may differ from +the terms above. diff --git a/lib/jquery-mousewheel/README.md b/lib/jquery-mousewheel/README.md new file mode 100644 index 000000000..a03fdde89 --- /dev/null +++ b/lib/jquery-mousewheel/README.md @@ -0,0 +1,76 @@ +# jQuery Mouse Wheel Plugin + +A [jQuery](http://jquery.com/) plugin that adds cross-browser mouse wheel support with delta normalization. + +In order to use the plugin, simply bind the `mousewheel` event to an element. + +It also provides two helper methods called `mousewheel` and `unmousewheel` +that act just like other event helper methods in jQuery. + +The event object is updated with the normalized `deltaX` and `deltaY` properties. +In addition there is a new property on the event object called `deltaFactor`. Multiply +the `deltaFactor` by `deltaX` or `deltaY` to get the scroll distance that the browser +has reported. + +Here is an example of using both the bind and helper method syntax: + +```js +// using on +$('#my_elem').on('mousewheel', function(event) { + console.log(event.deltaX, event.deltaY, event.deltaFactor); +}); + +// using the event helper +$('#my_elem').mousewheel(function(event) { + console.log(event.deltaX, event.deltaY, event.deltaFactor); +}); +``` + +The old behavior of adding three arguments (`delta`, `deltaX`, and `deltaY`) to the +event handler is now deprecated and will be removed in later releases. + + +## The Deltas... + +The combination of Browsers, Operating Systems, and Devices offer a huge range of possible delta values. In fact if the user +uses a trackpad and then a physical mouse wheel the delta values can differ wildly. This plugin normalizes those +values so you get a whole number starting at +-1 and going up in increments of +-1 according to the force or +acceleration that is used. This number has the potential to be in the thousands depending on the device. +Check out some of the data collected from users [here](http://mousewheeldatacollector.herokuapp.com/). + +### Getting the scroll distance + +In some use-cases we prefer to have the normalized delta but in others we want to know how far the browser should +scroll based on the users input. This can be done by multiplying the `deltaFactor` by the `deltaX` or `deltaY` +event property to find the scroll distance the browser reported. + +The `deltaFactor` property was added to the event object in 3.1.5 so that the actual reported delta value can be +extracted. This is a non-standard property. + + +## Using with [Browserify](http://browserify.org) + +Support for browserify is baked in. + +```bash +npm install jquery-mousewheel +npm install jquery-browserify +``` + +In your server-side node.js code: + +```js +var express = require('express'); +var app = express.createServer(); + +app.use(require('browserify')({ + require : [ 'jquery-browserify', 'jquery-mousewheel' ] +})); +``` + +In your browser-side javascript: + +```js +var $ = require('jquery-browserify'); +require('jquery-mousewheel')($); +``` diff --git a/lib/jquery-mousewheel/bower.json b/lib/jquery-mousewheel/bower.json new file mode 100644 index 000000000..8abe3bf67 --- /dev/null +++ b/lib/jquery-mousewheel/bower.json @@ -0,0 +1,16 @@ +{ + "name": "jquery-mousewheel", + "main": "./jquery.mousewheel.js", + "ignore": [ + "*.json", + "*.markdown", + "*.txt", + ".*", + "!LICENSE.txt", + "Gruntfile.js", + "test" + ], + "dependencies": { + "jquery": ">=1.2.2" + } +} diff --git a/lib/jquery-mousewheel/jquery.mousewheel.js b/lib/jquery-mousewheel/jquery.mousewheel.js new file mode 100755 index 000000000..3eadb7edf --- /dev/null +++ b/lib/jquery-mousewheel/jquery.mousewheel.js @@ -0,0 +1,221 @@ +/*! + * jQuery Mousewheel 3.1.13 + * + * Copyright jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + */ + +(function (factory) { + if ( typeof define === 'function' && define.amd ) { + // AMD. Register as an anonymous module. + define(['jquery'], factory); + } else if (typeof exports === 'object') { + // Node/CommonJS style for Browserify + module.exports = factory; + } else { + // Browser globals + factory(jQuery); + } +}(function ($) { + + var toFix = ['wheel', 'mousewheel', 'DOMMouseScroll', 'MozMousePixelScroll'], + toBind = ( 'onwheel' in document || document.documentMode >= 9 ) ? + ['wheel'] : ['mousewheel', 'DomMouseScroll', 'MozMousePixelScroll'], + slice = Array.prototype.slice, + nullLowestDeltaTimeout, lowestDelta; + + if ( $.event.fixHooks ) { + for ( var i = toFix.length; i; ) { + $.event.fixHooks[ toFix[--i] ] = $.event.mouseHooks; + } + } + + var special = $.event.special.mousewheel = { + version: '3.1.12', + + setup: function() { + if ( this.addEventListener ) { + for ( var i = toBind.length; i; ) { + this.addEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + // Store the line height and page height for this particular element + $.data(this, 'mousewheel-line-height', special.getLineHeight(this)); + $.data(this, 'mousewheel-page-height', special.getPageHeight(this)); + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i = toBind.length; i; ) { + this.removeEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + // Clean up the data we added to the element + $.removeData(this, 'mousewheel-line-height'); + $.removeData(this, 'mousewheel-page-height'); + }, + + getLineHeight: function(elem) { + var $elem = $(elem), + $parent = $elem['offsetParent' in $.fn ? 'offsetParent' : 'parent'](); + if (!$parent.length) { + $parent = $('body'); + } + return parseInt($parent.css('fontSize'), 10) || parseInt($elem.css('fontSize'), 10) || 16; + }, + + getPageHeight: function(elem) { + return $(elem).height(); + }, + + settings: { + adjustOldDeltas: true, // see shouldAdjustOldDeltas() below + normalizeOffset: true // calls getBoundingClientRect for each event + } + }; + + $.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind('mousewheel', fn) : this.trigger('mousewheel'); + }, + + unmousewheel: function(fn) { + return this.unbind('mousewheel', fn); + } + }); + + + function handler(event) { + var orgEvent = event || window.event, + args = slice.call(arguments, 1), + delta = 0, + deltaX = 0, + deltaY = 0, + absDelta = 0, + offsetX = 0, + offsetY = 0; + event = $.event.fix(orgEvent); + event.type = 'mousewheel'; + + // Old school scrollwheel delta + if ( 'detail' in orgEvent ) { deltaY = orgEvent.detail * -1; } + if ( 'wheelDelta' in orgEvent ) { deltaY = orgEvent.wheelDelta; } + if ( 'wheelDeltaY' in orgEvent ) { deltaY = orgEvent.wheelDeltaY; } + if ( 'wheelDeltaX' in orgEvent ) { deltaX = orgEvent.wheelDeltaX * -1; } + + // Firefox < 17 horizontal scrolling related to DOMMouseScroll event + if ( 'axis' in orgEvent && orgEvent.axis === orgEvent.HORIZONTAL_AXIS ) { + deltaX = deltaY * -1; + deltaY = 0; + } + + // Set delta to be deltaY or deltaX if deltaY is 0 for backwards compatabilitiy + delta = deltaY === 0 ? deltaX : deltaY; + + // New school wheel delta (wheel event) + if ( 'deltaY' in orgEvent ) { + deltaY = orgEvent.deltaY * -1; + delta = deltaY; + } + if ( 'deltaX' in orgEvent ) { + deltaX = orgEvent.deltaX; + if ( deltaY === 0 ) { delta = deltaX * -1; } + } + + // No change actually happened, no reason to go any further + if ( deltaY === 0 && deltaX === 0 ) { return; } + + // Need to convert lines and pages to pixels if we aren't already in pixels + // There are three delta modes: + // * deltaMode 0 is by pixels, nothing to do + // * deltaMode 1 is by lines + // * deltaMode 2 is by pages + if ( orgEvent.deltaMode === 1 ) { + var lineHeight = $.data(this, 'mousewheel-line-height'); + delta *= lineHeight; + deltaY *= lineHeight; + deltaX *= lineHeight; + } else if ( orgEvent.deltaMode === 2 ) { + var pageHeight = $.data(this, 'mousewheel-page-height'); + delta *= pageHeight; + deltaY *= pageHeight; + deltaX *= pageHeight; + } + + // Store lowest absolute delta to normalize the delta values + absDelta = Math.max( Math.abs(deltaY), Math.abs(deltaX) ); + + if ( !lowestDelta || absDelta < lowestDelta ) { + lowestDelta = absDelta; + + // Adjust older deltas if necessary + if ( shouldAdjustOldDeltas(orgEvent, absDelta) ) { + lowestDelta /= 40; + } + } + + // Adjust older deltas if necessary + if ( shouldAdjustOldDeltas(orgEvent, absDelta) ) { + // Divide all the things by 40! + delta /= 40; + deltaX /= 40; + deltaY /= 40; + } + + // Get a whole, normalized value for the deltas + delta = Math[ delta >= 1 ? 'floor' : 'ceil' ](delta / lowestDelta); + deltaX = Math[ deltaX >= 1 ? 'floor' : 'ceil' ](deltaX / lowestDelta); + deltaY = Math[ deltaY >= 1 ? 'floor' : 'ceil' ](deltaY / lowestDelta); + + // Normalise offsetX and offsetY properties + if ( special.settings.normalizeOffset && this.getBoundingClientRect ) { + var boundingRect = this.getBoundingClientRect(); + offsetX = event.clientX - boundingRect.left; + offsetY = event.clientY - boundingRect.top; + } + + // Add information to the event object + event.deltaX = deltaX; + event.deltaY = deltaY; + event.deltaFactor = lowestDelta; + event.offsetX = offsetX; + event.offsetY = offsetY; + // Go ahead and set deltaMode to 0 since we converted to pixels + // Although this is a little odd since we overwrite the deltaX/Y + // properties with normalized deltas. + event.deltaMode = 0; + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + // Clearout lowestDelta after sometime to better + // handle multiple device types that give different + // a different lowestDelta + // Ex: trackpad = 3 and mouse wheel = 120 + if (nullLowestDeltaTimeout) { clearTimeout(nullLowestDeltaTimeout); } + nullLowestDeltaTimeout = setTimeout(nullLowestDelta, 200); + + return ($.event.dispatch || $.event.handle).apply(this, args); + } + + function nullLowestDelta() { + lowestDelta = null; + } + + function shouldAdjustOldDeltas(orgEvent, absDelta) { + // If this is an older event and the delta is divisable by 120, + // then we are assuming that the browser is treating this as an + // older mouse wheel event and that we should divide the deltas + // by 40 to try and get a more usable deltaFactor. + // Side note, this actually impacts the reported scroll distance + // in older browsers and can cause scrolling to be slower than native. + // Turn this off by setting $.event.special.mousewheel.settings.adjustOldDeltas to false. + return special.settings.adjustOldDeltas && orgEvent.type === 'mousewheel' && absDelta % 120 === 0; + } + +})); diff --git a/lib/jquery-mousewheel/jquery.mousewheel.min.js b/lib/jquery-mousewheel/jquery.mousewheel.min.js new file mode 100644 index 000000000..03bfd60c5 --- /dev/null +++ b/lib/jquery-mousewheel/jquery.mousewheel.min.js @@ -0,0 +1,8 @@ +/*! + * jQuery Mousewheel 3.1.13 + * + * Copyright 2015 jQuery Foundation and other contributors + * Released under the MIT license. + * http://jquery.org/license + */ +!function(a){"function"==typeof define&&define.amd?define(["jquery"],a):"object"==typeof exports?module.exports=a:a(jQuery)}(function(a){function b(b){var g=b||window.event,h=i.call(arguments,1),j=0,l=0,m=0,n=0,o=0,p=0;if(b=a.event.fix(g),b.type="mousewheel","detail"in g&&(m=-1*g.detail),"wheelDelta"in g&&(m=g.wheelDelta),"wheelDeltaY"in g&&(m=g.wheelDeltaY),"wheelDeltaX"in g&&(l=-1*g.wheelDeltaX),"axis"in g&&g.axis===g.HORIZONTAL_AXIS&&(l=-1*m,m=0),j=0===m?l:m,"deltaY"in g&&(m=-1*g.deltaY,j=m),"deltaX"in g&&(l=g.deltaX,0===m&&(j=-1*l)),0!==m||0!==l){if(1===g.deltaMode){var q=a.data(this,"mousewheel-line-height");j*=q,m*=q,l*=q}else if(2===g.deltaMode){var r=a.data(this,"mousewheel-page-height");j*=r,m*=r,l*=r}if(n=Math.max(Math.abs(m),Math.abs(l)),(!f||f>n)&&(f=n,d(g,n)&&(f/=40)),d(g,n)&&(j/=40,l/=40,m/=40),j=Math[j>=1?"floor":"ceil"](j/f),l=Math[l>=1?"floor":"ceil"](l/f),m=Math[m>=1?"floor":"ceil"](m/f),k.settings.normalizeOffset&&this.getBoundingClientRect){var s=this.getBoundingClientRect();o=b.clientX-s.left,p=b.clientY-s.top}return b.deltaX=l,b.deltaY=m,b.deltaFactor=f,b.offsetX=o,b.offsetY=p,b.deltaMode=0,h.unshift(b,j,l,m),e&&clearTimeout(e),e=setTimeout(c,200),(a.event.dispatch||a.event.handle).apply(this,h)}}function c(){f=null}function d(a,b){return k.settings.adjustOldDeltas&&"mousewheel"===a.type&&b%120===0}var e,f,g=["wheel","mousewheel","DOMMouseScroll","MozMousePixelScroll"],h="onwheel"in document||document.documentMode>=9?["wheel"]:["mousewheel","DomMouseScroll","MozMousePixelScroll"],i=Array.prototype.slice;if(a.event.fixHooks)for(var j=g.length;j;)a.event.fixHooks[g[--j]]=a.event.mouseHooks;var k=a.event.special.mousewheel={version:"3.1.12",setup:function(){if(this.addEventListener)for(var c=h.length;c;)this.addEventListener(h[--c],b,!1);else this.onmousewheel=b;a.data(this,"mousewheel-line-height",k.getLineHeight(this)),a.data(this,"mousewheel-page-height",k.getPageHeight(this))},teardown:function(){if(this.removeEventListener)for(var c=h.length;c;)this.removeEventListener(h[--c],b,!1);else this.onmousewheel=null;a.removeData(this,"mousewheel-line-height"),a.removeData(this,"mousewheel-page-height")},getLineHeight:function(b){var c=a(b),d=c["offsetParent"in a.fn?"offsetParent":"parent"]();return d.length||(d=a("body")),parseInt(d.css("fontSize"),10)||parseInt(c.css("fontSize"),10)||16},getPageHeight:function(b){return a(b).height()},settings:{adjustOldDeltas:!0,normalizeOffset:!0}};a.fn.extend({mousewheel:function(a){return a?this.bind("mousewheel",a):this.trigger("mousewheel")},unmousewheel:function(a){return this.unbind("mousewheel",a)}})}); \ No newline at end of file diff --git a/lib/jquery-mousewheel/package.json b/lib/jquery-mousewheel/package.json new file mode 100644 index 000000000..4848f6bc7 --- /dev/null +++ b/lib/jquery-mousewheel/package.json @@ -0,0 +1,53 @@ +{ + "name": "jquery-mousewheel", + "version": "3.1.13", + "author": { + "name": "jQuery Foundation and other contributors", + "url": "https://github.com/jquery/jquery-mousewheel/blob/master/AUTHORS.txt" + }, + "description": "A jQuery plugin that adds cross-browser mouse wheel support.", + "licenses": [ + { + "type": "MIT", + "url": "https://github.com/jquery/jquery-mousewheel/blob/master/LICENSE.txt" + } + ], + "homepage": "https://github.com/jquery/jquery-mousewheel", + "main": "./jquery.mousewheel.js", + "repository": { + "type": "git", + "url": "https://github.com/jquery/jquery-mousewheel.git" + }, + "bugs": { + "url": "https://github.com/jquery/jquery-mousewheel/issues" + }, + "keywords": [ + "jquery", + "mouse", + "wheel", + "event", + "mousewheel", + "jquery-plugin", + "browser" + ], + "files": [ + "ChangeLog.md", + "jquery.mousewheel.js", + "README.md", + "LICENSE.txt" + ], + "devDependencies": { + "grunt": "~0.4.1", + "grunt-contrib-connect": "~0.5.0", + "grunt-contrib-jshint": "~0.7.1", + "grunt-contrib-uglify": "~0.2.7" + }, + "directories": { + "test": "test" + }, + "jam": { + "dependencies": { + "jquery": ">=1.2.2" + } + } +} diff --git a/lib/jquery-mousewheel/test/browserify/README.md b/lib/jquery-mousewheel/test/browserify/README.md new file mode 100644 index 000000000..a6496ab4b --- /dev/null +++ b/lib/jquery-mousewheel/test/browserify/README.md @@ -0,0 +1,15 @@ +# browserify test + +First run + +```js +npm install jquery-browserify +``` + +Then run + +```js +browserify main.js > bundle.js +``` + +Then open index.html and console and scroll with the mousewheel. Should see the events being logged. diff --git a/lib/jquery-mousewheel/test/browserify/bundle.js b/lib/jquery-mousewheel/test/browserify/bundle.js new file mode 100644 index 000000000..f21a9f1ae --- /dev/null +++ b/lib/jquery-mousewheel/test/browserify/bundle.js @@ -0,0 +1,9460 @@ +;(function(e,t,n,r){function i(r){if(!n[r]){if(!t[r]){if(e)return e(r);throw new Error("Cannot find module '"+r+"'")}var s=n[r]={exports:{}};t[r][0](function(e){var n=t[r][1][e];return i(n?n:e)},s,s.exports)}return n[r].exports}for(var s=0;s= 9 ? ['wheel'] : ['mousewheel', 'DomMouseScroll', 'MozMousePixelScroll']; + var lowestDelta, lowestDeltaXY; + + if ( $.event.fixHooks ) { + for ( var i = toFix.length; i; ) { + $.event.fixHooks[ toFix[--i] ] = $.event.mouseHooks; + } + } + + $.event.special.mousewheel = { + setup: function() { + if ( this.addEventListener ) { + for ( var i = toBind.length; i; ) { + this.addEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = handler; + } + }, + + teardown: function() { + if ( this.removeEventListener ) { + for ( var i = toBind.length; i; ) { + this.removeEventListener( toBind[--i], handler, false ); + } + } else { + this.onmousewheel = null; + } + } + }; + + $.fn.extend({ + mousewheel: function(fn) { + return fn ? this.bind("mousewheel", fn) : this.trigger("mousewheel"); + }, + + unmousewheel: function(fn) { + return this.unbind("mousewheel", fn); + } + }); + + + function handler(event) { + var orgEvent = event || window.event, + args = [].slice.call(arguments, 1), + delta = 0, + deltaX = 0, + deltaY = 0, + absDelta = 0, + absDeltaXY = 0, + fn; + event = $.event.fix(orgEvent); + event.type = "mousewheel"; + + // Old school scrollwheel delta + if ( orgEvent.wheelDelta ) { delta = orgEvent.wheelDelta; } + if ( orgEvent.detail ) { delta = orgEvent.detail * -1; } + + // New school wheel delta (wheel event) + if ( orgEvent.deltaY ) { + deltaY = orgEvent.deltaY * -1; + delta = deltaY; + } + if ( orgEvent.deltaX ) { + deltaX = orgEvent.deltaX; + delta = deltaX * -1; + } + + // Webkit + if ( orgEvent.wheelDeltaY !== undefined ) { deltaY = orgEvent.wheelDeltaY; } + if ( orgEvent.wheelDeltaX !== undefined ) { deltaX = orgEvent.wheelDeltaX * -1; } + + // Look for lowest delta to normalize the delta values + absDelta = Math.abs(delta); + if ( !lowestDelta || absDelta < lowestDelta ) { lowestDelta = absDelta; } + absDeltaXY = Math.max(Math.abs(deltaY), Math.abs(deltaX)); + if ( !lowestDeltaXY || absDeltaXY < lowestDeltaXY ) { lowestDeltaXY = absDeltaXY; } + + // Get a whole value for the deltas + fn = delta > 0 ? 'floor' : 'ceil'; + delta = Math[fn](delta / lowestDelta); + deltaX = Math[fn](deltaX / lowestDeltaXY); + deltaY = Math[fn](deltaY / lowestDeltaXY); + + // Add event and delta to the front of the arguments + args.unshift(event, delta, deltaX, deltaY); + + return ($.event.dispatch || $.event.handle).apply(this, args); + } + +})); + +},{}],2:[function(require,module,exports){ +var $ = require('jquery-browserify'); +require('../../jquery.mousewheel.js')($); + +},{"../../jquery.mousewheel.js":1,"jquery-browserify":3}],3:[function(require,module,exports){ +(function(global){// Uses Node, AMD or browser globals to create a module. + +// If you want something that will work in other stricter CommonJS environments, +// or if you need to create a circular dependency, see commonJsStrict.js + +// Defines a module "returnExports" that depends another module called "b". +// Note that the name of the module is implied by the file name. It is best +// if the file name and the exported global have matching names. + +// If the 'b' module also uses this type of boilerplate, then +// in the browser, it will create a global .b that is used below. + +// If you do not want to support the browser global path, then you +// can remove the `root` use and the passing `this` as the first arg to +// the top function. + +(function (root, factory) { + if (typeof exports === 'object') { + // Node. Does not work with strict CommonJS, but + // only CommonJS-like enviroments that support module.exports, + // like Node. + module.exports = factory(); + } else if (typeof define === 'function' && define.amd) { + // AMD. Register as an anonymous module. + define([], factory); + } else { + // Browser globals + root.returnExports = factory(); + } +}(this, function () {/*! + * jQuery JavaScript Library v1.8.1 + * http://jquery.com/ + * + * Includes Sizzle.js + * http://sizzlejs.com/ + * + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license + * http://jquery.org/license + * + * Date: Thu Aug 30 2012 17:17:22 GMT-0400 (Eastern Daylight Time) + */ +return (function( window, undefined ) { +var + // A central reference to the root jQuery(document) + rootjQuery, + + // The deferred used on DOM ready + readyList, + + // Use the correct document accordingly with window argument (sandbox) + document = window.document, + location = window.location, + navigator = window.navigator, + + // Map over jQuery in case of overwrite + _jQuery = window.jQuery, + + // Map over the $ in case of overwrite + _$ = window.$, + + // Save a reference to some core methods + core_push = Array.prototype.push, + core_slice = Array.prototype.slice, + core_indexOf = Array.prototype.indexOf, + core_toString = Object.prototype.toString, + core_hasOwn = Object.prototype.hasOwnProperty, + core_trim = String.prototype.trim, + + // Define a local copy of jQuery + jQuery = function( selector, context ) { + // The jQuery object is actually just the init constructor 'enhanced' + return new jQuery.fn.init( selector, context, rootjQuery ); + }, + + // Used for matching numbers + core_pnum = /[\-+]?(?:\d*\.|)\d+(?:[eE][\-+]?\d+|)/.source, + + // Used for detecting and trimming whitespace + core_rnotwhite = /\S/, + core_rspace = /\s+/, + + // Make sure we trim BOM and NBSP (here's looking at you, Safari 5.0 and IE) + rtrim = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g, + + // A simple way to check for HTML strings + // Prioritize #id over to avoid XSS via location.hash (#9521) + rquickExpr = /^(?:[^#<]*(<[\w\W]+>)[^>]*$|#([\w\-]*)$)/, + + // Match a standalone tag + rsingleTag = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, + + // JSON RegExp + rvalidchars = /^[\],:{}\s]*$/, + rvalidbraces = /(?:^|:|,)(?:\s*\[)+/g, + rvalidescape = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g, + rvalidtokens = /"[^"\\\r\n]*"|true|false|null|-?(?:\d\d*\.|)\d+(?:[eE][\-+]?\d+|)/g, + + // Matches dashed string for camelizing + rmsPrefix = /^-ms-/, + rdashAlpha = /-([\da-z])/gi, + + // Used by jQuery.camelCase as callback to replace() + fcamelCase = function( all, letter ) { + return ( letter + "" ).toUpperCase(); + }, + + // The ready event handler and self cleanup method + DOMContentLoaded = function() { + if ( document.addEventListener ) { + document.removeEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + jQuery.ready(); + } else if ( document.readyState === "complete" ) { + // we're here because readyState === "complete" in oldIE + // which is good enough for us to call the dom ready! + document.detachEvent( "onreadystatechange", DOMContentLoaded ); + jQuery.ready(); + } + }, + + // [[Class]] -> type pairs + class2type = {}; + +jQuery.fn = jQuery.prototype = { + constructor: jQuery, + init: function( selector, context, rootjQuery ) { + var match, elem, ret, doc; + + // Handle $(""), $(null), $(undefined), $(false) + if ( !selector ) { + return this; + } + + // Handle $(DOMElement) + if ( selector.nodeType ) { + this.context = this[0] = selector; + this.length = 1; + return this; + } + + // Handle HTML strings + if ( typeof selector === "string" ) { + if ( selector.charAt(0) === "<" && selector.charAt( selector.length - 1 ) === ">" && selector.length >= 3 ) { + // Assume that strings that start and end with <> are HTML and skip the regex check + match = [ null, selector, null ]; + + } else { + match = rquickExpr.exec( selector ); + } + + // Match html or make sure no context is specified for #id + if ( match && (match[1] || !context) ) { + + // HANDLE: $(html) -> $(array) + if ( match[1] ) { + context = context instanceof jQuery ? context[0] : context; + doc = ( context && context.nodeType ? context.ownerDocument || context : document ); + + // scripts is true for back-compat + selector = jQuery.parseHTML( match[1], doc, true ); + if ( rsingleTag.test( match[1] ) && jQuery.isPlainObject( context ) ) { + this.attr.call( selector, context, true ); + } + + return jQuery.merge( this, selector ); + + // HANDLE: $(#id) + } else { + elem = document.getElementById( match[2] ); + + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE and Opera return items + // by name instead of ID + if ( elem.id !== match[2] ) { + return rootjQuery.find( selector ); + } + + // Otherwise, we inject the element directly into the jQuery object + this.length = 1; + this[0] = elem; + } + + this.context = document; + this.selector = selector; + return this; + } + + // HANDLE: $(expr, $(...)) + } else if ( !context || context.jquery ) { + return ( context || rootjQuery ).find( selector ); + + // HANDLE: $(expr, context) + // (which is just equivalent to: $(context).find(expr) + } else { + return this.constructor( context ).find( selector ); + } + + // HANDLE: $(function) + // Shortcut for document ready + } else if ( jQuery.isFunction( selector ) ) { + return rootjQuery.ready( selector ); + } + + if ( selector.selector !== undefined ) { + this.selector = selector.selector; + this.context = selector.context; + } + + return jQuery.makeArray( selector, this ); + }, + + // Start with an empty selector + selector: "", + + // The current version of jQuery being used + jquery: "1.8.1", + + // The default length of a jQuery object is 0 + length: 0, + + // The number of elements contained in the matched element set + size: function() { + return this.length; + }, + + toArray: function() { + return core_slice.call( this ); + }, + + // Get the Nth element in the matched element set OR + // Get the whole matched element set as a clean array + get: function( num ) { + return num == null ? + + // Return a 'clean' array + this.toArray() : + + // Return just the object + ( num < 0 ? this[ this.length + num ] : this[ num ] ); + }, + + // Take an array of elements and push it onto the stack + // (returning the new matched element set) + pushStack: function( elems, name, selector ) { + + // Build a new jQuery matched element set + var ret = jQuery.merge( this.constructor(), elems ); + + // Add the old object onto the stack (as a reference) + ret.prevObject = this; + + ret.context = this.context; + + if ( name === "find" ) { + ret.selector = this.selector + ( this.selector ? " " : "" ) + selector; + } else if ( name ) { + ret.selector = this.selector + "." + name + "(" + selector + ")"; + } + + // Return the newly-formed element set + return ret; + }, + + // Execute a callback for every element in the matched set. + // (You can seed the arguments with an array of args, but this is + // only used internally.) + each: function( callback, args ) { + return jQuery.each( this, callback, args ); + }, + + ready: function( fn ) { + // Add the callback + jQuery.ready.promise().done( fn ); + + return this; + }, + + eq: function( i ) { + i = +i; + return i === -1 ? + this.slice( i ) : + this.slice( i, i + 1 ); + }, + + first: function() { + return this.eq( 0 ); + }, + + last: function() { + return this.eq( -1 ); + }, + + slice: function() { + return this.pushStack( core_slice.apply( this, arguments ), + "slice", core_slice.call(arguments).join(",") ); + }, + + map: function( callback ) { + return this.pushStack( jQuery.map(this, function( elem, i ) { + return callback.call( elem, i, elem ); + })); + }, + + end: function() { + return this.prevObject || this.constructor(null); + }, + + // For internal use only. + // Behaves like an Array's method, not like a jQuery method. + push: core_push, + sort: [].sort, + splice: [].splice +}; + +// Give the init function the jQuery prototype for later instantiation +jQuery.fn.init.prototype = jQuery.fn; + +jQuery.extend = jQuery.fn.extend = function() { + var options, name, src, copy, copyIsArray, clone, + target = arguments[0] || {}, + i = 1, + length = arguments.length, + deep = false; + + // Handle a deep copy situation + if ( typeof target === "boolean" ) { + deep = target; + target = arguments[1] || {}; + // skip the boolean and the target + i = 2; + } + + // Handle case when target is a string or something (possible in deep copy) + if ( typeof target !== "object" && !jQuery.isFunction(target) ) { + target = {}; + } + + // extend jQuery itself if only one argument is passed + if ( length === i ) { + target = this; + --i; + } + + for ( ; i < length; i++ ) { + // Only deal with non-null/undefined values + if ( (options = arguments[ i ]) != null ) { + // Extend the base object + for ( name in options ) { + src = target[ name ]; + copy = options[ name ]; + + // Prevent never-ending loop + if ( target === copy ) { + continue; + } + + // Recurse if we're merging plain objects or arrays + if ( deep && copy && ( jQuery.isPlainObject(copy) || (copyIsArray = jQuery.isArray(copy)) ) ) { + if ( copyIsArray ) { + copyIsArray = false; + clone = src && jQuery.isArray(src) ? src : []; + + } else { + clone = src && jQuery.isPlainObject(src) ? src : {}; + } + + // Never move original objects, clone them + target[ name ] = jQuery.extend( deep, clone, copy ); + + // Don't bring in undefined values + } else if ( copy !== undefined ) { + target[ name ] = copy; + } + } + } + } + + // Return the modified object + return target; +}; + +jQuery.extend({ + noConflict: function( deep ) { + if ( window.$ === jQuery ) { + window.$ = _$; + } + + if ( deep && window.jQuery === jQuery ) { + window.jQuery = _jQuery; + } + + return jQuery; + }, + + // Is the DOM ready to be used? Set to true once it occurs. + isReady: false, + + // A counter to track how many items to wait for before + // the ready event fires. See #6781 + readyWait: 1, + + // Hold (or release) the ready event + holdReady: function( hold ) { + if ( hold ) { + jQuery.readyWait++; + } else { + jQuery.ready( true ); + } + }, + + // Handle when the DOM is ready + ready: function( wait ) { + + // Abort if there are pending holds or we're already ready + if ( wait === true ? --jQuery.readyWait : jQuery.isReady ) { + return; + } + + // Make sure body exists, at least, in case IE gets a little overzealous (ticket #5443). + if ( !document.body ) { + return setTimeout( jQuery.ready, 1 ); + } + + // Remember that the DOM is ready + jQuery.isReady = true; + + // If a normal DOM Ready event fired, decrement, and wait if need be + if ( wait !== true && --jQuery.readyWait > 0 ) { + return; + } + + // If there are functions bound, to execute + readyList.resolveWith( document, [ jQuery ] ); + + // Trigger any bound ready events + if ( jQuery.fn.trigger ) { + jQuery( document ).trigger("ready").off("ready"); + } + }, + + // See test/unit/core.js for details concerning isFunction. + // Since version 1.3, DOM methods and functions like alert + // aren't supported. They return false on IE (#2968). + isFunction: function( obj ) { + return jQuery.type(obj) === "function"; + }, + + isArray: Array.isArray || function( obj ) { + return jQuery.type(obj) === "array"; + }, + + isWindow: function( obj ) { + return obj != null && obj == obj.window; + }, + + isNumeric: function( obj ) { + return !isNaN( parseFloat(obj) ) && isFinite( obj ); + }, + + type: function( obj ) { + return obj == null ? + String( obj ) : + class2type[ core_toString.call(obj) ] || "object"; + }, + + isPlainObject: function( obj ) { + // Must be an Object. + // Because of IE, we also have to check the presence of the constructor property. + // Make sure that DOM nodes and window objects don't pass through, as well + if ( !obj || jQuery.type(obj) !== "object" || obj.nodeType || jQuery.isWindow( obj ) ) { + return false; + } + + try { + // Not own constructor property must be Object + if ( obj.constructor && + !core_hasOwn.call(obj, "constructor") && + !core_hasOwn.call(obj.constructor.prototype, "isPrototypeOf") ) { + return false; + } + } catch ( e ) { + // IE8,9 Will throw exceptions on certain host objects #9897 + return false; + } + + // Own properties are enumerated firstly, so to speed up, + // if last one is own, then all properties are own. + + var key; + for ( key in obj ) {} + + return key === undefined || core_hasOwn.call( obj, key ); + }, + + isEmptyObject: function( obj ) { + var name; + for ( name in obj ) { + return false; + } + return true; + }, + + error: function( msg ) { + throw new Error( msg ); + }, + + // data: string of html + // context (optional): If specified, the fragment will be created in this context, defaults to document + // scripts (optional): If true, will include scripts passed in the html string + parseHTML: function( data, context, scripts ) { + var parsed; + if ( !data || typeof data !== "string" ) { + return null; + } + if ( typeof context === "boolean" ) { + scripts = context; + context = 0; + } + context = context || document; + + // Single tag + if ( (parsed = rsingleTag.exec( data )) ) { + return [ context.createElement( parsed[1] ) ]; + } + + parsed = jQuery.buildFragment( [ data ], context, scripts ? null : [] ); + return jQuery.merge( [], + (parsed.cacheable ? jQuery.clone( parsed.fragment ) : parsed.fragment).childNodes ); + }, + + parseJSON: function( data ) { + if ( !data || typeof data !== "string") { + return null; + } + + // Make sure leading/trailing whitespace is removed (IE can't handle it) + data = jQuery.trim( data ); + + // Attempt to parse using the native JSON parser first + if ( window.JSON && window.JSON.parse ) { + return window.JSON.parse( data ); + } + + // Make sure the incoming data is actual JSON + // Logic borrowed from http://json.org/json2.js + if ( rvalidchars.test( data.replace( rvalidescape, "@" ) + .replace( rvalidtokens, "]" ) + .replace( rvalidbraces, "")) ) { + + return ( new Function( "return " + data ) )(); + + } + jQuery.error( "Invalid JSON: " + data ); + }, + + // Cross-browser xml parsing + parseXML: function( data ) { + var xml, tmp; + if ( !data || typeof data !== "string" ) { + return null; + } + try { + if ( window.DOMParser ) { // Standard + tmp = new DOMParser(); + xml = tmp.parseFromString( data , "text/xml" ); + } else { // IE + xml = new ActiveXObject( "Microsoft.XMLDOM" ); + xml.async = "false"; + xml.loadXML( data ); + } + } catch( e ) { + xml = undefined; + } + if ( !xml || !xml.documentElement || xml.getElementsByTagName( "parsererror" ).length ) { + jQuery.error( "Invalid XML: " + data ); + } + return xml; + }, + + noop: function() {}, + + // Evaluates a script in a global context + // Workarounds based on findings by Jim Driscoll + // http://weblogs.java.net/blog/driscoll/archive/2009/09/08/eval-javascript-global-context + globalEval: function( data ) { + if ( data && core_rnotwhite.test( data ) ) { + // We use execScript on Internet Explorer + // We use an anonymous function so that context is window + // rather than jQuery in Firefox + ( window.execScript || function( data ) { + window[ "eval" ].call( window, data ); + } )( data ); + } + }, + + // Convert dashed to camelCase; used by the css and data modules + // Microsoft forgot to hump their vendor prefix (#9572) + camelCase: function( string ) { + return string.replace( rmsPrefix, "ms-" ).replace( rdashAlpha, fcamelCase ); + }, + + nodeName: function( elem, name ) { + return elem.nodeName && elem.nodeName.toUpperCase() === name.toUpperCase(); + }, + + // args is for internal usage only + each: function( obj, callback, args ) { + var name, + i = 0, + length = obj.length, + isObj = length === undefined || jQuery.isFunction( obj ); + + if ( args ) { + if ( isObj ) { + for ( name in obj ) { + if ( callback.apply( obj[ name ], args ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.apply( obj[ i++ ], args ) === false ) { + break; + } + } + } + + // A special, fast, case for the most common use of each + } else { + if ( isObj ) { + for ( name in obj ) { + if ( callback.call( obj[ name ], name, obj[ name ] ) === false ) { + break; + } + } + } else { + for ( ; i < length; ) { + if ( callback.call( obj[ i ], i, obj[ i++ ] ) === false ) { + break; + } + } + } + } + + return obj; + }, + + // Use native String.trim function wherever possible + trim: core_trim && !core_trim.call("\uFEFF\xA0") ? + function( text ) { + return text == null ? + "" : + core_trim.call( text ); + } : + + // Otherwise use our own trimming functionality + function( text ) { + return text == null ? + "" : + text.toString().replace( rtrim, "" ); + }, + + // results is for internal usage only + makeArray: function( arr, results ) { + var type, + ret = results || []; + + if ( arr != null ) { + // The window, strings (and functions) also have 'length' + // Tweaked logic slightly to handle Blackberry 4.7 RegExp issues #6930 + type = jQuery.type( arr ); + + if ( arr.length == null || type === "string" || type === "function" || type === "regexp" || jQuery.isWindow( arr ) ) { + core_push.call( ret, arr ); + } else { + jQuery.merge( ret, arr ); + } + } + + return ret; + }, + + inArray: function( elem, arr, i ) { + var len; + + if ( arr ) { + if ( core_indexOf ) { + return core_indexOf.call( arr, elem, i ); + } + + len = arr.length; + i = i ? i < 0 ? Math.max( 0, len + i ) : i : 0; + + for ( ; i < len; i++ ) { + // Skip accessing in sparse arrays + if ( i in arr && arr[ i ] === elem ) { + return i; + } + } + } + + return -1; + }, + + merge: function( first, second ) { + var l = second.length, + i = first.length, + j = 0; + + if ( typeof l === "number" ) { + for ( ; j < l; j++ ) { + first[ i++ ] = second[ j ]; + } + + } else { + while ( second[j] !== undefined ) { + first[ i++ ] = second[ j++ ]; + } + } + + first.length = i; + + return first; + }, + + grep: function( elems, callback, inv ) { + var retVal, + ret = [], + i = 0, + length = elems.length; + inv = !!inv; + + // Go through the array, only saving the items + // that pass the validator function + for ( ; i < length; i++ ) { + retVal = !!callback( elems[ i ], i ); + if ( inv !== retVal ) { + ret.push( elems[ i ] ); + } + } + + return ret; + }, + + // arg is for internal usage only + map: function( elems, callback, arg ) { + var value, key, + ret = [], + i = 0, + length = elems.length, + // jquery objects are treated as arrays + isArray = elems instanceof jQuery || length !== undefined && typeof length === "number" && ( ( length > 0 && elems[ 0 ] && elems[ length -1 ] ) || length === 0 || jQuery.isArray( elems ) ) ; + + // Go through the array, translating each of the items to their + if ( isArray ) { + for ( ; i < length; i++ ) { + value = callback( elems[ i ], i, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + + // Go through every key on the object, + } else { + for ( key in elems ) { + value = callback( elems[ key ], key, arg ); + + if ( value != null ) { + ret[ ret.length ] = value; + } + } + } + + // Flatten any nested arrays + return ret.concat.apply( [], ret ); + }, + + // A global GUID counter for objects + guid: 1, + + // Bind a function to a context, optionally partially applying any + // arguments. + proxy: function( fn, context ) { + var tmp, args, proxy; + + if ( typeof context === "string" ) { + tmp = fn[ context ]; + context = fn; + fn = tmp; + } + + // Quick check to determine if target is callable, in the spec + // this throws a TypeError, but we will just return undefined. + if ( !jQuery.isFunction( fn ) ) { + return undefined; + } + + // Simulated bind + args = core_slice.call( arguments, 2 ); + proxy = function() { + return fn.apply( context, args.concat( core_slice.call( arguments ) ) ); + }; + + // Set the guid of unique handler to the same of original handler, so it can be removed + proxy.guid = fn.guid = fn.guid || proxy.guid || jQuery.guid++; + + return proxy; + }, + + // Multifunctional method to get and set values of a collection + // The value/s can optionally be executed if it's a function + access: function( elems, fn, key, value, chainable, emptyGet, pass ) { + var exec, + bulk = key == null, + i = 0, + length = elems.length; + + // Sets many values + if ( key && typeof key === "object" ) { + for ( i in key ) { + jQuery.access( elems, fn, i, key[i], 1, emptyGet, value ); + } + chainable = 1; + + // Sets one value + } else if ( value !== undefined ) { + // Optionally, function values get executed if exec is true + exec = pass === undefined && jQuery.isFunction( value ); + + if ( bulk ) { + // Bulk operations only iterate when executing function values + if ( exec ) { + exec = fn; + fn = function( elem, key, value ) { + return exec.call( jQuery( elem ), value ); + }; + + // Otherwise they run against the entire set + } else { + fn.call( elems, value ); + fn = null; + } + } + + if ( fn ) { + for (; i < length; i++ ) { + fn( elems[i], key, exec ? value.call( elems[i], i, fn( elems[i], key ) ) : value, pass ); + } + } + + chainable = 1; + } + + return chainable ? + elems : + + // Gets + bulk ? + fn.call( elems ) : + length ? fn( elems[0], key ) : emptyGet; + }, + + now: function() { + return ( new Date() ).getTime(); + } +}); + +jQuery.ready.promise = function( obj ) { + if ( !readyList ) { + + readyList = jQuery.Deferred(); + + // Catch cases where $(document).ready() is called after the browser event has already occurred. + // we once tried to use readyState "interactive" here, but it caused issues like the one + // discovered by ChrisS here: http://bugs.jquery.com/ticket/12282#comment:15 + if ( document.readyState === "complete" ) { + // Handle it asynchronously to allow scripts the opportunity to delay ready + setTimeout( jQuery.ready, 1 ); + + // Standards-based browsers support DOMContentLoaded + } else if ( document.addEventListener ) { + // Use the handy event callback + document.addEventListener( "DOMContentLoaded", DOMContentLoaded, false ); + + // A fallback to window.onload, that will always work + window.addEventListener( "load", jQuery.ready, false ); + + // If IE event model is used + } else { + // Ensure firing before onload, maybe late but safe also for iframes + document.attachEvent( "onreadystatechange", DOMContentLoaded ); + + // A fallback to window.onload, that will always work + window.attachEvent( "onload", jQuery.ready ); + + // If IE and not a frame + // continually check to see if the document is ready + var top = false; + + try { + top = window.frameElement == null && document.documentElement; + } catch(e) {} + + if ( top && top.doScroll ) { + (function doScrollCheck() { + if ( !jQuery.isReady ) { + + try { + // Use the trick by Diego Perini + // http://javascript.nwbox.com/IEContentLoaded/ + top.doScroll("left"); + } catch(e) { + return setTimeout( doScrollCheck, 50 ); + } + + // and execute any waiting functions + jQuery.ready(); + } + })(); + } + } + } + return readyList.promise( obj ); +}; + +// Populate the class2type map +jQuery.each("Boolean Number String Function Array Date RegExp Object".split(" "), function(i, name) { + class2type[ "[object " + name + "]" ] = name.toLowerCase(); +}); + +// All jQuery objects should point back to these +rootjQuery = jQuery(document); +// String to Object options format cache +var optionsCache = {}; + +// Convert String-formatted options into Object-formatted ones and store in cache +function createOptions( options ) { + var object = optionsCache[ options ] = {}; + jQuery.each( options.split( core_rspace ), function( _, flag ) { + object[ flag ] = true; + }); + return object; +} + +/* + * Create a callback list using the following parameters: + * + * options: an optional list of space-separated options that will change how + * the callback list behaves or a more traditional option object + * + * By default a callback list will act like an event callback list and can be + * "fired" multiple times. + * + * Possible options: + * + * once: will ensure the callback list can only be fired once (like a Deferred) + * + * memory: will keep track of previous values and will call any callback added + * after the list has been fired right away with the latest "memorized" + * values (like a Deferred) + * + * unique: will ensure a callback can only be added once (no duplicate in the list) + * + * stopOnFalse: interrupt callings when a callback returns false + * + */ +jQuery.Callbacks = function( options ) { + + // Convert options from String-formatted to Object-formatted if needed + // (we check in cache first) + options = typeof options === "string" ? + ( optionsCache[ options ] || createOptions( options ) ) : + jQuery.extend( {}, options ); + + var // Last fire value (for non-forgettable lists) + memory, + // Flag to know if list was already fired + fired, + // Flag to know if list is currently firing + firing, + // First callback to fire (used internally by add and fireWith) + firingStart, + // End of the loop when firing + firingLength, + // Index of currently firing callback (modified by remove if needed) + firingIndex, + // Actual callback list + list = [], + // Stack of fire calls for repeatable lists + stack = !options.once && [], + // Fire callbacks + fire = function( data ) { + memory = options.memory && data; + fired = true; + firingIndex = firingStart || 0; + firingStart = 0; + firingLength = list.length; + firing = true; + for ( ; list && firingIndex < firingLength; firingIndex++ ) { + if ( list[ firingIndex ].apply( data[ 0 ], data[ 1 ] ) === false && options.stopOnFalse ) { + memory = false; // To prevent further calls using add + break; + } + } + firing = false; + if ( list ) { + if ( stack ) { + if ( stack.length ) { + fire( stack.shift() ); + } + } else if ( memory ) { + list = []; + } else { + self.disable(); + } + } + }, + // Actual Callbacks object + self = { + // Add a callback or a collection of callbacks to the list + add: function() { + if ( list ) { + // First, we save the current length + var start = list.length; + (function add( args ) { + jQuery.each( args, function( _, arg ) { + var type = jQuery.type( arg ); + if ( type === "function" && ( !options.unique || !self.has( arg ) ) ) { + list.push( arg ); + } else if ( arg && arg.length && type !== "string" ) { + // Inspect recursively + add( arg ); + } + }); + })( arguments ); + // Do we need to add the callbacks to the + // current firing batch? + if ( firing ) { + firingLength = list.length; + // With memory, if we're not firing then + // we should call right away + } else if ( memory ) { + firingStart = start; + fire( memory ); + } + } + return this; + }, + // Remove a callback from the list + remove: function() { + if ( list ) { + jQuery.each( arguments, function( _, arg ) { + var index; + while( ( index = jQuery.inArray( arg, list, index ) ) > -1 ) { + list.splice( index, 1 ); + // Handle firing indexes + if ( firing ) { + if ( index <= firingLength ) { + firingLength--; + } + if ( index <= firingIndex ) { + firingIndex--; + } + } + } + }); + } + return this; + }, + // Control if a given callback is in the list + has: function( fn ) { + return jQuery.inArray( fn, list ) > -1; + }, + // Remove all callbacks from the list + empty: function() { + list = []; + return this; + }, + // Have the list do nothing anymore + disable: function() { + list = stack = memory = undefined; + return this; + }, + // Is it disabled? + disabled: function() { + return !list; + }, + // Lock the list in its current state + lock: function() { + stack = undefined; + if ( !memory ) { + self.disable(); + } + return this; + }, + // Is it locked? + locked: function() { + return !stack; + }, + // Call all callbacks with the given context and arguments + fireWith: function( context, args ) { + args = args || []; + args = [ context, args.slice ? args.slice() : args ]; + if ( list && ( !fired || stack ) ) { + if ( firing ) { + stack.push( args ); + } else { + fire( args ); + } + } + return this; + }, + // Call all the callbacks with the given arguments + fire: function() { + self.fireWith( this, arguments ); + return this; + }, + // To know if the callbacks have already been called at least once + fired: function() { + return !!fired; + } + }; + + return self; +}; +jQuery.extend({ + + Deferred: function( func ) { + var tuples = [ + // action, add listener, listener list, final state + [ "resolve", "done", jQuery.Callbacks("once memory"), "resolved" ], + [ "reject", "fail", jQuery.Callbacks("once memory"), "rejected" ], + [ "notify", "progress", jQuery.Callbacks("memory") ] + ], + state = "pending", + promise = { + state: function() { + return state; + }, + always: function() { + deferred.done( arguments ).fail( arguments ); + return this; + }, + then: function( /* fnDone, fnFail, fnProgress */ ) { + var fns = arguments; + return jQuery.Deferred(function( newDefer ) { + jQuery.each( tuples, function( i, tuple ) { + var action = tuple[ 0 ], + fn = fns[ i ]; + // deferred[ done | fail | progress ] for forwarding actions to newDefer + deferred[ tuple[1] ]( jQuery.isFunction( fn ) ? + function() { + var returned = fn.apply( this, arguments ); + if ( returned && jQuery.isFunction( returned.promise ) ) { + returned.promise() + .done( newDefer.resolve ) + .fail( newDefer.reject ) + .progress( newDefer.notify ); + } else { + newDefer[ action + "With" ]( this === deferred ? newDefer : this, [ returned ] ); + } + } : + newDefer[ action ] + ); + }); + fns = null; + }).promise(); + }, + // Get a promise for this deferred + // If obj is provided, the promise aspect is added to the object + promise: function( obj ) { + return typeof obj === "object" ? jQuery.extend( obj, promise ) : promise; + } + }, + deferred = {}; + + // Keep pipe for back-compat + promise.pipe = promise.then; + + // Add list-specific methods + jQuery.each( tuples, function( i, tuple ) { + var list = tuple[ 2 ], + stateString = tuple[ 3 ]; + + // promise[ done | fail | progress ] = list.add + promise[ tuple[1] ] = list.add; + + // Handle state + if ( stateString ) { + list.add(function() { + // state = [ resolved | rejected ] + state = stateString; + + // [ reject_list | resolve_list ].disable; progress_list.lock + }, tuples[ i ^ 1 ][ 2 ].disable, tuples[ 2 ][ 2 ].lock ); + } + + // deferred[ resolve | reject | notify ] = list.fire + deferred[ tuple[0] ] = list.fire; + deferred[ tuple[0] + "With" ] = list.fireWith; + }); + + // Make the deferred a promise + promise.promise( deferred ); + + // Call given func if any + if ( func ) { + func.call( deferred, deferred ); + } + + // All done! + return deferred; + }, + + // Deferred helper + when: function( subordinate /* , ..., subordinateN */ ) { + var i = 0, + resolveValues = core_slice.call( arguments ), + length = resolveValues.length, + + // the count of uncompleted subordinates + remaining = length !== 1 || ( subordinate && jQuery.isFunction( subordinate.promise ) ) ? length : 0, + + // the master Deferred. If resolveValues consist of only a single Deferred, just use that. + deferred = remaining === 1 ? subordinate : jQuery.Deferred(), + + // Update function for both resolve and progress values + updateFunc = function( i, contexts, values ) { + return function( value ) { + contexts[ i ] = this; + values[ i ] = arguments.length > 1 ? core_slice.call( arguments ) : value; + if( values === progressValues ) { + deferred.notifyWith( contexts, values ); + } else if ( !( --remaining ) ) { + deferred.resolveWith( contexts, values ); + } + }; + }, + + progressValues, progressContexts, resolveContexts; + + // add listeners to Deferred subordinates; treat others as resolved + if ( length > 1 ) { + progressValues = new Array( length ); + progressContexts = new Array( length ); + resolveContexts = new Array( length ); + for ( ; i < length; i++ ) { + if ( resolveValues[ i ] && jQuery.isFunction( resolveValues[ i ].promise ) ) { + resolveValues[ i ].promise() + .done( updateFunc( i, resolveContexts, resolveValues ) ) + .fail( deferred.reject ) + .progress( updateFunc( i, progressContexts, progressValues ) ); + } else { + --remaining; + } + } + } + + // if we're not waiting on anything, resolve the master + if ( !remaining ) { + deferred.resolveWith( resolveContexts, resolveValues ); + } + + return deferred.promise(); + } +}); +jQuery.support = (function() { + + var support, + all, + a, + select, + opt, + input, + fragment, + eventName, + i, + isSupported, + clickFn, + div = document.createElement("div"); + + // Preliminary tests + div.setAttribute( "className", "t" ); + div.innerHTML = "
a"; + + all = div.getElementsByTagName("*"); + a = div.getElementsByTagName("a")[ 0 ]; + a.style.cssText = "top:1px;float:left;opacity:.5"; + + // Can't get basic test support + if ( !all || !all.length || !a ) { + return {}; + } + + // First batch of supports tests + select = document.createElement("select"); + opt = select.appendChild( document.createElement("option") ); + input = div.getElementsByTagName("input")[ 0 ]; + + support = { + // IE strips leading whitespace when .innerHTML is used + leadingWhitespace: ( div.firstChild.nodeType === 3 ), + + // Make sure that tbody elements aren't automatically inserted + // IE will insert them into empty tables + tbody: !div.getElementsByTagName("tbody").length, + + // Make sure that link elements get serialized correctly by innerHTML + // This requires a wrapper element in IE + htmlSerialize: !!div.getElementsByTagName("link").length, + + // Get the style information from getAttribute + // (IE uses .cssText instead) + style: /top/.test( a.getAttribute("style") ), + + // Make sure that URLs aren't manipulated + // (IE normalizes it by default) + hrefNormalized: ( a.getAttribute("href") === "/a" ), + + // Make sure that element opacity exists + // (IE uses filter instead) + // Use a regex to work around a WebKit issue. See #5145 + opacity: /^0.5/.test( a.style.opacity ), + + // Verify style float existence + // (IE uses styleFloat instead of cssFloat) + cssFloat: !!a.style.cssFloat, + + // Make sure that if no value is specified for a checkbox + // that it defaults to "on". + // (WebKit defaults to "" instead) + checkOn: ( input.value === "on" ), + + // Make sure that a selected-by-default option has a working selected property. + // (WebKit defaults to false instead of true, IE too, if it's in an optgroup) + optSelected: opt.selected, + + // Test setAttribute on camelCase class. If it works, we need attrFixes when doing get/setAttribute (ie6/7) + getSetAttribute: div.className !== "t", + + // Tests for enctype support on a form(#6743) + enctype: !!document.createElement("form").enctype, + + // Makes sure cloning an html5 element does not cause problems + // Where outerHTML is undefined, this still works + html5Clone: document.createElement("nav").cloneNode( true ).outerHTML !== "<:nav>", + + // jQuery.support.boxModel DEPRECATED in 1.8 since we don't support Quirks Mode + boxModel: ( document.compatMode === "CSS1Compat" ), + + // Will be defined later + submitBubbles: true, + changeBubbles: true, + focusinBubbles: false, + deleteExpando: true, + noCloneEvent: true, + inlineBlockNeedsLayout: false, + shrinkWrapBlocks: false, + reliableMarginRight: true, + boxSizingReliable: true, + pixelPosition: false + }; + + // Make sure checked status is properly cloned + input.checked = true; + support.noCloneChecked = input.cloneNode( true ).checked; + + // Make sure that the options inside disabled selects aren't marked as disabled + // (WebKit marks them as disabled) + select.disabled = true; + support.optDisabled = !opt.disabled; + + // Test to see if it's possible to delete an expando from an element + // Fails in Internet Explorer + try { + delete div.test; + } catch( e ) { + support.deleteExpando = false; + } + + if ( !div.addEventListener && div.attachEvent && div.fireEvent ) { + div.attachEvent( "onclick", clickFn = function() { + // Cloning a node shouldn't copy over any + // bound event handlers (IE does this) + support.noCloneEvent = false; + }); + div.cloneNode( true ).fireEvent("onclick"); + div.detachEvent( "onclick", clickFn ); + } + + // Check if a radio maintains its value + // after being appended to the DOM + input = document.createElement("input"); + input.value = "t"; + input.setAttribute( "type", "radio" ); + support.radioValue = input.value === "t"; + + input.setAttribute( "checked", "checked" ); + + // #11217 - WebKit loses check when the name is after the checked attribute + input.setAttribute( "name", "t" ); + + div.appendChild( input ); + fragment = document.createDocumentFragment(); + fragment.appendChild( div.lastChild ); + + // WebKit doesn't clone checked state correctly in fragments + support.checkClone = fragment.cloneNode( true ).cloneNode( true ).lastChild.checked; + + // Check if a disconnected checkbox will retain its checked + // value of true after appended to the DOM (IE6/7) + support.appendChecked = input.checked; + + fragment.removeChild( input ); + fragment.appendChild( div ); + + // Technique from Juriy Zaytsev + // http://perfectionkills.com/detecting-event-support-without-browser-sniffing/ + // We only care about the case where non-standard event systems + // are used, namely in IE. Short-circuiting here helps us to + // avoid an eval call (in setAttribute) which can cause CSP + // to go haywire. See: https://developer.mozilla.org/en/Security/CSP + if ( div.attachEvent ) { + for ( i in { + submit: true, + change: true, + focusin: true + }) { + eventName = "on" + i; + isSupported = ( eventName in div ); + if ( !isSupported ) { + div.setAttribute( eventName, "return;" ); + isSupported = ( typeof div[ eventName ] === "function" ); + } + support[ i + "Bubbles" ] = isSupported; + } + } + + // Run tests that need a body at doc ready + jQuery(function() { + var container, div, tds, marginDiv, + divReset = "padding:0;margin:0;border:0;display:block;overflow:hidden;", + body = document.getElementsByTagName("body")[0]; + + if ( !body ) { + // Return for frameset docs that don't have a body + return; + } + + container = document.createElement("div"); + container.style.cssText = "visibility:hidden;border:0;width:0;height:0;position:static;top:0;margin-top:1px"; + body.insertBefore( container, body.firstChild ); + + // Construct the test element + div = document.createElement("div"); + container.appendChild( div ); + + // Check if table cells still have offsetWidth/Height when they are set + // to display:none and there are still other visible table cells in a + // table row; if so, offsetWidth/Height are not reliable for use when + // determining if an element has been hidden directly using + // display:none (it is still safe to use offsets if a parent element is + // hidden; don safety goggles and see bug #4512 for more information). + // (only IE 8 fails this test) + div.innerHTML = "
t
"; + tds = div.getElementsByTagName("td"); + tds[ 0 ].style.cssText = "padding:0;margin:0;border:0;display:none"; + isSupported = ( tds[ 0 ].offsetHeight === 0 ); + + tds[ 0 ].style.display = ""; + tds[ 1 ].style.display = "none"; + + // Check if empty table cells still have offsetWidth/Height + // (IE <= 8 fail this test) + support.reliableHiddenOffsets = isSupported && ( tds[ 0 ].offsetHeight === 0 ); + + // Check box-sizing and margin behavior + div.innerHTML = ""; + div.style.cssText = "box-sizing:border-box;-moz-box-sizing:border-box;-webkit-box-sizing:border-box;padding:1px;border:1px;display:block;width:4px;margin-top:1%;position:absolute;top:1%;"; + support.boxSizing = ( div.offsetWidth === 4 ); + support.doesNotIncludeMarginInBodyOffset = ( body.offsetTop !== 1 ); + + // NOTE: To any future maintainer, we've window.getComputedStyle + // because jsdom on node.js will break without it. + if ( window.getComputedStyle ) { + support.pixelPosition = ( window.getComputedStyle( div, null ) || {} ).top !== "1%"; + support.boxSizingReliable = ( window.getComputedStyle( div, null ) || { width: "4px" } ).width === "4px"; + + // Check if div with explicit width and no margin-right incorrectly + // gets computed margin-right based on width of container. For more + // info see bug #3333 + // Fails in WebKit before Feb 2011 nightlies + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + marginDiv = document.createElement("div"); + marginDiv.style.cssText = div.style.cssText = divReset; + marginDiv.style.marginRight = marginDiv.style.width = "0"; + div.style.width = "1px"; + div.appendChild( marginDiv ); + support.reliableMarginRight = + !parseFloat( ( window.getComputedStyle( marginDiv, null ) || {} ).marginRight ); + } + + if ( typeof div.style.zoom !== "undefined" ) { + // Check if natively block-level elements act like inline-block + // elements when setting their display to 'inline' and giving + // them layout + // (IE < 8 does this) + div.innerHTML = ""; + div.style.cssText = divReset + "width:1px;padding:1px;display:inline;zoom:1"; + support.inlineBlockNeedsLayout = ( div.offsetWidth === 3 ); + + // Check if elements with layout shrink-wrap their children + // (IE 6 does this) + div.style.display = "block"; + div.style.overflow = "visible"; + div.innerHTML = "
"; + div.firstChild.style.width = "5px"; + support.shrinkWrapBlocks = ( div.offsetWidth !== 3 ); + + container.style.zoom = 1; + } + + // Null elements to avoid leaks in IE + body.removeChild( container ); + container = div = tds = marginDiv = null; + }); + + // Null elements to avoid leaks in IE + fragment.removeChild( div ); + all = a = select = opt = input = fragment = div = null; + + return support; +})(); +var rbrace = /(?:\{[\s\S]*\}|\[[\s\S]*\])$/, + rmultiDash = /([A-Z])/g; + +jQuery.extend({ + cache: {}, + + deletedIds: [], + + // Please use with caution + uuid: 0, + + // Unique for each copy of jQuery on the page + // Non-digits removed to match rinlinejQuery + expando: "jQuery" + ( jQuery.fn.jquery + Math.random() ).replace( /\D/g, "" ), + + // The following elements throw uncatchable exceptions if you + // attempt to add expando properties to them. + noData: { + "embed": true, + // Ban all objects except for Flash (which handle expandos) + "object": "clsid:D27CDB6E-AE6D-11cf-96B8-444553540000", + "applet": true + }, + + hasData: function( elem ) { + elem = elem.nodeType ? jQuery.cache[ elem[jQuery.expando] ] : elem[ jQuery.expando ]; + return !!elem && !isEmptyDataObject( elem ); + }, + + data: function( elem, name, data, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, ret, + internalKey = jQuery.expando, + getByName = typeof name === "string", + + // We have to handle DOM nodes and JS objects differently because IE6-7 + // can't GC object references properly across the DOM-JS boundary + isNode = elem.nodeType, + + // Only DOM nodes need the global jQuery cache; JS object data is + // attached directly to the object so GC can occur automatically + cache = isNode ? jQuery.cache : elem, + + // Only defining an ID for JS objects if its cache already exists allows + // the code to shortcut on the same path as a DOM node with no cache + id = isNode ? elem[ internalKey ] : elem[ internalKey ] && internalKey; + + // Avoid doing any more work than we need to when trying to get data on an + // object that has no data at all + if ( (!id || !cache[id] || (!pvt && !cache[id].data)) && getByName && data === undefined ) { + return; + } + + if ( !id ) { + // Only DOM nodes need a new unique ID for each element since their data + // ends up in the global cache + if ( isNode ) { + elem[ internalKey ] = id = jQuery.deletedIds.pop() || ++jQuery.uuid; + } else { + id = internalKey; + } + } + + if ( !cache[ id ] ) { + cache[ id ] = {}; + + // Avoids exposing jQuery metadata on plain JS objects when the object + // is serialized using JSON.stringify + if ( !isNode ) { + cache[ id ].toJSON = jQuery.noop; + } + } + + // An object can be passed to jQuery.data instead of a key/value pair; this gets + // shallow copied over onto the existing cache + if ( typeof name === "object" || typeof name === "function" ) { + if ( pvt ) { + cache[ id ] = jQuery.extend( cache[ id ], name ); + } else { + cache[ id ].data = jQuery.extend( cache[ id ].data, name ); + } + } + + thisCache = cache[ id ]; + + // jQuery data() is stored in a separate object inside the object's internal data + // cache in order to avoid key collisions between internal data and user-defined + // data. + if ( !pvt ) { + if ( !thisCache.data ) { + thisCache.data = {}; + } + + thisCache = thisCache.data; + } + + if ( data !== undefined ) { + thisCache[ jQuery.camelCase( name ) ] = data; + } + + // Check for both converted-to-camel and non-converted data property names + // If a data property was specified + if ( getByName ) { + + // First Try to find as-is property data + ret = thisCache[ name ]; + + // Test for null|undefined property data + if ( ret == null ) { + + // Try to find the camelCased property + ret = thisCache[ jQuery.camelCase( name ) ]; + } + } else { + ret = thisCache; + } + + return ret; + }, + + removeData: function( elem, name, pvt /* Internal Use Only */ ) { + if ( !jQuery.acceptData( elem ) ) { + return; + } + + var thisCache, i, l, + + isNode = elem.nodeType, + + // See jQuery.data for more information + cache = isNode ? jQuery.cache : elem, + id = isNode ? elem[ jQuery.expando ] : jQuery.expando; + + // If there is already no cache entry for this object, there is no + // purpose in continuing + if ( !cache[ id ] ) { + return; + } + + if ( name ) { + + thisCache = pvt ? cache[ id ] : cache[ id ].data; + + if ( thisCache ) { + + // Support array or space separated string names for data keys + if ( !jQuery.isArray( name ) ) { + + // try the string as a key before any manipulation + if ( name in thisCache ) { + name = [ name ]; + } else { + + // split the camel cased version by spaces unless a key with the spaces exists + name = jQuery.camelCase( name ); + if ( name in thisCache ) { + name = [ name ]; + } else { + name = name.split(" "); + } + } + } + + for ( i = 0, l = name.length; i < l; i++ ) { + delete thisCache[ name[i] ]; + } + + // If there is no data left in the cache, we want to continue + // and let the cache object itself get destroyed + if ( !( pvt ? isEmptyDataObject : jQuery.isEmptyObject )( thisCache ) ) { + return; + } + } + } + + // See jQuery.data for more information + if ( !pvt ) { + delete cache[ id ].data; + + // Don't destroy the parent cache unless the internal data object + // had been the only thing left in it + if ( !isEmptyDataObject( cache[ id ] ) ) { + return; + } + } + + // Destroy the cache + if ( isNode ) { + jQuery.cleanData( [ elem ], true ); + + // Use delete when supported for expandos or `cache` is not a window per isWindow (#10080) + } else if ( jQuery.support.deleteExpando || cache != cache.window ) { + delete cache[ id ]; + + // When all else fails, null + } else { + cache[ id ] = null; + } + }, + + // For internal use only. + _data: function( elem, name, data ) { + return jQuery.data( elem, name, data, true ); + }, + + // A method for determining if a DOM node can handle the data expando + acceptData: function( elem ) { + var noData = elem.nodeName && jQuery.noData[ elem.nodeName.toLowerCase() ]; + + // nodes accept data unless otherwise specified; rejection can be conditional + return !noData || noData !== true && elem.getAttribute("classid") === noData; + } +}); + +jQuery.fn.extend({ + data: function( key, value ) { + var parts, part, attr, name, l, + elem = this[0], + i = 0, + data = null; + + // Gets all values + if ( key === undefined ) { + if ( this.length ) { + data = jQuery.data( elem ); + + if ( elem.nodeType === 1 && !jQuery._data( elem, "parsedAttrs" ) ) { + attr = elem.attributes; + for ( l = attr.length; i < l; i++ ) { + name = attr[i].name; + + if ( name.indexOf( "data-" ) === 0 ) { + name = jQuery.camelCase( name.substring(5) ); + + dataAttr( elem, name, data[ name ] ); + } + } + jQuery._data( elem, "parsedAttrs", true ); + } + } + + return data; + } + + // Sets multiple values + if ( typeof key === "object" ) { + return this.each(function() { + jQuery.data( this, key ); + }); + } + + parts = key.split( ".", 2 ); + parts[1] = parts[1] ? "." + parts[1] : ""; + part = parts[1] + "!"; + + return jQuery.access( this, function( value ) { + + if ( value === undefined ) { + data = this.triggerHandler( "getData" + part, [ parts[0] ] ); + + // Try to fetch any internally stored data first + if ( data === undefined && elem ) { + data = jQuery.data( elem, key ); + data = dataAttr( elem, key, data ); + } + + return data === undefined && parts[1] ? + this.data( parts[0] ) : + data; + } + + parts[1] = value; + this.each(function() { + var self = jQuery( this ); + + self.triggerHandler( "setData" + part, parts ); + jQuery.data( this, key, value ); + self.triggerHandler( "changeData" + part, parts ); + }); + }, null, value, arguments.length > 1, null, false ); + }, + + removeData: function( key ) { + return this.each(function() { + jQuery.removeData( this, key ); + }); + } +}); + +function dataAttr( elem, key, data ) { + // If nothing was found internally, try to fetch any + // data from the HTML5 data-* attribute + if ( data === undefined && elem.nodeType === 1 ) { + + var name = "data-" + key.replace( rmultiDash, "-$1" ).toLowerCase(); + + data = elem.getAttribute( name ); + + if ( typeof data === "string" ) { + try { + data = data === "true" ? true : + data === "false" ? false : + data === "null" ? null : + // Only convert to a number if it doesn't change the string + +data + "" === data ? +data : + rbrace.test( data ) ? jQuery.parseJSON( data ) : + data; + } catch( e ) {} + + // Make sure we set the data so it isn't changed later + jQuery.data( elem, key, data ); + + } else { + data = undefined; + } + } + + return data; +} + +// checks a cache object for emptiness +function isEmptyDataObject( obj ) { + var name; + for ( name in obj ) { + + // if the public data object is empty, the private is still empty + if ( name === "data" && jQuery.isEmptyObject( obj[name] ) ) { + continue; + } + if ( name !== "toJSON" ) { + return false; + } + } + + return true; +} +jQuery.extend({ + queue: function( elem, type, data ) { + var queue; + + if ( elem ) { + type = ( type || "fx" ) + "queue"; + queue = jQuery._data( elem, type ); + + // Speed up dequeue by getting out quickly if this is just a lookup + if ( data ) { + if ( !queue || jQuery.isArray(data) ) { + queue = jQuery._data( elem, type, jQuery.makeArray(data) ); + } else { + queue.push( data ); + } + } + return queue || []; + } + }, + + dequeue: function( elem, type ) { + type = type || "fx"; + + var queue = jQuery.queue( elem, type ), + startLength = queue.length, + fn = queue.shift(), + hooks = jQuery._queueHooks( elem, type ), + next = function() { + jQuery.dequeue( elem, type ); + }; + + // If the fx queue is dequeued, always remove the progress sentinel + if ( fn === "inprogress" ) { + fn = queue.shift(); + startLength--; + } + + if ( fn ) { + + // Add a progress sentinel to prevent the fx queue from being + // automatically dequeued + if ( type === "fx" ) { + queue.unshift( "inprogress" ); + } + + // clear up the last queue stop function + delete hooks.stop; + fn.call( elem, next, hooks ); + } + + if ( !startLength && hooks ) { + hooks.empty.fire(); + } + }, + + // not intended for public consumption - generates a queueHooks object, or returns the current one + _queueHooks: function( elem, type ) { + var key = type + "queueHooks"; + return jQuery._data( elem, key ) || jQuery._data( elem, key, { + empty: jQuery.Callbacks("once memory").add(function() { + jQuery.removeData( elem, type + "queue", true ); + jQuery.removeData( elem, key, true ); + }) + }); + } +}); + +jQuery.fn.extend({ + queue: function( type, data ) { + var setter = 2; + + if ( typeof type !== "string" ) { + data = type; + type = "fx"; + setter--; + } + + if ( arguments.length < setter ) { + return jQuery.queue( this[0], type ); + } + + return data === undefined ? + this : + this.each(function() { + var queue = jQuery.queue( this, type, data ); + + // ensure a hooks for this queue + jQuery._queueHooks( this, type ); + + if ( type === "fx" && queue[0] !== "inprogress" ) { + jQuery.dequeue( this, type ); + } + }); + }, + dequeue: function( type ) { + return this.each(function() { + jQuery.dequeue( this, type ); + }); + }, + // Based off of the plugin by Clint Helfers, with permission. + // http://blindsignals.com/index.php/2009/07/jquery-delay/ + delay: function( time, type ) { + time = jQuery.fx ? jQuery.fx.speeds[ time ] || time : time; + type = type || "fx"; + + return this.queue( type, function( next, hooks ) { + var timeout = setTimeout( next, time ); + hooks.stop = function() { + clearTimeout( timeout ); + }; + }); + }, + clearQueue: function( type ) { + return this.queue( type || "fx", [] ); + }, + // Get a promise resolved when queues of a certain type + // are emptied (fx is the type by default) + promise: function( type, obj ) { + var tmp, + count = 1, + defer = jQuery.Deferred(), + elements = this, + i = this.length, + resolve = function() { + if ( !( --count ) ) { + defer.resolveWith( elements, [ elements ] ); + } + }; + + if ( typeof type !== "string" ) { + obj = type; + type = undefined; + } + type = type || "fx"; + + while( i-- ) { + tmp = jQuery._data( elements[ i ], type + "queueHooks" ); + if ( tmp && tmp.empty ) { + count++; + tmp.empty.add( resolve ); + } + } + resolve(); + return defer.promise( obj ); + } +}); +var nodeHook, boolHook, fixSpecified, + rclass = /[\t\r\n]/g, + rreturn = /\r/g, + rtype = /^(?:button|input)$/i, + rfocusable = /^(?:button|input|object|select|textarea)$/i, + rclickable = /^a(?:rea|)$/i, + rboolean = /^(?:autofocus|autoplay|async|checked|controls|defer|disabled|hidden|loop|multiple|open|readonly|required|scoped|selected)$/i, + getSetAttribute = jQuery.support.getSetAttribute; + +jQuery.fn.extend({ + attr: function( name, value ) { + return jQuery.access( this, jQuery.attr, name, value, arguments.length > 1 ); + }, + + removeAttr: function( name ) { + return this.each(function() { + jQuery.removeAttr( this, name ); + }); + }, + + prop: function( name, value ) { + return jQuery.access( this, jQuery.prop, name, value, arguments.length > 1 ); + }, + + removeProp: function( name ) { + name = jQuery.propFix[ name ] || name; + return this.each(function() { + // try/catch handles cases where IE balks (such as removing a property on window) + try { + this[ name ] = undefined; + delete this[ name ]; + } catch( e ) {} + }); + }, + + addClass: function( value ) { + var classNames, i, l, elem, + setClass, c, cl; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).addClass( value.call(this, j, this.className) ); + }); + } + + if ( value && typeof value === "string" ) { + classNames = value.split( core_rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + + if ( elem.nodeType === 1 ) { + if ( !elem.className && classNames.length === 1 ) { + elem.className = value; + + } else { + setClass = " " + elem.className + " "; + + for ( c = 0, cl = classNames.length; c < cl; c++ ) { + if ( !~setClass.indexOf( " " + classNames[ c ] + " " ) ) { + setClass += classNames[ c ] + " "; + } + } + elem.className = jQuery.trim( setClass ); + } + } + } + } + + return this; + }, + + removeClass: function( value ) { + var removes, className, elem, c, cl, i, l; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( j ) { + jQuery( this ).removeClass( value.call(this, j, this.className) ); + }); + } + if ( (value && typeof value === "string") || value === undefined ) { + removes = ( value || "" ).split( core_rspace ); + + for ( i = 0, l = this.length; i < l; i++ ) { + elem = this[ i ]; + if ( elem.nodeType === 1 && elem.className ) { + + className = (" " + elem.className + " ").replace( rclass, " " ); + + // loop over each item in the removal list + for ( c = 0, cl = removes.length; c < cl; c++ ) { + // Remove until there is nothing to remove, + while ( className.indexOf(" " + removes[ c ] + " ") > -1 ) { + className = className.replace( " " + removes[ c ] + " " , " " ); + } + } + elem.className = value ? jQuery.trim( className ) : ""; + } + } + } + + return this; + }, + + toggleClass: function( value, stateVal ) { + var type = typeof value, + isBool = typeof stateVal === "boolean"; + + if ( jQuery.isFunction( value ) ) { + return this.each(function( i ) { + jQuery( this ).toggleClass( value.call(this, i, this.className, stateVal), stateVal ); + }); + } + + return this.each(function() { + if ( type === "string" ) { + // toggle individual class names + var className, + i = 0, + self = jQuery( this ), + state = stateVal, + classNames = value.split( core_rspace ); + + while ( (className = classNames[ i++ ]) ) { + // check each className given, space separated list + state = isBool ? state : !self.hasClass( className ); + self[ state ? "addClass" : "removeClass" ]( className ); + } + + } else if ( type === "undefined" || type === "boolean" ) { + if ( this.className ) { + // store className if set + jQuery._data( this, "__className__", this.className ); + } + + // toggle whole className + this.className = this.className || value === false ? "" : jQuery._data( this, "__className__" ) || ""; + } + }); + }, + + hasClass: function( selector ) { + var className = " " + selector + " ", + i = 0, + l = this.length; + for ( ; i < l; i++ ) { + if ( this[i].nodeType === 1 && (" " + this[i].className + " ").replace(rclass, " ").indexOf( className ) > -1 ) { + return true; + } + } + + return false; + }, + + val: function( value ) { + var hooks, ret, isFunction, + elem = this[0]; + + if ( !arguments.length ) { + if ( elem ) { + hooks = jQuery.valHooks[ elem.type ] || jQuery.valHooks[ elem.nodeName.toLowerCase() ]; + + if ( hooks && "get" in hooks && (ret = hooks.get( elem, "value" )) !== undefined ) { + return ret; + } + + ret = elem.value; + + return typeof ret === "string" ? + // handle most common string cases + ret.replace(rreturn, "") : + // handle cases where value is null/undef or number + ret == null ? "" : ret; + } + + return; + } + + isFunction = jQuery.isFunction( value ); + + return this.each(function( i ) { + var val, + self = jQuery(this); + + if ( this.nodeType !== 1 ) { + return; + } + + if ( isFunction ) { + val = value.call( this, i, self.val() ); + } else { + val = value; + } + + // Treat null/undefined as ""; convert numbers to string + if ( val == null ) { + val = ""; + } else if ( typeof val === "number" ) { + val += ""; + } else if ( jQuery.isArray( val ) ) { + val = jQuery.map(val, function ( value ) { + return value == null ? "" : value + ""; + }); + } + + hooks = jQuery.valHooks[ this.type ] || jQuery.valHooks[ this.nodeName.toLowerCase() ]; + + // If set returns undefined, fall back to normal setting + if ( !hooks || !("set" in hooks) || hooks.set( this, val, "value" ) === undefined ) { + this.value = val; + } + }); + } +}); + +jQuery.extend({ + valHooks: { + option: { + get: function( elem ) { + // attributes.value is undefined in Blackberry 4.7 but + // uses .value. See #6932 + var val = elem.attributes.value; + return !val || val.specified ? elem.value : elem.text; + } + }, + select: { + get: function( elem ) { + var value, i, max, option, + index = elem.selectedIndex, + values = [], + options = elem.options, + one = elem.type === "select-one"; + + // Nothing was selected + if ( index < 0 ) { + return null; + } + + // Loop through all the selected options + i = one ? index : 0; + max = one ? index + 1 : options.length; + for ( ; i < max; i++ ) { + option = options[ i ]; + + // Don't return options that are disabled or in a disabled optgroup + if ( option.selected && (jQuery.support.optDisabled ? !option.disabled : option.getAttribute("disabled") === null) && + (!option.parentNode.disabled || !jQuery.nodeName( option.parentNode, "optgroup" )) ) { + + // Get the specific value for the option + value = jQuery( option ).val(); + + // We don't need an array for one selects + if ( one ) { + return value; + } + + // Multi-Selects return an array + values.push( value ); + } + } + + // Fixes Bug #2551 -- select.val() broken in IE after form.reset() + if ( one && !values.length && options.length ) { + return jQuery( options[ index ] ).val(); + } + + return values; + }, + + set: function( elem, value ) { + var values = jQuery.makeArray( value ); + + jQuery(elem).find("option").each(function() { + this.selected = jQuery.inArray( jQuery(this).val(), values ) >= 0; + }); + + if ( !values.length ) { + elem.selectedIndex = -1; + } + return values; + } + } + }, + + // Unused in 1.8, left in so attrFn-stabbers won't die; remove in 1.9 + attrFn: {}, + + attr: function( elem, name, value, pass ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set attributes on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + if ( pass && jQuery.isFunction( jQuery.fn[ name ] ) ) { + return jQuery( elem )[ name ]( value ); + } + + // Fallback to prop when attributes are not supported + if ( typeof elem.getAttribute === "undefined" ) { + return jQuery.prop( elem, name, value ); + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + // All attributes are lowercase + // Grab necessary hook if one is defined + if ( notxml ) { + name = name.toLowerCase(); + hooks = jQuery.attrHooks[ name ] || ( rboolean.test( name ) ? boolHook : nodeHook ); + } + + if ( value !== undefined ) { + + if ( value === null ) { + jQuery.removeAttr( elem, name ); + return; + + } else if ( hooks && "set" in hooks && notxml && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + elem.setAttribute( name, "" + value ); + return value; + } + + } else if ( hooks && "get" in hooks && notxml && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + + ret = elem.getAttribute( name ); + + // Non-existent attributes return null, we normalize to undefined + return ret === null ? + undefined : + ret; + } + }, + + removeAttr: function( elem, value ) { + var propName, attrNames, name, isBool, + i = 0; + + if ( value && elem.nodeType === 1 ) { + + attrNames = value.split( core_rspace ); + + for ( ; i < attrNames.length; i++ ) { + name = attrNames[ i ]; + + if ( name ) { + propName = jQuery.propFix[ name ] || name; + isBool = rboolean.test( name ); + + // See #9699 for explanation of this approach (setting first, then removal) + // Do not do this for boolean attributes (see #10870) + if ( !isBool ) { + jQuery.attr( elem, name, "" ); + } + elem.removeAttribute( getSetAttribute ? name : propName ); + + // Set corresponding property to false for boolean attributes + if ( isBool && propName in elem ) { + elem[ propName ] = false; + } + } + } + } + }, + + attrHooks: { + type: { + set: function( elem, value ) { + // We can't allow the type property to be changed (since it causes problems in IE) + if ( rtype.test( elem.nodeName ) && elem.parentNode ) { + jQuery.error( "type property can't be changed" ); + } else if ( !jQuery.support.radioValue && value === "radio" && jQuery.nodeName(elem, "input") ) { + // Setting the type on a radio button after the value resets the value in IE6-9 + // Reset value to it's default in case type is set after value + // This is for element creation + var val = elem.value; + elem.setAttribute( "type", value ); + if ( val ) { + elem.value = val; + } + return value; + } + } + }, + // Use the value property for back compat + // Use the nodeHook for button elements in IE6/7 (#1954) + value: { + get: function( elem, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.get( elem, name ); + } + return name in elem ? + elem.value : + null; + }, + set: function( elem, value, name ) { + if ( nodeHook && jQuery.nodeName( elem, "button" ) ) { + return nodeHook.set( elem, value, name ); + } + // Does not return so that setAttribute is also used + elem.value = value; + } + } + }, + + propFix: { + tabindex: "tabIndex", + readonly: "readOnly", + "for": "htmlFor", + "class": "className", + maxlength: "maxLength", + cellspacing: "cellSpacing", + cellpadding: "cellPadding", + rowspan: "rowSpan", + colspan: "colSpan", + usemap: "useMap", + frameborder: "frameBorder", + contenteditable: "contentEditable" + }, + + prop: function( elem, name, value ) { + var ret, hooks, notxml, + nType = elem.nodeType; + + // don't get/set properties on text, comment and attribute nodes + if ( !elem || nType === 3 || nType === 8 || nType === 2 ) { + return; + } + + notxml = nType !== 1 || !jQuery.isXMLDoc( elem ); + + if ( notxml ) { + // Fix name and attach hooks + name = jQuery.propFix[ name ] || name; + hooks = jQuery.propHooks[ name ]; + } + + if ( value !== undefined ) { + if ( hooks && "set" in hooks && (ret = hooks.set( elem, value, name )) !== undefined ) { + return ret; + + } else { + return ( elem[ name ] = value ); + } + + } else { + if ( hooks && "get" in hooks && (ret = hooks.get( elem, name )) !== null ) { + return ret; + + } else { + return elem[ name ]; + } + } + }, + + propHooks: { + tabIndex: { + get: function( elem ) { + // elem.tabIndex doesn't always return the correct value when it hasn't been explicitly set + // http://fluidproject.org/blog/2008/01/09/getting-setting-and-removing-tabindex-values-with-javascript/ + var attributeNode = elem.getAttributeNode("tabindex"); + + return attributeNode && attributeNode.specified ? + parseInt( attributeNode.value, 10 ) : + rfocusable.test( elem.nodeName ) || rclickable.test( elem.nodeName ) && elem.href ? + 0 : + undefined; + } + } + } +}); + +// Hook for boolean attributes +boolHook = { + get: function( elem, name ) { + // Align boolean attributes with corresponding properties + // Fall back to attribute presence where some booleans are not supported + var attrNode, + property = jQuery.prop( elem, name ); + return property === true || typeof property !== "boolean" && ( attrNode = elem.getAttributeNode(name) ) && attrNode.nodeValue !== false ? + name.toLowerCase() : + undefined; + }, + set: function( elem, value, name ) { + var propName; + if ( value === false ) { + // Remove boolean attributes when set to false + jQuery.removeAttr( elem, name ); + } else { + // value is true since we know at this point it's type boolean and not false + // Set boolean attributes to the same name and set the DOM property + propName = jQuery.propFix[ name ] || name; + if ( propName in elem ) { + // Only set the IDL specifically if it already exists on the element + elem[ propName ] = true; + } + + elem.setAttribute( name, name.toLowerCase() ); + } + return name; + } +}; + +// IE6/7 do not support getting/setting some attributes with get/setAttribute +if ( !getSetAttribute ) { + + fixSpecified = { + name: true, + id: true, + coords: true + }; + + // Use this for any attribute in IE6/7 + // This fixes almost every IE6/7 issue + nodeHook = jQuery.valHooks.button = { + get: function( elem, name ) { + var ret; + ret = elem.getAttributeNode( name ); + return ret && ( fixSpecified[ name ] ? ret.value !== "" : ret.specified ) ? + ret.value : + undefined; + }, + set: function( elem, value, name ) { + // Set the existing or create a new attribute node + var ret = elem.getAttributeNode( name ); + if ( !ret ) { + ret = document.createAttribute( name ); + elem.setAttributeNode( ret ); + } + return ( ret.value = value + "" ); + } + }; + + // Set width and height to auto instead of 0 on empty string( Bug #8150 ) + // This is for removals + jQuery.each([ "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + set: function( elem, value ) { + if ( value === "" ) { + elem.setAttribute( name, "auto" ); + return value; + } + } + }); + }); + + // Set contenteditable to false on removals(#10429) + // Setting to empty string throws an error as an invalid value + jQuery.attrHooks.contenteditable = { + get: nodeHook.get, + set: function( elem, value, name ) { + if ( value === "" ) { + value = "false"; + } + nodeHook.set( elem, value, name ); + } + }; +} + + +// Some attributes require a special call on IE +if ( !jQuery.support.hrefNormalized ) { + jQuery.each([ "href", "src", "width", "height" ], function( i, name ) { + jQuery.attrHooks[ name ] = jQuery.extend( jQuery.attrHooks[ name ], { + get: function( elem ) { + var ret = elem.getAttribute( name, 2 ); + return ret === null ? undefined : ret; + } + }); + }); +} + +if ( !jQuery.support.style ) { + jQuery.attrHooks.style = { + get: function( elem ) { + // Return undefined in the case of empty string + // Normalize to lowercase since IE uppercases css property names + return elem.style.cssText.toLowerCase() || undefined; + }, + set: function( elem, value ) { + return ( elem.style.cssText = "" + value ); + } + }; +} + +// Safari mis-reports the default selected property of an option +// Accessing the parent's selectedIndex property fixes it +if ( !jQuery.support.optSelected ) { + jQuery.propHooks.selected = jQuery.extend( jQuery.propHooks.selected, { + get: function( elem ) { + var parent = elem.parentNode; + + if ( parent ) { + parent.selectedIndex; + + // Make sure that it also works with optgroups, see #5701 + if ( parent.parentNode ) { + parent.parentNode.selectedIndex; + } + } + return null; + } + }); +} + +// IE6/7 call enctype encoding +if ( !jQuery.support.enctype ) { + jQuery.propFix.enctype = "encoding"; +} + +// Radios and checkboxes getter/setter +if ( !jQuery.support.checkOn ) { + jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = { + get: function( elem ) { + // Handle the case where in Webkit "" is returned instead of "on" if a value isn't specified + return elem.getAttribute("value") === null ? "on" : elem.value; + } + }; + }); +} +jQuery.each([ "radio", "checkbox" ], function() { + jQuery.valHooks[ this ] = jQuery.extend( jQuery.valHooks[ this ], { + set: function( elem, value ) { + if ( jQuery.isArray( value ) ) { + return ( elem.checked = jQuery.inArray( jQuery(elem).val(), value ) >= 0 ); + } + } + }); +}); +var rformElems = /^(?:textarea|input|select)$/i, + rtypenamespace = /^([^\.]*|)(?:\.(.+)|)$/, + rhoverHack = /(?:^|\s)hover(\.\S+|)\b/, + rkeyEvent = /^key/, + rmouseEvent = /^(?:mouse|contextmenu)|click/, + rfocusMorph = /^(?:focusinfocus|focusoutblur)$/, + hoverHack = function( events ) { + return jQuery.event.special.hover ? events : events.replace( rhoverHack, "mouseenter$1 mouseleave$1" ); + }; + +/* + * Helper functions for managing events -- not part of the public interface. + * Props to Dean Edwards' addEvent library for many of the ideas. + */ +jQuery.event = { + + add: function( elem, types, handler, data, selector ) { + + var elemData, eventHandle, events, + t, tns, type, namespaces, handleObj, + handleObjIn, handlers, special; + + // Don't attach events to noData or text/comment nodes (allow plain objects tho) + if ( elem.nodeType === 3 || elem.nodeType === 8 || !types || !handler || !(elemData = jQuery._data( elem )) ) { + return; + } + + // Caller can pass in an object of custom data in lieu of the handler + if ( handler.handler ) { + handleObjIn = handler; + handler = handleObjIn.handler; + selector = handleObjIn.selector; + } + + // Make sure that the handler has a unique ID, used to find/remove it later + if ( !handler.guid ) { + handler.guid = jQuery.guid++; + } + + // Init the element's event structure and main handler, if this is the first + events = elemData.events; + if ( !events ) { + elemData.events = events = {}; + } + eventHandle = elemData.handle; + if ( !eventHandle ) { + elemData.handle = eventHandle = function( e ) { + // Discard the second event of a jQuery.event.trigger() and + // when an event is called after a page has unloaded + return typeof jQuery !== "undefined" && (!e || jQuery.event.triggered !== e.type) ? + jQuery.event.dispatch.apply( eventHandle.elem, arguments ) : + undefined; + }; + // Add elem as a property of the handle fn to prevent a memory leak with IE non-native events + eventHandle.elem = elem; + } + + // Handle multiple events separated by a space + // jQuery(...).bind("mouseover mouseout", fn); + types = jQuery.trim( hoverHack(types) ).split( " " ); + for ( t = 0; t < types.length; t++ ) { + + tns = rtypenamespace.exec( types[t] ) || []; + type = tns[1]; + namespaces = ( tns[2] || "" ).split( "." ).sort(); + + // If event changes its type, use the special event handlers for the changed type + special = jQuery.event.special[ type ] || {}; + + // If selector defined, determine special event api type, otherwise given type + type = ( selector ? special.delegateType : special.bindType ) || type; + + // Update special based on newly reset type + special = jQuery.event.special[ type ] || {}; + + // handleObj is passed to all event handlers + handleObj = jQuery.extend({ + type: type, + origType: tns[1], + data: data, + handler: handler, + guid: handler.guid, + selector: selector, + namespace: namespaces.join(".") + }, handleObjIn ); + + // Init the event handler queue if we're the first + handlers = events[ type ]; + if ( !handlers ) { + handlers = events[ type ] = []; + handlers.delegateCount = 0; + + // Only use addEventListener/attachEvent if the special events handler returns false + if ( !special.setup || special.setup.call( elem, data, namespaces, eventHandle ) === false ) { + // Bind the global event handler to the element + if ( elem.addEventListener ) { + elem.addEventListener( type, eventHandle, false ); + + } else if ( elem.attachEvent ) { + elem.attachEvent( "on" + type, eventHandle ); + } + } + } + + if ( special.add ) { + special.add.call( elem, handleObj ); + + if ( !handleObj.handler.guid ) { + handleObj.handler.guid = handler.guid; + } + } + + // Add to the element's handler list, delegates in front + if ( selector ) { + handlers.splice( handlers.delegateCount++, 0, handleObj ); + } else { + handlers.push( handleObj ); + } + + // Keep track of which events have ever been used, for event optimization + jQuery.event.global[ type ] = true; + } + + // Nullify elem to prevent memory leaks in IE + elem = null; + }, + + global: {}, + + // Detach an event or set of events from an element + remove: function( elem, types, handler, selector, mappedTypes ) { + + var t, tns, type, origType, namespaces, origCount, + j, events, special, eventType, handleObj, + elemData = jQuery.hasData( elem ) && jQuery._data( elem ); + + if ( !elemData || !(events = elemData.events) ) { + return; + } + + // Once for each type.namespace in types; type may be omitted + types = jQuery.trim( hoverHack( types || "" ) ).split(" "); + for ( t = 0; t < types.length; t++ ) { + tns = rtypenamespace.exec( types[t] ) || []; + type = origType = tns[1]; + namespaces = tns[2]; + + // Unbind all events (on this namespace, if provided) for the element + if ( !type ) { + for ( type in events ) { + jQuery.event.remove( elem, type + types[ t ], handler, selector, true ); + } + continue; + } + + special = jQuery.event.special[ type ] || {}; + type = ( selector? special.delegateType : special.bindType ) || type; + eventType = events[ type ] || []; + origCount = eventType.length; + namespaces = namespaces ? new RegExp("(^|\\.)" + namespaces.split(".").sort().join("\\.(?:.*\\.|)") + "(\\.|$)") : null; + + // Remove matching events + for ( j = 0; j < eventType.length; j++ ) { + handleObj = eventType[ j ]; + + if ( ( mappedTypes || origType === handleObj.origType ) && + ( !handler || handler.guid === handleObj.guid ) && + ( !namespaces || namespaces.test( handleObj.namespace ) ) && + ( !selector || selector === handleObj.selector || selector === "**" && handleObj.selector ) ) { + eventType.splice( j--, 1 ); + + if ( handleObj.selector ) { + eventType.delegateCount--; + } + if ( special.remove ) { + special.remove.call( elem, handleObj ); + } + } + } + + // Remove generic event handler if we removed something and no more handlers exist + // (avoids potential for endless recursion during removal of special event handlers) + if ( eventType.length === 0 && origCount !== eventType.length ) { + if ( !special.teardown || special.teardown.call( elem, namespaces, elemData.handle ) === false ) { + jQuery.removeEvent( elem, type, elemData.handle ); + } + + delete events[ type ]; + } + } + + // Remove the expando if it's no longer used + if ( jQuery.isEmptyObject( events ) ) { + delete elemData.handle; + + // removeData also checks for emptiness and clears the expando if empty + // so use it instead of delete + jQuery.removeData( elem, "events", true ); + } + }, + + // Events that are safe to short-circuit if no handlers are attached. + // Native DOM events should not be added, they may have inline handlers. + customEvent: { + "getData": true, + "setData": true, + "changeData": true + }, + + trigger: function( event, data, elem, onlyHandlers ) { + // Don't do events on text and comment nodes + if ( elem && (elem.nodeType === 3 || elem.nodeType === 8) ) { + return; + } + + // Event object or event type + var cache, exclusive, i, cur, old, ontype, special, handle, eventPath, bubbleType, + type = event.type || event, + namespaces = []; + + // focus/blur morphs to focusin/out; ensure we're not firing them right now + if ( rfocusMorph.test( type + jQuery.event.triggered ) ) { + return; + } + + if ( type.indexOf( "!" ) >= 0 ) { + // Exclusive events trigger only for the exact event (no namespaces) + type = type.slice(0, -1); + exclusive = true; + } + + if ( type.indexOf( "." ) >= 0 ) { + // Namespaced trigger; create a regexp to match event type in handle() + namespaces = type.split("."); + type = namespaces.shift(); + namespaces.sort(); + } + + if ( (!elem || jQuery.event.customEvent[ type ]) && !jQuery.event.global[ type ] ) { + // No jQuery handlers for this event type, and it can't have inline handlers + return; + } + + // Caller can pass in an Event, Object, or just an event type string + event = typeof event === "object" ? + // jQuery.Event object + event[ jQuery.expando ] ? event : + // Object literal + new jQuery.Event( type, event ) : + // Just the event type (string) + new jQuery.Event( type ); + + event.type = type; + event.isTrigger = true; + event.exclusive = exclusive; + event.namespace = namespaces.join( "." ); + event.namespace_re = event.namespace? new RegExp("(^|\\.)" + namespaces.join("\\.(?:.*\\.|)") + "(\\.|$)") : null; + ontype = type.indexOf( ":" ) < 0 ? "on" + type : ""; + + // Handle a global trigger + if ( !elem ) { + + // TODO: Stop taunting the data cache; remove global events and always attach to document + cache = jQuery.cache; + for ( i in cache ) { + if ( cache[ i ].events && cache[ i ].events[ type ] ) { + jQuery.event.trigger( event, data, cache[ i ].handle.elem, true ); + } + } + return; + } + + // Clean up the event in case it is being reused + event.result = undefined; + if ( !event.target ) { + event.target = elem; + } + + // Clone any incoming data and prepend the event, creating the handler arg list + data = data != null ? jQuery.makeArray( data ) : []; + data.unshift( event ); + + // Allow special events to draw outside the lines + special = jQuery.event.special[ type ] || {}; + if ( special.trigger && special.trigger.apply( elem, data ) === false ) { + return; + } + + // Determine event propagation path in advance, per W3C events spec (#9951) + // Bubble up to document, then to window; watch for a global ownerDocument var (#9724) + eventPath = [[ elem, special.bindType || type ]]; + if ( !onlyHandlers && !special.noBubble && !jQuery.isWindow( elem ) ) { + + bubbleType = special.delegateType || type; + cur = rfocusMorph.test( bubbleType + type ) ? elem : elem.parentNode; + for ( old = elem; cur; cur = cur.parentNode ) { + eventPath.push([ cur, bubbleType ]); + old = cur; + } + + // Only add window if we got to document (e.g., not plain obj or detached DOM) + if ( old === (elem.ownerDocument || document) ) { + eventPath.push([ old.defaultView || old.parentWindow || window, bubbleType ]); + } + } + + // Fire handlers on the event path + for ( i = 0; i < eventPath.length && !event.isPropagationStopped(); i++ ) { + + cur = eventPath[i][0]; + event.type = eventPath[i][1]; + + handle = ( jQuery._data( cur, "events" ) || {} )[ event.type ] && jQuery._data( cur, "handle" ); + if ( handle ) { + handle.apply( cur, data ); + } + // Note that this is a bare JS function and not a jQuery handler + handle = ontype && cur[ ontype ]; + if ( handle && jQuery.acceptData( cur ) && handle.apply( cur, data ) === false ) { + event.preventDefault(); + } + } + event.type = type; + + // If nobody prevented the default action, do it now + if ( !onlyHandlers && !event.isDefaultPrevented() ) { + + if ( (!special._default || special._default.apply( elem.ownerDocument, data ) === false) && + !(type === "click" && jQuery.nodeName( elem, "a" )) && jQuery.acceptData( elem ) ) { + + // Call a native DOM method on the target with the same name name as the event. + // Can't use an .isFunction() check here because IE6/7 fails that test. + // Don't do default actions on window, that's where global variables be (#6170) + // IE<9 dies on focus/blur to hidden element (#1486) + if ( ontype && elem[ type ] && ((type !== "focus" && type !== "blur") || event.target.offsetWidth !== 0) && !jQuery.isWindow( elem ) ) { + + // Don't re-trigger an onFOO event when we call its FOO() method + old = elem[ ontype ]; + + if ( old ) { + elem[ ontype ] = null; + } + + // Prevent re-triggering of the same event, since we already bubbled it above + jQuery.event.triggered = type; + elem[ type ](); + jQuery.event.triggered = undefined; + + if ( old ) { + elem[ ontype ] = old; + } + } + } + } + + return event.result; + }, + + dispatch: function( event ) { + + // Make a writable jQuery.Event from the native event object + event = jQuery.event.fix( event || window.event ); + + var i, j, cur, ret, selMatch, matched, matches, handleObj, sel, related, + handlers = ( (jQuery._data( this, "events" ) || {} )[ event.type ] || []), + delegateCount = handlers.delegateCount, + args = [].slice.call( arguments ), + run_all = !event.exclusive && !event.namespace, + special = jQuery.event.special[ event.type ] || {}, + handlerQueue = []; + + // Use the fix-ed jQuery.Event rather than the (read-only) native event + args[0] = event; + event.delegateTarget = this; + + // Call the preDispatch hook for the mapped type, and let it bail if desired + if ( special.preDispatch && special.preDispatch.call( this, event ) === false ) { + return; + } + + // Determine handlers that should run if there are delegated events + // Avoid non-left-click bubbling in Firefox (#3861) + if ( delegateCount && !(event.button && event.type === "click") ) { + + for ( cur = event.target; cur != this; cur = cur.parentNode || this ) { + + // Don't process clicks (ONLY) on disabled elements (#6911, #8165, #11382, #11764) + if ( cur.disabled !== true || event.type !== "click" ) { + selMatch = {}; + matches = []; + for ( i = 0; i < delegateCount; i++ ) { + handleObj = handlers[ i ]; + sel = handleObj.selector; + + if ( selMatch[ sel ] === undefined ) { + selMatch[ sel ] = jQuery( sel, this ).index( cur ) >= 0; + } + if ( selMatch[ sel ] ) { + matches.push( handleObj ); + } + } + if ( matches.length ) { + handlerQueue.push({ elem: cur, matches: matches }); + } + } + } + } + + // Add the remaining (directly-bound) handlers + if ( handlers.length > delegateCount ) { + handlerQueue.push({ elem: this, matches: handlers.slice( delegateCount ) }); + } + + // Run delegates first; they may want to stop propagation beneath us + for ( i = 0; i < handlerQueue.length && !event.isPropagationStopped(); i++ ) { + matched = handlerQueue[ i ]; + event.currentTarget = matched.elem; + + for ( j = 0; j < matched.matches.length && !event.isImmediatePropagationStopped(); j++ ) { + handleObj = matched.matches[ j ]; + + // Triggered event must either 1) be non-exclusive and have no namespace, or + // 2) have namespace(s) a subset or equal to those in the bound event (both can have no namespace). + if ( run_all || (!event.namespace && !handleObj.namespace) || event.namespace_re && event.namespace_re.test( handleObj.namespace ) ) { + + event.data = handleObj.data; + event.handleObj = handleObj; + + ret = ( (jQuery.event.special[ handleObj.origType ] || {}).handle || handleObj.handler ) + .apply( matched.elem, args ); + + if ( ret !== undefined ) { + event.result = ret; + if ( ret === false ) { + event.preventDefault(); + event.stopPropagation(); + } + } + } + } + } + + // Call the postDispatch hook for the mapped type + if ( special.postDispatch ) { + special.postDispatch.call( this, event ); + } + + return event.result; + }, + + // Includes some event props shared by KeyEvent and MouseEvent + // *** attrChange attrName relatedNode srcElement are not normalized, non-W3C, deprecated, will be removed in 1.8 *** + props: "attrChange attrName relatedNode srcElement altKey bubbles cancelable ctrlKey currentTarget eventPhase metaKey relatedTarget shiftKey target timeStamp view which".split(" "), + + fixHooks: {}, + + keyHooks: { + props: "char charCode key keyCode".split(" "), + filter: function( event, original ) { + + // Add which for key events + if ( event.which == null ) { + event.which = original.charCode != null ? original.charCode : original.keyCode; + } + + return event; + } + }, + + mouseHooks: { + props: "button buttons clientX clientY fromElement offsetX offsetY pageX pageY screenX screenY toElement".split(" "), + filter: function( event, original ) { + var eventDoc, doc, body, + button = original.button, + fromElement = original.fromElement; + + // Calculate pageX/Y if missing and clientX/Y available + if ( event.pageX == null && original.clientX != null ) { + eventDoc = event.target.ownerDocument || document; + doc = eventDoc.documentElement; + body = eventDoc.body; + + event.pageX = original.clientX + ( doc && doc.scrollLeft || body && body.scrollLeft || 0 ) - ( doc && doc.clientLeft || body && body.clientLeft || 0 ); + event.pageY = original.clientY + ( doc && doc.scrollTop || body && body.scrollTop || 0 ) - ( doc && doc.clientTop || body && body.clientTop || 0 ); + } + + // Add relatedTarget, if necessary + if ( !event.relatedTarget && fromElement ) { + event.relatedTarget = fromElement === event.target ? original.toElement : fromElement; + } + + // Add which for click: 1 === left; 2 === middle; 3 === right + // Note: button is not normalized, so don't use it + if ( !event.which && button !== undefined ) { + event.which = ( button & 1 ? 1 : ( button & 2 ? 3 : ( button & 4 ? 2 : 0 ) ) ); + } + + return event; + } + }, + + fix: function( event ) { + if ( event[ jQuery.expando ] ) { + return event; + } + + // Create a writable copy of the event object and normalize some properties + var i, prop, + originalEvent = event, + fixHook = jQuery.event.fixHooks[ event.type ] || {}, + copy = fixHook.props ? this.props.concat( fixHook.props ) : this.props; + + event = jQuery.Event( originalEvent ); + + for ( i = copy.length; i; ) { + prop = copy[ --i ]; + event[ prop ] = originalEvent[ prop ]; + } + + // Fix target property, if necessary (#1925, IE 6/7/8 & Safari2) + if ( !event.target ) { + event.target = originalEvent.srcElement || document; + } + + // Target should not be a text node (#504, Safari) + if ( event.target.nodeType === 3 ) { + event.target = event.target.parentNode; + } + + // For mouse/key events, metaKey==false if it's undefined (#3368, #11328; IE6/7/8) + event.metaKey = !!event.metaKey; + + return fixHook.filter? fixHook.filter( event, originalEvent ) : event; + }, + + special: { + load: { + // Prevent triggered image.load events from bubbling to window.load + noBubble: true + }, + + focus: { + delegateType: "focusin" + }, + blur: { + delegateType: "focusout" + }, + + beforeunload: { + setup: function( data, namespaces, eventHandle ) { + // We only want to do this special case on windows + if ( jQuery.isWindow( this ) ) { + this.onbeforeunload = eventHandle; + } + }, + + teardown: function( namespaces, eventHandle ) { + if ( this.onbeforeunload === eventHandle ) { + this.onbeforeunload = null; + } + } + } + }, + + simulate: function( type, elem, event, bubble ) { + // Piggyback on a donor event to simulate a different one. + // Fake originalEvent to avoid donor's stopPropagation, but if the + // simulated event prevents default then we do the same on the donor. + var e = jQuery.extend( + new jQuery.Event(), + event, + { type: type, + isSimulated: true, + originalEvent: {} + } + ); + if ( bubble ) { + jQuery.event.trigger( e, null, elem ); + } else { + jQuery.event.dispatch.call( elem, e ); + } + if ( e.isDefaultPrevented() ) { + event.preventDefault(); + } + } +}; + +// Some plugins are using, but it's undocumented/deprecated and will be removed. +// The 1.7 special event interface should provide all the hooks needed now. +jQuery.event.handle = jQuery.event.dispatch; + +jQuery.removeEvent = document.removeEventListener ? + function( elem, type, handle ) { + if ( elem.removeEventListener ) { + elem.removeEventListener( type, handle, false ); + } + } : + function( elem, type, handle ) { + var name = "on" + type; + + if ( elem.detachEvent ) { + + // #8545, #7054, preventing memory leaks for custom events in IE6-8 – + // detachEvent needed property on element, by name of that event, to properly expose it to GC + if ( typeof elem[ name ] === "undefined" ) { + elem[ name ] = null; + } + + elem.detachEvent( name, handle ); + } + }; + +jQuery.Event = function( src, props ) { + // Allow instantiation without the 'new' keyword + if ( !(this instanceof jQuery.Event) ) { + return new jQuery.Event( src, props ); + } + + // Event object + if ( src && src.type ) { + this.originalEvent = src; + this.type = src.type; + + // Events bubbling up the document may have been marked as prevented + // by a handler lower down the tree; reflect the correct value. + this.isDefaultPrevented = ( src.defaultPrevented || src.returnValue === false || + src.getPreventDefault && src.getPreventDefault() ) ? returnTrue : returnFalse; + + // Event type + } else { + this.type = src; + } + + // Put explicitly provided properties onto the event object + if ( props ) { + jQuery.extend( this, props ); + } + + // Create a timestamp if incoming event doesn't have one + this.timeStamp = src && src.timeStamp || jQuery.now(); + + // Mark it as fixed + this[ jQuery.expando ] = true; +}; + +function returnFalse() { + return false; +} +function returnTrue() { + return true; +} + +// jQuery.Event is based on DOM3 Events as specified by the ECMAScript Language Binding +// http://www.w3.org/TR/2003/WD-DOM-Level-3-Events-20030331/ecma-script-binding.html +jQuery.Event.prototype = { + preventDefault: function() { + this.isDefaultPrevented = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + + // if preventDefault exists run it on the original event + if ( e.preventDefault ) { + e.preventDefault(); + + // otherwise set the returnValue property of the original event to false (IE) + } else { + e.returnValue = false; + } + }, + stopPropagation: function() { + this.isPropagationStopped = returnTrue; + + var e = this.originalEvent; + if ( !e ) { + return; + } + // if stopPropagation exists run it on the original event + if ( e.stopPropagation ) { + e.stopPropagation(); + } + // otherwise set the cancelBubble property of the original event to true (IE) + e.cancelBubble = true; + }, + stopImmediatePropagation: function() { + this.isImmediatePropagationStopped = returnTrue; + this.stopPropagation(); + }, + isDefaultPrevented: returnFalse, + isPropagationStopped: returnFalse, + isImmediatePropagationStopped: returnFalse +}; + +// Create mouseenter/leave events using mouseover/out and event-time checks +jQuery.each({ + mouseenter: "mouseover", + mouseleave: "mouseout" +}, function( orig, fix ) { + jQuery.event.special[ orig ] = { + delegateType: fix, + bindType: fix, + + handle: function( event ) { + var ret, + target = this, + related = event.relatedTarget, + handleObj = event.handleObj, + selector = handleObj.selector; + + // For mousenter/leave call the handler if related is outside the target. + // NB: No relatedTarget if the mouse left/entered the browser window + if ( !related || (related !== target && !jQuery.contains( target, related )) ) { + event.type = handleObj.origType; + ret = handleObj.handler.apply( this, arguments ); + event.type = fix; + } + return ret; + } + }; +}); + +// IE submit delegation +if ( !jQuery.support.submitBubbles ) { + + jQuery.event.special.submit = { + setup: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Lazy-add a submit handler when a descendant form may potentially be submitted + jQuery.event.add( this, "click._submit keypress._submit", function( e ) { + // Node name check avoids a VML-related crash in IE (#9807) + var elem = e.target, + form = jQuery.nodeName( elem, "input" ) || jQuery.nodeName( elem, "button" ) ? elem.form : undefined; + if ( form && !jQuery._data( form, "_submit_attached" ) ) { + jQuery.event.add( form, "submit._submit", function( event ) { + event._submit_bubble = true; + }); + jQuery._data( form, "_submit_attached", true ); + } + }); + // return undefined since we don't need an event listener + }, + + postDispatch: function( event ) { + // If form was submitted by the user, bubble the event up the tree + if ( event._submit_bubble ) { + delete event._submit_bubble; + if ( this.parentNode && !event.isTrigger ) { + jQuery.event.simulate( "submit", this.parentNode, event, true ); + } + } + }, + + teardown: function() { + // Only need this for delegated form submit events + if ( jQuery.nodeName( this, "form" ) ) { + return false; + } + + // Remove delegated handlers; cleanData eventually reaps submit handlers attached above + jQuery.event.remove( this, "._submit" ); + } + }; +} + +// IE change delegation and checkbox/radio fix +if ( !jQuery.support.changeBubbles ) { + + jQuery.event.special.change = { + + setup: function() { + + if ( rformElems.test( this.nodeName ) ) { + // IE doesn't fire change on a check/radio until blur; trigger it on click + // after a propertychange. Eat the blur-change in special.change.handle. + // This still fires onchange a second time for check/radio after blur. + if ( this.type === "checkbox" || this.type === "radio" ) { + jQuery.event.add( this, "propertychange._change", function( event ) { + if ( event.originalEvent.propertyName === "checked" ) { + this._just_changed = true; + } + }); + jQuery.event.add( this, "click._change", function( event ) { + if ( this._just_changed && !event.isTrigger ) { + this._just_changed = false; + } + // Allow triggered, simulated change events (#11500) + jQuery.event.simulate( "change", this, event, true ); + }); + } + return false; + } + // Delegated event; lazy-add a change handler on descendant inputs + jQuery.event.add( this, "beforeactivate._change", function( e ) { + var elem = e.target; + + if ( rformElems.test( elem.nodeName ) && !jQuery._data( elem, "_change_attached" ) ) { + jQuery.event.add( elem, "change._change", function( event ) { + if ( this.parentNode && !event.isSimulated && !event.isTrigger ) { + jQuery.event.simulate( "change", this.parentNode, event, true ); + } + }); + jQuery._data( elem, "_change_attached", true ); + } + }); + }, + + handle: function( event ) { + var elem = event.target; + + // Swallow native change events from checkbox/radio, we already triggered them above + if ( this !== elem || event.isSimulated || event.isTrigger || (elem.type !== "radio" && elem.type !== "checkbox") ) { + return event.handleObj.handler.apply( this, arguments ); + } + }, + + teardown: function() { + jQuery.event.remove( this, "._change" ); + + return !rformElems.test( this.nodeName ); + } + }; +} + +// Create "bubbling" focus and blur events +if ( !jQuery.support.focusinBubbles ) { + jQuery.each({ focus: "focusin", blur: "focusout" }, function( orig, fix ) { + + // Attach a single capturing handler while someone wants focusin/focusout + var attaches = 0, + handler = function( event ) { + jQuery.event.simulate( fix, event.target, jQuery.event.fix( event ), true ); + }; + + jQuery.event.special[ fix ] = { + setup: function() { + if ( attaches++ === 0 ) { + document.addEventListener( orig, handler, true ); + } + }, + teardown: function() { + if ( --attaches === 0 ) { + document.removeEventListener( orig, handler, true ); + } + } + }; + }); +} + +jQuery.fn.extend({ + + on: function( types, selector, data, fn, /*INTERNAL*/ one ) { + var origFn, type; + + // Types can be a map of types/handlers + if ( typeof types === "object" ) { + // ( types-Object, selector, data ) + if ( typeof selector !== "string" ) { // && selector != null + // ( types-Object, data ) + data = data || selector; + selector = undefined; + } + for ( type in types ) { + this.on( type, selector, data, types[ type ], one ); + } + return this; + } + + if ( data == null && fn == null ) { + // ( types, fn ) + fn = selector; + data = selector = undefined; + } else if ( fn == null ) { + if ( typeof selector === "string" ) { + // ( types, selector, fn ) + fn = data; + data = undefined; + } else { + // ( types, data, fn ) + fn = data; + data = selector; + selector = undefined; + } + } + if ( fn === false ) { + fn = returnFalse; + } else if ( !fn ) { + return this; + } + + if ( one === 1 ) { + origFn = fn; + fn = function( event ) { + // Can use an empty set, since event contains the info + jQuery().off( event ); + return origFn.apply( this, arguments ); + }; + // Use same guid so caller can remove using origFn + fn.guid = origFn.guid || ( origFn.guid = jQuery.guid++ ); + } + return this.each( function() { + jQuery.event.add( this, types, fn, data, selector ); + }); + }, + one: function( types, selector, data, fn ) { + return this.on( types, selector, data, fn, 1 ); + }, + off: function( types, selector, fn ) { + var handleObj, type; + if ( types && types.preventDefault && types.handleObj ) { + // ( event ) dispatched jQuery.Event + handleObj = types.handleObj; + jQuery( types.delegateTarget ).off( + handleObj.namespace ? handleObj.origType + "." + handleObj.namespace : handleObj.origType, + handleObj.selector, + handleObj.handler + ); + return this; + } + if ( typeof types === "object" ) { + // ( types-object [, selector] ) + for ( type in types ) { + this.off( type, selector, types[ type ] ); + } + return this; + } + if ( selector === false || typeof selector === "function" ) { + // ( types [, fn] ) + fn = selector; + selector = undefined; + } + if ( fn === false ) { + fn = returnFalse; + } + return this.each(function() { + jQuery.event.remove( this, types, fn, selector ); + }); + }, + + bind: function( types, data, fn ) { + return this.on( types, null, data, fn ); + }, + unbind: function( types, fn ) { + return this.off( types, null, fn ); + }, + + live: function( types, data, fn ) { + jQuery( this.context ).on( types, this.selector, data, fn ); + return this; + }, + die: function( types, fn ) { + jQuery( this.context ).off( types, this.selector || "**", fn ); + return this; + }, + + delegate: function( selector, types, data, fn ) { + return this.on( types, selector, data, fn ); + }, + undelegate: function( selector, types, fn ) { + // ( namespace ) or ( selector, types [, fn] ) + return arguments.length == 1? this.off( selector, "**" ) : this.off( types, selector || "**", fn ); + }, + + trigger: function( type, data ) { + return this.each(function() { + jQuery.event.trigger( type, data, this ); + }); + }, + triggerHandler: function( type, data ) { + if ( this[0] ) { + return jQuery.event.trigger( type, data, this[0], true ); + } + }, + + toggle: function( fn ) { + // Save reference to arguments for access in closure + var args = arguments, + guid = fn.guid || jQuery.guid++, + i = 0, + toggler = function( event ) { + // Figure out which function to execute + var lastToggle = ( jQuery._data( this, "lastToggle" + fn.guid ) || 0 ) % i; + jQuery._data( this, "lastToggle" + fn.guid, lastToggle + 1 ); + + // Make sure that clicks stop + event.preventDefault(); + + // and execute the function + return args[ lastToggle ].apply( this, arguments ) || false; + }; + + // link all the functions, so any of them can unbind this click handler + toggler.guid = guid; + while ( i < args.length ) { + args[ i++ ].guid = guid; + } + + return this.click( toggler ); + }, + + hover: function( fnOver, fnOut ) { + return this.mouseenter( fnOver ).mouseleave( fnOut || fnOver ); + } +}); + +jQuery.each( ("blur focus focusin focusout load resize scroll unload click dblclick " + + "mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave " + + "change select submit keydown keypress keyup error contextmenu").split(" "), function( i, name ) { + + // Handle event binding + jQuery.fn[ name ] = function( data, fn ) { + if ( fn == null ) { + fn = data; + data = null; + } + + return arguments.length > 0 ? + this.on( name, null, data, fn ) : + this.trigger( name ); + }; + + if ( rkeyEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.keyHooks; + } + + if ( rmouseEvent.test( name ) ) { + jQuery.event.fixHooks[ name ] = jQuery.event.mouseHooks; + } +}); +/*! + * Sizzle CSS Selector Engine + * Copyright 2012 jQuery Foundation and other contributors + * Released under the MIT license + * http://sizzlejs.com/ + */ +(function( window, undefined ) { + +var dirruns, + cachedruns, + assertGetIdNotName, + Expr, + getText, + isXML, + contains, + compile, + sortOrder, + hasDuplicate, + + baseHasDuplicate = true, + strundefined = "undefined", + + expando = ( "sizcache" + Math.random() ).replace( ".", "" ), + + document = window.document, + docElem = document.documentElement, + done = 0, + slice = [].slice, + push = [].push, + + // Augment a function for special use by Sizzle + markFunction = function( fn, value ) { + fn[ expando ] = value || true; + return fn; + }, + + createCache = function() { + var cache = {}, + keys = []; + + return markFunction(function( key, value ) { + // Only keep the most recent entries + if ( keys.push( key ) > Expr.cacheLength ) { + delete cache[ keys.shift() ]; + } + + return (cache[ key ] = value); + }, cache ); + }, + + classCache = createCache(), + tokenCache = createCache(), + compilerCache = createCache(), + + // Regex + + // Whitespace characters http://www.w3.org/TR/css3-selectors/#whitespace + whitespace = "[\\x20\\t\\r\\n\\f]", + // http://www.w3.org/TR/css3-syntax/#characters + characterEncoding = "(?:\\\\.|[-\\w]|[^\\x00-\\xa0])+", + + // Loosely modeled on CSS identifier characters + // An unquoted value should be a CSS identifier (http://www.w3.org/TR/css3-selectors/#attribute-selectors) + // Proper syntax: http://www.w3.org/TR/CSS21/syndata.html#value-def-identifier + identifier = characterEncoding.replace( "w", "w#" ), + + // Acceptable operators http://www.w3.org/TR/selectors/#attribute-selectors + operators = "([*^$|!~]?=)", + attributes = "\\[" + whitespace + "*(" + characterEncoding + ")" + whitespace + + "*(?:" + operators + whitespace + "*(?:(['\"])((?:\\\\.|[^\\\\])*?)\\3|(" + identifier + ")|)|)" + whitespace + "*\\]", + + // Prefer arguments not in parens/brackets, + // then attribute selectors and non-pseudos (denoted by :), + // then anything else + // These preferences are here to reduce the number of selectors + // needing tokenize in the PSEUDO preFilter + pseudos = ":(" + characterEncoding + ")(?:\\((?:(['\"])((?:\\\\.|[^\\\\])*?)\\2|([^()[\\]]*|(?:(?:" + attributes + ")|[^:]|\\\\.)*|.*))\\)|)", + + // For matchExpr.POS and matchExpr.needsContext + pos = ":(nth|eq|gt|lt|first|last|even|odd)(?:\\(((?:-\\d)?\\d*)\\)|)(?=[^-]|$)", + + // Leading and non-escaped trailing whitespace, capturing some non-whitespace characters preceding the latter + rtrim = new RegExp( "^" + whitespace + "+|((?:^|[^\\\\])(?:\\\\.)*)" + whitespace + "+$", "g" ), + + rcomma = new RegExp( "^" + whitespace + "*," + whitespace + "*" ), + rcombinators = new RegExp( "^" + whitespace + "*([\\x20\\t\\r\\n\\f>+~])" + whitespace + "*" ), + rpseudo = new RegExp( pseudos ), + + // Easily-parseable/retrievable ID or TAG or CLASS selectors + rquickExpr = /^(?:#([\w\-]+)|(\w+)|\.([\w\-]+))$/, + + rnot = /^:not/, + rsibling = /[\x20\t\r\n\f]*[+~]/, + rendsWithNot = /:not\($/, + + rheader = /h\d/i, + rinputs = /input|select|textarea|button/i, + + rbackslash = /\\(?!\\)/g, + + matchExpr = { + "ID": new RegExp( "^#(" + characterEncoding + ")" ), + "CLASS": new RegExp( "^\\.(" + characterEncoding + ")" ), + "NAME": new RegExp( "^\\[name=['\"]?(" + characterEncoding + ")['\"]?\\]" ), + "TAG": new RegExp( "^(" + characterEncoding.replace( "w", "w*" ) + ")" ), + "ATTR": new RegExp( "^" + attributes ), + "PSEUDO": new RegExp( "^" + pseudos ), + "CHILD": new RegExp( "^:(only|nth|last|first)-child(?:\\(" + whitespace + + "*(even|odd|(([+-]|)(\\d*)n|)" + whitespace + "*(?:([+-]|)" + whitespace + + "*(\\d+)|))" + whitespace + "*\\)|)", "i" ), + "POS": new RegExp( pos, "ig" ), + // For use in libraries implementing .is() + "needsContext": new RegExp( "^" + whitespace + "*[>+~]|" + pos, "i" ) + }, + + // Support + + // Used for testing something on an element + assert = function( fn ) { + var div = document.createElement("div"); + + try { + return fn( div ); + } catch (e) { + return false; + } finally { + // release memory in IE + div = null; + } + }, + + // Check if getElementsByTagName("*") returns only elements + assertTagNameNoComments = assert(function( div ) { + div.appendChild( document.createComment("") ); + return !div.getElementsByTagName("*").length; + }), + + // Check if getAttribute returns normalized href attributes + assertHrefNotNormalized = assert(function( div ) { + div.innerHTML = ""; + return div.firstChild && typeof div.firstChild.getAttribute !== strundefined && + div.firstChild.getAttribute("href") === "#"; + }), + + // Check if attributes should be retrieved by attribute nodes + assertAttributes = assert(function( div ) { + div.innerHTML = ""; + var type = typeof div.lastChild.getAttribute("multiple"); + // IE8 returns a string for some attributes even when not present + return type !== "boolean" && type !== "string"; + }), + + // Check if getElementsByClassName can be trusted + assertUsableClassName = assert(function( div ) { + // Opera can't find a second classname (in 9.6) + div.innerHTML = ""; + if ( !div.getElementsByClassName || !div.getElementsByClassName("e").length ) { + return false; + } + + // Safari 3.2 caches class attributes and doesn't catch changes + div.lastChild.className = "e"; + return div.getElementsByClassName("e").length === 2; + }), + + // Check if getElementById returns elements by name + // Check if getElementsByName privileges form controls or returns elements by ID + assertUsableName = assert(function( div ) { + // Inject content + div.id = expando + 0; + div.innerHTML = "
"; + docElem.insertBefore( div, docElem.firstChild ); + + // Test + var pass = document.getElementsByName && + // buggy browsers will return fewer than the correct 2 + document.getElementsByName( expando ).length === 2 + + // buggy browsers will return more than the correct 0 + document.getElementsByName( expando + 0 ).length; + assertGetIdNotName = !document.getElementById( expando ); + + // Cleanup + docElem.removeChild( div ); + + return pass; + }); + +// If slice is not available, provide a backup +try { + slice.call( docElem.childNodes, 0 )[0].nodeType; +} catch ( e ) { + slice = function( i ) { + var elem, results = []; + for ( ; (elem = this[i]); i++ ) { + results.push( elem ); + } + return results; + }; +} + +function Sizzle( selector, context, results, seed ) { + results = results || []; + context = context || document; + var match, elem, xml, m, + nodeType = context.nodeType; + + if ( nodeType !== 1 && nodeType !== 9 ) { + return []; + } + + if ( !selector || typeof selector !== "string" ) { + return results; + } + + xml = isXML( context ); + + if ( !xml && !seed ) { + if ( (match = rquickExpr.exec( selector )) ) { + // Speed-up: Sizzle("#ID") + if ( (m = match[1]) ) { + if ( nodeType === 9 ) { + elem = context.getElementById( m ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + if ( elem && elem.parentNode ) { + // Handle the case where IE, Opera, and Webkit return items + // by name instead of ID + if ( elem.id === m ) { + results.push( elem ); + return results; + } + } else { + return results; + } + } else { + // Context is not a document + if ( context.ownerDocument && (elem = context.ownerDocument.getElementById( m )) && + contains( context, elem ) && elem.id === m ) { + results.push( elem ); + return results; + } + } + + // Speed-up: Sizzle("TAG") + } else if ( match[2] ) { + push.apply( results, slice.call(context.getElementsByTagName( selector ), 0) ); + return results; + + // Speed-up: Sizzle(".CLASS") + } else if ( (m = match[3]) && assertUsableClassName && context.getElementsByClassName ) { + push.apply( results, slice.call(context.getElementsByClassName( m ), 0) ); + return results; + } + } + } + + // All others + return select( selector, context, results, seed, xml ); +} + +Sizzle.matches = function( expr, elements ) { + return Sizzle( expr, null, null, elements ); +}; + +Sizzle.matchesSelector = function( elem, expr ) { + return Sizzle( expr, null, null, [ elem ] ).length > 0; +}; + +// Returns a function to use in pseudos for input types +function createInputPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === type; + }; +} + +// Returns a function to use in pseudos for buttons +function createButtonPseudo( type ) { + return function( elem ) { + var name = elem.nodeName.toLowerCase(); + return (name === "input" || name === "button") && elem.type === type; + }; +} + +/** + * Utility function for retrieving the text value of an array of DOM nodes + * @param {Array|Element} elem + */ +getText = Sizzle.getText = function( elem ) { + var node, + ret = "", + i = 0, + nodeType = elem.nodeType; + + if ( nodeType ) { + if ( nodeType === 1 || nodeType === 9 || nodeType === 11 ) { + // Use textContent for elements + // innerText usage removed for consistency of new lines (see #11153) + if ( typeof elem.textContent === "string" ) { + return elem.textContent; + } else { + // Traverse its children + for ( elem = elem.firstChild; elem; elem = elem.nextSibling ) { + ret += getText( elem ); + } + } + } else if ( nodeType === 3 || nodeType === 4 ) { + return elem.nodeValue; + } + // Do not include comment or processing instruction nodes + } else { + + // If no nodeType, this is expected to be an array + for ( ; (node = elem[i]); i++ ) { + // Do not traverse comment nodes + ret += getText( node ); + } + } + return ret; +}; + +isXML = Sizzle.isXML = function isXML( elem ) { + // documentElement is verified for cases where it doesn't yet exist + // (such as loading iframes in IE - #4833) + var documentElement = elem && (elem.ownerDocument || elem).documentElement; + return documentElement ? documentElement.nodeName !== "HTML" : false; +}; + +// Element contains another +contains = Sizzle.contains = docElem.contains ? + function( a, b ) { + var adown = a.nodeType === 9 ? a.documentElement : a, + bup = b && b.parentNode; + return a === bup || !!( bup && bup.nodeType === 1 && adown.contains && adown.contains(bup) ); + } : + docElem.compareDocumentPosition ? + function( a, b ) { + return b && !!( a.compareDocumentPosition( b ) & 16 ); + } : + function( a, b ) { + while ( (b = b.parentNode) ) { + if ( b === a ) { + return true; + } + } + return false; + }; + +Sizzle.attr = function( elem, name ) { + var attr, + xml = isXML( elem ); + + if ( !xml ) { + name = name.toLowerCase(); + } + if ( Expr.attrHandle[ name ] ) { + return Expr.attrHandle[ name ]( elem ); + } + if ( assertAttributes || xml ) { + return elem.getAttribute( name ); + } + attr = elem.getAttributeNode( name ); + return attr ? + typeof elem[ name ] === "boolean" ? + elem[ name ] ? name : null : + attr.specified ? attr.value : null : + null; +}; + +Expr = Sizzle.selectors = { + + // Can be adjusted by the user + cacheLength: 50, + + createPseudo: markFunction, + + match: matchExpr, + + order: new RegExp( "ID|TAG" + + (assertUsableName ? "|NAME" : "") + + (assertUsableClassName ? "|CLASS" : "") + ), + + // IE6/7 return a modified href + attrHandle: assertHrefNotNormalized ? + {} : + { + "href": function( elem ) { + return elem.getAttribute( "href", 2 ); + }, + "type": function( elem ) { + return elem.getAttribute("type"); + } + }, + + find: { + "ID": assertGetIdNotName ? + function( id, context, xml ) { + if ( typeof context.getElementById !== strundefined && !xml ) { + var m = context.getElementById( id ); + // Check parentNode to catch when Blackberry 4.6 returns + // nodes that are no longer in the document #6963 + return m && m.parentNode ? [m] : []; + } + } : + function( id, context, xml ) { + if ( typeof context.getElementById !== strundefined && !xml ) { + var m = context.getElementById( id ); + + return m ? + m.id === id || typeof m.getAttributeNode !== strundefined && m.getAttributeNode("id").value === id ? + [m] : + undefined : + []; + } + }, + + "TAG": assertTagNameNoComments ? + function( tag, context ) { + if ( typeof context.getElementsByTagName !== strundefined ) { + return context.getElementsByTagName( tag ); + } + } : + function( tag, context ) { + var results = context.getElementsByTagName( tag ); + + // Filter out possible comments + if ( tag === "*" ) { + var elem, + tmp = [], + i = 0; + + for ( ; (elem = results[i]); i++ ) { + if ( elem.nodeType === 1 ) { + tmp.push( elem ); + } + } + + return tmp; + } + return results; + }, + + "NAME": function( tag, context ) { + if ( typeof context.getElementsByName !== strundefined ) { + return context.getElementsByName( name ); + } + }, + + "CLASS": function( className, context, xml ) { + if ( typeof context.getElementsByClassName !== strundefined && !xml ) { + return context.getElementsByClassName( className ); + } + } + }, + + relative: { + ">": { dir: "parentNode", first: true }, + " ": { dir: "parentNode" }, + "+": { dir: "previousSibling", first: true }, + "~": { dir: "previousSibling" } + }, + + preFilter: { + "ATTR": function( match ) { + match[1] = match[1].replace( rbackslash, "" ); + + // Move the given value to match[3] whether quoted or unquoted + match[3] = ( match[4] || match[5] || "" ).replace( rbackslash, "" ); + + if ( match[2] === "~=" ) { + match[3] = " " + match[3] + " "; + } + + return match.slice( 0, 4 ); + }, + + "CHILD": function( match ) { + /* matches from matchExpr.CHILD + 1 type (only|nth|...) + 2 argument (even|odd|\d*|\d*n([+-]\d+)?|...) + 3 xn-component of xn+y argument ([+-]?\d*n|) + 4 sign of xn-component + 5 x of xn-component + 6 sign of y-component + 7 y of y-component + */ + match[1] = match[1].toLowerCase(); + + if ( match[1] === "nth" ) { + // nth-child requires argument + if ( !match[2] ) { + Sizzle.error( match[0] ); + } + + // numeric x and y parameters for Expr.filter.CHILD + // remember that false/true cast respectively to 0/1 + match[3] = +( match[3] ? match[4] + (match[5] || 1) : 2 * ( match[2] === "even" || match[2] === "odd" ) ); + match[4] = +( ( match[6] + match[7] ) || match[2] === "odd" ); + + // other types prohibit arguments + } else if ( match[2] ) { + Sizzle.error( match[0] ); + } + + return match; + }, + + "PSEUDO": function( match, context, xml ) { + var unquoted, excess; + if ( matchExpr["CHILD"].test( match[0] ) ) { + return null; + } + + if ( match[3] ) { + match[2] = match[3]; + } else if ( (unquoted = match[4]) ) { + // Only check arguments that contain a pseudo + if ( rpseudo.test(unquoted) && + // Get excess from tokenize (recursively) + (excess = tokenize( unquoted, context, xml, true )) && + // advance to the next closing parenthesis + (excess = unquoted.indexOf( ")", unquoted.length - excess ) - unquoted.length) ) { + + // excess is a negative index + unquoted = unquoted.slice( 0, excess ); + match[0] = match[0].slice( 0, excess ); + } + match[2] = unquoted; + } + + // Return only captures needed by the pseudo filter method (type and argument) + return match.slice( 0, 3 ); + } + }, + + filter: { + "ID": assertGetIdNotName ? + function( id ) { + id = id.replace( rbackslash, "" ); + return function( elem ) { + return elem.getAttribute("id") === id; + }; + } : + function( id ) { + id = id.replace( rbackslash, "" ); + return function( elem ) { + var node = typeof elem.getAttributeNode !== strundefined && elem.getAttributeNode("id"); + return node && node.value === id; + }; + }, + + "TAG": function( nodeName ) { + if ( nodeName === "*" ) { + return function() { return true; }; + } + nodeName = nodeName.replace( rbackslash, "" ).toLowerCase(); + + return function( elem ) { + return elem.nodeName && elem.nodeName.toLowerCase() === nodeName; + }; + }, + + "CLASS": function( className ) { + var pattern = classCache[ expando ][ className ]; + if ( !pattern ) { + pattern = classCache( className, new RegExp("(^|" + whitespace + ")" + className + "(" + whitespace + "|$)") ); + } + return function( elem ) { + return pattern.test( elem.className || (typeof elem.getAttribute !== strundefined && elem.getAttribute("class")) || "" ); + }; + }, + + "ATTR": function( name, operator, check ) { + if ( !operator ) { + return function( elem ) { + return Sizzle.attr( elem, name ) != null; + }; + } + + return function( elem ) { + var result = Sizzle.attr( elem, name ), + value = result + ""; + + if ( result == null ) { + return operator === "!="; + } + + switch ( operator ) { + case "=": + return value === check; + case "!=": + return value !== check; + case "^=": + return check && value.indexOf( check ) === 0; + case "*=": + return check && value.indexOf( check ) > -1; + case "$=": + return check && value.substr( value.length - check.length ) === check; + case "~=": + return ( " " + value + " " ).indexOf( check ) > -1; + case "|=": + return value === check || value.substr( 0, check.length + 1 ) === check + "-"; + } + }; + }, + + "CHILD": function( type, argument, first, last ) { + + if ( type === "nth" ) { + var doneName = done++; + + return function( elem ) { + var parent, diff, + count = 0, + node = elem; + + if ( first === 1 && last === 0 ) { + return true; + } + + parent = elem.parentNode; + + if ( parent && (parent[ expando ] !== doneName || !elem.sizset) ) { + for ( node = parent.firstChild; node; node = node.nextSibling ) { + if ( node.nodeType === 1 ) { + node.sizset = ++count; + if ( node === elem ) { + break; + } + } + } + + parent[ expando ] = doneName; + } + + diff = elem.sizset - last; + + if ( first === 0 ) { + return diff === 0; + + } else { + return ( diff % first === 0 && diff / first >= 0 ); + } + }; + } + + return function( elem ) { + var node = elem; + + switch ( type ) { + case "only": + case "first": + while ( (node = node.previousSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + if ( type === "first" ) { + return true; + } + + node = elem; + + /* falls through */ + case "last": + while ( (node = node.nextSibling) ) { + if ( node.nodeType === 1 ) { + return false; + } + } + + return true; + } + }; + }, + + "PSEUDO": function( pseudo, argument, context, xml ) { + // pseudo-class names are case-insensitive + // http://www.w3.org/TR/selectors/#pseudo-classes + // Prioritize by case sensitivity in case custom pseudos are added with uppercase letters + var args, + fn = Expr.pseudos[ pseudo ] || Expr.pseudos[ pseudo.toLowerCase() ]; + + if ( !fn ) { + Sizzle.error( "unsupported pseudo: " + pseudo ); + } + + // The user may use createPseudo to indicate that + // arguments are needed to create the filter function + // just as Sizzle does + if ( !fn[ expando ] ) { + if ( fn.length > 1 ) { + args = [ pseudo, pseudo, "", argument ]; + return function( elem ) { + return fn( elem, 0, args ); + }; + } + return fn; + } + + return fn( argument, context, xml ); + } + }, + + pseudos: { + "not": markFunction(function( selector, context, xml ) { + // Trim the selector passed to compile + // to avoid treating leading and trailing + // spaces as combinators + var matcher = compile( selector.replace( rtrim, "$1" ), context, xml ); + return function( elem ) { + return !matcher( elem ); + }; + }), + + "enabled": function( elem ) { + return elem.disabled === false; + }, + + "disabled": function( elem ) { + return elem.disabled === true; + }, + + "checked": function( elem ) { + // In CSS3, :checked should return both checked and selected elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + var nodeName = elem.nodeName.toLowerCase(); + return (nodeName === "input" && !!elem.checked) || (nodeName === "option" && !!elem.selected); + }, + + "selected": function( elem ) { + // Accessing this property makes selected-by-default + // options in Safari work properly + if ( elem.parentNode ) { + elem.parentNode.selectedIndex; + } + + return elem.selected === true; + }, + + "parent": function( elem ) { + return !Expr.pseudos["empty"]( elem ); + }, + + "empty": function( elem ) { + // http://www.w3.org/TR/selectors/#empty-pseudo + // :empty is only affected by element nodes and content nodes(including text(3), cdata(4)), + // not comment, processing instructions, or others + // Thanks to Diego Perini for the nodeName shortcut + // Greater than "@" means alpha characters (specifically not starting with "#" or "?") + var nodeType; + elem = elem.firstChild; + while ( elem ) { + if ( elem.nodeName > "@" || (nodeType = elem.nodeType) === 3 || nodeType === 4 ) { + return false; + } + elem = elem.nextSibling; + } + return true; + }, + + "contains": markFunction(function( text ) { + return function( elem ) { + return ( elem.textContent || elem.innerText || getText( elem ) ).indexOf( text ) > -1; + }; + }), + + "has": markFunction(function( selector ) { + return function( elem ) { + return Sizzle( selector, elem ).length > 0; + }; + }), + + "header": function( elem ) { + return rheader.test( elem.nodeName ); + }, + + "text": function( elem ) { + var type, attr; + // IE6 and 7 will map elem.type to 'text' for new HTML5 types (search, etc) + // use getAttribute instead to test this case + return elem.nodeName.toLowerCase() === "input" && + (type = elem.type) === "text" && + ( (attr = elem.getAttribute("type")) == null || attr.toLowerCase() === type ); + }, + + // Input types + "radio": createInputPseudo("radio"), + "checkbox": createInputPseudo("checkbox"), + "file": createInputPseudo("file"), + "password": createInputPseudo("password"), + "image": createInputPseudo("image"), + + "submit": createButtonPseudo("submit"), + "reset": createButtonPseudo("reset"), + + "button": function( elem ) { + var name = elem.nodeName.toLowerCase(); + return name === "input" && elem.type === "button" || name === "button"; + }, + + "input": function( elem ) { + return rinputs.test( elem.nodeName ); + }, + + "focus": function( elem ) { + var doc = elem.ownerDocument; + return elem === doc.activeElement && (!doc.hasFocus || doc.hasFocus()) && !!(elem.type || elem.href); + }, + + "active": function( elem ) { + return elem === elem.ownerDocument.activeElement; + } + }, + + setFilters: { + "first": function( elements, argument, not ) { + return not ? elements.slice( 1 ) : [ elements[0] ]; + }, + + "last": function( elements, argument, not ) { + var elem = elements.pop(); + return not ? elements : [ elem ]; + }, + + "even": function( elements, argument, not ) { + var results = [], + i = not ? 1 : 0, + len = elements.length; + for ( ; i < len; i = i + 2 ) { + results.push( elements[i] ); + } + return results; + }, + + "odd": function( elements, argument, not ) { + var results = [], + i = not ? 0 : 1, + len = elements.length; + for ( ; i < len; i = i + 2 ) { + results.push( elements[i] ); + } + return results; + }, + + "lt": function( elements, argument, not ) { + return not ? elements.slice( +argument ) : elements.slice( 0, +argument ); + }, + + "gt": function( elements, argument, not ) { + return not ? elements.slice( 0, +argument + 1 ) : elements.slice( +argument + 1 ); + }, + + "eq": function( elements, argument, not ) { + var elem = elements.splice( +argument, 1 ); + return not ? elements : elem; + } + } +}; + +function siblingCheck( a, b, ret ) { + if ( a === b ) { + return ret; + } + + var cur = a.nextSibling; + + while ( cur ) { + if ( cur === b ) { + return -1; + } + + cur = cur.nextSibling; + } + + return 1; +} + +sortOrder = docElem.compareDocumentPosition ? + function( a, b ) { + if ( a === b ) { + hasDuplicate = true; + return 0; + } + + return ( !a.compareDocumentPosition || !b.compareDocumentPosition ? + a.compareDocumentPosition : + a.compareDocumentPosition(b) & 4 + ) ? -1 : 1; + } : + function( a, b ) { + // The nodes are identical, we can exit early + if ( a === b ) { + hasDuplicate = true; + return 0; + + // Fallback to using sourceIndex (in IE) if it's available on both nodes + } else if ( a.sourceIndex && b.sourceIndex ) { + return a.sourceIndex - b.sourceIndex; + } + + var al, bl, + ap = [], + bp = [], + aup = a.parentNode, + bup = b.parentNode, + cur = aup; + + // If the nodes are siblings (or identical) we can do a quick check + if ( aup === bup ) { + return siblingCheck( a, b ); + + // If no parents were found then the nodes are disconnected + } else if ( !aup ) { + return -1; + + } else if ( !bup ) { + return 1; + } + + // Otherwise they're somewhere else in the tree so we need + // to build up a full list of the parentNodes for comparison + while ( cur ) { + ap.unshift( cur ); + cur = cur.parentNode; + } + + cur = bup; + + while ( cur ) { + bp.unshift( cur ); + cur = cur.parentNode; + } + + al = ap.length; + bl = bp.length; + + // Start walking down the tree looking for a discrepancy + for ( var i = 0; i < al && i < bl; i++ ) { + if ( ap[i] !== bp[i] ) { + return siblingCheck( ap[i], bp[i] ); + } + } + + // We ended someplace up the tree so do a sibling check + return i === al ? + siblingCheck( a, bp[i], -1 ) : + siblingCheck( ap[i], b, 1 ); + }; + +// Always assume the presence of duplicates if sort doesn't +// pass them to our comparison function (as in Google Chrome). +[0, 0].sort( sortOrder ); +baseHasDuplicate = !hasDuplicate; + +// Document sorting and removing duplicates +Sizzle.uniqueSort = function( results ) { + var elem, + i = 1; + + hasDuplicate = baseHasDuplicate; + results.sort( sortOrder ); + + if ( hasDuplicate ) { + for ( ; (elem = results[i]); i++ ) { + if ( elem === results[ i - 1 ] ) { + results.splice( i--, 1 ); + } + } + } + + return results; +}; + +Sizzle.error = function( msg ) { + throw new Error( "Syntax error, unrecognized expression: " + msg ); +}; + +function tokenize( selector, context, xml, parseOnly ) { + var matched, match, tokens, type, + soFar, groups, group, i, + preFilters, filters, + checkContext = !xml && context !== document, + // Token cache should maintain spaces + key = ( checkContext ? "" : "" ) + selector.replace( rtrim, "$1" ), + cached = tokenCache[ expando ][ key ]; + + if ( cached ) { + return parseOnly ? 0 : slice.call( cached, 0 ); + } + + soFar = selector; + groups = []; + i = 0; + preFilters = Expr.preFilter; + filters = Expr.filter; + + while ( soFar ) { + + // Comma and first run + if ( !matched || (match = rcomma.exec( soFar )) ) { + if ( match ) { + soFar = soFar.slice( match[0].length ); + tokens.selector = group; + } + groups.push( tokens = [] ); + group = ""; + + // Need to make sure we're within a narrower context if necessary + // Adding a descendant combinator will generate what is needed + if ( checkContext ) { + soFar = " " + soFar; + } + } + + matched = false; + + // Combinators + if ( (match = rcombinators.exec( soFar )) ) { + group += match[0]; + soFar = soFar.slice( match[0].length ); + + // Cast descendant combinators to space + matched = tokens.push({ + part: match.pop().replace( rtrim, " " ), + string: match[0], + captures: match + }); + } + + // Filters + for ( type in filters ) { + if ( (match = matchExpr[ type ].exec( soFar )) && (!preFilters[ type ] || + ( match = preFilters[ type ](match, context, xml) )) ) { + + group += match[0]; + soFar = soFar.slice( match[0].length ); + matched = tokens.push({ + part: type, + string: match.shift(), + captures: match + }); + } + } + + if ( !matched ) { + break; + } + } + + // Attach the full group as a selector + if ( group ) { + tokens.selector = group; + } + + // Return the length of the invalid excess + // if we're just parsing + // Otherwise, throw an error or return tokens + return parseOnly ? + soFar.length : + soFar ? + Sizzle.error( selector ) : + // Cache the tokens + slice.call( tokenCache(key, groups), 0 ); +} + +function addCombinator( matcher, combinator, context, xml ) { + var dir = combinator.dir, + doneName = done++; + + if ( !matcher ) { + // If there is no matcher to check, check against the context + matcher = function( elem ) { + return elem === context; + }; + } + return combinator.first ? + function( elem ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 ) { + return matcher( elem ) && elem; + } + } + } : + xml ? + function( elem ) { + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 ) { + if ( matcher( elem ) ) { + return elem; + } + } + } + } : + function( elem ) { + var cache, + dirkey = doneName + "." + dirruns, + cachedkey = dirkey + "." + cachedruns; + while ( (elem = elem[ dir ]) ) { + if ( elem.nodeType === 1 ) { + if ( (cache = elem[ expando ]) === cachedkey ) { + return elem.sizset; + } else if ( typeof cache === "string" && cache.indexOf(dirkey) === 0 ) { + if ( elem.sizset ) { + return elem; + } + } else { + elem[ expando ] = cachedkey; + if ( matcher( elem ) ) { + elem.sizset = true; + return elem; + } + elem.sizset = false; + } + } + } + }; +} + +function addMatcher( higher, deeper ) { + return higher ? + function( elem ) { + var result = deeper( elem ); + return result && higher( result === true ? elem : result ); + } : + deeper; +} + +// ["TAG", ">", "ID", " ", "CLASS"] +function matcherFromTokens( tokens, context, xml ) { + var token, matcher, + i = 0; + + for ( ; (token = tokens[i]); i++ ) { + if ( Expr.relative[ token.part ] ) { + matcher = addCombinator( matcher, Expr.relative[ token.part ], context, xml ); + } else { + matcher = addMatcher( matcher, Expr.filter[ token.part ].apply(null, token.captures.concat( context, xml )) ); + } + } + + return matcher; +} + +function matcherFromGroupMatchers( matchers ) { + return function( elem ) { + var matcher, + j = 0; + for ( ; (matcher = matchers[j]); j++ ) { + if ( matcher(elem) ) { + return true; + } + } + return false; + }; +} + +compile = Sizzle.compile = function( selector, context, xml ) { + var group, i, len, + cached = compilerCache[ expando ][ selector ]; + + // Return a cached group function if already generated (context dependent) + if ( cached && cached.context === context ) { + return cached; + } + + // Generate a function of recursive functions that can be used to check each element + group = tokenize( selector, context, xml ); + for ( i = 0, len = group.length; i < len; i++ ) { + group[i] = matcherFromTokens(group[i], context, xml); + } + + // Cache the compiled function + cached = compilerCache( selector, matcherFromGroupMatchers(group) ); + cached.context = context; + cached.runs = cached.dirruns = 0; + return cached; +}; + +function multipleContexts( selector, contexts, results, seed ) { + var i = 0, + len = contexts.length; + for ( ; i < len; i++ ) { + Sizzle( selector, contexts[i], results, seed ); + } +} + +function handlePOSGroup( selector, posfilter, argument, contexts, seed, not ) { + var results, + fn = Expr.setFilters[ posfilter.toLowerCase() ]; + + if ( !fn ) { + Sizzle.error( posfilter ); + } + + if ( selector || !(results = seed) ) { + multipleContexts( selector || "*", contexts, (results = []), seed ); + } + + return results.length > 0 ? fn( results, argument, not ) : []; +} + +function handlePOS( groups, context, results, seed ) { + var group, part, j, groupLen, token, selector, + anchor, elements, match, matched, + lastIndex, currentContexts, not, + i = 0, + len = groups.length, + rpos = matchExpr["POS"], + // This is generated here in case matchExpr["POS"] is extended + rposgroups = new RegExp( "^" + rpos.source + "(?!" + whitespace + ")", "i" ), + // This is for making sure non-participating + // matching groups are represented cross-browser (IE6-8) + setUndefined = function() { + var i = 1, + len = arguments.length - 2; + for ( ; i < len; i++ ) { + if ( arguments[i] === undefined ) { + match[i] = undefined; + } + } + }; + + for ( ; i < len; i++ ) { + group = groups[i]; + part = ""; + elements = seed; + for ( j = 0, groupLen = group.length; j < groupLen; j++ ) { + token = group[j]; + selector = token.string; + if ( token.part === "PSEUDO" ) { + // Reset regex index to 0 + rpos.exec(""); + anchor = 0; + while ( (match = rpos.exec( selector )) ) { + matched = true; + lastIndex = rpos.lastIndex = match.index + match[0].length; + if ( lastIndex > anchor ) { + part += selector.slice( anchor, match.index ); + anchor = lastIndex; + currentContexts = [ context ]; + + if ( rcombinators.test(part) ) { + if ( elements ) { + currentContexts = elements; + } + elements = seed; + } + + if ( (not = rendsWithNot.test( part )) ) { + part = part.slice( 0, -5 ).replace( rcombinators, "$&*" ); + anchor++; + } + + if ( match.length > 1 ) { + match[0].replace( rposgroups, setUndefined ); + } + elements = handlePOSGroup( part, match[1], match[2], currentContexts, elements, not ); + } + part = ""; + } + + } + + if ( !matched ) { + part += selector; + } + matched = false; + } + + if ( part ) { + if ( rcombinators.test(part) ) { + multipleContexts( part, elements || [ context ], results, seed ); + } else { + Sizzle( part, context, results, seed ? seed.concat(elements) : elements ); + } + } else { + push.apply( results, elements ); + } + } + + // Do not sort if this is a single filter + return len === 1 ? results : Sizzle.uniqueSort( results ); +} + +function select( selector, context, results, seed, xml ) { + // Remove excessive whitespace + selector = selector.replace( rtrim, "$1" ); + var elements, matcher, cached, elem, + i, tokens, token, lastToken, findContext, type, + match = tokenize( selector, context, xml ), + contextNodeType = context.nodeType; + + // POS handling + if ( matchExpr["POS"].test(selector) ) { + return handlePOS( match, context, results, seed ); + } + + if ( seed ) { + elements = slice.call( seed, 0 ); + + // To maintain document order, only narrow the + // set if there is one group + } else if ( match.length === 1 ) { + + // Take a shortcut and set the context if the root selector is an ID + if ( (tokens = slice.call( match[0], 0 )).length > 2 && + (token = tokens[0]).part === "ID" && + contextNodeType === 9 && !xml && + Expr.relative[ tokens[1].part ] ) { + + context = Expr.find["ID"]( token.captures[0].replace( rbackslash, "" ), context, xml )[0]; + if ( !context ) { + return results; + } + + selector = selector.slice( tokens.shift().string.length ); + } + + findContext = ( (match = rsibling.exec( tokens[0].string )) && !match.index && context.parentNode ) || context; + + // Reduce the set if possible + lastToken = ""; + for ( i = tokens.length - 1; i >= 0; i-- ) { + token = tokens[i]; + type = token.part; + lastToken = token.string + lastToken; + if ( Expr.relative[ type ] ) { + break; + } + if ( Expr.order.test(type) ) { + elements = Expr.find[ type ]( token.captures[0].replace( rbackslash, "" ), findContext, xml ); + if ( elements == null ) { + continue; + } else { + selector = selector.slice( 0, selector.length - lastToken.length ) + + lastToken.replace( matchExpr[ type ], "" ); + + if ( !selector ) { + push.apply( results, slice.call(elements, 0) ); + } + + break; + } + } + } + } + + // Only loop over the given elements once + if ( selector ) { + matcher = compile( selector, context, xml ); + dirruns = matcher.dirruns++; + if ( elements == null ) { + elements = Expr.find["TAG"]( "*", (rsibling.test( selector ) && context.parentNode) || context ); + } + + for ( i = 0; (elem = elements[i]); i++ ) { + cachedruns = matcher.runs++; + if ( matcher(elem) ) { + results.push( elem ); + } + } + } + + return results; +} + +if ( document.querySelectorAll ) { + (function() { + var disconnectedMatch, + oldSelect = select, + rescape = /'|\\/g, + rattributeQuotes = /\=[\x20\t\r\n\f]*([^'"\]]*)[\x20\t\r\n\f]*\]/g, + rbuggyQSA = [], + // matchesSelector(:active) reports false when true (IE9/Opera 11.5) + // A support test would require too much code (would include document ready) + // just skip matchesSelector for :active + rbuggyMatches = [":active"], + matches = docElem.matchesSelector || + docElem.mozMatchesSelector || + docElem.webkitMatchesSelector || + docElem.oMatchesSelector || + docElem.msMatchesSelector; + + // Build QSA regex + // Regex strategy adopted from Diego Perini + assert(function( div ) { + // Select is set to empty string on purpose + // This is to test IE's treatment of not explictly + // setting a boolean content attribute, + // since its presence should be enough + // http://bugs.jquery.com/ticket/12359 + div.innerHTML = ""; + + // IE8 - Some boolean attributes are not treated correctly + if ( !div.querySelectorAll("[selected]").length ) { + rbuggyQSA.push( "\\[" + whitespace + "*(?:checked|disabled|ismap|multiple|readonly|selected|value)" ); + } + + // Webkit/Opera - :checked should return selected option elements + // http://www.w3.org/TR/2011/REC-css3-selectors-20110929/#checked + // IE8 throws error here (do not put tests after this one) + if ( !div.querySelectorAll(":checked").length ) { + rbuggyQSA.push(":checked"); + } + }); + + assert(function( div ) { + + // Opera 10-12/IE9 - ^= $= *= and empty values + // Should not select anything + div.innerHTML = "

"; + if ( div.querySelectorAll("[test^='']").length ) { + rbuggyQSA.push( "[*^$]=" + whitespace + "*(?:\"\"|'')" ); + } + + // FF 3.5 - :enabled/:disabled and hidden elements (hidden elements are still enabled) + // IE8 throws error here (do not put tests after this one) + div.innerHTML = ""; + if ( !div.querySelectorAll(":enabled").length ) { + rbuggyQSA.push(":enabled", ":disabled"); + } + }); + + rbuggyQSA = rbuggyQSA.length && new RegExp( rbuggyQSA.join("|") ); + + select = function( selector, context, results, seed, xml ) { + // Only use querySelectorAll when not filtering, + // when this is not xml, + // and when no QSA bugs apply + if ( !seed && !xml && (!rbuggyQSA || !rbuggyQSA.test( selector )) ) { + if ( context.nodeType === 9 ) { + try { + push.apply( results, slice.call(context.querySelectorAll( selector ), 0) ); + return results; + } catch(qsaError) {} + // qSA works strangely on Element-rooted queries + // We can work around this by specifying an extra ID on the root + // and working up from there (Thanks to Andrew Dupont for the technique) + // IE 8 doesn't work on object elements + } else if ( context.nodeType === 1 && context.nodeName.toLowerCase() !== "object" ) { + var groups, i, len, + old = context.getAttribute("id"), + nid = old || expando, + newContext = rsibling.test( selector ) && context.parentNode || context; + + if ( old ) { + nid = nid.replace( rescape, "\\$&" ); + } else { + context.setAttribute( "id", nid ); + } + + groups = tokenize(selector, context, xml); + // Trailing space is unnecessary + // There is always a context check + nid = "[id='" + nid + "']"; + for ( i = 0, len = groups.length; i < len; i++ ) { + groups[i] = nid + groups[i].selector; + } + try { + push.apply( results, slice.call( newContext.querySelectorAll( + groups.join(",") + ), 0 ) ); + return results; + } catch(qsaError) { + } finally { + if ( !old ) { + context.removeAttribute("id"); + } + } + } + } + + return oldSelect( selector, context, results, seed, xml ); + }; + + if ( matches ) { + assert(function( div ) { + // Check to see if it's possible to do matchesSelector + // on a disconnected node (IE 9) + disconnectedMatch = matches.call( div, "div" ); + + // This should fail with an exception + // Gecko does not error, returns false instead + try { + matches.call( div, "[test!='']:sizzle" ); + rbuggyMatches.push( matchExpr["PSEUDO"].source, matchExpr["POS"].source, "!=" ); + } catch ( e ) {} + }); + + // rbuggyMatches always contains :active, so no need for a length check + rbuggyMatches = /* rbuggyMatches.length && */ new RegExp( rbuggyMatches.join("|") ); + + Sizzle.matchesSelector = function( elem, expr ) { + // Make sure that attribute selectors are quoted + expr = expr.replace( rattributeQuotes, "='$1']" ); + + // rbuggyMatches always contains :active, so no need for an existence check + if ( !isXML( elem ) && !rbuggyMatches.test( expr ) && (!rbuggyQSA || !rbuggyQSA.test( expr )) ) { + try { + var ret = matches.call( elem, expr ); + + // IE 9's matchesSelector returns false on disconnected nodes + if ( ret || disconnectedMatch || + // As well, disconnected nodes are said to be in a document + // fragment in IE 9 + elem.document && elem.document.nodeType !== 11 ) { + return ret; + } + } catch(e) {} + } + + return Sizzle( expr, null, null, [ elem ] ).length > 0; + }; + } + })(); +} + +// Deprecated +Expr.setFilters["nth"] = Expr.setFilters["eq"]; + +// Back-compat +Expr.filters = Expr.pseudos; + +// Override sizzle attribute retrieval +Sizzle.attr = jQuery.attr; +jQuery.find = Sizzle; +jQuery.expr = Sizzle.selectors; +jQuery.expr[":"] = jQuery.expr.pseudos; +jQuery.unique = Sizzle.uniqueSort; +jQuery.text = Sizzle.getText; +jQuery.isXMLDoc = Sizzle.isXML; +jQuery.contains = Sizzle.contains; + + +})( window ); +var runtil = /Until$/, + rparentsprev = /^(?:parents|prev(?:Until|All))/, + isSimple = /^.[^:#\[\.,]*$/, + rneedsContext = jQuery.expr.match.needsContext, + // methods guaranteed to produce a unique set when starting from a unique set + guaranteedUnique = { + children: true, + contents: true, + next: true, + prev: true + }; + +jQuery.fn.extend({ + find: function( selector ) { + var i, l, length, n, r, ret, + self = this; + + if ( typeof selector !== "string" ) { + return jQuery( selector ).filter(function() { + for ( i = 0, l = self.length; i < l; i++ ) { + if ( jQuery.contains( self[ i ], this ) ) { + return true; + } + } + }); + } + + ret = this.pushStack( "", "find", selector ); + + for ( i = 0, l = this.length; i < l; i++ ) { + length = ret.length; + jQuery.find( selector, this[i], ret ); + + if ( i > 0 ) { + // Make sure that the results are unique + for ( n = length; n < ret.length; n++ ) { + for ( r = 0; r < length; r++ ) { + if ( ret[r] === ret[n] ) { + ret.splice(n--, 1); + break; + } + } + } + } + } + + return ret; + }, + + has: function( target ) { + var i, + targets = jQuery( target, this ), + len = targets.length; + + return this.filter(function() { + for ( i = 0; i < len; i++ ) { + if ( jQuery.contains( this, targets[i] ) ) { + return true; + } + } + }); + }, + + not: function( selector ) { + return this.pushStack( winnow(this, selector, false), "not", selector); + }, + + filter: function( selector ) { + return this.pushStack( winnow(this, selector, true), "filter", selector ); + }, + + is: function( selector ) { + return !!selector && ( + typeof selector === "string" ? + // If this is a positional/relative selector, check membership in the returned set + // so $("p:first").is("p:last") won't return true for a doc with two "p". + rneedsContext.test( selector ) ? + jQuery( selector, this.context ).index( this[0] ) >= 0 : + jQuery.filter( selector, this ).length > 0 : + this.filter( selector ).length > 0 ); + }, + + closest: function( selectors, context ) { + var cur, + i = 0, + l = this.length, + ret = [], + pos = rneedsContext.test( selectors ) || typeof selectors !== "string" ? + jQuery( selectors, context || this.context ) : + 0; + + for ( ; i < l; i++ ) { + cur = this[i]; + + while ( cur && cur.ownerDocument && cur !== context && cur.nodeType !== 11 ) { + if ( pos ? pos.index(cur) > -1 : jQuery.find.matchesSelector(cur, selectors) ) { + ret.push( cur ); + break; + } + cur = cur.parentNode; + } + } + + ret = ret.length > 1 ? jQuery.unique( ret ) : ret; + + return this.pushStack( ret, "closest", selectors ); + }, + + // Determine the position of an element within + // the matched set of elements + index: function( elem ) { + + // No argument, return index in parent + if ( !elem ) { + return ( this[0] && this[0].parentNode ) ? this.prevAll().length : -1; + } + + // index in selector + if ( typeof elem === "string" ) { + return jQuery.inArray( this[0], jQuery( elem ) ); + } + + // Locate the position of the desired element + return jQuery.inArray( + // If it receives a jQuery object, the first element is used + elem.jquery ? elem[0] : elem, this ); + }, + + add: function( selector, context ) { + var set = typeof selector === "string" ? + jQuery( selector, context ) : + jQuery.makeArray( selector && selector.nodeType ? [ selector ] : selector ), + all = jQuery.merge( this.get(), set ); + + return this.pushStack( isDisconnected( set[0] ) || isDisconnected( all[0] ) ? + all : + jQuery.unique( all ) ); + }, + + addBack: function( selector ) { + return this.add( selector == null ? + this.prevObject : this.prevObject.filter(selector) + ); + } +}); + +jQuery.fn.andSelf = jQuery.fn.addBack; + +// A painfully simple check to see if an element is disconnected +// from a document (should be improved, where feasible). +function isDisconnected( node ) { + return !node || !node.parentNode || node.parentNode.nodeType === 11; +} + +function sibling( cur, dir ) { + do { + cur = cur[ dir ]; + } while ( cur && cur.nodeType !== 1 ); + + return cur; +} + +jQuery.each({ + parent: function( elem ) { + var parent = elem.parentNode; + return parent && parent.nodeType !== 11 ? parent : null; + }, + parents: function( elem ) { + return jQuery.dir( elem, "parentNode" ); + }, + parentsUntil: function( elem, i, until ) { + return jQuery.dir( elem, "parentNode", until ); + }, + next: function( elem ) { + return sibling( elem, "nextSibling" ); + }, + prev: function( elem ) { + return sibling( elem, "previousSibling" ); + }, + nextAll: function( elem ) { + return jQuery.dir( elem, "nextSibling" ); + }, + prevAll: function( elem ) { + return jQuery.dir( elem, "previousSibling" ); + }, + nextUntil: function( elem, i, until ) { + return jQuery.dir( elem, "nextSibling", until ); + }, + prevUntil: function( elem, i, until ) { + return jQuery.dir( elem, "previousSibling", until ); + }, + siblings: function( elem ) { + return jQuery.sibling( ( elem.parentNode || {} ).firstChild, elem ); + }, + children: function( elem ) { + return jQuery.sibling( elem.firstChild ); + }, + contents: function( elem ) { + return jQuery.nodeName( elem, "iframe" ) ? + elem.contentDocument || elem.contentWindow.document : + jQuery.merge( [], elem.childNodes ); + } +}, function( name, fn ) { + jQuery.fn[ name ] = function( until, selector ) { + var ret = jQuery.map( this, fn, until ); + + if ( !runtil.test( name ) ) { + selector = until; + } + + if ( selector && typeof selector === "string" ) { + ret = jQuery.filter( selector, ret ); + } + + ret = this.length > 1 && !guaranteedUnique[ name ] ? jQuery.unique( ret ) : ret; + + if ( this.length > 1 && rparentsprev.test( name ) ) { + ret = ret.reverse(); + } + + return this.pushStack( ret, name, core_slice.call( arguments ).join(",") ); + }; +}); + +jQuery.extend({ + filter: function( expr, elems, not ) { + if ( not ) { + expr = ":not(" + expr + ")"; + } + + return elems.length === 1 ? + jQuery.find.matchesSelector(elems[0], expr) ? [ elems[0] ] : [] : + jQuery.find.matches(expr, elems); + }, + + dir: function( elem, dir, until ) { + var matched = [], + cur = elem[ dir ]; + + while ( cur && cur.nodeType !== 9 && (until === undefined || cur.nodeType !== 1 || !jQuery( cur ).is( until )) ) { + if ( cur.nodeType === 1 ) { + matched.push( cur ); + } + cur = cur[dir]; + } + return matched; + }, + + sibling: function( n, elem ) { + var r = []; + + for ( ; n; n = n.nextSibling ) { + if ( n.nodeType === 1 && n !== elem ) { + r.push( n ); + } + } + + return r; + } +}); + +// Implement the identical functionality for filter and not +function winnow( elements, qualifier, keep ) { + + // Can't pass null or undefined to indexOf in Firefox 4 + // Set to 0 to skip string check + qualifier = qualifier || 0; + + if ( jQuery.isFunction( qualifier ) ) { + return jQuery.grep(elements, function( elem, i ) { + var retVal = !!qualifier.call( elem, i, elem ); + return retVal === keep; + }); + + } else if ( qualifier.nodeType ) { + return jQuery.grep(elements, function( elem, i ) { + return ( elem === qualifier ) === keep; + }); + + } else if ( typeof qualifier === "string" ) { + var filtered = jQuery.grep(elements, function( elem ) { + return elem.nodeType === 1; + }); + + if ( isSimple.test( qualifier ) ) { + return jQuery.filter(qualifier, filtered, !keep); + } else { + qualifier = jQuery.filter( qualifier, filtered ); + } + } + + return jQuery.grep(elements, function( elem, i ) { + return ( jQuery.inArray( elem, qualifier ) >= 0 ) === keep; + }); +} +function createSafeFragment( document ) { + var list = nodeNames.split( "|" ), + safeFrag = document.createDocumentFragment(); + + if ( safeFrag.createElement ) { + while ( list.length ) { + safeFrag.createElement( + list.pop() + ); + } + } + return safeFrag; +} + +var nodeNames = "abbr|article|aside|audio|bdi|canvas|data|datalist|details|figcaption|figure|footer|" + + "header|hgroup|mark|meter|nav|output|progress|section|summary|time|video", + rinlinejQuery = / jQuery\d+="(?:null|\d+)"/g, + rleadingWhitespace = /^\s+/, + rxhtmlTag = /<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/gi, + rtagName = /<([\w:]+)/, + rtbody = /]", "i"), + rcheckableType = /^(?:checkbox|radio)$/, + // checked="checked" or checked + rchecked = /checked\s*(?:[^=]|=\s*.checked.)/i, + rscriptType = /\/(java|ecma)script/i, + rcleanScript = /^\s*\s*$/g, + wrapMap = { + option: [ 1, "" ], + legend: [ 1, "
", "
" ], + thead: [ 1, "", "
" ], + tr: [ 2, "", "
" ], + td: [ 3, "", "
" ], + col: [ 2, "", "
" ], + area: [ 1, "", "" ], + _default: [ 0, "", "" ] + }, + safeFragment = createSafeFragment( document ), + fragmentDiv = safeFragment.appendChild( document.createElement("div") ); + +wrapMap.optgroup = wrapMap.option; +wrapMap.tbody = wrapMap.tfoot = wrapMap.colgroup = wrapMap.caption = wrapMap.thead; +wrapMap.th = wrapMap.td; + +// IE6-8 can't serialize link, script, style, or any html5 (NoScope) tags, +// unless wrapped in a div with non-breaking characters in front of it. +if ( !jQuery.support.htmlSerialize ) { + wrapMap._default = [ 1, "X
", "
" ]; +} + +jQuery.fn.extend({ + text: function( value ) { + return jQuery.access( this, function( value ) { + return value === undefined ? + jQuery.text( this ) : + this.empty().append( ( this[0] && this[0].ownerDocument || document ).createTextNode( value ) ); + }, null, value, arguments.length ); + }, + + wrapAll: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapAll( html.call(this, i) ); + }); + } + + if ( this[0] ) { + // The elements to wrap the target around + var wrap = jQuery( html, this[0].ownerDocument ).eq(0).clone(true); + + if ( this[0].parentNode ) { + wrap.insertBefore( this[0] ); + } + + wrap.map(function() { + var elem = this; + + while ( elem.firstChild && elem.firstChild.nodeType === 1 ) { + elem = elem.firstChild; + } + + return elem; + }).append( this ); + } + + return this; + }, + + wrapInner: function( html ) { + if ( jQuery.isFunction( html ) ) { + return this.each(function(i) { + jQuery(this).wrapInner( html.call(this, i) ); + }); + } + + return this.each(function() { + var self = jQuery( this ), + contents = self.contents(); + + if ( contents.length ) { + contents.wrapAll( html ); + + } else { + self.append( html ); + } + }); + }, + + wrap: function( html ) { + var isFunction = jQuery.isFunction( html ); + + return this.each(function(i) { + jQuery( this ).wrapAll( isFunction ? html.call(this, i) : html ); + }); + }, + + unwrap: function() { + return this.parent().each(function() { + if ( !jQuery.nodeName( this, "body" ) ) { + jQuery( this ).replaceWith( this.childNodes ); + } + }).end(); + }, + + append: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 ) { + this.appendChild( elem ); + } + }); + }, + + prepend: function() { + return this.domManip(arguments, true, function( elem ) { + if ( this.nodeType === 1 || this.nodeType === 11 ) { + this.insertBefore( elem, this.firstChild ); + } + }); + }, + + before: function() { + if ( !isDisconnected( this[0] ) ) { + return this.domManip(arguments, false, function( elem ) { + this.parentNode.insertBefore( elem, this ); + }); + } + + if ( arguments.length ) { + var set = jQuery.clean( arguments ); + return this.pushStack( jQuery.merge( set, this ), "before", this.selector ); + } + }, + + after: function() { + if ( !isDisconnected( this[0] ) ) { + return this.domManip(arguments, false, function( elem ) { + this.parentNode.insertBefore( elem, this.nextSibling ); + }); + } + + if ( arguments.length ) { + var set = jQuery.clean( arguments ); + return this.pushStack( jQuery.merge( this, set ), "after", this.selector ); + } + }, + + // keepData is for internal use only--do not document + remove: function( selector, keepData ) { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + if ( !selector || jQuery.filter( selector, [ elem ] ).length ) { + if ( !keepData && elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName("*") ); + jQuery.cleanData( [ elem ] ); + } + + if ( elem.parentNode ) { + elem.parentNode.removeChild( elem ); + } + } + } + + return this; + }, + + empty: function() { + var elem, + i = 0; + + for ( ; (elem = this[i]) != null; i++ ) { + // Remove element nodes and prevent memory leaks + if ( elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName("*") ); + } + + // Remove any remaining nodes + while ( elem.firstChild ) { + elem.removeChild( elem.firstChild ); + } + } + + return this; + }, + + clone: function( dataAndEvents, deepDataAndEvents ) { + dataAndEvents = dataAndEvents == null ? false : dataAndEvents; + deepDataAndEvents = deepDataAndEvents == null ? dataAndEvents : deepDataAndEvents; + + return this.map( function () { + return jQuery.clone( this, dataAndEvents, deepDataAndEvents ); + }); + }, + + html: function( value ) { + return jQuery.access( this, function( value ) { + var elem = this[0] || {}, + i = 0, + l = this.length; + + if ( value === undefined ) { + return elem.nodeType === 1 ? + elem.innerHTML.replace( rinlinejQuery, "" ) : + undefined; + } + + // See if we can take a shortcut and just use innerHTML + if ( typeof value === "string" && !rnoInnerhtml.test( value ) && + ( jQuery.support.htmlSerialize || !rnoshimcache.test( value ) ) && + ( jQuery.support.leadingWhitespace || !rleadingWhitespace.test( value ) ) && + !wrapMap[ ( rtagName.exec( value ) || ["", ""] )[1].toLowerCase() ] ) { + + value = value.replace( rxhtmlTag, "<$1>" ); + + try { + for (; i < l; i++ ) { + // Remove element nodes and prevent memory leaks + elem = this[i] || {}; + if ( elem.nodeType === 1 ) { + jQuery.cleanData( elem.getElementsByTagName( "*" ) ); + elem.innerHTML = value; + } + } + + elem = 0; + + // If using innerHTML throws an exception, use the fallback method + } catch(e) {} + } + + if ( elem ) { + this.empty().append( value ); + } + }, null, value, arguments.length ); + }, + + replaceWith: function( value ) { + if ( !isDisconnected( this[0] ) ) { + // Make sure that the elements are removed from the DOM before they are inserted + // this can help fix replacing a parent with child elements + if ( jQuery.isFunction( value ) ) { + return this.each(function(i) { + var self = jQuery(this), old = self.html(); + self.replaceWith( value.call( this, i, old ) ); + }); + } + + if ( typeof value !== "string" ) { + value = jQuery( value ).detach(); + } + + return this.each(function() { + var next = this.nextSibling, + parent = this.parentNode; + + jQuery( this ).remove(); + + if ( next ) { + jQuery(next).before( value ); + } else { + jQuery(parent).append( value ); + } + }); + } + + return this.length ? + this.pushStack( jQuery(jQuery.isFunction(value) ? value() : value), "replaceWith", value ) : + this; + }, + + detach: function( selector ) { + return this.remove( selector, true ); + }, + + domManip: function( args, table, callback ) { + + // Flatten any nested arrays + args = [].concat.apply( [], args ); + + var results, first, fragment, iNoClone, + i = 0, + value = args[0], + scripts = [], + l = this.length; + + // We can't cloneNode fragments that contain checked, in WebKit + if ( !jQuery.support.checkClone && l > 1 && typeof value === "string" && rchecked.test( value ) ) { + return this.each(function() { + jQuery(this).domManip( args, table, callback ); + }); + } + + if ( jQuery.isFunction(value) ) { + return this.each(function(i) { + var self = jQuery(this); + args[0] = value.call( this, i, table ? self.html() : undefined ); + self.domManip( args, table, callback ); + }); + } + + if ( this[0] ) { + results = jQuery.buildFragment( args, this, scripts ); + fragment = results.fragment; + first = fragment.firstChild; + + if ( fragment.childNodes.length === 1 ) { + fragment = first; + } + + if ( first ) { + table = table && jQuery.nodeName( first, "tr" ); + + // Use the original fragment for the last item instead of the first because it can end up + // being emptied incorrectly in certain situations (#8070). + // Fragments from the fragment cache must always be cloned and never used in place. + for ( iNoClone = results.cacheable || l - 1; i < l; i++ ) { + callback.call( + table && jQuery.nodeName( this[i], "table" ) ? + findOrAppend( this[i], "tbody" ) : + this[i], + i === iNoClone ? + fragment : + jQuery.clone( fragment, true, true ) + ); + } + } + + // Fix #11809: Avoid leaking memory + fragment = first = null; + + if ( scripts.length ) { + jQuery.each( scripts, function( i, elem ) { + if ( elem.src ) { + if ( jQuery.ajax ) { + jQuery.ajax({ + url: elem.src, + type: "GET", + dataType: "script", + async: false, + global: false, + "throws": true + }); + } else { + jQuery.error("no ajax"); + } + } else { + jQuery.globalEval( ( elem.text || elem.textContent || elem.innerHTML || "" ).replace( rcleanScript, "" ) ); + } + + if ( elem.parentNode ) { + elem.parentNode.removeChild( elem ); + } + }); + } + } + + return this; + } +}); + +function findOrAppend( elem, tag ) { + return elem.getElementsByTagName( tag )[0] || elem.appendChild( elem.ownerDocument.createElement( tag ) ); +} + +function cloneCopyEvent( src, dest ) { + + if ( dest.nodeType !== 1 || !jQuery.hasData( src ) ) { + return; + } + + var type, i, l, + oldData = jQuery._data( src ), + curData = jQuery._data( dest, oldData ), + events = oldData.events; + + if ( events ) { + delete curData.handle; + curData.events = {}; + + for ( type in events ) { + for ( i = 0, l = events[ type ].length; i < l; i++ ) { + jQuery.event.add( dest, type, events[ type ][ i ] ); + } + } + } + + // make the cloned public data object a copy from the original + if ( curData.data ) { + curData.data = jQuery.extend( {}, curData.data ); + } +} + +function cloneFixAttributes( src, dest ) { + var nodeName; + + // We do not need to do anything for non-Elements + if ( dest.nodeType !== 1 ) { + return; + } + + // clearAttributes removes the attributes, which we don't want, + // but also removes the attachEvent events, which we *do* want + if ( dest.clearAttributes ) { + dest.clearAttributes(); + } + + // mergeAttributes, in contrast, only merges back on the + // original attributes, not the events + if ( dest.mergeAttributes ) { + dest.mergeAttributes( src ); + } + + nodeName = dest.nodeName.toLowerCase(); + + if ( nodeName === "object" ) { + // IE6-10 improperly clones children of object elements using classid. + // IE10 throws NoModificationAllowedError if parent is null, #12132. + if ( dest.parentNode ) { + dest.outerHTML = src.outerHTML; + } + + // This path appears unavoidable for IE9. When cloning an object + // element in IE9, the outerHTML strategy above is not sufficient. + // If the src has innerHTML and the destination does not, + // copy the src.innerHTML into the dest.innerHTML. #10324 + if ( jQuery.support.html5Clone && (src.innerHTML && !jQuery.trim(dest.innerHTML)) ) { + dest.innerHTML = src.innerHTML; + } + + } else if ( nodeName === "input" && rcheckableType.test( src.type ) ) { + // IE6-8 fails to persist the checked state of a cloned checkbox + // or radio button. Worse, IE6-7 fail to give the cloned element + // a checked appearance if the defaultChecked value isn't also set + + dest.defaultChecked = dest.checked = src.checked; + + // IE6-7 get confused and end up setting the value of a cloned + // checkbox/radio button to an empty string instead of "on" + if ( dest.value !== src.value ) { + dest.value = src.value; + } + + // IE6-8 fails to return the selected option to the default selected + // state when cloning options + } else if ( nodeName === "option" ) { + dest.selected = src.defaultSelected; + + // IE6-8 fails to set the defaultValue to the correct value when + // cloning other types of input fields + } else if ( nodeName === "input" || nodeName === "textarea" ) { + dest.defaultValue = src.defaultValue; + + // IE blanks contents when cloning scripts + } else if ( nodeName === "script" && dest.text !== src.text ) { + dest.text = src.text; + } + + // Event data gets referenced instead of copied if the expando + // gets copied too + dest.removeAttribute( jQuery.expando ); +} + +jQuery.buildFragment = function( args, context, scripts ) { + var fragment, cacheable, cachehit, + first = args[ 0 ]; + + // Set context from what may come in as undefined or a jQuery collection or a node + // Updated to fix #12266 where accessing context[0] could throw an exception in IE9/10 & + // also doubles as fix for #8950 where plain objects caused createDocumentFragment exception + context = context || document; + context = !context.nodeType && context[0] || context; + context = context.ownerDocument || context; + + // Only cache "small" (1/2 KB) HTML strings that are associated with the main document + // Cloning options loses the selected state, so don't cache them + // IE 6 doesn't like it when you put or elements in a fragment + // Also, WebKit does not clone 'checked' attributes on cloneNode, so don't cache + // Lastly, IE6,7,8 will not correctly reuse cached fragments that were created from unknown elems #10501 + if ( args.length === 1 && typeof first === "string" && first.length < 512 && context === document && + first.charAt(0) === "<" && !rnocache.test( first ) && + (jQuery.support.checkClone || !rchecked.test( first )) && + (jQuery.support.html5Clone || !rnoshimcache.test( first )) ) { + + // Mark cacheable and look for a hit + cacheable = true; + fragment = jQuery.fragments[ first ]; + cachehit = fragment !== undefined; + } + + if ( !fragment ) { + fragment = context.createDocumentFragment(); + jQuery.clean( args, context, fragment, scripts ); + + // Update the cache, but only store false + // unless this is a second parsing of the same content + if ( cacheable ) { + jQuery.fragments[ first ] = cachehit && fragment; + } + } + + return { fragment: fragment, cacheable: cacheable }; +}; + +jQuery.fragments = {}; + +jQuery.each({ + appendTo: "append", + prependTo: "prepend", + insertBefore: "before", + insertAfter: "after", + replaceAll: "replaceWith" +}, function( name, original ) { + jQuery.fn[ name ] = function( selector ) { + var elems, + i = 0, + ret = [], + insert = jQuery( selector ), + l = insert.length, + parent = this.length === 1 && this[0].parentNode; + + if ( (parent == null || parent && parent.nodeType === 11 && parent.childNodes.length === 1) && l === 1 ) { + insert[ original ]( this[0] ); + return this; + } else { + for ( ; i < l; i++ ) { + elems = ( i > 0 ? this.clone(true) : this ).get(); + jQuery( insert[i] )[ original ]( elems ); + ret = ret.concat( elems ); + } + + return this.pushStack( ret, name, insert.selector ); + } + }; +}); + +function getAll( elem ) { + if ( typeof elem.getElementsByTagName !== "undefined" ) { + return elem.getElementsByTagName( "*" ); + + } else if ( typeof elem.querySelectorAll !== "undefined" ) { + return elem.querySelectorAll( "*" ); + + } else { + return []; + } +} + +// Used in clean, fixes the defaultChecked property +function fixDefaultChecked( elem ) { + if ( rcheckableType.test( elem.type ) ) { + elem.defaultChecked = elem.checked; + } +} + +jQuery.extend({ + clone: function( elem, dataAndEvents, deepDataAndEvents ) { + var srcElements, + destElements, + i, + clone; + + if ( jQuery.support.html5Clone || jQuery.isXMLDoc(elem) || !rnoshimcache.test( "<" + elem.nodeName + ">" ) ) { + clone = elem.cloneNode( true ); + + // IE<=8 does not properly clone detached, unknown element nodes + } else { + fragmentDiv.innerHTML = elem.outerHTML; + fragmentDiv.removeChild( clone = fragmentDiv.firstChild ); + } + + if ( (!jQuery.support.noCloneEvent || !jQuery.support.noCloneChecked) && + (elem.nodeType === 1 || elem.nodeType === 11) && !jQuery.isXMLDoc(elem) ) { + // IE copies events bound via attachEvent when using cloneNode. + // Calling detachEvent on the clone will also remove the events + // from the original. In order to get around this, we use some + // proprietary methods to clear the events. Thanks to MooTools + // guys for this hotness. + + cloneFixAttributes( elem, clone ); + + // Using Sizzle here is crazy slow, so we use getElementsByTagName instead + srcElements = getAll( elem ); + destElements = getAll( clone ); + + // Weird iteration because IE will replace the length property + // with an element if you are cloning the body and one of the + // elements on the page has a name or id of "length" + for ( i = 0; srcElements[i]; ++i ) { + // Ensure that the destination node is not null; Fixes #9587 + if ( destElements[i] ) { + cloneFixAttributes( srcElements[i], destElements[i] ); + } + } + } + + // Copy the events from the original to the clone + if ( dataAndEvents ) { + cloneCopyEvent( elem, clone ); + + if ( deepDataAndEvents ) { + srcElements = getAll( elem ); + destElements = getAll( clone ); + + for ( i = 0; srcElements[i]; ++i ) { + cloneCopyEvent( srcElements[i], destElements[i] ); + } + } + } + + srcElements = destElements = null; + + // Return the cloned set + return clone; + }, + + clean: function( elems, context, fragment, scripts ) { + var i, j, elem, tag, wrap, depth, div, hasBody, tbody, len, handleScript, jsTags, + safe = context === document && safeFragment, + ret = []; + + // Ensure that context is a document + if ( !context || typeof context.createDocumentFragment === "undefined" ) { + context = document; + } + + // Use the already-created safe fragment if context permits + for ( i = 0; (elem = elems[i]) != null; i++ ) { + if ( typeof elem === "number" ) { + elem += ""; + } + + if ( !elem ) { + continue; + } + + // Convert html string into DOM nodes + if ( typeof elem === "string" ) { + if ( !rhtml.test( elem ) ) { + elem = context.createTextNode( elem ); + } else { + // Ensure a safe container in which to render the html + safe = safe || createSafeFragment( context ); + div = context.createElement("div"); + safe.appendChild( div ); + + // Fix "XHTML"-style tags in all browsers + elem = elem.replace(rxhtmlTag, "<$1>"); + + // Go to html and back, then peel off extra wrappers + tag = ( rtagName.exec( elem ) || ["", ""] )[1].toLowerCase(); + wrap = wrapMap[ tag ] || wrapMap._default; + depth = wrap[0]; + div.innerHTML = wrap[1] + elem + wrap[2]; + + // Move to the right depth + while ( depth-- ) { + div = div.lastChild; + } + + // Remove IE's autoinserted from table fragments + if ( !jQuery.support.tbody ) { + + // String was a , *may* have spurious + hasBody = rtbody.test(elem); + tbody = tag === "table" && !hasBody ? + div.firstChild && div.firstChild.childNodes : + + // String was a bare or + wrap[1] === "
" && !hasBody ? + div.childNodes : + []; + + for ( j = tbody.length - 1; j >= 0 ; --j ) { + if ( jQuery.nodeName( tbody[ j ], "tbody" ) && !tbody[ j ].childNodes.length ) { + tbody[ j ].parentNode.removeChild( tbody[ j ] ); + } + } + } + + // IE completely kills leading whitespace when innerHTML is used + if ( !jQuery.support.leadingWhitespace && rleadingWhitespace.test( elem ) ) { + div.insertBefore( context.createTextNode( rleadingWhitespace.exec(elem)[0] ), div.firstChild ); + } + + elem = div.childNodes; + + // Take out of fragment container (we need a fresh div each time) + div.parentNode.removeChild( div ); + } + } + + if ( elem.nodeType ) { + ret.push( elem ); + } else { + jQuery.merge( ret, elem ); + } + } + + // Fix #11356: Clear elements from safeFragment + if ( div ) { + elem = div = safe = null; + } + + // Reset defaultChecked for any radios and checkboxes + // about to be appended to the DOM in IE 6/7 (#8060) + if ( !jQuery.support.appendChecked ) { + for ( i = 0; (elem = ret[i]) != null; i++ ) { + if ( jQuery.nodeName( elem, "input" ) ) { + fixDefaultChecked( elem ); + } else if ( typeof elem.getElementsByTagName !== "undefined" ) { + jQuery.grep( elem.getElementsByTagName("input"), fixDefaultChecked ); + } + } + } + + // Append elements to a provided document fragment + if ( fragment ) { + // Special handling of each script element + handleScript = function( elem ) { + // Check if we consider it executable + if ( !elem.type || rscriptType.test( elem.type ) ) { + // Detach the script and store it in the scripts array (if provided) or the fragment + // Return truthy to indicate that it has been handled + return scripts ? + scripts.push( elem.parentNode ? elem.parentNode.removeChild( elem ) : elem ) : + fragment.appendChild( elem ); + } + }; + + for ( i = 0; (elem = ret[i]) != null; i++ ) { + // Check if we're done after handling an executable script + if ( !( jQuery.nodeName( elem, "script" ) && handleScript( elem ) ) ) { + // Append to fragment and handle embedded scripts + fragment.appendChild( elem ); + if ( typeof elem.getElementsByTagName !== "undefined" ) { + // handleScript alters the DOM, so use jQuery.merge to ensure snapshot iteration + jsTags = jQuery.grep( jQuery.merge( [], elem.getElementsByTagName("script") ), handleScript ); + + // Splice the scripts into ret after their former ancestor and advance our index beyond them + ret.splice.apply( ret, [i + 1, 0].concat( jsTags ) ); + i += jsTags.length; + } + } + } + } + + return ret; + }, + + cleanData: function( elems, /* internal */ acceptData ) { + var data, id, elem, type, + i = 0, + internalKey = jQuery.expando, + cache = jQuery.cache, + deleteExpando = jQuery.support.deleteExpando, + special = jQuery.event.special; + + for ( ; (elem = elems[i]) != null; i++ ) { + + if ( acceptData || jQuery.acceptData( elem ) ) { + + id = elem[ internalKey ]; + data = id && cache[ id ]; + + if ( data ) { + if ( data.events ) { + for ( type in data.events ) { + if ( special[ type ] ) { + jQuery.event.remove( elem, type ); + + // This is a shortcut to avoid jQuery.event.remove's overhead + } else { + jQuery.removeEvent( elem, type, data.handle ); + } + } + } + + // Remove cache only if it was not already removed by jQuery.event.remove + if ( cache[ id ] ) { + + delete cache[ id ]; + + // IE does not allow us to delete expando properties from nodes, + // nor does it have a removeAttribute function on Document nodes; + // we must handle all of these cases + if ( deleteExpando ) { + delete elem[ internalKey ]; + + } else if ( elem.removeAttribute ) { + elem.removeAttribute( internalKey ); + + } else { + elem[ internalKey ] = null; + } + + jQuery.deletedIds.push( id ); + } + } + } + } + } +}); +// Limit scope pollution from any deprecated API +(function() { + +var matched, browser; + +// Use of jQuery.browser is frowned upon. +// More details: http://api.jquery.com/jQuery.browser +// jQuery.uaMatch maintained for back-compat +jQuery.uaMatch = function( ua ) { + ua = ua.toLowerCase(); + + var match = /(chrome)[ \/]([\w.]+)/.exec( ua ) || + /(webkit)[ \/]([\w.]+)/.exec( ua ) || + /(opera)(?:.*version|)[ \/]([\w.]+)/.exec( ua ) || + /(msie) ([\w.]+)/.exec( ua ) || + ua.indexOf("compatible") < 0 && /(mozilla)(?:.*? rv:([\w.]+)|)/.exec( ua ) || + []; + + return { + browser: match[ 1 ] || "", + version: match[ 2 ] || "0" + }; +}; + +matched = jQuery.uaMatch( navigator.userAgent ); +browser = {}; + +if ( matched.browser ) { + browser[ matched.browser ] = true; + browser.version = matched.version; +} + +// Chrome is Webkit, but Webkit is also Safari. +if ( browser.chrome ) { + browser.webkit = true; +} else if ( browser.webkit ) { + browser.safari = true; +} + +jQuery.browser = browser; + +jQuery.sub = function() { + function jQuerySub( selector, context ) { + return new jQuerySub.fn.init( selector, context ); + } + jQuery.extend( true, jQuerySub, this ); + jQuerySub.superclass = this; + jQuerySub.fn = jQuerySub.prototype = this(); + jQuerySub.fn.constructor = jQuerySub; + jQuerySub.sub = this.sub; + jQuerySub.fn.init = function init( selector, context ) { + if ( context && context instanceof jQuery && !(context instanceof jQuerySub) ) { + context = jQuerySub( context ); + } + + return jQuery.fn.init.call( this, selector, context, rootjQuerySub ); + }; + jQuerySub.fn.init.prototype = jQuerySub.fn; + var rootjQuerySub = jQuerySub(document); + return jQuerySub; +}; + +})(); +var curCSS, iframe, iframeDoc, + ralpha = /alpha\([^)]*\)/i, + ropacity = /opacity=([^)]*)/, + rposition = /^(top|right|bottom|left)$/, + // swappable if display is none or starts with table except "table", "table-cell", or "table-caption" + // see here for display values: https://developer.mozilla.org/en-US/docs/CSS/display + rdisplayswap = /^(none|table(?!-c[ea]).+)/, + rmargin = /^margin/, + rnumsplit = new RegExp( "^(" + core_pnum + ")(.*)$", "i" ), + rnumnonpx = new RegExp( "^(" + core_pnum + ")(?!px)[a-z%]+$", "i" ), + rrelNum = new RegExp( "^([-+])=(" + core_pnum + ")", "i" ), + elemdisplay = {}, + + cssShow = { position: "absolute", visibility: "hidden", display: "block" }, + cssNormalTransform = { + letterSpacing: 0, + fontWeight: 400 + }, + + cssExpand = [ "Top", "Right", "Bottom", "Left" ], + cssPrefixes = [ "Webkit", "O", "Moz", "ms" ], + + eventsToggle = jQuery.fn.toggle; + +// return a css property mapped to a potentially vendor prefixed property +function vendorPropName( style, name ) { + + // shortcut for names that are not vendor prefixed + if ( name in style ) { + return name; + } + + // check for vendor prefixed names + var capName = name.charAt(0).toUpperCase() + name.slice(1), + origName = name, + i = cssPrefixes.length; + + while ( i-- ) { + name = cssPrefixes[ i ] + capName; + if ( name in style ) { + return name; + } + } + + return origName; +} + +function isHidden( elem, el ) { + elem = el || elem; + return jQuery.css( elem, "display" ) === "none" || !jQuery.contains( elem.ownerDocument, elem ); +} + +function showHide( elements, show ) { + var elem, display, + values = [], + index = 0, + length = elements.length; + + for ( ; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + values[ index ] = jQuery._data( elem, "olddisplay" ); + if ( show ) { + // Reset the inline display of this element to learn if it is + // being hidden by cascaded rules or not + if ( !values[ index ] && elem.style.display === "none" ) { + elem.style.display = ""; + } + + // Set elements which have been overridden with display: none + // in a stylesheet to whatever the default browser style is + // for such an element + if ( elem.style.display === "" && isHidden( elem ) ) { + values[ index ] = jQuery._data( elem, "olddisplay", css_defaultDisplay(elem.nodeName) ); + } + } else { + display = curCSS( elem, "display" ); + + if ( !values[ index ] && display !== "none" ) { + jQuery._data( elem, "olddisplay", display ); + } + } + } + + // Set the display of most of the elements in a second loop + // to avoid the constant reflow + for ( index = 0; index < length; index++ ) { + elem = elements[ index ]; + if ( !elem.style ) { + continue; + } + if ( !show || elem.style.display === "none" || elem.style.display === "" ) { + elem.style.display = show ? values[ index ] || "" : "none"; + } + } + + return elements; +} + +jQuery.fn.extend({ + css: function( name, value ) { + return jQuery.access( this, function( elem, name, value ) { + return value !== undefined ? + jQuery.style( elem, name, value ) : + jQuery.css( elem, name ); + }, name, value, arguments.length > 1 ); + }, + show: function() { + return showHide( this, true ); + }, + hide: function() { + return showHide( this ); + }, + toggle: function( state, fn2 ) { + var bool = typeof state === "boolean"; + + if ( jQuery.isFunction( state ) && jQuery.isFunction( fn2 ) ) { + return eventsToggle.apply( this, arguments ); + } + + return this.each(function() { + if ( bool ? state : isHidden( this ) ) { + jQuery( this ).show(); + } else { + jQuery( this ).hide(); + } + }); + } +}); + +jQuery.extend({ + // Add in style property hooks for overriding the default + // behavior of getting and setting a style property + cssHooks: { + opacity: { + get: function( elem, computed ) { + if ( computed ) { + // We should always get a number back from opacity + var ret = curCSS( elem, "opacity" ); + return ret === "" ? "1" : ret; + + } + } + } + }, + + // Exclude the following css properties to add px + cssNumber: { + "fillOpacity": true, + "fontWeight": true, + "lineHeight": true, + "opacity": true, + "orphans": true, + "widows": true, + "zIndex": true, + "zoom": true + }, + + // Add in properties whose names you wish to fix before + // setting or getting the value + cssProps: { + // normalize float css property + "float": jQuery.support.cssFloat ? "cssFloat" : "styleFloat" + }, + + // Get and set the style property on a DOM Node + style: function( elem, name, value, extra ) { + // Don't set styles on text and comment nodes + if ( !elem || elem.nodeType === 3 || elem.nodeType === 8 || !elem.style ) { + return; + } + + // Make sure that we're working with the right name + var ret, type, hooks, + origName = jQuery.camelCase( name ), + style = elem.style; + + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // Check if we're setting a value + if ( value !== undefined ) { + type = typeof value; + + // convert relative number strings (+= or -=) to relative numbers. #7345 + if ( type === "string" && (ret = rrelNum.exec( value )) ) { + value = ( ret[1] + 1 ) * ret[2] + parseFloat( jQuery.css( elem, name ) ); + // Fixes bug #9237 + type = "number"; + } + + // Make sure that NaN and null values aren't set. See: #7116 + if ( value == null || type === "number" && isNaN( value ) ) { + return; + } + + // If a number was passed in, add 'px' to the (except for certain CSS properties) + if ( type === "number" && !jQuery.cssNumber[ origName ] ) { + value += "px"; + } + + // If a hook was provided, use that value, otherwise just set the specified value + if ( !hooks || !("set" in hooks) || (value = hooks.set( elem, value, extra )) !== undefined ) { + // Wrapped to prevent IE from throwing errors when 'invalid' values are provided + // Fixes bug #5509 + try { + style[ name ] = value; + } catch(e) {} + } + + } else { + // If a hook was provided get the non-computed value from there + if ( hooks && "get" in hooks && (ret = hooks.get( elem, false, extra )) !== undefined ) { + return ret; + } + + // Otherwise just get the value from the style object + return style[ name ]; + } + }, + + css: function( elem, name, numeric, extra ) { + var val, num, hooks, + origName = jQuery.camelCase( name ); + + // Make sure that we're working with the right name + name = jQuery.cssProps[ origName ] || ( jQuery.cssProps[ origName ] = vendorPropName( elem.style, origName ) ); + + // gets hook for the prefixed version + // followed by the unprefixed version + hooks = jQuery.cssHooks[ name ] || jQuery.cssHooks[ origName ]; + + // If a hook was provided get the computed value from there + if ( hooks && "get" in hooks ) { + val = hooks.get( elem, true, extra ); + } + + // Otherwise, if a way to get the computed value exists, use that + if ( val === undefined ) { + val = curCSS( elem, name ); + } + + //convert "normal" to computed value + if ( val === "normal" && name in cssNormalTransform ) { + val = cssNormalTransform[ name ]; + } + + // Return, converting to number if forced or a qualifier was provided and val looks numeric + if ( numeric || extra !== undefined ) { + num = parseFloat( val ); + return numeric || jQuery.isNumeric( num ) ? num || 0 : val; + } + return val; + }, + + // A method for quickly swapping in/out CSS properties to get correct calculations + swap: function( elem, options, callback ) { + var ret, name, + old = {}; + + // Remember the old values, and insert the new ones + for ( name in options ) { + old[ name ] = elem.style[ name ]; + elem.style[ name ] = options[ name ]; + } + + ret = callback.call( elem ); + + // Revert the old values + for ( name in options ) { + elem.style[ name ] = old[ name ]; + } + + return ret; + } +}); + +// NOTE: To any future maintainer, we've window.getComputedStyle +// because jsdom on node.js will break without it. +if ( window.getComputedStyle ) { + curCSS = function( elem, name ) { + var ret, width, minWidth, maxWidth, + computed = window.getComputedStyle( elem, null ), + style = elem.style; + + if ( computed ) { + + ret = computed[ name ]; + if ( ret === "" && !jQuery.contains( elem.ownerDocument, elem ) ) { + ret = jQuery.style( elem, name ); + } + + // A tribute to the "awesome hack by Dean Edwards" + // Chrome < 17 and Safari 5.0 uses "computed value" instead of "used value" for margin-right + // Safari 5.1.7 (at least) returns percentage for a larger set of values, but width seems to be reliably pixels + // this is against the CSSOM draft spec: http://dev.w3.org/csswg/cssom/#resolved-values + if ( rnumnonpx.test( ret ) && rmargin.test( name ) ) { + width = style.width; + minWidth = style.minWidth; + maxWidth = style.maxWidth; + + style.minWidth = style.maxWidth = style.width = ret; + ret = computed.width; + + style.width = width; + style.minWidth = minWidth; + style.maxWidth = maxWidth; + } + } + + return ret; + }; +} else if ( document.documentElement.currentStyle ) { + curCSS = function( elem, name ) { + var left, rsLeft, + ret = elem.currentStyle && elem.currentStyle[ name ], + style = elem.style; + + // Avoid setting ret to empty string here + // so we don't default to auto + if ( ret == null && style && style[ name ] ) { + ret = style[ name ]; + } + + // From the awesome hack by Dean Edwards + // http://erik.eae.net/archives/2007/07/27/18.54.15/#comment-102291 + + // If we're not dealing with a regular pixel number + // but a number that has a weird ending, we need to convert it to pixels + // but not position css attributes, as those are proportional to the parent element instead + // and we can't measure the parent instead because it might trigger a "stacking dolls" problem + if ( rnumnonpx.test( ret ) && !rposition.test( name ) ) { + + // Remember the original values + left = style.left; + rsLeft = elem.runtimeStyle && elem.runtimeStyle.left; + + // Put in the new values to get a computed value out + if ( rsLeft ) { + elem.runtimeStyle.left = elem.currentStyle.left; + } + style.left = name === "fontSize" ? "1em" : ret; + ret = style.pixelLeft + "px"; + + // Revert the changed values + style.left = left; + if ( rsLeft ) { + elem.runtimeStyle.left = rsLeft; + } + } + + return ret === "" ? "auto" : ret; + }; +} + +function setPositiveNumber( elem, value, subtract ) { + var matches = rnumsplit.exec( value ); + return matches ? + Math.max( 0, matches[ 1 ] - ( subtract || 0 ) ) + ( matches[ 2 ] || "px" ) : + value; +} + +function augmentWidthOrHeight( elem, name, extra, isBorderBox ) { + var i = extra === ( isBorderBox ? "border" : "content" ) ? + // If we already have the right measurement, avoid augmentation + 4 : + // Otherwise initialize for horizontal or vertical properties + name === "width" ? 1 : 0, + + val = 0; + + for ( ; i < 4; i += 2 ) { + // both box models exclude margin, so add it if we want it + if ( extra === "margin" ) { + // we use jQuery.css instead of curCSS here + // because of the reliableMarginRight CSS hook! + val += jQuery.css( elem, extra + cssExpand[ i ], true ); + } + + // From this point on we use curCSS for maximum performance (relevant in animations) + if ( isBorderBox ) { + // border-box includes padding, so remove it if we want content + if ( extra === "content" ) { + val -= parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0; + } + + // at this point, extra isn't border nor margin, so remove border + if ( extra !== "margin" ) { + val -= parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; + } + } else { + // at this point, extra isn't content, so add padding + val += parseFloat( curCSS( elem, "padding" + cssExpand[ i ] ) ) || 0; + + // at this point, extra isn't content nor padding, so add border + if ( extra !== "padding" ) { + val += parseFloat( curCSS( elem, "border" + cssExpand[ i ] + "Width" ) ) || 0; + } + } + } + + return val; +} + +function getWidthOrHeight( elem, name, extra ) { + + // Start with offset property, which is equivalent to the border-box value + var val = name === "width" ? elem.offsetWidth : elem.offsetHeight, + valueIsBorderBox = true, + isBorderBox = jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box"; + + // some non-html elements return undefined for offsetWidth, so check for null/undefined + // svg - https://bugzilla.mozilla.org/show_bug.cgi?id=649285 + // MathML - https://bugzilla.mozilla.org/show_bug.cgi?id=491668 + if ( val <= 0 || val == null ) { + // Fall back to computed then uncomputed css if necessary + val = curCSS( elem, name ); + if ( val < 0 || val == null ) { + val = elem.style[ name ]; + } + + // Computed unit is not pixels. Stop here and return. + if ( rnumnonpx.test(val) ) { + return val; + } + + // we need the check for style in case a browser which returns unreliable values + // for getComputedStyle silently falls back to the reliable elem.style + valueIsBorderBox = isBorderBox && ( jQuery.support.boxSizingReliable || val === elem.style[ name ] ); + + // Normalize "", auto, and prepare for extra + val = parseFloat( val ) || 0; + } + + // use the active box-sizing model to add/subtract irrelevant styles + return ( val + + augmentWidthOrHeight( + elem, + name, + extra || ( isBorderBox ? "border" : "content" ), + valueIsBorderBox + ) + ) + "px"; +} + + +// Try to determine the default display value of an element +function css_defaultDisplay( nodeName ) { + if ( elemdisplay[ nodeName ] ) { + return elemdisplay[ nodeName ]; + } + + var elem = jQuery( "<" + nodeName + ">" ).appendTo( document.body ), + display = elem.css("display"); + elem.remove(); + + // If the simple way fails, + // get element's real default display by attaching it to a temp iframe + if ( display === "none" || display === "" ) { + // Use the already-created iframe if possible + iframe = document.body.appendChild( + iframe || jQuery.extend( document.createElement("iframe"), { + frameBorder: 0, + width: 0, + height: 0 + }) + ); + + // Create a cacheable copy of the iframe document on first call. + // IE and Opera will allow us to reuse the iframeDoc without re-writing the fake HTML + // document to it; WebKit & Firefox won't allow reusing the iframe document. + if ( !iframeDoc || !iframe.createElement ) { + iframeDoc = ( iframe.contentWindow || iframe.contentDocument ).document; + iframeDoc.write(""); + iframeDoc.close(); + } + + elem = iframeDoc.body.appendChild( iframeDoc.createElement(nodeName) ); + + display = curCSS( elem, "display" ); + document.body.removeChild( iframe ); + } + + // Store the correct default display + elemdisplay[ nodeName ] = display; + + return display; +} + +jQuery.each([ "height", "width" ], function( i, name ) { + jQuery.cssHooks[ name ] = { + get: function( elem, computed, extra ) { + if ( computed ) { + // certain elements can have dimension info if we invisibly show them + // however, it must have a current display style that would benefit from this + if ( elem.offsetWidth === 0 && rdisplayswap.test( curCSS( elem, "display" ) ) ) { + return jQuery.swap( elem, cssShow, function() { + return getWidthOrHeight( elem, name, extra ); + }); + } else { + return getWidthOrHeight( elem, name, extra ); + } + } + }, + + set: function( elem, value, extra ) { + return setPositiveNumber( elem, value, extra ? + augmentWidthOrHeight( + elem, + name, + extra, + jQuery.support.boxSizing && jQuery.css( elem, "boxSizing" ) === "border-box" + ) : 0 + ); + } + }; +}); + +if ( !jQuery.support.opacity ) { + jQuery.cssHooks.opacity = { + get: function( elem, computed ) { + // IE uses filters for opacity + return ropacity.test( (computed && elem.currentStyle ? elem.currentStyle.filter : elem.style.filter) || "" ) ? + ( 0.01 * parseFloat( RegExp.$1 ) ) + "" : + computed ? "1" : ""; + }, + + set: function( elem, value ) { + var style = elem.style, + currentStyle = elem.currentStyle, + opacity = jQuery.isNumeric( value ) ? "alpha(opacity=" + value * 100 + ")" : "", + filter = currentStyle && currentStyle.filter || style.filter || ""; + + // IE has trouble with opacity if it does not have layout + // Force it by setting the zoom level + style.zoom = 1; + + // if setting opacity to 1, and no other filters exist - attempt to remove filter attribute #6652 + if ( value >= 1 && jQuery.trim( filter.replace( ralpha, "" ) ) === "" && + style.removeAttribute ) { + + // Setting style.filter to null, "" & " " still leave "filter:" in the cssText + // if "filter:" is present at all, clearType is disabled, we want to avoid this + // style.removeAttribute is IE Only, but so apparently is this code path... + style.removeAttribute( "filter" ); + + // if there there is no filter style applied in a css rule, we are done + if ( currentStyle && !currentStyle.filter ) { + return; + } + } + + // otherwise, set new filter values + style.filter = ralpha.test( filter ) ? + filter.replace( ralpha, opacity ) : + filter + " " + opacity; + } + }; +} + +// These hooks cannot be added until DOM ready because the support test +// for it is not run until after DOM ready +jQuery(function() { + if ( !jQuery.support.reliableMarginRight ) { + jQuery.cssHooks.marginRight = { + get: function( elem, computed ) { + // WebKit Bug 13343 - getComputedStyle returns wrong value for margin-right + // Work around by temporarily setting element display to inline-block + return jQuery.swap( elem, { "display": "inline-block" }, function() { + if ( computed ) { + return curCSS( elem, "marginRight" ); + } + }); + } + }; + } + + // Webkit bug: https://bugs.webkit.org/show_bug.cgi?id=29084 + // getComputedStyle returns percent when specified for top/left/bottom/right + // rather than make the css module depend on the offset module, we just check for it here + if ( !jQuery.support.pixelPosition && jQuery.fn.position ) { + jQuery.each( [ "top", "left" ], function( i, prop ) { + jQuery.cssHooks[ prop ] = { + get: function( elem, computed ) { + if ( computed ) { + var ret = curCSS( elem, prop ); + // if curCSS returns percentage, fallback to offset + return rnumnonpx.test( ret ) ? jQuery( elem ).position()[ prop ] + "px" : ret; + } + } + }; + }); + } + +}); + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.hidden = function( elem ) { + return ( elem.offsetWidth === 0 && elem.offsetHeight === 0 ) || (!jQuery.support.reliableHiddenOffsets && ((elem.style && elem.style.display) || curCSS( elem, "display" )) === "none"); + }; + + jQuery.expr.filters.visible = function( elem ) { + return !jQuery.expr.filters.hidden( elem ); + }; +} + +// These hooks are used by animate to expand properties +jQuery.each({ + margin: "", + padding: "", + border: "Width" +}, function( prefix, suffix ) { + jQuery.cssHooks[ prefix + suffix ] = { + expand: function( value ) { + var i, + + // assumes a single number if not a string + parts = typeof value === "string" ? value.split(" ") : [ value ], + expanded = {}; + + for ( i = 0; i < 4; i++ ) { + expanded[ prefix + cssExpand[ i ] + suffix ] = + parts[ i ] || parts[ i - 2 ] || parts[ 0 ]; + } + + return expanded; + } + }; + + if ( !rmargin.test( prefix ) ) { + jQuery.cssHooks[ prefix + suffix ].set = setPositiveNumber; + } +}); +var r20 = /%20/g, + rbracket = /\[\]$/, + rCRLF = /\r?\n/g, + rinput = /^(?:color|date|datetime|datetime-local|email|hidden|month|number|password|range|search|tel|text|time|url|week)$/i, + rselectTextarea = /^(?:select|textarea)/i; + +jQuery.fn.extend({ + serialize: function() { + return jQuery.param( this.serializeArray() ); + }, + serializeArray: function() { + return this.map(function(){ + return this.elements ? jQuery.makeArray( this.elements ) : this; + }) + .filter(function(){ + return this.name && !this.disabled && + ( this.checked || rselectTextarea.test( this.nodeName ) || + rinput.test( this.type ) ); + }) + .map(function( i, elem ){ + var val = jQuery( this ).val(); + + return val == null ? + null : + jQuery.isArray( val ) ? + jQuery.map( val, function( val, i ){ + return { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }) : + { name: elem.name, value: val.replace( rCRLF, "\r\n" ) }; + }).get(); + } +}); + +//Serialize an array of form elements or a set of +//key/values into a query string +jQuery.param = function( a, traditional ) { + var prefix, + s = [], + add = function( key, value ) { + // If value is a function, invoke it and return its value + value = jQuery.isFunction( value ) ? value() : ( value == null ? "" : value ); + s[ s.length ] = encodeURIComponent( key ) + "=" + encodeURIComponent( value ); + }; + + // Set traditional to true for jQuery <= 1.3.2 behavior. + if ( traditional === undefined ) { + traditional = jQuery.ajaxSettings && jQuery.ajaxSettings.traditional; + } + + // If an array was passed in, assume that it is an array of form elements. + if ( jQuery.isArray( a ) || ( a.jquery && !jQuery.isPlainObject( a ) ) ) { + // Serialize the form elements + jQuery.each( a, function() { + add( this.name, this.value ); + }); + + } else { + // If traditional, encode the "old" way (the way 1.3.2 or older + // did it), otherwise encode params recursively. + for ( prefix in a ) { + buildParams( prefix, a[ prefix ], traditional, add ); + } + } + + // Return the resulting serialization + return s.join( "&" ).replace( r20, "+" ); +}; + +function buildParams( prefix, obj, traditional, add ) { + var name; + + if ( jQuery.isArray( obj ) ) { + // Serialize array item. + jQuery.each( obj, function( i, v ) { + if ( traditional || rbracket.test( prefix ) ) { + // Treat each array item as a scalar. + add( prefix, v ); + + } else { + // If array item is non-scalar (array or object), encode its + // numeric index to resolve deserialization ambiguity issues. + // Note that rack (as of 1.0.0) can't currently deserialize + // nested arrays properly, and attempting to do so may cause + // a server error. Possible fixes are to modify rack's + // deserialization algorithm or to provide an option or flag + // to force array serialization to be shallow. + buildParams( prefix + "[" + ( typeof v === "object" ? i : "" ) + "]", v, traditional, add ); + } + }); + + } else if ( !traditional && jQuery.type( obj ) === "object" ) { + // Serialize object item. + for ( name in obj ) { + buildParams( prefix + "[" + name + "]", obj[ name ], traditional, add ); + } + + } else { + // Serialize scalar item. + add( prefix, obj ); + } +} +var // Document location + ajaxLocation, + // Document location segments + ajaxLocParts, + + rhash = /#.*$/, + rheaders = /^(.*?):[ \t]*([^\r\n]*)\r?$/mg, // IE leaves an \r character at EOL + // #7653, #8125, #8152: local protocol detection + rlocalProtocol = /^(?:about|app|app\-storage|.+\-extension|file|res|widget):$/, + rnoContent = /^(?:GET|HEAD)$/, + rprotocol = /^\/\//, + rquery = /\?/, + rscript = /)<[^<]*)*<\/script>/gi, + rts = /([?&])_=[^&]*/, + rurl = /^([\w\+\.\-]+:)(?:\/\/([^\/?#:]*)(?::(\d+)|)|)/, + + // Keep a copy of the old load method + _load = jQuery.fn.load, + + /* Prefilters + * 1) They are useful to introduce custom dataTypes (see ajax/jsonp.js for an example) + * 2) These are called: + * - BEFORE asking for a transport + * - AFTER param serialization (s.data is a string if s.processData is true) + * 3) key is the dataType + * 4) the catchall symbol "*" can be used + * 5) execution will start with transport dataType and THEN continue down to "*" if needed + */ + prefilters = {}, + + /* Transports bindings + * 1) key is the dataType + * 2) the catchall symbol "*" can be used + * 3) selection will start with transport dataType and THEN go to "*" if needed + */ + transports = {}, + + // Avoid comment-prolog char sequence (#10098); must appease lint and evade compression + allTypes = ["*/"] + ["*"]; + +// #8138, IE may throw an exception when accessing +// a field from window.location if document.domain has been set +try { + ajaxLocation = location.href; +} catch( e ) { + // Use the href attribute of an A element + // since IE will modify it given document.location + ajaxLocation = document.createElement( "a" ); + ajaxLocation.href = ""; + ajaxLocation = ajaxLocation.href; +} + +// Segment location into parts +ajaxLocParts = rurl.exec( ajaxLocation.toLowerCase() ) || []; + +// Base "constructor" for jQuery.ajaxPrefilter and jQuery.ajaxTransport +function addToPrefiltersOrTransports( structure ) { + + // dataTypeExpression is optional and defaults to "*" + return function( dataTypeExpression, func ) { + + if ( typeof dataTypeExpression !== "string" ) { + func = dataTypeExpression; + dataTypeExpression = "*"; + } + + var dataType, list, placeBefore, + dataTypes = dataTypeExpression.toLowerCase().split( core_rspace ), + i = 0, + length = dataTypes.length; + + if ( jQuery.isFunction( func ) ) { + // For each dataType in the dataTypeExpression + for ( ; i < length; i++ ) { + dataType = dataTypes[ i ]; + // We control if we're asked to add before + // any existing element + placeBefore = /^\+/.test( dataType ); + if ( placeBefore ) { + dataType = dataType.substr( 1 ) || "*"; + } + list = structure[ dataType ] = structure[ dataType ] || []; + // then we add to the structure accordingly + list[ placeBefore ? "unshift" : "push" ]( func ); + } + } + }; +} + +// Base inspection function for prefilters and transports +function inspectPrefiltersOrTransports( structure, options, originalOptions, jqXHR, + dataType /* internal */, inspected /* internal */ ) { + + dataType = dataType || options.dataTypes[ 0 ]; + inspected = inspected || {}; + + inspected[ dataType ] = true; + + var selection, + list = structure[ dataType ], + i = 0, + length = list ? list.length : 0, + executeOnly = ( structure === prefilters ); + + for ( ; i < length && ( executeOnly || !selection ); i++ ) { + selection = list[ i ]( options, originalOptions, jqXHR ); + // If we got redirected to another dataType + // we try there if executing only and not done already + if ( typeof selection === "string" ) { + if ( !executeOnly || inspected[ selection ] ) { + selection = undefined; + } else { + options.dataTypes.unshift( selection ); + selection = inspectPrefiltersOrTransports( + structure, options, originalOptions, jqXHR, selection, inspected ); + } + } + } + // If we're only executing or nothing was selected + // we try the catchall dataType if not done already + if ( ( executeOnly || !selection ) && !inspected[ "*" ] ) { + selection = inspectPrefiltersOrTransports( + structure, options, originalOptions, jqXHR, "*", inspected ); + } + // unnecessary when only executing (prefilters) + // but it'll be ignored by the caller in that case + return selection; +} + +// A special extend for ajax options +// that takes "flat" options (not to be deep extended) +// Fixes #9887 +function ajaxExtend( target, src ) { + var key, deep, + flatOptions = jQuery.ajaxSettings.flatOptions || {}; + for ( key in src ) { + if ( src[ key ] !== undefined ) { + ( flatOptions[ key ] ? target : ( deep || ( deep = {} ) ) )[ key ] = src[ key ]; + } + } + if ( deep ) { + jQuery.extend( true, target, deep ); + } +} + +jQuery.fn.load = function( url, params, callback ) { + if ( typeof url !== "string" && _load ) { + return _load.apply( this, arguments ); + } + + // Don't do a request if no elements are being requested + if ( !this.length ) { + return this; + } + + var selector, type, response, + self = this, + off = url.indexOf(" "); + + if ( off >= 0 ) { + selector = url.slice( off, url.length ); + url = url.slice( 0, off ); + } + + // If it's a function + if ( jQuery.isFunction( params ) ) { + + // We assume that it's the callback + callback = params; + params = undefined; + + // Otherwise, build a param string + } else if ( params && typeof params === "object" ) { + type = "POST"; + } + + // Request the remote document + jQuery.ajax({ + url: url, + + // if "type" variable is undefined, then "GET" method will be used + type: type, + dataType: "html", + data: params, + complete: function( jqXHR, status ) { + if ( callback ) { + self.each( callback, response || [ jqXHR.responseText, status, jqXHR ] ); + } + } + }).done(function( responseText ) { + + // Save response for use in complete callback + response = arguments; + + // See if a selector was specified + self.html( selector ? + + // Create a dummy div to hold the results + jQuery("
") + + // inject the contents of the document in, removing the scripts + // to avoid any 'Permission Denied' errors in IE + .append( responseText.replace( rscript, "" ) ) + + // Locate the specified elements + .find( selector ) : + + // If not, just inject the full result + responseText ); + + }); + + return this; +}; + +// Attach a bunch of functions for handling common AJAX events +jQuery.each( "ajaxStart ajaxStop ajaxComplete ajaxError ajaxSuccess ajaxSend".split( " " ), function( i, o ){ + jQuery.fn[ o ] = function( f ){ + return this.on( o, f ); + }; +}); + +jQuery.each( [ "get", "post" ], function( i, method ) { + jQuery[ method ] = function( url, data, callback, type ) { + // shift arguments if data argument was omitted + if ( jQuery.isFunction( data ) ) { + type = type || callback; + callback = data; + data = undefined; + } + + return jQuery.ajax({ + type: method, + url: url, + data: data, + success: callback, + dataType: type + }); + }; +}); + +jQuery.extend({ + + getScript: function( url, callback ) { + return jQuery.get( url, undefined, callback, "script" ); + }, + + getJSON: function( url, data, callback ) { + return jQuery.get( url, data, callback, "json" ); + }, + + // Creates a full fledged settings object into target + // with both ajaxSettings and settings fields. + // If target is omitted, writes into ajaxSettings. + ajaxSetup: function( target, settings ) { + if ( settings ) { + // Building a settings object + ajaxExtend( target, jQuery.ajaxSettings ); + } else { + // Extending ajaxSettings + settings = target; + target = jQuery.ajaxSettings; + } + ajaxExtend( target, settings ); + return target; + }, + + ajaxSettings: { + url: ajaxLocation, + isLocal: rlocalProtocol.test( ajaxLocParts[ 1 ] ), + global: true, + type: "GET", + contentType: "application/x-www-form-urlencoded; charset=UTF-8", + processData: true, + async: true, + /* + timeout: 0, + data: null, + dataType: null, + username: null, + password: null, + cache: null, + throws: false, + traditional: false, + headers: {}, + */ + + accepts: { + xml: "application/xml, text/xml", + html: "text/html", + text: "text/plain", + json: "application/json, text/javascript", + "*": allTypes + }, + + contents: { + xml: /xml/, + html: /html/, + json: /json/ + }, + + responseFields: { + xml: "responseXML", + text: "responseText" + }, + + // List of data converters + // 1) key format is "source_type destination_type" (a single space in-between) + // 2) the catchall symbol "*" can be used for source_type + converters: { + + // Convert anything to text + "* text": window.String, + + // Text to html (true = no transformation) + "text html": true, + + // Evaluate text as a json expression + "text json": jQuery.parseJSON, + + // Parse text as xml + "text xml": jQuery.parseXML + }, + + // For options that shouldn't be deep extended: + // you can add your own custom options here if + // and when you create one that shouldn't be + // deep extended (see ajaxExtend) + flatOptions: { + context: true, + url: true + } + }, + + ajaxPrefilter: addToPrefiltersOrTransports( prefilters ), + ajaxTransport: addToPrefiltersOrTransports( transports ), + + // Main method + ajax: function( url, options ) { + + // If url is an object, simulate pre-1.5 signature + if ( typeof url === "object" ) { + options = url; + url = undefined; + } + + // Force options to be an object + options = options || {}; + + var // ifModified key + ifModifiedKey, + // Response headers + responseHeadersString, + responseHeaders, + // transport + transport, + // timeout handle + timeoutTimer, + // Cross-domain detection vars + parts, + // To know if global events are to be dispatched + fireGlobals, + // Loop variable + i, + // Create the final options object + s = jQuery.ajaxSetup( {}, options ), + // Callbacks context + callbackContext = s.context || s, + // Context for global events + // It's the callbackContext if one was provided in the options + // and if it's a DOM node or a jQuery collection + globalEventContext = callbackContext !== s && + ( callbackContext.nodeType || callbackContext instanceof jQuery ) ? + jQuery( callbackContext ) : jQuery.event, + // Deferreds + deferred = jQuery.Deferred(), + completeDeferred = jQuery.Callbacks( "once memory" ), + // Status-dependent callbacks + statusCode = s.statusCode || {}, + // Headers (they are sent all at once) + requestHeaders = {}, + requestHeadersNames = {}, + // The jqXHR state + state = 0, + // Default abort message + strAbort = "canceled", + // Fake xhr + jqXHR = { + + readyState: 0, + + // Caches the header + setRequestHeader: function( name, value ) { + if ( !state ) { + var lname = name.toLowerCase(); + name = requestHeadersNames[ lname ] = requestHeadersNames[ lname ] || name; + requestHeaders[ name ] = value; + } + return this; + }, + + // Raw string + getAllResponseHeaders: function() { + return state === 2 ? responseHeadersString : null; + }, + + // Builds headers hashtable if needed + getResponseHeader: function( key ) { + var match; + if ( state === 2 ) { + if ( !responseHeaders ) { + responseHeaders = {}; + while( ( match = rheaders.exec( responseHeadersString ) ) ) { + responseHeaders[ match[1].toLowerCase() ] = match[ 2 ]; + } + } + match = responseHeaders[ key.toLowerCase() ]; + } + return match === undefined ? null : match; + }, + + // Overrides response content-type header + overrideMimeType: function( type ) { + if ( !state ) { + s.mimeType = type; + } + return this; + }, + + // Cancel the request + abort: function( statusText ) { + statusText = statusText || strAbort; + if ( transport ) { + transport.abort( statusText ); + } + done( 0, statusText ); + return this; + } + }; + + // Callback for when everything is done + // It is defined here because jslint complains if it is declared + // at the end of the function (which would be more logical and readable) + function done( status, nativeStatusText, responses, headers ) { + var isSuccess, success, error, response, modified, + statusText = nativeStatusText; + + // Called once + if ( state === 2 ) { + return; + } + + // State is "done" now + state = 2; + + // Clear timeout if it exists + if ( timeoutTimer ) { + clearTimeout( timeoutTimer ); + } + + // Dereference transport for early garbage collection + // (no matter how long the jqXHR object will be used) + transport = undefined; + + // Cache response headers + responseHeadersString = headers || ""; + + // Set readyState + jqXHR.readyState = status > 0 ? 4 : 0; + + // Get response data + if ( responses ) { + response = ajaxHandleResponses( s, jqXHR, responses ); + } + + // If successful, handle type chaining + if ( status >= 200 && status < 300 || status === 304 ) { + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + + modified = jqXHR.getResponseHeader("Last-Modified"); + if ( modified ) { + jQuery.lastModified[ ifModifiedKey ] = modified; + } + modified = jqXHR.getResponseHeader("Etag"); + if ( modified ) { + jQuery.etag[ ifModifiedKey ] = modified; + } + } + + // If not modified + if ( status === 304 ) { + + statusText = "notmodified"; + isSuccess = true; + + // If we have data + } else { + + isSuccess = ajaxConvert( s, response ); + statusText = isSuccess.state; + success = isSuccess.data; + error = isSuccess.error; + isSuccess = !error; + } + } else { + // We extract error from statusText + // then normalize statusText and status for non-aborts + error = statusText; + if ( !statusText || status ) { + statusText = "error"; + if ( status < 0 ) { + status = 0; + } + } + } + + // Set data for the fake xhr object + jqXHR.status = status; + jqXHR.statusText = "" + ( nativeStatusText || statusText ); + + // Success/Error + if ( isSuccess ) { + deferred.resolveWith( callbackContext, [ success, statusText, jqXHR ] ); + } else { + deferred.rejectWith( callbackContext, [ jqXHR, statusText, error ] ); + } + + // Status-dependent callbacks + jqXHR.statusCode( statusCode ); + statusCode = undefined; + + if ( fireGlobals ) { + globalEventContext.trigger( "ajax" + ( isSuccess ? "Success" : "Error" ), + [ jqXHR, s, isSuccess ? success : error ] ); + } + + // Complete + completeDeferred.fireWith( callbackContext, [ jqXHR, statusText ] ); + + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxComplete", [ jqXHR, s ] ); + // Handle the global AJAX counter + if ( !( --jQuery.active ) ) { + jQuery.event.trigger( "ajaxStop" ); + } + } + } + + // Attach deferreds + deferred.promise( jqXHR ); + jqXHR.success = jqXHR.done; + jqXHR.error = jqXHR.fail; + jqXHR.complete = completeDeferred.add; + + // Status-dependent callbacks + jqXHR.statusCode = function( map ) { + if ( map ) { + var tmp; + if ( state < 2 ) { + for ( tmp in map ) { + statusCode[ tmp ] = [ statusCode[tmp], map[tmp] ]; + } + } else { + tmp = map[ jqXHR.status ]; + jqXHR.always( tmp ); + } + } + return this; + }; + + // Remove hash character (#7531: and string promotion) + // Add protocol if not provided (#5866: IE7 issue with protocol-less urls) + // We also use the url parameter if available + s.url = ( ( url || s.url ) + "" ).replace( rhash, "" ).replace( rprotocol, ajaxLocParts[ 1 ] + "//" ); + + // Extract dataTypes list + s.dataTypes = jQuery.trim( s.dataType || "*" ).toLowerCase().split( core_rspace ); + + // Determine if a cross-domain request is in order + if ( s.crossDomain == null ) { + parts = rurl.exec( s.url.toLowerCase() ); + s.crossDomain = !!( parts && + ( parts[ 1 ] != ajaxLocParts[ 1 ] || parts[ 2 ] != ajaxLocParts[ 2 ] || + ( parts[ 3 ] || ( parts[ 1 ] === "http:" ? 80 : 443 ) ) != + ( ajaxLocParts[ 3 ] || ( ajaxLocParts[ 1 ] === "http:" ? 80 : 443 ) ) ) + ); + } + + // Convert data if not already a string + if ( s.data && s.processData && typeof s.data !== "string" ) { + s.data = jQuery.param( s.data, s.traditional ); + } + + // Apply prefilters + inspectPrefiltersOrTransports( prefilters, s, options, jqXHR ); + + // If request was aborted inside a prefilter, stop there + if ( state === 2 ) { + return jqXHR; + } + + // We can fire global events as of now if asked to + fireGlobals = s.global; + + // Uppercase the type + s.type = s.type.toUpperCase(); + + // Determine if request has content + s.hasContent = !rnoContent.test( s.type ); + + // Watch for a new set of requests + if ( fireGlobals && jQuery.active++ === 0 ) { + jQuery.event.trigger( "ajaxStart" ); + } + + // More options handling for requests with no content + if ( !s.hasContent ) { + + // If data is available, append data to url + if ( s.data ) { + s.url += ( rquery.test( s.url ) ? "&" : "?" ) + s.data; + // #9682: remove data so that it's not used in an eventual retry + delete s.data; + } + + // Get ifModifiedKey before adding the anti-cache parameter + ifModifiedKey = s.url; + + // Add anti-cache in url if needed + if ( s.cache === false ) { + + var ts = jQuery.now(), + // try replacing _= if it is there + ret = s.url.replace( rts, "$1_=" + ts ); + + // if nothing was replaced, add timestamp to the end + s.url = ret + ( ( ret === s.url ) ? ( rquery.test( s.url ) ? "&" : "?" ) + "_=" + ts : "" ); + } + } + + // Set the correct header, if data is being sent + if ( s.data && s.hasContent && s.contentType !== false || options.contentType ) { + jqXHR.setRequestHeader( "Content-Type", s.contentType ); + } + + // Set the If-Modified-Since and/or If-None-Match header, if in ifModified mode. + if ( s.ifModified ) { + ifModifiedKey = ifModifiedKey || s.url; + if ( jQuery.lastModified[ ifModifiedKey ] ) { + jqXHR.setRequestHeader( "If-Modified-Since", jQuery.lastModified[ ifModifiedKey ] ); + } + if ( jQuery.etag[ ifModifiedKey ] ) { + jqXHR.setRequestHeader( "If-None-Match", jQuery.etag[ ifModifiedKey ] ); + } + } + + // Set the Accepts header for the server, depending on the dataType + jqXHR.setRequestHeader( + "Accept", + s.dataTypes[ 0 ] && s.accepts[ s.dataTypes[0] ] ? + s.accepts[ s.dataTypes[0] ] + ( s.dataTypes[ 0 ] !== "*" ? ", " + allTypes + "; q=0.01" : "" ) : + s.accepts[ "*" ] + ); + + // Check for headers option + for ( i in s.headers ) { + jqXHR.setRequestHeader( i, s.headers[ i ] ); + } + + // Allow custom headers/mimetypes and early abort + if ( s.beforeSend && ( s.beforeSend.call( callbackContext, jqXHR, s ) === false || state === 2 ) ) { + // Abort if not done already and return + return jqXHR.abort(); + + } + + // aborting is no longer a cancellation + strAbort = "abort"; + + // Install callbacks on deferreds + for ( i in { success: 1, error: 1, complete: 1 } ) { + jqXHR[ i ]( s[ i ] ); + } + + // Get transport + transport = inspectPrefiltersOrTransports( transports, s, options, jqXHR ); + + // If no transport, we auto-abort + if ( !transport ) { + done( -1, "No Transport" ); + } else { + jqXHR.readyState = 1; + // Send global event + if ( fireGlobals ) { + globalEventContext.trigger( "ajaxSend", [ jqXHR, s ] ); + } + // Timeout + if ( s.async && s.timeout > 0 ) { + timeoutTimer = setTimeout( function(){ + jqXHR.abort( "timeout" ); + }, s.timeout ); + } + + try { + state = 1; + transport.send( requestHeaders, done ); + } catch (e) { + // Propagate exception as error if not done + if ( state < 2 ) { + done( -1, e ); + // Simply rethrow otherwise + } else { + throw e; + } + } + } + + return jqXHR; + }, + + // Counter for holding the number of active queries + active: 0, + + // Last-Modified header cache for next request + lastModified: {}, + etag: {} + +}); + +/* Handles responses to an ajax request: + * - sets all responseXXX fields accordingly + * - finds the right dataType (mediates between content-type and expected dataType) + * - returns the corresponding response + */ +function ajaxHandleResponses( s, jqXHR, responses ) { + + var ct, type, finalDataType, firstDataType, + contents = s.contents, + dataTypes = s.dataTypes, + responseFields = s.responseFields; + + // Fill responseXXX fields + for ( type in responseFields ) { + if ( type in responses ) { + jqXHR[ responseFields[type] ] = responses[ type ]; + } + } + + // Remove auto dataType and get content-type in the process + while( dataTypes[ 0 ] === "*" ) { + dataTypes.shift(); + if ( ct === undefined ) { + ct = s.mimeType || jqXHR.getResponseHeader( "content-type" ); + } + } + + // Check if we're dealing with a known content-type + if ( ct ) { + for ( type in contents ) { + if ( contents[ type ] && contents[ type ].test( ct ) ) { + dataTypes.unshift( type ); + break; + } + } + } + + // Check to see if we have a response for the expected dataType + if ( dataTypes[ 0 ] in responses ) { + finalDataType = dataTypes[ 0 ]; + } else { + // Try convertible dataTypes + for ( type in responses ) { + if ( !dataTypes[ 0 ] || s.converters[ type + " " + dataTypes[0] ] ) { + finalDataType = type; + break; + } + if ( !firstDataType ) { + firstDataType = type; + } + } + // Or just use first one + finalDataType = finalDataType || firstDataType; + } + + // If we found a dataType + // We add the dataType to the list if needed + // and return the corresponding response + if ( finalDataType ) { + if ( finalDataType !== dataTypes[ 0 ] ) { + dataTypes.unshift( finalDataType ); + } + return responses[ finalDataType ]; + } +} + +// Chain conversions given the request and the original response +function ajaxConvert( s, response ) { + + var conv, conv2, current, tmp, + // Work with a copy of dataTypes in case we need to modify it for conversion + dataTypes = s.dataTypes.slice(), + prev = dataTypes[ 0 ], + converters = {}, + i = 0; + + // Apply the dataFilter if provided + if ( s.dataFilter ) { + response = s.dataFilter( response, s.dataType ); + } + + // Create converters map with lowercased keys + if ( dataTypes[ 1 ] ) { + for ( conv in s.converters ) { + converters[ conv.toLowerCase() ] = s.converters[ conv ]; + } + } + + // Convert to each sequential dataType, tolerating list modification + for ( ; (current = dataTypes[++i]); ) { + + // There's only work to do if current dataType is non-auto + if ( current !== "*" ) { + + // Convert response if prev dataType is non-auto and differs from current + if ( prev !== "*" && prev !== current ) { + + // Seek a direct converter + conv = converters[ prev + " " + current ] || converters[ "* " + current ]; + + // If none found, seek a pair + if ( !conv ) { + for ( conv2 in converters ) { + + // If conv2 outputs current + tmp = conv2.split(" "); + if ( tmp[ 1 ] === current ) { + + // If prev can be converted to accepted input + conv = converters[ prev + " " + tmp[ 0 ] ] || + converters[ "* " + tmp[ 0 ] ]; + if ( conv ) { + // Condense equivalence converters + if ( conv === true ) { + conv = converters[ conv2 ]; + + // Otherwise, insert the intermediate dataType + } else if ( converters[ conv2 ] !== true ) { + current = tmp[ 0 ]; + dataTypes.splice( i--, 0, current ); + } + + break; + } + } + } + } + + // Apply converter (if not an equivalence) + if ( conv !== true ) { + + // Unless errors are allowed to bubble, catch and return them + if ( conv && s["throws"] ) { + response = conv( response ); + } else { + try { + response = conv( response ); + } catch ( e ) { + return { state: "parsererror", error: conv ? e : "No conversion from " + prev + " to " + current }; + } + } + } + } + + // Update prev for next iteration + prev = current; + } + } + + return { state: "success", data: response }; +} +var oldCallbacks = [], + rquestion = /\?/, + rjsonp = /(=)\?(?=&|$)|\?\?/, + nonce = jQuery.now(); + +// Default jsonp settings +jQuery.ajaxSetup({ + jsonp: "callback", + jsonpCallback: function() { + var callback = oldCallbacks.pop() || ( jQuery.expando + "_" + ( nonce++ ) ); + this[ callback ] = true; + return callback; + } +}); + +// Detect, normalize options and install callbacks for jsonp requests +jQuery.ajaxPrefilter( "json jsonp", function( s, originalSettings, jqXHR ) { + + var callbackName, overwritten, responseContainer, + data = s.data, + url = s.url, + hasCallback = s.jsonp !== false, + replaceInUrl = hasCallback && rjsonp.test( url ), + replaceInData = hasCallback && !replaceInUrl && typeof data === "string" && + !( s.contentType || "" ).indexOf("application/x-www-form-urlencoded") && + rjsonp.test( data ); + + // Handle iff the expected data type is "jsonp" or we have a parameter to set + if ( s.dataTypes[ 0 ] === "jsonp" || replaceInUrl || replaceInData ) { + + // Get callback name, remembering preexisting value associated with it + callbackName = s.jsonpCallback = jQuery.isFunction( s.jsonpCallback ) ? + s.jsonpCallback() : + s.jsonpCallback; + overwritten = window[ callbackName ]; + + // Insert callback into url or form data + if ( replaceInUrl ) { + s.url = url.replace( rjsonp, "$1" + callbackName ); + } else if ( replaceInData ) { + s.data = data.replace( rjsonp, "$1" + callbackName ); + } else if ( hasCallback ) { + s.url += ( rquestion.test( url ) ? "&" : "?" ) + s.jsonp + "=" + callbackName; + } + + // Use data converter to retrieve json after script execution + s.converters["script json"] = function() { + if ( !responseContainer ) { + jQuery.error( callbackName + " was not called" ); + } + return responseContainer[ 0 ]; + }; + + // force json dataType + s.dataTypes[ 0 ] = "json"; + + // Install callback + window[ callbackName ] = function() { + responseContainer = arguments; + }; + + // Clean-up function (fires after converters) + jqXHR.always(function() { + // Restore preexisting value + window[ callbackName ] = overwritten; + + // Save back as free + if ( s[ callbackName ] ) { + // make sure that re-using the options doesn't screw things around + s.jsonpCallback = originalSettings.jsonpCallback; + + // save the callback name for future use + oldCallbacks.push( callbackName ); + } + + // Call if it was a function and we have a response + if ( responseContainer && jQuery.isFunction( overwritten ) ) { + overwritten( responseContainer[ 0 ] ); + } + + responseContainer = overwritten = undefined; + }); + + // Delegate to script + return "script"; + } +}); +// Install script dataType +jQuery.ajaxSetup({ + accepts: { + script: "text/javascript, application/javascript, application/ecmascript, application/x-ecmascript" + }, + contents: { + script: /javascript|ecmascript/ + }, + converters: { + "text script": function( text ) { + jQuery.globalEval( text ); + return text; + } + } +}); + +// Handle cache's special case and global +jQuery.ajaxPrefilter( "script", function( s ) { + if ( s.cache === undefined ) { + s.cache = false; + } + if ( s.crossDomain ) { + s.type = "GET"; + s.global = false; + } +}); + +// Bind script tag hack transport +jQuery.ajaxTransport( "script", function(s) { + + // This transport only deals with cross domain requests + if ( s.crossDomain ) { + + var script, + head = document.head || document.getElementsByTagName( "head" )[0] || document.documentElement; + + return { + + send: function( _, callback ) { + + script = document.createElement( "script" ); + + script.async = "async"; + + if ( s.scriptCharset ) { + script.charset = s.scriptCharset; + } + + script.src = s.url; + + // Attach handlers for all browsers + script.onload = script.onreadystatechange = function( _, isAbort ) { + + if ( isAbort || !script.readyState || /loaded|complete/.test( script.readyState ) ) { + + // Handle memory leak in IE + script.onload = script.onreadystatechange = null; + + // Remove the script + if ( head && script.parentNode ) { + head.removeChild( script ); + } + + // Dereference the script + script = undefined; + + // Callback if not abort + if ( !isAbort ) { + callback( 200, "success" ); + } + } + }; + // Use insertBefore instead of appendChild to circumvent an IE6 bug. + // This arises when a base node is used (#2709 and #4378). + head.insertBefore( script, head.firstChild ); + }, + + abort: function() { + if ( script ) { + script.onload( 0, 1 ); + } + } + }; + } +}); +var xhrCallbacks, + // #5280: Internet Explorer will keep connections alive if we don't abort on unload + xhrOnUnloadAbort = window.ActiveXObject ? function() { + // Abort all pending requests + for ( var key in xhrCallbacks ) { + xhrCallbacks[ key ]( 0, 1 ); + } + } : false, + xhrId = 0; + +// Functions to create xhrs +function createStandardXHR() { + try { + return new window.XMLHttpRequest(); + } catch( e ) {} +} + +function createActiveXHR() { + try { + return new window.ActiveXObject( "Microsoft.XMLHTTP" ); + } catch( e ) {} +} + +// Create the request object +// (This is still attached to ajaxSettings for backward compatibility) +jQuery.ajaxSettings.xhr = window.ActiveXObject ? + /* Microsoft failed to properly + * implement the XMLHttpRequest in IE7 (can't request local files), + * so we use the ActiveXObject when it is available + * Additionally XMLHttpRequest can be disabled in IE7/IE8 so + * we need a fallback. + */ + function() { + return !this.isLocal && createStandardXHR() || createActiveXHR(); + } : + // For all other browsers, use the standard XMLHttpRequest object + createStandardXHR; + +// Determine support properties +(function( xhr ) { + jQuery.extend( jQuery.support, { + ajax: !!xhr, + cors: !!xhr && ( "withCredentials" in xhr ) + }); +})( jQuery.ajaxSettings.xhr() ); + +// Create transport if the browser can provide an xhr +if ( jQuery.support.ajax ) { + + jQuery.ajaxTransport(function( s ) { + // Cross domain only allowed if supported through XMLHttpRequest + if ( !s.crossDomain || jQuery.support.cors ) { + + var callback; + + return { + send: function( headers, complete ) { + + // Get a new xhr + var handle, i, + xhr = s.xhr(); + + // Open the socket + // Passing null username, generates a login popup on Opera (#2865) + if ( s.username ) { + xhr.open( s.type, s.url, s.async, s.username, s.password ); + } else { + xhr.open( s.type, s.url, s.async ); + } + + // Apply custom fields if provided + if ( s.xhrFields ) { + for ( i in s.xhrFields ) { + xhr[ i ] = s.xhrFields[ i ]; + } + } + + // Override mime type if needed + if ( s.mimeType && xhr.overrideMimeType ) { + xhr.overrideMimeType( s.mimeType ); + } + + // X-Requested-With header + // For cross-domain requests, seeing as conditions for a preflight are + // akin to a jigsaw puzzle, we simply never set it to be sure. + // (it can always be set on a per-request basis or even using ajaxSetup) + // For same-domain requests, won't change header if already provided. + if ( !s.crossDomain && !headers["X-Requested-With"] ) { + headers[ "X-Requested-With" ] = "XMLHttpRequest"; + } + + // Need an extra try/catch for cross domain requests in Firefox 3 + try { + for ( i in headers ) { + xhr.setRequestHeader( i, headers[ i ] ); + } + } catch( _ ) {} + + // Do send the request + // This may raise an exception which is actually + // handled in jQuery.ajax (so no try/catch here) + xhr.send( ( s.hasContent && s.data ) || null ); + + // Listener + callback = function( _, isAbort ) { + + var status, + statusText, + responseHeaders, + responses, + xml; + + // Firefox throws exceptions when accessing properties + // of an xhr when a network error occurred + // http://helpful.knobs-dials.com/index.php/Component_returned_failure_code:_0x80040111_(NS_ERROR_NOT_AVAILABLE) + try { + + // Was never called and is aborted or complete + if ( callback && ( isAbort || xhr.readyState === 4 ) ) { + + // Only called once + callback = undefined; + + // Do not keep as active anymore + if ( handle ) { + xhr.onreadystatechange = jQuery.noop; + if ( xhrOnUnloadAbort ) { + delete xhrCallbacks[ handle ]; + } + } + + // If it's an abort + if ( isAbort ) { + // Abort it manually if needed + if ( xhr.readyState !== 4 ) { + xhr.abort(); + } + } else { + status = xhr.status; + responseHeaders = xhr.getAllResponseHeaders(); + responses = {}; + xml = xhr.responseXML; + + // Construct response list + if ( xml && xml.documentElement /* #4958 */ ) { + responses.xml = xml; + } + + // When requesting binary data, IE6-9 will throw an exception + // on any attempt to access responseText (#11426) + try { + responses.text = xhr.responseText; + } catch( _ ) { + } + + // Firefox throws an exception when accessing + // statusText for faulty cross-domain requests + try { + statusText = xhr.statusText; + } catch( e ) { + // We normalize with Webkit giving an empty statusText + statusText = ""; + } + + // Filter status for non standard behaviors + + // If the request is local and we have data: assume a success + // (success with no data won't get notified, that's the best we + // can do given current implementations) + if ( !status && s.isLocal && !s.crossDomain ) { + status = responses.text ? 200 : 404; + // IE - #1450: sometimes returns 1223 when it should be 204 + } else if ( status === 1223 ) { + status = 204; + } + } + } + } catch( firefoxAccessException ) { + if ( !isAbort ) { + complete( -1, firefoxAccessException ); + } + } + + // Call complete if needed + if ( responses ) { + complete( status, statusText, responses, responseHeaders ); + } + }; + + if ( !s.async ) { + // if we're in sync mode we fire the callback + callback(); + } else if ( xhr.readyState === 4 ) { + // (IE6 & IE7) if it's in cache and has been + // retrieved directly we need to fire the callback + setTimeout( callback, 0 ); + } else { + handle = ++xhrId; + if ( xhrOnUnloadAbort ) { + // Create the active xhrs callbacks list if needed + // and attach the unload handler + if ( !xhrCallbacks ) { + xhrCallbacks = {}; + jQuery( window ).unload( xhrOnUnloadAbort ); + } + // Add to list of active xhrs callbacks + xhrCallbacks[ handle ] = callback; + } + xhr.onreadystatechange = callback; + } + }, + + abort: function() { + if ( callback ) { + callback(0,1); + } + } + }; + } + }); +} +var fxNow, timerId, + rfxtypes = /^(?:toggle|show|hide)$/, + rfxnum = new RegExp( "^(?:([-+])=|)(" + core_pnum + ")([a-z%]*)$", "i" ), + rrun = /queueHooks$/, + animationPrefilters = [ defaultPrefilter ], + tweeners = { + "*": [function( prop, value ) { + var end, unit, prevScale, + tween = this.createTween( prop, value ), + parts = rfxnum.exec( value ), + target = tween.cur(), + start = +target || 0, + scale = 1; + + if ( parts ) { + end = +parts[2]; + unit = parts[3] || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + + // We need to compute starting value + if ( unit !== "px" && start ) { + // Iteratively approximate from a nonzero starting point + // Prefer the current property, because this process will be trivial if it uses the same units + // Fallback to end or a simple constant + start = jQuery.css( tween.elem, prop, true ) || end || 1; + + do { + // If previous iteration zeroed out, double until we get *something* + // Use a string for doubling factor so we don't accidentally see scale as unchanged below + prevScale = scale = scale || ".5"; + + // Adjust and apply + start = start / scale; + jQuery.style( tween.elem, prop, start + unit ); + + // Update scale, tolerating zeroes from tween.cur() + scale = tween.cur() / target; + + // Stop looping if we've hit the mark or scale is unchanged + } while ( scale !== 1 && scale !== prevScale ); + } + + tween.unit = unit; + tween.start = start; + // If a +=/-= token was provided, we're doing a relative animation + tween.end = parts[1] ? start + ( parts[1] + 1 ) * end : end; + } + return tween; + }] + }; + +// Animations created synchronously will run synchronously +function createFxNow() { + setTimeout(function() { + fxNow = undefined; + }, 0 ); + return ( fxNow = jQuery.now() ); +} + +function createTweens( animation, props ) { + jQuery.each( props, function( prop, value ) { + var collection = ( tweeners[ prop ] || [] ).concat( tweeners[ "*" ] ), + index = 0, + length = collection.length; + for ( ; index < length; index++ ) { + if ( collection[ index ].call( animation, prop, value ) ) { + + // we're done with this property + return; + } + } + }); +} + +function Animation( elem, properties, options ) { + var result, + index = 0, + tweenerIndex = 0, + length = animationPrefilters.length, + deferred = jQuery.Deferred().always( function() { + // don't match elem in the :animated selector + delete tick.elem; + }), + tick = function() { + var currentTime = fxNow || createFxNow(), + remaining = Math.max( 0, animation.startTime + animation.duration - currentTime ), + percent = 1 - ( remaining / animation.duration || 0 ), + index = 0, + length = animation.tweens.length; + + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( percent ); + } + + deferred.notifyWith( elem, [ animation, percent, remaining ]); + + if ( percent < 1 && length ) { + return remaining; + } else { + deferred.resolveWith( elem, [ animation ] ); + return false; + } + }, + animation = deferred.promise({ + elem: elem, + props: jQuery.extend( {}, properties ), + opts: jQuery.extend( true, { specialEasing: {} }, options ), + originalProperties: properties, + originalOptions: options, + startTime: fxNow || createFxNow(), + duration: options.duration, + tweens: [], + createTween: function( prop, end, easing ) { + var tween = jQuery.Tween( elem, animation.opts, prop, end, + animation.opts.specialEasing[ prop ] || animation.opts.easing ); + animation.tweens.push( tween ); + return tween; + }, + stop: function( gotoEnd ) { + var index = 0, + // if we are going to the end, we want to run all the tweens + // otherwise we skip this part + length = gotoEnd ? animation.tweens.length : 0; + + for ( ; index < length ; index++ ) { + animation.tweens[ index ].run( 1 ); + } + + // resolve when we played the last frame + // otherwise, reject + if ( gotoEnd ) { + deferred.resolveWith( elem, [ animation, gotoEnd ] ); + } else { + deferred.rejectWith( elem, [ animation, gotoEnd ] ); + } + return this; + } + }), + props = animation.props; + + propFilter( props, animation.opts.specialEasing ); + + for ( ; index < length ; index++ ) { + result = animationPrefilters[ index ].call( animation, elem, props, animation.opts ); + if ( result ) { + return result; + } + } + + createTweens( animation, props ); + + if ( jQuery.isFunction( animation.opts.start ) ) { + animation.opts.start.call( elem, animation ); + } + + jQuery.fx.timer( + jQuery.extend( tick, { + anim: animation, + queue: animation.opts.queue, + elem: elem + }) + ); + + // attach callbacks from options + return animation.progress( animation.opts.progress ) + .done( animation.opts.done, animation.opts.complete ) + .fail( animation.opts.fail ) + .always( animation.opts.always ); +} + +function propFilter( props, specialEasing ) { + var index, name, easing, value, hooks; + + // camelCase, specialEasing and expand cssHook pass + for ( index in props ) { + name = jQuery.camelCase( index ); + easing = specialEasing[ name ]; + value = props[ index ]; + if ( jQuery.isArray( value ) ) { + easing = value[ 1 ]; + value = props[ index ] = value[ 0 ]; + } + + if ( index !== name ) { + props[ name ] = value; + delete props[ index ]; + } + + hooks = jQuery.cssHooks[ name ]; + if ( hooks && "expand" in hooks ) { + value = hooks.expand( value ); + delete props[ name ]; + + // not quite $.extend, this wont overwrite keys already present. + // also - reusing 'index' from above because we have the correct "name" + for ( index in value ) { + if ( !( index in props ) ) { + props[ index ] = value[ index ]; + specialEasing[ index ] = easing; + } + } + } else { + specialEasing[ name ] = easing; + } + } +} + +jQuery.Animation = jQuery.extend( Animation, { + + tweener: function( props, callback ) { + if ( jQuery.isFunction( props ) ) { + callback = props; + props = [ "*" ]; + } else { + props = props.split(" "); + } + + var prop, + index = 0, + length = props.length; + + for ( ; index < length ; index++ ) { + prop = props[ index ]; + tweeners[ prop ] = tweeners[ prop ] || []; + tweeners[ prop ].unshift( callback ); + } + }, + + prefilter: function( callback, prepend ) { + if ( prepend ) { + animationPrefilters.unshift( callback ); + } else { + animationPrefilters.push( callback ); + } + } +}); + +function defaultPrefilter( elem, props, opts ) { + var index, prop, value, length, dataShow, tween, hooks, oldfire, + anim = this, + style = elem.style, + orig = {}, + handled = [], + hidden = elem.nodeType && isHidden( elem ); + + // handle queue: false promises + if ( !opts.queue ) { + hooks = jQuery._queueHooks( elem, "fx" ); + if ( hooks.unqueued == null ) { + hooks.unqueued = 0; + oldfire = hooks.empty.fire; + hooks.empty.fire = function() { + if ( !hooks.unqueued ) { + oldfire(); + } + }; + } + hooks.unqueued++; + + anim.always(function() { + // doing this makes sure that the complete handler will be called + // before this completes + anim.always(function() { + hooks.unqueued--; + if ( !jQuery.queue( elem, "fx" ).length ) { + hooks.empty.fire(); + } + }); + }); + } + + // height/width overflow pass + if ( elem.nodeType === 1 && ( "height" in props || "width" in props ) ) { + // Make sure that nothing sneaks out + // Record all 3 overflow attributes because IE does not + // change the overflow attribute when overflowX and + // overflowY are set to the same value + opts.overflow = [ style.overflow, style.overflowX, style.overflowY ]; + + // Set display property to inline-block for height/width + // animations on inline elements that are having width/height animated + if ( jQuery.css( elem, "display" ) === "inline" && + jQuery.css( elem, "float" ) === "none" ) { + + // inline-level elements accept inline-block; + // block-level elements need to be inline with layout + if ( !jQuery.support.inlineBlockNeedsLayout || css_defaultDisplay( elem.nodeName ) === "inline" ) { + style.display = "inline-block"; + + } else { + style.zoom = 1; + } + } + } + + if ( opts.overflow ) { + style.overflow = "hidden"; + if ( !jQuery.support.shrinkWrapBlocks ) { + anim.done(function() { + style.overflow = opts.overflow[ 0 ]; + style.overflowX = opts.overflow[ 1 ]; + style.overflowY = opts.overflow[ 2 ]; + }); + } + } + + + // show/hide pass + for ( index in props ) { + value = props[ index ]; + if ( rfxtypes.exec( value ) ) { + delete props[ index ]; + if ( value === ( hidden ? "hide" : "show" ) ) { + continue; + } + handled.push( index ); + } + } + + length = handled.length; + if ( length ) { + dataShow = jQuery._data( elem, "fxshow" ) || jQuery._data( elem, "fxshow", {} ); + if ( hidden ) { + jQuery( elem ).show(); + } else { + anim.done(function() { + jQuery( elem ).hide(); + }); + } + anim.done(function() { + var prop; + jQuery.removeData( elem, "fxshow", true ); + for ( prop in orig ) { + jQuery.style( elem, prop, orig[ prop ] ); + } + }); + for ( index = 0 ; index < length ; index++ ) { + prop = handled[ index ]; + tween = anim.createTween( prop, hidden ? dataShow[ prop ] : 0 ); + orig[ prop ] = dataShow[ prop ] || jQuery.style( elem, prop ); + + if ( !( prop in dataShow ) ) { + dataShow[ prop ] = tween.start; + if ( hidden ) { + tween.end = tween.start; + tween.start = prop === "width" || prop === "height" ? 1 : 0; + } + } + } + } +} + +function Tween( elem, options, prop, end, easing ) { + return new Tween.prototype.init( elem, options, prop, end, easing ); +} +jQuery.Tween = Tween; + +Tween.prototype = { + constructor: Tween, + init: function( elem, options, prop, end, easing, unit ) { + this.elem = elem; + this.prop = prop; + this.easing = easing || "swing"; + this.options = options; + this.start = this.now = this.cur(); + this.end = end; + this.unit = unit || ( jQuery.cssNumber[ prop ] ? "" : "px" ); + }, + cur: function() { + var hooks = Tween.propHooks[ this.prop ]; + + return hooks && hooks.get ? + hooks.get( this ) : + Tween.propHooks._default.get( this ); + }, + run: function( percent ) { + var eased, + hooks = Tween.propHooks[ this.prop ]; + + if ( this.options.duration ) { + this.pos = eased = jQuery.easing[ this.easing ]( + percent, this.options.duration * percent, 0, 1, this.options.duration + ); + } else { + this.pos = eased = percent; + } + this.now = ( this.end - this.start ) * eased + this.start; + + if ( this.options.step ) { + this.options.step.call( this.elem, this.now, this ); + } + + if ( hooks && hooks.set ) { + hooks.set( this ); + } else { + Tween.propHooks._default.set( this ); + } + return this; + } +}; + +Tween.prototype.init.prototype = Tween.prototype; + +Tween.propHooks = { + _default: { + get: function( tween ) { + var result; + + if ( tween.elem[ tween.prop ] != null && + (!tween.elem.style || tween.elem.style[ tween.prop ] == null) ) { + return tween.elem[ tween.prop ]; + } + + // passing any value as a 4th parameter to .css will automatically + // attempt a parseFloat and fallback to a string if the parse fails + // so, simple values such as "10px" are parsed to Float. + // complex values such as "rotate(1rad)" are returned as is. + result = jQuery.css( tween.elem, tween.prop, false, "" ); + // Empty strings, null, undefined and "auto" are converted to 0. + return !result || result === "auto" ? 0 : result; + }, + set: function( tween ) { + // use step hook for back compat - use cssHook if its there - use .style if its + // available and use plain properties where available + if ( jQuery.fx.step[ tween.prop ] ) { + jQuery.fx.step[ tween.prop ]( tween ); + } else if ( tween.elem.style && ( tween.elem.style[ jQuery.cssProps[ tween.prop ] ] != null || jQuery.cssHooks[ tween.prop ] ) ) { + jQuery.style( tween.elem, tween.prop, tween.now + tween.unit ); + } else { + tween.elem[ tween.prop ] = tween.now; + } + } + } +}; + +// Remove in 2.0 - this supports IE8's panic based approach +// to setting things on disconnected nodes + +Tween.propHooks.scrollTop = Tween.propHooks.scrollLeft = { + set: function( tween ) { + if ( tween.elem.nodeType && tween.elem.parentNode ) { + tween.elem[ tween.prop ] = tween.now; + } + } +}; + +jQuery.each([ "toggle", "show", "hide" ], function( i, name ) { + var cssFn = jQuery.fn[ name ]; + jQuery.fn[ name ] = function( speed, easing, callback ) { + return speed == null || typeof speed === "boolean" || + // special check for .toggle( handler, handler, ... ) + ( !i && jQuery.isFunction( speed ) && jQuery.isFunction( easing ) ) ? + cssFn.apply( this, arguments ) : + this.animate( genFx( name, true ), speed, easing, callback ); + }; +}); + +jQuery.fn.extend({ + fadeTo: function( speed, to, easing, callback ) { + + // show any hidden elements after setting opacity to 0 + return this.filter( isHidden ).css( "opacity", 0 ).show() + + // animate to the value specified + .end().animate({ opacity: to }, speed, easing, callback ); + }, + animate: function( prop, speed, easing, callback ) { + var empty = jQuery.isEmptyObject( prop ), + optall = jQuery.speed( speed, easing, callback ), + doAnimation = function() { + // Operate on a copy of prop so per-property easing won't be lost + var anim = Animation( this, jQuery.extend( {}, prop ), optall ); + + // Empty animations resolve immediately + if ( empty ) { + anim.stop( true ); + } + }; + + return empty || optall.queue === false ? + this.each( doAnimation ) : + this.queue( optall.queue, doAnimation ); + }, + stop: function( type, clearQueue, gotoEnd ) { + var stopQueue = function( hooks ) { + var stop = hooks.stop; + delete hooks.stop; + stop( gotoEnd ); + }; + + if ( typeof type !== "string" ) { + gotoEnd = clearQueue; + clearQueue = type; + type = undefined; + } + if ( clearQueue && type !== false ) { + this.queue( type || "fx", [] ); + } + + return this.each(function() { + var dequeue = true, + index = type != null && type + "queueHooks", + timers = jQuery.timers, + data = jQuery._data( this ); + + if ( index ) { + if ( data[ index ] && data[ index ].stop ) { + stopQueue( data[ index ] ); + } + } else { + for ( index in data ) { + if ( data[ index ] && data[ index ].stop && rrun.test( index ) ) { + stopQueue( data[ index ] ); + } + } + } + + for ( index = timers.length; index--; ) { + if ( timers[ index ].elem === this && (type == null || timers[ index ].queue === type) ) { + timers[ index ].anim.stop( gotoEnd ); + dequeue = false; + timers.splice( index, 1 ); + } + } + + // start the next in the queue if the last step wasn't forced + // timers currently will call their complete callbacks, which will dequeue + // but only if they were gotoEnd + if ( dequeue || !gotoEnd ) { + jQuery.dequeue( this, type ); + } + }); + } +}); + +// Generate parameters to create a standard animation +function genFx( type, includeWidth ) { + var which, + attrs = { height: type }, + i = 0; + + // if we include width, step value is 1 to do all cssExpand values, + // if we don't include width, step value is 2 to skip over Left and Right + includeWidth = includeWidth? 1 : 0; + for( ; i < 4 ; i += 2 - includeWidth ) { + which = cssExpand[ i ]; + attrs[ "margin" + which ] = attrs[ "padding" + which ] = type; + } + + if ( includeWidth ) { + attrs.opacity = attrs.width = type; + } + + return attrs; +} + +// Generate shortcuts for custom animations +jQuery.each({ + slideDown: genFx("show"), + slideUp: genFx("hide"), + slideToggle: genFx("toggle"), + fadeIn: { opacity: "show" }, + fadeOut: { opacity: "hide" }, + fadeToggle: { opacity: "toggle" } +}, function( name, props ) { + jQuery.fn[ name ] = function( speed, easing, callback ) { + return this.animate( props, speed, easing, callback ); + }; +}); + +jQuery.speed = function( speed, easing, fn ) { + var opt = speed && typeof speed === "object" ? jQuery.extend( {}, speed ) : { + complete: fn || !fn && easing || + jQuery.isFunction( speed ) && speed, + duration: speed, + easing: fn && easing || easing && !jQuery.isFunction( easing ) && easing + }; + + opt.duration = jQuery.fx.off ? 0 : typeof opt.duration === "number" ? opt.duration : + opt.duration in jQuery.fx.speeds ? jQuery.fx.speeds[ opt.duration ] : jQuery.fx.speeds._default; + + // normalize opt.queue - true/undefined/null -> "fx" + if ( opt.queue == null || opt.queue === true ) { + opt.queue = "fx"; + } + + // Queueing + opt.old = opt.complete; + + opt.complete = function() { + if ( jQuery.isFunction( opt.old ) ) { + opt.old.call( this ); + } + + if ( opt.queue ) { + jQuery.dequeue( this, opt.queue ); + } + }; + + return opt; +}; + +jQuery.easing = { + linear: function( p ) { + return p; + }, + swing: function( p ) { + return 0.5 - Math.cos( p*Math.PI ) / 2; + } +}; + +jQuery.timers = []; +jQuery.fx = Tween.prototype.init; +jQuery.fx.tick = function() { + var timer, + timers = jQuery.timers, + i = 0; + + for ( ; i < timers.length; i++ ) { + timer = timers[ i ]; + // Checks the timer has not already been removed + if ( !timer() && timers[ i ] === timer ) { + timers.splice( i--, 1 ); + } + } + + if ( !timers.length ) { + jQuery.fx.stop(); + } +}; + +jQuery.fx.timer = function( timer ) { + if ( timer() && jQuery.timers.push( timer ) && !timerId ) { + timerId = setInterval( jQuery.fx.tick, jQuery.fx.interval ); + } +}; + +jQuery.fx.interval = 13; + +jQuery.fx.stop = function() { + clearInterval( timerId ); + timerId = null; +}; + +jQuery.fx.speeds = { + slow: 600, + fast: 200, + // Default speed + _default: 400 +}; + +// Back Compat <1.8 extension point +jQuery.fx.step = {}; + +if ( jQuery.expr && jQuery.expr.filters ) { + jQuery.expr.filters.animated = function( elem ) { + return jQuery.grep(jQuery.timers, function( fn ) { + return elem === fn.elem; + }).length; + }; +} +var rroot = /^(?:body|html)$/i; + +jQuery.fn.offset = function( options ) { + if ( arguments.length ) { + return options === undefined ? + this : + this.each(function( i ) { + jQuery.offset.setOffset( this, options, i ); + }); + } + + var box, docElem, body, win, clientTop, clientLeft, scrollTop, scrollLeft, top, left, + elem = this[ 0 ], + doc = elem && elem.ownerDocument; + + if ( !doc ) { + return; + } + + if ( (body = doc.body) === elem ) { + return jQuery.offset.bodyOffset( elem ); + } + + docElem = doc.documentElement; + + // Make sure we're not dealing with a disconnected DOM node + if ( !jQuery.contains( docElem, elem ) ) { + return { top: 0, left: 0 }; + } + + box = elem.getBoundingClientRect(); + win = getWindow( doc ); + clientTop = docElem.clientTop || body.clientTop || 0; + clientLeft = docElem.clientLeft || body.clientLeft || 0; + scrollTop = win.pageYOffset || docElem.scrollTop; + scrollLeft = win.pageXOffset || docElem.scrollLeft; + top = box.top + scrollTop - clientTop; + left = box.left + scrollLeft - clientLeft; + + return { top: top, left: left }; +}; + +jQuery.offset = { + + bodyOffset: function( body ) { + var top = body.offsetTop, + left = body.offsetLeft; + + if ( jQuery.support.doesNotIncludeMarginInBodyOffset ) { + top += parseFloat( jQuery.css(body, "marginTop") ) || 0; + left += parseFloat( jQuery.css(body, "marginLeft") ) || 0; + } + + return { top: top, left: left }; + }, + + setOffset: function( elem, options, i ) { + var position = jQuery.css( elem, "position" ); + + // set position first, in-case top/left are set even on static elem + if ( position === "static" ) { + elem.style.position = "relative"; + } + + var curElem = jQuery( elem ), + curOffset = curElem.offset(), + curCSSTop = jQuery.css( elem, "top" ), + curCSSLeft = jQuery.css( elem, "left" ), + calculatePosition = ( position === "absolute" || position === "fixed" ) && jQuery.inArray("auto", [curCSSTop, curCSSLeft]) > -1, + props = {}, curPosition = {}, curTop, curLeft; + + // need to be able to calculate position if either top or left is auto and position is either absolute or fixed + if ( calculatePosition ) { + curPosition = curElem.position(); + curTop = curPosition.top; + curLeft = curPosition.left; + } else { + curTop = parseFloat( curCSSTop ) || 0; + curLeft = parseFloat( curCSSLeft ) || 0; + } + + if ( jQuery.isFunction( options ) ) { + options = options.call( elem, i, curOffset ); + } + + if ( options.top != null ) { + props.top = ( options.top - curOffset.top ) + curTop; + } + if ( options.left != null ) { + props.left = ( options.left - curOffset.left ) + curLeft; + } + + if ( "using" in options ) { + options.using.call( elem, props ); + } else { + curElem.css( props ); + } + } +}; + + +jQuery.fn.extend({ + + position: function() { + if ( !this[0] ) { + return; + } + + var elem = this[0], + + // Get *real* offsetParent + offsetParent = this.offsetParent(), + + // Get correct offsets + offset = this.offset(), + parentOffset = rroot.test(offsetParent[0].nodeName) ? { top: 0, left: 0 } : offsetParent.offset(); + + // Subtract element margins + // note: when an element has margin: auto the offsetLeft and marginLeft + // are the same in Safari causing offset.left to incorrectly be 0 + offset.top -= parseFloat( jQuery.css(elem, "marginTop") ) || 0; + offset.left -= parseFloat( jQuery.css(elem, "marginLeft") ) || 0; + + // Add offsetParent borders + parentOffset.top += parseFloat( jQuery.css(offsetParent[0], "borderTopWidth") ) || 0; + parentOffset.left += parseFloat( jQuery.css(offsetParent[0], "borderLeftWidth") ) || 0; + + // Subtract the two offsets + return { + top: offset.top - parentOffset.top, + left: offset.left - parentOffset.left + }; + }, + + offsetParent: function() { + return this.map(function() { + var offsetParent = this.offsetParent || document.body; + while ( offsetParent && (!rroot.test(offsetParent.nodeName) && jQuery.css(offsetParent, "position") === "static") ) { + offsetParent = offsetParent.offsetParent; + } + return offsetParent || document.body; + }); + } +}); + + +// Create scrollLeft and scrollTop methods +jQuery.each( {scrollLeft: "pageXOffset", scrollTop: "pageYOffset"}, function( method, prop ) { + var top = /Y/.test( prop ); + + jQuery.fn[ method ] = function( val ) { + return jQuery.access( this, function( elem, method, val ) { + var win = getWindow( elem ); + + if ( val === undefined ) { + return win ? (prop in win) ? win[ prop ] : + win.document.documentElement[ method ] : + elem[ method ]; + } + + if ( win ) { + win.scrollTo( + !top ? val : jQuery( win ).scrollLeft(), + top ? val : jQuery( win ).scrollTop() + ); + + } else { + elem[ method ] = val; + } + }, method, val, arguments.length, null ); + }; +}); + +function getWindow( elem ) { + return jQuery.isWindow( elem ) ? + elem : + elem.nodeType === 9 ? + elem.defaultView || elem.parentWindow : + false; +} +// Create innerHeight, innerWidth, height, width, outerHeight and outerWidth methods +jQuery.each( { Height: "height", Width: "width" }, function( name, type ) { + jQuery.each( { padding: "inner" + name, content: type, "": "outer" + name }, function( defaultExtra, funcName ) { + // margin is only for outerHeight, outerWidth + jQuery.fn[ funcName ] = function( margin, value ) { + var chainable = arguments.length && ( defaultExtra || typeof margin !== "boolean" ), + extra = defaultExtra || ( margin === true || value === true ? "margin" : "border" ); + + return jQuery.access( this, function( elem, type, value ) { + var doc; + + if ( jQuery.isWindow( elem ) ) { + // As of 5/8/2012 this will yield incorrect results for Mobile Safari, but there + // isn't a whole lot we can do. See pull request at this URL for discussion: + // https://github.com/jquery/jquery/pull/764 + return elem.document.documentElement[ "client" + name ]; + } + + // Get document width or height + if ( elem.nodeType === 9 ) { + doc = elem.documentElement; + + // Either scroll[Width/Height] or offset[Width/Height] or client[Width/Height], whichever is greatest + // unfortunately, this causes bug #3838 in IE6/8 only, but there is currently no good, small way to fix it. + return Math.max( + elem.body[ "scroll" + name ], doc[ "scroll" + name ], + elem.body[ "offset" + name ], doc[ "offset" + name ], + doc[ "client" + name ] + ); + } + + return value === undefined ? + // Get width or height on the element, requesting but not forcing parseFloat + jQuery.css( elem, type, value, extra ) : + + // Set width or height on the element + jQuery.style( elem, type, value, extra ); + }, type, chainable ? margin : undefined, chainable, null ); + }; + }); +}); +// Expose jQuery to the global object +window.jQuery = window.$ = jQuery; + +// Expose jQuery as an AMD module, but only for AMD loaders that +// understand the issues with loading multiple versions of jQuery +// in a page that all might call define(). The loader will indicate +// they have special allowances for multiple jQuery versions by +// specifying define.amd.jQuery = true. Register as a named module, +// since jQuery can be concatenated with other files that may use define, +// but not use a proper concatenation script that understands anonymous +// AMD modules. A named AMD is safest and most robust way to register. +// Lowercase jquery is used because AMD module names are derived from +// file names, and jQuery is normally delivered in a lowercase file name. +// Do this after creating the global so that if an AMD module wants to call +// noConflict to hide this version of jQuery, it will work. +if ( typeof define === "function" && define.amd && define.amd.jQuery ) { + define( "jquery", [], function () { return jQuery; } ); +} + +return jQuery; + +})( window ); })); + +})(window) +},{}]},{},[2]) +; \ No newline at end of file diff --git a/lib/jquery-mousewheel/test/browserify/index.html b/lib/jquery-mousewheel/test/browserify/index.html new file mode 100644 index 000000000..b7431a696 --- /dev/null +++ b/lib/jquery-mousewheel/test/browserify/index.html @@ -0,0 +1,4 @@ + + diff --git a/lib/jquery-mousewheel/test/browserify/main.js b/lib/jquery-mousewheel/test/browserify/main.js new file mode 100644 index 000000000..7462bae19 --- /dev/null +++ b/lib/jquery-mousewheel/test/browserify/main.js @@ -0,0 +1,2 @@ +var $ = require('jquery-browserify'); +require('../../jquery.mousewheel.js')($); diff --git a/lib/jquery-mousewheel/test/index.html b/lib/jquery-mousewheel/test/index.html new file mode 100644 index 000000000..0c683cf4e --- /dev/null +++ b/lib/jquery-mousewheel/test/index.html @@ -0,0 +1,239 @@ + + + + + Testing mousewheel plugin + + + + + + + + +

jQuery mousewheel.js Test with jQuery

+

+ +
    +
  • Test1 is just using the plain on mousewheel() with a function passed in and does not prevent default. (Also logs the value of pageX and pageY event properties.)
  • +
  • Test2 should prevent the default action.
  • +
  • Test3 should only log a mouseover and mouseout event. Testing unmousewheel().
  • +
  • Test4 has two handlers.
  • +
  • Test5 is like Test2 but has children. The children should not scroll until mousing over them.
  • +
  • Test6 is like Test5 but should not scroll children or parents.
  • +
  • Test7 is like Test6 but has no children. It will propagate the event and scroll test 6 as well.
  • +
+ + +
+

Test1

+

Test2

+

Test3

+

Test4

+
+

Test5

+
+

Test6

+

Test7

+
+
+
+
+ +
+ + diff --git a/lib/jquery-mousewheel/test/scroll.html b/lib/jquery-mousewheel/test/scroll.html new file mode 100644 index 000000000..70b9f649d --- /dev/null +++ b/lib/jquery-mousewheel/test/scroll.html @@ -0,0 +1,48 @@ + + + + Scroll Test + + + + + + +
+
+ + diff --git a/lib/mapael-maps/LICENSE b/lib/mapael-maps/LICENSE new file mode 100644 index 000000000..aef243f8c --- /dev/null +++ b/lib/mapael-maps/LICENSE @@ -0,0 +1,20 @@ +The MIT License (MIT) + +Copyright (c) 2013 Vincent Brouté + +Permission is hereby granted, free of charge, to any person obtaining a copy of +this software and associated documentation files (the "Software"), to deal in +the Software without restriction, including without limitation the rights to +use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of +the Software, and to permit persons to whom the Software is furnished to do so, +subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS +FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR +COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER +IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN +CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. diff --git a/lib/mapael-maps/README.md b/lib/mapael-maps/README.md new file mode 100644 index 000000000..685a2b622 --- /dev/null +++ b/lib/mapael-maps/README.md @@ -0,0 +1,6 @@ +mapael-maps +=========== + +Vector maps for [jQuery Mapael](https://github.com/neveldo/jQuery-Mapael) + +Feel free to contribute to this repository by adding new maps ! diff --git a/lib/mapael-maps/argentina/argentina.js b/lib/mapael-maps/argentina/argentina.js new file mode 100644 index 000000000..1cd53e2f2 --- /dev/null +++ b/lib/mapael-maps/argentina/argentina.js @@ -0,0 +1,55 @@ +/** +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +** +* Map of Argentina +* +* @author eldie +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + argentina : { + width : 1600, + height : 2500, + getCoords: function(lat,lon){ + var xfactor = 59.66752357; + var xoffset = 4545.874983; + var x = (lon * xfactor) + xoffset; + + var yfactor = -67.84481668; + var yoffset = -1431.931678; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "tierradelfuego":"m 466.03125,2150.25 c -0.43311,5.4175 0.32375,48.7221 -0.0625,49.25 0.12109,0.5244 0.1875,38.8125 0.1875,38.8125 -0.41748,2.5532 -0.20508,16.5195 -0.21875,19.2187 -0.0659,12.9172 -0.31982,25.9146 -0.1875,38.8438 0.28711,0.1733 0.56494,0.3149 0.78125,0.5 0.61573,0.5254 0.84473,1.351 1.4375,1.8438 2.79786,2.3233 8.08203,1.0209 11.40625,0.5 0.92285,-0.145 3.34424,0.2802 3.875,-0.2188 1.00098,-0.9424 0.0415,-1.709 0.375,-2.75 l 0.1875,-0.1875 c 0.40185,-0.4036 1.10303,-0.3149 1.5625,-0.062 0.72412,0.3975 1.33643,1.0927 2.09375,1.4375 1.34912,0.6142 3.21289,0.2119 4.6875,0.4687 2.86719,0.5 5.33594,1.6187 8.125,2.25 1.63526,0.3705 3.3374,0.2125 5,0.4063 1.9043,0.2222 3.78809,0.622 5.6875,0.875 1.34375,0.18 2.69727,-0.031 4.03125,0.125 1.49267,0.1738 3.03467,0.6109 4.53125,0.6563 1.87549,0.056 3.99609,-0.017 5.84375,-0.3438 1.28369,-0.227 2.52051,-0.6597 3.84375,-0.7188 2.14551,-0.096 4.04834,1.0953 6.0625,1.1563 1.80908,0.055 3.61914,-0.2415 5.4375,-0.1875 2.42627,0.073 4.65967,0.7225 7.03125,0.9062 1.34082,0.1042 2.68555,-0.1347 4.03125,-0.094 1.88721,0.057 7.47705,0.4639 9.1875,0.7813 1.48584,0.2752 3.29687,1.8881 4.65625,2 2.57764,0.2111 4.8584,-0.4577 7.4375,0.4374 1.60108,0.5562 3.83643,1.5899 5.15625,2.6563 0.73584,0.5943 1.26855,1.3608 2.03125,1.9375 2.47509,1.873 9.64551,2.4278 12.78125,2.625 5.1919,0.3272 2.32666,-4.543 6.28125,-4.7188 8.4502,-0.3739 11.08838,1.5694 20,-1.7812 1.35254,-0.5083 2.13867,-1.8149 3.46875,-2.4062 l 0.25,-0.3126 c -0.2876,-0.3886 -0.8447,-0.7558 -0.875,-1.2812 0.76075,-0.2587 1.56787,0.149 2.34375,0.125 0.95019,-0.03 1.87158,-0.5613 2.78125,-0.5312 0.93652,0.031 1.92871,0.3622 2.875,0.4062 2.24122,0.1045 5.08447,-0.7062 6.8125,1.2812 1.40576,1.6168 -0.34521,2.0669 0.5,3.4063 1.24024,0.6391 4.08789,0.7027 5,-0.5313 0.0898,-0.393 0.003,-0.8628 0.21875,-1.2187 1.44873,-2.3907 10.3584,1.9306 7.78125,-2.5937 0.0581,-2.1297 3.72412,-1.0139 4.8125,-0.25 l 0.1875,0.375 c -0.16113,0.5423 -0.0342,1.1406 0.34375,1.5624 1.89014,0.4849 4.30225,-0.3034 4.8125,-2.4374 0.1865,-0.7819 -0.354,-1.1726 0.25,-2 0.80029,-1.098 3.04834,-2.1978 4.21875,-3.2813 -0.21093,-0.3423 -0.56055,-0.566 -0.84375,-0.8437 l -0.0937,-0.4376 c 0.43701,-0.7006 2.04297,-0.6782 2.4375,-2.0937 -0.0986,-0.3994 -0.25586,-0.7876 -0.4375,-1.1563 0.25488,-1.7572 0.63379,-1.0019 1.09375,-2.0312 0.25928,-0.5796 0.0889,-1.2867 0.4375,-1.9688 0.74609,-0.8577 3.19971,-1.2812 3.3125,-2.4687 l -0.25,-0.3125 c -1,-0.334 -1.89111,-0.1744 -2.875,-0.375 -0.48144,-0.098 -0.9126,-0.3587 -1.375,-0.4688 -0.12988,-0.03 -6.51709,0.01 -6.875,0.063 -1.67773,0.2514 -3.33887,0.811 -5.03125,0.9374 -1.04003,0.078 -2.10303,-0.372 -3.125,-0.2187 -1.25684,0.1885 -2.40527,0.765 -3.71875,0.8437 -1.43652,0.086 -2.95117,-0.074 -4.375,0.063 -1.93506,0.1853 -3.30371,1.1103 -5.34375,0.9062 -1.50391,-0.1504 -2.59277,-1.1391 -3.96875,-1.5 -1.4629,-0.3838 -1.94971,0.8238 -3.78125,0.3438 -1.09278,-0.2873 -1.95361,-1.3399 -3.09375,-1.6563 -3.26025,-0.9048 -6.68506,-1.5063 -9.90625,-2.625 -1.93603,-0.6724 -3.79102,-1.5183 -5.75,-2.1563 -2.49268,-0.8112 -5.06641,-1.1904 -7.5,-2.2187 -1.24756,-0.5274 -2.89893,-1.1997 -3.96875,-2.0313 -0.7959,-0.6183 -1.49805,-1.7046 -2.4375,-2.0937 -0.64844,-0.2685 -2.22412,-0.2665 -2.96875,-0.3125 -1.99267,-1.8735 -4.52881,-2.042 -6.84375,-3.3125 -3.4038,-1.8682 -5.99365,-6.7818 -9.28125,-8.5 -2.64941,-1.3853 -5.46387,-2.7109 -8.28125,-3.75 -1.47754,-0.5449 -3.2583,-0.3706 -4.71875,-1 -0.37793,-0.1631 -3.80371,-2.0225 -4.15625,-2.25 -0.75244,-0.4853 -1.15771,-1.4264 -2.03125,-1.9063 -3.99902,-2.1947 -8.75293,-3.2226 -12.84375,-5.2812 -1.36621,-0.6875 -6.10547,-2.9682 -7.03125,-3.6875 -1.0542,-0.8193 -2.04736,-1.8423 -3.21875,-2.5 -1.02783,-0.5776 -2.15527,-0.8438 -3.15625,-1.4063 -0.76123,-0.4274 -1.2207,-1.0092 -1.875,-1.5312 -0.8877,-0.7095 -2.06885,-1.0984 -3.0625,-1.6562 -0.33935,-0.1913 -0.74609,-0.4085 -0.96875,-0.75 -1.60157,-2.4552 -0.47119,-3.1577 -0.59375,-5.2188 -1.21728,-1.6977 -5.7666,-3.7832 -7.71875,-2.7812 l -0.28125,-0.125 c 0.0273,-0.3523 -0.0362,-0.6861 -0.0937,-1.0313 -0.1084,-0.6548 -0.33838,-1.1626 -0.8125,-1.625 -1.53906,-1.502 -3.76904,-2.6748 -5.65625,-3.6875 -0.22119,-0.1192 -7.89893,-5.6729 -8.28125,-6 -1.81934,-1.5542 -2.9751,-4.7768 -4.3125,-5.8438 -0.15381,-2.0996 -1.65332,-4.0542 -2.15625,-6.0312 -0.25,-0.9819 -0.0664,-2.0103 -0.40625,-3 -0.44433,-1.2949 -1.33496,-1.7798 -2.09375,-2.7812 -1.02051,-1.348 -1.4502,-3.8233 -3.40625,-4.2813 -2.2959,-0.5372 -4.2417,0.8083 -6.40625,1.0313 -4.85596,0.5 -11.92334,-0.6886 -15.09375,-4.875 -1.63232,-2.1557 -2.01367,-4.8707 0,-6.9688 1.04541,-1.0894 3.12988,-1.5331 4.40625,-2.5938 3.48633,-2.895 2.97705,-5.5502 8.375,-6.4062 4.30713,-0.6831 3.40186,7.7424 5.5,8.7188 l 0.53125,-0.094 c 0.1211,-0.2046 0.12115,-0.4338 0.0937,-0.6562 -0.1294,-1.0402 -0.81445,-2.1133 -1.09375,-3.1563 -0.35254,-1.3188 -0.62451,-2.7051 -0.84375,-4.0625 -0.0635,-0.3906 -0.14111,-0.7931 -0.3125,-1.1562 -0.55176,-1.1695 -1.14014,-2.7627 -1.9375,-3.7813 -3.0581,-3.9077 -4.91553,-4.0889 -8.25,-6.9375 -1.30811,-1.1177 -2.06348,-3.008 -3.25,-4.2812 -1.34863,-1.4478 -2.93457,-2.5047 -4.15625,-4.125 -0.84668,-1.1241 -1.27832,-3.5533 -2.90625,-3.8438 z M 465.75,2296.375 c -0.53613,-0.3232 -1.13037,-0.6567 -1.46875,-1 -1.09424,-0.1621 -3.3833,-1.4373 -4.375,-1.0938 -0.11377,1.2399 3.1919,1.6793 4.15625,2.125 0.82195,0.4595 1.32568,0.9963 1.71875,1.5626 z m -1.4375,6.0312 c 0.41124,0.075 0.96607,0.051 1.5625,0 -0.59839,0.051 -1.14799,0.08 -1.5625,0 z", + "santacruz":"m 545.9375,1669.5625 c -0.47417,0.2698 -0.93349,0.5481 -1.375,0.8437 0.44213,-0.2961 0.9002,-0.5735 1.375,-0.8437 z m -2.84375,2 c -0.16053,0.1653 -0.29786,0.3491 -0.4375,0.5313 0.13888,-0.181 0.27803,-0.367 0.4375,-0.5313 z m -255.875,27.0313 c -0.34262,0.2081 -0.66672,0.4307 -0.9375,0.6562 -3.20996,2.6748 -3.11499,5.293 -7.28125,7.5 -2.05908,1.0909 -4.91724,0.6319 -6.65625,1.625 l -0.1875,0.3438 0.0312,0.2187 c 0.41455,0.3433 2.90625,2.875 2.90625,2.875 1.38721,-0.053 3.81323,-1.0373 4.6875,0.4063 -0.0623,0.6692 -0.0515,1.398 0.0625,2.0624 2.39575,1.9084 1.375,7.5012 2.15625,10.3438 0.90234,3.2842 1.83521,5.4778 3.53125,8.4688 -0.0276,0.079 -0.10175,0.2607 -0.0937,0.3437 0.13428,1.4185 -0.70557,4.6529 -0.53125,5.125 0.46802,1.2676 1.97388,3.5596 1.4375,4.875 0.19584,0.4073 0.44165,1.5703 0.21875,2 -0.30225,0.3809 -0.96216,0.4326 -1.375,0.625 -0.28393,0.1324 -3.39575,2.0757 -3.5,2.1875 -0.44214,0.4742 -0.50293,0.9841 -1.125,1.4688 -0.90942,0.7871 -2.98242,2.217 -4.15625,2.5624 -1.9021,0.5613 -5.62939,-0.4931 -6.59375,1.4688 0.17553,1.1016 0.70508,1.9685 0.875,3.0312 -0.68115,2.0823 -2.16626,2.1773 -1.71875,5.5313 0.0962,0.7207 0.50732,0.7867 0.90625,1.3125 0.11963,0.1573 1.13452,3.7595 0.96875,4.0312 -1.31934,0.526 -4.51245,2.2664 -4.1875,4 2.29077,1.8509 7.81445,1.1952 8.3125,6.3126 -0.81128,0.5818 -1.65063,1.1527 -2.375,1.8437 l -0.15625,0.5625 c 0.0674,0.5532 1.21069,1.4766 1.59375,1.875 -1.47974,1.8638 -6.625,-1.5849 -8.75,-2.0625 l -0.8125,0.375 c -0.0244,0.1656 -0.11523,0.4765 -0.28125,0.5625 -0.1731,0.5708 0.86206,2.4841 1.0625,3.2812 -0.59888,2.1736 -1.91992,2.3599 -2.75,4.0313 -0.8938,-0.024 -2.27588,-0.1753 -3,0.5 -0.16992,0.9111 -0.50415,1.8228 -0.90625,2.8125 -0.0972,0.6113 -0.56958,1.2652 -0.84375,1.8125 -1.19849,2.3911 -2.5686,0.7607 -4.03125,0.5625 -0.77099,-0.1045 -1.7334,0.285 -2.53125,0.375 -2.17602,0.2456 -4.1582,1.7683 -5.28125,3.5312 -0.1005,0.1574 -0.0333,0.636 -0.0312,0.8126 0.18994,0.6515 2.06177,0.7637 2.5625,1.3437 0.98829,1.1441 -0.15015,3.8478 -0.59375,5.0937 0.2334,1.0355 0.21777,1.4529 0.90625,2.25 0.17529,0.2039 0.4465,0.4499 0.4375,0.75 l -0.40625,0.2813 c -1.48755,-0.016 -2.94482,0.7465 -3.75,2 -0.98584,-0.2354 -2.39551,-0.356 -2.71875,0.875 0.12401,0.3252 0.2481,0.7405 0.1875,1.0937 -0.43677,0.045 -1.24097,0.3241 -1.53125,0.6876 l -0.15625,0.5312 c 0.005,0.3721 0.43652,0.9803 0.6875,1.2188 l 1.03125,-0.063 0.21875,0.4376 c -0.56788,1.0257 -0.4646,0.9936 -1.28125,1.8124 -1.29004,-0.2364 -3.42065,-0.555 -4.59375,-1.125 l -0.59375,0.2813 0.0937,0.625 c 1.19922,0.9761 1.99927,3.1993 2.59375,4.5937 -0.15552,0.4509 -0.99605,2.4285 -0.90625,2.6876 -1.26611,2.1677 -3.36597,2.0029 -3,5.1562 1.11645,1.2217 2.78906,0.9375 3.9375,2 1.17359,1.0854 0.69336,3.6267 2.375,3.7812 0.98877,1.0223 0.57813,2.8082 1.46875,3.5313 0.96802,0.7867 2.16919,0.1011 3.15625,0.8125 0.374,0.7471 0.125,2.5303 0.125,3.4062 0,1.3137 1.10937,2.598 1.21875,4 0.063,0.8029 0.62036,4.3933 0,5.2813 0.94238,1.8429 2.30835,3.851 1.71875,6.0313 l -0.375,0.5 c -0.14917,0.06 -0.56715,0.1489 -0.65625,0.2812 -0.55274,0.1348 -3.00488,-0.3805 -3.375,-0.4375 -0.14136,0.1314 -0.41577,0.314 -0.625,0.2813 -0.24439,0.1639 -0.78223,0.6953 -0.78125,1.0312 l 0.28125,0.4375 c 0.43262,0.048 1.07422,0.4598 1.28125,0.8437 -0.19921,0.3041 -2.96558,0.7242 -4.15625,1.9063 l 0.125,0.4687 c 0.66773,0.356 1.41113,0.8945 1.90625,1.4688 l -0.375,0.3438 c -3.55371,2.7069 -2.98218,2.9207 -7.15625,2.8437 -0.35425,-0.663 -0.24902,-1.7439 -0.96875,-2.1563 -1.23218,0.1051 -2.61182,0.7266 -3.71875,1.2188 -0.17944,2.9522 1.26221,5.1319 2.0625,7.8125 0.45386,1.5204 0.989,3.7823 0.9375,5.375 -0.03,0.9326 -0.31955,1.8179 -0.28125,2.75 0.0471,1.1368 0.3501,2.2217 0.46875,3.3437 0.27051,2.5607 -3.52808,4.7392 -5.3125,6.0626 -2.99682,2.2228 -5.68726,4.3637 -9.25,5.4687 -1.3396,0.4156 -2.69849,0.935 -4.125,0.9063 -1.16748,-0.024 -2.95435,-0.7633 -4,-0.25 -0.5769,0.5236 -0.93701,1.4472 -1.5625,1.8437 -0.6626,0.4205 -1.36377,0.679 -2,1.1563 -0.4392,0.329 -0.17383,0.253 -0.40625,0.5624 -1.2876,1.7156 -2.44849,3.628 -4.125,4.9688 -0.48169,0.3853 -1.06348,0.7079 -1.21875,1.3438 -0.18677,0.763 0.7402,1.4184 0.6875,2.1874 -0.66431,1.098 -8.01807,2.8281 -9.5,2.4688 -0.65161,-0.1578 -1.20215,-0.997 -1.71875,-1.4375 -1.30078,-0.4101 -5.71143,-0.092 -7,0.094 -4.56909,0.6579 -6.668,0.1446 -6.6875,5.2188 -0.004,1.1602 -0.0461,3.0942 0.59375,4.125 0.55591,0.8955 1.75854,1.1076 2,2.2812 l -0.1875,0.6876 c -1.77074,0.9367 0.71362,3.0214 0.0937,4.4062 -1.28931,2.8789 -4.82495,1.9697 -3.84375,5.875 0.17749,0.7055 0.98096,1.2399 1.28125,1.9062 l -0.28125,0.8126 c -1.07007,0.8324 -3.97339,-0.5079 -4.8125,0.7187 -0.0388,0.4238 0.17822,0.8637 0.3125,1.25 0.0955,0.2749 0.0513,0.5682 0.28125,0.8437 0.69507,0.8333 5.5166,3.1072 4.4375,6.25 -0.1355,0.046 -0.25315,0.2124 -0.28125,0.3438 -0.56689,0.1919 -1.39087,0.9841 -1.59375,1.5312 -1.02637,2.7687 3.37964,2.8168 4.5625,3.9376 0.42471,0.9051 -0.46606,2.2084 0,3.3437 0.28052,0.6831 0.83203,1.1887 1.0625,1.9687 -0.22339,0.5984 -0.33008,1.2547 -0.46875,1.875 -1.09131,1.1847 -4.42896,5.0161 -5.9375,5.5938 l -0.15625,0.2812 c -0.0178,0.2645 0.0876,0.3829 0.15625,0.5938 0.60962,1.8706 0.56104,3.7157 1.15625,5.5938 0.41015,1.2938 1.31982,1.415 1.53125,2.1562 -0.0894,1.5327 -1.79395,1.0303 -2.59375,2.0625 -0.10132,0.771 0.9292,1.8688 1.15625,2.7187 -0.38746,0.384 -0.501,1.3726 -0.5625,1.9063 -0.156,1.3584 -1.39893,2.5703 -1.9375,3.8125 -0.17334,0.3999 0.0535,0.9677 0,1.375 -0.11231,0.8569 -0.6279,1.7881 -0.6875,2.625 -0.0137,0.1958 0.1526,1.0689 0.1875,1.3125 0.78173,1.292 2.19653,1.2881 2.59375,1.875 l 0.0312,0.2813 c -0.31714,0.346 -0.61792,0.7226 -0.90625,1.0937 0.0657,0.097 0.13325,0.2325 0.21875,0.3125 2.23852,2.1026 3.94287,4.4453 6.03125,6.6875 0.97924,1.0513 2.33691,1.709 3.34375,2.6875 0.71557,0.6958 1.14063,1.697 1.96875,2.4062 1.93677,1.6598 3.99585,3.0154 5.875,4.8126 0.38135,0.3646 0.63306,1.3669 1.09375,1.875 1.37598,1.5159 3.89624,2.1655 4.0625,4.4062 0.88452,0.1275 1.91333,0.1182 2.46875,0.9375 0.0464,0.2529 -0.0227,0.606 -0.1875,0.8125 -0.67627,0.4111 -1.66992,0.5913 -2.4375,0.75 -0.42947,1.7964 -0.23267,1.9197 -0.0312,3.5938 0.71826,0.8624 1.93286,1.1318 2.96875,1.375 4.82763,1.1328 11.20361,-6.8225 14.75,-8.375 2.4397,-1.0686 5.11133,-1.3881 7.4375,-2.6876 1.05762,-0 4.09277,2.6074 5.40625,3.2188 3.00293,1.3974 2.99023,1.1465 5.1875,-1.5625 0.98413,-1.2134 4.2312,-2.777 5.6875,-2.5937 0.96265,0.1203 1.875,0.9934 2.90625,1.25 3.09912,0.7703 1.45215,-1.6407 5.125,1.0937 1.53662,0.069 1.83569,0.1802 2.875,1.1875 0.0571,0.6454 -2.48315,4.164 -2.90625,6.125 0.0679,0.6933 5.54614,7.3604 5.65625,7.5 0.12623,2.0337 -0.80322,9.913 -1.15625,11.5625 -0.0732,0.3432 -0.51636,0.9147 -0.84375,1.0625 -0.75683,-0.1107 -4.22949,-0.087 -4.5625,0.25 -0.95239,3.0181 -3.10986,2.507 -3.34375,3.9062 0.033,0.3581 -0.0791,0.7588 -0.1875,1.0938 2.00561,7.3163 6.77197,5.6054 8.34375,7.875 1.09619,3.7734 -4.53833,1.6255 -3.96875,8.625 0.32324,3.977 -1.396,4.4448 -1.375,5.3125 0.0205,0.8607 0.3457,1.7191 0.21875,2.5937 -0.37109,2.5539 -4.06006,1.618 -5.34375,6.1876 0.0762,0.6455 0.53931,1.3225 1.0625,1.6874 2.98804,0.1096 3.8479,-1.4292 5.15625,1.5938 l 2.3125,5.5625 c 2.11646,1.1279 4.78149,0.7178 6.9375,1.75 4.29639,2.0567 7.56445,5.2695 11.21875,8.2187 0.60425,0.4878 1.35938,0.8336 1.8125,1.5 0.39453,0.5807 0.6025,1.4357 0.6875,2.125 0.25268,2.049 -4.37134,3.0656 -4.53125,3.875 0.59423,1.812 2.0188,1.4786 3.375,0.9063 0.34448,0.376 1.42065,1.5171 1.875,1.75 0.8225,0.4211 12.86938,0.3385 14.25,0.3125 1.42432,-0.032 2.89062,-0.013 4.3125,0 12.3667,0.1191 24.79858,0.1636 37.15625,-0.125 8.74218,-0.2036 17.58618,0.135 26.34375,0.125 10.29834,-0.01 20.53979,0.017 30.84375,-0.125 0.6521,-0.01 17.46021,5.5601 20.3125,6.4688 3.22924,1.0291 10.2627,3.8134 13.28125,4.0937 4.47461,0.4155 9.19653,-0.6079 13.6875,-0.3125 2.43115,0.1597 5.10742,1.5593 7.4375,2.3438 0.66015,0.222 1.37061,0.5513 2,0.75 0.37989,0.1194 5.40674,1.2953 5.53125,1.4062 1.43994,0.6455 2.85596,1.3857 4.28125,2.0625 4.39307,2.0869 2.45654,1.9925 7.5625,2.6563 3.39062,0.4407 7.2998,0.6186 10.59375,1.5937 0.2832,0.535 2.60742,0.4008 3.25,0.4687 0.28173,-0.2334 4.92041,1.1236 6.125,1.3438 0.13965,0.1538 -0.78125,3.3438 -0.78125,3.3438 1.00928,-0.6227 3.61525,-2.7129 3.53125,-4 -0.0425,-0.6578 -2.36377,-3.8253 -2.875,-4.5 -0.34326,-0.4539 -5.68405,-6.7825 -5.71875,-6.8126 -1.02734,-0.8775 -2.28516,-1.4989 -3.28125,-2.375 -1.48389,-1.3051 -5.07324,-5.3032 -6.28125,-6.9062 -0.90723,-1.2036 -1.52881,-2.6793 -2.4375,-3.9062 -0.25244,-0.341 -0.75635,-0.6172 -1.0625,-0.9688 -1.29248,-1.4868 -2.92822,-3.5215 -3.75,-5.3125 -0.92773,-2.0215 -2.20069,-3.7612 -3.125,-5.7187 -0.57275,-1.2133 -0.54395,-2.5406 -1.375,-3.6876 -1.28223,-1.7689 -5.19922,-4.7138 -5.46875,-6.8437 -0.4126,-0.3462 -0.66748,-0.8041 -1.21875,-0.9687 -3.34717,-0.9982 -10.67749,5.5585 -12.90625,4.75 l -0.125,-0.3438 c 0.94531,-0.7739 2.86304,-1.0376 3.46875,-2.2188 L 433.3125,2082 c -0.69653,-0.8536 -4.14405,-1.7178 -5.5,-2.5 -0.65869,0.045 -1.25488,0.175 -1.84375,0.125 -2.12207,-0.1797 -3.6355,-1.3924 -6.28125,-1.2188 -0.78711,0.052 -6,0.7476 -6.5625,0.9063 -2.04492,0.5772 -4.24072,1.5548 -6.4375,1.4063 l 0.1875,-0.25 c 0.98047,-0.3705 2.10914,-0.269 3.09375,-0.5626 1.38989,-0.4146 2.69678,-1.6474 3.96875,-2.3437 0.30933,-0.1694 0.71558,-0.2775 1.0625,-0.3125 0.90845,-0.092 1.80908,-0.021 2.71875,-0.2188 1.05811,-0.2309 1.97144,-0.9082 3.09375,-1.0312 0.38379,-0.042 4.67017,0.036 4.90625,0.094 3.12231,0.7687 5.89087,3.6606 9.5,3.5312 2.18701,-0.079 2.19531,-2.0606 4.03125,-2.75 3.70898,-1.3926 3.53515,0.5547 4.8125,0.7188 0.65234,-0.045 0.68994,-0.4674 0.9375,-0.9063 1.24365,-2.2105 0.0601,-4.8203 -0.96875,-7 -1.26221,-2.6739 -3.76855,-7.1337 -4.65625,-9.7187 -0.74902,-2.183 -1.08642,-4.8643 -2,-6.9063 -1.12109,-2.5068 -3.03125,-4.6084 -3.03125,-7.5625 0,-1.2153 0.28985,-2.4334 0.21875,-3.6562 -0.041,-0.7089 -2.21167,-5.4507 -2.71875,-5.9063 l -0.46875,-0.1563 c -0.75024,0.051 -0.86646,0.9651 -1.5,1.25 -1.34302,0.6042 -2.96435,0.9112 -4.3125,1.5313 -2.0957,0.9639 -4.69849,3.5829 -6.28125,5.2813 l -0.53125,0.125 c -0.1731,-0.9703 4.81177,-5.1612 5.78125,-5.7188 0.74731,-0.4297 1.61328,-0.5714 2.34375,-1.0938 0.42969,-0.3067 7.18848,-6.4559 7.46875,-6.8124 0.86797,-1.1051 0.0519,-4.4708 -0.0312,-5.9063 -0.0628,-1.0791 -0.23216,-3.0849 0.0312,-4.0937 0.2605,-0.9999 1.10938,-1.8306 1.28125,-2.8438 0.56348,-3.3198 1.0791,-7.3628 2.53125,-10.4375 1.30566,-2.7657 4.30225,-4.79 6.15625,-7.25 0.80029,-1.0615 0.96973,-2.2373 2.09375,-3.1875 0.72021,-0.6094 2.37939,-1.4772 2.84375,-2.0938 0.61963,-0.822 0.72217,-1.461 1.71875,-2.0624 3.43408,-2.074 10.44922,-4.5013 14.40625,-5.75 3.63428,-1.1473 8.17823,-1.4205 11.59375,-3.1563 1.28955,-0.6553 3.80762,-2.3827 3.03125,-4.1563 -1.89111,-0.9733 -6.91504,-2.9695 -8.25,-4.3124 -1.73145,-1.7428 -1.19531,-5.6236 -4.25,-6.2188 -1.90479,-0.3711 -2.42529,0.519 -3.90625,0.75 -2.0625,0.322 -5.70068,0.1894 -7.8125,-0.031 -1.49316,-0.1558 -2.62451,-0.7119 -4.21875,-0.4376 -1.16064,0.2002 -2.167,1.0016 -3.25,1.3438 -0.49707,0.1568 -5.90332,1.0394 -6.1875,0.9688 0.65479,-2.1436 4.98535,-2.1045 6.6875,-2.5313 1.27588,-0.3203 2.64697,-0.8855 3.96875,-0.8125 0.7417,0.041 1.4585,0.2696 2.21875,0.2812 0.96973,0.015 1.93261,-0.2913 2.90625,-0.1874 0.87158,0.093 1.77685,0.4062 2.65625,0.4062 1.12451,0 2.17334,-0.5765 3.21875,-0.9062 0.68066,-0.2151 1.71826,-0.2754 2.3125,-0.625 1.04785,-0.6176 1.11621,-3.0308 0.75,-4.0313 -0.75488,-2.0615 -2.81934,-3.5386 -3.4375,-5.5625 -0.24605,-0.8062 -0.0264,-1.7671 -0.28125,-2.5625 -0.32178,-1.0035 -3.70996,-2.2876 -4.75,-3.0313 l 0.25,-0.125 c 1.12109,0.1464 4.51367,1.6441 5.3125,2.5313 0.84082,0.9336 0.90136,4.1044 2.21875,5.8437 1.36768,1.8059 3.28076,3.196 4.375,4.6876 0.67822,0.924 0.1538,2.2612 0.78125,3.1562 0.80371,1.146 2.15674,1.8315 3.03125,2.9062 0.86621,1.0655 1.29151,2.4117 2.0625,3.4688 0.91162,1.2495 1.85108,0.8247 2.96875,1.5312 0.88867,0.5623 1.75684,2.0758 2.46875,2.4376 1.4541,0.7384 6.61865,0.206 8.3125,-0.2188 1.73779,-0.4361 3.17822,-1.499 4.84375,-2.0625 1.07617,-0.3637 2.26953,-0.375 3.34375,-0.8125 1.77979,-0.7247 9.64209,-5.5874 10.96875,-6.875 0.4668,-0.4526 0.87549,-0.9165 1.40625,-1.3125 1.01807,-0.7597 3.16504,-2.2174 3.78125,-3.2813 2.23779,-3.8596 3.70898,-13.9208 4.0625,-18.5 0.0903,-1.1662 -0.0449,-2.6974 0.3125,-3.8124 2.02539,-6.3225 2.93506,-4.553 3.375,-12.3126 0.083,-1.4616 3.57421,-8.4641 3.0625,-9.1874 L 525,1919.75 c -3.0879,-1.3491 -2.44922,1.3516 -3.1875,2.625 -0.37158,0.6411 -1.10645,1.0485 -1.40625,1.7188 -0.42139,0.942 -0.38476,2.6118 -1.125,3.4062 -0.91406,0.9815 -3.68457,1.3102 -5.03125,1.5312 -0.82324,0.1356 -1.78418,0.6612 -2.40625,-0.2812 -0.26709,-1.1171 1.40186,-1.1943 2.0625,-1.7188 0.1079,-0.5688 10e-4,-1.2666 0.125,-1.7812 0.56592,-2.3667 4.74804,-1.063 5.21875,-1.5312 l 0.28125,-0.7188 -0.125,-0.4062 c -0.36426,-0.2259 -1.32324,-0.8538 -1.4375,-1.25 0.28711,-0.587 1.10938,-0.8623 1.5625,-1.1563 2.51855,-1.6338 1.79639,-2.8034 3.5,-4.4063 0.45654,-0.4293 1.28174,-0.647 1.625,-1.1562 0.98584,-1.4649 -1.7749,-2.9781 -1.34375,-4.625 1.49512,-1.254 1.96973,-3.5593 3.25,-5.0312 0.21826,-0.252 6.41796,-5.647 6.625,-5.7813 0.55566,-0.3604 1.24805,-0.5913 1.78125,-1 0.49463,-0.3794 1.15039,-2.168 1.875,-2.7813 0.75195,-0.6354 1.65478,-0.8891 2.46875,-1.4062 1.72949,-1.0991 2.78809,-2.2456 4.90625,-2.8438 0.68799,-0.1938 2.17529,-0.2595 2.65625,-0.8124 0.58691,-0.6752 0.56543,-1.7093 0.96875,-2.4376 0.17822,-0.3221 0.5039,-0.7162 0.75,-1 1.16113,-1.3346 2.35693,-2.8295 3.375,-4.2812 0.49072,-0.6997 0.75732,-1.62 1.3125,-2.2812 0.66846,-0.7967 1.96533,-2.0272 2.875,-2.5 1.40234,-0.7299 2.87598,-0.9142 4.34375,-1.4063 1.6792,-0.5635 2.93066,-1.6689 4.78125,-2.0937 0.96777,-0.2232 5.69141,-0.898 6,-1.0938 0.85059,-0.541 1.11279,-1.6348 1.84375,-2.3125 1.15088,-1.0674 2.65869,-1.6445 3.8125,-2.75 1.25244,-1.2002 2.29883,-2.7528 3.75,-3.7187 0.43701,-0.2908 1.1206,-0.5422 1.625,-0.6876 0.79102,-0.2267 1.63428,-0.2862 2.4375,-0.5 2.4585,-0.6517 2.87988,-1.1958 5.8125,-1.4062 0.66113,-0.048 1.71485,-0.057 2.21875,-0.5312 0.16797,-0.9144 0.18018,-1.9505 0.5,-2.8126 2.56201,-1.8306 4.84082,-0.2621 7.46875,-0.5937 l 0.0937,-0.375 c -0.4624,-0.75 -1.05615,-1.5411 -1.15625,-2.4375 -0.22998,-2.0616 7.66407,-6.5113 9.4375,-7.2812 0.84473,-0.3676 1.78028,-0.4928 2.625,-0.8438 0.73926,-0.7925 0.34131,-1.0127 0.5,-1.8438 0.25098,-1.3143 3.12158,-3.8318 4.4375,-4.0624 1.13184,-0.199 2.32911,0.021 3.46875,0 0.68799,-0.012 1.37598,-0.3178 2.03125,-0.3438 0.87109,-0.035 3.63281,1.9698 4.125,0.1562 0.0195,-1.496 -3.67725,-2.147 -3.125,-4.0937 0.22559,-0.2901 0.47656,-0.5732 0.6875,-0.875 0.24365,-1.3755 -2.2603,-2.0796 -2.3125,-3.375 -0.0347,-0.8628 0.73388,-1.2387 1.46875,-1.3437 0.69385,-0.1003 1.31299,-0.4113 2.03125,-0.4376 1.78809,-0.066 3.23486,1.4279 4.875,1.8126 0.31201,0.073 2.35938,-0.1392 2.625,-0.2813 l 0.0937,-0.4063 -0.1875,-0.3124 -0.75,-0.3438 c 0.0542,-0.7569 0.71435,-0.6602 0.9375,-1.1562 -0.23242,-1.726 -3.87647,-1.1363 -4.90625,-2.2813 -1.25732,-1.3979 -0.0117,-4.5273 -1.84375,-6.1875 -0.65967,-0.5976 -3.39355,-1.9117 -4.25,-1.8438 -1.08887,0.086 -6.68066,2.6739 -8,3.2813 -1.43408,0.6595 -3.8457,0.335 -5.5,0.6875 -0.48047,0.1026 -1.64746,0.8025 -1.8125,0.8125 -0.68896,0.2417 -1.37988,0.8775 -2.09375,1.1875 -1.99854,0.8682 -5.52783,1.292 -7.09375,-0.625 l 0.34375,-0.1875 c 1.22656,0.3955 2.25097,1.0553 3.59375,0.9063 2.61377,-0.2914 5.45411,-2.4112 8.0625,-3.2188 1.3335,-0.4126 3.14258,0.033 4.34375,-0.625 l 0.21875,-0.125 c 1.91602,-1.0747 2.8413,-3.0145 5.03125,-3.6562 2.70508,-0.793 6.86768,1.5446 8.65625,0.094 0.12891,-0.1045 2.53516,-5.9282 2.8125,-6.625 0.51172,-1.2881 1.96143,-2.3803 2.5625,-3.625 0.11035,-0.2275 0.14695,-0.4787 0.21875,-0.7187 0.40967,-1.379 1.40429,-3.6223 1.625,-4.75 0.22949,-1.1718 -0.37356,-2.275 -0.0625,-3.4063 0.13232,-0.4824 0.5298,-0.8272 0.625,-1.375 0.16211,-0.9326 -0.24465,-1.6871 -0.15625,-2.5625 0.0654,-0.6446 0.48731,-1.2617 0.65625,-1.875 0.1035,-0.375 0.2612,-3.9795 0.1875,-4.375 -0.31396,-1.6875 -1.79736,-2.477 -1.9375,-3.6875 -0.19092,-1.646 0.36816,-4.564 -0.8125,-5.875 -1.27344,-1.4141 -3.1455,-1.917 -4.5,-3.0625 -0.96387,-0.815 -0.84619,-2.0683 -2.25,-2.9375 -0.55469,-0.343 -1.25537,-0.2715 -1.875,-0.375 -1.32764,-0.2217 -2.30176,-1.5231 -3.53125,-1.9063 -0.39746,-0.1237 -1.27197,-0.1167 -1.6875,-0.062 -2.26367,0.2934 -3.61425,1.5282 -5.03125,1.75 -1.22705,0.1911 -2.32764,-0.8833 -3.53125,-0.9063 -1.00391,-0.02 -1.54151,0.75 -2.4375,0.9375 -0.39209,0.082 -0.8584,0.034 -1.25,-0.031 -0.86963,-0.1431 -1.67383,-0.5235 -2.53125,-0.625 -1.41016,-0.1676 -2.99121,0.081 -4.4375,0 -0.42383,-0.024 -0.84717,-0.2099 -1.15625,-0.5 -0.63477,-2.1966 -2.95948,-0.6888 -4.5,-0.7188 -0.72998,-0.015 -1.19776,-0.6944 -1.90625,-0.8125 -0.90576,-0.1519 -1.51318,0.1336 -2.28125,-0.5313 -3.57666,-0.059 -8.63281,0.9215 -12.03125,-0.2187 -1.27197,-0.4263 -1.95752,-1.3296 -3.03125,-1.875 -1.11377,-0.5664 -2.34815,-0.6932 -3.3125,-1.5937 -1.24805,-1.1667 -1.63818,-3.1929 -2.875,-4.2813 -0.48047,-0.4219 -1.16406,-0.6655 -1.65625,-1.125 -0.43555,-0.4072 -0.77295,-1.0146 -1.25,-1.375 -0.70752,-0.5347 -1.62598,-0.7964 -2.3125,-1.4375 -1.13916,-1.0644 -2.03515,-2.6489 -3.4375,-3.375 -0.23779,-0.023 -0.68555,0.047 -0.84375,0.25 -1.92627,-0.2227 -2.45606,-2.6173 -3.46875,-3.7812 -0.47363,-0.5453 -1.24024,-0.9351 -1.59375,-1.5938 -0.42188,-0.7852 -0.0967,-0.9209 -1.03125,-1.5 -1.48828,-0.9214 -3.72314,-0.8619 -5.1875,-1.9688 -0.9043,-0.6826 -0.76172,-2.2007 -1.875,-2.75 -1.7334,-0.8537 -3.88378,-0.875 -5.53125,-2.1562 -0.94727,-0.7373 -1.33301,-1.7193 -2.09375,-2.5625 -0.41162,-0.4566 -1.10596,-0.6845 -1.5625,-1.125 -0.66455,-0.6411 -7.52637,-9.6021 -7.78125,-10.1875 -0.3418,-0.7862 -0.0996,-1.6912 -0.4375,-2.4688 -0.74023,-1.7016 -1.82032,-3.4492 -2.21875,-5.2812 -0.17773,-0.8179 -0.0498,-1.7945 -0.3125,-2.5938 -1.48047,-4.4979 -2.53027,-7.9247 -1.9375,-12.8124 0.12256,-1.0075 0.87305,-1.3481 1.375,-2.125 0.68589,-1.0631 0.27654,-1.9353 0.71875,-3.0626 l -0.0312,0 c -3.56445,-0.1398 -210.92212,0.2533 -239.15625,-0.062 z", + "chubut":"m 674.8125,1426.4688 c 0.13198,0.3122 0.29736,0.6213 0.5,0.9687 -0.20138,-0.3445 -0.36794,-0.659 -0.5,-0.9687 z m -3.53125,0.4687 c -130.50847,0.107 -261.02498,0.2611 -391.53125,0.031 -0.18559,0.9958 0.061,1.903 1.875,2.75 l 0.25,0.5312 c -0.0444,1.0229 -1.63477,1.1489 -0.0937,4.5625 l -0.21875,0.4063 c -0.45679,0.2112 -1.34131,0.8677 -1.78125,0.8124 -0.3269,0.2864 -0.60205,0.6422 -0.84375,1 -0.55298,0.3089 -1.19824,0.3353 -1.8125,0.25 -0.56176,0.1966 -0.89014,0.5682 -1.5,0.75 -1.63037,0.4866 -1.04468,-1.707 -3.71875,1.2813 -0.28736,0.3211 -0.98071,0.3963 -1.375,0.4063 -2.17041,-1.0579 -0.1416,-3.0626 -4.6875,-3.0626 -0.58716,-9e-4 -1.16479,-0.01 -1.75,-0.062 -0.24268,0.1361 -1.7317,2.1856 -1.75,2.4374 0.0383,0.799 1.36426,1.4083 0.75,2.1563 -0.75146,0.5571 -1.6853,1.0252 -2.25,1.7813 -0.56054,0.7502 -0.4978,1.3137 -0.78125,2.125 -0.23169,0.6624 -1.00513,1.3865 -1.375,2 0,0 -0.36205,0.9329 -0.28125,1.125 0.85254,0.5584 1.41626,1.395 2.09375,2.0312 1.5708,1.4756 3.8457,2.8655 1.3125,4.6562 -0.37232,0.8678 0.32202,1.8443 0.21875,2.1876 0.52588,0.7522 0.99438,1.3293 1.71875,1.9374 0.13157,0.388 0.41357,1.6134 0.15625,2 -1.73389,1.3517 -4.42505,2.2154 -5.375,4.4688 -0.30029,0.7129 -0.34644,1.5774 -0.65625,2.2188 0.12695,0.7817 0.87965,0.9652 0.96875,2.1562 0.0627,0.8374 -0.8916,1.5217 -0.625,3.0938 0.36767,2.1686 1.4839,4.0268 1.5625,6.3437 0.0457,1.3506 -0.8232,2.6149 -0.75,3.9687 0.0977,1.8097 0.55688,4.0228 0.21875,5.8126 1.3169,2.9601 4.24292,5.0053 6.5,7.2187 2.02783,1.9878 0.70044,1.6457 0.9375,3.9063 0.65601,1.5666 6.53979,0.6706 5.5,3.375 0.87012,0.3644 1.76416,0.3876 2.53125,0.6562 0.86231,0.3022 2.05566,0.5734 2.84375,1.0312 0.74244,0.432 1.23584,1.2958 2.1875,0.6876 0.36108,-0.043 0.93677,0.4697 1.375,0.5624 0.0259,0.8793 0.39941,1.8736 0.65625,2.7188 -0.63842,1.6709 -1.02881,2.7595 0.15625,4.2188 0.051,0.4489 -0.17334,2.7055 -0.46875,2.9687 l -0.28125,0.031 c -1.75585,-1.9192 -1.90576,-0.6394 -3.71875,-0.5 -2.22412,3.1123 -4.3396,0.755 -5.09375,1.0624 -1.00562,0.3899 -0.67334,2.2405 -0.3125,2.9376 -0.62354,0.5603 -1.51611,1.1947 -2.1875,1.75 0.0298,0.2663 0.32959,0.5942 0.5,0.7812 0.35596,0.081 0.72656,0.2907 1,0.5312 l 0.0937,0.25 c -0.2561,0.8274 -1.92383,1.6817 -1.75,2.6563 0.19946,0.4038 3.20752,0.1756 4.375,1.0313 0.11523,0.3611 0.53174,0.5681 0.75,0.875 0.42505,1.4368 -1.76123,3.2991 -1.125,4.3124 1.05005,1.3953 4.74414,-0.7757 5.5625,-0.125 0.56714,0.6692 0.80762,3.2517 2.21875,2.75 0.15161,-0.1817 1.125,-0.1562 1.125,-0.1562 l 0.96875,1.4375 0.0312,1.3125 0.25,0.3125 c 2.18238,0.4638 4.3418,-1.0991 6.125,1.25 0.40136,0.5288 0.53149,1.0928 0.28125,1.7187 -0.24023,0.6012 -0.85449,1.2868 -0.59375,1.3438 l -0.0937,0.5625 c -1.67505,0.1641 -3.45947,1.0615 -5.03125,1.625 -1.28784,0.461 -3.56299,3.8642 -4.125,5.125 -0.31131,0.6977 -0.20044,1.354 -0.375,2.0625 0.22632,0.5166 0.54395,1.0869 1,1.4375 0.82715,0.2507 1.71167,0.1236 2.5625,0.3125 -0.0438,0.9702 -0.35034,2.0044 -0.0312,2.9375 3.41382,0.9009 2.46948,3.1389 1.1875,5.3437 -0.31201,0.5369 -0.42236,1.3289 -0.875,1.75 -0.72461,0.6742 -1.81616,1.0347 -2.375,1.9063 -0.8606,1.3423 -1.45093,3.002 -2.9375,3.875 -1.09131,0.6406 -2.47705,0.3945 -3.625,1.0313 l -0.34375,1.125 c 0.20849,1.4112 3.52525,5.324 3.53125,6.125 0.006,0.8646 -0.55127,1.499 -1,2.1874 -1.33276,2.0451 -0.27271,2.0914 0.8125,3.7188 -0.71557,4.0405 -0.28101,1.6189 -2.90625,3.5312 -0.22656,0.5299 0.0991,1.0162 0.25,1.5313 0.88086,3.0108 2.97754,2.2771 5.21875,1.5313 0.31567,-0.5051 1.43359,-0.8118 1.96875,-0.8438 1.12109,-0.068 2.48096,1.313 3.75,1.375 0.96973,0.047 1.83105,-0.1926 2.8125,-0.2188 1.30713,-0.034 2.63672,0.1703 3.9375,0.125 2.38647,-0.082 4.91528,-0.5732 7.28125,-0.5312 2.76806,0.049 3.75732,1.7353 5.1875,1.875 2.06104,0.2007 4.95508,-0.4158 6.875,0.3438 2.32446,0.9191 2.96143,2.0282 3.90625,4.0937 0.26245,0.5736 1.12231,0.8778 1.53125,1.375 0.24829,0.3018 0.33521,0.8456 0.53125,1.0313 -0.24169,0.551 -0.91699,3.5771 -1.21875,3.8437 -0.71166,0.3954 -1.97754,0.3827 -2.78125,0.5313 -1.14942,0.2121 -1.14331,0.8531 -1.875,1.25 -0.31299,1.2893 -0.99438,1.5378 -1.375,2.5624 -0.62134,1.6751 0.7583,3.6072 0.96875,5.25 0.0554,0.4334 -0.24365,0.9227 -0.15625,1.25 -1.80224,2.8684 -2.9624,4.9624 -6.75,4.7813 -0.79981,-0.038 -2.05029,-0.1755 -2.78125,-0.5937 -1.13696,-0.651 -1.79736,-1.86 -2.78125,-2.7188 -0.4143,-0.3618 -2.2124,-1.4438 -2.34375,-1.625 -3.09107,-0.8862 -6.62256,2.8945 -9.71875,3.2188 -3.1333,0.3272 -6.07251,-2.2381 -8.1875,-2.125 -1.29785,0.069 -2.10889,1.0542 -2.53125,2.2187 -1.36133,1.2329 -3.20728,-0.067 -4.625,-0.4063 -1.03223,-0.2469 -1.86963,0.6548 -3.46875,0.2813 -1.66724,-0.3892 -3.27246,-1.1094 -4.6875,-1.9375 -0.34473,-0.2022 -0.60791,-0.518 -1.0625,-0.5 -0.6333,0.026 -1.13843,0.8213 -1.28125,1.375 0.0859,1.7158 0.96704,3.7071 0.84375,5.375 -0.051,0.6885 -0.46675,1.4137 -0.53125,2.125 -0.16504,1.8208 2.68604,1.9254 3.78125,1.7812 2.54639,-0.3348 4.40405,0.7949 6.25,2.3126 2.00268,0.2386 2.92773,-0.7766 4.71875,-1.125 0.52685,-0.1023 1.08154,0.3974 1.625,0.2812 0.60816,-0.1299 1.23438,-0.476 1.875,-0.3438 0.71826,0.2072 1.41235,1.6653 2.28125,2.125 0.50317,0.2667 1.11304,0.2089 1.65625,0.3126 0.48193,0.091 0.83252,0.4742 1.34375,0.5312 3.83277,0.4243 4.30029,-1.5202 7.3125,2.3438 0.92236,1.1828 1.4834,2.7299 2.46875,3.9687 0.11353,0.1431 0.7481,0.8724 0.8125,1.0625 0.28858,0.8496 -0.0964,1.8797 0.125,2.3438 0.41822,0.8743 1.3208,1.1169 1.84375,1.875 0.30249,0.4384 0.39111,1.0132 0.84375,1.3437 0.79565,0.1368 2.95459,1.2361 3.5625,1.1563 1.33447,0.7545 5.1731,7.0753 4.78125,8.6562 -0.88965,0.9947 -1.63232,1.3449 -2.53125,2.1562 -0.41894,0.3787 -0.69312,1.0374 -1.09375,1.375 -1.99682,1.6857 -6.91162,1.6956 -8.625,3.125 0.32692,2.5263 5.88525,4.6948 0.25,8.0626 -0.96436,0.5759 -3.85254,0.6922 -4.71875,0.7812 -0.61328,0.063 -2.15381,-0.74 -3.25,-0.75 -0.77417,-0.01 -6.93896,2.2347 -7.21875,3.0312 l 0.40625,0.4063 c 0.37671,-0.01 1.71875,0.9375 1.71875,0.9375 -0.16162,1.6669 -2.70581,3.1631 -2.53125,4.25 0.65698,4.0938 -0.4036,2.4433 -0.5,4.5625 -0.0263,0.5786 0.21191,1.1631 0.0937,1.75 0.57006,0.4092 1.8206,2.1301 1.875,2.1563 0.356,0.9036 0.78101,2.5195 0.375,3.4687 -2.71045,2.0547 3.6897,2.4882 6.125,4.625 0.4812,1.6724 2.45435,4.6817 1.6875,6.375 -0.62387,0.3552 -1.40089,0.7354 -2.09375,1.1563 l 0.125,0 c 28.23413,0.3158 235.5918,-0.078 239.15625,0.062 l 0.0312,0 c 0.15277,-0.3894 0.40757,-0.8143 0.84375,-1.2812 0.49268,-0.5274 1.82129,-1.1729 2.09375,-1.625 l -0.0625,-0.3125 c -0.30078,-0.2519 -0.48975,-0.6327 -0.46875,-1.0313 0.20166,-0.4672 0.54834,-0.7925 0.90625,-1.125 1.15332,-1.0697 3.55078,-3.2963 4.5625,-4.3437 0.67773,-0.7011 1.04346,-1.7887 1.6875,-2.4063 0.80127,-0.7681 1.64795,-0.9604 2.4375,-1.7812 1.14697,-0.6513 0.60693,0.5561 2.34375,-1.125 0.20996,-0.8799 -1.13916,-1.298 -0.8125,-2.5938 0.19434,-0.3156 0.55078,-0.5252 0.875,-0.6874 0.24902,-0.3432 -0.20996,-4.7603 1.25,-7.5313 2.06689,-3.9218 8.92529,-3.9624 9.21875,-9.375 0.33887,-0.4506 0.81153,-0.5556 1.15625,-0.9375 0.65332,-0.7241 1.05811,-1.6938 1.71875,-2.375 0.25439,-0.2622 0.61328,-0.4038 0.78125,-0.75 0.24219,-0.4981 0.28467,-1.2515 0.75,-1.625 0.64307,-0.5151 1.48633,-0.9775 1.9375,-1.7188 0.43945,-0.7219 0.59424,-1.6259 1.0625,-2.375 0.4209,-0.6735 1.10059,-0.9166 1.53125,-1.5624 1.85303,-2.7799 0.36377,-1.8018 3.6875,-4.0313 0.87891,-0.5898 2.11572,-0.7116 3.03125,-1.2813 0.81934,-0.5083 2.1206,-1.6063 3.03125,-1.7812 1.38184,-0.2646 2.5747,0.2935 3.9375,0.3438 2.12158,0.077 4.06397,-1.0728 6.09375,-1.2188 1.25244,-0.09 2.37695,0.273 3.5625,0.25 0.89258,-0.017 1.7124,-0.319 2.625,-0.25 0.72119,0.055 1.28271,0.585 2,0.5 0.69287,-0.082 1.30425,-0.7232 1.28125,-1.4375 -0.67236,-1.6455 -2.9292,-1.5331 -4.21875,-2.6563 l -0.0312,-0.375 c 1.01416,-1.4449 5.78174,1.7945 7.59375,0.3126 0.0205,-1.2078 -3.29541,-1.0624 -4.4375,-1.875 -1.64209,-2.6482 5.58691,-3.2039 6.375,-3.5626 0.69336,-0.3152 1.28271,-0.9775 2.03125,-1.1562 0.45996,-0.1098 1.08692,0.018 1.5,-0.2188 0.51172,-0.2934 0.50488,-0.8288 1.25,-0.875 1.05469,-0.065 2.28809,0.3828 3.3125,0.1563 0.24023,-0.053 0.45215,-0.1059 0.65625,-0.25 0.42676,-0.2998 0.63526,-0.7481 1,-1.0625 1.31689,-1.1357 1.85743,-1.0435 2.90625,-2.6875 0.19922,-0.3125 0.34229,-0.6404 0.6875,-0.8437 0.25488,-0.1513 0.59326,-0.1688 0.875,-0.094 l 0.1875,0.3125 0.40625,0.125 c 0.97461,-0.1362 3.46485,-0.4584 4.375,-0.3437 0.52686,0.066 5.78907,1.048 5.9375,1.125 2.24902,1.1632 -0.22266,3.4492 5.625,2.9687 0.74463,-0.061 0.95605,0.3134 1.8125,-0.1563 l 0.1875,-0.3437 c -0.11279,-0.21 -0.25927,-0.4038 -0.4375,-0.5625 -0.2915,-1.2055 1.85303,-1.5059 2.625,-1.1875 0.29932,0.5342 0.51856,1.1545 0.84375,1.6563 l 0.34375,0.094 c 0.84717,-0.9306 1.42578,-0.2793 2.28125,-0.062 2.48535,-0.6777 1.68408,0.4647 3.0625,0.7812 0.47363,0.1093 0.86133,-0.018 1.3125,0.2813 0.27295,0.436 0.39746,0.9101 1,0.9687 l 0.3125,-0.25 0.0937,-0.375 c -0.12065,-0.2056 -0.18405,-0.5123 -0.15625,-0.75 l 0.3125,-0.2187 c 0.3125,0.2124 0.45606,0.542 0.84375,0.6563 1.19482,0.3505 4.02344,-0.2945 3.5,-2.0626 -0.2915,-0.25 -0.507,-0.608 -0.5,-1 0.46094,-0.4067 1.2539,-0.059 1.6875,-0.5 l 0.0312,-0.3437 c -0.37451,-0.3096 -0.7876,-0.5137 -1.15625,-0.8125 0.0757,-0.4116 0.49512,-0.4924 0.65625,-0.8438 0.21973,-0.4768 0.007,-1.1571 0.34375,-1.5624 1.86768,-0.4886 1.85108,-0.095 3.15625,-1.6563 l 0.0312,-0.3437 c -0.67334,-0.4796 -1.96582,-1.2134 -2.75,-1.4688 -0.42236,-0.1367 -0.89209,-0.064 -1.3125,-0.2812 -0.43994,-0.2278 -0.76953,-0.6914 -1.25,-0.875 -0.91553,-0.3516 -1.59277,-0.033 -2.46875,-0.1563 -0.22412,-0.032 -3.02535,-1.5416 -3.09375,-1.6563 -0.53564,-0.8951 -0.29835,-2.6047 -0.28125,-3.625 0.37744,-0.5425 1.0249,-0.7099 1.40625,-1.2187 0.65723,-0.8765 -0.039,-1.9468 0.21875,-2.8125 0.37158,-1.2505 1.60449,-1.8003 2.3125,-2.75 1.2793,-1.7163 -0.086,-1.7316 3.15625,-3.9688 0.63525,-0.4376 1.52783,-0.2916 2.21875,-0.5624 0.88623,-0.3483 1.73144,-1.5714 2.71875,-2.0313 0.86865,-0.4043 4.86914,-0.3257 3.875,-2.375 l 0.15625,-0.3125 c 1.39551,-0.8042 2.55323,0.9235 3.46875,0.8438 0.5752,-0.4398 1.41993,-0.2836 1.90625,-0.8126 l -0.125,-0.375 -0.3125,-0.2187 c -0.42627,-0.013 -0.95655,-0.015 -1.3125,-0.2813 L 656.25,1598.25 c 0.29443,-0.6552 1.3169,-0.875 1.375,-1.6875 -0.1074,-0.2158 -0.1152,-0.5214 -0.0625,-0.75 l 0.375,-0.1875 c 1.72852,0.2437 1.65234,0.4873 3.15625,1.0625 0.28076,-0.074 1.62405,-1.0524 1.71875,-1.2813 l -0.0937,-0.375 c -0.82715,-0.8273 -1.98047,-0.3144 -2.8125,-0.9687 -0.0537,-0.2588 -0.0968,-0.5164 -0.0937,-0.7813 -0.21143,-0.3307 -0.60742,-0.4148 -0.875,-0.6874 -0.0356,-0.4497 0.83545,-1.9292 1.15625,-2.2813 0.3916,-0.2415 0.96582,-0.2665 1.40625,-0.1875 0.56982,-0.3222 0.34668,-0.8701 0.75,-1.2188 0.88525,-0.7628 4.19921,-1.4804 3.375,-4.5312 l -0.34375,-0.1875 c -0.25977,0.06 -0.64502,0.019 -0.875,-0.125 -0.3252,-0.3833 -0.4126,-0.9693 -0.5625,-1.4375 -2.0376,-1.2017 -0.18798,-2.0796 -0.4375,-3.2812 -0.48486,-0.7586 -2.02734,-1.1373 -2.34375,-1.8438 -0.53613,-1.1993 -0.27345,-2.1787 0,-3.375 0.11333,-0.4941 -0.15088,-0.9619 -0.0312,-1.4375 0.48535,-1.9282 3.33692,-1.4461 4.71875,-2.2187 l 0.15625,-0.3438 c -0.0557,-0.8002 -0.7373,-1.0664 -0.75,-2.2812 0.36035,-0.4853 1.57812,-2.831 1.4375,-3.375 l -0.25,-0.3126 c -0.25,-0.055 -0.50244,-0.144 -0.71875,-0.2812 -0.77734,-1.5879 0.24609,-2.5391 1.125,-3.7188 l -0.0312,-0.375 c -0.85498,0.3613 -1.93652,0.8609 -2.84375,0.9688 -1.19434,-0.3428 -0.49219,-3.1235 -0.84375,-4.4375 -0.47607,-1.7788 -2.71535,-5.2451 -2.78125,-5.75 -0.10742,-0.8242 0.90771,-2.2563 0.59375,-3.0625 -0.40381,-0.6055 -1.10742,-0.9087 -1.375,-1.6875 -0.47217,-1.3765 -0.12988,-5.3003 0.625,-6.5625 0.5415,-0.9063 1.3584,-1.6329 1.90625,-2.5625 0.50342,-0.8545 0.83887,-1.7236 1.53125,-2.4375 1.19238,-1.2295 3.12793,-1.7617 4.21875,-3.0625 1.30176,-1.5522 2.44238,-4.5294 4.46875,-5.9687 1.00684,-0.7152 4.1875,-2.7013 4.71875,-3.5626 0.64697,-1.0485 -0.4614,-2.7749 -0.4375,-4 0.0215,-1.0969 0.95415,-1.8818 0.96875,-2.0937 0.87598,-0.3032 5.18359,-4.206 6.25,-5 0.71777,-0.5342 1.66552,-0.7525 2.375,-1.2813 1.63574,-1.2169 2.99658,-2.5058 4.84375,-3.4374 4.51416,-2.2786 8.3418,-1.7847 12.34375,-3.0313 3.4126,-1.0625 15.28369,-6.0294 17.5,-8.4687 l -0.0625,-0.2188 c -1.625,-1.2276 -0.44824,-1.1363 -0.90625,-2.4062 l -0.25,-0.25 c -1.74512,0.5219 -3.75293,1.9768 -5.59375,1.9374 -0.51953,-0.01 -3.57813,-0.8788 -4,-1.1874 -0.66797,-0.4893 -0.88623,-1.625 -1.96875,-1.625 -0.64697,0 -1.37793,0.3282 -2.03125,0.4062 -6.07471,0.7222 -7.62255,-3.3658 -11.375,-4.9062 -1.31006,-0.5385 -2.3374,-0.7652 -3.5,-1.6563 -0.19629,-0.1504 -0.40625,-0.315 -0.65625,-0.375 -0.87598,-0.2094 -1.83936,-0.085 -2.71875,-0.4375 -0.58008,-0.233 -1.01367,-0.7405 -1.59375,-0.9688 -0.68262,-0.2672 -1.4458,-0.227 -2.125,-0.5 -0.70605,-0.2828 -1.34716,-0.8036 -2.03125,-1.0312 -1.0332,-0.3428 -2.13477,0.2715 -2.96875,-0.6875 -0.50732,-0.5835 -1.27002,-2.5073 -0.9375,-3.25 0.31494,-0.7036 1.75097,-1.2202 2.1875,-1.875 1.15186,-1.727 0.21875,-2.9502 2.75,-4.1875 2.21191,-1.081 5.01367,-0.3847 7.0625,-1.625 0.99365,-0.6015 2.13721,-1.2407 2.90625,-2.125 0.65869,-0.7578 1.01464,-2.0923 2.03125,-2.5 1.27783,-0.5132 2.73975,-0.794 4.0625,-1.3125 0.67822,-0.2657 1.23194,-0.7925 1.90625,-1.0625 0.30176,-0.1207 0.61425,-0.2565 0.9375,-0.3125 3.90723,-0.6782 8.93164,-1.311 12.78125,-0.1563 0.79785,0.2397 1.64551,0.8385 2.4375,1.1563 1.08936,0.437 2.10937,0.7295 2.84375,1.75 0.52344,0.7271 0.38965,1.5566 0.625,2.3437 1.00195,0.7736 3.24315,-0.3759 3.15625,1.875 l 0.21875,0.25 c 0.85889,0.089 1.18799,0.086 1.46875,0.1876 0.27295,0.1 0.52148,0.311 1.1875,0.7812 0.0147,0.9009 -1.54248,1.5578 -1.75,2.2188 -0.13042,0.4152 0.067,0.9253 0.0312,1.3437 -0.14648,1.73 -2.38525,4.0894 -1.4375,5.75 0.38721,0.6782 2.5669,1.6299 3.3125,2.3437 1.99268,1.9108 2.49073,4.8663 5.78125,5.375 2.36426,0.3663 2.97949,-1.5217 4.625,-1.75 1.50195,-0.2092 3.08642,0.1282 4.65625,-0.094 3.63037,-0.5132 7.42724,-1.5134 11.03125,-2.2813 1.0835,-0.2306 2.42774,-0.068 3.4375,-0.5 0.18066,-0.077 0.35791,-0.2436 0.5,-0.375 0.56006,-0.5148 0.85693,-1.2254 1.46875,-1.6874 0.30908,-0.2342 0.80127,-0.4463 1.0625,-0.6876 l 0.40625,-0.4062 c 1.581,-1.8882 -0.0747,-2.164 0.0312,-3.875 0.0855,-1.373 2.78222,-4.6345 3.1875,-6.4062 0.71875,-3.1409 -1.09034,-10.9596 -0.9375,-14.75 0.0762,-1.8748 0.97656,-3.8203 0.46875,-5.7188 -1.01709,-3.7988 -2.80859,-3.7706 -4.25,-5.8438 -1.25977,-1.8102 -3.09228,-7.0756 -4.4375,-9.5937 -1.75098,-0.5894 -2.34033,-0.2124 -4.09375,0 -4.23975,0.5132 -4.81885,0.4877 -8.3125,2.9687 -0.85791,0.6101 -1.64209,1.1837 -2.65625,1.5313 -2.39355,0.8199 -4.93946,1.5061 -7.375,2.2813 -1.66895,0.5304 -3.27344,1.4815 -4.9375,2 -0.91943,0.2862 -6.52685,0.6536 -7.65625,0.625 -0.21094,0.082 -0.44095,0.2916 -0.53125,0.5 0.8418,2.9289 12.3706,-0.012 15.375,1.9062 0.90186,0.5761 1.01318,0.9764 1.53125,1.8438 1.17627,1.9653 0.54102,1.7045 -0.53125,2.9062 l -0.0312,0.3125 c 1.97021,1.5362 0.52539,3.3991 -1.09375,4.4063 -0.80811,0.5022 -1.48877,1.397 -2.3125,1.75 -0.76123,0.3253 -7.62988,-0.2999 -8.625,-0.5626 -0.75586,-0.1989 -2.01905,-0.849 -2.75,-0.6874 -0.87158,0.1916 -1.55908,1.2676 -2.5625,1.5937 -0.66113,0.2149 -5.63574,0.5478 -6.1875,0.375 -1.03467,-0.3247 -1.042,-0.774 -2.40625,-0.7187 -1.36182,0.055 -4.69726,0.4269 -5.875,0 -1.46289,-1.3021 1.06738,-3.3257 1.84375,-4.2188 0.78369,-0.9013 1.22608,-2.3135 2.0625,-3.3125 0.93457,-1.1162 3.96875,-3.0063 4.375,-3.75 -0.21924,-0.6128 -1.16504,-0.803 -1.71875,-0.9687 -4.13916,-1.2428 -4.18994,0.6327 -6.8125,0.2187 -1.35938,-0.2144 -2.57617,-1.6152 -3.78125,-1.875 -1.13281,-0.2441 -2.4961,0.188 -3.6875,0 -1.86914,-0.2949 -3.14453,-1.8697 -5.0625,-2.1563 -1.27197,-0.1893 -2.81299,2e-4 -3.9375,-0.7187 -1.84033,-1.1757 -6.73584,-4.6284 -7.71875,-6.4375 -0.54688,-1.0054 -0.58545,-2.1484 -1.28125,-3.1562 -0.72044,-1.0447 -1.29318,-1.8734 -1.71875,-2.5938 l -0.375,0.062 c -1.08496,-0.1855 -2.61133,-0.625 -3.6875,-0.625 z", + "sanluis":"M 540.8125 737.4375 C 540.53467 737.4507 540.20361 737.45291 539.9375 737.5625 C 538.65479 738.09155 539.17334 740.00757 539.46875 741.34375 C 539.7417 742.57983 540.15918 743.84228 539.875 745.125 C 541.34766 747.94141 538.59961 749.8479 539 752.625 C 539.45312 755.77051 539.76073 755.69751 539.09375 759.0625 C 539.66797 761.79175 539.7793 760.23243 539.28125 763.46875 C 538.72949 767.05859 539.67823 770.32373 540.59375 773.6875 C 541.95898 774.44531 542.76758 775.25586 543.125 776.8125 L 543.21875 777.40625 C 543.7168 779.94824 544.80273 779.92139 544.8125 783.125 C 544.8175 784.89697 546.13965 784.92187 546.5 787.8125 C 546.70459 789.45605 546.75538 791.3628 547.28125 792.9375 C 548.59033 793.74438 549.63671 794.4458 549.78125 796.0625 L 549.8125 796.53125 C 549.8467 796.81689 549.91602 797.19507 550.125 797.75 L 550.53125 798.28125 C 552.17871 800.49243 549.57178 801.97974 549.53125 802.6875 C 549.45505 804.021 550.25 805.59888 550.5 806.9375 L 550.53125 807.25 C 550.48485 808.90845 549 809.927 549 810.6875 C 549 812.36133 551.64063 812.87085 550.65625 816.53125 C 550.53564 816.97998 550.37402 817.40869 550.3125 817.84375 C 550.98389 819.87646 551.64942 819.82861 551.28125 822.46875 C 550.81348 825.81982 552.54834 826.72022 551.15625 830.03125 C 550.67041 831.18701 551.89014 832.96363 551.875 835.09375 C 551.856 837.70776 553.9043 837.95312 553.21875 842.5 C 552.89307 844.65918 553.16695 844.21241 554.09375 846.09375 C 555.83887 849.63721 557.65235 852.71289 560.15625 855.75 C 562.94287 859.12988 561.7627 861.0896 562.875 862.8125 L 563.125 863.1875 C 565.5083 867.04736 564.08448 870.72876 568.1875 873.28125 C 574.32275 877.09839 570.87109 878.85034 573.96875 881.71875 C 574.44971 882.16406 575.07471 882.74219 575.96875 883.6875 L 576.21875 884.0625 C 576.375 884.41455 576.42626 885.01806 576.25 885.59375 L 576.125 885.90625 C 578.01221 887.97949 577.31738 889.27344 576.96875 891.53125 C 576.61719 893.80518 576.83887 894.06934 576.84375 896.0625 C 576.84675 897.4292 576.08447 898.80957 573.96875 898.75 L 573.6875 898.53125 C 573.53223 899.10498 573.2544 899.74072 572.75 899.96875 C 572.8315 901.68066 574.59912 900.93701 573.6875 904.71875 C 573.5898 905.12354 573.26562 906.19727 573.3125 906.59375 C 574.15527 908.36133 574.31055 908.03418 573.5625 909.90625 C 575.07764 912.21167 575.99024 912.03784 575.96875 915.5 C 575.96375 916.27539 575.91065 917.05322 575.90625 917.84375 C 575.90525 918.15137 577.36035 924.09522 577.40625 924.1875 C 578.06543 925.50488 579.58447 925.65869 580.6875 928.4375 C 581.70996 931.01221 583.63477 935.28564 585.65625 937.09375 C 586.96631 938.26465 589.59375 946.90283 589.59375 948.28125 C 589.59375 949.47705 588.8833 951.05811 589.09375 952.09375 C 589.88477 955.98682 592.18115 959.05517 591.03125 963.09375 C 590.83789 963.77295 590.59033 964.44336 590.5625 965.15625 C 590.5947 965.22215 590.67773 965.40576 590.71875 965.46875 L 590.9375 965.75 L 591.1875 966.125 C 591.55469 966.67432 591.8125 967.29395 591.8125 967.96875 C 591.8125 969.16699 591.35547 969.90283 590.84375 970.40625 L 590.625 970.59375 L 590.71875 970.9375 C 591.17236 972.80713 591.90869 975.03027 591.25 976.9375 C 590.96387 977.76611 590.8125 978.22949 590.8125 978.84375 C 590.8125 982.83545 591.24463 986.70704 589 990.21875 C 587.63623 992.35303 588.49121 995.37793 588.1875 997.8125 C 587.76025 1001.2368 586.64551 1004.5222 585.5625 1007.7812 C 585.43994 1008.1504 585.43654 1008.4814 585.5 1008.9688 L 585.625 1009.8438 C 585.96729 1012.4561 584.67871 1012.539 584.78125 1013.9062 L 584.8125 1014.3438 C 584.856 1015.793 584.19043 1016.0459 583.75 1017.125 C 583.773 1017.2519 584.979 1019.2602 585.09375 1019.4375 L 583.625 1019.5 C 594.06006 1019.518 673.67089 1019.5054 673.96875 1019.6562 C 674.02585 1002.7153 674.37156 957.3584 674.03125 951.71875 C 674.11765 935.36182 674.03285 919.01245 674.09375 902.65625 C 674.12065 895.52075 674.41354 888.25512 674 881.125 C 673.28516 868.79492 672.68359 856.45508 671.96875 844.125 L 671.53125 835.8125 C 671.22559 830.25537 670.5542 830.8706 673.0625 826.375 C 673.30859 825.93481 673.43604 825.43408 673.75 825.03125 C 674.54443 824.01172 676.77099 824.69482 677.375 823.65625 C 677.83691 822.43799 675.75147 820.81128 676.65625 819.4375 C 681.42383 812.20044 676.35059 815.79345 678.8125 811.21875 L 680.21875 808.59375 C 681.65771 805.91919 680.4873 806.06202 680.9375 804.03125 C 681.18896 802.896 682.04443 802.28906 682.3125 801.34375 C 682.56104 800.46533 682.01657 799.23267 682.21875 798.65625 C 682.47412 797.92725 683.11768 797.63526 683.71875 797.21875 C 684.16504 796.90967 684.34277 795.56885 684.40625 795.0625 C 684.49075 792.59082 685.33496 792.57569 685.9375 790.71875 C 686.46484 789.09521 686.05127 789.03784 686.125 787.59375 C 686.1699 786.71655 686.73975 786.12451 686.59375 785.15625 C 686.47607 784.37988 686.05518 783.89648 685.875 783.1875 C 685.66797 782.37012 685.87059 780.97583 685.375 780.3125 C 685.05371 779.88208 683.76953 778.36377 683.71875 777.78125 C 683.40527 774.1853 686.99902 766.18139 680.5625 767.96875 C 678.22363 768.61816 676.34619 769.4419 673.84375 769.65625 C 673.7041 769.66825 673.54639 769.6171 673.40625 769.625 C 672.33447 769.6853 668.52832 770.60571 667.625 770.15625 C 666.47607 768.93066 667.91162 765.81445 666.96875 764.53125 C 663.93945 760.40796 665.70703 757.31665 664.3125 755.40625 C 663.84814 754.77075 662.90479 754.51562 662.375 753.90625 C 661.17969 752.53198 661.4956 752.2749 659.71875 751.21875 C 653.67871 747.6272 647.62891 744.07007 641.59375 740.46875 C 640.52588 739.83154 635.35938 740.10132 634.28125 740.0625 C 632.73975 739.90088 629.18555 740.89477 627.78125 741.4375 C 627.60156 741.24194 624.79443 740.9868 624.3125 741 C 620.88379 738.18799 618.74609 738.66259 614.59375 739.625 C 610.74121 740.51807 610.36572 742.47754 604.65625 743.21875 C 603.37451 743.38525 601.91064 742.43457 600.875 742.65625 C 599.94824 742.85474 599.78418 743.7019 598.25 743.5625 C 597.21533 743.4688 595.95996 742.0681 595.21875 742 C 593.83838 741.87305 592.47852 742.5837 591.09375 742.5625 C 590.01172 742.5464 589.54883 741.22657 588.46875 741.125 C 587.28809 741.0144 586.60596 742.69995 585.21875 742.3125 C 583.63135 741.8689 582.22558 740.41309 580.59375 739.875 C 579.25146 739.43315 578.1084 739.7395 576.9375 739.46875 C 576.49157 739.45417 576.13011 739.56364 575.71875 739.65625 C 573.33203 740.19458 571.15625 740.11231 568.71875 740.21875 C 565.28809 740.36938 562.8501 740.64722 559.625 739.875 C 558.33301 739.56519 558.25781 738.03076 555.3125 737.71875 C 554.00098 737.57959 552.40723 738.43506 551.09375 738.71875 C 550.01123 738.95215 548.41748 738.90918 547.28125 738.875 C 544.99365 738.8062 543.00098 737.33227 540.8125 737.4375 z ", + "neuquen":"m 359.8125,1024.8125 c -0.10674,0.3724 -0.16479,0.7414 -0.21875,1.0937 0.0524,-0.3526 0.11203,-0.7214 0.21875,-1.0937 z m -0.21875,1.0937 c -0.14306,0.9342 -0.16921,1.786 -0.34375,2.625 0.17176,-0.8378 0.20504,-1.6918 0.34375,-2.625 z m -9.25,2.0313 c -0.20361,0.083 -0.41797,0.209 -0.5625,0.375 -0.14206,0.4302 0.12965,2.4708 0.0312,2.5937 -1.40478,1.7556 -1.50464,1.4158 -2.5,2.4376 -1.42798,1.4655 0.40454,1.9936 -2.90625,2.2812 l -0.15625,0.031 c -0.36474,0.3626 -1.58225,0.5308 -1.65625,1.1563 -0.1001,0.7012 0.60547,1.5342 0.5,2.6875 -0.0544,0.5977 -1.45337,1.6145 -0.84375,2.5312 0.2771,0.4167 1.31299,2.0029 1.6875,2.1563 0.82983,2.9707 -2.75024,4.4375 -4.625,2.375 l -0.9375,-0.094 c -0.20777,0.3333 -0.8103,0.676 -1.09375,1 l -0.4375,-0.125 c -0.20898,-0.3234 -0.71265,-0.9183 -1.09375,-1.0626 -0.70971,-0.096 -3.90625,-0.8124 -3.90625,-0.8124 -0.18653,-0.01 -0.40527,0.1076 -0.53125,0.25 l -0.15625,0.4687 c 1.80786,3.3467 -1.21143,4.743 -3.71875,6.1563 -1.76709,-0.2435 -2.89087,-2.2581 -4.65625,-1.25 -0.0483,0.092 -0.20485,0.3132 -0.21875,0.4062 -0.27612,1.8155 -0.94604,6.921 -0.75,8.6562 0.12158,1.0793 1.16772,2.5662 1.6875,3.5 0.32105,0.5774 -1.09131,2.1873 -1.4375,2.5 -0.63404,0.071 -0.7478,0.8384 -1.59375,0.4063 -0.67847,-0.73 -0.61646,-1.8125 -1.125,-2.25 -0.32251,-0.1805 -0.81104,-0.2956 -1.125,-0.031 -0.38657,0.2668 -0.40025,3.4048 -0.40625,3.9688 -0.0115,1.0224 -1.03735,4.5663 -0.625,5.0938 -0.6853,2.4556 -3.52173,2.6922 -2.15625,4.75 0.66577,0.05 1.18359,-0.3884 1.875,-0.3126 L 317.25,1078 l 0.0937,0.4688 c -0.36548,0.7786 -0.8572,1.726 -0.9375,2.5937 -0.0935,1.0073 3.67627,1.5199 2.03125,3.6563 -0.24072,0.3127 -0.48486,0.707 -0.84375,0.9062 -1.34571,0.165 -3.24829,-1.3935 -4.59375,-0.25 l -0.15625,0.3438 0.15625,0.375 c 0.68018,0.4607 1.85254,1.0424 2.625,1.3437 2.198,3.5742 -0.52051,4.1189 3.21875,6.4063 0.21777,0.133 0.55985,0.2724 0.53125,0.5937 -0.5979,1.1362 -2.64111,1.3773 -2.96875,2.4063 -0.82251,2.5833 1.91431,1.868 -1.9375,7.625 -0.52319,0.7817 -1.46533,1.2031 -2,1.9687 -0.83204,1.1904 0.38647,2.4656 0.71875,3.4687 0.2959,0.8939 0.45435,1.8909 0.6875,2.8126 l -0.0312,0.1874 c 0.60766,1.0837 2.83203,2.7545 3.125,3.4063 0.52343,1.1651 1.3313,2.4266 0.90625,3.7813 -0.35571,1.1322 -2.15259,1.8229 -1.875,3.1874 0.36573,0.7444 0.97095,1.251 1.25,2.0626 0.91113,2.6472 -2.10962,2.4804 -2.90625,3.6562 -0.34644,0.5107 -0.63477,1.145 -0.9375,1.6875 -0.0554,0.1 -0.1008,0.2632 -0.125,0.375 -0.0884,0.4106 -0.52975,2.2017 -0.46875,2.5625 0.14526,0.8614 2.42773,4.5926 2.9375,5.2188 0.0222,0.6132 -0.24976,1.1567 -0.125,1.7812 0.1626,0.813 0.92676,1.4651 1.125,2.4062 -0.60693,0.5329 -3.19605,2.6285 -3.21875,3.0313 l 3.25,1.5937 c 1.86621,0.909 0.90625,3.0606 1.71875,4.4688 0.32813,0.5683 2.44385,2.8217 2.5625,3.2188 0.40894,1.366 0.78516,3.0208 1.53125,4.25 0.38794,0.6389 2.3852,1.8686 2.375,2.4374 -0.0698,1.0139 -2.17065,0.9034 -2.625,1.8438 -0.42822,1.5435 1.50295,1.6898 1.53125,2.8438 0.0461,1.8763 -1.11865,3.7034 -1.15625,5.625 -0.0308,1.5607 1.04295,3.2968 1.09375,5.0312 0.0891,3.0527 0.20044,5.688 2.40625,7.9688 0.53394,0.5519 1.57642,0.6951 2.0625,1.25 0.75976,0.8668 1.03711,1.8419 2,2.5624 1.74805,1.3089 3.6084,1.781 4.4375,4.0626 0.84937,2.3361 -3.396,4.9038 -4.125,6.7187 -0.33154,0.8247 0.68335,1.2758 0.4375,2.3437 -1.18604,1.7526 -3.35107,4.7435 -5.78125,4.5 -0.47363,-0.047 -0.95776,-0.3777 -1.5625,-0.625 -0.35742,-0.064 -0.91064,-0.1922 -1.15625,-0.5 -1.83007,-0.2643 -4.34082,1.7647 -5.84375,2.6563 -0.8623,0.5118 -2.75098,1.7 -3.40625,2.2813 -0.65796,0.2443 -1.80835,-0.6263 -2.71875,-0.5313 -0.39868,0.3433 0.24512,1.8238 -1.53125,3.0937 -1.5791,1.1292 -8.7146,4.0904 -9.46875,5.3438 -0.23242,0.3862 0.54541,1.7041 0.71875,2 -0.156,0.2032 -0.5493,0.8139 -0.5,1.0938 0.14477,0.3034 0.62455,0.8183 0.65625,1.0937 -0.12081,0.2314 -0.007,0.7094 0.0625,0.9375 -0.38135,0.8618 -1.0459,1.1865 -1.5,1.9375 -0.25904,1.0508 0.97485,2.6128 1.21875,3.6875 0.23486,1.0337 -0.4104,2.3252 -0.1875,3.5 0.42651,2.2452 1.39136,2.9795 1.875,4.5625 0.2793,0.914 -0.41211,2.2011 -0.59375,3.125 -0.1582,0.8047 0.7312,1.2305 0.6875,2.125 -0.10059,2.0645 -2.13184,5.0957 -4.03125,5.9375 -0.16897,0.1821 -0.2588,0.5698 -0.1875,0.8125 -0.36499,0.4419 -1.14551,1.3141 -0.84375,1.9687 0.54101,0.4968 2.03491,0.9962 1.28125,2 -0.21363,0.2854 -0.53931,0.3895 -0.65625,0.75 -0.27466,0.85 0.003,1.8565 -0.59375,2.5938 -0.27978,0.3457 -4.86792,1.1191 -3.5625,3.1562 0.1919,0.1936 2.00732,1.2084 2.25,1.1876 1.22485,1.0447 0.83179,4.0366 -0.4375,4.7187 -0.99951,-0.056 -1.79761,-0.4017 -2.75,-0.4687 -1.08813,-0.076 -2.4939,0.7893 -3.59375,0.5 l -0.3125,-0.1563 c -1.27344,-1.878 -1.50464,-3.1572 -4,-3.5313 -1.3086,-0.1964 -1.35575,2.5789 -1.40625,3.25 -0.12378,0.181 -0.44214,0.6388 -0.65625,0.7188 -0.78198,1.8203 2.10695,2.0326 2.09375,3.5938 -0.44898,0.7871 -1.85275,1.9311 -1.84375,2.7187 0.0557,0.6646 1.20435,1.6084 1.46875,2.375 0.50684,1.4702 -0.80957,5.2639 0.28125,6.2813 0.13184,0.1229 0.24976,0.2537 0.40625,0.3437 0.12085,0.07 0.20532,0.1563 0.34375,0.1563 0.47437,0.01 1.78198,-0.523 2.09375,-0.094 0.0625,0.3393 0.031,0.73 -0.0625,1.0625 l 0.125,0.2813 c 0.62939,0.2649 2.47266,0.957 2.625,1.4687 0.0251,0.7641 -0.37231,1.7296 -0.5625,2.4687 -0.0464,0.181 -0.948,2.1031 -1.125,2.2188 -0.14258,0.093 -0.76245,0.3475 -0.84375,0.4375 -0.89697,0.9926 -1.14648,1.7901 -2.28125,2.625 -0.24244,0.1782 -0.53735,0.7234 -0.8125,0.9687 -0.5498,1.2985 1.23295,2.4859 1.15625,3.7813 -0.23926,0.4756 -0.24878,1.0204 -0.375,1.5313 -0.57886,0.2468 -1.09155,0.6787 -1.75,0.7187 -0.84717,0.051 -1.60742,-0.6871 -2.28125,-1.0625 -0.5708,-0.3184 -1.37964,-0.2521 -1.875,-0.5312 -0.32544,-0.1839 -0.73877,-0.6248 -1.03125,-0.875 -0.97607,-0.1526 -2.10083,0.6932 -1.84375,1.75 l 0.28125,0.1562 c 0.1814,-0.172 0.57861,-0.2295 0.8125,-0.1875 l 0.25,0.1563 c 0.62256,1.6717 -1.12185,3.3749 -1.15625,4.4062 0.14234,0.4072 1.03975,1.2527 0.96875,1.4688 -0.24243,0.761 -1.46533,1.2828 -1.8125,2.0624 l 0.0625,0.25 c 0.37232,0.362 1.54468,1.0058 2.03125,1.0938 0.33008,0.5088 0.5437,1.1101 0.875,1.5938 0.25512,0.3719 0.85449,0.4238 1.125,0.8437 0.28296,0.439 0.16479,1.1389 0.375,1.6563 0.36792,0.4748 1.2417,0.5722 1.6875,0.1562 0.27906,-0.3379 0.4604,-1.1158 0.5,-1.5312 l 0.3125,-0.063 c 3.00728,1.8741 2.05103,1.7432 3.09375,4.6563 0.14892,0.415 0.4619,0.7759 0.375,1.25 -0.28662,0.7774 -1.52026,0.9648 -1.65625,1.3125 l -0.1875,0.9375 c -0.63281,0.6133 -1.65723,2.2991 -2,2.4687 -2.49829,0.3802 -4.08789,-5.0344 -5.75,-0.25 -0.20044,0.5774 -0.39087,1.0743 -0.5625,1.6563 -0.63379,2.1479 -0.84863,4.1414 -1.28125,6.2813 -0.0383,0.1897 -0.0625,0.7073 -0.28125,0.8124 -0.51197,-0.1916 -1.04687,-0.3688 -1.53125,-0.625 l -0.25,0.2813 c 0.7085,0.9648 2.04541,1.6263 2.625,2.5937 2.04126,3.4081 -4.46118,6.8455 -6.34375,9.0626 -0.27002,1.7429 1.39868,3.2499 2.15625,4.7187 0.39392,0.7641 0.04,1.6889 0.375,2.4375 0.89136,1.9926 3.55933,6.0653 2.96875,8.2188 -0.56739,0.8982 -1.66797,0.5146 -2.375,1.1562 l -0.0625,0.375 c 0.13376,0.5385 0.89023,1.3573 1.6875,2.2188 l 0.125,0 c 2.57178,-0.2639 6.12451,0.2184 8.65625,0.5 1.08301,0.1199 1.97217,0.9398 3.03125,1 1.80396,0.1014 3.64209,-0.5069 5.4375,-0.2813 4.33765,0.5449 7.29004,2.9033 11.0625,3.75 2.75537,0.6186 5.47656,1.0586 8.28125,0.4375 1.30005,-0.288 2.5,-2.1562 2.5,-2.1562 1.00049,-1.2615 2.18555,-0.9963 3.21875,-2.5 2.28076,-3.3196 6.18774,-3.9322 5.125,-8.9063 -1.12061,-5.2461 -6.20166,-3.0566 -3.6875,-10.625 0.4541,-1.3662 2.23975,-1.5937 3.46875,-1.5937 0.71436,-0 1.20508,-0.1107 1.75,-0.5626 1.03345,-1.6374 0.96387,-3.8665 3.21875,-4.625 3.23633,-1.0886 5.84619,-3.2895 9.1875,-4.2812 0.1294,-0.038 0.14258,0.012 0.25,-0.031 l 1,-0.375 c 3.07666,0.046 2.4917,-0.5782 4.1875,-0.7813 0.30762,-0.037 0.62402,-0.017 0.9375,0.062 l 0.65625,0.4375 c 0.58398,0.1284 3.02124,-0.2842 3.6875,-0.625 2.3877,-2.7437 7.09814,-6.222 10.9375,-4.6563 6.55884,2.6745 2.93286,0.6364 7.90625,-0.25 2.36304,-0.4207 4.97754,-0.4151 7.21875,-1.3124 l 0.3125,-0.125 c 0.27588,-1.9085 -0.4519,-4.6704 2.28125,-5.1563 6.24829,-1.1108 4.61743,-5.227 5.15625,-10 0.29175,-2.5854 3.64648,-3.9709 5.3125,-5.4687 l -0.21875,-0.4063 c -0.79053,-1.5229 -2.03906,-2.542 -2.78125,-4.125 L 381.875,1297 c -0.25733,-0.814 -0.10767,-2.2509 0.15625,-2.9375 2.39819,-6.2397 3.5249,-8.4445 9.9375,-10.7187 1.48071,-0.5254 2.86548,-1.3216 4.34375,-1.875 3.35376,-1.2557 7.03516,-1.9193 10.1875,-3.625 2.66162,-1.4407 6.06079,-0.9025 8.21875,-2.5 1.31836,-0.9769 2.45386,-2.1993 3.875,-3.0313 6.2644,-3.666 3.89087,-9.3088 11.90625,-11.7187 2.64209,-0.7942 1.77124,-3.0443 6.3125,-3.0313 3.90674,0.012 2.01172,-0.126 4.78125,-1.1875 3.55469,-1.3628 4.01611,-1.1587 5.3125,-5.125 0.93066,-2.8462 4.99023,-2.6787 5.28125,-4.3125 1.0166,-5.7119 1.40771,-4.7112 6.59375,-8.0937 4.42334,-2.8859 3.25977,-6.3737 7.1875,-9.375 2.01953,-1.5435 2.87354,-2.7252 5.59375,-3.2813 1.15674,-0.2363 2.021,-0.5052 3.03125,-1.1563 l 0.28125,-0.125 4.84375,-1.8124 c 2.56347,-0.9524 1.22607,-2.7363 7.15625,-2.7813 0.36573,-0.9654 0.1977,-10.926 0.1875,-12.7187 -0.0977,-17.3514 0.24365,-34.7102 0.125,-52.0626 -0.0518,-7.5027 0.0732,-15 0.0312,-22.5 -0.011,-1.9125 -0.0919,-3.8836 -0.0312,-5.8124 -1.2694,-0.019 -2.29667,-0.6337 -3.5,-0.75 -1.63184,-0.1596 -3.27979,-0.3215 -4.90625,-0.5626 l -0.34375,0.063 c -4.52198,0.6251 -5.25293,-4.5728 -7.28125,-7.0313 -0.44971,-0.1983 -2.50684,0.25 -3.15625,0.25 -0.94629,0 -1.61865,-0.3042 -2.125,-0.625 l -0.5625,-0.375 c -0.15088,-0.097 -0.2959,-0.1609 -0.4375,-0.2187 -4.19091,-0.4155 -3.43506,1.5517 -6.90625,-2.9063 -0.50879,-0.6533 -1.14746,-1.1005 -2.21875,-1.1875 -2.4082,0.3282 -3.06787,1.5234 -5.875,1.0625 -2.26416,-0.3721 -4.5498,-0.9243 -6.75,-1.5625 -5.11182,-1.4834 -3.33496,-7.2733 -5.25,-9.5312 -1.72022,-2.0281 -7.48291,-3.1296 -10.1875,-4.5626 -2.17627,-1.1525 -7.43091,0.7203 -9.65625,1.2813 l -0.46875,0.094 c -3.04638,0.5716 -9.85742,-0.4723 -12.5,-1.5624 -2.66089,-1.0981 -7.01514,-4.209 -8.625,-6.7813 -0.44726,-0.7148 -2.71069,-3.6421 -2.875,-4.1875 -0.41333,-1.3706 0.87183,-3.0103 1.53125,-4.0625 0.37231,-0.5938 0.13452,-5.0102 -0.28125,-6.4687 l -0.28125,-0.625 c -1.55005,-0.2437 -3.07642,-1.2379 -3.78125,-2.7813 -1.16162,-0.3345 -2.29761,-1.1049 -2.78125,-2.25 0.0967,-1.1093 -0.18677,-2.0556 -0.625,-3.0625 -1.63574,-3.7622 -5.45312,-3.0732 -5.125,-5.6875 l -0.125,-0.1875 c -0.20874,-0.2803 -1.48413,-1.0639 -2.15625,-1.9688 -1.6897,-0.7471 -3.93848,-0.79 -5.46875,-1.75 -0.80908,-0.5073 -3.17603,-4.4465 -3.5,-5.4374 -0.1709,-0.5238 -1.04688,-4.5537 -1.25,-5.5313 l -0.34375,-1.7187 c -0.34888,-1.68 -1.42847,-3.1473 -3.3125,-2.6876 -0.5,0.1223 -0.74097,1.1802 -1.53125,1.4688 -2.01709,-0.1856 -2.48267,-2.5008 -3.09375,-4.0312 -1.33007,-3.3335 0.9209,-3.3292 1.125,-4.2188 0.49927,-2.1763 0.48169,-5.0483 -1.25,-6.6875 -0.56592,-0.5361 -1.3147,-1.3936 -2.125,-1.5625 -0.15877,0.5942 -0.43622,1.1711 -0.90625,1.75 l -0.0937,0.1875 c -2.54956,1.7754 -5.30859,-2.7198 -7.84375,-2.875 z", + "rionegro":"m 489.28125,1127.0625 c -0.67031,0.042 -1.35342,0.1658 -2.03125,0.1563 -0.0216,0 -0.0411,0 -0.0625,0 -0.0607,1.9284 0.0202,3.9003 0.0312,5.8124 0.042,7.5 -0.0831,14.9973 -0.0312,22.5 0.11865,17.3524 -0.2227,34.7107 -0.125,52.0626 0.0102,1.7922 0.17823,11.7533 -0.1875,12.7187 -5.93018,0.045 -4.59278,1.8285 -7.15625,2.7813 l -4.84375,1.8124 -0.28125,0.125 c -1.01025,0.6513 -1.87451,0.92 -3.03125,1.1563 -2.72021,0.5561 -3.57422,1.7378 -5.59375,3.2813 -3.92773,3.0009 -2.76416,6.4891 -7.1875,9.375 -5.18604,3.3822 -5.57715,2.3818 -6.59375,8.0937 -0.29102,1.6338 -4.35059,1.4663 -5.28125,4.3125 -1.29639,3.9663 -1.75781,3.7622 -5.3125,5.125 -2.76953,1.0615 -0.87451,1.1995 -4.78125,1.1875 -4.54126,-0.013 -3.67041,2.2369 -6.3125,3.0313 -8.01538,2.4094 -5.64185,8.0527 -11.90625,11.7187 -1.42114,0.832 -2.55664,2.054 -3.875,3.0313 -2.15796,1.5971 -5.55713,1.0588 -8.21875,2.5 -3.15234,1.7056 -6.83374,2.3689 -10.1875,3.625 -1.47827,0.5534 -2.86304,1.3496 -4.34375,1.875 -6.4126,2.2737 -7.53931,4.479 -9.9375,10.7187 -0.26392,0.6866 -0.41358,2.1235 -0.15625,2.9375 l 0.0625,0.1875 c 0.74219,1.583 1.99072,2.6021 2.78125,4.125 l 0.21875,0.4063 c -1.66602,1.4973 -5.02075,2.8833 -5.3125,5.4687 -0.53882,4.773 1.09204,8.8892 -5.15625,10 -2.73315,0.4859 -2.00537,3.2473 -2.28125,5.1563 l -0.3125,0.125 c -2.24121,0.8969 -4.85571,0.8922 -7.21875,1.3124 -4.97339,0.8868 -1.34741,2.925 -7.90625,0.25 -3.83936,-1.5652 -8.5498,1.9126 -10.9375,4.6563 -0.66626,0.3408 -3.10352,0.7534 -3.6875,0.625 l -0.65625,-0.4375 c -0.31348,-0.079 -0.62988,-0.1 -0.9375,-0.062 -1.6958,0.2031 -1.11084,0.8269 -4.1875,0.7813 l -1,0.375 c -0.10742,0.042 -0.1206,-0.01 -0.25,0.031 -3.34131,0.9917 -5.95117,3.193 -9.1875,4.2812 -2.25488,0.7589 -2.1853,2.988 -3.21875,4.625 -0.54492,0.452 -1.03564,0.5626 -1.75,0.5626 -1.229,0 -3.01465,0.2275 -3.46875,1.5937 -2.51416,7.5684 2.56689,5.3789 3.6875,10.625 1.06274,4.9741 -2.84424,5.5862 -5.125,8.9063 -1.0332,1.5036 -2.21826,1.2382 -3.21875,2.5 0,0 -1.19995,1.8682 -2.5,2.1562 -2.80469,0.6211 -5.52588,0.1811 -8.28125,-0.4375 -3.77246,-0.8467 -6.72485,-3.2051 -11.0625,-3.75 -1.79541,-0.2256 -3.63354,0.3827 -5.4375,0.2813 -1.05908,-0.061 -1.94824,-0.8806 -3.03125,-1 -2.53174,-0.2821 -6.08447,-0.7643 -8.65625,-0.5 l -0.125,0 c 1.07856,1.1653 2.2466,2.4293 2.1875,3.375 -1.24268,1.9441 -0.96265,1.0825 -0.59375,3.2812 0.0305,0.1817 -0.14355,3.572 -0.28125,3.9062 0,0 -1.14282,0.012 -1.5,-0.1562 l -0.4375,0.094 -0.15625,0.375 c 0.009,1.2156 1.76538,3.4505 2.125,5.25 0.26783,1.3405 -1.5498,3.4948 -1.5,4.9374 -0.63793,0.6311 -1.42554,1.3282 -2.15625,1.8438 l -0.125,0.8125 c 2.00855,2.2319 1.33325,0.834 2.25,3.6875 0.16822,0.5239 0.50757,0.98 0.6875,1.5 0.64673,1.8706 -0.54858,3.9009 0.1875,6.125 0.40283,1.2178 1.84912,1.8022 2.0625,3 -0.0811,0.2919 -1.73901,1.6499 -2.125,2.125 -0.045,0.2006 -0.053,0.4248 -0.0312,0.625 0.15308,1.4121 1.28247,1.535 1.625,2.9062 0.26587,1.0663 -0.21045,2.815 0.0937,3.5938 0,0 1.09961,-0.412 1.6875,-0.5 0.93896,1.3614 1.26538,4.8407 2.0625,6.5938 0.30371,0.6678 0.9292,1.128 1,2.0624 -1.32886,1.7307 -0.90259,2.7584 -0.6875,4.7813 l 0.375,3.4375 c 0.13793,1.296 -0.52531,2.4308 -0.71875,3.4688 130.50627,0.2299 261.02278,0.076 391.53125,-0.031 1.07617,0 2.60254,0.4395 3.6875,0.625 l 0.375,-0.062 c -1.31916,-2.2331 -1.21076,-3.453 0.40625,-7.0625 0.81348,-1.8159 1.62988,-3.6582 2.5,-5.4375 0.37793,-0.7725 1.491,-2.7163 1.5,-3.5 -0.32031,-0.6518 -0.84814,-1.2061 -1.15625,-1.875 -1.08838,-2.3633 -1.67773,-5.8545 -0.75,-8.3438 0.28955,-0.7768 0.88818,-1.419 1.15625,-2.25 0.34277,-1.0612 0.31348,-2.1139 0.5,-3.1874 0.1386,-0.7953 0.28423,-1.6947 0.0937,-2.5 -0.29297,-0.2319 -0.37988,-0.5657 -0.6875,-0.8126 -1.59521,-1.2778 -3.61865,-2.2392 -4.09375,-4.5312 -0.24121,-1.1655 -0.13672,-2.5438 -0.59375,-3.6562 -0.70166,-1.7096 -1.35888,-2.7222 -1.46875,-4.6563 -0.1499,-2.6445 -1.73388,-4.9937 -2.375,-7.5 -0.49854,-1.9512 -1.80025,-11.3372 -1.84375,-13.3437 -0.0952,-4.3696 2.18848,-5.7519 2.65625,-8.3126 -0.10943,-0.3737 -0.20896,-1.3735 0.0312,-1.7812 0.25635,-0.4356 6.53662,-5.0381 7.1875,-5.1875 1.64697,-0.3789 5.28711,0.5095 6.28125,-0.2187 l 0.0937,-0.375 C 684.09668,1342.6454 683.6919,1342.822 683,1342.75 l -0.1875,-0.2188 c -0.0967,-0.9266 0.77,-1.0017 0.8125,-1.5624 l -0.125,-0.3126 -0.375,-0.2187 c -1.02734,0.014 -2.11768,0.8555 -3.09375,0.5937 l -0.21875,-0.25 c 0.20752,-0.9299 1.1958,-0.5914 1.84375,-0.5624 0.89844,-0.4088 1.27246,-0.9029 2.34375,-1.0313 2.1084,-0.2525 3.01367,0.8057 4.75,1.125 0.89941,0.1655 3.38134,-0.5726 3.8125,0.9063 -0.12744,0.2418 -0.83545,0.8242 -1.09375,0.9374 -0.14307,0.3817 -0.39695,0.6861 -0.46875,1.0938 l 0.0937,0.3438 c 0.82666,0.2905 3.69629,-0.2921 3.34375,1.5312 -1.61182,2.2114 -4.00781,-0.6599 -5.8125,1.4062 l -0.375,0 -0.28125,-0.2187 c 0.0127,-0.272 0.11475,-0.5933 0.28125,-0.8125 l -0.0312,-0.375 c -0.79199,-0.3306 -4.34424,0.1987 -3.84375,1.75 0.19141,0.2558 0.44238,0.4554 0.6875,0.6562 0.93896,1.8687 5.37939,-0.049 6.96875,-0.1562 1.62598,-0.1099 3.78173,0.292 5.34375,0.75 3.59473,1.0537 7.14307,2.6216 10.71875,3.75 2.125,0.6709 4.33301,0.333 6.4375,1.3125 1.09912,0.5118 2.06152,1.5937 3.1875,2.0937 1.3833,0.6153 2.75489,0.8916 4.15625,1.4063 2.07666,0.7622 4.24756,1.9175 6.21875,2.9375 0.5918,0.3061 0.98243,0.8023 1.71875,0.9375 2.34912,0.4321 3.68018,-1.8039 5.25,-1.5313 l 0.25,0.2188 0.0625,0.375 c -0.125,0.1977 -0.292,0.4096 -0.46875,0.5625 0.009,0.29 -0.0557,0.5943 -0.125,0.875 l -0.3125,0.1875 c -0.11084,0.2798 0.0586,0.6929 0.28125,0.875 1.85107,0.7451 3.88623,0.2334 5.8125,1.3125 3.36621,1.8862 4.65283,5.2613 9,6.4375 5.61865,1.521 12.94287,-0.1531 18.71875,-0.2812 1.89844,-0.042 3.70898,0.6182 5.5625,0.6562 1.86963,0.039 3.43603,-1.2265 5.15625,-1.1562 1.05078,0.043 2.13965,0.6743 3.21875,0.7812 3.30225,0.3277 8.91846,0.026 12.25,-0.5 1.60596,-0.2534 1.69971,-0.9664 2.84375,-1.7188 1.53369,-1.0075 5.51221,-1.4634 6.90625,-2.4062 1.84766,-0.5684 4.70845,-3.233 4.78125,-3.25 0.7538,-0.1693 2.31812,0.4002 3.5625,0.4062 l -1.625,-0.6874 c -0.0869,-0.073 -1.269,-3.2498 -1.3125,-3.3438 -1.12305,-2.4116 -2.30713,-3.6347 -3.875,-5.75 -2.91943,-3.9385 -6.82422,-7.2016 -11.125,-9.75 -1.11279,-0.6596 -2.25439,-1.4306 -3.40625,-1.9688 -4.01074,-1.8725 -8.83252,-0.7836 -11.4375,-1.9687 -1.27685,-0.581 -4.49219,0.4121 -5.5,-0.9063 -0.22107,-5.9755 0.29036,-82.777 0.0625,-91.25 l -0.0937,0 c -0.9834,-0.053 -1.99219,0.1015 -2.96875,0.1876 -3.58398,0.3143 -6.54297,-2.2726 -8.25,-4.3438 -4.41699,-1.5826 -8.86865,-3.8534 -11.25,-8.0312 -1.98682,-3.4864 -5.91894,-1.8214 -8.4375,-3.9063 l -0.46875,-0.375 -1.375,-1.1875 c -1.67334,-1.4414 -3.1084,-2.3902 -4.125,-4.4375 -3.62305,0.074 -4.50782,-1.2202 -7.6875,-3.0937 -4.08691,-2.4092 -8.53174,-3.0517 -12.6875,-5.0626 -2.48584,-1.2019 -1.70948,-0.2552 -3.78125,-0.2812 l -0.40625,-0.062 c -0.88086,-0.2652 -1.3291,-0.5849 -1.96875,-1.2187 -0.25684,-0.059 -0.75244,-0.1363 -1.6875,-0.1563 -2.88379,-0.06 -12.53272,-1.0894 -15.5625,-1.875 -4.67969,-1.2135 -9.59863,0.1152 -13.375,-1.3125 -0.99023,-0.3742 -2.19189,-0.1948 -3.21875,-0.4062 l -0.5625,0.125 c -2.95264,0.6214 -5.47168,-0.4942 -8.5,0.5937 -2.12695,0.7641 -3.0166,1.0639 -5.34375,0.9063 -3.06006,-0.2081 -5.45654,2.5254 -7.9375,-0.5938 -0.625,-0.7866 -8.37012,-3.3198 -10.625,-2.1562 -2.57129,1.3256 -3.97998,3.5335 -6.75,1.5 -1.53027,-1.1241 -3.4292,0.1431 -5,-1 -3.95459,-2.881 -2.39404,-0.6783 -5.09375,-1.5313 -0.39258,-0.1241 -0.73486,-0.3528 -1.0625,-0.5937 l -0.28125,-0.1876 c -1.89453,-0.5922 -2.05762,0 -4.65625,-1.1874 -1.5,-0.6886 -14.1499,-1.895 -16.4375,-1.0626 -2.16895,0.7899 -4.38916,0.3199 -6.59375,1.0313 -1.19043,0.3848 -3.51758,-0.8764 -5.125,-1.0625 -1.46045,-0.1694 -2.24805,-0.6472 -3.5,-1.2188 -1.77979,0.1466 -2.64844,0.4776 -3.9375,-1.0312 -1.59473,-1.8672 -1.05371,-3.0444 -1.15625,-5.125 -0.062,-1.2558 -3.21289,-4.2578 -4.75,-4.9375 -3.37549,-0.1572 -3.17334,-0.1748 -6.15625,-2.5625 -2.28809,-1.8311 -6.75586,0.1465 -7.96875,-2.9375 -3.38965,-0.5844 -2.41504,-0.4629 -5.59375,-2.0625 -3.61523,-1.8193 -4.30908,-1.0307 -5.9375,-4.8438 -0.18994,-0.2021 -0.27635,-0.2967 -0.34375,-0.3437 -2.40186,0.055 -2.35986,-4.4423 -3.125,-5.9375 -1.01229,-1.9785 -0.95946,-1.7171 -0.75,-3.25 -1.38163,-0.3752 -3.90919,-0.6055 -4.75,-0.031 -7.15674,4.8827 -6.44336,0.4859 -12.9375,2.8124 -4.85645,1.7413 -11.06738,-3.7134 -12.40625,-8.2187 -1.09131,-3.6714 -2.6792,-5.4932 -6.75,-4.7187 -2.16699,0.413 -2.70605,-0.8814 -3.5,-2.5626 -1.66846,-0.7509 -1.2847,-2.8535 -1.375,-4.3437 -0.42236,-6.9844 0.57861,-3.9746 3.625,-8.0625 1.15527,-1.5503 3.19775,-0.9102 4.34375,-2.4688 3.0332,-4.1229 1.58448,-6.3594 -0.46875,-10.1874 -1.89355,-3.5299 -5.65186,-4.9683 -9.5,-5.375 -0.77881,-0.083 -1.54541,0.1212 -2.34375,-0.031 -2.69141,-0.5161 -5.1958,-0.9891 -7.9375,-0.9063 -2.05029,0.063 -3.8706,-0.5107 -5.875,-0.5937 -0.22447,-0.01 -0.43281,-0.014 -0.65625,0 z m 323.28125,235.3437 c 0.13828,7e-4 0.27779,-0.016 0.40625,-0.031 -0.12613,0.013 -0.2722,0.031 -0.40625,0.031 z M 838.125,1241.5 c 0.0722,0.022 0.14609,0.042 0.21875,0.062 l 0,-0.031 c -0.071,-0.02 -0.14786,-0.01 -0.21875,-0.031 z m 1.8125,4.5312 c 0.064,0.1689 0.13162,0.303 0.21875,0.4063 -0.0851,-0.1021 -0.15619,-0.2412 -0.21875,-0.4063 z m 0.21875,0.4063 c 0.0823,0.098 0.18283,0.1669 0.28125,0.2187 -0.10262,-0.053 -0.19616,-0.1166 -0.28125,-0.2187 z m 0.28125,0.2187 c 0.1025,0.054 0.22861,0.076 0.34375,0.094 -0.11516,-0.017 -0.24113,-0.041 -0.34375,-0.094 z m 0.34375,0.094 c 0.0819,0.013 0.16382,0.031 0.25,0.031 -0.0884,-2e-4 -0.16599,-0.018 -0.25,-0.031 z m -568.75,110.875 c 0.0334,0.1345 0.11842,0.2741 0.21875,0.4375 -0.10219,-0.1659 -0.18531,-0.3029 -0.21875,-0.4375 z m 0.21875,0.4375 c 0.0787,0.1282 0.17071,0.2947 0.28125,0.4375 -0.10976,-0.1423 -0.20265,-0.3099 -0.28125,-0.4375 z", + "lapampa":"m 693.8125,951.46875 c -9.87845,0.0238 -17.36181,0.10743 -19.78125,0.25 0.34031,5.63965 -0.005,50.99655 -0.0625,67.93745 -0.29786,-0.1508 -79.90869,-0.1382 -90.34375,-0.1562 -32.91016,0.05 -65.83643,0.2066 -98.75,-0.062 0.0913,3.6602 -0.11963,7.4698 -0.3125,11.125 l 2.78125,0 c 0.24464,31.7441 -0.26123,63.5014 -0.0937,95.25 l 0,1.4063 c 0.90377,0.013 1.7896,-0.1939 2.6875,-0.1563 2.0044,0.083 3.82471,0.6561 5.875,0.5937 2.7417,-0.083 5.24609,0.3902 7.9375,0.9063 0.79834,0.1525 1.56494,-0.052 2.34375,0.031 3.84814,0.4067 7.60645,1.8451 9.5,5.375 2.05323,3.8283 3.50195,6.0642 0.46875,10.1874 -1.146,1.5584 -3.18848,0.9185 -4.34375,2.4688 -3.04639,4.0879 -4.04736,1.0781 -3.625,8.0625 0.0903,1.4902 -0.29346,3.5926 1.375,4.3437 0.79395,1.681 1.33301,2.9756 3.5,2.5626 4.0708,-0.7745 5.65869,1.0473 6.75,4.7187 1.33887,4.5053 7.5498,9.9597 12.40625,8.2187 6.49414,-2.3267 5.78076,2.0705 12.9375,-2.8124 0.84081,-0.5742 3.36837,-0.3442 4.75,0.031 -0.20946,1.5329 -0.26229,1.2715 0.75,3.25 0.76514,1.4952 0.72314,5.9925 3.125,5.9375 0.0674,0.047 0.15381,0.1413 0.34375,0.3437 1.62842,3.8129 2.32227,3.0245 5.9375,4.8438 3.17871,1.5996 2.2041,1.4781 5.59375,2.0625 1.21289,3.084 5.68066,1.1064 7.96875,2.9375 2.98291,2.3877 2.78076,2.4053 6.15625,2.5625 1.53711,0.6797 4.688,3.6817 4.75,4.9375 0.10254,2.0806 -0.43848,3.2578 1.15625,5.125 1.28906,1.5088 2.15771,1.1775 3.9375,1.0312 1.25195,0.5716 2.03955,1.0494 3.5,1.2188 1.60742,0.1861 3.93457,1.4473 5.125,1.0625 2.20459,-0.7114 4.4248,-0.2414 6.59375,-1.0313 2.2876,-0.8324 14.9375,0.3743 16.4375,1.0626 2.59863,1.192 2.76172,0.5949 4.65625,1.1874 l 0.28125,0.1876 c 0.32764,0.2409 0.66992,0.4696 1.0625,0.5937 2.69971,0.853 1.13916,-1.3494 5.09375,1.5313 1.5708,1.1432 3.46973,-0.1241 5,1 2.77002,2.0338 4.17871,-0.1742 6.75,-1.5 2.25488,-1.1634 10,1.3696 10.625,2.1562 2.48096,3.1192 4.87744,0.386 7.9375,0.5938 2.32715,0.1576 3.2168,-0.1422 5.34375,-0.9063 3.02832,-1.0879 5.54736,0.028 8.5,-0.5937 l 0.5625,-0.125 c 1.02686,0.2116 2.22852,0.032 3.21875,0.4062 3.77637,1.4277 8.69531,0.099 13.375,1.3125 3.02978,0.7856 12.67871,1.815 15.5625,1.875 0.93506,0.02 1.43066,0.098 1.6875,0.1563 0.63965,0.634 1.08789,0.9535 1.96875,1.2187 l 0.40625,0.062 c 2.07177,0.026 1.29541,-0.921 3.78125,0.2812 4.15576,2.0109 8.60059,2.6536 12.6875,5.0626 3.17968,1.8737 4.06445,3.1677 7.6875,3.0937 1.0166,2.0473 2.45166,2.9961 4.125,4.4375 l 1.375,1.1875 0.46875,0.375 c 2.51856,2.0849 6.45068,0.4202 8.4375,3.9063 2.38135,4.178 6.83301,6.4486 11.25,8.0312 1.70703,2.0712 4.66602,4.6581 8.25,4.3438 0.97656,-0.086 1.98535,-0.2412 2.96875,-0.1876 l 0.0937,0 c -0.009,-0.3442 -0.0194,-1.2995 -0.0312,-1.4062 0.53272,-3.0576 -0.0396,-278.8584 0.25,-293.625 0,0 -51.11465,-0.35266 -80.75,-0.28125 z M 583.625,1019.5 l 1.46875,-0.062 c -0.0405,-0.063 -0.28735,-0.4878 -0.5,-0.8437 -0.11038,0.1037 -0.96875,0.9062 -0.96875,0.9062 z", + "mendoza":"m 432.34375,744.8125 c -0.92476,0.002 -1.12579,0.59717 -1.9375,2.03125 -0.53271,0.94116 -1.8811,0.16895 -2.53125,1.09375 -0.60034,0.85352 -0.66919,2.0752 -1.28125,2.875 -1.60547,2.09863 -2.75586,0.87183 -4.625,0.4375 -0.78906,-0.18333 -1.63574,-0.0937 -2.4375,-0.0937 -4.67432,0 -3.6521,1.19995 -7.28125,3 -2.16357,1.07275 -4.7019,0.6875 -6.15625,2.90625 -1.40601,2.14502 1.84937,8.3374 -3.25,8.53125 l -2,0.0937 c -3.344,0.12744 -6.47705,0.36914 -9.78125,1.09375 -1.74658,0.3833 -3.12183,1.3584 -4.9375,1.71875 -2.7754,0.55029 -4.49829,-1.38623 -6.84375,-1.625 -2.06446,-0.21069 -3.73901,0.85303 -5.65625,1.21875 l -4.15625,0.8125 c 3.10283,2.17903 0.17146,5.21424 0.21875,7.15625 0.005,0.21924 0.41284,1.31982 0.625,1.46875 0.65088,0.45605 1.61206,0.47705 2.34375,0.75 3.3291,1.24365 2.51123,2.67041 3.4375,5.34375 0.30811,0.88892 0.49268,2.63965 -0.34375,3.3125 -3.73193,3.00098 -0.80396,3.1377 -0.65625,6.6875 0.0454,1.08813 -0.1958,2.87158 0.1875,3.90625 0.61939,1.67285 1.99683,2.63623 2.21875,4.5 0.95507,0.81298 0.70508,-0.0186 1.21875,1.40625 0.34449,0.24951 1.06104,0.72285 1.5,0.78125 0.47241,0.31665 0.15771,1.74805 0.65625,2.3125 1.25513,1.42138 3.6377,1.01343 3,3.625 -0.22045,0.90283 -1.26855,2.52368 -1.78125,3.28125 0.0361,0.22998 0.13795,1.59082 0.21875,1.71875 -0.76734,1.90772 -0.9978,1.771 -2.78125,2.59375 -0.22534,0.104 -1.18995,0.52124 -1.15625,0.875 0.95386,1.86011 1.29321,3.92725 1.53125,5.96875 0.064,0.54883 -0.40845,1.21143 -0.1875,1.78125 0.50879,1.31152 1.39136,2.29053 1.71875,3.78125 0.30298,1.37842 0.0979,8.4248 2.59375,8.0625 4.59643,-0.66699 4.23657,-6.23193 5.59375,-7.21875 1.54712,-1.12475 3.85132,2.95117 4.5625,3.8125 1.17896,1.42871 3.65674,3.86133 3.125,5.90625 0.7854,1.1167 2.16235,3.00098 1.59375,4.46875 -1.04248,2.69189 -4.98022,2.63916 -5.53125,4.53125 -0.4419,1.51611 -1.72949,3.01147 -1.90625,4.53125 -0.13184,1.13306 0.1945,2.33765 0.1875,3.46875 -0.008,1.3103 -0.76611,2.90527 -1,4.21875 -0.27222,1.52881 1.83862,3.24072 1.5625,5.21875 -0.38672,2.77051 -3.70508,0.16113 -0.625,9.0625 0.21381,0.61718 -0.0691,2.46997 0.1875,3.46875 0.30884,1.20215 1.99655,2.09521 2.09375,2.65625 0.4541,2.61743 -1.4375,3.82397 -1.4375,4.78125 0,0.62476 0.6387,1.53076 0.625,2 -0.0142,0.46973 -1.58716,1.95483 -1.84375,3.09375 2.30298,2.01587 3.88843,2.67725 3.15625,5.90625 0.15308,0.15943 0.41845,0.50903 0.40625,0.75 -0.31177,1.50098 -3.59375,2.71509 -4.75,3.5 l -0.53125,1.21875 -0.5625,0.25 c -0.43384,0.0288 -2.76367,-2.60913 -3.25,-2.9375 l -0.40625,-0.0625 c -0.66968,0.20972 -2.18042,2.0752 -2.5,2.0625 -0.29273,-0.011 -0.9209,-0.11845 -1.1875,-0.0312 l -0.21875,0.3125 c 0.0349,0.10449 0.0691,0.2197 0.125,0.3125 2.55957,4.24634 0.6089,3.68652 0.625,5.09375 0.005,0.45947 0.84229,1.77002 1.0625,2.375 -0.27661,0.68701 -1.53125,1.84885 -2.53125,1.90625 -0.72632,2.60962 -2.47974,2.52856 -4.3125,3.9375 -0.53002,0.40747 -0.72266,1.55273 -0.9375,2.15625 -0.63061,1.77051 -1.88965,2.93115 -3,4.40625 -0.53271,0.70801 -1.82397,2.54834 -1.96875,3.3125 -0.1172,0.61914 0.65479,2.9209 -0.125,3.25 -3.36524,1.4209 -0.9375,1.81396 -2.375,3.25 -1.18091,0.22949 -3.34082,0.86768 -2.625,2.53125 0.1499,0.23193 2.43799,1.5564 2.96875,1.8125 0.23777,0.31616 0.0693,0.89136 0,1.21875 -0.74488,3.52246 -4.32568,7.43262 -4.5,8.28125 -0.31323,1.52539 -0.0945,2.84131 -0.75,4.3125 l -0.125,0.25 c -2.1211,4.16407 0.69897,7.91602 -0.4375,9.6875 -0.28467,0.44433 -0.86328,0.57666 -1.15625,0.9375 -0.52563,0.64697 -0.69751,1.3291 -1.375,1.90625 -3.2583,2.77588 -7.20679,-0.36523 -8.90625,1.90625 -0.40601,0.54248 -0.26929,1.20605 -0.4375,1.8125 -0.18799,0.67822 -1.24438,1.31201 -0.875,2.21875 0.26172,0.64258 0.88379,1.11426 1.375,1.5625 2.99536,2.73144 6.28638,-0.48828 8.0625,4.25 0.0889,0.23633 -0.50245,1.35352 -0.59375,1.5625 -0.67359,1.54541 -1.1582,2.9541 -0.8125,4.6875 0.42431,2.12744 3.40674,3.43066 3.15625,5.03125 -0.93213,1.25 -0.66211,1.20068 -1.1875,2.09375 0.36108,0.68848 1.22705,2.36182 1.34375,3.125 l -0.15625,0.46875 c -0.24317,0.0581 -0.37895,0.47363 -0.46875,0.65625 -0.90405,1.83593 0.19873,3.46533 1.0625,5 1.49682,2.6597 0.94653,4.7148 1.71875,6.25 0.30347,0.603 0.91138,1.105 1.28125,1.6875 0.0867,0.1367 0.20095,0.3482 0.15625,0.5313 -0.10059,0.4026 -0.45557,0.498 -0.59375,0.8437 -2.32104,0.4209 -2.37646,1.4698 -3.5,3.0937 -0.48584,0.7018 -1.49438,1.63 -1.65625,2.5 0.009,0.1334 0.0469,0.3395 0.15625,0.4376 0.56689,0.2856 2.04272,0.1317 2.28125,0.4374 0.48755,0.8859 -1.46704,1.3829 -1.3125,2.6563 0.20214,1.6675 2.05811,3.207 1.875,4.8437 -0.0728,0.6514 -1.83154,2.1168 -2.09375,3.0313 -0.4269,1.4893 -0.28987,2.8082 -0.625,4.0625 0.8103,0.1689 1.55908,1.0264 2.125,1.5625 1.73169,1.6392 1.74927,4.5112 1.25,6.6875 -0.2041,0.8896 -2.45507,0.8855 -1.125,4.2188 0.61108,1.5305 1.07666,3.8456 3.09375,4.0312 0.79028,-0.2886 1.03125,-1.3465 1.53125,-1.4688 1.88403,-0.4598 2.96362,1.0077 3.3125,2.6876 l 0.34375,1.7187 c 0.20312,0.9776 1.0791,5.0077 1.25,5.5313 0.32397,0.9909 2.69092,4.9299 3.5,5.4374 1.53027,0.9598 3.77905,1.0028 5.46875,1.75 0.67212,0.9049 1.94751,1.6885 2.15625,1.9688 l 0.125,0.1875 c -0.32812,2.6143 3.48926,1.9253 5.125,5.6875 0.43823,1.0069 0.72168,1.9532 0.625,3.0625 0.48364,1.1451 1.61963,1.9155 2.78125,2.25 0.70483,1.5434 2.2312,2.5376 3.78125,2.7813 l 0.28125,0.625 c 0.41577,1.4587 0.65356,5.8749 0.28125,6.4687 -0.65942,1.0522 -1.94458,2.6919 -1.53125,4.0625 0.16431,0.5454 2.42774,3.4727 2.875,4.1875 1.60986,2.5723 5.96411,5.6834 8.625,6.7813 2.64258,1.0902 9.45362,2.134 12.5,1.5624 l 0.46875,-0.094 c 2.22534,-0.561 7.47998,-2.434 9.65625,-1.2813 2.70459,1.4328 8.46728,2.5345 10.1875,4.5626 1.91504,2.258 0.13818,8.0478 5.25,9.5312 2.2002,0.6382 4.48584,1.1904 6.75,1.5625 2.80713,0.4609 3.4668,-0.7343 5.875,-1.0625 1.07129,0.087 1.70996,0.5342 2.21875,1.1875 3.47119,4.458 2.71534,2.491 6.90625,2.9063 0.1416,0.058 0.28662,0.122 0.4375,0.2187 l 0.5625,0.375 c 0.50635,0.3208 1.17871,0.625 2.125,0.625 0.64941,0 2.70654,-0.4483 3.15625,-0.25 2.02832,2.4585 2.75927,7.6566 7.28125,7.0313 l 0.34375,-0.063 c 1.62646,0.241 3.27441,0.4031 4.90625,0.5626 1.22363,0.1184 2.26318,0.7518 3.5625,0.75 l 0,-1.4063 c -0.16748,-31.7486 0.33839,-63.5059 0.0937,-95.25 l -2.78125,0 c 0.19287,-3.6552 0.40381,-7.4648 0.3125,-11.125 32.91357,0.2691 65.83984,0.1128 98.75,0.062 0,0 0.85837,-0.8025 0.96875,-0.9062 -0.38929,-0.6518 -0.82888,-1.3867 -0.84375,-1.4688 0.44043,-1.0791 1.106,-1.332 1.0625,-2.7812 l -0.0312,-0.4376 c -0.10254,-1.3672 1.18604,-1.4501 0.84375,-4.0624 l -0.125,-0.875 c -0.0635,-0.4874 -0.0601,-0.8184 0.0625,-1.1876 1.08301,-3.259 2.19775,-6.5444 2.625,-9.9687 0.30371,-2.43457 -0.55127,-5.45947 0.8125,-7.59375 2.24463,-3.51171 1.8125,-7.3833 1.8125,-11.375 0,-0.61426 0.15137,-1.07764 0.4375,-1.90625 0.65869,-1.90723 -0.0776,-4.13037 -0.53125,-6 l -0.0937,-0.34375 0.21875,-0.1875 c 0.51172,-0.50342 0.96875,-1.23926 0.96875,-2.4375 0,-0.6748 -0.25781,-1.29443 -0.625,-1.84375 l -0.25,-0.375 -0.21875,-0.28125 c -0.041,-0.063 -0.12405,-0.2466 -0.15625,-0.3125 0.0278,-0.71289 0.27539,-1.3833 0.46875,-2.0625 1.1499,-4.03858 -1.14648,-7.10693 -1.9375,-11 -0.21045,-1.03564 0.5,-2.6167 0.5,-3.8125 0,-1.37842 -2.62744,-10.0166 -3.9375,-11.1875 -2.02148,-1.80811 -3.94629,-6.08154 -4.96875,-8.65625 -1.10303,-2.77881 -2.62207,-2.93262 -3.28125,-4.25 -0.0459,-0.0923 -1.501,-6.03613 -1.5,-6.34375 0.004,-0.79053 0.0575,-1.56836 0.0625,-2.34375 0.0215,-3.46216 -0.89111,-3.28833 -2.40625,-5.59375 0.74805,-1.87207 0.59277,-1.54492 -0.25,-3.3125 -0.0469,-0.39648 0.2773,-1.47021 0.375,-1.875 0.91162,-3.78174 -0.856,-3.03809 -0.9375,-4.75 0.5044,-0.22803 0.78223,-0.86377 0.9375,-1.4375 l 0.28125,0.21875 c 2.11572,0.0596 2.878,-1.3208 2.875,-2.6875 -0.005,-1.99316 -0.22656,-2.25732 0.125,-4.53125 0.34863,-2.25781 1.04346,-3.55176 -0.84375,-5.625 l 0.125,-0.3125 c 0.17626,-0.57569 0.125,-1.1792 -0.0312,-1.53125 l -0.25,-0.375 c -0.89404,-0.94531 -1.51904,-1.52344 -2,-1.96875 -3.09766,-2.86841 0.354,-4.62036 -5.78125,-8.4375 -4.10302,-2.55249 -2.6792,-6.23389 -5.0625,-10.09375 l -0.25,-0.375 c -1.1123,-1.7229 0.0679,-3.68262 -2.71875,-7.0625 -2.5039,-3.03711 -4.31738,-6.11279 -6.0625,-9.65625 -0.9268,-1.88134 -1.20068,-1.43457 -0.875,-3.59375 0.68555,-4.54688 -1.36275,-4.79224 -1.34375,-7.40625 0.0151,-2.13012 -1.20459,-3.90674 -0.71875,-5.0625 1.39209,-3.31103 -0.34277,-4.21143 0.125,-7.5625 0.36817,-2.64014 -0.29736,-2.59229 -0.96875,-4.625 0.0615,-0.43506 0.22314,-0.86377 0.34375,-1.3125 C 551.64063,812.87085 549,812.36133 549,810.6875 c 0,-0.7605 1.48485,-1.77905 1.53125,-3.4375 L 550.5,806.9375 c -0.25,-1.33862 -1.04495,-2.9165 -0.96875,-4.25 0.0405,-0.70776 2.64746,-2.19507 1,-4.40625 L 550.125,797.75 c -0.20898,-0.55493 -0.2783,-0.93311 -0.3125,-1.21875 l -0.0312,-0.46875 c -0.14454,-1.6167 -1.19092,-2.31812 -2.5,-3.125 -0.52587,-1.5747 -0.57666,-3.48145 -0.78125,-5.125 -0.36035,-2.89063 -1.6825,-2.91553 -1.6875,-4.6875 -0.01,-3.20361 -1.0957,-3.17676 -1.59375,-5.71875 l -0.0937,-0.59375 c -0.35742,-1.55664 -1.16602,-2.36719 -2.53125,-3.125 l -2,1.90625 c -0.29151,-0.51416 -5.71924,-6.9705 -6.09375,-7 -1.65966,-0.12964 -3.35693,0.27148 -4.53125,-1.25 l -0.375,-0.5 c -1.15869,-1.02881 -5.81201,1.7666 -8.75,-0.8125 -4.23438,0.29736 -7.5498,1.0769 -9.90625,-3.375 -0.4082,-0.77076 -0.48926,-0.91357 -1.3125,-1.1875 l -0.84375,-0.28125 c -3.55762,-1.19385 -2.49561,-4.12793 -4.90625,-6.4375 -2.14941,-2.06031 -4.02832,-0.32544 -6.375,0.28125 -1.76904,0.45727 -3.54883,0.47534 -5.3125,1.03125 -2.43994,0.76905 -4.65674,0.86768 -6.40625,-1.53125 0,0 0.16797,-0.24975 -0.28125,-0.15625 -0.90332,0.18901 -2.29395,0.16187 -3.21875,-0.0937 -1.67236,-0.46314 -3.54785,-3.12769 -5.375,-1.3125 -1.1274,1.12036 -1.1382,1.62378 -1.1875,3.15625 -0.24024,7.48242 -5.4585,3.98926 -10.5,3.03125 -4.39697,-0.83545 -8.43994,-1.81665 -11.75,-5.03125 -1.59082,-1.54541 -4.58691,-1.59009 -6.59375,-1.125 -1.00293,0.23266 -2.34961,0.72778 -3.375,0.34375 -3.37305,-1.26391 -3.51367,-7.30176 -7.9375,-8.34375 -0.51684,-0.12176 -0.9105,-0.18814 -1.21875,-0.1875 z", + "sanjuan":"M 406.34375 504.03125 C 406.3554 504.05489 406.36443 504.10307 406.375 504.125 C 405.90332 504.68384 405.20483 505.16235 404.78125 505.71875 C 404.17505 506.51441 405.5767 510.29028 405.5 511.5 C 404.7583 512.80981 404.20581 514.28296 403.375 515.53125 C 403.24121 515.73242 402.93213 515.85352 402.8125 516.0625 C 402.7561 516.16114 401.21175 522.4126 401.21875 522.59375 C 401.24707 523.33545 402.81982 526.86841 403.21875 528.6875 C 402.48389 530.56324 401.45557 532.79346 400.46875 534.5625 C 400.01636 535.37427 399.03979 536.25342 398.46875 537.03125 L 397.65625 536.78125 C 397.61792 537.60474 398.1746 538.323 398.125 539.03125 C 398.05664 540.01172 397.90625 542.28125 397.90625 542.28125 C 395.72558 544.18115 397.20264 548.85327 396.5625 551.5 L 395.90625 552.25 C 394.77832 552.71383 393.56421 552.24465 392.4375 552.28125 C 391.66846 552.30615 388.67969 554.68018 387.90625 555.28125 C 387.58642 555.22192 387.09009 555.39575 386.84375 555.59375 C 386.81494 556.03833 387.27271 557.05005 387.40625 557.5 C 387.03516 558.68555 386.78809 560.02759 386.5625 561.25 C 385.67749 561.57422 384.71582 561.95557 383.875 562.375 C 383.15772 564.66894 382.9058 565.76904 382.875 568.125 L 383.40625 568.90625 C 384.79882 569.18994 385.71875 571.49658 385.03125 572.6875 C 385.63769 574.22803 385.74463 576.67847 386.625 577.96875 C 386.4065 578.15454 386.24995 578.50635 386.21875 578.78125 C 386.43701 579.28711 386.83765 579.77002 387.1875 580.1875 C 387.31079 581.2312 386.76294 582.25024 386.90625 583.34375 C 387.00878 584.12426 387.39255 584.78491 387.40625 585.59375 C 388.01514 586.32251 390.881 590.35278 390.875 591.125 C 390.4646 591.40503 390.22534 591.55811 389.9375 591.9375 C 390.03491 592.37696 390.46855 592.89697 390.40625 593.3125 C 390.04737 594.0962 389.09595 595.27905 388.5625 596 L 388.5 596.8125 C 388.82959 597.41601 389.49365 597.73193 389.78125 598.375 C 389.86255 599.07202 389.47681 599.95801 389.75 600.625 C 390.28906 601.94141 391.96045 602.5083 390.5 604.09375 C 390.69632 604.354 390.77225 604.94116 390.78125 605.25 C 390.63403 605.68676 389.6892 606.91382 389.75 607.25 C 388.79639 608.33936 388.64673 610.57812 388.375 611.9375 C 388.36132 612.00586 388.91255 614.23779 388.96875 614.46875 C 388.36134 616.10107 386.19116 617.98633 388.375 619.34375 C 392.71583 619.5293 395.75122 619.56836 395.28125 624.71875 C 395.24366 625.13086 394.76733 626.87598 394.1875 627.1875 L 393.9375 627.15625 C 393.91723 627.21192 393.16797 627.26735 393.0625 627.28125 C 391.95679 629.13428 391.44043 630.43848 390.6875 632.40625 C 390.60864 632.42603 390.26225 632.7866 390.21875 632.875 C 389.77197 633.7876 389.72339 634.99609 389.15625 635.8125 C 388.53516 636.70678 385.93555 639.229 384.65625 639.34375 C 382.90014 639.50171 377.2627 636.66504 375.53125 635.59375 L 374.78125 635.75 L 374.53125 636.28125 C 374.96827 637.38477 376.18262 639.05078 376.375 640.0625 C 376.46626 640.54151 376.42822 641.0127 376.5625 641.5 C 376.38843 641.82032 376.2056 642.7041 376.25 643.0625 C 374.21728 644.64869 373.01367 648.1001 372.15625 650.46875 C 371.51538 652.23901 370.70337 654.06201 370.5625 655.96875 C 370.45117 657.47778 371.4856 658.97144 370.90625 660.46875 C 370.21436 661.17749 369.0542 662.28369 368.625 663.21875 C 367.14087 666.45214 367.23096 668.87573 366.0625 672.28125 C 366.03271 672.36816 365.9292 672.4878 365.875 672.5625 C 365.51636 675.89648 367.23315 675.64575 366.1875 680.34375 L 366.40625 680.71875 C 366.82251 681.04277 367.41772 680.7605 367.75 681.03125 L 368.09375 681.5625 C 367.93457 682.15967 366.28271 682.87427 365.8125 683.21875 C 364.88428 683.89893 365.1814 685.45313 364.34375 686.34375 C 361.92846 686.69873 362.3728 687.25 362.09375 689.0625 C 362.01636 689.56592 361.52441 689.95679 361.3125 690.375 C 361.13819 690.71826 361.14917 691.34229 360.78125 691.5625 L 360.46875 691.5625 C 360.06839 691.19678 360.2356 690.53442 360.0625 690.09375 C 359.55347 688.79981 358.76929 687.2417 357.90625 686.125 L 357.625 686.03125 L 357.1875 686.1875 C 354.20972 691.28223 353.85767 686.70068 353.53125 695.15625 C 353.42065 698.01587 351.8479 700.78955 352.09375 703.5625 C 352.43018 707.35547 352.78979 709.59326 350.6875 712.6875 C 350.46118 713.90625 351.03076 714.30957 351.15625 715.21875 C 351.27785 716.10205 350.97534 717.04492 351.1875 717.96875 C 351.77343 720.52099 352.34644 721.21191 353.625 723.375 C 354.19238 724.33545 354.13379 725.74487 354.5625 726.8125 L 354.90625 726.9375 C 355.43042 726.8134 355.49341 726.73999 355.96875 726.875 C 357.9138 728.80688 356.68335 735.90527 357.875 737.5625 C 358.4419 738.35107 359.79346 738.99316 360.59375 739.4375 C 360.9375 739.62842 362.4353 740.3699 363.03125 740.4375 C 367.97436 740.15503 367.22363 739.82227 370.46875 743.3125 C 373.98853 747.0979 370.5127 746.9209 369.0625 748.75 C 368.66187 749.25537 368.19214 750.6377 367.46875 750.84375 C 364.04419 751.81909 364.71729 750.88135 363.875 750.96875 C 362.92846 749.96386 362.27734 749.66553 361.25 750.8125 L 361.09375 751.3125 L 361.1875 751.65625 C 361.29541 751.84082 363.23877 752.70312 363.78125 753.375 C 363.76636 753.65771 363.64551 753.96533 363.53125 754.21875 C 363.68531 755.25146 364.64795 757.01074 365.875 757.125 C 367.06226 758.44971 365.59375 759.65186 365.59375 760.78125 C 365.59375 761.84912 365.76392 763.29102 365.34375 764.34375 C 365.19531 764.71582 364.83665 765.13477 364.90625 765.5625 C 364.89307 765.90381 368.91528 768.54346 369.4375 768.90625 C 369.44478 768.91131 369.46154 768.90118 369.46875 768.90625 L 373.625 768.09375 C 375.54224 767.72803 377.21679 766.66431 379.28125 766.875 C 381.62671 767.11377 383.3496 769.05029 386.125 768.5 C 387.94067 768.13965 389.31592 767.16455 391.0625 766.78125 C 394.3667 766.05664 397.49975 765.81494 400.84375 765.6875 L 402.84375 765.59375 C 407.94312 765.3999 404.68774 759.20752 406.09375 757.0625 C 407.5481 754.84375 410.08643 755.229 412.25 754.15625 C 415.87915 752.3562 414.85693 751.15625 419.53125 751.15625 C 420.33301 751.15625 421.17969 751.06667 421.96875 751.25 C 423.83789 751.68433 424.98828 752.91113 426.59375 750.8125 C 427.20581 750.0127 427.27466 748.79102 427.875 747.9375 C 428.52515 747.0127 429.87354 747.78491 430.40625 746.84375 C 431.48853 744.93164 431.49512 744.51294 433.5625 745 C 437.98633 746.04199 438.12695 752.07984 441.5 753.34375 C 442.52539 753.72778 443.87207 753.23266 444.875 753 C 446.88184 752.53491 449.87793 752.57959 451.46875 754.125 C 454.77881 757.3396 458.82178 758.3208 463.21875 759.15625 C 468.26025 760.11426 473.47851 763.60742 473.71875 756.125 C 473.76805 754.59253 473.77885 754.08911 474.90625 752.96875 C 476.7334 751.15356 478.60889 753.81811 480.28125 754.28125 C 481.20605 754.53687 482.59668 754.56401 483.5 754.375 C 483.94922 754.2815 483.78125 754.53125 483.78125 754.53125 C 485.53076 756.93018 487.74756 756.83155 490.1875 756.0625 C 491.95117 755.50659 493.73096 755.48852 495.5 755.03125 C 497.84668 754.42456 499.72559 752.68969 501.875 754.75 C 504.28564 757.05957 503.22363 759.99365 506.78125 761.1875 L 507.625 761.46875 C 508.44824 761.74268 508.5293 761.88549 508.9375 762.65625 C 511.29395 767.10815 514.60937 766.32861 518.84375 766.03125 C 521.78174 768.61035 526.43506 765.81494 527.59375 766.84375 L 527.96875 767.34375 C 529.14307 768.86523 530.84034 768.46411 532.5 768.59375 C 532.87451 768.62325 538.30224 775.07959 538.59375 775.59375 L 540.59375 773.6875 C 539.67823 770.32373 538.72949 767.05859 539.28125 763.46875 C 539.7793 760.23243 539.66797 761.79175 539.09375 759.0625 C 539.76073 755.69751 539.45312 755.77051 539 752.625 C 538.59961 749.8479 541.34766 747.94141 539.875 745.125 C 540.15918 743.84228 539.7417 742.57983 539.46875 741.34375 C 539.17334 740.00757 538.65479 738.09155 539.9375 737.5625 C 540.20361 737.45291 540.53467 737.4507 540.8125 737.4375 C 543.00098 737.33227 544.99365 738.8062 547.28125 738.875 C 548.41748 738.90918 550.01123 738.95215 551.09375 738.71875 C 552.40723 738.43506 554.00098 737.57959 555.3125 737.71875 C 558.25781 738.03076 558.33301 739.56519 559.625 739.875 C 562.8501 740.64722 565.28809 740.36938 568.71875 740.21875 C 571.15625 740.11231 573.33203 740.19458 575.71875 739.65625 C 576.13011 739.56364 576.49157 739.45417 576.9375 739.46875 C 575.94727 737.5105 575.67188 735.49317 574.5 733.53125 L 569.78125 725.65625 C 569.47515 725.14404 570.32808 723.1875 569.75 722.71875 C 569.15967 722.38818 565.98828 722.71357 564.28125 721.78125 C 563.3125 721.25244 562.81738 720.36865 562.0625 719.65625 C 560.66113 718.33496 557.99605 716.90674 558.03125 714.75 C 558.15332 707.14722 557.37207 709.76782 554.65625 704.25 C 554.80762 703.63208 557.5234 685.5732 557.5 685.5 L 553.4375 682.46875 C 554.05908 680.56226 555.69385 674.50489 556.53125 673.09375 L 556.21875 672.875 C 556.17875 672.7827 556.15135 672.67555 556.09375 672.59375 C 555.04883 671.11719 552.78222 667.75488 552.15625 666.03125 C 551.89014 665.29907 551.7837 664.44385 551.46875 663.71875 C 550.99268 662.62354 550.0503 660.33106 548.875 659.8125 C 547.78223 659.33057 546.28907 658.98754 545.375 658.21875 C 545.26758 657.87915 545.01758 657.55225 544.875 657.21875 L 544.53125 656.40625 C 543.84277 655.15747 542.72071 654.1648 541.96875 652.9375 C 541.63525 652.39453 541.65234 651.78736 541.28125 651.25 L 540.78125 650.53125 C 540.44336 650.146 539.95654 649.67382 539.5625 649.34375 C 538.08105 648.10205 536.42725 647.60009 535.1875 645.9375 C 534.29492 644.74023 533.56006 642.01563 532.53125 641.25 C 531.146 640.21948 529.04395 639.68213 527.90625 638.40625 C 526.87207 637.24634 526.95019 633.17456 525.625 631.09375 C 524.92969 630.00293 523.51758 628.81274 522.59375 627.9375 C 522.27051 627.63135 515.13135 622.26025 515.03125 622.21875 C 512.73779 616.62769 509.76807 618.67066 506.59375 615.15625 C 505.71924 614.18823 505.22461 612.052 504.1875 611.53125 C 498.61963 608.73511 501.89502 608.0542 499.65625 605.90625 C 499.29736 605.56201 498.62012 605.56763 498.34375 605.21875 C 497.76221 604.4856 497.41552 603.65967 496.53125 603.21875 C 495.49316 602.70142 494.11768 602.80225 493.1875 602.28125 C 492.19873 601.72729 492.33838 599.6355 491.4375 598.65625 C 491.03906 598.2229 490.67237 598.13917 490.125 597.96875 C 488.39404 597.43066 487.79981 596.14405 486.34375 595.34375 C 486.04248 595.17822 485.62452 595.09375 485.34375 594.90625 C 483.80127 593.87646 483.50147 591.60474 482.53125 590.75 C 482.4126 590.7102 482.28027 590.6382 482.15625 590.625 C 480.1875 590.41748 479.11133 590.12207 477.25 589.46875 C 474.9873 588.67432 473.26513 587.8428 470.84375 587.75 C 469.38965 587.6938 467.75782 588.57226 466.3125 588.09375 C 464.4209 587.46826 462.95898 584.96875 460.96875 584.96875 C 457.67871 584.96875 455.63428 587.09864 453 587.28125 C 451.39209 587.39233 450.86963 585.82299 449.34375 586.0625 C 446.23682 586.55078 440.72656 590.04492 441.34375 583.03125 C 441.47217 581.57373 441.55273 579.7063 442.125 578.34375 C 442.55176 577.32813 444.18555 575.86914 444.28125 575.0625 C 444.3833 574.19971 443.647 573.33496 443.5625 572.375 C 443.5107 571.78101 444.10255 570.6289 444.15625 569.875 C 444.20995 569.1211 444.00147 567.70166 444.34375 567 C 445.16211 566.41602 446.25781 566.8645 446.53125 565.5 C 446.51025 564.72949 445.64892 564.22143 445.40625 563.46875 C 445.23633 562.94409 445.5186 558.95849 445.5625 558.21875 C 445.5874 557.80835 445.5581 557.42334 445.625 557 L 445.84375 556.75 C 446.4043 556.666 446.81494 557.24095 447.375 557.15625 C 449.05078 556.698 448.47075 554.40991 448.40625 553.21875 C 449.22217 551.48413 449.76464 552.05811 448.875 549.90625 C 446.97266 545.30566 448.93994 543.22974 447.84375 538.875 C 444.02002 535.50073 440.19922 532.10035 436.4375 528.65625 C 436.3848 527.42114 435.94091 524.03466 435.46875 523.0625 C 435.0166 522.13013 434.3147 521.55005 433.9375 520.53125 C 433.6748 519.82153 433.85789 518.98389 433.6875 518.25 C 429.93262 515.43311 426.3147 511.91065 422.78125 508.8125 C 422.65747 508.7041 421.88184 508.5862 421.65625 508.625 C 419.68384 508.96387 417.45947 509.45777 416.5625 507.1875 C 415.75024 505.13208 415.64087 504.80932 413.6875 505.5 C 409.84717 506.85864 409.85425 504.62256 406.34375 504.03125 z ", + "bsas":"m 958.375,832.5625 -0.0937,0.125 0.15625,2.0625 c -0.68897,1.58838 0.0591,2.26147 -1.5,3.46875 -0.76416,0.59156 -2.01318,0.0737 -2.6875,1.03125 -0.92139,2.24195 0.13623,3.57422 -0.375,4.65625 -0.60986,1.29101 -2.91992,1.85327 -3.9375,3.21875 -0.44288,1.61792 -0.17969,3.43848 -0.65625,5.15625 -0.0967,0.34742 -3.1123,6.1987 -3.1875,6.25 -0.64014,0.43778 -1.58545,0.20679 -2.3125,0.4375 -1.21924,0.38672 -2.26123,0.78394 -3.59375,0.25 -1.64307,-0.65869 -3.2085,-3.24268 -5.0625,-4.15625 -1.59228,-0.78467 -4.09521,0.47168 -6.125,0 -0.86132,-0.2002 -1.85791,-0.98218 -2.625,-1.40625 -2.30762,-1.27587 -8.26074,0.0644 -7.25,3.4375 0.23388,0.78027 0.58375,1.64258 0.59375,2.46875 -15.35254,16.65284 -30.77734,33.23633 -46.3125,49.71875 -22.49658,0.36495 -45.03125,0.37305 -67.53125,0.34375 0,0 -13.75977,-0.0784 -19.96875,-0.0625 -3.57031,0.009 -7.67969,0.39966 -11.21875,-0.125 0.36377,6.44751 -0.0566,34.71044 -0.125,42.3125 -0.2896,14.7666 0.28272,290.5674 -0.25,293.625 0.30224,2.7324 -0.26126,86.4377 -0.0312,92.6562 1.00781,1.3183 4.22315,0.3253 5.5,0.9063 2.60498,1.1851 7.42676,0.096 11.4375,1.9687 1.15186,0.538 2.29346,1.3092 3.40625,1.9688 4.30078,2.5484 8.20557,5.8115 11.125,9.75 1.56787,2.1153 2.75195,3.3384 3.875,5.75 0.0435,0.094 1.22559,3.2708 1.3125,3.3438 l 1.625,0.6874 c 0.5362,0 1.02394,-0.088 1.34375,-0.4062 0.2251,-0.332 0.1499,-0.7305 0.375,-1.0625 1.67627,-0.3076 4.02734,-1.0175 5.53125,-1.8125 1.02148,-0.5395 1.77978,-1.5631 2.8125,-2.1562 2.91846,-1.6789 13.49561,-5.3599 15,-7.1563 0.4458,-0.5327 0.60498,-1.1772 0.75,-1.8437 0.61279,-2.8199 2.37402,-4.5103 3.25,-7.0626 0.47168,-1.375 0.45996,-2.9225 0.96875,-4.3124 0.53076,-1.4493 2.9731,-0.897 2.875,-2.6876 l -0.25,-0.2187 c -0.88232,-0.1577 -1.20899,0.3755 -1.90625,0.6563 -0.95117,0.3823 -1.91797,0.3685 -2.875,0.875 -0.92627,0.4891 -1.72558,1.4018 -2.65625,1.8124 -0.30615,0.1365 -0.91357,0.2294 -1.21875,0.094 -0.3045,-0.2217 -0.3809,-0.6843 -0.3125,-1.0312 0.17188,-0.3825 0.68213,-0.6436 0.9375,-1.0313 l -0.0312,-0.3125 c -0.55029,-0.4502 -1.41225,-1.5992 -1.40625,-2.3438 l 0.25,-0.25 c 1.17725,-0.324 1.31299,1.6397 2.25,2.0313 1.82324,0.7627 4.2163,-0.3779 3.46875,-2.625 -0.30225,-0.9092 -0.61621,-1.3442 -0.78125,-2.375 l -0.28125,-0.2187 -0.375,0 c -0.24707,0.2468 -0.48243,0.5498 -0.8125,0.6874 l -0.34375,-0.062 c -0.71484,-0.6051 -0.97559,-1.8452 -1.9375,-2.4376 -0.11768,-0.6295 -0.0811,-1.2846 -0.21875,-1.875 -0.78906,-1.0549 -3.99072,-1.6436 -5.3125,-2.6874 -1.19092,-0.9427 -2.05127,-6.1925 -2.6875,-7.6563 -0.4126,-0.9488 -1.54935,-2.0322 -1.59375,-3.0313 -0.0225,-0.4977 0.63769,-1.6352 0.96875,-2.0312 0.40381,-0.4819 1.05273,-0.5892 1.4375,-1.0312 0.54053,-0.6223 0.43115,-1.2579 1.3125,-1.75 2.17725,-1.2183 2.65918,0.067 4.0625,-2.9063 0.44141,-0.9356 0.52979,-1.7791 0.71875,-2.7813 0.10742,-0.5679 0.43115,-1.2231 0.46875,-1.7812 0.11865,-1.7793 -1.78906,-3.1626 -1.53125,-4.7188 0.16992,-1.0252 0.98926,-1.8149 1.3125,-2.7812 0.48096,-1.4389 0.83057,-3.2466 1.0625,-4.75 0.0835,-1.0254 0.77002,-1.8105 0.90625,-2.75 0.1377,-0.9512 -0.6113,-1.4851 -0.6875,-2.4062 0.34033,-0.5196 1.14795,-0.25 1.65625,-0.25 0.15869,-0.1848 0.26855,-0.4249 0.34375,-0.6563 l -0.0625,-0.4063 c -0.47559,-0.5866 -1.49365,-1.207 -1.1875,-2.0624 l 0.34375,-0.125 c 1.37988,0.1234 1.33252,1.6639 2.5,2 1.00586,0.4199 6.5459,1.876 6.4375,-0.063 0.56592,-0.4058 1.56982,0.2828 2,-0.4062 0.15381,-0.7734 -0.0806,-1.6534 0,-2.4688 l 0.5625,-5.75 c 0.10059,-1.0148 0.45703,-2.0215 0.625,-3.0312 0.19287,-1.1587 0.0645,-2.3579 0.3125,-3.5 0.36768,-1.6899 0.87451,-3.3439 1.25,-5.0312 0.186,-0.8379 -0.15381,-2.2837 0.125,-2.9063 0.22412,-0.5014 0.96093,-0.6955 1.15625,-1.3437 -0.0391,-0.2119 -0.18067,-0.4508 -0.34375,-0.5938 l -0.0312,-0.375 c 0.14255,-0.2081 0.18995,-0.5336 0.15625,-0.7812 l -0.15625,-0.3126 c -1.68359,-1.0337 -4.04639,-0.521 -5.96875,-1.75 -0.54541,-0.3487 -3.39941,-3.2651 -3.5625,-3.7812 -0.20312,-0.6436 -0.26075,-1.4766 -1,-1.8125 -0.82324,-0.3745 -2.12451,0.5391 -2.625,-0.7813 l 0.21875,-0.3124 c -0.0376,-0.3531 -0.33691,-0.6263 -0.5625,-0.875 l 0.125,-0.4063 c 0.79883,-0.033 2.12012,0.13 2.65625,-0.4687 l 0.40625,0.094 c 0.22314,0.3652 0.56836,0.5765 1,0.5625 0.271,-0.2559 0.66407,-0.3995 1.03125,-0.4375 l 0.375,0.125 c 0.4292,0.7046 0.62256,1.5215 1.0625,2.1875 0.64062,0.9721 5.8086,4.8907 6.84375,4.9062 0.96875,-0.4275 2.52246,-2.0307 1.90625,-3.1874 -0.23193,-0.4355 -1.05127,-0.7412 -1.4375,-1.0938 -0.50684,-0.4619 -0.81592,-1.1206 -1.375,-1.5625 -0.80273,-0.6347 -1.55274,-0.7954 -2.46875,-1.1875 -1.88232,-0.8052 -3.13428,-1.809 -5.25,-2.1562 -2.5415,-0.4184 -5.02783,0.059 -7.4375,-1.1563 l -0.125,-0.3125 c 0.78271,-1.6404 2.98096,0.3213 4.09375,0.094 0.0332,-0.9982 -3.39258,-2.6392 -4.1875,-3.7813 -2.3042,-3.313 0.15918,-4.5 -0.34375,-5.9375 -0.38525,-0.1953 -0.89063,-0.077 -1.21875,-0.3438 -0.42773,-1.5266 0.77002,-1.4682 1.15625,-2.1874 0.13721,-0.256 1.30175,-3.0626 1.28125,-3.1876 -0.2168,-0.084 -0.43359,-0.2031 -0.59375,-0.375 l 0,-0.3437 c 0.73438,-0.9399 2.07226,-0.4751 2.5,-1.375 -0.17969,-0.4507 -0.65284,-0.7119 -0.4375,-1.2813 l 0.5,-0.5 c 0.38818,0.053 0.76123,-0.2061 0.90625,-0.5624 -0.0244,-0.2106 -0.14942,-0.4566 -0.3125,-0.5938 -1.52881,-0.7525 -2.16797,0.7188 -2.8125,0.5938 -0.17432,-0.2861 -0.27539,-0.6527 -0.59375,-0.8126 -0.0312,-0.051 -0.31397,-0.1349 -0.53125,-0.1874 -0.0946,-0.208 -0.0879,-0.5 -0.0312,-0.7188 0.38086,-0.3247 0.68164,-0.693 0.875,-1.1562 -0.0571,-0.4937 -0.53173,-0.7428 -0.78125,-1.125 -0.25146,-0.3859 -0.21973,-0.9224 -0.46875,-1.3438 -0.36133,-0.016 -1.18897,0.6626 -1.53125,0.875 0.0142,-0.3325 0.2764,-0.6332 0.3125,-0.9688 0.12061,-1.1099 -1.37989,-1.1977 -0.96875,-4.0937 -0.25244,0.034 -0.60792,-0.02 -0.8125,-0.1875 0.18457,-0.749 0.59717,-1.0615 0.875,-1.6875 3.271,-1.0664 1.23486,-0.2583 3.53125,0.1563 0.4707,0.084 0.80811,-0.1418 1.21875,-0.094 0.56104,0.067 0.78467,0.6735 1.40625,0.6875 2.0083,-0.7305 2.11572,0.5131 4.0625,0.4687 0.86572,-0.02 2.07129,-0.6454 2.875,-0.2187 0.7915,0.4199 1.58642,1.6323 2.375,2.2187 0.1543,0.1156 0.30517,0.2383 0.40625,0.4063 0.12549,0.6084 -0.25928,1.1448 -0.125,1.5937 0.0986,0.3321 0.44238,0.5122 0.59375,0.8126 0.26807,0.5297 0.37842,1.4164 0.75,1.8437 0.58105,0.4848 1.42919,0.4457 2.03125,0.7187 0.68945,0.314 1.20215,0.8863 1.90625,1.1876 2.48291,1.0593 5.44629,0.9088 8,1.6874 1.40234,0.4282 2.79834,1.0425 4.25,1.2813 1.14307,0.1875 2.21533,0.039 3.25,-0.4375 0.47705,-0.2192 1.3208,-0.5668 1.84375,-0.5312 0.98291,0.065 2.26318,1.1427 3.1875,1.5624 2.22314,1.0109 7.79981,1.4986 10.1875,0.9376 2.69678,-0.6348 3.74659,-1.813 7.1875,-1.9688 1.24121,-0.056 1.82226,0.6164 2.90625,0.8438 1.24072,0.2585 2.58154,-0.452 3.875,-0.375 2.11182,0.1259 4.10645,0.909 6.28125,0.8124 1.43896,-0.063 3.51904,0.074 4.875,-0.2812 1.50439,-0.3936 1.86182,-1.5938 3.71875,-1.5938 0.98389,0 1.85889,0.3551 2.8125,0.4376 2.69189,0.2285 5.75537,0.043 8.4375,-0.3126 1.89844,-0.2518 3.80371,-0.7478 5.6875,-1.125 3.49658,-0.698 7.08691,-1.1983 10.59375,-1.8124 1.86963,-0.3277 3.93018,0.1436 5.78125,-0.2188 2.30713,-0.4516 4.58545,-0.8118 6.90625,-1.2188 1.12793,-0.1968 2.20215,-0.7348 3.34375,-0.9687 2.39648,-0.4897 4.84814,-0.4008 7.25,-0.8125 1.18066,-0.2021 2.21875,-0.738 3.34375,-1.0312 1.07568,-0.2814 2.50098,0.15 3.6875,-0.031 2.52734,-0.3877 5.06397,-1.0935 7.5625,-1.5313 2.30566,-0.4025 4.73437,-0.044 7.0625,-0.5 1.6748,-0.3271 5.68067,-1.6621 7.25,-2.375 0.73486,-0.3333 1.47022,-0.9356 2.21875,-1.1874 1.0459,-0.3524 2.20899,-0.4772 3.28125,-0.625 5.1005,-0.7037 10.0234,-1.693 15.0937,-2.5626 1.6782,-0.2871 3.3265,-0.9203 5.0313,-1.2187 3.6462,-0.6377 8.0401,-0.7949 11.5001,-1.8125 2.1821,-0.6421 4.1659,-2.1376 6.2811,-2.9688 2.2637,-0.8885 6.2269,-2.1002 8.7189,-2.9374 1.3025,-0.4396 2.7424,-1.5923 4,-1.8438 2.2228,-0.4448 4.513,-0.3588 6.7811,-0.8125 3.2281,-0.646 6.1133,-2.3709 9.1875,-3.4063 2.0347,-0.6843 3.9571,-0.8037 6.0314,-1.2187 2.1868,-0.4375 3.6025,-1.9562 5.5936,-2.7187 1.0981,-0.4212 2.4047,-0.3706 3.5314,-0.7813 3.0147,-1.0996 5.5628,-3.5281 8.4061,-4.9063 1.5156,-0.7327 3.1455,-0.8311 4.5939,-1.6874 0.9974,-0.5904 1.6271,-1.7237 2.8124,-2.1563 1.2407,-0.4521 2.65,-0.4894 3.8438,-0.9687 1.8608,-0.7491 1.4019,-1.6006 2.2188,-2.1876 0.8979,-0.6449 2.2993,-0.9955 3.2812,-1.5937 1.9321,-1.1762 3.9404,-2.1456 5.8125,-3.4375 2.1352,-1.4727 7.0947,-5.0849 7.8125,-7.5625 0.2864,-0.9887 -0.1318,-1.5733 -0.094,-2.4375 0.024,-0.5469 0.5135,-0.8852 0.5,-1.5 -0.014,-0.7524 -0.845,-1.3726 -0.9374,-2.25 -0.1297,-1.2129 1.248,-7.0239 1.8436,-8.25 2.0887,-4.2969 5.4669,-7.2271 8.4687,-10.8125 1.086,-1.2959 2.1177,-2.9971 3.3438,-4.125 2.401,-2.209 5.0778,-4.1289 7.4375,-6.375 0.8874,-0.8442 1.579,-2.0786 2.3125,-3.0625 0.7592,-1.0186 1.9511,-1.6952 2.6875,-2.7188 0.7662,-1.0643 1.3651,-2.2802 2.125,-3.3437 0.4673,-0.6543 1.1425,-1.2474 1.5625,-1.9063 0.8315,-1.3035 0.5018,-3.0898 1.375,-4.0937 0.6014,-0.6919 1.3915,-1.2163 1.9375,-2 1.4527,-2.0883 2.2709,-4.6167 3.75,-6.6875 1.2401,-1.7358 2.5694,-3.3356 3.7814,-5.0938 0.4944,-0.7167 0.7641,-1.5699 1.1874,-2.3124 0.9895,-1.7319 2.295,-3.8171 3.4688,-5.4376 0.4756,-0.6554 1.1928,-1.0215 1.6875,-1.6562 1.1352,-1.4566 4.4418,-4.9081 4.9063,-6.4688 0.2039,-0.6884 0.194,-2.0707 0.062,-2.7812 -0.046,-0.2573 -0.084,-0.52 -0.094,-0.7812 l 0,-0.3438 c -0.584,-2.3442 0.06,-4.3194 -0.125,-6.5 -0.1275,-1.5 -0.088,-3.0445 -0.25,-4.5312 -0.066,-0.6095 -0.4432,-1.181 -0.4687,-1.8126 -0.062,-1.4764 0.5991,-3.0009 0.4687,-4.5 -0.1582,-1.8197 -1.4825,-3.0254 -1.7813,-4.6562 -0.3051,-1.67 0.7225,-4.2388 0.25,-6.8125 -0.2409,-1.3184 -0.9003,-1.936 -1.4374,-3.0625 -0.7464,-1.5644 -0.4654,-4.2212 -2.6564,-4.6875 -0.4331,-0.092 -0.8067,0.066 -1.0625,0.4375 l 0,0.375 c 0.3449,0.5361 0.5962,1.3423 1.0625,1.75 l -0.1563,0.3438 -0.4062,0.094 c -3.8245,-1.6348 -6.6143,0.3465 -9.625,2.4063 l -0.2188,-0.063 0.063,-0.4062 c 0.5037,-0.3755 0.913,-1.5303 0.4062,-2.0312 -1.5874,-0.5998 -3.4151,-0.7246 -5.0625,-1.2188 -2.0298,-0.6089 -5.79,-3.5358 -7.4687,-4.9688 -0.5328,-0.4531 -0.7827,-1.1697 -1.2813,-1.625 -1.5976,-1.4565 -3.418,-2.2423 -4.7187,-4.0624 -0.622,-0.8705 -0.5494,-2.0816 -1.1563,-2.9376 -0.6103,-0.8608 -1.7657,-1.2143 -2.375,-2.0312 -1.0655,-1.4292 -0.8262,-3.6562 -1.5625,-5.25 -0.7022,-1.52 -2.003,-2.0092 -2.5312,-4 -0.7705,-2.8974 -1.0154,-8.7341 -0.25,-11.5938 0.5045,-1.8867 2.6059,-4.4165 3.6874,-6.0937 0.654,-1.01367 0.9297,-2.24072 1.6564,-3.25 0.54,-0.75049 1.3438,-1.26172 1.875,-2 0.749,-1.04102 1.2927,-2.33593 2.0313,-3.40625 0.6902,-1.00098 1.9235,-1.71973 2.8124,-2.53125 0.4133,-0.37598 0.5416,-1.09522 0.875,-1.5625 1.3741,-1.92334 2.8115,-4.20019 2.1876,-6.625 -0.4611,-1.14209 -1.169,-1.9165 -1.7813,-2.9375 -0.6914,-1.15283 -1.1345,-2.57617 -1.9687,-3.65625 -1.8963,-2.45215 -4.1675,-4.771 -5.9688,-7.3125 -0.9502,-1.3418 -1.4338,-2.7041 -2.7189,-3.875 -0.9882,-0.90186 -2.4746,-1.05371 -3.4686,-2 -2.0356,-1.9375 -2.8151,-2.57813 -4.9687,-4.28125 -0.4303,-0.34033 -0.7271,-0.88916 -1.2188,-1.1875 -2.6565,-1.6123 -4.5578,-2.14356 -7.3125,-4.125 -0.5605,-0.2749 -1.0996,-0.93018 -1.75,-1.40625 -1.9385,-1.41895 -3.9977,-2.57911 -5.9687,-3.875 -1.2642,-0.83008 -2.3355,-2.00635 -3.5626,-2.8125 -0.8442,-0.55469 -3.0443,-1.22363 -4.0624,-1.4375 -6.7399,-0.75977 -3.8985,-2.08887 -7.0313,-3.375 -0.8154,-0.33496 -1.6138,-0.41821 -2.4064,-0.6875 -1.7265,-0.58691 -3.3443,-1.52563 -5.1561,-1.96875 -1.062,-0.26001 -2.3158,-0.4707 -3.3439,-0.8125 -1.0219,-0.33936 -7.3724,-5.19116 -8.5936,-6.15625 -0.4323,-0.4173 -0.7503,-0.96894 -1,-1.5625 L 1071.25,927.5 c -2.7714,1.78418 -3.082,-0.8125 -6.2188,2.90625 l -3.9687,-2.25 c -0.5576,-2.01953 0.7647,-5.5166 1.9375,-7.09375 l 1.8125,-0.75 c -0.3509,-1.01131 0.2341,-2.67472 -0.5625,-3.75 -0.7447,-1.00537 -2.2529,-1.31787 -2.6875,-2.625 -0.5767,-1.73438 1.3951,-2.23315 1.8125,-3.3125 0.202,-0.52344 0.067,-1.10425 0.25,-1.625 0.1211,-0.34399 0.436,-0.63135 0.5,-1 0.3579,-2.05859 -3.3629,-3.14966 -5,-4.21875 l -0.062,-0.375 c 0.2549,-0.0266 0.5024,-0.0564 0.75,-0.125 L 1060.0312,903 c -0.014,-0.24023 0.077,-0.60009 0.25,-0.78125 l 0.3438,-0.0937 c 0.3994,0.05 0.7555,0.30765 1.1562,0.28125 0.9607,-0.6272 1.6582,0.003 2.4688,0.46875 l 0.4062,-0.0937 c 1.0615,-1.21975 1.1182,-0.573 2.0938,-1.21875 0.6826,-0.4519 1.8033,-2.71802 1.7188,-3.5625 0.4627,-1.00903 1.5507,-0.6709 1.7812,-1.53125 0.2436,-0.91064 -0.6153,-1.59571 -0.75,-2.4375 -0.336,-2.09473 1.6059,-7.47705 -1,-8.5 -0.5957,-0.38672 -2.101,-0.73633 -2.4688,-1.09375 -0.069,-0.45494 0.1811,-0.97285 0.375,-1.5 l -0.1874,0.0625 -4.4688,0.65625 c -3.7676,0.53272 -2.4868,3.15771 -7.3125,2.1875 -0.8902,-0.38086 -5.6802,-4.72656 -6.125,-5.3125 l -0.3437,-0.4375 c -1.1316,-1.51806 -2.2564,-1.7285 -4.0313,-1.8125 -3.1367,-0.14892 -4.0602,-2.78735 -6.4687,-4.3125 -7.3762,-4.67016 -5.5889,-2.43994 -13.2188,-3.0625 l -0.1875,-0.3125 c -0.9258,-1.62698 -1.8302,-2.31128 -3.7813,-1.65625 -0.913,-0.42725 -0.4658,-1.16846 -0.3437,-2.03125 0.4345,-3.08179 -2.0473,-5.0918 -4.6875,-2.5 l -0.3438,0.375 -0.2187,0.21875 c -1.4423,-0.11282 -2.9008,-0.0513 -4.3437,-0.15625 -2.8696,-0.20801 -3.9204,-4.53833 -6.625,-5.96875 l -0.3438,-0.125 c -1.8403,-0.37574 -3.9917,0.97363 -5.375,2.0625 -0.0967,10e-4 -0.18845,0.0915 -0.28125,0.0625 -0.9541,-0.2998 -9.78906,-4.94751 -10.0625,-5.625 -1.5586,-3.85938 -5.40918,-5.59302 -9.09375,-6.78125 -1.14063,-0.36816 -2.08838,-1.79614 -3.53125,-2.3125 -1.29932,-0.46484 -6.15381,-4.07275 -7.25,-5.40625 -2.77336,-3.37488 -5.84095,-6.34038 -9.40625,-8.1875 z", + "larioja":"m 472.4375,458.25 c -0.51184,-0.008 -1.01074,0.0341 -1.28125,0.21875 -1.52393,1.03979 -0.98632,2.04248 -3.46875,2.4375 -1.54053,0.24512 -2.66553,-1.59253 -4.21875,-1.71875 -2.68018,1.02661 -3.18213,0.33057 -5.3125,0.78125 -0.91113,0.19287 -1.55224,0.79761 -2.375,1.125 -0.86279,0.34302 -1.99023,0.60205 -2.90625,0.875 -3.30762,0.98535 -7.20069,-0.41211 -10.5625,-0.71875 -1.23521,-0.11269 -2.4758,-0.23989 -3.71875,-0.21875 -0.53814,2.17288 -1.26648,4.36199 -1.71875,6.40625 -0.0798,0.36109 0.0137,0.87378 -0.0937,1.21875 -0.40625,1.30786 -2.00757,2.48682 -3.03125,3.28125 -0.16601,0.68506 -0.24609,1.42139 -0.625,2.03125 -0.5332,0.57568 -1.97192,0.4661 -2.6875,0.375 -2.46777,1.09448 -1.94092,2.823 -2.65625,4.8125 l -1.125,0.75 c -0.13211,0.82324 -0.20875,1.66626 -0.21875,2.5 -0.47315,0.39258 -1.27612,2.47729 -1.84375,3.1875 -0.88232,1.104 -1.34741,0.85815 -2.28125,1.53125 -0.219,0.81396 -0.84692,1.95215 -1.21875,2.75 L 420.5,490.09375 c -0.90332,-0.56372 -2.43579,-2.22975 -3.375,-2.21875 -0.91042,0.96094 -1.85156,2.5271 -0.9375,3.8125 -0.96753,1.79981 -0.0918,5.29956 -2.4375,6.15625 -0.69775,-0.0422 -1.49634,-0.0767 -2.1875,0.0625 -1.22168,1.07324 -1.91772,2.46289 -2.96875,3.65625 -0.83984,0.094 -1.79419,0.12476 -2.625,-0.0312 l -0.34375,0.3125 c -0.14831,0.57135 0.40208,1.60952 0.6875,2.1875 l 0.0312,0 c 3.5105,0.59131 3.50342,2.82739 7.34375,1.46875 1.95337,-0.69068 2.06274,-0.36792 2.875,1.6875 0.89697,2.27027 3.12134,1.77637 5.09375,1.4375 0.22559,-0.0388 1.00122,0.0791 1.125,0.1875 3.53345,3.09815 7.15137,6.62061 10.90625,9.4375 0.17039,0.73389 -0.0127,1.57153 0.25,2.28125 0.3772,1.0188 1.0791,1.59888 1.53125,2.53125 0.47216,0.97216 0.91605,4.35864 0.96875,5.59375 3.76172,3.4441 7.58252,6.84448 11.40625,10.21875 1.09619,4.35474 -0.87109,6.43066 1.03125,11.03125 0.88964,2.15186 0.34717,1.57788 -0.46875,3.3125 0.0645,1.19116 0.64453,3.47925 -1.03125,3.9375 -0.56006,0.0847 -0.9707,-0.49025 -1.53125,-0.40625 L 445.625,557 c -0.0669,0.42334 -0.0376,0.80835 -0.0625,1.21875 -0.0439,0.73974 -0.32617,4.72534 -0.15625,5.25 0.24267,0.75268 1.104,1.26074 1.125,2.03125 -0.27344,1.3645 -1.36914,0.91602 -2.1875,1.5 -0.34228,0.70166 -0.1338,2.1211 -0.1875,2.875 -0.0537,0.7539 -0.64555,1.90601 -0.59375,2.5 0.0845,0.95996 0.8208,1.82471 0.71875,2.6875 -0.0957,0.80664 -1.72949,2.26563 -2.15625,3.28125 -0.57227,1.36255 -0.65283,3.22998 -0.78125,4.6875 -0.61719,7.01367 4.89307,3.51953 8,3.03125 1.52588,-0.23951 2.04834,1.32983 3.65625,1.21875 2.63428,-0.18261 4.67871,-2.3125 7.96875,-2.3125 1.99023,0 3.45215,2.49951 5.34375,3.125 1.44532,0.47851 3.07715,-0.39995 4.53125,-0.34375 2.42138,0.0928 4.14355,0.92432 6.40625,1.71875 1.86133,0.65332 2.9375,0.94873 4.90625,1.15625 0.12402,0.0132 0.25635,0.0852 0.375,0.125 0.97022,0.85474 1.27002,3.12646 2.8125,4.15625 0.28077,0.1875 0.69873,0.27197 1,0.4375 1.45606,0.8003 2.05029,2.08691 3.78125,2.625 0.54737,0.17042 0.91406,0.25415 1.3125,0.6875 0.90088,0.97925 0.76123,3.07104 1.75,3.625 0.93018,0.521 2.30566,0.42017 3.34375,0.9375 0.88427,0.44092 1.23096,1.26685 1.8125,2 0.27637,0.34888 0.95361,0.34326 1.3125,0.6875 2.23877,2.14795 -1.03662,2.82886 4.53125,5.625 1.03711,0.52075 1.53174,2.65698 2.40625,3.625 3.17432,3.51441 6.14404,1.47144 8.4375,7.0625 0.1001,0.0415 7.23926,5.4126 7.5625,5.71875 0.92383,0.87524 2.33594,2.06543 3.03125,3.15625 1.32519,2.08081 1.24707,6.15259 2.28125,7.3125 1.1377,1.27588 3.23975,1.81323 4.625,2.84375 1.02881,0.76563 1.76367,3.49023 2.65625,4.6875 1.23975,1.66259 2.89355,2.16455 4.375,3.40625 0.39404,0.33007 0.88086,0.80225 1.21875,1.1875 l 0.5,0.71875 c 0.37109,0.53736 0.354,1.14453 0.6875,1.6875 0.75196,1.2273 1.87402,2.21997 2.5625,3.46875 l 0.34375,0.8125 c 0.14258,0.3335 0.39258,0.6604 0.5,1 0.91407,0.76879 2.40723,1.11182 3.5,1.59375 1.1753,0.51856 2.11768,2.81104 2.59375,3.90625 0.31495,0.7251 0.42139,1.58032 0.6875,2.3125 0.62597,1.72363 2.89258,5.08594 3.9375,6.5625 0.0576,0.0818 0.085,0.18895 0.125,0.28125 l 0.3125,0.21875 c -0.8374,1.41114 -2.47217,7.46851 -3.09375,9.375 L 557.5,685.5 c 0.0234,0.0732 -2.69238,18.13208 -2.84375,18.75 2.71582,5.51782 3.49707,2.89722 3.375,10.5 -0.0352,2.15674 2.62988,3.58496 4.03125,4.90625 0.75488,0.7124 1.25,1.59619 2.21875,2.125 1.70703,0.93232 4.87842,0.60693 5.46875,0.9375 0.57808,0.46875 -0.2749,2.42529 0.0312,2.9375 l 4.71875,7.875 c 1.17188,1.96192 1.44727,3.97925 2.4375,5.9375 1.1709,0.27075 2.31396,-0.0356 3.65625,0.40625 1.63183,0.53809 3.0376,1.9939 4.625,2.4375 1.38721,0.38745 2.06934,-1.2981 3.25,-1.1875 1.08008,0.10157 1.54297,1.4214 2.625,1.4375 1.38477,0.0212 2.74463,-0.68945 4.125,-0.5625 0.74121,0.0681 1.99658,1.4688 3.03125,1.5625 1.53418,0.1394 1.69824,-0.70776 2.625,-0.90625 1.03564,-0.22168 2.49951,0.729 3.78125,0.5625 5.70947,-0.74121 6.08496,-2.70068 9.9375,-3.59375 4.15234,-0.96241 6.29004,-1.43701 9.71875,1.375 0.48193,-0.0132 3.28906,0.24194 3.46875,0.4375 1.4043,-0.54273 4.9585,-1.53662 6.5,-1.375 l -0.0625,-0.25 -0.0625,-10.65625 -0.0312,-1.1875 0,-4.75 -0.0312,-1.1875 -0.0312,-8.28125 -0.0625,-1.1875 0.0312,-2.375 L 634,709 l -0.0625,-8.28125 -0.0312,-1.1875 0.0312,-2.375 -0.0625,-3.5625 -0.0312,-9.46875 0.75,-2.1875 0.4375,-1.125 3.84375,-11.1875 1.21875,-3.3125 8.15625,-27.125 1.78125,-1.96875 0.46875,-1.125 4.90625,-14.53125 3.90625,-1.15625 1.21875,-0.3125 10,-2.84375 1.09375,-1.1875 -3.40625,-4.03125 c -0.10645,-0.12622 -0.0806,-0.62622 -0.1875,-0.75 -11.35156,-13.11816 -22.6333,-26.38086 -33.5,-39.90625 -0.22217,-2.76514 0.6543,-4.07325 -0.40625,-7.1875 l -0.34375,-0.59375 c -0.81445,-1.24316 -1.55029,-3.19751 -2.53125,-4.25 -1.80908,-1.94165 -4.05224,-3.65747 -6,-5.46875 -0.97217,-0.9043 -1.6167,-2.12769 -2.65625,-2.96875 -1.16943,-0.94556 -2.51269,-1.1167 -3.625,-2.28125 -1.42334,-1.49023 -2.60596,-3.2295 -4.125,-4.65625 L 613.875,543.0625 c -5.41846,-5.09009 -12.771,-5.33545 -16.09375,-10.09375 -1.54834,-2.21729 3.80029,-4.28198 2.5,-6.90625 -0.95361,-0.78784 -2.52686,-0.85083 -3.4375,-1.84375 -0.86328,-0.94092 -2.09082,-1.86914 -2.875,-2.8125 -2.71631,-3.27051 -1.74902,-5.43725 -2.59375,-9 -0.20215,-0.85181 -0.30518,-1.9209 -0.75,-2.6875 -0.94385,-1.62695 -3.64453,-4.14258 -5.46875,-4.59375 -1.05176,-0.26001 -2.40088,-0.3291 -3.375,-0.8125 -1.06201,-0.52686 -1.7085,-1.65455 -2.84375,-2 -0.96484,-0.29346 -1.94287,0.0308 -2.90625,-0.71875 -2.58008,-1.94043 -3.26026,-0.83399 -5.40625,-1.65625 -1.19482,-0.45801 -1.92822,-1.68701 -3.09375,-2.28125 -1.84912,-0.94287 -6.62256,-3.11499 -8.78125,-2.34375 -1.14697,0.40942 -2.15479,3.8816 -4.09375,4.40625 -3.96875,1.07397 -10.20703,-0.23535 -14.59375,-0.53125 -1.23145,-0.0833 -1.35058,-2.43506 -2.59375,-2.90625 -0.70557,-0.26758 -1.47706,-0.4685 -2.0625,-0.96875 -0.9917,-0.8479 -4.54053,-4.71094 -5.9375,-2.59375 -0.48242,0.73193 -0.67481,2.92603 -0.9375,3.125 -1.11377,0.44678 -1.43115,-0.3584 -2.21875,1.375 -1.60254,3.52637 -2.82081,6.39966 -7.3125,4.5 -1.02832,-0.43481 -1.98047,-1.15088 -3.03125,-1.59375 -2.50098,0.0957 -1.41748,1.19775 -2.875,2.1875 -1.50635,0.42139 -1.44092,-2.30566 -1.71875,-3.03125 -0.54053,-1.4126 -3.52148,-4.17285 -4.34375,-6.15625 -0.78662,-1.89844 -0.69092,-4.0398 -1.125,-6 -0.13672,-0.61719 0.40137,-1.54981 0.3125,-2.21875 -0.0757,-0.56592 -1.33057,-1.03492 -1.78125,-1.09375 -0.56006,0.32251 -0.99755,0.8169 -1.5625,1.15625 -0.58301,0.064 -1.4336,-0.12627 -1.9375,0.0625 -1.46436,0.54932 -2.66894,1.64795 -4.28125,1.8125 -1.78955,0.18286 -2.18555,-3.14136 -4.25,-3.84375 -0.90967,-0.30933 -2.33447,-0.73926 -3.28125,-0.90625 -1.30078,-0.229 -2.44483,0.56885 -3.875,-0.0625 -2.41797,-1.06738 -1.14404,-5.24219 -6.875,-5.03125 -0.37646,0.0137 -1.14697,0.22709 -1.5,0.0937 -1.25732,-0.47461 -1.47168,-2.04614 -1.21875,-3.1875 l 0.5,-2.21875 c 0.14844,-0.67017 0.50781,-1.33911 0.46875,-2.0625 -0.12549,-2.33569 -2.1582,-1.00098 -0.5,-6.46875 1.0083,-3.32471 1.26465,-4.47607 -2.34375,-4.8125 -0.30713,-0.0285 -0.83191,-0.086 -1.34375,-0.0937 z", + "catamarca":"m 472.09375,283.09375 c -3.3e-4,0.18755 0.002,0.37519 0,0.5625 -0.7754,0.42505 -1.91699,1.11719 -2.375,1.875 l 0.34375,1.6875 -0.625,0.71875 c -0.64404,2.20044 2.8457,3.85352 0.3125,8.09375 -0.49121,0.82275 -1.30811,1.6084 -2.28125,1.84375 -0.3374,0.34033 -0.84375,1.17261 -0.78125,1.6875 1.82472,3.50073 2.7124,1.66528 1.75,6.09375 0.71337,1.16674 1.80273,2.021 2.5625,3.15625 -0.5542,0.44702 -0.9873,2.60498 -1.09375,3.3125 0.34912,1.52002 2.99512,3.25513 3.3125,4.96875 0.22412,1.2102 0.25781,2.57959 0.375,3.8125 0.0483,0.50879 0.19235,1.1106 0.28125,1.625 1.77002,10.24609 3.46484,20.51978 5.03125,30.78125 l -0.15625,0.25 c -0.62354,0.13477 -10.3457,7.4873 -10.46875,7.65625 -0.65039,4.48462 -0.75732,9.22534 -1,13.75 5.18213,9.02759 10.89697,17.69971 16.6875,26.34375 0.60108,0.22559 1.63721,0.7124 1.9375,1.34375 -1.09668,1.48267 -3.271,3.1416 -3.1875,5.0625 l 0.875,1.28125 c -0.41064,0.76294 -0.84326,2.65771 -1.46875,3.03125 -2.81445,0.50468 -5.04199,-0.5813 -8.53125,0.59375 -1.46045,1.82886 -3.05176,4.20361 -3.46875,6.53125 -0.11621,0.64672 -0.0439,1.26831 -0.28125,1.90625 l -1.15625,0 c 0,0 -1.41895,-1.10034 -1.84375,-0.96875 -2.06495,-0.1958 -3.85791,-3.91235 -4.0625,-5.6875 l -1.21875,-0.4375 c -1.48145,0.85425 -3.47705,0.54932 -5,1.375 -1.71729,2.64135 -5.4668,5.89575 -4.84375,9.34375 0.19873,1.1018 1.36768,2.26978 1.84375,3.34375 -0.32959,0.78882 -1.6582,1.19751 -2.125,2 -0.35205,0.60571 -1.86719,4.38354 -2.375,5.46875 -1.44043,3.07666 -3.97021,9.51172 -5.71875,12.0625 -1.49121,0.46801 -3.33594,3.00854 -4.0625,4.34375 0.19091,1.12402 0.46195,2.19092 0.40625,3.34375 l 0.4375,0.625 -0.0937,1.03125 -0.8125,0.65625 c -0.0769,1.12545 -0.33523,2.29874 -0.625,3.46875 1.24295,-0.0211 2.48354,0.10606 3.71875,0.21875 3.36181,0.30664 7.25488,1.7041 10.5625,0.71875 0.91602,-0.27295 2.04346,-0.53198 2.90625,-0.875 0.82276,-0.32739 1.46387,-0.93213 2.375,-1.125 2.13037,-0.45068 2.63232,0.24536 5.3125,-0.78125 1.55322,0.12622 2.67822,1.96387 4.21875,1.71875 2.48243,-0.39502 1.94482,-1.39771 3.46875,-2.4375 0.54101,-0.36938 2.01074,-0.1821 2.625,-0.125 3.6084,0.33643 3.35205,1.48779 2.34375,4.8125 -1.6582,5.46777 0.37451,4.13306 0.5,6.46875 0.0391,0.72339 -0.32031,1.39233 -0.46875,2.0625 l -0.5,2.21875 c -0.25293,1.14136 -0.0386,2.71289 1.21875,3.1875 0.35303,0.13334 1.12354,-0.0801 1.5,-0.0937 5.73096,-0.21094 4.45703,3.96387 6.875,5.03125 1.43017,0.63135 2.57422,-0.1665 3.875,0.0625 0.94678,0.16699 2.37158,0.59692 3.28125,0.90625 2.06445,0.70239 2.46045,4.02661 4.25,3.84375 1.61231,-0.16455 2.81689,-1.26318 4.28125,-1.8125 0.5039,-0.18877 1.35449,0.002 1.9375,-0.0625 0.56495,-0.33935 1.00244,-0.83374 1.5625,-1.15625 0.45068,0.0588 1.70555,0.52783 1.78125,1.09375 0.0889,0.66894 -0.44922,1.60156 -0.3125,2.21875 0.43408,1.9602 0.33838,4.10156 1.125,6 0.82227,1.9834 3.80322,4.74365 4.34375,6.15625 0.27783,0.72559 0.2124,3.45264 1.71875,3.03125 1.45752,-0.98975 0.37402,-2.0918 2.875,-2.1875 1.05078,0.44287 2.00293,1.15894 3.03125,1.59375 4.49169,1.89966 5.70996,-0.97363 7.3125,-4.5 0.7876,-1.7334 1.10498,-0.92822 2.21875,-1.375 0.26269,-0.19897 0.45508,-2.39307 0.9375,-3.125 1.39697,-2.11719 4.9458,1.74585 5.9375,2.59375 0.58544,0.50025 1.35693,0.70117 2.0625,0.96875 1.24317,0.47119 1.3623,2.82295 2.59375,2.90625 4.38672,0.2959 10.625,1.60522 14.59375,0.53125 1.93896,-0.52465 2.94678,-3.99683 4.09375,-4.40625 2.15869,-0.77124 6.93213,1.40088 8.78125,2.34375 1.16553,0.59424 1.89893,1.82324 3.09375,2.28125 2.14599,0.82226 2.82617,-0.28418 5.40625,1.65625 0.96338,0.74954 1.94141,0.42529 2.90625,0.71875 1.13525,0.34545 1.78174,1.47314 2.84375,2 0.97412,0.4834 2.32324,0.55249 3.375,0.8125 1.82422,0.45117 4.5249,2.9668 5.46875,4.59375 0.44482,0.7666 0.54785,1.83569 0.75,2.6875 0.84473,3.56275 -0.12256,5.72949 2.59375,9 0.78418,0.94336 2.01172,1.87158 2.875,2.8125 0.91064,0.99292 2.48389,1.05591 3.4375,1.84375 1.30029,2.62427 -4.04834,4.68896 -2.5,6.90625 3.32275,4.7583 10.67529,5.00366 16.09375,10.09375 l 0.96875,0.90625 c 1.51904,1.42675 2.70166,3.16602 4.125,4.65625 1.11231,1.16455 2.45557,1.33569 3.625,2.28125 1.03955,0.84106 1.68408,2.06445 2.65625,2.96875 1.94776,1.81128 4.19092,3.5271 6,5.46875 0.98096,1.05249 1.7168,3.00684 2.53125,4.25 l 0.34375,0.59375 c 1.06055,3.11425 0.18408,4.42236 0.40625,7.1875 10.8667,13.52539 22.14844,26.78809 33.5,39.90625 0.10692,0.12378 0.0811,0.62378 0.1875,0.75 l 3.40625,4.03125 c 3.92871,-4.36719 8.21582,-8.70264 11.84375,-13.28125 -0.30029,-0.81788 -2.10693,-17.58228 -2.34375,-19.59375 1.61865,-0.49853 3.31836,-0.84521 4.96875,-1.21875 -0.87403,-0.87597 -3.42383,-6.02051 -4.0625,-7.4375 -0.91943,-2.04151 -2.1123,-3.80737 -3.03125,-5.84375 -0.5122,-1.13574 -0.90088,-2.34766 -1.40625,-3.46875 -0.8501,-1.88769 -1.42529,-4.08105 -1.59375,-6.15625 -0.2793,-3.43872 -0.57959,-6.84668 -0.875,-10.28125 -0.15137,-1.75561 -0.7217,-2.99756 -0.625,-4.84375 0.29785,-5.70215 -0.20166,-11.22729 -0.6875,-16.90625 -0.0855,-1 -0.0552,-1.9668 -0.34375,-2.96875 -0.4961,-1.72217 -3.20703,-3.15381 -4.84375,-3.3125 -0.17186,-0.37207 -0.23735,-3.40576 -0.15625,-3.9375 0.28564,-0.33964 1.33643,-0.37255 1.71875,-0.40625 0.46827,-0.70679 0.74512,-2.10864 1.125,-2.9375 0.40039,-0.87182 1.47266,-1.43506 2.0625,-2.1875 1.83789,-2.34521 1.56735,-6.61865 1.46875,-9.46875 -0.10742,-3.08374 -0.18994,-6.41406 -0.90625,-9.40625 -0.57861,-2.41944 -3.82813,-21.36621 -4.78125,-22.34375 -4.86426,3.46924 -7.01807,-2.28223 -9.6875,-3.53125 -0.21045,-0.0103 -0.48243,0.0598 -0.65625,0.1875 -1.59961,1.17285 -3.77295,2.07593 -5.25,3.3125 -0.6543,0.5481 -1.12646,1.36376 -1.78125,1.9375 -0.71289,0.62427 -1.70264,1.10279 -2.28125,1.875 -1.24414,1.66016 -3.01367,5.7749 -3.3125,6.0625 -1.08545,0.30371 -2.39258,-2.86426 -3.1875,-3.625 -1.88525,-1.80371 -2.46777,-2.0813 -3.3125,-4.4375 -0.47266,-1.31812 -0.92432,-2.70117 -1.0625,-4.09375 -0.32324,-3.25928 -0.0723,-3.33765 -2.625,-5.09375 -0.5874,-0.40454 -1.31983,-1.06836 -2.0625,-1.1875 -0.30518,0.0596 -0.3291,0.22998 -0.53125,0.375 -5.36719,3.8562 -4.51611,-2.79077 -5.71875,-5.9375 -0.67188,-1.75854 -3.35986,0.32202 -3.8125,-5.71875 -0.0776,-1.03638 -0.72119,-1.89014 -1.0625,-2.84375 -0.18945,-0.52881 -1.72607,-8.03051 -1.90625,-9.09375 -0.24707,-1.45801 0.86768,-1.88769 0.71875,-2.84375 -0.0977,-0.18555 -0.23779,-0.37598 -0.40625,-0.5 -1.43604,-0.25293 -3.07276,-0.0606 -4.3125,-1 -0.82422,-0.62524 -1.66016,-1.85059 -2.75,-2.09375 -3.44287,-0.76929 -7.45118,0.45459 -4.375,-3.96875 0.9248,-1.32959 1.11328,-3.1438 2.09375,-4.34375 0.9668,-1.18311 2.29004,-1.66308 3.25,-2.78125 1.70508,-1.9856 1.59131,-4.58594 4.09375,-7.28125 2.68945,-2.89722 6.43604,-5.73169 7.9375,-9.53125 1.47949,-3.74438 0.20215,-6.14697 1.5,-10.84375 1.61523,-5.84473 -2.73584,-5.13501 -6.0625,-8.375 -2.77148,-2.69922 -3.69385,-4.67286 -7.96875,-5.375 -10.05029,-1.65015 -6.28125,0.66186 -6.84375,-6.84375 -0.13965,-1.86719 -0.98584,-3.81713 -0.5,-5.6875 0.5459,-2.10352 2.64649,-2.70678 3.21875,-4.40625 0.51074,-1.51782 -0.36426,-5.24341 0.5625,-6.375 -1.34717,-0.0647 -2.68408,0.1257 -4.03125,0.0625 -2.64062,-0.12354 -3.81543,-0.80225 -5.21875,1.8125 -0.86426,1.60938 -1.50781,3.44409 -2.0625,5.1875 -0.39941,1.25659 -0.92724,3.02759 -2.125,3.71875 -2.1665,0.36963 -4.13037,-2.8479 -5.40625,-4.1875 -1.11328,-1.1687 -2.26416,-2.31811 -3.1875,-3.6875 -0.94043,-1.39502 -1.41602,-3.34888 -2.03125,-4.9375 -1.26709,-3.271 -2.34473,-2.03344 -3.375,-6.71875 -0.14209,-0.64551 -0.94971,-0.96118 -1.34375,-1.46875 -0.97363,-1.25439 -0.99365,-2.25806 -2.21875,-3.625 -1.36816,-1.5271 -2.15528,-3.11938 -3.3125,-4.84375 -0.71484,-1.06494 -1.72901,-1.97583 -2.4375,-3.03125 -1.04248,-1.55298 -1.63135,-3.08691 -2.03125,-4.90625 -0.35449,-1.61133 -0.90429,-6.2334 0.125,-7.6875 0.55078,-0.77856 2.59912,-2.22534 3.375,-3.0625 0.10596,-0.1145 0.74515,-0.4405 0.84375,-0.4375 3.15039,0.11279 3.51806,-0.13159 6.28125,-0.375 2.57227,-0.22632 2.2124,0.95459 4.78125,-0.90625 5.35693,-3.88037 2.38525,-2.52881 3.03125,-6.15625 0.16016,-0.90039 0.88282,-1.52441 1.09375,-2.34375 1.22949,-4.77905 0.39746,-3.93359 -2.3125,-8.03125 -1.19092,-1.80029 0.0899,-7.63769 -2.65625,-9.625 l -1.125,-0.0312 c -18.09766,0.38281 -36.18164,0.57715 -54.28125,0.78125 -3.75,0.0422 -14.92578,0.58691 -18.0625,0.1875 -4.45166,-0.56689 -6.88233,-1.36475 -11.28125,-2.25 l -22.5625,-4.53125 c -2.43213,-0.48901 -5.13525,-0.84326 -7.4375,-1.8125 z m 174.125,64.03125 c -0.0974,0.003 -0.18883,0.0229 -0.28125,0.0312 0.26359,-0.0227 0.54416,-0.0484 0.84375,-0.0312 -0.19105,-0.01 -0.38491,-0.006 -0.5625,0 z", + "tucuman":"M 659.71875 345.25 C 657.62549 345.35357 654.97439 349.2549 652.84375 348.59375 C 651.18848 348.07984 646.83887 346.54102 645.03125 347.34375 C 644.70118 347.12817 644.41455 347.10205 644.0625 347 C 643.23535 346.76025 640.0957 345.29395 639.84375 345.28125 C 637.82812 346.17798 639.01025 350.30811 638.71875 351.875 C 638.25977 354.34327 637.68018 353.87378 637.875 356.90625 C 638.00585 358.94385 638.14258 358.93506 636.90625 360.75 C 636.39942 361.49414 631.43848 360.06104 630.5625 359.9375 C 626.11328 359.31055 621.70508 358.51025 617.28125 357.71875 L 611.0625 356 C 610.13574 357.13159 611.01074 360.85718 610.5 362.375 C 609.92774 364.07447 607.82715 364.67773 607.28125 366.78125 C 606.79541 368.65162 607.6416 370.60156 607.78125 372.46875 C 608.34375 379.97436 604.57471 377.66235 614.625 379.3125 C 618.8999 380.01464 619.82227 381.98828 622.59375 384.6875 C 625.92041 387.92749 630.27148 387.21777 628.65625 393.0625 C 627.3584 397.75928 628.63574 400.16187 627.15625 403.90625 C 625.65479 407.70581 621.9082 410.54028 619.21875 413.4375 C 616.71631 416.13281 616.83008 418.73315 615.125 420.71875 C 614.16504 421.83692 612.8418 422.31689 611.875 423.5 C 610.89453 424.69995 610.70605 426.51416 609.78125 427.84375 C 606.70507 432.26709 610.71338 431.04321 614.15625 431.8125 C 615.24609 432.05566 616.08203 433.28101 616.90625 433.90625 C 618.14599 434.84566 619.78271 434.65332 621.21875 434.90625 C 621.38721 435.03027 621.5273 435.2207 621.625 435.40625 C 621.77393 436.36231 620.65918 436.79199 620.90625 438.25 C 621.08643 439.31324 622.62305 446.81494 622.8125 447.34375 C 623.15381 448.29736 623.7974 449.15112 623.875 450.1875 C 624.32764 456.22827 627.01562 454.14771 627.6875 455.90625 C 628.89014 459.05298 628.03906 465.69995 633.40625 461.84375 C 633.6084 461.69873 633.63232 461.52835 633.9375 461.46875 C 634.68017 461.58789 635.4126 462.25171 636 462.65625 C 638.55273 464.41235 638.30176 464.49072 638.625 467.75 C 638.76318 469.14258 639.21484 470.52563 639.6875 471.84375 C 640.53223 474.19995 641.11475 474.47754 643 476.28125 C 643.79492 477.04199 645.10205 480.20996 646.1875 479.90625 C 646.48633 479.61865 648.25586 475.50391 649.5 473.84375 C 650.07861 473.07154 651.06836 472.59302 651.78125 471.96875 C 652.43604 471.39501 652.9082 470.57935 653.5625 470.03125 C 655.03955 468.79468 657.21289 467.8916 658.8125 466.71875 C 658.98632 466.59103 659.2583 466.52095 659.46875 466.53125 C 662.13818 467.78027 664.29199 473.53174 669.15625 470.0625 L 669.15625 469.96875 C 671.04199 468.36865 674.56592 470.72021 675.5 467.875 C 676.23389 465.64014 676.61377 463.95215 676.9375 461.625 C 676.95264 461.51368 677.05075 461.35449 677.09375 461.25 C 677.63281 460.62622 678.69287 461.56104 679.3125 461.09375 C 679.56885 460.84912 679.54883 460.37305 679.4375 460.0625 C 679.14795 459.25293 678.5293 458.51855 678.09375 457.78125 C 677.04883 456.01294 676.19922 453.93628 675.375 452.0625 C 674.83299 450.83057 674.8999 448.35547 675.40625 447.03125 C 676.30176 446.08936 679.40283 448.77148 681.125 443.40625 L 680.9375 442.875 C 680.10449 442.2053 678.89258 442.56885 678.125 442.15625 L 675.28125 440.625 L 675.375 440.375 L 675.5 440.125 L 675.59375 439.875 L 675.8125 439.46875 C 676.07666 438.97046 676.23535 438.67188 676.625 438.25 C 677.60498 437.18824 679.2627 436.2312 680.09375 435.125 C 681.06983 433.8252 681.76074 432.10327 683 430.78125 C 683.97559 430.53272 685.18701 430.53223 686.09375 430.125 C 686.3457 429.32446 687.47314 424.93018 687.9375 424.3125 L 688.71875 424.3125 C 689.22656 423.37476 689.08887 422.05737 689.59375 421.0625 L 690.09375 420.75 C 690.37207 419.19776 690.83105 417.3501 691.34375 415.84375 C 691.88525 412.65869 691.73389 410.11255 694.9375 409.09375 C 695.04247 408.8479 695.0796 408.52881 695.125 408.1875 C 696.09765 403.63868 697.3501 399.15356 698.25 394.59375 C 699.19385 394.81518 700.93506 395.04224 701.6875 394.21875 C 702.33594 391.47192 703.24561 388.63843 703.625 385.84375 C 705.35644 386.22242 707.11768 386.66553 708.875 386.90625 C 709.17627 383.18823 708.52881 379.24707 707.9375 375.59375 C 707.65576 373.8518 707.0977 371.72827 707.1875 369.9375 C 707.26709 368.35156 708.28613 366.45557 708.78125 364.9375 C 709.7793 361.87988 709.7749 360.07397 709.5 356.9375 C 709.4531 356.406 709.56595 355.86133 709.46875 355.34375 L 709.34375 355.5 C 707.03223 355.73686 704.65088 355.25415 702.28125 355.46875 C 700.45703 355.63405 698.32812 355.82202 696.5 355.65625 C 693.90821 355.42114 693.62842 354.3269 690.59375 354.8125 C 687.34521 355.33276 686.78467 358.53003 683.46875 359.0625 C 680.03711 359.61304 677.93994 355.34814 676.25 356.5625 C 676.07568 356.6875 675.81205 356.81543 675.78125 357.0625 C 672.16016 355.20191 666.78467 352.99219 663.0625 351.71875 L 662.125 348.25 C 661.50168 345.9492 660.67023 345.20292 659.71875 345.25 z ", + "santiago":"M 726.625 311.25 L 726.1875 312.375 C 721.73242 322.46191 717.35644 332.58179 712.875 342.65625 C 712.23242 344.10059 713.13623 346.07349 712.65625 347.5 C 711.62012 350.57593 709.8584 351.88428 709.46875 355.34375 C 709.56595 355.86133 709.4531 356.406 709.5 356.9375 C 709.7749 360.07397 709.7793 361.87988 708.78125 364.9375 C 708.28613 366.45557 707.26709 368.35156 707.1875 369.9375 C 707.0977 371.72827 707.65576 373.8518 707.9375 375.59375 C 708.52881 379.24707 709.17627 383.18823 708.875 386.90625 C 707.11768 386.66553 705.35644 386.22242 703.625 385.84375 C 703.24561 388.63843 702.33594 391.47192 701.6875 394.21875 C 700.93506 395.04224 699.19385 394.81518 698.25 394.59375 C 697.3501 399.15356 696.09765 403.63868 695.125 408.1875 C 695.0796 408.52881 695.04247 408.8479 694.9375 409.09375 C 691.73389 410.11255 691.88525 412.65869 691.34375 415.84375 C 690.83105 417.3501 690.37207 419.19776 690.09375 420.75 L 689.59375 421.0625 C 689.08887 422.05737 689.22656 423.37476 688.71875 424.3125 L 687.9375 424.3125 C 687.47314 424.93018 686.3457 429.32446 686.09375 430.125 C 685.18701 430.53223 683.97559 430.53272 683 430.78125 C 681.76074 432.10327 681.06983 433.8252 680.09375 435.125 C 679.2627 436.2312 677.60498 437.18824 676.625 438.25 C 676.23535 438.67188 676.07666 438.97046 675.8125 439.46875 L 675.59375 439.875 L 675.5 440.125 L 675.375 440.375 L 675.28125 440.625 L 678.125 442.15625 C 678.89258 442.56885 680.10449 442.2053 680.9375 442.875 L 681.125 443.40625 C 679.40283 448.77148 676.30176 446.08936 675.40625 447.03125 C 674.8999 448.35547 674.83299 450.83057 675.375 452.0625 C 676.19922 453.93628 677.04883 456.01294 678.09375 457.78125 C 678.5293 458.51855 679.14795 459.25293 679.4375 460.0625 C 679.54883 460.37305 679.56885 460.84912 679.3125 461.09375 C 678.69287 461.56104 677.63281 460.62622 677.09375 461.25 C 677.05075 461.35449 676.95264 461.51368 676.9375 461.625 C 676.61377 463.95215 676.23389 465.64014 675.5 467.875 C 674.56592 470.72021 671.04199 468.36865 669.15625 469.96875 L 669.15625 470.0625 C 670.10937 471.04004 673.35889 489.98681 673.9375 492.40625 C 674.65381 495.39844 674.73633 498.72876 674.84375 501.8125 C 674.94235 504.6626 675.21289 508.93604 673.375 511.28125 C 672.78516 512.03369 671.71289 512.59693 671.3125 513.46875 C 670.93262 514.29761 670.65577 515.69946 670.1875 516.40625 C 669.80518 516.43995 668.75439 516.47286 668.46875 516.8125 C 668.38765 517.34424 668.45314 520.37793 668.625 520.75 C 670.26172 520.90869 672.97265 522.34033 673.46875 524.0625 C 673.75732 525.06445 673.72705 526.03125 673.8125 527.03125 C 674.29834 532.71021 674.79785 538.23535 674.5 543.9375 C 674.4033 545.78369 674.97363 547.02564 675.125 548.78125 C 675.42041 552.21582 675.7207 555.62378 676 559.0625 C 676.16846 561.1377 676.74365 563.33106 677.59375 565.21875 C 678.09912 566.33984 678.4878 567.55176 679 568.6875 C 679.91895 570.72388 681.11182 572.48974 682.03125 574.53125 C 682.66992 575.94824 685.21972 581.09278 686.09375 581.96875 L 687.3125 581.6875 C 698.83594 578.69312 710.33301 575.63721 721.84375 572.59375 C 721.98926 572.55545 734.45899 575.90429 735.53125 576.1875 C 736.21191 577.75293 734.74268 580.08838 735.03125 581.4375 C 735.15576 581.60596 739.91407 582.93701 740.4375 583.09375 C 741.45801 583.39941 741.41895 584.95581 742.1875 585.5 C 742.8833 585.85791 744.9043 585.72022 745.9375 586.03125 C 747.70264 586.56299 747.17041 587.15795 748.375 587.90625 C 750.20898 589.0459 755.84961 588.47265 757.90625 587.9375 C 761.75 586.9375 762.2002 587.35107 766.125 588.96875 C 767.31055 589.45752 767.82666 588.0198 768.65625 587.9375 C 771.69873 588.39648 769.5 591.61767 769.90625 592.59375 L 770.125 592.8125 C 771.11768 593.11672 772.47168 592.65869 773.46875 593.0625 C 774.51221 593.88159 773.76416 595.25268 774 596.34375 C 774.0669 596.37895 774.31397 596.5585 774.375 596.5625 C 781.00244 596.99028 787.39404 597.145 794.03125 597.0625 C 799.15625 596.999 804.45215 596.64649 809.5625 596.8125 C 812.30762 596.9019 815.06641 596.77735 817.8125 596.71875 C 825.54834 596.5542 833.32812 596.67435 841.0625 596.34375 C 841.58301 597.78613 850.82129 622.2959 851.15625 622.65625 C 852.74855 613.08888 854.10059 603.48096 855.65625 593.90625 C 862.01807 554.75293 867.5957 515.48706 873.4375 476.25 C 873.4951 473.92918 873.5073 471.57251 873.5 469.25 C 873.4004 437.24536 873.24414 405.22022 873.46875 373.21875 C 873.51125 367.15161 873.09375 317.40625 873.09375 317.40625 C 872.34619 317.39355 831.76075 317.54834 812.21875 317.53125 C 799.38916 317.51975 786.54931 317.3352 773.71875 317.25 C 771.79199 317.15655 769.86523 317.18625 767.9375 317.15625 L 751.09375 316.90625 C 747.80713 316.85475 745.92774 317.09985 742.65625 316.78125 C 742.50098 316.76615 734.73193 314.10083 734.0625 313.875 C 731.58594 313.03979 729.05859 312.20483 726.625 311.25 z ", + "salta":"M 742.03125,68.90625 741.75,69.375 c 0.20312,1.69116 -1.00049,2.38843 -0.5625,3.65625 -0.38379,0.44995 -0.2168,1.64478 -0.84375,1.84375 0,0 -0.81055,0.16772 -1.03125,0.28125 l -0.78125,1.8125 c -0.0366,0.2461 0.1362,0.5271 0.125,0.65625 -0.12061,1.33081 -1.15625,3.25 -1.15625,3.25 -0.26172,0.61181 -0.69145,1.94263 -0.71875,2.125 -0.13086,0.33667 -0.375,0.677 -0.625,0.9375 0.1333,0.06958 0.36425,0.21558 0.40625,0.375 l -0.53125,1.0625 c -0.2832,0.04956 -1.40625,-0.21875 -1.40625,-0.21875 -0.0596,0.28833 -1.15625,2.625 -1.15625,2.625 -0.0259,0.26709 -4.5e-4,0.5625 0.0937,0.8125 0,0 -1.44235,2.72974 -1.53125,2.90625 0.13769,0.03589 0.24605,0.22412 0.28125,0.34375 -0.20801,0.42896 -0.47168,0.96777 -0.8125,1.3125 -0.0517,0.30713 -0.15039,2.5188 -0.3125,3 l -0.84375,-0.21875 c -0.24268,0.20215 -0.563,0.57983 -0.625,0.90625 l 0.25,0.65625 c -0.51319,0.4331 -2.125,3.03125 -2.125,3.03125 -0.57861,0.41162 -0.46631,1.22437 -0.78125,1.46875 l -0.71875,-0.0937 c -0.36035,0.30664 -1.5,3.5625 -1.5,3.5625 -0.14942,0.0393 -0.2705,0.67261 -0.3125,0.8125 -2.01807,1.80249 0.2085,4.62622 -0.96875,5.25 -0.18116,0.0427 -0.40967,0.0393 -0.59375,0 -0.6123,0.78564 -0.81934,1.59741 -0.125,2.40625 -0.021,0.35229 -0.29395,0.79321 -0.5,1.0625 0.0303,0.51929 -0.0317,1.02393 -0.125,1.53125 -0.13916,0.75757 0.3291,0.87549 0.46875,1.5625 l -0.53125,0.4375 c -0.2705,0.35156 0.34375,1.90625 0.34375,1.90625 -1.08643,1.20581 -0.23682,1.09985 -0.71875,1.96875 0,0 -0.39555,1.53882 -0.34375,2.1875 0,0 -0.49609,1.52759 -0.90625,2.4375 l -1.25,0.6875 -0.5625,-0.1875 -0.0937,-1.3125 c -0.29785,-0.42896 -0.25244,-1.31299 0.125,-1.65625 l -0.1875,-0.40625 c 0.0361,-0.10156 -0.96875,-0.5 -0.96875,-0.5 0,0 0.0684,-1.10498 0.40625,-1.28125 0.4126,-1.63721 0.43652,-3.37085 -1.0625,-4.5625 -0.63476,0.0513 -2.09375,-0.84375 -2.09375,-0.84375 -0.39552,-0.46606 -0.003,-1.53979 -0.4375,-1.96875 -0.34423,0.0156 -1.07617,-0.0933 -1.25,-0.46875 -0.0445,-0.43091 0.22803,-0.8645 0.0312,-1.28125 -0.37744,-0.39111 -0.30615,-1.62891 -0.28125,-1.78125 -0.47561,-0.26148 -0.26318,-2.69727 0.0625,-3.03125 0,0 0.50635,-0.60596 0.59375,-0.78125 0.1958,-0.66529 -0.0249,-1.77441 0.3125,-2.3125 -0.0957,-0.1748 -2.53125,-2.28125 -2.53125,-2.28125 -0.21338,-0.7832 -1.31738,-1.50293 -1.46875,-2.21875 l 0.0625,-1.03125 c 0,0 -0.70703,-1.14575 -0.9375,-1.375 l -0.1875,-0.09375 c -0.30664,-0.0271 -0.75391,0.38257 -0.9375,0.59375 -0.20752,0.04468 -0.46973,-0.0041 -0.65625,-0.09375 -0.14599,-0.11475 -0.2651,-0.32129 -0.3125,-0.5 0.23584,-0.52734 0.0962,-0.92651 0.5,-1.5 0.008,-1.1643 -1.78125,-1.54761 -2.40625,-2.28125 -0.70459,-0.82715 -0.55322,-2.98828 -0.34375,-4 l 0.21875,-0.1875 0.375,-0.03125 c 0.40722,-0.18994 1.01,-1.47363 1,-1.875 -1.95752,-2.57056 -1.80908,-1.59399 -3.40625,-3.03125 -0.47168,-0.42456 -0.6333,-1.56714 -2.09375,-2.875 -0.24902,-0.22291 -0.52002,-0.45874 -0.8125,-0.625 -0.6875,-0.39156 -1.53857,-0.03296 -2.40625,-0.4375 -1.00098,0.28882 -3.44043,1.05762 -3.8125,-0.375 -0.33399,-0.29836 -0.91504,-0.17187 -1.3125,-0.28125 -0.76123,-0.20923 -4.8125,-3.78857 -6.09375,-4.09375 -0.0933,0.0107 -0.19675,0.0168 -0.28125,0.0625 -0.11231,0.18286 -0.26416,0.37231 -0.4375,0.5 -1.00244,0.20849 -4.95166,-2.05591 -5.5,-2.71875 -2.63672,-0.28004 -5.52295,0.0178 -8.1875,0.0625 -1.27806,0.02161 -2.56445,0.06634 -3.84375,0.09375 -0.5797,1.290785 0.0172,1.528239 -0.21875,2.34375 -0.2832,0.97998 -1.37451,1.89404 -1.78125,2.84375 -0.43409,1.01221 -0.0381,1.80664 -0.28125,2.4375 -0.22461,0.58081 -0.5889,1.10962 -0.625,1.75 -0.10984,1.95385 -0.10937,3.70581 0.0312,5.65625 0.0791,1.09986 -1.63086,3.22095 -2.5,3.96875 l -0.125,0.34375 c -0.27685,1.67041 -0.94092,2.66724 -1.46875,4.21875 -0.0557,0.16406 0.14648,0.97192 0,1.25 -0.58741,1.11646 -1.62256,2.44824 -1.9375,3.65625 -0.37646,1.44311 0.53857,2.18677 0.4375,3 -0.0942,0.75513 -1.23193,2.53491 -0.71875,3.125 0.64697,0.44336 1.25537,-0.31445 1.875,-0.34375 0.88526,0.51538 0.68311,1.28027 1.25,1.90625 0.39062,0.11206 1.31836,0.33008 1.53125,0.75 0.0186,0.40967 -1.26175,2.44458 -1.34375,4.34375 -0.14112,3.27954 1.05225,3.81665 1.25,6.28125 0.0825,1.031 -0.3916,2.01758 -0.3125,3 0.0908,1.12402 0.86768,1.83862 1.125,2.90625 0.26514,1.10058 0.48389,2.23975 0.75,3.34375 0.11426,0.47461 0.17383,1.14355 0.5,1.53125 0.5913,0.7019 1.92285,2.26807 2.875,2.59375 3.12207,1.0691 7.58789,-1.39307 9.5625,2.25 0.20019,0.36963 0.742,1.6709 0.75,2.09375 0.0869,4.57251 -0.96338,8.09424 -2.1875,12.46875 -1.04736,3.7417 4.32764,3.08301 5.25,4.75 0.90381,1.63282 1.39648,2.91553 1.96875,4.71875 0.45899,1.44678 1.8833,3.11353 2.125,4.1875 0.19531,0.86817 0.0781,3.47559 0.375,4 0.13574,0.18237 0.43652,0.28725 0.65625,0.28125 1.29589,-0.69263 2.54736,1.27563 4.1875,0.5 1.36231,-0.64429 2.28174,-2.854 3.46875,-2.8125 0.46386,0.017 2.13379,0.16357 2.5,0.0312 0.20117,-0.42456 0.76807,-0.9792 1.25,-1.0625 0.95655,-0.0276 1.88721,1.75391 2.75,2.25 0.69482,0.39944 1.58594,0.17285 2.3125,0.5 0.77246,0.3479 3.77002,2.40649 4.34375,3.3125 0.47364,0.74805 0.90576,1.49634 1.46875,2.15625 0.75244,0.88159 1.80811,4.05762 3.15625,3.4375 0.41211,-0.5476 1.23535,-0.53442 1.53125,-1.15625 0.59228,-1.24463 0.33008,-2.75928 0.78125,-4 0.24951,-0.6853 1.39307,-0.26929 1.65625,-2.71875 0.88574,0.0217 10.96094,0.36768 11.21875,0.25 4.9e-4,8.0166 0.16162,16.10718 0.40625,24.125 0.21582,7.07006 0.26172,14.00269 0.96875,21 0.35791,3.5415 -2.85498,7.94165 -4.75,10.65625 -1.42822,2.04639 -2.26416,4.3833 -4.5,5.8125 -1.42285,0.90918 -5.88916,-0.22729 -6.625,1.5625 -1.61719,3.93239 -3.19189,1.35937 -5.8125,3.84375 -1.52197,1.44311 -2.44873,2.66431 -3.5,4.46875 -0.48535,0.83325 -0.42969,3.64526 -2.03125,3.75 -0.88428,-0.12232 -2.80713,-2.38989 -3.46875,-3.03125 -1.19727,-1.15918 -2.06641,-2.37378 -3.25,-3.5625 -1.52637,-1.53296 -3.37207,-2.81812 -4.9375,-4.34375 -0.0767,-0.0745 -0.19095,-0.1299 -0.28125,-0.1875 l -0.21875,0 c -2.08642,2.41553 -2.69824,5.45337 -3.875,8.34375 -1.09863,2.69824 -2.19824,1.83496 -4.40625,0.875 -1.73096,-0.75317 -3.51611,-1.16187 -5.0625,-2.21875 -2.16992,-1.48339 -6.12549,-4.0166 -6.5,-6.78125 l -0.21875,-0.21875 c -1.95264,0.10034 -5.25879,5.46167 -9.40625,2.6875 -3.45752,-2.31226 -3.83496,-0.78516 -6.375,-2 -1.0708,-1.35376 -1.02441,-2.55176 -3.0625,-2.78125 -0.15136,-0.0173 -0.72607,-0.12109 -0.875,0 -0.53467,0.43457 -1.19043,1.27734 -1.96875,1.0625 -0.46142,-0.2893 -0.99805,-0.9458 -1.3125,-1.375 -0.49414,-0.19629 -1.125,-0.0791 -1.5625,-0.375 -0.28222,-0.19067 -2.71533,-4.78198 -3.71875,-6.0625 -0.33447,-0.42676 -0.66211,-0.82422 -0.96875,-1.28125 -0.53174,-0.79272 -0.90674,-1.69531 -1.5,-2.46875 -1.34522,-1.75488 -4.30615,-5.04712 -4.40625,-7.4375 -0.0601,-1.42627 0.63085,-2.78467 0.53125,-4.15625 -0.0786,-1.08594 -1.25391,-2.41138 -2.3125,-2.6875 -4.58155,-1.19483 -3.7168,-5.5647 -7.8125,-5.1875 -0.63086,0.5791 -1.43994,2.50562 -2.5,0.75 -0.28369,-0.46973 -0.41162,-0.96289 -0.78125,-1.4375 -0.47656,-0.61133 -1.49705,-1.12695 -1.59375,-2 -0.12305,-1.11035 0.90775,-1.95947 0.84375,-2.625 -0.12158,-0.46704 -0.95068,-0.52563 -1.09375,-1.15625 0.0103,-0.43042 0.36275,-0.76294 0.28125,-1.1875 l -0.15625,-0.25 c -0.30127,0.007 -0.64453,0.20239 -0.875,0.375 l -0.21875,-0.21875 c -0.17338,-0.2771 0.0601,-2.0437 0.0937,-2.4375 0.32276,-3.7854 -0.7832,-4.09058 2.21875,-7.1875 0.0493,-0.0508 0.0717,-0.2439 0.0937,-0.3125 -0.0127,-0.75903 -1.10596,-1.20361 -0.96875,-2.0625 0.14258,-0.89428 0.89825,-1.53931 0.90625,-2.59375 0.008,-0.9961 -0.53125,-1.8042 -0.53125,-2.78125 0,-1.90722 1.37988,-3.95337 -0.1875,-5.5625 -1.06054,-1.08911 -2.00391,-2.00806 -3.21875,-2.84375 -2.24609,-1.54468 -4.55566,-3.09497 -6.9375,-4.40625 -1.79834,-0.99048 -1.86475,1.24365 -4.4375,-1.34375 -0.75684,-0.76123 -1.23926,-0.97388 -2.46875,-0.53125 -0.63769,-0.13552 -4.49023,-3.97461 -5.40625,-0.15625 -2.78711,11.61426 -1.83057,7.58545 0.46875,17.84375 0.86523,3.85913 -0.34961,7.85913 -1.53125,11.46875 -0.9082,2.77514 -1.9043,5.60034 -2.71875,8.4375 -0.51709,1.80127 -3.10986,15.02344 -5.25,14.8125 -1.8335,-0.18091 -2.82666,-1.80713 -3.8125,-2 -0.81982,-0.16015 -1.20752,0.70875 -1.78125,0.71875 -2.0376,0.0347 -4.37549,-1.00098 -6.125,-2 -0.69434,-0.39649 -8.02051,-3.93625 -8.125,-4.03125 -0.79639,-0.72632 -1.12256,-1.82495 -1.8125,-2.59375 -0.64258,-0.71558 -1.354,-1.3772 -2.03125,-2.0625 -0.6792,-0.68701 -0.11523,-2.08081 -0.84375,-2.5625 -0.46289,-0.14477 -0.93799,-0.0911 -1.375,0.125 -1.73243,-0.17407 -1.16162,-2.11914 -2.0625,-3.1875 -0.50537,-0.59961 -1.27246,-0.94165 -1.75,-1.5 -0.69727,-0.81421 -1.1748,-1.8042 -1.8125,-2.65625 -0.10742,-0.14355 -0.54785,-0.57617 -0.6875,-0.6875 -1.70117,-1.35962 -2.84814,-0.35474 -4.28125,-1.25 -0.56396,-0.77343 -0.94336,-1.75439 -1.625,-2.4375 -1.0227,-1.02513 -1.53574,0.1179 -3.28125,-1.78125 -0.90249,3.36692 -3.3836,13.2358 -3.875,14.03125 -0.54882,0.88916 -1.16357,1.80029 -1.65625,2.71875 -0.35401,0.65991 -0.33984,1.60278 -0.6875,2.3125 l -0.21875,0.1875 c -9.25635,4.15967 -18.43115,8.49585 -27.6875,12.65625 -2.32861,1.04687 -25.70508,11.30444 -27.84375,13.3125 -0.63281,0.59448 -0.53467,2.11255 -0.9375,2.8125 -2.62402,4.55981 -4.5332,-1.97559 -6.40625,2.03125 -0.83252,1.78052 0.53906,2.77441 0.1875,3.78125 -0.2959,0.57641 -2.10547,1.90234 -2.96875,3.375 -0.33984,0.58007 -0.45361,2.47095 -1.125,2.84375 -0.25976,-0.0393 -0.75049,-0.12402 -1,0 -0.42334,0.26733 -2.03516,3.05029 -2.25,3.65625 -0.3877,1.09277 -2.3628,3.71045 -2.375,3.8125 L 468,259.28125 c -0.45117,3.71118 2.24463,1.60718 5.09375,5.71875 l 0.15625,0.21875 c 1.8335,2.16919 2.54199,4.2522 3.8125,6.71875 0.3584,0.6958 2.55615,1.28931 3.21875,1.53125 0.0488,1.27075 1.13818,2.81201 1.78125,3.90625 -1.10058,1.14013 -2.52441,1.70825 -3.96875,2.28125 -1.05371,-0.48047 -2.55029,-1.26611 -3.71875,-0.9375 -0.96191,0.72925 -1.51611,1.87549 -2.25,2.8125 -0.0276,0.51992 -0.0303,1.04138 -0.0312,1.5625 2.30225,0.96924 5.00537,1.32349 7.4375,1.8125 l 22.5625,4.53125 c 4.39892,0.88525 6.82959,1.68311 11.28125,2.25 3.13672,0.39941 14.3125,-0.1453 18.0625,-0.1875 18.09961,-0.2041 36.18359,-0.39844 54.28125,-0.78125 l 1.125,0.0312 c 2.74613,1.98731 1.46533,7.82471 2.65625,9.625 2.70996,4.09766 3.54199,3.2522 2.3125,8.03125 -0.21093,0.81934 -0.93359,1.44336 -1.09375,2.34375 -0.646,3.62744 2.32568,2.27588 -3.03125,6.15625 -2.56885,1.86084 -2.20898,0.67993 -4.78125,0.90625 -2.76319,0.24341 -3.13086,0.48779 -6.28125,0.375 -0.0986,-0.003 -0.73779,0.323 -0.84375,0.4375 -0.77588,0.83716 -2.82422,2.28394 -3.375,3.0625 -1.02929,1.4541 -0.47949,6.07617 -0.125,7.6875 0.3999,1.81934 0.98877,3.35327 2.03125,4.90625 0.70849,1.05542 1.72266,1.96631 2.4375,3.03125 1.15722,1.72437 1.94434,3.31665 3.3125,4.84375 1.2251,1.36694 1.24512,2.37061 2.21875,3.625 0.39404,0.50757 1.20166,0.82324 1.34375,1.46875 1.03027,4.68531 2.10791,3.44775 3.375,6.71875 0.61523,1.58862 1.09082,3.54248 2.03125,4.9375 0.92334,1.36939 2.07422,2.5188 3.1875,3.6875 1.27588,1.3396 3.23975,4.55713 5.40625,4.1875 1.19776,-0.69116 1.72559,-2.46216 2.125,-3.71875 0.55469,-1.74341 1.19824,-3.57812 2.0625,-5.1875 1.40332,-2.61475 2.57813,-1.93604 5.21875,-1.8125 1.34717,0.0632 2.68408,-0.1272 4.03125,-0.0625 l 6.21875,1.71875 c 4.42383,0.7915 8.83203,1.5918 13.28125,2.21875 0.87598,0.12354 5.83692,1.55664 6.34375,0.8125 1.23633,-1.81494 1.0996,-1.80615 0.96875,-3.84375 -0.19482,-3.03247 0.38477,-2.56298 0.84375,-5.03125 0.2915,-1.56689 -0.89063,-5.69702 1.125,-6.59375 0.25195,0.0127 3.3916,1.479 4.21875,1.71875 0.35205,0.10205 0.63868,0.12817 0.96875,0.34375 1.80762,-0.80273 6.15723,0.73609 7.8125,1.25 3.09912,0.96167 7.28662,-7.7063 9.28125,-0.34375 l 0.9375,3.46875 c 3.72217,1.27344 9.09766,3.48316 12.71875,5.34375 0.0308,-0.24707 0.29443,-0.375 0.46875,-0.5 1.68994,-1.21436 3.78711,3.05054 7.21875,2.5 3.31592,-0.53247 3.87646,-3.72974 7.125,-4.25 3.03467,-0.4856 3.31446,0.60864 5.90625,0.84375 1.82812,0.16577 3.95703,-0.0222 5.78125,-0.1875 2.36963,-0.2146 4.75098,0.26806 7.0625,0.0312 l 0.125,-0.15625 c 0.38965,-3.45947 2.15137,-4.76782 3.1875,-7.84375 0.47998,-1.42651 -0.42383,-3.39941 0.21875,-4.84375 4.48144,-10.07446 8.85742,-20.19434 13.3125,-30.28125 l 0.4375,-1.125 c 2.43359,0.95483 4.96094,1.78979 7.4375,2.625 0.66943,0.22583 8.43848,2.89115 8.59375,2.90625 3.27149,0.3186 5.15088,0.0735 8.4375,0.125 l 16.84375,0.25 c 1.92773,0.03 3.85449,2.5e-4 5.78125,0.0937 11.99219,-16.16749 53.74121,-73.19507 62.84375,-85.34375 0.31909,-5.66378 -0.0324,-12.64095 -0.25,-18.53125 -0.0107,-0.01 -0.0206,-0.0215 -0.0312,-0.0312 0.15431,-3.39644 0.12207,-110.07422 -0.15625,-113.21875 l -1.5625,-0.5 -0.625,1 c -0.12012,-0.19239 -0.333,-0.54053 -0.3125,-0.78125 -0.17188,-0.28173 -0.51953,-0.47095 -0.78125,-0.625 -2.18164,-1.28442 -0.90967,-0.7771 -2,-2.1875 -0.45947,-0.14112 -0.77393,0.26831 -1.3125,0.09375 0.0269,-0.20703 0.44873,-0.58838 0.59375,-0.78125 -0.32714,-0.24881 -0.81348,0.06641 -1.125,-0.1875 -0.18847,-0.5232 0.0425,-1.45996 0.34375,-1.90625 L 829.25,93.8125 828.96875,93.625 c -0.43799,0.10669 -1.05518,0.64966 -1.34375,0.96875 -0.58838,0.01513 -2.26123,-0.32056 -2.6875,-0.75 l -0.25,-1.25 -0.625,-0.34375 0.3125,-1.28125 -1.25,0.5 -0.28125,-0.125 c -0.14013,-0.29785 -0.32475,-0.78345 -0.28125,-1.125 l -0.25,-0.3125 -0.28125,-0.03125 -0.65625,0.59375 -0.25,-0.09375 c -0.20947,-0.42261 -0.80176,-1.00005 -1.28125,-1.09375 -0.20166,0.0046 -0.37598,0.16919 -0.53125,0.28125 -0.17675,-0.0068 -0.42676,-0.05347 -0.5625,-0.1875 l -0.0312,-0.40625 0.3125,-0.375 0.5625,-0.6875 -0.0312,-0.28125 -0.8125,-0.59375 0,-0.28125 0.375,-0.53125 0,-0.59375 c -0.26318,-0.16995 -0.72021,-0.28345 -1.03125,-0.21875 l -0.125,0.4375 c -1.03808,0.0232 -1.54199,-2.2644 -2.25,-3.0625 -0.39843,-0.0141 -1.45703,0.13794 -1.75,0 -0.36279,-0.77588 -1.27246,-2.93775 -2.28125,-2.96875 L 810.90625,78.75 c -0.0547,0.40381 -0.27441,1.33545 -0.5625,1.65625 l -0.28125,0.03125 c -1.2168,-0.86328 -1.05371,-2.54053 -1.90625,-3.6875 -0.20606,-0.75952 0.99268,-1.8396 1.125,-2.71875 0.15528,-1.03076 -0.51172,-1.90918 -0.8125,-2.84375 -0.22608,-0.70386 0.28564,-1.45947 0.125,-2.15625 -3.2168,0.18185 -6.66309,-0.0476 -9.875,-0.0625 -4.87842,-0.0225 -9.74561,0.0169 -14.625,0 -14.02393,-0.0486 -28.03955,0.0364 -42.0625,-0.0625 z", + "jujuy":"M 607 53.875 C 606.48291 54.27149 605.26563 54.14575 605.59375 55.125 L 605.84375 55.375 C 605.97803 55.68457 605.95117 57.62622 606.1875 58.59375 C 606.00927 59.21948 604.95654 62.30295 604.75 62.34375 C 604.50776 62.97021 604.74854 63.74487 604.46875 64.3125 C 604.18945 64.2937 603.82475 64.9939 603.78125 65.21875 C 603.90275 65.45484 603.6626 65.90454 603.84375 66.34375 C 603.53564 66.60864 603.74512 67.17285 603.3125 67.5625 L 603.90625 68.53125 C 603.32862 69.11646 603.88916 69.6543 603.5625 70.21875 C 603.37256 70.41162 603.12061 70.5769 602.875 70.6875 L 603.4375 72.09375 C 603.29785 72.23535 603.0156 72.53564 603 72.75 C 603 72.75 603.1064 74.00513 603.0625 74.28125 C 602.98487 74.50073 602.3833 74.81295 602.1875 74.90625 L 601.9375 74.875 L 601.3125 74.40625 L 601.09375 74.53125 C 601.07226 75.23975 601.01221 75.34106 600.6875 75.9375 L 600.71875 76.625 C 600.72119 76.70801 599.53125 77.125 599.53125 77.125 C 597.80469 77.37183 584.7627 81.17944 583.4375 81.8125 L 582.3125 83.5625 L 580.21875 82.59375 C 579.40381 82.72144 577.2793 84.2478 576.4375 84.78125 C 575.77344 88.78222 575.37939 91.53223 574.03125 95.375 C 573.76658 96.12891 573.86425 97.11401 573.84375 97.90625 C 573.15381 98.21631 565.4697 101.56835 565.375 101.65625 C 564.54883 102.42163 563.74658 103.69873 563.03125 104.59375 C 562.97949 104.65893 562.84865 104.73165 562.78125 104.78125 L 559.78125 104.9375 L 559.59375 105.21875 C 559.81983 107.64184 560.09619 110.07031 560.25 112.5 C 559.43848 113.27002 558.44629 113.80518 557.53125 114.4375 C 556.43017 115.19775 554.75293 116.08813 553.8125 117 C 553.62744 117.1792 550.99756 122.54932 550.5625 123.375 C 552.56933 124.89893 559.75244 133.75049 561.75 136.125 C 561.38086 137.2998 555.78125 157.84375 555.78125 157.84375 C 553.14941 167.51074 550.26758 177.13574 547.5625 186.78125 C 547.51809 186.93966 547.37312 187.58636 547.3125 187.8125 C 549.05801 189.71165 549.57105 188.56862 550.59375 189.59375 C 551.27539 190.27686 551.65479 191.25782 552.21875 192.03125 C 553.65186 192.92651 554.79883 191.92163 556.5 193.28125 C 556.63965 193.39258 557.08008 193.8252 557.1875 193.96875 C 557.8252 194.8208 558.30273 195.81079 559 196.625 C 559.47754 197.18335 560.24463 197.52539 560.75 198.125 C 561.65088 199.19336 561.08007 201.13843 562.8125 201.3125 C 563.24951 201.09644 563.72461 201.04273 564.1875 201.1875 C 564.91602 201.66919 564.35205 203.06299 565.03125 203.75 C 565.7085 204.4353 566.41992 205.09692 567.0625 205.8125 C 567.75244 206.5813 568.07861 207.67993 568.875 208.40625 C 568.97949 208.50125 576.30566 212.04101 577 212.4375 C 578.74951 213.43652 581.0874 214.47216 583.125 214.4375 C 583.69873 214.4275 584.08643 213.5586 584.90625 213.71875 C 585.89209 213.91162 586.88525 215.53784 588.71875 215.71875 C 590.85889 215.92969 593.45166 202.70752 593.96875 200.90625 C 594.7832 198.06909 595.7793 195.24389 596.6875 192.46875 C 597.86914 188.85913 599.08398 184.85913 598.21875 181 C 595.91943 170.7417 594.96289 174.77051 597.75 163.15625 C 598.66602 159.33789 602.51856 163.17698 603.15625 163.3125 C 604.38574 162.86987 604.86816 163.08252 605.625 163.84375 C 608.19775 166.43115 608.26416 164.19702 610.0625 165.1875 C 612.44434 166.49878 614.75391 168.04907 617 169.59375 C 618.21484 170.42944 619.15821 171.34839 620.21875 172.4375 C 621.78613 174.04663 620.40625 176.09278 620.40625 178 C 620.40625 178.97705 620.9458 179.78515 620.9375 180.78125 C 620.9295 181.83569 620.17383 182.48072 620.03125 183.375 C 619.89404 184.23389 620.9873 184.67847 621 185.4375 C 620.978 185.5061 620.95555 185.69922 620.90625 185.75 C 617.9043 188.84692 619.01026 189.1521 618.6875 192.9375 C 618.6538 193.3313 618.42037 195.0979 618.59375 195.375 L 618.8125 195.59375 C 619.04297 195.42114 619.38623 195.22607 619.6875 195.21875 L 619.84375 195.46875 C 619.92525 195.89331 619.57275 196.22583 619.5625 196.65625 C 619.70557 197.28687 620.53467 197.34546 620.65625 197.8125 C 620.72025 198.47803 619.68945 199.32715 619.8125 200.4375 C 619.9092 201.31055 620.92969 201.82617 621.40625 202.4375 C 621.77588 202.91211 621.90381 203.40527 622.1875 203.875 C 623.24756 205.63062 624.05664 203.7041 624.6875 203.125 C 628.7832 202.7478 627.91845 207.11767 632.5 208.3125 C 633.55859 208.58862 634.73389 209.91406 634.8125 211 C 634.9121 212.37158 634.22119 213.72998 634.28125 215.15625 C 634.38135 217.54663 637.34228 220.83887 638.6875 222.59375 C 639.28076 223.36719 639.65576 224.26978 640.1875 225.0625 C 640.49414 225.51953 640.82178 225.91699 641.15625 226.34375 C 642.15967 227.62427 644.59278 232.21558 644.875 232.40625 C 645.3125 232.70215 645.94336 232.58496 646.4375 232.78125 C 646.75195 233.21045 647.28858 233.86695 647.75 234.15625 C 648.52832 234.37109 649.18408 233.52832 649.71875 233.09375 C 649.86768 232.97266 650.44239 233.07645 650.59375 233.09375 C 652.63184 233.32324 652.58545 234.52124 653.65625 235.875 C 656.19629 237.08984 656.57373 235.56274 660.03125 237.875 C 664.17871 240.64917 667.48486 235.28784 669.4375 235.1875 L 669.65625 235.40625 C 670.03076 238.1709 673.98633 240.70411 676.15625 242.1875 C 677.70264 243.24438 679.48779 243.65308 681.21875 244.40625 C 683.42676 245.36621 684.52637 246.22949 685.625 243.53125 C 686.80176 240.64087 687.41358 237.60303 689.5 235.1875 L 689.71875 235.1875 C 689.80905 235.2451 689.92334 235.30054 690 235.375 C 691.56543 236.90063 693.41113 238.18579 694.9375 239.71875 C 696.12109 240.90747 696.99023 242.12207 698.1875 243.28125 C 698.84912 243.92261 700.77197 246.19018 701.65625 246.3125 C 703.25781 246.20776 703.20215 243.39575 703.6875 242.5625 C 704.73877 240.75806 705.66553 239.53686 707.1875 238.09375 C 709.80811 235.60937 711.38281 238.18239 713 234.25 C 713.73584 232.46021 718.20215 233.59668 719.625 232.6875 C 721.86084 231.2583 722.69678 228.92139 724.125 226.875 C 726.02002 224.1604 729.23291 219.76025 728.875 216.21875 C 728.16797 209.22144 728.12207 202.28881 727.90625 195.21875 C 727.66162 187.20093 727.50049 179.11035 727.5 171.09375 C 727.24219 171.21143 717.16699 170.86548 716.28125 170.84375 C 716.01807 173.29321 714.87451 172.8772 714.625 173.5625 C 714.17383 174.80322 714.43603 176.31787 713.84375 177.5625 C 713.54785 178.18433 712.72461 178.17115 712.3125 178.71875 C 710.96436 179.33887 709.90869 176.16284 709.15625 175.28125 C 708.59326 174.62134 708.16114 173.87305 707.6875 173.125 C 707.11377 172.21899 704.11621 170.1604 703.34375 169.8125 C 702.61719 169.48535 701.72607 169.71194 701.03125 169.3125 C 700.16846 168.81641 699.2378 167.03491 698.28125 167.0625 C 697.79932 167.1458 697.23242 167.70044 697.03125 168.125 C 696.66504 168.25732 694.99511 168.11075 694.53125 168.09375 C 693.34424 168.05225 692.42481 170.26196 691.0625 170.90625 C 689.42236 171.68188 688.17089 169.71362 686.875 170.40625 C 686.65527 170.41225 686.35449 170.30737 686.21875 170.125 C 685.92187 169.60059 686.03906 166.99317 685.84375 166.125 C 685.60205 165.05103 684.17774 163.38428 683.71875 161.9375 C 683.14648 160.13428 682.65381 158.85157 681.75 157.21875 C 680.82764 155.55176 675.45264 156.21045 676.5 152.46875 C 677.72412 148.09424 678.77442 144.57251 678.6875 140 C 678.6795 139.57715 678.13769 138.27588 677.9375 137.90625 C 675.96289 134.26318 671.49707 136.72535 668.375 135.65625 C 667.42285 135.33057 666.0913 133.7644 665.5 133.0625 C 665.17383 132.6748 665.11426 132.00586 665 131.53125 C 664.73389 130.42725 664.51514 129.28808 664.25 128.1875 C 663.99268 127.11987 663.21582 126.40527 663.125 125.28125 C 663.0459 124.29883 663.52002 123.31225 663.4375 122.28125 C 663.23975 119.81665 662.04638 119.27954 662.1875 116 C 662.2695 114.10083 663.54981 112.06592 663.53125 111.65625 C 663.31836 111.23633 662.39062 111.01831 662 110.90625 C 661.43311 110.28027 661.63526 109.51538 660.75 109 C 660.13037 109.0293 659.52197 109.78711 658.875 109.34375 C 658.36182 108.75366 659.49951 106.97388 659.59375 106.21875 C 659.69482 105.40552 658.77979 104.66186 659.15625 103.21875 C 659.47119 102.01074 660.50634 100.67896 661.09375 99.5625 C 661.24023 99.28442 661.03805 98.47656 661.09375 98.3125 C 661.62158 96.76099 662.28565 95.76416 662.5625 94.09375 L 662.6875 93.75 C 663.55664 93.0022 665.2666 90.88111 665.1875 89.78125 C 665.04688 87.83081 665.04641 86.07885 665.15625 84.125 C 665.19235 83.48462 665.55664 82.95581 665.78125 82.375 C 666.02441 81.74414 665.62841 80.94971 666.0625 79.9375 C 666.46924 78.98779 667.56055 78.07373 667.84375 77.09375 C 668.07966 76.278239 667.4828 76.040785 668.0625 74.75 C 662.47773 74.869653 656.89146 75.001132 651.3125 74.96875 L 650.78125 75.46875 C 648.9209 75.10009 647.06787 74.4668 645.21875 74 L 644.25 75.28125 C 643.91309 75.52393 643.52979 75.25 643.1875 75.25 C 642.69873 75.25 641.13672 75.73364 640.625 75.90625 L 640.375 76.28125 C 638.95557 76.61865 637.24707 75.04834 636.71875 75.40625 C 633.41943 77.64258 633.18555 73.57275 631.15625 73.46875 C 631.23633 73.25635 631.083 72.84644 631 72.65625 C 629.92041 72.13891 626.125 65.55615 624.4375 64.125 C 622.18261 63.729 619.80176 63.1355 617.53125 63.03125 C 617.34912 62.03833 617.93262 61.02344 617.8125 60.0625 C 614.6792 56.35473 615.04053 57.05835 610.71875 55.34375 L 607 53.875 z ", + "formosa":"M 836.125 100.125 C 836.40332 103.26953 836.43556 209.94731 836.28125 213.34375 C 838.1328 215.03584 841.54395 215.85522 842.8125 216.8125 C 844.19287 217.85449 845.54541 218.34082 847.1875 218.9375 C 850.08643 219.99024 854.2583 218.99243 855.15625 221.78125 C 855.91114 224.12378 856.49316 223.8269 858.46875 224.8125 C 860.06835 225.61059 860.64355 227.66382 862.8125 227.90625 C 864.42822 228.08667 865.81738 228.76025 867.4375 228.90625 L 867.6875 228.90625 C 867.90186 228.88648 868.12061 228.84005 868.34375 228.78125 L 868.625 228.71875 C 868.71337 228.79834 868.81055 228.89111 868.90625 229 C 869.87061 230.09302 870.19385 230.48828 870.59375 230.78125 C 870.97851 231.06275 871.4292 231.24731 872.5625 231.90625 C 872.5903 231.94702 872.5786 231.97534 872.625 232.09375 L 872.9375 232.9375 C 873.60546 234.75366 874.53174 236.88794 875.65625 238.4375 C 876.43262 239.50782 877.31104 239.34155 877.9375 238.65625 C 878.64941 239.12793 879.5 239.12134 880.53125 238.53125 C 880.72852 240.23316 881.05566 240.74878 882.34375 242 C 883.71094 243.32837 884.83643 244.63574 886.09375 246.0625 C 888.79541 249.12866 889.37109 248.72803 892.21875 248.25 C 892.42871 248.31446 892.53076 248.39014 892.71875 248.5 C 895.77441 250.2898 897.52832 249.22339 900.625 250 C 903.5625 250.73682 903.32324 254.27222 905.21875 254.78125 C 904.9751 257.02807 906.78369 259.11914 908.1875 260.71875 C 905.93799 263.9143 911.14209 268.64648 912.8125 266.90625 C 913.31201 267.35327 913.80518 267.81592 914.34375 268.3125 C 915.25342 269.15088 919.0498 271.79443 919.46875 272.4375 L 919.8125 273.03125 C 920.05372 273.40747 920.49805 274.03149 921.15625 274.40625 C 924.13184 276.10132 922.95557 274.56738 925.21875 277.65625 C 926.66748 279.63305 928.71533 278.96631 929.9375 280.375 C 931.01172 281.61352 932.61084 282.31274 934.03125 283.09375 L 934.21875 283.4375 C 935.38281 285.78174 937.52295 285.08496 939.40625 286.09375 C 939.87207 286.53467 940.27686 287.0498 940.84375 287.375 L 941.3125 287.53125 C 942.17578 287.64746 942.46387 287.21851 943.15625 287.09375 C 944.38233 287.39429 945.229 290.78809 946.25 291.96875 L 946.53125 292.3125 C 946.67041 292.48315 946.7813 292.67603 946.875 292.875 L 947.28125 293.78125 C 947.81836 294.92627 950.3457 297.42456 951.8125 297.78125 C 952.14551 298.35717 952.38818 299.00464 952.75 299.5625 C 952.34073 299.958 952.27445 300.59155 952.34375 301.125 L 952.40625 301.375 C 952.75049 302.42774 953.81494 302.92334 954.78125 303.25 L 955.46875 303.46875 C 955.43262 304.13672 955.38086 304.82959 955.625 305.46875 L 955.78125 305.71875 C 956.77588 307.20069 957.81445 306.8621 958.875 306.875 C 958.96338 307.2251 959.2124 307.52637 959.53125 307.8125 C 959.13476 308.07373 958.78125 308.37427 958.78125 309.03125 C 958.78125 310.0437 959.08203 310.40356 959.75 311.09375 C 960.17578 313.61426 959.98193 313.74829 961.96875 315.34375 C 962.24317 316.74097 961.68164 317.79517 963.03125 318.96875 L 963.46875 319.21875 C 964.33985 319.53784 965.26709 319.37964 965.90625 318.84375 C 966.71191 319.45825 967.44971 319.4314 968.40625 319.59375 C 968.96533 320.47315 969.3042 320.8085 970.46875 320.8125 C 970.66943 320.8135 970.89453 320.8085 971.125 320.8125 C 971.06982 321.14917 971.05176 321.56006 971.1875 321.96875 L 971.28125 322.15625 C 972.28076 324.13282 974.02148 323.71094 975.65625 324.25 L 975.75 324.59375 C 976.73291 328.02685 980.56396 327.21289 981.375 328.96875 C 980.82471 330.80664 981.12646 332.14111 983 332.8125 L 983.59375 333.03125 C 985.26514 333.60791 986.00195 335.04468 987.3125 336.09375 C 987.95948 337.23096 988.00488 338.37671 989.125 339.21875 L 989.40625 339.4375 C 990.4292 340.5271 990.51758 342.70015 992.53125 342.71875 C 992.39258 344.23022 993.12158 345.66479 992.75 347.0625 L 992.59375 347.65625 C 992.04932 350.00805 994.20361 351.96851 996.5 350.84375 L 996.8125 350.96875 C 997.14697 351.07572 997.41797 351.1133 997.65625 351.125 L 997.96875 351.125 C 999.35791 353.4441 1000.3745 351.88696 1002.125 352.28125 C 1002.2119 352.31933 1002.3838 352.3931 1002.4688 352.4375 L 1002.875 352.625 C 1005.0879 353.64579 1005.9892 351.94824 1007.7812 353.71875 C 1008.2656 355.32935 1007.7408 358.21338 1009.125 359.5 C 1008.1617 362.29249 1012.1144 365.44751 1014.0938 364.8125 L 1014.4375 364.65625 C 1014.5303 364.59497 1014.6045 364.5083 1014.6875 364.4375 C 1017.5947 366.79077 1017.9253 364.7041 1020.2812 364.25 L 1020.7188 364.1875 C 1021.4546 364.04297 1021.9922 363.75073 1022.5 363.21875 C 1022.9135 362.77735 1023.3223 362.3335 1023.7812 361.9375 C 1024.1407 363.37182 1026.7432 365.15601 1027.9688 365.6875 C 1034.5508 368.54199 1034.0991 366.55859 1038.5625 373.15625 C 1040.8305 376.5083 1041.6449 376.14917 1044.7812 377.71875 C 1046.4018 379.40552 1046.9419 383.01245 1050.1875 382.21875 L 1050.6562 382.09375 C 1050.752 382.21093 1050.9923 382.48804 1051.1562 382.8125 C 1053.46 387.36084 1057.6617 386.28271 1058.8438 390.84375 C 1059.4766 393.28271 1061.523 393.34497 1063.0625 394.90625 C 1063.4434 396.01807 1063.3413 397.36279 1064.5312 398.03125 C 1066.3116 399.031 1067.1568 399.78174 1068.7188 399.15625 C 1068.668 399.69214 1068.8233 400.43457 1069.4062 400.9375 C 1069.8392 400.48175 1070.2421 399.94748 1070.6562 399.34375 C 1071.3543 399.07691 1072.771 400.11621 1073.5 399.25 L 1073.6875 398.71875 C 1073.7124 397.32056 1071.127 396.9585 1071.3125 395.65625 C 1071.4102 395.41797 1071.7211 395.1372 1071.9688 395.0625 C 1074.0033 394.82446 1072.8374 395.6792 1075.4375 394.71875 C 1075.5943 394.58032 1075.7912 394.31958 1075.7812 394.09375 L 1075.0625 392.5 L 1075.125 392.125 L 1075.5625 391.875 L 1077.0625 392.09375 L 1077.75 391.53125 C 1078.4004 390.48731 1077.6204 389.5625 1077.5312 388.5625 C 1077.427 387.38599 1077.6436 385.97681 1077.5938 384.75 C 1077.5887 384.61889 1077.6815 384.32715 1077.7188 384.1875 C 1077.9275 384.22729 1078.2082 384.26835 1078.4062 384.34375 C 1078.9113 384.53541 1079.3963 384.86768 1079.9062 385.03125 C 1080.5104 385.22461 1081.6071 384.35596 1081.3438 383.6875 C 1081.1413 383.4917 1080.405 382.75562 1080.375 382.46875 C 1080.3599 381.95728 1081.4346 381.26709 1081.25 380.34375 C 1080.9063 378.62719 1079.5625 376.97095 1079.5625 376.5625 C 1079.5625 375.61475 1080.4635 374.9978 1080.4375 374.0625 C 1080.3857 373.73023 1079.5125 372.99146 1079.2188 372.5625 L 1079.5 372.09375 C 1080.2798 371.86231 1081.3814 372.31128 1081.9375 371.5 L 1082.0625 371.125 C 1081.0678 368.96191 1079.4873 370.61206 1080.6875 365.84375 C 1080.7983 365.40259 1082.1161 364.9104 1082.4688 364.78125 C 1082.7606 364.50879 1082.9231 363.98926 1083.0312 363.65625 C 1084.1165 360.32348 1082.0703 360.94873 1082.625 358.4375 C 1083.21 357.48608 1085.0863 357.63086 1085.8438 356.4375 C 1085.9652 355.96753 1085.9284 355.30127 1085.7812 354.84375 C 1085.0534 354.2395 1083.6018 353.77905 1083.2188 353 L 1083.3438 352.65625 C 1084.1409 352.41895 1084.8305 352.7842 1085.625 352.75 L 1085.875 352.53125 L 1085.9375 352.1875 C 1085.0029 350.73974 1087.0284 348.26929 1088.4375 347.9375 C 1089.2471 347.74711 1089.9438 348.15088 1090.75 347.84375 C 1091.5849 347.52564 1092.2917 347.02148 1093.0312 346.53125 C 1093.2688 346.37378 1093.6807 346.35327 1093.9062 346.1875 C 1095.4796 345.03247 1096.418 344.0769 1097.6562 342.5625 C 1098.1848 341.91626 1100.5952 341.16357 1101.4375 340.78125 C 1101.5995 340.45728 1101.6751 339.84326 1101.5312 339.5 C 1100.0593 338.77905 1098.8005 338.03149 1099.4062 336.28125 C 1100.1574 335.80835 1101.4509 335.56592 1101.9688 334.96875 C 1102.0875 334.6499 1102.1235 334.24146 1102.0625 333.90625 L 1100.6875 332.375 L 1100.5938 331.5625 L 1101 330.9375 C 1102.1836 330.3374 1104.1224 330.34155 1104.5312 328.8125 C 1104.4197 327.08838 1103.3167 325.81006 1103.5312 324.15625 L 1103.9375 323.8125 C 1104.2393 323.76172 1104.7583 323.86206 1105 324.0625 C 1106.2236 324.08838 1108.2856 322.04468 1108.5625 320.84375 L 1108.3438 320.40625 C 1107.8274 320.47825 1107.2695 320.61035 1106.75 320.5 L 1106.3125 320 C 1106.1163 319.46973 1107.1467 317.36665 1107.4688 317.28125 C 1108.1965 317.37158 1109.1113 317.04028 1109.8125 316.875 C 1110.0957 316.80835 1110.815 317.4995 1111.25 317.5625 L 1111.4688 317.4375 C 1112.4826 316.35352 1111.1472 314.18726 1111.9688 313.3125 C 1112.7322 312.59668 1113.8008 314.42555 1115.625 314.40625 L 1115.9688 314 L 1116.2188 311.5 L 1116.5625 311.34375 L 1117.5938 311.4375 C 1119.2695 310.10253 1117.6507 308.3894 1117.9062 307.59375 C 1118.8555 304.64185 1119.4845 304.04028 1117.7812 301.5 C 1116.9313 300.23169 1115.7107 298.65991 1114.0312 298.4375 C 1113.511 298.01343 1114.017 296.84863 1113.7188 296.1875 C 1111.8999 294.77442 1111.5053 295.37915 1111.8438 292.53125 C 1111.8945 292.1062 1112.197 291.73804 1112.0312 291.1875 C 1109.9835 292.08936 1110.5978 291.44849 1108.9062 290.59375 C 1108.4316 289.64527 1106.5815 287.3728 1106.5625 287.3125 C 1106.0649 285.77808 1107.3401 286.58154 1105.5312 283.875 C 1105.3226 283.56201 1105.4113 283.2749 1105.0312 282.96875 C 1103.9411 282.08887 1102.4692 281.97412 1101.4375 280.71875 C 1100.8779 280.03759 1100.932 278.92651 1100.3438 278.21875 C 1100.016 277.99902 1096.0168 277.4873 1095.8438 277.5625 C 1095.1521 278.31278 1094.8208 277.20386 1093.75 278.25 L 1093.375 278.15625 L 1092.7812 277.46875 C 1092.9699 276.93726 1092.7715 276.40259 1092.4375 275.96875 L 1092.75 275.375 L 1092.5625 275.09375 C 1091.5922 275.45972 1090.752 275.50537 1089.75 275.34375 L 1088.5938 275.40625 C 1088.1662 274.70117 1087.8202 273.3574 1086.8438 273.375 C 1086.5751 273.5603 1086.1805 273.7622 1085.8438 273.75 C 1085.6596 273.51782 1085.1885 273.20065 1084.875 273.21875 C 1084.5937 272.40235 1084.5602 272.04785 1083.9062 271.46875 C 1083.9062 271.46875 1083.2284 270.71387 1083.0938 270.5 C 1082.7093 270.4492 1082.2461 270.42358 1081.875 270.5625 L 1081.5 270.4375 C 1081.5 270.4375 1079.7958 268.90918 1079.5938 268.5625 L 1079.5625 268 C 1079.4229 267.85401 1079.1669 267.74165 1078.9688 267.71875 L 1077.9688 267.96875 C 1076.7889 268.64869 1074.0051 272.66968 1073.2188 272.40625 C 1072.2757 271.62085 1072.8984 270.91162 1070.75 269.71875 C 1069.2432 269.45972 1069.1914 267.51978 1068.4375 267.25 L 1067.75 267.25 C 1067.75 267.25 1068.7802 265.74707 1066.375 264.15625 C 1065.7046 263.71314 1064.9829 263.1016 1064.125 263.125 C 1063.9482 262.89697 1063.344 262.26145 1063.0312 262.21875 C 1062.1058 262.62207 1060.1497 260.99414 1059.0938 260.65625 C 1057.4253 261.1018 1053.1826 262.06592 1052.5 259.90625 L 1051.7188 259.75 C 1050.9509 259.14282 1050.8619 258.01562 1050.0938 257.4375 L 1049.125 257.625 C 1047.5528 257.15186 1046.0367 257.37085 1044.5 256.71875 C 1044.0483 256.00171 1043.4014 255.29224 1042.75 254.75 C 1042.3985 254.88403 1041.8296 254.14966 1041.2812 254.28125 L 1040.8125 254.3125 C 1040.5792 253.28101 1035.2234 249.31372 1034.0312 249.6875 L 1032.9375 249.34375 C 1032.2094 248.43188 1031.1283 248.30078 1030.9062 248 C 1030.7323 247.76318 1030.6535 247.35962 1030.3438 247.25 C 1029.5956 246.98584 1028.9067 246.79199 1028.1875 246.40625 C 1027.9346 246.79446 1027.4835 246.9656 1027.0312 246.875 L 1026.2812 246.59375 C 1025.98 245.54199 1025.0546 246.1748 1024.625 244.84375 C 1024.2617 244.36914 1021.5625 242.60425 1021.0625 242.34375 C 1020.7104 242.16089 1019.9922 242.1355 1019.5625 241.9375 C 1019.128 241.45849 1018.8016 240.97583 1018.5938 240.375 C 1018.0089 239.85526 1017.0815 239.96973 1016.375 239.8125 C 1016.1636 239.76538 1013.6377 238.21436 1013.25 238 C 1012.5122 237.59204 1011.4463 234.38135 1010.9375 233.4375 C 1010.4561 232.54517 1009.231 232.94922 1008.5625 232.59375 C 1008.2578 231.47095 1006.755 230.74731 1006.1562 229.65625 L 1005.375 227.4375 C 1005.0108 227.52978 1004.4892 226.77515 1004.25 226.625 C 993.28323 219.74609 982.46533 212.53027 971.65625 205.375 C 970.20996 205.82812 969.00781 206.8562 967.53125 207.25 C 966.09619 207.63257 963.97705 207.39165 962.40625 207.46875 C 960.11182 207.58106 957.80957 207.85075 955.53125 207.84375 C 954.89258 207.84204 954.22998 207.40137 953.71875 207.09375 C 950.56006 205.1919 952.90918 205.88867 951.375 204.25 C 950.89941 203.74218 950.09033 203.66333 949.46875 203.40625 C 947.1084 202.42993 948.82275 201.79736 945.28125 201.9375 C 944.87256 201.95336 944.25146 201.98657 943.875 202.25 C 942.47559 201.84277 940.97412 202.08789 939.9375 200.8125 C 939.66556 200.3872 939.64505 199.43823 939.71875 198.96875 C 939.49072 198.57226 939.17188 198.19092 938.8125 197.90625 C 936.98877 198.00659 935.62354 198.3916 933.8125 197.78125 C 932.92285 197.48144 932.24512 196.5254 931.3125 196.5 C 931.3125 196.5 930.51367 196.12695 930.3125 196 C 930.3125 196 928.76221 196.1106 928.59375 196.1875 C 928.3916 196.16138 927.16125 195.89478 927.15625 195.53125 C 924.74707 195.88962 926.97461 195.96216 924.375 195.53125 C 923.73242 194.27881 922.24414 193.97852 921.25 193.125 C 920.69092 192.64502 919.94775 191.1616 919 191.25 L 918.75 191.34375 C 918.67431 192.24927 917.00928 191.60156 916.4375 191.75 C 915.13623 190.74854 913.59326 187.27905 913.03125 187.0625 C 912.85888 186.74316 912.84424 186.41431 912.71875 186.09375 C 912.32178 185.07886 910.08005 183.88965 910.15625 182.90625 C 910.15625 182.90625 909.5791 181.92407 909.46875 181.53125 C 909.5918 180.48145 910.06885 180.46631 909.28125 179.375 L 909.375 179.125 L 909.90625 178.8125 C 909.41065 177.67065 907.91309 177.41772 907.125 176.09375 C 906.9585 176.03085 906.74072 175.97895 906.5625 176.03125 C 905.72705 175.5918 905.40283 174.09351 904.9375 173.90625 L 904.46875 174.09375 C 904.46875 174.09375 901.96826 174.13555 901.46875 174.09375 C 901.22607 173.81762 899.23779 172.02295 899.09375 171.96875 L 899.15625 171.40625 L 899.125 171.03125 C 898.83544 170.83938 898.47314 170.97632 898.15625 170.875 C 897.94629 170.64599 897.8252 170.31567 897.71875 170.03125 C 895.97022 168.87842 897.52881 168.98633 894.84375 168.46875 C 894.34522 168.3728 894.61084 167.4895 894.1875 167.125 C 893.58545 167.41898 893.06689 167.65552 892.46875 167.21875 L 892.40625 167.40625 L 892.46875 167.75 C 892.40625 167.86401 892 168.09375 892 168.09375 C 891.69532 167.89428 890.42627 167.05325 890.21875 167.03125 C 888.46045 164.59663 886.22656 166.14648 885.84375 164.625 C 885.92675 164.42261 885.9395 164.11694 885.875 163.90625 L 885.28125 163.75 C 884.98193 162.31299 884.84082 162.91284 884.15625 161.875 C 884.15625 161.875 884.9751 160.74316 885.375 160.4375 C 885.10401 160.23124 882.9375 160.1875 882.9375 160.1875 C 882.38378 159.7063 881.78174 159.12891 881.3125 158.5625 C 881.16063 158.23608 881.4126 157.88525 881.3125 157.53125 C 881.3125 157.53125 879.37354 156.25415 879.25 156 C 878.3667 155.65621 876.56641 155.81519 875.65625 156.0625 L 874.65625 155.40625 L 874.4375 154.375 C 874.00781 154.00635 873.56299 153.69336 873.09375 153.375 C 872.67773 153.46435 872.01953 153.19214 871.71875 152.90625 C 871.37988 150.9292 871.51709 149.11597 869.5 148.03125 C 869.28565 148.10132 868.53855 147.71216 868.46875 147.53125 C 867.88379 147.46899 867.26318 147.69995 866.9375 146.96875 C 866.875 146.53247 866.82373 146.09888 866.65625 145.6875 C 865.83057 144.79053 865.4458 145.11279 864.96875 143.625 C 864.96875 143.625 864.43165 142.95044 864.34375 142.71875 C 863.79199 142.31104 862.45703 142.77124 861.5625 141.625 C 861.15479 141.71753 860.31152 141.64795 860 141.3125 L 859.6875 140.53125 C 858.76416 140.16723 858.49316 139.26318 857.78125 138.65625 C 857.55957 138.46753 857.13818 138.52563 856.90625 138.25 C 856.79248 137.84936 856.33789 136.52808 855.9375 136.3125 L 855.90625 134.53125 C 856.54834 133.42432 855.67334 131.28271 854.125 131.78125 C 854.125 131.78125 854.3276 131.02125 854.3125 130.96875 C 854.09082 130.20362 854.07471 128.77466 853.71875 128.15625 C 853.33398 127.48804 852.76221 127.28931 852.46875 126.46875 L 851.9375 126.625 C 851.583 126.42456 851.63867 124.30765 850.96875 124.34375 C 850.76318 124.38476 850.15332 124.5623 849.96875 124.5 C 849.6919 124.07837 849.58643 122.99268 849.34375 122.8125 C 848.96826 122.75366 848.56152 122.55371 848.25 122.34375 C 848.02586 121.97632 847.91699 121.21875 848.09375 120.8125 L 847.90625 120.625 L 847.09375 120.46875 C 846.82617 120.34229 846.5928 119.90771 846.5625 119.625 L 846.78125 118.78125 L 845.625 117 L 845.28125 116.96875 L 844.75 117.46875 L 844.53125 117.4375 C 844.23514 117.19116 844.22217 115.39624 844.53125 115.0625 C 844.40035 114.52686 844.3628 113.92188 844.4375 113.375 L 844.9375 113.25 L 845.125 112.96875 C 844.35205 112.4978 843.60742 111.65552 843.0625 110.9375 L 841.53125 110.125 L 841.375 109.78125 L 840.53125 109.34375 C 840.70069 108.99268 841.36719 108.6882 841.71875 108.625 C 842.52002 107.53125 842.90869 105.40308 841.4375 104.75 C 841.35254 104.04712 841.23389 103.63501 840.59375 103.25 L 840.375 103.21875 C 840.14355 103.36767 839.89795 103.85742 839.78125 104.09375 L 839.5625 104.125 C 839.19141 103.64991 839.68506 102.14844 839.34375 101.75 C 838.91406 101.43608 837.59229 101.39725 837.09375 101.40625 L 836.625 101.03125 L 836.8125 100.53125 L 836.75 100.34375 L 836.125 100.125 z ", + "entrerios":"m 1056.5312,622.25 c -2.7098,-0.005 -5.7304,1.54731 -7.75,2.59375 -0.5833,0.30249 -2.3233,1.5391 -2.9374,1.625 -3.2348,0.45166 -4.1193,1.19653 -7.4376,0.78125 -1.2438,-0.15551 -2.4707,-1.14746 -3.7187,-1.25 -5.8267,-0.47876 -3.8515,2.34961 -8.5,3.75 -0.6992,0.21045 -1.0518,2.14258 -1.6875,2.65625 -0.5616,0.45313 -1.2154,0.59131 -1.8125,0.90625 -0.8643,0.45581 -2.6387,1.88696 -3.4687,2.0625 -3.2402,-0.2395 -4.4663,-2.59375 -9.1563,-2.59375 -1.4219,0 -2.4678,0.9126 -3.8125,1.09375 -1.0293,0.13867 -1.0342,-1.0127 -2.5,-0.84375 -1.0293,0.11817 -2.4746,1.09937 -3.4688,1.5 -1.55158,0.625 -2.28898,0.18625 -3.9062,0.15625 0.0791,0.37061 1.86914,3.64306 2.25,4.125 1.9292,1.39966 1.9701,2.28125 2.0938,4.71875 0.038,0.74976 0.1279,1.89551 -0.4688,2.46875 l 0.5312,5.84375 c 0.053,0.5835 -0.4614,1.16431 -0.4374,1.84375 0.018,0.49292 0.066,0.97754 0,1.46875 0.7871,1.0752 0.2436,2.13696 -1.00005,2.09375 -1.38965,2.12524 -2.42725,4.45557 -3.5625,6.71875 -2.34912,4.68311 -6.64892,10.72949 -9.9375,14.625 -1.40576,1.66602 -2.10254,3.90991 -3.1875,5.78125 -0.90674,1.56372 -2.55957,3.58252 -3.03125,5.28125 L 978.65625,690.5 c 0.19141,-0.12354 0.36279,-0.11572 0.4375,-0.125 -2.15576,2.43042 -2.47949,4.23242 -5.375,5.96875 -1.5625,0.93677 -3.64746,8.11524 -4.9375,10.25 -2.82324,4.67334 -5.51221,7.98487 -10.15625,10.75 -0.31348,0.18701 -0.7085,0.47095 -1.59375,2.5625 -1.29053,3.0498 -4.00586,5.65918 -6.40625,7.5 -3.70215,2.83789 -8.65869,0.78564 -12.65625,2.46875 -1.41309,1.13037 -0.40527,3.40723 -0.53125,4.9375 l -0.125,0.9375 c -0.25391,1.72754 -1.0083,3.28711 -1,5.0625 0.0142,3.19385 -2.30517,4.34912 -2.71875,7.0625 1.30029,1.62158 2.83593,1.25195 2.78125,5.5 -0.0205,1.63037 -0.12012,2.29687 -1.125,3.625 l -0.625,0.84375 c -3.0459,3.93896 3.19433,8.60986 1.34375,12.125 -1.06592,2.02393 -3.39941,0.58374 -3.1875,3.5 0.27246,3.74902 0.43116,4.28613 -1.0625,8.125 -0.9541,2.45264 -2.14307,1.78272 -0.71875,5.15625 0.48486,1.14844 1.08496,2.26856 1.4375,3.4375 0.68604,2.27271 1.62158,5.03198 1.625,7.4375 0.0107,6.47803 0.21337,6.61353 4.03125,12.53125 0.74219,1.15015 2.90039,4.26245 3.1875,5.71875 0.57568,2.91821 1.35645,6.39649 4.40625,7.5 2.30762,0.83472 8.19483,3.2976 9.59375,5.1875 0.44922,0.60669 0.81397,1.27514 1.3125,1.84375 l 0.5625,0.625 c 0.36523,0.41284 0.83436,0.97828 0.8125,1.3125 3.74183,1.8269 6.93311,4.90235 9.8125,8.40625 1.09619,1.3335 5.95068,4.94141 7.25,5.40625 1.44287,0.51636 2.39062,1.94434 3.53125,2.3125 3.68457,1.18823 7.53515,2.92187 9.09375,6.78125 0.27344,0.67749 9.1084,5.3252 10.0625,5.625 0.0928,0.029 0.18457,-0.061 0.28125,-0.0625 1.3833,-1.08887 3.5347,-2.43824 5.375,-2.0625 l 0.3438,0.125 c 2.7046,1.43042 3.7554,5.76074 6.625,5.96875 1.4429,0.10498 2.9014,0.0434 4.3437,0.15625 l 0.2187,-0.21875 0.3438,-0.375 c 2.6402,-2.5918 5.122,-0.58179 4.6875,2.5 -0.1221,0.86279 -0.5693,1.604 0.3437,2.03125 1.9511,-0.65503 2.8555,0.0293 3.7813,1.65625 l 0.1875,0.3125 c 7.6299,0.62256 5.8427,-1.60766 13.2188,3.0625 2.4085,1.52515 3.332,4.16358 6.4687,4.3125 1.7749,0.084 2.8998,0.29444 4.0313,1.8125 l 0.3437,0.4375 c 0.4448,0.58594 5.2348,4.93164 6.125,5.3125 4.8257,0.97021 3.5449,-1.65478 7.3125,-2.1875 l 4.4688,-0.65625 0.1874,-0.0625 c 0.2009,-0.54557 0.3423,-1.10184 0.063,-1.65625 -0.1607,-0.31763 -0.5206,-0.42969 -0.7188,-0.71875 -0.1304,-0.34424 -0.01,-5.15747 -0.375,-6.53125 -0.2881,-1.08569 -1.131,-1.26929 -1.7188,-2.0625 -1.2721,-1.71802 -2.9033,-3.91845 -3.4062,-6 -0.2041,-0.84717 0.015,-1.92602 -0.062,-2.8125 -0.072,-0.80542 -0.197,-1.71997 -0.094,-2.53125 0.2648,-2.08301 1.1186,-4.16187 1.3124,-6.21875 0.08,-0.85693 -0.3566,-1.72266 -0.375,-2.59375 -0.039,-1.90479 0.8677,-3.57959 1.1876,-5.375 0.1538,-0.86523 0.092,-1.85962 0.2812,-2.6875 0.1059,-0.4668 0.5599,-0.78027 0.7812,-1.1875 1.1471,-2.11011 1.7511,-3.53662 3.5313,-5.21875 0.5176,-0.48901 1.1763,-0.73657 1.3437,-1.53125 0.2319,-1.09546 -0.9156,-1.98559 -1,-2.96875 -0.1065,-1.25879 1.0538,-8.54908 0.9063,-8.78125 -0.4932,-0.17236 -0.9075,-0.90283 -0.9375,-1.40625 0.1602,-0.35791 0.5796,-0.78369 0.8125,-1.15625 0.7837,-0.54492 6.8457,0.11132 8.1563,0.21875 l 0.1562,1.34375 c 3.3408,-0.51147 6.7544,-1.29736 8.0625,-4.75 0.8023,-2.1167 0.9312,-4.26611 1.4375,-6.46875 0.2066,-0.89624 -0.1919,-1.03101 -0.375,-1.84375 -0.1558,-0.69214 0.1755,-1.41968 0.2188,-2.09375 0.085,-1.34009 -0.3662,-2.8772 -0.5938,-4.1875 -0.1962,-1.12915 -0.716,-2.16357 -0.9062,-3.34375 -0.4387,-2.71484 -0.3467,-6.51978 -0.5938,-9.53125 -0.095,-1.16162 -0.7837,-1.78711 -1.125,-2.84375 -1.2007,-3.71826 -3.3845,-13.05908 1.0312,-15.46875 0.055,-0.0294 0.1882,-0.0253 0.25,-0.0312 1.6853,-1.18945 1.6515,-1.4458 2.4063,-3.21875 1.8526,-4.35401 -1.4726,-4.60962 -1.1875,-6.59375 -0.8222,-1.3086 -3.4554,-3.2854 -3.0938,-5 0.4528,-2.14185 0.6212,-4.79102 2.3438,-6.34375 0.4214,-1.08496 0.1582,-2.45337 -0.25,-3.5 l -1.75,0 c -0,-0.12964 0.9065,-0.63232 1.0938,-0.90625 0.5988,-1.76294 -1.2959,-4.59717 -2.5313,-5.6875 -1.3266,-3.83545 2.5093,-5.76489 5.875,-5.21875 2.7993,-1.12573 5.9194,-13.19629 7.125,-16.71875 0.053,-0.15503 -0.2325,-0.8562 -0.3125,-1 -0.5362,-0.9685 -1.0918,-2.3186 -1.75,-3.1875 -1.1621,-1.53491 -3.8008,-0.99927 -4.1875,-3.28125 0.2461,-2.45459 3.2012,-3.65649 5.125,-4.34375 1.6983,-0.60693 0.514,-2.69141 0.5,-3.15625 -0.026,-0.86132 0.3579,-1.86084 0.5625,-2.6875 0.2363,-0.95605 2.2153,-2.05225 2.5625,-3.15625 0.7061,-2.24414 1.3525,-4.42627 1.875,-6.71875 0.3779,-1.6543 -0.8741,-2.07422 0.1875,-4.03125 l 2.0312,-3.75 c 1.7415,-3.2102 -3.2812,-7.81494 -2.4687,-9.9375 0.4971,-0.58275 1.5949,-0.6687 2.2813,-0.5 0.1769,0.2793 0.5722,0.39014 0.8437,0.53125 1.8208,0.94824 2.0915,-0.84131 2.5937,-2 1.6866,-3.89331 0.272,-3.08789 0.4688,-4.40625 0.1094,-0.73145 0.574,-1.61792 0.5,-2.375 -0.064,-0.64782 -0.237,-1.31432 -0.375,-1.96875 -0.6175,-0.45381 -1.3474,-1.09218 -1.625,-1.3125 -3.7236,-2.9541 -8.4158,-7.26904 -10.6562,-11.4375 -0.6694,-1.24561 -2.2693,-4.47461 -2.2813,-5.71875 -0.042,-4.39575 -0.7954,-4.01465 -4,-6.5625 -1.0317,-0.8208 -4.9619,-4.75195 -5.3125,-5.90625 -0.6094,-3.0669 -1.2082,-4.02661 -4.2188,-5.09375 -1.5031,-0.53321 -3.2446,-1.00049 -4.8437,-1.15625 l -0.25,-0.21875 -2.2813,-0.28125 c -1.0475,-0.12207 -1.6829,-0.95117 -2.5624,-1.25 -1.177,-0.39942 -2.7718,0.39111 -4.0626,0.1875 -1.3497,-0.21337 -1.8566,-1.16162 -2.9374,-1.75 -0.7833,-0.42664 -1.6593,-0.59225 -2.5626,-0.59375 z", + "chaco":"M 836.3125 213.375 C 836.53011 219.2653 836.88159 226.24247 836.5625 231.90625 C 827.45996 244.05493 785.71094 301.08251 773.71875 317.25 C 786.54931 317.3352 799.38916 317.51975 812.21875 317.53125 C 831.76075 317.54834 872.34619 317.39355 873.09375 317.40625 C 873.09375 317.40625 873.51125 367.15161 873.46875 373.21875 C 873.24414 405.22022 873.4004 437.24536 873.5 469.25 C 873.5073 471.57251 873.4951 473.92918 873.4375 476.25 C 899.36328 476.42622 1021.0675 476.63379 1043.2812 476.15625 C 1043.2812 476.14648 1043.2813 476.13473 1043.2812 476.125 C 1043.2448 474.9629 1044.2109 473.95166 1043.875 472.71875 L 1043.5938 472.21875 C 1042.8876 469.74804 1042.8123 470.31128 1044.2188 468.59375 C 1045.4896 467.04126 1045.7431 458.3269 1045.5625 456.25 C 1045.4082 454.47998 1044.8274 452.80273 1044.6562 451.0625 C 1044.363 448.07568 1044.7866 446.87891 1043.75 444 C 1043.457 443.18506 1043.41 442.49951 1043.2188 441.71875 C 1043.3118 441.39746 1043.5385 441.06934 1043.9688 440.65625 C 1046.2117 438.49926 1048.7661 435.51978 1051.625 434.4375 C 1054.9922 433.16357 1055.4156 432.43848 1059.1875 429.8125 L 1059.375 428.59375 C 1058.241 428.78249 1057.0208 428.83803 1056.7188 428.34375 C 1056.2396 427.43603 1058.6403 424.66919 1056.8438 422.96875 C 1056.4127 422.56104 1055.5472 422.14014 1055.0312 421.8125 C 1054.2522 421.31689 1053.645 421.31519 1053.375 420.1875 C 1054.3979 413.92554 1059.1391 416.94702 1060 415.21875 C 1059.9013 414.61694 1059.5557 411.50928 1060.1562 411.09375 C 1060.6541 411.07375 1061.2378 410.97437 1061.7188 411.15625 C 1061.946 411.32763 1062.1514 412.05176 1062.2188 412.3125 L 1062.4375 412.5 L 1062.6562 412.40625 C 1063.3958 411.28344 1062.1392 409.41211 1062.5625 408.6875 C 1062.7773 408.43384 1063.6782 408.0593 1064 408.125 L 1064.2812 407.9375 L 1064.4375 407.5625 C 1064.3438 406.50855 1063.1104 404.14136 1063.6875 403.34375 L 1064 403.125 C 1066.3717 403.13211 1067.9898 402.42849 1069.4062 400.9375 C 1068.8236 400.43457 1068.6677 399.69214 1068.7188 399.15625 C 1067.1565 399.78174 1066.3119 399.031 1064.5312 398.03125 C 1063.3416 397.36279 1063.4434 396.01807 1063.0625 394.90625 C 1061.523 393.34497 1059.4763 393.28271 1058.8438 390.84375 C 1057.6617 386.28271 1053.4603 387.36084 1051.1562 382.8125 C 1050.9923 382.48804 1050.7523 382.21093 1050.6562 382.09375 L 1050.1875 382.21875 C 1046.9419 383.01245 1046.4021 379.40552 1044.7812 377.71875 C 1041.6452 376.14917 1040.8305 376.5083 1038.5625 373.15625 C 1034.0991 366.55859 1034.5505 368.54199 1027.9688 365.6875 C 1026.7429 365.15601 1024.1408 363.37182 1023.7812 361.9375 C 1023.3225 362.3335 1022.9135 362.77735 1022.5 363.21875 C 1021.9922 363.75073 1021.4546 364.04297 1020.7188 364.1875 L 1020.2812 364.25 C 1017.9253 364.7041 1017.5947 366.79077 1014.6875 364.4375 C 1014.6045 364.5083 1014.5303 364.59497 1014.4375 364.65625 L 1014.0938 364.8125 C 1012.1144 365.44751 1008.1617 362.29249 1009.125 359.5 C 1007.7408 358.21338 1008.2656 355.32935 1007.7812 353.71875 C 1005.9892 351.94824 1005.0879 353.64579 1002.875 352.625 L 1002.4688 352.4375 C 1002.3836 352.3931 1002.2119 352.31933 1002.125 352.28125 C 1000.3745 351.88696 999.35791 353.4441 997.96875 351.125 L 997.65625 351.125 C 997.41797 351.1133 997.14697 351.07572 996.8125 350.96875 L 996.5 350.84375 C 994.20361 351.96851 992.04932 350.00805 992.59375 347.65625 L 992.75 347.0625 C 993.12158 345.66479 992.39258 344.23022 992.53125 342.71875 C 990.51758 342.70015 990.4292 340.5271 989.40625 339.4375 L 989.125 339.21875 C 988.00488 338.37671 987.95948 337.23096 987.3125 336.09375 C 986.00195 335.04468 985.26514 333.60791 983.59375 333.03125 L 983 332.8125 C 981.12646 332.14111 980.82471 330.80664 981.375 328.96875 C 980.56396 327.21289 976.73291 328.02685 975.75 324.59375 L 975.65625 324.25 C 974.02148 323.71094 972.28076 324.13282 971.28125 322.15625 L 971.1875 321.96875 C 971.05176 321.56006 971.06982 321.14917 971.125 320.8125 C 970.89453 320.8085 970.66943 320.8135 970.46875 320.8125 C 969.3042 320.8085 968.96533 320.47315 968.40625 319.59375 C 967.44971 319.4314 966.71191 319.45825 965.90625 318.84375 C 965.26709 319.37964 964.33985 319.53784 963.46875 319.21875 L 963.03125 318.96875 C 961.68164 317.79517 962.24317 316.74097 961.96875 315.34375 C 959.98193 313.74829 960.17578 313.61426 959.75 311.09375 C 959.08203 310.40356 958.78125 310.0437 958.78125 309.03125 C 958.78125 308.37427 959.13476 308.07373 959.53125 307.8125 C 959.2124 307.52637 958.96338 307.2251 958.875 306.875 C 957.81445 306.8621 956.77588 307.20069 955.78125 305.71875 L 955.625 305.46875 C 955.38086 304.82959 955.43262 304.13672 955.46875 303.46875 L 954.78125 303.25 C 953.81494 302.92334 952.75049 302.42774 952.40625 301.375 L 952.34375 301.125 C 952.27445 300.59155 952.34073 299.958 952.75 299.5625 C 952.38818 299.00464 952.14551 298.35717 951.8125 297.78125 C 950.3457 297.42456 947.81836 294.92627 947.28125 293.78125 L 946.875 292.875 C 946.7813 292.67603 946.67041 292.48315 946.53125 292.3125 L 946.25 291.96875 C 945.229 290.78809 944.38233 287.39429 943.15625 287.09375 C 942.46387 287.21851 942.17578 287.64746 941.3125 287.53125 L 940.84375 287.375 C 940.27686 287.0498 939.87207 286.53467 939.40625 286.09375 C 937.52295 285.08496 935.38281 285.78174 934.21875 283.4375 L 934.03125 283.09375 C 932.61084 282.31274 931.01172 281.61352 929.9375 280.375 C 928.71533 278.96631 926.66748 279.63305 925.21875 277.65625 C 922.95557 274.56738 924.13184 276.10132 921.15625 274.40625 C 920.49805 274.03149 920.05372 273.40747 919.8125 273.03125 L 919.46875 272.4375 C 919.0498 271.79443 915.25342 269.15088 914.34375 268.3125 C 913.80518 267.81592 913.31201 267.35327 912.8125 266.90625 C 911.14209 268.64648 905.93799 263.9143 908.1875 260.71875 C 906.78369 259.11914 904.9751 257.02807 905.21875 254.78125 C 903.32324 254.27222 903.5625 250.73682 900.625 250 C 897.52832 249.22339 895.77441 250.2898 892.71875 248.5 C 892.53076 248.39014 892.42871 248.31446 892.21875 248.25 C 889.37109 248.72803 888.79541 249.12866 886.09375 246.0625 C 884.83643 244.63574 883.71094 243.32837 882.34375 242 C 881.05566 240.74878 880.72852 240.23316 880.53125 238.53125 C 879.5 239.12134 878.64941 239.12793 877.9375 238.65625 C 877.31104 239.34155 876.43262 239.50782 875.65625 238.4375 C 874.53174 236.88794 873.60546 234.75366 872.9375 232.9375 L 872.625 232.09375 C 872.5786 231.97534 872.5903 231.94702 872.5625 231.90625 C 871.4292 231.24731 870.97851 231.06275 870.59375 230.78125 C 870.19385 230.48828 869.87061 230.09302 868.90625 229 C 868.81055 228.89111 868.71337 228.79834 868.625 228.71875 L 868.34375 228.78125 C 868.12061 228.84005 867.90186 228.88648 867.6875 228.90625 L 867.4375 228.90625 C 865.81738 228.76025 864.42822 228.08667 862.8125 227.90625 C 860.64355 227.66382 860.06835 225.61059 858.46875 224.8125 C 856.49316 223.8269 855.91114 224.12378 855.15625 221.78125 C 854.2583 218.99243 850.08643 219.99024 847.1875 218.9375 C 845.54541 218.34082 844.19287 217.85449 842.8125 216.8125 C 841.55123 215.86071 838.1711 215.04746 836.3125 213.375 z ", + "corrientes":"M 1080.4375 425.125 C 1076.3179 425.06421 1074.0781 426.50928 1070.3125 427.25 C 1069.4365 427.42212 1068.6795 426.97949 1067.8438 426.84375 C 1066.846 426.68165 1066.7095 427.02222 1065.875 427.21875 C 1064.1714 427.61938 1064.6543 425.92505 1061.4375 428.03125 C 1061.1705 428.2059 1060.3017 428.43952 1059.375 428.59375 L 1059.1875 429.8125 C 1055.4156 432.43848 1054.9922 433.16357 1051.625 434.4375 C 1048.7661 435.51978 1046.2118 438.49926 1043.9688 440.65625 C 1043.5385 441.06934 1043.3119 441.39746 1043.2188 441.71875 C 1043.4101 442.49951 1043.457 443.18506 1043.75 444 C 1044.7866 446.87891 1044.3629 448.07568 1044.6562 451.0625 C 1044.8273 452.80273 1045.4082 454.47998 1045.5625 456.25 C 1045.7431 458.3269 1045.4896 467.04126 1044.2188 468.59375 C 1042.8124 470.31128 1042.8877 469.74804 1043.5938 472.21875 L 1043.875 472.71875 C 1044.2109 473.95166 1043.2447 474.9629 1043.2812 476.125 C 1043.3102 479.71092 1040.8819 486.43409 1036.4375 486.15625 C 1033.7959 485.9917 1032.0927 485.52857 1030.7188 488.5625 C 1029.744 490.71289 1031.143 499.24536 1031.3438 502 C 1031.6664 506.43506 1029.9062 510.38428 1029.9062 514.71875 C 1029.9062 519.00903 1030.0332 519.57959 1028.4688 523.84375 C 1026.979 527.9043 1027.0962 532.14014 1025.625 536.15625 C 1023.9771 540.65625 1023.9492 537.66894 1024.0625 542.75 C 1024.1585 547.06885 1019.4117 549.95166 1016.7812 552.875 C 1010.9658 559.33862 1013.832 557.64404 1006.9062 560.125 C 1006.3399 560.32788 1005.9403 560.60889 1005.7812 560.75 C 1004.6459 562.38184 1004.7885 565.2583 1003.3438 567.53125 C 1000.2681 572.37061 1000.1665 571.22486 1000.1875 576.25 C 1000.2185 583.5354 999.88427 589.61035 997.0625 596.59375 C 993.33594 605.81592 998.97797 604.71704 1001.2188 611.4375 C 1001.2838 611.63013 1001.2705 611.93653 1001.1875 612.21875 C 1001.5879 614.86475 999.46093 615.86182 998.90625 618.15625 C 998.4292 620.1311 997.51514 624.84888 997.46875 626.84375 C 997.43065 628.45874 997.14453 629.49219 995.90625 630.5625 L 995.5 630.90625 C 995.22266 631.13354 995.04981 631.29834 994.9375 631.4375 L 994.875 631.46875 L 995.25 632.3125 C 995.55762 633.01123 996.30515 634.4663 996.375 634.6875 C 997.99222 634.7175 998.72952 635.15625 1000.2812 634.53125 C 1001.2754 634.13062 1002.7207 633.14942 1003.75 633.03125 C 1005.2158 632.8623 1005.2207 634.01367 1006.25 633.875 C 1007.5947 633.69385 1008.6406 632.78125 1010.0625 632.78125 C 1014.7525 632.78125 1015.9786 635.1355 1019.2188 635.375 C 1020.0488 635.19946 1021.8232 633.76831 1022.6875 633.3125 C 1023.2846 632.99756 1023.9384 632.85938 1024.5 632.40625 C 1025.1357 631.89258 1025.4883 629.96045 1026.1875 629.75 C 1030.836 628.34961 1028.8608 625.52124 1034.6875 626 C 1035.9355 626.10254 1037.1622 627.09449 1038.4062 627.25 C 1041.7243 627.66528 1042.6092 626.92041 1045.8438 626.46875 C 1046.4579 626.38285 1048.1979 625.14624 1048.7812 624.84375 C 1051.4738 623.44849 1055.9609 621.13721 1059.0938 622.84375 C 1060.1748 623.43213 1060.6813 624.38038 1062.0312 624.59375 C 1063.3219 624.79736 1064.917 624.00683 1066.0938 624.40625 C 1066.9735 624.70508 1067.6085 625.53418 1068.6562 625.65625 L 1070.9375 625.9375 L 1071.1875 626.15625 C 1072.7866 626.31201 1074.5279 626.77929 1076.0312 627.3125 C 1079.0416 628.37964 1079.6406 629.33935 1080.25 632.40625 C 1080.6006 633.56055 1084.5308 637.4917 1085.5625 638.3125 C 1088.7671 640.86035 1089.5205 640.47925 1089.5625 644.875 C 1089.5745 646.11914 1091.1744 649.34814 1091.8438 650.59375 C 1094.0844 654.76221 1098.7764 659.07715 1102.5 662.03125 C 1102.7776 662.25157 1103.5075 662.88994 1104.125 663.34375 C 1104.0316 662.90068 1103.9549 662.46827 1103.9375 662.03125 C 1103.9045 661.21386 1104.0205 660.33936 1103.9375 659.53125 C 1103.8199 658.3789 1102.6608 657.33716 1101.9688 656.5 C 1101.1735 655.53906 1102.0357 654.10327 1101.375 653.53125 C 1100.9561 653.16919 1099.091 651.81909 1099.125 651.25 C 1099.689 649.95752 1099.4937 648.39087 1099.75 647.03125 C 1099.9614 645.90844 1102.0144 643.67676 1102.8438 643.09375 C 1103.4382 642.67529 1104.4613 642.3999 1104.9688 641.90625 C 1106.3724 640.54101 1106.4436 640.37598 1108.2812 639.21875 C 1108.9246 638.81372 1110.1701 637.7017 1110.8438 637.625 C 1111.6482 635.77808 1113.4953 637.83936 1114.8438 632.09375 C 1115.0422 631.24609 1115.3676 629.63232 1115.75 628.90625 C 1115.9599 627.73584 1112.3242 625.68555 1113.6875 624.25 L 1114.125 624.03125 L 1115.0938 624.1875 C 1117.2621 624.36182 1120.049 622.66504 1121.7812 621.75 C 1124.3435 620.39672 1124.3114 618.98413 1125.4688 617.0625 C 1125.9032 616.34106 1126.6924 615.42578 1127.25 614.78125 C 1128.4023 613.44995 1130.3144 613.35913 1131.375 612.125 C 1134.3115 607.23974 1130.4873 604.74756 1134.875 599.96875 C 1140.103 594.2749 1139.0576 598.05518 1142.125 596.84375 C 1145.2158 595.62353 1145.9312 594.57227 1148.25 592.125 C 1149.5103 590.79541 1150.8857 587.34888 1153.25 587.5 C 1153.7225 587.0747 1153.2812 585.90991 1153.2812 585.34375 C 1154.2259 583.53052 1156.1913 582.24902 1157.4688 580.65625 C 1157.851 580.17969 1158.0064 579.302 1158.625 579 C 1158.8721 578.87936 1159.1636 578.79855 1159.4375 578.78125 C 1160.1446 578.00537 1161.3506 577.79785 1162.0625 577 C 1162.8716 576.09253 1163.1616 575.04321 1164.375 573.6875 C 1164.756 572.77564 1164.3293 571.68262 1164.8438 570.78125 C 1166.034 568.69306 1167.8413 569.86084 1168.8125 568.6875 C 1169.481 567.87964 1170.2027 566.83179 1170.75 565.9375 C 1172.4776 563.11816 1171.6785 559.84448 1173.1562 556.90625 C 1173.5403 556.19141 1174.0035 555.65234 1174.375 555.03125 C 1174.7447 554.41357 1174.8587 553.70166 1175.2188 553.09375 C 1175.2981 552.95972 1175.4976 552.57129 1175.625 552.46875 C 1175.8946 552.25122 1176.3028 552.16431 1176.625 552.0625 C 1177.3355 551.83886 1178.0945 551.81567 1178.7812 551.59375 C 1179.6662 551.30737 1180.412 550.53857 1181.3438 550.25 C 1182.5419 549.8789 1183.8089 550.16602 1184.9688 549.5625 C 1185.7757 549.14307 1186.875 546.60254 1186.875 545.71875 C 1186.875 545.21143 1186.5142 544.64209 1186.25 544.21875 C 1186.1631 542.9209 1186.5683 542.10132 1187.625 541.3125 C 1189.1543 540.16992 1190.9988 540.16455 1192.0938 538.40625 C 1194.3552 534.77246 1190.062 530.15088 1196.75 528.96875 C 1197.5898 528.82015 1198.4366 528.9385 1199.2812 528.875 C 1200.9694 527.76319 1201.0806 525.45044 1202.375 524 C 1203.7696 522.43677 1206.3933 519.55957 1208.1562 518.5625 C 1208.6907 518.26049 1209.5552 518.02539 1209.875 517.4375 C 1210.438 516.40063 1209.8335 513.9292 1209.1875 513 C 1209.0957 510.01172 1211.7095 510.17969 1213.875 509.75 C 1214.5552 509.61523 1215.1138 509.0928 1215.75 509 C 1216.2281 508.93017 1216.8316 509.04517 1217.25 508.75 C 1218.4367 507.62597 1214.4016 503.57617 1218.4062 500.4375 C 1219.1067 500.2002 1225.6533 501.55859 1226.375 502.28125 C 1227.0595 502.9668 1226.9618 504.85156 1228.0938 505.25 C 1228.2655 505.26172 1228.4936 505.2085 1228.625 505.09375 C 1229.1538 504.15186 1229.2139 503.00146 1229.5 501.96875 C 1230.6094 497.9646 1230.468 498.63574 1226.9688 496.4375 C 1226.7963 496.3291 1224.595 494.8919 1224.4688 494.875 C 1224.0077 494.4502 1223.8934 493.82861 1223.9062 493.21875 C 1224.3929 491.90747 1227.6284 491.71265 1228.75 491.03125 C 1229.2124 490.75048 1232.957 487.53857 1233.0938 487.1875 L 1233.0938 486.3125 C 1233.0578 486.22228 1233.05 486.12867 1233.0625 486.03125 C 1232.0488 485.33542 1231.2006 484.36625 1230.2188 483.6875 C 1227.8216 482.03101 1225.6464 481.22925 1224.5 478.21875 C 1224.1391 477.27295 1224.5969 475.98901 1224.1562 475.0625 C 1223.1497 472.94287 1220.5784 472.1665 1220.0938 469.90625 C 1219.8035 468.55762 1220.0222 467.10425 1219.9062 465.75 L 1219.5625 461.71875 C 1219.2622 458.20313 1216.1338 452.91211 1214.875 449.34375 C 1214.5493 448.42017 1213.519 447.53443 1213 446.625 C 1210.0571 441.46484 1208.0112 438.16821 1210.8125 432.25 L 1211.5312 431.71875 C 1209.9213 430.88674 1208.3153 429.22411 1207.125 428.96875 C 1205.9976 428.72681 1203.3054 429.06104 1202.1562 429.53125 C 1199.8947 430.45752 1199.1393 433.23535 1197.1562 434.40625 C 1196.1272 435.01441 1194.767 435.0686 1193.9375 436.03125 C 1193.0273 437.08765 1194.2903 439.56274 1193.6562 441.1875 C 1193.2155 442.31762 1191.3686 443.40039 1190.5625 444.28125 C 1188.6914 446.32593 1190.5852 448.79272 1187.9688 449.53125 C 1184.903 450.39624 1185.0944 448.2771 1183.5312 447.8125 C 1182.8849 447.8394 1183.0005 448.24268 1182.2188 447.84375 C 1181.0834 447.26416 1179.9993 439.0708 1175.2812 438.71875 C 1174.6632 438.67261 1172.7065 439.50635 1171.9375 439.65625 C 1171.0273 439.83304 1169.8628 439.25317 1169.0625 439.65625 C 1167.2549 440.56714 1168.6091 442.47559 1168.1562 443.75 C 1166.6521 447.9856 1166.8359 446.24365 1163.75 447.8125 C 1162.6787 448.35791 1161.7725 449.3035 1160.4375 449.3125 C 1157.0406 449.33545 1155.9152 444.75781 1151.5938 442.96875 L 1151.5938 439.875 C 1144.0068 444.64551 1137.2629 434.73755 1128.0938 436.75 C 1125.8016 437.25316 1120.9334 439.2439 1118.7812 437.1875 C 1118.4787 436.89795 1118.2704 436.47852 1117.9688 436.1875 C 1117.2934 435.53662 1114.5729 434.00537 1113.6562 433.34375 C 1112.5393 432.53711 1111.2391 431.76099 1110.0938 430.9375 C 1107.9434 429.39136 1105.3609 431.99146 1103.75 430.59375 C 1098.5449 426.07788 1100.1532 429.16504 1093.3438 426.53125 C 1091.8456 425.95211 1090.3594 426.32642 1088.8125 426.53125 C 1087.8901 426.65332 1083.8521 426.87939 1083.0625 426.40625 C 1082.0967 425.8274 1081.6445 425.1426 1080.4375 425.125 z ", + "misiones":"M 1322.0625 306.71875 C 1320.9929 306.81584 1319.7353 308.93784 1319.2188 309.4375 C 1318.389 310.24048 1316.667 309.15454 1316.1875 310.125 C 1315.5586 311.39697 1314.7879 312.63354 1314.5938 313.21875 C 1313.4725 314.5 1312.6335 310.8396 1311.7188 310.65625 C 1311.1463 310.90332 1309.8037 311.23193 1309.375 311.65625 C 1308.8921 312.13379 1308.656 313.94067 1307.8438 314.09375 C 1307.2523 314.20507 1306.6518 313.0542 1305.875 313.71875 C 1305.5874 313.96533 1305.8854 315.87842 1304.9062 317 C 1304.6418 317.01953 1303.9603 319.66162 1303.4688 320.34375 C 1302.0578 320.56226 1302.562 318.37256 1302 317.71875 C 1301.4785 317.11206 1300.1456 315.20898 1299.2812 315 C 1298.9259 314.96118 1298.1487 315.5061 1297.9062 315.71875 L 1297.5 315.6875 C 1295.6836 314.64135 1298.6354 312.37939 1293.5312 312.875 C 1293.0271 314.97803 1293.7966 315.44946 1293.9688 317.3125 C 1293.9805 317.44458 1293.9915 317.60205 1293.9062 317.71875 C 1292.9011 318.781 1290.9365 316.74097 1290 318.25 C 1289.1074 319.68799 1291.1138 321.46802 1291.3125 322.8125 C 1291.5445 324.38281 1291.2819 324.39966 1292.0312 326 C 1292.5035 327.00781 1293.7422 328.0022 1293.875 329.09375 C 1294.0357 330.41724 1293.1264 331.74902 1292.625 332.90625 C 1291.8012 334.80542 1291.648 335.30469 1292.5625 337.21875 C 1294.5005 341.27368 1286.7479 336.28857 1288.9688 342.3125 C 1289.4353 343.57861 1290.8125 345.12158 1290.8125 346.5 C 1290.8125 349.1665 1288.4149 349.29175 1288.9688 351.375 C 1289.5564 353.58594 1292.2906 353.58643 1292.125 355.15625 C 1292.0039 356.31079 1289.0581 357.10693 1288.5625 358.6875 C 1288.2417 359.71192 1290.7417 360.53516 1290.375 361.96875 C 1290.3061 362.23804 1287.919 365.47925 1287.5625 366.53125 C 1287.3194 367.2478 1287.5445 368.17114 1287.5625 368.90625 C 1287.6294 371.57422 1285.731 372.51953 1284.0625 374.21875 C 1282.7222 375.04249 1280.6854 377.02563 1280.9688 378.8125 C 1281.0276 379.18824 1282.1749 380.37866 1282.2812 381.40625 C 1282.403 382.57715 1281.2841 386.57565 1279.875 386.65625 C 1278.8398 386.71557 1277.1757 383.92114 1273.9375 386.84375 C 1271.6967 388.86596 1274.5654 395.34351 1269.6875 394.34375 C 1268.6787 394.25074 1267.4765 394.26392 1266.5625 394.75 C 1265.5947 395.26464 1265.3765 396.4126 1264.625 397.15625 C 1263.7935 397.97876 1262.4481 398.35107 1261.7188 399.21875 C 1261.348 399.65869 1260.9035 400.55371 1260.8438 401.125 C 1260.6717 402.75708 1262.1167 404.24634 1261.875 404.6875 C 1261.4746 405.41797 1257.8884 406.66602 1257.0938 406.28125 C 1256.8109 406.14477 1256.2314 405.30176 1255.9375 405 C 1254.2212 403.23804 1253.0433 405.53955 1251.8438 405.875 C 1249.1155 406.63867 1248.6524 405.3772 1246.25 407.1875 C 1245.1758 407.99756 1244.4863 408.55347 1243.6875 409.71875 C 1241.9531 412.25 1243.2615 413.25513 1242.7188 415.21875 C 1241.2107 416.79346 1239.271 414.99683 1237.75 415.65625 C 1235.4326 416.66114 1236.7507 418.7793 1236.2812 419.34375 C 1235.3824 420.42529 1234.2991 418.62939 1233.3438 420.21875 C 1231.6618 423.01465 1235.7193 423.59204 1235.4375 425.40625 C 1235.2691 426.49219 1234.1805 427.37842 1234.1562 428.0625 C 1234.1301 428.79687 1234.7323 429.51709 1234.6562 430.53125 C 1234.5343 432.15942 1230.2304 433.70972 1228.875 434.9375 C 1227.7612 435.94653 1227.2812 438.40063 1225.9062 438.6875 C 1225.3136 438.81152 1223.7749 438.59326 1223.1875 438.46875 C 1217.6201 437.29126 1219.4756 433.45117 1216.9375 431.96875 C 1215.643 431.21317 1214.1354 432.63257 1212.2812 432.03125 C 1212.0298 431.9497 1211.7837 431.84923 1211.5312 431.71875 L 1210.8125 432.25 C 1208.0112 438.16821 1210.0571 441.46484 1213 446.625 C 1213.519 447.53443 1214.5493 448.42017 1214.875 449.34375 C 1216.1338 452.91211 1219.2622 458.20313 1219.5625 461.71875 L 1219.9062 465.75 C 1220.022 467.10425 1219.8037 468.55762 1220.0938 469.90625 C 1220.5785 472.1665 1223.1495 472.94287 1224.1562 475.0625 C 1224.5967 475.98901 1224.1391 477.27295 1224.5 478.21875 C 1225.6464 481.22925 1227.8218 482.03101 1230.2188 483.6875 C 1231.2008 484.36625 1232.0488 485.33542 1233.0625 486.03125 C 1233.0639 486.0203 1233.06 486.01141 1233.0625 486 C 1233.3008 484.9248 1233.8805 484.14722 1235.1562 484.34375 C 1236.1797 484.92774 1235.7659 486.19702 1236.1562 487.09375 C 1236.3546 487.23461 1236.7199 487.42485 1236.9688 487.34375 C 1238.1086 486.38525 1237.6387 484.86987 1238.5 484.34375 C 1238.8066 484.15625 1239.1635 484.2207 1239.4688 484.03125 C 1240.0072 483.33545 1239.8928 482.32373 1240.4062 481.71875 L 1240.7188 481.59375 C 1241.5539 481.62012 1242.0613 482.82593 1242.8438 482.96875 C 1243.6131 483.10913 1244.281 480.95874 1246.0312 479.875 C 1246.9051 479.33422 1247.6164 478.8833 1247.9062 477.84375 C 1247.6466 477.03247 1247.2773 476.44238 1246.875 475.71875 C 1247.208 474.56714 1248.8965 474.76416 1249.5 474.0625 C 1249.8916 473.60742 1249.7232 471.89258 1250.625 471.3125 C 1251.4751 470.76513 1253.3901 471.08374 1254.3125 470.625 C 1255.9667 469.80298 1256.7158 466.42334 1259.375 466.84375 C 1260.5966 467.7727 1260.1926 468.52051 1261.7812 469.09375 L 1262.0938 469 C 1262.5868 468.62403 1262.3075 467.40845 1262.2812 466.875 C 1263.3327 464.09326 1269.0842 468.36157 1268.1562 464.90625 C 1267.3073 463.81641 1265.1164 462.8728 1264.8438 461.84375 C 1265.1628 461.30957 1266.2475 460.53882 1266.9375 460.78125 C 1267.2753 461.15039 1268.1843 462.28271 1268.4688 462.40625 C 1269.3958 462.81054 1269.999 461.30371 1270.6875 461.09375 C 1271.0557 460.98145 1272.2768 461.30245 1272.8125 461.28125 C 1273.4336 460.97265 1273.3322 460.26709 1273.6562 459.78125 C 1274.007 459.25488 1274.6391 458.99829 1275 458.375 C 1275.9301 456.76539 1274.9558 452.87671 1275.5938 451.8125 C 1276.2317 450.74854 1277.9417 451.44434 1278.7188 450.625 C 1279.7639 449.52295 1279.7891 445.29077 1281 444.6875 L 1281.25 444.6875 C 1282.3398 445.3479 1281.652 446.21924 1282.2812 447.15625 C 1282.2169 447.26318 1282.3996 448.15695 1282.9688 448.21875 C 1283.9734 447.99536 1284.2686 446.89795 1285.2188 446.65625 C 1286.1087 446.43017 1287.8042 448.01953 1289.125 447.0625 C 1289.5166 446.41626 1288.5901 444.28442 1288.7188 443.1875 L 1288.9062 443.03125 C 1290.0437 442.5227 1290.2649 445.25757 1291.0312 445.625 C 1293.3732 446.16309 1293.3236 439.94067 1294.7188 439.40625 C 1296.1131 438.87183 1296.7314 442.40918 1297.625 442.71875 C 1298.3027 442.95361 1298.9608 441.34644 1299.4688 441.125 C 1300.368 440.73312 1301.3364 441.13477 1302.1875 440.65625 C 1302.7905 439.75708 1301.6952 438.44409 1300.9688 438.0625 L 1300.8438 437.625 C 1301.1626 437.06617 1302.1388 437.30371 1302.6562 437.15625 C 1303.2721 436.98047 1303.6494 436.44849 1304.25 436.28125 C 1305.8272 435.8418 1306.406 439.07373 1307.2188 439.78125 C 1307.6062 439.89063 1307.9253 440.11185 1308.3438 440.09375 C 1309.8113 439.69604 1307.7853 436.99072 1308.5312 435.96875 L 1308.7188 435.84375 C 1309.6996 435.56909 1310.7524 437.55005 1311.125 438.21875 C 1311.3496 438.38843 1311.7622 438.66645 1312.0625 438.65625 C 1314.0277 438.30029 1311.6535 435.9917 1314.0312 435.125 C 1314.3111 435.02295 1315.023 434.8237 1315.3125 434.875 C 1316.5117 434.27588 1316.0403 432.26709 1316.3438 431.125 C 1316.5388 430.38916 1317.1135 429.61157 1317.4062 428.875 C 1317.6482 428.26685 1317.541 425.39209 1319.0625 425.875 C 1319.9912 426.48511 1318.906 428.15454 1319.7188 428.625 C 1320.2058 428.90695 1320.9153 428.87745 1321.4688 428.96875 C 1325.0325 429.55469 1324.3955 427.0874 1325.625 426.1875 C 1326.3145 425.68238 1327.3288 425.83276 1327.6562 424.84375 C 1327.8983 424.11426 1327.8579 423.21338 1328 422.4375 C 1329.27 421.08959 1330.8789 422.49121 1331.3125 421.84375 C 1331.6113 420.99096 1330.7732 418.82525 1332.4062 418.90625 C 1333.1222 419.14893 1333.6037 420.71021 1334.5312 420.3125 C 1335.6481 419.83326 1335.1523 416.41431 1337.125 417.5 C 1337.6138 417.91406 1337.1087 418.91626 1338.7812 420 C 1338.7812 420 1340.656 419.65601 1340.4688 418.59375 C 1340.281 417.53101 1339.9688 417.28125 1339.8438 416.90625 C 1339.7188 416.53125 1338.906 415.59399 1340.2188 415.90625 C 1341.531 416.21875 1342.344 415.53125 1341.7812 414.53125 C 1341.2184 413.53125 1341.031 412.03125 1341.8438 411.90625 C 1342.656 411.78125 1343.8438 410.78125 1343.5938 410.28125 C 1343.3438 409.78125 1343.0312 409.34399 1343.9062 408.96875 C 1344.7812 408.59399 1345.2188 408.09375 1345.0938 407.59375 C 1344.9688 407.09375 1344.406 406.59399 1345.2188 406.40625 C 1346.031 406.21875 1347.1562 404.84399 1347.5312 404.15625 C 1347.9062 403.46875 1348.844 402.15601 1347.7812 401.59375 C 1346.7195 401.03101 1346.781 399.96875 1347.7188 399.71875 C 1348.656 399.46875 1348.5312 398.53125 1347.5312 397.90625 C 1346.5312 397.28125 1346.4062 396.03101 1346.2812 395.34375 C 1346.1562 394.65601 1345.969 393.71875 1345.4062 393.71875 C 1344.8434 393.71875 1343.9062 393.09399 1344.7812 392.53125 C 1345.6562 391.96875 1345.6562 391.34399 1344.5312 391.21875 C 1343.4062 391.09399 1343.2195 390.34399 1343.2812 389.78125 C 1343.344 389.21875 1343.156 388.28125 1343.9688 387.90625 C 1344.781 387.53125 1345.219 387.15625 1345.4062 386.65625 C 1345.594 386.15625 1345.594 385.71875 1345.0312 385.53125 C 1344.469 385.34399 1343.4062 384.96875 1344.1562 384.03125 C 1344.9062 383.09399 1345.0938 381.59399 1345.0938 381.21875 C 1345.0938 380.84399 1345.406 379.40625 1344.9688 378.71875 C 1344.531 378.03125 1344.6562 377.40625 1344.7812 376.40625 C 1344.9062 375.40625 1345.469 374.71875 1346.0312 374.46875 C 1346.5934 374.21875 1346.719 373.71851 1346.5312 372.84375 C 1346.344 371.96851 1346.469 371.03125 1346.9062 370.71875 C 1347.344 370.40625 1348.719 368.96875 1349.1562 368.21875 C 1349.594 367.46875 1350.406 365.59399 1350.5938 364.78125 C 1350.781 363.96875 1351.5938 362.90625 1351.5938 362.15625 C 1351.5938 361.40625 1351.5312 359.96875 1351.7812 359.65625 C 1352.0312 359.34399 1352.7812 358.53125 1352.7812 358.53125 C 1351.7668 357.26709 1350.8183 355.95581 1349.8125 354.78125 C 1349.4951 354.40991 1349.4521 353.90063 1349.25 353.46875 C 1348.7246 352.34301 1347.6396 351.56372 1346.75 350.75 C 1346.3652 350.39795 1345.2109 349.47046 1345.0625 349 C 1345.0693 348.7146 1345.208 348.50195 1345.25 348.25 C 1345.6616 345.79199 1345.6993 346.35547 1344.75 344.40625 L 1343.625 343.125 C 1343.625 343.125 1342.9375 342.87495 1342.6875 342.78125 C 1342.4375 342.6875 1341.75 341.6875 1341.625 341.46875 C 1341.5 341.25 1341 340.78125 1340.75 340.625 C 1340.5 340.46875 1340.4062 339.9375 1340.2812 339.5625 C 1340.1562 339.1875 1339.4372 338.90625 1338.7188 338.78125 C 1337.9997 338.65625 1338.4062 337.6875 1338.4062 337.6875 C 1338.4062 337.6875 1338.25 336.9375 1338.125 336.65625 C 1338.001 336.375 1338.0005 335.90625 1338.0625 335.6875 C 1338.125 335.46875 1338.5627 335.21875 1338.9062 335.625 C 1339.2499 336.03125 1339.3126 334.40625 1339.3438 334.125 C 1339.3748 333.84399 1339.1252 333.375 1338.9062 333.375 C 1338.6877 333.375 1338.4375 333.3125 1337.875 333.125 C 1337.3125 332.9375 1337.4375 332.71875 1337.4375 332.53125 C 1337.4375 332.34399 1338.406 332.09395 1338.7188 332.03125 C 1339.0313 331.96875 1339.0313 331.71875 1338.8125 331.46875 C 1338.5938 331.21875 1338.4685 330.90625 1338.4062 330.71875 C 1338.344 330.53125 1338.156 330.18726 1337.8438 329.84375 C 1337.531 329.49976 1337.7188 329.1875 1338.0938 328.65625 C 1338.4688 328.125 1338.2813 328.1875 1338.75 328.125 C 1339.2188 328.0625 1339.0316 327.15625 1339.0938 326.65625 C 1339.156 326.15625 1338.25 325.40625 1337.75 325.0625 C 1337.25 324.71875 1337.6875 324.34399 1338.25 323.96875 C 1338.8125 323.59399 1337.5625 323.06255 1337.0625 323.15625 C 1336.5625 323.25 1336.8435 322.43726 1336.9375 322.09375 C 1337.0313 321.74976 1336.5312 321.28125 1336.0312 320.875 C 1335.5312 320.46875 1337.6245 319.93726 1337.7188 319.59375 C 1337.8123 319.24976 1337.625 318.875 1337.4375 318.53125 C 1337.25 318.1875 1336.9688 317.28125 1336.375 317.40625 C 1335.7813 317.53125 1335.094 317.28125 1335.5312 316.78125 C 1336.3472 315.84961 1335.8125 315.875 1335.5 315.3125 C 1335.1875 314.75 1333.9376 314.56226 1332.7812 314.34375 C 1331.6251 314.12476 1332.0412 314.87378 1332.2812 315.40625 C 1332.5212 315.93897 1332.2188 315.90625 1331.875 316.15625 C 1331.5313 316.40625 1331.1875 316.03125 1331.0625 315.5 C 1330.9375 314.96875 1330.5625 313.25 1330.5625 313.25 L 1329.9688 312.625 C 1329.7284 312.18506 1329.4187 311.92822 1329.0938 311.6875 C 1326.8451 310.02271 1327.1503 312.5991 1325.6875 312.5625 C 1325.165 312.54956 1324.8688 315.12842 1322.7812 314.9375 C 1322.4611 314.7063 1322.106 313.63037 1321.9375 313.28125 C 1320.6499 310.61548 1320.8945 311.07153 1322.0625 308.9375 C 1322.373 308.36963 1323.1518 307.4314 1322.5 306.8125 C 1322.3572 306.73312 1322.2153 306.70488 1322.0625 306.71875 z M 1233.0938 486.28125 L 1233.0938 487.1875 C 1233.2893 486.68557 1233.1671 486.47012 1233.0938 486.28125 z ", + "cordoba":"M 721.84375 572.59375 C 710.33301 575.63721 698.83594 578.69312 687.3125 581.6875 L 686.09375 581.96875 C 684.44336 582.34229 682.74365 582.68897 681.125 583.1875 C 681.36182 585.19897 683.16846 601.96337 683.46875 602.78125 C 679.84082 607.35986 675.55371 611.69531 671.625 616.0625 L 670.53125 617.25 L 660.53125 620.09375 L 659.3125 620.40625 L 655.40625 621.5625 L 650.5 636.09375 L 650.03125 637.21875 L 648.25 639.1875 L 640.09375 666.3125 L 638.875 669.625 L 635.03125 680.8125 L 634.59375 681.9375 L 633.84375 684.125 L 633.875 693.59375 L 633.9375 697.15625 L 633.90625 699.53125 L 633.9375 700.71875 L 634 709 L 634.03125 710.1875 L 634 712.5625 L 634.0625 713.75 L 634.09375 722.03125 L 634.125 723.21875 L 634.125 727.96875 L 634.15625 729.15625 L 634.21875 739.8125 L 634.28125 740.0625 C 635.35938 740.10132 640.52588 739.83154 641.59375 740.46875 C 647.62891 744.07007 653.67871 747.6272 659.71875 751.21875 C 661.4956 752.2749 661.17969 752.53198 662.375 753.90625 C 662.90479 754.51562 663.84814 754.77075 664.3125 755.40625 C 665.70703 757.31665 663.93945 760.40796 666.96875 764.53125 C 667.91162 765.81445 666.47607 768.93066 667.625 770.15625 C 668.52832 770.60571 672.33447 769.6853 673.40625 769.625 C 673.54639 769.6171 673.7041 769.66825 673.84375 769.65625 C 676.34619 769.4419 678.22363 768.61816 680.5625 767.96875 C 686.99902 766.18139 683.40527 774.1853 683.71875 777.78125 C 683.76953 778.36377 685.05371 779.88208 685.375 780.3125 C 685.87059 780.97583 685.66797 782.37012 685.875 783.1875 C 686.05518 783.89648 686.47607 784.37988 686.59375 785.15625 C 686.73975 786.12451 686.1699 786.71655 686.125 787.59375 C 686.05127 789.03784 686.46484 789.09521 685.9375 790.71875 C 685.33496 792.57569 684.49075 792.59082 684.40625 795.0625 C 684.34277 795.56885 684.16504 796.90967 683.71875 797.21875 C 683.11768 797.63526 682.47412 797.92725 682.21875 798.65625 C 682.01657 799.23267 682.56104 800.46533 682.3125 801.34375 C 682.04443 802.28906 681.18896 802.896 680.9375 804.03125 C 680.4873 806.06202 681.65771 805.91919 680.21875 808.59375 L 678.8125 811.21875 C 676.35059 815.79345 681.42383 812.20044 676.65625 819.4375 C 675.75147 820.81128 677.83691 822.43799 677.375 823.65625 C 676.77099 824.69482 674.54443 824.01172 673.75 825.03125 C 673.43604 825.43408 673.30859 825.93481 673.0625 826.375 C 670.5542 830.8706 671.22559 830.25537 671.53125 835.8125 L 671.96875 844.125 C 672.68359 856.45508 673.28516 868.79492 674 881.125 C 674.41354 888.25512 674.12065 895.52075 674.09375 902.65625 C 674.03285 919.01245 674.11765 935.36182 674.03125 951.71875 C 683.70899 951.14845 774.5625 951.75 774.5625 951.75 C 774.6309 944.14794 775.05127 915.88501 774.6875 909.4375 C 778.22656 909.96216 782.33594 909.5715 785.90625 909.5625 C 792.11523 909.5466 805.875 909.625 805.875 909.625 C 808.35254 905.10449 811.55127 900.77564 814.375 896.4375 C 824.46533 880.93652 834.35547 865.31494 844.34375 849.75 C 846.79541 845.9292 861.65918 821.78418 862.34375 821.21875 C 863.76416 822.47266 867.01514 820.46484 867.90625 819.46875 C 870.4082 816.67285 870.40283 816.13331 870.65625 812.5 C 870.75977 811.01562 870.06153 809.62061 870.5 808.0625 C 870.9668 806.40332 873.38916 804.04639 871.375 801.625 C 870.71533 800.83203 869.60694 800.42823 869.0625 799.53125 C 868.05273 797.86865 867.5166 795.29663 866.1875 793.8125 C 865.23389 792.7478 862.78271 793.35107 862.28125 792.625 C 862.31595 792.22656 863.78906 790.68018 864.34375 788.1875 C 864.63184 786.89062 863.42188 786.75561 862.625 786.15625 C 861.88428 785.22119 862.5811 783.63281 862.625 782.5625 C 862.6504 781.95215 861.94775 780.44311 861.75 779.875 C 860.75781 777.02002 857.1875 776.15723 855.4375 774.09375 C 852.60889 770.75952 854.08643 767.86475 852.125 764.9375 C 851.13477 763.45972 849.70899 763.17871 848.1875 762.4375 C 848.10935 762.3997 848.09765 762.3689 848.03125 762.3125 C 847.17822 761.58472 847.00684 760.80664 846.34375 760.0625 C 845.65967 759.29492 844.47754 759.0166 843.8125 758.21875 C 843.2275 757.51636 843.18457 753.69043 843.3125 752.78125 C 843.65283 750.3606 843.90771 749.22583 845.0625 747.15625 C 845.3208 746.69238 845.73047 746.08618 845.625 745.5 C 845.29883 743.68896 843.82666 743.69141 843.46875 740.46875 C 843.32861 739.20532 842.84033 737.47022 843.09375 736.21875 C 843.60986 733.6687 844.08252 732.80127 842.65625 730.59375 C 842.39697 730.19336 841.92383 729.41528 841.8125 728.9375 L 848.53125 723.5625 C 854.2832 702.92529 859.80713 682.19556 865.34375 661.5 C 862.26416 660.45117 859.21729 659.27588 856.1875 658.09375 C 855.92969 657.99316 855.72022 657.52246 855.53125 657.34375 C 853.99316 655.88672 851.98291 654.62158 850.1875 653.5 C 848.50391 652.44775 846.38086 651.41016 844.875 650.125 C 845.08154 647.93848 845.73389 644.98926 845.53125 642.84375 L 848.03125 642.65625 C 848.47412 638.05176 849.49707 633.42871 850.1875 628.84375 C 850.46924 626.9751 851.16695 624.49756 851.15625 622.65625 C 850.82129 622.2959 841.58301 597.78613 841.0625 596.34375 C 833.32812 596.67435 825.54834 596.5542 817.8125 596.71875 C 815.06641 596.77735 812.30762 596.9019 809.5625 596.8125 C 804.45215 596.64649 799.15625 596.999 794.03125 597.0625 C 787.39404 597.145 781.00244 596.99028 774.375 596.5625 C 774.31397 596.5585 774.0669 596.37895 774 596.34375 C 773.76416 595.25268 774.51221 593.88159 773.46875 593.0625 C 772.47168 592.65869 771.11768 593.11672 770.125 592.8125 L 769.90625 592.59375 C 769.5 591.61767 771.69873 588.39648 768.65625 587.9375 C 767.82666 588.0198 767.31055 589.45752 766.125 588.96875 C 762.2002 587.35107 761.75 586.9375 757.90625 587.9375 C 755.84961 588.47265 750.20898 589.0459 748.375 587.90625 C 747.17041 587.15795 747.70264 586.56299 745.9375 586.03125 C 744.9043 585.72022 742.8833 585.85791 742.1875 585.5 C 741.41895 584.95581 741.45801 583.39941 740.4375 583.09375 C 739.91407 582.93701 735.15576 581.60596 735.03125 581.4375 C 734.74268 580.08838 736.21191 577.75293 735.53125 576.1875 C 734.45899 575.90429 721.98926 572.55545 721.84375 572.59375 z M 805.875 909.625 C 815.79414 909.63792 825.72987 909.62274 835.65625 909.59375 C 825.72186 909.628 815.8021 909.63792 805.875 909.625 z M 835.65625 909.59375 C 840.62616 909.57924 845.59312 909.56657 850.5625 909.53125 C 845.59584 909.56851 840.62344 909.57663 835.65625 909.59375 z M 850.5625 909.53125 C 855.53438 909.49592 860.49896 909.43804 865.46875 909.375 C 860.5042 909.43797 855.52916 909.49399 850.5625 909.53125 z ", + "santafe":"m 1043.2812,476.15625 c -22.2134,0.47754 -143.91792,0.26997 -169.8437,0.0937 -5.8418,39.23706 -11.41943,78.50293 -17.78125,117.65625 -1.55566,9.57471 -2.9077,19.18263 -4.5,28.75 0.0107,1.84131 -0.68701,4.31885 -0.96875,6.1875 -0.69043,4.58496 -1.71338,9.20801 -2.15625,13.8125 l -2.5,0.1875 c 0.20264,2.14551 -0.44971,5.09473 -0.65625,7.28125 1.50586,1.28516 3.62891,2.32275 5.3125,3.375 1.79541,1.12158 3.80566,2.38672 5.34375,3.84375 0.18897,0.17871 0.39844,0.64941 0.65625,0.75 3.02979,1.18213 6.07666,2.35742 9.15625,3.40625 -5.53662,20.69556 -11.06055,41.42529 -16.8125,62.0625 l -6.71875,5.375 c 0.11133,0.47778 0.58447,1.25586 0.84375,1.65625 1.42627,2.20752 0.95361,3.07495 0.4375,5.625 -0.25342,1.25147 0.23486,2.98657 0.375,4.25 0.35791,3.22266 1.83008,3.22021 2.15625,5.03125 0.10547,0.58618 -0.3042,1.19238 -0.5625,1.65625 -1.15479,2.06958 -1.40967,3.20435 -1.75,5.625 -0.12793,0.90918 -0.085,4.73511 0.5,5.4375 0.66504,0.79785 1.84717,1.07617 2.53125,1.84375 0.66309,0.74414 0.83447,1.52222 1.6875,2.25 0.0664,0.0564 0.0781,0.0872 0.15625,0.125 1.52149,0.74121 2.94727,1.02222 3.9375,2.5 1.96143,2.92725 0.48389,5.82202 3.3125,9.15625 1.75,2.06348 5.32031,2.92627 6.3125,5.78125 0.19775,0.56811 0.9004,2.07715 0.875,2.6875 -0.0439,1.07031 -0.74072,2.65869 0,3.59375 0.79688,0.59936 2.00684,0.73437 1.71875,2.03125 -0.55469,2.49268 -2.0278,4.03906 -2.0625,4.4375 0.50146,0.72607 2.95264,0.1228 3.90625,1.1875 1.3291,1.48413 1.86523,4.05615 2.875,5.71875 0.54444,0.89698 1.65283,1.30078 2.3125,2.09375 2.01416,2.42139 -0.4082,4.77832 -0.875,6.4375 -0.43847,1.55811 0.25977,2.95312 0.15625,4.4375 -0.25342,3.63331 -0.24805,4.17285 -2.75,6.96875 -0.89111,0.99609 -4.14209,3.00391 -5.5625,1.75 -0.68457,0.56543 -15.54834,24.71045 -18,28.53125 -9.98828,15.56494 -19.87842,31.18652 -29.96875,46.6875 -2.82373,4.33814 -6.02246,8.66699 -8.5,13.1875 22.5,0.0293 45.03467,0.0212 67.53125,-0.34375 15.53516,-16.48242 30.95996,-33.06591 46.3125,-49.71875 -0.01,-0.82617 -0.35987,-1.68848 -0.59375,-2.46875 -1.01074,-3.37305 4.94238,-4.71337 7.25,-3.4375 0.76709,0.42407 1.76368,1.20605 2.625,1.40625 2.02979,0.47168 4.53272,-0.78467 6.125,0 1.854,0.91357 3.41943,3.49756 5.0625,4.15625 1.33252,0.53394 2.37451,0.13672 3.59375,-0.25 0.72705,-0.23071 1.67236,2.8e-4 2.3125,-0.4375 0.0752,-0.0513 3.09082,-5.90258 3.1875,-6.25 0.47656,-1.71777 0.21337,-3.53833 0.65625,-5.15625 1.01758,-1.36548 3.32764,-1.92774 3.9375,-3.21875 0.51123,-1.08203 -0.54639,-2.4143 0.375,-4.65625 0.67432,-0.95752 1.92334,-0.43969 2.6875,-1.03125 1.55908,-1.20728 0.81103,-1.88037 1.5,-3.46875 l -0.15625,-2.0625 0.0937,-0.125 c -0.13631,-0.0706 -0.26846,-0.15148 -0.40625,-0.21875 0.0219,-0.33422 -0.44727,-0.89966 -0.8125,-1.3125 l -0.5625,-0.625 c -0.49853,-0.56861 -0.86328,-1.23706 -1.3125,-1.84375 -1.39892,-1.8899 -7.28613,-4.35278 -9.59375,-5.1875 -3.0498,-1.10351 -3.83057,-4.58179 -4.40625,-7.5 -0.28711,-1.4563 -2.44531,-4.5686 -3.1875,-5.71875 -3.81788,-5.91772 -4.02055,-6.05322 -4.03125,-12.53125 -0.003,-2.40552 -0.93896,-5.16479 -1.625,-7.4375 -0.35254,-1.16894 -0.95264,-2.28906 -1.4375,-3.4375 -1.42432,-3.37353 -0.23535,-2.70361 0.71875,-5.15625 1.49366,-3.83887 1.33496,-4.37598 1.0625,-8.125 -0.21191,-2.91626 2.12158,-1.47607 3.1875,-3.5 1.85058,-3.51514 -4.38965,-8.18604 -1.34375,-12.125 L 935.25,757 c 1.00488,-1.32813 1.1045,-1.99463 1.125,-3.625 0.0547,-4.24805 -1.48096,-3.87842 -2.78125,-5.5 0.41358,-2.71338 2.73295,-3.86865 2.71875,-7.0625 -0.008,-1.77539 0.74609,-3.33496 1,-5.0625 l 0.125,-0.9375 c 0.12598,-1.53027 -0.88184,-3.80713 0.53125,-4.9375 3.99756,-1.68311 8.9541,0.36914 12.65625,-2.46875 2.40039,-1.84082 5.11572,-4.4502 6.40625,-7.5 0.88525,-2.09155 1.28027,-2.37549 1.59375,-2.5625 4.64404,-2.76513 7.33301,-6.07666 10.15625,-10.75 1.29004,-2.13476 3.375,-9.31323 4.9375,-10.25 2.89551,-1.73633 3.21924,-3.53833 5.375,-5.96875 -0.0747,0.009 -0.24609,0.001 -0.4375,0.125 l 0.96875,-0.84375 c 0.47168,-1.69873 2.12451,-3.71753 3.03125,-5.28125 1.08496,-1.87134 1.78174,-4.11523 3.1875,-5.78125 3.28858,-3.89551 7.58838,-9.94189 9.9375,-14.625 1.13525,-2.26318 2.17285,-4.59351 3.5625,-6.71875 1.24365,0.0432 1.78715,-1.01855 1.00005,-2.09375 0.066,-0.49121 0.018,-0.97583 0,-1.46875 -0.024,-0.67944 0.4905,-1.26025 0.4374,-1.84375 L 1000.25,646 c 0.5967,-0.57324 0.5068,-1.71899 0.4688,-2.46875 -0.1237,-2.4375 -0.1646,-3.31909 -2.0938,-4.71875 -0.38086,-0.48194 -2.1709,-3.75439 -2.25,-4.125 -0.0698,-0.2212 -0.81738,-1.67627 -1.125,-2.375 l -0.375,-0.84375 0.0625,-0.0312 c 0.11231,-0.13916 0.28516,-0.30396 0.5625,-0.53125 l 0.40625,-0.34375 c 1.23828,-1.07031 1.5244,-2.10376 1.5625,-3.71875 0.0464,-1.99487 0.96045,-6.71265 1.4375,-8.6875 0.55468,-2.29443 2.68165,-3.2915 2.28125,-5.9375 0.083,-0.28222 0.096,-0.58862 0.031,-0.78125 -2.24093,-6.72046 -7.88286,-5.62158 -4.1563,-14.84375 2.82177,-6.9834 3.156,-13.05835 3.125,-20.34375 -0.021,-5.02514 0.081,-3.87939 3.1563,-8.71875 1.4447,-2.27295 1.3021,-5.14941 2.4374,-6.78125 0.1591,-0.14111 0.5587,-0.42212 1.125,-0.625 6.9258,-2.48096 4.0596,-0.78638 9.875,-7.25 2.6305,-2.92334 7.3773,-5.80615 7.2813,-10.125 -0.1133,-5.08106 -0.085,-2.09375 1.5625,-6.59375 1.4712,-4.01611 1.3538,-8.25195 2.8438,-12.3125 1.5643,-4.26416 1.4374,-4.83472 1.4374,-9.125 0,-4.33447 1.76,-8.28369 1.4376,-12.71875 -0.201,-2.75464 -1.6,-11.28711 -0.625,-13.4375 1.3737,-3.03393 3.0771,-2.5708 5.7187,-2.40625 4.4323,0.27709 6.8595,-6.40691 6.8437,-10 z", + "CABA":"m 1064.8125,920.3125 -1.8125,0.75 c -1.1728,1.57715 -2.4951,5.07422 -1.9375,7.09375 l 3.9687,2.25 c 3.1368,-3.71875 3.4474,-1.12207 6.2188,-2.90625 l 0.6875,-1.03125 c -0.5551,-1.31983 -0.7791,-2.79847 -1.2187,-3.125 -0.9875,-0.73245 -2.4112,-0.21997 -3.4063,-0.71875 -0.5758,-0.28833 -0.3958,-0.7793 -0.7813,-1.09375 -0.3361,-0.27441 -0.959,-0.35693 -1.3437,-0.65625 -0.1825,-0.14222 -0.3001,-0.34674 -0.375,-0.5625 z" + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/belgium/belgium.js b/lib/mapael-maps/belgium/belgium.js new file mode 100644 index 000000000..8b755d73c --- /dev/null +++ b/lib/mapael-maps/belgium/belgium.js @@ -0,0 +1,57 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Belgium with provinces and INS codes +* +* @author Antoine DURET +* @source http://commons.wikimedia.org/wiki/File:Belgique_vierge.svg +* +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + belgium : { + width : 500, + height : 500, + elems : { + // Hainaut + "50000" : "m 125.31217,204.93438 -2.81119,0.41211 -0.63048,3.05966 -3.76276,0.58198 -0.78264,3.41156 -4.83892,-2.50434 0.36374,-2.43239 -2.54864,-3.3313 -5.21769,0.16055 -4.57552,-3.21089 -4.736055,2.8898 3.210887,7.06395 3.531978,0.64218 2.8898,3.53197 -2.24763,4.81633 2.24763,10.27484 1.92653,11.55919 3.85306,6.42178 7.70613,4.81633 11.55919,-6.74286 5.45851,0.96326 -3.85306,5.7796 8.99048,-1.92654 7.06395,4.17416 5.45851,8.99048 -1.60544,10.59593 0.93103,6.91222 5.03665,6.00924 1.88064,-2.33727 1.19725,-5.82295 7.50516,-1.16687 6.24656,0.90087 5.13742,4.17415 14.37108,-5.06285 12.60037,11.16354 1.60545,7.38504 3.53197,-0.32109 -0.64218,-5.45851 5.7796,3.53198 0,4.81633 -7.06395,5.4585 0.32109,9.63267 -3.85306,4.49524 2.88979,1.28435 5.7796,-0.64217 0.32109,5.77959 3.53197,6.10069 -4.17415,4.17415 -4.81633,-0.32109 -2.24762,5.7796 3.53197,3.53197 -1.60544,3.85307 5.7796,2.88979 12.20137,-1.92653 15.41226,5.7796 1.28435,-2.56871 -3.85307,-8.3483 -0.32108,-9.63266 -1.92654,-4.17416 -0.96326,-8.02722 2.24762,-1.60544 -1.92653,-4.81633 -2.8898,-2.24762 3.53197,-4.17415 0,-4.49525 0.96327,-3.85306 -3.53197,-1.92653 -3.21089,2.24762 -6.74286,-4.17416 6.42177,-5.4585 6.10068,-2.56871 0.64218,-3.53198 8.34831,1.28436 0.96326,-3.53198 3.53198,0 2.8898,2.56871 7.38504,-2.24762 -0.32109,-2.8898 -0.96327,-5.45851 2.56871,-2.5687 -1.92653,-2.24763 1.92653,-1.60544 1.92653,-4.49524 -2.88979,0 -2.56871,-4.17416 2.56871,-4.49524 -0.64218,-3.53197 -3.53198,-0.32109 0,-3.85306 1.92653,-1.28436 0,-3.21089 -7.70613,2.56871 -1.28435,-2.56871 -3.85306,2.24763 0.96326,-4.81634 -8.99048,-1.60544 -4.17415,0 -3.53198,3.85306 -0.32109,-4.49524 -3.85306,-1.60544 -2.8898,-3.21089 -3.21089,-0.64218 -0.32109,-3.53197 -5.13742,-1.92653 -0.32108,-4.81633 -2.56871,-1.92653 -4.17415,6.42177 -5.45851,-1.60545 0,-5.77959 0.64217,-3.53198 -1.28435,-3.85306 -1.92653,-0.64218 -3.21089,2.24762 -8.99048,2.56871 -5.7796,-1.92653 -3.53198,-3.21089 0.64218,-4.17415 -1.92653,-2.56871 -5.13742,0.96327 -3.53198,-1.60545 -3.53197,0 -2.24762,-4.17415 -4.81633,0.96326 0,-2.24762 -4.17416,1.60545 -4.49524,6.42177 0,4.17416 -4.49524,-3.53198 -6.42177,0 0,-3.21089 -1.28436,-2.24762 -4.81633,1.28436 -4.49524,-2.24763 -3.21089,3.21089 z", + + // Flandre Occidentale + "30000" : "m 92.796002,199.49992 2.976013,4.4712 4.736055,-2.8898 4.57552,3.21089 5.21769,-0.16055 2.54864,3.3313 -0.36374,2.43239 4.83892,2.50434 0.78264,-3.41156 3.76276,-0.58198 0.63048,-3.05966 2.81119,-0.41211 3.21089,-3.21089 3.09747,-2.22357 1.36226,-2.72453 2.72453,-0.45408 1.13522,-1.13522 -2.95157,-4.54088 1.5893,-0.45409 -3.40566,-4.99497 -2.04339,0 -2.27044,-2.95157 2.27044,-0.22704 2.04339,-2.95158 -3.40565,-3.17861 -2.27045,2.04339 -2.49748,-2.27044 1.81635,-2.27044 -0.22704,-2.72453 2.95157,1.58932 0.90817,-1.58932 -2.49748,-0.90817 2.49748,-0.22704 -1.36226,-1.81636 -3.6327,-0.22704 -0.45409,-1.36226 3.40566,-1.81635 -1.81635,-1.81636 1.36226,-2.49748 2.0434,-2.27044 -3.63271,-6.35723 1.58931,-0.45409 0.90818,-1.13522 -6.13019,-4.31384 -5.90314,-4.54088 -0.68114,-1.5893 5.67611,-4.0868 2.72452,-5.6761 -2.0434,-5.90314 -3.17861,-0.90818 2.95157,-2.04339 -1.36226,-3.40566 -0.45409,-1.13522 3.6327,-1.58931 0,-1.81635 -2.49748,-5.90315 0.90817,-1.58931 -2.27044,-2.04339 1.36227,-0.90818 -2.0434,-2.27044 3.85975,-3.405655 -2.27044,-2.72453 0.45409,-2.043397 -1.58931,-2.043393 -15.89308,5.903142 -4.08679,-2.043397 -1.362264,3.405662 -11.806288,4.313838 -2.951572,3.40566 -13.168551,7.7195 -2.27044,0.22704 -3.632704,3.6327 -26.110059,16.12013 -15.211948,7.03836 2.27044,5.22201 1.13522,8.85472 0.681132,3.17861 3.178616,0.90818 -0.227044,2.27044 2.724528,7.49245 -5.449055,4.54088 2.270439,0.68113 0.681132,9.08176 -2.043396,2.72453 2.27044,0 2.043396,6.81132 3.178616,0.68113 0.681132,-2.27044 1.589308,2.04339 3.859748,-0.68112 1.13522,1.13522 0,2.49748 4.086792,4.54088 -0.227044,1.81635 2.497484,2.27044 2.951572,6.58428 4.540879,-1.13522 2.27044,2.95157 0.908176,-1.13522 -3.178616,-4.54088 1.589308,-0.68113 -1.362264,-2.27044 3.632704,-1.58931 2.27044,2.04339 2.951572,-1.36226 0,-1.13522 5.222012,-1.81635 -2.27044,-3.85975 6.357232,-2.72453 2.043396,0.68114 0,4.31383 1.816352,0.68113 -1.135221,1.81636 4.767924,-2.0434 3.178616,2.27044 2.497484,-4.54088 1.816352,1.36226 2.951572,0 0.227044,2.27044 z", + + // Flandre Orientale + "40000" : "m 182.02429,209.03577 -2.12704,-0.8905 -1.92653,-2.56871 -5.13742,0.96327 -3.53198,-1.60545 -3.53197,0 -2.24762,-4.17415 -4.81633,0.96326 0,-2.24762 -4.17416,1.60545 -4.49524,6.42177 0,4.17416 -4.49524,-3.53198 -6.42177,0 0,-3.21089 -1.28436,-2.24762 -4.81633,1.28436 -4.49524,-2.24763 3.09747,-2.22357 1.36226,-2.72453 2.72453,-0.45408 1.13522,-1.13522 -2.95157,-4.54088 1.5893,-0.45409 -3.40566,-4.99497 -2.04339,0 -2.27044,-2.95157 2.27044,-0.22704 2.04339,-2.95158 -3.40565,-3.17861 -2.27045,2.04339 -2.49748,-2.27044 1.81635,-2.27044 -0.22704,-2.72453 2.95157,1.58932 0.90817,-1.58932 -2.49748,-0.90817 2.49748,-0.22704 -1.36226,-1.81636 -3.6327,-0.22704 -0.45409,-1.36226 3.40566,-1.81635 -1.81635,-1.81636 1.36226,-2.49748 2.0434,-2.27044 -3.63271,-6.35723 1.58931,-0.45409 0.90818,-1.13522 -6.13019,-4.31384 -5.90314,-4.54088 -0.68114,-1.5893 5.67611,-4.0868 2.72452,-5.6761 -2.0434,-5.90314 -3.17861,-0.90818 2.95157,-2.04339 -1.36226,-3.40566 -0.45409,-1.13522 3.6327,-1.58931 0,-1.81635 -2.49748,-5.90315 4.76792,4.0868 1.36227,2.95157 11.3522,-1.13522 -1.13522,-7.49245 6.13018,-0.90818 1.36227,0.90818 1.36226,-2.95157 5.44906,3.17861 2.04339,-0.68113 6.81132,3.85975 9.08176,2.72453 -0.68113,8.17358 8.40063,0.45409 2.27044,-2.27044 1.58931,0 -1.81636,4.08679 3.85975,-0.90818 1.58931,-2.95157 1.58931,1.58931 8.40063,-5.22201 5.44905,0 12.94151,-9.53585 7.94654,-10.89811 3.6327,1.816352 0,5.449058 1.13522,3.17861 4.31384,1.13522 0,2.72453 -2.49749,3.40566 0.68113,7.94654 1.81636,5.22201 1.36226,0 -0.45409,9.76289 -2.04339,2.0434 -3.63271,-0.22704 -3.17861,2.04339 -2.95157,-1.58931 -1.81636,0 -3.6327,3.17862 -0.68113,3.6327 1.81635,0 0,4.31384 1.58931,0 -1.58931,3.17862 1.81635,2.27043 2.95158,-2.04339 1.5893,1.36226 -0.45408,2.95157 -2.0434,1.13522 1.5893,2.0434 -4.99496,4.08679 -3.85975,-1.58931 -1.81635,4.08679 2.0434,3.85975 -1.13523,1.13522 -1.5893,4.08679 -4.76793,-2.49748 -1.5893,5.22201 -1.58931,0 2.27044,2.95158 -0.68113,2.72453 -2.27045,0.22704 -2.95157,7.03836 4.08679,0 0,3.63271 -2.95157,5.44905 -2.95157,0.22704 -1.13522,2.27045 -1.81635,-2.0434 -0.68113,2.49748 -3.40566,0 0.45409,-2.27044 -2.0434,0 -1.81635,3.85975 0,2.0434 1.81635,2.27044 -1.13522,1.36226 -3.40566,-0.45409 z", + + // Anvers + "10000" : "m 220.62177,93.92447 -2.83605,-3.939837 13.48572,-0.481633 2.8898,4.013608 3.85306,0.160547 5.13743,-4.013608 -6.26124,-8.348306 2.08708,-4.013608 -2.08708,-0.963268 10.1143,-5.779595 8.3483,-0.321091 1.60545,2.087078 -2.8898,2.568707 0.64218,5.7796 4.65578,-2.087078 7.54559,2.247621 3.53197,-0.642177 -0.96327,-3.531979 4.01362,-1.12381 0.80272,-3.210884 5.29796,-5.7796 3.53198,-1.284353 4.33469,2.889798 0.96327,1.765987 1.76599,0.160547 -0.64218,4.816328 -0.80272,1.284358 0.32109,5.137419 -5.29797,-2.247621 -2.08707,0 0.64217,3.05034 1.92654,0.963268 6.10068,-1.284354 2.40817,1.60544 2.72925,-1.60544 4.3347,4.495242 10.27484,-11.719738 -1.12381,-2.087078 3.85306,-4.174151 1.28436,3.050341 3.85306,0.32109 2.72925,7.224492 -3.37143,7.063953 6.58232,8.990484 0.32109,4.655784 3.69252,1.765987 3.85306,-2.408163 4.97688,3.371433 -1.4449,6.26123 1.12381,1.60544 -2.40817,2.56871 0.16055,6.58232 5.29796,5.13742 -0.16054,6.90341 -3.05035,2.72925 -2.72925,-1.76599 -2.08707,3.85306 -6.58232,1.28436 -4.17416,4.17415 -0.96326,1.4449 -8.82994,2.56871 -0.96327,2.72926 -3.05034,4.0136 -1.76599,-2.24762 -2.24762,1.92654 -3.85306,0 -0.96327,2.24762 -3.53198,0.80272 -3.69252,2.08708 -3.69251,0 -0.16055,-2.72926 -2.40817,-2.72925 -3.05034,3.21088 -3.53197,-0.80272 -2.72926,3.53198 -1.28435,2.08707 0.80272,-3.53197 -1.4449,-0.32109 -0.64218,-1.28436 -4.49524,0.64218 -2.56871,1.60545 -2.08707,0 -0.80273,3.53197 -3.05034,0.16055 -2.56871,-2.24762 -3.21088,2.08707 -4.17416,-3.21088 -2.56871,2.72925 -1.76598,-1.60544 -3.69253,1.60544 -3.69252,-0.80272 0.16055,-1.92653 -2.08708,-0.64218 0.48164,-3.05035 -2.24762,2.56872 -3.21089,-0.64218 -2.72926,-3.53198 -4.33469,-0.64218 -0.48164,1.28436 -2.7165,0.13193 -1.5893,-1.36226 -2.95158,2.04339 -1.81635,-2.27043 1.58931,-3.17862 -1.58931,0 0,-4.31384 -1.81635,0 0.68113,-3.6327 3.6327,-3.17862 1.81636,0 2.95157,1.58931 3.17861,-2.04339 3.63271,0.22704 2.04339,-2.0434 0.45409,-9.76289 -1.36226,0 -1.81636,-5.22201 -0.68113,-7.94654 2.49749,-3.40566 0,-2.72453 -4.31384,-1.13522 -1.13522,-3.17861 0,-5.449058 -3.6327,-1.816352 z m 78.0783,-15.499027 3.21088,1.444897 1.28436,-5.297962 -3.53198,1.605444 -0.96326,2.247621 z", + + // Limbourg + "70000" : "m 336.42799,110.21322 3.21088,-1.12381 3.21089,1.12381 5.61905,-0.16054 0.32109,-2.72926 8.6694,2.8898 2.56871,-4.49524 2.56871,0.32109 2.24762,-3.05035 3.37143,0.3211 5.77959,5.94013 -0.16054,7.06396 11.07756,4.97687 0.16055,2.08708 6.42177,0.80272 4.81633,-1.12381 3.21089,1.76599 -0.64218,2.40816 0.96326,2.40817 5.61906,-2.72926 3.21088,4.17416 -1.12381,2.56871 -2.56871,0 -1.76599,3.21088 2.72926,1.12381 -0.32109,2.72926 -2.24762,-0.80272 -1.92653,0.80272 2.08708,1.92653 -1.12381,1.76599 0.16054,2.24762 -3.37143,-0.32109 0,2.08708 -1.60545,3.21088 2.72926,1.28436 -2.08708,2.24762 0.96327,2.72925 -5.61906,7.54558 0.64218,1.76599 2.56871,-2.5687 1.4449,1.60544 -3.69252,5.4585 -0.32109,3.69253 -2.8898,-1.12381 -2.08707,5.4585 -3.85306,2.24763 -0.96327,5.13741 2.24762,4.49525 4.17415,1.60544 -4.97688,0.96326 -0.32108,3.53198 -6.10069,2.24762 -4.81633,2.08708 -3.21088,0.96326 -0.64218,3.05035 -4.65579,3.21088 -0.48163,-1.4449 -1.60544,-1.4449 0,1.76599 -1.92654,1.76599 -3.37143,0 -2.72925,-2.40817 -0.80272,-2.40816 -0.80273,0.80272 -3.69251,-0.16054 -4.3347,3.21089 -0.16055,2.24762 -3.85306,-2.56872 -2.08708,2.72926 -2.24762,-0.16054 -0.32109,-1.76599 -1.12381,1.60544 -6.58232,-0.80272 0.16055,1.92653 1.4449,2.08708 -1.76599,1.12381 -4.17415,-0.96327 -3.53198,-2.72925 1.76599,-4.01361 -1.92653,-1.60544 1.12381,-3.53198 0,-5.45851 2.24762,0.32109 1.4449,-3.85306 -1.60544,-0.16055 0.96326,-7.06395 1.92653,-3.21088 -0.32109,-1.76599 2.08708,1.12381 1.60545,-4.17416 -0.96327,-3.21088 -4.65579,0 -0.64217,-1.76599 -4.97688,2.08708 -1.76599,-2.08708 -1.76599,0.96327 -2.72925,-5.45851 4.97687,-3.37144 -0.32108,-3.37143 3.85306,-2.72925 1.4449,0 -0.96326,-4.49524 1.12381,0.96326 1.60544,0 1.60544,-1.44489 -4.49524,-4.81633 -4.3347,0 0.48163,4.65578 -2.5687,1.76599 -1.60545,-1.60544 -3.05034,0.80272 -1.76599,-3.21089 -3.05034,0.48163 3.05034,-4.0136 0.96327,-2.72926 8.82994,-2.56871 0.96326,-1.4449 4.17416,-4.17415 6.58232,-1.28436 2.08707,-3.85306 2.72925,1.76599 3.05035,-2.72925 0.16054,-6.90341 -5.29796,-5.13742 -0.16055,-6.58232 2.40817,-2.56871 z", + + // Namur + "90000" : "m 286.4987,351.99301 4.17415,1.92653 1.12381,-0.96327 2.08708,4.01361 2.72925,0.96327 0.96326,3.37143 -1.28435,2.40816 -1.60544,5.45851 -1.92653,0 1.28435,3.69252 1.4449,0.64218 0,3.37143 1.4449,1.28436 -1.60545,0.16054 -0.64217,2.72925 -0.96327,1.60545 7.70613,0.96326 3.69252,-2.40816 2.72926,-0.48164 1.44489,-4.49524 0.80273,-4.97687 3.85306,-2.24763 -0.32109,-1.28435 1.76599,0 3.05034,-2.56871 -1.92653,-1.60544 2.56871,-3.69252 3.37143,-0.96327 2.56871,-0.32109 -2.40817,-3.37143 0.48164,-4.17415 -1.60545,-0.16055 -3.21088,-3.53197 -1.4449,-0.80272 -3.37143,1.76598 -1.92654,-0.96326 0.96327,-2.08708 -4.49524,-6.58232 1.76599,-0.32108 0.96326,-2.72926 1.60545,1.28436 2.72925,-2.40817 2.72925,-4.97687 -0.64217,-4.81634 1.60544,-3.53197 -0.32109,3.05035 1.12381,2.24762 4.81633,-0.96327 4.17415,1.28435 8.6694,-1.44489 0.64218,-2.24763 4.65578,0.48163 0.48164,-1.60544 -3.05034,-3.05034 3.37143,-0.80272 1.12381,-2.56871 -4.97688,-6.26123 0.16054,-3.53198 -1.60544,-1.76598 -3.21088,-0.32109 2.24762,-2.08708 1.60544,1.60544 3.05034,-1.92653 -1.76598,-1.76598 4.17415,-1.60545 1.12381,1.4449 5.61905,-4.3347 6.42178,-4.49524 -0.64219,-4.81633 -2.72925,-0.96327 -2.40816,2.24762 -0.80272,-1.28435 1.12381,-1.60544 2.5687,-1.12381 2.88981,-2.08708 -1.92654,-2.24762 2.72925,-3.21089 -1.23496,-2.57489 -1.01266,-0.79654 -2.08707,1.28436 -1.60545,-1.76599 -6.42177,4.49524 -2.40816,-2.40816 0.80272,-3.53198 -5.7796,-0.64218 -1.4449,-3.05034 1.28436,-0.80272 0,-2.56871 -4.81633,-8.02722 -1.76599,0.48163 -0.96327,1.92654 -2.08708,-2.24762 0.32109,-2.08708 -2.24762,0.96327 -1.12381,-3.05035 1.60545,-1.92653 -4.3347,1.12381 -2.08708,-4.17415 -3.85306,-0.48163 -0.48163,-3.53198 -2.72926,-5.94014 -3.37143,-2.72926 0,-1.60544 -2.08708,-2.08708 -0.16054,-3.85306 -2.24762,-1.60544 -2.40817,0.64217 -1.60544,3.21089 -2.72925,-0.32109 -1.44491,1.12381 -8.3483,2.56871 -1.76599,0 -1.76599,3.69252 c 0,0 -1.12381,-1.4449 -1.12381,-2.08708 0,-0.64217 -2.72925,0.16055 -2.72925,0.16055 l -1.92653,1.76599 -1.60545,-4.01361 -2.5687,1.4449 -0.48164,1.76598 -3.69252,-2.5687 -2.24762,0.80272 0.48163,4.65579 2.08708,1.76598 -3.53198,1.76599 -4.49524,-1.76599 -4.17415,2.40817 0.48163,2.88979 0,3.21089 -1.92653,1.28436 0,3.85306 3.53198,0.32109 0.64218,3.53197 -2.56871,4.49524 2.56871,4.17416 2.88979,0 -1.92653,4.49524 -1.92653,1.60544 1.92653,2.24763 -2.56871,2.5687 0.96327,5.45851 0.32109,2.8898 -7.38504,2.24762 -2.8898,-2.56871 -3.53198,0 -0.96326,3.53198 -8.34831,-1.28436 -0.64218,3.53198 -6.10068,2.56871 -6.42177,5.4585 6.74286,4.17416 3.21089,-2.24762 3.53197,1.92653 -0.96327,3.85306 0,4.49525 -3.53197,4.17415 2.8898,2.24762 1.92653,4.81633 -2.24762,1.60544 0.96326,8.02722 1.92654,4.17416 0.32108,9.63266 3.85307,8.3483 -1.28435,2.56871 3.21088,0 2.24762,-1.60544 4.49524,0 3.21089,-3.53198 2.56871,0 2.56871,-3.53197 5.45851,0 7.06395,-2.24762 -0.32109,-6.10069 1.28435,-4.81633 -1.60544,-0.32109 1.60544,-6.74286 6.10069,-3.21089 1.60544,-4.49524 4.17415,-2.56871 2.24763,-3.21089 1.92653,3.21089 4.81633,-0.32109 0.32109,2.24762 1.92653,0 -2.8898,3.21089 0.64218,7.06395 -2.56871,-3.21088 -1.92653,0.32108 0.64217,5.7796 -2.24762,0 -0.32108,2.8898 2.24762,1.28435 0.32108,2.56871 -2.24762,0.32109 -0.96326,6.42177 -2.24762,2.8898 -0.32109,2.56871 0.32109,1.60545 z", + + // Luxembourg + "80000" : "m 307.8511,380.73044 2.90713,0.5182 1.70283,3.29214 6.81132,3.85975 3.0651,-1.13522 4.31383,6.69779 -0.34056,3.17862 3.17861,0.34056 0.56761,-1.70282 1.0217,1.13521 0.90817,3.85975 9.08176,0.79466 2.61101,-1.92988 7.7195,8.06006 -3.17862,4.42736 0.90818,3.63271 3.40566,-1.24875 1.13522,-2.83804 6.13019,3.29213 3.29213,3.51918 1.36227,4.99497 2.04339,-0.11352 -1.58931,3.17861 3.17862,2.61101 0,1.81635 -2.38396,1.81636 2.38396,1.81635 -0.34056,1.92987 2.49748,-1.70283 6.92484,-1.81635 1.13522,-2.49748 5.22201,1.24874 1.70283,2.72452 1.47579,-2.38396 -0.79465,-1.92987 4.6544,-4.42736 5.78962,2.38397 5.44906,-0.34057 0.90817,-2.95157 2.0434,-1.36227 2.611,2.49748 3.85975,0 4.76792,-4.76792 0,-2.72453 -2.49748,0.22705 0,-1.92988 3.40566,-2.15691 0.90817,-4.88145 2.38396,-0.34057 0,-4.54088 -4.76792,-2.27043 -0.22704,-2.95158 2.611,-3.40566 -3.06509,-3.6327 -1.92987,1.81635 -2.27044,-0.90818 0.34056,-4.6544 -5.22201,-8.51415 -3.85974,1.0217 -1.92988,-8.74119 1.92988,-2.72453 -0.4541,-3.51918 2.72453,0.45408 1.0217,-1.92987 -5.90314,-3.29214 2.72452,-3.17861 1.92988,-4.54088 -0.11352,-4.20032 3.6327,-0.56761 0.79465,-1.47578 2.95158,-1.0217 0,-2.38396 -2.0434,-1.24874 -0.45409,-2.61101 4.42736,-2.95157 1.58931,-4.31384 -2.15692,-1.47578 0.45409,-1.92988 3.17861,-2.04339 0.79466,-5.90315 7.83302,-3.74622 0.34056,-7.7195 6.92484,-2.04339 1.13522,-4.99497 -2.49748,0.68113 0.56761,-8.62767 -0.90817,-11.46572 -3.74623,-1.70283 0,-1.13522 -2.38396,0.34056 -2.83805,-1.47578 -1.24874,1.24874 -7.94654,-3.0651 -0.90818,3.74623 2.27044,1.24874 -2.61101,7.83302 4.20032,-0.22705 -1.13522,2.38397 -7.37893,1.0217 -0.45409,1.47578 -0.56761,-1.47578 -4.99497,-1.24875 -1.47578,2.72453 -3.63271,-1.70283 3.85975,-6.6978 -3.74623,-1.5893 -0.68113,-7.15189 1.36227,-0.90818 0,-1.13521 -6.35724,0.79465 -4.54087,-2.49748 -5.44906,-5.6761 -4.20031,2.49748 -3.74623,-3.06509 -1.36226,-3.85975 -4.99497,3.06509 -4.99497,-4.20031 -2.27044,1.47578 -0.11352,2.27044 1.81635,0 1.24874,1.70283 -4.40901,3.9766 1.23496,2.57489 -2.72925,3.21089 1.92654,2.24762 -2.88981,2.08708 -2.5687,1.12381 -1.12381,1.60544 0.80272,1.28435 2.40816,-2.24762 2.72925,0.96327 0.64219,4.81633 -6.42178,4.49524 -5.61905,4.3347 -1.12381,-1.4449 -4.17415,1.60545 1.76598,1.76598 -3.05034,1.92653 -1.60544,-1.60544 -2.24762,2.08708 3.21088,0.32109 1.60544,1.76598 -0.16054,3.53198 4.97688,6.26123 -1.12381,2.56871 -3.37143,0.80272 3.05034,3.05034 -0.48164,1.60544 -4.65578,-0.48163 -0.64218,2.24763 -8.6694,1.44489 -4.17415,-1.28435 -4.81633,0.96327 -1.12381,-2.24762 0.32109,-3.05035 -1.60544,3.53197 0.64217,4.81634 -2.72925,4.97687 -2.72925,2.40817 -1.60545,-1.28436 -0.96326,2.72926 -1.76599,0.32108 4.49524,6.58232 -0.96327,2.08708 1.92654,0.96326 3.37143,-1.76598 1.4449,0.80272 3.21088,3.53197 1.60545,0.16055 -0.48164,4.17415 2.40817,3.37143 -2.56871,0.32109 -3.37143,0.96327 -2.56871,3.69252 1.92653,1.60544 -3.05034,2.56871 -1.76599,0 0.32109,1.28435 -3.85306,2.24763 -0.80273,4.97687 -1.44489,4.49524 z", + + // Liège + "60000" : "m 431.99972,308.254 0.91542,3.60292 3.53197,1.76599 2.08708,-0.96327 0.48164,-2.40816 4.81632,1.28435 -0.48163,2.08708 0.80272,0.48163 -1.12381,2.72925 2.56871,0.48164 2.56871,-1.12382 -0.48163,-2.5687 -1.92653,-0.48164 1.12381,-1.60544 -0.64218,-1.60544 5.61905,-2.08708 -0.96326,-4.81633 -1.92653,-2.72925 3.53197,-2.72926 1.4449,-3.05034 9.7932,-4.49524 -1.4449,-1.76599 3.21089,-6.58232 2.40817,-0.16054 3.53197,3.05034 5.61906,-3.85307 -1.28436,-3.85306 -3.69252,-2.40816 -2.56871,-4.49525 3.05035,-4.49524 -0.64219,-2.24762 0.96327,-2.72925 -0.80272,-3.85307 -3.37143,-0.80272 0.16054,-4.81633 -4.3347,-2.56871 -1.92653,1.12381 -2.56871,-1.60544 -5.61905,1.92653 -1.92653,-4.49524 -2.40816,-0.96326 1.44489,-2.08708 -2.72925,-0.96327 0.16055,-3.05034 2.72925,-1.60544 2.8898,-4.3347 2.08707,0 0,-2.72926 3.21089,-3.53197 -1.60544,-0.96327 -2.08708,0.96327 -5.94014,-1.28436 -0.48163,1.92653 -1.4449,-0.64217 0.48163,-2.08708 -1.60545,-1.4449 2.24763,-1.28435 -2.8898,-4.3347 -2.56871,-1.60544 -2.56871,-6.58232 -2.72926,-0.96327 -2.72925,0.96327 -3.37143,-1.60544 -0.80272,2.24762 -0.64218,-2.56871 0.80272,-2.56871 -2.8898,-2.40817 -4.65578,0.80273 -1.4449,-1.766 -5.61905,2.56872 -2.72925,-0.32109 2.08707,3.05034 -3.05034,4.97688 -3.05035,-1.76599 -5.13741,0.96326 -2.40817,-4.49524 -3.69252,-1.92653 -2.40816,1.12381 -4.17416,-0.48163 -3.21088,-1.92653 2.40816,-4.81634 -1.28435,-2.40816 0.80272,-1.28436 -0.64218,-0.96326 -4.97688,0.96326 -0.32108,3.53198 -6.10069,2.24762 -4.81633,2.08708 -3.21088,0.96326 -0.64218,3.05035 -4.65579,3.21088 -0.48163,-1.4449 -1.60544,-1.4449 0,1.76599 -1.92654,1.76599 -3.37143,0 -2.72925,-2.40817 -0.80272,-2.40816 -0.80273,0.80272 -3.69251,-0.16054 -4.3347,3.21089 -0.16055,2.24762 -3.85306,-2.56872 -2.08708,2.72926 -2.24762,-0.16054 -0.32109,-1.76599 -1.12381,1.60544 -6.58232,-0.80272 0.16055,1.92653 1.4449,2.08708 -1.76599,1.12381 -4.17415,-0.96327 -3.53198,-2.72925 -0.64218,2.08707 -3.85306,-0.96326 -2.40816,-2.56871 0,-3.21089 -3.05035,-1.92653 -0.48163,3.05034 -2.08708,0 0,4.01361 1.76599,0 0.64218,2.40817 -2.56871,0.48163 0.48163,6.10068 -1.28435,1.4449 -0.64218,3.21089 0.16054,3.85306 2.08708,2.08708 0,1.60544 3.37143,2.72926 2.72926,5.94014 0.48163,3.53198 3.85306,0.48163 2.08708,4.17415 4.3347,-1.12381 -1.60545,1.92653 1.12381,3.05035 2.24762,-0.96327 -0.32109,2.08708 2.08708,2.24762 0.96327,-1.92654 1.76599,-0.48163 4.81633,8.02722 0,2.56871 -1.28436,0.80272 1.4449,3.05034 5.7796,0.64218 -0.80272,3.53198 2.40816,2.40816 6.42177,-4.49524 1.60545,1.76599 2.08707,-1.28436 1.01266,0.79654 4.40901,-3.9766 -1.24874,-1.70283 -1.81635,0 0.11352,-2.27044 2.27044,-1.47578 4.99497,4.20031 4.99497,-3.06509 1.36226,3.85975 3.74623,3.06509 4.20031,-2.49748 5.44906,5.6761 4.54087,2.49748 6.35724,-0.79465 0,1.13521 -1.36227,0.90818 0.68113,7.15189 3.74623,1.5893 -3.85975,6.6978 3.63271,1.70283 1.47578,-2.72453 4.99497,1.24875 0.56761,1.47578 0.45409,-1.47578 7.37893,-1.0217 1.13522,-2.38397 -4.20032,0.22705 2.61101,-7.83302 -2.27044,-1.24874 0.90818,-3.74623 7.94654,3.0651 1.24874,-1.24874 2.83805,1.47578 2.38396,-0.34056 0,1.13522 3.74623,1.70283 0.90817,11.46572 -0.56761,8.62767 2.49748,-0.68113 -1.13522,4.99497 z", + + // Brabant Flamand + "20001" : "m 322.13954,211.67725 -0.64218,2.08707 -3.85306,-0.96326 -2.40816,-2.56871 0,-3.21089 -3.05035,-1.92653 -2.72925,-2.8898 -2.8898,0.32109 -5.29796,4.01361 -2.24762,-1.12381 0.32109,-3.85306 -1.60545,-0.80273 -1.12381,1.76599 -6.58232,0.32109 -0.32109,-2.24762 -2.08707,0 -1.76599,-3.85307 -5.61905,-2.08707 -3.69252,3.37143 -5.94015,0 -2.88979,-1.76599 -0.32109,2.72925 -0.64218,1.76599 2.24763,3.53198 -1.766,2.40816 -4.33469,0.48164 -0.96327,-4.3347 -2.56871,3.37143 -4.65578,1.28435 -0.64218,2.24763 -3.37143,-2.24763 -0.16055,-2.88979 -3.85306,0.16054 -4.81633,3.69252 -5.61905,0.64218 0.16054,2.8898 -2.8898,-0.16055 -1.76599,-3.05034 -1.12381,0.80272 0.64218,1.4449 -1.92653,0 -2.72925,4.3347 -3.53198,-0.64218 -1.92653,2.08708 -4.01361,-3.05035 -2.56871,-0.48163 -3.85306,-3.85306 -2.08708,0 0,2.08707 -2.24762,0.80273 -3.69252,0.96326 -1.92653,-0.64218 -3.21089,2.24762 -8.99048,2.56871 -5.7796,-1.92653 -3.53198,-3.21089 0.64218,-4.17415 2.12704,0.8905 3.40566,0.45409 1.13522,-1.36226 -1.81635,-2.27044 0,-2.0434 1.81635,-3.85975 2.0434,0 -0.45409,2.27044 3.40566,0 0.68113,-2.49748 1.81635,2.0434 1.13522,-2.27045 2.95157,-0.22704 2.95157,-5.44905 0,-3.63271 -4.08679,0 2.95157,-7.03836 2.27045,-0.22704 0.68113,-2.72453 -2.27044,-2.95158 1.58931,0 1.5893,-5.22201 4.76793,2.49748 1.5893,-4.08679 1.13523,-1.13522 -2.0434,-3.85975 1.81635,-4.08679 3.85975,1.58931 4.99496,-4.08679 -1.5893,-2.0434 2.0434,-1.13522 0.45408,-2.95157 2.7165,-0.13193 0.48164,-1.28436 4.33469,0.64218 2.72926,3.53198 3.21089,0.64218 2.24762,-2.56872 -0.48164,3.05035 2.08708,0.64218 -0.16055,1.92653 3.69252,0.80272 3.69253,-1.60544 1.76598,1.60544 2.56871,-2.72925 4.17416,3.21088 3.21088,-2.08707 2.56871,2.24762 3.05034,-0.16055 0.80273,-3.53197 2.08707,0 2.56871,-1.60545 4.49524,-0.64218 0.64218,1.28436 1.4449,0.32109 -0.80272,3.53197 1.28435,-2.08707 2.72926,-3.53198 3.53197,0.80272 3.05034,-3.21088 2.40817,2.72925 0.16055,2.72926 3.69251,0 3.69252,-2.08708 3.53198,-0.80272 0.96327,-2.24762 3.85306,0 2.24762,-1.92654 1.76599,2.24762 3.05034,-0.48163 1.76599,3.21089 3.05034,-0.80272 1.60545,1.60544 2.5687,-1.76599 -0.48163,-4.65578 4.3347,0 4.49524,4.81633 -1.60544,1.44489 -1.60544,0 -1.12381,-0.96326 0.96326,4.49524 -1.4449,0 -3.85306,2.72925 0.32108,3.37143 -4.97687,3.37144 2.72925,5.45851 1.76599,-0.96327 1.76599,2.08708 4.97688,-2.08708 0.64217,1.76599 4.65579,0 0.96327,3.21088 -1.60545,4.17416 -2.08708,-1.12381 0.32109,1.76599 -1.92653,3.21088 -0.96326,7.06395 1.60544,0.16055 -1.4449,3.85306 -2.24762,-0.32109 0,5.45851 -1.12381,3.53198 1.92653,1.60544 -1.76599,4.01361 z", + + // Brabant Wallon + "20002" : "m 260.16942,244.1072 -0.48163,-2.88979 4.17415,-2.40817 4.49524,1.76599 3.53198,-1.76599 -2.08708,-1.76598 -0.48163,-4.65579 2.24762,-0.80272 3.69252,2.5687 0.48164,-1.76598 2.5687,-1.4449 1.60545,4.01361 1.92653,-1.76599 c 0,0 2.72925,-0.80272 2.72925,-0.16055 0,0.64218 1.12381,2.08708 1.12381,2.08708 l 1.76599,-3.69252 1.76599,0 8.3483,-2.56871 1.44491,-1.12381 2.72925,0.32109 1.60544,-3.21089 2.40817,-0.64217 2.24762,1.60544 0.64218,-3.21089 1.28435,-1.4449 -0.48163,-6.10068 2.56871,-0.48163 -0.64218,-2.40817 -1.76599,0 0,-4.01361 2.08708,0 0.48163,-3.05034 -2.72925,-2.8898 -2.8898,0.32109 -5.29796,4.01361 -2.24762,-1.12381 0.32109,-3.85306 -1.60545,-0.80273 -1.12381,1.76599 -6.58232,0.32109 -0.32109,-2.24762 -2.08707,0 -1.76599,-3.85307 -5.61905,-2.08707 -3.69252,3.37143 -5.94015,0 -2.88979,-1.76599 -0.32109,2.72925 -0.64218,1.76599 2.24763,3.53198 -1.766,2.40816 -4.33469,0.48164 -0.96327,-4.3347 -2.56871,3.37143 -4.65578,1.28435 -0.64218,2.24763 -3.37143,-2.24763 -0.16055,-2.88979 -3.85306,0.16054 -4.81633,3.69252 -5.61905,0.64218 0.16054,2.8898 -2.8898,-0.16055 -1.76599,-3.05034 -1.12381,0.80272 0.64218,1.4449 -1.92653,0 -2.72925,4.3347 -3.53198,-0.64218 -1.92653,2.08708 -4.01361,-3.05035 -2.56871,-0.48163 -3.85306,-3.85306 -2.08708,0 0,2.08707 -2.24762,0.80273 -3.69252,0.96326 1.28435,3.85306 -0.64217,3.53198 0,5.77959 5.45851,1.60545 4.17415,-6.42177 2.56871,1.92653 0.32108,4.81633 5.13742,1.92653 0.32109,3.53197 3.21089,0.64218 2.8898,3.21089 3.85306,1.60544 0.32109,4.49524 3.53198,-3.85306 4.17415,0 8.99048,1.60544 -0.96326,4.81634 3.85306,-2.24763 1.28435,2.56871 7.70613,-2.56871 z", + + // Région de Bruxelles-Capitale + "04000" : "m 237.53267,203.1684 11.55919,-5.7796 -4.17415,-3.05034 0.80272,-1.76599 2.40817,0 -1.28436,-5.7796 -5.45851,-3.21088 1.92654,-2.08708 -0.48164,-3.21089 -3.85306,-2.88979 -2.72925,3.21088 -4.01361,-1.76598 -6.58232,4.65578 1.4449,7.54558 -4.17415,0.64218 -1.76599,3.69252 3.53197,1.60545 3.37144,-0.48164 3.21088,6.74287 4.81633,0.32109 1.4449,1.60544 z", + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/european_union/european_union.js b/lib/mapael-maps/european_union/european_union.js new file mode 100644 index 000000000..e153d78f7 --- /dev/null +++ b/lib/mapael-maps/european_union/european_union.js @@ -0,0 +1,87 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of the world by country focused on the European Union area +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:BlankMap-World6-Equirectangular.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + european_union : { + width : 755.125, + height : 530.81061, + getCoords : function (lat, lon) { + var xfactor = 10.2159; + var xoffset = 258.4616; + var yfactor = -13.5189; + var yoffset = 976.7300; + var x = (lon * xfactor) + xoffset; + var y = (lat * yfactor) + yoffset; + + return {x : x, y : y}; + }, + elems : { + "AZ" : "m 734.03,410.78 c -0.12,-0.01 -0.26,0.01 -0.38,0.03 -0.27,0.05 -0.56,0.14 -0.81,0.34 -0.15,0.12 -2.44,2.31 -2.44,2.31 -0.15,0.84 1.25,2.32 1.63,3 0.6,1.08 5.88,3.4 2.44,4.94 -1.84,0.82 -2.22,-0.26 -3.66,-0.72 -1.84,-0.58 -3.36,0.41 -4.84,-1.22 -2.34,-2.57 -4.4,-3.05 -7.56,-0.38 -0.03,0.84 3.22,3.08 0.53,2.47 1.7,1.59 4.71,1.59 5.25,4.41 -4.22,1.36 0.04,5.4 1.63,6.34 0.96,0.56 2.86,1.09 2.03,2.84 -0.83,1.75 -2.46,1 -3.78,1.56 2.68,1.17 4.24,5.14 7.28,5.31 0.68,0.05 1.42,0.39 1.91,0.88 0.59,0.63 -0.46,0.93 -0.69,1.41 -0.55,1.1 1.62,2.17 2.03,2.81 -1.86,0.24 -1.36,3.89 -0.81,4.78 0.63,-0.91 2.17,-3.08 3.13,-3.53 0.52,-0.26 1.69,-0.21 2,-0.88 1.09,-2.33 3.91,-3.54 5.81,-4.94 4.21,-3.13 5.41,-1.12 7.69,2.47 -4.14,1.59 -0.31,2.53 -0.38,4.75 -0.01,0.82 -2.21,1.3 -2.72,1.75 -1.41,1.26 2.95,3.57 3.5,4.06 0.9,0.77 1.32,1.9 2.19,2.66 0.03,0.03 0.09,-0.02 0.13,0 l 0,-46.38 c -0.04,-0.02 -0.08,0.02 -0.13,0 0.36,0.14 -5.22,5.24 -5.69,5.66 -0.92,0.84 -1.51,2.78 -2.69,2.81 -1.3,0.02 -2.63,-0.28 -3.78,-0.72 -1.3,-0.49 -1.91,-1.98 -2.31,-3.34 -0.29,-0.98 -1.43,-0.65 -2.03,-1.59 -0.6,-0.92 -2.64,-3.82 -4.47,-3.91 z m -16.16,29.56 c -0.74,0.05 -1.54,0.29 -2.19,0.44 0.86,3.24 3.41,5.47 5.56,7.63 2.59,2.57 5.63,2.74 8.88,4.03 -0.72,-1.05 -1.42,-5.51 -2.28,-6 -2.08,-1.21 -0.57,-1.55 -1.47,-3.28 -0.43,-0.82 -2.5,-0.29 -3.22,-0.06 -1.43,0.47 -2.07,-1.41 -3.41,-0.63 0.35,-1.86 -0.65,-2.21 -1.88,-2.13 z", + "SY" : "m 690.18,473.58 c -1.13,-0.14 -3.02,1.6 -4.46,2.12 -4.45,1.61 -8.66,-0.92 -12.83,1.06 -4.21,2.01 -7.95,3.97 -12.42,4.94 -1.75,0.38 -4.94,0.29 -6.48,-0.53 -1.34,-0.73 -2,-1.85 -3.65,-2.12 -2.24,-0.35 -4.5,0.64 -6.62,1.59 -2.05,0.94 -3.18,1.06 -5.27,1.41 -1.71,0.3 -1.55,-0.11 -3.11,-1.06 -0.58,-0.35 -1.64,-1.27 -2.43,-1.06 -1.04,0.28 -0.95,2.55 -1.08,3.35 -0.38,2.19 0.42,2.59 1.08,4.41 -1,0.05 -2.11,0.44 -3.11,0.18 -0.31,1.21 0.59,2.76 -0.54,3.7 -0.52,0.42 -1.87,1.94 -2.16,1.76 -0.4,-0.23 -3.17,-1.84 -3.24,-0.53 -0.11,1.75 -0.53,4.45 0.68,5.64 1.51,1.49 -0.05,5.23 0.14,7.23 0.23,2.34 1.08,5.38 3.92,3.7 2.06,-1.21 0.13,1.66 1.62,1.94 1.25,0.24 2.06,2.9 1.76,4.23 -0.52,2.36 -3.75,2.56 -2.16,4.94 -1.97,-0.66 -5.6,0.87 -3.38,3.35 -1.53,0.38 -2.9,3.3 -4.46,4.23 0.31,0.17 0.51,0.59 0.54,1.23 l 29.03,0 c 10.39,-6.41 26.15,-16.13 27,-20.1 0.54,-2.5 0.65,-6.95 1.08,-9.52 0.29,-1.71 1.34,-3.8 1.35,-5.47 0.01,-2.83 -3.25,-7.86 0.68,-10.23 1.82,-1.1 3.43,-0.98 5.13,-2.64 0.92,-0.91 4.23,-3.62 4.32,-4.94 0.16,-1.99 -0.27,-2.73 -0.95,-2.82 z", + "TN" : "m 356.41,472.88 c -0.92,0.06 -1.92,0.65 -2.7,0.88 -2.26,0.72 -3.81,1.5 -5.4,3.35 -0.74,0.86 -1.37,0.58 -2.3,0.88 -0.84,0.26 -0.61,1.45 -0.95,2.12 -0.94,1.84 -2.98,2.69 -4.19,4.23 3.38,0.8 1.08,5.08 0.81,7.4 -0.24,2.03 1.37,3.81 0.95,5.82 -0.47,2.2 0.07,2.14 0.54,3.53 0.44,1.36 -1.1,4.44 -1.35,5.82 -0.33,1.78 -0.93,3.64 -2.57,4.41 -1.74,0.8 -1.62,2.39 -2.97,3.53 -0.87,0.73 -1.93,1.14 -2.16,2.47 -0.15,2.59 0.29,4.97 1.49,7.23 0.6,1.12 0.18,2.42 0.81,3.53 0.3,0.53 0.74,0.96 1.22,1.23 l 37.27,0 c -0.84,-1.24 -2.87,-0.15 -3.78,-1.23 1.74,-0.19 0.08,-1.26 -0.41,-2.47 -0.33,-0.87 0.48,-1.82 -0.68,-2.29 -0.84,-0.33 -2.42,2.64 -2.97,1.59 -0.23,-0.42 -0.44,-2.42 -0.81,-2.47 -1.13,-0.18 -1.6,0.61 -2.84,0 -1.1,-0.56 -1.92,-1.54 -2.57,-2.64 -2.93,-5.04 1.62,-6.4 4.59,-8.99 2.99,-2.61 5.65,-7.16 4.86,-11.46 -0.63,-3.41 -0.55,-3.5 -3.24,-5.11 -1.78,-1.05 -2.94,-3.63 -2.84,-5.82 0.16,-2.9 4.51,-5.38 5.81,-7.93 0.67,-1.33 0.93,-2.97 -0.54,-3.7 -0.62,-0.31 -1.91,1.24 -2.3,1.59 -0.98,0.91 -2.05,2.1 -3.24,2.64 -0.88,0.4 -1.69,-0.78 -1.76,-0.71 0.78,-0.73 0.56,-1.84 -0.27,-2.47 -1.09,-0.84 0.09,-0.87 -0.27,-1.76 -0.82,-1.99 -1.49,-1.8 -3.51,-2.29 0.64,1 0.42,1.59 -0.68,1.59 -0.15,-1.08 1.19,-1.7 -0.14,-2.29 -0.28,-0.12 -0.64,-0.2 -0.95,-0.18 z", + "KZ" : "m 754.85,292.34 c 0.12,0.04 0.17,0.11 0.27,0.18 l 0,-0.18 c -0.1,-0.02 -0.17,0.03 -0.27,0 z m -10.4,2.47 c -0.47,0.03 -1,0.28 -1.49,0.71 -1.73,1.49 -0.9,4.1 -2.3,5.82 -2.04,2.59 -3.23,2.57 -3.78,5.99 -0.48,3.04 1.14,2.59 2.03,4.76 0.39,0.94 -0.59,2.26 -1.49,2.82 -1.77,1.07 -1.87,2.46 -2.7,4.23 -0.05,0.19 -0.08,0.37 -0.14,0.53 -0.05,0.17 -0.11,0.37 -0.14,0.53 -0.04,0.16 0.01,0.39 0,0.53 -0.03,0.14 -0.14,0.23 -0.14,0.35 -0.01,0.12 0,0.25 0,0.35 0.01,0.12 0.11,0.27 0.14,0.35 0.01,0.1 -0.04,0.09 0,0.18 0.04,0.09 0.08,0.28 0.14,0.35 0.04,0.09 0.08,0.11 0.14,0.18 0.07,0.07 0.19,0.11 0.27,0.18 0.08,0.07 0.18,0.11 0.27,0.18 0.08,0.05 0.16,0.11 0.27,0.18 0.11,0.05 0.16,0.13 0.27,0.18 0.12,0.05 0.27,0.13 0.41,0.18 0.12,0.05 0.26,0.14 0.41,0.18 0.13,0.05 0.26,-0.03 0.41,0 0.05,0.02 0.1,0.16 0.14,0.18 0.05,0 0.2,-0.02 0.27,0 0.05,0 0.08,-0.02 0.14,0 0.07,0.02 0.07,-0.02 0.14,0 0.07,0.02 0.2,0.16 0.27,0.18 0.07,0.02 0.2,-0.02 0.27,0 0.07,0 0.05,-0.02 0.14,0 l 0.27,0 c 0.08,0.02 0.07,0.16 0.14,0.18 0.07,0.04 0.2,-0.02 0.27,0 0.05,0.04 0.07,-0.02 0.14,0 0.05,0.04 0.07,0.16 0.14,0.18 0.05,0.04 0.08,-0.03 0.14,0 0.05,0.04 0.1,0.14 0.14,0.18 0.04,0.04 0.11,0.13 0.14,0.18 0.03,0.04 0.11,0.13 0.14,0.18 0.01,0.05 0.12,0.11 0.14,0.18 0.01,0.05 -0.03,0.13 0,0.18 0.01,0.07 -0.01,0.13 0,0.18 0.01,0.05 0.12,0.13 0.14,0.18 0.01,0.05 -0.01,0.11 0,0.18 0.01,0.05 -0.01,0.13 0,0.18 0.01,0.07 0.12,0.13 0.14,0.18 0.01,0.05 -0.01,0.13 0,0.18 0.01,0.05 -0.01,0.13 0,0.18 0.01,0.05 0.11,0.11 0.14,0.18 0.01,0.05 -0.03,0.13 0,0.18 0.01,0.05 0.11,0.13 0.14,0.18 0.03,0.04 -0.03,0.13 0,0.18 0.03,0.05 0.11,-0.03 0.14,0 l 0.14,0.18 c -0.01,0.02 -0.11,0.16 -0.14,0.18 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 0.03,0.16 0,0.18 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 0.03,0.16 0,0.18 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 -0.12,-0.02 -0.14,0 -0.03,0.02 0.03,0.16 0,0.18 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 -0.11,-0.02 -0.14,0 -0.03,0.02 0.03,0.16 0,0.18 l 0.14,0.18 c 0.04,0.07 -0.03,0.11 0,0.18 0.04,0.05 0.1,0.11 0.14,0.18 0.03,0.07 0.11,0.09 0.14,0.18 0.03,0.07 -0.01,0.11 0,0.18 0.03,0.07 0.12,0.28 0.14,0.35 0.03,0.07 -0.03,0.11 0,0.18 0.01,0.07 0.12,0.11 0.14,0.18 0.03,0.07 -0.03,0.28 0,0.35 0.01,0.07 0.11,0.11 0.14,0.18 0.01,0.07 -0.03,0.11 0,0.18 0.03,0.07 0.11,0.11 0.14,0.18 0.03,0.07 -0.03,0.28 0,0.35 0.04,0.07 0.1,0.13 0.14,0.18 0.04,0.07 0.08,0.13 0.14,0.18 0.04,0.07 0.08,0.13 0.14,0.18 0.08,0.09 0.19,0.13 0.27,0.18 0.07,0.07 0.22,0.14 0.27,0.18 0.07,0.05 0.08,-0.02 0.14,0 0.04,0.04 0.1,0.16 0.14,0.18 0.04,0 0.1,0 0.14,0 0.03,-0.02 0.11,-0.16 0.14,-0.18 0.03,-0.02 0.11,0.03 0.14,0 0.03,-0.02 -0.03,-0.14 0,-0.18 0.03,-0.04 0.1,0.03 0.14,0 0.03,-0.05 0.11,-0.14 0.14,-0.18 0.04,-0.05 0.1,-0.13 0.14,-0.18 0.04,-0.04 0.08,0.05 0.14,0 0.04,-0.04 0.07,-0.13 0.14,-0.18 0.05,-0.04 0.07,-0.14 0.14,-0.18 0.08,-0.04 0.18,0.03 0.27,0 1.82,-0.61 3.83,0 5.4,0.53 3.17,1.08 4.87,3.98 6.48,6.88 l 0,-35.61 c -0.88,0.3 -1.75,0.43 -2.3,0.35 -2.37,-0.34 -5.1,-8.5 -8.37,-8.29 z m 10.67,50.42 c -0.72,0.06 -1.26,0.39 -1.35,1.06 -0.08,0.59 0.49,1.22 1.35,1.76 l 0,-2.82 z", + "IQ" : "m 695.04,472.52 c -0.21,0.07 -0.32,0.23 -0.41,0.35 -0.67,1.05 -0.75,2.42 -2.03,2.82 -0.78,0.24 -1.46,-0.1 -1.62,0.71 -0.38,1.99 -3.1,4.01 -4.46,5.29 -1.71,1.63 -4.01,1.07 -5.54,2.64 -2.2,2.24 -0.98,6.65 -0.14,8.82 0.91,2.36 -1.39,6.69 -1.62,9.34 -0.25,3.15 0.43,5.86 -1.62,8.64 -1.43,1.91 -3.63,2.96 -5.4,4.41 -5.43,4.48 -11.22,7.82 -17.69,11.11 0.19,0.91 0.46,1.75 0.68,2.64 l 74.67,0 c 0.43,-2.08 -3.29,-6.15 -4.19,-6.88 -1.11,-0.89 -1.88,-2.11 -2.84,-3.17 -1.13,-1.24 0.22,-1.74 0.81,-3.35 0.58,-1.52 -0.06,-1.91 -0.81,-3 -0.75,-1.07 0.11,-1.86 0.41,-3 0.6,0.45 1.38,0.71 2.16,0.71 -0.09,-1.24 -1.02,-2.18 -0.54,-3.53 0.43,-1.19 2.07,-1.03 2.16,-2.29 0.25,-2.82 2.88,0.3 2.97,-2.47 0.07,-2.1 -2.91,-3.86 -1.49,-6.17 0.83,-1.38 2.65,-0.88 3.24,-2.64 -1.06,0.33 -5.38,0.21 -6.21,-0.35 -1.61,-1.07 -1.69,-2.68 -4.05,-2.12 1.47,-2.85 -1.51,-4.79 -2.57,-6.52 -0.55,-0.89 -0.22,-2.04 -0.54,-3 -0.27,-0.8 -0.99,-0.59 -1.35,-1.23 -0.75,-1.33 0.04,-5.2 -2.03,-5.29 -1.63,-0.07 -2.55,2.31 -4.05,2.47 -2.14,0.23 0.69,-4.88 -2.7,-4.23 -1.46,0.3 -2.05,1.44 -3.65,1.06 -0.98,-0.23 -1.9,-0.76 -2.84,-1.06 -0.95,-0.31 -5.26,-1.17 -6.75,-0.71 z", + "IR" : "m 713.54,440.08 c -0.52,-0.04 -0.83,0.39 -0.95,1.41 -0.46,4.13 -1.64,2.55 -4.59,3.7 0.68,1.03 2.28,3.4 1.62,4.76 -0.59,1.21 1.01,1.7 1.22,2.64 0.43,2.17 -0.49,5.95 1.89,6.88 -1.26,1.15 -2.1,3.5 -2.43,5.11 -0.23,1.07 1.99,1.78 2.57,2.12 1.86,1.08 0.44,3.27 1.22,4.94 0.76,1.64 2.17,0.58 1.89,3 -0.09,0.68 1.03,5.66 1.35,5.82 1.27,0.63 1.4,1.26 1.08,2.82 -0.55,2.68 5.16,3.77 3.11,7.76 2.36,-0.58 2.44,1.07 4.05,2.12 1.06,0.7 2.45,-0.04 3.65,-0.18 0.98,-0.1 1.53,0.84 2.57,0.53 -0.62,1.84 -2.91,1.34 -3.51,3 -0.71,1.94 1.03,3.31 1.62,4.76 0.35,0.87 0.29,2.31 -1.08,2.29 -1.45,0 -1.48,-0.5 -1.89,1.41 -0.25,1.31 -1.88,0.88 -1.89,2.64 0,1.01 0.34,2 0.41,3 -0.78,0 -1.56,-0.27 -2.16,-0.71 -0.28,1.07 -1.21,2.46 -0.27,3.35 0.95,0.89 1.14,1.6 0.54,3 -0.66,1.52 -1.79,1.77 -0.68,3 0.74,0.84 1.38,1.66 2.16,2.47 0.87,0.9 5.47,5.4 4.86,7.58 l 25.25,0 0,-71.4 c -1.11,-0.67 -1.94,-1.88 -2.97,-2.64 -1.54,-1.15 -5.31,-3.6 -1.22,-4.58 2.2,-0.52 -2.56,-4.07 1.49,-5.64 -1.46,-2.27 -3.6,-5.5 -6.75,-3.35 -1.22,0.82 -2.25,1.89 -3.38,2.82 -0.98,0.82 -2.52,1.23 -3.11,2.47 -0.5,1.08 -4.56,4.41 -5.67,4.76 -2,0.61 -4.69,0.33 -6.62,0 -3.11,-0.52 -4,-1.69 -5.94,-3.88 -0.95,-1.07 -2.02,-1.93 -2.97,-3 -0.99,-1.12 -1.44,-2.76 -2.57,-3.7 -0.61,-0.5 -1.37,-1.01 -1.89,-1.06 z", + "RU" : "m 584.66,30.53 c -0.25,0.03 -0.51,0.1 -0.75,0.19 0.38,0.4 0.84,0.82 1.22,1.22 -0.79,0.09 -2.79,-0.45 -3.25,0.72 -0.28,0.73 -2.51,1.84 -2.97,1.56 -1.53,-0.96 -4.08,-1.21 -5.94,-1.56 1.19,0.96 1.69,2.63 -0.53,3.16 -2.26,0.56 -4.14,-0.58 -5.94,-1.41 1.04,3.76 -4.69,3.95 -7.03,4.41 -2.71,0.52 -0.97,1.86 -2.69,3.19 -2.29,1.78 -5.9,1.94 -8.5,2.81 1.42,0.17 5.4,0.37 2.56,2.63 -2.44,1.99 -2.43,3.99 -0.16,5.66 2.18,1.59 5.17,1.54 7.31,3.19 1.69,1.29 4.91,2.85 6.06,4.56 2.56,3.8 -11.46,6.68 -8.09,12 3.23,5.16 8.61,8.49 9.72,15.16 -1.37,0.07 -2.7,0.47 -4.06,0.72 1.65,0.51 0.35,3.2 -0.66,4.56 -0.95,1.28 1.62,1.73 1.88,2.66 -2.85,0.61 -2.81,3.64 -0.53,4.41 1.5,0.51 3.42,-0.24 4.06,1.59 -5.2,2.17 1.31,4.66 3.09,5.63 3.94,2.13 -3.14,6.07 -5.28,7.06 4.73,2.89 9.55,5.6 14.06,8.63 1.88,1.26 2.6,1.75 1.22,4.06 -1.59,2.68 -2.6,4.51 -5.28,6.34 -5.71,3.92 -10.56,8.88 -16.06,13.06 -5.29,4.02 -11.51,6.66 -16.34,11.28 2.38,0.04 3.7,0.15 5.94,-1.25 0.83,-0.52 2.89,-1.85 3.66,-0.88 -1.33,0.73 -0.71,2.38 -0.53,3.34 -0.8,-0.44 -1.66,-0.92 -2.44,-1.41 1.23,1.66 4.43,4.37 6.34,5.13 2.75,1.07 5.42,-0.95 7.97,1.06 0.12,0.1 5.54,3.34 2.97,3.34 -2.81,0 -5.23,-1.85 -8.09,-1.94 -2.49,-0.07 -3.44,2.84 -5.69,3 -1.27,0.09 -2.57,-1.71 -3.63,0 -0.32,0.51 -0.51,1.2 -1.22,1.22 -1.18,0 -3.26,-2.34 -3.13,0 0.05,1.12 0.99,1.66 0,2.81 0.79,0.33 1.69,0.87 1.91,1.78 -2.87,-0.04 -2.93,1.83 -4.19,3.88 -0.9,1.47 -3.19,2.28 -3.38,4.06 -0.17,1.8 1.24,3.27 0.69,5.09 -0.31,1.03 -0.83,2.04 0,2.84 1.02,0.98 1.64,3.68 2.97,3.88 -3.86,2.85 -5.91,4.5 -0.97,6.88 2.13,1.03 0.88,5.11 -0.66,6.88 2.64,-0.31 4.33,3.35 5.25,5.47 0.35,0.8 0.18,6.13 1.75,5.47 2.73,-1.14 3.61,1.47 6.34,0.88 1.27,-0.28 2.83,-0.22 3.94,0.34 1.18,0.61 0.37,1.37 0.41,2.47 0.09,2.69 7.15,-1.4 8.78,-0.88 1,0.35 7.05,3.31 7,4.22 -0.12,1.89 -0.92,2.94 0,4.78 0.46,0.91 1.05,2.5 -0.25,3.34 -2.24,1.4 2.37,5.1 3.09,6.69 0.74,1.64 1.63,3.39 3.25,4.25 1.19,0.63 3.33,0.33 3.5,2.09 0.11,1.07 -1.83,3.37 0.69,2.84 1.78,-0.38 2.26,-0.28 3.91,0.16 2.83,0.75 0.22,1.16 1.63,2.31 0.88,0.75 2.79,1.45 2.97,2.81 0.13,0.91 -5.16,3.79 -6.22,3.88 -2.95,0.26 -4.92,-2.79 -8.09,-0.34 -1.53,1.19 0.48,2.83 1.22,3.53 1.49,1.4 0.97,1.35 1.06,3.34 0.16,3.01 0.6,6.32 3.53,7.41 2.37,0.87 4.54,-0.58 4.72,-3.38 2.84,0.21 4.22,1.15 7.16,0 2.67,-1.05 4.31,0.96 6.63,0 2.45,-1.01 3.55,2.47 4.03,4.06 0.51,1.71 2.88,2 3.38,3.72 -1.1,0.65 -2.56,0.16 -3.38,1.41 -0.39,0.63 2.83,4.21 0.94,5.28 1.41,0.52 5.03,1.83 6.63,1.06 2.49,-1.22 2.9,2.06 5.13,1.94 -0.84,1.29 0.52,5.18 0.81,6.53 0.48,2.25 1.92,3.3 4.19,2.09 2.05,-1.12 3.02,0.17 4.47,1.06 0.2,0.12 2.87,1.59 2.97,1.59 2.69,-0.14 5.53,-3.31 8.5,-3 1.71,0.19 2.15,3.06 2.97,4.25 0.9,1.31 2.79,1.41 3.25,3.16 2.83,-1.57 1.85,-2.81 4.72,-1.06 1.5,0.87 5.58,2.89 7.16,1.25 0.82,2.41 2.83,1 3.91,2.63 0.76,1.15 2.22,1.68 3.66,1.59 0.99,-0.07 1.24,-1.09 2.28,-0.53 -1.96,1.7 1.75,5.61 -2.41,7.25 -1.07,0.44 -2.09,0.54 -1.5,1.94 0.74,1.82 2.7,-0.72 2.56,1.75 -1.25,-0.42 -3.75,0.92 -3.25,2.66 0.16,0.59 4.18,2.03 1.78,3.69 0.4,0.38 0.88,0.5 1.47,0.34 0.07,1.47 -1.77,6.24 -3.38,6.38 -1.69,0.16 -3.44,-0.54 -5.13,-0.19 -1.49,0.3 -2.97,-0.93 -4.19,0.88 -0.6,0.89 -1.12,1.45 -2.16,1.75 -2.02,0.59 -4.81,4.41 -2.44,4.94 -1.78,1.45 -0.51,2.74 1.22,1.97 0.41,-0.18 0.73,-0.31 1.09,-0.53 -0.23,0.21 -0.52,0.4 -0.69,0.69 2.04,0.24 4.18,-1.23 6.22,-1.59 2.57,-0.45 1.02,2.43 3.09,1.78 -1.73,1.43 -4.7,3.2 -7.03,3.53 -4.66,0.65 -1.16,0.54 -2,2.81 -1.41,0.1 -2.31,-0.64 -3.78,-0.19 -1.34,0.4 -2.52,0.76 -3.78,0.19 0.54,3.34 2.37,2.77 4.44,4.22 0.82,0.58 3.92,2.78 3.38,4.25 -1.11,0.07 -2.09,-1.9 -3.22,-1.41 -0.95,0.4 -1.11,2.57 -1.78,3.34 -0.05,-0.77 -0.1,-1.54 -0.13,-2.31 -1.47,0.91 -2.3,7.14 -4.31,5.66 -0.21,0.77 -0.13,3.9 0.94,1.06 0,1.19 0.75,2.29 0,3.53 -0.75,-0.26 -5.57,-0.82 -5.25,0.16 -1.33,-1.31 -4.2,-3.32 -5.28,-0.53 0.38,-0.3 0.8,-0.46 1.22,-0.69 -0.05,0.96 0.43,1.59 1.34,1.59 -1.06,0.63 -2.31,0.64 -2.97,1.94 2.87,1.43 6.04,1.03 7.56,4.41 0.75,1.68 5.49,2.96 4.19,0.88 2.14,0.66 2.91,3.25 4.72,4.41 1.96,1.24 4.5,1.72 6.5,3 4.57,2.9 7.07,8.24 11.75,10.94 0.46,-5.47 11.23,-0.54 13.34,0.53 1.69,0.86 3.63,1.44 5.53,1.75 1.78,0.3 3.3,-0.41 5,-0.34 1.22,0.05 1.98,1.01 3.25,1.06 1.15,0.04 2.33,-0.25 3.25,0.5 1.11,0.91 9.25,4.94 7.81,6.38 2.89,2.61 9.33,-4.54 10.81,0.34 0.54,-2.54 3.8,-1.66 4.59,-0.34 1.35,2.22 2.58,0.6 4.44,1.75 1.19,0.75 -0.07,2.46 -0.13,3.69 -0.07,1.21 2.42,2.27 3.25,2.66 3.12,1.43 7.08,1.68 9.19,4.41 0.91,1.19 1.67,1.75 2.81,2.47 1.23,0.77 0.8,2.81 2.16,3.53 1.13,0.59 3.58,1.73 5,1.06 0.79,-0.35 1.62,-2.3 2.31,-3 1.43,-1.43 3.12,-2.37 4.31,-4.06 1.26,-1.8 -0.25,-2.38 -1.22,-3.69 -1.13,-1.52 -1.67,-3.36 -2.97,-4.78 -1.13,-1.24 -2.68,-2.4 -3.38,-4.03 -0.75,-1.77 -1,-3.46 -2.56,-4.59 -1.11,-0.82 -0.33,-3.55 0.81,-4.41 -2.64,-0.52 -0.02,-6.07 1.06,-7.59 -1.8,-1.35 -2.27,3.23 -2.28,4.41 -1.89,-0.3 -0.27,-1.43 -0.13,-2.81 0.16,-1.43 -0.66,-2.57 -1.22,-3.69 -0.95,-1.87 -1.8,-2.84 -3.53,-3.91 -1.3,-0.8 -3.63,-1.26 -3.09,-3.5 0.38,-1.56 3.77,-2.76 2.84,-4.41 0.2,0.4 0.4,0.68 0.66,1.03 1.93,-4.39 6.2,-8.37 3.53,-12.5 1.38,0.02 1.85,1.38 2.28,2.47 -0.11,-0.98 0.04,-2.1 -0.66,-2.81 1.18,0.38 2.06,1.29 3.09,1.94 -0.01,-2.57 1.93,-0.98 3.5,-1.78 0.78,-0.4 1.25,-1.17 2.16,-1.06 -1.06,-1.87 0.91,-1.09 2.31,-0.53 l 0,-2.81 0,-7.22 c -0.8,-0.48 -1.33,-0.9 -1.09,-1.25 0.24,-0.36 0.63,-0.5 1.09,-0.53 l 0,-6.69 c -1.93,-3.33 -3.54,-6.74 -7.69,-7.59 -1.23,-0.26 -3.96,-0.82 -5.16,0.53 -1.42,1.59 -2.12,-2.8 -2.69,-3.5 0.42,-0.26 0.8,-0.46 1.22,-0.72 -1.33,-1.52 -0.86,-2.7 -3.09,-3.34 -1.25,-0.35 -2.87,-0.8 -3.38,-2.13 -0.95,-2.5 1.63,-6.14 3.75,-7.59 2.95,-2.01 -1.46,-3.64 -1.47,-5.44 -0.01,-3.92 1.11,-5.36 4.19,-7.41 1.94,-1.26 -0.33,-6.24 3.78,-6.19 3.56,0.04 4.69,6.26 7.44,7.75 0.82,0.44 1.99,0.26 3.09,-0.16 l 0,-10.41 c -0.08,-0.05 -0.2,-0.16 -0.28,-0.19 0.08,0.02 0.2,-0.02 0.28,0 l 0,-231.47 c -1.38,0.01 -2.67,0.19 -3.5,0.69 -1.94,1.17 -3,-0.13 -4.59,1.06 2.05,1.19 -0.01,2.88 -1.09,4.75 -1,1.75 1.49,3.01 -1.47,4.41 -1.15,0.56 -3.74,0.17 -5,0.38 -2,0.31 -4.81,0.11 -6.75,1.41 0.54,-0.42 1.12,-0.8 1.63,-1.25 -2.46,-0.18 -6.04,0.83 -7.84,-0.69 -1.29,-1.08 -1.44,-3 -2.97,-3.88 -1.62,-0.91 -4.53,-0.39 -5.53,-2.13 -1.23,-2.12 1.82,-3.11 3.63,-3.53 -0.04,-0.47 -0.09,-1.12 -0.13,-1.59 4.92,-1.56 9.3,-0.09 14.19,-1.41 -0.4,-3.46 -3.87,-4.49 -6.22,-6.34 -2.59,-2.05 -4.2,-3.16 -8.09,-3.53 -4.07,-0.37 -9.24,1.05 -12.97,0 -1.81,-0.51 -5.13,-2.47 -7.44,-0.53 2.89,0.98 6.55,2 8.91,3.72 1.41,1.03 -1.19,3.61 0.97,3.88 -2.06,0.33 -1.43,1.03 -0.56,1.75 -2.28,0.1 -0.95,1 -1.47,2.31 -0.42,1.08 -1.22,2 -1.91,3 -0.86,1.28 -2.39,3.65 -0.81,4.41 2.25,1.05 4.62,0.49 6.09,2.81 0.83,1.31 -0.57,4.03 1.34,4.59 -5.05,1.49 -5.21,8.13 -3.91,10.75 -1.3,-1.36 -1.42,-3.64 -3.66,-4.06 -1.19,-0.21 -3.53,-0.09 -3.91,1.75 -0.47,-0.21 -0.8,-0.47 -1.09,-0.88 0.96,-0.75 2.03,-1.2 3.13,-1.41 0.16,-2.27 -3.62,-2.91 -5.41,-3 -2.81,-0.12 -3.98,-0.24 -6.5,-1.06 -2.49,-0.8 -4.63,1.18 -6.75,3 -2.6,2.24 -5.13,2.88 -8.09,3.53 -3.01,0.66 -5.07,2.52 -7.81,4.06 -1.5,0.86 -5.54,1.89 -5.81,4.06 -0.27,2.08 3.87,4.11 5,5.44 1.69,1.91 2.88,4.1 3.38,6.72 -1.53,-0.51 -4.9,-1.63 -6.63,-1.25 -2.61,0.58 -3.84,0.86 -6.06,-0.16 -2.34,-1.07 -4.95,-2.03 -7.84,-1.78 -1.82,0.16 -4.57,2.43 -4.59,0 1.04,0.09 2.22,-0.45 3.09,-1.22 -4.47,1.22 -6.23,-2.93 -9.84,-3.72 -1.38,-0.3 -3.86,-1.81 -5.25,0.19 -1.51,2.13 -1.84,2.81 -4.75,2.66 1.61,2.96 4.8,4.64 7.16,6.88 1.11,1.05 2.99,0.8 4.59,0.34 2.06,-0.58 2.96,0.69 4.59,1.22 -1.8,1.82 2.76,5.94 -3.25,5.31 -1.65,-0.16 -2.48,1.61 -4.72,0.88 -2.37,-0.75 -4.95,-0.99 -7.28,-1.78 -1.92,-0.66 -2.85,-2.47 -4.47,-3.5 -0.86,-0.54 -0.97,1.26 -1.75,-0.19 -0.33,-0.59 -0.93,-1.06 -1.63,-1.25 -1.89,-1.01 -3.44,0.81 -5.25,-0.16 -1.46,-0.77 -2.87,-1.91 -4.47,-2.47 0.46,-0.4 0.89,-0.83 1.34,-1.25 -0.4,-0.31 -0.82,-0.58 -1.22,-0.88 0.55,-0.31 1.06,-0.6 1.63,-0.88 -1.78,-0.12 -1.27,-2.57 -3.09,-2.81 2.26,-2.12 -1.88,-3.82 -2.69,-4.94 -0.83,-1.14 4.67,-2.69 3.38,-5.31 3.46,0.89 -1,-4.17 -1.78,-4.75 -3.36,-2.47 -8.69,-3.29 -13.09,-3.53 1.39,-0.45 3.69,0.11 3.53,-2.09 -1.7,0.33 -5.45,-0.15 -7.03,-0.53 1.69,-0.8 3.47,-0.83 5,-0.38 -1.33,-1.73 -4.04,-0.18 -5.94,-0.69 1.47,0.26 2.91,-1.18 4.31,-0.53 -1.12,-1.1 -2.92,-1.1 -4.47,-1.41 1.13,-0.24 -3.23,-2.34 -4.44,-2.13 0.54,-0.47 0.96,-0.92 1.47,-1.41 -1.98,-1.63 -4.72,-1.23 -7,-2.28 1.71,0.28 3.78,-0.7 5.38,0 1.69,0.74 3.73,0.94 5.69,0.88 -3.92,0.14 3.25,4.21 4.19,4.56 1.11,0.42 3.49,-0.68 4.19,0 1.04,1 2.51,1.37 3.78,-0.16 -0.95,2.36 2.61,0.87 3.38,3 0.08,0.23 4.61,-0.49 5.53,0 4.31,2.26 8.81,3.12 14.03,3.34 6.16,0.28 11.17,2.51 17.16,3.16 5.39,0.58 10.3,-0.27 15.94,-1.56 5.17,-1.19 8.82,-2.95 13.38,-6.34 3.01,-2.27 6.74,-6.78 2.56,-7.94 -0.86,-0.24 -1.15,-3.34 -1.22,-4.25 -0.19,-2.31 -1.11,-1.7 -2.72,-2.63 -1.8,-1.05 -4.16,-0.67 -5.53,-2.31 -1.22,-1.45 -2.95,-2.82 -4.84,-3.5 0.25,0.47 0.46,0.92 0.66,1.41 -4.69,0.56 -8.96,-2.1 -12.28,-4.25 0.4,0.38 0.72,0.64 1.09,1.06 -4.7,-0.87 -7.62,-4.4 -12.03,-5.81 -5.14,-1.64 -10.35,-3.37 -15.25,-5.47 -4.39,-1.87 -9.03,-0.29 -13.63,-1.06 -1.97,-0.33 -3.75,-1.36 -5.81,-1.41 -1.86,-0.05 -4.11,0.65 -5.81,0 -0.83,3.45 -4.46,2.37 -6.22,4.94 -0.67,-2.17 3.22,-2.06 4.47,-2.81 -0.94,-0.3 -2.57,-0.9 0,-1.25 -1.81,-0.37 -1.17,-0.54 0.25,-1.22 -1.18,-1.8 -3.95,-0.91 -5.78,0.16 0.43,-0.47 0.84,-0.9 1.22,-1.41 -1.55,-0.04 -3.07,-0.39 -4.59,-0.53 -1.35,-0.12 -2.57,0.82 -3.94,0.91 0.98,-0.35 1.96,-0.8 2.97,-1.06 -1.53,-0.87 -3.33,-1.24 -4.97,-1.94 0.27,-0.51 0.63,-0.87 1.06,-1.25 1.19,1.82 9.2,3.79 10.41,0.19 -2.12,-0.96 -4.65,-0.23 -6.75,-1.41 -1.06,-0.59 -2.66,-1.49 -4.19,-1.59 -0.25,-0.02 -0.5,-0.03 -0.75,0 z m -109.69,198.31 c -1.86,0.09 -2.92,2.91 -4.34,3.88 -1.77,1.19 -3.82,0.97 -5.75,1.22 -1.45,0.17 -1.33,0.71 -1.53,2 -0.34,2.25 -1.77,3.82 -3.59,5.09 1.87,-0.34 2.63,-3.38 4.06,-3.53 1.38,-0.16 2.82,0.05 4.19,0.16 -1.15,1.4 -2.57,0.99 -4,1.69 -0.98,0.49 -0.24,1.22 -1.28,1.66 1.76,0.17 3.55,0.75 5.41,0.81 7.14,0.24 14.96,0.68 23.91,-0.03 -0.74,-0.28 -2.19,0.1 -2.34,-0.31 -0.18,-0.51 -0.44,-1.38 -0.13,-2.19 0.16,-0.93 0.12,-0.79 0.5,-1.72 0.51,-1.25 0.89,-1.86 0.41,-2.5 -0.91,-1.37 -1.63,-2.11 -2.44,-2.44 -1.21,-0.49 -3.34,-0.07 -5.56,-0.19 -1.63,-0.54 -6.58,-3.65 -5.5,-1.25 -0.15,5 -3,2.72 -7.06,2.72 1.25,-2.01 3.35,-3.49 5.06,-5.06 z M 459.75,241.03 c -0.02,0 -0.04,-0 -0.06,0 l 0,0.03 c 0.02,-0.01 0.04,-0.02 0.06,-0.03 z m 194.03,97.28 c 0.15,0.01 0.29,0.02 0.47,0.03 -0.48,-0.03 -0.99,0.19 -1.47,0.38 0.17,-0.07 0.35,-0.33 0.53,-0.38 0.15,-0.04 0.31,-0.04 0.47,-0.03 z", + "DZ" : "m 332.24,476.4 c -0.65,0.14 -0.5,0.94 -1.22,1.59 -1.75,1.54 -4.35,0.91 -6.08,-0.35 -0.83,-0.61 -4.29,-2.43 -3.78,0.35 0.28,1.56 -4.5,1.83 -5.27,1.94 -2.38,0.31 -3.29,3.68 -6.08,1.41 -2.18,-1.78 -2.84,-2.38 -5.67,-2.29 -3.39,0.1 -6.65,-0.52 -9.86,0.88 -0.55,0.24 -4.39,0.21 -4.46,0.35 -0.35,0.65 -0.12,0.95 -1.08,0.35 -2.18,-1.33 -3.72,2.11 -6.21,1.94 -3.34,-0.26 -6.7,0.83 -9.99,1.23 -4.63,0.59 -12.45,2.92 -14.58,8.11 -1.58,3.88 -4.05,-0.46 -5.67,1.23 -0.62,0.65 -1.83,2.09 -2.84,1.23 -0.76,-0.65 -2,0.66 -2.7,1.06 -1.22,0.75 -1.8,1.88 -2.43,3.17 -0.7,1.47 -1.47,1.4 -2.7,2.12 -2.83,1.64 -3.75,2.64 -7.16,2.64 0.78,2.08 3.91,2.75 4.32,4.76 0.32,1.52 -0.78,2.53 1.08,3.35 -1.71,1.52 0.1,3.51 0.14,5.47 0.04,1.47 -0.45,2.94 -0.54,4.41 -0.11,1.57 1.44,1.72 1.22,3.35 -0.23,1.68 -1.08,2.92 -0.14,4.58 l 96.94,0 c -1.68,-1.44 -1.35,-3.93 -2.57,-6.17 -0.9,-1.63 -1.77,-5.41 -0.27,-6.88 2.57,-2.54 6.42,-5.51 7.16,-9.34 0.87,-4.69 1.51,-8.29 0.14,-13.05 -0.79,-2.73 2.78,-8.59 -1.08,-9.52 1.41,-1.78 4.74,-3.34 4.59,-6.17 -1.81,0.67 -3.92,0.18 -5.81,0.71 -0.94,0.28 -3.88,1.13 -2.7,-1.06 -1.42,0.07 -2.47,-1.04 -3.78,-1.41 -0.47,-0.12 -0.73,-0.05 -0.95,0 z", + "MA" : "m 201.67,492.62 c -0.23,-0.09 -0.61,-0.03 -0.95,0.18 -1.07,0.65 -2.33,1.2 -3.65,1.06 -1.06,-0.12 -1.68,3.66 -1.89,4.41 -2.2,7.78 -5.08,18.41 -11.75,22.74 -3.36,2.19 -7.13,3.65 -10.67,5.47 -1.39,0.72 -2.58,1.68 -3.65,2.82 l 71.56,0 c -0.48,-1.21 -0.59,-2.09 -0.27,-3.88 0.29,-1.68 -0.6,-2.67 -0.81,-4.23 -0.27,-1.92 0.25,-3.82 -0.14,-5.82 -0.24,-1.26 -0.65,-2.95 0.41,-3.88 -2.04,-0.91 -0.64,-2.29 -1.35,-3.88 -0.62,-1.4 -2.38,-2.02 -3.38,-3 -0.94,-0.93 -1.82,-2.57 -3.24,-1.76 -1.09,0.62 -2.44,0.45 -3.38,-0.35 0.18,0.57 -0.9,-0.02 -1.08,-0.88 -0.23,-1.07 -0.64,-1.4 -0.68,-2.82 -1.85,4.34 -6.13,2.21 -9.45,2.64 -4.01,0.54 -7,1.19 -10.67,-1.59 -1.75,-1.31 -2.75,-2.64 -3.65,-4.76 -0.35,-0.83 -0.66,-2.19 -1.35,-2.47 z", + "FR" : "m 281.41,286.25 c -2.56,0.12 -6.36,1.74 -7.25,2.75 -1.22,1.35 -1.77,8.61 -0.19,9.66 -1.8,-0.96 -3.53,2.45 -4.91,3.03 -2.38,1.01 -5.09,0.9 -7.44,2 -0.74,0.37 -5.1,3.23 -3.09,4.41 1,0.58 2.68,0.39 3.66,-0.03 -1.21,0.94 -3.08,0.9 -4.44,1.72 -1.49,0.91 -2.96,0.96 -4.69,0.63 -1.77,-0.35 -3.5,-0.95 -5.31,-0.94 -0.62,0 -1.67,0.63 -2.28,0.28 -2.13,-1.24 -0.4,-3.59 -1.94,-4.38 -0.99,-0.51 -2.28,0.59 -3.38,0.34 -1.02,-0.21 -1.98,-0.71 -3,-0.91 1.39,1.07 0.66,3.06 1.66,4.38 0.58,0.75 2.21,1.85 2.16,2.94 -0.11,2.22 -0.9,6.48 2.03,7.38 -1.34,0.23 -3.06,0.62 -4.44,0.25 -0.58,-0.16 -1,-1.55 -1.59,-0.63 -0.59,0.91 0.58,1.57 -0.16,2.13 -0.2,-2.01 -1.04,-1.02 -2.25,-1.25 -1.21,-0.24 -1.18,-1.34 -2.56,-0.5 -0.63,0.47 -1.27,0.88 -1.97,1.25 -1.02,0.45 -5.03,-3.31 -4.75,-4.38 -3.17,-0.4 -4.82,2.52 -7.66,2.44 -2.01,-0.05 -3.87,0.08 -5.81,0.5 -1.45,0.3 -4.44,1.6 -3.78,3.72 0.47,1.57 3.37,-0.21 4.25,-0.16 -0.53,1.12 0.18,1.15 1.06,1.19 -1.21,-0.07 -2.49,-0.09 -3.59,0.31 0.76,1.66 3.69,-0.03 3.34,2.41 -1.53,-0.28 -3.12,0.16 -4.44,0.84 2.16,0.45 3.27,1.54 4.63,3.34 2.84,-3.43 7.35,2.87 10.19,0.09 -1.13,1.48 0.28,1.79 1.06,1.06 -0.36,0.94 0.62,1.92 0.72,3 0.24,-1.98 2.75,-2.34 4.19,-1.38 -0.67,0.38 -1.38,0.56 -2.16,0.56 1.5,1.61 3.87,0.14 5.63,0.59 -1.13,0.19 -1.36,0.6 -0.69,1.25 -2.22,0.3 0.25,2.21 1.47,2.03 0.76,-0.1 1.36,-0.21 1.91,-0.28 -0.08,0.04 -0.17,0.09 -0.25,0.16 -0.54,0.4 -0.55,1.38 -0.94,1.91 3.64,0.17 0.85,2.01 1.25,3.69 0.44,1.84 2.17,2.68 3,4.25 0.94,1.77 5.3,4.41 7.03,3.06 -0.69,1.13 -0.39,6.65 0.81,7.91 -0.92,-0.49 -3.15,-0.82 -2.09,0.22 0.71,0.7 1.66,1.32 2.5,1.81 2.01,1.14 2.85,2.73 3.19,5.09 0.21,1.52 1.8,2.78 1.44,4.38 -0.03,-1.24 -0.97,-1.37 -1.38,-2.41 -0.19,-0.8 -0.37,-1.62 -0.56,-2.44 -0.74,-1.82 -2.31,-2.9 -3.88,-3.81 -1.38,3.55 -1.85,8.35 -1.41,12.22 0.08,-1.89 2.54,-1.68 0.78,0 -1.19,1.14 -1.37,3.67 -1.59,5.28 -0.58,4.08 -0.63,10.35 -4.78,12.03 0.75,0.94 4.07,0.4 4.03,1.63 -0.04,1.05 -0.97,2.11 0.44,2.72 0.66,-2.08 8.24,3.06 9.75,3.09 1.51,0.02 1.37,-0.58 2.94,0.88 0.88,0.8 1.52,0.5 2.5,0.31 1.77,-0.35 3.78,0.13 5.56,0.41 -0.63,-3.22 2.65,-2.35 4.28,-1 1.18,0.96 3.25,0.11 3.63,2.16 0.63,-0.93 2.05,-0.68 2.84,-0.13 1.38,0.98 -0.54,0.9 0.31,1.56 0.33,0.26 3.38,1.73 3.53,1.63 2.09,-1.68 3.54,0.8 5.75,0.16 0.92,-0.28 1.42,-1.18 2.47,-1.25 1,-0.05 1.9,0.5 2.91,0.19 -1.14,-1.91 -0.79,-2.91 -1.44,-4.91 -0.8,-0.49 -0.86,-1.03 -0.22,-1.66 0.28,-0.49 0.42,-1.02 0.44,-1.59 -0.31,-1.71 3.8,-3.39 4.97,-3.97 1.5,-0.75 3.32,-2.81 5.03,-2.72 1.41,0.07 2.6,1.03 4.03,1.03 2.48,0 3.51,2.62 2.84,-1.47 0.48,2.05 0.67,2.15 2.28,2.06 0.98,-0.05 1.58,-0.22 0.84,-1.38 0.84,-0.04 1.35,0.45 1.41,1.34 -0.58,-0.23 -1,-0.08 -1.25,0.41 0.08,1.61 4.28,-0.53 3.34,2.22 2.46,-0.24 3.78,1.61 5.84,1.44 1.37,-0.12 2.29,0.73 3.72,0.19 1.33,-0.51 2.54,-1.29 3.97,-1.5 -0.27,-0.38 -0.53,-0.75 -0.78,-1.16 3.82,-2.76 8.1,-4.91 10.31,-9.16 0.92,-1.77 1.29,-3.32 -1.19,-2.25 -1.97,0.84 -5.75,-1.53 -6.38,-3.63 -0.51,-1.71 2.85,-4.02 1.41,-5.31 -0.99,-0.91 -3.89,-2.25 -4,-3.84 -0.01,-0.23 4.67,-2.07 5.28,-3.44 0.91,-2.01 -2.54,-4.56 -3.47,-5.94 1.69,-1.5 2.88,-2.35 0.94,-4.59 -1.11,-1.28 -0.14,-3.92 -1.66,-4.38 -1.26,-0.38 -4.37,-0.52 -4.81,1.28 -0.44,1.82 -1.09,2.47 -2.88,2.72 0.39,-1 1.38,-1.43 1.59,-2.56 -0.09,-0.65 -0.27,-1.25 -0.5,-1.84 0.25,-1.77 2.08,-2.35 3,-3.59 0.54,-0.73 0.45,-1.93 1.09,-2.56 0.79,-0.63 1.59,-1.24 2.41,-1.81 1.35,-1.15 2.38,-2.73 3.56,-4.06 -1.58,0.28 -1.53,-1.53 -0.59,-2.09 1.31,-0.77 1.43,0.96 2.53,1.06 1.31,0.12 1.96,-0.69 2.81,-1.53 1.02,-1.01 -0.14,-2.37 0.31,-4 0.39,-1.33 0.04,-1.75 0.19,-2.78 0.21,-1.61 1.09,-3.08 1.44,-4.66 0.72,-3.27 2.91,-5.66 5.25,-7.84 -1.94,-0.35 -5.15,-0.59 -6.72,-1.81 -1.46,-1.17 -2.34,-0.14 -3.91,-0.28 -0.24,-0.02 -1.64,0.32 -1.56,-0.31 0.12,-0.28 0.03,-0.49 -0.25,-0.59 -0.51,-0.09 -0.75,-0.77 -1.22,-0.25 -0.19,0.31 -0.44,0.53 -0.75,0.69 -1.49,-0.4 -2.2,-2.06 -3.19,-3.13 -1.26,-1.35 -2.4,-0.99 -3.97,-1.13 -0.32,-0.04 -6.75,-1.13 -6.59,-0.66 -0.55,-1.64 -3.95,-3.92 -5.59,-3.97 -1.13,-0.05 -0.88,-3.94 -1.03,-4.81 -1.3,0.56 -1.54,2.16 -2.84,2.72 -1.31,0.54 -2.85,0.12 -4.19,-0.13 0.35,-1.5 1.13,-4.13 -0.91,-4.84 -1.07,-0.4 -2.83,-0.57 -3.81,0.13 0.12,-2.76 -1.57,-1.74 -3.28,-2.59 -1.33,-0.66 -0.83,-2.04 -2.53,-2.56 -1.81,-0.58 -1.18,0.04 -3.75,-0.63 -2.48,-0.65 -0.96,-3.53 -1.84,-4.28 -0.43,-0.37 -1.15,-0.48 -2,-0.44 z m -44.47,51.63 c 0.69,0.1 1.44,0.39 2.44,1.06 -0.79,-0.11 -1.62,-0.77 -2.44,-1.06 z m 116.66,58.19 c -1.43,0.18 -0.66,2.68 -1.94,3.59 -1.54,1.08 -3.38,1.31 -5,2.19 -0.8,0.44 -0.92,1.79 -1.53,2.44 0.21,0.61 0.51,1.19 0.88,1.72 -1.73,0.38 -0.92,2.15 0.34,2.5 -0.84,0.87 -0.63,2.67 0.84,2.28 0.09,0.96 -0.43,1.77 -1.16,2.28 0.66,0.4 1.37,0.75 2.13,0.94 -2.76,1.24 2.42,3.24 2.97,4.19 1.42,-3.31 3.04,-6.7 3.84,-10.25 0.76,-3.38 -0.82,-8.39 -1.06,-11.88 -0.12,-0.01 -0.22,-0.01 -0.31,0 z", + "BY" : "m 494.38,269.98 c 1.45,-1.73 2.65,-3.88 4.97,-4.32 2.29,-0.42 3.11,-2.22 3.04,-4.39 -0.16,-5.11 -4.15,-8.68 -4.55,-13.71 2.55,0.68 5.95,0.19 8.63,0.51 0.82,0.1 2.1,-0.54 2.92,-0.75 1.63,-0.42 1.3,-1.17 2.53,-2.17 0.78,-0.63 1.61,-0.03 2.4,-0.4 0.63,-0.3 0.98,-0.98 1.62,-1.28 1.26,-0.58 3.75,-0.73 2.79,1.38 0.64,0.23 1.73,0.14 2.21,-0.54 1.07,-1.47 -1.46,-1.98 -2.18,-2.29 2.89,-2.92 1.14,-6.03 5.01,-8.03 1.81,-0.93 2.2,-2.87 4.45,-2.66 2.45,0.24 1.39,-1.1 3.35,-2.06 -2.51,-0.72 -4.53,-1.75 -1.49,-4.97 1.94,-2.08 5.28,-2.83 7.58,-2.08 2.79,0.89 3.34,-3.15 6.11,-4.16 1.46,-0.54 3.31,1.14 4.09,0.54 1.57,-1.17 2.83,0.03 3.28,1.26 0.31,0.8 5.59,-1 7.1,0.63 0.54,0.59 -0.54,1.8 0.07,2.5 0.8,0.94 2.97,0.28 4.02,-0.21 3.68,-1.73 5.75,-1.07 8.53,1.22 0.75,0.63 3.17,1.03 3.03,2.38 -0.27,2.24 -0.48,2.71 0.29,4.72 0.51,1.33 -0.28,2.17 -1.07,3.24 -1.35,1.84 1.23,2.54 2.04,3.62 1.88,2.54 2.18,5.72 5.49,6.86 0.95,0.33 2.4,0.68 2.67,1.84 0.35,1.43 -1.53,2.59 0.31,3.15 0.6,-0.09 1.21,-0.24 1.8,-0.47 0.8,-0.16 1.73,0.51 2.5,0.59 2.44,0.3 0.92,1.17 1.86,2.64 0.5,0.79 1.77,0.86 2.44,1.49 1.78,1.71 -1.22,1.64 -1.98,2.12 -1.38,0.87 -1.69,2.22 -3.7,2.71 -2.5,0.61 -3.34,-1.63 -5.52,-1.59 -4.65,0.07 -2.33,3.59 -0.71,5.11 1.02,0.96 0.35,2.83 0.5,4.16 0.24,2.19 1.09,4.02 1.98,5.89 -5.25,0.17 -10.1,-0.45 -12.81,6 -0.63,1.52 0.7,2.83 0.91,4.25 0.4,2.54 -2.42,0.47 -2.96,-0.33 -1.55,-2.34 -3.97,-0.84 -6.36,-1.49 -0.99,-0.26 -2.83,0.61 -3.62,1.36 -0.78,0.75 -1.49,-2.78 -2.02,-3.1 -1.34,-0.79 -4.25,1 -4.22,2.75 -0.82,-0.4 -0.7,-1.78 -1.46,-2.12 -0.78,-0.37 -1.93,0.65 -2.59,0.1 -0.91,-0.77 -1.93,-0.7 -3.09,-0.58 -1.58,0.19 -2.18,-0.91 -2.6,1.05 -0.94,-0.26 -1.58,-1.08 -2.55,-1.29 -1.15,-0.26 -2.22,0.75 -3.07,-0.42 -1.63,-2.27 -4.77,-2.01 -7.42,-2.59 -2.71,-0.59 -5.85,-1.19 -8.67,-1.14 -1.8,0.03 -3.56,-0.58 -5.34,-0.4 -1.55,0.16 -3.07,0.77 -4.63,0.77 -3.39,0 -3.59,1.38 -6.07,3.34 -1.3,1.03 -2.14,0.33 -3.44,0.07 -1.66,-0.31 -1.02,0.68 -1.9,1.49 -1.3,1.21 0.51,-5.58 0.55,-5.74 0.72,-3.15 -3.94,-2.52 -5.02,-4.46", + "CH" : "m 318.25,353.4 c 0.32,-0.7 0.68,-1.38 1.06,-2.03 0.5,-1.05 -0.2,-1.91 0.13,-2.89 0.5,-1.43 2.08,-1.94 2.91,-3.06 2.22,-3.01 4.55,-5.6 7.06,-8.45 -2.29,0.38 -0.75,-3.27 0.95,-1.82 2.29,1.96 3.12,-1.33 5.22,-1.64 -1.09,1.35 4.45,0.31 5.47,0.37 1.97,0.1 3.75,0.16 4.17,-1.17 -1.5,0.59 -1.88,-0.94 -0.48,-1.33 0.63,-0.19 1.67,-0.24 1.71,0.51 0.05,1.31 3.09,0.66 3.59,0.7 1.81,0.07 3.86,0.8 5.24,2.06 1.81,1.68 -0.87,4.41 -1.18,6.26 3.48,-0.45 3.76,2.2 6.6,2.8 1.23,0.24 1.71,-2.2 3.05,-1.8 1.57,0.47 0.23,2.33 0.09,3.18 -0.11,0.66 1.26,2.75 -0.13,2.78 -1,0.03 -1.78,-1.89 -2.73,-1 -0.35,0.33 -1.53,2.22 -0.71,2.62 1.46,0.7 0.59,1.24 0.38,2.75 -1.42,-0.61 -1.47,-2.22 -3.27,-1.85 -1.74,0.37 -1.93,0.77 -3.36,-0.68 -0.13,-0.16 -1.7,-2.97 -1.9,-0.66 -0.19,2.12 -0.15,2.62 -1.57,4.22 -1.82,2.03 -0.16,6.8 -3.09,2.26 -0.66,-1.01 -1.42,-1.52 -2.32,-2.22 -1.38,-1.1 -0.86,-3.18 -2.21,-4.18 -0.76,1.03 -1.66,2.08 -2.91,2.43 1.38,1.68 -1.57,4.65 -3.24,4.48 -3.16,-0.31 -5.75,1.82 -8.2,-0.89 -0.87,-0.94 -2.06,-1.96 -1.8,-3.46 0.39,-2.1 -1.06,-2.68 -2.75,-2.48 -2.84,0.3 -3.01,3.85 -5.79,4.22", + "MK" : "m 466.73,415.58 c 1.33,-0.21 0.5,-1.36 0.52,-2.22 0.03,-1.17 2,-1.77 2.32,-3.22 0.29,-1.28 1.31,-1.89 2.32,-2.4 2.24,-1.14 1.77,0.35 3.74,0.42 -0.33,-1.71 0.76,-1.08 1.58,-1.94 0.47,-0.24 0.92,-0.23 1.37,0.03 1.06,0.33 1.22,-0.77 2.17,-0.94 1.07,-0.19 3.24,0.26 4.14,-0.44 1.11,-0.87 2.13,1.71 2.77,2.38 2.37,2.5 4.68,3.24 4.27,7.63 -0.09,0.93 0.67,2.8 -0.11,3.48 -0.96,0.84 -1.85,0.65 -1.71,2.36 -1.1,-0.3 -2.08,0.79 -3.38,0.51 -1.67,-0.35 -3.38,-0.16 -4.85,0.96 -2.92,2.22 -5.14,2.22 -8.61,2.83 -1.86,0.31 -1,-1.07 -2.59,-0.63 -1.94,0.52 -0.92,-1.28 -1.89,-2.13 -1.96,-1.71 -1.37,-4.23 -2.06,-6.68", + "UA" : "m 483.97,322.63 c -0.21,-2.43 1.88,-4.11 2.95,-6.14 0.6,-1.14 0.21,-2.33 0.83,-2.76 0.62,-0.42 2.24,-0.09 3.59,0.96 0.17,-0.91 -0.12,-1.43 -0.75,-1.91 -0.9,-0.68 -0.4,-2.22 -0.74,-3.24 -1.1,-3.32 1.69,-5.54 3.95,-7.84 1.88,-1.94 3.84,-4.22 6.14,-5.61 2.53,-1.57 5.55,-2.66 2.53,-5.72 0.66,-0.28 1.31,-0.59 1.97,-0.94 -2.69,-0.65 -6.05,-6.87 -5.64,-9.73 0.36,-2.45 3.35,0.09 4.72,-0.65 1.25,-0.66 2.41,-1.63 3.27,-2.8 1.07,-1.49 3.42,-1.1 4.84,-1.1 3.2,-0.02 6.43,-0.3 9.63,-0.44 2.85,-0.1 5.04,0.96 7.6,1.66 1.27,0.33 5.43,-0.1 6.24,0.98 0.86,1.12 1.66,2.31 3.34,1.75 1.45,-0.47 2.33,0.91 3.52,1.24 0.42,-1.98 1.02,-0.86 2.6,-1.05 1.17,-0.14 2.18,-0.19 3.11,0.56 0.64,0.54 1.8,-0.45 2.57,-0.1 0.76,0.35 0.64,1.71 1.46,2.13 -0.03,-2.4 2.8,-3.18 4.37,-2.24 1.66,0.98 1.26,3.73 4.09,1.75 0.8,-0.56 1.42,-0.59 2.22,-0.14 1.03,0.58 2.64,-0.65 3.84,-0.37 0.75,0.19 3.62,4.37 4.35,2.19 0.91,-2.71 -1.22,-3.59 0.62,-6.58 1.3,-2.12 3.48,-4.65 5.79,-3.39 0.38,0.21 2.01,-0.61 2.38,-0.7 1.19,-0.3 2.79,-0.17 3.92,0.02 2.57,0.45 5.28,1.1 5.53,-3.04 2.02,0.14 3.75,1.54 5.89,0.63 1.06,-0.45 2.2,-1 3.31,-1.12 1.35,-0.14 1.75,0.94 2.84,0.96 0.84,0 1.42,-0.82 2.24,-0.79 1.29,0.03 2.67,1.71 3.09,2.8 0.8,2.15 3.24,3.29 3.8,5.3 -0.91,0.54 -2.67,0.47 -3.4,1.19 -0.44,0.44 2.83,4.5 1,5.53 1.34,0.49 5.63,1.52 7.09,1.08 2.36,-0.72 2.49,1.99 4.61,1.87 -1,1.56 0.7,2.66 0.92,3.94 0.31,1.75 -0.63,3.22 0.76,4.67 1.39,1.49 3.01,-0.16 4.72,-0.31 1.98,-0.19 2.71,2.08 4.73,1.89 1.61,-0.16 0.92,1.43 3.08,0.17 1.77,-1.03 3.66,-0.72 5.52,-1.71 1.85,-0.98 2.73,1.28 3.34,2.48 0.95,1.92 3.56,2.4 4.11,4.55 2.81,-1.57 1.81,-2.66 4.68,-0.91 1.5,0.87 5.6,2.78 7.18,1.14 0.82,2.41 2.87,0.98 3.95,2.61 0.54,0.8 1.51,1.42 2.48,1.61 1.19,0.24 2.44,-0.94 3.44,-0.4 -1.77,1.54 0.95,4.71 -2.01,6.93 -0.86,0.63 -2.52,0.33 -2.04,1.87 0.62,2.01 2.79,-0.28 2.67,2.08 -1.25,-0.42 -3.71,0.89 -3.23,2.62 0.17,0.58 4.15,2.08 1.75,3.73 0.39,0.4 0.9,0.51 1.49,0.35 0.04,0.75 -1.61,4.46 -2.08,5.21 -1.43,2.26 -4.31,0.51 -6.39,0.93 -1.21,0.24 -2.09,-0.52 -3.34,0.07 -1.23,0.61 -1.49,2.12 -2.97,2.66 -0.86,0.31 -2.29,0.51 -2.68,1.63 -0.54,1.56 -1.17,2.87 0.19,3.15 -0.95,0.79 -0.27,2.06 -1.37,2.69 -1.34,0.75 -4.38,-0.02 -5.89,0.26 -1.5,0.28 -1.93,1.96 -3.46,2.08 -1.81,0.14 -4.06,1.14 -4.77,3.18 -0.63,-1.47 -2.55,-1.35 -3.86,-0.61 -2.22,1.26 -3.59,0.63 -5.85,1.33 -3.79,1.17 -5.04,6.61 -8.81,7.61 0.23,-0.68 5.87,-4.86 1.86,-5.44 1.15,2.2 -1.63,2.61 -2.97,3.5 -1.94,1.28 0.46,5.53 1.13,6.72 1.22,2.13 6.08,9.45 8.28,3.66 0.98,1.45 1.78,1.01 3.2,0.28 1.92,-1 3.97,-0.05 5.24,1.22 -1.74,0.24 -1.84,1.14 -2,2.66 -0.2,1.87 -1.78,1.8 -3.13,1.96 -1.47,0.17 -2.26,0.1 -3.48,-0.68 -0.75,-0.47 -1.75,-1.21 -2.77,-0.8 -1.02,0.4 -0.63,1.49 -1.25,1.73 -1.5,0.61 -2.49,2.13 -4.03,2.36 -2.1,0.31 -3.9,0.09 -5.69,1.8 -3.05,2.96 -8.52,6.49 -10.98,1.21 2.1,0.51 3.46,-7.22 0.19,-7.77 -1.82,-0.28 -2.71,-1 -4.15,-1.99 -1.35,-0.93 -2.77,-0.28 -4.29,-0.47 -2.3,-0.31 3.31,-4.04 4.15,-4.39 1.67,-0.68 7.3,-1.63 8.04,-3.69 -1.38,0.03 -1.43,-1.42 -1.34,-2.55 -1.7,0.96 -1.33,1.19 -3.24,0.12 -1.57,-0.87 -3.92,0.05 -5.76,0.09 -2,0.03 -3.26,0.28 -4.97,-0.8 -1.47,-0.93 -3.08,-2.43 -5.06,-1.84 5.92,-2.38 -1.29,-1.47 -2.45,-3.59 3.36,1.85 8.16,1.33 11.41,-1.03 -2.09,0.61 -4.94,1.66 -6.55,-0.23 -1.19,-1.43 0.09,-3.87 -1.23,-5.34 0.98,1.61 0.46,3.15 0.29,4.93 -0.12,1.36 -2.99,0.49 -3.74,0.98 -0.31,-0.8 -0.2,-1.57 0.33,-2.33 -0.9,0.21 -1.19,1.47 -1.7,2.12 -0.71,0.93 -2.41,0.05 -3.35,0.23 -4.01,0.72 -3.79,4.71 -6.34,7.26 -0.09,-1.21 -1.9,-4.88 -3.55,-3.71 0.4,1.71 2.87,1.85 3.16,3.57 0.36,2.01 -5.29,5.74 -6.72,6.51 1.31,-0.87 2.93,-1.8 3.47,-3.48 -1.43,0.12 -4.54,5.2 -4.49,1.63 -0.75,0.8 -1.94,3.38 0.32,2.31 -0.31,0.38 -0.59,0.77 -0.86,1.15 1.5,0.24 2.05,3.36 0.27,3.94 1.45,-4.36 -3.99,-2.62 -6.12,-1.98 -2.71,0.8 -4.18,2.4 -6.82,0.8 -0.44,-0.26 -3.15,-2.87 -0.91,-2.89 2.69,-0.02 1.84,-1.96 3.26,-3.66 1.57,-1.87 4.27,-3.29 4.17,-6.05 -0.11,-2.43 -1.07,-3.29 1.85,-4.39 0.17,0.7 0.36,1.4 0.56,2.08 1.96,-3.55 6.26,2.4 8.95,-0.35 -1.03,-0.33 -1.37,-1.12 -2.33,-1.56 2.36,-1.67 -0.04,-4.41 -0.62,-5.03 -2.1,-2.65 -2.52,-1.28 -2.87,-2.71 0.07,-0.96 0.88,-4.1 -1.33,-2.98 -0.63,0.31 -1.07,-3.2 -1.31,-3.66 -0.63,-1.19 -1.1,-2.4 -1.46,-3.85 -0.68,-2.61 -2.09,-0.44 -3.2,-2.38 -0.68,-1.21 -3.08,-2.97 -3.78,-0.63 -0.15,-2.08 -1.65,0.75 -1.84,-1.24 -2.34,1.1 -4.42,-2.68 -6.23,-3.48 -2.34,-1.05 -5.06,1.03 -7.65,0.79 -0.9,-0.09 -1.93,0.02 -1.73,1.29 -0.86,-0.16 -2.09,0.44 -2.89,0.73 -0.79,0.3 -1.88,0.58 -2.26,1.5 -0.87,2.1 -1.9,1.92 -3.98,2.12 -2.56,0.24 -5.28,-0.26 -7.31,1.94 -2.97,3.27 -4.18,-0.73 -6.72,-1.63 -1.22,-0.42 -2.67,0.03 -3.92,0.19 -1.58,0.21 -2.34,-0.35 -3.79,-0.61 -1.46,-0.26 -2.96,0.26 -4.23,-0.72 -2.12,-1.63 -2.55,0.44 -4.61,0.98 0.09,-2.48 -2.21,-1.5 -3.31,-2.87 -0.76,-0.98 -1.27,-0.54 -2.04,-1.17 -0.88,-0.72 -1.02,-1.78 -2.32,-2.1", + "IT" : "m 381.56,340.59 c -1.88,0.01 -3.78,1.34 -5.72,1.22 -1.38,-0.07 -3.14,-0.37 -4.28,0.72 -0.84,0.8 -1.85,2.97 -3.28,2.19 -1.1,-0.59 -4.11,-2.42 -4.28,-0.13 -0.03,0.52 1.05,3.84 -0.41,3.41 -0.67,-0.19 -1.46,-1.34 -2.19,-1.19 -0.72,0.16 -2.22,2.15 -1.09,2.69 1.27,0.61 0.47,1.68 0.31,2.75 -1.65,-0.7 -1.76,-2.08 -3.78,-1.75 -1.53,0.24 -1.58,0.45 -2.81,-0.81 -0.71,-0.72 -2.18,-2.46 -1.88,0.22 0.21,1.77 -0.61,2.36 -1.72,3.53 -0.98,1.01 0.07,3.85 -0.94,4.34 -0.92,0.47 -1.87,-2.13 -2.28,-2.66 -0.87,-1.08 -1.96,-1.74 -2.94,-2.69 -1.11,-1.08 -0.08,-2.37 -1.34,-3.31 -0.76,1.03 -2.05,1.18 -2.91,2.41 -0.5,0.71 0.57,1.39 0.16,2.13 -0.51,0.94 -1.97,2.59 -3.13,2.5 -1.74,-0.14 -2.62,-0.68 -4.44,0 -1.45,0.54 -2.02,0.67 -3.38,0.28 -0.72,-0.21 -2.11,1.52 -2.56,1.94 0.42,0.56 0.84,1.12 1.31,1.63 0.87,1 2.03,2.2 2.13,3.66 0.24,3.59 -3.76,2.11 -5.25,3.84 1.45,1.28 1.39,2.59 3.19,3.47 1.54,0.77 1.7,1.7 0.47,2.88 -3.27,3.11 1.59,6.91 4.59,6.56 5.55,-0.65 0.52,2.16 0.84,4.59 0.2,1.5 4.69,-0.57 5.28,-0.91 1.65,-0.96 2.56,-2.74 3.66,-4.28 3.12,-4.32 7.89,-2.86 11.63,-0.19 3.62,2.61 7.04,1.97 8.06,7.34 0.12,0.58 3.09,9.68 2.88,9.72 1.88,-0.28 6.92,5.47 5.66,7.69 2.17,-1.43 5,0.87 6.09,2.81 1.04,1.85 1.65,1.56 3.22,2.75 1.81,1.36 2.76,3.78 4.41,5.41 1.49,1.45 3.37,1.83 4.88,3.16 1.49,1.35 0.07,1.64 2.28,1.06 1.04,-0.26 1.97,0.25 2.94,0.56 1.82,0.58 3.18,-0.8 4.25,1.53 0.62,1.29 1.54,4.1 3.28,3.91 2.34,-0.26 2.67,1.52 1.5,3.38 2.24,-1.52 5.26,-1.45 6.38,1.47 0.51,1.35 -0.16,1.68 0,2.78 0.21,1.33 1.44,1.15 2.19,1.81 0.66,0.58 1.69,2.46 2.72,1.53 0.88,-0.77 1.49,-1.04 2.38,0.03 1.47,1.77 1.59,4.9 2.69,7 0.92,1.75 1.04,3.44 1.47,5.34 0.28,1.22 1.8,2.75 1.38,4.09 -0.48,1.56 -2.13,0.64 -3,1.84 -0.54,0.72 -0.2,1.7 -0.28,2.5 -0.23,2.36 -3.7,3.58 -2.63,6.19 0.71,1.71 1.91,2.36 3.41,1.19 1.58,-1.26 2.66,-3.1 4,-4.63 1.59,-1.8 2.24,-2 1.97,-4.66 -0.55,-5.4 6.51,-2.21 6.22,-6.69 -0.17,-2.66 -0.55,-4.51 -2.94,-5.72 -1.5,-0.75 -4.29,-1.33 -3.78,-3.69 0.44,-2.08 1.32,-4.3 2.47,-6.06 1.85,-2.83 2.45,-2.79 5.28,-3.31 0.33,1.08 0.8,2.97 3.47,2.69 3.32,-0.37 3.15,2.4 4.41,4.78 0.58,1.08 2,1.84 3.16,1.72 0.86,-0.1 1.04,-2.86 1.16,-3.47 0.51,-2.71 -1.62,-4.4 -3.22,-6.03 -2.38,-2.41 -5.49,-3.09 -7.94,-5.28 -2.42,-2.13 -5.07,-3.28 -8,-4.44 -1.85,-0.72 -5.46,-1.71 -6.78,-3.44 -1.23,-1.61 2.27,-2.81 2.59,-4.13 0.68,-2.76 -4.26,-2 -5.38,-1.84 -3,0.44 -4.41,0.02 -7.06,-1.31 -3.6,-1.8 -8.64,-6.07 -9.97,-10.25 -1.04,-3.27 -1.98,-6.99 -3.81,-9.84 -1.25,-1.98 -4.18,-2.85 -6,-4.09 -3.72,-2.55 -10.66,-8.13 -7.5,-13.97 1.58,1.91 3.36,-2.32 0.63,-3.13 -0.17,-0.05 -1.98,-2.8 -1.97,-3.34 0.92,0.23 0.74,-1.61 1.22,-2.06 0.7,-0.63 1.78,-0.53 2.59,-0.72 -3.07,1.7 1.88,0 2.47,-0.31 0.88,-0.47 1.79,-0.99 2.63,-1.56 0.78,-0.51 3.39,-2.59 3.69,-0.28 0.78,-0.3 4.92,-2.22 3.34,1.13 2.1,0.54 1.8,-1.37 0.44,-2.16 -1.03,-0.59 -2.46,-0.9 -1.31,-2.44 -2.4,-0.59 -0.54,-2.17 0.34,-3.25 -1.02,-0.24 -1.9,-0.86 -2.78,-1.41 0.71,-1.35 1.16,-1.8 1.34,-3.41 -3.99,-1.24 -5.74,-0.18 -9.75,-1.53 -1.33,-0.45 -5.92,-4.4 -3.53,-5.91 -0.27,-0.06 -0.51,-0.09 -0.78,-0.09 z m -29.91,79.5 c -0.83,0.06 -1.59,0.92 -2.19,1.47 -2.18,2.03 -5.71,6.1 -8.5,2.69 0.21,1.59 -0.5,2.97 0.44,4.44 0.51,0.8 1.2,1.4 1.56,2.31 -0.25,1.17 1.01,2.16 1.03,3.41 0.01,0.96 -0.9,2.08 -0.75,2.91 0.15,0.93 1.19,0.64 1.41,1.41 0.21,0.7 -0.06,1.44 -0.03,2.16 -0.35,-0.3 -0.71,-0.61 -1.06,-0.91 -0.12,2.06 -0.39,4.14 -0.31,6.22 0.08,1.68 1.26,2.91 -0.56,3.31 0.21,0.44 0.51,0.79 0.84,1.13 0.28,-0.38 0.56,-0.74 0.84,-1.13 1.02,2.2 1.04,1.6 3.09,1.97 2.16,0.4 1.9,-2.92 2.63,-4.13 1.39,-0.14 3.47,1.58 4.72,0.72 1.35,-0.94 1.25,-4 1.31,-5.47 0.09,-1.98 1.19,-6.14 0,-7.78 -1.22,-1.64 0.74,-2.4 1.13,-3.81 0.46,-1.63 -0.47,-7.06 -2.63,-6.97 0.35,-0.3 0.68,-0.61 1.03,-0.91 -0.9,-0.05 -1.22,-0.61 -0.84,-1.5 -1.06,0.58 -1.56,-0.77 -2.31,-1.28 -0.28,-0.2 -0.57,-0.27 -0.84,-0.25 z m 64.66,39.84 c -1.17,0.1 -2.73,0.96 -3.41,1.47 -1.39,1.05 -1.65,-0.11 -3.09,-0.13 -1.62,-0.02 -3.2,1.84 -4.88,2.16 -1.81,0.37 -3.6,0.05 -5.41,0.47 -3.16,0.72 -5.05,-3.86 -7.81,-2.22 -1.78,1.08 -2.82,2.48 -4.34,0.03 -0.79,1.66 -4.22,3.63 -2.56,6.25 0.76,1.21 2.57,1.65 3.84,1.69 2.79,0.07 4.83,2.96 7.09,4.34 2.21,1.36 4.63,1.47 6.91,2.5 2.16,0.98 2,3.87 4.22,4.63 1.58,0.54 3.55,0.7 5.19,0.28 -0.79,-1.71 0.85,-2.7 1.47,-4.03 0.74,-1.59 -1.52,-3.69 -1.84,-5.09 -0.36,-1.61 1.43,-4.61 2.03,-6.09 0.88,-2.12 2.24,-4.26 3.59,-6.06 -0.26,-0.17 -0.61,-0.22 -1,-0.19 z", + "AT" : "m 354.76,338.02 c 1.06,-1.99 0.84,-1.43 0.32,-3.22 -0.19,-0.63 8.2,-0.37 6.23,3.22 2.37,-0.07 2.44,-2.43 2.96,-4.29 1,0.96 3.32,1.05 4.59,0.93 -1.1,0.58 1.45,1.66 2.08,1.47 0.5,0.07 1,0.1 1.51,0.16 0.56,-0.4 1.07,-0.86 1.54,-1.4 2.08,-1.31 5.65,-2.2 8,-1.38 -0.03,-0.44 -0.09,-0.86 -0.2,-1.28 1.18,0.16 3.05,1.28 4.22,0.66 1.98,-1.03 2.06,1.49 3.58,2.12 1.63,0.7 1.84,-2.26 0.71,-2.85 -0.87,-0.47 -0.27,-1.75 -0.44,-2.48 -0.23,-1 -1.26,-1.4 -1.63,-2.29 -0.96,-2.29 4.62,-3.06 5.75,-3.87 0.98,-0.68 0.36,-3.85 2.14,-3.15 2.41,0.98 2.09,-0.4 2.71,-2.71 1.54,0.72 2.64,2.61 4.46,2.66 0.84,0.03 1.27,-0.91 2.01,-0.93 0.8,-0.02 1.58,0.63 2.29,0.93 0.03,-1.12 0.64,-2.22 1.71,-2.57 1.41,-0.45 1.55,-1.47 1.39,-3.32 0.94,-0.07 1.45,0.65 2.3,0.8 1.78,0.33 3.26,0.28 5.04,0.91 2.1,0.73 4.46,2.48 6.7,1.43 1.57,-0.73 5.75,0.3 6,2.17 0.13,1.12 0.25,1.63 0.2,2.61 -0.04,1.12 0.07,2.69 0.64,3.57 1.58,2.36 1.15,2.38 -0.04,5.39 -1.11,2.83 -4.69,-1.36 -5.41,0.65 -0.4,1.17 3.74,2.19 0.71,3.8 -2.13,1.12 -1.38,4.08 -0.76,5.96 -1.92,-0.45 -6.5,2.15 -4.72,4.64 -2.32,-1.59 -3.47,0.23 -5.72,0.44 -1.61,0.17 -3.62,-1.07 -5.06,0.24 -1.23,-0.73 -3.26,2.05 -4.18,2.55 -1.71,0.94 -4.65,-1.19 -6.34,-1.45 -4.39,-0.68 -9.31,0.07 -13.81,-1.43 -1.37,-0.45 -6.52,-4.34 -3.87,-6.02 -1.51,-0.33 -2.75,0.82 -4.17,1.03 -2.09,0.31 -3.84,0.02 -5.93,0.65 -1.26,0.37 -2.26,2.76 -3.55,2.36 -1.29,-0.4 -2.48,-0.72 -3.78,-1.07 -1.09,-0.28 -0.03,-1.54 -0.72,-1.64 -0.84,-0.16 -2.14,0.84 -2.73,1.4 -1.11,1.07 -3.11,-0.61 -3.2,-1.71 -0.05,-0.77 -2.41,-0.77 -2.87,-0.79 0.43,-1.05 -0.09,-2.05 -0.66,-2.89", + "SE" : "m 467.38,42.5 c -1.16,-0.02 -2.32,0.15 -3.5,0.66 3.8,1.59 0.38,4.68 -2,6.06 0.94,0.21 1.83,0.54 2.69,0.94 -4.07,2.92 -10.56,-0.02 -14.88,-0.44 -1.11,-0.1 -5.83,-1.46 -6.56,-0.09 -0.64,1.17 0.35,2.9 0.38,4.09 0.05,1.8 -3.02,2.92 -4.34,2.63 -2.63,-0.61 -4.2,-1.1 -6.88,0.13 -4.18,1.91 -5.59,5.93 -9.88,7.88 0.88,0.8 5.1,3.09 2.91,4.84 -2.68,2.12 -5.4,4.02 -7.81,6.5 -0.54,0.54 -2.18,1.01 -2.06,1.94 0.09,0.87 0.9,1.98 -0.19,2.63 -2.57,1.5 -6.26,1.84 -9.06,1.72 0.33,1.43 1.21,10.61 -0.66,11.63 -1.46,0.8 -3.21,4.13 -4.5,5.38 -1.41,1.35 -2.8,2.7 -4.06,4.19 2.46,0.82 5.06,1.21 5.06,4.34 0.01,3.15 -3.39,2.78 -5.63,2.66 -3.39,-0.17 -6.66,-0.4 -9.59,1.75 -1.11,0.84 -5.54,3.58 -4.63,5.16 0.82,1.38 -1.67,2.05 -1.5,3.66 0.16,1.33 1.11,2.04 1.5,3.25 0.31,0.96 -1.05,1.37 -0.88,2.47 0.2,1.19 -0.03,2.34 0.34,3.53 0.98,3.08 1.91,4.79 0.97,8.09 -0.79,2.75 -0.42,4.97 2.47,6.09 1.57,0.59 4.56,1.21 3.88,3.63 -0.99,3.57 -2.22,2.65 -4.78,3.75 -2.56,1.1 0.24,3.86 1.13,5.16 1.61,2.33 0.4,4.19 -0.22,6.78 -0.82,3.48 -6.29,2.09 -6.13,4.59 0.16,2.31 -2.43,2.89 -1.25,5.56 0.66,1.5 0.07,6.15 -1.94,6.69 -1.26,0.35 -1.76,-3.03 -3.53,-2.72 -2.05,1.42 1.35,7.79 0.38,10.06 0.9,-0.66 1.71,-0.39 1.91,0.75 2.05,-0.66 0.3,-2.16 2.5,-1.94 -0.6,0.87 -1.24,1.73 -1.91,2.53 1.51,0.21 2.3,-1.55 3.81,-1.22 -0.12,0.89 -2.5,8.1 -0.22,7.28 -2.36,0.84 0.21,1.03 0.53,2.63 0.19,0.93 0.11,1.92 0,2.84 1.85,-0.63 2.4,1.16 2.91,2.56 0.79,2.17 2.63,3.68 3.88,5.53 1.3,1.92 6.6,3.81 1.13,4.75 0.24,2.31 2.54,3.76 -1.44,2.31 -0.16,1.92 2.84,5.6 4.06,6.97 1.1,1.24 0.16,5.11 -1.03,5.16 3.71,0.21 6.73,0.07 10.44,-0.28 1.17,-0.1 5.12,1.89 4.91,-1.16 -0.11,-1.61 -1.81,-2.9 -1.03,-4.59 1.35,-2.96 3.23,-1.56 5.44,-2.47 -1.65,-2.2 1.6,-1.93 2.84,-1.84 2.26,0.16 4.66,-0.95 6.88,-0.25 3.7,1.17 4.8,-5.02 6.53,-7.16 2.69,-3.32 0.62,-6.66 3.13,-9.84 1.1,-1.4 -2.21,-2.48 -0.38,-3.22 2.06,-0.84 -0.81,-2.55 -1.34,-3.28 0.92,-0.23 1.79,-0.1 2.59,0.38 0.31,-1.03 -0.05,-1.59 -1.13,-1.34 4.45,-1.66 0.29,-5.76 -2.19,-6.66 1.66,0.09 3.24,0.89 4.88,0 -0.98,-2.1 -3.85,-2.32 -5.88,-1.81 2.55,-1.87 5.78,0.68 8.5,-0.75 -0.36,-0.33 -0.74,-0.67 -1.13,-0.97 1.69,0.17 3.31,0.28 4.91,-0.59 -0.16,-0.4 -0.33,-0.82 -0.53,-1.22 1.54,0.72 1.57,-0.1 1.25,-1.22 0.39,0.28 0.78,0.56 1.16,0.84 0.2,-1 -0.08,-1.79 -0.81,-2.41 1.3,-0.07 1.68,3.15 2.5,2.66 1.22,-0.75 1.48,-2.21 2.97,-2.75 1.06,-0.38 2.16,-0.46 3.19,-1 -0.98,-0.19 -1.63,-0.94 -1.78,-1.94 0.5,0.16 3.68,1.01 2.78,0.59 0.96,0.09 -0.23,-1.92 -0.91,-2.31 0.4,2.26 -4.13,1.36 -3.84,-0.13 0.66,0.65 1.45,0.87 2.38,0.63 -2.3,-0.82 1.37,-1.35 2.69,-2.31 1.49,-1.07 2.96,-2.12 4.81,-2.19 -0.44,-0.96 -1.12,-1.83 -1.91,-2.53 2.81,2.36 -0.58,-2.58 -1.28,-2.72 -0.96,-0.21 -5,-1.4 -1.91,-2.03 -1.18,-1.94 -7.03,-1.43 -5.91,-4.88 -1.69,0.33 -3.29,2.08 -4.19,-0.28 -0.2,-0.54 -3.15,-0.76 -3.75,-1.13 0.46,-0.21 0.92,-0.4 1.38,-0.63 -0.83,-1.61 -1.96,-2.7 -2.03,-4.66 -0.04,-1.33 1.07,-3.76 -0.66,-4.38 3.46,-0.37 -2.1,-2.57 1.44,-1.91 -0.92,-0.33 -3.26,-1.08 0.16,-0.75 -3.94,-0.82 3.34,-0.43 -1.25,-1.5 1.46,-0.4 2.79,0.34 3.72,1.38 0.71,-1.66 -1.64,-2.62 -1.09,-4.53 0.36,-1.24 1.3,-3.67 2.81,-3.88 -2.3,-0.14 -3.46,-1.79 -2.38,-4.03 1.73,2.26 5.66,0.33 5.38,-2.5 -0.19,-1.85 -2.41,-3.02 -1.84,-5.03 0.04,1.35 1.83,1.97 1.44,3.41 0.54,-0.14 4.41,0.19 1.22,0.5 1.27,0.66 1.77,-1.34 2.47,-0.97 1.26,0.66 2.49,-0.27 2.53,-1.69 -0.87,0.04 -1.77,-0 -2.63,-0.13 2.88,-2.08 6.24,-1.85 9,-3.69 0.78,-0.51 1.59,-2.42 2.41,-2.44 1.45,-0.05 1.82,1.09 1.56,-1.03 1.29,2.89 2.04,-0.39 3.66,-0.69 1.54,-0.26 3.82,-0.81 4.59,-2.44 0.28,0.44 0.55,0.89 0.78,1.38 -0.23,-1.43 4.37,-3.33 5.06,-4.94 1.22,-2.82 4.82,-4.2 7.41,-5.38 -0.6,-1.15 -6.97,-3.37 -3.31,-4.13 -1.04,-0.21 -1.89,-0.71 -2.53,-1.5 1.02,0.51 4.63,-1.9 5.31,-2.72 2.01,-2.41 -0.01,-2.98 -0.72,-4.47 0.82,-0.1 8.14,-0.71 4.13,-1.97 1.02,0.38 2.02,0.27 3,-0.38 -0.46,-0.24 -0.92,-0.52 -1.34,-0.81 1.13,0.54 2.29,1.03 3.59,1.06 -0.07,-1.14 -1.36,-2.36 -0.91,-3.56 0.98,-2.55 3.59,2.7 4.31,-0.91 1.63,1.12 3.28,1.56 5.34,1.56 -0.31,-0.45 -0.64,-0.89 -1,-1.31 2.21,2.31 7.14,0.81 10.06,0.41 -0.55,-3.17 -7.11,-6.52 -3.81,-9.81 1.61,-1.61 2.32,-4.27 0.78,-5.66 -0.68,-0.61 -3.58,-2.94 -2.44,-4.22 1.04,-1.15 3.17,-1.66 0.63,-2.38 -0.66,-0.17 -1.89,0 -2.06,-0.75 -0.35,-1.38 -0.26,-3.06 -0.06,-4.53 0.11,-0.77 1.76,-1.69 1.75,-1.78 -0.09,-0.91 -6.55,-4.87 -7.63,-5.38 -3.31,-1.56 -7.28,-1.71 -10.63,-3.25 C 477.21,46.85 472.4,42.6 467.38,42.5 z m -16.22,151.13 c -0.44,-0.05 -1.07,0.02 -2,0.22 -2.09,0.44 -4.12,2.19 -5.56,3.78 -1.27,1.42 -1.05,6.68 1.03,7.03 -0.71,0.77 -1.28,1.59 -1.75,2.53 1.02,0.21 1.88,-0.43 2.41,-1.34 -0.42,-1.36 4.36,-5.17 5.41,-5.91 -3.91,-0.4 3.52,-5.97 0.47,-6.31 z", + "TR" : "m 536,408.34 c -0.71,0.04 -1.53,0.38 -2.53,0.72 -0.6,0.21 -4.34,1.35 -4.31,1.75 0.08,1.45 -4.11,2.03 -0.81,3.22 0.91,0.33 1.18,1.29 1.31,2.22 0.24,1.59 0.76,1.6 -0.69,2.28 -2.65,1.26 -1.33,2.76 -1.97,4.75 -0.42,1.29 -2.06,2.92 -3.19,3.5 0.71,4.5 5.73,-0.48 7.66,1.38 1.19,1.14 -2.76,2.42 -3.13,2.56 -2.06,0.77 -3.09,3.06 -2.72,5.28 1.75,-0.72 3.51,-4.21 5.19,-5.47 1.97,-1.49 4.18,-2.03 5.94,-3.94 1.09,-1.19 1.83,-2.87 3.31,-3.34 1.22,-0.39 2.25,0.61 3.34,0.03 0.88,-0.47 1.56,-1.24 2.59,-1.19 2.06,0.14 4.87,2.29 6.97,1.47 1.11,-0.44 2.75,-3.16 1.06,-3.72 -4.37,-1.45 -7.5,-3.19 -10.03,-7.13 -0.67,-1.05 0.94,-1.38 -0.06,-2.34 -0.59,-0.56 -1.5,-0.65 -2.28,-0.56 -1.69,0.17 -2.48,1.23 -3.69,-0.38 -0.64,-0.87 -1.26,-1.14 -1.97,-1.09 z m 79.66,0.31 c -0.19,-0.01 -0.38,0.03 -0.59,0.09 -0.83,0.24 -1.24,1.33 -2.09,1.59 -1.86,0.58 -3.71,-0.25 -5.53,-0.25 -4.51,0 -7.87,-0.69 -12.44,0.63 -4.38,1.24 -7.58,3.32 -11.56,5.72 -1.38,0.82 -4,1.51 -4.81,3.06 -0.75,1.42 -1.09,2.36 -2.78,2.53 -3.66,0.38 -6.34,-1.71 -9.97,-0.88 -2.71,0.63 -5.21,-0.71 -7.81,-0.97 -2.37,-0.24 -4.77,1.8 -2.75,4.28 1.8,2.2 5.24,1.15 7.5,2.41 -2.79,0.7 -8.74,-0.69 -10.34,2.97 0.96,0.89 2.29,-7.4e-4 3.19,1.03 -2.2,1.94 -5.6,0.38 -8.06,0.63 -0.79,0.07 -3.95,0.63 -4.5,-0.31 0.03,-0.52 0.33,-0.88 0.88,-1.09 -1.06,-0.3 -2.16,-0.36 -3.25,0.09 3.13,2.15 -2.1,2.61 -3.63,1.56 -1.06,-0.73 -1.55,-1.49 -2.91,-0.53 -1.07,0.79 -2.39,-0.25 -3.53,0.34 -2.14,1.12 -3.01,4.24 -5.06,5.06 -0.82,0.33 -1.25,6.14 -1.47,7.31 2.93,1.05 5.93,-2.3 8.81,-0.66 -0.91,1.22 -2.05,2.22 -3.03,3.38 1.3,1.31 2.31,1.57 2.03,3.66 -0.28,2.06 1.56,0.16 2.03,2 -1.3,0.31 -1.94,1.73 -3.06,2.38 1.15,1.7 1.94,2.78 4,3.06 -1.15,2.55 -4.55,-0.56 -4.47,1.94 -0.96,-0.91 -0.63,-2.86 -1.22,-4.03 -0.29,-0.58 -1.92,-1.4 -2.06,-0.25 -0.2,1.4 2.26,4.96 -0.78,4.16 0,0.82 2.94,3.35 3.44,2.41 1.1,-2.12 1.67,-0.39 2.25,0.81 0.56,1.19 3.21,0.36 4.03,1.94 1.14,2.19 -0.6,3.01 -2.13,3.91 2.13,-0.1 1.55,6.48 4.03,3.28 -0.58,2.27 0.45,0.27 1.16,1.72 0.3,0.61 0.28,1.54 -0.03,2.19 -0.39,0.79 -4.81,-0.82 -2.63,2.22 1.66,-1.73 8.21,-1.61 10.06,-0.69 -0.66,0.77 -1.65,1.17 -2.16,2.09 -0.72,1.33 -0.53,0.88 -2.09,0.84 -1.54,-0.05 -3.54,0.03 -4.69,1.47 1.33,0.42 6.29,-0.73 7.41,-1.69 -0.07,0.91 -0.62,1.62 -1.44,1.81 0.8,0.19 1.01,0.68 0.63,1.47 1,-0.8 4.06,-2.98 4.41,-4.31 0.21,1.82 2.99,2.21 4.03,3.28 0.48,-2.33 3,-0.37 1.75,1.38 1.46,0.09 1.36,2.53 2.38,3.28 1.34,1 3.83,2.19 5.56,1.88 1.49,-0.28 3.15,-2.23 4.63,-2 0.58,0.09 1.3,1.45 1.97,0.72 1.23,-1.36 1.16,-4.46 1.28,-6.16 0.21,-2.97 3.64,-2.19 5.31,-1.88 3.19,0.63 6.03,2.43 8.84,4 2.56,1.43 3.31,4.87 6,6.22 1.75,0.89 3.92,1.03 5.88,0 1.07,-0.56 4.22,-1.39 5.28,-0.94 1.21,0.52 1.84,-1.08 2.69,-1.97 0.28,0.37 0.56,0.76 0.84,1.13 2.25,-2.83 5.04,-9.77 9.16,-7.41 1.73,1 3.41,2.32 5.41,2.72 1.59,0.33 4.07,-2.12 1.84,-1.88 1.42,-1.08 2.46,-0.84 3.66,-2.34 0.87,-1.08 1.91,-0.12 2.38,0.69 1.17,1.98 0.19,2.92 -1.31,4.25 -1.45,1.28 -2.95,2.33 -1.81,4.09 0.62,0.94 1.71,2.57 0.72,3.84 0.9,0.26 1.62,0.89 2.34,1.47 0.43,-1.24 1.81,-1.46 2.28,-2.59 0.4,-0.94 -0.12,-1.98 0.13,-2.94 0.99,0.26 2.09,-0.04 3.09,-0.09 -0.75,-2.1 -1.36,-3.83 -0.78,-6.28 0.58,-2.48 2.98,-1.94 4,-0.34 2.02,3.15 8.2,-0.25 11.03,-1.69 2.65,-1.33 3.84,-0.35 5.72,1.34 1.71,1.56 5.78,0.94 8.03,0.78 5.63,-0.44 11,-6.52 16.44,-5.72 3.03,0.44 5.58,0.47 8.72,-0.59 1.23,-0.42 4.24,-3.23 4.56,-0.91 0.38,2.69 2.48,1.07 3.66,-0.72 0.98,-1.49 1.91,-1.05 3.47,-1.06 2.17,-0.04 3.67,0.74 5.66,1.44 1.21,0.44 2.75,0.67 3.94,-0.38 0.66,-0.59 1.75,-0.63 2.34,-0.16 1.21,0.96 -0.56,3.54 1.16,4.19 1.31,0.51 2.85,-4.14 5.03,-2.28 -0.21,-0.7 0.43,-1.96 -0.06,-2.5 -0.44,-0.51 -1.72,-0.85 -1.81,-1.66 -0.2,-1.59 0.26,-3.21 -0.81,-4.44 -1.07,-1.21 -3.51,-0.86 -2.66,-3.38 0.42,-1.26 1.16,-3.07 2.16,-4 -2.49,-0.96 -1.38,-4.22 -1.91,-6.44 -0.36,-1.52 -0.92,-2.39 -1.13,-4.03 -0.12,-0.98 -1.1,-2.99 -1.63,-3.78 0.87,-0.35 3.43,0.24 3.88,-0.84 0.33,-0.82 0.25,-1.69 0.5,-2.53 0.84,-2.71 2.53,-1.12 3.63,0 -0.59,-2.13 -3.39,-5.44 -5.66,-5.53 -2.65,-0.1 -3.99,0.21 -6.34,-1.19 1.75,-1.17 -0.9,-3.76 0.47,-5.53 1.39,-1.78 0.01,-3.53 -1.75,-5.28 -0.54,-0.54 -0.55,-2.57 -0.88,-3.25 -0.51,-1.05 -2.25,0.18 -2.47,-1.09 0.56,-0.73 0.42,-1.13 -0.41,-1.25 -0.47,-0.42 -0.93,-0.87 -1.34,-1.34 -0.59,-0.61 -1.3,-1.29 -2.28,-1.09 1.23,-2.24 -1.93,-0.99 -2.75,0.5 -0.68,1.22 -2.9,0.22 -3.72,0.03 -0.55,-0.12 -1.11,-0.28 -1.66,-0.41 -0.87,-0.19 -0.96,0.92 -1.72,0.91 -1.23,-0.04 -2.13,-1.82 -3.5,-0.75 -3.4,2.66 -6.95,4.74 -10.75,6.56 -3.16,1.5 -5.21,0.71 -7.97,-0.41 -1.97,-0.8 -3.19,-0.48 -5.38,-0.25 -2.56,0.26 -5.35,2.15 -7.84,1.88 -1.78,-0.19 -4.34,-0.18 -5.47,-1.75 -1.42,-1.94 -1.95,0.76 -3.06,0.09 -2,-1.14 -4.32,-1.43 -6.03,-3.09 -1.42,-1.35 -2.93,-1.74 -4.56,-0.06 -1.25,1.28 -3.63,-2.47 -3.84,-3.59 -0.16,-0.84 -1.51,-4.41 -2.13,-1.47 0.21,-1.98 -1.06,-0.42 -2.38,-0.25 -1.19,0.18 -2.3,-0.12 -3.38,-0.47 -1.42,-0.49 -3.48,-2.91 -1.94,-4.66 -0.59,-0.05 -1.11,-0.37 -1.69,-0.41 z", + "PT" : "m 161.44,446.33 c -0.13,-0.38 -0.25,-0.75 -0.39,-1.14 3.35,-0.28 4.11,-6.19 4.89,-8.9 0.67,-2.38 0.94,-5 1.38,-7.49 0.12,-0.66 0.7,-0.79 1.03,-1.24 0.28,-0.38 0.11,-2.92 -0.54,-0.23 0.15,-2.92 0.68,-4.65 -0.13,-7.61 -0.27,-0.96 -2.04,-6.03 -0.21,-6.09 -2.57,0.87 -0.79,-3.34 0.56,-3.99 1.55,-0.73 3.79,-0.84 5,-2.17 -0.08,0.94 0.35,1.5 1.26,1.36 -0.54,0.45 -2.33,3.34 -0.44,3.29 1.54,-0.05 3.03,-1.35 4.58,-1.07 2.05,0.35 2.87,1.22 4.81,0.07 0.5,-2.34 3.67,-0.56 5.45,-0.75 2.1,-0.23 1.03,1.42 1.25,2.64 0.15,0.79 2.68,1.28 3.27,1.82 1.31,1.21 -5.89,7.75 -6.86,8.01 0.83,-0.23 0.88,5.88 0.94,6.33 0.08,0.84 0.54,2.4 0.21,3.17 -0.42,1.05 -1.88,0.63 -2.09,1.96 -0.13,0.79 2.68,4.01 0.39,4.83 -0.86,0.3 -0.27,1.54 -0.98,2.01 -1.03,0.68 -3.75,0.42 -4.9,0.07 0.44,0.93 1.27,1.45 1.97,2.12 0.88,0.84 0.16,1.77 0.79,2.85 0.64,1.12 3.03,2.89 2.71,4.2 -0.52,2.27 -2.75,3.41 -3.2,5.7 -0.39,2.03 1.58,5.77 3.82,4.95 -0.84,2.61 -2.51,1.96 -3.54,4.58 -0.52,1.28 -1.61,2.15 -2.08,3.48 -0.63,1.78 1.11,3.55 0.38,5.34 -1.11,2.69 -4.77,3.03 -6.99,2.05 -2.67,-1.15 -6.14,-1.28 -8.31,0.86 -0.4,-1.15 0.27,-2.73 0.63,-3.73 0.59,-1.61 0.36,-3.67 0.94,-5.09 0.7,-1.68 -0.46,-2.85 -0.47,-4.53 -0.03,-2.45 1.23,-4.11 -0.32,-6.58 0.92,2.59 1.63,-0.24 1.38,-1.24 -0.38,1.19 -3.8,1.57 -4.97,2.03 0.52,-1.08 0.08,-2.34 0.29,-3.5 0.43,0.17 0.86,0.37 1.27,0.56 0.04,-0.87 0.64,-1.03 1.18,-1.43 0.78,-0.58 -0.25,-2.1 -0.31,-2.87 -0.67,1.07 -2.89,4.9 -4.51,3.64 -2.08,-1.61 1,-6.24 0.87,-8.27", + "DE" : "m 343.05,233.35 c -1.07,0.47 -1.17,2.05 -0.94,2.99 -0.01,-0.65 0.56,-1.21 1.27,-1.49 -0.51,-0.17 -0.79,-0.68 -0.33,-1.5 z m 1.46,1.33 c -0.33,0 -0.64,0.07 -0.96,0.17 0.6,0.14 1.46,0.05 1.94,0 -0.32,-0.14 -0.63,-0.16 -0.98,-0.17 z m 4.21,0 c -1,-0.1 -2.05,0.07 -3.07,0.17 0.67,0.35 1.42,2.48 1.8,3.13 0.35,0.59 1.93,1.71 1.47,2.48 -0.74,1.26 -2.85,0.56 -3.68,2.15 1.13,0.49 2.24,0.26 3.38,0 -2.55,1.21 0.21,2.03 0.67,3.46 -1.09,-0.05 -1.49,0.65 -0.64,1.49 0.92,0.93 2.25,0.63 3.38,1 1.19,0.37 1.81,1.36 2.57,2.31 0.92,1.14 2.14,1.28 3.2,2.15 -2.75,-0.31 -3.48,-2.68 -5.61,-3.97 -1.39,-0.84 -3,0.16 -4.49,0 -1.73,-0.17 -3.42,-0.75 -3.67,1.64 -0.09,0.96 0.67,1.73 0.67,2.64 -0.25,0.7 -0.35,1.43 -0.47,2.15 -0.12,-1.19 0.16,-2.33 -1.14,-2.97 -1.53,-0.73 -2.05,0.73 -1.1,1.82 -0.83,0.23 -1.55,0.03 -2.25,-0.49 3.74,-2.62 -6.46,-3.04 -7.56,-2.82 -1.26,0.26 -3.35,2.34 -3.3,3.8 0.04,1.22 2.97,1.12 3.7,1.49 -1.78,-0.89 -2.29,6.17 -3.21,7.61 -1.1,1.7 -2.36,0.19 -3.47,1.49 -1.55,1.8 1.81,2.29 2.75,2.8 2.93,1.64 -3.08,3.99 -2.26,5.61 1.15,2.33 -5.45,1.85 -6.46,1.33 0.7,1.89 -0.76,0.12 -2.02,1 0.58,0.52 -0.01,0.61 0.03,1.15 1.45,0.51 3.55,3.53 2.8,5.11 -0.68,1.43 -3.63,4.36 -1.92,5.95 1,0.93 -1.23,2.05 0.24,3.31 0.92,0.8 2.79,0.82 1.61,2.48 1.53,-0.28 1.46,1.64 1.93,2.64 -3.88,0.75 -2.91,5.25 -0.01,6.73 2.32,1.19 -0.28,1.85 -0.25,3.39 0.04,1.78 1.9,2.36 2.71,3.73 1.51,2.59 1.92,0.72 3.58,1.29 1,0.35 0,1.52 1.41,1.14 0.54,-0.1 1,-0.1 1.55,-0.16 1.96,-0.72 2.36,0.37 4.18,0.96 1.65,0.54 3.88,1 5.59,1.29 -1.37,1.28 -2.72,2.52 -3.82,4.06 -1.27,1.75 -1.11,4.04 -1.94,5.98 -0.55,1.31 -1.8,9.48 0.09,8.26 -1.09,1.35 4.35,0.44 5.37,0.49 1.97,0.1 3.71,0.03 4.13,-1.29 -2.37,0.93 -1.59,-2.45 1.22,-0.98 1.98,1.03 4.73,0.38 6.75,1.63 1.23,0.75 9.83,1.57 8.12,4.69 2.37,-0.07 2.55,-2.34 3.07,-4.2 1,0.94 3.32,0.93 4.59,0.8 -1.11,0.58 1.73,1.43 2.29,1.45 1.3,0.03 2.14,-1.15 3.38,-1.29 2.38,-0.24 4.72,-2.2 7.35,-1.29 -0.03,-0.44 -0.03,-0.87 -0.13,-1.29 1.23,0.16 2.41,0.8 3.67,0.8 0.6,-0.21 1.21,-0.35 1.85,-0.47 0.67,0.07 0.94,1.47 1.5,1.94 1.69,1.38 1.67,0.68 2.16,-0.98 0.48,-1.64 -1.47,-1.01 -1.34,-2.43 0.15,-1.73 0.21,-1.64 -1.03,-3.08 -0.94,-1.07 -0.28,-1.91 0.8,-2.41 1.23,-0.61 5.25,-1.33 5.28,-3.25 0.05,-3.38 2.21,-0.44 3.43,-1.94 2.2,-2.73 -1.51,-4.62 -3.15,-5.67 -1.9,-1.21 -3.52,-2.89 -5.51,-4.04 -2.51,-1.47 -2.96,-4.79 -5.36,-6.16 1.92,-1.57 1.06,-2.85 -0.72,-3.9 -1.38,-0.8 -1.67,-2.27 -2.29,-3.46 1,-0.16 1.78,0.26 2.16,1.82 0.44,-4.36 5.71,-2.66 7.86,-4.46 3.46,-2.89 9.18,-4.48 13.28,-6.12 -0.36,-0.35 -0.7,-0.65 -1.07,-0.98 1.59,-0.38 2.44,-1.03 3.11,0.82 0.8,2.2 3.26,0.7 3.26,-1 0,-1.94 1.09,-3.24 0.84,-5.11 -0.17,-1.35 -2.37,-1.08 -2.46,-2.15 -0.11,-1.45 0.15,-1.94 -0.86,-3.15 -0.67,-0.79 0.52,-1.84 0.71,-2.64 0.75,-3.31 -2.09,-3.81 -1.26,-6.44 1.03,-3.22 -4.29,-3.17 -4.46,-5.77 -0.09,-1.64 1.65,-1.52 2.14,-2.82 0.54,-1.4 0.6,-2.87 0.27,-4.3 -0.42,-1.8 -0.9,-3.73 -2.76,-4.44 -1.15,-0.45 -3.03,-0.77 -3.16,-2.33 -0.07,-0.8 -0.36,-3.31 -1.53,-3.31 -0.71,0 -2.16,0.02 -1.78,0.84 -1.27,-0.77 -4.01,-4.18 -5.22,-4.3 -2.57,-0.23 -4.35,-0.02 -6.31,1.98 -0.28,-2.2 3.35,-2.36 4.7,-2.13 -2.63,-1.01 -3.03,-0.23 -5.01,1.31 -0.94,0.73 -2.99,1.56 -2.45,3.15 0.29,-2.68 -4.9,-0.3 -6.11,0.49 2.36,-1.17 -0.25,0.79 -0.66,1.98 -0.95,-0.91 -6.52,-2.19 -5.29,0 -0.23,-0.84 -0.79,-1.29 -1.59,-1.49 1.55,-1.63 2.96,-2.73 3.4,-5.11 -2.13,0.42 -3.39,1.29 -5.48,0.31 -1.3,-0.59 -3.38,-1.42 -4.02,0.51 -0.17,-0.86 -0.21,-0.91 0.32,-1.66 -1.07,-0.49 -2.33,-0.44 -3.39,0 0.8,-0.38 2.64,-2.85 0.64,-2.8 3.2,-1.49 -7.54,-2.4 -7.1,-2.15 -0.98,-0.54 -2.02,-0.87 -3.08,-1 z", + "HR" : "m 396.27,362.42 c 0.74,0.17 1.46,0.45 2.21,0.56 0.95,0.14 1.8,-1.15 2.32,-1.05 2.2,0.4 4.41,0.77 5.56,-2.06 1.92,2.03 3.48,1.36 5.64,2.55 2.75,1.5 1.21,-1.99 2.68,-2.31 -0.52,-0.14 -0.96,-0.63 -1.49,-0.82 1.25,-1.14 3.11,-1.78 4.7,-1.96 -0.09,-0.28 -0.78,-4.08 -0.76,-4.09 0.32,-0.91 2.71,-1.59 3.43,-1.78 1.29,-0.35 1.1,-0.94 2.1,-1.64 0,0 1.15,0.35 1.41,0.35 -2.77,-3.59 4.9,-0.16 5.41,0.12 0.79,0.42 2.68,2.45 3.26,3.18 1.53,1.92 2.41,1.84 4.46,2.71 1.65,0.7 2.17,1.87 4.35,2.08 2.5,0.24 4.73,0.87 6.82,-1.21 0.98,-0.96 2.29,0.37 2.59,1.43 0.4,1.54 -0.66,3.15 1.59,3.24 -3.55,2.57 3.92,4.04 3.35,4.76 -0.35,0.44 -2.93,0.4 -3.59,0.68 1,1.91 -0.38,5.13 -2.56,3.27 -0.44,-0.37 -0.54,-0.84 -0.31,-1.42 -0.64,-0.3 -1.29,-0.58 -1.94,-0.86 -1.38,-0.54 -2.51,-0.59 -3.97,-0.49 -1.54,0.1 -1.65,-0.79 -3.19,0.1 -1.13,0.66 -1.75,-0.1 -2.79,-0.38 -1.26,-0.31 -2.64,-0.21 -3.86,-0.59 -1.07,-0.33 -2.13,-1.19 -3.28,-1.21 -1.69,-0.03 0.59,1 -2.18,0.45 -2.02,-0.38 -1.42,-0.1 -2.52,0.89 -2.64,2.38 -2.3,1.64 -4.74,-0.37 -3.42,-2.8 -3.66,2.9 -2.25,4.37 0.71,0.75 -0.11,1.43 1,1.66 1.22,0.26 3.19,2.29 3.21,3.5 0.04,1.89 -1.17,4.25 1.78,5.21 3.09,1.03 4.06,5.18 6.6,7.26 2.05,1.68 3.42,4.51 5.6,5.7 2.32,1.26 0.88,3.71 -1.5,1.01 -2.65,-3.01 -8.71,-7.89 -12.89,-6.23 -1.09,0.42 -1.65,-0.02 -2.32,-0.98 -0.83,-1.21 -0.29,-1.52 -1.9,-2.4 -2.36,-1.26 -5.57,-4.13 -6.46,-6.86 1.5,-0.26 2.84,-0.03 4.3,0.23 -1.9,-1.5 -4.26,-2.64 -5.56,-4.85 -1.09,-1.85 -0.28,-4.22 -1.34,-6.07 -0.94,-1.64 -3.05,-3.2 -4.78,-3.71 -1.27,-0.37 -2.52,3.57 -2.3,4.58 -0.54,-0.24 -0.75,-0.07 -1.17,-0.58 -0.19,1.31 -0.51,2.71 -1.47,3.66 -0.75,-0.63 -3.16,-3.88 -1.96,-4.93 -1.37,0.33 -1.97,-3.67 -2.29,-4.86 0.33,0.03 0.66,0.09 0.98,0.12", + "DK" : "m 365.56,195.91 c -2.22,0.75 -6.54,1.97 -8,3.75 -1.3,1.59 -2.47,4.07 -4.75,4.31 -2.57,0.26 -6.21,-0.6 -8.41,1.06 -1.55,1.19 -3.55,3.9 -1.16,5.44 0.44,0.44 0.9,0.85 1.41,1.22 0.13,-0.92 -0.28,-1.49 -1.06,-1.5 0.96,-0.36 1.43,-2.33 1.97,-3 0.95,-1.15 2.85,-1.56 4.22,-1.84 1.54,-0.31 2.86,0.37 4.47,-0.06 1.45,-0.4 2.77,-0.74 4.22,-0.28 3.01,0.94 4.65,0.83 6.19,-2.25 1.39,-2.76 -1.76,-4.41 0.91,-6.84 z m -8.16,9.34 c -1.15,0 -1.92,0.59 -3.25,0.5 -0.84,-0.09 -1.58,0.11 -2.28,0.56 -1.06,0.94 -0.74,2.79 -0.66,4.03 1.55,-0.16 1.55,0.52 1.19,2.06 0.08,-1.66 -1.54,-1.33 -2.59,-1.44 2.56,-1.29 -2.3,-2.89 -3.06,0.66 -0.31,1.47 -1.62,2.23 -2.09,0.19 -1.04,0.7 -3.05,-0.57 -3.75,-1.34 -0.15,0.4 -0.32,0.82 -0.47,1.22 -0.59,2.06 -1.02,5.76 0,7.75 -0.54,-3.2 2.84,0.68 2.56,1.59 -0.58,1.91 -2.54,-0.12 -2.69,-1.22 0.29,1.47 -10e-6,3 0.19,4.5 0.15,1.17 1.5,3.72 1.72,1.06 0.35,0.89 7.01,5.61 1.59,5.59 0.32,0.93 1.04,1.46 1.97,1.09 -0.94,3.13 3.42,2.75 5.19,3.31 1.29,0.4 2.57,0.68 3.75,-0.25 1.11,-0.89 0.99,0.34 2.16,0.41 0.4,-1.92 -1.5,-2.92 -3.09,-2.75 -0.07,-1.92 3.3,-1.88 2.47,-3.84 -1.38,-3.25 -0.45,-1.99 1.56,-4.16 -0.86,-0.33 -1.74,-0.64 -2.59,-0.97 1.23,-0.23 3.3,0.77 4.28,-0.41 0.79,-0.93 -0.54,-1.73 -1.22,-1.78 1.82,-0.49 3.75,0.03 3.91,-2.63 0.11,-1.63 0.01,-3.58 2.25,-2.81 -0.87,0.91 -0.61,1.75 0.59,2.03 0.4,-1.26 0.81,-1.16 1.81,-1.16 0.99,0 2.95,-3.13 1.97,-3.94 -1.14,-0.96 -7,-2.15 -7.41,0.13 0.05,-0.68 1.92,-2.49 1,-2.91 -1.57,-0.68 -2.64,0.52 -4.16,0.5 1.5,-0.61 3.05,-1.16 4.69,-1 -0.8,-1.26 -0.32,-3.32 -1.94,-3.97 -1.31,-0.54 -2.17,-0.63 -3.59,-0.63 z m 26.25,12.84 c -1.49,0.06 -3.06,0.98 -4.53,1.59 1.71,0.72 2.63,4.6 0.06,4.72 0.67,-1 1.35,-2.13 0.75,-3.38 -0.5,0.33 -1.84,3.5 -2.5,3.06 -1.06,-0.72 -0.71,-3.21 -0.09,-3.31 -0.83,-0.71 -2.2,-0.64 -3.28,-0.53 0.37,0.01 0.61,0.19 0.75,0.56 -0.54,2.17 -4.44,2.59 -5.97,2.5 0.74,0.87 5.11,4.99 1.84,5.22 1.06,0.38 1.18,1.59 2,2.03 0.74,0.4 2.01,0.05 2.81,0 2.15,-0.2 2.72,2.14 1.16,1.84 0.67,0.2 1.82,0.63 1.88,1.22 -0.29,0.35 -0.68,0.43 -1.19,0.22 -0.01,0.35 0.18,1.06 0.44,1.81 -0.78,-0.25 -1.84,-0.22 -2.38,-0.16 -2.16,0.31 -3.18,-2.6 -5.38,-0.94 0.27,0.4 0.54,0.8 0.81,1.19 -0.43,0.12 -0.85,0.25 -1.28,0.38 1.54,1.1 7.09,3.51 8.66,1.53 0.09,-0.12 0.15,-0.24 0.22,-0.34 0.32,0.75 0.6,1.46 0.78,1.75 0.33,-0.89 1.98,-2.63 1.97,-3.47 -0.01,-1.01 -1.78,-1.31 -2.13,-2.22 0.88,0.37 1.77,0.37 2.66,0 -1.34,-2.01 0.26,-2.75 1.91,-3.38 2.01,-0.77 -0.2,-1.87 -0.91,-2.63 -1.57,-1.66 1.49,-2.42 2.38,-3.06 2.05,-1.45 -0.71,-3.74 1.16,-5.13 -0.83,-0.87 -1.7,-1.13 -2.59,-1.09 z m -17.97,6.81 c 0.09,1.21 -0.71,2.36 -1.97,2.19 2.29,-2.66 -6.24,-0.8 -7.19,-0.75 0.04,2.05 2.61,3.33 3,5.34 0,-1.77 1.11,-0.88 1.41,0.19 0.24,0.87 3.74,0.98 4.31,0.88 3.03,-0.56 3.5,-5.06 0.31,-5.78 0.4,-0.24 0.77,-0.49 1.16,-0.75 -0.27,-0.51 -0.6,-0.93 -1.03,-1.31 z", + "LV" : "m 472.29,212.66 c 0.12,0.4 0.25,0.8 0.38,1.21 0,-2.1 -0.32,-4.32 1.25,-6.1 0.67,-0.77 1.81,-1.31 2.14,-2.34 0.42,-1.31 0.15,-2.43 0.91,-3.71 1.49,-2.48 3.16,-3.62 5.81,-4.29 1.29,-0.31 4.84,-2.38 5.72,-1.14 1.39,1.94 3.03,2.8 4.65,4.48 1.85,1.89 2.45,4.41 5.18,5.35 2.14,0.72 4.39,-0.23 6.34,-1.56 2.81,-1.92 2.65,-4.22 1.8,-6.96 -0.33,-1.08 -0.68,-2.29 -0.32,-3.5 0.98,0.3 2.08,-0.45 2.92,-0.93 1.67,-0.94 4.9,-2.31 6.47,-1.22 1.03,0.72 3.2,0.51 4.57,1.35 2.04,1.22 3.83,1.56 5.55,3.34 1.41,1.45 2.77,2.33 4.89,1.28 2.34,-1.15 4.66,0.45 6.97,0.66 1.39,0.14 3.62,2.13 4.66,3.06 0.58,0.51 -1.34,5.56 -1.85,6.16 3.55,-0.44 1.66,1.59 3.12,2.19 1.73,0.72 2.44,3.87 2.55,5.61 0.11,1.84 -1.46,1.85 -2.79,2.5 -1,0.51 -1.92,1.56 -2.63,2.43 -0.39,0.49 -0.19,1.61 -0.8,1.94 -1.98,1.07 -3.82,-1.43 -6.01,-0.35 -2.55,1.26 -4.02,2.73 -6.63,1.12 -2.16,-1.33 -4.06,-3.04 -6.05,-4.58 -1.92,-1.49 -4.63,-0.73 -6.55,-2.08 -1.69,-1.17 -1.8,-3.69 -4.39,-2.2 -2.25,1.29 -2.97,1.26 -5.34,1.49 -2.1,0.21 -4.47,-1.21 -6.76,-1.17 -2.38,0.03 -3.99,0.45 -6.1,-0.38 -1.34,-0.52 -4.03,-0.21 -5.55,-0.21 -2.36,0 -4.47,0.4 -6.81,0.98 -1.49,0.35 -4.19,0.8 -4.94,2.5 -0.5,1.1 -1.21,1.38 -1.86,0.45 -1.17,-1.63 -0.75,-3.45 -0.47,-5.37", + "RO" : "m 464.6,353.75 c 1.22,-0.86 2.12,-0.79 3.3,-0.45 1.14,0.31 1.29,-1.28 2.24,-1.63 1.04,-0.38 2.14,-0.1 3.19,-0.45 1.51,-0.49 1.33,-2.41 2.09,-3.6 0.74,-1.12 1.69,-2.08 2.49,-3.15 1.04,-1.36 0.99,-2.59 1.93,-3.83 0.83,-1.08 1.8,-2.38 2.29,-3.67 0.58,-1.52 0.04,-2.24 1.1,-2.8 1.04,-0.58 1.37,-0.96 2.12,-1.91 1.19,-1.47 3.12,-0.42 4.51,-1.57 1.14,-0.96 1.97,-2.31 3.21,-3.13 1.73,-1.15 3.51,0.3 5.18,0.52 1.59,0.23 3.17,0.58 4.77,0.75 1.92,0.21 4.42,-0.68 6.07,0.49 3.13,2.24 3.34,3.6 6.62,0.51 2.06,-1.92 5.99,-0.94 8.44,-1.36 1.62,-0.28 1.59,-1.35 2.59,-2.4 1.09,-1.15 2.99,-1.28 4.33,-1.12 3,0.37 4.27,3.6 5.33,6.12 1.17,2.82 2.93,5.27 4.89,7.43 2.85,3.18 4.09,5.53 4.96,9.88 0.32,1.61 -0.71,3.22 -1.18,4.74 -0.54,1.73 0.01,3.57 -0.01,5.32 -0.05,2.92 0.52,4.11 2.52,5.72 0.76,0.63 4.13,3.34 4.29,0.58 2.56,1.14 7.97,-4.74 8.99,0.17 1.14,5.4 -2.21,7.57 -6.97,7.54 0.63,-0.51 1.38,-3.52 0.13,-3.46 -1.49,0.05 -0.99,3.67 -2.14,4.6 0.71,-0.17 1.45,-0.3 2.17,-0.35 -1.13,0.51 -3.07,0.66 -1.89,2.17 0.42,-0.35 0.8,-0.73 1.17,-1.14 -0.6,1.8 -2.5,2.8 -2.95,4.67 -0.48,2.01 0.79,4.83 -0.59,6.7 -0.8,1.1 -3.7,-0.12 -4.45,-0.49 -1.04,-0.51 -1.65,-1.28 -2.17,-2.36 -0.32,-0.68 -0.78,0.31 -1.25,0.16 -3.6,-1.22 -6.48,-2.78 -10.42,-1.96 -2.34,0.51 -4.96,0.7 -7.02,2.24 -2.02,1.49 -3.46,3.6 -6,3.99 -2.49,0.37 -4.85,-0.63 -7.27,-0.84 -1,-0.09 -1.97,-0.59 -3,-0.47 -1.41,0.17 -2.2,1 -3.68,0.63 -2.6,-0.65 -5.09,-1.92 -7.82,-2.05 -1.38,-0.05 -4.61,1.57 -5.48,-0.05 -1.29,-2.43 3.52,-2.36 -0.71,-4.44 -1.3,-0.65 -2.67,-1.78 -3.08,-3.32 -0.39,-1.43 2.06,-1.33 2.8,-1.71 -0.75,-1.05 -2.55,-2.08 -3.87,-1.59 -0.91,0.33 -1.65,2.69 -2.71,2.45 -1.06,-0.26 -2.12,-2.13 -3.47,-2.55 -1.46,-0.45 -3.19,-0.72 -4.26,-1.96 1.26,-0.38 1.63,-2.08 0.11,-2.27 1.51,-1.45 1.17,-2.47 -0.5,-3.1 -2.24,-0.86 -4.27,-2.31 -6.18,-3.73 1.97,-3.76 -2.83,-6.03 -4.74,-8.45", + "CZ" : "m 380.95,296.76 c 1.15,0 2.04,1.01 2.3,2.12 0.44,-4.22 5.25,-2.22 7.26,-3.9 3.74,-3.1 9.42,-4.83 13.82,-6.59 -0.36,-0.37 -0.72,-0.72 -1.1,-1.07 0.99,-0.24 2.13,-0.61 2.88,0.3 0.64,0.82 1.21,2.33 2.45,1.89 0.84,-0.3 2.13,0.12 2.09,-1.17 -0.04,-1.26 0.99,-0.16 1.77,0.05 1.29,0.35 1.38,-0.28 1.71,1.03 0.36,1.42 0.58,0.38 1.41,0.73 1.29,0.56 5.65,0.61 5.64,2.71 0.6,-0.65 2.1,-1.03 2.89,-0.7 2.13,0.91 -0.16,2.38 -1.07,3.18 1.9,0.72 2.53,1.8 3.58,3.43 1.29,2.01 3.56,-0.33 4.81,-1.19 -0.71,-0.65 -1.09,-1.47 -1.13,-2.48 2.84,0.8 5.43,3.13 8.59,2.13 -0.32,1.45 -0.6,3.88 1.42,3.81 1.77,-0.05 1.58,-0.38 3.39,0.54 1.96,0.98 2.93,0.28 3.87,2.54 0.21,0.52 3.98,2.97 2.21,3.66 -2.05,0.79 -3.67,1.15 -5.52,2.55 -1.31,1.01 -1.33,3.76 -2.83,3.92 -2.28,0.24 -3.15,3.24 -6.03,2.64 -2.65,-0.54 -3.55,0.1 -4.65,2.85 -0.88,-3.85 -6.07,-1.08 -8.35,-1.92 -1.88,-0.68 -3.71,-1.47 -5.6,-2.12 -1.54,-0.52 -4.47,-1.4 -6.1,-1.28 0.09,1.1 -0.38,2.15 -0.29,3.24 -1.55,-0.23 -2.77,1.08 -2.81,2.66 -2.3,-0.96 -2.37,0.09 -4.63,-0.14 -1.5,-0.14 -2.73,-1.85 -3.9,-2.69 -1.51,-1.07 -3.12,-1.98 -4.7,-2.94 -1.47,-0.91 -2.88,-3.5 -4.65,-3.95 -2.75,-0.72 -3.26,-4.76 -5.61,-6.1 3.28,-2.69 -2.87,-4.9 -3.13,-7.73", + "AL" : "m 454.84,428.02 c 0.6,-1.05 1.15,-2.29 0.78,-3.53 1.53,0.28 0.9,-3.57 1.26,-4.81 0.29,-0.96 -1.09,-1 -0.54,-2.22 0.4,-0.93 0.75,-1.89 0.98,-2.87 0.38,-1.68 0.2,-3.53 -1.84,-2.99 -0.66,-2.54 -0.33,-5.61 1.25,-7.75 1.29,-1.71 1.82,-4.2 3.04,-1.43 0.9,2.08 2.71,-0.98 4.13,0.73 0.47,0.56 0.15,1.5 0.64,2.05 0.96,1.07 2.25,0.3 2.99,2.22 0.63,1.63 0.43,7.68 -0.79,8.17 0.04,0.7 0.59,1.42 0.84,2.01 0.03,0.49 -0.11,0.96 -0.4,1.38 -0.25,1.1 0.95,2.2 1.45,2.96 0.67,1.05 0.46,2.45 1.96,2.24 1.45,-0.21 1.47,0.7 1.71,1.85 0.75,3.46 -1.62,3.15 -2.72,5.88 -0.38,0.93 -0.64,3.48 -1.65,3.88 -2.61,1.07 -2.81,0.59 -1.8,3.64 -1.89,-0.21 -0.31,1.49 -2.28,2.08 -1.63,0.49 -2.1,-0.86 -2.26,-2.29 -0.4,-3.78 -4.97,-5.14 -6.87,-8.1 0.7,0.1 1.18,0.52 1.42,1.24 1.1,-1.31 -0.9,-2.15 0.2,-2.62 -0.62,-0.44 -1.13,-1.01 -1.5,-1.71", + "FI" : "m 468.42,42.64 c 1.69,-1.66 3.64,0.21 5.52,-0.79 -0.42,-0.38 -0.82,-0.77 -1.22,-1.19 5.21,-2.9 9.51,0.66 12.77,4.2 2.28,2.48 7.03,4.11 10.77,3.04 2.04,-0.56 3.34,-0.84 5.06,-2.01 1.59,-1.08 5.44,0.59 6.95,1.03 2.14,0.63 2.93,1.59 5.25,1.17 2.01,-0.35 1.81,-2.99 4.5,-3.17 1.35,-0.09 2.88,-0.66 2.79,-2.29 -0.13,-2.83 1.33,-5.44 2.4,-8.15 2.65,-1.42 5.95,-4.25 8.87,-3.71 2.93,0.52 4.84,-0.24 7.73,-1.42 3.19,-1.29 4.63,1.21 7.1,2.15 2.57,0.98 5.29,1.35 7.86,2.22 7.31,2.52 -6.1,7.31 -0.48,9.31 -1.98,0.65 -3.99,1.05 -5.96,1.71 0.99,0.12 5.01,0.4 2.69,2.38 -2.29,1.96 -2.88,3.52 -0.72,5.54 2.04,1.94 5.01,1.89 7.37,3.29 2.08,1.22 4.13,3.01 6.01,4.48 3.87,2.99 -10.27,8.15 -8.16,11.98 3.03,5.56 9,8.62 10.17,15.59 -1.37,0.09 -2.72,0.56 -4.09,0.8 1.65,0.49 0.35,3.17 -0.66,4.51 -0.95,1.29 1.67,1.64 1.93,2.59 -2.49,0.52 -2.73,2.52 -1.34,3.94 1.35,1.4 4.07,-0.14 4.84,2.06 -5.2,2.17 1.29,4.64 3.07,5.61 3.94,2.13 -3.03,6.07 -5.17,7.07 3.46,2.1 7.18,3.8 10.56,5.98 1.66,1.08 3.23,2.27 4.59,3.67 1.47,1.52 0.67,2.19 -0.47,4.16 -1.82,3.15 -4.26,4.72 -7.11,6.89 -4.01,3.04 -7.45,6.77 -11.45,9.74 -3.74,2.78 -7.72,5.09 -11.56,7.64 -1.71,1.15 -3.39,2.38 -5.01,3.67 -0.78,0.52 -1.45,1.15 -2.01,1.92 -0.99,1.24 -2.69,0.26 -3.84,0.37 -1.65,0.16 -1.55,-1.35 -3.47,-0.45 -1.47,0.66 -2.83,1.22 -4.39,1.22 -0.66,0.05 -1.23,-0.12 -1.73,-0.49 -0.23,0.58 -0.62,0.96 -1.19,1.15 -1.39,0.42 -3.03,-0.3 -4.06,-1.03 0.91,1.24 0.27,1.66 -0.92,1.77 0.11,0.42 0.21,0.84 0.33,1.26 -1.29,0.33 -2.67,-0.21 -2.45,-1.77 -1.45,2.1 -4.92,2.1 -6.99,2.54 -1.17,0.24 -2.22,0.7 -3.36,1.08 -0.86,0.28 -1.06,1.33 -1.92,1.57 -1.59,0.42 -1.89,-1 -3.56,-0.56 -2.53,0.65 -5.4,1.98 -7.94,1.5 0.54,-0.3 1.06,-0.63 1.55,-0.98 -2.08,0.75 -3.67,2.36 -5.92,2.55 0.82,-0.45 1.88,-0.91 2.41,-1.75 1.21,-1.91 -2.04,-0.16 0.92,-1.43 -1.15,0.16 -2,-0.37 -2.81,-1.01 -1.39,-1.14 0.19,-2.2 1.41,-3.27 -1.06,0.33 -8.32,2.73 -5.67,-0.37 -2.21,-0.49 -4.53,-0.47 -6.35,-1.87 -0.76,-0.59 -2.96,-2.45 -2.71,-0.02 -0.66,-0.56 -2.49,-1.21 -2.17,-1.92 0.59,-1.29 -0.64,-4.58 -1.21,-5.74 4.14,0.05 -0.09,-8.52 3.86,-6.28 -1.69,-1.24 -3.63,-4.51 -4.06,-6.63 -0.33,-1.73 1.02,-2.85 0.04,-4.72 -0.7,-1.38 -1.39,-3.29 -2.25,-3.46 1.04,-1.19 3.82,-6.51 5.83,-5.53 -0.92,-0.77 -1.65,-2.13 -0.83,-3.39 1.67,2.13 6.27,0.8 8.41,-0.38 -0.51,-0.45 -2.36,-3.43 0.13,-1.5 -0.38,-0.42 -0.75,-0.84 -1.13,-1.26 1.38,1.64 2.79,-2.9 5.65,-1.5 -0.33,-2.61 3.87,-3.43 5.65,-3.88 -0.07,-0.47 -0.16,-0.93 -0.24,-1.38 1.7,-0.07 2.6,-1 3.7,-2.22 1.8,-1.99 4.31,-2.78 6.23,-4.57 1.26,-1.17 1.93,-2.73 3.39,-3.87 2.24,-1.73 4.53,-0.47 6.68,-0.03 -0.28,-0.4 -0.52,-0.82 -0.74,-1.26 0.71,-0.23 1.35,-0.61 1.92,-1.14 -0.58,-0.87 -2.55,-1.5 -2.2,-2.38 0.56,-1.42 1.51,-3.13 0.4,-4.25 -1.73,-1.71 -7.39,-1.36 -7.45,-4.29 -2.04,1.21 -3.66,0.12 -4.69,-1.49 -1.25,-1.91 -2.52,-2.94 -3.99,-4.6 -2.36,-2.66 4.63,-6.66 1.17,-10.01 -0.63,-0.59 -2.83,-2.34 -2.22,-3.36 0.39,-0.68 2.63,-2.48 1.25,-3.04 -1.89,-0.75 -2.73,0.03 -2.6,-2.71 0.04,-0.84 0.2,-1.73 0.15,-2.57 -0.05,-0.84 1.66,-0.72 1.63,-1.17 -0.08,-1.68 -3.59,-2.52 -4.69,-3.2 -1.07,-0.66 -1.03,-2.03 -2.42,-2.59 -1.39,-0.58 -2.99,-0.59 -4.47,-0.91 -2.64,-0.54 -5.4,-1.87 -7.85,-2.89 -3.75,-1.54 -7.42,-5.06 -11.6,-5.54", + "GB" : "m 203.28,301.11 c 1.39,0.33 3.09,-2.48 4.06,-3.36 1.8,-1.64 5.68,-0.28 6.78,-2.76 0.12,1.52 3.11,2.99 4.3,3.1 2.22,0.17 3.3,-4.44 3.16,-6.17 0.79,1.38 3.12,-0.02 3.99,-0.35 2.29,-0.87 4.78,0.26 6.63,2.01 0.03,-1.54 1.54,-1.07 2.52,-0.89 1.07,0.21 4.01,-0.77 1.13,-1.36 1.29,0 9.42,-0.03 6.98,-2.34 1.46,1.45 3.12,0.31 4.76,0.7 0.43,0.09 0.63,0.33 0.62,0.73 0.09,0.7 2.69,-0.05 2.67,-0.05 2.37,-0.31 4.63,-0.44 6.99,0.3 2,0.59 4.66,-0.98 6.55,-1.52 1.67,-0.47 2.02,-1.05 3.09,-2.15 1.17,-1.19 3.56,-0.93 4.21,-2.71 0.72,-1.98 -8.08,-2.26 -9.02,-2.38 0.62,-0.17 1.21,-0.42 1.77,-0.72 -1.14,-0.28 -2.37,-0.56 -3.35,0.24 0.95,-1.14 2.34,-0.68 3.62,-0.94 2.12,-0.44 1.93,-2.71 -0.24,-2.96 0.84,0.19 1.33,-0.54 1.97,-0.87 1.27,-0.66 2.33,0.7 3.7,-0.65 -0.4,-0.82 -1.03,-1.29 -1.88,-1.42 0.9,-0.17 3.05,-0.03 0.63,-0.94 3.34,1.03 3.7,-1.19 4.98,-3.66 1.67,-3.17 1.21,-6.24 -2.44,-8.06 -2.1,-1.05 -6.89,-2.54 -8.83,-0.72 -0.66,0.61 -0.83,1.96 -1.74,2.29 -1.38,0.49 -2.38,-1.89 -3.84,-1.54 1.67,-2.9 5.48,-3.08 2.05,-7.29 -2.87,-3.5 -5.77,-3.31 -9.55,-3.8 2.42,-1.12 6.9,-0.16 9,1.52 -0.56,-1.64 -5.93,-6.16 -2.36,-7.19 -2.4,-0.63 -3,-3.06 -4.66,-4.6 -1.55,-1.45 -3.8,-1.4 -5.68,-1.7 -3.12,-0.49 -4.5,-8.1 -4.88,-10.62 -0.64,-4.18 -5.96,-7.8 -9.87,-8.54 -1.03,-0.19 -2.01,-1.66 -3.01,-0.63 -0.66,0.66 -1.29,0.98 -2.24,0.96 -2.52,-0.03 -5.99,0.12 -8.05,-1.98 4.18,3.03 6.46,-1.21 10.4,-1.21 2.24,0 1.29,-1.8 0.03,-2.76 -1.78,-1.36 -3.3,0.8 -5.13,0.58 4.54,-0.93 8.12,-3.15 10.78,-6.94 1.19,-1.71 1.43,-3.73 2.44,-5.47 0.7,-1.21 2.81,-1.99 2.05,-3.8 -1.37,-3.24 -7.51,-2.01 -10.09,-1.71 -2.67,0.31 -5.36,-0.77 -7.92,0.03 -2.14,0.68 -4.53,2.08 -6.67,2.5 0.21,-1.15 1.5,-1.26 1.77,-2.43 -1.31,-0.12 -2.41,0.51 -3.58,0.86 1.27,-1.5 4.97,-0.47 5.41,-2.8 -1.74,-0.4 -3.75,0 -5.33,-1.21 2.92,1.1 2.3,0.38 4.03,-0.89 1.42,-1.03 3.21,-1.47 4.66,-2.48 0.59,-0.4 8.2,-5.79 3.9,-6.65 -2.61,-0.52 -5.71,0.73 -8.16,1.22 -1.38,0.28 -2.84,0.63 -4.27,0.51 -0.36,-0.02 -0.84,-0.09 -1.13,-0.4 -0.44,-0.51 -1.98,0.77 -2.53,1.05 1.06,-2.1 0.09,-0.65 -0.88,-1.21 -0.38,-0.23 -1.1,-1.05 -1.59,-0.93 -1.02,0.24 -0.31,3.34 -1.73,4.08 0.48,0.26 1.49,0.59 1.54,1.1 -3.78,-1.7 -2.28,2.31 -3.98,2.9 0.95,0.38 1.77,1.12 2.22,2.06 -1.11,0.45 -5.4,-1.12 -4.82,1.33 -0.6,-2.24 -2.87,1.56 0.24,3.39 -0.8,-0.1 -1.59,-0.14 -2.37,-0.12 0.05,2.36 1.96,2.36 3.66,2.19 -0.84,0.28 -1.59,0.73 -2.22,1.33 1,-0.4 2.2,-0.17 2.92,0.86 -1.73,-1.84 -3.43,1.7 0.03,1.45 -0.36,0.14 -5.96,0.38 -1.93,1.82 -1.85,-1.56 -3.43,1.35 -1.1,1.82 -0.95,-0.14 -1.46,0.35 -1.38,1.33 -1.34,-0.61 -2.97,-0.45 -3.95,0.49 1.92,0.45 4.35,-0.84 6.14,0.37 -1.39,-0.63 -2.09,0.98 -3.48,0.37 1.63,4.99 6.99,-1.07 8.83,-2.19 -0.68,0.87 -0.99,2.26 0.84,1.45 -0.92,0.19 -5.61,2.52 -2.46,2.19 -0.36,0.4 -0.71,0.8 -1.06,1.21 0.83,0.05 1.65,-0.03 2.44,-0.24 -0.46,0.28 -2.65,0.37 -2.77,0.56 -0.35,0.51 -0.91,0.94 -1.41,1.29 -0.58,0.42 -0.01,1.59 -0.03,2.26 0,0.7 -2.71,5.33 -0.31,1.96 -1.27,1 -0.64,4.78 1.11,3.03 -2,1.26 -1.81,3.67 -3.01,5.51 -0.83,1.29 2.3,2.24 2.36,-0.33 0.03,-1.84 2.16,-3.97 1.38,-5.72 -1.1,-2.48 2.34,-4.01 3.75,-4.92 -0.91,0.91 -3.39,2.27 -2.95,4.01 0.28,0.8 0.76,1.01 1.43,0.61 0.46,0.77 1.03,1.47 1.7,2.06 0.19,-1.03 -0.51,-2.06 -1.41,-2.55 0.78,-1.29 1.37,-0.44 1.69,0.61 1.47,-1.52 0.07,-4.41 2.05,-4.01 -0.75,0.7 -0.78,1.5 -0.11,2.43 -0.47,-2.31 1.11,0.12 2.52,0.72 -0.92,-0.05 -3.08,-0.86 -3.34,0.54 -0.47,2.66 1.23,2.61 2.21,4.5 1.67,3.2 -5.04,5.07 -3.32,8.89 -0.16,-0.26 -1.84,-1.71 -1.96,-0.87 -0.25,1.56 2.4,3.67 3.34,4.65 -1.14,-2.71 -0.12,-3.25 2.45,-2.1 2.13,0.94 2.53,0.87 2.4,-1.68 2.6,2.43 4.02,1.45 6.64,0.65 0.8,-0.24 2.09,-0.51 1.81,-1.71 1.86,0.24 3.71,0.1 5.57,0.24 -1.97,1.4 -4.43,1.59 -5.44,4.13 -0.63,1.61 1.22,6.98 3.44,5.67 -0.27,0.87 -0.05,1.66 0.64,2.36 0.43,-0.68 0.79,-1.38 1.1,-2.13 0.44,1.45 1.58,0.73 2.3,0.24 -0.66,1.05 -0.55,2.4 -1.34,3.53 -0.44,0.66 -2.26,3.38 0.47,2.96 -2.67,1.43 -1.42,6.33 1.86,5.2 -1.45,1.15 -6.46,-3.29 -3.74,1.52 -3.38,-2.78 -7.64,0.09 -11.06,0 1.13,-1.61 -2.97,-3.11 -3.91,-2.22 -1.89,1.78 1.65,4.29 3.47,2.47 -1.67,2.15 -4.19,3.41 -5.77,5.67 2.32,0.17 4.19,-2.52 6.6,-1.31 -0.5,1 0.09,1.96 1,2.48 -1.31,0.65 -0.8,2.47 0.75,2.24 -1.27,0.19 -1.26,1.47 -1.66,2.45 -0.54,1.28 -2.09,2.05 -3.28,2.52 -2.64,1.05 -6.51,1.78 -8.09,4.13 1.02,0.4 1.43,1.24 0.75,2.12 1.25,0.26 2.45,0.12 3.19,-0.94 -0.48,1.14 -1.63,1.5 -2.8,1.42 1.7,2.03 6.18,-0.28 7.66,-1.42 0.05,1.71 1.94,1.77 3.04,1.42 -0.42,0.72 -1.04,0.93 -1.88,0.59 0.48,2.05 1.85,1.05 2.96,0.47 1.71,-0.86 2.92,2.01 4.53,2.73 2.93,1.29 3.19,-1.4 5.48,-1.75 2.51,-0.38 4.11,-1.77 6.03,-3.34 -1.75,2.41 -4.35,4.09 -6.28,6.37 -0.5,0.59 0.36,1.31 -0.79,1.45 -1.3,0.19 -2.63,0.26 -3.97,-0.02 -1.89,-0.4 -5.06,-1.08 -6.75,0.05 -1,0.66 -0.96,2.01 -2,2.69 -1.41,0.94 -1.9,-1.4 -2.2,1.4 -0.12,1.12 -2.38,5.37 -3.76,5.06 -0.86,-0.21 -1.06,-0.17 -1.3,0.82 -0.36,1.56 -2.4,2.27 -3.64,2.83 -1,0.45 -2.12,0.94 -2.93,1.7 -0.33,0.31 0.23,1.4 0.62,1.29 1.37,-0.31 2.95,-1.59 3.83,0.52", + "IE" : "M 181.97 229.19 C 181.31 229.26 180.62 229.56 179.75 230.25 C 181.18 231.46 180.72 233.41 178.97 233.38 C 179.22 231.92 180.17 231.93 179.03 230.22 C 178.4 229.26 176.87 229.38 178 231.06 C 176 231.34 173.98 230.34 172 231.53 C 170.89 232.21 170.16 234.29 171.22 235.53 C 169.65 234.99 169.74 235.67 170.31 236.69 C 169.04 236.23 167.61 236.6 167.34 238 C 169.27 239.05 171.33 238.43 173.31 238.81 C 173.23 240.82 169.73 240.68 168.66 242.38 C 169.1 242.62 169.54 242.84 170 243.06 C 168.25 245.02 163.87 241.09 163.44 244.94 C 163 242.84 160.75 242.41 159.06 242.53 C 157.25 242.64 154.95 244.59 154.56 242.72 C 154.13 243.44 153.86 244.21 153.78 245.06 C 154.01 244.64 154.3 244.27 154.59 243.91 C 155.28 244.54 155.39 245.21 154.94 245.91 C 156.8 244.82 155.83 246.82 156.69 248.03 C 156.41 247.82 154.98 247.87 155.5 248.53 C 155.17 248.11 161.5 248.53 158.41 249.59 C 157.79 249.8 156.64 249.7 156.16 250.16 C 155.18 251.05 156.06 251.95 157.06 252.13 C 156.3 252.04 155.41 251.78 154.84 252.19 C 153.97 252.82 154.51 252.99 153.19 253.22 C 153.6 253.48 154 253.75 154.41 254.03 C 154.07 254.31 153.74 254.61 153.38 254.88 C 154.58 255.54 155.34 254.4 156.53 254.75 C 156.36 255.15 156.17 255.54 156 255.94 C 157.26 256.09 159.04 257.17 160 257.16 C 161.98 257.14 163.85 257.2 165.84 257.34 C 164.91 258.48 159.84 258.45 161.03 261 C 161.88 262.78 157.01 265.42 156.06 266.19 C 159.81 265.47 162.33 265.56 165.38 263.38 C 165.78 264.21 166.6 264.75 167.47 264.78 C 164.92 265.03 162.71 266.1 160.09 266.06 C 157.83 266.03 157.42 268.08 155.25 268.06 C 155.89 268.81 156.41 269.67 156.78 270.56 C 155.6 270.81 154.36 269.77 153.88 270.06 C 153.37 270.38 152.7 270.41 152.09 270.5 C 150.96 270.66 149.29 270.9 150.03 272.56 C 151.97 272.07 154.57 271.29 156.66 272.22 C 155.26 271.75 149.06 275.17 151.28 276.97 C 153.26 278.56 156.2 275.64 158.22 275.97 C 156.13 276.25 154.76 278.01 153.44 279.41 C 153.8 279.37 154.16 279.33 154.53 279.28 C 155.66 278.32 158.46 277.43 160.03 278.25 C 158.83 278.6 157.63 279.07 156.75 280 C 157.47 279.65 158.23 279.4 159.03 279.28 C 158.21 279.68 157.61 280.33 157.22 281.19 C 158.91 280.29 161.18 280.91 163.03 280.25 C 164.69 279.67 166.48 279.72 168.06 279 C 168.73 278.7 169.44 279.4 169.75 278.59 C 170.03 278.14 170.39 277.8 170.88 277.59 C 171.95 276.91 172.48 276.02 170.69 275.5 C 171.61 275.12 173.9 274.57 172.81 276.56 C 175.01 276.72 175.61 274.31 177.28 274.31 C 179.44 274.31 178.39 272.93 179.72 272.41 C 181.08 271.89 186.1 272.87 185.47 270.34 C 186.23 272.12 188.26 271.03 189.69 271.31 C 191.6 271.66 193.06 269.4 190.44 269.03 C 192.84 269.33 193.47 265.83 193.97 264.09 C 194.93 260.77 195.63 258.79 193.22 255.47 C 196.3 254.84 192.84 251.5 192.88 250.22 C 192.9 249.31 191.5 247.68 191.72 247.47 C 192.33 246.82 193.33 246.79 194.09 246.38 C 192.53 244.99 192.62 245.82 191.63 245.91 C 190.39 246.03 188.37 246.47 188.84 244.38 C 186.82 244.48 186.89 241.78 185.22 241.63 C 183.73 241.5 183.47 242.32 183.31 243.53 C 183.03 245.63 181.63 245.1 180.09 245.03 C 178.33 244.94 176.72 243.66 175.44 242.47 C 172.48 239.74 176.06 239.96 178.03 238.59 C 177.46 238.19 176.9 237.75 176.38 237.28 C 178.45 237.91 180.77 235.77 181.16 233.94 C 181.58 231.79 184.47 231.43 185.63 229.88 C 184.05 229.58 183.06 229.07 181.97 229.19 z M 190.53 231.56 C 188.74 231.6 186.92 232.92 185.19 232.09 C 185.13 234.64 182.29 232.52 181.34 233.94 C 180.86 235.39 179.75 237.69 177.09 237.66 C 177.53 238.05 177.95 238.31 178.44 238.63 C 177.32 239.44 175.39 239.66 174.47 240.69 L 174.63 241.34 C 174.35 242.23 183.11 248 183.25 242.97 C 183.66 240.38 186.12 241.63 186.47 242.13 C 187.23 243.33 188.05 244.64 188.97 243.97 C 190.19 243.86 191.39 244.76 192.75 245.19 C 194.38 245.68 194.17 243.39 195.47 243.25 C 195.96 243.18 197.38 242.3 197.19 241.63 C 196.92 241.34 196.57 241.29 196.19 241.5 C 196.62 240.9 196.63 240.05 195.84 239.59 C 197.07 239.31 197.51 240.63 197.38 241.63 C 198.84 241.2 197.83 239.3 197.31 238.34 C 196.77 237.42 194.87 238.34 194.22 238.41 C 194.43 238.17 196.09 237.23 196.16 236.81 C 196.01 236.9 194.36 235.08 194.44 235.28 C 193.95 234.29 193.26 232.77 192.31 232.09 C 191.72 231.7 191.13 231.55 190.53 231.56 z ", + "PL" : "m 402.05,262.18 c 0,-2.82 4.06,-3.55 2.65,-6.82 -0.48,-1.14 -1.65,-2.83 -1.17,-4.2 0.23,-0.65 2.34,0.17 2.79,0.17 -0.2,-0.93 0,-1.75 0.63,-2.48 -0.12,0.19 -0.24,0.38 -0.36,0.59 -0.67,-0.61 -1.46,-0.98 -2.37,-1.07 0.46,1.26 -1.42,0.54 -1.49,-0.59 2.61,1.03 6.91,-1.33 9.34,-2.31 2.91,-1.21 9.91,-0.87 11.8,-3.34 2.33,-3.01 7.61,-4.41 11.15,-5.35 4.43,-1.17 10.5,-2.13 14.05,1.1 -0.96,-0.72 -2.12,-1.43 -3.4,-0.94 1.45,1.45 1.69,4.27 3.87,4.93 2.61,0.79 6.24,-0.4 8.83,-1.15 -1.15,0.68 -2.55,0.87 -3.68,1.63 -1.63,1.1 1.77,0.51 2.37,0.16 4.59,-2.71 7.78,-0.49 12.63,-0.49 6.46,0 13.18,0.96 19.65,0 4.84,-0.72 8.04,2.15 8.87,6.65 0.86,4.62 5.91,10.06 3.91,15.13 -0.99,2.57 -4.13,1.43 -5.59,3.41 -1.46,1.98 -2.79,3.73 0.35,4.34 5.04,1 0.35,5.27 1.63,8.15 1.34,3.03 2.32,8.87 5.93,9.76 -0.64,0.33 -1.31,0.65 -1.97,0.93 1.75,1.78 2.1,3.81 -0.71,4.88 -2.81,1.07 -5.34,3.83 -7.5,5.98 -1.94,1.92 -5.37,4.58 -4.46,7.54 0.38,1.24 0.15,2.57 0.52,3.8 0.29,0.98 1.35,0.65 1.1,1.98 -1.75,-1.36 -4.51,-1.35 -6.56,-2.12 -2.01,-0.77 -2.92,-2.41 -5,-2.99 -2.05,-0.59 -4.35,-0.93 -6.44,-0.03 -2.69,1.14 -2.95,0.09 -5.48,-0.23 -1.94,-0.26 -2.69,0.14 -4.19,1.42 -0.66,0.54 -1.49,1.24 -2.34,1.33 -1.47,0.12 -0.91,-1.5 -1.45,-2.24 -0.59,-0.8 -1.97,-1.45 -2.71,-2.45 -1.19,-1.57 -4.42,1.91 -5.8,2.1 0.42,-1.24 -4.45,-6.82 -6.14,-7.31 -1.9,-0.54 -2.8,-1.38 -4.7,-0.75 -1.98,0.65 -2.02,-2.82 -1.75,-4.04 -3.16,0.98 -5.75,-1.33 -8.59,-2.13 0.04,1.01 0.42,1.84 1.13,2.48 -1.25,0.86 -3.52,3.18 -4.81,1.19 -1.04,-1.63 -1.67,-2.73 -3.58,-3.43 0.52,-0.47 2.49,-1.56 2.1,-2.52 -0.5,-1.28 -3.21,-0.73 -3.92,0.03 0.01,-3.24 -5.65,-0.94 -6.82,-2.78 -1.11,-1.78 -0.33,-1.92 -2.45,-2.57 -1.51,-0.45 -0.6,2.55 -2.92,1.82 1.89,-4.58 3.07,-6.05 -0.2,-8.45 -1.41,-1.01 -0.24,-2.17 -1.34,-3.24 -1.45,-1.36 0.2,-2.01 0.5,-3.48 0.17,-0.89 -0.12,-2.52 -0.2,-3.45 -0.09,-0.91 -1.92,-0.68 -1.53,-2.22 0.25,-1.01 1.5,-2.01 0.2,-2.83 -1.57,-1 -3.05,-2.15 -4.38,-3.48", + "GE" : "m 666.95,390.93 c 0.46,-5.42 11.79,-0.33 13.99,0.56 2.61,1.03 4.82,2.38 7.98,1.85 1.5,-0.24 2.72,-0.79 3.95,0.23 1.09,0.91 2.72,-0.05 3.95,0.45 0.94,0.4 1.41,1.57 2.22,2.15 0.99,0.72 2.22,1 3.38,1.4 0.96,0.31 2.01,0.68 2.76,1.36 1.03,0.96 -0.52,1.66 0.64,2.2 2.97,1.36 8.77,-4.51 10.17,0.05 0.35,-1.63 1.42,-1.68 2.5,-1.21 0.62,0.03 1.18,0.17 1.7,0.45 0.47,0.52 0.76,1.63 1.46,1.89 1.13,0.45 3.74,-0.84 4.06,1.07 0.23,1.36 -1.45,2.68 -0.35,3.88 1.7,1.84 4.17,1.54 6.2,2.57 3.26,1.66 -2.13,2.8 -0.79,5.02 0.8,1.35 5.16,3.5 4.82,5.27 -0.74,3.99 -4.81,-0.09 -5.97,0.35 -3.11,1.15 -4.41,-2.68 -7.09,-3.27 -1.07,-0.23 -2,0.3 -2.92,1.03 -0.88,0.68 -3.12,1.49 -2.83,2.01 -1.82,0.14 -3.56,-0.26 -5.37,-0.14 -1.9,0.14 -3.63,1.05 -5.57,1.05 -1.89,-0.02 -2.87,0.35 -4.25,-0.33 -0.58,-0.28 -3,-0.47 -1.84,-1.73 -1.57,-0.58 -2.34,-3.24 -4.35,-2.85 1.25,-2.26 -2.06,-1.05 -2.73,0.28 -0.48,0.94 -4.86,-0.03 -5.92,-0.28 -1,0.16 -0.64,1.29 -1.88,0.87 -1.3,-0.44 -2.68,-0.54 -1.77,-2.19 1.38,-2.47 2.42,-4.01 1.13,-6.51 -1.25,-2.38 -1.04,-5.46 -2.25,-7.87 -1,-1.98 -3.35,-1.77 -4.45,-3.67 -1.02,-1.77 -3.64,-2.01 -5.45,-2.29 -2.51,-0.4 -2.76,-3.31 -5.14,-3.67", + "BA" : "m 418.56,367.97 c -0.01,-3.76 2.84,-1.08 4.17,0.09 1.42,1.28 2.48,0.21 3.11,-1.42 0.6,-1.56 2.79,-0.51 3.78,-0.28 0.23,-1.52 6.05,1.03 7.39,1.03 0.94,0 2.59,1.01 3.35,0.45 1.78,-1.31 1.27,0.26 2.83,-0.1 1.89,-0.45 3.51,0.05 5.24,0.8 1.43,0.65 0.46,2.15 2.33,2.26 1.18,0.07 2.83,-1.28 3.83,-0.73 1.62,0.89 0.15,3.29 -0.58,4.27 -2.4,3.24 0.07,4.34 2.21,6.14 3.7,3.1 -1.17,1.56 -1.75,2.43 -0.08,0.1 2.46,3.69 2.44,4.58 -0.01,0.77 -5.13,1.8 -5.96,1.5 -0.27,1.43 1.38,2.01 0.72,3.53 -0.72,-2.92 -4.81,0.79 -3.64,3.2 -4.18,-0.96 0.39,6.44 -1.67,6.16 -1.62,-0.23 -4.39,-2.12 -5.61,-3.2 -0.66,-0.58 -0.79,-1.35 -1.71,-1.54 -0.94,-0.17 -1.22,0.8 -1.88,-0.4 2.77,-0.03 -2.34,-4.78 -2.81,-5.42 -2.41,-3.32 -4.25,-4.44 -6.44,-7.19 -1.13,-1.4 -2.67,-2.13 -3.82,-3.46 -1.38,-1.56 -0.4,-4.06 -1.69,-5.79 -0.99,-1.33 -2.29,-1.66 -3.51,-2.61 -0.62,-0.45 -0.21,-3.27 -0.31,-4.3", + "BE" : "m 283.12,286.25 c 2.72,-1.5 5.47,-3.04 8.48,-3.88 -0.56,2.13 2.46,1.43 3.55,1.68 1,0.23 1.5,0.7 2.59,0.38 1.35,-0.38 2.8,-2.76 3.35,-0.54 -0.19,-0.49 -0.36,-1.01 -0.5,-1.52 1.03,0.23 2.28,0.17 2.09,-1.31 0.84,0.66 2.18,1.05 2.81,-0.1 0.59,1.42 2.55,0.94 3.24,0 0.95,3.32 5.57,3.31 8.32,4.48 -1.41,1.78 -3.13,4.99 -0.25,5.32 1.34,0.14 5.4,1.17 3.82,3.41 1.53,-0.28 1.49,1.61 1.96,2.61 -1.77,0.33 -1.57,1.38 -2.65,2.34 -0.44,0.38 -1.58,-0.61 -2.55,1.07 -0.82,1.42 -1.49,2.1 -1.25,3.32 0.24,1.22 2.12,2.03 0.98,3.41 -2.02,2.45 -4.37,-0.23 -5.73,-1.47 -1.03,-0.93 -3.67,-0.94 -4.43,-1.89 -0.51,-0.61 -0.2,-3.76 -0.35,-4.67 -1.02,0.44 -1.29,1.35 -2,2.1 -1.3,1.38 -3.43,0.77 -5.05,0.49 0.32,-1.4 0.96,-3.25 -0.25,-4.48 -0.95,-0.94 -3.47,-0.93 -4.46,-0.23 0.08,-2.24 -0.87,-2.08 -2.42,-2.76 -1.85,-0.8 -1.81,-0.54 -2.88,-2.19 -0.59,-0.89 -3.54,-0.66 -4.66,-1.22 -1.69,-0.86 -0.91,-2.85 -1.74,-4.34", + "BG" : "m 486.34,385.46 c 0.01,-1.87 1.66,-4.43 2.83,-5.82 0.38,-0.44 3.24,1.07 3.39,1.49 0.43,1.1 -1.69,2.22 -1.13,3.34 0.8,1.66 5.85,0.09 7.37,0.42 2.48,0.56 5.12,2.45 7.72,1.47 2.1,-0.79 4.65,-0.17 6.82,0.02 3.2,0.26 4.82,1.82 7.94,-0.61 2.42,-1.85 4.13,-3.38 7.13,-3.92 2.73,-0.49 5.73,-2.1 8.25,-0.63 1.61,0.93 3.97,1.7 5.87,1.31 0.66,-0.12 2.88,2.68 3.78,3.06 1.21,0.54 3.5,-0.52 3.56,1.4 0.07,2.08 0.21,3.67 -2.13,3.48 -2.33,-0.19 -3.56,1.64 -4.66,3.73 -0.95,1.8 -0.23,3.8 -1.38,5.77 -0.36,0.59 -0.76,1.17 -1.14,1.75 -0.6,0.94 -1.65,0.31 -2.29,1.43 2.84,0.72 3.23,2.96 4.92,5.04 2.09,2.55 -2.92,2.52 -4.38,2.06 -1.58,-0.49 -1.63,-2.4 -3.72,-1.77 -1.55,0.47 -2.75,1.49 -4.39,1.47 -2.21,-0.03 -0.63,0.86 -1.38,1.52 -0.71,0.65 -3.01,0.51 -2.16,2.06 -5.6,-1.35 0.36,3.17 -3.35,5.11 -1.94,1.01 -4.77,0.1 -7.02,1.05 -1.55,0.66 -2.59,-1.89 -3.99,-2.03 -2,-0.19 -2.13,0.86 -3.56,-1.21 -0.96,-1.4 -2.18,-1 -3.7,-0.73 -2.08,0.37 -3.75,2.01 -5.95,2.15 -2.56,0.14 -5.09,1.49 -7.58,0.47 1.02,-3.11 0.59,-5.6 -0.66,-8.27 -0.42,-0.89 -1.45,-1.08 -2.17,-1.56 -1.25,-0.84 -2.04,-2.17 -3,-3.31 3.26,-2.41 -0.31,-3.57 1.25,-6.87 0.59,-1.22 1.62,-0.37 2.44,-0.89 1,-0.66 2.37,-2.89 2.89,-3.99 -2.8,-0.98 -5.81,-4.95 -6.4,-7.99", + "RS" : "m 458.84,352.91 c -0.83,0.1 -1.62,0.33 -2.16,0.8 -1.8,1.59 -4.59,2.03 -6.79,2.75 0.55,1.63 0.78,2.2 1.04,3.88 0.16,1.08 0.58,1.42 1.61,1.47 -3.05,2.19 2.4,3.55 3.27,4.53 -0.13,-0.14 -3.12,0.65 -3.51,0.8 0.8,1.54 -0.19,2.22 -0.29,3.71 1.02,-0.93 2.48,-1.01 3.82,-1.28 -0.09,0.21 -0.31,0.47 -0.33,0.63 -0.42,2.4 -2.61,4.72 -2.69,7.19 0.4,1.47 3.13,1.92 4.07,3.52 0.44,0.77 1.92,1.17 -0.08,1.92 -0.84,0.31 -1.53,-0.51 -2.24,-0.31 -0.39,0.1 3.94,5.58 0.56,6.03 -2.01,0.26 -3.67,0.14 -3.23,1.19 0.43,1.05 2.96,3.29 3.9,3.95 0.92,0.68 1.31,1.01 3.16,2.01 3.76,2.03 6,1.84 5.26,1.52 -1.31,-0.58 -0.15,0.63 -0.04,0.82 0.24,0.47 3.68,0.89 4.1,-0.84 0.46,-1.82 2.09,-0.52 1.34,-2.64 0.71,-0.1 -0.43,-0.03 0.17,-0.47 0.21,2.24 3.58,3.52 4.8,5.2 0.39,0.52 1.51,-0.26 2.8,0.47 0.52,0.3 1,0.79 0.8,1.77 -0.28,1.42 -1.82,2.96 -1.17,4.53 0.59,1.43 3.83,-0.87 4.85,-0.7 0.99,0.16 7.96,-0.89 5.93,-2.87 -0.84,-0.84 -0.99,-3.22 -0.21,-4.32 0.75,-1.08 2.01,-0.24 2.89,-1.28 0.86,-1 1.71,-2.31 2.28,-3.52 -1.43,-0.51 -3.21,-2.55 -4.27,-3.67 -3.43,-3.64 -1.23,-6.75 1,-10.39 -0.44,-0.45 -3.07,-2.99 -2.06,-3.67 0.84,-0.58 1.89,-0.21 2.75,-0.65 -0.76,-1.07 -2.83,-2.5 -4.14,-1.43 -0.4,0.33 -1.66,2.41 -2.08,2.4 -0.56,-0.02 -1.54,-1.64 -2.16,-1.91 -1.43,-0.65 -3.04,-1.15 -4.42,-1.92 -1.02,-0.58 -0.39,-0.37 -1.43,-0.79 1.39,-0.77 2.01,-2.01 0.16,-2.26 2.21,-2.12 0.54,-2.55 -1.21,-3.25 -1.78,-0.72 -4.7,-2.08 -6.23,-3.22 2.2,-4.2 -1.5,-4.69 -2.97,-7.12 -1.04,-1.75 -4.34,-2.94 -6.86,-2.59 z", + "XK" : "m 462.89,399.1 c 0.23,-0.94 0.42,-1.47 1.01,-1.19 0.24,0.23 0.7,0.53 1.25,0.58 0.53,-0 1.73,0.18 2.39,-0.31 0.8,-0.36 0.68,-0.85 0.93,-1.27 0.22,-0.36 0.16,-0.31 0.6,-0.71 0.71,-0.1 1.03,-0.54 0.72,-1.39 0.36,0.9 2.83,2.9 2.98,2.99 0.95,0.52 1.9,1.78 2,1.79 0.97,0.02 1.39,-0.07 1.95,0.04 0.15,-0 0.99,0.18 1.38,1.05 0.36,1.87 -1.96,3.87 -1.04,5.55 -0.97,0.64 -1.6,0.27 -1.51,1.8 -1.79,-0.51 -1.75,-1.15 -4.39,-0.03 -0.52,0.5 -1.02,0.57 -1.24,1.2 -0.48,1.34 -1.17,2.49 -1.94,2.88 -0.25,-0.56 0.36,-3.48 -0.57,-5.26 -0.56,-1.05 -3.16,-1.1 -3.1,-2.3 -0.09,-1.36 -0.6,-1.99 -1.77,-1.98 -0.2,8.8e-4 0.68,-0.78 0.38,-0.88 -0.24,-0.75 -1.04,-1.95 -1.01,-2.24", + "ME" : "m 446.2,401.88 c 2.8,-0.49 -2.53,-7.17 1.82,-6.16 -1.17,-2.41 2.92,-6.12 3.64,-3.2 0.66,-1.52 -0.99,-2.1 -0.72,-3.53 1.75,0.63 2.17,1.77 3.62,3.17 1.96,1.89 2.56,2.75 4.92,4.04 0.92,0.51 3.68,0.17 4.22,1.28 0.82,1.68 -1.47,1.56 -1.73,1.77 -0.76,0.65 1.84,2.36 0.47,3.1 -0.94,0.49 -2.06,1.12 -2.77,-0.05 -0.4,-0.63 -0.63,-1.96 -1.61,-0.82 -2.5,2.9 -3.43,6.14 -2.45,9.9 -1.69,-1.07 -3.4,-2.96 -4.49,-4.67 -0.33,-0.52 -3.17,-3.18 -3.79,-3.1 1.07,-0.49 0.84,-0.4 2,0.23 0.19,-1.92 -3.75,1.29 -3.12,-1.94", + "EE" : "m 518.09,170.56 c 1.03,2.61 -6.08,1.52 -7.13,1.47 0.16,1.94 -2.49,0.76 -3.34,0.63 -1.69,-0.28 -2.72,2.08 -4.41,1.06 0.13,0.52 0.34,1.01 0.59,1.47 -1.85,0.05 -4.35,-0.42 -5.88,1.19 -0.63,0.66 -0.4,1.9 -0.72,2.69 0.42,-0.24 0.82,-0.49 1.25,-0.72 0.72,1.42 -2,2.42 -0.69,3.63 0.75,0.68 2.83,-0.15 3.81,0.13 -1.42,0.58 -4.51,0.19 -3.84,2.66 1.47,0.04 6.2,7.1 8.5,3.25 0.76,-1.26 2.57,-0.67 1.66,0.59 -0.7,0.98 -1.39,4.24 -1.75,5.5 2.59,0.79 5.44,-2.62 8.09,-2.66 1.13,-0.02 1.8,0.81 3.06,0.72 0.98,-0.09 2.44,1.24 3.28,1.63 2.97,1.31 5.26,4.24 8.5,4.91 1.51,0.33 2.93,-1.29 4.5,-1.06 1.38,0.21 2.43,1.11 3.91,1.06 -0.31,-2.66 2.74,-3.44 4.47,-4.72 -1.85,-0.26 -0.76,-1.68 -1.56,-2.63 -0.52,-0.61 -1.66,-1 -1.84,-1.88 -0.27,-1.19 0.69,-2.2 0.5,-3.41 -0.2,-1.35 -0.88,-2.52 -0.75,-3.97 0.19,-1.91 3.01,-2.98 3.84,-4.81 0.87,-1.91 1.35,-3.1 3.66,-3.06 -0.6,-2.64 -9.65,-0.84 -11.97,-1.16 -2.37,-0.31 -4.36,-1.36 -6.81,-1.66 -2.77,-0.33 -6.37,0.07 -8.94,-0.84 z m -28.16,13.91 c -0.32,0.01 -0.63,0 -0.97,0.03 -1.47,0.12 -2.28,-0.2 -3.56,0.91 -0.99,0.86 -2.94,0.17 -4.06,0.31 1.45,1.28 -0.39,2.53 1.56,3.88 2.28,1.56 -1.39,2.51 -0.06,4 1.88,-0.7 1.54,-2.26 2.66,-3.5 0.79,-0.87 2.13,-0.58 3.09,-0.97 0.54,0.03 1.07,0.11 1.59,0.22 0.58,-0.38 1.13,-0.78 1.66,-1.25 1.15,-0.61 2.2,-2.02 3.59,-1.53 -1.63,-1.71 -3.28,-2.15 -5.5,-2.09 z", + "AM" : "m 702.27,421.63 c 1.65,-0.73 3.97,-0.23 5.76,-0.68 2.88,-0.73 5.89,-0.47 8.76,-0.68 -0.5,-0.51 -0.28,-0.77 0.64,-0.8 0.8,-0.63 1.18,-0.47 1.11,0.52 0.29,0.35 3.13,2.19 0.38,1.54 1.7,1.59 4.7,1.61 5.24,4.44 -3.97,1.28 -0.31,4.93 1.18,6 0.78,0.56 2.68,0.94 2.72,2.22 0.08,2.47 -2.73,2.08 -4.05,2.62 1.19,0.52 5.34,5.88 6.72,5.32 0.7,-0.28 3.67,0.77 2.4,1.54 -1.9,1.14 0.91,2.68 1.39,3.45 -1.86,0.24 -1.26,3.97 -0.71,4.88 -1.73,-0.65 -3.54,1.17 -4.46,-0.93 -0.9,-2.01 -0.76,-4.18 -2.6,-5.25 -0.86,-0.51 0.2,-2.66 -0.82,-3.1 -0.96,-0.44 -1.69,0.23 -2.6,0.66 -1.46,0.7 -1.9,-1.91 -3.58,-0.91 0.6,-3.22 -3.7,-1.47 -5.28,-2.89 -1.46,-1.31 -2.04,-3.13 -4.29,-3.06 -2.33,0.09 -4.22,-0.28 -6.14,-1.43 1.13,-0.75 0.42,-1.61 -0.04,-2.31 -0.84,-1.31 -0.24,-2.36 0.67,-3.66 2.44,-3.48 -2.75,-4.74 -2.42,-7.5", + "ES" : "m 178.19,385.56 c -0.68,0.45 -1.38,0.92 -2.06,1.38 -0.19,-2.48 -4.6,1.34 -4.16,2.84 0.47,-0.14 0.9,-0.28 1.34,-0.47 -0.72,0.47 -2.05,1.14 0.09,1.03 -2.55,1.28 -6.74,0.25 -8.47,2.44 -0.9,1.14 -2.03,0.7 -2.5,2.38 -0.29,1.05 -0.17,2.28 1.19,2.16 -0.09,0.19 -0.17,0.4 -0.25,0.59 0.55,1.75 1.9,1.49 2.91,0.56 -0.99,0.91 -2.6,2.23 -1.41,3.88 0.43,-1.43 1.96,-1.32 2.81,-2.28 -0.09,1.17 -1.73,1.58 -1.69,2.72 0.05,1.61 1.47,1.49 2.41,1.03 -0.92,0.58 -2.02,1.09 -2.16,2.41 1.09,-0.02 2.19,-0.35 2.66,-1.47 -0.56,2.54 -3.92,2.89 -2.5,6.16 1.22,-0.66 1.99,-1.97 3.41,-2.25 1.15,-0.23 2.37,-0.26 3.22,-1.19 -0.08,0.94 0.37,1.51 1.28,1.38 -1.11,0.93 -2.19,3.71 0.25,3.19 1.55,-0.33 3.06,-1.39 4.72,-0.69 1.03,0.44 4.05,1.13 4.09,-0.81 0.03,-1 5.21,-0.41 6.19,-0.09 1.37,0.44 -0.33,2.38 0.59,2.91 0.83,0.47 3.04,0.77 3.34,1.94 0.36,1.43 -2.96,3.94 -3.81,4.5 -1.38,0.89 -1.91,2.68 -3.34,3.06 0.8,-0.21 0.95,6.55 1.03,7.22 0.11,0.89 0.55,2.35 -0.34,2.84 -0.19,0.09 -2.41,1.09 -1.47,1.69 2.13,1.33 0.35,3.73 -0.19,4.91 -0.43,0.94 0.02,1.84 -1.38,1.84 -1.35,0 -2.74,0.28 -4.09,-0.13 0.43,0.89 1.26,1.66 1.88,2.38 0.74,0.86 0.31,1.47 0.84,2.47 0.62,1.19 3.09,3 2.78,4.34 -0.59,2.48 -3.5,3.85 -3.25,6.69 0.16,1.8 1.91,4.65 3.84,3.94 -0.83,2.59 -1.55,1.31 -3,2.97 -0.63,0.72 -0.63,2.06 -1.34,2.94 -0.59,0.7 -1.28,1.45 -1.38,2.47 -0.11,1.17 0.08,4.77 1.38,5.28 0.92,0.37 2.03,-0.01 2.94,-0.03 2.05,-0.05 0.1,-1.16 2.03,-0.94 -1.13,1.21 4.27,5.12 5.19,6.03 -0.63,0.75 -0.9,1.76 -0.03,2.47 0.58,0.45 2.93,1.9 1.13,2.25 0.39,1.14 1.62,4.36 3,4.19 1.26,-0.14 2.42,2.34 3.75,2.38 1.65,0.05 1.27,-1.85 2.34,-1.75 0.86,0.09 1.61,-3.44 2.53,-3.97 1.86,-1.05 4.08,-0.37 5.66,-2.06 1.37,-1.5 1.79,-1.89 3.78,-1.94 3.75,-0.07 7.45,0.38 11.09,-0.28 1.74,-0.31 3.57,0.81 5.19,0.06 1.13,-0.52 2.1,-2.16 3.53,-0.94 2.34,2.01 3.92,-2.16 4.34,-4.47 0.5,-2.69 3.88,-5.17 6.38,-5.5 0.82,-0.11 4.3,-0.24 5.03,-1.47 -0.25,-0.15 -0.62,-0.69 -0.63,-1.16 -0.01,-1.14 0.42,-2.3 0.78,-3.31 0.59,-1.61 1.37,-3.29 2.25,-4.41 1.5,-1.87 2.95,-2.42 4.84,-3.75 3.26,-2.26 1.57,-2.97 -0.53,-5.31 -3.47,-3.85 -2.31,-11.93 1.66,-14.75 2.32,-1.66 2.63,-5.32 5,-6.84 1.62,-1.03 3.94,-1.45 1.41,-3.56 3.05,-2.36 5.36,-4.18 9.22,-5.25 1.59,-0.44 3.65,-0.42 5.13,-1.19 1.23,-0.65 1.59,-2.16 3.06,-2.84 1.97,-0.89 7.84,-3.03 7.88,-5.97 0.01,-1.05 -0.96,-3.08 -0.03,-3.91 0.62,-0.56 1.31,-0.15 1.28,-1.38 -1.09,0.17 -1.17,-1.01 -2.03,-1.38 -1.51,-0.65 -2.28,-0.52 -3.56,0.41 -1.58,1.12 -2.94,0.38 -4.53,-0.28 -0.84,-0.37 -1.55,0.44 -2.25,0.69 -0.62,0.21 -1.39,-0.73 -1.88,-1.03 -1.67,-1 -2.67,-0.12 -4.34,0.09 -0.47,-4.16 -4.78,-4.06 -7.84,-5.69 -0.46,0.72 -0.63,1.5 -0.47,2.38 -2.41,-0.37 -4.87,0.03 -7.25,-0.38 -0.87,-0.14 -1.37,-1.09 -2.16,-1.41 -0.63,-0.24 -1.28,0.21 -1.91,0.16 -2.83,-0.28 -5.4,-3.59 -8.44,-3.75 -0.96,-0.05 -0.69,1.35 -1.66,0.25 -0.4,-0.47 -0.11,-1.04 0,-1.53 0.52,-2.27 -2.9,-1.13 -3.5,-2.09 -0.56,-0.86 -3.98,0.32 -5.16,0.09 -1.94,-0.4 -3.91,-1.25 -5.88,-1.41 -2.24,-0.16 -1.74,1.98 -4.25,0.44 -1.82,-1.14 -4.24,-1.62 -6.22,-1.09 -3.13,0.8 -6.3,1.13 -9.81,0.5 -2.59,-0.45 -5.17,-1.04 -7.72,-1.69 -2.4,-0.59 -2.96,-0.45 -5.19,-0.06 -2.57,0.44 -8.24,-1.61 -9.94,1 -0.24,-2.83 -6.38,-2.07 -6.69,-3.75 z m 71.34,83.16 c 0.19,0.11 0.31,0.01 0.16,-0.53 0.01,0.19 -0.06,0.38 -0.16,0.53 z m 40.56,-31.44 c -2.52,0.93 -4.79,1.69 -6.94,3.41 -0.71,0.58 -2.72,3.89 -0.22,2.72 2.84,-1.33 1.25,1.56 3.75,2 2.36,0.42 2.2,1.6 4.09,-0.78 0.05,-0.96 2.56,-3.55 1.53,-4.41 -0.74,-0.63 -1.87,0.22 -2.66,-0.41 -1.03,-0.79 -0.62,-2.2 0.44,-2.53 z M 249.47,467.5 c 0.11,0.27 0.17,0.48 0.22,0.66 -0.01,-0.2 -0.07,-0.41 -0.22,-0.66 z m -56.88,11.25 c 0.15,-0.02 0.33,-0 0.53,0.06 -0.39,0.13 -0.82,0.42 -1.16,0.78 0.06,-0.48 0.25,-0.8 0.63,-0.84 z", + "HU" : "m 422.09,343.46 c 1.06,-1.17 2.41,-2.12 3.98,-1.75 -0.46,-1.4 -0.75,-3.27 -0.27,-4.74 0.39,-1.26 1.89,-1.66 2.32,-2.92 0.35,-1.03 -3.19,-1.42 -1.22,-2.19 1.5,-0.59 2.99,2.03 4.15,0.1 1.65,-2.75 1.75,-5.37 5.21,-2.47 4.27,3.59 8.79,1.77 13.93,1.12 -2.73,-2.4 1.33,-2.48 3.07,-2.66 0.86,-0.09 3.08,-0.87 3.35,-1.99 0.47,-1.91 1.89,-0.4 3.19,0.16 1.74,0.73 4.58,-0.03 5.95,-1.33 0.99,-0.94 0.76,-3.62 1.96,-4.11 2.34,-0.94 5.05,0.44 7.34,0.68 1.07,-1.68 2.75,-0.3 3.59,0.66 1.26,1.45 2.17,1.57 4.07,0.98 3.35,-1.03 4.27,4.02 7.41,3.67 2.32,-0.24 0.87,3.15 -0.07,3.9 -1.45,1.15 -3.51,0.19 -4.7,1.66 -0.76,0.96 -2.76,3.18 -3.47,4.09 -1.14,1.47 -1.65,3.32 -2.41,4.44 -0.83,1.19 -1.37,2.38 -1.55,3.67 -0.21,1.59 -2.25,2.41 -2.91,3.92 -0.68,1.54 -0.72,2.76 -2.55,3.24 -1.27,0.31 -2.2,-0.23 -3.13,0.94 -0.96,1.21 -2.01,0.28 -3.16,0.72 -1.66,0.61 -3.56,0.07 -5.21,-0.1 -1.17,-0.12 -3,-0.84 -4.02,0.14 -1.18,1.14 -1.57,2.1 -3.26,2.19 -1.54,0.09 -3.21,0.24 -4.68,0.89 -1.38,0.59 -1.81,2.03 -3.42,2.24 -2.69,0.37 -6.12,-0.35 -8.27,-1.84 -1.23,-0.87 -2.44,-0.68 -3.39,-2.13 -1.19,-1.82 -2.92,-2.87 -4.62,-4.09 -1.55,-1.12 -2.77,-2.12 -3.68,-3.87 -0.74,-1.4 -1.65,-3.6 -3.54,-3.24", + "IS" : "m 12.43,92.09 c 1.84,-0.07 4.35,-0.65 6.08,-1.05 0.96,-0.23 0.16,-1.87 1.7,-1.05 2.08,1.1 2.61,-2.22 3.71,0.79 0.84,-0.38 1.61,-0.87 2.3,-1.45 0.72,1.99 3.01,1.47 4.03,0.26 -0.63,0.68 -1.39,1.21 -2.28,1.59 1.49,1.01 1.57,-0.14 2.44,-0.56 0.59,-0.3 3.04,1.22 4.29,0.82 -3.11,0.82 -6.63,1.64 -8.61,4.08 1.33,-0.1 2.73,0.38 4.09,0.52 1.37,0.14 2.45,-0.68 3.9,-0.14 -1.62,4.46 -11.96,-1.73 -13.73,2.87 -0.94,-2.38 -1.42,-0.52 -2.67,-0.21 -1.5,0.37 -3.19,0.21 -4.8,0.21 -3.27,0 -0.6,3.17 1.57,2.31 2.32,-0.91 3.82,-1.1 6.72,-0.82 1.38,0.14 2.68,0.09 4.03,0.09 1.37,0 3.43,1.73 4.51,0.93 -0.92,0.3 -1.66,1.01 -1.77,2.01 1.02,0.16 1.75,0.79 2.08,1.77 1.45,-1.52 4.05,-2.62 6.43,-2.64 -0.35,1.01 -1.8,1.1 -2.76,1.33 -1.14,0.26 -3.42,2.96 -0.55,2.19 -0.98,0.05 -1.77,0.38 -2.4,1 2.42,0.51 3.68,-1.87 6.22,-0.87 -1.13,0.14 -6.4,1.43 -2.73,2.76 -0.94,0.21 -2.12,-0.28 -2.99,0.12 0.71,2.06 -1.07,1.56 -2.68,1.89 -0.66,0.51 -1.41,0.58 -2.25,0.19 -0.35,-0.37 -0.74,-0.65 -1.19,-0.82 -1.45,0.54 -0.82,2.2 -0.62,3.52 2.87,-0.14 6.39,-0.17 9.11,-0.75 1.31,-0.28 2.84,0.3 4.19,0.16 1.51,-0.14 1.74,-1.64 3.58,-1.28 -0.15,0.44 -0.25,0.89 -0.32,1.38 0.8,0.12 2.45,0.98 3.07,0.37 1.14,-1.14 2.26,0.84 0.07,0.63 1.61,0.98 2.87,-0.1 3.66,-1 0.44,0.45 0.82,0.96 1.11,1.5 -0.58,0.07 -1.14,0.21 -1.67,0.37 2.02,2.75 4.7,1.84 7.25,2.27 3.04,0.52 5.91,1.59 8.93,1.73 2.29,0.1 4.61,0.03 6.72,-0.47 0.96,-0.23 1.92,-0.56 2.69,-1.1 1.93,-1.31 -0.66,-1.33 1.46,-1.92 -3.3,-0.63 2.83,-1.17 3.8,-1.21 1.7,-0.1 4.81,-0.09 5.01,-2.19 0.83,3.2 5.52,-0.17 7.01,-1.01 2.83,-1.63 5.88,-2.82 8.6,-4.57 1.59,-1.01 3.84,1.33 5.61,0.59 0.99,-0.4 6.6,-3.85 3.34,-4.06 0.84,-1.22 3.6,-0.56 1.55,-2.52 2.13,2.55 3.74,-0.52 5.89,-0.24 -2.61,-1.19 1.94,-1.57 -1.45,-1.63 0.92,0.05 1.8,-0.03 2.64,-0.26 -1.34,-0.49 -2.68,-1.07 -4.06,-1.29 1.94,-1.57 4.7,2.15 6.31,-0.54 1,-1.73 -3.5,-1.7 -4.21,-1.7 1.31,-0.14 2.69,-0.1 3.62,-1.05 -1.45,-0.35 -2.88,-0.31 -4.25,-0.12 1.34,-0.3 4.17,-1.42 3.28,-3.43 -1.42,0.51 -3.36,-1.01 -4.85,-1.31 -2.05,-0.4 -3.08,0.61 -4.38,1.71 0.82,-1.15 3.12,-1.94 2.28,-3.95 -1.8,0.12 -3.43,0.7 -5.22,0.79 0.08,-1.4 2.01,-1.75 2.25,-3.1 0.23,-1.24 -4.37,-1.49 -5.22,-2.55 1.61,0.09 1.29,-0.44 1.38,-1.61 0.11,-1.35 3.07,-1.21 4.01,-1.68 -2.34,0.49 -7.78,0.07 -7.96,3.29 -1.03,-0.84 -3.66,-1.63 -3.51,-3.03 0.24,-2.2 -4.55,-2.4 -5.44,-1.87 -0.9,0.52 -3.24,-0.75 -2.41,1.26 1.04,2.57 -1.13,2.47 -0.96,4.3 -0.54,-0.49 -4.97,-1.78 -5.65,-1.71 -2.2,0.23 -2.8,2.97 -4.18,4.22 -0.95,-1.56 -6.79,-5.56 -7.88,-3.31 -0.32,0.7 0.5,2.19 1.14,2.73 1.49,1.22 1.47,2.76 1.43,4.25 -2.4,-2.4 -4.97,-8.41 -8.83,-7.49 -1.11,0.26 -0.98,1.42 -1.8,1.61 -0.98,0.24 -2.09,-0.47 -3.01,0.03 -1.27,0.72 0.51,3.15 -0.35,4.29 -1.42,1.91 -5.57,-4.01 -6.95,-4.88 -2.45,-1.52 -3.32,1.42 -2.28,3.18 0.86,1.43 0.33,5.88 -1.27,4.04 0.43,3.27 -1.78,-0.65 -2.93,-0.86 -3.12,-0.59 -1.18,5.93 -3.5,2.71 0.46,1.47 -0.52,2.57 0.13,4.08 -1.18,-1.87 -1.35,-5.33 -4.1,-4.08 3.91,-0.68 -2.33,-3.01 -2.83,-4.48 4.19,3.99 5.56,-3.39 2.01,-2.62 2.22,-0.86 0.46,-1.17 -0.7,-1.5 -1.59,-0.47 -1.42,-1.36 -2.77,-2.22 -1.41,-0.89 -2.97,-0.23 -4.11,-1.73 -0.55,-0.72 -2.37,-1.26 -3.12,-1.38 -0.58,-0.1 -6.18,0.93 -4.85,1.66 1.82,1.03 5,1.22 6.75,1.1 -1.58,0.45 -4.39,-0.7 -4.92,1.31 1.19,0.51 3.95,0.91 4.59,2.43 0.43,1.07 -1.82,1.47 -2.02,2.31 1.42,-3.2 -1.18,-2.71 -2.91,-1.71 0.39,-1.57 -0.01,-1.8 -1.19,-0.66 0.16,-0.42 0.31,-0.86 0.4,-1.31 -1.23,-0.59 -2.57,-1.24 -3.86,-1.4 -1.02,-0.12 -3.36,0.52 -0.43,1.26 -1.61,0.4 -1.46,0.93 0.44,1.59 -1.38,-0.75 -2.79,-0.93 -4.18,-1.19 0.01,2.36 3.16,2.38 4.69,3.03 -1.66,-0.17 -4.47,-1.43 -5.14,0.38 1.92,1 3.67,0.66 5.57,1.19 -0.88,0.05 -1.75,0.17 -2.57,0.4 0.78,0.35 1.55,0.52 2.32,0.52 -2,1.73 -5.88,-2.24 -8.31,-1.33 0.6,0.96 1.57,1.71 2.6,1.98 -1.62,0.3 -1.5,0.73 0.38,1.33 -2.3,-0.66 -5.51,-2.24 -6.12,0.52 1.88,0 3.76,-0.05 5.71,1.17", + "NL" : "m 296.75,279.28 c 1.23,0.93 2.3,2.69 4.02,2.13 -0.19,-1.5 -1.85,-1.12 -2.75,-1.77 0.88,-0.63 3.35,0.35 1.19,-1.07 2.4,1.08 4.82,-1.31 7.29,-0.82 -0.67,-1.47 -2.95,0.16 -4.86,-0.47 -0.8,-0.26 -4.23,-1.43 -2.91,-2.83 3.42,-3.64 4.69,-6.54 6.19,-11.32 0.44,-1.4 1.69,-1.75 2.96,-1.96 1.93,-0.33 3.82,-1.82 5.12,-3.25 2.81,-3.13 7.58,-3.39 11.55,-3.92 2.53,-0.33 6.91,2.89 6.34,5.6 -0.39,1.75 -1.43,3.1 -1.57,4.93 -0.11,1.38 -2.93,-0.17 -3.74,1.28 -1.09,1.94 6.01,1.89 2.06,6.09 -0.38,0.26 -0.76,0.47 -1.19,0.61 -0.96,0.56 0.25,1.45 0.11,2.15 -0.32,1.56 -5.77,0.98 -6.7,0.49 0.83,2.27 -2.08,-0.77 -1.88,2.13 1.31,0.47 2.09,2.1 2.49,3.38 0.8,2.5 -1.19,4.3 -2.22,6.23 -0.33,0.61 1.96,3.32 0,3.88 -4.27,1.26 -2.99,-3.1 -1.21,-5.35 -2.75,-1.17 -7.37,-1.15 -8.32,-4.48 -0.7,0.96 -2.65,1.42 -3.24,0 -0.63,1.15 -1.97,0.77 -2.81,0.12 0.35,2.8 -3.94,0.38 -5.26,0.47 -1.61,0.09 -3.67,0.51 -4.88,-1.07 0.84,-1.66 2.73,-1.19 4.22,-1.19", + "SK" : "m 430.73,319.74 c 1.31,-3.25 2.79,-2.68 5.65,-2.71 1.1,-0.02 5.84,-2.41 6,-3.48 0.64,-4.09 10.07,-7.22 9.07,-4.22 1.22,-0.17 4.29,-3.22 5.3,-2.24 0.63,0.59 0.9,1.5 1.7,1.98 0.54,0.05 1.02,0.23 1.46,0.52 -0.15,0.45 -0.07,0.87 0.21,1.24 1.75,1.4 2.49,0.75 4.55,-0.79 0.72,-0.52 3.9,-1.54 4.66,-0.79 2.26,2.24 4.05,-0.73 6.81,-0.42 3.12,0.35 5.04,1.49 7.58,3.15 2.36,1.56 5.32,0.63 3.2,4.06 -1.17,1.91 -2.5,3.71 -2.97,5.84 -0.94,4.29 -6.68,-1.52 -7.88,-1.35 -0.94,0.12 -0.66,0.93 -1.7,0.7 -1.26,-0.24 -2.49,-0.61 -3.78,-0.79 -3.01,-0.44 -4.31,0.09 -4.77,3.15 -0.31,2.05 -4.51,2.87 -6.16,2.08 -2.81,-1.35 -3.19,0.21 -4.9,1.61 -1.31,1.08 -8,0.35 -4.58,3.32 -2.42,0.3 -4.9,1.75 -7.33,0.86 -1.23,-0.45 -2.52,0.35 -3.78,0 -1.13,-0.3 -2.33,-1.35 -3.38,-1.91 -1.59,-0.86 -3.64,-2.33 -4.47,-4.06 -0.36,-0.73 0.04,-1.66 -0.17,-2.47 -0.4,-1.49 -0.13,-1.96 -0.33,-3.31", + "LT" : "m 472.68,218.59 c 1.63,0.28 2.14,-1.5 3.32,-2.29 1.27,-0.87 3.44,-1.15 4.86,-1.5 3.71,-0.87 7.98,-0.91 11.68,-0.68 1.27,0.07 0.28,1.61 1.86,0.66 1.17,-0.68 3.74,-0.03 4.96,0.07 2.4,0.21 7.45,2.33 9.64,0.35 2.87,-2.59 3.34,-0.16 5.33,1.26 1.21,0.84 2.67,0.8 4.1,1.03 1.9,0.3 3.04,1.56 4.43,2.73 0.88,0.77 6.98,3.9 6.7,4.78 -1.19,3.64 -1.06,3.39 2,4.27 -2.05,1 -0.82,2.66 -3.43,2.1 -2.02,-0.42 -2.36,2.01 -4.07,2.54 -4.97,1.47 -1.98,4.76 -5.3,8.12 0.72,0.31 2.26,0.45 2.37,1.52 0.12,1.31 -1.59,1.59 -2.41,1.31 1.1,-2.43 -3.07,-1.85 -3.31,-1.36 -1.11,2.26 -3.26,0.8 -4.53,3.1 -0.44,0.79 -2.36,0.8 -3.22,1.26 -1.45,0.79 -3.92,-0.23 -5.48,-0.07 -0.76,0.07 -4.01,0.61 -4.15,-0.72 -0.2,-1.59 -0.67,-2.71 -2.1,-3.41 -1.45,-0.7 -2.77,-1.63 -4.26,-2.22 -0.62,-0.24 -1.71,0.47 -2.01,-0.4 -0.8,-2.41 2.52,-5.14 0.17,-6.96 0.21,0.16 -1.69,-1.59 -1.44,-1.49 -1.22,-0.51 -4.16,-0.24 -5.62,-0.35 -2.01,-0.14 -6.2,-3.55 -7.9,-2.34 0.2,-1.8 -0.31,-3.76 -1.06,-5.3 -0.95,-1.85 -0.63,-3.97 -1.14,-5.98", + "GR" : "m 525.16,413.22 c -0.61,0.04 -1,0.34 -0.78,1.16 0.32,1.22 1.79,2.72 0.28,3.91 -1.21,0.96 -3,0.52 -4.31,0.47 -1.46,-0.07 -2.83,0.94 -4.28,0.63 -1.61,-0.35 -2.58,-1.81 -4.34,-1.22 -1.63,0.56 -2.21,-1.3 -3.03,-2.28 -0.94,-1.14 -2.93,-0.43 -4.13,-0.03 -1.5,0.51 -3.05,2.34 -4.59,2.56 -1.55,0.23 -3.58,-0.41 -5,0.63 -1.06,0.77 -2.36,-0.56 -3.5,-0.44 -1.63,0.17 -0.97,1.72 -2.22,2.16 -1.96,0.72 -3.26,0.02 -5.22,0.28 -2.01,0.24 -2.42,1.78 -3.84,2.94 -1.37,1.12 -2.58,0.11 -3.97,0.41 -1.43,0.31 -2.76,0.71 -4.22,0.78 -0.13,1.47 1.5,2.78 0.25,4.22 -1.29,1.49 -1.96,1.31 -2.69,3.38 -0.52,1.5 -1.42,2.55 -2.72,3.28 -2.06,1.19 -1.48,1.1 -0.72,3.38 -2.38,-0.26 0.17,0.87 -1.44,1.69 -0.64,0.33 -1.43,0.24 -2.13,0.09 1.6,0.56 1.4,3.59 2.44,4.75 1.58,1.77 3.92,2.19 4.69,4.94 -0.12,-2.03 2.91,-1.82 3.69,-1.03 2.5,2.61 -3.14,0.64 -3.59,1.13 -1.21,1.29 0.97,3.07 1.75,3.72 1.47,1.22 1.81,3.25 2.28,5.13 0.8,-0.47 1.71,-1.25 1.94,-2.28 1.39,2.87 3.24,1.93 6.09,1.25 1.11,-0.28 4.85,2.03 4.81,-0.91 0.7,0.61 1.3,1.33 1.78,2.16 0.98,-1.59 1.16,-0.24 2.25,0.53 0.96,0.66 1.9,0.49 2.97,0.63 1.97,0.28 0.75,1.14 -0.16,1.72 -1.14,0.73 -1.73,2.14 -2.75,1.44 -1.3,-0.87 -2.32,-2.19 -3.97,-2.34 -2.1,-0.21 -3.3,-2.35 -5.19,-2.75 -1.03,-0.21 -1.8,1.18 -2.47,1.81 -0.99,0.89 -1.98,-0.03 -2.88,0.84 -0.92,0.91 -1.6,2.8 -2.84,3.22 0.92,1.57 6.85,5.94 5.75,8.22 -1.35,2.8 -0.44,6.7 2.63,7.28 -0.08,-1.14 -0.25,-3.28 1.28,-3.44 1.18,-0.14 0.83,1.41 1.53,1.97 1.09,0.86 1.43,5.68 3,5.44 -0.47,-1.85 1.34,-6.92 3.03,-3.75 0.28,0.54 3.76,4.58 3.91,4 0.33,-1.29 -1.59,-1.71 -1.22,-3.09 0.44,-1.57 -0.17,-2.86 -0.59,-4.34 -0.74,-2.48 -3.03,-4.95 -2.72,-7.75 0.9,0.89 2.24,0.98 3.31,1.47 1.08,0.48 0.11,2.03 1.44,2.13 -0.05,-0.19 2.51,-1.61 2.72,-1.59 0.69,-1.09 -1.12,-1.91 -1.44,-2.69 -0.42,2.85 -1.92,-1.04 -1.94,-2.13 -0.01,-1.68 -1.38,-0.29 -1.28,-1.84 1.65,0.14 3.38,-1.35 5.09,-1 2.33,0.49 3.72,3.1 5.41,4.63 0.9,-1.66 -0.39,-3.22 -0.09,-4.97 0.27,-1.59 0.42,-3 -1.09,-3.75 -2.04,-1.01 -3.32,-2.41 -5.5,-3.09 -2.08,-0.65 -0.54,-0.77 -1.09,-1.75 -0.6,-1.03 -1.83,0.66 -2.19,-0.38 -0.44,-1.26 -3.68,-2.26 -4.84,-2.94 1.8,0.59 3.68,-0.36 4.88,-1.94 -1.8,0.77 -3.52,-3.71 -1.28,-4.41 1.71,-0.54 3.74,2.88 1.41,3.75 5.39,-0.58 -1.77,-8.03 -2.84,-9.66 -2.01,-3.06 -4.33,-10.13 1.56,-11 0.13,0.91 -0.33,1.55 -1.16,1.81 1.15,1.75 4.02,2.01 4.78,4.09 0.67,1.84 1.19,4.41 3.94,3.19 -1.06,-1.03 -2.43,-1.4 -3.06,-2.94 -0.43,-1.05 -0.21,-1.97 1.03,-1.41 1.5,0.68 3.25,4.21 5.13,3.56 -0.12,-1.22 -5.16,-5.44 -1.22,-5.09 1.71,0.16 3.57,4.04 5.28,3.06 -0.59,-0.79 -3.3,-5.21 -4.56,-3.84 -0.62,0.68 -1.46,-0.29 -1,-1.13 0.7,-1.21 -0.5,-0.58 -0.75,-1.44 -0.47,-1.57 -0.55,-2.7 1.56,-1.84 2.83,1.15 3.06,-1.59 5.03,-2.63 1.41,-0.73 2.56,2.19 4.06,1.16 2.18,-1.49 2.17,-2 4.44,-1 1.17,0.51 8.83,0.9 8.09,2.72 4.1,-2.05 1.57,-7.72 6.19,-8.56 -0.46,-1.57 -0.54,-3.33 -1.97,-4.22 -0.28,-0.17 -1.86,-0.85 -2.88,-0.78 z M 525.56,446 c -0.47,0.02 -0.98,0.1 -1.59,0.28 -1.06,0.3 -2.88,0.9 -1.34,2.13 0.83,0.66 2.08,0.1 3.03,0.19 -0.38,0.24 -0.75,0.5 -1.09,0.78 0.94,0.7 1.98,1.34 3.16,1.5 0.44,-0.87 1.2,-1.37 2,-0.81 -1.26,-2.74 -2.13,-4.14 -4.16,-4.06 z m -30.22,3.88 c -1.43,0.05 -2.45,1.66 -3.34,2.69 1.84,-1.64 7.45,2.64 6.84,4.97 0.84,1.71 3.11,0.31 4.41,1.03 1.19,0.65 1.73,3.2 2.75,4.25 0.43,0.45 3.6,2.31 2.78,0 -0.6,-1.68 -2.48,-1.22 -3.28,-2.56 -1,-1.66 0.11,-4.53 -1.84,-5.53 -1.67,-0.86 -3.83,-0.24 -5.22,-1.78 -0.92,-1.03 -1.45,-3.11 -3.09,-3.06 z m 27.91,5.84 c -0.44,0.06 -0.95,0.43 -1.5,1.16 2.52,1.08 -0.44,3.98 1.81,4.94 2.25,-1.48 1.59,-6.37 -0.31,-6.09 z m -23.19,39.75 c 0.07,0.84 -0.08,1.62 -0.5,2.38 -0.33,-0.23 -0.67,-0.46 -1,-0.69 -0.09,1.12 -1.08,3.53 0.22,4.16 1.26,0.61 4.13,0.8 5.5,0.47 1.8,0.49 3.83,0.37 5.5,1.28 0.9,0.49 0.67,1.67 1.53,2.25 0.99,0.63 2.43,0.2 3.5,-0.03 2.92,-0.63 5.77,-0.95 8.72,-0.94 0.75,0.02 1.88,0.03 2.47,-0.66 0.44,-0.51 0.34,-2.14 -0.34,-2.28 -1.41,-0.3 -3.08,1.1 -4.53,1.19 -0.96,0.07 -0.48,-0.83 -0.47,-1.53 0.05,-1.66 -1.64,-0.7 -2.5,-0.75 -3.07,-0.16 -6.15,-2.29 -9.28,-1.06 -1.5,0.58 -2.69,0.82 -3.84,-0.41 -0.78,-0.82 -2.14,-1.19 -0.19,-2.03 -1.94,0.26 -4.07,1.44 -4.78,-1.34 z", + "SI" : "m 395.32,354.55 c 0.66,-0.44 1.25,-0.98 1.75,-1.61 -1,-0.24 -1.9,-0.86 -2.79,-1.4 2.32,-2.64 1.27,-4.25 4.09,-3.53 1.04,0.28 7.33,2.64 8.25,1.8 1.84,-1.71 3.5,-3.59 6.1,-3.41 1.38,0.09 3.03,0.8 4.34,-0.03 1.35,-0.86 2.96,-0.93 4.3,-0.02 -1.13,-1.56 0.76,-4.01 2.3,-2.66 1.21,1.05 2.6,3.8 3.47,5.2 -1.21,-0.19 -5.13,-1.4 -3.07,1.28 -1.21,-0.05 -1.85,-0.89 -2.4,0.59 -0.31,0.82 -3.32,1.57 -4.23,2.15 -0.7,0.44 0.51,2.64 0.43,3.59 -0.13,1.49 -3.36,1.59 -4.68,2.8 0.52,0.19 0.96,0.68 1.5,0.8 -0.96,0.23 -0.38,3.92 -2.2,2.66 -2.09,-1.47 -4.15,-0.79 -6.14,-2.89 -0.72,1.78 -3.13,3.29 -4.94,2.41 -0.75,-0.35 -0.72,-0.38 -1.33,0.24 -0.92,0.96 -2.8,0.14 -3.82,-0.1 1.15,-1.08 3.5,-1.49 2.65,-3.13 -0.67,-1.29 -3.8,-0.96 -2.21,-3.11 -0.78,-0.19 -1.27,-0.79 -1.39,-1.63", + "NO" : "m 544.69,14.38 c -2.71,-0.03 -8.14,2.68 -8.94,2.81 1.46,0.33 3.22,0.12 4.09,1.5 -1.54,-0.72 -3.03,0.97 -4.63,0.84 -0.17,1.12 0.34,2.01 1.38,2.25 -0.88,-0.28 -1.82,-0.35 -2.81,-0.16 0.27,0.52 0.56,1.06 0.84,1.56 -1.13,0.03 -2.65,-0.74 -3.72,0.31 -0.72,0.72 -0.98,1.34 -2.09,1.22 1.06,-1.61 1.74,-4.82 -0.94,-4.34 2.79,-0.19 2.88,-1.58 2.66,-3.91 -3.62,0.96 -9.82,5.36 -12.5,8.25 -0.59,0.63 0.63,1.01 -0.31,1.63 -0.75,0.37 -1.38,0.91 -1.88,1.59 -0.47,0.65 -2.12,-0.42 -3.13,0.13 0.05,-1.47 2.54,-3.56 3.22,-3.63 0.12,-1.14 -0.47,-1.69 -1.59,-1.41 2.28,-2.34 6.68,-2.52 8.31,-5.56 -2.08,1.03 -3.61,-0.91 -5.59,-0.72 2.17,3.57 -2.75,-0.2 -2.84,-0.22 -1.38,-0.31 -7.54,0.38 -3.72,1.19 -1.62,1.64 -2.87,-0.45 -4.56,0.84 1.13,0.94 2.72,0.83 3.97,1.53 -1.18,0.72 -6.19,0.45 -3.75,2.81 -1.86,0.07 -3.73,-0.46 -5.56,0.59 -1.13,0.66 -2.24,2.53 -3.63,2.5 3.17,0.33 -1.14,0.71 -1.72,0.66 2.52,0.33 1.27,1.13 -0.09,1.81 0.74,0.86 2.76,0.6 2.91,1.41 -2.16,0.09 -5.71,1.51 -5.5,-2.09 -1.88,1.17 -4.09,1.2 -6.06,1.13 1.54,-0.12 4.51,0.18 5.22,-1.97 -1.77,-0.28 -3.66,-1.02 -5.56,-0.69 0.03,0.89 0.44,1.5 1.19,1.72 -1.16,-0.18 -2.5,-0.53 -1.94,-2.13 -1.82,1.43 -4.04,-2.07 -4.88,1.38 -0.88,-0.68 -1.82,-1.27 -2.78,-1.81 -0.19,0.51 -0.37,1.04 -0.56,1.56 -0.84,-0.56 -1.78,-0.65 -2.81,-0.28 1.5,1.92 5.99,2.36 8.28,1.66 -3.32,0.87 0.31,0.79 0.69,2.34 -1.93,-1.68 -2.06,0.32 -1.28,0.88 1.34,0.3 1.17,0.45 -0.47,0.44 1,0.1 1.8,0.54 2.41,1.31 -0.74,-0.1 -11.84,-5.98 -9.09,-1.31 -1.7,-1.33 -2.24,1.88 -3.75,-0.25 0.46,-0.44 0.96,-0.84 1.47,-1.19 -3.83,0.75 -6.09,4.51 -1.75,6.03 -1.23,-0.12 -3.87,-2.22 -4.81,-0.34 -0.92,1.85 -2.84,2.11 -4.41,3.13 1.49,-1.45 6.87,-7.8 3.47,-9.22 -0.31,1.82 -2.31,1.21 -3.03,2.75 -0.34,-1.74 -2.43,1.34 -0.88,2.19 -1.38,-0.03 -2.1,1.83 -3.28,2.56 1.11,-1.84 0.89,-3.42 1.28,-5.38 -2.37,0.47 -7.56,0.05 -7.53,3.66 0.88,-0.29 1.72,-0.25 2.53,0.03 -0.89,-0.21 -1.72,0.03 -2.47,0.75 0.29,0.6 0.67,0.94 1.13,1.13 -0.62,-0.17 -1.24,-0.34 -1.69,-0.59 -1.38,-0.79 -2.77,-1.29 -4.47,-0.91 0.99,1.98 3.29,2.02 5.09,2.88 -1.93,-0.82 -4.58,-1.37 -5.13,1.06 1.09,-5.98 -7.44,-1.58 -4.06,1.06 -3.08,-0.58 -7.55,3.63 -3.81,3.28 -1.07,0.51 -2.01,1.08 -0.69,1.44 -1.12,-0.26 -2.29,-0.53 -3.38,0.16 0.96,0.35 1.89,0.72 2.81,1.16 -2.45,-0.3 -5.01,-0.57 -7.5,-0.19 -2.61,0.38 -1.97,2.36 -3.88,2.69 1.53,1.17 4.63,0.95 6.47,0.72 2.93,-0.37 4.78,-0.39 7.56,0.47 -0.68,-0.15 -5.03,-0.15 -3.72,0.41 -0.82,-0.14 -1.84,-0.11 -2.13,0.5 0.03,0.29 0.16,0.53 0.34,0.69 0.09,0.08 0.21,0.11 0.34,0.16 0.13,0.04 0.27,0.08 0.44,0.09 -0.17,-0.01 -0.32,-0.06 -0.44,-0.09 -0.15,-0.04 -0.25,-0.08 -0.34,-0.16 -0.36,-0.28 -0.44,-0.73 -1.09,-0.91 -0.91,-0.02 -1.82,-0.07 -2.72,-0.16 -2.06,-0.86 -4.22,-0.28 -6.41,-0.13 1.29,1.21 3.01,2.43 4.75,2.91 -2.08,-0.38 -3.82,-1.64 -5.81,-2.25 1.9,0.73 1.85,1.17 -0.09,1.31 1.02,0.03 2.02,0.16 3,0.41 -0.74,0.21 -1.43,0.48 -2.13,0.78 1.42,0.45 2.91,0.69 4.41,0.78 -0.98,0.19 -1.91,0.14 -2.84,-0.13 0.75,1.47 0.38,1.78 -1.13,0.91 3.63,2.2 -0.7,0.52 -1.31,0 0.16,1.08 0.9,1.9 1.97,2.13 -3.09,0.21 -1.58,-3.47 -3.28,-4.59 -1.37,-0.91 -6.25,3.47 -3.84,0.5 -1.42,0.7 -3.11,0.23 -4.03,1.84 2.29,0.26 4.7,-0.77 6.81,0.41 -0.55,1.68 -3.34,0.91 -4.53,1.03 -0.78,0.07 -8.8,0.92 -4.34,1.09 -0.92,-0.03 -1.86,-0.03 -2.78,0.09 0.84,0.63 1.79,0.99 2.84,1.06 -1.14,0 -2.2,0.63 -2.81,1.59 3.72,-0.09 7.14,-3.8 10.34,-0.41 -1.23,-0.75 -6.05,-0.79 -2.72,-0.25 -0.88,0.09 -2.2,-0.67 -3.03,-0.09 -2.65,1.87 3.87,0.93 -0.59,1.91 2.26,0.86 4.51,-0.36 6.81,-0.09 -1.38,-0.05 -4.79,2.36 -1.84,2.47 -1.45,0.58 -2.26,-1.07 -3.44,-1.44 -1.31,-0.42 -2.86,-0.19 -4.19,0.13 0.54,-0.26 1.06,-0.52 1.59,-0.78 -1.41,-0.94 -3.07,0.08 -4.34,0.78 0.87,0.33 1.77,0.48 2.72,0.41 -1.07,1.5 -1.49,-0.08 -2.72,0.25 -1.09,0.3 -1.73,1.4 -2.81,1.72 2.57,1.08 4.51,-0.04 7.09,0.06 1.47,0.06 2.87,0.52 4.28,0.88 -0.51,0.03 -0.64,0.46 -0.69,1.44 -1.27,-1.08 -3.56,-1.81 -5.16,-0.81 0.05,-1.38 -5.97,-0.39 -6.56,1.47 1.02,-0.02 1.99,0.24 2.84,0.78 -2.08,-1.08 -3.64,0.85 -5.72,0.47 -1.61,-0.3 -3.55,0.36 -5,1.09 1.43,0.38 2.64,1.37 4.13,1.59 -0.55,0.03 -6.35,0.18 -2.75,0.53 -3.32,0.35 0.62,0.57 1.16,0.5 -1.8,0.66 -3.62,-0.33 -5.44,0.16 0.7,0.16 1.36,0.39 2.03,0.66 -0.95,-0.17 -1.91,-0.15 -2.84,0.13 1.43,2.55 3.61,0.03 5.69,0.66 -0.24,0.26 -3.79,1.97 -4.22,1.97 -1.27,0.02 -1.74,-1.58 -3.09,-0.66 1.25,0.59 1.42,1.64 0.22,2.5 1.38,0.42 2.84,0.02 4.25,0.25 -1.53,0.12 -3.09,0.27 -4.03,1.72 0.99,-0.24 1.97,-0.41 2.97,-0.59 -0.08,0.03 -0.15,0.03 -0.25,0.06 -1.78,0.66 -4.97,2.45 -6.75,2.5 1.73,-0.19 4.88,0.75 5.28,2.91 -3.78,-3.94 -7.98,1.26 -4.66,2.63 -1.29,-0.73 -4.64,-1.46 -3.06,1.22 0.12,0.19 3.12,1.39 3.53,1.28 -0.99,0.31 -2.33,1.11 -3.25,0.19 -0.27,-0.42 -0.58,-0.78 -0.94,-1.09 -1.69,-0.09 -2.9,2.77 -2,4.06 0.66,-0.84 1.64,-1.4 2.69,-1.19 -0.92,0.93 -1.16,1.67 0.63,1.84 -3.2,0.38 0.38,0.51 1.28,0.09 0.98,-0.44 1.85,-1.06 2.81,-1.53 -2.21,2.05 -6.27,4.31 -9.22,2.88 1.09,0.26 2.14,0.19 3.19,-0.25 -0.31,-1.73 -2.2,-1.57 -2.44,0.13 -1.17,-1.22 -4.33,0.37 -1.16,0.28 -1.1,0.63 -2.32,0.93 -3.56,1.03 4.55,-0.31 -4.06,0.08 0,0.91 -0.91,-0.09 -1.83,0.03 -2.69,0.38 1.03,0.3 2.06,0.28 3.06,-0.13 -1.29,0.73 -2.78,0.34 -4.06,1 1.81,0.16 1.87,0.49 0.13,1 1.35,0.02 2.59,-0.38 3.81,-0.88 0.66,0.14 1.32,0.23 2,0.25 -1.38,0.37 -4.18,0.41 -4.22,2.41 0.91,0.02 1.83,0.15 2.69,0.47 -1.29,0.02 -2.79,1.78 -0.31,1.53 -1.53,0.19 -3.01,0.93 -4.31,1.75 0.25,-0.44 0.5,-0.9 0.69,-1.38 -1.45,-0.33 -2.25,-1.74 -3.66,-2.16 0.7,3.06 -7.1,2.16 -5.84,5.66 -1.62,-0.56 -1.08,0.42 -2,1.16 -0.75,0.59 -3.76,2.2 -0.91,1.63 -0.37,0.26 -0.73,0.52 -1.06,0.81 -1.54,0.4 -3.08,1.38 -4.34,1.94 2.26,-0.02 1.13,0.85 0.16,1.5 1.73,-0.73 3.55,-1.19 5.38,-1.63 -0.8,0.72 -1.78,1.25 -2.88,1.25 2.28,3.31 3.11,2.56 7.03,1.16 1.21,-0.44 6.13,-1.97 4.63,-4.03 -0.8,0.49 -1.67,0.75 -2.63,0.75 2.61,-0.35 4.17,-3.27 6.81,-3.38 -2.93,1.7 0.24,0.97 1.38,1.13 -1.29,0.61 -3.15,0.54 -3.56,2.25 0.99,-0.51 1.78,-0.12 1.88,1 -2.6,0.3 -4.98,1.56 -7.03,3.16 0.84,-0.51 1.71,-0.6 2.63,-0.28 -1.43,-0.14 -1.67,0.38 -0.75,1.53 -1.51,0.35 -3.16,-0.05 -4.69,-0.06 -0.92,-0.02 -5.08,0.76 -1.69,1.56 -1.33,0.04 -2.7,-0.22 -4,0.25 2.64,-1.15 0.1,-4.29 -1.72,-3.78 -1.55,0.44 -3.44,0.87 -4.78,1.78 0.87,-0.14 1.75,-0.14 2.63,0 -0.95,0.1 -1.85,0.44 -2.63,1 0.95,0.26 1.91,0.3 2.88,0.13 -1.37,0.24 -2.73,0.55 -4,1.13 1.53,-1.56 0.04,-2.11 -1.41,-1.53 -0.92,0.37 -1.67,-0.21 -2.41,0.72 -0.38,0.56 -0.79,1.09 -1.28,1.56 1.19,0.7 2.58,0.55 3.88,0.38 -2.18,0.37 -4.68,0.45 -6.78,0.94 -1.82,0.42 1.51,1.63 2.06,1.59 -3.64,0.17 0.87,0.34 1.38,0.38 -1.11,0.21 -2.76,1.26 -0.25,1.5 -2.56,-0.09 -1.8,0.24 -3.22,-1.41 -0.59,-0.68 -2.16,-2 -3.16,-1.38 0.7,3.01 4.28,2.99 5.66,5.41 -1.13,-0.86 -3.94,-1 -4.44,-2.5 -0.59,-1.78 -1.79,-0.97 -3.19,-1.25 -1.53,-0.31 -2.82,1.23 -4.28,0.22 -1.43,-1 -2.98,-0.65 -4.28,0.28 0.78,0.79 1.68,1.27 2.75,1.5 -0.86,-0.07 -1.68,0.04 -2.47,0.38 1.67,1.89 4.64,0.1 6.59,0 -0.86,0.28 -1.74,0.52 -2.59,0.75 0.84,0.61 1.74,0.56 2.66,0.34 -0.88,0.34 -1.53,0.93 -1.63,1.91 0.92,0.09 1.83,-0.01 2.72,-0.25 -1.9,1.33 -5.28,0.25 -7.31,-0.5 -2.41,-0.89 -5.19,-0.14 -7.56,0.41 1.31,1.1 2.87,0.41 4.25,1.25 -1.49,0.19 -3,0.03 -4.44,0.5 1.84,0.51 3.82,-0.62 5.63,0.06 2.3,0.86 2.66,2.42 5.56,2.31 -0.7,0.33 -2.2,-0.35 -2.72,0.13 -1,0.89 -0.25,1.8 0.78,2.03 -0.82,0.58 -1.73,0.73 -2.72,0.47 4.49,-3.04 -7.11,-7.74 -3.63,-1.13 -1.9,-1.56 -2.34,-3.07 -4.84,-1.53 -2.06,1.28 1.42,2.71 2.44,2.94 -0.6,0 -4.07,0.14 -4.22,-0.75 -0.23,-1.45 -1.62,-0.62 -1.72,0.63 -2.09,-2.61 -3.73,0.14 -1.47,0.13 -0.35,0.37 -0.73,0.67 -1.19,0.88 -0.15,-1 -3.75,-3.88 -3.81,-2.25 -0.05,1.12 2.47,1.5 3.06,2.13 -0.68,0.73 -1.54,1.07 -2.56,1 0.62,0.49 1.41,0.67 2.25,0.75 -1.6,0.57 -4.14,1.89 -1.53,1.63 -0.74,0.63 -1.6,0.87 -2.56,0.75 0.07,2.15 3.05,1.28 4.22,1 -1.29,0.49 -2.71,0.5 -4.03,0.78 1.34,-0.12 2.68,-0.37 4.03,-0.16 -3.8,0.8 2.76,0.22 -1.16,1.41 0.91,-0.01 1.71,0.48 2.56,0.56 -1.67,0.02 -3.33,-0.12 -4.91,0.47 1.14,-0.39 1.25,0.06 0.34,1.34 1.55,-0.56 3.44,-1.17 5.13,-0.63 -1.71,-0.12 -3.58,0.14 -5.13,0.88 1,0.61 2.37,1.51 0.06,1.53 1.45,0.35 2.73,1.83 4.28,1.34 1.47,-0.45 4.08,-1.34 5.63,-1.09 1.37,0.23 3.2,1.58 4.41,0.28 0.84,-0.87 0.54,-2.21 2.03,-2.44 -2.68,2.36 3.36,2.09 4.56,1.28 -0.47,0.33 -0.93,0.72 -1.34,1.13 1.3,0.47 2.52,-0.18 3.81,-0.13 -2.06,0.59 -4.26,1.65 -2.41,3 -0.76,-0.27 -1.46,-0.25 -2.16,0.03 1.58,-1.05 -1.88,-3.6 -3.66,-2.38 -1.81,1.26 -4.44,-0.1 -6.44,-0.03 -2.77,0.1 -4.56,1.24 -7.44,0.75 -2.72,-0.45 -1.61,1.6 -0.31,1.25 -0.47,1.35 -0.67,1.34 -1.81,0.5 0.48,2.94 3.19,0.47 4.78,0.88 -1.71,-0.07 -1.31,1.77 -1.09,2.91 -0.98,-1.22 -2.76,-1.91 -4.22,-1.91 1.53,0.54 1.7,3.28 3.47,3.28 1.8,0 2.58,-2.08 4.22,-2.5 0.86,2.43 -2.32,6.8 -3.66,3.13 -0.28,0.91 -0.98,1.64 -1.88,1.91 1.35,0.28 1.01,2.35 2.13,2.88 1.37,0.63 2.52,-2.04 2.84,-2.88 -0.12,0.84 -0.3,1.68 -0.53,2.5 2.56,-0.38 1.06,5.65 4.13,-0.03 0.42,-0.79 2.75,-2.61 3.47,-2.91 2.41,-1 5.33,-1.55 7.94,-1.09 -3.42,0.3 -3.94,2.42 -5.94,4.78 0.27,-1.26 1.2,-2.52 0.63,-3.91 -1.02,0.7 -7.02,3.41 -3.75,4.41 -2.06,-0.02 -4.34,2.29 -5.47,3.81 1.16,0.73 2.75,1.2 4.06,0.75 0.19,-0.06 0.39,-0.15 0.56,-0.25 -0.1,0.09 -0.32,0.16 -0.56,0.25 -1.41,0.52 -4.57,1.08 -1.69,1.44 -1.17,0.59 -3.46,-0.66 -3.88,0.84 -0.32,1.12 -0.78,2.05 -2.09,1.25 1.53,0.04 1.72,-1.52 1.84,-2.69 -1.37,0.44 -2.66,1.84 -2.69,3.34 -0.01,0.94 1.41,3.06 1.78,1.5 -0.16,2.34 3.26,-0.97 0.31,-1.22 0.46,-0.37 0.97,-0.65 1.53,-0.84 0.03,0.94 0.07,1.85 0.09,2.78 0.75,-0.51 1.58,-0.7 2.5,-0.59 -0.08,-1.03 -0.67,-1.42 -1.59,-0.97 1.06,-0.94 2.49,-0.88 3.81,-0.84 -0.95,0.05 -1.51,0.63 -1.53,1.59 0.96,-0.44 2.64,-1.38 3.13,-2.38 0.64,-1.29 1.75,-0.14 2.94,-0.44 -2.04,0.61 -3.57,1.89 -5.31,3.03 0.83,0.21 1.67,0.3 2.53,0.25 -2.09,0.26 -1.32,0.78 0.16,0.34 0.8,-0.28 1.62,-0.38 2.47,-0.34 -1.02,0.17 -6.76,1.68 -3.66,2.31 -0.84,0.23 -1.67,0.46 -2.5,0.72 0.96,0.4 1.56,1.34 1.38,2.41 1.59,-1.24 3.61,-1.66 5.59,-1.81 -1.7,0.45 -3.57,0.65 -5.09,1.56 0.43,0.38 0.87,0.78 1.34,1.13 -2.49,0.12 -4.43,-2.24 -6.91,-2.06 0.42,0.24 0.83,0.55 1.22,0.84 -5.36,3.03 6.57,10.83 11.34,9.41 -0.68,0.37 -1.31,0.84 -1.88,1.38 1.35,1.84 4.7,1.11 6.56,1.16 1.17,0.04 2.22,0.63 3.38,0.63 1.15,0.02 2.54,-1.02 3.59,-1.41 2.52,-0.93 5.01,-1.58 7.34,-3 1.89,-1.17 2.73,-3.66 5.13,-4.03 -0.21,-0.45 -0.41,-0.91 -0.63,-1.34 1.07,0.02 2.11,-0.15 3.13,-0.5 -0.28,-0.4 -0.58,-0.79 -0.88,-1.19 1.82,0.12 5.69,-2.15 2.53,-3.53 1.14,0.45 2.14,1.16 3.25,1.69 1.84,0.91 0.86,0.15 2.09,-0.69 0.76,-0.51 1.62,-0.81 2.34,-1.41 0.84,-0.68 0.94,-2.76 0.94,-0.31 0.64,-2.29 0.32,-3.34 -1.44,-4.97 0.91,0.44 1.61,0.16 1.81,-0.88 0.32,0.42 0.62,0.85 0.94,1.25 1.57,-1.12 -0.07,-2.37 0.06,-3.75 0.24,-2.41 3.38,-1.64 2.13,0.69 -0.27,-2.87 -1.08,0.33 -1.09,1.06 -0.03,1.21 0.17,2.44 0.5,3.59 0.78,2.57 2.36,2.44 4.5,3.56 0.82,0.42 2.12,0.22 2.69,0.94 0.47,0.61 0.71,2.22 1.59,2.38 1.93,0.35 2.57,-3.93 2.69,-5.16 0.12,-1.28 -1.62,-2.99 -0.94,-4.13 0.56,-0.94 1.92,-1.68 1.84,-2.91 -0.15,-2.29 1.71,-1.34 3.66,-2.09 1.17,-0.45 2.82,-1.79 2.69,-3.28 -0.15,-1.77 1.43,-2.69 0.75,-4.53 -0.59,-1.57 -2.07,-2.55 -2.59,-4.16 -0.88,-2.69 1.36,-3.31 3.59,-3.31 0.74,0.02 2.24,-3.73 2.06,-4.38 -0.29,-1 -1.61,-1.45 -2.44,-1.78 -1.69,-0.68 -4.42,-1.46 -4.63,-3.75 -0.31,-3.62 1.73,-6 0.03,-9.66 -0.86,-1.84 -1.82,-5.26 -0.06,-6.47 0.83,-0.58 -1.28,-3.28 -1.34,-4.28 -0.08,-1.28 1.23,-2.38 1.31,-3.78 0.16,-2.71 6.77,-6.26 9.03,-6.63 2.46,-0.38 9.23,1.45 10.69,-1.03 2.09,-3.57 -2.37,-5.12 -4.81,-5.94 1.53,-1.8 3.25,-3.49 5.06,-5.03 1.37,-1.21 2.05,-3.7 3.5,-4.5 1.86,-1.01 0.99,-10.22 0.66,-11.66 2.33,0.1 7.69,0.04 9.41,-2.09 0.79,-0.98 -1.04,-2.47 0.28,-3.19 1.11,-0.61 1.71,-1.08 2.63,-2.06 1.3,-1.4 6.83,-4.51 7.19,-6 0.43,-1.75 -2.26,-3.35 -3.28,-4.28 4.54,-2.05 6.55,-6.86 11.38,-8.44 2.92,-0.96 8.54,2.68 9.84,-1.94 0.38,-1.33 -1.46,-3.82 0.22,-4.59 2.34,-1.07 3.93,0.77 6.25,0.47 4.9,-0.59 9.74,3.72 14.5,0.31 -0.86,-0.4 -1.75,-0.73 -2.69,-0.94 2.38,-1.38 5.77,-4.47 1.97,-6.06 3.01,-1.29 7.32,0.14 10.09,-1.31 -0.42,-0.38 -0.82,-0.77 -1.22,-1.19 3.59,-1.99 6.01,-1.35 8.72,1.03 1.45,1.28 4.13,4.67 5.88,5.13 3.97,1.03 8.2,1.87 12.44,0.31 1.38,-0.51 1.64,-2.01 3.31,-1.5 1.35,0.44 2.78,0.73 4.16,1.09 2.04,0.56 5,3.25 6.97,0.94 0.84,-1 1.56,-2.29 2.84,-2.78 1.26,-0.45 2.3,-0.09 3.47,-1 1.04,-0.86 0.21,-2.46 0.44,-3.44 0.38,-1.56 1.01,-3.06 1.66,-4.56 2.84,-6.54 11.18,-4.05 16.13,-6.34 3.75,-1.78 5.26,1.05 8.13,2.22 2.5,1.03 5.24,1.46 7.88,2.16 3.43,0.93 2.13,3.48 -0.09,5.31 -0.83,0.7 -3.38,1.8 -1.75,2.91 0.8,0.54 1.67,1.07 2.78,0.53 1.96,-0.96 1.17,-1.87 2.22,-3.09 0.8,-0.96 3.33,-0.97 4.38,-1.25 1.84,-0.49 4.92,-1.4 4.25,-3.81 0.87,0.4 8.2,3.46 7.53,-0.25 -0.35,-1.85 -3.56,-2.93 -4.69,-0.53 -0.24,-1.59 -1.89,-1.77 -3.31,-1.84 -0.16,0.75 -0.19,1.48 -0.13,2.22 -1.07,0.04 -1.71,0 -1.69,-1.06 -1.29,0.21 -2.56,0.41 -3.84,0.56 3.97,-1.57 0.51,-2.45 -1.03,-2.66 3.97,-1.38 -2.13,-1.55 -3.28,-1.78 -1.63,-0.31 -3.29,-0.58 -5,-0.69 2.85,-2.2 7.91,-0.09 10.63,0.31 3.39,0.52 5.54,-1.42 8.78,-2.06 0.72,-0.16 5.8,-0.69 4.59,-2.28 -1.88,-2.47 -6.35,-2.04 -9.31,-1.81 3.32,-0.72 -0.87,-3.57 -3.19,-1.56 0,-2.43 -3.38,-0.83 -4.81,-0.41 2.1,-2.76 -3.42,-3.66 -5.13,-2.72 -1.27,0.7 -6.1,5 -2.59,4.97 -1.67,-0.17 -3.71,0.95 -3.91,2.91 -0.16,-1.17 0.65,-2.2 1.72,-2.78 -1.69,-0.47 -3.65,0.28 -5.41,0.16 1.61,-0.73 3.26,-1.29 4.81,-2.25 -1.47,-1.42 -4.37,0.21 -6.25,0.28 1.54,-0.3 3.02,-1 4.56,-1.41 -0.78,-0.58 -1.66,-0.81 -2.72,-0.69 0.42,-0.23 7.53,-1.1 6.38,-2.47 -0.42,-0.49 -3.02,-0.6 -3.03,-1.16 -0.02,-0.81 -0.63,-1.12 -1.53,-1.13 z M 309.13,145.91 c -0.18,0.07 -0.38,0.13 -0.56,0.22 0.2,-0.09 0.4,-0.16 0.56,-0.22 z m 129.03,-110.38 c -0.56,0.05 0.04,1.03 0.06,1.16 -0.03,-0.02 -0.29,-0.31 -0.38,-0.41 0.88,1.25 -3.03,-0.41 -4.25,0.19 0.79,0.73 1.78,1.03 2.91,0.91 -2.06,0.73 -4.22,0.38 -6.31,0.81 1.31,-0.14 1.6,0.09 1.38,1.31 0.48,-0.05 0.97,-0.1 1.47,-0.16 -1.98,0.44 -2.02,0.88 -0.09,1.31 -0.94,0.37 -1.88,0.68 -2.84,0.94 1.61,0.94 3.6,0.53 5.25,-0.31 1.96,-1.01 4.21,0.04 6.25,-0.47 -1.66,-0.38 -1.73,-0.8 -0.19,-1.25 0.76,-0.77 1.34,-2.37 0.25,-2.28 1.28,-0.63 -1.36,-0.85 -2.28,-1.31 -0.64,-0.32 -1.01,-0.46 -1.22,-0.44 z M 453.41,38 c 0.68,0.13 1.45,0.06 2.25,0.06 1.47,0 0.47,1.86 -0.56,1.97 0.78,-1.21 -0.36,-1.66 -1.69,-2.03 z M 419.25,43.56 c -0.32,-0 -0.69,0.1 -1.16,0.31 -1.04,0.49 -1.62,2.53 -0.63,3.09 -0.66,-0.13 -1.34,-0.08 -2,0.16 0.11,0.44 0.24,0.88 0.34,1.31 -0.87,0.31 -1.75,0.47 -2.66,0.5 1.3,1.49 -1.1,2.21 -1.22,3.72 1.27,-1.08 2.86,-1.71 4.44,-2.13 -0.43,0.47 -0.85,0.95 -1.25,1.44 0.8,0.03 1.79,0.79 2.59,0.53 1,-0.31 1.56,-1.89 2.41,-2.5 -0.29,3.04 1.26,0.43 2,-0.34 0.82,-0.84 1.98,-0.47 2.97,-0.5 1.82,-0.07 3.62,-2.57 1.78,-3.78 -0.78,-0.52 -2.49,-0.81 -3.25,0.06 -1.07,1.24 -3.2,2.21 -4.78,3.78 0.08,-0.38 4.48,-5.2 0.78,-2.63 1.04,-1.24 1,-3.02 -0.38,-3.03 z m -16.94,35.66 c -1.03,1.05 -5.86,1.94 -3.69,2.5 -0.72,-0.16 -1.89,0.45 -2.53,0.03 -0.72,-0.45 -0.63,-1.07 -1.13,-1.16 2.44,-0.43 4.92,-0.79 7.34,-1.38 z M 382.63,98.25 c 0.77,0.03 1.57,0.23 2.41,0.66 -1.2,-0.49 -2.55,-0.64 -3.88,-0.53 0.48,-0.09 0.97,-0.15 1.47,-0.13 z m -21.75,13.56 c 0.46,-0.02 0.93,0.11 1.41,0.41 -0.79,-0.3 -1.61,-0.26 -2.44,-0.06 0.35,-0.21 0.68,-0.33 1.03,-0.34 z m -21.84,15.78 c 0.66,0.01 1.29,0.21 1.88,0.81 -0.96,-0.34 -2.71,-0.56 -4.22,-0.31 0.79,-0.25 1.59,-0.51 2.34,-0.5 z M 316.81,139.31 c 0.3,-0.01 0.58,0.01 0.84,0.03 -3.51,0.12 3.36,0.41 4.19,0.56 0.2,0.03 0.39,0.06 0.59,0.06 -1.71,0.25 -3.41,0.7 -4.13,1.25 1.34,-1.63 -1.31,-0.82 -2.22,-1 -0.61,-0.13 -1.08,-0.49 -1.59,-0.75 0.8,-0.05 1.6,-0.13 2.31,-0.16 z m 8.09,0.34 c 0.51,-0.04 0.99,0.03 1.47,0.22 -0.62,-0.14 -1.71,-0.14 -2.88,-0.03 0.47,-0.07 0.94,-0.15 1.41,-0.19 z M 335.13,145 c -2.01,1.91 -3.35,3.4 0.34,3.88 -0.38,0.01 -1.4,0.2 -2.47,0.5 -1.58,-1.94 0.47,-3.68 2.13,-4.38 z m -18.94,0.06 c 0.15,0.01 0.29,0.03 0.44,0.06 -0.7,0.22 -1.43,0.28 -2.16,0.31 0.15,-0.01 0.28,-0.04 0.44,-0.09 0.4,-0.2 0.84,-0.3 1.28,-0.28 z", + "MD" : "m 529.91,324.71 c 1.11,-0.65 1.02,-0.16 1.53,-1.22 0.35,-0.72 1.45,-0.63 2,-0.59 1.67,0.12 3.71,0.26 5.28,-0.89 3.27,-2.41 4.92,5.34 8.17,3.8 0.19,1.99 1.63,-0.52 1.8,1.54 0.59,-1.98 2.44,-1.19 3.23,-0.09 0.4,0.56 1.43,2.06 2.08,1.47 1.02,-0.94 1.1,0.35 1.71,1.33 1.47,2.34 0.63,2.97 2.01,5.13 0.43,0.58 0.17,2.01 0.64,2.54 0.54,0.72 0.84,-0.87 1.37,-0.1 1,1.5 -2.09,6.45 -1.31,4.43 1.38,-3.59 8.24,4.6 4.88,5.82 0.96,0.44 1.03,1.5 2.05,1.84 -2.69,2.75 -6.6,-3.2 -8.56,0.35 -0.2,-0.68 -0.39,-1.38 -0.56,-2.08 -4.05,1.52 -1.17,4.57 -3.58,7.59 -1.39,1.75 -2.28,2.99 -3.31,4.9 -0.21,0.42 -0.21,1.33 -0.78,1.47 -0.8,0.21 -2.2,-0.51 -2.46,0.96 -1.31,-1.31 -0.12,-2.78 -0.72,-4.34 -0.6,-1.61 -0.66,-3.62 -0.42,-5.37 0.28,-2.13 1.88,-4.08 1.47,-6.24 -0.35,-1.82 -1.06,-3.95 -2.29,-5.25 -2.83,-2.97 -5.85,-6.23 -7.66,-10.08 -1.46,-3.08 -2.71,-6.66 -6.55,-6.89", + "LB" : "m 616.64,530.48 c 2.45,-2.92 2.75,-8.15 4.88,-11.42 1.07,-1.63 0.11,-3.8 1.31,-5.37 0.94,-1.21 3.35,-2.55 2.73,-4.43 0.87,0.19 2.16,0.61 3.04,0.05 2.02,-1.26 0.48,1.15 0.71,1.87 -0.03,-0.09 1.25,0.45 1.37,0.59 0.9,1.03 0.36,0.8 0.99,2.29 1.33,3.17 -3.7,3.67 -1.9,6.35 -1.98,-0.66 -5.53,0.89 -3.31,3.39 -0.91,0.23 -4.18,3.5 -4.39,4.51 -0.2,-0.14 -0.36,-0.31 -0.46,-0.56 -0.39,0.72 -0.35,1.68 -0.88,2.33 -0.95,1.15 -2.97,0.42 -4.09,0.38", + "CY" : "m 587.86,504.63 c -0.11,-0.42 -0.21,-0.82 -0.32,-1.24 1.27,1.52 3.56,-1.38 5.14,-1.26 2.45,0.19 0.82,-2.55 3.09,-2.48 2.44,0.07 4.58,0.54 7.1,-0.19 2.83,-0.82 5.56,-3.99 8.47,-3.99 -1.94,1.28 -3.83,4.25 -5.92,4.95 -2.29,0.77 -0.25,3.13 0.54,4.22 -0.96,0.12 -3.09,-0.09 -3.88,0.65 -0.86,0.8 -1.21,1.94 -2.34,2.36 -0.99,0.37 -4.85,0.82 -4.37,2.75 -3.09,-1.78 -6.28,-1.26 -7.5,-5.75", + "LU" : "m 315.91,303.09 c -0.03,-0.35 0.75,-0.23 -0.12,-0.45 1.07,-0.96 0.98,-3.24 2.48,-3.76 1.73,-0.59 1.23,1.47 1.84,2.41 0.8,1.26 2.44,1.68 3.35,2.85 0.96,1.28 -1.41,2.8 -1.22,4.27 -0.99,-0.86 -4.19,-0.51 -5.68,-1.03 1.85,-1.42 -0.07,-2.75 -0.64,-4.29" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_departments_domtom.js b/lib/mapael-maps/france/france_departments_domtom.js new file mode 100644 index 000000000..6296f3f42 --- /dev/null +++ b/lib/mapael-maps/france/france_departments_domtom.js @@ -0,0 +1,197 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of France by department (with DOM/TOM) +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +* @source http://commons.wikimedia.org/wiki/File:Guadeloupe_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Martinique_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Guyane_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:La_R%C3%A9union_arrondissement_commune_map.svg +* @source http://commons.wikimedia.org/wiki/File:Mayotte_blank_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_departments_domtom : { + width : 641.85596, + height : 627.08588, + getCoords : function (lat, lon) { + if (lat < 43.213183 && lat > 40.780541 && lon > 7.611694 && lon < 11.21521) { + // Corse + var xfactor = 43.64246; + var xoffset = 223.2912; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.77758; + var yoffset = 3346.37839; + var y = (lat * yfactor) + yoffset; + } else if (lat < 16.623033 && lat > 15.710307 && lon > -62.273712 && lon < -60.565338) { + // Guadeloupe + var xfactor = 86.761658287969; + var xoffset = 5362.7633969916; + var x = (lon * xfactor) + xoffset; + + var yfactor = -82.266584089643; + var yoffset = 1657.41182763; + var y = (lat * yfactor) + yoffset; + } else if (lat < 15.060189 && lat > 14.263052 && lon > -61.699448 && lon < -60.455246) { + // Martinique + var xfactor = 108.86848400636; + var xoffset = 6667.8264; + var x = (lon * xfactor) + xoffset; + + var yfactor = -102.17420080747; + var yoffset = 1888.497; + var y = (lat * yfactor) + yoffset; + } else if (lat < 6.479067 && lat > 1.241358 && lon > -55.823364 && lon < -49.308472) { + // Guyane + var xfactor = 14.877907532954; + var xoffset = 811.95256630287; + var x = (lon * xfactor) + xoffset; + + var yfactor = -13.494388491278; + var yoffset = 512.14159; + var y = (lat * yfactor) + yoffset; + } else if (lat < -20.713731 && lat > -21.587212 && lon > 54.879227 && lon < 56.109695) { + // La Reunion + var xfactor = 81.213304068446; + var xoffset = -4482.39787; + var x = (lon * xfactor) + xoffset; + + var yfactor = -78.260903254801; + var yoffset = -1124.8169; + var y = (lat * yfactor) + yoffset; + } else if (lat < -12.504962 && lat > -13.134316 && lon > 44.806137 && lon < 45.5793) { + // Mayotte + var xfactor = 193.03305111901; + var xoffset = -8691.6961; + var x = (lon * xfactor) + xoffset; + + var yfactor = -180.02792269821; + var yoffset = -1714.16093; + var y = (lat * yfactor) + yoffset; + } else { + var xfactor = 45.48385; + var xoffset = 264.2620; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3371.10748; + var y = (lat * yfactor) + yoffset; + } + return {x : x, y : y}; + }, + elems : { + "department-29" : "m 79.08,156.06 c -1.58,0.96 -3.52,1.65 -4.18,3.32 -1.54,-1.47 -4.04,-0.62 -5.71,0.27 -1.47,0.32 -0.49,2.1 -0.47,1.93 -1.6,-0.37 -3.54,0.37 -4.65,0.74 1.4,-2.77 -2.5,-2.88 -3.96,-1.37 -0.64,0.11 -2,0.43 -1.03,1.29 -2.04,0.5 -3.83,0.84 -5.86,0.44 -2.03,0.42 1.54,3.29 -1.29,2.23 -2.56,-1.01 -1.43,1.5 -0.77,2.4 -1.28,-1.21 -3.93,-1.36 -5.32,-0.04 -1.98,0.41 -3.21,2.67 -3.29,4.58 0.74,1.03 1.43,1.8 -0.13,2.56 -1.57,2.24 1.62,4.41 -0.2,6.49 0.53,2.34 3.91,1.84 4.59,0.07 2.27,0.52 4.47,1.24 6.57,-0.42 2.6,-1.34 5.4,-2.14 8.2,-2.97 0.92,-0.31 4.11,-1.69 1.9,-0.23 -2.02,1.28 -5.21,1.77 -5.82,4.45 -0.04,1.77 1.95,-0.57 2.58,1.07 1.06,-1.01 2.42,-1.71 3.83,-1.44 1.47,-1.28 1.25,0.06 0.1,0.7 -1.8,1.75 1.83,1.26 2.72,1.94 0.36,-0.17 1.78,0.86 1.97,0.78 -1.65,0.15 -3.09,1.29 -4.38,-0.02 -2.31,0.21 -4.59,1.92 -6.68,-0.07 -1.48,0.7 -3.22,0.52 -4.59,0.14 -0.84,-0.95 1.41,-3.74 -0.99,-2.46 -1.64,0.71 0.56,4.29 -2.09,3.1 -1.86,1.31 1.58,2.51 2.68,1.96 0.19,1.21 -0.96,2.2 -0.02,3.55 0.11,1.13 -0.35,2.83 1.08,1.3 1.1,-1.67 1.83,-4.91 4.48,-3.39 1.97,1.62 5,1.13 6.02,3.61 1.13,1.38 1.67,5.92 -1.14,5.14 -2.19,-1.24 -4.56,0.15 -6.78,0.55 -3.6,0.94 -7.29,1.38 -10.96,1.98 -1.02,2.79 2.19,2.33 3.92,2.71 1.57,0.58 2.73,2.11 4.29,0.42 2.87,1.58 5.44,3.83 6.96,6.79 0.75,1.87 2.58,4.37 0.57,6.01 -0.49,2.41 3.46,1.3 4.97,1.91 1.77,0.5 6.3,-1.57 3.63,-3.11 -1.14,-1.39 0.13,-3.23 0.98,-1.08 2.15,0.54 2.07,-1.76 0.86,-2.78 -0.21,-2.37 1.06,2.22 2.48,2.04 1.3,-0.04 1.93,1.22 3.27,0.76 2.3,0.96 0.54,-4.28 3.09,-2.05 2.11,1.57 2.68,4.19 4.55,5.98 1.48,0.03 3.57,0.98 5.05,-0.31 1.53,-0.27 2.75,1.8 4.57,1.56 1.67,0.39 5.37,1.79 5.28,-1.08 -0.33,-0.95 -1.12,-4.41 0.67,-3.05 1.11,1.89 3,-0.89 3.37,-1.73 2.88,-0.06 0.29,-2.91 2.01,-4.24 -0.06,-1.23 -0.55,-3.52 -2.28,-2.02 -0.84,0.44 -1.59,1.51 -1.96,-0.17 -1.78,-2.26 -4.64,-1.49 -7.03,-1.61 -1.14,-1.47 -0.96,-3.67 -2.41,-4.88 -0.89,-0.99 -0.11,-2.5 -1.91,-2.72 -0.05,-3.01 2.9,-3.42 5,-4.43 1.33,-1.1 3.65,-1.15 4.52,-2.27 -2.34,-0.91 -0.87,-3.28 0.07,-4.45 0.11,-1.39 -2.08,-1.36 -0.72,-2.68 -1.8,-1.52 0.39,-4.93 -2.74,-5.09 -1.31,-1.84 1.47,-3.01 1.62,-4.29 -2.76,-0.9 -1.61,-3.9 0.3,-5.01 1,-1.97 -2.66,-1.17 -1.57,-3.2 -0.83,-0.98 -2.97,-1.21 -2.88,-3.24 -1.32,-1.42 2.01,-4.62 -0.58,-4.47 -2.05,-0.25 -3.74,-1.51 -5.9,-1.36 -3.15,-1.06 -2.02,4.36 -3.08,5.4 -1.21,-0.52 -1.97,-1.72 -2.2,-2.81 -1.19,0.54 -2.05,1.99 -2.27,-0.03 -0.68,-1.05 -0.41,-2.7 -0.9,-3.59 z m -9.89,28.67 0,0.02 0,-0.02 z", + "department-22" : "m 119.49,146.68 c -2.18,0.97 -4.27,2.12 -5.29,4.34 -0.95,0.92 1.16,-5.14 -1.45,-3.45 -1.04,2.53 -4.54,0.81 -6.21,2.7 -2.17,3.05 -3.41,-2.37 -6.09,-0.78 -1.84,0.33 -1.12,2.45 -3.06,2.86 -0.93,1.49 3.49,3.66 0.09,3.84 -0.99,0.94 1.05,4.8 -1.59,3.12 -2.86,0.14 -2.28,4.13 -0.76,5.67 1.58,0.31 2.02,1.18 2.25,2.58 3.59,0.89 -0.69,2.85 -0.8,4.74 -0.19,1.54 3.69,2.37 0.82,3.38 -1.64,1.35 -0.95,3.36 0.92,3.66 0.67,1.38 -0.55,4.29 1.76,3.98 -2.43,1.29 1.74,2.99 -0.69,4.57 -2.49,1.29 2.63,3.82 -0.3,3.71 -1.55,1.32 2.18,0.56 2.94,0.57 1.46,0.08 3.07,-0.19 2.24,1.85 1.74,0.87 4.15,-2.24 5.79,0.1 2.53,1.33 5.13,-0.76 7.44,-1.05 -0.07,-2.83 2.97,-2.96 4.98,-2.15 1.17,1.09 1.64,3.35 3.83,2.16 2.41,-0.65 4.03,2.42 6.48,1.68 1.33,0.86 1.42,4.74 2.85,1.76 1.5,0.7 4.53,-2.42 4.34,0.86 -0.55,1.52 -1.36,5.2 1.47,4.11 2.29,-1.68 4.77,-4.11 4.24,-7.07 -0.17,-0.91 2.97,-0.79 4.03,-1.62 2.78,-0.38 2.35,4.77 5.02,3.26 1.87,-1.4 5.42,-1.88 4.9,-5.32 -0.17,-0.92 2.03,0.15 1.54,-1.54 -0.42,-3.1 4.04,-1.09 4.2,-3.33 1.07,-1.09 2.16,-1.68 3.46,-0.28 1.24,-0.4 3.67,-1.83 2.59,-3.76 2.38,-0.48 0.29,-2.82 1.12,-4.55 -1.48,-2.62 1.94,-4.38 1.02,-7.26 0.43,-1.82 -1.5,-2.45 -1.71,-0.37 -2.2,2.26 -0.48,-3.02 -3.17,-2.1 -1.23,2.3 -1.14,-1.92 -3.17,-0.97 -0.98,-0.96 -3.18,-4.56 -3.47,-1.26 -0.31,1.86 -1.28,-1.15 -2.1,0.76 -0.55,-1.37 -1.3,-3.44 -2.14,-4.22 -1.05,0.87 -3.98,2.87 -2.31,0.2 1.61,-1.33 -0.2,-4.18 -1.41,-1.8 -1.59,0.73 -2.87,2.57 -4.49,1.08 -0.75,-0.13 -2.86,0.56 -1.21,1.2 -1.01,2 -3.59,2.03 -4.94,3.57 -1.37,1.74 -2.78,3.56 -4.87,3.33 0.31,3.1 -2.74,0.01 -2.05,-1.5 -2.07,-1.61 -5.2,-2.78 -4.5,-6.08 -1.5,-2.13 -3.93,-3.34 -5.36,-5.64 0.92,-3.22 -2.97,-1.88 -4.28,-3.51 -0.56,-0.74 2.55,-2.62 -0.07,-2.81 -2.8,-0.54 -2.3,3.78 -4.01,4.18 1.22,-1.79 2.13,-3.93 1.68,-6.2 0,-0.43 -0.03,-1 -0.5,-1.17 z", + "department-56" : "m 120.81,190.73 c -1.94,-0.55 -3.02,1.19 -3.32,2.68 -1.36,0.16 -3.14,0.43 -3.54,1.23 -2.04,-0.06 -4.21,0.3 -5.45,-1.31 -1.54,-0.04 -5.06,2.86 -4.22,-0.53 -2.27,-0.66 -5.71,-0.77 -8.22,0.11 -1.43,1.23 -3.91,0.97 -4.77,2.7 -0.84,1.02 -0.63,2.42 0.72,2.49 -0.58,2.34 2.19,3.23 2.17,5.7 0.84,2.78 4.02,0.06 5.87,1.57 1.77,0.29 2.14,3.21 3.85,1.26 2.68,-1.57 2.52,3.03 1.49,4.17 0.4,1.45 0.63,2.93 -1.21,2.52 -0.78,1.78 -2.57,3.33 -4.35,1.63 -0.71,1.41 0.92,3.01 0.11,4.5 0.76,1.87 1.77,4.54 4.01,4.83 1.75,0.33 3.97,-0.87 2.47,-2.27 1.59,0.45 3.32,-2.79 4.09,-2.37 -0.13,1.59 -3.63,3.31 -2.06,4.2 2.47,-0.22 3.67,4.18 5.74,3.23 -0.25,-2.41 3.75,-3.2 1.33,-5.38 0.07,-0.51 1.47,0.54 1.96,-0.28 -0.65,1.5 2.26,1.64 0.61,3.25 -2.17,0.5 -5.1,2.65 -2.61,4.88 2.69,1.08 0.71,4.47 1.4,6.67 -0.22,1.75 3.13,1.92 1.43,0.18 -0.99,-0.96 -1.05,-6.53 1,-4.23 -0.06,1.32 4.39,0.76 3.58,-1.19 0.28,-0.25 1.22,3.04 1.35,0.83 0.45,1.07 3.39,2.67 1.94,0.64 -0.85,-1.47 -0.62,-3.47 -1.08,-4.88 1.67,1.06 0.92,3.21 2.79,3.74 1.19,1.24 2.49,-1.47 3.23,-1.75 1.74,0.54 4.21,-2.37 4.43,0.28 -1.13,0.56 2.4,2.04 2.02,0.22 -0.01,-1.02 0.09,-1.73 0.67,-0.31 -0.1,1.85 -1.64,4.06 -2.99,4.91 -2.01,-1.25 -3.9,0.55 -5.73,-1.08 -2.41,-0.75 -1.23,1.46 0.27,1.86 1.28,1.49 2.28,3.99 4.73,2.34 1.58,-1.19 4.62,1.03 4.88,-1.51 0.94,0.16 2.08,0.04 1.57,-1.04 1.32,-0.16 3.01,-0.7 1.13,0.69 0.65,1.62 3.99,-0.92 5.57,0.45 1.17,1.48 3.82,0.62 4.76,1.25 -2.04,0.45 -6.31,-0.64 -5.17,2.8 1.29,2.36 2.7,-3.37 4.07,-0.44 1.93,0.09 4.49,0.48 4.4,-2.28 0.26,-2.08 2.4,-0.85 3.02,-0.28 1.19,-0.72 2.6,-0.92 3.1,0.38 1.27,-0.55 0.89,-2.94 2.87,-2.59 0.95,-1.62 0.02,-3.71 0.99,-5.4 -0.91,-2.18 -1.29,-4.25 -1.75,-6.53 -0.64,-2.04 4.94,-1.69 1.45,-3.01 -1.42,-0.25 -1.8,-0.76 -0.26,-1.41 1.13,-1 2.5,-2.47 2.53,-3.97 -0.25,-2.26 -3.18,1.26 -2.71,-1.36 -1.41,-2.18 2.13,-3.43 0.21,-5.37 -1.04,-2.62 -4.04,-3.26 -6.5,-3.55 -4.1,1.1 -0.69,-5.19 2.03,-3.93 2.53,-0.7 0.03,-2.75 -1.3,-1.26 -2.26,2.07 -0.48,-3.18 -2.49,-3.62 -1.69,-1.18 -3.96,2.78 -4.45,-0.51 -0.88,-2.88 -3.64,-2.28 -5.73,-1.36 -1.71,-0.04 0.3,2.93 -1.75,3.57 -0.42,2.33 -2.84,4.02 -5.03,4.48 -2.2,-1.32 0.8,-4.04 -0.38,-5.84 -1.09,-0.89 -2.57,1.32 -3.95,0.8 -0.6,1.22 -1.74,1.77 -1.66,-0.05 -0.3,-3.08 -3.64,-1.2 -5.07,-3.18 -1.77,-1.8 -5.24,1.48 -5.72,-1.83 -0.48,-0.8 -1.44,-1.22 -2.36,-1.15 z", + "department-35" : "m 176.38,157.73 c -1.79,1.11 -3.53,0.47 -5.19,1.2 -1.33,0.27 -1.62,2.1 -2.81,2.9 0.05,2.01 1.92,3.29 3.11,4.44 -2.04,-0.42 0.14,2.8 0.43,2.54 2.26,-2.29 2.37,3.63 1.27,4.57 -0.5,1.49 -1.35,2.63 -0.35,4.25 -0.22,1.3 -0.35,2.43 -0.04,3.74 -2.27,0.25 0.23,4.32 -2.54,3.36 -1.03,2.76 -3.3,-1.55 -4.2,1.09 -1.51,0.08 -0.56,2.43 -2.4,1.45 -2.56,-0.92 -2.09,2.28 -2.86,3.26 -2.02,-0.51 -0.51,2.87 -2.09,3.58 0.04,1.26 -2.85,-0.24 -1.51,1.77 1.39,0.87 0.52,3.5 1.66,3.85 0.8,-2.11 5.06,-0.09 2.03,1.01 -2.2,-0.18 -4.48,1.41 -3.9,3.81 2.13,-0.64 4.29,0.65 6.29,1.06 1.85,1.48 4.01,4.45 1.52,6.21 0.13,1.33 0.54,3.97 2.03,1.74 0.85,-0.96 0.83,1.66 1.14,2.27 -1.24,1.06 -1.98,3 -3.23,3.72 0.94,0.47 3.63,1.86 1.11,2.27 -2.85,-0.1 -1.41,3.34 -0.8,4.76 -0.52,2.39 2.69,0.12 3.61,-0.42 1.4,-0.12 2.45,-2.68 2.96,-0.31 1.34,-1.32 3.51,-1.25 5.03,-2.26 1.96,0.36 3.88,0.31 5.79,0.36 2.01,-0.47 4.26,-1.06 4.48,-3.58 1.78,-2.07 5.05,-1.88 7.04,-3.39 -1.35,-2.84 2.62,-1.47 3.98,-1.02 0.91,1.88 2.98,2.02 4.75,2.59 2.4,1.02 2.04,-2.45 2.93,-3.79 -0.25,-1.23 1.5,-1.55 1.12,-3.1 1.75,-1.44 0.61,-4.32 2.53,-5.67 1.37,-2.06 5.64,0.76 5.31,-2.94 -0.57,-1.85 -0.29,-3.8 -1.39,-5.46 -0.19,-2.53 -1.34,-4.78 -1.48,-7.32 -0.32,-1.92 -1.4,-4.44 0.52,-5.93 1.68,-1.62 0.43,-4.09 0.5,-6.03 -1.88,-2.34 0.5,-5.07 -0.86,-7.48 -1.44,-1.4 -3.63,-0.64 -5.26,-1.79 -1.79,-0.97 -3.66,-0.48 -4.02,1.73 -2.41,0.32 -3.04,3.65 -5.62,3.17 -1.6,-0.55 -2.09,-2.02 -3.85,-2.34 -1.66,-2.38 -1.58,-5.06 -2.82,-7.53 -0.67,-1.47 -1.99,-2.34 -3.32,-0.83 -2.14,1.06 -4.77,0.58 -7.1,1 -1.98,0.31 -4.48,-1.05 -4.07,-3.29 0.37,-0.95 1.79,-2.33 0.58,-3.23 z", + "department-44" : "m 193.97,215.27 c 0.99,2.76 -2.35,2.73 -4.17,3.59 -2.66,0.16 -2.98,3.09 -4.31,4.45 -2.35,0.63 -4.44,0.91 -6.99,0.76 -2.15,-0.63 -4.35,0.65 -6.27,1.56 -1.04,1.56 -1.13,-2.45 -2.03,0.05 -1.72,0.93 -4.02,1.21 -4.59,3.23 0.34,1.88 -0.7,4.08 -0.4,6.22 -1.94,0.02 -2.39,1.78 -3.16,2.88 -1.2,-0.61 -1.59,-1.83 -3.09,-0.48 -1.16,0.3 -2.43,-2.13 -3.07,0.2 0.15,3.01 -3.49,2.72 -5.16,2.01 -2.61,-1.24 -2.16,4.49 0.53,3.28 1.03,1.2 -1.5,0.54 -1.86,1.31 -1.01,-2.17 -4.48,0.9 -4.56,1.77 1.63,1.36 3.43,2.66 4.67,4.42 0.14,3.2 -5.01,-1.24 -4.06,0.8 1.77,0.74 4.56,3.32 5.4,0.87 3.12,-0.51 5.01,4.79 7.98,1.46 2.43,-0.5 2.59,-4.23 5.46,-3.42 2.69,0.13 5.46,-1.43 7.72,0.94 2.25,0.07 4.05,1.31 5.34,3.11 0.91,1.4 2.8,2.14 4.02,2.64 -2.49,0.83 -3.92,-1.91 -6.16,-2.3 -1.91,-0.02 -1.26,-3.9 -3,-1.99 -2.34,-0.79 -4.38,-1.45 -6.74,-0.44 -2.98,-0.51 -4.67,2.22 -3.22,4.83 1.49,2.66 -2.14,3.15 -3.24,4.48 1.94,1.83 5.67,0.78 7.83,2.79 2.09,1.48 3.32,3.8 5.11,5.5 1.66,1.54 2.79,4.05 5.52,3.88 0.35,2.79 4.79,0.06 4.47,3.39 1.99,1.6 5.23,1.31 7.84,2.31 1.6,-0.41 3.78,-1.49 1.54,-2.9 -1.42,-1.19 1.14,-1.61 -0.43,-2.99 -1.51,-2.22 -0.37,-5.47 2.31,-5.69 1.86,1.6 0.6,4.38 1.14,6.37 -0.22,2.18 2.65,-0.64 3.7,-0.62 2.3,-1.33 -1.55,-5.92 2.19,-5.98 2.4,1.91 1.59,-4.35 4.02,-2.02 0.94,1.64 5.78,4.52 5.68,1.05 -1.69,-1.46 -2.97,-3.11 -5.44,-2.61 0.4,-0.85 0.08,-3.42 2.02,-3.62 2.34,-1.56 0.48,-4.38 0.12,-6.39 -1.48,1.02 -4.02,-0.18 -3.76,-2.44 -0.58,-1.73 -5.08,-0.47 -2.26,-2.49 1.59,-1.77 4.11,-1.11 6.05,-2.15 2.13,-1.07 4.56,-0.9 6.87,-0.88 1.82,0.31 4.88,-0.51 5.17,-2.35 -1.77,-1.59 -0.36,-5.48 -2.9,-5.73 -2.27,-1.43 -5.44,0.19 -7.54,-1.62 -0.08,-1.39 -2.02,-3.92 0.75,-3.77 1.88,0.21 5.06,1.38 5.8,-1.13 -1.57,-1.12 -3.79,-1.48 -5.63,-2.26 -2.02,-1.5 -1.01,-4.7 -3.08,-6.15 -1.29,-0.55 -2.96,-1.14 -1.48,-2.62 -0.72,-2.53 -3.85,-1.67 -5.57,-2.98 -1.28,-1.9 -2.96,-1.98 -5.08,-2.16 z", + "department-50" : "m 172.97,90.24 c -2.07,1.53 -0.36,4.39 2.01,4.33 2.23,1.05 2.23,4.31 1.5,6.32 -2.49,1.68 -0.72,3.57 0.41,5.36 0.96,2.16 0.92,4.76 1.49,7.06 2.08,-0.34 2.6,2.06 4.31,2.99 0.39,-2.34 1.98,0.5 0.35,0.85 1.8,1.66 2.25,4.29 3.32,6.43 1.02,-0.52 2.91,-1.19 3.39,0.25 -3.06,-1.2 -2.52,3.87 -1.05,4.87 0.73,1.01 -2.3,2.18 -0.88,4 0.9,1.35 -0.83,3.99 1.23,4.78 -0.29,-1.98 3.59,-1.36 2.48,-0.96 -2.19,-0.32 -2.45,4.5 -0.96,5.53 -1.49,1.88 -0.8,4.78 -2.52,6.74 2.86,1.4 0.29,5.39 2.64,7.16 1.57,2.06 3.28,4.73 6.22,4.43 1.27,0.62 2.96,2.13 0.43,1.44 -2.01,-0.05 -4,1.31 -6.05,0.58 -1.76,-0.81 -2.44,0.6 -0.88,1.63 1.59,2.18 0.84,5.01 2.7,7.1 1.82,0.95 4.56,4.48 6.48,1.53 1.1,-1.94 3.7,-1.74 4.11,-4.23 2.92,-0.15 5.61,1.83 8.58,2.02 1.72,0.13 4.33,2.59 5.31,-0.25 1.6,-0.43 3.29,2.69 4.73,0.17 1.79,-2.33 5.26,-4.48 4.41,-7.86 -2.52,-1.41 2.5,-3.67 -0.56,-4.17 -1.01,-1.35 -2.54,-2.12 -3.75,-2.8 0.98,-1.88 0.32,-1.87 -1.3,-1.4 -1.86,-0.88 -3.53,-2.28 -5.52,-1.07 -1.72,-0.75 -4.29,1.03 -4.56,-1.88 -0.53,-1.15 -4.21,-1.56 -1.57,-2.94 0.85,-1.21 2.09,-2.09 3.13,-2.14 1.23,-0.88 3.6,-3.68 0.36,-2.84 -2.11,-0.29 0.71,-3.93 2.3,-2.27 2.97,0.56 5.15,-3.99 6.13,-5.23 -1.18,-1.18 1.35,-4.41 -1.04,-5.18 -1.33,0.99 -1.4,0.33 -0.12,-0.43 0.98,-1.5 -4.79,-2.72 -1.17,-3.43 1.97,-1.3 0.32,-4.53 -1.35,-2.1 -2.46,1.86 -4.81,-1.98 -6.83,-3.15 -1.71,-1.47 -2.01,-3.8 -0.68,-5.52 -1.44,-0.32 -1.37,-2.04 -3,-1.43 1.82,-3.14 -1.03,-5.44 -2.84,-7.69 -1.07,-2.07 -3.6,-4.17 -2.55,-6.7 1.49,-0.46 1.61,-1.78 2.84,-2.54 0.64,-1.58 -0.92,-6.17 -3.88,-5.59 -2.22,-0.46 -4.6,-0.58 -6.75,0.28 -0.7,2.48 -3.4,2.49 -5.44,2.63 -3.16,0.33 -5.74,-2.16 -9.07,-2.07 -1.72,-0.12 -2.64,-2.58 -4.49,-1.55 -0.68,-0.32 -1.12,-1.27 -2,-1.09 z", + "department-53" : "m 250.43,167.05 c -1.48,0.64 0.52,2.25 -1.16,2.95 -0.62,1.58 -2.87,-1.26 -3.42,1.02 -1.11,2.61 -2.89,-1.22 -4.88,-0.62 -1.86,0.66 -3.75,0.55 -4.92,2.47 -1.67,0.11 -2.98,1.43 -4.56,1.7 -0,-0.93 -0.72,-2.83 -1.71,-1.31 -1.02,-0.25 -2.58,-0.07 -1.39,1.11 -0.7,1.44 -2.8,1.16 -2.97,-0.51 -0.93,-0.24 -1.58,0.59 -1.84,-0.91 -0.54,-2.95 -3.75,-0.28 -4.79,-2.55 -1.76,-0.88 -2.02,2.68 -4.05,1.2 -0.83,-1.53 -3.43,-1.06 -2.46,0.87 0.79,1.99 -1.24,3.98 0.58,5.81 0.03,1.6 0.47,3.25 0.35,4.84 -1.21,1.42 -2.79,3.36 -1.75,5.31 0.7,2.08 0.5,4.35 1.34,6.4 0.4,1.57 0.15,3.54 1.52,4.68 -0.23,1.58 0.13,3.02 0.41,4.5 -0.72,2.52 -3.82,0.3 -4.95,1.8 -1.68,0.68 -1.53,2.85 -1.98,4.42 -1.1,1.4 -0.71,2.99 -2.08,4.04 -0.63,1.85 -0.62,3.45 1.5,4.19 1.52,0.93 3.22,-0.53 4.89,0.59 1.77,-0.16 3.69,1.38 5.24,0.39 0.04,-0.44 -1.01,-1.58 0.4,-1.61 1.96,-0.16 3.71,3.93 5.34,1.69 1.66,-0.01 3,1.38 4.58,1.75 1.73,-0.17 3.38,0.48 5.08,0.41 1.39,-0.73 2.39,-1.68 4.12,-1.29 0.92,-0.52 0.37,-2.89 2.1,-1.58 1.13,1.17 2.48,1.5 3.75,0.31 1.86,1.33 1.39,-2.7 -0.35,-1.77 -2.77,-0.87 -0.56,-4.13 1.59,-3.91 1.26,-1.84 -2.98,-2.22 -0.87,-4.05 1.36,-1.46 4.26,-0.04 4.99,-2.24 -0.67,-1.37 -0.97,-3.06 -2.24,-4.19 -0.67,-2.38 2.11,-2.12 3.51,-2.95 1.43,0.64 1.89,-0.63 1.18,-1.71 1.08,-1.06 0.63,-2.14 -0.59,-2.92 -0.43,-1.86 1.41,-2.63 2.83,-3.42 1.68,-0.78 2.11,-2.73 1.01,-4.16 0.22,-1.71 1.79,-3.35 0.3,-4.93 -0.1,-1.37 1.2,-1.42 1.27,-2.7 1.03,-1.28 3.88,-0.1 3.47,-2.54 -0.24,-1.26 0.73,-4.38 -1.59,-2.94 -1.71,0.29 -3.1,-0.59 -3,-2.39 -0.79,-1.07 -0.58,-1.92 0.12,-2.77 -0.95,-1.08 -2.33,-2.44 -3.94,-2.47 z", + "department-49" : "m 205.08,217.19 c -1.18,1.34 -0.17,3.69 -0.83,4.93 2.27,0.31 3.68,1.93 3.4,4.32 0.74,1.76 1.95,3.14 3.9,3.44 1.2,0.67 5.14,0.95 2.67,2.81 -1.93,1.61 -5.69,-1.32 -6.65,0.88 1.25,1.23 -0,3.54 2.56,3.58 2.25,-0.35 4.28,0.25 6.34,0.77 1.77,0.37 0.41,3.54 1.94,4.82 1.61,2.05 -1.56,3.22 -3.17,3.43 -2.32,0.16 -4.68,-0.31 -6.99,0.19 -2.41,1.91 -6.11,0.8 -8.14,3.29 -1.09,1.76 2.5,-0.27 2.68,1.66 0.14,2.12 2.06,3.62 3.86,2.62 0.8,1.57 1.34,3.82 1.06,5.38 -1.2,1.4 -3.34,1.88 -2.71,4.16 0.72,0.64 3.4,0.54 3.92,2.25 2.05,0.21 1.21,2.03 0.51,3.05 1.72,0.35 4,1.99 5.59,0.79 1.3,-0.91 2.55,1.31 4.05,0.67 1.14,1.3 2.62,2.86 4.09,0.94 1.5,-0.57 2.53,-1.38 4,-0.32 1.92,0.34 3.86,-0.6 5.93,-0.18 1.85,-0.7 3.4,-2.43 2.94,-4.29 1.33,-1.58 3.85,-1.83 5.2,-0.48 2.04,0.28 2.19,-2.53 4.47,-1.57 2.07,-0.07 3.9,-1.31 6.05,-0.45 0.98,-0.69 4.58,-0.52 2.23,0.97 -1.16,1.22 1.27,1.45 1.92,1.65 1.06,-1.12 0.89,-3.7 3.14,-2.26 1.72,-0.1 -0.18,-2.9 1.53,-3.76 0.74,-1.38 1.74,-1.63 3.04,-1.02 0.6,-1.69 0.8,-4.01 1.09,-5.98 0.39,-2.25 1.51,-4.37 3.05,-5.85 0.04,-1.46 2.67,-2.28 0.68,-3.7 2.11,-1.35 0.62,-4.46 2.53,-6.06 1.44,-1.95 -1.93,-3.05 0.09,-4.79 1.5,-1.31 0.7,-3.73 -1.17,-3 -0.47,1.97 -2.41,2.07 -3.44,0.58 -2.14,0.02 -4.28,-0.68 -5.29,-2.73 -1.9,0.31 -4.55,-2.19 -5.5,0.66 -2.13,0.1 -5.9,-3.02 -3.11,-4.67 0.74,-2.21 -1.66,-0.27 -2.52,-0.24 -1.73,-0.72 -3.69,-0.73 -5.37,-0.8 -0.12,-1.57 -1.06,-4.34 -3.07,-2.91 -1.54,1.26 -3.95,-3.41 -4.05,-0.15 -0.66,1.75 -3.44,-0.21 -4.19,1.85 -2.42,0.03 -5.18,0.03 -7.38,-0.82 -1.2,-0.54 -2.64,-2.05 -3.49,-0.32 -1.94,0.29 -3.57,-3.69 -5.22,-1.92 0.7,2.49 -3.33,0.71 -4.68,0.7 -2.12,-1.24 -4.45,0.62 -6.23,-1.32 -0.47,-0.18 -0.77,-0.77 -1.3,-0.8 z", + "department-85" : "m 203.14,265.2 c -1.29,0.55 -0.63,4.25 -2.79,2.52 -3.72,-0.05 0.46,5.03 -2.32,6 -1.71,0.9 -4.92,2.71 -3.75,-0.74 -0.77,-1.25 0.63,-5.83 -2.21,-4.6 -2.25,0.79 -1.99,3.94 -0.77,5.59 0.49,1.21 -0.59,2.86 1.15,3.65 -0.7,2.16 -3.36,2.13 -5.21,1.21 -1.87,-0.4 -4.06,-0.39 -5.42,-1.59 0.72,-3.29 -4.07,-0.68 -4.27,-3.18 -1.48,-0.82 -3.82,-0.41 -4.2,-2.74 -1.34,-0.8 -2.63,-4.08 -4.33,-1.69 -1.04,2.02 -1.04,4.61 -3.57,5.42 -0.99,1.76 -2.24,3.32 -1.95,5.45 -0.02,2.5 2.59,3.67 4.25,5.05 1.48,1.04 2.73,2.47 3.2,4.25 1.93,0.88 2.87,2.41 3.95,4.13 1.35,1.69 2.62,3.66 2.78,5.77 0.54,1.46 0.09,4.8 1.7,4.95 0.11,-0.77 -0.23,-3.26 0.53,-1.26 0.82,1.68 2.7,2.29 4.06,3.41 1.2,0.95 3.56,-0.2 2.69,2.06 2,0.84 5.23,-0.67 6.76,1.65 0.84,1.71 0.96,5.42 3.81,3.73 2.06,-1.27 3.22,2.04 4.61,1.55 0.61,-0.76 2.33,3.53 3.44,2.54 -0.14,-2.55 2.59,-3.24 4.52,-2.45 0.96,-0.72 2.22,-0.11 2.9,-1.77 1.71,-1.01 4.12,-1.12 6.02,-1.8 -0.43,1.18 -1.66,4.19 0.87,3.32 1.55,-0.59 2.75,-0.38 3.68,-1.53 1.96,-0.54 1.66,1.98 3.78,2.11 1.38,0.67 2.24,-2.21 3.79,-0.61 1.88,-0.77 2.8,-3.16 5.12,-3.36 1.55,-1.43 -2.69,-3.8 -3.05,-1.73 -2.47,-0.7 0.99,-3.66 -0.04,-5.28 -0.62,-1.47 -1.63,-3.71 0.64,-4.05 -0.38,-1.92 -0.88,-3.69 -0.78,-5.74 -0.4,-1.4 -2.25,-0.42 -1.12,-2.18 0.1,-1.5 -1.88,-1.99 -0.63,-3.56 -1.5,-1.8 -4.17,-4.06 -2.14,-6.51 -0.53,-1.57 -3.62,-1.66 -4.26,-3.82 -2.25,-1.31 0.4,-4.46 -2.79,-5.12 -0.94,-0.55 -0.85,-1.56 -1.77,-2.27 0.29,-2.31 -3.25,-0.99 -4.2,-2.57 -2.18,1.69 -4.98,-0.18 -7.34,-0.86 -2.12,-0.58 -3.47,-2.41 -5.38,-3.38 z", + "department-79" : "m 253.29,263.54 c -1.9,1.4 -4.42,-0.79 -6.39,0.88 -1.77,0.1 -3.37,-0.04 -4.52,1.59 -1.1,-0.38 -2.38,0.66 -3.13,0.43 0.43,-0.68 1.3,-1.98 -0.38,-1.35 -1.39,0.15 -3.84,1.42 -2.47,3.05 -1.35,1.52 -2.83,3.5 -5.18,2.53 -2.04,1.17 -4.12,-0.04 -6.24,-0.17 -1,1.07 -5.16,1.37 -3.16,3.19 0.99,1.24 3.17,1.93 1.88,3.78 0.61,2.43 2.8,3.99 5.04,4.95 0.97,0.91 -2.03,3.98 0.75,4.67 0.24,1.6 2.42,2.54 1.39,4.21 0.87,0.83 1.53,1.78 0.85,2.79 2.6,1.36 0.58,4.6 2.17,6.68 -0.35,1.33 -2.8,1.22 -1.28,3.06 1.15,1.77 0.54,3.41 -0.36,5.16 -0.03,1.27 0.82,2 1.29,0.48 1.8,0.1 4.49,2.13 1.79,3.39 -2.52,0.17 -3.23,4.03 -6.1,2.61 -0.62,0.88 -1.55,0.87 -2.21,1.69 1.44,1.37 -1.24,3.6 1.39,4.06 1.58,0.53 1.51,2.11 1.62,3.12 0.95,0.76 3.36,1.11 3.25,2.26 -0.36,1.35 3.34,-0.59 4.11,1.21 0.81,2.16 3.21,1.99 4.74,1.78 -0.07,2.22 2.52,-0.29 2.98,1.67 1.65,0.06 3.38,-0.76 4.01,1.29 1.23,1.5 3.45,0.03 4.05,2 1.38,0.14 2.11,5.42 4.96,3.43 1.32,-0.87 1.04,-2.55 1.89,-3.73 -1.18,-2.58 3.69,-0.48 3.95,-3.1 1.49,-1.66 3.43,-1.45 5.38,-0.4 1.09,-0.79 1.11,-2.8 1.8,-4.12 -0.51,-0.9 -2.39,1.06 -2.88,-0.91 -1.18,-1.14 -3,-2.03 -1.15,-3.7 1.11,-1.26 -0.75,-3.57 1.83,-3.49 -0.01,-1.18 -0.81,-2.23 0.27,-3.23 -0.16,-2.4 -3.66,-1.6 -3.63,0.54 -1.06,0.82 -3.12,-0.6 -3.44,-1.48 0.12,-1.63 0.92,-3.28 -1.29,-3.95 -1.11,-1.47 1.15,-4.73 -1.4,-5.24 -0.29,-1.91 0.73,-3.22 1.99,-4.37 -2.16,-1.96 2.84,-2.73 0.62,-4.49 -1.94,0.11 -0.17,-2.89 -2.06,-1.46 -1.23,1.34 -2.11,0.14 -0.85,-0.95 0.77,-1.61 1.86,-3.1 2.31,-4.74 2.63,-0.9 0.25,-2.24 -0.99,-3.11 -1.11,-1.46 2.59,-3.91 -0.63,-3.4 -1.65,-1.13 1.38,-2.76 2.34,-1.54 0.89,-1.96 -3.65,-1.7 -1.73,-3.96 1.2,-2.11 -2.1,-3.76 -0.83,-5.72 -0.94,-0.65 -3.3,0.24 -2.38,-1.85 0.26,-1.51 -0.38,-3.38 -2.01,-2.92 -0.87,-0.96 -2.94,-0.24 -1.18,-1.94 0.94,-0.85 -0.01,-1.13 -0.76,-1.15 z", + "department-17" : "m 217.6,312.65 c -1.84,1.26 -4.74,0.43 -5.82,2.93 -3.26,0.02 0.75,5.13 -3.08,5.46 -1.82,1.05 -3.67,4.16 -2.16,5.83 3.16,-0.44 2.82,3.27 4.64,4.77 0.18,1.52 3.73,5.29 0.16,5.07 -2.63,-0.06 1.74,2.72 0.24,4.11 1.31,1.55 0.24,3.47 -1.37,3.28 -0.47,1.76 -2.35,1.77 -1.16,3.85 0.65,3.56 3.84,5.45 6.35,7.58 -3.27,-0.53 -4.85,-4.05 -7.2,-5.24 -3.39,-0.91 -3.86,2.38 -3.85,4.87 -0.67,3.03 2.88,0.23 3.7,2.81 2.22,1.16 4.24,2.78 6.34,4.1 1.78,2.01 2.94,4.4 5.81,5.18 3.78,3.01 6.99,7.1 7.78,11.99 0.56,3.54 5.81,1.95 6.95,1.47 0.01,4.14 4.06,2.06 6.41,3.27 2.17,2.13 0.33,5.42 2.08,7.81 0.55,1.04 2.15,-1.22 3.17,0.59 2.59,1.32 4.26,4.43 7.61,4.27 1.79,-0.22 2.73,-3.46 4.39,-0.78 1.6,0.17 0.61,-2.99 2.57,-3.42 -1.15,-1.7 2.02,-4.74 -1.4,-5.46 -1.72,-0.9 -4.82,0.24 -3.56,-2.92 -1.65,-1.15 -5.1,-2.98 -7.28,-1.18 -1.7,-1.21 -0.34,-3.33 1.01,-3.25 -1.01,-0.41 -4.35,-2.02 -1.41,-3.08 4.04,-0.74 -0.9,-3.55 0.29,-5.24 2.78,-1.4 -0.17,-3.49 -1.97,-3.85 0.54,-1.16 0.82,-3.06 -1.22,-3.75 -1.22,-0.97 -2.15,-2.45 -3.77,-2.12 -0.83,-2.06 2.94,-2.03 0.8,-3.75 -1.67,-1.68 1.38,-4.73 -2.1,-4.12 -1.14,-1.61 2.57,-2.09 3,-2.94 2.83,1.31 6.06,-3.85 7.55,0.37 2.5,-0.03 4.14,-1.65 3.95,-4.23 2.26,-1.56 -3,-6.08 1.31,-5.78 2.43,-1.76 -2.86,-4.22 -3.1,-6.4 -0.89,-1.13 -2.92,-1.22 -4.38,-2.07 -0.46,-2.85 -4.16,0.03 -5.16,-2.19 -1.77,1.38 -1.56,-1.91 -3.02,-0.26 -2.94,0.03 -3.68,-4.37 -6.95,-2.85 -1.79,0.23 -0.39,-2.12 -2.38,-2.04 -2.85,-0.5 -0.44,-3.57 -3.28,-4.13 -2.19,-1.12 0.4,-4.54 -2.49,-5.7 -1.04,-0.75 -2.84,-2.02 -3.29,0.09 -1.72,-0.29 -6.44,1.18 -4,-2.05 0.3,-0.52 -0.12,-1.19 -0.75,-0.9 z m -24.49,7.34 c -1.76,0.06 -3.91,0.97 -2.05,2.71 2.45,1.55 5.98,0.45 8.22,3 1.27,1.33 6.27,1.64 3.42,-0.9 -1.66,-2.42 -5.98,-1.21 -6.95,-3.15 -0.71,1.19 -4.31,0.67 -2.99,-0.41 1.53,0.61 1.74,-1.02 0.36,-1.25 z m 4.27,13.73 c -0.39,1.9 1.91,3.6 0.91,5.68 1.13,2.53 4.43,3.24 5.46,5.94 0.77,1.92 1.81,6.42 3.22,2.22 1.27,-2.59 -0.12,-4.72 -1.86,-6.47 0.15,-2.4 -0.84,-4.47 -3.47,-4.54 -1.38,-0.97 -2.47,-2.62 -4.26,-2.83 z", + "department-33" : "m 212.23,365.55 c -2.25,1.99 -3.58,5.1 -3.5,8.15 -0.48,6.34 -0.21,12.79 -1.81,19.01 -1.2,6.71 -1.28,13.55 -2.24,20.29 -0.55,4.81 -1.07,9.63 -1.29,14.47 1.23,-0.88 0.55,-4.8 2.58,-6.25 0.81,-2.73 2.88,-3.44 4.55,-0.79 1.78,1.59 5.07,5.75 0.47,5.79 -1.94,0.32 -4.77,-1.94 -5.13,1.38 0.08,2.79 -3.04,4.55 -1.87,7.42 -0.19,1.92 0.44,3.68 2.54,2.07 1.96,-0.65 4.4,-1.08 5.25,-3.29 1.7,1.54 6.09,0.9 4.35,4.35 -1.31,1.72 -1.23,3.36 1.1,2.16 2.41,-1.65 4.54,1.54 7.07,0.66 2.04,-1.79 4.82,-1.37 7.2,-2.07 2.14,1.02 0.38,4.77 3.76,4.82 2.4,1.03 3.03,4.5 6.31,3.86 0.26,2.06 3.45,2.85 1.72,5.32 0.16,3.32 4.8,3.01 7.16,2.67 0.85,-1.14 -0.06,-5.96 2.72,-3.86 1.14,3.7 6.45,1.09 6.39,-2.06 -0.87,-1.75 -3.6,-4.5 0.23,-4.76 2.61,0.03 2.25,-2.07 1.2,-3.57 0.98,-2.48 -1.62,-4.82 0.6,-7.19 0.97,-0.41 -1.14,-2.07 0.8,-1.26 2.8,-0.36 2.94,-3.1 5.39,-4.18 0.75,-0.98 -0.87,-2.51 1.15,-1.83 2.03,-2.79 -3.17,-1.59 -2.89,-4.39 1.49,-0.65 2.39,-3.49 4.34,-2.47 0.8,2.3 0.77,-3.52 2.69,-0.93 3.55,0.05 -1.96,-5.21 2.07,-5.39 0.81,-2.71 -3.55,-2.43 -4.02,-0.2 -1.5,2.45 -4.94,-0.24 -6.43,1.16 -1.54,-0.78 -3.3,-1.57 -4.69,-2.31 2.46,-1.42 2.92,-4.21 1.62,-6.51 1.22,-2.79 2.27,-5.57 2.86,-8.49 -0.47,-3.29 -4.26,-2.07 -5.82,-1.24 -2.38,-2.83 -4.14,2.63 -6.96,0.15 -2.07,-0.72 -3.48,-3.21 -4.99,-3.39 -0.47,-1.38 -2.82,-1.38 -2.86,0.26 -2.21,-2.81 -0.45,-6.52 -2.48,-8.97 -2.12,-1.28 -6.84,0.93 -6.35,-3.12 -0.56,-0.81 -2.47,1.65 -3.9,0.51 -4.02,-1.34 -1.32,4.43 -1.47,6.61 0.58,4.02 0.27,9.07 3.89,11.76 1.46,0.51 5.57,1.77 4.45,3.1 -0.84,-1.43 -5.06,-1.9 -2.37,0.24 1.43,1.74 0.49,4.83 0.74,7.16 -1.4,-2.45 0.49,-6.18 -2.52,-7.82 -3.29,-2.45 -5.47,-6.22 -5.77,-10.32 -0.44,-5.63 -1.57,-11.98 -6.4,-15.58 -1.63,-2.01 -3.19,-4.12 -5.8,-4.87 -2.26,-1.42 -3.53,-3.7 -3.19,-6.14 l -0.44,-0.12 -1e-5,0 z", + "department-40" : "m 211.63,434.01 c -0.88,2.78 -4.35,2.73 -6.63,3.62 -2.29,2.19 -1.4,6 -2.23,8.89 -1.09,9.88 -3.29,19.6 -4.84,29.41 -1.98,7.87 -2.8,16 -5.05,23.81 0.78,0.34 2.29,-0.61 2.4,0.94 1.77,2.15 4.21,1.4 6.52,1.13 2.72,0.08 5.34,-5.21 7.45,-1.24 0.66,1.02 -2.82,1.78 -0.23,1.71 1.62,-0.88 2.95,-2.22 4.61,-0.81 2.13,0.81 2.17,-1 2.51,-2.09 2.22,0.81 4.4,-1.16 6.48,-0.59 1.37,-0.53 2.73,-1.91 4.06,-1.6 0.71,1.02 1.88,2.78 2.65,0.96 1.37,-0.3 2.88,-1.9 2.52,0.17 1.29,1.75 2.72,0.05 3.91,0.22 1.75,0.81 3.22,-3.04 5.39,-2.7 1.1,0.82 -1.72,3.26 0.69,2.29 2.4,-1.36 5.37,1.52 7.01,-1.79 1.8,-0.28 0.89,-2.4 -0.38,-2.37 -0.4,-1.67 2.51,-2.23 1.29,-4.09 -0.26,-2.14 3.63,-3.05 1.8,-4.71 0.02,-1.67 -1.11,-3.61 0.81,-4.38 -0.22,-1.33 -0.28,-2.98 -0.1,-3.94 -1.71,-0.35 -2.36,-1.86 -0.35,-2.35 1.14,-1.91 4.01,-1.35 4.94,-1.5 1.19,-0.68 2.39,-2.18 3.2,-2.59 1.87,0.5 1.31,2.46 1.04,3.37 1.52,2.87 4.93,1.18 2.99,-1.52 0.64,-1.77 -0.12,-3.59 0.34,-5.4 0.9,-1.7 1.78,-4.03 2.74,-5.56 -1.79,-1.38 -4.54,-0.49 -6.35,-2.14 -1.77,-0.8 -5.3,0.84 -5.49,-1.72 0.43,-2.38 -1.12,-4.52 -2.82,-5.97 -3.27,-0.62 0.42,5.16 -3.41,4.58 -2.05,-0.55 -6.77,0.13 -5.8,-3.38 0.92,-3.14 -2.53,-5.21 -5.13,-5.8 -0.94,-2.8 -4.11,-3.04 -5.91,-4.73 1.49,-2.15 -1.37,-4.17 -3.17,-2.51 -2.51,-0.88 -3.72,1.98 -6.15,1.56 -2.14,-0.36 -4.17,-2.04 -6.33,-0.57 -1.46,0.77 -2.93,0.16 -1.14,-1.21 1.22,-1.85 1.02,-5.05 -1.81,-4.31 -0.68,-0.36 -1.21,-1.1 -2.05,-1.08 z", + "department-64" : "m 253.08,495.83 c -2,1.04 -4.74,-0.18 -6.01,2.43 -1.83,0.83 -4.01,-1.78 -5.87,0.35 -2.14,-0.15 1.69,-3.43 -1.31,-2.29 -1.72,0.92 -3.2,3.27 -5.05,2.6 -1.93,1.79 -4.46,-2.9 -6.02,0.1 -1.21,0.67 -2.59,-3.58 -3.87,-0.99 -1.9,0.48 -3.02,1.48 -5.04,0.99 -1.22,1.54 -4.29,-0.35 -4.01,2.46 -2.05,1.04 -4.85,-1.67 -6.51,0.99 -2.62,0.87 -1.01,-1.51 -0.15,-1.65 -1.55,-3.22 -4.26,-0.34 -6.12,0.88 -2.56,0.13 -5.57,1.61 -7.61,-0.63 -1.28,-2.51 -3.58,-0.07 -4.93,1.39 -1.68,1.56 -1.95,4.32 -4.29,5.23 -1.69,1.55 -7.65,0.48 -5.65,3.85 1.87,0.86 1.46,4.39 4.19,2.52 2.6,-0.58 2.27,2.2 3.07,3.56 2.76,1.38 2.1,-3.66 4.79,-2 1.78,1.78 5.83,-0.05 5.9,3.24 0.24,2.43 -0.82,4.76 -1.66,6.98 -1.29,1.67 -3.56,3.41 -1.06,5.31 1.51,1.31 5.27,2.04 4.58,-1.17 -0.71,-1.55 2.39,-4.31 2.69,-2.51 -2.06,1.66 0.03,4.01 2.16,3.67 2.46,-0.03 4.04,2.64 6.26,2.53 1.72,1.34 4.05,1.09 5.39,2.88 1.73,1.93 4.52,0.85 6.74,1.66 1.99,-0.16 4.84,-2.29 5.07,1.23 -0.81,2.07 0.71,3.43 2.64,3.64 1.79,1.33 2.98,3.14 4.2,4.85 0.76,1.05 1.54,2.12 2.46,0.37 1.16,-3.48 4.69,1.83 6.98,-0.79 1.19,-1.54 3.59,-1.6 2.64,-4.14 -1.03,-1.8 -0.6,-3.29 1.27,-4.13 -0.06,-1.84 -0.98,-4.37 1.02,-5.5 -0.26,-2.35 3.4,-0.37 2.36,-2.95 -0.31,-2.04 0.54,-3.46 2.39,-4.54 0.43,-1.68 1.02,-3.07 2.85,-2.84 0.96,-1.29 0.1,-2.97 1.75,-3.52 1.05,-1.34 1.15,-3.03 0.08,-4.32 -0.45,-2.45 2.51,-1.81 2.96,-3.2 -2.11,-1.84 6.8e-4,-4.66 -1.62,-6.53 -0.58,1.27 -2.64,3.57 -2.38,0.71 -1.29,-2.3 2.87,-1.95 0.97,-3.91 0.18,-1.68 -0.41,-3.23 -2.26,-3.82 0.91,-3.32 -2.94,-1.29 -3.99,-2.95 z", + "department-65" : "m 258.87,495.01 c -1.8,0.45 -2.71,3.79 -0.53,4.11 1.77,0.93 0.39,3.3 1.83,4.37 0.55,1.29 -2.73,1.07 -1.69,3.08 0.25,0.94 0.45,1.82 1.16,0.54 0.58,-2.18 2.68,-0.96 1.96,0.87 -0.78,1.76 0.67,3.31 0.88,4.8 -1.18,0.79 -3.45,1.09 -2.97,3.25 1.84,0.97 0.47,2.73 -0.2,4.04 -1.24,0.64 -1.12,1.93 -1.22,3.11 -0.94,1.24 -2.53,-0.25 -2.72,1.72 0.07,2.18 -3.15,2.41 -2.66,4.5 -0.68,1.38 0.99,2.95 -1.24,3.19 -1.81,-0.68 -0.82,2.19 -2.52,2.42 -0.96,1.75 1.62,4.4 -1.13,5.25 -1.17,1.23 0.36,3.01 0.21,4.58 0.8,1.85 3.23,1.8 4.32,3.39 0.8,1.59 2.23,-0.11 3.02,0.33 -0.62,1.62 1.47,2.52 1.69,4.01 0.86,0.9 2.31,1.15 2.69,2.42 1.83,1.45 3.74,-0.36 5.61,-0.57 1.93,-0.42 3.77,-1.28 5.69,-1.71 1.44,0.78 3.77,0.94 3.81,3.05 2.26,2.18 2.08,-2.59 4.38,-1.99 1.13,1.17 3.69,3.06 4.86,0.92 0.05,-1.39 -2.26,-1.55 -1.25,-3.19 -0.22,-2.37 -0.2,-4.87 0.34,-7.22 0.73,-2.56 2.86,1.18 4.3,-0.6 0.98,-1.36 0.62,-3.51 2.12,-4.58 1.31,-0.6 1.39,-2 -0.03,-2.4 0.03,-1.09 0.59,-3.36 -0.97,-3.56 -0.63,0.87 -1.91,1.13 -2.65,1.85 -1.08,-1.05 0.13,-2.67 1.04,-3.22 0.21,-2.09 -2.27,-2.58 -3.33,-3.84 -1.96,0.05 -2.5,-2.39 -0.65,-3.33 1.23,-0.71 1.83,-1.97 1.86,-3.25 1.21,-0.24 3.67,-0.39 1.95,-2.06 0.27,-1.44 2.07,-2.08 2.89,-3.27 0.91,-1.83 -2.55,-2 -3.76,-2.58 -1.99,0.18 -3.51,-0.82 -5.41,0.06 -1.34,-0.5 -1.51,-2.58 -3.28,-1.26 -1.44,0.45 -0.65,-1.85 -2.21,-1.81 -0.4,-2.08 -2.74,1.08 -4.13,0.33 -2.05,0.24 -1.11,-2.25 -2.96,-2.59 -1.61,-1.44 2.14,-2.79 -0.22,-3.78 -0.78,-1.39 -0.54,-3.64 -2.7,-3.29 -1.46,-0.69 -3.44,-1.95 -3.82,-3.87 -0.18,-1.35 -0.76,-2.57 -2.37,-2.22 z", + "department-32" : "m 288.27,463.87 c -1.29,2.88 -5.54,-0.03 -6.53,2.83 -2.1,1.77 -4.73,1.22 -6.76,2.71 -2.08,0.01 -3.65,-3.12 -5.28,-0.69 -0.65,1.86 -1.87,2.55 -2.45,0.62 -2.23,0.44 -3.98,2.37 -2.44,4.62 0.2,3.15 -4.13,0.87 -4.04,-0.76 1.98,-1.15 -1.31,-3.92 -1.89,-1.48 -1.36,0.88 -2.15,2.45 -3.74,1.44 -1.57,0.41 -4.14,1.3 -4.17,2.91 0.97,-0.06 2.74,1.66 1.14,2.06 0.79,1.55 0.47,3.45 -0.69,4.12 -0.33,1.98 2.19,4.36 -0.39,5.45 -1.98,1.42 0.37,4.44 -2.43,5.48 -0.36,1.6 2.15,0.8 1.49,2.46 1.11,1.33 3.15,-0.5 4.55,0.81 2.47,0.88 3.36,-2.49 5.61,-1.44 1.48,1.25 1.16,3.81 3.05,4.84 1.38,1.57 4.44,0.46 4.1,3.43 0.41,1.3 2.59,2.38 0.49,3.44 -0.77,1.59 2.39,1.82 1.93,3.46 1.71,1.66 4.03,-1.49 5.43,-0.11 0.89,0.66 1.16,0.72 1.51,1.88 0.95,0.42 3.1,-1.28 2.93,0.92 1.2,1.27 2.65,-0.98 4.02,0.37 2.43,-0.64 4.57,1.51 7.02,0.99 2.24,-0.37 2,-4.01 4.18,-4.04 1.03,-0.83 0.9,-3.94 2.81,-1.95 1.67,-0.83 3.88,-0.75 5.67,0.16 0.91,0.99 2.37,1.43 2.94,2.48 1.63,-0.76 -0.23,-3.24 1.96,-3.58 -0.57,-1.08 1.48,-2.6 -0.18,-3.46 1.15,-0.97 1.84,-2.38 1.86,-3.53 -0.42,-0.91 -0.08,-1.57 1.15,-1.23 1.38,1.18 1.14,-1.56 2.7,-0.84 0.63,-1.52 3.1,-0.22 2.48,-2.27 -0.36,-1.83 -2.79,-0.23 -2.57,-2.49 -0.17,-1.58 -3,0.32 -2.23,-1.91 -0.65,-0.14 -2.95,-1.22 -1.53,-2.55 -1.72,-1.15 -3.17,-2.62 -4.32,-4.47 -0.48,-1.49 -1.52,-2.14 -3.01,-1.39 -0.71,-1.1 1.95,-3.14 -0.25,-3.59 0.81,-1.67 -1.08,-2.65 -0.29,-4.38 -0.98,-1.15 -2.92,-0.66 -3.92,-1.45 -1.92,0.99 -2.66,-1.19 -0.98,-2.08 1.33,-1.27 2.11,-2.83 1.82,-4.55 2.78,0.11 0.11,-2.62 -1.08,-1.05 -0.99,1.3 -2.3,0.73 -2.1,-0.79 -1.98,-1.77 -2.94,2.84 -4.5,1.59 -0.79,-1.18 -1.59,-2.56 -3.04,-2.99 z", + "department-47" : "m 271.96,418.57 c -1.12,0.17 -0.25,3.43 -1.56,2.13 -0.12,-1.86 -1.95,-0.02 -2.75,0.4 0.3,1.16 -2.76,1.33 -0.91,2.6 1.11,0.19 1.02,1.52 2.48,1.01 1.44,0.91 -1.06,2.5 -1.16,2.87 0.87,2.1 -3.36,1.97 -3.04,4.31 -0.66,1.32 -2.9,0.04 -3.03,2.12 -1.51,1.15 -1.7,3.22 -0.57,4.79 -0.06,1.23 -0.68,3.09 0.66,4.34 0.53,2.27 -2.81,1.42 -4.05,2.53 -0.97,1.63 2.06,2.63 1.76,4.47 -0.3,1.56 -1.81,2.75 -3.19,3.37 -2.65,-0.34 -0.6,2.88 -1.03,4.38 0.2,1.7 3.06,0.37 4.41,0.96 1.72,-0.01 2.85,1.6 4.55,1.55 1.81,-0.34 4.32,0.7 1.99,2.38 -0.96,1.79 -1.89,3.83 -2.27,5.81 0.22,2.19 2.26,0.91 3.36,0.51 0.07,1.08 1.01,2.13 1.44,0.5 0.34,-1.77 2.69,-2.84 3.77,-1.09 1.32,0.59 2.76,1.15 3.51,-0.33 2.29,0.11 4.79,-0.64 5.96,-2.66 1.88,-1.17 4.15,0.6 5.62,-1.44 2.19,-1.4 2.89,4.16 4.68,2.54 0.43,-1.77 3.28,-1.53 2.93,-3.79 0.32,-1.72 2.95,-1.12 2.06,-3.19 1.14,-1.2 3.78,2.21 4.38,-0.3 1.24,-1.76 -3.16,-1.93 -0.81,-3.08 1.93,0.3 2.44,-1.55 2.52,-3.12 0.05,-1.54 1.51,-2.6 -0.28,-3.7 -1.98,0.07 -2.65,-1.77 -1.25,-3.07 -0.66,-1.59 0.89,-4.03 2.16,-1.84 1.2,1.74 3.18,-0.6 4.87,0.23 1.47,-0.35 0.02,-2.38 0.66,-3.42 -0.74,-1.17 -2.3,-1.84 -1.81,-3.5 -0.48,-1.52 -0.18,-3.09 -1.47,-4.38 -0.18,-1.56 2.07,0.06 2.6,-1.44 2.23,-0.92 0.96,-3 -0.85,-3.42 -1.18,-0.9 -2.23,-2.62 -3.97,-1.72 -1.77,0.61 -3.79,4.09 -5.24,1.39 -0.45,-1.44 1.52,-3.01 0.24,-4.21 -0.07,-1.53 -1.75,-1.43 -2.24,-0.4 -1.76,-0.02 -3.9,1.47 -5.57,0.14 -0.23,-1.37 -1.47,-1.6 -2.08,-0.75 -2.02,-0.91 -2.07,3.29 -4.06,1.27 -2.06,-0.28 -3.79,2.48 -6,1.62 -1.2,-0.36 -2.8,-0.51 -1.91,-2.17 -0.29,-1.56 -0.32,-3.45 -1.85,-4.63 -1.22,-0.69 -2.63,0.81 -3.68,-0.58 z", + "department-31" : "m 331.94,474.41 c -0.68,0.65 -2.04,2.77 -2.82,1.13 -0.88,2.48 -3.19,1.97 -4.86,0.96 -1.55,0.64 0.14,3.12 -2.36,2.15 -2.62,1.13 3.36,0.73 1.4,2.64 -2.36,0.26 -4.4,3.11 -6.6,2.58 0.49,-1.28 -1.93,-1.55 -2.71,-2.73 -1.22,0.52 -1.81,1.77 -3.2,0.33 -1.05,1.35 -6.99,0.28 -4.9,3.26 0.78,2.42 4.54,2.76 3.97,5.34 -0.09,1.59 2.59,0.57 1.65,2.48 1.45,-0.15 2.71,0.29 2.75,2.12 2.32,-0.79 3.22,3.38 0.42,2.98 -1.39,0.96 -2.79,2.36 -4.28,1.51 0.22,1.09 -0.93,1.69 -0.19,2.71 -1.11,0.93 -2.4,1.92 -1.3,3.09 -0.14,2.56 -2.24,3.13 -1.86,5.78 -2.28,0.29 -4.39,-4.08 -7.67,-2.82 -1.04,1.59 -3.69,-1.72 -3.56,1.11 -0.58,1.85 -2.79,1.41 -3.13,3.65 -0.59,1.85 -3.45,1.26 -2.47,3.26 -1.18,1.3 -4.05,2.49 -2.64,4.6 -0.87,1.17 -3.36,0.31 -2.75,2.32 -1.12,1.46 -4.76,3.78 -1.19,4.89 1.76,1.02 4.67,2.8 3.25,4.87 -1.93,-0.23 -0.85,3.7 0.66,1.16 1.54,-2.36 3.15,1.07 2.12,2.64 2.91,2.01 -2.1,3.83 -1.61,6.44 -0.51,3.59 -5.61,-1.51 -4.9,2.82 -0.14,2.5 -0.78,5.34 0.25,7.58 1.24,3.62 5.19,1.02 7.98,1.92 3.26,1.27 1.96,-3.08 1.03,-4.36 0.62,-1.99 -0.29,-6.25 2.86,-6.17 1.7,0.86 4.26,1.66 5.76,1.11 -0.71,-2.27 -2.75,-5.86 1.03,-6.34 -1.09,-3.05 4.04,-1.13 4.86,-3.68 1.59,-2.04 -2.43,-4.11 0.13,-6.26 -0.81,-1.7 0.87,-1.98 1.83,-1.32 0.73,-1.18 0.32,-3.34 2.23,-2.27 1.75,-1.87 3.08,0.31 4.93,0.54 0.53,2.35 2.71,3.78 3.84,1.06 2.13,-2.4 -4.92,-1.82 -2.12,-4.62 2.26,-0.73 5.88,-0.6 6.67,-3.04 -2.12,-0.9 -5.62,-3.08 -2.33,-5.25 2.22,-1.02 3.41,2.55 4.45,3.89 -1.26,3.63 4.83,2.74 3.18,-0.17 -0.66,-2.09 0.67,-2.84 2.04,-1.38 0.62,-0.24 1.37,1.65 1.76,0.04 1.29,0.26 2.91,1.86 3.3,2 -0.08,-2.66 3.01,-1.81 3,-4.31 0.95,-0.61 0.18,-3.05 2.37,-2.38 3.88,1.33 0.45,-3.77 3.27,-4.97 0.71,-2.95 3.03,-0.09 2.95,1.61 0.84,-2.74 2.97,-1.34 4.82,-1.25 2.66,-0.87 -1.09,-3.1 1.33,-4.44 1.35,-1.72 -1.4,-1.69 -1.32,0.06 -3.27,-0.12 -6.63,-2.75 -7.58,-6.09 -2.53,-0.55 -4.6,-2.3 -6.81,-3.45 -0.35,-1.68 3.27,-3.34 0.1,-4.24 -2.17,-0.28 -1.16,-1.19 0.22,-1.63 -1.37,-1.37 -2.63,-3.29 -2.73,-5.55 -2.67,-0.65 -2.91,-3.64 -4.05,-5.72 -0.33,-0.56 0.35,-2.12 -0.45,-2.2 z", + "department-09" : "m 322.92,514.38 c -1.77,0.4 -2.94,3.3 -0.65,3.69 0.7,1.03 3.58,1.14 1.86,3.03 -1.64,0.33 -2.71,1.95 -4.64,1.54 -1.89,-0.39 -3.09,2.26 -0.83,2.67 1.66,-0.15 3.01,2.02 0.99,2.72 -0.68,2.28 -3.15,1.38 -3.15,-0.7 -0.68,-1.52 -2.7,-0.7 -3.49,-2.07 -1.08,0.33 -2.25,1.04 -3.22,1.13 -0.35,1.11 -0.94,2.81 -2.25,1.6 -1.04,0.77 0.24,2.1 -1.03,2.67 0.22,1.6 -0.02,2.82 1.46,3.85 -1.2,1.52 -2.44,3.34 -4.76,3.2 -1.68,0.25 -0.31,2.63 -2.49,2.42 -1.74,0.55 -0.02,2.81 -0.14,4.1 0.4,1.71 1.5,2.9 3.14,3.63 1.28,1.78 3.03,-0.34 4.47,1.26 1.71,0.48 3.77,0.08 5.28,1.2 1.52,0.96 0.78,4.18 3.21,3.77 1.81,-0.79 3.72,-0.27 5.61,-0.23 2.02,-0.71 2.59,1.67 3.84,2.55 1.12,1.34 1.05,3.21 2.01,4.57 1.28,1.48 2.35,-0.4 1.84,-1.7 0.69,-1.31 2.63,-0.58 3.96,-1.11 1.28,1.07 2.71,2.2 4.62,1.91 1.34,0.06 3.85,0.03 3.23,1.91 1.39,1.64 3.87,0.78 5.6,0.4 0.57,-1.18 1.04,-2.03 2.43,-1.43 2.19,-0.08 1.97,-2.4 3.35,-3.3 1.93,0.29 3.8,-0.94 5.79,-0.67 2.41,1.1 1.93,-2.4 0.1,-2.73 -1.56,-0.61 -2.08,-3.47 -3.93,-2.56 -1.44,1.17 -3.66,1.47 -5.14,0.19 -1.07,-0.5 -1.37,-1.28 -0.85,-2.24 -0.1,-1.78 -3.17,-1.91 -2.42,-3.56 0.61,-1.93 2.84,-1.17 4.26,-1.83 1.6,-0.65 1.66,-3.22 0.62,-4.39 -0.97,-0.41 -2.71,-1.29 -0.83,-2 2.76,-0.51 0.39,-3.41 1.32,-5 -0.68,-0.84 -2.9,-1.37 -1.24,-2.6 -0.05,-1.47 -0.56,-4.85 -2.61,-3.33 -0.79,0.58 -0.86,-2.17 -2.27,-1.43 -2.03,-0.09 -3.76,-1.13 -5.2,-2.44 -2.44,-0.46 0.31,-2.65 -1.41,-3.86 0.06,-1.13 -1.42,-3.48 -2.14,-1.49 0.2,1.29 -1.12,2.4 -1.32,0.58 -1.06,-0.88 -2.39,-0.86 -3.16,-0.3 -0.26,-1.49 -2.18,-0.32 -2.38,-1.78 -1.84,1.01 1.46,4.57 -1.48,4.45 -1.21,1.62 -3.37,-0.84 -2.43,-2.29 -0.86,-1.43 -2.29,-3.16 -3.57,-4 z", + "department-11" : "m 364.67,505.18 c -2.13,0.57 -0.5,5.91 -3.1,3.75 -1.18,-2.85 -4.84,2.36 -5.84,-1.19 -0.72,-2.31 -2.46,1.34 -4.11,0.01 -1.54,-1.46 -2.33,0.39 -3.24,1.32 -0.23,-2.27 -2.22,-3.92 -3.16,-1.34 -0.87,0.24 -0.11,1.72 -1.21,2.06 0.19,1.45 0.78,3.37 -1.49,2.79 -1.58,-0.53 -2.15,0.63 -2.04,1.83 -1.91,1.64 -1.47,4.24 -0.24,6.18 -1.51,2.59 2.3,3.14 3.91,4.46 1.21,1.16 1.88,-1.15 2.65,0.26 0.85,0.87 1.08,1.73 2.47,1.06 2.01,0.75 2.09,4.03 1.21,5.02 1.15,0.71 2.39,1.61 1.5,3.23 0.51,1.05 0.43,2.71 0.87,3.4 -0.81,-0.18 -3.39,-0.39 -2.43,1.11 2.63,0.22 2.7,4.54 0.47,5.37 -1.52,0.14 -4.84,0.47 -3.84,2.7 1.13,0.78 3.33,2.21 1.92,3.7 1.87,2.17 4.61,1.92 6.79,0.49 1.87,0.67 3.2,2.9 4.9,4.16 0.29,0.77 -0.16,3.39 1.45,1.94 1.38,-0.49 2.35,-2.61 3.38,-2.8 3.23,0.6 4.2,-2.76 3.22,-5.18 -1,-1.8 -1.38,-4.7 1.64,-4.23 2.53,0.91 4.78,-0.22 7.3,0 2.09,0.41 4.19,0.48 6.29,0.79 2.21,0.79 3.75,-1.13 4.22,-3.06 1.17,-1.13 3.59,-3.15 5.13,-1.71 1.3,1.3 3.27,1.87 4.83,2.84 2.13,1.52 2.74,-1 3.21,-2.43 1.53,0.97 2.52,-0.65 1.16,-1.76 -1.63,-0.06 -2.17,-3.46 -0.29,-3.05 -1.3,1.16 0.16,3.32 0.83,1.11 0.3,-2.15 1.05,-4.2 1.74,-6.14 -1.37,-0.71 -2.48,-2.26 -1.53,-4.08 1.34,-0.99 2.05,0.82 0.7,1.33 0.45,2.19 2.18,0.91 2.38,-0.59 1.25,-2.32 3.34,-4.41 3.85,-6.98 -1.33,-0.95 -2.17,-3.73 -4.1,-2.48 -1.39,-1.53 -3.64,-0.52 -5.08,-2.29 -1.5,0.01 -2.47,-0.48 -2.27,-2.29 -0.9,-0.95 -2.71,0.72 -3.86,-0.6 -1.23,0.03 -1.77,-2.07 -2.64,-0.37 -2.69,-0.21 -2.48,2.66 -3.84,4.4 -1.5,0.6 -4,-1.25 -3.43,-3.05 -1.03,-1.38 -1.67,1.6 -3.23,1.07 -1.96,0.44 -1.2,-3.61 -3.62,-3.11 -0.54,-1.58 0.14,-3.86 1.72,-4.64 -1.11,-1.36 -3.4,-0.89 -4.89,-1.84 -2.41,-0.21 -4.21,2.14 -6.37,0.2 -1.15,-1.01 -2.86,-0.43 -3.9,-1.36 z", + "department-34" : "m 432.7,471.05 c -2.82,-0.14 -2.25,3.63 -4.4,4.07 -0.29,0.95 -1,-1.31 -1.64,0.37 -0.78,1.08 -1.92,2.21 -0.58,3.39 -2.08,0.97 -3.74,-1.02 -4.09,-2.84 -1.14,-0.13 -3.63,3.31 -3.65,1.04 1.22,-2.84 -3.28,-3.08 -4.4,-1.13 -1.75,0.05 -4.91,0.28 -4.14,3.06 0.95,2.61 -3.7,2.79 -5.44,1.81 -1.4,-1.16 -3.24,-1.07 -3.01,1.18 -0.18,1.32 1.24,2.87 -0.14,4.1 0.62,1.44 0.83,4.11 -1.5,2.93 -1.9,-1.31 -4.89,0.21 -4.99,2.34 -1.72,1.38 -4.21,1.07 -5.84,2.58 -2.33,1.39 -3.2,-2.96 -5.88,-1.82 -1.89,1.46 -1.49,4.46 -1.28,6.39 1.29,1.33 2.44,2.57 1.32,4.41 1.34,2.71 -4.55,3.16 -3.17,5.55 -2.06,0.53 -2.79,4.64 -0.22,4.68 0.67,1.57 1.43,3.54 3.44,2.14 0.87,-0.94 2.1,-1.99 2.01,0.2 -0.23,2.17 4.03,3.61 3.93,0.59 0.87,-1.62 1.23,-2.77 3.32,-2.78 0.52,-0.56 0.15,-1.94 1.19,-0.69 1.08,2.09 3.49,1.31 5.46,1.68 -0.68,2.83 2.73,2.14 4.22,3.63 1.57,-0.33 2.27,0.99 3.74,0.84 1.91,-0.49 2.74,4.36 5.08,2.19 1.74,-1.58 3.52,-3.11 5.56,-4.28 2.08,-1.06 5.06,1.34 5.96,-1.86 1.13,-1.74 2.55,-3.33 3.97,-4.83 1.92,-0.8 3.82,-1.56 5.35,-3.04 1.04,-0.77 4.27,-2.56 3.43,-3.18 -1.77,0.69 -2.9,2.96 -5.05,2.64 1.32,-1.08 3.94,-1.46 4.39,-3.59 0.26,-2.07 3.24,-1.87 3.8,-3.93 1.83,-0.89 3.79,-1.45 5.59,-2.45 1.64,-0.59 3.36,-1.29 4.82,-0.11 1.99,-0.35 3.46,-2.78 3.21,-4.68 -1.27,-1.69 -0.88,-4.7 -3.08,-5.47 -1.53,-1.23 -3.1,-2.35 -4.35,-4.13 -1.06,-0.92 -3.71,0.85 -2.61,-1.68 0.56,-1.97 -2.51,-1.31 -2.62,-3.3 -1.43,-0.22 -5.49,1.8 -4.76,-1.4 1.23,-1.42 0.75,-2.79 -0.76,-3.44 -0.43,-1 -1.11,-1.45 -2.17,-1.2 z", + "department-81" : "m 359.19,455.89 c -1.24,0.24 -2.02,1.77 -3.38,0.73 -0.69,1.71 -3.3,3.28 -5.4,2.41 -0.74,-0.67 -2.67,-1.24 -1.55,0.37 0.82,2.02 -3.8,-1.25 -3.34,1.36 0.38,1.63 -0.72,1.03 -1.43,0.3 -0.84,0.63 -0.81,2.22 -2.19,0.95 -1.44,-1.04 -5.85,-1.1 -4.27,1.46 0.11,1.41 3.03,2.31 1.06,3.87 -1.23,1.12 -2.01,1.89 -2.86,3.1 0.34,2.74 -4.32,-0.4 -3.44,2.06 2.73,0.69 -1.07,2.95 0.38,4.74 0.88,1.51 1.48,3.18 2.48,4.54 2.88,0.12 0.73,4.16 3.26,4.85 1.98,0.94 -0.25,1.71 -0.44,2.57 2.04,-0.73 3.51,2.48 1.2,3.08 -1.14,2.35 3.3,2.73 4.5,4.17 2.38,0.09 2.85,2.45 4.03,4.06 0.87,1.61 2.98,1.66 4.45,2.53 1.8,0.75 0.62,-2.46 2.55,-1.47 1.25,1.58 -2.69,3.47 0.16,4.91 0.99,1.3 1.91,3.29 3.93,1.96 1.54,-1.93 2.44,0.44 3.73,0.95 0.93,-1.18 0.33,-4.6 2.6,-4.31 1.41,0.67 3.33,0.91 4.74,1.99 1.78,0.44 3.3,-1.4 5.17,-0.9 1.54,0.64 3.34,1.46 4.91,0.39 1.22,-0.65 2.59,-2.15 3.13,-2.65 -0.33,-1.9 0.49,-4.09 -1.57,-5.36 -0.53,-1.92 -0.32,-3.95 0.58,-5.89 -0.09,-1.86 1.73,-0.34 2.84,-0.57 1.58,0.89 2.61,3.14 4.45,1.26 1.61,-1.09 4.13,-1.06 5.32,-2.39 0.59,-1.44 0.99,-3.85 -0.49,-4.76 -1.98,0.54 -4.15,-2.78 -5.43,-0.2 -1.74,1.58 -4.42,0.13 -5.92,-1.2 -1.42,-1.69 -2.72,-3.5 -3.97,-5.32 -0.55,-1.32 0.7,-2.87 -0.75,-3.75 0.39,-1.89 -1.34,-2.52 -2.26,-3.46 1.77,-1.58 -0.69,-2.74 -0.77,-4.43 -0.71,-1.73 -1.99,-2.21 -3.41,-2.94 -0.34,-2.1 -2.74,-2.51 -3.91,-4.01 -1.94,0.92 -1.58,-2.85 -3.76,-1.03 -0.66,0.37 -4.1,-0.27 -1.82,-0.67 1.81,-0.19 1.01,-1.96 -0.39,-1.15 -1.14,-0.52 -1.76,-1.54 -2.72,-2.18 z", + "department-82" : "m 312.42,443.09 c -1.85,0.35 -3.17,2.62 -5.25,1.73 -1.31,0.31 -3.12,1.69 -3.39,-0.58 -1.85,-1.31 -1.54,1.91 -1.84,2.96 -1.51,2.17 2.33,1.55 2.57,3.25 0.14,1.45 -1.01,2.7 -0.91,4.2 -0.18,1.5 -1.64,1.79 -2.73,1.91 -0.4,1.36 2.31,1.1 1.29,2.87 -0.69,2.88 -3.06,-1.07 -4.32,0.62 0.27,1.88 -2.73,1.75 -2.46,3.87 -0.08,1.54 1.73,3.67 2.9,1.71 1.59,-0.94 3.41,1.43 1.09,1.85 -0.3,1.55 -0.72,3.28 -2.18,4.36 -1.31,0.8 -0.5,2.46 0.88,1.8 1.48,0.54 4.3,0.38 4.37,2.38 -1.39,1.17 1.42,2.31 0.11,3.38 2.45,0.26 -1.28,3.57 1.16,3.57 1.53,-0.26 3.03,-0.4 4.54,-0.83 1.5,-0.03 2.94,-0.98 4.33,-0.39 1.72,-1.84 2.75,0.75 4.3,1.37 0.62,2.12 2.45,-0.75 3.6,-1.1 1.05,0.29 3.83,-1.05 2.33,-2.01 -1.07,0.24 -2.88,-1.04 -1.08,-1.54 1.5,0.63 1.84,-0.51 1.75,-1.66 1.52,-1.46 3.2,1.71 4.64,0 0.34,-0.97 0.79,-2.21 1.85,-0.92 1.01,-0.76 2.19,-1.88 3.44,-2.1 0.16,-1 -2.71,-1.99 -0.62,-2.44 1.42,0.34 3.08,0.13 3.26,-1.5 0.94,-1.43 3.31,-2.29 2.99,-4.29 -1.03,-0.91 -2.94,-3.11 -1.21,-4.28 1.76,-0.32 3.92,0.31 5.18,0.83 0.24,-0.94 1.53,-1.71 2.13,-0.62 0.26,-0.94 -0.03,-2.34 1.31,-1.95 1,0.01 3,0.87 2.07,-0.86 0.94,-1.23 3.05,1.85 3.73,-0.21 -0.48,-1.19 -1.31,-1.59 -2.38,-1.25 -1.19,-0.82 -2.47,-2.21 -0.73,-3.34 0.67,-0.96 3.24,-2.01 1.62,-3.28 -1.47,-0.16 -3.76,0.07 -3.85,-2.02 0.3,-1.67 -1.47,-1.72 -2.41,-1.39 -1.2,-0.06 -1.8,1.13 -3.07,0.52 -2.21,1.6e-4 -3.26,2.16 -4.91,3.07 -1.59,0.61 -1.69,-3.16 -3.08,-0.88 -0.64,1.32 1.69,3.08 -0.62,3.77 -2.48,0.74 -1.35,-3.54 -3.97,-2.95 -1.02,1.31 -2.31,2.59 -3.9,3.31 -0.62,1.21 -2.03,1.25 -2.75,0.08 -1.64,-0.11 -2.61,-1.41 -1.42,-2.74 0.53,-1.63 -1.23,-1.76 -1.97,-0.58 -1.85,0.92 -3.12,-1.07 -4.35,-2.05 -1.7,-0.39 -2.62,-2.06 -3.35,-3.41 0.21,-0.9 3.8,-1.37 1.31,-2.21 z", + "department-12" : "m 386.76,407.29 c -2.14,1.63 -3.73,3.58 -5.5,5.09 -0.63,2.34 -1.06,4.46 -2.66,6.12 0.54,2.68 -1.96,3.67 -2.92,5.73 -0.72,3.27 -5.18,2.39 -7.34,1.7 -0.99,-2.01 -4.94,-0.46 -5.6,1.1 0.39,3.12 -3.63,4.97 -6.27,3.58 -1.56,0.66 -4.41,2.04 -5.81,4.16 -1.53,0.58 -1.54,2.78 -2.62,0.91 -0.33,1.64 -3.19,1.04 -1.91,3.21 0.19,2.54 2.65,4.88 2.26,7.04 -2.82,1.15 -0.92,5.48 1.94,4.37 2.33,0.28 0.7,3.17 -0.71,3.12 -2.55,2.45 0.53,3.56 2.39,3.84 0.67,3.04 3.2,-0.06 4.12,-0.85 1.68,0.29 3.86,-1.68 4.96,0.75 0.55,1.26 3.76,0.06 1.86,2.06 -0,1.48 4.12,-1.22 3.8,1.61 2.5,-0.26 4.41,2.77 5.65,4.29 2.67,0.65 3.79,4.29 4.36,6.18 -1.75,1.87 2.57,1.91 1.59,4.25 1.75,1.49 -0.67,4.06 1.98,5.4 1.38,2.41 3.12,5.08 6.11,5.48 2.37,0.69 3.45,-3.06 5.86,-0.86 2.02,0.51 3.14,1.01 3.48,3.29 1.46,0.07 3.05,-1.12 4.63,0.23 2.15,-0.16 -0.16,-3.5 1.42,-4.87 -2.07,-2.25 0.27,-5.84 2.84,-3.46 2.56,1.39 6.37,-0.16 5.06,-3.27 1.23,-2.77 5.86,-0.37 5.25,-4.54 0.37,-2.38 6.08,-3.9 3.11,-6.44 -1.72,-1.06 -3.87,-0.95 -4.75,-2.6 -2,1.51 -3.2,-2.5 -0.39,-2.14 0.69,-1.75 0.97,-3.65 2.65,-4.71 -0.85,-3.72 -6.54,0.53 -7.09,-1.33 1.8,-2.6 -2.67,-2.64 -2.93,-4.36 -3.22,0.42 1.6,-3.78 -0.91,-5 -1.34,-2.93 1.81,-5.95 -0.73,-8.46 -2.48,-1.5 -1.88,-4.02 -1.71,-6.29 -1.66,-2.01 -3.31,-4.07 -5.12,-5.98 -2.19,-1.65 -1.09,-4.87 -2.2,-6.82 1.11,-1.31 0.66,-2.22 -1.09,-2.03 -1.82,-1.66 -0.61,-6.97 -4.4,-5.13 -3.08,2.23 0.7,-4.51 -2.68,-4.38 z", + "department-46" : "m 331.44,399.96 c -1.78,0.39 -2.93,2.06 -4.78,2.22 -1.23,1.62 0.08,3.6 0.59,5.24 -0.62,1.03 -1.17,1.95 0.02,3.07 0.18,1.1 -1.76,1.01 -1.92,2.28 -1.5,0.17 -1.62,1.3 -1.79,2.63 -1.56,-0.12 -3.74,1.66 -1.79,2.99 0.48,1.24 -1.16,2.21 -1.55,3.19 -1.79,0.31 -2.39,2.65 -4.57,2.36 -2.48,0.13 -0.92,2.86 -2.15,3.97 -1.67,0.34 -1.51,2.52 -2.1,3.21 -1.96,-0.06 -3.03,2.88 -4.61,1.79 0.3,1.56 1.42,3 1.29,4.74 0.12,1.32 0.67,2.66 1.83,3.4 -0.23,1.58 0.35,3.51 2.07,1.94 2.05,-0.44 1.46,1.94 -0.18,1.83 -1.22,0.88 0.7,1.96 1.17,2.95 1.11,0.91 2.68,0.4 2.82,2.11 1.72,1.87 3.42,-0.03 5.04,-0.22 1.19,1.4 -2.21,4.14 0.76,3.99 1.38,-0.04 1.68,2.38 2.73,0.72 1.96,-0.86 3.33,-2.7 4.76,-3.95 1.66,0.19 1.95,1.57 2.46,2.95 1.89,1.12 2.81,-1.68 1.58,-2.85 -0.39,-2.38 2.82,-1.6 2.72,0.27 1.76,0.56 -0.35,-2.18 1.38,-1.26 1.36,-0.27 2.54,-1.96 4.25,-2.02 0.76,0.53 1.85,0.71 1.98,-0.6 1.54,0.38 3.17,-0.08 4.64,-1.02 1.31,-1.08 -1.41,-2.59 -1.19,-4.22 -0.34,-1.78 -2.63,-4.88 0.45,-5.17 0.8,-1.45 3.46,-0.89 4.27,-2.93 1.34,-1.34 2.91,-2.41 4.64,-2.98 1.55,-0.08 3.53,1.36 4.52,-0.64 2.16,-0.01 1.68,-2.49 0.04,-3.09 -0.5,-1.43 0.84,-3.98 -1.69,-3.98 0.01,-1.34 1.12,-3.09 0.77,-4.77 2.27,-2.31 -1.48,-4.34 -2.43,-6.39 -1.64,-1.56 0.95,-3.21 -0.74,-4.49 0.04,-1.98 -1.53,-3.91 -3.65,-2.78 -1.3,0.58 -2.95,2.18 -3.41,-0.02 -1.69,-0.06 -2.54,2.17 -4.2,2.71 -0.83,0.81 -1.65,0.91 -2.35,0.29 -1.65,0.66 -1.79,-2.72 -3.46,-2.87 -0.92,-1.46 -2.13,-2.77 -3.54,-3.69 -1.38,-0.89 -3,0.05 -4.21,-0.32 -0.19,-0.27 -0.02,-0.7 -0.45,-0.56 z", + "department-24" : "m 289.61,356.69 c -1.25,1.56 -2.08,5.45 -4.38,4 -1.12,2.06 0.62,6.2 -2.8,7.04 -0.72,1.93 -1.59,3.15 -3.65,3.23 -1.43,0.82 -1.89,2.66 -3.45,1.99 1.01,1.66 -2.34,1.58 -2.02,3.67 -1.23,2.3 1.53,4.83 -0.18,6.83 -2.94,0.32 -3.4,4.38 -6.04,5.33 -2.31,-2.11 -5.97,0.67 -6.23,3.21 1.69,0.92 -2.91,2.4 -0.21,3.22 2.95,-1.52 5.31,2.83 3.16,4.94 -0.57,2.04 -1.19,4.08 -2.04,5.92 1.78,2.39 0.17,4.51 -1.12,6.57 2.09,-0.31 3.16,2.8 5.12,1.39 2.59,0.39 5.59,0.53 6.7,-2.41 2.22,-1 4.77,2.45 1.37,3 -0.82,2.33 1.59,4.12 2.98,5.76 1.15,2.22 -0.16,5.57 3.23,5.57 2.21,0.34 4.26,-3.14 6.3,-1.15 1.19,-1.44 4.01,-3.86 5.28,-1.2 1.29,1.28 4.29,0.17 5.88,-0.53 1.34,-1.57 2.54,1.78 2.58,2.23 -1.82,1.7 0.1,5.78 1.92,2.77 1.57,-1.14 4.35,-2.7 5.66,-0.2 1.39,0.73 3.03,2.21 3.77,2.96 0.06,-2.42 3.41,-3.34 2.46,-6.14 2,-1.12 4.38,-1.43 5.85,-3.29 1.66,-0.91 2.36,-2.68 1,-4.38 -0.12,-2.03 4.05,-0.98 3,-3.63 1.33,-0.95 3.18,-1.68 3.32,-3.26 -2.18,-1.13 1.1,-2.92 -0.6,-4.4 -0.62,-1.56 -0.82,-3.42 0.73,-4.21 -0.86,-1.85 -2.52,-3.95 -2.31,-5.85 2.69,-1.69 -2.99,-1.92 -4.16,-2.15 -1.37,-0.3 -2.35,-1.77 -0.66,-2.37 0.85,-2.22 -4.2,-1 -1.82,-3.21 1.6,-0.51 1.97,-2.21 -0.05,-2.43 -1.52,-0.87 0.22,-2.69 -0.02,-4.02 1.56,-0.49 2.9,-2.46 3.59,-3.77 -0.89,-0.68 -4.18,-1.15 -2.03,-2.71 1.63,-1.41 -2.42,-0.92 -2.48,-2.48 -2.02,0.61 -2.38,-1.49 -4.37,-1.12 -1.27,-1.52 3.36,-3.71 0.05,-4.47 -2.98,1.52 -4.07,-1.99 -4.8,-4.21 -2.35,-1.05 -5.43,1.51 -6.95,-0.94 -0.7,1.49 -2.11,4.21 -3.42,1.81 -3.87,-0.26 0.38,-4.55 -2.09,-5.85 -1.62,-1.4 -4.43,0.29 -5.75,-1.44 l -0.34,0.38 5e-5,0 z", + "department-16" : "m 294.44,327.68 c -2.25,0.3 -1.2,3.19 -3.51,2.81 -1.6,0.21 -2.49,2 -4.14,0.42 -1.77,-0.24 -2.25,-4.84 -4.19,-1.95 -0.91,0.98 -0.61,1.79 0.48,2.16 0.54,2.48 -2.91,2.73 -4.16,1.17 -2.46,0.41 -5.1,0.77 -6.89,-1.39 -1.51,-1.03 -3.06,0.88 -4.39,-0.81 -1.47,0.17 -3.53,0.5 -4,1.95 -0.93,1.49 -3.03,0.38 -3.78,1.41 0.82,1.49 -0.85,2.59 -0.89,4.14 -1.39,0.58 -2.72,1.31 -1.63,2.86 -0.63,1.62 -3.5,0.43 -2.25,2.7 0.14,0.98 1.9,2.93 0.11,3.93 -0.29,1.34 -0.14,4.78 -1.94,3.65 -1.62,1.12 -2.58,0.34 -3.4,-1.09 -2.11,-0.49 -3.38,2.22 -5.62,1.34 -1.21,0.6 -3.11,1.09 -3.84,2.21 0.65,0.94 3.5,0.24 1.85,2.24 -1,1.77 3.04,3.71 0.47,4.36 -1.47,0.73 -0.77,2.68 0.89,1.78 0.66,1.61 5.09,2.77 3.49,5 -0.6,1.89 3.05,0.85 2.86,2.88 1.27,1.46 -2.87,2.31 -0.6,3.66 1.03,1.41 1.77,3.22 -0.58,3.55 -3.03,0.85 0.29,2.52 1.37,2.9 -0.53,1.07 -2.84,1.21 -1.34,2.9 1.24,0.33 2.32,-1.62 3.69,-0.22 1.96,0.48 4.58,0.96 3.85,3.45 0.77,1.61 3.35,-0.2 4.34,1.78 1.2,0.21 0.68,2.6 2.34,1.36 1.12,-1.93 3.29,-0.2 4.76,-0.25 1.32,-1.28 1.59,-3.13 3.17,-3.94 0.74,-1.56 3.63,-1.1 2.59,-3.54 -0.91,-1.87 -0.74,-4.08 0.24,-5.89 0.83,-1.03 1.82,-1.28 1.72,-2.67 2.14,0.73 3,-3.09 5.35,-2.09 0.34,-1.94 2.41,-3.25 3.38,-4.4 1.34,-1.83 -0.87,-4.56 1.38,-5.62 2.01,1.43 2.16,-1.87 3.34,-3.02 1.3,-1.48 1.92,-3.56 3.65,-4.58 2.06,-0.54 0.28,-4.34 3.14,-3.18 1.8,1.51 1.2,-2.16 2.63,-2.69 0.9,-1.93 -0.04,-3.83 0.5,-5.66 1.77,0.89 4.2,0.32 5.03,-1.65 0.94,-1.41 -0.52,-4.76 -2.38,-4.51 -1.22,0.39 -3.6,-2.28 -2.44,-3.84 1.09,-3.07 -2.13,-4.13 -4.62,-3.6 l -3e-5,-5e-5 z", + "department-86" : "m 262.08,259.01 c -1.83,1.36 -2.41,3.48 -2.12,5.45 -1.62,-0.38 -3.85,-0.7 -3.09,1.9 0.76,1.56 0.28,3.52 0.94,4.63 1.54,-0.64 2.43,0.5 1.66,2.02 1.1,1.45 1.99,3.51 0.77,5.28 0.74,0.68 3.84,2.78 1.47,2.68 -1.76,-1.16 -3.19,2.57 -0.53,1.41 1.15,1.13 -2.24,2.78 0.02,4.14 1.37,0.32 2.5,2.02 0.7,2.55 -1.03,1.96 -1.88,4.02 -3.27,5.73 0.54,1.36 3.57,-2.45 2.46,0.64 0.86,0.48 3.3,2.3 0.9,2.84 -1.95,1.07 0.75,3.1 -1.53,3.96 -1.36,1.18 -0.81,3.19 0.34,3.58 -0.02,2.31 -0.46,4.69 1.97,5.9 -0.98,1.99 -0.05,4.26 2.48,4.1 0.37,-1.94 3.78,-3.38 4.06,-0.57 -1.18,1.49 0.96,3.72 -1.64,4.05 0.29,1.45 -0.18,2.8 -1.21,4.08 0.79,1.45 2.87,3.75 4.6,2.75 0.97,1.5 -2.53,4.14 0.8,4.53 1.71,1.86 3.92,2.04 6.24,1.53 1.81,-0.12 4.03,2.44 4.83,-0.51 -0.17,-1.09 -2.04,-1.09 -0.75,-2.49 0.74,-1.66 2.72,-1.89 2.95,0.03 1.38,1.86 3.64,2.65 5.36,1.17 2.55,0.43 2.05,-3.61 4.94,-2.96 1.9,0.28 5.55,1.2 3.98,-1.91 -0.69,-1.69 -2.98,-3.99 0.39,-4.29 0.85,-1.96 2.74,-3.74 4.97,-3.81 3.08,1.68 3.13,-2.43 4.11,-4.24 1.66,-1.63 4.55,1.3 5.21,-1.8 1.49,-0.33 3.43,-2.92 1.12,-3.86 -2.84,-0.91 -0.56,-4.29 -2.72,-5.7 -1.55,-1.59 -4.62,0.54 -4.75,-2.47 -1.74,-0.37 -3.65,-1.14 -4.73,-2.77 -1.09,-1.83 0.1,-4.22 0.5,-6.07 -0.12,-2.37 -2.83,-3.34 -4.04,-5.13 -1.17,-2.49 -1.79,-5.28 -4.5,-6.69 -1.72,-1.44 -1.27,-3.78 -1.78,-5.71 -1.15,-1.45 -3.06,-1.62 -4.16,-2.96 -3.22,-0.24 0.17,1.99 -0.32,3.25 -2.34,0.38 -5.38,-0.55 -7.13,1.63 -1.89,-0.2 -3.77,-1.26 -5.42,-0.02 -1.93,-1.75 -0.89,-4.62 -0.82,-6.92 0.33,-1.71 -2.64,0.45 -2.05,-1.68 -0.96,-0.9 -3.58,1.73 -3.86,-0.44 1.52,-1.61 0.26,-3.15 -1.42,-2.17 -0.41,-1.64 -1.86,-1.38 -2.92,-1.47 -0.25,-1.89 -1.71,-2.38 -3.01,-3.19 z", + "department-37" : "m 290.38,223.76 c -0.84,0.11 -0.47,1.14 -1.03,1.54 -0.49,0.61 -1.16,1.03 -1.95,0.94 -0.73,0.28 -1.16,1.18 -2.07,0.97 -0.78,0.12 -1.32,0.86 -2.19,0.71 -1.08,-0.1 -0.56,1.42 -1.46,1.55 -1.15,0.5 -1.59,-0.95 -2.39,-1.41 -0.58,0.14 -1.04,0.95 -1.12,1.45 0.83,0.58 1.52,1.61 1.58,2.58 -0.48,0.61 -1.22,1.02 -1.91,0.42 -0.98,-0.36 -1.46,-1.58 -2.63,-1.49 -0.84,0.07 -1.44,-0.46 -2.09,-0.89 -0.56,-0.34 -1.36,0.02 -1.1,0.76 0.12,0.69 0.06,1.42 -0.57,1.83 -0.39,0.67 -1.14,1.64 -0.66,2.41 0.32,0.32 1.1,0.31 0.82,0.96 -0.12,1.97 -2.06,3.42 -1.78,5.52 0.17,0.79 -0.18,1.47 -0.8,1.93 -0.35,0.52 0.2,1.28 0.63,1.52 -0.44,0.9 -1.77,1.38 -1.57,2.53 -0.28,0.83 -1.42,0.86 -1.59,1.8 -0.39,0.87 -1.3,1.58 -1.05,2.63 -0.79,1.23 -0.57,2.78 -0.76,4.16 -0.38,0.45 -0.96,1.17 -0.32,1.66 0.19,0.92 -0.86,2.02 0.09,2.81 0.5,0.04 0.61,0.47 0.63,0.92 -0.02,0.81 0.99,1.06 1.31,0.32 0.4,0.04 1.19,0.14 1.32,0.6 -0.27,0.86 0.83,1.2 1.37,0.68 0.37,-0.34 0.77,-0.45 0.84,0.18 0.3,0.63 0.66,1.39 -0.05,1.9 -0.47,0.31 -0.55,1.34 0.23,1.02 0.44,0.03 0.71,0.76 1.21,0.29 0.53,-0.55 1.37,-1.21 2.1,-0.65 0.09,0.45 -0.17,1.52 0.64,1.3 0.46,-0.17 1.15,-0.58 1.37,0.14 0.27,0.54 0.3,1.2 -0.11,1.64 -0.28,0.58 0.32,1.14 0.18,1.66 -0.7,0.61 0.02,1.44 -0.14,2.2 -0.13,0.77 0.32,2.22 1.33,1.88 0.74,-0.22 1.18,-1.34 2,-0.74 0.91,0.12 1.8,0.92 2.72,0.73 1.28,-1.37 3.3,-1.72 5.11,-1.53 0.69,-0.15 1.84,0.34 2.29,-0.36 0.16,-0.99 -1.5,-0.85 -1.29,-1.87 -0.03,-0.34 -0.62,-0.9 0.05,-0.91 0.68,0.02 1.64,-0.41 2.21,0.09 0.16,0.78 0.82,1.08 1.52,1.18 0.47,0.73 1.81,0.33 1.91,1.36 0.57,1.39 0.37,2.94 0.79,4.35 0.72,0.79 1.19,2.08 2.3,2.37 0.66,-0.13 0.05,0.95 0.77,0.88 0.33,-0.02 1.08,0.05 0.6,0.49 -0.28,0.75 0.96,0.74 0.83,1.5 0.13,0.88 0.24,1.79 0.82,2.46 0.16,0.88 1.05,1.5 1.75,1.97 0.95,0.14 2.1,-0.66 2.96,-0.02 0.31,0.38 0.73,1.47 1.31,0.8 0.53,-0.31 0.63,-1.17 1.19,-1.35 1,0.41 1.39,-0.08 0.74,-0.9 -0.15,-0.53 0.04,-1.21 -0.61,-1.49 -0.27,-0.63 0.94,-0.77 0.81,-1.47 -0.11,-0.86 0.63,-1.51 0.51,-2.36 0.33,-1.87 0.68,-3.75 0.87,-5.64 0.75,-0.38 1.45,-1.3 0.88,-2.14 -0.67,-0.85 0.43,-1.74 0.81,-2.44 0.32,-0.76 1.35,-1.17 2.15,-1.21 1,-0.03 1.98,-1.2 2.95,-0.65 0.55,0.72 1.53,0.74 2.17,1.32 0.81,0.1 1.34,-0.87 1.72,-1.46 0.24,-1.08 1.08,-1.98 1.95,-2.55 0.13,-0.49 -0.28,-1.51 0.45,-1.65 1.25,0.5 2.15,-1.06 1.74,-2.12 -0.52,-1.07 -0.67,-2.29 -1.46,-3.21 -1.1,-1.96 -1.95,-4.09 -3.66,-5.61 -0.48,-0.44 -0.4,-1.6 -1.33,-1.45 -0.56,0.88 -2.01,0.18 -2.53,1.18 -0.49,0.18 -1.05,-0.91 -1.64,-1.16 -0.42,-0.35 -1.14,-0.21 -1.19,-0.93 -0.13,-0.61 -0.71,-1.47 0.03,-1.92 0.52,-0.6 0.92,-1.58 0.17,-2.16 -0.2,-0.65 0.97,-0.98 0.49,-1.67 -0.28,-0.9 -1.09,-1.64 -1.39,-2.44 0.81,0.11 1.91,-0.31 1.82,-1.28 -0.19,-0.83 -1.04,-1.03 -1.75,-0.89 0.02,-1.36 -1.09,-2.47 -1.12,-3.84 -0.31,-0.32 -1.3,-0.65 -0.71,-1.24 0.19,-0.65 1.31,-0.98 1.07,-1.72 -1.09,-0.46 -1,-2.17 -2.04,-2.74 -0.88,-0.08 -0.63,1.23 -1.2,1.49 -0.79,-0.25 -0.91,-1.17 -0.72,-1.88 -0.23,-0.93 -1.41,-0.84 -2.17,-0.96 -0.99,-0.44 -1.66,0.71 -1.8,1.51 -0.48,0.16 -1.25,0.47 -1.67,0.17 -0.08,-0.56 -0.98,-0.94 -0.45,-1.52 0.75,-0.47 -0.4,-1.06 -0.35,-1.48 0.09,-0.76 0.88,-1.6 0.58,-2.35 -0.57,-0.11 -1.05,0.64 -1.68,0.29 -1.29,0 -2.44,-0.5 -3.65,-0.89 -0.56,-0.16 -1.07,0.33 -1.33,0.63 -0.84,-0.14 -1.49,-1.53 -2.27,-0.47 -0.28,0.32 -1.04,0.41 -0.8,-0.22 0.17,-0.41 -0.04,-0.94 -0.54,-0.89 z", + "department-72" : "m 273.79,172.47 c -1.82,0.73 -4.09,0.78 -5.26,2.59 -1.02,0.75 -2.37,0.73 -2.95,2.22 -1.69,-0.06 -1.47,3.18 -3.5,1.61 -1.68,-1.56 -3.13,1.37 -5.22,0.75 -1.42,0.02 -1.66,1.24 -1.48,2.18 -2.6,-0.23 0.79,2.98 -0.95,4.16 -1.54,1.84 1.64,4.05 -0.74,5.43 -1.55,1.21 -5.08,2.58 -2.73,4.74 1.45,1.05 -1.08,2.09 0.15,3.42 -0.47,1.28 -2.72,0.25 -3.8,1.51 -2.55,-0.01 -0.61,2.65 -0.04,3.64 1.85,2.04 0.67,4.3 -2.01,4.06 -2.29,-0.31 -3.1,2.54 -0.95,3.39 0.72,2.29 -4.89,2.01 -2.55,4.82 3.09,-0.35 1.87,2.77 2.84,4.5 0.05,2.78 3.47,0.44 5.16,2.01 1.22,0.53 3.33,-2.36 3.41,0.13 -2.79,1.18 -0.55,4.56 1.79,4.53 1.49,0.25 1.75,-2.51 3.51,-0.93 1.85,0.53 3.27,0.36 4.2,2.21 1.78,1.33 4.11,0.48 5.74,2.17 1.48,-0.78 1.37,-2.46 3.29,-1.75 2.37,0.18 4.43,1.35 6.41,2.65 2.46,0.23 0.9,-2.41 0.06,-3.24 0.43,-2.12 2.06,-0.81 2.81,0.12 1.46,-0.48 1.8,-2.15 3.66,-2.02 1.24,-0.96 4.4,-0.87 4.27,-2.54 -2.08,-1.77 1.01,-3.59 2.35,-4.72 1.24,-0.44 2.26,-0.34 2.14,-1.92 1.51,-0.55 2.09,-2.62 3.24,-3.33 -0.56,-1.36 -1.12,-5.34 1.27,-4.27 1.16,1.48 -0.06,-2.47 1.66,-2.46 1.26,-1.13 -1.78,-3.22 0.09,-4.61 0.46,-1.77 -3.37,-1.82 -1.46,-3.92 1.34,0.27 2.44,-1.16 0.67,-1.64 1.71,-0.69 1.24,-3.37 3.57,-2.73 1.69,-1.55 -2.42,-1.69 -3.26,-2.45 -1.21,-1.93 -3.94,0.6 -4.83,-1.98 -1.01,-1.18 -1.91,-5.02 -3.87,-3.17 0.5,1.93 -2.56,0.03 -3.77,0.28 -1.39,-0.92 -2.76,-1.98 -2.77,-3.69 -2.14,0.23 -5.77,-0.97 -4.96,-3.72 -1.03,-2 0.44,-4.66 -1.45,-6.32 -0.97,-1 -2.34,-1.61 -3.72,-1.73 z", + "department-61" : "m 278.79,140.17 c -1.14,2.43 -4.4,1.53 -5.55,0.43 -1.06,1.99 -2.85,1.01 -4.41,2.37 -0.96,-0.27 -1.3,-2.36 -2.56,-0.82 -2.08,0.46 -2.44,3.41 -4.89,3.53 -1.17,1.28 -2.93,2.77 -4.9,3.14 -2.19,-0.78 -0.23,2.68 -2.41,1.03 -2.09,-1.47 -5.65,-2.35 -7.68,-1.78 -0.1,2.18 -1.85,1.85 -2.46,0.21 -1.49,-2.04 -4.04,-1.93 -5.69,-0.08 -2.34,0.05 -4.45,2.03 -6.77,0.9 -1.08,-1.31 -2.66,0.1 -1.67,1.11 -1.5,1.87 -4.33,1.73 -5.64,3.83 -1.41,0.45 -2.39,2.03 -0.23,2.03 0.83,1.3 2.64,1.99 3.51,3.22 -2.05,0.98 -0.88,3.16 -0.16,4.06 -0.97,1.95 -1.27,4.39 -3.53,5.38 -2.42,1.3 -0.67,4.55 1.08,5.01 1.25,-0.81 1.36,2.97 3.03,0.95 -0.34,-1.52 0.42,-2.12 1.79,-1.57 1.44,-1.68 1.56,0.17 2.1,1.17 1.94,-0.76 4.31,-1.39 5.85,-3.11 1.96,-0.76 5.15,-1.34 7.29,0.59 0.86,-1.55 2.67,-2.24 3.87,-1.55 2.19,-0.69 -0.33,-3.61 2.39,-3.25 1.22,0.63 4.8,2.16 2.62,3.63 0.42,2.11 1.43,5.01 4.16,3.64 2.64,-0.54 -0.69,6.28 2.43,3.99 1.37,-0.32 3.43,2.2 3.94,-0.5 1.52,-1.02 2.55,-2.08 3.95,-2.86 0.13,-1.39 3.49,-1.73 5.06,-2.44 2.07,-0.26 4.6,1.15 5.29,3.14 -0.06,2.06 0.39,4.02 0.45,6.06 0.3,2.62 4.16,1.94 5.31,3.16 -0.15,2.4 3.74,4.17 5.78,2.94 2.1,-2.41 3.26,1.61 4.3,2.97 0.79,2.77 5.5,0.51 4.25,-1.68 -2.11,-1.04 0.15,-4.67 -2.46,-4.46 -0.11,-2.74 2.49,-3.47 4.63,-3.75 2.4,-0.8 4.71,-4.03 4.36,-5.88 -2.6,-1.75 2.04,-5.12 -1.26,-6.05 0.58,-2.87 -4.22,-1.7 -4.04,-4.62 -2.12,-0.59 0.31,-4.94 -2.99,-4.26 -0.97,-0.7 -0.34,-2.36 -2.11,-2.5 2.39,-1.14 1.58,-4.43 -0.72,-5.24 -1.46,-1.16 -4.49,-1.72 -4.58,-3.75 0.31,-1.19 -1.26,-2.21 -1.54,-3.08 -1.64,1.84 -3.89,0.06 -5.9,0.49 -1.87,-0.14 -3.78,-2.55 -2.3,-4.35 0.03,-0.59 -0.2,-1.47 -0.97,-1.38 z", + "department-27" : "m 284.23,106.14 c -1.88,0.87 -3.31,2.64 -5.48,2.89 -1.89,0.2 -4.82,0.55 -3.33,3.18 -0.14,1.72 1,3.51 0.38,5.06 0.52,0.98 -0.46,2.95 1.2,1.55 2.41,-1.27 2.66,2.53 0.24,2.52 -2.27,1.97 3.93,2.2 1.98,4.88 -0.97,2.23 3.09,1.92 1.13,3.78 -1.21,1.17 1.47,3.53 -1.23,3.36 -1.58,2.01 1.41,2.54 2.48,3.25 -0.33,1.89 -0.36,4.06 -1.76,5.6 -1.7,1.69 0.84,3.09 2.37,3.4 1.86,0.07 4.14,1.29 5.68,-0.38 1.46,0.13 1.03,2.44 2.29,2.65 -1.79,2.14 2.29,2.84 3.49,4.05 1.89,0.35 4,3.22 2.24,4.79 -1.89,0.92 1.57,1.33 0.7,2.83 1.42,0.67 4.08,-0.26 4.59,-1.99 0.83,-1.86 3.09,0.74 4.28,-1.29 1.94,0.28 3.16,-1.22 4.74,-2.05 1.61,0.81 2.92,-0.26 2.44,-1.9 1.47,-0.48 2.13,1.45 3.87,1.18 2.24,-0.19 5.22,1.16 7.18,-0.96 1.37,-1.08 -1.65,-3.52 0.98,-4.19 1.41,-1.51 5.17,-1.7 3.32,-4.59 -1.33,-2.09 3.41,-1.12 1.86,-3.14 1.16,-1.54 -0.13,-0.87 -1.18,-1.03 -0.43,-1.14 0.79,-2.45 -0.65,-3.58 -0.98,-1.38 0.18,-2.29 1.42,-1.59 1.25,-0.64 0.95,-2.18 2.4,-1.05 2.27,-0.15 3.97,-1.16 4.7,-3.36 1.38,-2.46 0.92,-5.5 2.69,-7.82 -0.2,-2.14 2.81,-2.48 3.54,-0.75 1.77,-0.54 0.57,-2.61 -0.28,-3.25 -0.11,-2.2 -0.36,-4.55 -2.2,-6.06 -0.37,-1.75 -1.61,0.28 -2.59,-0.58 -2.28,0.1 -3.36,-1.73 -5.12,-2.48 -1.98,0.65 -4.34,-1.3 -6.72,-0.86 -1.86,-0.64 -3.25,1.37 -4.23,2.02 -0.26,1.65 -1.49,3.06 -1.89,4.62 -2.11,0.47 -4.24,0.4 -6.06,1.62 -0.34,2.25 -4.92,0.31 -3.73,3.41 0.36,1.88 -3.39,1.86 -3.87,0.25 -1.94,0.28 -0.39,-3.44 -2.67,-2.57 -1.1,1.93 -1.79,-1.46 -3.22,-1.11 -0.11,-2.68 4.5,0.55 3.35,-2.5 -0.12,-2.03 -1.93,0.42 -2.15,-1.48 -1,-0.74 -2.78,-0.03 -3.32,-1.74 -2.36,-0.72 -5.48,2.09 -7.12,-0.24 -1.29,-1.21 -3.65,-0.6 -4.47,-2.57 -0.59,-0.76 -1.24,-1.65 -2.28,-1.78 z", + "department-14" : "m 273.12,109.84 c -2.27,0.34 -4.7,1.01 -6.5,2.46 -1.26,1.74 -2.9,3.08 -4.87,3.94 -2.67,1.45 -5.59,2.55 -8.65,2.7 -1.57,0.68 -2.47,1.15 -3.79,-0.13 -2.28,-0.63 -4.33,-1.8 -6.46,-2.8 -2.03,-0.27 -4.1,-0.36 -6.11,-0.91 -1.82,0.2 -3.72,0.62 -5.6,0.17 -3.59,-0.37 -7.32,-0.45 -10.7,-1.82 -1.79,-1.87 -4.46,-1.14 -6.76,-1.17 -1.97,-0.42 -3.96,1.4 -3.34,3.41 -0.49,1.66 -1.63,3.45 0.02,5.04 1.44,1.58 3.25,2.78 4.92,3.98 1.86,1.46 2.75,-0.79 3.84,-1.71 0.61,1.04 2.16,1.93 0.57,2.87 -1.24,1.38 -0.92,2.96 0.77,3.62 1.05,1.55 1.57,3.8 0.53,5.45 -0.04,0.87 1.55,0.99 0.16,1.82 -1.82,1.35 -2.54,4.13 -5.16,4.47 -1.34,-0.01 -3.09,-1.1 -3.46,1.11 -0.92,2.04 3.69,-0.41 2.05,1.85 -1.01,1.47 -2.2,2.41 -3.69,2.64 -1.25,1.51 -3.49,2.98 -0.36,3.53 1.21,0.77 0.54,3.25 2.83,2.35 1.62,0.12 3.12,0.14 4.72,-0.36 1.37,1.03 3.37,2.2 5.09,1.16 0.76,-0.64 0.34,1.7 1.3,0.04 1.11,-2.03 3.92,-1.46 5.06,-3.34 -0.06,-0.87 -0.78,-2.13 0.88,-1.81 1.47,0.48 2.5,1.54 4.07,0.5 1.35,0.11 2.7,-1.11 4.37,-1.22 1.27,-1.56 3.88,-1.49 4.81,0.23 1.49,-0.3 1.29,2.96 2.32,0.95 0.3,-2.56 3.66,-0.41 5.38,-0.56 1.51,-0.01 3.2,2.91 3.84,0.33 1.81,0.06 3.76,-0.48 4.93,-2.13 1.67,-1.45 4.14,-1.65 4.77,-4.06 1.35,-0.32 3.05,-2.05 3.61,0.27 1.22,0.29 2.11,-1.76 3.44,-0.94 0.63,-0.88 1.91,-2.2 2.45,-0.52 1.62,-0.01 3.15,1.13 4.06,-1.01 0.96,-0.62 2.41,2.07 2.47,-0.29 -0.17,-1.62 1.7,-3.91 -1.06,-4.02 -2.67,-0.46 -0.93,-3.17 0.39,-3.34 -1.98,-1.59 2.3,-4.06 -0.88,-4.55 -0.57,-1.85 0.62,-4.26 -2.08,-4.86 -1.63,-0.93 -0.9,-2.36 0.82,-2.36 1.89,-1.03 -0.49,-3.22 -1.68,-1.54 -1.75,1.03 0.46,-1.94 -1.27,-1.96 1.47,-2.14 -0.49,-4.57 -0.15,-6.98 -0.31,-0.85 -1.23,-0.51 -1.9,-0.5 z", + "department-76" : "m 326.99,67.42 c -1.74,1.16 -3.92,-0.11 -5.27,2.14 -2.29,2.35 -4.86,4.57 -8.04,5.6 -2.34,1.39 -4.92,2.39 -7.67,2.22 -2.35,0.61 -4.56,1.66 -6.94,2.19 -3.55,1.43 -7.67,0.43 -11.08,2.41 -2.95,1.51 -5.56,3.65 -8.73,4.7 -1.51,1.33 -3.2,2.27 -5.16,2.72 -1.86,1 -4.4,1.34 -5.13,3.66 -0.75,3.04 -2.13,5.83 -3.55,8.61 -1.79,2.24 0.51,4.61 2.71,5.16 1.7,0.51 3.38,0.32 5.11,1.23 3.58,0.81 7.29,-0.27 10.44,-1.96 2.77,-0.55 3.44,4.69 6.22,3.14 1.43,-1.06 0.36,1.42 1.84,1.78 1.73,0.68 4.42,-0.65 6.06,-0.7 0.89,-0.54 1.08,2.89 2.88,1.52 1.17,0.46 1.58,1.18 2.7,1.23 0.96,1.71 0.56,3.15 -1.5,2.39 -2.61,0.13 -0.01,1.38 0.59,2.37 0.28,0.22 2.48,-1.61 2.57,0.52 0.55,2.18 3.9,4.34 4.78,1.19 -1.25,-2.71 3.66,-1.15 4.12,-3.6 1.18,-0.49 2.12,-0.4 2.87,-1.19 2.48,1.25 3.44,-1.19 4.07,-3.05 0.81,-0.77 0.23,-2.49 1.85,-2.77 2.43,-2.42 6.01,-0.26 8.93,0.12 2.48,-0.51 3.81,3.03 6.65,2.28 2.23,0.27 2.16,-3.78 4.12,-4.71 1.4,-1.6 -0.11,-2.96 -1.28,-1.26 -2.63,-0.14 1.26,-2.53 -0.87,-3.38 0.87,-1.65 -2.18,-1.68 -0.99,-2.98 -0.44,-1.5 1.53,-2.18 0.02,-3.67 0.3,-0.9 3.04,-3.09 1.4,-3.23 -0.65,1.38 -2.94,0.58 -1.37,-0.63 0.63,-1.59 1.37,-2.87 2.62,-3.77 1.98,-0.19 -1.75,-2.77 -1.54,-4.39 -0.55,-2.02 -0.53,-4.32 -2.48,-5.61 -1.72,-1.41 -3.86,-2.17 -5.05,-4.18 -1.56,-1.57 -3.42,-2.86 -4.98,-4.37 -0.11,-0.69 0.27,-1.96 -0.95,-1.72 z", + "department-60" : "m 341.74,87.99 c -0.9,1.51 -2.04,2.89 -2.74,4.41 0.72,1.3 2.78,-1.95 2.47,0.53 -1.27,0.9 -2.24,2.66 -1.34,4.09 -0.91,0.95 -0.75,1.78 -0.03,2.45 -0.13,1.26 0.67,2.66 1.15,3.44 -0.63,0.67 -1.52,2.9 0.16,1.98 1.1,-1.62 2.87,0.58 1.22,1.44 -0.23,1.5 -3.8,3.6 -1.99,5.01 0.58,-0.31 -0.71,1.18 0.39,1.51 1.62,1.42 1.33,3.71 1.74,5.61 1.9,0.6 0.82,4.77 -0.74,2.42 -1.9,-1.54 -3.87,1.46 -1.31,2.28 0.51,0.93 -1.25,1.9 0.44,2.63 0.9,0.8 3.15,-0.28 4.49,0.9 2.36,0.62 4.71,-0.14 7.1,-0.48 1.69,-0.31 3.8,-3.13 5.13,-0.64 1.16,-0.16 2.36,0.23 2.79,1.49 0.86,-1.1 3.52,-0.87 2.75,0.86 2.24,1.07 3.6,-3.98 5.02,-0.88 1.77,1.37 4.47,0.83 6.41,2.37 1.05,0.95 1.89,2.92 2.81,0.71 0.99,0.53 1.93,3.81 3.34,1.69 1.96,-1.93 3.07,1.7 4.45,1.76 0.78,-1.34 2.01,1.92 2.89,-0.28 0.33,-2.65 3.12,-0.79 4.28,0.09 1.53,-0.88 3.16,-0.87 4.8,-1.03 0.35,1.73 1.89,-1.24 3.26,-0.1 1.13,-0.39 0.79,-2.25 2.06,-2.81 0.45,-1.14 3.17,-1.32 1.25,-2.49 -0.17,-0.77 -0.47,-2.34 -1.06,-0.65 0.06,0.85 -0.18,1.81 -0.46,0.43 0.27,-2.06 -1.87,-1.75 -2.95,-2.77 1.14,-1.29 0.95,-4.74 -1.23,-5.15 -2.27,-1.11 -0.25,-4.14 1.81,-2.75 1.95,-0.21 2.65,-2.82 2.87,-4.54 -0.33,-1.38 0.29,-3.2 1.9,-2.16 2.12,-0.3 0.48,-1.77 -0.73,-1.92 -1.2,-0.84 0.94,-1.6 -0.52,-2.5 -0.93,-1.46 1.79,-1.85 0.92,-3.67 0.89,-1.87 -0.93,-3.01 -1.19,-4.57 0.8,-0.97 -0.76,-2.5 0.9,-3.11 -0.1,-1.13 0.12,-3.06 -1.5,-1.53 -0.64,0.41 -0.45,-1.77 -1.25,-0.5 -0.94,2.19 -2.26,0.91 -3.49,-0.03 -1.17,0.33 -1.63,1.17 -1.53,2.36 -0.95,-0.98 -2.13,-2.83 -3.49,-2.24 0.35,0.62 1.21,2.75 -0.14,1.41 -1.1,0.17 -1.22,2.24 -2.79,1.4 -1.49,0.65 0.09,3.84 -2.37,2.83 -1.6,-0.89 -3.92,-0.72 -3.86,1.59 -0.34,2.15 -2.57,1.16 -2.37,-0.63 -0.89,-1.41 -2.34,1.51 -3.2,-0.54 -0.9,-1.16 -2.43,-1.91 -3.66,-0.72 -0.96,-1.8 -2.52,-2.9 -4.61,-2.42 -1.65,-0.62 -2.56,-2.04 -4.51,-1.97 -1.48,-1.13 -3.76,-1.04 -5.41,-0.62 -1.39,0.64 -3.4,0.74 -4.72,0.55 -0.61,-2.11 -4,-1.27 -4.95,-1.25 -1.45,-1.16 -2.94,1.84 -4.62,0.1 -1.53,-0.71 0.09,-2.53 -2,-2.93 -0.64,-0.36 -1.32,-0.5 -2.05,-0.46 z", + "department-80" : "m 334.17,47.67 c -2.76,-0.03 -2.27,3.63 -2.65,5.5 1.19,2.06 4.27,3.75 5.46,5.15 1.3,3.21 -3.01,-0.19 -4.35,-0.49 -3.88,-0.07 -3.56,5.06 -5.42,7.36 -0.71,0.59 -3.75,3.11 -1.35,2.59 1.47,-1.5 2.51,0.61 2.54,1.63 1.88,1.27 3.39,2.99 5.07,4.48 0.98,2.07 3.34,2.37 4.83,3.88 1.75,1.4 1.74,3.64 2.33,5.6 0.73,2.51 2.58,4.56 4.76,5.91 -0.91,2.39 2.83,3.19 4.21,1.33 1.38,1.22 2.76,-0.54 4.57,0.59 2.05,2.13 4.79,0.74 7.35,0.45 3.03,-0.11 5.98,1.02 8.27,2.71 1.89,0.09 4.19,0.09 4.9,2.37 1.83,-2.22 3.74,1.66 5.11,1.27 1.62,-1.08 2.25,0.37 2.22,1.72 2.29,0.8 1.58,-4.84 4.91,-2.94 1.68,1.34 2.85,-0.29 2.28,-1.88 1.12,-0.78 2.71,-0.69 3.35,-2.07 1.57,-0.09 -0.84,-2.14 1.11,-1.65 0.04,1 1.99,-0.4 1.85,1.53 1.16,0.92 1.99,-2.68 3.62,-0.79 0.76,1.87 2.15,-0.14 2.29,-1 1.08,0.47 2.8,1.19 2.26,-0.92 -0.24,-1.72 -1.63,-2.34 -2.05,-3.74 2.7,-1.08 -1.78,-3.04 0.63,-4.02 -0.03,-2.1 2.52,-2.55 2.07,-4.94 0.63,-1.44 2.98,-3.56 2.95,-4.32 -2.23,-0.28 0.1,-2.65 -2.42,-2.65 -1.83,-1.56 -4.76,-2.7 -7.15,-1.39 -1.63,-0.91 -3.66,1.23 -5.3,1.48 -0.51,-0.79 1.23,-2.05 -0.42,-2.93 -0.98,-1.14 -4.78,3.68 -4.68,0.67 1.62,-1.44 1.72,-3.98 -0.88,-4.21 -1.44,-0.89 -1.05,1.88 -0.92,2.4 -1.98,-0.74 -4.51,-1.19 -6.31,-2.19 0.61,-1.3 -0.76,-2.03 -1.28,-0.53 -0.88,1.66 -1.65,-2.37 -3.21,-0.68 -1.76,0.6 -1.78,4.7 -3.76,1.86 -2.07,-1.49 1.23,-5.37 3.7,-5.37 1.77,-1.43 -2.79,-3.76 -4.17,-2.2 -0.97,2.36 -1.66,-1.19 -2.43,-0.22 -0.33,1.95 -3.12,-0.94 -4,0.91 -2.31,-1.06 -3.91,2.2 -5.6,0.42 -3.43,0.96 -1.19,-3.98 -4.22,-3.97 -2.08,-0.65 -5.34,-1.55 -3.24,-3.89 -1.24,0.25 -2.96,1.33 -4.16,-0.39 -1.88,-2 -4.87,-2.51 -7.1,-0.8 -2.62,2.08 -3.24,-1.93 -5.56,-1.66 z", + "department-95" : "m 339.8,122.71 c -1.75,0.85 -1.88,3 -2.16,4.68 -0.25,1.42 -0.73,2.88 -1.8,3.9 -0.69,1.01 0.61,2.05 1.57,1.49 1.5,-0.16 1.5,1.98 2.85,2.11 1.02,-0.12 1.88,-0.91 2.92,-0.9 0.76,-1.07 2.09,-1.17 2.99,-0.2 1.21,0.66 -0.5,2.41 0.77,2.82 0.86,-0.1 1.34,-2.54 2.26,-1.1 0.59,1.26 2.08,0.84 3.14,1.21 0.89,0.92 2.25,1.66 3.52,0.88 0.81,-0.21 2.59,-1.05 2.82,0.15 -0.1,1.04 0.68,1.41 1.54,1.39 0.9,0.75 1,2.13 2.12,2.68 -0.33,0.59 -0.16,2.37 0.73,1.4 1.04,-1.05 2.57,-1.62 3.49,-2.71 1.14,0.17 2.21,0.21 3.06,-0.63 1.52,0.3 3.09,1.88 4.7,0.7 1.15,-0.75 2.19,-1.68 3.12,-2.68 0.07,-0.88 0.28,-1.69 1.3,-1.95 0.98,-0.78 0.44,-2.26 0.76,-3.23 -0.5,-0.75 -1.19,-1.8 -1.73,-2.24 -0.42,0.8 -1.45,1.59 -2.11,0.59 0.23,-1.63 -1.64,-1.69 -2.71,-2.2 -0.93,-0.75 -2.23,-0.98 -3.43,-0.88 -1.14,0.44 -1.14,-2.17 -2.51,-1.86 -0.93,0.67 -1.24,2.1 -2.67,1.96 -0.85,0.25 -1.61,-0.38 -1.04,-1.12 -0.93,-1.31 -2.75,1.07 -3.45,-0.84 -1.09,-0.54 -2.35,-0.31 -3.03,-1.41 -1.39,-0.44 -2.32,1.15 -3.56,1.49 -1.54,0.3 -3.07,0.53 -4.64,0.89 -1.02,0.55 -1.66,-0.7 -2.77,-0.13 -1.18,-0.12 -2.17,-1.37 -3.52,-0.68 -1.05,0.52 -2.62,-1.32 -1.91,-2.09 0.55,-0.51 0.15,-1.56 -0.62,-1.51 z", + "department-78" : "m 334.24,132.78 c -1,0.54 -2.08,0.78 -3.19,0.77 -0.88,0.67 -1.8,1.4 -2.86,0.74 -1,1.18 0.68,2.18 0.89,3.3 0.23,0.75 -1.15,2.12 0.4,1.82 0.82,-0.44 1.69,0.17 0.74,0.87 -0.37,0.71 0.43,1.1 0.26,1.94 0.29,1.15 1.96,0.94 1.75,2.38 0.87,0.58 0.5,1.27 0.32,2.12 1.32,0.42 2.18,2.11 1.47,3.37 -0.42,1.39 -0.56,3.52 1.15,4.05 1.37,0.98 -0.49,2.25 -0.91,3.24 -0.68,1.18 1.57,1.26 0.68,2.6 -0.04,1.38 2.47,0.96 2.14,2.67 0.34,1.35 3.82,0.33 2.56,2.23 -0.54,1.64 1.41,1.29 2.25,1.55 1.15,0.87 1.41,2.05 0.95,3.37 0.17,1.23 0.65,2.41 1.19,3.52 1.78,-0.36 2.35,2.59 4.37,1.6 1.52,-0.41 0.09,-2.05 1.38,-2.9 0.19,-1.14 1.17,-2.09 1.24,-3.18 -1.18,-0.19 -1.48,-2.22 0.06,-1.66 1.31,0.46 2.98,0.35 3.03,-1.39 -0.03,-1.12 1.15,-1.58 1.21,-2.43 -0.36,-0.96 -2.66,-1.87 -1.39,-2.92 0.64,-1.04 1.38,-1.88 2.67,-1.93 1.28,-0.56 1.14,-2.12 1.14,-3.08 0.97,-0.1 1.69,-0.43 2.35,-1.07 0.87,-0.01 1.65,-0.29 1.55,-1.2 0.59,0.02 2.31,-0.07 1.09,-0.86 -1,-1 -2.1,-1.54 -3.05,-2.54 -0.18,-1.15 0.25,-2.28 0.31,-3.42 0.08,-1.36 1.65,-1.64 2,-2.76 0.17,-1.1 0.49,-2.29 -0.95,-2.41 0.11,-1.31 -0.96,-2.13 -2.21,-2.32 -0.52,-0.64 -0.11,-1.95 -1.35,-1.47 -1.36,0.22 -3.16,1.5 -4.33,0.19 -0.81,-1.28 -2.74,-0.39 -3.64,-1.46 -0.69,-1.48 -1.72,-0.45 -2.07,0.61 -1.24,1.19 -1.47,-1.46 -0.93,-2.15 -0.69,-1.01 -2.33,-2.23 -3.03,-0.48 -0.9,0.2 -1.81,0.37 -2.64,0.95 -1.77,0.38 -1.82,-1.98 -3.35,-2.1 -1.13,-0.34 -2.21,1.01 -3.04,-0.19 l -0.22,0.02 0,-3e-5 z", + "department-28" : "m 329.02,142.26 c -2.37,0.57 1.22,3.97 -1.47,4.66 -1.92,0.36 -4.91,2.33 -3.35,4.49 -0.05,2.87 -3.4,2.18 -5.4,2.65 -0.67,-1.12 -2.1,0.54 -3.09,-0.61 -1.43,0.4 -3.07,-2.56 -3.03,0.22 0.1,2.49 -3.8,-0.64 -3.88,2.19 -2.05,0.03 -3.85,1.13 -5.66,1.42 -2.16,-1.19 -1.84,2.14 -3.9,2.25 -1.02,0.93 0.19,3.2 0.09,4.15 1.27,1.02 1.44,3.17 3.55,3.09 1.58,0.76 1.02,2.45 2.67,3.07 -0.63,1.17 -0.32,2.65 -1.29,3.54 0.28,1.18 2.62,1.9 0.83,3.01 -0.7,2.66 -3.31,4.77 -6.03,5.03 -2.13,-0.37 -3.51,3.03 -1.19,3.57 -1.23,2.13 1.28,3.54 1.2,5.46 -2.6,1.83 1.9,3.06 3.26,3.42 1.88,1.2 -0.08,1.78 -1.37,1.74 -2.18,1.97 1.82,2.1 2.99,1.32 1.75,1.43 2.58,-1.98 4.62,-1.4 2.22,1.15 -3.59,2.44 -0.28,3.01 1.41,0.41 4.53,-0.33 3.93,1.86 1.03,2.01 3.58,2.99 4.13,5.43 2.39,-0.61 4.13,1.51 6.26,1.12 1.73,0.58 1.89,-2 3.61,-0.82 1.39,-0.47 0.39,-3.96 2.51,-1.88 0.97,1.39 2.79,0.86 2.04,-0.97 0.08,-3.36 4.25,0.15 4.93,-2.95 0.79,-1.61 2.33,-0.18 3.44,-1.03 1.66,1.37 3.85,-0.42 5.32,-0.69 2.32,0.52 3.48,-1.68 4.41,-3.31 -0.35,-1.05 -0.45,-2.55 1.33,-2.43 1.67,0.07 0.73,-0.91 0.78,-1.73 1.38,-0.51 -0.98,-3.55 1.18,-4.38 0.8,-1.67 -2.26,-2.44 -0.29,-3.98 -0.54,-1.83 1.02,-5.17 -1.84,-5.28 -1.23,-0.49 1.23,-2.71 -0.91,-2.75 -2.16,1.54 -3.79,-1.06 -5.49,-1.87 -1.34,-1.71 -0.32,-3.91 -1.25,-5.67 -0.82,-1.34 -3.99,-0.34 -2.7,-2.8 -0.01,-0.99 -3.05,-0.4 -2.98,-2.29 -1.17,-0.9 -2.2,-2.17 -2.13,-3.38 -2.3,-1.28 3.11,-4.03 -0.34,-4.79 -1.59,-1.53 0.21,-3.83 -0.38,-5.49 0.09,-1.23 -2.39,-1.47 -1.2,-2.8 -0.68,-1.66 -1.82,-3.41 -3.63,-3.37 z", + "department-75" : "m 533.65,37.59 c -0.56,0.01 -1.14,0.07 -1.69,0.09 l -0.47,0 -0.06,0 c -3.2,-0.16 -6.2,1.71 -8.25,3.88 -1.18,-0.38 -2.14,0.15 -3.09,0.66 -1.64,0.07 -4.2,2.99 -1.75,3.84 2.04,0.46 2.36,3 4.56,3.38 4.15,0.71 8.61,3.62 12.69,1 2.59,-2.23 5.56,1.56 8.38,0.72 1.37,-1.09 1.13,-4.27 -1.16,-3.72 -1.21,-0.03 -2,-1.04 -2.81,-0.38 -1.83,-2.4 -0.68,-4.78 -2.88,-7.06 -0.22,-2.16 -1.78,-2.45 -3.47,-2.41 z M 369.8,144.62 c -0.22,0.01 -0.47,0.02 -0.69,0.03 l -0.19,0 -0.03,0 c -1.27,-0.06 -2.44,0.7 -3.25,1.56 -0.47,-0.15 -0.87,0.05 -1.25,0.25 -0.65,0.03 -1.66,1.16 -0.69,1.5 0.81,0.18 0.94,1.23 1.81,1.38 1.65,0.28 3.41,1.41 5.03,0.38 1.03,-0.89 2.23,0.62 3.34,0.28 0.54,-0.43 0.44,-1.69 -0.47,-1.47 -0.48,-0.01 -0.86,-0.33 -1.19,-0.06 -0.56,-1.04 -0.22,-1.97 -1.09,-2.88 -0.09,-0.86 -0.67,-0.98 -1.34,-0.97 z", + "department-93" : "m 555.46,19.68 c -1.17,0.84 -2.88,0.87 -3.59,2.44 -1.9,3.01 -5.42,4.31 -7.91,6.63 -2.07,-0.07 -4.34,-0.18 -6.38,-0.66 -1.61,-0.92 -3.27,-3.37 -5.22,-1.63 -1.51,0.76 -2.72,2.77 -4.56,1.5 -0.87,-0.48 -3.68,-1.04 -3,0.78 1.41,1.33 5.16,0.8 5.16,3.34 -0.15,1.75 -2.85,3.4 -1.72,5.09 2.66,1.08 5.98,-0.51 8.41,0.94 0.69,1.35 1.27,2.69 2.25,3.88 0.45,1.44 -0.32,4.34 2.19,3.88 2.69,-0.37 5.42,-2.64 8.13,-0.88 2.62,1.82 5.86,3.41 7.72,5.97 -0.27,1.87 3.54,2.36 2.59,0.13 -0.6,-1.79 -2.28,-3.9 -1.94,-5.69 1.69,-0.57 -0.12,-2.01 -1.03,-2.19 0.67,-1.09 -0.65,-2.02 -0.72,-2.84 1.04,-1.43 3.28,-1.82 3.09,-4 -0.23,-2.01 2.04,-3.53 0.91,-5.5 -0.58,-2.12 -2.68,-3.68 -3.16,-5.69 1.94,-1.54 1.14,-5.04 -1.22,-5.5 z M 378.43,137.53 c -0.46,0.33 -1.12,0.35 -1.41,0.97 -0.75,1.19 -2.17,1.71 -3.16,2.63 -0.82,-0.03 -1.72,-0.06 -2.53,-0.25 -0.64,-0.37 -1.29,-1.35 -2.06,-0.66 -0.6,0.3 -1.08,1.1 -1.81,0.59 -0.35,-0.19 -1.46,-0.41 -1.19,0.31 0.56,0.53 2.06,0.3 2.06,1.31 -0.06,0.69 -1.14,1.36 -0.69,2.03 1.05,0.43 2.38,-0.2 3.34,0.38 0.27,0.54 0.49,1.06 0.88,1.53 0.18,0.57 -0.12,1.72 0.88,1.53 1.07,-0.15 2.15,-1.04 3.22,-0.34 1.04,0.72 2.33,1.36 3.06,2.38 -0.11,0.74 1.41,0.95 1.03,0.06 -0.24,-0.71 -0.92,-1.57 -0.78,-2.28 0.67,-0.23 -0.05,-0.77 -0.41,-0.84 0.27,-0.43 -0.25,-0.83 -0.28,-1.16 0.41,-0.57 1.33,-0.7 1.25,-1.56 -0.09,-0.8 0.79,-1.4 0.34,-2.19 -0.23,-0.84 -1.06,-1.48 -1.25,-2.28 0.77,-0.61 0.44,-1.98 -0.5,-2.16 z", + "department-94" : "m 546.24,44.68 c -1.24,0.18 -3.2,0.91 -4,1.88 0.78,0.52 3.1,0.45 2.97,1.97 0.06,1.47 -0.57,4.13 -2.63,2.91 -2.6,-0.4 -5.3,-2.53 -7.66,-0.34 -1.75,1.26 -3.99,0.51 -5.88,1.25 -1.01,2.81 0.03,6.21 -1.66,8.91 -0.58,2 2.17,1.1 2.78,2.5 1.06,1 2.52,0.31 3.38,-0.25 1.15,1.11 -0.28,4.4 2.09,4.25 1.49,-0.62 2.95,-0.96 4.5,-0.41 3.38,-0.13 6.65,-1.36 9.94,-1.78 1.28,1.58 1,4.04 2.91,5.31 0.79,0.48 1.5,0.76 1.88,1.69 1.48,0.79 3.19,-1.21 1.94,-2.53 -0.03,-2.34 3.94,-3.6 2.22,-6.13 1.25,-0.79 0.59,-2.79 2.13,-3.22 1.09,-1.47 -1.2,-1.54 -2.09,-1.81 -0.86,-1.32 1.66,-2.95 0.34,-4.25 0.31,-2.02 -2.79,-1.77 -3.03,-3.69 -2.59,-2.65 -5.67,-5.35 -9.34,-6.25 -0.26,-0.03 -0.53,-0.03 -0.78,0 z M 374.77,147.43 c -0.49,0.07 -1.35,0.46 -1.78,0.75 0.31,0.21 1.43,0.18 1.38,0.78 0.02,0.59 -0.22,1.64 -1.03,1.16 -1.03,-0.16 -2.1,-0.99 -3.03,-0.13 -0.7,0.5 -1.6,0.18 -2.34,0.47 -0.4,1.12 0.01,2.46 -0.66,3.53 -0.23,0.79 0.88,0.44 1.13,1 0.42,0.39 0.97,0.13 1.31,-0.09 0.46,0.44 -0.1,1.75 0.84,1.69 0.59,-0.25 1.17,-0.37 1.78,-0.16 1.34,-0.05 2.63,-0.55 3.94,-0.72 0.51,0.63 0.4,1.62 1.16,2.13 0.31,0.19 0.6,0.29 0.75,0.66 0.59,0.31 1.28,-0.48 0.78,-1 -0.01,-0.93 1.56,-1.44 0.88,-2.44 0.5,-0.32 0.24,-1.11 0.84,-1.28 0.43,-0.58 -0.49,-0.61 -0.84,-0.72 -0.34,-0.52 0.68,-1.17 0.16,-1.69 0.12,-0.8 -1.12,-0.68 -1.22,-1.44 -1.03,-1.05 -2.26,-2.14 -3.72,-2.5 -0.1,-0.01 -0.21,-0.01 -0.31,0 z", + "department-92" : "m 524.52,29.65 c -5.04,1.32 -8.24,6.07 -12.78,8.38 -2.7,1.94 -2.77,5.54 -2.5,8.53 -1.01,1.01 -1.21,2.46 -0.63,3.84 0.03,1.79 1.85,1.34 2.91,1.66 0.41,1.64 1.69,2.54 3.22,2.88 0.63,0.83 1.26,1.68 2.19,2.13 0.82,1.82 1.8,3.98 4.19,3.88 1.95,-0.03 2.79,2.09 2.72,3.69 0.9,0.69 2.33,-0.53 2.97,0.75 1.85,-0.23 0.2,-2.5 0.25,-3.59 0.34,-1.82 1.76,-3.72 0.97,-5.59 -0.29,-1.57 0.68,-3.11 0.59,-4.47 -2.41,-2 -6.18,-0.84 -8.09,-3.59 -0.93,-1.19 -2.79,-1.7 -3.66,-2.72 0.56,-2.85 3.58,-4.62 6.31,-4.28 0.98,-1.78 4,-2.05 4.44,-4.22 -0.89,-2.25 3.44,-3.59 1.34,-5.81 -1.21,-0.99 -2.91,-1.4 -4.44,-1.44 z M 366.18,141.46 c -2,0.52 -3.29,2.43 -5.09,3.34 -1.07,0.77 -1.08,2.19 -0.97,3.38 -0.4,0.4 -0.48,0.98 -0.25,1.53 0.01,0.71 0.74,0.53 1.16,0.66 0.16,0.65 0.67,0.99 1.28,1.13 0.25,0.33 0.48,0.7 0.84,0.88 0.32,0.72 0.71,1.54 1.66,1.5 0.78,-0.01 1.12,0.84 1.09,1.47 0.36,0.27 0.93,-0.19 1.19,0.31 0.73,-0.09 0.08,-1 0.09,-1.44 0.14,-0.72 0.69,-1.48 0.38,-2.22 -0.12,-0.62 0.28,-1.24 0.25,-1.78 -0.96,-0.79 -2.46,-0.32 -3.22,-1.41 -0.37,-0.47 -1.09,-0.69 -1.44,-1.09 0.22,-1.13 1.42,-1.82 2.5,-1.69 0.39,-0.7 1.58,-0.83 1.75,-1.69 -0.35,-0.89 1.36,-1.4 0.53,-2.28 -0.48,-0.39 -1.14,-0.58 -1.75,-0.59 z", + "department-91" : "m 362.18,153.27 c -0.56,0.4 -0.49,1.6 -1.49,1.11 -1.09,0.18 -1.56,1.23 -2.67,1.16 -0.41,0.64 0.34,1.67 -0.45,2.38 -0.45,1.11 -1.69,0.89 -2.58,1.28 -0.46,0.64 -0.99,1.47 -1.34,2.04 0.76,0.75 1.83,1.56 1.84,2.69 -1.22,0.28 -0.84,1.62 -1.39,2.42 -0.11,1.33 -1.62,1.27 -2.59,1.06 -1,-0.6 -1.96,0.52 -0.75,1.11 0.71,-0.03 1.72,0.98 0.49,1.03 -1.21,0.85 -1.06,2.64 -2,3.62 0.04,0.98 1.16,1.55 0.96,2.63 -0.14,0.69 -0.83,1.75 0.46,1.62 1.2,-0.21 1.25,0.9 1.18,1.77 1.04,0.89 -0.56,1.95 0.05,3 0.63,0.99 -0.75,1.44 -0.54,2.23 1.02,1.29 2.98,0.96 4.27,0.28 0.96,0.25 1.81,-0.9 2.53,-0.56 0.79,0.62 1.93,0.39 1.96,-0.65 1.21,0.12 1.32,-1.14 2.05,-1.77 0.86,0.29 2.19,0.62 2.06,1.69 0.29,1.34 0.94,-0.5 1.69,0.15 1.08,0.55 1.37,-2.33 2.43,-0.78 0.44,0.94 2.05,1.38 2.65,0.42 -0.17,-0.9 0.34,-1.32 1.19,-1.29 0.99,-0.51 0.11,-2.09 1.38,-2.34 1.2,-0.09 1.06,-1.93 2.38,-1.57 0.83,-0.27 2.19,-0.59 1.05,-1.45 -0.89,-0.45 -1.26,-1.36 -1.09,-2.33 -0.09,-0.98 0.15,-1.91 0.38,-2.85 -0.37,-1.1 -0.63,-2.32 -0.16,-3.48 0.59,-0.82 0.36,-1.92 1.05,-2.68 1.19,-0.79 -0.12,-1.5 -0.51,-2.26 0.38,-0.77 1.81,-1.19 0.8,-2.19 -0.08,-1.4 1.54,-0.57 1.98,-1.46 0.42,-1.29 -1.54,-0.05 -1.78,-1.14 -1.31,-0.4 -0.82,-3.07 -2.55,-2.09 -1,-1.6e-4 -1.51,1.28 -2.34,0.43 -0.86,0.17 -1.91,0.15 -2.79,0.1 -0.28,-0.56 -0.1,-1.72 -1.09,-1.22 -0.63,-0.37 -1.46,-0.6 -1.54,0.4 -0.48,0.27 -1.39,-0.05 -1.79,-0.36 0.62,-1.46 -1.25,-1.36 -2.1,-1.81 -0.43,-0.13 -0.84,-0.36 -1.3,-0.33 z", + "department-45" : "m 362.36,181.88 c -1.65,1.48 -2.18,3.74 -4.78,2.39 -1.48,1.36 -4.34,0.35 -5.23,2.12 -1.82,1.67 -0.25,3.77 -0.95,5.64 0.75,1.65 -4.16,0.54 -2.21,3.02 -0.99,2.07 -2.46,4.58 -5.26,3.66 -2.02,1.97 -5.11,0.72 -7.33,0.91 -1.13,1.1 -2.17,3.49 -4.02,2.16 -2.61,0.08 -1.88,4.14 0.38,3.4 0.59,1.94 -3.26,3.07 -0.53,4.45 2.35,1.07 1.66,4.09 -0.3,5.19 -1.66,1.88 2.46,2.57 0.57,4.55 -0.11,1.31 2.93,3.23 3.2,1.04 2.6,0.66 4.81,2.02 4.75,4.99 0.25,1.36 2.21,2.47 3.05,2.46 1.56,-0.44 1.89,-1.93 2.51,-2.99 1.46,1.36 3.45,0.06 4.83,1.75 1.89,-0.68 3.95,-1.24 6.11,-1.16 2.11,1.02 4.88,-0.7 6.22,1.53 0.4,1.54 1.34,2.53 2.81,2.11 1.99,0.72 3.69,3.49 5.74,1.36 2.24,-1.27 2.64,3.3 5.16,2.14 1.93,-0.34 3.85,1.34 4.38,3.12 1.76,0.64 1.73,3.91 4.07,2.21 1.03,-0.74 -0.13,-4.08 1.87,-2.41 1.48,0.91 2.84,3.15 4.44,0.94 2.15,-0.41 -1.53,-2.35 0.99,-2.56 1.51,-0.53 2.68,-0.61 4.16,-0.88 -0.4,-1.72 -2.02,-3.65 -0.87,-5.78 -1.47,-1.35 -2.37,-3.99 -4.18,-4.29 -0.84,-2.52 1.23,-3.54 3.36,-3.26 1.7,-0.71 5.76,-1.19 3.99,-3.74 1.11,-1.31 0.68,-2.27 -0.61,-2.99 0.09,-2.52 2.76,-3.46 4.36,-5.16 2.49,-1.47 0.34,-4.36 0.52,-5.82 -2.16,-1.8 -3.41,-4.2 -4.19,-6.74 -2.19,-1.4 -4.91,-2.41 -7.26,-0.61 -1.4,1.83 -3.28,0.7 -2.71,-1.2 -2.2,-0.29 -2.55,2.6 -4.92,2.7 -1.57,0.29 -3.06,-1.32 -4.77,-0.63 -2.24,-0.9 -4.25,1.33 -6.48,0.31 0.78,-1.05 1.75,-2.43 2.86,-2.47 0.77,-2.05 0.75,-4.79 -1.8,-5.48 -2.81,0.03 -1.67,-2.9 -2.96,-4.35 -2.08,1.48 -3.78,-2.45 -5.12,0.4 -0.94,-0.72 -2.49,1.6 -2.25,-0.72 -0.16,-0.79 -1.01,-1.02 -1.65,-1.29 z", + "department-41" : "m 308.2,195.6 c -1.7,-0.02 -2.6,2.84 -4.26,1.59 -1.63,0.48 -4.86,-0.54 -3.89,2.17 -1.55,-0.17 -2.96,1.3 -1.44,2.66 2.9,0.31 -0.84,3.64 1.49,5.12 0.09,1.68 -2.43,1.96 -1.45,4.05 -0.59,0.43 -2.04,-1.82 -2.47,0.23 -0.2,1.62 1.54,3.87 -0.55,4.72 -0.84,1.32 -2.23,2.4 -2.62,3.63 -2.15,0.21 -4.86,2.51 -4.44,4.45 1,1.2 2.16,-2.09 2.67,0.42 1.06,-0.38 2.82,0.77 4.02,-0.08 1.8,0.71 3.91,1.04 5.64,0.63 -0.53,1.91 -1.14,4.48 0.8,5.28 1.17,-0.97 2.47,-2.61 4.29,-1.35 1.11,0.26 0.41,4.03 1.73,1.52 1.24,-1.02 2.45,1.92 2.86,2.54 -2.01,1.95 0.17,4.12 1.12,6.11 1.25,0.8 2.24,2.15 0.27,2.99 -0.64,1.16 1.81,2.42 0.19,3.73 1.53,1.45 -1.95,3.95 0.84,4.94 1.57,2.45 5.13,-1.77 5.94,1.95 2.17,0.85 1.64,5.22 4.41,4.55 2.32,-0.64 4,-4.01 6.74,-2.46 2.19,1.43 0.34,-2.88 3.2,-1.82 1.32,-1.08 2.73,-1.28 4.3,-0.12 1.45,0.36 2.96,-1.63 3.7,0.68 1.56,1.46 4.12,1.72 6.16,2.64 1.98,0.09 1.23,-2.2 0.89,-2.68 1.05,-1.39 2.14,-3.2 3.8,-1.34 2.23,1.19 4.55,-1.54 6.83,-0.7 1.92,-1.73 -0.91,-3.32 -0.92,-5.29 -1.23,-0.89 -0.13,-4.35 1.44,-3.15 1.12,-0.94 2.48,-2.05 3.01,-0 2.52,0.52 1.39,-3.79 1.2,-5.16 -0.91,-0.72 -2.09,0.68 -1.39,-1.23 1.1,-2.73 -1.92,-2.54 -3.54,-3.07 -1.53,-3.49 3.6,-2.7 4.78,-4.72 0.72,-2.43 -2.2,-3.74 -4.22,-3.01 -2.49,-0.43 -5.42,-0.7 -7.94,0.83 -1.62,-1.12 -3.52,-0.72 -5.25,-1.78 -0.12,2.02 -2.68,4.15 -4.08,2.3 -2.49,-1.02 -1.09,-4.61 -3.32,-5.68 -1.6,-0.53 -2.94,-1.8 -3.91,0.31 -1.42,1.01 -0.2,-1.5 -1.95,-1.75 -1.47,-0.98 1.47,-2.62 -0.83,-3.53 -2.16,-1.91 3.3,-3.22 1.51,-5.8 -0.84,-1.2 -3.85,-2.47 -1.36,-3.8 1.57,-1.84 -0.36,-2.14 -1.8,-1.78 -1.31,-0.3 -3.34,-2.94 -3.24,-0.18 -0.34,2.1 -2.81,-0.09 -3.21,2.13 -2.32,0.31 -4.34,-1.02 -6.64,-1.35 -1.65,0.93 -1.6,-2.33 -2.85,-2.99 -1.69,-0.8 -2.33,-2.51 -2.91,-3.82 -1.22,-0.32 -4.55,0.17 -4.41,-1.48 0.52,-0.51 3.42,-1.68 1.05,-2.03 z", + "department-36" : "m 334.67,252.31 c -0.07,2.25 -3.94,-0.13 -3.26,2.61 0.24,2.05 -2.47,-1.23 -3.67,-0.12 -1.7,0.75 -2.8,2.52 -4.72,2.89 -1.42,1.27 1.81,3.39 0.61,5.25 -0.54,1.03 -2.51,0.63 -2.09,2.36 -1.81,0.99 -2.56,5.87 -5.17,3.14 -1.93,-1.01 -4.4,0.13 -5.84,1.56 -1.53,1.34 0.17,3.67 -1.63,4.77 -0.27,2.41 -0.61,4.82 -1.18,7.18 -1.16,1.44 -0.19,2.91 -0.12,4.46 -1.54,-0.52 -2.72,2.83 -3.84,0.35 -1.47,-0.75 -3.17,0.9 -0.97,1.5 1.57,1.48 0.22,3.35 0.37,5.02 -1.08,1.82 -0.1,3.6 1.51,4.64 1.38,1.19 3.72,0.8 4.06,2.89 1.98,0.12 4.08,0.23 5.09,2.31 -0.26,1.88 -0.16,3.87 2.04,4.68 2.24,-0.13 -0.78,2.82 -0.04,3.5 1.32,-1.24 1.45,2.16 2.87,0.38 1.41,0.23 2.95,0.06 3.31,-1.4 2.3,-0.94 2.92,2.57 4.68,2.97 1.35,-1.69 3.15,-3.13 4.46,-4.82 1.27,0.09 0.91,2.98 2.47,1.19 1,-0.78 2.15,-1.34 1.98,0.42 1.06,2.68 2.67,-2.9 3.68,-0.05 1.94,1.77 2.65,-1.98 2.61,-3.21 2.22,-1.29 3.19,2.68 5.5,0.97 1.64,-0.66 3.21,0.26 4.93,-0.1 1.88,0.55 4.23,2.07 6.03,1.2 1.81,0.16 1.81,-1.04 1.6,-2.3 1.01,-0.91 3.27,-1.71 1.63,-3.38 -1.26,-2.3 -1.38,-4.87 -0.25,-7.2 1.21,-2.25 -3.31,-2.77 -1.54,-4.68 -0.45,-1.85 -3.32,-1.25 -3.54,-3.39 -0.53,-1.64 3.32,-2.16 1.02,-4.12 -1.37,-0.74 -2.78,-2.63 -0.59,-3.08 -0.13,-2.33 3.87,-2.38 2.77,-4.64 -2.22,0.66 -4.6,-1.93 -2.44,-3.7 1.78,-2.55 -1.13,-3.63 -2.64,-5.02 1.11,-1.35 1.56,-4.78 -0.93,-3.19 -0.37,-3.15 -3.21,-0.9 -4.96,-0.52 -2.01,0.15 -3.82,-1.24 -5.54,-1.72 0.85,-1.99 4.5,-4.63 1.54,-6.61 -2.27,0.27 -3.16,-1.98 -4.76,-2.7 -1.74,1.87 -3.11,-0.52 -5.01,-0.28 z", + "department-18" : "m 365.8,229.05 c -2.37,0.5 -4.91,1.26 -6.83,2.71 -1.23,2.43 1.62,2.22 3,2.57 1.38,1.33 -0.5,3.88 1.99,3.54 0.06,1.57 1.23,5.47 -1.3,5.67 -0.61,-0.92 -1.88,-2.26 -2.76,-0.42 -2.93,-0 -2.32,3.05 -1.09,4.7 0.55,1.21 2.22,3.92 -0.58,4.02 -2.59,-0.47 -5.06,2.26 -7.42,-0.13 -1.15,-0.26 -2.25,1.99 -2.25,2.34 1.46,1.81 -1.33,3.49 -2.71,2.01 0.37,2.24 -1.72,3.57 -2.59,5.51 1.73,1.59 5.42,2.8 7.77,0.88 1.83,-1.38 1.98,1.05 2.89,1.53 2.48,-1.61 1.29,2.54 0.75,3.41 2.01,1.21 4.1,3.28 2.13,5.63 -1.81,2.29 1.76,3.11 3.07,3.25 -0.11,2.19 -3.08,2.61 -3.38,4.88 -3.04,1.22 4.54,3.66 0.5,5.41 -2.06,2.1 2.08,3.06 2.91,4.43 -1.69,2.31 3.02,2.81 1.48,5.43 -1.24,2.34 -0.79,5.01 0.61,7.16 1.41,1.98 -4.17,3.29 -1.02,4.79 2.26,0.05 5.32,0.82 5.35,-2.42 0.72,-1 2.02,-0.73 1.98,-2.55 1.67,-1.97 4.64,-0.99 6.78,-1.98 2.22,1.06 6.5,-0.36 5.37,-3.34 -1.23,-1.26 -1.47,-1.99 -0.46,-3.44 0.08,-1.16 -1.94,-1.57 0.05,-2.17 1.35,0.35 1.81,0.42 1.48,-1.25 2.2,-0.16 3.02,-3.78 5.01,-3.88 0.84,1.57 2.05,1.86 3.32,0.67 2.68,0.17 3.32,-3.14 5.63,-3.92 1.82,-1.28 5.03,0.86 5.64,-2.21 1.43,-2.02 -0.16,-4.15 0.14,-6.18 1.46,-1.86 0.01,-3.73 0.61,-5.75 0.92,-2.7 -3.55,-3.59 -1.91,-6.4 -0.1,-2.89 -1.24,-5.6 -2.13,-8.31 0.53,-2.38 -1.62,-3.79 -3.3,-5.05 -3.42,-1.42 -0.39,-4.4 0.28,-6.65 1.22,-2.05 -0.13,-4.05 -1.06,-5.89 -0.57,-3.64 -3.88,1.96 -4.89,-0.94 -0.76,-1.55 -3.62,-1.54 -2.67,0.63 -0.82,2.09 -3.74,0.97 -3.82,-0.81 -1.78,-1.38 -2.49,-4.25 -5.38,-3.92 -2.41,1.44 -3.29,-4.02 -5.67,-1.61 -2.01,1.66 -3.63,-1.75 -5.51,-1.95 z", + "department-23" : "m 342.98,306.61 c -2.22,0.07 -0.3,3.63 -2.54,4.07 -1.32,0.27 -2.01,-2.73 -3.01,-0.55 -0.89,1.96 -2.59,0.09 -2.16,-1.38 -1.21,0.88 -3.38,2.72 -3.55,0.16 -1.42,-0.74 -1.84,2.26 -3.33,2.67 -0.94,0.96 -3.24,2.56 -0.95,3.15 0.74,1.49 -1.76,2.78 -0.46,3.98 -1.09,0.31 -1.25,0.88 -0.72,1.77 -2.02,0.4 -1.95,3.09 -0.35,3.98 1.37,0.23 2.96,0.38 2.56,2.15 1.44,0.58 1.84,1.91 1.46,3.13 1.17,1.01 2.36,1.92 1.96,3.6 0.5,1.5 -1.07,3.34 1.25,3.82 1.51,1.65 -1.51,2.25 -2.3,3.23 -0.13,1.16 2.58,2.24 3.2,0.75 1.91,-0.8 2.84,1.58 2.05,2.87 -2.65,-0.41 -0.83,3.15 0.96,2.99 1.54,0.31 3.93,0.23 4.71,-1.41 1.66,-0.73 0.3,2.53 1.99,2.52 0.76,1.37 1.69,-0.41 2.13,0.77 1.58,0.67 3.17,3.2 1.72,4.26 -0,1.15 -0,2.35 0.6,3.08 1.51,-0.4 3.02,-1.25 4.46,-1.73 0.2,-2.32 3.4,-2.83 4.29,-0.61 0.91,0.9 2.13,0.26 3.14,0.85 1.09,-1.23 2.63,1.9 4.19,2.13 1.55,0.07 0.97,2.57 2.72,1.41 2.03,-0.17 1.58,-3.8 4.15,-2.47 1.63,1.08 3.91,-0.54 3.81,-2.3 -2.17,-0.79 -2.32,-3.17 -3.83,-4.66 -1.26,-2.03 2.6,-0.9 2.25,-3.03 0.21,-1.29 2.68,0.21 2.69,-1.59 1.86,-0.73 1.65,-2.52 2.34,-3.94 0.66,-1.35 3.22,-1.27 1.78,-3.14 0.41,-1.56 0.1,-3.05 -1.27,-4.11 -1.25,-2.06 -0.75,-4.59 -0.2,-6.78 -0.66,-1.41 -2.33,-2.3 -2.06,-4.18 -0.44,-1.74 -1.9,-2.79 -2.47,-4.51 -0.93,-0.77 -2.54,0.96 -2.24,-1.15 -0.18,-1.3 -1.58,-1.85 -2.16,-0.55 -1.19,-0.72 -4.01,-1.5 -2.21,-3.33 1.61,-1.32 -2.49,-0.49 -1.83,-2.43 -0.35,-2.62 -3.98,-1.24 -5.86,-1.45 -1.93,0.7 -3.78,0.84 -5.65,-0.24 -1.44,-0.55 -3.09,-0.74 -4.55,-0.57 -1.66,-0.98 -3.67,1.46 -5.11,-0.03 -0.47,-0.46 -0.89,-1.1 -1.58,-1.2 z", + "department-87" : "m 322.95,310.24 c -1.42,0.16 -1.79,2.73 -3.55,1.58 -1.2,0.66 -2.71,0.04 -3.05,-0.42 -1.3,-0.05 -2.56,-0.29 -3.03,1.52 -1.19,1 -3.76,-1.34 -4.72,1.11 -0.44,1.9 -0.84,4.74 -3.33,3.79 -1.9,-0.21 -3.25,0.52 -4.49,1.96 -0.02,1.86 -2.26,1.5 -2.78,2.8 1.14,1.36 1.75,3.09 2.03,4.83 -0.68,0.8 -1.8,1.33 -0.59,2.38 -0.3,1.93 -0.99,4 1.23,5.15 0.94,0.27 1.89,-0.69 2.61,0.8 1.7,1.94 1.35,4.78 -1.17,5.81 -1.21,0.95 -4.53,-1.24 -3.28,1.64 0.6,1.91 -0.35,3.84 -1.42,5.38 0.26,1.68 -1.13,2.51 -2.19,1.12 -2.49,-0.32 -0.1,2.96 -2.35,3.08 -1.43,0.77 -3.67,3.87 -0.84,4.34 1.89,-0.29 4.27,-0.2 4.79,2.11 -0.95,1.74 -0.88,4.29 1.4,4.49 2,2.75 2.36,-4.24 4.08,-0.99 1.82,-0.25 3.5,-0.55 5.3,-0.32 2.1,0.81 0.93,3.91 3.41,4.63 0.87,-0.16 3.26,-0.7 3.54,1.24 -1.52,0.83 -2.64,3.87 0.09,3.03 0.75,1.86 3.06,0.22 3.77,2.25 0.84,-1.21 1.61,-4.26 3.58,-2.37 2.08,1.27 2.75,-2.4 4.24,-3.4 2.02,0.94 1.65,-2.95 3.38,-2.04 0.86,1.21 1.4,-0.98 2.28,0.21 2.08,0.81 2.48,-1.96 4.5,-1.98 1.43,-1.73 2.7,-3.69 5.09,-4.12 1.21,-1.27 2.34,-3.1 3.99,-1.2 1.71,0.19 4.31,-1.3 1.99,-2.96 0.07,-1.25 -0.47,-2.97 0.67,-3.72 -0.3,-2.05 -2.19,-3.15 -4.06,-3.42 -2.02,-0.13 -0.89,-4.3 -2.9,-2.07 -1.73,1.32 -4.48,1.17 -6.08,-0.3 -1.12,-1.62 -0.55,-2.47 1.17,-2.93 -0.01,-1.71 -1.38,-2.86 -2.76,-1.32 -1.69,0.77 -4.3,-1.6 -1.64,-2.6 1.99,-0.15 1.87,-2.88 -0.16,-2.79 -0.11,-2.29 0.88,-5.13 -1.66,-6.42 -0.85,-1 0.74,-2.52 -1.23,-3 -1.15,-0.86 -0.34,-2.72 -2.61,-2.36 -2.05,-0.69 -2.23,-3.74 -0.01,-4.54 -1.18,-1.87 2.43,-4 0.45,-5.87 -1.08,-1.05 -1.66,-3.1 -3.26,-3.98 l -0.4,-0.12 -5e-5,-1.9e-4 z", + "department-19" : "m 355.27,352.42 c -2.41,0.23 -2.49,3.1 -4.92,3.18 -1.99,0.44 -1.91,3.72 -4.48,3.19 -1.55,-0.65 -2.84,-0.92 -3.82,0.74 -1.56,1.31 -4.07,1.15 -4.69,3.53 -0.95,1.61 -3.2,1.41 -4.12,3.15 -1.64,-0.18 -3.14,0.03 -4.36,-0.35 -1.12,0.86 -1.11,2.83 -2.93,2.34 -1.01,1.12 -1.8,3.72 -3.64,3.3 -2.02,-2.15 -4.66,1.56 -2.02,2.76 0.31,0.97 -2.2,1.96 -0.06,2.42 2.59,0.34 1.5,2.36 0,3.31 -0.83,1.5 -2.82,2.32 -2.39,4.34 0.04,1.61 3.43,1.79 1.06,3.35 -1.8,0.75 -0.86,2.16 0.76,1.97 2.37,0.69 -2.18,3.2 0.89,3.57 1.71,0.75 4.42,-0.21 5.43,1.63 -1.66,1.67 -0.01,3.84 0.75,5.6 1.3,2.58 3.34,-0.94 4.92,-0.42 1.79,0.66 4.22,-0.26 5.77,1.61 1.5,1.28 2.33,3.24 4.07,4.22 0.76,2.2 3.51,1.81 4.78,0.26 1.25,-0.4 3.37,-3.39 4.09,-0.76 1.76,-0.42 3.25,-1.82 5.25,-1.36 1.95,0.53 4.83,-0.91 2.7,-2.93 -1.73,-1.56 -0.22,-3.92 1.82,-4 1.95,-0.73 0.57,-3.63 2.68,-4.55 0.82,-1.71 -2.58,-3.02 -0.6,-4.81 1.51,-1.4 2.17,-3.41 4,-4.58 0.93,-1.64 3.52,-2.31 3.34,-4.51 0.2,-1.11 -1.11,-4.2 1.21,-2.96 1.67,0.96 3.94,2.83 5.83,1.58 0.19,-1.48 -2.29,-2.37 -0.91,-4.18 0.6,-1.88 0.63,-3.89 0.79,-5.81 -0.59,-1.81 -2.99,-2.99 -1.89,-5.18 0.21,-1.88 3.04,-1.93 2.06,-4.16 1,-1.83 -1.46,-4.99 -2.67,-2.21 -1.52,1.66 -4.09,-1.17 -5.17,0.94 -0.31,2.03 -3.4,3.01 -4.02,0.67 -1.28,-0.62 -2.83,-0.77 -3.49,-2.39 -1.77,-0.68 -4.6,0.35 -5.48,-2.14 -0.27,-0.01 -0.39,-0.23 -0.56,-0.39 z", + "department-15" : "m 376.66,370.99 c -1.19,1.79 -1.68,4.43 0.41,5.71 -0.45,1.36 -2.52,1.76 -3.5,0.7 -1.54,-0.13 -3.08,-2.7 -4.37,-1.52 1.01,1.48 0.32,3.55 -0.14,5 -1.99,0.75 -2.55,2.8 -4.34,3.77 -0.52,1.72 -2.45,2.69 -2.85,4.41 0.01,1.72 2.75,2.74 0.58,4.01 -1.7,1.18 -0.26,4.86 -3.09,4.34 -2.7,0.63 -1.59,3.71 0.01,4.92 0.65,2.63 -4.47,0.65 -2.9,3.46 0.18,1.52 2.06,2.72 0.55,4.15 0.27,1.69 1.6,3.03 2.57,4.37 1.84,1.32 0.96,3.2 0.36,4.84 0.62,1.33 -1.78,3.32 -0.26,3.79 2.44,-0.09 0.12,3.67 2.01,4.57 1.7,1.06 0.3,-2.61 2.62,-2 1.68,-0.52 3.98,-1.44 4.57,0.77 2,-0.58 4.32,0.81 6.07,-0.76 0.44,-2.1 2.62,-3.19 3.24,-5.21 -0.69,-2.32 2.22,-3.18 2.15,-5.13 0,-1.99 1.08,-3.78 2.78,-4.51 0.13,-1.76 2.69,-1.8 3.04,-3.55 2.42,-0.56 2.52,3.03 2.13,4.61 0.65,0.42 1.86,-1.04 3.03,-0.48 1.73,-0.26 0.79,2.88 1.8,4.07 0.04,1.66 1.48,1.37 2.34,1.41 0.51,2.24 -0.61,4.88 0.68,7.08 0.22,1.4 1.88,3.16 2.24,0.89 0.17,-2.12 2.41,-3.19 1.69,-5.33 1.31,-1.43 0.1,-3.81 1.86,-5 0.34,-0.92 1.65,-0.92 1.27,-2.39 -0.31,-1.78 2.39,-4.11 2.92,-1.38 1.09,2.08 3.69,-0.13 3.13,-1.91 0.66,-0.39 0.95,-3.09 1.75,-1.44 1.49,0.21 2.7,-1.4 3.92,-1.91 -0.4,-1.03 -0.3,-1.86 0.45,-2.36 -1.43,-1.31 -4.03,-2.15 -2.62,-4.75 0.57,-0.97 -2.13,-2.18 -0.29,-2.34 0.91,1.01 3.57,-0.09 1.27,-0.49 -1.88,-0.31 -2.74,-1.98 -2.94,-3.81 0.41,-1.5 -0.08,-3.01 -1.31,-3.68 -0.8,-1.3 0.17,-4.47 -2.41,-3.26 -1.04,-0.18 -1.8,-1.36 -3.22,-0.75 -1.58,-0.05 -0.93,-0.78 -0.31,-1.52 -0.5,-1.08 -0.49,-0.97 0.23,-1.83 0.02,-2.26 -2.51,0.74 -2.31,1.66 -1.34,2.41 -3.96,1.04 -5.4,-0.41 -0.95,-1.25 -0.73,-4.16 -2.95,-3.91 -1.28,-0.57 -3.08,-2.03 -4.57,-0.67 -1.82,-0.22 -3.86,0.66 -4.36,-1.78 -0,-1.2 0.3,-1.77 -1.25,-1.64 -1.36,-0.3 -1.58,-1.64 -3.02,-0.94 -0.85,-0.58 -1.73,-0.37 -2.46,-0.7 0.33,-0.79 0.12,-1.21 -0.81,-1.16 z", + "department-30" : "m 444.42,438.64 c -1.37,1.4 -1.47,4.31 -4.11,3.82 -1.82,2.16 3.48,4.17 1.2,6.42 -0.95,2.18 3.26,2.24 1.03,3.92 -1.47,1.55 0.45,4.16 0.51,5.1 -2.55,-1.98 -2.8,3.78 -5.73,2.21 -3.21,1.37 -5.43,-3.13 -8.29,-2.8 -2.58,-0.13 0.51,3.85 -2.49,4.01 -2.34,-0.26 -4.74,-0.24 -7.06,-0.81 -1.48,-1.13 -3.28,-4.1 -5.3,-1.74 -0.62,1.58 -0.39,3.76 -2.68,3.78 -0.55,1.53 1.6,1.88 2.23,1.3 0.87,2.49 4.92,1.11 5.57,4.16 -0.53,2.64 -5.3,3.39 -3.9,6.35 1.94,-0.05 4.16,0.89 3.14,3.19 1.47,0.2 3.75,-3.49 4.35,-0.14 -0.13,1.74 4.38,2.24 2.25,0.01 0.91,-1.71 2.35,-3.26 4.23,-3.02 0.03,-2.83 4.68,-5.23 5.79,-1.96 3.58,0.46 -1.44,4.49 1.7,4.98 1.84,0.01 4.28,-1.91 4.52,1.08 1.97,-0.14 2.41,1.8 1.55,3.19 1.84,-0.54 3.4,0.27 4.34,2.12 1.78,1.76 4.49,2.35 4.8,5.16 1.1,2.05 1.91,4.32 -0.08,6.19 -0.61,1.65 -4.28,0.9 -2.22,3.48 2.02,1.25 0.6,4.53 2.93,5.5 2.92,2.1 1.98,-3.04 4.66,-2.88 1.75,-0.09 1.4,-1.83 1.58,-2.73 1.58,1.9 3.96,-0.99 5.08,-1.95 2.26,-0.22 2.56,-2.12 0.22,-2.36 -0.33,-2.07 2,-4.1 3.12,-5.48 1.84,-1.43 4.51,1.85 5.49,0.22 -1.01,-2.28 0.8,-4.15 1.45,-6.22 7.8e-4,-1.45 -0.24,-2.78 0.19,-4.01 -1.54,-1.58 2.64,-2.15 3.14,-3.77 1.09,-1.96 4.33,-2.36 4.06,-5.1 3.05,-0.25 -0.38,-2.82 -0.88,-4.23 -0.73,-1.79 -2.1,-2.03 -3.48,-2.47 -1.24,-1.93 0.68,-4 -0.12,-6.01 -0.11,-1.52 -0.55,-2.3 -1.93,-2.73 -0.09,-3.19 -3.03,-4.47 -5.49,-5.86 -0.85,-1.95 -5.42,-3.24 -4.58,0.22 -0.31,2.78 -4.09,0.65 -2.51,-1.49 -0.78,-2.43 -5.27,0.56 -5.06,2.59 -1.74,4.01 -4.07,-2.33 -6.63,-1.67 -0.17,-3.42 -6.06,1.94 -4.22,-2.25 0.89,-1.46 -1.23,-2.77 0.6,-3.8 -1.48,-1.1 -0.8,-3.1 -2.98,-3.5 z", + "department-48" : "m 415.44,405.01 c -1.15,1.06 -2.74,1.92 -4.01,2.62 -0.69,-0.64 -1.67,-0.8 -1.29,0.46 -1.53,0.76 -0.13,2.62 -1.88,3.18 -2.01,2.09 -2.24,-3.15 -4.1,-1.35 -1.31,1.13 -0.06,3.44 -1.69,4.18 -1.69,0.94 -1.27,2.83 -1.72,4.34 -0.97,1.48 0.22,3.26 -1.62,4.26 0.03,1.5 -1.96,3.16 -0.38,4.4 0.87,1.51 2.1,2.7 3.33,3.9 1.23,1.55 -0.58,3.54 0.25,5.21 1.19,0.89 2.58,1.87 2.81,3.49 -0.01,1.82 -0.61,3.52 -0.63,5.35 0.39,1.6 2.03,3.36 0.24,4.88 -0.7,0.91 0.01,1.95 0.76,0.92 0.68,0.58 0.51,2.09 2.03,1.87 1.21,0.4 2.27,1.47 1.17,2.65 0.66,2 3.44,-0.87 5.09,0.05 1.99,-0.31 1.72,2.58 3.51,2.83 1.19,1.74 2.85,2.7 5,2.4 1.56,0.53 3.35,0.39 4.94,0.25 1.61,-0.93 -0.65,-3.55 1.39,-3.88 1.38,-0.82 2.06,1.14 3.43,1.18 1.7,0.64 2.84,3.1 4.85,1.69 1.84,0.97 3.69,-1.03 4.21,-2.44 0.25,-0.78 1.96,0.41 1.35,-0.86 -1.19,-1.1 -0.65,-3.71 0.66,-4.56 -0.1,-1.09 -2.12,-0.79 -1.59,-2.2 -1.5,-1.38 1.85,-2.26 -0.14,-3.49 -0.44,-1.17 -2.42,-2.48 -1.64,-3.65 1.53,-0.64 3.29,-0.85 3.66,-2.81 1.15,-1.55 0.43,-3.47 0.01,-5.14 -0.53,-1.76 -1.03,-3.64 -2.8,-4.29 -0.89,-1.53 -0.87,-3.24 -1.38,-4.86 -0.57,-1.51 -0.77,-3.11 -0.95,-4.62 0.86,-1.54 -2.63,-1.37 -1.37,-3.05 -0.77,0.01 -1.78,0.71 -1.71,-0.71 -1.09,-0.89 -1.87,-1.88 -2.39,-3.14 -0.97,-0.98 -4.72,1.23 -3.53,-1.13 0.36,-2.46 -4.25,-2.89 -3.41,-0.07 0.11,2.29 -2.55,0.73 -3.85,1.77 -1.38,2.1 -2.54,-0.83 -2.97,-2.15 -0.49,-1.59 -1.43,-3.11 -1.48,-4.81 0.52,-1.64 -1.52,-1.82 -2.17,-2.67 z", + "department-63" : "m 392.19,319.89 c -2.55,-0.28 -0.86,5.52 -3.86,3.12 -1.25,-1.4 -2.58,-0.68 -2.05,1.07 -1.73,0.81 -2.77,2.02 -3.19,3.95 -1.44,2.07 -5.19,-2.58 -4.85,1.35 -0.63,3.31 3.36,4.8 2.13,8.08 1.47,2.13 -3.78,2.44 -2.19,5.1 -1.55,1.17 -2.37,3.35 -4.42,2.96 -0.24,1.6 -1.75,1.77 -2.74,2.77 1.42,1.48 1.73,4.08 3.81,4.89 1.87,1.54 2.57,3.84 2,6.14 -0.04,1.68 -2.35,1.12 -2.11,3.19 -1.39,2.53 3.34,3.48 1.78,6.19 -0.34,2.31 2.23,4.25 4.24,3.81 1.14,-1.05 1.08,1.95 2.83,1.17 1.79,0.25 -0.07,3.43 2.48,3.43 1.93,0.29 4.36,-1.4 6.09,0.07 1.68,0.46 3.42,1.27 3.58,3.5 0.82,2.93 5.77,3.88 6.02,0.11 1.93,-2.52 5.75,-0.49 7.36,-3.56 1.42,-0.5 2.93,-0.93 3.65,-2.15 0.85,0.9 1.35,1.08 1.79,-0.16 1.98,1.79 5.08,1.72 6.94,-0.24 0.86,1.51 2.29,1.65 3.63,2.06 0.19,1.6 1.96,5.14 3.37,2.33 0.39,-1.81 2.34,-1.49 2.81,-0.22 1.8,0.81 3.86,0.64 3.95,-1.61 1.52,-0.72 4.57,4.26 4.36,0.2 -0.77,-2.78 3.41,-2.65 3.56,-5.05 0.08,-1.27 0.91,-2.58 -0.57,-3.51 -0.34,-2.4 -0.78,-5.09 -3.4,-6.04 -2.51,-1.49 -4.52,-3.85 -4.93,-6.82 0.3,-1.94 -2.54,-2.71 -2.43,-4.43 -2.77,-1.23 1.27,-3.17 -0.17,-5.29 -0.46,-1.42 2.48,-2.04 0.65,-3.67 -1.64,-1.61 -3.16,-3.3 -4.93,-4.26 -0.17,-2.37 -2.05,-3.57 -4.29,-2.82 -1.63,0.22 -3.89,0.99 -3.11,-1.62 -0.63,-3.09 -4.12,-1.13 -5.86,-0.4 -1.31,-1.85 -4.09,-0.37 -5.8,-1.73 -2.55,1.22 -4.97,-0.25 -5.88,-2.33 -2.61,1.21 -5.99,-0.97 -6.02,-3.83 -2.94,-0.4 -1.14,-3.31 -0.64,-4.92 -0.73,-1.01 -2.48,-0.38 -3.57,-0.82 z", + "department-42" : "m 439.34,318.51 c -1.4,1.09 -3.38,0.81 -4.47,2.28 -1.82,0.16 0.93,1.97 0.09,3.08 1.14,1.99 -0.44,3.99 0.89,6.05 0.77,1.92 -0.65,4.26 0.62,6.25 0.35,2.41 -2.79,1.86 -3.96,2.57 -2.35,-0.89 -2.47,3.14 -0.31,3.44 2.21,1.91 -1.24,3.68 -0.28,5.94 0.04,1.28 -2.44,2.83 -0,3.19 0.41,1.15 0.53,2.3 1.79,2.57 1.02,2.1 0.91,4.5 2.54,6.39 1.14,1.23 2.72,2.03 4.02,3.15 1.77,0.88 2.29,2.98 2.14,4.79 0.78,1.17 1.95,2.37 0.85,3.65 0.6,2.98 -3.75,2.43 -3.68,5.29 -0.24,1.25 0.87,4.49 1.47,1.78 1.44,-1.91 3.37,-0.45 4.17,1.17 0.79,-1.11 1.72,-0.5 2.67,-0 0.15,-2.21 3.89,-0.72 3.47,-2.81 1.64,-0.48 3.97,-0.56 5.25,0.84 0.93,1.42 3.2,-0.82 4.25,1.3 1.2,1.24 -2.34,2.57 0.2,3.33 -0.27,1.39 -0.17,3.69 1.96,2.19 2.29,-1.26 3.05,3.76 5.61,1.87 1.45,-0.32 4.47,-0.28 2.95,-2.46 1.25,-1.48 2,-3.74 4.25,-4.48 1.9,-0.58 4.46,-1.86 2.78,-4.17 0.41,-1.63 0.68,-3.17 -0.45,-4.78 -0.86,-0.61 -4.23,1.27 -3.91,-1.71 0.58,-1.76 -0.59,-3.8 -2.3,-4.26 -1.01,-0.71 -2.49,-0.43 -3.84,-0.22 -2.35,-0.44 -2.91,-2.73 -4.9,-4.04 -1.13,-1.62 -2.88,-3.3 -1.38,-5.4 0.82,-1.19 1.08,-2.78 -0.93,-2.26 -0.92,-1.7 1.59,-3.04 1.04,-5 0.45,-1.54 0.67,-2.42 -1.05,-2.72 -1.62,-1 -1.46,-2.43 -0.98,-3.94 -1.13,-0.87 -1.93,-1.93 -2.65,-3.2 -1.86,0.11 -1.37,-2.25 0.24,-1.18 1.64,0.3 1.12,-2.12 -0.24,-1.9 -1.53,-1.06 -1.23,-2.2 0.48,-2.49 1.51,-1.62 0.1,-4.83 3.05,-5.36 1.32,-0.92 3.68,1.05 3.53,-1.68 -0.94,-0.82 -2.52,-1.79 -0.66,-2.63 -0.89,-1.83 -2.59,0.28 -2.37,1.55 -2.07,-0.72 -3.95,3.07 -5.33,1.07 1.08,-1.6 -0.61,-0.93 -1.49,-0.98 -1.01,-1.58 -2.13,1.87 -3.66,0.28 -1.85,-2.55 -4.04,0.49 -6.21,0.61 -1.47,-0.6 -1.78,-3.3 -3.9,-2.35 -2.98,-0.56 1.31,-4.03 -1.36,-4.62 z", + "department-69" : "m 475.71,316.54 c -0.87,0.66 -2.26,-0.17 -2.52,1.45 -0.41,2.16 -2.61,0.68 -2.93,-0.66 -0.67,1.6 -2.77,2.31 -3.66,0.46 -1.26,-0.9 -4.01,-1.3 -3.92,0.99 -0.37,1.43 -0.56,3.09 0.96,3.77 0.52,1.12 -1.91,1.33 -0.17,2.13 2.28,0.43 0.08,4.11 -1.34,2.29 -1.86,0.33 -3.58,1.48 -3.43,3.62 0.06,1.55 -1,2.53 -2.43,2.92 0.23,1.74 4.09,1.83 1.9,3.67 -0.72,0.19 -2.91,-0.81 -1.65,0.69 1.84,0.06 1.63,2.58 3.34,3.05 1.06,1.28 -1.05,2.4 0.38,3.62 0.39,1.32 3.3,0.37 2.11,2.15 -0.22,1.96 -0.21,4.04 -1.58,5.4 0.01,1.65 2.76,0.01 1.9,1.89 -0.91,1.51 -2.02,4.01 -0.15,5.21 0.45,1.6 1.94,2.05 2.81,3.29 1.08,1.58 3.06,2.61 4.86,1.74 1.3,0.99 3.32,0.03 3.52,2.21 2.12,0.47 -0.12,2.75 1.06,3.97 1.2,1.82 3.29,-1.7 3.78,0.86 0.16,1.37 1.78,1.74 1.97,0.15 1.24,-1.07 3.74,-2.21 3.57,-3.97 -1.59,-0.82 -2.65,-2.33 -3.79,-3.56 1.45,-0.9 3.37,1.43 4.16,-0.58 1.59,-1.09 4.11,-0.52 5.41,-1.38 0.73,-0.87 2.67,0.96 2.14,-1.14 0.23,-1.49 1.61,-2.43 2.72,-3.4 0.22,-1.63 3.96,-0.84 1.92,-2.7 -1.18,-0.64 -2.42,-0.95 -2.58,-2.5 -1.3,-0.05 -1.5,-2.4 0.07,-1.65 1.54,-1.27 -0.94,-1.76 -1.93,-1.2 -1.61,0.34 -3.23,-0.11 -4.84,0.15 -1.46,-0.38 -0.65,-2.88 -1.63,-4.04 -0.76,-1.58 -2.34,-3.8 -4.23,-2.1 0.32,-1.98 -1.88,-2.34 -3.22,-2.76 -0.56,-1.23 1.48,-2.37 0.5,-3.89 -0.4,-1.61 -0.39,-3.41 0.4,-4.71 -0.98,-1.88 1.05,-3.17 1.72,-4.76 0.92,-2.57 -2.82,-1.49 -3.35,-3.18 0.16,-1.57 0.89,-3.77 -1.35,-4.02 -1.92,-1 1.77,-1.42 0.19,-2.69 -0.13,-0.32 -0.31,-0.69 -0.67,-0.81 z", + "department-43" : "m 421.26,374.78 c -1.2,1.34 -2.87,2.11 -4.64,1.49 -1.25,-0.76 -2.34,-1.79 -2.91,0.14 -0.84,-2.24 -1.76,0.07 -2.9,0.57 -2.32,-0.11 -3.26,3.38 -5.8,2.55 -1.63,-0.33 -0.77,1.6 -1.71,2.2 1.51,0.57 -1.3,1.89 0.77,2.09 1.26,-0.4 2.29,-0.57 2.73,0.69 3.54,-1.62 1.31,4.17 4.32,4.53 0.12,1.27 -0.87,2.9 0.49,4.06 -0.5,2.16 2.84,1.56 3.3,2.93 -0.7,1.4 -3.77,-1.07 -2.6,0.88 1.73,0.64 -1.08,3.7 1.02,4.16 0.94,0.32 2.01,1.12 2.27,2.04 -2.59,1.78 3.04,2.13 2.07,4.48 0.25,1.79 1.1,3.48 1.69,5.15 0.34,1.37 1.37,3.4 2.72,1.72 1.7,-0.4 4.26,-0.23 3.87,-2.73 0.47,-2.25 4.43,-0.37 3.4,1.53 -0.08,1.93 4.07,-1.29 4.11,1.69 0.63,1.03 1.69,1.88 2.42,2.95 1.04,-0.64 1.77,0.2 1.08,1.24 1.62,0.86 4.11,-0.85 4.35,-2.73 0.12,-1.27 1.27,-3.16 2.21,-1.61 -0.03,-1.43 2.73,-0.31 1.93,-2.16 0.24,-2.16 3.15,-1.12 4.56,-1.72 2.32,0.9 2.87,-1.83 3.7,-3.29 1,-1.17 1.05,-3.34 3.11,-2.48 1.27,0.03 2.5,-1.1 1.13,-2.06 -0.7,-2.65 2.91,-1.92 3.79,-3.19 -0.1,-1.04 -2.15,-1.3 -1.02,-2.72 -0.2,-1.4 2.99,-1.23 1.29,-2.52 -1.63,-1.76 2.34,-1.75 2.35,0.04 1.44,0.42 -0.32,-2.17 0.89,-2.9 0.94,-1.34 2.05,-3.68 0.73,-5.06 -0.88,-1.26 -2.34,-2.8 -3.69,-1.15 -1.58,0.28 -1.81,-1.62 -1.38,-2.5 -1.45,-0.91 -1.01,-1.92 0.04,-2.8 -0.1,-1.71 -2.16,-2.09 -3.32,-1.28 -1.53,-0.47 -2.3,-2.47 -4.19,-1.61 -1.37,-1.08 -2.04,0.41 -2.17,1.15 -1.7,-0.13 -2.84,0.96 -3.78,1.85 -0.54,-1.5 -1.86,-0.63 -2.23,0.5 -0.6,-1.73 -2.18,-4 -3.94,-1.96 -0.39,0.75 -1.16,2.59 -1.53,0.73 -1.82,-0.26 -2.76,-1.83 -4.21,-2.45 -1,0.7 -0.59,3.14 -2.68,2.22 -1.44,0.27 -2.48,-1.86 -3.42,-1.39 -0.83,2.24 -3.45,3.07 -3.98,0.29 0.04,-2.47 -3.46,-1.21 -3.94,-3.43 l -0.12,-0.08 -0.17,-0.03 -3e-5,-2e-5 z", + "department-07" : "m 478.61,378.73 c -2.43,1.15 -5.28,2.24 -6.12,4.92 -1.47,0.79 0.77,3.37 -2.12,2.96 -2.3,0.14 -4.11,1.25 -4.03,3.67 -0.84,1.45 -1.94,2.84 -1.07,4.56 -1.38,1.82 -1.62,-3.04 -3.47,-1.01 0.08,0.93 1.95,1.84 0.07,2.26 -1.79,0.55 -1.33,2.95 0.02,3.6 -0.47,2.05 -5.25,0.66 -3.53,3.85 1.35,2.27 -2.75,1.28 -3.52,2.23 -0.5,1.82 -1.67,3.14 -2.48,4.79 -1.73,1.45 -4.69,0.09 -6.54,1.2 -0.06,1.33 5.1e-4,2.62 -1.59,2.74 -0.66,1.6 -2.32,-1.24 -2.47,1.13 -0.36,1.82 -1.26,3.38 -3.22,3.84 0.04,1.47 -0.12,2.83 0.5,4.14 -0.1,1.82 0.99,3.59 1.16,5.49 0.67,1.99 3.13,2.65 3.18,5.05 0.75,1.76 0.19,4.26 2.32,5.13 1.14,0.83 0.97,2.08 1.77,2.99 -1.24,1.36 0.11,3.46 -0.9,5.32 1.7,-0.1 3.99,-2.05 4.86,0.52 2.26,-0.51 3.42,4.43 5.77,2.48 0.31,-2.54 2.53,-4.68 5.23,-4.38 0.89,1.01 -0.75,4.43 2.04,3.6 1.01,-1.21 0.09,-4.63 2.94,-3.24 2.16,0.6 2.99,2.88 5.17,3.49 3.18,1.08 0.89,-3.83 1.62,-5.6 0.28,-2.28 1.17,-4.29 2.28,-6.18 -0.94,-1.85 0.15,-3.5 -0.11,-5.34 -0.79,-2.42 2.76,-2.83 2.6,-5.19 1.37,-1.81 1.38,-4.03 0.6,-6.07 -0.96,-2.59 0.31,-4.79 1.95,-6.59 1.36,-1.91 2.29,-4.02 2.49,-6.23 1.64,-1.73 0.06,-3.51 -0.65,-5.16 -1.26,-1.76 0.39,-3.62 -0.03,-5.17 -1.22,-0.73 -1.37,-3.11 -1.97,-4.41 1.51,-2.03 -0.75,-4.24 -0.05,-6.66 -0.04,-1.75 0.77,-4.06 -1.11,-5.2 -2.04,-0.52 0.62,-3.48 -1.62,-3.51 z", + "department-26" : "m 490.06,380.18 c -2.2,0.56 -3.88,2.66 -6.05,2.81 -3.74,-1.64 -2.07,3.38 -2.55,5.43 -0.35,2.11 1.49,4.21 0.01,5.98 0.79,1.98 1.55,3.45 2.24,5.24 -1.29,2.04 -0.29,4.71 1.12,6.41 0.25,2.06 -1.29,3.81 -1.22,5.86 -1.25,2.18 -2.62,4.37 -4.07,6.28 -0.43,2.53 1.05,4.97 0.64,7.45 -1.11,2.2 -1.7,4.54 -3.68,6.04 0.42,2.44 -0.56,4.43 0.03,6.97 -0.96,1.7 -1.87,3.37 -2.02,5.52 -1.39,2.72 1.41,4.19 3.69,3.18 2.81,-0.3 3.35,2.71 3.5,4.85 0.37,3.51 2.74,-1.84 4.51,-0.57 2.16,-0.59 4.03,-1.98 6.1,-2.75 1.51,-0.08 2.29,2.59 4.01,0.74 0.5,-1.18 2.52,-1.98 1.58,-0.02 -1.01,1.27 0.17,2.55 -0.34,4.08 1.15,1.41 3.51,1.06 4.37,0.11 1.67,1.57 4.23,0.98 5.78,1.84 0.25,1.64 0.25,3.64 2.37,3.49 0.91,2.71 3.78,2.54 5.26,0.39 2.19,-0.46 -0.06,-2.21 1.78,-3.11 1.34,-0.38 2.44,2.36 3.26,-0.05 2.18,-0.81 -6.3e-4,-3.76 0.89,-5.26 -1.51,0.33 -2.13,-0.36 -2.13,-1.88 -1.71,-0.59 -0.04,-1.09 -0.62,-2.13 -2.21,0.34 -4.1,-0.84 -6.08,-0.9 -1.47,-1.34 -2.63,-1.81 -2.27,-3.98 -1.26,-1.18 -0.4,-2.46 1.16,-1.59 2.99,0.47 -0.78,-1.84 -0.05,-3.38 -0.23,-2.54 3.38,-0.17 4.83,0.17 1.61,1.06 2.72,-0.15 3.05,-1.54 3.5,-0.73 -3.7,-2.69 -0.93,-4.76 1.26,-1.58 1.47,-3.55 1.66,-5.28 1.87,-0.08 3.69,1.17 5.27,-0.42 1.95,0.61 4.32,-4.02 0.86,-2.8 -2.08,0.57 -3.09,-2.21 -5.42,-1.46 -1.77,-1.01 -3.15,-3.24 -4.84,-4.16 -0.16,1.89 -3.87,0.17 -4.2,-1.02 0.68,-1.61 -0.42,-3.55 0.42,-5.5 0.5,-2.42 -0.05,-4.88 0.51,-7.29 -0.24,-1.96 -1.28,-4.35 -0.26,-5.76 -2.06,0.11 -3.32,4.84 -5.81,2.14 -1.99,-1.01 -4.42,0.14 -6.13,-1.91 -1.24,-1.25 -3.27,2.19 -3.6,-0.2 1.59,-1.06 2.63,-3.44 2.06,-5.42 -0.76,-1.46 -1.02,-3.1 0.12,-4.28 -0.3,-2.46 -4.17,0.05 -2.8,-2.99 1,-3.02 -3.16,1.05 -2.98,-2.14 -0.86,-0.9 -2.38,-1.19 -2.72,-2.37 l -0.22,0.01 -0.1,-0.08 -3e-5,3e-5 z m -1.27,60.37 c 2.48,0.28 2.21,2.93 4.58,3.23 -0.38,1.33 -2.81,1.88 -2.81,3.92 -0.59,3.17 -3.27,0.44 -5.16,1.06 -0.4,-1.03 -0.64,-2.47 -0.57,-3.43 1.53,-1.47 1.23,-3.83 3.67,-4.42 l 0.29,-0.35 0,-5e-5 z", + "department-84" : "m 488.85,440.78 c -1.34,0.86 -2.93,1.54 -2.87,3.42 -0.68,0.82 -1.64,1.74 -0.5,2.58 -1.2,2.34 2.22,1.84 3.59,2.34 1.48,-0.54 1.64,-2.52 2.39,-3.79 0.79,-0.35 2.96,-1.64 0.82,-1.79 -1.64,-0.52 -1.5,-2.57 -3.42,-2.75 z m -10.71,6.69 c -1.19,0.91 -3.89,-0.8 -3.68,1.44 -0.73,2.05 0.8,3.62 1.06,5.48 -0.11,0.77 2.02,0.05 1.46,1.41 1.54,2.17 -0.72,4.93 0.39,7.13 0.94,0.88 2.18,-0.09 2.84,1.53 0.92,1.17 1.41,2.6 2.56,3.59 1.05,1.11 0.24,2.14 -1.06,2.18 0.2,1.77 -1.63,3.02 -3.13,3.54 2.03,1.04 4.6,0.46 6.54,1.82 1.39,1.18 3.61,1.18 4.61,2.89 1.6,1.26 2.39,3.14 3.49,4.69 1.51,1.08 3.21,1.85 4.79,2.81 1.63,0.75 3.18,-0.86 4.87,-0.11 2.29,0.4 3.91,2.2 5.94,3.19 2.96,1.79 6.59,3.05 10.03,1.93 1.29,-1.1 2.79,-1.78 4.31,-2.16 1.8,-1.2 1.92,-2.89 -0.06,-3.86 -0.16,-1.44 -1.74,-2.11 -2.33,-3.45 -1,-1.76 -3.47,-1.32 -4.99,-0.56 -1.48,-0.8 0.41,-2.84 1.15,-3.82 0.46,-1.11 1.45,-2.4 -0.1,-3.03 -0.35,-2.14 -3.82,-0.43 -3.2,-3.05 0.4,-2.09 1.95,-4.02 1.54,-6.21 -0.81,-0.41 -2.5,0.33 -2.15,-1.48 0.64,-1.88 -1.29,-2 -2.27,-2.81 -0.01,-2.28 -4.01,-1.03 -2.94,-3.84 0.24,-2.27 -2.29,-1.24 -3.59,-1.48 -1.07,-0.69 -2.71,-2.07 -3.26,-0.4 -1.82,0.23 -4.43,-0.82 -3.4,-2.94 -1.52,-1.18 1.5,-2.71 -0.01,-3.48 -0.77,1.1 -2.19,2.64 -3.61,1.68 -1.1,-2.3 -2.93,-0.02 -4.5,0.33 -1.39,0.4 -2.62,1.76 -4.19,1.24 -1.3,-0.02 -2.72,3.52 -3.54,1.33 -0.4,-1.69 -1.5e-4,-4.12 -1.77,-5.12 -0.57,-0.28 -1.12,-0.47 -1.78,-0.4 z", + "department-13" : "m 478.58,474.18 c -1.02,1.74 -3.79,2.63 -4.3,4.26 1.41,0.89 -0.85,2.14 0.08,3.62 0.42,2.15 -2.05,3.5 -1.66,5.71 0.86,1.45 -0.19,2.57 -1.65,1.52 -1.97,-1.55 -4.66,-0.42 -5.3,1.68 -1.63,1.04 -2.16,4.14 0.43,3.77 0.06,2.02 -2.9,1.68 -3.35,3.32 -1.75,0.99 -3.63,1.22 -4.48,2.81 -1.75,0.17 -4.98,3.13 -2.07,3.96 2.99,-0.17 5.89,1.39 8.87,0.54 2.1,-0.36 4.54,-0.1 6.14,1.39 1.4,1.7 -2.45,3.84 0.49,4.9 1.67,0.45 3.47,0.17 5.19,0.41 1.54,-0.09 3.73,0.57 4.86,-0.31 0.04,-2.31 -3.26,-2.38 -3.93,-4.38 -0.37,-2.14 0.44,-4.38 -0.32,-6.5 -0.27,-0.91 -2.06,-4.56 -0.27,-2.13 1.58,2.03 1.37,4.67 1.02,7.06 -0.44,2.92 3.29,3.56 4.97,5.18 2.32,-0.03 -1.87,-2.76 1.23,-3.14 1.7,-0.98 3.7,-0.9 4.98,0.78 2.12,-0.03 4.8,-1.93 3,-4.13 -2.29,-0.91 -1.95,-4.35 -0.96,-5.24 1.18,1.76 4.95,0.13 3.94,3.25 1.13,1.96 3.22,1.2 4.73,0.55 1.52,1.99 -1.58,3.78 -3.04,4.82 -1.9,0.72 -4.27,-0.43 -5.92,1.16 -1.75,1.59 0.48,4.43 2.49,4.22 2.62,-0.1 5.4,0.48 7.9,-0.43 1.54,-1.44 4.68,-1.73 4.92,0.97 -0.14,1.58 -0.17,2.95 0.5,4.25 -1.22,1.5 -0.87,3.6 1.42,3.31 2.25,-0.5 4.6,0.97 6.52,0.15 1.1,1.57 2.77,3.18 4.58,1.51 2.82,0.58 0.75,-3.74 3.05,-4.43 1.69,-0.57 3.36,-2.03 1.32,-3.58 -0.67,-1.39 -3.72,-0.01 -2.13,-2.07 1.3,-1.41 -1.85,-4.96 1.42,-4.8 1.44,0.62 3.95,-0.29 1.73,-1.54 -1.13,-1.86 -3.57,-3.47 -1.96,-5.73 1.16,-2.3 -1.63,-2.6 -2.43,-3.88 1.77,-1.07 0.43,-4.96 3.4,-5.18 2.17,-0.08 4.44,-1.71 2.13,-3.53 -1.53,-2.95 -2.76,2.22 -4.93,1.23 -1.92,1.74 -4.53,2.47 -7.1,1.81 -3.71,-0.74 -6.76,-3.14 -9.98,-4.96 -2.3,-1.39 -4.89,0.82 -6.98,-0.72 -2.66,-1.2 -4.83,-2.8 -6.01,-5.48 -1.4,-1.42 -2.56,-3.22 -4.67,-3.62 -1.73,-1.15 -3.64,-1.96 -5.77,-2.02 -0.7,-0.12 -1.39,-0.34 -2.11,-0.35 z", + "department-83" : "m 559.22,482.26 c -1.57,0.81 -4.53,-0.4 -4.3,2.48 -0.47,2.33 -3.03,1.82 -4.36,0.6 -1.41,-0.76 -2.26,-2.48 -3.64,-3.12 -2.45,0.17 -2.27,4 -4.8,4.06 -1.96,-0.22 -2.3,2.52 -4.07,3.08 -0.59,2.99 -2.57,-0.15 -3.05,-1.52 -1.23,-0.42 -1.79,-1.24 -2.31,-2.45 -1.22,-0.17 -1.1,2.16 -2.74,2.01 -1.26,0.13 -2.14,-3.05 -4.04,-1.85 -1.64,1.3 0.43,2.05 0.67,3.41 2.14,1.11 -0.57,3.17 -2.19,2.85 -2.35,0.42 -2.84,2.84 -2.76,4.79 -2.56,1.38 3.23,1.17 1.65,3.42 -0.26,1.61 -1.37,3.36 0.44,4.46 0.29,1.5 2.21,2.13 2.37,3.42 -1.12,1.57 -3.85,-0.8 -4.35,1.34 0.76,1.53 0.55,2.92 0.06,4.45 0.47,1.1 2.42,0.11 2.67,1.81 2.05,1.9 -1.02,2.56 -2.07,3.64 -1.27,1.01 -1.39,3.18 -0.59,4.5 -0.02,1.61 1.89,3.03 3.53,2.54 0.63,0.64 0.56,1.76 1.87,1.59 0.19,0.99 -2.67,1.2 -1.12,2.52 1.43,0.36 3.78,3.24 4.48,0.31 0.46,-1.06 3.11,0.26 1.75,-1.2 -1.19,-0.66 -2.07,-1.93 -0.13,-2.23 1.14,-0.04 1.62,1.7 3.17,1.02 1.73,-0.39 2.63,1.9 4.52,0.7 2.33,-0.05 2.29,3.1 -0.04,3.08 1.01,0.28 3.42,0.9 4.13,-0.08 -1.41,-0.84 -0.65,-3.04 0.06,-4.2 1.81,-0.51 4.14,-1.1 5.91,0.02 0.9,0.75 1.8,2.99 3.07,1.38 -1.33,-2.25 0.74,-4.08 2.94,-4.32 1.82,-0.15 3.69,-0.25 4.8,-1.93 1.53,-0.99 2.65,0.47 3.21,1.51 1.86,-0.28 1.12,-2.69 3.08,-2.91 -0.25,-0.86 -1.2,-2 0.22,-2.75 2,-2.05 -1.75,-2.02 -3,-1.6 -2.62,-0.25 0.68,-1.83 1.74,-1.96 0.92,-0.9 0.59,-2.79 2.41,-3 1.27,-1 0.94,-3 1.39,-4.45 1.32,-1.24 3.42,1.1 5.12,-0.25 2.11,-0.39 5.31,-3.55 2.23,-5.07 -0.91,-0.67 0.04,-2.14 -0.81,-2.85 1.19,-1.51 2.17,-5.23 -0.93,-4.5 -1.9,-0.64 -3.15,-2.19 -4.31,-3.7 -0.38,-1.46 0.89,-3.33 -0.59,-4.65 -1.69,-0.39 -2.7,-1.75 -4.45,-1.31 -0.63,-1.4 -1.63,-4.65 -3.65,-2.69 -0.92,1.21 -1.67,0.76 -2.07,-0.48 -0.31,-0.35 -0.87,-0.26 -1.13,0.1 z", + "department-06" : "m 576.68,445.25 c -1.34,1.23 -3.9,1.28 -4.17,3.49 -0.13,1.25 -0.15,2.32 -1.56,2.41 -1.9,1.04 -1.65,2.94 -2.4,4.72 -1.12,1.8 -0.44,3.86 0.62,5.5 1.39,1.18 1.52,2.81 1.21,4.48 0.95,1.31 2.36,2.44 3.59,3.57 1.13,1.57 2.02,3.38 3.71,4.46 1.86,0.62 1.75,2.74 -0.45,2.28 -1.47,-0.07 -2.99,-2.84 -4.42,-0.95 -0.71,1.34 -2.19,2.93 -3.8,1.81 -2,-0.79 -0.09,1.89 -1.86,2.2 -0.86,1.13 3.05,2.08 0.42,2.7 -2.14,-0.09 -2.94,2.46 -0.88,3.26 1.41,-0.36 2.86,1.09 4.07,1.52 1.52,1.48 -0.21,3.43 0.75,4.88 0.99,1.27 2.13,2.35 3.57,3.11 1.1,0.29 3.38,-0.11 2.46,1.9 0.25,1.55 -1.7,2.77 -0.61,4.33 -0.6,2.27 3.36,2.88 2.7,0.25 0.05,-1.74 2.24,-2.34 3.66,-2.24 1.4,-0.6 3.03,-1.96 4.31,-0.48 0.92,-1.55 -0.13,-3.6 0.66,-5.28 0.47,-2.1 3.38,-1.02 4.03,-3.01 0.72,-1.31 3.11,-1.16 4.22,-0.93 0.41,1.87 1.38,-0.15 0.99,-1.1 1.14,-0.12 2.6,-0.32 2.24,-2.03 0.47,-1.55 1.98,-1.35 2.76,-0.43 1.62,-0.12 1.35,-2.48 3.24,-2.43 0.12,-1.52 -1.2,-3.1 -1.24,-4.77 -0.33,-2.13 2.98,-2.32 2.8,-4.51 0.2,-2.18 2.79,-2.46 3.91,-4.1 1.16,-1.41 0.77,-3.42 2.5,-4.52 1.68,-1.83 -0.84,-3.38 -1.62,-4.86 0.1,-1.29 0.78,-4.61 -1.63,-3.23 -1.26,1.94 -4,1.29 -5.92,2.41 -1.51,0.57 -3.06,1.13 -4.67,1.28 -1.89,0.43 -2.51,-1.6 -4.03,-1.95 -2.04,0.55 -3.05,-1.81 -4.89,-2.29 -1.02,-1.04 -2,-2.14 -3.6,-1.65 -1.13,-0.99 -2.66,-2.58 -4.35,-1.81 -2.02,0.21 -1.9,-2.22 -2.76,-3.32 -1.88,-1.1 -1.62,-3.6 -3.55,-4.67 l -2e-5,0 z", + "department-04" : "m 578.06,425.55 c -1.79,1.91 -3.88,3.35 -6.26,4.36 -0.91,2.06 -3.09,2.86 -4.5,4.3 -0.94,1.81 -1.79,3.6 -2.77,5.22 -2.29,-0.14 -4.98,0.19 -7.06,-0.62 -1.64,-0.84 -3.17,-1.46 -3.98,-3.23 -1.53,-1.67 -2.1,-0.06 -1.63,1.35 -0.71,2.73 -2.97,-0.6 -4.42,1.45 -0.89,1.01 2.03,4.3 -0.67,5.1 -1.25,-1.28 -2.93,-2.88 -3.78,-4.62 -0.62,-1.54 -3.84,-1.76 -3.55,0.47 -2.18,1.03 -4.15,2.5 -5.81,4.38 -0.23,1.86 -3.02,3.89 -1.01,5.05 -0.39,1.39 0.39,5.1 -1.68,2.68 -0.48,-1.23 -1.95,-3.42 -2.69,-1.06 -0.25,2.02 2.07,2.84 2.74,4.63 2.88,1.42 -1.86,1.68 -2.85,0.49 -2.27,-1.04 -4.5,0.48 -6.65,1.03 -2.34,-0.2 -1.23,1.76 0.05,1.9 -0.37,1.86 -3.04,0.49 -2.51,-0.96 -1.2,-1.89 -3.39,-0.47 -2.33,1.29 -1.38,1.24 -4.15,2.32 -3.59,4.73 0.1,1.81 2.93,0.33 2.17,2.72 0.04,2.14 -2.45,4.21 -1.09,6.19 2.04,0.05 4.71,2.28 3.01,4.32 -0.56,0.85 -3.08,4.05 -0.97,3.82 1.98,-0.87 4.5,-0.39 5.28,1.85 1.68,0.71 1.89,4.62 3.93,3.44 2.28,-2.68 4.41,3.96 6.19,0.2 0.56,-2.48 1.95,0.75 2.61,1.18 1.68,0.45 2.42,5.33 3.85,1.97 1.9,-0.61 2.25,-4.15 4.41,-2.96 2.18,-0.65 2.11,-4.38 4.7,-4.13 1.56,1.2 2.64,3.02 4.57,3.82 3.07,1.67 2.6,-2.97 4.56,-3.46 1.84,0.36 4.06,-1.35 5.21,0.56 1.19,-0.81 2.6,-1.81 3.71,-0.55 1.42,-0.11 4.73,-1.19 1.92,-2.19 -1.35,-1.2 2.26,-2.28 -0.08,-3.51 0.29,-1.03 3.95,1.85 4.85,-0.55 0.91,-2.66 3.44,-1.65 4.86,-0.2 3.02,0.64 1.63,-2.29 -0.12,-2.82 -2.05,-1.6 -2.63,-4.03 -4.84,-5.66 -2.89,-1.21 -0.33,-4.82 -3.03,-6.42 -1.52,-2.18 -0.87,-4.61 0.1,-6.86 -0.18,-2.84 3.58,-3.02 3.54,-5.58 0.04,-2.67 4.23,-2.08 4.01,-4.72 -0.43,-1.8 0.9,-3.4 2.1,-3.9 -1.19,-1.88 -3.77,-3.29 -3.4,-5.88 0.82,-2.4 3.87,-3.31 4.42,-6.02 0.5,-1.14 -0.06,-2.78 -1.51,-2.6 z", + "department-05" : "m 547.99,394.72 c -2.38,0.66 0.14,3.65 -2.04,4.59 -1.72,2.79 1.38,4.23 3.67,3.34 2.39,-0.55 0.11,3.63 2.6,4.03 0.47,1.76 0.32,4.23 -0.38,6.05 -1.48,-0.46 -3.11,-2.39 -4.34,-0.35 -2.25,0.76 -5.02,-1.36 -6.72,0.9 -1.11,1.7 -2.56,1.95 -3.87,0.46 -0.55,1.28 -4.19,1.53 -1.83,3.08 -0.94,2.26 -4.27,2.96 -6.39,2.25 -1.23,0.91 -1.35,3.15 -0.59,4.29 -1.22,2.28 -3.08,2.71 -5.48,3.19 -1.63,-1.42 -3.66,-0.27 -2.81,1.73 -0.72,1.97 -3.57,4.79 -0.27,5.87 1.2,0.81 1.12,1.93 -0.27,1.84 -0.36,2.15 -2.1,2.6 -3.75,1.29 -1.52,-0.34 -5.12,-2.62 -4.07,0.55 -0.41,1.39 2.93,2.85 0.39,3.11 -1.92,-1.14 -2.38,0.42 -1.36,1.93 -0.48,1.59 1.39,2.76 2.89,3.31 1.63,-0.31 3.02,1.4 4.87,0.66 1.62,0.26 -0.61,1.99 1.27,2.58 -1.05,2.29 3.4,0.59 1.78,2.97 0.12,1.55 -0.2,5.31 2.1,3.26 2.05,-1 4.29,-0.84 6.21,0.33 0.91,0.52 3.34,0.01 1.39,-0.84 -1.03,-1.7 -4.85,-4.53 -1.7,-6.04 1.62,0 1.19,3.71 3.13,2.57 -0.69,-1.31 0.59,-3.18 -0.89,-3.95 0.72,-1.83 1.98,-3.48 2.79,-5.24 1.98,-1.13 3.83,-2.62 5.33,-4.06 0.55,-2.47 4.01,0.2 4.36,1.68 1.17,1.24 3.19,5.35 3.76,1.42 -0.12,-1.55 -1.92,-3.72 0.84,-3.9 0.95,-0.85 2.77,1.43 3.17,-0.92 -1.08,-1.89 1.26,-3 2.06,-0.94 1.41,2.28 4.07,3.44 6.77,3.41 2.13,0.13 5.13,0.83 4.93,-2.31 1.73,-1.41 1.26,-4.25 4.01,-4.38 1.4,-2.29 3.54,-3.54 5.83,-4.74 1.17,-1.99 3.47,-1.95 4.93,-3.17 0.67,-2.95 6.23,1.05 4.2,-2.83 -2.19,-1.97 -1.76,-5.14 -1.75,-7.7 -1.52,-2.46 -4.35,-1.97 -6.64,-1.67 -2.02,-1.18 -4,-2.53 -5.8,-3.98 -0.48,-1.92 0.47,-3.94 -0.24,-5.89 -0.38,-2.63 -4.7,-0.2 -3.98,-3.67 -0.57,-1.87 -2.49,-5.8 -4.62,-2.96 -1.36,0.43 -3.53,-0.42 -3.04,1.99 -0.06,2.84 -3.63,0.47 -5.25,0.4 0.16,-2.01 -1.71,-4.09 -3.81,-2.68 -0.55,-0.15 -0.86,-0.68 -1.39,-0.87 z", + "department-38" : "m 506.21,344.54 c -1.88,1.33 -2.23,3.7 -3.32,5.52 -1.34,2.3 -4.23,2.26 -5.28,-0.2 -1.63,-1.26 -3.52,0.86 -4.4,1.39 1.17,1.3 1.8,2.91 3.88,3.67 1.31,1.91 -2.57,1.27 -2.93,3.19 -2.06,0.59 -1.33,3.63 -2.79,3.93 -1.48,-0.6 -0.86,1.43 -2.43,0.5 -2.33,-0.47 -4.27,1.29 -6,1.87 -1.18,-1.22 -3.3,-0.13 -1.21,0.96 1.61,1.13 3.81,3.06 1.1,4.43 -2.09,1.53 -4.17,3.49 -4.03,6.09 1.39,2.32 -0.56,6.97 3.37,6.92 1.73,-0.4 3.29,0.6 4.78,-1.36 1.66,-1.29 3.87,-1.73 5.01,0.03 1.52,1.35 2.19,3.28 4.49,1.68 -0.19,1.26 -0.96,4.15 1.21,2.89 1.74,0.94 1.9,2.4 0.45,3.29 1.63,2.94 0.62,5.97 -0.85,8.62 0.93,0.61 2.14,-1.99 3.53,-0.26 1.93,2.01 4.97,0.58 6.92,2.09 0.61,-0.46 2.39,-0.05 2.89,-1.65 0.65,-1.87 3.29,-0.55 1.34,0.75 -0.07,2.06 1.31,4.42 0.43,6.78 0.61,2.89 -1.23,6.17 -0.17,8.74 -0.34,1.42 -0.84,2.36 1.15,2.84 1.54,0.86 1.8,0.11 2.38,-0.56 2.2,1.13 3.44,4.49 6.11,4.38 1.81,0.1 4.74,3.29 5.87,-0.16 -0.07,-3.68 3.68,-0.6 5.62,-2.47 2.01,-0.73 1.35,-1.84 0.68,-3.02 1.72,-0.3 3.15,-2.8 4.65,-0.87 2.1,-0.43 3.17,-3.79 5.7,-2.12 1.86,0.27 3.49,-0.15 4.92,-1.35 1.13,0.91 3.29,2.59 2.84,-0.19 0.52,-2.11 0.19,-4.11 -1.34,-5.54 0.21,-1.88 -0.42,-3.23 -2.41,-2.34 -3.75,0.79 -3.51,-3.59 -1.43,-5.33 -1.62,-1.66 3.15,-4.86 -0.53,-4.45 -1.08,-0.84 -2.04,-1.13 -3.48,-0.51 0.71,-1.86 -0.03,-3.81 -1.05,-5.65 0.02,-2.43 0.68,-4.88 2.79,-6.15 -0.4,-2.19 -0.11,-4.49 -2.42,-6.09 -1.51,-2.03 -5.27,0.02 -6.22,-3.15 -1.31,-2.51 -4.19,-0.31 -3.7,1.79 -1.06,1.18 1.08,4.22 -1.58,3.15 -1.76,-1.2 -3.8,-3.06 -6.16,-2.68 -1.03,-2.41 -2.12,-5.17 -3.71,-7.54 -1.49,-2.29 -2.42,-5.24 -4.04,-7.47 -2.05,-1.32 -1.69,-4.2 -4.09,-5.63 -1.56,-1.81 -3.52,-3.85 -3.25,-6.16 -0.86,-1.11 -1.94,-2.11 -3.29,-2.57 z", + "department-73" : "m 528.16,341 c 0.35,3.72 -2.24,6.95 -2.01,10.67 0.1,2.01 -0.58,5.1 -3.24,4.31 -0.43,1.18 -0.8,3.5 -1.67,4.48 -2.51,0.74 -2.36,3.37 -0.57,4.81 0.93,2.31 2.34,4.23 3.26,6.58 -0.17,1.78 0.96,2.22 2.43,1.92 1.76,1.08 3.64,1.93 5.33,2.99 0.87,-0.84 -0.73,-2.31 0.55,-3.46 -0.12,-1.78 1.2,-3.68 3.21,-2.61 1.1,1.74 2.37,3.4 4.64,2.84 2.27,0.25 3.8,2.63 4.54,4.68 0.36,1.5 0.44,3.81 -1.67,4.51 -0.76,1.6 -1.21,3.9 -0.45,5.48 1.39,1.25 0.79,2.93 0.5,4.28 1.2,-0.09 2.15,-0.82 3.27,0.45 2.17,-0.4 2.46,4.16 4.9,1.97 2.63,0.04 0.95,3.94 3.55,3.69 1.62,0.4 4.26,1.17 3.61,-1.57 0.15,-2.51 3.33,0.03 4.25,-2.3 2.39,1.02 4.15,-0.9 6.2,-1.32 1.67,-0.64 2.89,-1.71 4.58,-0.27 0.86,1.73 4.44,1.23 3.34,-0.98 2.96,-0.22 3.03,-3.89 6.13,-3.81 1.12,-1.22 2.89,1.16 3.11,-1.12 2.54,-0.93 1.89,-3.28 1.07,-5.24 0.54,-1.73 2.07,-3.23 2.76,-5.1 0.35,-2.33 -3.37,-2.25 -3.54,-4.68 -1.48,-1.57 -3.47,-2.39 -4.85,-4.16 0.27,-1.97 -1.2,-3.82 -0.64,-5.76 1.75,-2.42 -1.85,-2.52 -3.12,-3.34 -1.24,-1.6 -4.56,-1.92 -4.61,-4.76 0.32,-1.85 -1.36,-3.51 -2.59,-1.43 -0.39,1.65 -3.27,3.17 -2.65,0.38 -0.11,-2.47 -2.2,-3.62 -4.41,-3.02 -1.75,-1.13 -3.62,-3.87 -1.33,-5.28 -0.65,-2.14 -3.49,-1.94 -4.36,-0.05 -1.44,1.91 -1.25,4.9 -3.66,6.11 -1.87,2.17 -1.6,6.61 -5.3,6.55 -1.34,0.69 -2.15,-0.24 -2.58,-1.16 -2.37,1.73 -0.5,-3.64 -3.3,-3.5 -0.96,0.26 -2.31,-0.37 -2.17,1.15 -2.03,-0.44 -5.65,0.22 -5.65,-3.01 -0.25,-1.87 -2.33,-1.33 -3.5,-2.01 -1.48,-1.5 -1.27,-4.07 -1.6,-6.29 0.01,-1.1 -0.75,-1.73 -1.73,-1.62 z", + "department-74" : "m 564.76,306.43 c -2.47,0.62 -5.51,-0.54 -7.48,1.57 -1.52,1.73 -3.75,1.96 -5.89,2.12 -1.97,0.39 -2.97,2.38 -4.35,3.67 -1.65,1.56 1.06,2.57 0.25,4.17 -0.09,2.18 3.52,0.59 2.24,2.89 -1.49,1.45 -3.64,2.16 -4.84,3.94 -0.54,2.24 -3.41,2.73 -5.28,1.92 -2.23,0.66 -4.6,0.8 -6.85,1.51 -2.16,-0.26 -0.66,3.85 -3.07,2.57 -0.79,-0.6 -1.45,-1.68 -1.68,-0.05 -0.63,2.06 -0.34,4.25 -0.34,6.37 1.88,1.17 -0.08,3.96 2.4,4.32 0.17,1.93 0.65,3.96 0.64,5.96 1.07,0.82 1.6,2.58 3.2,1.53 0.88,0.13 0.55,1.3 1.58,1.55 -0.54,1.95 1.99,3.65 3.72,2.82 1.5,1.44 1.43,-1.59 2.61,-0.6 1.78,-0.8 3.39,1.12 3.44,2.85 -0.33,1.6 1.97,-0.38 1.83,1.5 1.74,0.8 4.89,0.04 4.99,-2.32 0.35,-1.06 1.42,-1.99 1.19,-3.04 1.59,-1.28 3.12,-2.82 3.5,-4.91 0.29,-1.68 1.88,-3.9 3.55,-3.77 1.45,0.28 3.23,2.49 1.02,3.1 -0.26,1.75 1.71,4.26 3.56,3.85 1.8,-0.82 3.15,1.46 3.11,3.02 0.11,1.05 0.38,2.51 1.57,1.12 0.48,-2.17 3.83,-2.17 3.36,-4.65 -0.04,-1.75 1.82,-1.78 2.78,-1.88 0.32,-1.93 2.75,0.2 3.94,-1.24 1.92,-0.72 2.65,-2.74 3.46,-4.46 1.07,-1.81 -0.81,-3.55 -1.3,-5.23 -1.54,-0.97 -2.38,-4.43 -4.39,-3.39 -2.46,1.2 -1.22,-2.52 -0.81,-3.62 0.45,-2.38 -5.13,-0.6 -4.45,-3.46 0.63,-1.52 0.27,-3.31 1.13,-4.7 1.66,-1.42 2.02,-3.72 0.13,-5.18 -1.28,-1.29 -2.78,-3.1 -0.71,-4.33 1.13,-1.5 0.53,-3.97 -1.56,-4.12 -2.01,-0.66 -4.04,-1.43 -6.18,-1.43 z", + "department-71" : "m 453.97,260.36 c -1.7,0.76 -3.89,0.82 -5.01,2.19 -3.19,-0.21 -2.31,3.21 -1.24,4.78 0.01,2.17 -2.18,3.07 -3.18,4.73 3.67,-1.68 1.21,3.06 2.15,4.73 2.64,1.04 2.65,3.75 0.11,4.66 0.67,1.67 1.23,4.24 -1.54,3.66 -2.78,0.52 -4.41,3.5 -7.35,3.66 -1.2,1.61 -3.28,1.92 -3.49,-0.48 -1.65,-2.53 -4.63,-0.04 -6.98,-0.58 0.57,3.06 3.65,4.82 4.22,7.82 0.75,1.41 1.18,3.47 0.99,5.08 2.04,1.85 5.27,-0.04 5.82,3.26 1.08,1.35 3.62,-1.11 4.91,1.13 2.56,1.38 0.02,4.04 0.37,6.08 0.06,1.87 1.72,4.92 -1.23,4.69 -0.63,1.31 -3.78,1.57 -2.13,3.67 -1.04,1.85 -0.29,4.31 2.16,3.67 1.09,1.48 2.46,3.31 4.3,1.41 2.27,-2.66 4.88,2.5 6.7,-0.65 1.34,0.75 3.65,-0.04 2.69,2.22 1.65,0.02 3.16,-2.01 5.15,-2 1.19,-2.22 0.14,-5.86 2.62,-7.28 2.52,0.05 4.61,3.79 6.38,0.45 0.58,2.51 2.95,1.43 3.29,-0.51 2.49,-1.24 4.02,1.89 2.39,2.85 2.76,0.76 1.61,3.13 1.87,5.09 3.75,1.26 2.77,-4.7 4.36,-6.77 1.05,-2.9 1.52,-5.83 2.78,-8.64 0.84,-2.16 1.01,-4.91 2.57,-6.52 1.57,0.12 3.15,-0.61 4.21,1.23 2.7,1.53 7.09,-3.92 8.31,0.83 1.01,2.83 4.3,2.08 6.39,1.08 2.34,0.51 4.17,-2.3 1.2,-2.95 -1.86,-1.31 -1.41,-5.18 1.03,-5.11 -0.29,-1.51 0.28,-2.26 1.34,-3.13 -1.26,-2.48 -1.08,-5 -3.19,-7.15 1.37,-1.38 0.91,-2.7 -0.97,-3.3 -2.12,-3.08 4.27,-2.04 5.27,-3.08 -2.01,-1.05 -2.54,-4.3 -5.1,-3.15 -2.06,-0.25 -1.37,-4.84 -3.92,-3.05 0.08,-1.67 -0.33,-4.36 -2.71,-3.02 -2.08,0.62 -4.65,2.85 -6.22,0.57 -2.22,-1.78 -3.53,2.05 -5.94,0.23 -2.24,0.43 -4.32,1.81 -6.55,2.75 -1.83,0.18 -3.34,0.81 -5.05,1.44 -1.04,-0.89 -0.19,-2.78 -2.45,-2.61 -2.38,-0.24 -3.18,-4.05 -4,-4.76 -2.09,-0.05 -3.73,-1.74 -5.85,-2.18 -0.82,-0.81 -0.06,-3.57 -1.95,-1.73 -2.05,1.86 -0.28,-3.07 -2.99,-2.19 -2.63,0.44 -2.45,-2.64 -4.56,-3.1 z", + "department-03" : "m 397.2,283.6 c -0.53,0.03 -0.65,0.93 -1.28,0.58 -1.07,-0.24 -1.29,1.09 -2.18,1.35 -0.68,0.38 -0.83,1.21 -1.57,1.57 -0.59,0.3 -0.37,1.08 -0.67,1.47 -0.82,-0.75 -2.14,-0.58 -2.85,0.25 -0.56,0.51 -1.31,0.26 -1.58,-0.42 -0.26,-0.45 -0.61,-1.5 -1.29,-0.94 -0.65,0.39 -0.38,1.55 -1.28,1.63 -0.49,0.33 -0.44,1.07 -1.07,1.29 -0.54,0.29 -0.85,0.95 -1.54,0.66 -0.62,0.1 -0.27,0.76 -0.06,1.06 0.07,0.49 -0.16,1.38 -0.8,0.88 -0.59,-0.44 -1.77,-0.28 -2.01,0.33 0.58,0.17 1.69,0.86 1,1.55 -0.36,0.28 -0.06,0.77 -0.23,1.04 -0.67,0.39 -0.15,1.28 0.46,1.35 0.61,0.77 0.55,1.86 0.72,2.79 -1.18,0.73 -2.34,1.71 -3.62,2.11 -0.29,-0.68 -0.88,-0.33 -1.32,-0.08 -0.47,0.1 -0.2,-0.76 -0.8,-0.58 -1.03,0.35 -2.03,0.8 -3.17,0.71 -1.3,0.06 -2.78,0.14 -3.58,1.33 -0.8,0.47 -0.02,1.59 -0.84,2.01 -0.42,0.05 -0.96,-0.06 -1.15,0.48 -0.78,1.48 -0.9,3.37 -0.4,4.96 0.26,0.38 0.79,0.29 1.15,0.57 0.49,0.09 1.26,0.02 1.06,0.79 0.02,0.4 -0.72,0.13 -0.85,0.54 -1.01,0.83 0.27,2.03 1.17,2.2 0.58,-0.08 0.87,0.54 1.33,0.59 0.39,-0.14 0.38,-1.36 0.9,-0.77 0.76,0.62 1.67,1.41 1.25,2.52 0.36,0.53 0.91,-0.64 1.46,-0.19 0.81,0.23 1.7,0.87 1.45,1.84 0.14,1.11 1.68,1.3 1.67,2.49 0.4,1.14 -0,3.01 1.48,3.41 0.81,0.19 0.41,1.35 0.75,1.93 0.25,0.78 1.04,1.13 1.79,1.18 0.65,0.32 1.81,1 2.22,-0.03 0.46,-0.9 0.75,-1.9 1.09,-2.8 0.55,-0.73 1.89,-0.29 2.08,-1.36 0.24,-0.68 -0.44,-1.52 0.43,-1.96 0.66,-0.22 0.95,0.83 1.63,0.76 0.55,0.39 1.4,1.36 2.04,0.56 0.42,-0.83 -0.03,-1.98 0.37,-2.71 0.72,-0.31 1.49,-1.18 2.3,-0.64 1.07,0.12 2.57,-0.1 3.28,0.88 -0.24,0.56 -0.03,1.41 -0.79,1.61 -0.76,0.37 -0.44,1.16 -0.29,1.75 -0.13,0.49 -0.09,1.14 0.58,1.12 0.68,-0.1 1.21,0.33 1.13,1.02 0.09,0.86 0.18,2.33 1.42,2.14 0.89,0.14 1.21,1.58 2.25,1.17 0.81,0.52 1.65,-0.25 2.49,-0.28 0.45,0.5 0.3,1.19 0.45,1.75 0.87,0.19 1.51,1 2.48,1.02 0.76,0.25 1.24,-0.53 2.01,-0.38 0.48,-0.11 0.79,0.09 1.13,0.28 0.44,-0.22 0.55,0.55 1.06,0.34 1.38,-0.06 2.97,-0.26 4,0.88 0.96,0.41 1.66,-0.65 2.44,-0.96 0.64,0.07 1.32,-0.9 1.79,-0.16 0.31,0.43 0.85,0.4 1.28,0.42 0.72,0.93 0.57,2.17 0.55,3.26 1.03,0.14 2.05,-0.24 2.95,-0.62 0.45,0.01 0.76,0.46 1.28,0.23 0.59,0.08 1.31,-0.75 1.72,0 0.77,0.99 1.15,2.22 1.65,3.32 0.67,0.5 2.27,0.29 2.14,1.5 0.41,0.47 0.99,-0.52 0.95,-0.95 -0.15,-0.63 0.53,-1.04 1.07,-0.73 0.48,0.22 1.27,0.4 1.28,-0.34 0.41,-0.77 1.09,0.48 1.68,-0.03 0.66,-0.43 2.17,-0.85 1.53,-1.93 -0.55,-1.45 -0.99,-3.06 -0.37,-4.56 0.35,-0.94 -0.22,-1.78 -0.75,-2.44 -0.09,-0.98 -0.2,-2.05 -0.29,-3.01 0.9,-0.02 0.57,-0.74 0.19,-1.26 -0.62,-1 0.1,-2.51 -0.98,-3.26 -0.34,-0.41 -0.36,-1.4 0.42,-1.13 0.62,0.33 1.04,-0.24 1.05,-0.81 0.86,-0.77 2.51,-0.06 3.19,-1.15 0.39,-0.12 0.9,-0.24 0.79,-0.8 0.24,-1.13 2.3,-0.37 2.35,-1.71 -0.01,-1.08 1.5,-0.38 2.04,-0.87 -0.47,-0.98 0.15,-2.27 -0.18,-3.37 -0.22,-0.75 -0.56,-1.54 -0.06,-2.26 -0.09,-0.66 0.49,-1.17 0.25,-1.83 0.92,-0.68 0.27,-2.39 -0.81,-2.61 -0.47,-0.05 -0.91,-0.14 -0.99,-0.67 -0.62,-0.48 -1.88,-0.87 -2.29,0.07 -0.58,0.43 -1.56,-0.12 -1.78,-0.72 0.04,-0.44 0.16,-1.45 -0.59,-1.13 -0.61,-0.09 -0.16,-0.76 -0.46,-1.01 -0.68,-0.03 -1.24,0.99 -1.91,0.34 -0.7,-0.25 -1.13,-1.1 -1.96,-0.88 -0.71,-0.06 -1.29,-0.9 -0.77,-1.51 0.12,-0.95 0.28,-2.27 -0.52,-2.97 -0.67,-0.08 -0.6,-0.63 -0.36,-1.08 -0.11,-0.87 -0.73,-1.6 -0.95,-2.44 -0.41,-0.57 -1.28,-0.79 -1.36,-1.54 -0.43,-0.32 -0.76,-0.7 -0.76,-1.26 -0.23,-0.42 -0.82,-0.6 -0.66,-1.2 -0.07,-0.72 -0.65,-1.29 -0.65,-2 -0.38,-0.23 -0.96,-0.06 -1.13,-0.6 -0.76,-0.3 -0.78,0.93 -0.41,1.32 0.52,0.51 0.35,1.1 -0.32,1.27 -0.46,0.18 -1.77,-0.11 -1.37,0.76 0.22,0.53 0.68,1.24 -0.05,1.6 -0.45,0.63 -0.72,-0.73 -1.25,-0.14 -0.73,0.55 -1.34,1.34 -1.72,2.1 -0.7,0.19 -2.06,0.06 -1.81,-0.97 0.28,-0.69 0.26,-1.75 -0.66,-1.9 -0.06,-0.42 -0.09,-1.15 -0.73,-0.99 -0.6,-0.11 -1.41,-0.35 -1.66,0.43 -0.42,1.36 -2.42,1.83 -3.19,0.53 -0.36,-0.46 -0.4,-1.37 -1.24,-1.2 -0.93,-0.04 -1.39,0.93 -2.18,1.27 -0.52,0.67 -1.46,1.45 -2.3,0.76 -1.65,-0.71 -2.01,-3.06 -3.96,-3.3 -1.62,-0.6 -2.82,-2.05 -3.15,-3.73 -0.68,-0.77 -1.92,-0.52 -2.83,-0.76 l -0.03,0.01 z", + "department-58" : "m 403,231.74 c -1.61,0.85 -3.16,2.61 -5.05,1.25 -1.93,0.57 -4.68,0.4 -5.94,1.66 1.17,1.4 2.03,2.95 2.66,4.63 1.41,1.6 0.66,3.61 -0.14,5.29 -1.13,1.89 -2.63,4.76 0.46,5.69 1.61,1.55 3.43,2.81 3.01,5.3 0.69,2.02 1.61,4 1.89,6.16 0.66,1.8 -0.92,4.42 1.24,5.56 2.12,1 -0.1,3.53 0.9,5.04 0.58,2.1 -1.6,3.95 -0.29,6.07 0.71,2.09 -0.94,3.84 -1.39,5.75 -0.16,2.28 2.09,3.67 3.99,4.26 1.45,1.18 3,4.59 5.07,2.2 1.39,-2.15 3.2,-1.4 4.21,0.47 1.89,0.79 3.52,-3.53 5.01,-0.9 1.15,0.73 0.12,3.44 2,3.08 0.82,-1.25 2.25,-2.27 3.42,-2.12 -0.45,-1.58 -0.46,-2.4 1.31,-2.25 -0.04,-1.1 -0.2,-3.79 1.47,-2.05 1.98,1.69 4.21,-0.24 6.42,0.3 1.65,0.48 1.92,4.5 3.88,2.11 1.32,-1.3 3.38,-1 4.65,-2.37 1.34,-1.63 3.98,-1.82 5.37,-2.35 0.36,-1.68 -1.59,-3.7 0.98,-4.22 2.45,-1.92 -2.44,-2.83 -1.99,-4.92 0.77,-1.4 0.79,-4.58 -1.37,-3.13 -1.32,-1.27 2.65,-1.88 2.41,-3.81 1.13,-2.15 -2.17,-3.91 0.01,-5.72 1.51,0.02 2.3,-1.19 2.99,-1.85 1.63,-0.25 4.07,0.09 4.06,-2.15 1.61,-1.8 -0.93,-5.24 -2.87,-4.31 -2.41,-0.08 -1.25,-4 -1.32,-5.69 -1.6,-1.91 -3.82,0.35 -5.22,1.11 -2.31,-0.58 -1.44,-3.5 -2.39,-4.88 -1.39,-0.39 -3.82,2.68 -4.21,0.09 0.57,-1.02 1.94,-3.49 -0.37,-2.94 -1.09,1.17 -0.89,4.3 -3.02,2.53 -0.82,-1.43 -3.58,0.43 -3.95,-1.99 -1.39,-1.5 -3.37,-2.87 -5.27,-2.64 -0.47,-1.77 -1.23,-2.94 -2.84,-3.91 -0.77,-0.83 -1.17,-3.5 -1.49,-0.9 0.69,2.28 -0.99,3.03 -2.81,1.79 -2.14,-0.98 -3.42,3.82 -4.92,1.46 -1.47,-1.84 -3.98,0.9 -4.9,-1.51 -1.01,-1.69 -2.86,-0.31 -4.03,-2.06 -1.13,-0.72 0.21,-3.16 -1.65,-3.11 z", + "department-89" : "m 416.07,178.07 c -1.02,3.01 -4.52,0.42 -6.35,1.97 -2.2,0.17 -4.84,-1.18 -6.41,1.04 -2.57,-1.79 -3.92,2.41 -3.23,4.37 1.68,1.97 -0.59,4.61 -2.42,5.5 -1.87,0.69 -2.43,2.92 0.08,3.27 3.44,0.48 2.14,5.14 5,6.43 1.86,1.41 0.82,2.99 1.95,4.97 -0.66,1.96 -2.64,3.26 -4.2,4.59 -2.15,0.99 -1.21,3.09 -0.29,4.3 -1.27,1.6 0.94,4.33 -2.29,4.25 -1.68,2 -6.04,-0.22 -5.91,3.16 -0.16,1.79 1.73,0.84 2.05,2.41 1.23,1 1.51,2.38 2.4,3.59 -1.59,1.67 0.31,4.3 2.07,5.11 2.02,1.43 3.87,-2.51 5.6,-0.9 -0.48,3.02 2.39,3.66 4.54,4.3 0.65,2.89 3.81,-0.1 5.39,2.05 2.16,0.59 3.06,-3.06 5.43,-1.44 3.12,2.56 0.69,-6.07 2.79,-2.47 0.34,2.17 3.6,2.68 3.38,5.11 2.35,0.08 4.35,1.34 5.66,3.39 1.5,1.65 3.35,0.01 4.61,1.97 1.13,-0.63 1.69,-5.29 3.46,-2.37 0.17,1.13 -2.33,3.48 0.33,3.18 1.2,-1.21 4.18,-1.8 3.34,0.93 -0.16,2.01 2.22,4.07 3.49,1.59 1.54,-0.36 3.98,-1 1.98,-2.64 -1.02,-1.45 -0.96,-2.97 0.11,-4.3 3.25,-0.51 -0.48,-4.66 2.32,-6 2.17,-2.35 2.86,-5.81 4.59,-8.49 -1.41,-1.48 0.29,-1.3 1.02,-2.22 -0.49,-1.38 -1.69,-2.55 0.39,-3.26 3.6,0.23 2.54,-4.47 2.26,-6.7 -1.12,-0.71 -3.42,0.85 -2.86,-1.65 -1.36,-1.73 4.34,-3.1 0.86,-3.74 -2.2,0.32 -2.21,-2.85 -3.24,-2.99 0.17,2 -0.72,2.05 -1.83,0.88 -1.33,1.07 -2.82,2.87 -4.14,0.8 -1.05,0.35 -1.78,1.79 -3.13,0.43 -1.52,0.35 -3.34,0.31 -5.13,0.58 0.09,-1.31 1.54,-4.13 -0.4,-4.48 -0.29,2.73 -3.6,-0.65 -1.05,-0.91 -1.81,-2.12 -2.57,-4.79 -3.64,-7.42 -1.51,-0.41 -2.48,-0.79 -1.75,-2.59 -1.08,-1.86 -1.8,2.43 -3.8,1.17 -0.25,-1.72 -1.5,-3.76 -3.26,-2.47 -1.89,-0.87 2.48,-2.37 0.41,-3.67 2.2,-1.9 -1.21,-2.95 -1.4,-4.71 -1.76,-1.44 -2.8,-5.31 -5.82,-4.03 -1.46,1.55 -1.28,-2.45 -2.97,-1.89 z", + "department-77" : "m 402.05,130.64 c -0.98,0.49 0.07,2.55 -1.72,1.71 -1.65,-0.86 -2.4,2.1 -3.31,-0.03 -2.1,0.41 -4.58,1.91 -6.32,0 -1.77,-1.32 -2.95,3.72 -4.59,0.96 -2.01,1.88 -2.83,-3.58 -5.07,-1.24 -1.29,0.64 -1.74,2 -1.24,3.05 -0.95,0.81 -3.15,2.12 -0.8,2.44 0.51,1.65 0.36,3.31 1.46,4.83 0.2,1.84 -2.51,3.56 -0.73,5.06 -0.36,1.84 1.1,3.56 0.49,5.57 1.71,0.58 -0.41,2.58 -0.68,3.73 -0.83,0.92 1.08,3.6 -1.37,3.26 -0.89,0.8 0.48,2.47 -1.19,2.92 1.1,1.07 0.89,1.9 0.01,2.91 -0.77,1.91 -0.97,4.13 -0.7,6.31 -0.66,1.98 -0.02,4.05 1.47,5.35 -1.96,0.5 -3.65,1.61 -4.81,3.16 0.68,1.87 -2.82,1.21 -1.16,3.11 1.12,1.38 -0.36,3.98 2.42,3.8 2.91,0.69 3.08,4.37 1.74,6.29 -1.65,-0.84 -2.88,2.95 -0.41,1.95 1.73,-0.49 3.18,-1.28 5.02,-0.34 1.93,-0.8 3.99,1.78 5.7,-0.31 1.86,-0.31 -0.29,-2.14 1.35,-1.79 1.18,-0.45 3.04,-0.08 1.95,1.41 1.33,2.12 2.96,-1.69 4.98,-1.18 1.67,-0.49 2.06,-2.91 4.05,-3.24 1.12,-1.43 2.9,-3.37 1.15,-5.05 -0.16,-1.63 0.37,-3.9 1.72,-4.82 2.36,0.85 4.12,-2.06 6.45,-0.5 2.32,-0.04 4.02,-1.12 6.35,-0.55 1.28,-0.24 1.31,-2.3 2.98,-1.19 2,-0.66 -1.7,-2.32 -0.05,-3.59 -0.5,-1.21 -1.19,-2.87 0.87,-2.81 1.09,-0.89 -2.02,-3.22 0.6,-2.74 1.77,0.23 2.39,-1.17 1.6,-2.47 1.17,-1.39 2.01,-2.57 3.58,-3.44 -1.04,-1.49 -2.62,-1.68 -4.07,-1.01 -1.93,-1.91 1.07,-3.45 0.32,-5.34 0.3,-1.53 -1.55,-1.92 -2.52,-2.41 -1.25,-0.38 0.19,-2.49 1.3,-2.24 0.34,-0.82 -2.8,-1.79 -0.49,-1.8 1.33,0.7 3.87,-1.63 2.13,-2.17 -1.66,1.45 -1.37,-1.76 -3.39,-1.23 -2.08,-0.53 -0.39,-4.63 -3.08,-2.96 -1.53,-0.07 -0.54,-3.09 -2.68,-1.87 -1.2,-1.64 -2.76,-4.17 -5.07,-5.24 0.91,-1.5 1.06,-2.88 -0.12,-4.29 -0.33,-2.14 -2.62,-1.35 -4.08,-1.98 z", + "department-10" : "m 457.73,157.29 c -2.13,0.5 -4.1,0.01 -6.19,0.69 -1.05,1.79 -3.96,-1.12 -4.04,1.65 -0.8,1.75 -4.08,0.09 -3.96,2.74 -0.79,1.45 -1.6,1.88 -2.99,2.35 -0.52,1.42 -1.24,1.3 -2.41,1.49 0.59,1.46 -0.11,4.83 -2.36,3.62 -2.16,-0.98 -4.56,-1.03 -6.89,-0.99 -1.9,-0.17 -0.8,-3.17 -2.94,-2.89 -0.63,-2.25 -3.58,-3.04 -4.15,-0.61 -2.73,0.52 0.33,3.88 -2.69,3.9 -1.65,-0.53 -1.58,0.55 -0.76,1.57 1.13,1.8 -3.04,0.94 -1.25,3.05 0.42,1.28 -0.32,2.49 1,3.48 -1.08,1.82 0.38,3.42 2.02,2.16 1.85,0.1 2.84,1.8 3.75,3.14 1.48,1.39 2.14,3.14 3.41,4.6 -1.41,1.17 0.77,2.62 -1.14,3.49 -1.3,1.27 0.05,1.7 1.09,0.98 1.77,0.49 1.45,4.11 3.67,2.68 0.94,-0.2 0.63,-2.76 2.01,-1.09 0.65,0.86 -0.95,2.76 1.1,2.37 2.02,1.3 1.83,4.2 3.05,6.1 1.58,0.78 1.7,2.3 0.49,2.9 0.54,1.51 1.71,0.28 1.97,-0.31 2.56,0.7 -1.28,5.42 2.12,4.33 1.91,-0.23 3.38,-0.23 5.06,0.09 0.59,-1.33 1.98,-1.11 2.57,0.19 1.58,-0.22 2.9,-3.31 4.17,-0.98 0.61,-0.58 -0.29,-2.65 1.36,-1.57 -0.48,2.55 3.68,3.96 3.75,0.78 1.55,-0.59 3.74,-0.45 5.58,-0.63 1.75,0.63 3.69,-0.42 5.57,-0.41 0.29,-1.14 -1.61,-2.57 0.46,-3.04 1.86,-2.3 4.62,1.06 6.58,-0.66 1.53,-1.62 -1.39,-2.98 -1.79,-3.56 2.1,-0.49 3.01,-3.71 5.54,-1.94 3.54,1.4 1.49,-3.68 3.11,-5.2 0.87,-1.45 -1.51,-1.82 -0.48,-3.12 0.78,-2.08 -0.11,-3.86 -1.22,-5.55 1.83,-2.28 -2,-1.74 -2.8,-3.27 0.6,-2.31 -3.01,-0.73 -2.93,-2.86 -0.68,-1.21 -1.21,-2.36 -2.64,-3.04 -0.15,-0.98 1.41,-1.57 1.07,-2.96 1.69,-2.03 -2.24,-4.27 -3.96,-2.73 -1.05,0.86 -1.8,1.41 -2.76,0.14 -2.27,0.33 -4.96,-0.93 -6.52,-2.73 -1.6,-0.9 -2.65,-2.09 -2.11,-3.94 -0.01,-1.39 0.86,-4.72 -1.54,-4.44 z", + "department-51" : "m 447.04,111.45 c -0.85,1.01 -1.08,4.16 -2.83,2.12 -1.58,-0.94 -4.14,-2.71 -5.55,-0.59 -0.47,1.86 -2,2.53 -3.66,1.62 -2.11,0.93 -4.6,1.61 -6.36,2.87 -0.53,2.28 1.53,4.27 0.51,6.61 1.8,0.71 2.46,2.17 3.95,3 -0.94,2.45 -4.1,0.37 -5.88,1.52 -1.7,1.66 2.4,4.41 -0.88,5.43 -2.23,2.44 5.5,0.69 2.68,3.64 -2.5,1.8 -3,5.45 -5.92,6.76 -2.49,1 -1.18,4.96 -2.87,5.99 -1.36,-0.13 -2.85,0.17 -1.28,1.25 -0.7,1.1 -2.96,2.55 -0.28,3.03 3,1.24 1.1,4.28 0.73,6.33 0.94,1.84 3.99,-0.48 4.72,2.18 0.97,2.24 3.46,2.39 3.8,4.7 1.7,2.1 4.48,-0.15 6.49,1.41 1.87,1.23 4.49,0.11 3.61,-2.32 0.72,-2.05 4.22,-2.38 4.98,-4.55 1,-2.47 4.06,-1.56 4.95,-3.87 1.36,-1 2.53,0.52 3.92,-0.8 1.98,-0.43 4.01,-0.73 6.02,-0.59 2.43,0.46 1.84,3.16 1.42,4.89 0.07,2.8 2.97,4.48 5.15,5.65 2.17,0.01 4.61,2.13 6.41,0.29 1.75,-1.51 3.47,1.15 5.44,0.69 1.38,-0.17 5.75,0.76 3.67,-1.89 -1.52,-2.95 5.7,-2.41 2.65,-5.48 -1.1,-0.11 -3.65,-0.35 -1.73,-1.74 2.05,0.26 4.2,-0.05 6.08,-0.37 2.3,0.42 5.1,-2.57 2.7,-4.35 -1.02,-1.86 -5.76,-3.17 -3.53,-5.51 1.95,-1.47 -1.1,-4.2 1.12,-5.8 1.48,-1.5 6.06,-1.27 3.62,-4.43 0.08,-0.05 1.84,-2.53 -0.16,-3.07 -3.37,1.1 0.99,-2.04 -0.42,-3.46 0.13,-2.66 -3.59,-5.3 -1.68,-7.58 2.23,-1.77 -1.54,-3.71 -3.12,-4.06 -1.16,0.6 -1.58,2.95 -3.32,1.4 -1.92,-0.84 -4.19,-0.61 -6.28,-0.69 -1.94,1.7 -3.65,0.28 -4.11,-1.83 -1.78,-2.74 -4.95,1.45 -7.53,-0.27 -2.04,-1.12 -3.55,-2.8 -5.87,-3.47 -1.97,-2.67 -5.03,-4.71 -8.47,-4.58 -0.96,-0.06 -1.92,0.15 -2.86,-0.07 z", + "department-02" : "m 430.16,68.04 c -1.21,0.83 -2.32,3.01 -4.11,1.54 -1.81,-2.61 -3.41,0.5 -5.32,1.07 -2.18,0.63 -4.39,-2.01 -6.45,-0.26 -1.68,1.82 -4.04,-1.37 -6,0.14 -1.73,0.41 -2.66,2.19 -0.51,2.52 -1.27,1.85 -3.05,3.07 -3.52,5.47 0.07,1.82 -3.05,3.76 -2.22,5.05 2,1.39 -1.77,3.7 1.27,4.17 0.03,2.02 1.57,4.06 1.1,6.24 -1.34,0.98 -0.25,2.25 -1.01,3.49 2.49,1.68 1.44,5.41 0.18,6.99 1.25,1.47 -0.33,3.13 2.08,3.55 1.93,2.17 -4.06,0.32 -2.49,3.12 -0.03,2.09 -1.26,5.68 -3.84,4.98 -2.94,-0.88 -1.76,3.18 0.48,3.05 0.99,1.01 0.03,3.83 0.62,5.08 1.37,0.51 2.25,1.48 3.49,1.21 -0.51,1.59 2.6,2.48 0.04,3.45 -1.71,0.49 -1.76,2.46 0.31,2.05 2.65,0.21 3.58,4.11 2.26,5.97 1.62,1.27 3.48,2.23 4.22,4.3 0.74,1.63 2.35,-0.47 2.52,1.87 0.72,2.19 2.68,-1.33 2.65,1.31 -0.24,2.49 3.53,2.85 4.12,3.91 1.75,-1.8 2.07,-4.56 4.88,-5.19 0.68,-2.23 2.35,-3.4 3.55,-5.39 2.67,-0.52 -0.65,-3.26 -2.06,-1.85 -2.26,-0.47 0.23,-2.88 1.31,-3.13 -0.73,-1.44 -2.36,-4.14 0.26,-4.66 1.65,-0.44 4.91,1.29 4.79,-1.49 -2.06,0.27 -1.99,-2.15 -3.88,-2.4 0.6,-1.8 -0.18,-4.32 -0.79,-6.48 1.32,-1.8 3.96,-1.53 5.66,-2.91 1.45,-1.38 4.53,1.53 4.01,-1.33 1.45,-1.59 3.81,-2.88 5.19,-0.49 1.28,-0.12 3.37,2.53 3.3,-0.24 0.33,-2.86 0.57,-4.99 0.01,-7.76 1.55,-0.89 1.69,-2.64 0.84,-3.44 1.81,-1.93 -3.62,-5.62 0.69,-5.56 3.16,1.39 1.54,-3.2 4.12,-3.75 1.57,-1.42 5.27,-4.07 2.24,-5.67 0.32,-1.83 0.55,-4.01 1.75,-5.91 1.09,-2.4 -2.7,-2.87 -1.03,-5.36 -0.92,-1.56 -3.39,-2.21 -5.32,-1.52 -1.91,-0.8 -7.18,-0.15 -5.51,-3.66 -0.63,-2.33 -4.88,3.03 -5.11,-0.11 -1.96,-1.5 -4.73,-0.41 -6.75,-2.06 -0.64,-0.23 -1.39,-0.27 -2,0.09 z", + "department-59" : "M 377.51,2.78e-5 C 374.07,1.47 370.51,2.66 366.77,2.44 c -3.1,0.89 -6.29,1.6 -9.18,3.02 1.24,2.59 3.27,6.24 4.33,9.49 0.45,3.3 2.89,5.84 6.41,5.27 1.94,-0.78 4.85,1.64 1.47,1.89 -2.68,1.66 1.93,3.12 0.19,5.04 2.78,-0.45 4.23,3.9 7.14,2.5 1.81,1.18 3.37,-0.01 5.36,1.07 1.63,-1.32 3.21,-0.63 4.48,0.93 0.73,-1.57 2,-1.61 0.95,-3.07 1.61,-2.58 6.95,1.51 2.94,2.57 -2.83,1.01 0.34,3.73 -1.12,5.39 0.9,1.48 4.86,-1.3 3.65,1.61 2.92,-0.02 7.29,0 6.35,4.16 1.35,-0.92 3.57,-0.15 1.94,1.67 -3,0.14 -4.31,3.74 -1.12,5.07 1.69,0.96 2.08,2.48 0.62,3.67 0.34,2.55 4.5,0.15 4.8,3.09 2.64,0.43 -0.05,2.2 -0.9,2.42 1.06,1.6 0.36,2.77 -1.25,3.07 2.12,1.52 -1.64,2.22 0.07,4.15 -2.91,2.78 1.69,6.63 4.47,4.88 2.26,-1.32 5.08,2 6.87,-0.71 2.98,0.44 6.14,1.89 8.42,-1.06 1.98,-0.29 4.46,2.95 5.68,-0.34 2.9,-1.43 5.98,1.3 9.04,1.19 1.53,2.96 3.45,-0.56 5.79,0.04 -1.87,3.96 3.7,3.7 6.26,4.11 2.29,-0.95 -0.64,-4.29 2.61,-4.77 2.82,-0.8 0.92,-4.83 -0.55,-5.74 -3.06,0.67 -0.13,-3.85 -0.08,-5.37 1.87,-1.24 2.82,-4.03 -0.19,-4.26 -1.07,4.16 -2.1,-2.65 -4.39,-2.68 -1.69,-3.72 -4.82,-0.59 -7.62,-0.73 -2.37,-0.85 -5.7,-2.48 -7.81,-0.09 -1.66,4.51 -4.19,-2.36 -2.95,-4.64 0.52,-3.52 -3.24,-7.4 -6.77,-5.76 -1.77,0.07 0.3,-3.59 -2.48,-2.13 -2.41,2.31 -6.1,2.01 -8.29,-0.47 -0.77,-2.54 -0.39,-5.31 -1.88,-7.78 0.28,-2.25 0.31,-4.41 -2.29,-5.22 -0.57,-2.79 -2.95,-5.31 -5.75,-3.44 -2.32,0.87 -5.9,0.75 -6.52,3.6 -1.2,3.14 -4.3,-0.54 -6.47,-0.63 -1.62,-2.75 -3.49,-6.42 -7.19,-5.82 -1.19,-1.96 -1.69,-5.46 -1.07,-7.12 2.22,-2.65 -1.65,-4.24 -2.01,-6.55 C 378.49,2.6 378.6,1.01 377.51,3.38e-5 z M 405.6,54.52 l 0.01,0.01 -0.01,-0.01 z", + "department-62" : "m 355.25,5.34 c -4.67,0.52 -9.21,1.96 -13.53,3.78 -2.62,1.21 -3.81,4.26 -6.75,4.99 -3.31,1.16 0.87,5.46 -0.72,8.04 -1.1,2.07 -1.78,4.43 -1.12,6.76 0.28,2.42 0.02,4.96 1.31,7.03 -2.1,2.06 -0.72,6.37 -1.76,9.35 1.02,1.95 3.5,2.58 4.79,4.3 2.63,0.04 5.25,-2.81 7.87,-0.77 1.48,1.06 3.47,3.44 4.92,1.35 2.53,0.17 -1.69,2.79 1.25,2.82 1.83,1.47 5.46,1.25 4.91,4.34 1.83,1.66 4.07,1.54 6.17,0.26 1.49,0.74 2.98,-1.45 4.29,0.08 1.29,-0.11 0.37,-2.58 1.85,-0.79 1.06,2.83 2.15,-1.72 4.16,-0.11 1.81,-0.02 3.83,3.18 0.85,3.1 -2.82,0.39 -4.82,5.18 -1.24,5.81 0.43,-1.96 3.4,-4.56 4.7,-1.88 0.95,0.06 0.96,-2.21 2.37,-0.91 -1.29,2.63 2.5,1.39 3.75,2.68 1.01,0.02 2.8,1.43 1.68,-0.5 0.03,-2.85 2.71,-0.54 3.78,-0.21 0.17,1.65 -2.95,5.59 0.49,3.59 1.5,-1.55 3.47,-1.99 3.75,0.67 0.78,1.86 3.16,-1.9 4.69,-0.23 1.76,-2.04 5.53,1.57 5.23,-2.33 1.82,-0.8 -0.99,-3.24 1.46,-3.82 -0.45,-0.85 -1.59,-2.12 0.4,-1.97 1.78,-0.85 -1.59,-3.43 1.35,-3.43 2.24,-0.56 -1.16,-1.9 -1.45,-2.99 -2.25,0.21 -5.17,-0.99 -2.83,-3.27 -0.39,-2.24 -4.63,-3.32 -3.45,-5.81 1.35,-0.31 3.11,-1.48 3.62,-2.52 -0.44,-2.03 -2.57,1.36 -2.76,-1 1.27,-2.56 -2.5,-4.31 -4.51,-3.12 -2.13,1.34 -0.64,-3.34 -2.9,-1.64 -2.14,0.87 -3.1,-0.93 -1.73,-2.41 -2.1,-1.66 0.38,-3.87 2.35,-4.54 -0.4,-1.72 -4.03,-3.07 -4.41,-1.07 1.31,1 0.79,1.19 -0.41,1.55 -0.65,3.25 -2.43,-1.81 -4.43,-0.01 -1.64,0.85 -3.56,-1.09 -5.12,-0.15 -1.63,-1.09 -3.74,0.22 -5.15,-1.85 -0.76,-1.31 -4.6,-0.82 -2.62,-2.71 -1.83,-1.13 -2.35,-4.01 0.48,-4.05 1.1,-2.3 -3.42,-0.89 -4.7,-1.53 -2.52,-0.32 -4.04,-2.72 -4.24,-5.08 -1.2,-2.74 -2.08,-5.7 -3.77,-8.17 -0.66,-0.91 -1.63,-1.82 -2.85,-1.64 z", + "department-08" : "m 482.05,60.79 c -1.24,1.53 -2.93,2.65 -4.16,4.17 -2.61,0.85 -1.46,3.67 -1.95,5.63 -0.38,2.67 -3.5,2.01 -5.24,3.06 -1.78,1.03 -3.5,2.67 -5.74,2.32 -2.01,-0.47 -4.05,-0.8 -5.95,-1.63 -2.18,-1.07 -5.67,1.33 -3.92,3.54 2.27,0.8 0.69,3.6 -0.1,5.06 -0.22,1.15 -0.73,3.46 -0.21,3.94 2.34,1.86 -1.57,4.31 -2.92,5.53 -2.32,0.59 -0.78,4.67 -3.55,3.87 -2.19,-0.91 -2.89,1.6 -0.98,2.55 0.93,1.15 0.02,2.21 -0.01,3.29 2.33,1.24 -2.55,2.95 -0.59,4.92 1.73,1.58 -1.34,2.01 0.07,3.67 1.5,1.6 3.93,0.2 5.84,0.81 1.49,1.06 3.52,1.38 4.61,2.9 0.98,1.8 2.93,2.38 4.62,2.79 0.78,1.81 2.87,3 4.8,2.36 1.81,0.34 4.34,-2.39 5.3,0.06 0.29,1.83 2.28,4.22 3.73,1.72 2.1,-0.32 4.12,1.1 6.3,0.51 0.97,1.12 2.33,1.27 2.55,-0.58 1.13,-1.62 2.67,-0.09 3.58,0.8 1.43,-0.97 3.17,-1.86 4.5,-2.69 -1.52,-2 -1.1,-5.69 1.75,-6.15 1.39,-0.71 -1.18,-2.04 0.69,-2.81 0.81,-2.16 -1.48,-3.72 -1.84,-5.84 1.6,-0.81 1.12,-3.14 1.98,-4.24 -0.08,-2.31 2.06,-1.25 2.71,-0.04 1.75,-0.02 3.3,-0.08 4.41,1.54 2.3,0.19 2.66,-3.44 5.12,-3.18 1.49,-1.51 -0.93,-3.02 -1.94,-1.37 -2.45,-0.56 1.14,-3.53 -1.98,-4.43 -1.17,-1.71 -3.03,0.71 -4.52,-0.56 -1.26,-0.27 -1.05,-1.59 -2.38,-1.47 -0.88,-1.51 -1.11,-3.87 -3.5,-3.53 -2.22,-0.27 -3.54,-3.42 -5.99,-1.44 -1.59,0.26 -4.06,-0.12 -2.85,-2.28 -0.7,-1.6 -0.79,-3.23 0.37,-4.75 1.08,-2.94 -3.72,-2.91 -3.45,-5.23 1.66,-1.87 1.37,-4.62 2.11,-6.71 0.47,-1.55 1.75,-1.8 1.81,-3.65 0.26,-2.46 -2.55,-0.09 -3.06,-2.48 z", + "department-55" : "m 508.47,97.39 c -1.09,2.05 -3.63,1.84 -4.57,4.16 -2.06,1.9 -3.2,-2.58 -5.42,-0.81 -1.22,-0.12 -2.66,-3.25 -3.15,-0.51 0.16,1.18 -1.21,2.01 -0.91,3.51 -0.98,0.86 -1.71,1.56 -0.27,2.6 0.87,1.11 1.38,3 1.1,4.25 -1.92,0.65 1.06,2.66 -1.3,2.99 -1.85,0.5 -3.02,3.3 -1.51,4.85 2.03,2.44 -5.43,1.91 -3.11,4.74 1.73,1.94 -2.71,2.02 -0.97,4.16 1.12,2.15 2.35,4.54 2.07,7.02 -0.73,0.97 -0.79,2.07 0.63,1.57 1.91,0.63 0.24,2.8 -0.25,3.21 2.97,1.13 -0.49,3.95 -2.42,3.82 -2.83,0.92 -1.21,4.11 -1.41,5.89 -2.27,0.76 -1.58,3.13 0.49,3.43 0.78,2.04 3.87,2.5 3.36,4.92 -1.03,1.56 0.33,2.53 -0.65,4.17 -0.41,2.22 1.45,2.79 2.67,1.27 0.35,1.45 0.97,2.84 2.7,2.33 1.09,2.08 3.55,2.53 5.08,4.32 2.27,0.9 4.79,0.9 6.21,3.18 2.51,0.35 2.21,3.61 4.98,3.84 1.98,1.61 2.43,-1.81 4.7,-1.14 1.68,0.05 3.39,-0.67 3.61,-2.22 2.31,1.26 5.03,0.43 5.1,-2.48 1.3,-2.76 -3.09,-2.27 -2.23,-4.93 0.49,-1.55 4.14,-1.1 3.52,-2.57 -2.98,1.13 -1.9,-3.7 -1.68,-5.29 -0.81,-1.25 -2.43,-2.57 -0.87,-3.84 1.05,-1.97 2.47,-4.01 1.58,-6.35 -0.31,-1.17 1.43,-1.8 -0.18,-2.79 -1.99,-1.98 2.36,-2.77 3.49,-3.51 0.15,-1.51 -2.96,-2.03 -1.11,-3.8 0.35,-1.34 2.42,-2.73 0.1,-3.38 -1.66,-0.63 1.46,-3.23 -1.32,-3.22 -2.67,1.16 -1.73,-2.91 -1.77,-4.26 0.97,-1.66 -0.56,-1.3 -1.37,-1.7 0.04,-1.36 0.51,-2.53 -0.03,-3.85 0.74,-1.13 3.52,-3.01 0.66,-3.53 -1.63,-0.76 1.01,-2.93 -1.09,-3.73 -0.78,-1.79 -2.19,-5.34 -4.53,-3.65 -2.18,0.4 -4.84,0.76 -6.11,2.5 -0.93,-0.71 -2.09,-1.61 -0.08,-1.47 1.84,-0.22 0.36,-0.85 -0.21,-1.5 0.24,-1.6 -0.85,-3.62 -1.99,-3.97 0.41,-1.78 2.71,1.63 1.92,-0.65 -0.19,-2.1 -0.51,-4.34 -1.91,-6.26 -0.32,-0.62 -0.84,-1.22 -1.57,-1.33 z", + "department-54" : "m 525.26,101.49 c -1.67,3.08 -5.74,-1.97 -6.62,2.41 -1.05,-0.08 -3.39,-1.43 -4.31,0.56 -3.51,-0.32 -2.79,4.63 -1.02,5.99 1.99,2.03 6.27,-3.29 8.36,0.29 0.58,2.18 3.3,3.94 1.95,6.22 1.82,0.2 2.6,1.81 0.78,3.05 -1.53,1.28 -0.26,3.15 -0.71,4.81 3.05,-0.45 0.01,2.93 1.57,4.18 -1.63,2.79 4.43,1.04 2.45,4.59 3.98,1.28 -2.64,4.79 0.72,6.38 2.88,2.4 -6.01,2.2 -2.7,4.99 1.25,1.36 -0.87,1.91 0.22,3.46 0.67,3.06 -2.06,4.76 -2.37,7.34 3.26,1.72 -0.99,5.95 2.7,7.21 2.1,0.67 -2.15,1.54 -2.88,2.25 -1.99,2.7 4.09,2.42 1.82,5.11 0.58,3.62 4.01,-1.09 5.99,1.11 0.39,1.44 -0.68,6.33 2.57,6.57 -0.5,2.57 1.79,3.47 3.74,2.25 1.47,0.58 2.05,-0.61 2.49,-1.28 0.72,1.12 1.27,2.45 2.34,0.78 0.57,-1.56 0.94,-3.52 2.83,-1.93 2.51,0.61 4.4,-4.11 5.88,-0.37 1.14,0.17 2.65,-1 3.35,0.7 2.12,-1.53 4.79,-1.87 7.24,-2.11 0.85,0.47 0.77,-3.65 3.11,-2.96 0.6,1.89 2.14,4.14 4.75,3.61 1.95,1.07 4.36,1.67 5.46,-0.83 1.01,-0.22 2.04,1.42 3.05,-0.32 1.31,-3.24 6.08,-2.95 7.27,-5.6 -0.09,-2.38 -2.96,-3.69 -3.28,-5.46 0.62,-0.89 -3.43,0.07 -3.45,-1.97 -2.66,2.33 -4.51,-1.39 -7.24,-1.18 -0.64,-1.76 -4.3,-1.21 -4.56,-1.82 0.16,-2.63 -3.76,-1.66 -4.4,-4.26 -2.09,-1.05 -4.75,-0.89 -6.46,-2.77 -2,0.91 -3.97,0.15 -4.45,-2.1 -1.51,-0.39 -2.94,-2.33 -1.39,-3.6 -0.91,-1.39 2.1,-2.51 -0.43,-3.13 -1.98,-0.94 -4.44,-1.36 -6.82,-1.34 -1.14,0.57 -1.26,-3.18 -3.09,-1.82 -0.69,-1.21 -2.63,-0.86 -1.78,-2.82 -1.05,-2.26 -4.66,-2.19 -5.05,-5.04 -0.93,-3.14 4.8,-0.49 2.54,-3.98 1.3,-0.99 2.16,-2.33 -0.02,-2.86 -0.71,-1.96 3.56,-3.09 1.06,-5.28 -0.76,-1.39 0.36,-3.17 -1.9,-3.24 -2.05,-1.2 0.73,-2.78 -1.7,-3.63 -0.01,-1.52 -1.11,-3.1 0.14,-4.5 1.39,-4.07 -3.97,-2.74 -4.76,-5.9 -0.79,-0.88 -1.96,-1.21 -2.98,-1.73 z", + "department-57" : "m 545.41,104.88 c -2.5,-0.46 -3.8,2.23 -5.52,3.11 -2.04,0.13 -5.36,1.5 -5.56,-1.88 -0.59,-1.44 -4.31,-0.38 -1.74,-0.13 2.34,2.17 -1.1,4.54 0.53,6.71 -0.43,1.5 2.89,2.35 0.68,3.23 0.45,1.92 3.33,0.94 2.52,3.37 0.36,1.77 2.08,3.54 -0.18,4.75 -2.66,1.64 3.44,3.04 -0.15,4.05 -0.95,0.98 1.36,3.68 -1.36,2.85 -3.83,0.4 0.08,4.84 2.28,5.14 1.87,0.97 0.37,3.68 2.61,3.64 0.79,0.54 2.61,0.75 2.81,2.56 2.85,-0.4 5.85,0.18 8.17,1.37 1.23,1.36 -0.78,2 -0.46,3.45 -1.63,2.22 1.95,1.27 1.75,3.32 0.47,1.19 1.75,2.87 3.71,1.93 1.5,0.16 3.5,2.53 5.53,1.92 2.01,0.81 2.89,3.35 5.4,3.55 0.67,2.73 4.24,1.46 5.45,3.54 2.61,-0.38 3.46,2.94 6.08,1.29 1.17,-0.47 1.75,1.9 3.52,1.14 1.62,-0.08 -0.23,1.96 1.79,2.2 1.3,2.73 5.23,4.48 7.7,2.02 2.54,-1.28 3.61,-5.48 3.95,-7.28 -3.58,-1.29 -0.15,-3.79 0.29,-6.01 1.57,-2.39 -1.82,-4.03 -3.41,-4.9 -0.92,-0.46 -2.83,-2.68 -3.33,-0.42 0.04,1.34 -2.74,3.68 -3.49,1.98 1.42,-1.19 -2.32,-1.18 -0.65,-2.88 0.58,-0.42 2.94,-0.76 1.01,-1.21 -1.9,0.22 -3.08,-2.28 -5.33,-2.09 0.36,-1.47 -1.95,-2.93 0.65,-2.51 -0.24,-2.46 3.11,-1.17 2.78,-3.65 0.97,-1.9 0.9,-5.07 2.82,-5.94 1.56,0.28 -0.2,2.23 1.03,3.05 0.44,2.29 3.07,1.45 4.37,2.98 2.08,-0.63 3.45,0.94 4.45,2.21 2.35,0.41 4.6,-0.99 6.96,-0.88 1.74,1.66 4.77,2.7 5.4,-0.5 0.03,-2.29 3.07,-4.06 1.9,-6.14 -1.64,-1.28 -4.24,-0.4 -4.92,-3.09 -1.46,-0.89 -0.27,-4.11 -2.87,-3.22 -1.94,-1.81 -3.95,-0.44 -5,1.53 -1.63,0.41 -3.01,2.36 -4.96,1.09 -2.43,0.91 -4.48,-0.47 -6.55,-1.34 -0.06,2.16 -3.19,2.68 -2.83,0.01 0.36,-3.27 -3.34,-4.32 -5.77,-4.8 -1.02,0.19 -3.84,-0.2 -2.5,1.89 0.56,3.34 -3.8,1.81 -5.54,1.16 -1.66,-0.89 1.42,-3.26 -1.34,-3.14 -1.25,-2.69 -3.39,-5.28 -5.63,-7.59 -0.97,-1.2 2.01,-2.75 -0.64,-3.58 -1.56,-1.24 -0.91,-3.44 -3.28,-4.1 -1.88,-1.38 -4.06,-1.79 -6.22,-0.88 -2.51,-0.28 -4.01,-3.63 -6.73,-2.87 l -0.15,0.05 -0.06,-0.04 0,5e-5 z", + "department-67" : "m 586.48,133.27 c -2.1,-0.01 -0.68,2.11 -2.08,3.12 -0.53,1.32 -0.47,4.02 -1.76,4.5 -1.51,0.02 -3.74,3.48 -1.64,4.38 1.94,0.49 3.53,1.77 5.28,2.3 -0.53,0.75 -3.04,0.83 -1.83,2.54 1.17,0.35 1.65,0.72 0.87,1.57 2.9,0.8 2.46,-4.09 5.08,-3.5 0.08,1.99 2.92,1.11 3.25,2.11 0.08,1.35 3.49,2.12 2,4.18 -0.63,1.68 -2.45,3.57 -2.01,5.16 0.83,1.05 2.96,0.73 1.33,2.27 -1,1.88 -1.1,4.44 -3.12,5.66 -1.49,1.59 -3.41,2.15 -5.48,1.5 -1.5,-0.11 -1.21,1.41 0.14,0.89 1.61,0.28 1.05,1.43 -0.19,1.37 1.72,1.32 0.18,3.69 -0.01,5.65 -0.32,1.37 1.24,2.65 -0.54,3.55 0.55,1.82 2.87,1.7 4.33,1.36 0.21,2.85 3.86,1.22 5.05,3.02 -0.15,1.25 1.84,1.58 1.67,1.66 -1.26,2.18 2.77,1.14 3.72,2.54 1.74,0.84 3.98,1.5 3.04,3.9 0.15,1.35 2.62,0.77 2.17,2.57 2.06,1.73 4.17,-0.2 4.35,-2.47 0.77,-2.6 3.83,-4.18 3.47,-7.1 -0.49,-2.51 3.86,-2.87 2.34,-5.54 -0.61,-2.16 0.05,-4.4 1.11,-6.29 -0.44,-2.54 2.89,-3.38 1.72,-5.97 -0.24,-1.77 -0.09,-3.59 0.79,-5.17 1.2,-2.36 4.12,-3.11 5.56,-5.33 0.93,-1.46 0.84,-3.77 3.23,-3.4 0.47,-2.65 4.3,-1.88 4.34,-4.96 0.46,-2.67 2.05,-4.9 3.43,-7.17 0.58,-0.8 2.64,-1.94 0.45,-1.99 -1.97,-0.34 -4.11,-0.64 -5.89,-1.63 -1.91,-1.34 -4.31,-2.41 -6.36,-3.17 -1.93,0.68 -3.88,0.62 -5.6,-0.57 -2.1,0.71 -4.29,0.31 -6.52,0.54 -2.49,-0.15 -2.67,2.97 -3.55,4.65 -0.5,2.61 -2.96,2.86 -4.66,1.16 -1.92,-1.57 -4.24,0.44 -6.34,0.4 -2.52,0.72 -2.77,-3.35 -5.5,-2.33 -1.48,-0.12 -2.58,-1.72 -4.29,-1.55 -0.6,-1.43 -1.27,-3.09 -1.08,-4.38 l -0.26,-0.04 5e-5,0 z", + "department-88" : "m 585.73,170.68 c -2.45,1.43 -5.58,1.85 -7.18,4.45 -0.96,1.47 -2.29,1.77 -3.44,0.74 -0.93,2.21 -3.2,2.66 -5.01,1.2 -2.33,-0.14 -5.19,-0.81 -5.12,-3.6 -2.39,-0.96 -2.71,2.35 -2.61,3.27 -1.93,-1.81 -3.92,1.08 -5.99,0.26 -1.01,0.82 -2.5,2.2 -3.21,0.34 -1.78,0.73 -2.97,-0.15 -3.76,-1.53 -1.42,2.09 -4.08,2.6 -6.33,1.87 0.76,2.14 -2.82,4.34 -3.08,1.56 -0.46,2.2 -2.74,0.58 -4.34,1.72 -3.04,1.09 -0.77,-3.56 -3.3,-3.04 -2.34,-1.59 -0.26,-5.09 -1.69,-6.58 -1.91,-1.32 -3.68,1.34 -5.56,0.73 -0.85,1.7 -2.39,2.22 -4,1.22 -1.74,0.11 -1.97,2.99 -3.84,2.02 -1.41,0.46 -3.18,-0.16 -3.82,1.84 -1.4,-1.6 -6.39,1.53 -3.06,2.17 -1.78,1.06 -0.18,4.07 1.14,1.74 2.93,-1.33 3.23,2.4 4.88,3.85 0.91,1.42 2.92,-0.64 3.62,1.69 -0.71,2.15 1.41,2.13 2.78,2.92 0.78,1.08 1.52,2.74 -0.55,2.48 -0.84,1.28 -0.49,3.14 -1.59,4.27 0.81,1.2 -2.56,2.07 -0.54,2.8 2.09,-0.91 3.21,2.35 5.14,2.83 2.36,1.3 0.12,4.13 1.53,5.44 1.54,0.44 2.35,-2.6 2.85,-0.07 0.68,2.6 2.59,0.64 2.93,-0.97 2.15,-1.68 1.29,1.09 0.7,1.99 1.78,-0.62 3.58,-1.93 4.45,-3.92 1.23,-1.14 3.61,-1.48 4.98,-1.18 1.42,1.44 -0.13,4.06 2.33,4.41 1.59,2.64 3.6,-1.34 5.57,-0.08 2.15,-1.17 4.71,-0.41 5.99,1.59 0.64,1.74 1.59,3.22 3.37,1.77 1.6,-0.75 3.16,-4.54 4.98,-1.73 1.23,2.37 3.96,3.36 6.12,4.67 1.42,0.78 2.18,3.58 4.22,1.97 2.04,-0.21 3.21,-1.93 2.15,-3.74 1.27,-2.36 0.32,-6.03 2.66,-8.19 2.71,-0.63 2.23,-4.21 4.36,-5.62 2.03,-1.71 -0.83,-4 1.34,-5.8 1.63,-1.7 1.81,-4.21 3.2,-6.05 1.11,-1.35 2.76,-4.2 -0.04,-4.35 -1.71,0.99 -4.62,-1.25 -2.47,-2.77 -1.57,-2.1 1.26,-4.86 0.24,-7.12 -1.03,-0.23 -0.26,-1.2 -0.99,-1.45 z", + "department-52" : "m 488.81,158.92 c -1.65,0.95 -3.06,-0.3 -4.66,1.1 -1.31,0.1 -3.91,-1.43 -3.96,0.98 2.46,-1.25 5.27,3.02 1.67,3.22 -1.87,0.33 -2.46,1.95 -1.25,3.03 0.66,1.59 0.05,2.39 -1.53,1.62 -2.02,-0.86 -3.97,-0.08 -4.24,2.16 -0.09,1.52 -2.15,3.2 0.26,3.75 1.17,1.64 1.57,3.82 4,3.82 -0.2,2.3 2.56,1.99 3.77,3.31 -1.81,1.62 1.09,2.67 0.71,4.38 0.13,1.7 -1,3.34 0.4,4.62 -1.52,1.98 -0.18,4.83 -1.77,6.47 -2.13,-0.35 -4.62,-1.38 -5.85,1.18 -1.68,1.02 2.45,2.45 0.66,3.99 0.25,2.41 5.66,0.09 3.84,3.35 -0.25,1.39 4.61,0.54 2.78,2.97 -1.68,0.97 -0.11,3.15 0.63,1.11 2.69,-1.66 2.18,3.09 4.08,3.66 1.18,1.84 2.43,4 -0.56,4.83 -1.81,0.95 -0.49,1.59 0.71,1.67 1.1,1.35 -1.35,5.62 1.61,4.32 1.63,-1.99 2.74,0.57 3.16,1.71 1.59,1.44 3.76,1.45 4.59,-0.72 0.9,0.19 0.25,2.48 2.06,2.54 0.69,1.12 2.73,1.17 1.58,2.65 0.3,2.71 2.08,0.28 3.03,-0.44 1.42,-0.65 2.3,1.83 2.86,-0.42 1.04,-1.74 1.04,-4.78 3.76,-4.01 1.6,-1.14 3.57,0.94 4.64,-1.4 1.53,-1.73 1.57,2.71 3.71,1.25 1.9,-0.14 2.96,-1.33 2.2,-3.24 1.43,-1.27 0.76,-2.67 -0.4,-3.65 -0.36,-1.86 1.29,-3.1 2.85,-2.79 0.09,-1.65 1.06,-3.14 2.8,-1.91 1.89,0.14 0.95,-4.51 3.65,-3.28 0.78,-1.86 -1.66,-5.01 -3.64,-3.16 -2.15,-0.87 0.65,-4.14 -1.69,-5.39 -2.08,-0.99 -3.29,-3.6 -5.72,-3.12 -0.78,-1.43 1.75,-1.98 1.2,-3.51 1.49,-1.43 -0.02,-4.02 2.65,-4.08 0.87,-2.59 -4.13,-1.97 -3.4,-4.17 0.23,-2.18 -2.46,-1.79 -3.17,-1.75 -1.8,-1.38 -2.07,-4.99 -4.83,-4.49 -0.93,1.04 -3.31,1.85 -2.44,-0.54 1.81,-1.67 -2.54,-1.69 -0.14,-2.74 3.11,-1.15 -1.05,-3.22 -1.16,-4.6 -2.32,-0.43 -3.09,-3.26 -5.76,-2.98 -2.2,-0.41 -3.45,-2.38 -5.4,-3.25 -1,-0.87 -2.09,-2.25 -3.62,-2.31 -0.33,-1.23 -1.02,-2.41 -1.95,-0.9 -2.48,0.33 -1.06,-3.27 -1.21,-4.49 -0.43,-0.33 -1,-0.32 -1.51,-0.34 z", + "department-70" : "m 541.89,202.86 c -1.48,1.05 -4.27,0.26 -4.69,2.61 -0.74,1.61 -2.57,2.54 -4.03,2.95 -0.34,-0.77 1.76,-2.53 -0.13,-2.5 -0.99,1.61 -1.89,3.19 -2.4,4.92 -2.68,-0.87 -1.82,3.12 -3.27,3.5 -1.3,-0.7 -3.39,-0.73 -2.74,1.32 -0.88,1.21 -3.24,-0.03 -3.14,2.25 -0.46,1.62 2.55,1.95 0.89,3.63 -0.98,1.52 0.52,4.16 -2.2,4.08 -1.57,0.85 -3.26,0.22 -3.47,-1.55 -1.37,0.18 -2.07,2.82 -3.9,1.41 -1.24,0.85 -3.18,-0.03 -4.03,1.05 0.43,1.42 -2.58,3.53 -0.45,4.25 0.89,-1.83 2.68,-2.68 3.75,-0.37 0.5,1.68 1.75,4.16 -0.07,5.46 -0.69,1.13 -1.66,2.52 -3.19,1.8 -1.3,0.54 0.74,1.52 -0.68,1.82 -0.5,1.32 2.33,0.19 2.27,1.82 -0.45,1.42 -0.22,4.27 1.97,3.2 1.12,0.71 0.49,3.24 0.07,4.44 -0.62,0.77 2.51,1.14 2.67,2.6 1.22,1.84 3.79,2.72 5.53,1.1 1.62,-0.54 3.67,0.84 5.12,-0.89 1.46,-0.88 3.25,-1.31 4.58,-2.34 1.38,-0.22 2.05,-1.72 3.16,-1.63 0.94,0.49 2.1,0.97 2.7,0.39 1.27,0.3 2.44,-1.09 3.48,-1.5 0.36,-1.16 1.47,-0.71 1.64,-2.05 0.91,-0.18 2.82,0.69 2.74,-1.27 0.27,-0.7 1.73,-1.48 2.59,-1.17 1.35,-0.01 2.08,-1.54 2.9,-2.58 0.28,-1.93 2.34,-3 4.25,-3.13 1.33,-1.11 3.28,-0.04 4.17,0.96 1.3,-1.43 3.37,1.14 4.62,-0.44 -0.53,-1.64 0.03,-3.37 1.78,-1.81 1.69,0.65 2.38,-1.65 1.8,-2.91 1.33,0.53 2.65,1.19 3.89,1.55 1.94,2.63 4.4,-1.84 2.14,-3.2 -1.24,-1.45 1.28,-2.68 -0.52,-4.1 0.51,-2.09 -1.61,-3.98 -0.66,-6.03 0.28,-1.73 3.7,-2.9 1.82,-4.59 -1.1,-2.17 -3.7,-2.72 -5.59,-4.24 -2.21,-0.35 -2.45,-4.75 -4.99,-2.91 -0.65,1.93 -4.88,4.56 -5.28,1.25 -0.87,-1.44 -2.49,-3.07 -4.26,-2.96 -1.68,0.96 -3.66,-0.19 -5.12,1.22 -1.27,1.15 -2.34,0.38 -2.89,-0.87 -3.16,0.23 -0.07,-3.74 -2.83,-4.53 z", + "department-21" : "m 472.24,202.36 c -1.95,0.11 -3.53,1.98 -2.15,3.65 -2.49,1.1 -5.45,0.75 -8.07,0.87 -2.13,-0.11 -4.95,0.4 -3.47,3.25 -0.52,1.33 -3.18,1.72 -1.86,3.85 0.7,1.08 3.26,-0.46 2.82,1.95 1.14,2.24 -0.16,6.53 -2.9,5.76 -2.3,1.31 2.84,4.18 -0.84,3.8 -1.6,0.51 0.85,1.58 -0.66,2.61 -1.1,2.67 -2.37,5.15 -3.94,7.39 -2.71,1.7 0.71,5 -2.38,6.58 -2.1,1.34 0.03,3.32 0.53,4.08 -0.41,1.7 1.09,1.55 1.57,0.87 -0.55,2.05 -1.11,4.28 -0.67,6.46 0.55,1.84 3.24,-0.74 3.79,1.75 2.63,1.57 -1.77,5.03 1.74,5.7 0.01,3.38 5.77,1.31 4.92,4.94 0.76,-0.67 3.17,-1.87 2.58,0.38 0.04,2.32 3.97,1.19 5.01,3.23 2.54,-0.96 1.81,2.86 3.71,3.92 1.27,1.19 4.2,0.81 3.48,3.08 1.54,0.9 2.71,-2.03 4.41,-0.83 2.41,-1.07 4.93,-2.39 7.32,-3.1 2.46,1.63 4.97,-2.65 6.88,0.37 3.01,0.49 5.91,-1.7 8.53,-1.99 1.29,-0.68 2.17,-1.59 0.52,-2.29 -0.4,-3.73 4.96,-2.48 5.6,-5.4 0.99,-2.18 2.8,-4.2 2.54,-6.5 1.77,-1.75 0.39,-4.84 2.52,-6.44 -0.95,-0.58 -2.64,-1.02 -1,-2.29 0.09,-1.58 0.38,-4.17 -2.01,-3.22 -1.24,-1.39 0.1,-5.59 -3.15,-4.35 -0.46,-1.01 1.12,-1.52 0.72,-2.67 1.66,-0.28 3.15,-0.34 3.73,-2.23 1.65,-1.75 0.29,-6.48 -2.25,-6.5 -0.68,1.44 -1.95,2.05 -2.98,2.03 -1.1,-0.38 -2.25,-1.75 -3.19,0.17 -1.11,1.75 -2.93,0.45 -2.18,-1.27 -0.65,-2.03 -3.73,-1.94 -3.27,-4.42 -1.58,3.05 -5.35,1.59 -6.18,-1.1 -0.91,-2.23 -2.22,2.18 -3.58,-0.21 0.08,-1.59 0.76,-4.64 -1.67,-4.45 -0.04,-1.89 5.08,-2.47 2,-4.81 -1.06,-1.58 -1.95,-3.5 -3.18,-5.21 -1.04,-0.38 -2.42,2.56 -3.09,0.19 2.11,-0.98 1.08,-3.93 -1.22,-3.08 -1.29,-0.86 0.47,-3.43 -2.27,-2.98 -2.36,-0.57 -4.26,-0.93 -6.76,-1.56 z", + "department-25" : "m 566.77,232.71 c 0.09,2.3 -2.25,3.3 -3.94,2.02 0.08,1.13 -0.25,4.27 -2.22,2.67 -1.06,-0.3 -2.94,0.2 -2.94,0.45 -0.89,-2.65 -3.73,-1.2 -5.47,-0.96 -2.07,0.84 -2.28,2.88 -3.61,4.31 -0.88,0.69 -1.46,2.91 -2.9,1.19 -1.05,0.39 -1.48,0.81 -1.12,1.59 -0.93,1.73 -4.27,-0.36 -3.13,2.26 -0.87,0.67 -1.2,-0.97 -1.76,0.58 -1.96,1.7 -4.45,2.18 -6.73,1.12 -0.17,1.07 -1.58,0.31 -1.68,1.83 -2.1,-0.32 -3.88,1.69 -5.8,2.31 -1.02,1.33 -4.07,0.04 -2.32,2.52 0.45,2.81 4.3,3.32 4.76,6.2 -0.21,2.31 -3.08,3.49 -1.86,6.03 -0.97,0.45 -2.59,2.47 -0.46,2.49 1.13,-0.09 1.69,-3.42 2.01,-1.01 0.64,1.41 3.62,2.86 4.68,1.33 0.04,0.48 -0.21,2.56 1.46,1.7 2.32,0.51 -0.12,2.86 2.01,3.54 -1.13,1.45 0.9,2.75 1.29,3.8 0.85,0.48 0.08,2.28 1.68,1.38 2.03,-0.05 3.91,2.07 5.34,3.62 2.95,2.01 -0.39,4.47 -2.29,5.65 -1.9,0.71 -2.6,2.44 -1.2,4.01 -0.4,1.36 -3.17,2.8 -0.77,4.45 1.04,1.22 3.33,2.73 2.42,0.04 1.33,-1.8 3.4,-2.98 4.87,-4.71 1.55,-1.95 4,-2.56 5.83,-4.09 0.99,-1.82 5.3,-2.43 3.21,-5 -0.6,-1.98 1.81,-3.57 1.08,-5.63 -0.72,-1.81 -1.83,-3.34 0.3,-4.68 1.51,-1.44 3.86,-1.05 5.63,-2.1 1.98,-0.67 3.24,-2.47 4.94,-3.62 0.57,-0.92 -0.58,-3.55 1.74,-3.61 0.6,-2.37 3.96,-2.15 4.66,-4.52 1.07,-2.43 3.95,-3.27 5.09,-5.54 -0.36,-1.72 0.12,-3.46 2.27,-3.53 0.32,-1.83 3.74,-1.85 2.02,-3.99 -1.97,-1.19 -4.42,0.69 -6.67,0.22 -2.07,-0.27 1.22,-2.7 1.83,-3.4 0.91,-2.25 -1.75,-3.9 -1.17,-5.86 0.9,-0.28 2.32,-0.68 0.7,-1.63 -1.17,-0.85 -1.3,-2.85 -3.34,-1.98 -1.6,0.43 -2.5,-0.72 -3.56,0.74 -1.33,-0.53 -2.45,-1.44 -4,-1.6 -0.24,-0.27 -0.42,-0.75 -0.89,-0.6 z", + "department-2B" : "m 633.52,517.94 c -2.35,-0.01 -1.42,2.87 -1.09,4.27 0.7,1.81 -2.49,2.8 -1.11,4.67 -0.49,1.37 -1.42,2.72 -0.13,3.97 0.7,1.67 0.72,3.53 0.53,5.3 -1.04,0.77 -0.92,3.88 -2.55,3.14 -0.73,-1.62 -2.13,-3.04 -4.02,-3.03 -1.86,-0.3 -3.96,-0.04 -5.19,1.55 -1.27,1.17 -0.88,3.32 -2.75,3.92 -1.35,0.75 -2.94,0.89 -4.45,0.77 -1.63,0.44 -2.78,1.92 -4.53,2.07 -1.08,1.11 -1.58,3.82 -3.61,2.5 -2.28,-0.27 -0.71,2.89 -2.74,3.25 -1.77,0.65 -1.34,2.56 -0.72,3.72 -0.66,1.21 -0.31,3.42 -2.4,2.98 -0.67,0.62 -0.74,2.12 -1.28,2.46 1.35,0.64 2.94,0.58 4.15,1.59 1.97,0.67 3.81,1.67 5.8,2.23 1.18,0.16 2.98,-1.17 2.57,1 0.67,1.04 0.89,2.57 2.02,3.34 1.69,0.62 3.17,2.31 4.96,3.14 2.04,-0.26 1.45,2.35 2.36,3.4 0.23,1.54 0.99,2.85 2.49,3.38 1.12,1.46 -0.05,4.35 2.16,5 1.26,-0.1 2.79,0.25 2.31,1.89 0.24,1.9 0.14,4.01 0.49,5.76 1.4,0.6 0.98,1.75 0.27,2.73 -0.72,1.74 1.1,2.24 2.4,1.98 1.18,1.05 2.26,0.38 3.07,-0.7 1.66,-0.67 2.53,-2.38 2.39,-4.11 -0.47,-1.47 -0.29,-2.79 0.86,-3.86 0.84,-1.19 1.62,-2.44 2.13,-3.82 -1.58,-0.86 0.16,-2.37 1.2,-1.81 1.03,-1.08 2.36,-2.78 2.27,-4.18 -1,0.15 -2.19,-0.13 -0.8,-0.98 1.56,-1.35 1.27,-3.53 1.22,-5.37 0.1,-3.14 -0.09,-6.32 -0.92,-9.37 -0.32,-3.98 0.06,-7.99 -0.32,-11.97 0.24,-1.18 -0.67,-2.04 -1.7,-1.88 -1.43,-1.2 -1.56,-3.24 -2.14,-4.89 0.02,-1.82 0.2,-3.65 0.48,-5.45 0.35,-1.84 0.88,-3.65 1.41,-5.45 -0.1,-2.84 -1.09,-5.59 -1.05,-8.44 -0.76,-1.38 0.26,-3.68 -1.57,-4.41 -0.78,-0.33 -1.65,-0.32 -2.48,-0.3 z", + "department-2A" : "m 595.95,559.63 c -0.71,0.81 -0.11,3.57 1.21,2.02 1.32,-0.93 3.1,1.24 0.97,1.62 -0.01,1 1.97,0.99 2.59,1.98 2.68,1.95 -1.55,2.5 -3.02,2.97 -0.69,0.53 -3.15,0.82 -1.41,1.73 1.22,1.06 0.05,2.77 0.63,3.53 0.85,0.12 -0.9,1.12 0.27,1.67 0.95,1.15 2.75,1.37 3.79,2.45 2.1,-0.64 1.94,2.53 3.38,3.52 -0.02,1.76 -4.46,1.46 -3.63,3.95 0.68,2.57 -4.21,0.57 -2.84,2.8 1.83,0.44 -0.6,3.94 1.9,2.83 1.99,0.16 3.75,-0.5 5.28,-1.55 2.42,0.22 1.96,2.84 1.15,4.32 1.13,1.3 -2.41,1.08 -0.2,2.1 0.63,2.06 -3.77,1.38 -2.66,3.8 0.22,1.8 -4.36,1.47 -1.33,2.5 0.94,2.3 4.06,-1.71 4.08,1.22 0.12,1.47 2.46,0.33 3.33,1.44 1.12,-0.15 4.2,0.76 1.93,1.72 -0.87,1.64 -2.46,2.6 -4.41,2.64 -0.89,1.51 -0.19,3.27 -0.21,4.83 0.82,0.95 2.52,1.18 2.75,2.46 1.7,0.55 2.99,1.97 4.71,2.39 1.66,0.13 3.24,1.87 4.81,1.24 1.07,-1.21 -0.26,2.6 1.64,1.48 2.2,0.53 -1.62,3.32 1.26,3.46 1.58,0.19 2.5,2.76 4.29,1.61 0.89,-0.72 2.28,-4.23 0.03,-2.57 -0.14,-1.13 -0.24,-2.82 1.44,-3.18 2.06,-1.11 0.43,-3.27 1.23,-4.76 1.02,-1.38 3.25,-2.05 3.36,-3.96 -0.51,-2.43 -3.67,1.63 -3.15,-1.09 0.32,-2.31 2.98,-0.08 3.17,-2.26 2.28,-0.35 0.05,-3.4 2.21,-4.19 0.34,-1.98 -0.19,-4.06 0.09,-6.09 -0.04,-1.41 0.43,-5.9 -2.01,-3.86 -1.23,2.09 -3.44,0.59 -5.21,0.54 -1.99,-1.45 2.02,-4.26 -1.36,-4.77 0.81,-1.91 -0.12,-4.19 0.23,-6.27 -0.3,-1.98 -3.78,-0.21 -3.87,-2.87 -0.12,-1.76 -0.24,-3.79 -2.23,-4.35 -1.22,-1.72 -1.07,-4.4 -2.74,-5.63 -1.52,-0.21 -2.6,-1.9 -4.02,-2.28 -1.38,-0.99 -2.79,-1.78 -3.15,-3.59 -0.59,-1.09 -0.54,-2.29 -2.16,-1.83 -2.04,0.35 -3.59,-1.16 -5.42,-1.72 -2.16,-0.83 -4.29,-2 -6.72,-2 z", + "department-66" : "m 392.27,540.87 c -1.61,0.58 -3.58,1.12 -4.31,2.84 -0.15,1.76 -2.07,2.98 -3.74,2.44 -2.88,-0.05 -5.71,-0.68 -8.58,-0.78 -1.69,0.79 -3.6,0.4 -5.34,-0.01 -1.95,-0.34 -2.77,1.79 -1.78,3.24 0.32,1.46 1.15,3.05 0.58,4.5 -0.82,1.73 -2.83,1.45 -4.25,2.25 -1,1.02 -2.13,1.83 -3.29,2.7 -0.99,0.41 -1.87,-1.29 -3.13,-0.82 -1.57,0.09 -3.05,0.46 -4.56,0.84 -1.73,-0.34 -1.74,2.74 -3.54,2.93 -1.28,-0.07 -2.45,0.31 -2.94,1.55 -1.36,0.64 -3.02,0.25 -4.32,1.15 -1.36,0.9 -1.71,2.74 -1.56,4.26 0.86,1.46 2.9,0.77 4.25,1.35 1.65,0.37 2.31,2.34 4.08,2.41 1.43,-0.11 2.31,0.89 2.36,2.25 0.19,1.48 0.67,3.17 2.18,3.81 1.13,0.44 2.47,0.22 3.51,-0.34 1.24,-0.79 1.72,-2.27 2.67,-3.32 1.39,-1.04 3.26,-0.06 4.73,-0.89 1.22,-0.79 2.5,-0.04 3.64,0.5 1.48,0.81 2.99,1.54 4.59,2.08 1.32,0.67 1.65,2.4 3.09,3 1.2,0.95 2.82,0.92 3.39,-0.67 1.34,-0.63 2.88,1.09 4.46,0.87 2.15,-0.12 -1.28,-2.73 0.67,-3.58 1.27,-0.56 2.55,-2.04 4.03,-1.23 1.72,0.59 2.74,-1.31 3.96,-2.12 1.15,-1.32 3.16,0.13 4.03,-1.41 0.83,-1.27 1.95,0.63 3.11,-0.15 2.01,-0.88 2.41,1.55 3.76,2.33 1.27,0.46 3.16,0.45 4.24,-0.36 -0.27,-1.45 -1.37,-2.7 -2.23,-3.9 -0.28,-1.72 -2.72,-1.88 -2.89,-3.65 -0.57,-2.26 -0.42,-4.64 -1.01,-6.9 -1.47,0.73 -1.88,-2.91 -0.29,-1.48 1.18,0.06 0.41,-2.13 0.75,-2.99 0.09,-1.49 0.11,-3.02 -0.31,-4.47 -0.95,-1.13 -3.87,-0.57 -3.45,-2.71 0.64,-1.39 -0.48,-2.54 -1.82,-2.74 -1.38,-0.34 -2.47,-1.19 -3.6,-1.95 -0.35,-0.31 -0.67,-0.7 -1.14,-0.82 z", + "department-01" : "m 487.41,302.61 c -0.9,1.57 -0.93,3.47 -1.87,5.03 -0.08,2.19 -1.38,3.92 -1.93,5.93 -0.03,2.1 -1.15,3.89 -1.73,5.86 -0.42,1.81 -1.3,3.51 -1.51,5.35 1.95,2.03 -0.73,4.04 -1.37,6.1 0.45,2.04 -0.98,4.25 0.01,6.51 0.71,1.46 -2.38,3.28 0.35,3.44 1.39,-0.37 2.31,2.05 2.65,2.11 2.25,-1.29 4,2 4.16,3.57 0.56,1.6 0.49,3.54 2.81,2.73 3.02,0.35 6.37,-1.1 9.1,0.77 0.88,2.56 3.84,1.72 4.88,-0.3 1.04,-1.78 1.48,-5 3.81,-5.17 1.24,1.04 3.66,2.18 3.18,3.99 -0.07,2.15 2.61,3.84 3.8,5.69 0.37,1.12 3.48,2.32 2.41,3.1 -1.75,-1.25 0.26,1.66 1.18,1.79 0.81,0.79 1.47,4.56 2.6,1.9 2.12,-0.55 1.75,-2.31 2.63,-3.9 -1.04,-2.22 3.07,-0.3 3.11,-2.82 0.62,-2.49 0.12,-5.28 1.29,-7.73 0.79,-1.87 1.18,-3.85 1.11,-5.88 0.91,-2.45 -1.84,-4.44 -0.77,-7.08 -0.18,-1.49 0.45,-5.51 2.24,-2.86 2.51,0.81 0.41,-2.98 3.09,-2.68 2.03,0.37 4.6,-2.6 2.34,-3.96 -0.92,-2.11 2.75,-3.28 4.44,-3.52 3.3,0.13 0.54,-3.31 2.3,-4.83 1.05,-1.66 2.36,-4.08 0.02,-5.37 -1.53,-2.11 -3.79,-0.86 -4.73,1.04 -1.87,1.05 -2.36,3.24 -3.81,4.61 -1.35,1.27 -3.15,4.02 -5.8,3.21 -1.93,-0.56 -4.96,1.08 -4.38,-2.24 -0.76,-1.18 -2.84,-1.79 -3.61,-2.54 -1.5,1.09 -1.85,3.07 -3.86,3.7 -1.35,2.09 -5.97,0.71 -3.69,-1.99 -0.13,-1.17 -2.23,0.32 -2.08,-1.73 -0.53,-0.8 -0.77,3.05 -1.07,0.87 -0.55,-1.56 -1.98,-2.98 -1.65,-4.48 -1.69,-0.63 -3.44,-1.35 -2.39,-3.29 -1.67,-0.94 -4.57,-0.64 -4.85,-3.2 -0.77,-2.9 -3.6,-0.34 -5.35,-0.3 -2.42,1.93 -4.08,-2.75 -6.45,-0.84 -0.29,-0.08 -0.46,-0.35 -0.61,-0.59 z", + "department-39" : "m 514.04,250.63 c -1.89,1.19 -1.41,3.32 -1.89,5.29 -0.64,0.76 -1.51,1.41 -0.89,2.56 -0.09,2.24 -2.26,3.17 -2.61,5.27 -0.78,2.29 -3.94,1.22 -5.02,3.42 -1.54,1.4 0.68,1.65 1.05,2.54 -1.89,0.73 -2.96,2.39 -2.48,4.33 0.13,1.42 2.53,-0.61 2.4,1.57 0.08,2.38 2.07,2.39 3.72,2.02 0.66,0.84 0.67,2.23 2.23,2.18 2.43,0.87 -0.09,3.1 -1.71,1.96 -1.17,0.08 -2.55,0.59 -3.37,1.25 0.11,1.68 4.21,2.07 1.77,3.98 -0.64,1.56 1.6,1.33 1.54,2.91 0.07,1.18 -0.12,1.58 0.83,2.44 0.19,1.36 1.42,2.53 -0.34,3.52 -0.67,0.75 0.36,2.67 -1.62,2.51 -1.19,0.8 -1.32,4.36 1.01,4.73 2.68,1.66 -1.11,3.55 -2.81,2.97 -1.59,0.44 -1.06,2.31 -1.05,3.41 1.19,0.84 3.25,1.23 2.45,3.03 0.35,0.78 1.76,2.89 2.4,1.17 0.08,1.37 1.23,2.01 2.19,1.81 0.32,1.28 -1.44,3.9 1.22,3.43 2.17,0.36 3.07,-1.82 4.79,-2.43 -0.05,-1.35 2.19,-3.36 2.53,-1.42 1.91,0.51 3.26,1.46 2.92,3.66 1.58,0.41 3.84,0.2 5.69,0.41 2.04,-0.37 2.86,-2.2 4.05,-3.32 1.59,-0.86 1.89,-3.63 3.87,-4.44 0.79,-1.41 2.45,-2.26 3.01,-3.68 -1,-2.03 0.83,-3.26 1.54,-4.97 0.09,-1.12 3.27,-3.18 0.85,-3.09 -1.33,-0.11 -2.8,-2.09 -3.8,-3.26 0.31,-1.77 3.21,-2.74 1.14,-4.67 -0.05,-2.2 3.25,-2.62 4.42,-4.31 1.79,-1.34 1.01,-2.85 -0.45,-4.05 -1.09,-1.57 -2.94,-2.35 -4.27,-3.29 -1.13,0.65 -2.22,0.54 -2.27,-0.9 -0.74,-1.09 -1.45,-2.1 -1.83,-3.4 1.47,-1.38 -2.22,-1.64 -0.41,-2.83 0.19,-1.99 -2.81,-0.62 -3.13,-2.43 -1.62,-0.17 -4.52,-0.62 -4.4,-2.92 -0.26,1.15 -2.52,3.12 -3.02,0.86 -0.35,-1.5 0.05,-1.67 1.38,-1.39 0.81,-1.24 -0.85,-3.11 1.04,-3.84 1.28,-1.28 1.47,-3.89 -0.53,-4.47 -0.44,-1.71 -3.15,-1.61 -3.09,-3.86 -0.11,-1.87 -1.88,-3.24 -3.34,-1.52 -1.61,0.12 -3.45,0.65 -4.24,-1.23 -0.57,-0.4 -0.93,-1.18 -1.47,-1.53 z", + "department-68" : "m 591.47,183.79 c -2.1,0.97 -2.85,3.5 -3.75,5.52 -0.4,1.82 -2.19,2.92 -2.55,4.75 -1.33,1.4 1.36,1.6 0.27,2.87 -0.93,1.83 -2.95,3.04 -3.07,5.23 -0.53,1.75 -3.15,1.46 -3.13,3.23 -0.66,1.37 -1.22,3.06 -0.75,4.66 -0.41,1.17 -1.65,2.15 -0.51,3.43 0.71,1.97 -2.43,1.73 -3.09,2.98 -0.01,2.42 2.61,2.31 4.21,3.1 1.23,0.9 2.73,1.32 3.92,2.26 0.75,1.15 0.29,2.81 0.85,4.22 0.01,1.63 -1.93,1.81 -1.61,3.67 -0.16,2.76 3.69,-0.48 3.8,2.34 0.66,1.17 1.29,2.31 2.22,3.23 -0.26,1.35 -0.34,3.32 1.72,2.8 1.73,0.11 -1.35,2.88 0.68,3.58 1.21,-0.48 1.99,0.74 2.58,1.18 1.4,-0.54 2.91,-1.51 4.42,-0.87 1.79,0.56 3.19,-0.73 4.39,-1.84 1.37,-0.81 -1.77,-2.28 0.35,-2.24 1.11,1.41 3.16,-0.23 2.08,-1.61 1.35,0.23 1.87,-1.32 0.4,-1.53 0.05,-1.19 2.27,-1.12 2.66,-2.48 2.32,-0.26 0.55,-3.04 -0.23,-4.09 -1.18,-1.03 -2.5,-2.48 -1.9,-4.18 1.12,-1 1.8,-2.48 0.85,-3.92 -0.75,-1.85 0.36,-3.7 1.28,-5.22 -0.2,-1.24 -0.59,-2.6 0.78,-3.3 -0.03,-1.74 0.45,-3.15 1.71,-4.41 0.99,-1.53 -0.1,-3.22 -1.28,-4.25 -1.68,-1.54 -0.61,-3.93 -0.56,-5.85 -0.14,-1.63 -3.48,-0.24 -2.69,-2.54 -1.27,-0.5 -2.91,-1.03 -1.97,-2.74 -0.27,-1.98 -2.78,-1.98 -4.09,-3.08 -1.07,-0.97 -3.47,-0.16 -3.41,-1.99 -1.07,-0.75 -0.89,-3.1 -2.98,-2.56 -0.55,-0.04 -1.03,-0.39 -1.58,-0.37 z", + "department-90" : "m 574.39,216.2 c -0.55,0.23 -0.49,0.97 -0.95,1.33 -0.63,0.8 -1.51,1.36 -1.95,2.3 -0.77,0.99 -0.8,2.48 -0.08,3.5 -0.03,0.67 0.48,1.24 0.41,1.93 -0.01,0.83 -0.07,1.76 0.62,2.36 0.29,0.29 0.48,0.66 0.1,0.97 -0.14,0.38 -0.57,0.43 -0.76,0.72 -0.05,0.5 0.53,0.78 0.56,1.29 0.18,0.47 0.52,0.85 0.75,1.28 0.26,0.15 0.87,0.53 0.4,0.81 -0.7,0.47 -0.05,1.72 0.76,1.5 0.78,0.02 1.57,-0.19 2.27,-0.46 0.8,0.18 1.42,0.82 1.46,1.64 0.04,0.86 1.41,0.54 1.43,1.42 0.01,0.47 0.26,1.11 -0.01,1.5 -0.5,0.35 -0.45,-0.64 -0.86,-0.74 -0.5,-0.2 -0.94,0.42 -0.64,0.85 0.2,0.34 -0.18,0.93 0.34,1.04 0.43,0.61 0.84,1.44 0.71,2.19 -0.36,0.5 0.42,0.64 0.75,0.45 0.83,-0.18 1.47,-0.8 2.26,-1.07 0.62,-0.6 -0.22,-1.42 -0.38,-2.05 -0.12,-0.36 -0.45,-1.06 0.17,-1.13 0.42,-0.08 0.81,-0.3 1.15,-0.48 0.96,0.2 1.82,0.91 2.87,0.71 1.1,-0.11 2.47,-0.62 2.45,-1.94 0.17,-1 -0.69,-1.63 -1.42,-2.13 -0.16,-0.46 -0.02,-1.09 -0.52,-1.4 -0.45,-0.55 -0.43,-1.71 -1.38,-1.73 -0.72,-0.12 -1.46,0.05 -1.95,0.59 -0.4,0.24 -0.3,-0.53 -0.6,-0.62 -0.31,-0.79 -0.34,-1.73 0.1,-2.47 0.16,-0.36 0.01,-1.1 0.63,-0.98 0.41,0.01 0.38,-0.37 0.4,-0.64 0.61,-1 -0.15,-2.14 -0.3,-3.13 0.23,-0.47 0.38,-1.05 -0.1,-1.44 -0.8,-1.1 -2.3,-1.18 -3.29,-2.06 -0.38,-0.36 -0.84,-0.58 -1.34,-0.6 -0.84,-0.67 -2.13,-0.38 -2.92,-1.15 -0.45,-0.63 -0.74,-1.4 -0.95,-2.13 -0.05,-0.04 -0.12,-0.05 -0.18,-0.04 z", + "department-971" : "m 29.7,299 c -1.87,1.62 -3.85,3.09 -5.8,4.6 -1.43,1.52 -0.11,4.46 1.17,5.6 2.13,-0.29 1.96,2.76 1.56,3.13 -0.94,0.26 -0.86,0.93 -2.23,0.75 -1.03,1.66 -1.29,3.62 -2.45,4.7 1.04,1.32 0.08,3.56 1.78,4.78 0.07,1.69 2.29,0.69 2.84,1.78 2.57,1.14 4.82,0.08 7.34,-0.38 2.38,-0.82 4.2,-1.85 6.78,-2.46 2.37,0.03 4.67,-0.43 6.92,-1.15 2.18,-0.06 4.33,0.34 6.48,0.62 2.37,0.69 -1.08,-1.04 -1.87,-0.73 -3.38,-0.38 -3.95,-4.08 -6.74,-5.2 -2.32,-1.36 -4.81,-0.91 -7.05,-1.44 -2.4,-1 -4.48,-4.07 -3.05,-6.6 0.27,-2.73 -1.51,-4.9 -3.7,-6.25 -0.49,-1.1 -2.18,0.21 -1.97,-1.73 z m -7.17,21.03 c 0.11,-1.09 -0.45,-1.63 -1.09,-1.6 1.7,-0.65 -2.37,-1.12 -2.11,0.41 -0.62,1.09 -1.76,0.26 -1.23,-0.66 -0.14,0.74 -1.86,1.51 -1.16,0.16 -1.87,1.19 -0.57,-2.14 -0.53,-0.23 0.53,-0.38 2.26,-2.49 0.24,-1.72 -2.07,0.4 -2.51,-2.1 -4.57,-1.54 -1.98,-0.8 -3.96,-1.34 -5.61,-2.88 -1.91,-0.59 -4.89,0.65 -5.15,3.01 -1.66,0.26 0.25,1.19 -0.95,1.74 -0.71,2.26 -0.52,4.57 1.52,6.1 -0.09,1.85 -0.15,3.66 0.81,5.04 -0.57,1.79 0.61,2.89 0.15,4.71 0.8,1.67 -0.36,3.89 1.54,5.38 0.67,2.38 2.22,3.96 3.95,5.62 -0.52,2.79 2.77,2.33 3.89,0.76 0.91,0.09 1.87,-0.69 3.16,-0.35 1.57,-1.07 2.52,-3.39 4.69,-4.38 1.9,-1.56 1.47,-3.64 1.43,-5.75 -0.18,-1.37 -1.46,-2.26 -0.25,-3.52 -1.49,-0.22 -1.13,-1.71 -1.93,-2.53 0.7,-1.4 -1.1,-2.18 -0.05,-3.66 -1.4,-2.35 2.33,-3 2.98,-1.09 1.78,-0.78 -1.18,-1.71 0.27,-3.01 z m 46.75,-7.55 c -2.05,0.7 -3.82,2.03 -5.88,2.72 -0.67,0.4 -2.43,0.86 -1.64,2.25 1.93,-1.3 4.48,-1.07 6.19,-2.82 1.64,-0.34 2.78,-0.69 1.33,-2.15 z m -23.09,28.1 c -2.49,0.56 -3.6,2.83 -4.31,4.93 -1.85,0.89 -0.59,4.21 0.59,5.34 1.72,0.81 3.58,1.63 5.49,0.98 2.2,-0.83 5.35,-2.33 5.09,-5.09 -0.59,-1.82 -2.8,-2.59 -3.39,-4.32 -1.07,-0.65 -2.48,-1.08 -3.47,-1.83 z", + "department-972" : "m 41.12,417.83 c 1.08,-0.51 0.39,-1.76 -0.57,-0.9 0.17,0.88 -1.41,-0.39 -1.27,-1.01 -1.24,-0.99 1.89,-2.22 0.44,-3.63 1.28,0.98 0.78,-0.99 2.05,-0.53 -0.37,-0.35 0.77,-1.14 -0.47,-1.12 0.04,-0.9 -0.95,0.65 -0.65,-0.43 -1.5,0.33 -2.35,3.48 -3.67,1.24 -0.33,-2.28 -2.52,0.16 -3.91,-0.8 -1.39,0.24 -2.33,-1.07 -3.57,-0.37 0.25,-1.05 -0.91,-1.38 -1.15,-0.52 -1.07,-1.01 0.24,1.52 -1.12,0.6 -0.49,-0.54 -0.75,-1.49 -1.33,-0.43 -1.1,-1.32 -3.62,-0.54 -4.2,0.97 -0.58,1.92 -2.17,0.41 -2.74,-0.58 -2.08,0.55 0.33,-2.63 -1.76,-2.44 -5.48e-4,-0.53 1.16,-1.07 -0.06,-1.42 -2.07,0.45 -0.47,-1.87 0.13,-2.37 0.62,-1.62 2.65,-0.37 3.18,-2.13 0.87,0.36 0.47,-1.74 1,-0.52 -0.64,1.14 2.43,-0.72 0.85,0.8 -0.4,0.92 1.34,0.72 1.64,1.17 0.97,-0.45 1.45,0.48 2.19,-0.49 0.85,0.34 1.33,-1.02 1.54,-1.07 0.26,-1.45 -2.92,-0.45 -1.99,-2.3 0.46,-0.94 -2.73,-1.2 -0.72,-2.06 -0.22,-0.83 -0.91,-0.31 -0.32,-1.22 -0.28,-1.25 -1.72,-0.04 -2.19,0.42 0.84,0.51 -1.42,1.49 -0.91,0.58 -0.58,-0.48 -1.39,0.67 -1.49,-0.49 -1.01,-8e-4 -3.19,0.56 -3.88,-0.97 -0.78,-1.26 -2.08,-1.97 -3.49,-2.28 -1.15,-0.83 -2.34,-1.58 -3.07,-2.86 -0.88,-1.77 -2.7,-3.11 -2.93,-5.17 -0.03,-1.4 1.44,-2.77 0.52,-4.11 -1.38,-1.67 -3.18,-2.85 -4.5,-4.46 -0.96,-1.27 -1.25,-3.03 -0.33,-4.41 0.77,-1.16 1.42,-2.66 2.96,-2.91 1.42,-0.6 2.51,-1.36 4.14,-1.34 1.94,-0.31 3.72,0.55 5.55,1 1.84,1.32 3.97,2.23 5.78,3.47 0.88,0.17 1.63,-0.49 2.29,0.47 1.2,-0.45 -0.22,1.09 1.16,0.77 0.55,0.84 0.95,2.15 2.18,1.32 0.46,0.47 -0.31,1.48 0.76,2.04 0.55,0.58 1.02,1.32 1.85,1.29 -0.17,1.12 2,1.82 1.83,3.36 0.87,1.99 1.35,-0.57 2.16,-1.09 1.4,-1.24 3.07,0.15 4.34,-1.28 1.3,-0.15 1.97,-1.87 3.28,-0.59 0.31,1.1 -0.19,2.01 -0.82,0.64 -1.26,-0.45 -1.99,0.91 -0.82,1.48 -0.66,0.53 -1.36,0.82 -0.16,1.39 -1.04,0.46 -2.2,0.46 -2.53,-0.69 -0.98,-1.09 -4.2,-0.24 -2.77,1.16 -0.07,-0.08 -1.31,0.94 -0.15,1.45 0.54,0.96 1.79,-0.77 1.13,0.65 -0.86,1.64 2.23,-0.74 1.71,0.68 -0.05,1.07 2.49,0.61 0.91,1.29 -0.54,0.71 -2.62,0.33 -2.44,1.52 -1.19,-0.96 -1.91,1.6 -0.65,1.89 0.96,1.92 1.98,-0.69 3.1,-0.19 0.53,-0.7 1.62,1.13 2.18,-0.26 1.09,0.7 -0.67,2.09 -1.68,1.55 -0.75,0.72 1.96,1.16 0.72,2.18 -1.01,0.96 0.44,1.05 1.02,1.19 -0.3,0.36 2.56,-0.58 1.17,0.24 -0.61,0.96 1.29,1.06 0.4,2.08 0.68,1.31 2.89,-0.39 2.41,1.68 1.13,-0.12 -1.31,0.7 0.07,1.12 0.45,-0.31 -0.09,0.75 0.96,0.4 -1.15,1.68 2.42,-1.51 0.96,0.45 -1.33,0.96 -0.09,1.54 0.49,2.31 -0.21,0.48 -1.59,0.45 -0.21,0.55 1.27,0.1 -0.04,1.32 -0.52,1.19 -0.46,1.05 0.15,1.15 0.92,0.8 0.51,0.76 -0.16,2.24 1.12,2.39 0.9,1.14 -0.09,1.68 -0.67,1.77 0.66,0.76 0.79,1.51 -0.18,2.18 0.29,1.26 -1.18,2.05 -1.49,2.98 -0.77,-0.72 -1.83,-0.35 -0.75,0.49 0.39,0.2 0.85,0.97 -0.05,0.52 -1.06,0.12 -1.08,2.05 -2.33,1.55 -0.14,0.12 -0.36,0.31 -0.56,0.15 z", + "department-973" : "m 8.71,468.07 c 0.65,-1.02 1.07,0.28 1.13,-0.79 0.6,-1.37 1.44,-3.03 0.93,-4.38 -1.66,0.13 -0.96,-2.54 -2.78,-2.38 -0.6,-0.96 -1.5,-1.7 -1.87,-2.73 -1.18,-0.67 0.75,-2.15 -1.08,-2.39 0.53,-1.57 -0.71,-2.9 -0.71,-4.39 1.24,-0.95 -0.25,-2.77 -0.39,-3.83 0,-1.65 0.37,-3.36 1.62,-4.57 0.78,-1.59 2.45,-2.29 3.72,-3.41 1.25,-0.94 1.5,-2.32 1.8,-3.75 0.65,-0.4 1,0.91 0.34,-0.26 0.06,-1.37 3.02,-0.59 2.9,0.84 0.82,-0.03 1.05,1.48 0.59,0.08 -0.99,0.16 -0.71,-1.46 -1.36,-1.44 1.6,0.69 3.18,1.47 4.8,2.1 1.33,0.32 2.78,0.17 4,0.85 -1.36,-0.48 -0.37,-0.97 0.4,-0.29 1.17,0.73 3.53,0.91 3.51,2.46 0.15,-0.44 -0.92,-1.82 0.32,-0.98 1.44,0.61 2.5,1.73 3.63,2.7 0.86,0.47 0.91,0.83 0.28,1.24 0.68,-0.75 2.44,1.17 3.52,1.74 0.99,0.55 1.3,1.55 -0.1,1.43 -0.9,0.02 1.24,-0.07 1.05,0.04 0.89,-1.67 2.77,0.32 1.04,1.07 -0.22,0.58 -0.66,1.9 -0.09,0.47 1.05,-2.28 3.22,0.37 4.41,1.15 0.62,1.46 1.88,3.86 -0.2,4.74 -1.09,-0.08 -2.47,1.1 -2.94,1.37 1.28,-1.39 3.58,-0.74 4.43,-2.59 -0.11,-1.14 -0.29,-4.42 1.62,-2.67 0.78,1 0.87,3.03 1.64,3.51 -0.36,1.37 1.94,2.42 0.64,3.98 -0.88,0.91 -1.94,1.45 -2.28,2.82 -1.35,1.08 -2.13,1.89 -2.81,3.44 -0.72,1.18 -1.63,2.27 -2.32,3.48 -0.66,1.57 -3.27,2.04 -2.6,4.08 -0.47,1.63 -1.6,2.37 -2.12,3.98 -1.14,1.19 -0.58,2.64 -1.58,3.75 -0.94,1.49 -2.65,1.97 -4.04,3.01 -0.89,1.67 -2.64,1.09 -4,0.49 -0.92,0.05 -2.79,0.91 -1.61,-0.51 -0.85,-1.69 -2.58,-0.7 -3.74,0.09 -1.12,-0.05 -3.37,-0.46 -3.6,-1.1 -0.48,-1.26 -1.35,0.32 -1.85,0.37 -0.51,0.22 -0.76,0.52 -1.24,0.65 -0.2,1.31 -2.14,0.51 -2.39,1.77 -0.99,0.4 -1.37,-0.86 -2.43,-0.3 -1.27,0 -1.69,-1 -2.99,-0.94 -1.07,-0.36 -0.91,-1.62 -1.81,-1.66 0.75,-0.08 1.5,0.21 1.41,-0.85 1.82,-0.45 2.27,-2.16 3.1,-3.6 1.14,-1.2 1.62,-2.64 1.67,-4.27 -0.34,-0.76 0.11,-1.81 -0.59,-2.19 0.12,-0.6 0.6,-1.04 1.04,-1.43 z", + "department-974" : "m 6.55,518.47 c -0.78,1.45 -2.64,1.3 -3.67,1.73 -0.99,0.7 -1.49,1.6 -0.68,2.68 -0.71,1.55 0.53,2.89 1.77,3.65 0.93,1.16 2.29,2.18 2.27,3.78 1.62,0.39 1.26,2.73 0.7,3.93 0.45,1.49 1.2,2.88 2.74,3.48 1.08,0.59 1.53,1.64 1.59,2.6 1.58,0.71 3.59,0.34 5.04,1.47 1.1,1.14 2.04,2.73 3.9,2.49 0.94,0.35 1.57,1.68 2.8,1.36 0.41,0.86 2.31,0.21 3.21,1.12 1.44,0.09 2.25,1.23 3.54,1.09 1.35,0.11 2.51,-0.11 3.53,0.99 1.15,0.16 2.43,-0.77 3.36,0.25 0.97,-0.65 2.13,-0.39 3.06,-1.1 1.71,0.47 3.22,-0.48 4.88,-0.5 1.4,-0.53 3.03,-0.16 4.19,-1.51 1.57,-1.15 0.29,-3.12 0.62,-4.69 -0.36,-1.46 -0.16,-2.97 0.21,-4.43 0.05,-1.5 1.91,-2.21 1.43,-3.7 1.44,0.27 0.59,-1.52 0.63,-2.21 -0.35,-1.08 -1.04,-1.57 -2.06,-1.88 -0.88,-1.15 -2.6,-0.49 -2.96,-2.18 -1.08,-1.2 -2.34,-2.37 -3.22,-3.72 0.44,-1.22 -1.09,-2.15 -1.97,-2.71 -0.85,-1.32 -0.31,-2.94 -0.71,-4.36 -0.6,-1.39 -1.75,-2.36 -2.73,-3.46 -1.17,-1.09 -2.77,-1.02 -4.16,-1.47 -1.38,-0.92 -2.99,-1 -4.56,-1.16 -1.75,0.65 -3.41,-1.15 -5.14,-0.63 -1.66,0.9 -2.84,-1.39 -4.3,-0.66 -1.84,-0.3 -3.75,0.39 -5.21,1.5 -1.17,0.67 -2.02,1.64 -3.1,2.36 -0.47,0.42 -1.58,-0.1 -1.2,0.65 -1.11,0.28 0.14,-0.7 -1.09,-0.23 -1.02,-0.1 -2.71,-0.7 -1.94,0.71 -1.38,0.63 -0.02,2.61 -0.46,3.77 -0.09,0.33 -0.08,0.76 -0.33,1.01 z", + "department-976" : "m 49.48,582.55 c -1.09,1.5 -3.13,3.73 -4.29,3.49 -0.04,1.14 -2.37,-0.07 -1.41,1.23 1.85,0.72 3.9,1.95 4.4,4.11 -0.1,1.08 1.24,1.43 1.82,1.86 -0.65,-1.36 -0.49,-3.36 1.48,-3.55 1.1,-0.6 -0.97,-2.5 0.97,-2.4 -0.79,-1.8 -1.36,-3.15 -2.75,-4.67 l -0.22,-0.08 -4e-6,0 z m -25.87,43.4 c -1.57,0.66 -2.04,-0.42 -2.69,-1.5 -0.96,0.2 -2.68,1.53 -2.26,-0.56 -0.29,-2.1 -3.3,-0.98 -2.96,1.01 -1.62,-0.83 0.04,-2.33 -0.71,-3.6 1.64,-0.91 -0.12,-3.97 -1.08,-1.71 -1.63,1.31 -2.55,-0.9 -4.24,-0.25 0.82,-1.56 3.2,-1.18 3.96,-2.88 1.01,-1.3 1.13,-5.01 -1.46,-3.23 -1.62,0.66 0.17,-1.25 -1.53,-1.26 -0.93,-1.21 -0.93,-3.41 -2.47,-3.89 1.47,-0.76 4.49,-0.99 5.8,-0.12 1.15,1.3 -0.49,4.45 2.29,4.33 1.9,0.37 2.98,2.44 5.05,1.92 2.41,0.01 1.95,-2.86 1.45,-4.39 -1.22,-1.08 -1.51,-2.15 -2.04,-3.65 -1.59,-1.05 -3.84,-1.95 -4.25,-4.13 -1.32,-0.69 -3.52,-1.33 -3.97,-2.87 1.54,0.04 1.54,-2.04 3.24,-1.32 2.23,0.16 0.64,-1.78 -0.71,-1.32 -2.76,-0.15 1.21,-3.79 -0.77,-4.49 -1.17,-1.17 -0.41,-2.93 0.99,-3.08 -0.81,-0.3 -2.36,0.07 -2.38,-1.41 -0.73,-0.83 1.72,-0.73 1.2,-2.07 0.52,-1.02 -0.6,-2.24 -1.17,-0.74 -1.08,-0.02 -2.3,-1.56 -3.73,-0.67 -1.38,-1.12 -2.95,-3.83 -4.66,-1.87 -0.45,-1.03 -3,-1.58 -1.11,-2.91 2.35,-0.34 2.82,-4.03 -0.2,-2.95 -2.28,0.03 0.97,-1.22 1.01,-2.35 -0.21,-1.04 -0.06,-2.57 1.45,-1.8 1.15,0.24 2.14,-0.36 2.17,-1.33 1.37,0.02 0.77,-2.06 -0.41,-1.84 0.29,-0.76 3.75,0.79 2.93,-1.59 0.08,-1.65 2.69,-1.39 2.16,-3.05 1.08,1.03 2.85,-2.46 2.47,-0.48 -1.81,0.56 1.51,1.73 -0.75,1.56 -0.98,0.03 -3.73,1.55 -1.35,1.54 0.86,0.67 2.53,0.49 1.6,1.93 1.21,-0.17 2.2,0.81 1.8,1.89 0.87,1.21 3.54,0.7 3.54,2.06 -2.07,-0.6 -0.93,1.74 -8.76e-4,2.31 0.04,2.42 2.59,1.12 3.79,2.15 0.54,2.08 2.3,-0.27 2.8,-0.97 -0.78,-2.25 1.18,0.06 1.82,0.58 2.04,-0.22 3.89,0.64 5.99,0.59 0.47,1.45 2.5,-0.57 1.49,1.25 0.7,1.31 2.83,0.84 3.67,2.26 1.61,0.56 1.58,2.4 0.73,3.53 -0.86,0.86 -0.83,1.5 0.49,2.06 0.18,1.64 -2.47,0.32 -3.17,1.86 -1.49,0.3 -0.43,2.32 -2.07,2.69 -1.28,0.99 -1.03,2.78 -2.77,3.12 -1.51,0.97 1.38,1.21 -0.28,1.86 -1.29,1.06 0.47,1.9 0.16,2.96 0.48,0.72 1.17,0.81 1.64,1.7 0.58,0.53 2.15,0.13 1.18,1.39 0.07,1.56 3.14,-0.41 1.84,1.46 -1.63,0.49 0.52,1.96 -1.3,2.13 -0.96,1.27 -4.27,1.29 -2.85,3.7 -0.91,1.44 3.37,2.6 0.79,2.21 -1.19,-0.25 -4.04,-1.63 -3.48,0.73 -1.74,0.05 -1.93,1.8 -0.95,2.74 0.79,1.58 -2.92,-0.58 -1.9,1.79 1.5,1.03 1.09,3.24 3.21,3.52 1,0.24 1.78,1.35 3.05,0.64 0.56,0.98 -1.46,2.2 -2.15,2.56 -1.46,-1.46 -2.81,0.08 -2.47,1.36 -1.65,0.28 -0.51,-4.66 -3.13,-3.2 -1.69,0.47 -0.29,2.47 -1.63,3.31 -0.13,0.32 -0.41,0.54 -0.68,0.75 z m -2.2,-10e-4 c -0.08,2.44 -1.24,0.23 0,0 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_01.js b/lib/mapael-maps/france/france_region_01.js new file mode 100644 index 000000000..3570e455e --- /dev/null +++ b/lib/mapael-maps/france/france_region_01.js @@ -0,0 +1,36 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Guadeloupe +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:Guadeloupe_department_location_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_01 : { + width : 70.349319, + height : 55.179909, + getCoords : function (lat, lon) { + var xfactor = 86.761658287969; + var xoffset = 5362.7633969916; + var x = (lon * xfactor) + xoffset; + + var yfactor = -82.266584089643; + var yoffset = 1358.4158276251; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-971" : "m 29.98,0.01 c -0.16,0.06 -0.15,0.43 -0.39,0.25 -0.11,-0.09 -0.16,0.03 -0.18,0.1 -0.31,-0.09 -0.35,0.34 -0.6,0.41 -0.19,0.35 -0.3,0.75 -0.67,0.99 -0.19,0.23 -0.57,0.15 -0.74,0.38 -0.04,0.16 -0.32,0.06 -0.39,0.22 -0.21,0.08 -0.54,0.1 -0.6,0.35 -0.08,0.16 -0.06,0.31 -0.18,0.45 0.02,0.29 -0.4,0.26 -0.6,0.35 -0.32,0.01 -0.57,0.18 -0.67,0.45 -0.12,0.32 -0.58,0.34 -0.77,0.57 -0.26,0.03 -0.32,0.36 -0.42,0.54 -0.08,0.41 -0.26,0.79 -0.49,1.15 -0.06,0.23 0.36,0.03 0.35,0.25 -0.04,0.42 0.35,0.75 0.35,1.15 -0.19,0.08 -0.05,0.27 0,0.38 -0.05,0.32 0.28,0.5 0.32,0.8 0.09,0.25 0.04,0.56 0.25,0.76 -0.03,0.23 0.17,0.35 0.39,0.41 0.36,0.18 0.83,0.18 1.05,0.54 0.09,0.17 0.31,0.07 0.32,-0.1 0.08,-0.24 0.39,0.22 0.53,0.32 0.14,0.19 0.42,0.43 0.39,0.67 -0.13,0.27 0.09,0.63 -0.28,0.8 -0.32,0.14 0.04,0.22 0.14,0.35 -0.02,0.1 -0.01,0.22 0.07,0.29 0.01,0.12 -0.35,0.11 -0.18,0.25 0.11,0.06 0.31,0.07 0.39,0.13 -0.31,0.06 -0.62,0.19 -0.95,0.19 -0.13,0.01 -0.17,0.12 -0.32,0.06 -0.2,0.06 0.02,0.22 0.14,0.22 0.08,0.02 0.25,0.2 0.07,0.16 -0.14,0.05 -0.03,0.35 -0.21,0.22 -0.34,-0.1 -0.76,0.01 -1.05,-0.16 -0.14,-0.25 -0.29,0.16 -0.35,0.25 -0.04,0.15 -0.23,0.15 -0.32,0.25 -8.7e-4,0.3 -0.63,0.36 -0.53,0.7 0.01,0.23 0.16,0.48 0.07,0.7 -0.14,0.13 -0.25,0.33 -0.04,0.45 -0.07,0.14 -0.1,0.36 -0.25,0.45 -0.03,0.31 -0.29,0.56 -0.56,0.73 -0.08,0.13 0.05,-0.19 -0.04,-0.22 -0.27,0.06 -0.35,0.48 -0.14,0.64 0.05,0.12 0.1,0.4 -0.14,0.32 -0.15,0.05 -0.1,0.3 -0.28,0.32 -0.12,-0.17 -0.43,0.09 -0.42,0.22 0.12,0.18 0.36,0.11 0.53,0.19 0.1,0.09 -0.03,0.28 0.11,0.35 0.06,0.22 -0.11,0.52 0.07,0.7 0.04,0.1 -0.06,0.25 0.04,0.35 -0.02,0.23 -0.02,0.47 0,0.7 0.01,0.11 0.03,0.21 0.04,0.32 -0.03,0.13 -0.31,0.08 -0.21,0.25 0.18,0.33 0.63,0.53 0.63,0.92 0.06,0.1 0.28,-0 0.18,0.16 -0.02,0.23 0.26,0.39 0.46,0.38 -0.19,0.24 0.21,0.45 0.11,0.7 0.03,0.14 0.4,0.18 0.25,0.35 -0.06,-0.09 -0.2,-0.22 -0.18,-0.03 0.05,0.14 0.18,0.23 0.18,0.38 0.12,0.05 0.28,0.02 0.39,0.13 0.16,0.12 0.4,0.27 0.56,0.06 0.19,-0.11 0.47,0.03 0.63,-0.13 0.31,-0.07 0.41,0.26 0.39,0.48 -0.11,0.38 0.37,0.3 0.63,0.35 0.53,0.09 1.15,0.01 1.62,0.29 0.2,0.13 0.49,0.03 0.7,0.16 0.15,0.08 0.3,0.2 0.49,0.13 0.18,0.01 0.3,0.32 0.49,0.13 0.16,-0.09 0.11,-0.29 0.35,-0.29 0.21,-0.11 0.38,0.11 0.6,0.03 0.29,-0.06 0.68,-0.11 0.81,-0.38 -0.03,-0.19 0.24,-0.21 0.39,-0.29 0.33,-0.05 0.67,-0.13 0.98,-0.13 0.01,0.19 0.26,0.24 0.32,0.06 0.07,0.09 0.15,0.06 0.18,-0.03 0.17,-0.04 0.32,-0.2 0.53,-0.16 0.36,0.04 0.79,-0.04 0.91,-0.38 0.17,-0.11 0.37,-0.22 0.56,-0.29 0.13,0.05 0.32,0.38 0.35,0.1 0.04,-0.39 0.58,-0.52 0.91,-0.35 0.2,0.09 0.46,0.06 0.53,-0.16 0.2,-0.16 0.51,-0.24 0.56,-0.51 0.24,-0.17 0.59,-0.23 0.88,-0.32 0.51,-0.01 0.99,-0.14 1.44,-0.35 0.15,-0.1 0.56,0.03 0.53,-0.22 0.31,0.02 0.66,0.09 0.95,0.03 0.06,0.19 0.36,0.03 0.28,-0.13 -0.03,-0.19 0.13,0.06 0.18,0.1 0.17,0.21 0.44,0.16 0.67,0.06 0.39,-0.11 0.82,-0.08 1.2,-0.22 0.25,-0.01 0.53,0.08 0.74,-0.06 0.16,-0 0.24,-0.15 0.42,-0.13 0.19,-0.02 0.26,-0.22 0.46,-0.22 0.36,-0.3 0.88,-0.02 1.3,-0.19 0.39,-0.06 0.7,-0.36 1.09,-0.38 0.52,0.07 1.07,0.08 1.58,0.19 0.32,-0.01 0.58,0.13 0.91,0.06 0.51,-0.12 1.02,0.23 1.55,0.19 0.22,0.09 0.45,0.13 0.7,0.1 0.48,-0.06 1,-0.05 1.37,0.25 0.12,0.1 0.3,0.09 0.42,0.1 0.04,0.17 0.35,0.39 0.46,0.16 -0.02,-0.12 0.33,-0.29 0.11,-0.32 -0.16,0.09 -0.26,0.01 -0.35,-0.1 -0.22,-0.04 -0.43,-0.1 -0.56,-0.29 -0.21,-0.3 -0.25,-0.14 -0.18,0.1 -0.17,0.05 -0.39,-0.2 -0.56,-0.25 -0.22,-0.02 -0.33,-0.21 -0.53,-0.25 -0.14,0.11 -0.33,0.2 -0.53,0.13 -0.49,-0.13 -1.01,-0.3 -1.34,-0.67 -0.6,-0.24 -1.37,-0.25 -1.79,-0.76 -0.12,-0.14 -0.28,-0.28 -0.42,-0.38 -0.11,-0.39 -0.34,-0.76 -0.56,-1.12 -0.16,-0.13 -0.21,-0.41 -0.46,-0.38 0.1,-0.25 -0.13,-0.42 -0.21,-0.64 -0.13,-0.21 -0.42,-0.23 -0.63,-0.16 -0.15,-0.07 0.11,-0.26 0,-0.38 -0.14,-0.2 -0.45,-0.36 -0.7,-0.32 -0.12,0.03 -0.12,-0.2 -0.25,-0.22 -0.17,-0.13 -0.4,-0.1 -0.53,-0.29 -0.14,-0.17 -0.36,-0.16 -0.56,-0.16 -0.21,-0.04 -0.39,-0.18 -0.56,-0.29 -0,-0.14 -0.13,-0.3 -0.32,-0.22 -0.14,0.05 -0.38,0.31 -0.46,0.06 -0.16,-0.27 -0.5,-0.49 -0.84,-0.35 -0.14,0.07 -0.28,0.08 -0.42,0 -0.36,-0.06 -0.71,-0.22 -1.09,-0.19 -0.3,-0.03 -0.71,-0.02 -0.77,0.32 -0.07,0.08 -0.11,-0.14 -0.18,-0.16 -0.15,-0.13 -0.3,-0.56 -0.53,-0.32 -0.25,0.31 -0.58,0.02 -0.88,-0.06 -0.21,-0.1 -0.65,-0.26 -0.7,0.06 -0.07,-0.08 0.07,-0.34 -0.18,-0.32 -0.37,-0.08 -0.79,-0.27 -0.98,-0.57 -0.24,-0.37 -0.68,-0.62 -0.88,-1.02 -0.2,-0.15 -0.18,-0.42 -0.39,-0.57 -0.26,-0.22 -0.41,-0.48 -0.56,-0.76 -0.06,-0.29 -0.11,-0.6 -0.32,-0.83 -0.14,-0.25 0.14,-0.51 0,-0.76 0.17,-0.24 0.09,-0.6 0,-0.86 -0,-0.21 0.37,-0.09 0.35,-0.32 0.05,-0.24 -0.04,-0.55 0.25,-0.7 0.11,-0.37 -0.02,-0.77 -0.07,-1.15 -0.19,-0.28 -0.05,-0.7 -0.28,-0.96 0.01,-0.15 -0.12,-0.28 -0.28,-0.29 -0.14,-0.12 0.05,-0.4 -0.18,-0.41 0.09,-0.23 -0.01,-0.54 -0.18,-0.7 8.2e-4,-0.25 0.07,-0.65 -0.25,-0.76 -0.18,0.05 -0.2,-0.26 -0.39,-0.19 -0.08,-0.13 -0.17,-0.32 -0.39,-0.29 -0.32,-0.06 -0.44,-0.36 -0.6,-0.57 -0.16,-0.07 -0.39,-0.09 -0.42,-0.29 -0.11,-0.17 -0.33,-0.25 -0.49,-0.38 -0.1,-0.11 -0.26,0.01 -0.28,0.03 -0.13,-0.27 0.02,-0.62 -0.25,-0.83 -0.24,-0.09 -0.46,0.2 -0.67,0.13 -0.12,-0.22 -0.41,-0.04 -0.56,-0.19 -0.13,0.03 -0.3,0.16 -0.32,-0.06 -0.08,-0.14 0.3,-0.22 0.07,-0.32 -0.15,0.06 -0.18,-0.18 -0.35,-0.13 0.05,-0.19 0.22,-0.41 0.14,-0.61 -0.01,-0.01 -0.02,-0.01 -0.04,0 z M 22.81,21.04 c -0.01,-0.06 -0.06,-0.11 -0.11,-0.16 0.04,-0.46 -0.01,-0.95 -0.14,-1.4 -0.09,-0.09 -0.21,-0.1 -0.32,-0.03 -0.1,0.06 -0.18,0.21 -0.14,0.32 -0.05,0.22 -0.2,-0.2 -0.32,-0.19 -0.18,0.04 -0.14,-0.25 -0.04,-0.29 0.19,-0.03 0.32,0.22 0.49,0.16 0.15,-0.31 -0.15,-0.71 -0.49,-0.73 -0.09,0.03 -0.09,0.3 -0.21,0.22 -0.01,-0.3 -0.43,-0.19 -0.6,-0.06 -0.14,0.05 -0.1,0.25 -0.28,0.22 -0.12,0.01 -0.32,0.06 -0.21,-0.13 0.01,-0.24 -0.28,-0.11 -0.39,-0.03 -0.14,-0.07 -0.27,0.11 -0.11,0.19 0.18,0.22 -0.07,0.41 -0.25,0.54 -0.17,0.09 -0.06,0.3 -0.25,0.38 -0.21,0.19 -0.47,0.3 -0.77,0.29 -0.19,0.03 -0.39,0.02 -0.42,-0.19 -0.13,-0.15 -0,-0.23 0.14,-0.29 0.17,-0.11 0.07,-0.27 -0.04,-0.38 -0.09,-0.13 0.21,-0.33 0.04,-0.41 -0.29,0.08 -0.26,0.47 -0.42,0.67 -0.08,0.15 -0.29,0.18 -0.35,0.35 -0.17,0.18 -0.59,0.23 -0.7,0 0.11,-0.22 0.45,-0.49 0.28,-0.73 -0.39,-0.11 -0.82,0.34 -1.2,0.13 -0.15,-0.19 -0.08,-0.5 0.21,-0.54 0.25,-0.09 0.52,-0.38 0.25,-0.57 -0.03,-0.17 0.12,-0.02 0.14,0.06 0.13,0.2 0.01,0.4 -0.18,0.51 0.01,0.21 0.4,0.18 0.53,0.06 0.45,-0.23 0.15,-0.84 0.6,-1.05 0.2,-0.13 0.64,-0.29 0.53,-0.57 -0.26,-0.26 -0.73,-0.09 -1.05,-0.06 -0.37,0.03 -0.84,0.34 -1.16,0.06 -0.12,-0.24 -0.53,0.01 -0.6,-0.29 -0.1,-0.09 -0.23,-0.15 -0.32,-0.25 -0.21,-0.06 -0.54,0.13 -0.56,-0.19 -0.07,-0.18 0.39,-0.2 0.21,-0.38 -0.21,-0.19 -0.56,-0.24 -0.77,-0.41 -0.3,0.03 -0.57,0.33 -0.88,0.13 -0.14,-0.08 -0.28,0.04 -0.35,0.1 -0.09,-0.07 0.06,-0.27 -0.14,-0.22 -0.14,0.09 -0.38,-0.16 -0.42,0.03 -0.17,-0.09 -0.17,-0.33 -0.39,-0.38 -0.15,-0.08 -0.36,-0.41 -0.56,-0.25 0.01,0.11 0.06,0.31 -0.14,0.29 -0.25,-0 -0.17,-0.31 -0.39,-0.38 -0.1,-0.1 -0.29,-0.05 -0.28,-0.22 -0.1,-0.21 -0.38,-0.13 -0.56,-0.16 -0.17,-0.1 -0.37,0 -0.53,-0.13 -0.28,-0.04 -0.57,-0.06 -0.84,-0.19 -0.25,-0.05 -0.36,-0.33 -0.14,-0.48 -0,-0.13 -0.26,-0.06 -0.32,-0.19 -0.05,-0.11 -0.2,-0.03 -0.25,-0.1 0.02,-0.21 -0.24,-0.3 -0.25,-0.51 -0.1,-0.09 -0.28,-0.06 -0.35,-0.19 -0.1,-0.11 -0.23,-0.02 -0.32,0 -0.17,-0.09 -0.41,-0.09 -0.56,-0.19 0.05,-0.22 -0.3,-0.15 -0.42,-0.22 -0.04,-0 -0.1,-0.01 -0.14,0 -0.25,0.03 0.01,0.36 -0.25,0.38 -0.08,0.1 -0.22,0.27 -0.39,0.19 -0.25,0.16 -0.47,-0.24 -0.74,-0.06 -0.23,0.09 -0.46,0.18 -0.63,0.35 -0.24,0.05 -0.5,0.09 -0.74,0.13 -0.01,0.17 -0.28,0.3 -0.18,0.51 -0.03,0.24 -0.36,0.4 -0.6,0.45 -0.18,0.12 -0.43,0.37 -0.28,0.57 0.26,0.26 0.07,0.73 -0.25,0.89 -0.19,0.16 -0.47,0.08 -0.63,0.25 -0.29,0.04 -0.34,0.47 -0.07,0.57 0.15,0.07 0.45,0.11 0.39,0.32 -0.12,0.02 -0.2,0.08 -0.32,0.13 -0.4,0.02 -0.33,0.49 -0.39,0.73 -0.07,0.29 0.08,0.55 0.04,0.83 -0.11,0.17 -0.15,0.37 -0.04,0.54 0.03,0.29 -0.38,0.33 -0.56,0.48 5.7e-4,0.1 0.08,0.21 0.04,0.32 0.03,0.11 0.3,-0.03 0.21,0.13 -0.05,0.19 0.14,0.34 0.04,0.54 -0.03,0.25 0.09,0.5 0.21,0.7 0.11,0.38 0.1,0.81 0.49,1.05 0.16,0.22 0.39,0.37 0.6,0.54 0.32,0.28 0.61,0.63 0.56,1.05 0.02,0.29 0.27,0.54 0.18,0.83 -0.03,0.41 -0.44,0.74 -0.35,1.15 -0.14,0.18 0.17,0.36 0.21,0.54 0.09,0.07 0.21,0.11 0.11,0.22 -0.07,0.28 -0,0.62 -0.07,0.89 0.1,0.29 0.59,0.02 0.67,0.35 -0.08,0.08 -0.06,0.2 0,0.29 0.05,0.58 0.11,1.21 0,1.78 -0.08,0.08 -0.09,0.17 -0.21,0.22 -0.06,0.1 -0.02,0.23 -0.14,0.29 0.07,0.19 0.4,0.05 0.53,0.22 0.21,0.17 0.44,0.47 0.35,0.73 -0.16,0.07 -0.37,0.14 -0.32,0.35 -0.01,0.33 -0.01,0.67 0.04,0.99 -0.21,0.12 0.11,0.31 0.04,0.48 -0.01,0.12 -0.21,0.17 -0.14,0.32 0.01,0.13 0.24,0.02 0.18,0.19 -0.06,0.11 -0.2,0.32 0.04,0.35 0.15,0 0.03,0.13 -0.04,0.16 -0.09,0.1 -0.03,0.24 0.07,0.29 0.02,0.21 0.29,0.11 0.39,0.03 0.02,0.16 -0.31,0.33 -0.11,0.45 0.11,0.09 0.02,0.28 -0.04,0.38 0.05,0.51 -0.04,1 -0.18,1.5 0.18,0.24 0.22,0.56 0.46,0.76 0.05,0.15 0.09,0.32 0.28,0.38 0.13,0.14 0.24,0.3 0.42,0.41 0.08,0.09 0.1,0.24 0.25,0.25 0.09,0.15 0.04,0.36 0.25,0.45 0.33,0.3 0.28,0.71 0.39,1.08 0.03,0.41 -0.02,0.88 0.35,1.18 0.23,0.31 0.72,0.45 0.84,0.83 0.31,0.37 0.69,0.73 1.12,0.99 0.3,0.08 0.45,0.39 0.7,0.54 0.21,0.46 0.41,0.97 0.35,1.47 -0.08,0.21 -0.08,0.46 0.07,0.64 0.06,0.11 -0.05,0.42 0.18,0.38 0.19,-0.15 0.37,0 0.53,0.1 0.3,0.14 0.49,-0.1 0.77,-0.13 0.41,-0.11 0.86,-0.11 1.23,-0.29 0.3,-0.07 0.34,-0.38 0.49,-0.57 0.22,-0.18 0.5,-0.46 0.81,-0.45 0.01,0.16 0.17,0.37 0.35,0.38 0.12,-0.22 0.26,-0.51 0.53,-0.57 0.12,-0.13 0.35,-0.3 0.46,-0.06 0.14,0.11 0.43,0.09 0.53,-0.03 0.26,-0.08 0.5,0.35 0.74,0.16 0.04,-0.1 0.28,0.02 0.28,-0.16 0.02,-0.15 0.2,-0.41 0.39,-0.25 0.18,0.02 0.41,0.02 0.56,-0.06 0.14,-0.15 0,-0.33 -0.11,-0.45 0.09,-0.2 0.5,-0.22 0.46,-0.51 -0.02,-0.29 0.02,-0.63 0.39,-0.7 0.13,0.01 0.34,-0.02 0.21,-0.13 0.32,-0.07 0.32,-0.44 0.56,-0.57 0.19,-7.5e-4 0.27,-0.13 0.35,-0.25 0.2,-0.13 0.48,-0.22 0.56,-0.45 0.12,-0.02 0.25,-0.06 0.25,-0.19 0.19,-0.04 0.37,-0.14 0.46,-0.32 0.22,-0.37 0.78,-0.43 1.02,-0.76 0.25,-0.04 0.03,-0.31 0.21,-0.41 0.23,-0.19 0.44,-0.46 0.35,-0.76 -0.07,-0.27 0.15,-0.42 0.32,-0.61 0.02,-0.23 0.42,-0.32 0.28,-0.57 0.01,-0.06 0.2,-0.04 0.14,-0.16 -0.13,-0.25 -0.44,-0.42 -0.39,-0.73 -0.07,-0.39 0.01,-0.77 0.11,-1.15 -0.17,-0.41 -0.02,-0.88 0,-1.31 -0.14,-0.14 -0.17,-0.35 -0.18,-0.54 0.01,-0.19 -0.31,-0.26 -0.14,-0.45 0.04,-0.23 -0.3,-0.11 -0.39,-0.29 -0.39,-0.39 -0.36,-1.15 0.25,-1.34 0.2,-0.14 0.45,-0.45 0.18,-0.64 -0.19,-0.22 -0.52,-0.08 -0.74,-0.25 -0.3,-0.11 -0.5,-0.37 -0.63,-0.61 0.24,-0.13 0.09,-0.44 0.25,-0.61 -0.04,-0.32 -0.55,-0.1 -0.6,-0.41 0.01,-0.18 -0.05,-0.37 -0.18,-0.51 -0.08,-0.28 -0.14,-0.68 0.21,-0.83 0.21,-0.1 0.1,-0.39 0.04,-0.54 -0.13,-0.11 -0.42,0.01 -0.42,-0.22 -0.11,-0.19 -0.31,-0.34 -0.32,-0.57 -0.12,-0.33 0.01,-0.68 0.28,-0.92 0.09,-0.13 0.42,-0.34 0.18,-0.48 -0.18,-0.11 -0.41,-0.27 -0.25,-0.48 0.11,-0.12 0.12,-0.38 -0.11,-0.38 -0.18,-0.34 0.24,-0.68 0.28,-1.02 0.05,-0.23 0.15,-0.69 0.49,-0.64 0.15,0.14 0.43,0.26 0.6,0.1 0.18,-0.02 0.46,-0.08 0.53,0.13 0.08,0.07 0.3,0.34 0.39,0.16 -0.09,-0.17 0.21,-0.36 0.28,-0.13 0.07,0.11 0.37,0.11 0.21,0.29 -0.12,0.18 0.39,0.24 0.21,0.41 -0.19,0.12 0.04,0.35 0.21,0.29 0.19,0.05 0.2,-0.1 0.14,-0.13 0.17,0.06 0.5,-0.04 0.39,-0.25 -0.18,-0.2 0.43,-0.32 0.25,-0.54 -0.12,-0.23 -0.35,-0.02 -0.53,-0.06 -0.18,-0.35 0.1,-0.83 -0.25,-1.15 -0.14,-0.13 -0.14,-0.31 0.04,-0.41 0.16,-0.11 0.33,-0.3 0.32,-0.48 z m 46.75,-7.55 c -0.21,-0.02 -0.43,0.26 -0.6,0.1 -0.23,0.05 -0.13,0.47 -0.42,0.41 -0.28,-0.1 -0.52,0.11 -0.67,0.29 -0.1,-0.03 -0.29,-0.01 -0.25,0.13 0.04,0.07 0.04,0.23 -0.07,0.1 -0.15,-0.3 -0.33,0.03 -0.53,0.1 -0.27,0.1 -0.5,0.29 -0.74,0.41 -0.1,-0.14 -0.22,-0.03 -0.21,0.1 -0.16,0.27 -0.59,0.19 -0.77,0.45 -0.12,0.08 -0.12,0.28 -0.32,0.22 -0.14,-0.03 -0.24,0.07 -0.28,0.16 -0.15,-0.01 -0.21,0.13 -0.35,0.1 -0.17,0.15 -0.22,-0.25 -0.39,-0.1 -0.11,0.1 -0.31,0.13 -0.28,0.32 -0.2,0.06 0.03,0.38 -0.25,0.32 -0.3,0.02 -0.6,0.01 -0.88,-0.03 -0.14,0.07 -0.02,0.23 -0.18,0.32 -0.14,0.22 -0.38,0.35 -0.56,0.51 0.02,0.16 0.25,0.31 0.07,0.48 -0.08,0.18 -0.11,0.54 0.14,0.61 0.2,-0.09 0.19,-0.38 0.46,-0.41 0.28,-0.1 0.69,-0.02 0.91,-0.22 -0.06,-0.13 0.15,-0.17 0.25,-0.19 0.14,-0.05 0.23,-0.28 0.39,-0.13 0.2,-0.04 0.41,-0.12 0.63,-0.13 0.41,-0.09 0.83,-0.14 1.23,-0.22 0.75,-0.26 1.21,-0.89 1.86,-1.27 0.34,-0.22 0.73,-0.37 1.12,-0.48 0.13,0.05 0.38,0.13 0.35,-0.1 -0.03,-0.12 0.18,0.18 0.25,0 0.13,0.02 0.29,-0.02 0.32,-0.16 0.1,-0.03 0.24,0.01 0.28,-0.13 0.08,-0.1 0.33,-0.04 0.25,-0.22 -0.05,-0.1 -0.22,-0.19 -0.04,-0.25 0,-0.11 -0.2,-0.02 -0.18,-0.16 -0.03,-0.06 -0.24,-0.06 -0.07,-0.1 0.1,-0.09 -0.02,-0.19 -0.11,-0.16 -0.03,-0.1 0.21,-0.27 -0.04,-0.29 -0.07,-0.01 -0.1,-0.09 -0.18,-0.06 0.07,-0.16 0.05,-0.33 -0.18,-0.29 z m -23.09,28.1 c -0.29,0.33 -0.77,0.31 -1.2,0.29 -0.2,-0.02 -0.18,0.19 -0.35,0.22 -0.39,0.27 -0.57,0.68 -0.77,1.05 -0.16,0.09 -0.45,0.14 -0.39,0.38 -0.01,0.27 -0.14,0.56 -0.49,0.54 -0.41,-0 -0.68,0.15 -0.56,0.54 -0.04,0.5 0.05,1.07 -0.21,1.53 -0.37,0.41 -0.99,0.54 -1.41,0.89 0.01,0.39 0.14,0.81 0.18,1.21 0.05,0.56 0.24,1.11 0.46,1.62 0.09,0.23 -0.07,0.42 -0.18,0.61 0.11,0.15 0.28,0.25 0.42,0.35 0.05,0.44 0.45,0.75 0.77,1.05 0.15,0.35 0.6,0.15 0.88,0.32 0.27,0.14 0.51,0.36 0.84,0.35 0.43,0.09 0.82,0.35 1.27,0.38 0.18,0.08 0.29,0.33 0.53,0.22 0.44,-0.07 0.92,-0.01 1.3,-0.25 0.54,-0.11 1.16,-0.1 1.65,-0.35 0.33,-0.06 0.54,-0.33 0.84,-0.45 0.16,-0.17 0.39,-0.24 0.56,-0.38 0.13,-0.24 0.45,-0.29 0.6,-0.51 0.06,-0.4 0.58,-0.44 0.88,-0.64 0.27,-0.11 0.71,-0.17 0.7,-0.51 0.15,-0.47 0.5,-0.87 0.53,-1.37 -0,-0.25 0.03,-0.5 0.11,-0.73 -0.16,-0.36 -0.26,-0.75 -0.42,-1.12 -0.22,-0.4 -0.62,-0.74 -1.02,-0.99 -0.15,-0.14 -0.49,0.01 -0.49,-0.25 -0.03,-0.28 -0.33,-0.33 -0.56,-0.41 -0.13,-0.09 0.25,-0.34 0,-0.35 -0.13,0.05 -0.28,0.07 -0.28,-0.1 -0.15,-0.12 -0.35,-0.31 -0.21,-0.51 0.06,-0.11 -0.07,-0.14 -0.14,-0.16 0.11,-0.12 0.16,-0.4 -0.07,-0.41 0.05,-0.11 0.06,-0.31 -0.14,-0.22 -0.13,-0.02 -0.28,-0.09 -0.42,-0.1 -0.06,-0.06 -0.07,-0.2 -0.21,-0.13 -0.07,0.05 -0.23,0.07 -0.14,-0.06 0.13,-0.14 -0.04,-0.28 -0.21,-0.22 -0.18,0.07 -0.18,-0.03 -0.18,-0.16 -0.12,-0.09 -0.18,0.21 -0.28,0.03 -0.13,-3.6e-4 -0.19,-0.04 -0.28,-0.1 -0.32,-0.07 -0.51,-0.42 -0.81,-0.51 -0.07,-0.13 -0.3,-0.1 -0.39,-0.22 -0.23,-0.01 -0.49,-0.1 -0.6,-0.29 -0.06,0.02 -0.13,0.17 -0.11,0.03 0.01,-0.04 0.12,-0.17 0,-0.13 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_02.js b/lib/mapael-maps/france/france_region_02.js new file mode 100644 index 000000000..7f8b1b58e --- /dev/null +++ b/lib/mapael-maps/france/france_region_02.js @@ -0,0 +1,36 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Martinique +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:Martinique_department_location_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_02 : { + width : 45.797703, + height : 49.652901, + getCoords : function (lat, lon) { + var xfactor = 108.86848400636; + var xoffset = 6666.0374751106; + var x = (lon * xfactor) + xoffset; + + var yfactor = -102.17420080747; + var yoffset = 1520.2920010424; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-972" : "m 39.34,49.59 c -0.16,-0.06 -0.15,-0.08 0.02,-0.27 0.11,-0.12 0.21,-0.17 0.25,-0.11 0.19,0.28 0.51,-0.24 0.36,-0.59 -0.08,-0.2 -0.13,-0.22 -0.39,-0.15 -0.17,0.05 -0.34,0.04 -0.39,-0.01 -0.05,-0.05 -0.18,-0.06 -0.27,-0.02 -0.14,0.05 -0.17,0.13 -0.12,0.37 l 0.06,0.31 -0.25,-0.18 c -0.14,-0.1 -0.38,-0.21 -0.54,-0.24 -0.22,-0.04 -0.28,-0.1 -0.24,-0.24 0.04,-0.12 6e-5,-0.18 -0.11,-0.18 -0.19,0 -0.22,-0.15 -0.05,-0.2 0.2,-0.06 -0.01,-0.43 -0.32,-0.58 -0.43,-0.2 -0.43,-0.27 -0.07,-0.61 0.37,-0.36 1.09,-1.54 1.09,-1.8 0,-0.1 -0.09,-0.28 -0.2,-0.41 -0.11,-0.13 -0.2,-0.35 -0.2,-0.49 l 0,-0.26 0.29,0.25 c 0.26,0.23 0.32,0.24 0.53,0.13 0.32,-0.16 0.41,-0.29 0.26,-0.37 -0.09,-0.05 -0.09,-0.09 -0,-0.17 0.06,-0.06 0.1,-0.16 0.07,-0.22 -0.04,-0.09 0.05,-0.09 0.41,-0.02 0.5,0.1 0.72,0.03 0.44,-0.16 -0.24,-0.16 -0.22,-0.28 0.08,-0.4 0.25,-0.1 0.35,-0.29 0.15,-0.29 -0.06,0 -0.1,-0.07 -0.1,-0.15 0,-0.11 -0.07,-0.13 -0.29,-0.09 -0.27,0.05 -0.29,0.04 -0.24,-0.18 0.04,-0.19 0.01,-0.23 -0.15,-0.23 -0.11,0 -0.25,0.1 -0.31,0.23 -0.06,0.13 -0.16,0.23 -0.22,0.23 -0.06,0 -0.03,-0.1 0.06,-0.23 0.09,-0.12 0.13,-0.27 0.1,-0.32 -0.11,-0.16 -0.33,-0.11 -0.39,0.09 -0.03,0.1 -0.17,0.22 -0.32,0.27 -0.38,0.13 -1.37,1.07 -1.37,1.29 0,0.11 -0.12,0.25 -0.3,0.34 -0.17,0.09 -0.3,0.19 -0.3,0.23 -3e-4,0.04 -0.05,0.07 -0.1,0.07 -0.06,0 -0.1,-0.09 -0.1,-0.21 0,-0.12 -0.1,-0.27 -0.24,-0.34 -0.13,-0.07 -0.42,-0.28 -0.63,-0.46 -0.34,-0.28 -0.39,-0.37 -0.39,-0.73 l 0,-0.41 -0.35,0.03 c -0.19,0.02 -0.4,0.07 -0.47,0.11 -0.06,0.05 -0.13,0.06 -0.16,0.04 -0.03,-0.03 -0.38,0.08 -0.78,0.23 -0.67,0.26 -0.74,0.27 -0.89,0.13 -0.1,-0.09 -0.25,-0.13 -0.39,-0.1 -0.13,0.03 -0.25,0.01 -0.27,-0.04 -0.05,-0.15 -1.13,-0.22 -1.39,-0.09 -0.2,0.1 -0.23,0.09 -0.28,-0.08 -0.03,-0.1 -0.1,-0.16 -0.15,-0.13 -0.05,0.03 -0.25,-0.08 -0.43,-0.24 -0.25,-0.22 -0.39,-0.28 -0.55,-0.23 -0.12,0.03 -0.21,0.1 -0.21,0.14 0,0.04 -0.13,0.14 -0.29,0.21 -0.26,0.12 -0.32,0.11 -0.51,-0.02 -0.2,-0.14 -0.21,-0.17 -0.06,-0.27 0.22,-0.16 0.2,-0.38 -0.04,-0.44 -0.11,-0.03 -0.17,-0.1 -0.15,-0.16 0.06,-0.15 -0.22,-0.36 -0.41,-0.3 -0.08,0.03 -0.18,0.2 -0.22,0.38 -0.08,0.39 -0.24,0.51 -0.32,0.25 -0.05,-0.19 -0.4,-0.35 -0.51,-0.25 -0.03,0.03 -0.01,0.1 0.06,0.16 0.14,0.13 0.16,0.86 0.03,0.94 -0.05,0.03 -0.12,-0.01 -0.15,-0.09 -0.03,-0.08 -0.16,-0.14 -0.3,-0.14 -0.27,0 -0.66,-0.23 -0.56,-0.33 0.08,-0.08 -0.29,-0.78 -0.42,-0.78 -0.13,0 -0.29,0.21 -0.37,0.48 l -0.07,0.25 -0.37,-0.25 c -0.2,-0.14 -0.43,-0.33 -0.51,-0.42 -0.2,-0.24 -0.98,-0.16 -2,0.23 -0.95,0.36 -1.39,0.74 -1.41,1.23 -0.02,0.46 -0.19,0.71 -0.66,0.94 -0.33,0.16 -0.46,0.18 -0.68,0.11 -0.44,-0.15 -0.83,-0.54 -0.83,-0.84 0,-0.16 -0.1,-0.35 -0.25,-0.49 -0.28,-0.25 -0.38,-0.27 -0.68,-0.12 -0.24,0.12 -0.73,-0.06 -0.65,-0.24 0.03,-0.06 3e-5,-0.15 -0.06,-0.2 -0.11,-0.1 0.05,-0.48 0.2,-0.48 0.04,0 0.08,-0.27 0.09,-0.59 0.01,-0.64 -0.15,-0.89 -0.54,-0.86 -0.46,0.04 -0.55,-0.01 -0.55,-0.29 0,-0.26 0.08,-0.32 0.37,-0.28 0.19,0.02 0.27,-0.35 0.13,-0.63 -0.16,-0.34 -0.6,-0.51 -1,-0.39 -0.17,0.05 -0.39,0.07 -0.51,0.05 l -0.21,-0.05 0.2,-0.36 c 0.11,-0.2 0.18,-0.43 0.15,-0.52 -0.03,-0.09 0.01,-0.24 0.09,-0.34 0.08,-0.1 0.15,-0.25 0.15,-0.34 0,-0.1 0.16,-0.22 0.41,-0.32 0.38,-0.15 0.4,-0.18 0.35,-0.45 -0.06,-0.27 -0.03,-0.3 0.39,-0.49 0.25,-0.11 0.51,-0.31 0.57,-0.43 0.09,-0.18 0.17,-0.22 0.39,-0.18 1.05,0.19 1.01,0.2 1.23,-0.19 0.11,-0.19 0.26,-0.47 0.32,-0.61 0.09,-0.2 0.17,-0.25 0.42,-0.23 0.22,0.02 0.35,-0.04 0.46,-0.18 0.14,-0.19 0.14,-0.21 -0.09,-0.29 -0.21,-0.07 -0.22,-0.09 -0.06,-0.15 0.1,-0.04 0.18,-0.15 0.18,-0.26 0,-0.15 0.02,-0.17 0.09,-0.07 0.05,0.07 0.14,0.1 0.2,0.06 0.16,-0.09 0.14,0.15 -0.04,0.46 -0.08,0.14 -0.11,0.3 -0.06,0.34 0.13,0.12 0.86,-0.09 1.07,-0.3 0.27,-0.27 0.35,-0.23 0.35,0.19 0,0.34 -0.03,0.37 -0.31,0.43 -0.3,0.05 -0.31,0.07 -0.24,0.39 0.04,0.18 0.08,0.34 0.08,0.34 0.09,0.06 0.88,0.09 0.88,0.04 0,-0.04 0.09,-0.05 0.2,-0.03 0.15,0.04 0.19,0.1 0.14,0.25 -0.05,0.18 -0.01,0.22 0.28,0.27 0.25,0.05 0.37,0.02 0.46,-0.09 0.07,-0.09 0.24,-0.17 0.39,-0.18 0.2,-0.02 0.28,0.03 0.35,0.2 0.09,0.21 0.5,0.33 0.5,0.15 0,-0.04 0.14,-0.22 0.3,-0.39 0.3,-0.31 0.31,-0.31 0.46,-0.13 0.16,0.18 0.16,0.18 0.44,-0.1 0.15,-0.15 0.42,-0.33 0.6,-0.4 0.37,-0.14 0.43,-0.37 0.11,-0.44 -0.16,-0.04 -0.18,-0.07 -0.08,-0.13 0.07,-0.04 0.24,-0.08 0.36,-0.08 0.31,-0 0.29,-0.26 -0.02,-0.33 -0.2,-0.05 -0.24,-0.1 -0.2,-0.26 0.08,-0.29 -0.16,-0.45 -0.5,-0.33 -0.15,0.05 -0.27,0.06 -0.27,0.01 0,-0.13 -0.52,-0.21 -0.64,-0.1 -0.19,0.18 -0.27,0.1 -0.27,-0.27 0,-0.24 -0.05,-0.39 -0.15,-0.42 -0.21,-0.07 -0.19,-0.24 0.05,-0.52 0.11,-0.13 0.2,-0.3 0.2,-0.38 0,-0.08 -0.08,-0.15 -0.2,-0.15 -0.11,0 -0.2,-0.04 -0.2,-0.09 0,-0.21 -0.42,-0.46 -0.76,-0.46 -0.35,0 -0.35,-0 -0.35,-0.41 0,-0.34 0.03,-0.41 0.19,-0.41 0.25,0 0.55,-0.31 0.5,-0.52 -0.02,-0.12 -0.16,-0.18 -0.44,-0.22 l -0.4,-0.05 0.29,-0.11 c 0.22,-0.08 0.26,-0.14 0.18,-0.23 -0.06,-0.06 -0.12,-0.3 -0.14,-0.53 -0.04,-0.52 -0.27,-0.58 -0.67,-0.18 -0.24,0.24 -0.39,0.3 -0.82,0.34 -0.6,0.05 -0.66,0.1 -0.54,0.4 0.05,0.12 0.12,0.33 0.15,0.46 0.06,0.24 0.05,0.25 -0.37,0.28 -0.33,0.02 -0.45,0.08 -0.53,0.23 -0.06,0.11 -0.16,0.21 -0.23,0.21 -0.16,0 -0.16,-0.14 -0.02,-0.37 0.09,-0.15 0.06,-0.19 -0.16,-0.27 -0.36,-0.12 -0.37,-0.12 -0.68,0.14 -0.24,0.2 -0.28,0.21 -0.37,0.08 -0.05,-0.08 -0.07,-0.22 -0.05,-0.31 0.03,-0.1 -0.03,-0.2 -0.17,-0.27 -0.25,-0.12 -0.45,-0.04 -0.37,0.14 0.03,0.07 0.01,0.13 -0.04,0.13 -0.05,0 -0.1,-0.06 -0.1,-0.14 0,-0.19 -0.27,-0.27 -0.46,-0.13 -0.09,0.06 -0.15,0.07 -0.15,0.02 0,-0.16 -0.39,-0.19 -0.87,-0.06 -0.25,0.07 -0.62,0.12 -0.81,0.11 -0.3,-0.01 -0.4,-0.08 -0.68,-0.43 -0.18,-0.23 -0.41,-0.58 -0.52,-0.76 -0.11,-0.19 -0.27,-0.37 -0.37,-0.39 -0.1,-0.03 -0.21,-0.16 -0.24,-0.28 -0.04,-0.13 -0.22,-0.31 -0.42,-0.42 -0.19,-0.1 -0.35,-0.22 -0.35,-0.27 0,-0.11 -1.09,-0.57 -1.19,-0.51 -0.05,0.03 -0.28,-0.05 -0.52,-0.18 -0.24,-0.12 -0.56,-0.22 -0.72,-0.22 -0.32,0 -0.61,-0.32 -0.61,-0.67 0,-0.24 -0.62,-0.7 -0.94,-0.7 -0.09,0 -0.17,-0.04 -0.17,-0.09 0,-0.05 -0.09,-0.09 -0.2,-0.09 -0.15,0 -0.2,-0.07 -0.23,-0.34 -0.02,-0.27 -0.09,-0.37 -0.31,-0.46 -0.25,-0.11 -0.34,-0.27 -0.29,-0.51 0.01,-0.04 -0.07,-0.17 -0.18,-0.28 -0.11,-0.11 -0.23,-0.31 -0.27,-0.44 -0.04,-0.14 -0.17,-0.34 -0.3,-0.46 -0.4,-0.37 -1.68,-2.2 -1.68,-2.4 0,-0.11 -0.06,-0.28 -0.14,-0.38 -0.26,-0.34 -0.41,-1.1 -0.28,-1.39 0.06,-0.14 0.16,-0.45 0.21,-0.67 0.17,-0.76 0.34,-1.24 0.48,-1.38 0.08,-0.09 0.14,-0.36 0.14,-0.69 -10e-4,-0.44 -0.06,-0.62 -0.3,-0.97 -0.35,-0.5 -1.41,-1.54 -1.58,-1.54 -0.18,0 -0.49,-0.36 -0.9,-1.03 -0.21,-0.34 -0.45,-0.63 -0.55,-0.66 -0.09,-0.02 -0.32,-0.07 -0.5,-0.1 -0.28,-0.05 -0.39,-0.16 -0.73,-0.73 -0.22,-0.37 -0.41,-0.73 -0.41,-0.8 0,-0.07 -0.14,-0.25 -0.3,-0.39 -0.22,-0.19 -0.29,-0.32 -0.24,-0.47 0.03,-0.11 0.01,-0.28 -0.04,-0.38 -0.21,-0.35 -0.24,-1.23 -0.06,-1.76 0.22,-0.67 0.54,-1.28 0.77,-1.49 0.1,-0.09 0.19,-0.27 0.19,-0.4 0,-0.16 0.08,-0.26 0.25,-0.34 0.14,-0.06 0.25,-0.16 0.25,-0.24 0,-0.07 0.19,-0.38 0.42,-0.67 0.3,-0.38 0.49,-0.54 0.64,-0.54 0.34,0 0.89,-0.2 1.08,-0.38 0.09,-0.09 0.28,-0.17 0.43,-0.17 0.14,0 0.3,-0.06 0.34,-0.13 0.04,-0.07 0.22,-0.14 0.38,-0.16 0.25,-0.03 0.31,-0.08 0.34,-0.29 0.03,-0.2 0.07,-0.25 0.2,-0.19 0.26,0.1 0.53,0.08 1.03,-0.1 0.74,-0.26 3.4,-0.31 3.66,-0.07 0.07,0.06 0.34,0.11 0.6,0.11 0.3,0 0.52,0.05 0.6,0.14 0.07,0.08 0.19,0.14 0.26,0.14 0.07,0 0.18,0.07 0.23,0.15 0.07,0.11 0.18,0.14 0.44,0.1 0.25,-0.04 0.41,-0 0.58,0.12 0.13,0.1 0.32,0.17 0.41,0.17 0.09,0 0.27,0.08 0.39,0.18 0.12,0.1 0.33,0.18 0.48,0.18 0.18,0 0.29,0.07 0.35,0.21 0.1,0.25 0.67,0.79 0.85,0.81 0.07,0.01 0.16,0.02 0.22,0.04 0.06,0.01 0.18,0.03 0.29,0.03 0.1,0.01 0.35,0.18 0.55,0.38 0.2,0.2 0.44,0.37 0.54,0.37 0.1,0 0.23,0.06 0.3,0.14 0.07,0.08 0.28,0.14 0.48,0.14 0.3,0 0.37,0.04 0.47,0.28 0.06,0.15 0.17,0.28 0.24,0.28 0.07,0 0.13,0.04 0.13,0.09 0,0.05 0.07,0.09 0.15,0.09 0.08,0 0.15,0.03 0.15,0.07 0,0.04 0.19,0.12 0.42,0.19 0.39,0.11 0.44,0.1 0.8,-0.11 l 0.39,-0.23 0.32,0.36 c 0.3,0.35 0.33,0.36 0.77,0.31 0.49,-0.06 0.58,0.05 0.29,0.35 -0.25,0.25 -0.11,0.46 0.31,0.43 0.51,-0.03 0.77,0.21 0.77,0.72 0,0.44 0.21,0.7 0.68,0.86 0.26,0.09 0.64,0.04 0.64,-0.08 0,-0.04 0.18,-0.07 0.41,-0.07 0.39,-0.01 0.52,0.08 0.3,0.2 -0.06,0.03 -0.1,0.14 -0.1,0.23 0,0.1 -0.05,0.18 -0.1,0.18 -0.24,0 -0.09,0.48 0.23,0.74 0.2,0.16 0.34,0.37 0.35,0.52 0.02,0.25 0.35,0.57 0.59,0.57 0.07,0 0.16,0.08 0.2,0.18 0.03,0.1 0.15,0.28 0.27,0.41 0.18,0.21 0.26,0.23 0.6,0.18 0.27,-0.04 0.4,-0.02 0.4,0.05 0,0.06 -0.07,0.1 -0.15,0.1 -0.24,0 -0.17,0.29 0.15,0.63 0.19,0.2 0.35,0.29 0.45,0.25 0.13,-0.04 0.15,-0.01 0.1,0.17 -0.05,0.18 -0.01,0.24 0.18,0.31 0.46,0.16 0.72,0.47 0.65,0.76 -0.06,0.27 0.16,0.81 0.33,0.81 0.05,0 0.11,0.21 0.15,0.48 0.06,0.49 0.14,0.59 0.55,0.68 0.35,0.09 0.6,-0.18 0.65,-0.71 0.04,-0.38 0.12,-0.52 0.47,-0.84 0.23,-0.21 0.42,-0.42 0.42,-0.46 0,-0.04 0.09,-0.07 0.2,-0.07 0.2,0 0.72,-0.18 0.82,-0.28 0.25,-0.28 1.08,-0.34 1.17,-0.08 0.08,0.23 0.43,0.31 0.64,0.14 0.09,-0.08 0.3,-0.18 0.45,-0.24 0.15,-0.05 0.32,-0.2 0.38,-0.33 0.08,-0.18 0.15,-0.22 0.3,-0.18 0.29,0.08 0.81,-0.04 0.81,-0.19 0,-0.07 0.08,-0.13 0.17,-0.13 0.25,0 0.79,-0.41 1.05,-0.78 0.24,-0.35 0.47,-0.38 0.43,-0.05 -0.02,0.16 0.01,0.18 0.14,0.12 0.19,-0.1 0.65,-0.04 0.65,0.08 0,0.04 0.07,0.08 0.15,0.08 0.08,0 0.15,0.06 0.15,0.13 0,0.07 0.07,0.14 0.15,0.16 0.13,0.03 0.13,0.07 -0.01,0.33 -0.17,0.31 -0.17,0.29 0.15,0.86 0.02,0.03 -0.09,0.08 -0.25,0.09 -0.34,0.04 -0.64,-0.25 -0.64,-0.61 0,-0.28 -0.24,-0.4 -0.45,-0.24 -0.08,0.06 -0.2,0.08 -0.26,0.05 -0.2,-0.11 -0.61,0.04 -0.61,0.22 0,0.1 -0.09,0.19 -0.21,0.22 -0.32,0.08 -0.22,0.45 0.18,0.61 0.6,0.26 0.68,0.73 0.13,0.73 -0.19,0 -0.36,0.08 -0.5,0.25 -0.31,0.36 -0.24,0.45 0.57,0.63 0.07,0.02 0.09,0.11 0.06,0.22 -0.04,0.14 -0.11,0.18 -0.25,0.15 -0.11,-0.03 -0.22,0.01 -0.25,0.08 -0.07,0.17 -0.43,0.17 -0.65,-0.01 -0.16,-0.13 -0.2,-0.13 -0.49,0 -0.4,0.19 -0.51,0.12 -0.51,-0.3 -8.1e-4,-0.19 -0.04,-0.38 -0.08,-0.44 -0.09,-0.12 -0.73,-0.43 -0.73,-0.35 0,0.03 -0.16,-0.04 -0.36,-0.15 -0.28,-0.16 -0.46,-0.19 -0.78,-0.15 -0.23,0.03 -0.49,0.02 -0.58,-0.03 -0.21,-0.1 -0.31,-0.03 -0.54,0.38 -0.12,0.21 -0.24,0.32 -0.32,0.29 -0.17,-0.06 -0.29,0.34 -0.2,0.66 0.04,0.15 0.17,0.25 0.39,0.31 l 0.33,0.09 -0.35,0.01 c -0.28,0.01 -0.38,0.06 -0.48,0.26 -0.24,0.47 -0.1,0.81 0.41,0.97 0.1,0.03 0.18,0.12 0.18,0.19 0,0.14 0.37,0.42 0.56,0.42 0.06,0 0.19,-0.14 0.28,-0.32 0.12,-0.22 0.22,-0.3 0.33,-0.26 0.12,0.04 0.13,0.08 0.04,0.18 -0.06,0.07 -0.08,0.17 -0.04,0.23 0.04,0.06 -0.08,0.22 -0.27,0.36 -0.28,0.22 -0.32,0.29 -0.23,0.43 0.15,0.22 0.47,0.26 1.03,0.12 0.3,-0.08 0.51,-0.2 0.62,-0.36 0.23,-0.34 0.44,-0.26 0.36,0.15 -0.05,0.22 -0.03,0.31 0.06,0.31 0.1,0 0.1,0.03 -0,0.14 -0.11,0.12 -0.08,0.19 0.16,0.41 0.3,0.28 0.63,0.34 0.97,0.18 0.15,-0.07 0.2,-0.07 0.2,0.05 0,0.08 0.04,0.14 0.09,0.14 0.05,0 0.07,0.08 0.04,0.18 -0.04,0.14 -0.11,0.17 -0.34,0.13 -0.25,-0.05 -0.3,-0.02 -0.43,0.27 -0.16,0.36 -0.37,0.52 -0.37,0.3 0,-0.21 -0.67,-0.19 -0.82,0.02 -0.08,0.12 -0.2,0.15 -0.41,0.13 -0.19,-0.03 -0.37,0.02 -0.49,0.12 -0.24,0.2 -0.25,0.39 -0.03,0.61 0.15,0.15 0.15,0.17 -0.02,0.23 -0.12,0.04 -0.24,6.6e-4 -0.35,-0.12 -0.09,-0.1 -0.27,-0.22 -0.39,-0.25 -0.18,-0.05 -0.23,-0.02 -0.28,0.19 -0.12,0.55 -0.21,0.72 -0.43,0.81 -0.27,0.11 -0.31,0.49 -0.05,0.57 0.1,0.03 0.21,0.11 0.26,0.18 0.04,0.07 0.15,0.12 0.23,0.12 0.08,0 0.22,0.15 0.31,0.34 0.44,0.97 1.2,1.02 1.83,0.14 0.37,-0.51 0.68,-0.65 0.84,-0.38 0.12,0.21 0.4,0.14 0.4,-0.11 0,-0.1 0.07,-0.17 0.15,-0.17 0.08,0 0.15,0.06 0.15,0.13 0,0.18 0.2,0.28 0.33,0.15 0.17,-0.16 0.36,-0.12 0.31,0.06 -0.03,0.11 0.05,0.2 0.23,0.28 0.42,0.17 0.55,0.15 0.49,-0.1 -0.08,-0.28 0.16,-0.45 0.58,-0.41 0.32,0.03 0.33,0.05 0.3,0.35 -0.02,0.18 -0.08,0.34 -0.13,0.35 -0.05,0.02 -0.09,0.15 -0.09,0.3 0,0.28 -0.17,0.36 -0.27,0.13 -0.03,-0.08 -0.1,-0.14 -0.16,-0.14 -0.06,0 -0.08,0.06 -0.04,0.14 0.09,0.22 -0.02,0.37 -0.31,0.39 -0.15,0.01 -0.32,0.06 -0.39,0.11 -0.08,0.06 -0.18,0.04 -0.3,-0.09 -0.22,-0.22 -0.5,-0.25 -0.42,-0.04 0.04,0.1 -0.01,0.16 -0.14,0.19 -0.33,0.08 -0.23,0.29 0.15,0.35 0.2,0.03 0.44,0.16 0.55,0.28 0.1,0.12 0.23,0.22 0.28,0.22 0.05,0 0.07,0.14 0.05,0.32 -0.03,0.2 0,0.32 0.07,0.32 0.06,0 0.11,0.06 0.11,0.14 0,0.08 -0.07,0.14 -0.15,0.14 -0.08,0 -0.15,0.06 -0.15,0.14 0,0.08 -0.07,0.14 -0.15,0.14 -0.11,0 -0.14,0.06 -0.09,0.22 0.03,0.12 0.01,0.25 -0.05,0.28 -0.06,0.03 -0.11,0.14 -0.11,0.23 0,0.28 0.78,0.4 1.09,0.17 0.14,-0.11 0.24,0.05 0.2,0.33 -0.04,0.28 0.18,0.27 0.33,-0.01 0.08,-0.15 0.15,-0.21 0.18,-0.14 0.06,0.15 0.21,0.14 0.4,-0.02 0.17,-0.16 0.34,-0.18 0.34,-0.05 0,0.05 0.13,0.1 0.28,0.1 l 0.28,0.01 -0.28,0.11 c -0.15,0.06 -0.35,0.2 -0.44,0.32 -0.14,0.19 -0.14,0.22 0.08,0.46 0.13,0.14 0.36,0.3 0.51,0.36 0.3,0.11 0.39,0.45 0.14,0.54 -0.2,0.07 -0.27,0.38 -0.12,0.52 0.07,0.06 0.2,0.22 0.3,0.34 0.11,0.14 0.28,0.24 0.45,0.24 0.15,0.01 0.4,0.04 0.55,0.08 0.2,0.05 0.35,0.01 0.55,-0.13 l 0.28,-0.2 0.14,0.24 c 0.08,0.13 0.12,0.26 0.08,0.29 -0.03,0.03 -0.01,0.12 0.04,0.21 0.07,0.11 0.05,0.19 -0.05,0.27 -0.24,0.18 -0.17,0.34 0.18,0.41 l 0.33,0.07 -0.44,0.09 c -0.42,0.09 -0.44,0.11 -0.38,0.37 0.03,0.15 0.06,0.33 0.06,0.41 0,0.11 0.09,0.12 0.42,0.07 0.3,-0.05 0.4,-0.03 0.35,0.04 -0.04,0.06 -0.14,0.1 -0.22,0.1 -0.09,0 -0.14,0.06 -0.12,0.16 0.04,0.17 0.38,0.2 0.71,0.07 0.26,-0.1 0.23,0.19 -0.03,0.34 -0.28,0.16 -0.25,0.35 0.05,0.35 0.14,0 0.25,-0.04 0.25,-0.09 0,-0.05 0.19,-0.2 0.43,-0.34 0.24,-0.14 0.51,-0.34 0.6,-0.44 0.09,-0.1 0.2,-0.15 0.24,-0.12 0.04,0.04 0.01,0.14 -0.07,0.23 -0.08,0.09 -0.16,0.25 -0.16,0.36 -0.01,0.23 -0.32,0.58 -0.5,0.58 -0.13,0 -0.18,0.16 -0.15,0.48 0.01,0.09 -0.05,0.16 -0.14,0.16 -0.08,0 -0.15,0.02 -0.15,0.05 0,0.13 0.34,0.5 0.46,0.5 0.14,0 0.82,0.58 0.88,0.76 0.06,0.16 -0.14,0.32 -0.35,0.27 -0.27,-0.06 -0.69,0.06 -0.69,0.2 0,0.09 0.17,0.12 0.63,0.11 l 0.63,-0.01 -0.03,0.46 c -0.04,0.53 -0.14,0.68 -0.37,0.51 -0.09,-0.07 -0.26,-0.09 -0.42,-0.06 -0.22,0.05 -0.25,0.1 -0.2,0.29 0.04,0.14 0,0.31 -0.09,0.43 -0.19,0.25 -0.2,0.61 -0.01,0.67 0.08,0.03 0.27,-0.06 0.42,-0.19 0.59,-0.5 0.87,-0.24 0.8,0.77 -0.05,0.85 0.14,1.34 0.49,1.28 0.3,-0.05 0.48,0.12 0.48,0.46 0,0.15 0.09,0.38 0.21,0.51 0.23,0.27 0.2,0.46 -0.12,0.83 -0.25,0.28 -0.49,0.31 -0.49,0.05 0,-0.17 -0.3,-0.28 -0.31,-0.11 -8.2e-4,0.04 -0.03,0.16 -0.06,0.28 -0.05,0.15 -0.02,0.21 0.11,0.21 0.09,0 0.2,0.07 0.23,0.16 0.04,0.09 0.15,0.27 0.26,0.4 0.21,0.26 0.17,0.63 -0.07,0.63 -0.16,0 -0.46,0.3 -0.46,0.46 0,0.07 -0.07,0.17 -0.15,0.22 -0.12,0.08 -0.13,0.17 -0.06,0.4 0.06,0.18 0.06,0.32 5.8e-4,0.35 -0.05,0.03 -0.09,0.15 -0.09,0.27 0,0.32 -0.21,0.69 -0.4,0.69 -0.28,0.01 -0.64,0.34 -0.57,0.54 0.04,0.1 -0,0.24 -0.09,0.32 -0.09,0.08 -0.13,0.21 -0.09,0.29 0.03,0.08 0.02,0.15 -0.03,0.15 -0.05,7.4e-4 -0.19,0.03 -0.31,0.06 -0.16,0.04 -0.23,0.02 -0.23,-0.08 0,-0.19 -0.21,-0.33 -0.58,-0.4 -0.28,-0.05 -0.31,-0.03 -0.37,0.24 -0.07,0.33 0.14,0.61 0.4,0.52 0.13,-0.04 0.15,-0 0.09,0.21 -0.06,0.25 -0.04,0.27 0.3,0.33 0.22,0.04 0.36,0.11 0.36,0.2 0,0.21 -0.29,0.26 -0.5,0.09 -0.19,-0.16 -0.61,-0.13 -0.61,0.04 0,0.04 -0.16,0.23 -0.35,0.42 -0.19,0.19 -0.36,0.41 -0.37,0.49 -0.01,0.08 -0.02,0.23 -0.03,0.32 -0.01,0.2 -0.5,0.27 -0.78,0.11 -0.12,-0.07 -0.22,-0.04 -0.4,0.11 -0.25,0.21 -0.26,0.22 -0.52,0.12 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_03.js b/lib/mapael-maps/france/france_region_03.js new file mode 100644 index 000000000..54f6594f0 --- /dev/null +++ b/lib/mapael-maps/france/france_region_03.js @@ -0,0 +1,36 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Guyane +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:Guyane_department_location_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_03 : { + width : 44.022598, + height : 49.128056, + getCoords : function (lat, lon) { + var xfactor = 14.877907532954; + var xoffset = 811.95256630287; + var x = (lon * xfactor) + xoffset; + + var yfactor = -13.494388491278; + var yoffset = 77.65459868297; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-973" : "m 6.78,33.65 c 0.01,0 0.02,-0 0.04,-0.02 0.05,-0.04 0.06,-0.13 0.13,-0.13 0.06,-0.04 0.18,-0.02 0.17,-0.12 -0.02,-0.1 0.08,-0.13 0.16,-0.15 0.05,-0.05 0.1,-0.1 0.13,-0.15 0.05,0 0.03,0.09 0.1,0.11 0.08,0.01 0.18,-0.01 0.27,-0.01 0.14,0.01 0.05,0.13 -0.03,0.15 -0.05,0.07 -0.16,0.06 -0.2,0.13 -0.06,0.09 0.13,0.14 0.07,0.02 0.02,-0.04 0.08,-0.09 0.11,-0.1 0.08,-0.02 0.14,-0.12 0.2,-0.17 -0.06,-0.03 -0.08,-0.11 -0.06,-0.18 -0.02,-0.11 0.17,-0.1 0.13,-0.23 0.03,-0.08 -0.08,-0.07 -0.08,-0.13 0.04,-0.05 0.13,-0.08 0.05,-0.15 -0.04,-0.09 0.11,-0.13 0.1,-0.22 0.02,-0.06 0.1,-0.11 0.07,-0.18 -0.07,-0.04 -0.04,-0.1 -1.5e-4,-0.15 -0.06,-0.08 0.02,-0.03 0.07,-0.04 0.04,-0.03 0.06,-0.1 0.09,-0.15 0.03,-0.11 0.16,-0.14 0.26,-0.18 0.1,-0.06 0.13,-0.18 0.21,-0.26 0.03,-0.06 0.13,-0.07 0.14,-0.14 0.05,-0.07 -0.07,-0.11 -0.05,-0.02 -0.11,0.01 0.03,-0.07 0.01,-0.11 0.05,-0.04 0.02,-0.1 0,-0.15 -0.02,-0.06 -0.1,-0.1 -0.08,-0.17 0,-0.06 -2e-5,-0.12 -0,-0.19 -0.01,-0.07 0.01,-0.14 0,-0.2 -0,-0.07 0.02,-0.15 0.05,-0.21 0.02,-0.05 0.08,-0.09 0.07,-0.15 -0.04,-0.04 -0.09,-0.06 -0.13,-0.11 -0.03,-0.06 0.12,-0.08 0.06,-0.15 0.03,-0.08 -0.03,-0.16 0.01,-0.24 0.06,-0.02 0.05,-0.07 0.09,-0.1 0.03,-0.07 0.16,-0.03 0.17,-0.11 0.05,-0.07 0.02,-0.15 0.05,-0.22 -0.01,-0.07 0.09,-0.11 0.04,-0.19 -0.01,-0.09 -0.09,-0.04 -0.14,-0.08 -0.06,-0.05 -0,-0.13 -0.05,-0.18 -0.04,-0.06 -0.06,-0.12 -0.1,-0.18 -0.05,-0.03 -0.05,-0.09 -0.12,-0.11 -0.07,-0.05 -0.15,-0.01 -0.22,0.02 -0.07,0.02 -0.11,0.09 -0.07,0.15 -0.04,0.08 -0.13,0.03 -0.21,0.03 -0.06,0.02 -0.2,0.02 -0.15,-0.07 0.04,-0.05 0.05,-0.13 0.01,-0.18 -0.03,-0.06 -0.09,-0.09 -0.15,-0.11 -0.06,-0.03 -0.11,-0.07 -0.17,-0.1 -0.06,-0.02 -0.12,-0.05 -0.12,-0.12 -0.02,-0.06 -0.12,-0.1 -0.08,-0.17 0.09,-0.01 0.06,-0.13 0.1,-0.18 0.03,-0.05 0.02,-0.12 -0.01,-0.17 -0.03,-0.05 -0.06,-0.1 -0.13,-0.14 -0.04,-0.03 -0.1,-0.06 -0.12,-0.11 -0.02,-0.06 -0.04,-0.12 -0.05,-0.18 -0.01,-0.08 -0.07,-0.12 -0.11,-0.18 -0.04,-0.04 -0.09,-0.09 -0.09,-0.15 -0.01,-0.06 -0.03,-0.12 -0.07,-0.17 0.01,-0.08 -0.08,-0.11 -0.12,-0.16 -0.04,-0.06 -0.12,-0.04 -0.18,-0.07 -0.06,-0.02 -0.13,-0.05 -0.19,-0.04 -0.07,0.01 -0.14,-0.04 -0.21,-0.02 -0.06,3.8e-4 -0.1,0.04 -0.16,0.05 -0.07,0.01 -0.15,0.04 -0.2,-0.01 -0.06,-0.02 -0.11,-0.07 -0.13,-0.12 -0,-0.05 -0.02,-0.12 0.06,-0.14 0.01,-0.06 0.05,-0.11 0.08,-0.17 0.03,-0.06 0.01,-0.12 -0.04,-0.17 -0.04,-0.04 -0.11,-0.08 -0.18,-0.06 -0.06,-0.03 -0.11,-0.07 -0.16,-0.12 -0.07,-0.03 -0.15,0.02 -0.22,-0.02 -0.05,-0.03 -0.09,-0.09 -0.07,-0.14 -0.03,-0.07 -0.15,-0.01 -0.15,-0.11 -0.02,-0.06 -0.07,-0.09 -0.07,-0.16 0.03,-0.06 0.01,-0.13 -0.05,-0.14 -0.07,-0.02 -0.03,-0.05 -0.07,-0.07 -0.02,-0.04 -0.03,-0.08 -0.1,-0.07 -0.07,0.02 -0.11,-0.09 -0.17,-0.01 -0.09,0.05 -0.03,-0.05 -0.02,-0.09 0.06,0.01 0.02,-0.1 -0,-0.06 0.01,0.09 -0.04,-0.03 -0.07,-0.02 -0.02,-0.06 -0.1,-0.06 -0.12,-0.12 -0.03,-0.04 -0,-0.09 -0.04,-0.13 -0.05,-0.01 -0.04,-0.09 -0.06,-0.15 -0.01,-0.06 0.04,-0.14 0.06,-0.19 0.02,-0.05 -0.01,-0.11 0.02,-0.15 -0.03,-0.07 4.2e-4,-0.13 0.01,-0.19 0.04,-0.06 -0.06,-0.08 -0.07,-0.14 -0.07,-0.03 -0.02,0.01 0,0.04 0.05,0.06 0.06,0.1 0.02,0.18 0.03,0.08 -0.05,0.03 -0.06,-0.01 0,-0.06 -0.05,-0.1 -0.08,-0.13 -0.04,-0.04 -0.05,-0.07 -0.09,-0.1 0.03,-0.06 -0.02,-0.07 -0.06,-0.11 -0.05,-0.03 -0.15,0.01 -0.14,-0.09 0.05,-0.13 -0.14,-0.16 -0.23,-0.19 -0,-0.02 -0.03,-0.09 -0.08,-0.09 -0.03,-0.01 -0.06,-0.07 -0.1,-0.04 -10e-4,0.07 -0.03,0.02 -0.06,-3.7e-4 -0.04,-0.04 0.01,-0.09 0.02,-0.13 0.01,-0.04 0,-0.08 0.04,-0.12 0.04,-0.04 -0.06,-0.11 0.03,-0.12 0.06,-0.02 0.04,-0.07 0.08,-0.1 0.05,-0.04 0.01,-0.12 0.01,-0.16 -0.01,-0.04 0.01,-0.09 0.05,-0.12 0.02,-0.06 -0.01,-0.1 -0.07,-0.12 -0.01,-0.08 0.08,0.02 0.08,-0.06 0.02,-0.06 0.13,-0.04 0.12,-0.09 -0.03,-0.07 0.05,-0.09 0.08,-0.13 0.07,-0.03 0.03,-0.09 0.04,-0.14 0.01,-0.06 -0.02,-0.12 -0.08,-0.15 -0.04,-0.03 -0.1,-0 -0.14,-0.04 -0.03,-0.03 -0.06,-0.09 -0.01,-0.13 -0.06,-0.04 -0.02,-0.13 -0.09,-0.12 -0.03,-0.06 -0.09,-0.02 -0.13,-0.07 -0.05,-0.01 -0.1,0.04 -0.14,0.07 -0.06,0.01 -0.12,-0.06 -0.2,-0.04 -0.05,0.01 -0.11,0.01 -0.16,-0.02 -0.01,-0.04 -0.04,-0.09 -0.06,-0.13 -0.03,-0.05 -0.07,-0.11 -0.07,-0.17 -0.02,-0.05 0.03,-0.1 0.03,-0.16 0.04,-0.03 0.02,-0.09 0.08,-0.1 0.02,0.04 0.04,-0.01 0.07,-0.03 0.03,-0.05 0.06,-0.09 0.05,-0.15 -0.01,-0.05 -0.06,-0.09 -0.09,-0.13 -0.01,-0.04 -0,-0.08 0.01,-0.12 0.02,-0.05 0.06,-0.1 0.06,-0.15 0.01,-0.05 8.3e-4,-0.12 -0.06,-0.15 -0.02,-0.04 -0.06,-0.07 -0.08,-0.11 -0.01,-0.06 -0.01,-0.12 -0.02,-0.19 10e-4,-0.05 -0.04,-0.1 -0.01,-0.15 0.02,-0.05 0.02,-0.11 0.05,-0.16 0.03,-0.06 -0.02,-0.13 -0.01,-0.19 0.02,-0.05 0.04,-0.1 0.04,-0.15 0.04,-0.05 0.02,-0.12 -0.03,-0.16 -0.01,-0.05 -0.04,-0.09 -0.08,-0.13 -0.05,-0.04 -0.1,-0.08 -0.17,-0.05 -0.06,0 -0.06,-0.05 -0.09,-0.07 -0.04,-0.03 -0.11,9.4e-4 -0.11,-0.06 0,-0.03 0.08,-0.03 0.06,-0.07 0.01,-0.04 -0.07,-0.09 -0.01,-0.12 0.02,-0.04 0.06,-0.07 0.1,-0.09 0.06,0.02 0.08,-0.11 0.02,-0.12 -0.02,-0.02 -0.08,-0.1 -0.09,-0.06 -0.04,0.03 -0.02,-0.07 -0.08,-0.06 -0.03,-0.02 -0.07,-0.06 -0.11,-0.03 -0.05,0.04 -0.07,0.01 -0.07,-0.04 -0.05,-0.02 -0.06,-0.08 -0.08,-0.12 0.06,-0.03 -0.04,-0.08 0.02,-0.13 0.05,-0.03 0.05,-0.1 0.02,-0.14 0.04,-0.05 0.02,-0.1 0.04,-0.15 0.01,-0.04 0,-0.07 -0.02,-0.12 0.01,-0.05 -0.04,-0.09 -0.06,-0.12 0.07,-0.04 -0.02,-0.06 0.01,-0.11 -0.03,-0.06 -0.02,-0.12 -0.04,-0.18 -0.03,-0.04 -0.08,-0.08 -0.07,-0.13 -0.01,-0.05 -0.08,-0.06 -0.07,-0.12 0.02,-0.05 0.05,-0.08 0.06,-0.12 0,-0.05 0.08,-0.06 0.04,-0.01 -0.03,0.08 0.01,-0 0.03,-0.01 0.02,-0.02 0.08,-0.03 0.07,-0.07 -0.02,-0.05 0.14,-0.01 0.06,0.01 -0.08,-0.03 -0.04,0.02 0.01,0.03 0.02,-0.07 0.1,-0.01 0.12,-0.04 0.01,-0.04 0.1,-0.04 0.1,-0.08 -0,-0.03 -0.01,-0.09 0.04,-0.11 -0,-0.06 0.08,-0.07 0.08,-0.13 0.05,-0.02 0.04,-0.08 0.07,-0.12 0.06,-0.03 0.05,-0.1 0.04,-0.15 -0,-0.06 -0.02,-0.12 -0.04,-0.17 -0.06,-0.02 -0.01,-0.1 -0.05,-0.14 -0.02,-0.04 -0.02,-0.08 -0.05,-0.12 -0.03,-0.04 -0.05,-0.09 -0.11,-0.09 -0.05,-2e-5 -0.04,-0.07 -0.09,-0.09 -0.05,-0.02 -0.04,-0.07 -0.04,-0.11 0.03,-0.02 0.06,-0.06 0.05,-0.1 0.05,0.03 0.02,-0.01 0.05,-0.02 0.04,-0.02 0.1,-0.04 0.13,-0.06 0.04,-0.04 -0,-0.07 -0.03,-0.1 -0.02,-0.04 0.1,-0.05 0.02,-0.09 -0.05,0.02 -0.09,-0.01 -0.13,0.02 -0.07,0.01 -0.06,-0.07 -0.03,-0.09 -0.04,-0.03 -0.11,-0.03 -0.08,-0.08 0,-0.06 0.03,-0.11 0.03,-0.17 -0.01,-0.06 0.06,-0.08 0.09,-0.13 0.06,-0.07 0.05,-0.15 0.05,-0.24 -0.01,-0.06 -0.08,-0.09 -0.12,-0.13 -0.04,-0.03 -0.09,-0.04 -0.13,-0.06 -0.06,-0.03 -0.14,-0.02 -0.19,-0.04 -0.04,-0.04 -0.09,-0.03 -0.13,0 -0.06,0.05 -0.09,-0.01 -0.11,-0.05 -0.05,-0.04 0.01,-0.12 -0.05,-0.16 0.02,-0.06 -0.02,-0.14 0.04,-0.18 0.02,-0.07 -0.03,-0.14 0.02,-0.2 0.01,-0.06 0.01,-0.12 -0.04,-0.16 -0.04,-0.07 -0.01,-0.13 0.01,-0.2 -0.05,0.01 -0.11,-0.05 -0.12,-0.09 0.02,-0.05 0.06,-0.07 0.07,-0.12 0.02,-0.07 -2.1e-4,-0.14 -0,-0.21 -0.03,-0.06 0.01,-0.14 -0.01,-0.2 -0.02,-0.05 0.01,-0.1 0.03,-0.14 0.03,-0.05 -0.02,-0.09 -0.01,-0.15 0.03,-0.06 -0.03,-0.09 -0.05,-0.14 -0.02,-0.05 0.01,-0.11 -0.01,-0.16 -0.02,-0.05 -0.11,-0.03 -0.1,-0.1 -0.03,-0.06 0.04,-0.09 0.07,-0.13 0.03,-0.05 0.07,-0.08 0.13,-0.09 0.05,7.7e-4 0.09,0.05 0.12,-0.01 0.01,-0.06 0.09,-0.07 0.09,-0.13 -0,-0.05 0.05,-0.12 0.07,-0.15 0.03,-0.03 -0,-0.08 0.03,-0.11 0.04,-0.03 0.06,-0.09 0.05,-0.15 0,-0.06 -0,-0.12 0.01,-0.18 -0.01,-0.06 -0,-0.12 -0.07,-0.14 0.01,-0.06 0.07,-0.11 0.06,-0.17 0.02,-0.06 -0.01,-0.13 -0.02,-0.19 6.3e-4,-0.05 -0.01,-0.1 -0,-0.15 0.02,-0.04 0.04,-0.06 0.07,-0.1 0.03,-0.02 0.07,-0.05 0.09,-0.09 0.02,-0.04 0.06,-0.08 0.07,-0.13 0.01,-0.04 0.05,-0.07 0.04,-0.11 0.02,-0.04 0.04,-0.08 0.03,-0.12 0.03,-0.03 0.01,-0.08 0.04,-0.11 0.02,-0.04 0.06,-0.07 0.09,-0.11 -0,-0.07 -0.07,0.03 -0.09,0.04 -0.01,-0.03 -0.01,-0.06 -0.03,-0.08 -0.01,-0.05 0.01,-0.1 0.05,-0.13 0.02,-0.02 0.07,-0.07 0.1,-0.04 -0.04,0.06 0.05,0.07 0.07,0.01 0.04,-0.03 0.09,-0.05 0.14,-0.07 0.03,-0.04 0.09,-0.06 0.13,-0.09 0.04,-0.01 0.07,-0.05 0.11,-0.07 0.04,-0.03 0.06,-0.06 0.1,-0.09 -0.02,-0.05 0.05,-0.06 0.04,-0.11 -0.03,-0.05 0.02,-0.1 0.01,-0.14 -0.01,-0.01 0.01,-0.08 0.04,-0.06 0.04,-0.02 0.07,-0.03 0.12,-0.06 0.04,-0.03 0.08,-0.05 0.12,-0.07 0.05,-0.04 0.03,-0.1 0.03,-0.15 -0.02,-0.05 0.01,-0.09 0.06,-0.12 0.03,-0.04 0.09,-0.05 0.11,-0.1 0.04,-0.04 0.06,-0.09 0.09,-0.14 0.02,-0.05 0.04,-0.1 0.06,-0.14 0.02,-0.05 0.07,-0.07 0.1,-0.12 0.02,-0.04 0.08,-0.07 0.09,-0.12 0.02,-0.04 0.03,-0.08 0.05,-0.12 0.01,-0.04 0.03,-0.09 0.06,-0.12 0.03,-0.02 0.04,-0.06 0.08,-0.07 0.03,-0.03 0.07,-0.05 0.11,-0.09 0.04,-0.02 0.06,-0.06 0.08,-0.09 0.04,-0.04 0.07,-0.08 0.1,-0.13 0.01,-0.05 0.06,-0.08 0.08,-0.12 0.04,-0.03 0.1,-0.03 0.13,-0.07 0.05,-0.02 0.06,-0.06 0.09,-0.09 0.05,-0.03 0.09,-0.06 0.15,-0.07 0.05,-0.02 0.12,-0.02 0.19,-0.01 0.07,-0.02 0.14,-0.01 0.19,-0.05 0.05,-0.01 0.08,-0.04 0.11,-0.08 0.05,-0.01 0.06,-0.07 0.1,-0.09 0.02,-0.04 0.07,-0.06 0.12,-0.07 0.06,-0.01 0.06,-0.07 0.12,-0.08 0.05,-0.01 0.1,-0.02 0.13,-0.07 0.03,-0.05 0.02,-0.11 0.07,-0.15 0.02,-0.03 0.04,-0.07 0.07,-0.11 0.02,-0.04 0.04,-0.1 0.08,-0.12 0.04,-0.02 0.08,-0.03 0.12,-0.05 0.05,-0.03 0.12,-0.04 0.16,-0.07 0.03,-0.03 0.07,-0.05 0.11,-0.08 0.04,-0.04 0.08,-0.08 0.12,-0.12 0.03,-0.03 0.06,-0.07 0.08,-0.11 0.03,-0.04 0.05,-0.07 0.07,-0.11 0.01,-0.06 0.06,-0.08 0.1,-0.12 0.05,-0.04 0.14,-0.01 0.19,-0.04 0.05,-0.01 0.07,-0.05 0.12,-0.07 0.03,-0.03 0.07,-0.06 0.1,-0.1 0.05,-0.02 0.09,-0.06 0.13,-0.08 0.04,-0.03 0.04,-0.07 0.07,-0.1 0.03,-0.05 0.08,-0.07 0.14,-0.07 0.06,-9.2e-4 0.11,-0.03 0.16,-0.05 0.03,-0.02 0.06,-0.05 0.05,-0.09 0.01,-0.05 0.03,-0.1 0.03,-0.15 0.01,-0.04 -0.02,-0.08 -0.04,-0.11 -0.01,-0.06 -0.07,-0.11 -0.13,-0.12 -0.1,-0.02 0,-0.09 0.06,-0.07 0.05,-0.01 0.09,-0 0.12,-0.04 0.05,-0.02 0.04,-0.08 0.07,-0.11 0.01,-0.04 0.03,-0.07 0.05,-0.11 0.05,-0.03 0.08,-0.07 0.11,-0.12 0.03,-0.04 0.03,-0.09 0.04,-0.14 0.01,-0.03 0.06,-0.02 0.09,-0.04 0.05,0 0.1,-0 0.14,-0.03 0.05,-0.02 0.08,-0.06 0.11,-0.1 0.04,-0.04 0.05,-0.09 0.06,-0.13 0.01,-0.05 0.02,-0.07 0.03,-0.12 0.01,-0.05 0.01,-0.1 0,-0.15 0.01,-0.06 0.01,-0.12 0.02,-0.18 0.01,-0.04 0.04,-0.08 0.05,-0.12 0.03,-0.06 0.03,-0.12 0.02,-0.18 -0.02,-0.04 -0.04,-0.08 -0.06,-0.13 8e-5,-0.07 -0.01,-0.13 10e-4,-0.2 -0.02,-0.06 0.07,-0.1 0.04,-0.14 -0.03,-0.04 -0.06,-0.11 -0.02,-0.15 -0,-0.05 0.04,-0.09 0.04,-0.14 0.01,-0.05 -1.5e-4,-0.1 0.01,-0.15 -0.01,-0.06 0.02,-0.11 0.04,-0.17 0.02,-0.05 0.05,-0.1 0.08,-0.14 0.02,-0.05 0.04,-0.08 0.09,-0.11 0.04,-0.02 0.09,-0.04 0.12,-0.08 0.04,-0.04 0.11,-0.01 0.16,0 0.04,0.01 0.04,0.06 0.08,0.08 0.01,0.03 0.05,0.08 0.09,0.09 0.05,0.04 0.16,-0.02 0.17,0.06 -0.01,0.04 0.01,0.08 -0.01,0.12 -2e-4,0.04 -0.04,0.08 -0.06,0.11 -0.01,0.04 0.02,0.1 0.07,0.09 0.03,-0.02 0.12,-0.08 0.13,-0.02 -0.01,0.07 0.06,0.11 0.14,0.09 0.04,-0.03 0.09,-0.04 0.12,-0.08 -0.05,-0 -0.08,0.04 -0.11,0.05 -0.04,0.03 -0.11,0.03 -0.14,-0.02 0.04,-0.06 -0.04,-0.11 -0.09,-0.06 -0.04,0.06 -0.14,-0.01 -0.1,-0.05 0.04,-0.03 0.06,-0.07 0.07,-0.12 -10e-4,-0.05 0.02,-0.1 -0.01,-0.15 -0.03,-0.05 -0.1,-0.02 -0.14,-0.03 -0.05,-0.01 -0.07,-0.06 -0.1,-0.09 -0.03,-0.03 -0.05,-0.07 -0.07,-0.1 -0.05,-0.01 -0.1,-0.03 -0.14,-0.05 -0.04,-0.06 0.01,-0.12 0.03,-0.18 0.03,-0.04 0.02,-0.08 0.05,-0.11 0,-0.05 0.07,-0.07 0.1,-0.1 0.05,-0.03 0.08,-0.08 0.09,-0.14 0.03,-0.04 0.03,-0.09 0.04,-0.14 0.03,-0.04 0.07,-0.06 0.12,-0.06 0.04,-0 0.1,0 0.14,0 0.05,0.03 0.11,0.02 0.17,0.04 0.05,0.01 0.09,0.02 0.14,0.04 0.05,0.03 0.1,0.04 0.15,0.07 0.04,0.01 0.09,0.04 0.14,0.04 0.09,7.5e-4 0.18,0.01 0.27,0.01 0.08,0.01 0.18,3e-5 0.27,-3.9e-4 0.06,0 0.12,0.02 0.17,0.04 0.04,0.02 0.09,0.04 0.14,0.06 0.06,0.03 0.12,0.04 0.18,0.07 0.06,0.02 0.12,0.03 0.17,0.07 0.04,0.03 0.09,0.05 0.13,0.08 0.04,0.02 0.08,0.05 0.12,0.07 0.05,0.02 0.1,0.05 0.14,0.07 0.03,0.02 0.06,0.05 0.09,0.07 0.03,0.04 0.05,0.09 0.05,0.14 0.01,0.08 0.02,0.16 -4.1e-4,0.25 -0,0.05 0.01,0.1 0.04,0.15 -0.02,0.04 -0.04,0.13 0.05,0.09 0.02,-0.05 0.09,-0.03 0.1,0.02 0.01,0.05 -0.05,0.07 -0.07,0.11 -0.04,0.05 0.02,0.07 0.03,0.11 -0.01,0.06 -0.1,0.03 -0.12,0.08 0,0.07 0.1,0.07 0.16,0.06 0.05,-0.01 0.13,0.01 0.15,-0.03 0.04,-0.04 6.4e-4,-0.1 0,-0.14 -0,-0.04 0.07,-0.09 0.11,-0.05 -0.02,0.05 -0.04,0.13 0.03,0.15 0.05,0.03 0.09,-0.01 0.13,3.7e-4 0.06,-3.7e-4 0.1,0.05 0.16,0.06 0.04,0.02 0.11,0.01 0.1,0.07 -2.2e-4,0.05 -0.06,0.07 -0.09,0.1 -0.05,0.04 -0.02,0.12 0.05,0.12 0.07,0.02 0.02,0.08 0,0.12 -0.02,0.05 -0.03,0.13 0.04,0.15 0.06,0.01 0.13,-0.01 0.2,0.02 0.06,0.01 0.06,0.06 0.08,0.09 0.01,0.06 -0.03,0.1 -0.05,0.15 -0.02,0.08 0.03,0.03 0.03,-0.02 0.02,-0.06 0.08,-0.12 0.02,-0.18 -0.02,-0.04 -0.07,-0.07 -0.12,-0.09 -0.06,-0.02 -0.13,9.4e-4 -0.18,-0.03 -0.06,-0.05 0.05,-0.11 0.03,-0.18 -0.01,-0.06 -0.07,-0.06 -0.11,-0.1 -0.02,-0.07 0.07,-0.08 0.1,-0.12 0.03,-0.03 0.01,-0.09 -0.03,-0.11 -0.05,-0.03 -0.11,-0.03 -0.15,-0.07 -0.05,-0.04 -0.12,-0.03 -0.18,-0.02 -0.08,0.01 -0.07,-0.08 -0.06,-0.13 -0.01,-0.04 -0.06,-0.05 -0.1,-0.02 -0.07,0.01 -0.07,0.08 -0.04,0.12 -0,0.07 -0.04,0.14 -0.13,0.1 -0.05,-0 -0.1,0.02 -0.14,-0.01 -0.05,-0.05 0.03,-0.04 0.06,-0.05 0.07,-0.03 0.03,-0.09 -2.1e-4,-0.13 0.01,-0.04 0.08,-0.06 0.08,-0.12 0.02,-0.06 -0.05,-0.09 -0.1,-0.09 -0.09,0.04 -0.04,-0.04 -0.05,-0.09 -0.03,-0.06 0.02,-0.12 0,-0.17 0.01,-0.05 -0.02,-0.09 -0,-0.14 0.02,-0.06 -0.01,-0.12 -0.03,-0.18 -0.03,-0.04 -0.04,-0.07 -0.09,-0.1 -0.04,-0.04 -0.09,-0.06 -0.13,-0.1 -0.03,-0.03 -0.08,-0.05 -0.12,-0.08 -0.04,-0.02 -0.08,-0.04 -0.11,-0.06 -0.05,-0.02 -0.1,-0.04 -0.15,-0.07 -0.06,-0.01 -0.1,-0.04 -0.16,-0.06 -0.05,-0.02 -0.09,-0.04 -0.13,-0.05 -0.02,-0.01 -0.11,-0.05 -0.05,-0.04 0.05,0.03 0.12,0.01 0.17,0.04 0.06,-0.02 0.11,0.02 0.16,0.02 0.06,0.02 0.11,0.03 0.17,0.04 0.06,0.01 0.11,0.03 0.16,0.06 0.04,0.02 0.08,0.03 0.12,0.05 0.06,0.02 0.11,0.07 0.17,0.09 0.04,0.03 0.09,0.08 0.15,0.08 0.05,0.02 0.09,0.05 0.14,0.07 0.03,0.03 0.08,0.05 0.12,0.08 0.06,0.02 0.1,0.05 0.15,0.07 0.04,0.03 0.1,0.05 0.14,0.08 0.03,0.03 0.08,0.05 0.12,0.07 0.04,0.03 0.09,0.03 0.13,0.06 0.03,0.03 0.08,0.03 0.11,0.06 0.06,0.01 0.11,0.05 0.16,0.08 0.05,0.02 0.1,0.06 0.15,0.09 0.05,0.02 0.09,0.04 0.13,0.05 0.05,0.02 0.09,0.02 0.14,0.05 0.06,0.03 0.12,0.03 0.18,0.05 0.05,0.03 0.09,0.06 0.15,0.07 0.06,-0 0.11,0.03 0.16,0.05 0.04,0.02 0.08,0.02 0.12,0.05 0.04,0.02 0.08,0.05 0.13,0.06 0.05,0.01 0.08,0.04 0.13,0.06 0.05,0.02 0.11,0.05 0.17,0.06 0.06,0.01 0.12,0.03 0.17,0.05 0.05,0.02 0.1,0.03 0.15,0.05 0.04,0.03 0.09,0.04 0.12,0.07 0.04,0.03 0.08,0.06 0.14,0.06 0.03,0.03 0.08,0.07 0.12,0.08 0.04,0.03 0.07,0.07 0.12,0.06 0.01,0.04 0.04,0.03 0.06,0.04 0.04,0.03 0.08,0.05 0.13,0.07 0.04,0.03 0.09,0.05 0.14,0.07 0.05,0.02 0.09,0.04 0.14,0.06 0.07,0.01 0.13,0.03 0.19,0.06 0.07,0.02 0.14,0.03 0.2,0.06 0.04,0.01 0.08,0.03 0.12,0.04 0.04,0.04 0.1,0.04 0.15,0.05 0.08,-0.01 0.14,0.02 0.21,0.01 0.06,-0.01 0.13,-0.01 0.2,3e-5 0.08,-0.01 0.15,-0.02 0.23,-0.02 0.07,-0 0.13,0 0.18,-0.02 0.06,0.01 0.12,0.01 0.18,0.03 0.06,0.02 0.13,0.05 0.19,0.04 0.06,0.01 0.13,0.03 0.18,0.05 0.03,0.02 0.08,0.02 0.12,0.04 0.06,0.02 0.13,0.02 0.17,0.03 0.05,0.01 0.11,0 0.15,0.03 0.04,0.01 0.09,0.01 0.12,0.03 0.05,0.02 0.1,0.04 0.16,0.06 0.04,0.01 0.08,0.02 0.11,0.03 0.07,-0.01 0.13,0.04 0.19,0.01 0.07,-0.01 0.14,-0.04 0.21,-0.05 0.05,-0.01 0.11,-0.04 0.16,-0.02 0.04,0.03 0.1,0.05 0.14,0.08 0.04,0.03 0.06,0.06 0.09,0.1 0.03,0.04 0.06,0.07 0.09,0.1 0.03,0.03 0.06,0.06 0.08,0.1 0,-0.04 0.03,-0.07 0.09,-0.08 0.05,-0.02 0.1,10e-5 0.14,0.02 0.03,0.02 0.05,0.05 0.08,0.06 0.02,0.03 0.06,0.04 0.09,0.06 0.04,0.03 0.09,0.04 0.14,0.06 0.02,-0.01 0.12,-0.01 0.07,-0.03 -0.04,0.01 -0.09,0.01 -0.13,-0.01 -0.04,-0.03 -0.09,-0.05 -0.13,-0.09 -0.05,-0.03 -0.08,-0.07 -0.14,-0.09 -0.06,-0.03 -0.13,-0.02 -0.18,-0.01 -0.07,0.01 -0.08,-0.05 -0.1,-0.09 -0.03,-0.05 -0.06,-0.09 -0.1,-0.12 -0.03,-0.03 -0.08,-0.04 -0.11,-0.07 -0.04,-0.03 -0.09,-0.05 -0.14,-0.06 -0.06,-0.01 -0.12,-0.04 -0.15,-0.07 0.02,-0.06 0.07,-0.08 0.12,-0.1 0.04,9.4e-4 0.08,-0.02 0.11,-0.05 0.04,-0.01 0.1,0.03 0.11,-0.01 0.03,0.04 0.09,0.02 0.13,0.06 0.05,0.04 0.13,0.04 0.19,0.07 0.05,0.02 0.09,0.06 0.14,0.07 0.04,0.03 0.1,0.03 0.15,0.05 0.07,0.05 0.16,0.07 0.23,0.11 0.06,0 0.1,0.04 0.16,0.05 0.05,0 0.1,0.04 0.14,0.05 0.05,0.04 0.11,0.04 0.18,0.05 0.05,0.02 0.12,0.02 0.14,0.06 0.04,0.04 0.09,0.01 0.12,0.03 0.05,0.02 0.1,0.04 0.15,0.04 0.03,0.04 0.06,0.02 0.1,0.06 0.05,-0.02 0.08,0.07 0.14,0.04 0.03,0.03 0.08,0.04 0.09,0.1 -0,0.08 0.11,0.06 0.11,0.13 0.05,0.05 0.14,0 0.17,0.07 0.03,0.04 0.08,0.09 0.13,0.11 0.05,0.01 0.09,0.03 0.14,0.05 0.04,0.02 0.09,0.04 0.12,0.07 0.03,0.04 0.09,0.04 0.13,0.06 0.04,0.01 0.07,0.04 0.12,0.05 0.05,0.03 0.11,0.05 0.17,0.06 0.05,-0 0.1,-0.01 0.16,-0.01 0.05,-0.01 0.1,-0.01 0.15,-0.03 0.07,0 0.14,-0.01 0.21,0.01 0.05,0.01 0.08,0.05 0.11,0.09 0.03,0.03 0.05,0.08 0.08,0.11 0.03,0.04 0.08,0.08 0.12,0.11 0.03,0.03 0.07,0.07 0.11,0.09 0.04,0.02 0.07,0.05 0.11,0.06 0.05,0.02 0.11,0.03 0.15,0.06 0.04,0.01 0.1,0.04 0.13,0.07 0.02,0.05 0.05,0.1 0.06,0.14 0,0.05 0.01,0.11 -0.01,0.16 -0.02,0.05 -0.09,0.07 -0.12,0.11 -0.03,0.08 0.07,0.08 0.12,0.06 0.04,0.06 -0.1,0.02 -0.11,0.08 -0.02,0.04 -0.07,0.07 -0.09,0.12 -0.01,0.06 0.08,0.07 0.11,0.03 0.06,-0.01 0.13,0.01 0.19,0.02 0.03,0.03 0.04,0.08 0.08,0.11 0.05,0.04 -0.04,0.1 -0.06,0.04 -0.01,-0.04 -0.05,-0.1 -0.1,-0.09 -0.06,0.01 -0.08,0.07 -0.08,0.12 0.03,0.04 0.03,0.09 0.04,0.13 0.04,0.02 0.01,-0.1 -0.01,-0.14 -0.03,-0.05 0.04,-0.13 0.1,-0.09 0.03,0.03 0.04,0.13 0.11,0.09 0.06,-0.05 -0.04,-0.09 -0.04,-0.14 -0.01,-0.07 -0.1,-0.05 -0.15,-0.07 -0.06,-0.04 -0.11,0.04 -0.17,0.02 -0.03,-0.07 0.06,-0.1 0.09,-0.15 0.04,-0.02 0.17,-0.05 0.08,-0.09 -0.05,0.02 -0.15,-0.01 -0.08,-0.07 0.03,-0.02 0.07,-0.03 0.09,-0.06 0.04,-0.03 0.03,-0.08 0.04,-0.12 -10e-4,-0.04 0.02,-0.1 -2.1e-4,-0.14 -0.01,-0.03 -0.04,-0.06 -0.05,-0.09 -0.03,-0.01 -0.06,-0.07 -0.11,-0.07 -0.04,-0.03 -0.08,-0.04 -0.12,-0.06 -0.05,-0.02 -0.1,-0.03 -0.13,-0.05 -0.04,-0.02 -0.08,-0.04 -0.11,-0.07 -0.01,-0.05 -0.06,-0.09 -0.06,-0.14 6.3e-4,-0.06 0.08,-0 0.11,-0.02 0.04,0.02 0.1,0.03 0.15,0.05 0.05,0.02 0.11,0.04 0.16,0.07 0.04,0.03 0.11,0.03 0.14,0.07 0.04,0.03 0.08,0.05 0.13,0.07 0.05,0.03 0.1,0.06 0.16,0.08 0.05,0.02 0.08,0.04 0.13,0.06 0.02,0.03 0.06,0.04 0.09,0.06 0.04,0.03 0.1,0.05 0.13,0.09 0.05,-0.02 0.09,0.04 0.13,0.06 0.05,0.02 0.11,0.04 0.15,0.07 0.06,0.01 0.02,0.04 0.08,0.04 0.04,0.02 0.08,0.05 0.11,0.07 0.02,0.02 0.06,0.07 0.09,0.04 0.06,0 0.11,0 0.14,0.06 0,0.04 0.06,0.07 0.09,0.1 0,-0.03 -0.06,-0.07 -0,-0.11 0.05,-0.07 0.09,0.03 0.15,0.04 0.05,0.04 0.1,0.07 0.12,0.12 0.06,0.02 -0.06,0.11 0.02,0.05 0.06,0.01 0.08,0.05 0.13,0.07 0.04,0.03 0.08,0.07 0.1,0.11 0.04,0.03 0.09,0.07 0.05,0.12 -0.03,0.04 -0.08,0.05 -0.12,0.03 0.03,0.04 0.12,0.04 0.15,0.06 0.05,-0.04 0.1,0.01 0.13,0.04 0.05,0.01 0.12,0.02 0.16,0.05 0.04,0.05 0.09,0.05 0.14,0.08 0.01,0.04 0.07,0.04 0.06,0.09 0.01,0.08 0.02,-0.04 0.02,-0.07 0.07,-0.03 0.13,0.04 0.14,0.09 0.04,0.03 0.07,0.07 0.06,0.11 0.05,-0.01 0.09,0.03 0.11,0.08 0.05,0.03 0.03,0.1 0.06,0.15 0.01,0.03 0.06,0.11 0.09,0.06 0.04,0.01 0.05,0.08 0.11,0.08 0.03,0.04 0.03,0.1 0.06,0.14 0.01,0.04 -0.01,0.09 -0,0.13 0.04,0.03 0.06,0.08 0.11,0.08 0.05,0 0.1,0.02 0.13,0.07 0.03,0.04 0.05,0.1 0.08,0.13 0.03,0.06 0.11,0.05 0.15,0.1 0.03,0.04 0.07,0.06 0.11,0.08 0.04,0.02 0.06,0.06 0.1,0.08 0.05,0.04 0.11,0.05 0.15,0.09 0.05,0.01 0.09,0.04 0.13,0.07 0.04,0.04 0.11,0.03 0.14,0.08 0.04,0.05 0.12,-0.04 0.15,0.04 0.02,0.04 0.01,0.08 0.03,0.12 0.02,0.04 0.05,0.07 0.09,0.11 0.04,0.03 0.07,0.08 0.11,0.11 0.03,0.04 0.07,0.08 0.11,0.12 0.04,0.06 0.12,0.02 0.16,0.08 0.04,0.08 -0.07,-0.02 -0.09,0.04 -0.02,0.04 -0.07,0.07 -0.1,0.1 -0.04,0.04 -0.08,0.02 -0.12,0.02 -0.05,-0.01 -0.1,-0.02 -0.15,-0.03 -0.06,-0.03 -0.12,-0.02 -0.17,-0.01 -0.04,0.01 -0.08,0.02 -0.09,0.06 -0.03,0.04 -0.02,0.08 -0.05,0.12 -0.02,0.05 -0.05,0.08 -0.07,0.12 -0.02,0.04 0.02,0.11 0.07,0.1 0.04,-0.02 0.12,-0.04 0.13,0.01 -0.01,0.05 -0.02,0.09 -0.04,0.13 0,0.04 -0.08,0.1 -0.05,0.11 0.05,-0.04 0.07,-0.09 0.08,-0.14 0.01,-0.04 0.05,-0.08 0.01,-0.12 -0.03,-0.05 -0.12,-0.01 -0.17,-0.02 -0.05,-0.04 -0.01,-0.08 0.04,-0.1 0.02,-0.04 0.06,-0.08 0.06,-0.12 0.02,-0.04 0.02,-0.08 0.05,-0.11 0.07,-0.03 0.12,0.02 0.18,0.03 0.06,0.01 0.13,0.02 0.19,0.02 0.05,0.02 0.1,-0.02 0.15,-0.02 0.02,-0.06 0.08,-0.04 0.11,0.01 0.05,0.03 0.1,0.06 0.16,0.08 0.04,0.02 0.09,0.06 0.14,0.06 0.06,0.04 0.11,0.09 0.17,0.12 0.01,0.05 0.08,0.06 0.09,0.11 0.04,0.02 0.05,0.07 0.09,0.09 0.02,0.04 0.07,0.06 0.09,0.1 0.05,0.03 0.08,0.07 0.13,0.11 0.05,0.02 0.08,0.08 0.14,0.09 0.01,0.03 0.06,0.07 0.09,0.09 0.05,0.04 0.12,0.04 0.17,0.06 0.06,0.01 0.11,0.02 0.16,0.04 0.05,0.02 0.08,0.05 0.12,0.09 0,0.05 0.05,0.07 0.08,0.1 0.03,0.05 0.11,0.06 0.16,0.08 0.03,0.03 0.07,0.05 0.1,0.08 0.03,-7.6e-4 0.05,0.05 0.1,0.07 0.04,0.03 0.09,0.04 0.13,0.07 0.04,-0.01 0.02,-0.05 0.06,-9.4e-4 0.03,0.03 0.08,0.05 0.08,0.09 -0.07,0.03 0.05,0.02 0.06,0.05 0.06,0.01 0.02,0.07 0.09,0.07 0.03,0.03 0.09,0.03 0.1,0.08 -0.01,0.06 0.07,0.08 0.11,0.12 0.03,0.02 0.08,0.04 0.1,0.07 0.02,0.03 0.08,0.09 0.1,0.04 0.01,0.01 0.09,0.03 0.08,0.07 -0.01,0.07 0.11,0.01 0.14,0.03 0,0.04 -0.04,0.09 0.03,0.1 0.04,0.05 0.09,-0.03 0.12,0.02 0.05,0.04 0.04,0.09 0.03,0.14 0.03,0.05 0.13,0.04 0.13,0.1 0.05,-0.03 0.08,0.07 0.11,0.1 0.02,0.03 0.05,0.06 0.07,0.1 0.03,0.05 0.04,0.12 0.1,0.17 0.03,0.03 0.04,0.06 0.07,0.08 0.03,0.03 0.07,0.06 0.11,0.09 0.04,0.03 0.08,0.06 0.12,0.09 0.03,0.05 0.15,0.02 0.13,0.07 -0.03,0.05 -0.1,0.04 -0.15,0.06 -0.07,0.01 -0.15,0.03 -0.22,0.06 -0.05,0.02 -0.11,0.04 -0.16,0.06 -0.06,0.02 -0.12,-0.03 -0.15,-0.06 -0.04,-0.04 -0.09,-0.07 -0.14,-0.1 -0.06,-0.01 -0.13,1.4e-4 -0.18,0.03 -0.04,0.02 -0.06,0.07 -0.08,0.11 -0.01,0.06 0.01,0.14 -0.04,0.2 -0.04,0.01 -0.09,-0.02 -0.13,-0.04 -0.06,-0.03 -0.12,-0.04 -0.19,-0.03 -0.06,0.02 -0.12,0 -0.17,-0.01 -0.07,-0.02 -0.14,-0.01 -0.2,0.01 -0.03,-0.04 -0.1,-0.09 -0.15,-0.03 -0.02,0.03 -0.11,0.04 -0.05,0.06 0.04,-0.01 0.09,-0.07 0.12,-0.04 0.03,0.04 0.08,0.05 0.13,0.04 0.07,-0.01 0.13,-0 0.19,0.02 0.05,-0.02 0.08,0.08 0.08,0 0.05,-0.04 0.13,-0.01 0.19,0.01 0.03,0.04 0.11,0.04 0.16,0.04 0.05,-0.02 0.09,-0.05 0.1,-0.1 0.02,-0.05 0.02,-0.1 0.03,-0.16 0,-0.05 0.05,-0.07 0.1,-0.08 0.07,-0.01 0.13,0.04 0.16,0.09 0.03,0.04 0.06,0.07 0.11,0.09 0.07,0.03 0.14,3.7e-4 0.21,0.01 0.11,-0.01 0.04,0.06 0,0.09 -0.05,0.03 -0.09,0.07 -0.12,0.11 -0.02,0.05 0.01,0.1 0.04,0.14 0.03,0.05 0.05,-0.01 0,-0.04 -0.06,-0.04 -0.01,-0.1 0.03,-0.13 0.04,-0.03 0.07,-0.05 0.1,-0.09 0.05,-0.02 0.06,-0.07 0.11,-0.09 0.06,-0.02 0.1,-0.05 0.15,-0.07 -0.05,-0.01 0.03,-0.03 0.07,-0.04 -0.01,0.02 0.02,0.04 0.06,0.03 0.06,-0.01 0.12,-0.04 0.15,-0.09 0.03,-0.04 0.05,-0.09 0.1,-0.13 0.01,-0.04 0.03,-0.08 0.04,-0.12 0.02,-0.07 -0.06,-0.08 -0.06,-0.13 0.06,-0 0.01,-0.08 0.07,-0.05 0.03,-0.03 0.07,-5.6e-4 0.11,-0.02 -0.02,-0.06 0.04,0.03 0.07,-0.02 0.03,0.03 0.08,0 0.11,-0.03 0.06,-0.03 0.08,-0.05 0.15,-0.03 0.08,-0.05 0.05,0.07 0.1,0.09 0.05,0.02 0.1,0.08 0.15,0.04 0.03,-0.04 0.06,0.01 0.08,0.04 -0.04,0.05 -0.01,0.1 0.04,0.13 0.06,0.02 0.1,0.05 0.15,0.09 0.03,0.03 0.06,0.07 0.1,0.09 0.03,0.03 0.11,0.05 0.08,0.1 -0.06,-0.03 -0.08,0.01 -0.08,0.06 0.02,0.03 -0,0.07 0.05,0.09 0.04,0.03 0.09,0.06 0.12,0.09 0.05,0.03 0.1,0.04 0.1,0.11 0.04,0.04 0.01,0.09 -0.01,0.13 -0.02,0.03 -0.05,0.06 -0.07,0.09 -0.05,0.02 -0.09,0.07 -0.09,0.11 -0.05,0.03 -0.1,0.05 -0.15,0.08 -0.02,-0.04 -0.08,-0.04 -0.11,-0.01 -0.05,-0.03 -0.11,-0.01 -0.16,0.01 -0.05,0.04 -0.06,0.1 -0.1,0.14 -0.03,0.05 -0.06,0.09 -0.07,0.14 -0.01,0.04 -0.03,0.09 -0.04,0.13 8.3e-4,0.04 -0.01,0.08 -0.01,0.11 1.6e-4,0.05 -0.02,0.1 -0.03,0.15 -0.02,0.05 -0.04,0.1 -0.06,0.14 -0.02,0.04 -0.04,0.08 -0.06,0.12 -0.02,0.05 -0.04,0.09 -0.05,0.14 -0.03,0.05 -0.07,0.1 -0.12,0.15 -0.04,0.03 -0.06,0.07 -0.08,0.12 0.01,0.04 -0.01,0.03 -0.03,0.07 -0.02,0.06 -0.1,0.03 -0.13,0.08 -0.05,0.04 0,0.15 0.07,0.15 0.05,0.02 0.08,0.09 0.05,0.14 -0.03,0.03 -0.05,0.07 -0.07,0.11 0.02,0.04 0.05,-0.07 0.07,-0.08 0.04,-0.05 0.01,-0.11 -0.02,-0.15 -0.03,-0.04 -0.08,-0.05 -0.1,-0.09 0,-0.06 0.1,-0.05 0.14,-0.08 0.05,-0.03 0.08,-0.08 0.08,-0.13 0.02,-0.04 0.05,-0.09 0.1,-0.12 0.05,-0.04 0.09,-0.09 0.11,-0.15 0.03,-0.04 0.02,-0.09 0.04,-0.13 0.01,-0.03 0.04,-0.05 0.05,-0.09 0.03,-0.04 0.05,-0.08 0.07,-0.11 0.02,-0.05 0.03,-0.11 0.05,-0.16 0.02,-0.06 0.01,-0.13 0.02,-0.19 0.01,-0.04 0.03,-0.09 0.04,-0.13 0.02,-0.04 0.05,-0.08 0.07,-0.12 0.02,-0.03 0.03,-0.06 0.06,-0.08 0.04,-0.02 0.06,0.06 0.11,0.06 0.05,0.04 0.12,0.02 0.18,0.04 0.05,-9.4e-4 0.12,0.01 0.16,-0.03 0.04,-0.02 0.09,-0.03 0.13,-0.06 0.04,-0.04 0.09,-0.06 0.13,-0.09 -0,-0.05 0.07,-0.06 0.1,-0.04 0.06,-0.01 0.12,-0.01 0.18,0.01 0.06,-0.01 0.1,0.03 0.14,0.06 0.08,0.01 0.09,0.06 0.13,0.12 0.04,0.05 0.09,0.07 0.09,0.13 -0.02,0.06 0.03,0.06 0.08,0.1 0.01,0.03 0.1,0.08 0.09,0.02 0.01,-0.06 0.04,0.06 0.08,0.06 0.06,0.02 0.13,-0.06 0.13,0.01 0.05,0.03 0.11,0.05 0.16,0.09 0.01,0.06 0.05,0.1 0.04,0.16 -0.01,0.03 0.03,0.07 0.06,0.1 0.03,0.05 0.1,0.03 0.13,0.07 0.04,0.03 0.06,0.08 0.06,0.13 0.04,-0.01 -0.02,-0.08 -0.02,-0.12 -0.01,-0.05 -0.07,-0.08 -0.09,-0.12 -0,-0.08 0.06,0.04 0.1,0.02 0.04,0.02 0.06,0.05 0.1,0.08 0.01,0.04 0.11,0.02 0.07,0.1 -0.05,0.01 0.01,0.07 0.03,0.07 -0,-0.07 0.06,-0.03 0.09,-0.01 0.05,0.02 0.07,0.07 0.11,0.1 -0.05,-0.02 -0.01,0.04 0.01,0.05 0.06,-0.05 0.05,0.06 0.09,0.07 0.03,0.03 0.04,0.06 0.08,0.06 -0,-0.05 -0.08,-0.09 -0.06,-0.11 0.05,-0.03 0.06,0.06 0.1,0.06 0.05,0.02 0.08,0.07 0.14,0.09 0.03,0.04 0.12,0.03 0.13,0.09 0.05,-0.01 0.07,0.05 0.12,0.07 0.08,-0.02 0.1,0.04 0.16,0.07 0.05,0.04 0.11,0.04 0.17,0.08 0.06,0.02 0.08,0.05 0.11,0.08 0.02,-0.04 0.11,-0.02 0.09,0.02 0.05,0.02 -0.01,0.02 0,0.03 0.05,0.02 0.07,0.08 0.07,0.12 -0.04,-0.01 -0.07,-0.04 -0.03,0.01 0.02,0.04 0.08,0.03 0.12,0.05 0.06,0.01 0.09,0.06 0.12,0.1 0.02,-0.07 0.05,0.02 0.04,0.05 0.04,0.02 0.06,0.07 0.07,0.11 0.01,0.04 0.02,0.09 0.04,0.12 0.03,0.05 0.03,0.12 0.03,0.18 -0.01,0.06 6.3e-4,0.13 0.02,0.18 -0,0.06 0,0.13 0.03,0.2 0,0.06 0.01,0.13 0.02,0.19 0.02,0.05 0.02,0.11 0.07,0.14 0.03,0.03 0.06,0.06 0.06,0.09 0.05,0.03 0.08,0.08 0.11,0.12 0.01,0.04 0.04,0.08 0.08,0.11 0.01,0.05 0.04,0.08 0.06,0.13 0.04,0.05 0.05,0.11 0.07,0.16 -0.01,0.06 0.02,0.12 0.02,0.18 0,0.06 0.03,0.11 0.06,0.17 0.02,0.05 0.04,0.11 0.05,0.16 0.01,0.05 0.02,0.11 0.03,0.15 -0,0.04 0.01,0.08 -0,0.13 -0.01,0.06 -0.03,0.12 -0.03,0.18 -0.02,0.07 -4.3e-4,0.13 0.02,0.2 0.01,0.08 0.05,0.16 0.06,0.24 0.02,0.05 0.02,0.11 0.03,0.16 0.02,0.06 0.02,0.12 0.02,0.17 0.01,0.08 0.02,0.17 0.01,0.26 -0.01,0.06 -0.02,0.12 -0.04,0.17 -0.02,0.05 -0.05,0.1 -0.08,0.14 -0.03,0.04 -0.05,0.07 -0.08,0.11 -0.03,0.04 -0.07,0.08 -0.1,0.11 -0.03,0.05 -0.08,0.06 -0.13,0.09 -0.04,0.02 -0.08,0.05 -0.12,0.06 -0.06,0.03 -0.12,0.06 -0.18,0.09 -0.05,0.02 -0.1,0.03 -0.15,0.06 -0.04,0.02 -0.09,0.05 -0.13,0.08 -0.04,0.03 -0.06,0.08 -0.09,0.1 -0.04,0.03 -0.07,0.07 -0.12,0.09 -0.02,0.03 -0.08,0.03 -0.1,0.07 -0.03,0.05 -0.1,0.06 -0.16,0.05 -0.06,-1.9e-4 -0.13,0 -0.18,0 -0.05,0.02 -0.1,0.02 -0.16,0.03 -0.06,-0 -0.13,0.05 -0.17,-1.9e-4 -0.05,-0.04 -0.12,-0.01 -0.18,-0.04 -0.04,-0.02 -0.1,-0.02 -0.13,-0.06 -0.05,-0.04 -0.11,-0.04 -0.16,-0.01 -0.04,0.02 -0.09,0.05 -0.12,0.09 -0.02,0.03 -0.07,0.05 -0.09,0.09 -0.03,0.05 -0.02,0.12 -0.05,0.17 -0.04,0.03 -0.05,0.09 -0.06,0.14 -0.04,0.05 -0.02,0.11 -0.04,0.17 -0.01,0.04 -0.04,0.08 -0.07,0.1 -0.04,0.04 -0.1,0.03 -0.16,0.04 -0.06,0 -0.12,-0 -0.18,0.01 -0.05,0.04 -0.11,0.04 -0.14,-0.02 -0.06,-0.02 -0.09,0.05 -0.15,0.05 -0.05,0.03 -0.12,0.04 -0.19,0.05 -0.06,0.02 -0.11,0.02 -0.16,0.05 -0.03,0.03 -0.06,0.06 -0.07,0.11 -0.03,0.04 -0.05,0.08 -0.09,0.12 -0.03,0.04 0.02,0.11 -0.02,0.15 -0.03,0.03 -0.07,0.05 -0.11,0.05 -0.05,-9.3e-4 -0.08,-0.04 -0.13,-0.04 -0.06,-0.03 -0.1,0.03 -0.16,0.03 -0.05,0.06 0.04,0 0.07,0.03 0.06,0.05 0.11,-0.04 0.16,-0.01 0.06,0.03 0.12,0.01 0.18,-0.02 0.06,-0.03 0.03,-0.12 0.04,-0.17 0.02,-0.04 0.06,-0.07 0.08,-0.11 0.03,-0.04 0.04,-0.11 0.09,-0.12 0.05,-0.03 0.11,-0.04 0.18,-0.04 0.08,9.4e-4 0.13,-0.07 0.21,-0.06 0.06,4e-5 0.11,0 0.17,0.01 0.04,-0.03 0.08,-0.06 0.14,-0.04 0.07,0 0.14,0.01 0.2,-0.02 0.04,-0.02 0.07,-0.04 0.1,-0.08 0.03,-0.03 0.05,-0.07 0.05,-0.12 0.01,-0.05 0.01,-0.1 0.04,-0.15 0.02,-0.05 0.06,-0.09 0.07,-0.14 0.02,-0.05 0.03,-0.1 0.07,-0.14 0.02,-0.03 0.05,-0.07 0.07,-0.1 0.04,-0.03 0.07,-0.07 0.12,-0.09 0.05,0 0.08,0.04 0.11,0.07 0.03,0.04 0.08,0.06 0.12,0.07 0.03,0.03 0.08,0.05 0.12,0.06 0.06,0.02 0.14,0.01 0.18,-0.04 0.07,-0.02 0.13,0.01 0.21,0 0.08,-0.01 0.15,0.02 0.22,-0.01 0.05,-0.01 0.1,-0.05 0.15,-0.07 0.05,-0.03 0.09,-0.07 0.13,-0.1 0.04,-0.03 0.08,-0.07 0.14,-0.09 0.06,-0.02 0.13,-0.02 0.2,-0.04 0.06,-0.01 0.12,-0.03 0.17,-0.06 0.07,-0.04 0.14,-0.07 0.19,-0.13 0.05,-0.03 0.1,-0.06 0.15,-0.08 0.03,-0.03 0.09,-0.04 0.13,-0.08 0.04,-0.02 0.06,-0.06 0.11,-0.08 0.04,-0.05 0.08,-0.1 0.1,-0.15 0.01,-0.05 0.07,-0.06 0.09,-0.1 0.03,-0.02 0.05,-0.07 0.09,-0.09 8.4e-4,-0.02 0.01,-0.1 0.04,-0.13 0.01,-0.05 0.03,-0.1 0.06,-0.15 0.02,-0.05 0.03,-0.1 0.04,-0.15 0.01,-0.08 0.02,-0.15 0.01,-0.23 0.01,-0.09 0.01,-0.19 -0.01,-0.28 -0.01,-0.06 -0.03,-0.13 -0.04,-0.19 -0.02,-0.07 -0.02,-0.13 -0.02,-0.21 -0.01,-0.08 6.2e-4,-0.16 -0.01,-0.24 -0.01,-0.04 -8.4e-4,-0.08 -0.01,-0.13 0,-0.05 -0.01,-0.09 0.01,-0.14 0,-0.05 0.01,-0.11 0.02,-0.16 0.01,-0.08 0,-0.17 0.01,-0.26 -0,-0.05 -0.01,-0.1 4.1e-4,-0.14 0,-0.06 0.01,-0.11 0,-0.17 0,-0.07 10e-4,-0.14 0,-0.21 -0.01,-0.09 0.01,-0.17 0.02,-0.26 0.02,-0.05 -0.01,-0.12 0.06,-0.16 -0.02,-0.06 0.05,-0.1 0.08,-0.15 0.03,-0.03 0.04,-0.08 0.05,-0.12 10e-4,-0.05 0.01,-0.11 0.08,-0.12 -0.03,-0.01 -0.02,-0.05 0.03,-0.07 0.05,-0 0.15,-0.04 0.17,0.02 0.07,0.02 0.14,5.7e-4 0.21,0.03 0.04,0.02 0.09,0.04 0.13,0.07 0.08,-0.02 0.05,0.06 0.11,0.06 0.07,-0.01 0.07,0.05 0.12,0.07 0.05,0.01 0.09,0.05 0.14,0.07 0.04,0.04 0.12,0.03 0.14,0.08 0.04,0.04 0.08,0.04 0.12,0.08 0.03,0.05 0.07,0.09 0.13,0.11 0.08,0.02 -0.03,0.06 0.03,0.08 0.04,0.02 0.07,0.06 0.13,0.06 0.08,0.02 0.02,0.06 0.07,0.09 0.04,0.04 0.07,0.09 0.1,0.14 0.05,0.06 0.06,0.02 0.03,-0.03 0.01,-0.03 0.07,0.07 0.07,0.11 0.01,0.04 0.04,0.06 0.05,0.1 0.04,0.08 -0.04,-0.04 -0.05,-7e-5 4.2e-4,0.06 0.07,0.08 0.07,0.12 -0.02,0.07 0.1,0.05 0.08,0.12 -0.01,0.05 -0.03,0.1 -0.03,0.14 0.03,0.04 0.03,0.09 0.06,0.13 -10e-4,0.06 0.03,0.12 0.03,0.17 -0.01,0.07 0.06,0.11 0.04,0.17 0.01,0.05 0.05,0.08 0.04,0.13 0.03,0.05 0.01,0.08 0.01,0.12 -0.01,0.05 -0,0.11 0.01,0.16 0.01,0.05 -0.05,0.11 -0,0.15 0.03,0.05 0.02,0.08 0.02,0.13 0.02,0.04 0.03,0.09 0.06,0.12 0.02,0.04 0.05,0.07 0.08,0.11 0.02,0.04 0.08,0.05 0.09,0.1 0.03,0.05 0.08,0.06 0.12,0.09 -0.01,0.03 -0.03,0.06 -0.02,0.11 -0.03,0.03 -0.11,0.03 -0.06,0.1 0.03,0.04 -0.06,0.08 -0,0.13 -0.02,0.06 0.04,0.04 0.07,0.03 -0.04,0.05 0.03,0.02 0.05,0.07 0.04,0.03 0.06,0.08 0.09,0.12 0.04,0.02 0.07,0.04 0.11,0.07 0.04,0.04 0.09,0.05 0.14,0.1 0.04,0.01 0.09,0.01 0.12,0.05 0.02,0.06 0.1,0.01 0.15,0.01 0.02,-0.04 0.03,-0.09 0.08,-0.08 0.03,0.03 0.12,-0.01 0.09,0.08 -0.05,0.04 0.02,0.11 -0.04,0.11 -0.04,-0.04 -0.09,-0 -0.13,0.02 -0.04,0.02 -0.08,0.05 -0.09,0.09 -0.02,0.05 -0.03,0.12 -0.07,0.14 0.05,0.03 -0.06,0.01 -0.06,0.06 -0.01,0.05 -0.05,0.11 -0.01,0.17 0,0.06 -0.01,0.1 0.02,0.15 0.01,0.05 0.03,0.1 0.04,0.14 0.03,0.04 0.03,0.1 0.06,0.15 0.04,0.03 0.03,0.08 0.06,0.12 0.03,0.04 0.06,0.09 0.08,0.14 0.03,0.03 0.05,0.07 0.09,0.1 0.03,0.04 0.05,0.09 0.09,0.12 0.03,0.04 0.08,0.1 0.12,0.11 0.08,0.01 0.01,0.05 0.02,0.09 0.02,0.05 0.05,0.1 0.09,0.14 0.04,0.04 0.11,0.05 0.15,0.08 0.06,0.02 0.06,0.09 0.07,0.13 0.06,0.03 -0,0.09 -0.02,0.13 0.02,0.01 0.09,-0 0.13,0.03 0.05,0.03 0.09,0.07 0.13,0.12 0.04,0.03 0.07,0.07 0.09,0.12 0.03,0.05 0.06,0.09 0.04,0.14 -0.02,0.03 -0.05,0.07 -0.06,0.11 -0.03,0.05 -0.04,0.1 -0.07,0.15 -0.02,0.05 -0.03,0.09 -0.05,0.13 -0.02,0.06 -0.03,0.11 -0.06,0.17 -0.02,0.07 -0.02,0.14 -0.05,0.21 -0.01,0.06 -0.04,0.11 -0.06,0.17 -0.01,0.04 -0.03,0.08 -0.02,0.13 -0,0.05 -0.01,0.12 -0,0.17 0.01,0.04 -0.01,0.09 -0.01,0.13 -0.01,0.05 -0.02,0.09 -0.01,0.14 -0,0.06 -0.02,0.11 -0.01,0.17 0.01,0.05 0.01,0.1 0.03,0.15 0,0.03 -0.04,0.07 -0.07,0.09 -0.03,0.03 -0.06,0.07 -0.1,0.09 -0.03,0.03 -0.07,0.05 -0.12,0.08 -0.05,0.02 -0.09,0.05 -0.13,0.09 -0.05,0.04 -0.07,-0.04 -0.13,-0.03 -0.06,0.01 -0.13,0.02 -0.17,0.07 -0.04,0.03 -0.07,0.06 -0.09,0.1 -0.03,0.02 -0.06,0.04 -0.09,0.06 -0.03,0.04 -0.08,0.04 -0.12,0.06 -0.04,0.02 -0.06,0.07 -0.11,0.05 -0.06,0.01 -0.12,0.01 -0.18,0.03 -0.04,0.03 -0.08,0.06 -0.12,0.08 -0.04,0.01 -0.07,0.05 -0.1,0.07 -0.03,0.05 -0.01,0.11 -0.07,0.13 -0.03,0.03 -0.07,0.06 -0.1,0.08 -0.04,0.03 -0.07,0.08 -0.1,0.11 -0.04,0.05 -0.05,0.1 -0.09,0.15 -0.03,0.05 -0.02,0.12 -0.01,0.18 0,0.04 10e-4,0.08 0.02,0.12 0.02,0.04 0,0.09 0.01,0.12 -0,0.04 0.01,0.09 -0.01,0.13 -0.04,0.04 -0.04,0.09 -0.07,0.14 -0.02,0.06 -0.05,0.11 -0.09,0.16 -0.02,0.04 -0.04,0.06 -0.05,0.11 -0.01,0.04 -0.04,0.08 -0.08,0.11 -0.04,0.05 -0.1,0.07 -0.15,0.12 -0.02,0.05 -0.07,0.03 -0.1,0.05 -0.04,0.02 -0.07,0.08 -0.06,0.13 0.01,0.06 -0.07,0.11 -0.12,0.11 -0.05,-0 -0.1,0.03 -0.15,0.04 -0.05,0.01 -0.09,0.05 -0.12,0.08 -0.05,0.02 -0.06,0.07 -0.06,0.12 -0.01,0.05 -0.06,0.05 -0.1,0.07 -0.04,0.04 -0.05,0.1 -0.07,0.14 -0.05,0.03 -0.06,0.08 -0.08,0.12 -0.02,0.04 -0.07,0.09 -0.06,0.14 -0.04,0.03 -0.05,-0.1 -0.09,-0.04 -0.07,-0.03 -0.03,0.06 -0.08,0.03 -0.01,0.06 -0.07,0.01 -0.1,0.05 -0.05,-0.01 -0.03,-0.07 -0.09,-0.08 -0.08,-0.03 -0.09,0.07 -0.09,0.11 0.01,0.05 0.02,0.11 -0.05,0.09 -0.06,-0.06 -0.04,0.02 -0.07,0.05 -0.04,0.02 -0.09,0.03 -0.1,0.07 -0.08,0.02 -0.01,0.12 -0.08,0.15 -0.04,0.04 0.02,0.07 0.04,0.1 0.03,0.04 0.03,0.1 0.04,0.14 -0.02,0.04 0.06,0.05 0.05,0.09 -0.01,0.03 -0.04,0.07 -0.05,0.1 0,0.05 0.05,0.09 -0.01,0.13 0.01,0.06 -0.07,0.07 -0.11,0.05 -0.05,0.01 -0.11,-0.03 -0.16,-0 0.02,0.08 -0.06,-0.01 -0.1,3.8e-4 -0.02,0.05 -0.04,0 -0.09,-0.01 -0.02,0.05 -0.05,-0.01 -0.07,0.04 0.01,0.04 -0.03,0.07 -0.07,0.03 -0.05,0.03 -0.04,0.05 0.03,0.04 0.07,-0.01 0.05,0.08 -0,0.01 -0.04,0.06 -0.07,-0.02 -0.1,0.02 0.01,0.07 -0.04,0.06 -0.09,0.06 -0.03,-0.05 -0.04,0.07 -0.01,0.08 -0.06,0.02 -0.05,0.09 -0.07,0.14 0,0.05 -10e-4,0.09 -0.01,0.13 -0.01,0.04 -0.04,0.06 -0.08,0.06 0,0.05 -0.08,0.07 -0.05,0.13 0.02,0.05 -0.07,0.07 -0.04,0.13 0.04,0.04 0.04,0.1 0,0.14 -0.05,0.04 -0.05,0.11 -0.04,0.16 -0,0.06 -0.03,0.1 -0.05,0.15 -0.05,0.03 -0.04,0.1 -0.05,0.15 -0.02,0.05 -0.06,0.08 -0.1,0.11 -0.04,0.04 -0.08,0.08 -0.12,0.12 -0.04,0.04 -0.08,0.08 -0.14,0.08 -0.06,0.01 0.01,0.09 -0.03,0.12 -0.04,0.03 -0.07,0.06 -0.05,0.1 -0.05,0.02 -0.08,0.07 -0.08,0.12 -0.04,0.04 -0.06,0.09 -0.08,0.14 -0.04,0.04 -0.08,0.07 -0.08,0.13 -0.04,0.03 -0.06,0.07 -0.08,0.11 -0.02,0.05 -0.07,0.09 -0.08,0.14 -0.02,0.04 -0.04,0.09 -0.07,0.12 -0.05,0.04 -0.11,-0.02 -0.16,0.03 -0.05,0.03 -0.05,0.1 -0.01,0.13 0.04,0.04 -0.04,0.07 -0.05,0.11 -0.04,0.04 -0.06,0.11 -0.12,0.12 -0.05,0.03 -0.09,0.02 -0.12,0.07 -0.01,0.04 -0.08,0.05 -0.05,0.1 0.02,0.05 0.05,0.1 0.01,0.16 0.01,0.06 -0.05,0.08 -0.09,0.11 0.04,-0 0.04,0.02 -0,0.05 l -0.05,0.03 c 4.1e-4,-0 -0.01,-0.01 -0.03,-0.01 -0.05,0.04 -0.05,0.11 -0.1,0.16 -0.02,0.06 -0.08,0.09 -0.08,0.15 -0.06,0.01 -0.03,0.07 -0.07,0.1 -0.04,0.04 -0.06,0.1 -0.11,0.13 0,0.07 -0.05,0.12 -0.08,0.18 -0.01,0.05 -0.05,0.09 -0.08,0.14 -0.06,0.04 -0.1,0.1 -0.14,0.16 0.01,0.07 -0.05,0.12 -0.07,0.19 -0.03,0.05 -0.08,0.09 -0.1,0.15 -0.02,0.06 -0.1,0.06 -0.12,0.12 -0.03,0.05 -0.06,0.08 -0.1,0.12 -0.06,0.04 -0.07,0.1 -0.1,0.16 -0.04,0.04 -0.06,0.08 -0.11,0.09 -0.09,0.03 -0.04,0.12 -0.04,0.18 0.08,0.05 -0,0.08 -0.04,0.12 -0.03,0.04 -0.1,0.05 -0.11,0.09 -0.09,-3.8e-4 -0.07,0.09 -0.12,0.14 -0.02,0.07 -0.07,0.08 -0.07,0.15 -0.06,0.03 -0.08,0.09 -0.12,0.14 -0.06,0.03 -0.07,0.14 -0.15,0.12 -0.06,-0.06 -0.07,0.07 -0.14,0.05 -0.01,-0.07 -0.06,-0.1 -0.08,-0.15 -0.05,-0.03 -0.14,-0.06 -0.19,-0.02 -0.1,0.02 0.03,0.14 -0.05,0.17 0.05,-0.01 0.04,0.02 -0,0.03 -0.03,9.4e-4 -0.08,-0.04 -0.1,0.04 -0.03,0.08 -0.11,-0.03 -0.16,0.01 -0.05,0.05 -0.14,-0.05 -0.14,0.04 0.03,0.07 -0.01,0.14 -0,0.21 -0.02,0.08 -0.06,0.14 -0.12,0.19 -0.12,-0.04 -0.1,0.11 -0.08,0.17 2.2e-4,0.09 0.08,0.09 0.1,0.16 0.01,0.07 -0.05,0.12 -0.11,0.07 -0.09,-0.05 -0.13,0.06 -0.2,0.06 -0.06,3.9e-4 -0.12,-0.05 -0.16,0.01 0.01,0.07 -0.03,0.11 -0.02,0.17 4.1e-4,0.05 -0.04,0.11 -0.1,0.14 -0.06,0.06 0.05,0.09 0.04,0.12 -0.05,0.07 -0.1,0.04 -0.16,0.02 -0.04,0.05 -0.1,0.12 -0.05,0.19 0.04,0.05 0.11,0.05 0.18,0.04 0.06,0.02 -0.04,0.1 -0.06,0.14 -0.06,0.05 -0.03,0.13 -0.01,0.19 0.01,0.06 0.08,0.06 0.11,0.11 0.07,0.01 0.1,0.07 0.14,0.11 0.05,0.05 8.3e-4,0.13 -0.05,0.17 -0.03,0.05 -0.06,0.11 -0.1,0.17 -0.05,0.04 -0.08,0.11 -0.11,0.17 -0.02,0.07 -0.06,0.12 -0.09,0.18 -0.01,0.07 -0.05,0.12 -0.13,0.14 -0.06,0.04 -0.05,0.11 -0.05,0.17 -0.05,0.05 -0.02,0.14 -0.1,0.18 -0.06,0.06 0.07,0.14 -0.01,0.21 -0.02,0.05 -0.06,0.11 -0.08,0.16 -0.04,0.06 -0.07,0.13 -0.11,0.19 -0.05,0.04 -0.16,0 -0.15,0.09 0.09,0.03 0.05,0.13 -0.01,0.17 -0.05,0.06 0.02,0.09 0.07,0.12 -0.01,0.08 0.05,0.1 0.12,0.08 0.05,-0.06 0.1,-0.04 0.05,0.03 -0.04,0.04 -0.07,0.08 -0.11,0.12 -0.04,0.06 -0.06,0.15 -0.17,0.12 -0.06,-0.02 -0.13,-0.09 -0.17,-0.01 -0,0.05 -0.04,0.09 -0.1,0.05 -0.07,0 -0.11,0.06 -0.12,0.12 -0.03,0.07 -0.07,0.12 -0.11,0.19 -0.05,0.05 -0.07,0.13 -0.12,0.18 -0.01,0.02 -0,0.02 8e-5,0.02 -0.01,0.01 -0.03,0.03 -0.05,0.06 -0.09,0.11 -0.12,0.26 -0.2,0.38 -0.08,0.14 -0.16,0.29 -0.26,0.42 0,0.09 -0.07,0.14 -0.09,0.22 0.06,0.09 0.07,0.2 -0.05,0.25 -0.01,0.06 0.05,0.12 -0.01,0.19 -0.04,0.1 -0.08,0.2 -0.18,0.26 -0.08,0.09 -0.1,0.21 -0.16,0.31 -0.04,0.1 -0.11,0.19 -0.19,0.26 0.03,0.12 -0.11,0.21 -0.11,0.32 -10e-4,0.05 -0.07,0.09 -0.09,0.14 -0.07,-0.07 -0.27,-0.07 -0.28,0.04 -0.04,0.08 -0.08,0.16 0.01,0.23 0.13,-0 0.14,0.22 0.02,0.23 -0.04,0.1 0.17,0.06 0.2,0.15 0.09,0.09 0.12,0.26 0.03,0.36 -0.08,0.07 -0.1,0.15 -0.1,0.23 -0.08,0.02 -0.15,-0.14 -0.2,-0.01 -0.05,0.08 -0.14,0.16 -0.04,0.25 0.02,0.06 0.02,0.13 0.1,0.13 0.04,0.09 -0.03,0.21 -0.15,0.24 -0.13,0.07 -0.21,0.18 -0.32,0.28 -0.09,0.05 -0.1,0.13 -0.16,0.21 -0.03,0.13 -0.19,0 -0.28,0.06 -0.11,-0.03 -0.19,0.12 -0.11,0.19 0.11,0.04 0.19,0.14 0.04,0.2 -0.08,3.8e-4 -0.15,0.02 -0.22,0.05 -0.04,-0.12 -0.12,0.06 -0.17,0.09 -0.12,0.06 0.06,0.2 -0.08,0.27 -0.08,0.07 -0.22,0.18 -0.11,0.28 -0.05,0.08 -0.06,0.2 -0.12,0.27 -0.11,-0.03 -0.16,0.1 -0.27,0.04 -0.13,0 -0.23,0.09 -0.35,0.12 -0.13,0.02 -0.21,0.12 -0.21,0.23 -0.13,0.04 -0.25,0.09 -0.36,0.1 -0.09,0.07 -0.2,0.11 -0.3,0.15 -0.03,0.07 -0.13,0 -0.14,0.1 -0.04,0.03 -0.1,-0.07 -0.11,0.03 -0.02,0.06 -0.12,0.02 -0.11,0.11 -0.06,0.03 -0.12,0.06 -0.17,0.1 -0.13,-0.01 -0.23,0.1 -0.37,0.08 -0.08,-0.01 -0.13,0.05 -0.21,0.03 -0.06,0.04 0.11,0.15 -0.03,0.15 -0.08,0.03 -0.16,-0.03 -0.23,0 -0.01,0.04 0.06,0.04 0.03,0.09 0.02,0.04 0.11,0.04 0.04,0.09 -0.04,0.1 -0.19,0.07 -0.27,0.1 4.2e-4,0.1 -0.12,0.16 -0.15,0.23 0.05,0.01 0.14,0.04 0.04,0.06 -0.06,0.03 -0.22,-0.04 -0.14,0.07 -0.01,0.09 0.02,0.2 -0.09,0.25 -1.7e-4,0.11 -0.14,0.18 -0.17,0.29 0.01,0.16 -0.15,-0.02 -0.25,0.01 -0.1,0.08 -0.23,-0.1 -0.28,0.05 0.05,0.12 -0.09,0.17 -0.2,0.19 -0.08,0.03 -0.17,-0.01 -0.26,0.05 -0.11,-0.03 -0.26,0.12 -0.34,-0.02 -0.08,-0.02 -0.11,-0.09 -0.19,-0.05 -0.08,-0.03 -0.16,-0.02 -0.25,-0.06 -0.09,-0.02 -0.17,-0.09 -0.27,-0.05 -0.11,-0.03 -0.19,-0.07 -0.28,-0.13 -0.07,-0.08 -0.11,-0.19 -0.19,-0.26 -0.07,-0.07 -0.14,-0.15 -0.25,-0.09 -0.11,-0.04 -0.21,-0.06 -0.33,-0.04 -0.12,-0.02 -0.24,0.03 -0.35,-0.02 -0.1,0.06 -0.2,0.11 -0.33,0.07 -0.09,0.08 -0.21,0.02 -0.31,0.08 -0.1,0.07 -0.24,0.01 -0.36,0.04 -0.13,-0.03 -0.16,0.16 -0.27,0.11 -0.14,0.09 -0.18,-0.14 -0.31,-0.11 -0.1,-0.04 -0.13,0.05 -0.11,0.12 -0.08,0.02 -0.17,0.03 -0.18,0.13 -0.07,0.06 -0.19,0.16 -0.29,0.07 10e-4,-0.11 0.16,-0.17 0.17,-0.28 0.02,-0.12 0.1,-0.2 0.16,-0.3 0.03,-0.13 0.19,-0.14 0.28,-0.23 0.16,-0.06 0.23,-0.26 0.13,-0.39 -0.07,-0.09 -0.2,-0.13 -0.32,-0.13 -0.14,-0.01 -0.24,-0.09 -0.34,-0.17 -0.12,-0.06 -0.26,-0.07 -0.36,-0.16 -0.11,-0.06 -0.14,-0.18 -0.22,-0.26 0.02,-0.1 -0.03,-0.23 -0.15,-0.15 -0.16,0.07 -0.09,-0.19 -0.26,-0.14 -0.1,-0 -0.26,-0.02 -0.29,0.09 0.03,0.1 0.01,0.2 -0.09,0.27 -0.03,0.1 -0.12,0.13 -0.22,0.12 -0.11,0.05 -0.28,0.06 -0.31,0.2 -0.04,0.13 -0.19,0.18 -0.32,0.15 -0.16,-0.06 -0.22,0.16 -0.36,0.11 -0.08,-0.02 -0.26,-0.17 -0.28,-0.02 -0.03,0.14 0.21,0.12 0.2,0.23 -0.08,0.11 -0.23,0.15 -0.36,0.08 -0.15,-0.04 -0.3,0.01 -0.44,0.03 -0.09,0.03 -0.17,-0.01 -0.25,-0.04 -0.1,-0 -0.18,0.19 -0.24,0.05 -0.08,0.06 -0.2,0.01 -0.28,-0.04 -0.05,-0.1 -0.22,-0.1 -0.33,-0.12 -0.03,0.04 -0.11,0.12 -0.13,0.02 -0.06,-0.09 -0.14,-0.18 -0.25,-0.18 2.1e-4,-0.05 -0.05,-0.09 -0.05,-0.02 -0.08,0.04 -0.22,0.22 -0.25,0.04 -0.09,-0.05 -0.17,0.08 -0.24,-0.02 -0.07,-0.03 -0.19,0.07 -0.24,-0.02 0.03,-0.07 0.14,-0.2 0.08,-0.25 -0.05,0.01 -0.12,0.08 -0.14,-0.01 -0.03,-0.11 -0.22,-0.09 -0.16,0.04 -0.06,0.02 -0.14,0.06 -0.14,-0.03 -0.06,0.06 -0.14,0.03 -0.12,-0.05 0.03,-0.09 -0.17,-0.17 -0.21,-0.07 -0.11,0.02 -0.2,-0.12 -0.29,-0.02 -0.05,0.11 -0.2,0.04 -0.28,0.01 0.07,-0.08 -0.12,-0.09 -0.05,-0.18 0.06,-0.04 0.19,0.08 0.23,-0.01 -0.03,-0.06 -0.14,-0.1 -0.03,-0.15 0.1,0.01 0.27,-0.16 0.11,-0.18 -0.03,-0.06 -0.11,-0.08 -0.11,-0.16 -0.1,-0.04 -0.12,0.14 -0.21,0.03 -0.14,-0.09 0.22,-0.07 0.15,-0.18 0.02,-0.09 -0.11,0.05 -0.17,0.03 -0.09,0.02 -0.1,-0.08 -0.18,-0.06 -0.08,-0.09 -0.16,0.09 -0.26,0.03 -0.08,0.01 -0.05,0.11 -0.15,0.09 -0.13,-0.01 -0.13,0.15 -0.26,0.14 -0.09,0.04 -0.01,0.18 -0.14,0.2 -0.09,0.05 -0.27,0.04 -0.28,0.16 0.04,0.1 0.2,0.05 0.25,0.06 -0.02,0.07 0.11,0.16 -0.04,0.17 -0.08,0.03 -0.17,-0.04 -0.19,0.07 -0.05,0.07 -0.15,-0.05 -0.23,0.02 -0.08,0.05 -0.03,-0.18 -0.14,-0.1 -0.04,0.04 -0.07,0.11 -0.13,0.03 -0.07,0 -0.14,-0.01 -0.2,-0 -0.1,0.07 0.02,0.22 -0.07,0.31 -0.06,0.08 0.08,0.12 -0.03,0.18 -0.04,0.01 -0.03,-0.1 -0.09,-0.03 0.02,0.1 -0.12,0.07 -0.13,0.16 -0.1,0.1 -0.22,-0.02 -0.15,-0.12 0.04,-0.13 -0.11,-0.09 -0.17,-0.03 -0.06,-0.01 -0.09,-0.03 -0.11,-0.07 -0.14,0.02 -0.05,0.15 -0.11,0.23 0.02,0.09 0.01,0.17 -0.02,0.25 0.06,0.05 0.14,0.11 0.02,0.16 -0.02,0.06 0.02,0.2 -0.11,0.15 -0.08,-0.03 -0.11,0.09 -0.2,0.02 -0.11,0.02 -0.15,0.16 -0.28,0.13 -0.06,0.03 -0.12,-0.05 -0.17,0.03 -0.06,0.04 -0.14,0.1 -0.19,0.03 -0.07,0.1 -0.08,0.25 -0.22,0.31 -0.1,0.09 -0.13,-0.12 -0.2,-0.03 -0.09,-0.09 -0.26,-0.02 -0.36,-0.1 -0.03,-0.1 -0.2,-0.04 -0.19,0.05 -0.13,0.01 -0.03,0.21 -0.17,0.18 -0.1,0.04 -0.06,0.19 -0.12,0.27 0.02,0.08 0.02,0.16 0.09,0.22 -0.04,0.09 -0.19,-0.13 -0.19,0.02 0.03,0.11 -0.19,0.12 -0.19,0.22 0.05,0.04 0.12,0.15 -10e-4,0.1 -0.12,-0.04 -0.23,-0.24 -0.35,-0.12 -0.1,-0.02 -0.14,0.14 -0.22,0.03 -0.07,-0.01 -0.12,-0.07 -0.18,-0.03 0.03,-0.12 -0.1,-0.19 -0.2,-0.22 -0.02,-0.11 -0.14,-0.18 -0.16,-0.28 -0.05,-0.07 -0.01,-0.27 -0.13,-0.18 -0.06,0.05 -0.15,0.02 -0.16,0.09 -0.11,0.08 -0.24,0.1 -0.33,0.2 -0.12,0.08 -0.2,-0.02 -0.27,-0.1 -0.07,0.09 -0.14,-0.02 -0.21,0.02 -0.04,0.07 -0.14,0.11 -0.21,0.13 -0.22,-0.07 -0.44,-0.11 -0.65,-0.2 -0.11,-0.07 -0.12,0.12 -0.24,0.07 -0.09,0.02 -0.26,-0.02 -0.15,-0.12 0.1,-0.06 0.03,-0.11 -0.05,-0.13 -0.07,-0.04 -0.09,0.06 -0.17,-0.01 -0.1,-0.02 -0.09,-0.14 -0.12,-0.21 0.1,-0.01 0.03,-0.09 0.1,-0.12 0.01,-0.06 0.12,-0.11 0.01,-0.15 -0.1,-0.14 -0.13,0.12 -0.26,0.06 -0.15,-0.05 -0.26,0.07 -0.39,0.09 -0.08,-0.04 -0.32,0.06 -0.24,-0.09 0.02,-0.08 -0.02,-0.16 -0.12,-0.12 -0.13,-0.02 -0.22,0.11 -0.35,0.11 -0.12,-0.05 -0.26,-0.06 -0.35,-0.14 -0.16,0.06 0.02,-0.18 -0.11,-0.18 -0.05,-0.13 -0.28,0.04 -0.25,-0.13 0.03,-0.08 -0.07,-0.26 -0.17,-0.19 -0.14,0.08 -0.23,-0.08 -0.34,-0.13 -0.06,-0.01 -0.27,-0.07 -0.16,-0.14 0.12,-0.01 0.23,-0.09 0.35,-0.07 0.14,-0.03 -0.01,-0.18 -0.11,-0.16 -0.11,-0.03 -0.2,-0.19 -0.11,-0.28 0.06,-0.1 -0.06,-0.25 -0.18,-0.24 -0.09,0.02 -0.18,-0.04 -0.27,0.01 -0.12,-0.02 -0.22,0.06 -0.34,0.07 -0.1,-0.04 -0.25,-0.2 -0.09,-0.26 0.06,-0.05 0.11,-0.1 0.2,-0.08 0.1,-0.09 0.23,-0.06 0.34,-0.03 0.13,0.04 0.24,0.11 0.37,0.14 -0.02,0.1 0.13,0.12 0.21,0.05 0.09,0.03 0.28,3.8e-4 0.18,-0.12 -0.05,-0.1 -0.06,-0.2 -0.03,-0.3 0.05,-0.11 0.07,-0.23 0.11,-0.34 0.04,-0.09 0.1,-0.17 0.18,-0.23 0.04,-0.11 0.18,-0.14 0.23,-0.24 0.06,-0.1 0.21,-0.09 0.31,-0.05 0.12,-0.04 0.25,0.06 0.35,-0.04 0.13,0.02 0.24,-0.06 0.28,-0.17 0.14,-0.05 0.12,-0.24 0.27,-0.26 0.1,-0.03 0.1,-0.11 0.09,-0.18 0.02,-0.1 0.26,-0.04 0.21,-0.19 -0.02,-0.11 0.08,-0.17 0.18,-0.18 -0.02,-0.08 0.05,-0.09 0.11,-0.11 0.06,-0.08 0.04,-0.18 0.14,-0.24 0.02,-0.09 -0.02,-0.18 -0.01,-0.26 -0.11,-0.03 0.04,-0.05 -0.01,-0.11 0.08,-0.03 0.19,-0.03 0.21,-0.13 0.01,-0.1 0.02,-0.2 0.1,-0.29 -0.01,-0.08 0.04,-0.15 0.08,-0.19 -0.08,-0.07 0.18,-0.07 0.05,-0.14 -0.05,-0.06 -0.04,-0.17 0.04,-0.19 0.05,-0.09 0.08,-0.21 0.18,-0.26 0.09,-0.07 0.12,-0.18 0.25,-0.2 0.04,-0.08 0.14,-0.13 0.1,-0.23 0.01,-0.06 0.22,-0.02 0.13,-0.1 -0.13,-0.02 -0.01,-0.18 0,-0.25 0.03,-0.12 0.08,-0.27 0.24,-0.29 0.15,0.02 0.08,-0.14 0.2,-0.17 0.06,-0.05 0.07,-0.13 0.17,-0.11 0.14,-0.01 -0.02,-0.16 0.1,-0.18 0.07,0.08 0.12,-0.09 0.16,-0.14 0.11,-0.08 -0.06,-0.25 0.11,-0.29 0.09,-0.06 0.08,-0.15 0.01,-0.21 -0.04,-0.07 -0,-0.13 0.01,-0.19 -0.08,0.03 -0.11,-0.06 -0.04,-0.08 0.06,0.04 0.13,-0.11 0.15,0.01 0.09,-0.06 0.16,-0.13 0.17,-0.24 -0.04,-0.07 0.12,-0.15 -0.01,-0.2 -0.14,-0.03 -0.13,-0.21 -0.16,-0.31 0.02,-0.13 0.14,-0.23 0.13,-0.37 -0.02,-0.06 -0.18,-0.13 -0.03,-0.17 0.12,0.03 0.27,-0.16 0.15,-0.22 -0.06,-0.02 -0.05,-0.11 0.01,-0.05 0.14,-0 -0.06,-0.12 0.02,-0.19 0,-0.12 0.24,-9.3e-4 0.17,-0.14 -0.12,0.01 -0.21,-0.06 -0.26,-0.15 0.03,-0.09 -0.08,-0.18 -0.05,-0.25 0.16,-0.02 0.08,-0.18 0.05,-0.27 -0.04,-0.13 -0.07,-0.26 -0.21,-0.32 -0.05,-0.11 0.06,-0.26 0.19,-0.26 0.13,-0.09 -0.13,-0.18 -0.02,-0.29 0.07,-0.09 0.12,-0.2 0.04,-0.3 0.06,-0.1 -0.05,-0.18 -0.04,-0.27 -0.03,-0.07 -0.13,3.8e-4 -0.18,-0.05 -0.07,0.04 -0.08,0.23 -0.19,0.12 -0.14,-0.04 -0.08,-0.18 0.02,-0.22 0.01,-0.07 -0.11,0.04 -0.12,-0.06 -0.09,-0.05 -0.03,-0.12 0.04,-0.14 0.05,-0.09 0.06,-0.19 0.08,-0.29 0.09,-0.1 0.05,-0.23 0.15,-0.33 -0,-0.06 6.3e-4,-0.16 0.08,-0.09 0.08,-0.03 0.2,0 0.17,-0.11 0.05,-0.06 0.13,-0.09 0.14,-0.18 0.09,-0.06 0.24,-0.12 0.19,-0.25 0.03,-0.04 0.08,-0.07 0.12,-0.1 0.02,-0.01 0.06,-0.04 0.08,-0.06 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_04.js b/lib/mapael-maps/france/france_region_04.js new file mode 100644 index 000000000..3909a99de --- /dev/null +++ b/lib/mapael-maps/france/france_region_04.js @@ -0,0 +1,36 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of La reunion +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:La_R%C3%A9union_arrondissement_commune_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_04 : { + width : 50.338017, + height : 40.711559, + getCoords : function (lat, lon) { + var xfactor = 81.213304068446; + var xoffset = -4484.1898776775; + var x = (lon * xfactor) + xoffset; + + var yfactor = -78.260903254801; + var yoffset = -1633.3839553525; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-974" : "m 4.88,10.07 c 0,0.07 -0.08,0.07 -0.09,0.13 -0.07,0.01 -0.05,0.09 -0.11,0.11 -0.02,0.05 -0.08,0.07 -0.11,0.11 -0.06,0.01 -0.06,0.09 -0.09,0.13 -0.04,0.03 -0.06,0.09 -0.11,0.11 -0.03,0.05 -0.11,0.05 -0.14,0.1 -0.04,0.03 -0.1,0.05 -0.14,0.09 -0.05,0.03 -0.1,0.06 -0.15,0.09 -0.06,0.02 -0.08,0.08 -0.15,0.09 -0.09,-0.01 -0.08,0.07 -0.14,0.09 -0.04,0.05 -0.15,0.03 -0.18,0.08 -0.03,0.04 -0.1,0.05 -0.14,0.09 -0.09,0 -0.13,0.05 -0.2,0.07 -0.02,0.07 -0.13,0.05 -0.18,0.09 -0.07,0.02 -0.12,0.05 -0.16,0.09 -0.08,0.01 -0.12,0.06 -0.21,0.07 -0.07,0.07 -0.16,-0.03 -0.26,0 -0.04,-0.05 -0.2,0 -0.25,-0.04 -0.1,-0.01 -0.17,0.05 -0.21,-0.02 -0.05,-0.03 -0.13,-0.04 -0.11,-0.13 -0.06,0.02 -0.12,0.04 -0.17,0.07 -0.1,-0.01 -0.07,0.1 -0.19,0.06 -0.13,-0.01 0.01,0.09 -0.07,0.13 -0.02,0.05 -0.08,0.07 -0.09,0.13 -0.07,0.01 -0.09,0.07 -0.16,0.09 -0.08,0.01 -0.05,0.12 -0.11,0.15 -0.04,0.04 -0.02,0.14 -0.1,0.14 -0.04,-0.04 -0.23,-0.04 -0.14,0.04 0.08,0.01 0.04,0.13 0,0.15 -0.01,0.06 -0.1,0.05 -0.11,0.12 -0.05,0.03 -0.12,0.04 -0.14,0.11 -0.1,-0.04 -0.12,0.01 -0.09,0.08 0,0.08 -0.06,0.1 -0.13,0.12 -0.02,0.06 -0.06,0.1 -0.14,0.11 -0.12,-0.07 -0.1,0.06 -0.1,0.16 10e-4,0.09 -0.05,0.15 0,0.22 0.04,0.05 0.04,0.13 0.07,0.2 0.04,0.05 0.04,0.12 0.09,0.16 -0.01,0.09 0.05,0.11 0.07,0.17 0.02,0.05 0.08,0.07 0.09,0.14 0.06,0.03 0.07,0.09 0.09,0.15 0.04,0.03 0.06,0.09 0.11,0.11 0.01,0.06 0.1,0.06 0.09,0.14 -0.03,0.08 -0.12,0.01 -0.2,0.02 -0.02,0.1 0.04,0.13 0.07,0.19 0.01,0.09 -0.08,0.11 -0.05,0.22 -0.05,0.06 0.02,0.12 0,0.22 -0.05,0.04 -0.03,0.15 -0.07,0.19 0,0.1 0,0.2 -0.02,0.27 -0.06,0.06 0.03,0.12 0,0.21 -0.03,0.07 -0.02,0.18 -0.02,0.27 0.01,0.08 -0.04,0.21 0.05,0.23 -0.02,0.1 0.05,0.12 0.07,0.19 0.04,0.03 0.06,0.08 0.11,0.1 0.02,0.06 0.03,0.12 0.11,0.13 0.06,0.02 0.05,0.11 0.14,0.11 0.02,0.06 0.07,0.09 0.07,0.17 0.01,0.08 0.1,0.08 0.09,0.17 0.08,0.01 0.09,0.06 0.11,0.12 0.04,0.04 0.08,0.07 0.11,0.12 -0,0.08 0.11,0.06 0.14,0.11 0.05,0.03 0.04,0.11 0.12,0.11 0.05,0.04 0.12,0.06 0.14,0.13 0.08,0 0.1,0.06 0.15,0.09 0.03,0.04 0.07,0.08 0.14,0.09 0.02,0.06 0.1,0.05 0.11,0.11 0.06,0.02 0.09,0.06 0.14,0.09 0.03,0.05 0.1,0.07 0.17,0.09 0.04,0.04 0.11,0.06 0.14,0.11 0,0.08 0.08,0.09 0.07,0.17 0.02,0.05 0.08,0.08 0.14,0.1 0.05,0.03 0.09,0.06 0.13,0.09 0.06,0.03 0.12,0.06 0.16,0.1 0.06,0.02 0.12,0.04 0.14,0.1 0.02,0.1 -0.07,0.09 -0.11,0.14 0.01,0.08 -0.07,0.15 0.04,0.15 0.05,0.03 0.05,0.11 0.1,0.13 0.08,0.01 0.13,0.05 0.14,0.13 -0.01,0.08 0.1,0.06 0.13,0.12 0.08,0.01 0.09,0.08 0.14,0.11 0.03,0.05 0.02,0.15 0.07,0.17 -0,0.07 0.08,0.07 0.09,0.13 0.06,0.01 0.09,0.1 0.05,0.15 0.05,0.04 0.11,0.06 0.18,0.07 0.03,0.08 0.11,-0.02 0.18,0.04 0.06,0.02 0.08,0.08 0.09,0.14 -0.01,0.08 -0.08,0.1 0.04,0.12 0.1,-0.02 0.13,0.04 0.19,0.07 -0,0.07 -0.05,0.14 0.02,0.18 -0.04,0.09 0.1,0.12 0.03,0.2 -0.07,0.03 -0.04,0.09 0.02,0.11 -0.01,0.09 -0.01,0.17 -0.04,0.24 -0.05,0.04 -0.06,0.09 -0.01,0.13 9e-4,0.06 -0.1,0.12 -0.01,0.16 0.02,0.09 -0.07,0.07 -0.02,0.15 0.1,-0.03 0.18,0.05 0.11,0.1 0.04,0.1 -0.07,0.13 -0.02,0.17 0.04,0.04 0.13,0.05 0.19,0.07 0.11,-0.01 0.17,0.02 0.23,0.04 0.01,0.07 0.11,0.05 0.14,0.1 0.06,0.03 0.18,0.01 0.2,0.07 0.02,0.04 0.13,0.07 0.07,0.13 0.01,0.07 0.11,0.05 0.11,0.13 0.03,0.05 0.1,0.06 0.09,0.14 0.04,0.03 0.06,0.09 0.11,0.11 0.06,0.03 0.09,0.08 0.09,0.16 0,0.09 -0,0.18 -0.07,0.21 -0.05,0.04 -0.02,0.15 -0.07,0.18 -0.04,0.07 -0.01,0.13 0.02,0.19 0.04,0.05 0.05,0.12 0.05,0.21 0.07,0.01 0.05,0.14 0.02,0.17 0.07,0.05 -0.04,0.14 0.04,0.17 10e-4,0.07 -0.03,0.15 -0.02,0.24 -0.03,0.11 0.05,0.14 0.04,0.23 0.03,0.11 -0.05,0.12 -0.07,0.19 0.01,0.09 -0.02,0.16 -0.05,0.22 0.02,0.1 -0.07,0.1 -0.07,0.19 0.02,0.1 0.01,0.11 0,0.21 -0.04,0.06 -0.05,0.15 -0.05,0.24 -0.03,0.08 -0.11,-0.02 -0.14,0.06 -0.04,0.11 0.03,0.09 0.02,0.21 -0.03,0.05 -0.09,0.07 -0.14,0.1 -0.02,0.06 -0.08,0.08 -0.09,0.16 0.03,0.05 -0,0.17 0.07,0.19 0.05,0.03 0.15,0.02 0.16,0.09 0.1,-0.01 0.1,0.07 0.16,0.1 -0.02,0.1 0.03,0.13 0.07,0.17 0.07,0.08 -0.04,0.1 -0.02,0.2 0.08,0.01 0.08,0.09 0.09,0.16 0.02,0.06 0.06,0.1 0.07,0.17 0.04,0.05 0.05,0.12 0.07,0.18 0.01,0.07 0.08,0.09 0.11,0.15 0.02,0.05 0.08,0.06 0.09,0.11 0.06,0.03 0.08,0.09 0.09,0.16 0,0.1 0,0.2 0,0.3 0.07,0.02 0.05,0.11 0.07,0.17 0.04,0.04 0.09,0.07 0.13,0.11 0.02,0.05 0.09,0.06 0.14,0.09 0.03,0.04 0.09,0.05 0.11,0.11 0.03,0.05 0.14,0.03 0.16,0.09 0.05,0.03 0.1,0.06 0.15,0.09 0.02,0.06 0.11,0.05 0.16,0.08 0.04,0.03 0.18,0.06 0.2,-0.01 0.11,-0.04 0.16,0.03 0.14,0.13 0.03,0.06 0.1,-0.01 0.15,0.06 0.05,0.05 0.16,0.04 0.12,0.16 -0.05,0.14 0.17,0.02 0.14,0.15 0.03,0.05 0.03,0.13 0.12,0.13 0.06,0.03 0.19,0.01 0.19,0.09 0.06,0.03 0.1,0.07 0.17,0.09 0.05,0.04 0.14,0.04 0.14,0.12 0.02,0.04 0.09,0.13 0.05,0.16 -0.02,0.06 -0.12,0.14 0.02,0.09 0.07,-0.01 0.1,0.07 0.19,0.06 0.05,0.03 0.11,0.06 0.14,0.11 0.02,0.05 0.09,0.06 0.12,0.1 0.09,0.01 0.12,0.06 0.19,0.07 0.06,0.03 0.09,0.08 0.1,0.15 0.06,0.02 0.05,0.1 0.11,0.11 0.02,0.06 0.02,0.15 0.06,0.2 0.03,0.09 -0.07,0.1 -0.06,0.18 -8.8e-4,0.07 0.09,0.07 0.09,0.14 0.03,0.04 0.06,0.1 0.09,0.14 0.03,0.04 0.07,0.15 0.02,0.19 -0.09,-0.01 -0.1,0.06 -0.16,0.09 0.01,0.07 -0.12,0.08 -0.07,0.13 0.05,0.02 0.07,0.08 0.09,0.14 0.05,0.04 0.06,0.1 0.09,0.15 0.07,0.01 0.08,0.07 0.15,0.09 0.03,0.05 0.09,0.07 0.14,0.09 0.03,0.05 0.07,0.08 0.11,0.11 0.03,0.06 0.14,0.04 0.23,0.04 0.06,0.04 0.15,0.04 0.26,0.04 0.08,0.02 0.18,0.02 0.25,0.04 0.05,0.04 0.19,0 0.25,0.04 0.1,0.01 0.25,-0.02 0.32,0.02 0.09,-0.02 0.14,0.08 0.2,0.03 0.09,0 0.13,0.08 0.22,0.02 0.1,-0.05 0.11,0.03 0.22,0.02 0.07,0.02 0.15,0.04 0.22,0.07 0.08,0.02 0.17,0.01 0.21,0.07 0.1,-0 0.14,0.07 0.22,0.02 0.09,0.01 0.17,0.03 0.23,0.06 0.07,0.02 0.14,0.04 0.2,0.07 0.1,0 0.17,0.03 0.26,0.04 0.06,0.04 0.16,0.04 0.23,0.07 0.04,0.04 0.14,0.04 0.17,0.09 0.09,0.01 0.18,0.02 0.23,0.07 0.07,0.01 0.13,0.05 0.18,0.08 0.07,0.02 0.12,0.06 0.19,0.07 0.06,0.03 0.1,0.08 0.19,0.09 0.02,0.05 0.1,0.06 0.14,0.1 0.06,0.02 0.13,0.04 0.18,0.07 0.01,0.07 0.07,0.09 0.09,0.15 0.03,0.04 0.05,0.1 0.09,0.13 0.03,0.05 0.07,0.08 0.11,0.11 0.02,0.05 0.08,0.06 0.09,0.11 0.05,0.02 0.07,0.08 0.15,0.09 0.03,0.04 0.08,0.06 0.1,0.11 0.04,0.03 0.06,0.09 0.11,0.11 0.03,0.05 0.07,0.08 0.11,0.11 0.09,0.01 0.03,0.11 0.09,0.11 0.03,0.05 0.08,0.09 0.1,0.16 0.02,0.06 0.01,0.16 0.05,0.21 0.09,-0 0.06,0.1 0.11,0.13 0.06,0.02 0.05,0.1 0.11,0.11 0.01,0.07 0.08,0.08 0.11,0.13 0.04,0.04 0.13,0.03 0.14,0.09 0.06,0.03 0.11,0.05 0.15,0.09 0.03,0.05 0.09,0.07 0.15,0.09 0.04,0.04 0.09,0.07 0.16,0.09 0.06,0.02 0.09,0.07 0.16,0.09 0.03,0.05 0.14,0.03 0.17,0.09 0.11,-0.01 0.13,0.05 0.22,0.07 0.04,0.06 0.15,0.04 0.25,0.04 0.07,0.03 0.16,0.03 0.25,0.04 0.11,-0.01 0.19,0.01 0.27,0.04 0.09,0.01 0.16,0.04 0.26,0.04 0.12,-0.01 0.17,0.04 0.29,0.02 0.13,0 0.25,0 0.38,0 0.04,0.05 0.05,0.11 0.14,0.11 0.03,0.05 0.12,0.05 0.17,0.09 0.07,0.06 -0.03,0.15 0,0.24 -0.03,0.11 0.08,0.09 0.09,0.15 0.12,-0.02 0.11,0.13 0.07,0.13 0.03,0.05 0.07,0.09 0.11,0.13 0.05,0.03 0.09,0.06 0.13,0.09 0.07,0.01 0.09,0.08 0.14,0.11 0.06,-0.02 0.14,-0.01 0.2,0.02 0.09,-4.8e-4 0.16,0.02 0.21,0.07 0.1,-0 0.11,0.07 0.19,0.09 0.12,-0.02 0.13,0.07 0.26,0.04 0.09,0.01 0.19,-0.07 0.25,0 0.11,0.01 -0.04,0.16 0.08,0.13 0.07,0.06 0.18,-0.01 0.26,0 0.08,-0.03 -0.02,-0.11 0.06,-0.13 0.07,0 0.11,0.1 0.05,0.15 -0.08,-8.3e-4 -0.12,0.08 -0.07,0.14 0.07,-0 0.2,-0.07 0.2,0.03 0.05,0.03 0.06,0.09 0.13,0.1 0.05,0.04 0.04,0.15 0.05,0.22 0.08,-0.01 0.28,0.04 0.2,-0.05 -0,-0.08 0.13,-0.05 0.19,-0.08 0.08,-0.07 0.12,0.05 0.22,0.02 0.07,-0.02 0.13,-0.05 0.21,-0.07 0.08,0.01 0.18,0.02 0.24,0.04 -0.01,0.08 0.27,-0.01 0.25,0.02 0.06,-0.04 0.16,-8.2e-4 0.23,0.02 0.05,0.03 0.09,0.06 0.13,0.09 0.02,0.06 0.11,0.06 0.16,0.09 0.04,0.05 0.16,0.02 0.18,0.08 0.07,0.02 0.15,0.03 0.2,0.07 0.06,0.01 0.06,0.09 0.14,0.09 0.04,0.05 0.14,0.04 0.18,0.09 0.07,0.02 0.11,0.05 0.16,0.09 0.11,0 0.23,-0.01 0.31,0.02 0.05,0.03 0.09,0.07 0.16,0.09 0.06,0.03 0.1,0.06 0.16,0.09 0.01,0.07 0.15,0.04 0.23,0.04 0.05,0.05 0.2,0.01 0.26,0.04 0.08,0.02 0.16,0.04 0.26,0.04 0.04,0.08 0.17,-0.05 0.21,0.02 0.11,-0.02 0.12,0.06 0.2,0.07 0.07,0.02 0.01,0.16 0.14,0.13 0.03,0.05 0.12,0.05 0.14,0.1 0.06,0.01 0.06,0.12 0.11,0.07 0.08,-0 0.16,-0.07 0.23,-0.02 0.04,0.04 0.1,0.05 0.14,0.09 0.02,0.06 0.11,0.05 0.11,0.12 0.05,0.02 0.07,0.15 0.01,0.16 -0.03,0.08 0.06,0.09 0.09,0.13 0.02,0.07 0.15,0.03 0.11,-0.08 0.05,-0.04 0.13,-0.05 0.23,-0.05 -6.5e-4,-0.11 0.1,-0.05 0.15,-0.02 0.07,0.02 0.14,0.07 0.19,0.01 0.05,-0.06 0.1,0.03 0.14,0.01 0.07,0.02 0.11,0.08 0.16,0.01 0.1,-0.03 0.15,0.03 0.23,0.04 0.06,0.03 0.07,0.1 0.16,0.09 0.08,-5.3e-4 0.07,0.08 0.14,0.09 0.06,0.05 0.11,0.01 0.17,0.04 0.12,0.01 0.21,-0.01 0.3,-0.02 0.1,0.01 0.19,-8.2e-4 0.22,-0.06 0.05,-0.03 0.14,-0.04 0.19,-0.07 0.04,-0.05 0.12,-0.06 0.19,-0.08 0.08,-0.02 0.18,-0.01 0.23,-0.05 0.06,-0.01 0.12,-0.08 0.18,-0.02 0.02,0.06 0.07,0.09 0.09,0.15 0.04,0.03 0.17,0.05 0.09,0.13 0.06,0.02 0.11,0.04 0.14,0.09 0.1,-0.01 0.15,0.05 0.22,0.07 0.05,0.03 0.15,0.02 0.16,0.09 0.07,0.05 0.15,-0.03 0.22,0.02 0.05,0.02 0.09,0.06 0.14,0.09 -0.03,0.1 0.04,0.12 0.07,0.17 0.08,0 0.09,0.07 0.13,0.11 0.02,0.06 0.13,0.04 0.16,0.09 0.1,-0.01 0.12,0.04 0.16,0.09 0.07,0.02 0.13,0.05 0.2,0.07 0.01,0.09 0.2,0.02 0.29,0.04 0.06,-0.02 0.1,-0.06 0.16,-0.09 0.14,0 0.27,0 0.41,0 0.04,-0.04 0.08,-0.08 0.11,-0.13 0.04,-0.04 0.09,-0.06 0.13,-0.09 0.07,-0.03 0.14,-0.05 0.26,-0.04 0.13,0.02 0.19,-0.02 0.31,-0.02 0.09,0.02 0.25,-0.03 0.3,0.02 0.07,-0.03 0.19,-0.02 0.3,-0.02 0.07,0.03 0.15,0.04 0.24,0.04 0.06,0.03 0.14,0.04 0.18,0.08 0.04,0.04 0.1,0.05 0.09,0.14 -0.03,0.06 -0.03,0.13 0.04,0.15 0.05,0.02 0.07,0.08 0.14,0.09 2.3e-4,0.07 0.18,0.05 0.23,0.03 0.09,3.8e-4 0.15,-0.03 0.2,-0.07 -0.02,-0.09 0.06,-0.1 0.11,-0.14 0.08,-0.01 0.09,-0.09 0.19,-0.09 0.09,0.01 0.09,-0.07 0.15,-0.09 0.03,-0.05 0.09,-0.07 0.15,-0.09 0.07,-0.02 0.1,-0.08 0.21,-0.07 0.09,0.01 0.16,0.03 0.27,0.02 0.05,0.05 0.16,0.04 0.27,0.04 0.05,0.05 0.2,0.01 0.29,0.02 0.06,-0.03 0.16,-0.02 0.18,-0.09 0.02,-0.05 0.09,-0.06 0.14,-0.09 0.06,-0.03 0.07,-0.09 0.11,-0.13 0.06,-0.05 0.13,0.03 0.18,-0.04 0.04,-0.06 0.03,-0.15 0.03,-0.24 0.05,-0.04 0.12,-0.06 0.21,-0.07 0.05,-0.04 0.19,4.8e-4 0.24,-0.04 0.12,-0.02 0.17,0.03 0.29,0.02 0.06,0.03 0.13,0.06 0.22,0.07 0.1,-0.02 0.09,-0 0.2,-0.02 0.06,0.07 0.16,-0.04 0.22,0.02 0.06,-0.06 0.15,0.03 0.2,-0.02 0.05,0.03 0.05,-2.6e-4 0.15,0 0.05,0.04 0.14,0.05 0.2,0.08 0.08,0 0.23,0.03 0.29,-0.01 0.12,-0.01 0.27,-0 0.4,-0.01 0.04,-0.05 0.08,-0.09 0.16,-0.09 0.1,0.01 0.24,-0.02 0.31,0.02 0.03,-0.02 0.17,-0 0.16,-0.08 0.05,-0.04 0.15,-0.03 0.2,-0.07 0.05,-0.03 0.15,-0.02 0.18,-0.07 0.02,-0.06 0.11,-0.06 0.17,-0.09 0.06,-0.03 0.13,-0.04 0.17,-0.09 0.1,-0 0.15,-0.05 0.27,-0.04 0.1,0.01 0.12,-0.06 0.2,-0.07 0.07,-0.05 0.17,0 0.26,0 0.12,0 0.24,0 0.36,0 0.01,0.03 0.14,-0.01 0.16,-0.04 0.09,-0.01 0.24,0.02 0.29,-0.02 0.1,0.01 0.14,-0.04 0.2,-0.07 0.09,-0.01 0.19,0.07 0.25,0 0.05,-0.03 0.09,-0.07 0.13,-0.11 0.02,-0.06 0.04,-0.11 0.07,-0.15 0.09,-0 0.07,-0.1 0.2,-0.07 0.12,-0.02 0.12,0.07 0.25,0.04 0.05,0.01 0.21,0.05 0.25,0 0.1,-0.01 0.16,0.02 0.2,0.07 0.07,0.02 0.16,0.03 0.22,0.07 0.1,-0 0.22,0.01 0.29,-0.02 0.02,-0.07 0.15,-0.03 0.2,-0.07 0.04,-0.04 0.14,-0.04 0.17,-0.09 0.05,-0.04 0.11,-0.06 0.18,-0.08 0.07,-0.03 0.17,-0.02 0.24,-0.05 0.03,-0.05 0.05,-0.1 0.12,-0.11 0.05,-0.04 0.06,-0.1 0.11,-0.13 0.05,-0.03 0.12,-0.05 0.16,-0.09 0.02,-0.05 0.08,-0.06 0.09,-0.11 0.06,-0.03 0.14,-0.04 0.15,-0.11 0.01,-0.07 0.15,-0.03 0.2,-0.07 0.03,-0.05 0.09,-0.06 0.12,-0.1 0.04,-0.04 0.12,-0.04 0.11,-0.12 0.07,-0.03 0.17,-0.02 0.25,-0.04 0.02,-0.07 0.05,-0.12 0.09,-0.17 0.05,-0.02 0.06,-0.07 0.11,-0.09 0.04,-0.05 0.04,-0.13 0.09,-0.17 -0.01,-0.09 0.12,-0.05 0.12,-0.14 0.03,-0.05 0.07,-0.09 0.09,-0.15 0.06,-0.01 0.09,-0.06 0.14,-0.09 -0,-0.07 0.08,-0.07 0.09,-0.13 0.08,-0.01 0.07,-0.09 0.11,-0.13 0.04,-0.05 0.02,-0.17 0.04,-0.24 0.03,-0.05 0.09,-0.08 0.07,-0.18 -0.03,-0.06 -0.01,-0.16 -0.07,-0.19 -0.02,-0.06 -0.05,-0.12 -0.07,-0.17 -0.06,-0.02 -0.06,-0.09 -0.11,-0.13 0.01,-0.1 -0.02,-0.17 -0.03,-0.26 -0,-0.1 -0.04,-0.16 -0.02,-0.27 0.04,-0.04 0.04,-0.17 -0.04,-0.17 -0.06,-0.05 0.01,-0.12 -0.01,-0.2 -0.05,-0.05 -0.01,-0.19 -0.02,-0.28 0,-0.08 -0.08,-0.11 -0.02,-0.18 0.08,-0.01 0.06,-0.12 0.07,-0.2 0.07,-0.06 -0.01,-0.16 0,-0.23 0,-0.08 -0.02,-0.19 0.05,-0.22 0.03,-0.04 -0.02,-0.13 0,-0.22 0.01,-0.09 -0.03,-0.22 0.02,-0.28 0.02,-0.06 0.09,-0.11 0.01,-0.15 -0.07,-0.02 -0.07,-0.11 -0.07,-0.2 -0.06,-0.03 -0.02,-0.14 -0.07,-0.18 -0.02,-0.06 -0.05,-0.12 -0.07,-0.19 -0.07,-0.02 -0.02,-0.14 -0.07,-0.18 -0,-0.1 -0,-0.2 0.02,-0.27 0,-0.09 0.04,-0.15 0.02,-0.26 0.04,-0.05 0.02,-0.14 0.06,-0.19 0.06,-0.08 -0.02,-0.08 -0.02,-0.17 -0.04,-0.04 -0.03,-0.18 0,-0.22 -0.08,-0.02 -0.03,-0.16 -0.05,-0.23 -0.03,-0.05 -0.05,-0.13 -0.07,-0.19 0.03,-0.12 -0.06,-0.12 -0.05,-0.22 0.05,-0.04 0.02,-0.15 0.07,-0.18 -0,-0.09 0.02,-0.15 0.04,-0.22 0.1,0.01 0.07,-0.1 0.11,-0.15 0.01,-0.07 0.02,-0.15 0.05,-0.21 -0.03,-0.07 -0.02,-0.17 -0.02,-0.27 0.05,-0.05 0.01,-0.19 0.02,-0.28 0.02,-0.06 0.1,-0.07 0.14,-0.12 0.04,-0.05 -0,-0.19 0.04,-0.24 0.01,-0.08 0.06,-0.12 0.05,-0.21 0.03,-0.04 0.07,-0.13 0.02,-0.18 -0.04,-0.06 -0.02,-0.18 -0.02,-0.27 0.05,-0.04 0.01,-0.16 0.07,-0.19 0.03,-0.05 0.03,-0.13 0.07,-0.17 0.01,-0.07 0.11,-0.06 0.14,-0.11 0.01,-0.07 -0.04,-0.21 0.05,-0.22 0.03,-0.05 0.07,-0.08 0.11,-0.11 0.03,-0.05 0.06,-0.11 0.05,-0.2 0.02,-0.08 0.03,-0.16 0.02,-0.26 0.07,-0.01 0.05,-0.09 0.11,-0.11 0.03,-0.05 0.08,-0.07 0.09,-0.13 0.04,-0.03 0.06,-0.09 0.11,-0.11 0.03,-0.05 0.13,-0.04 0.18,-0.09 0.06,-0.02 0.13,-0.04 0.16,-0.09 0.07,-0.01 0.07,-0.09 0.13,-0.11 0.03,-0.04 0.08,-0.07 0.07,-0.15 0.05,-0.04 0.01,-0.16 0.06,-0.2 -0,-0.1 0.02,-0.17 0.03,-0.26 1e-5,-0.09 -0.02,-0.19 0.04,-0.22 0.1,-0.01 -0,-0.1 -0.02,-0.13 -0.07,-0.02 -0.14,-0.04 -0.11,-0.15 -0.03,-0.09 0.04,-0.18 0.01,-0.23 -0.03,-0.1 0.03,-0.15 0.02,-0.24 0.02,-0.07 0.13,-0.03 0.16,0 0.05,0.02 0.14,0.09 0.2,0.05 0.07,-0.02 0.23,0.03 0.25,-0.04 0.05,-0.02 0.09,-0.06 0.13,-0.09 0.06,-0.03 0.14,-0.04 0.18,-0.08 0.08,0.01 0.09,-0.12 0.03,-0.14 -0.05,-0.04 -0.04,-0.12 -0.07,-0.17 -0.09,-0.02 -0.01,-0.13 -0.04,-0.16 -0.02,-0.06 -0.04,-0.12 -0.09,-0.15 -0.04,-0.05 -0.03,-0.13 0.01,-0.18 0.03,-0.09 -0.07,-0.1 -0.06,-0.18 0.07,-0.05 0.02,-0.09 0.02,-0.18 -0.03,-0.06 -0.02,-0.16 -0.02,-0.25 0.06,-0.02 0.07,-0.08 0.11,-0.11 0.03,-0.06 0.07,-0.11 0.07,-0.2 0.03,-0.11 -0.06,-0.13 -0.05,-0.23 -0.05,-0.04 -0.13,-0.05 -0.22,-0.05 -0.04,-0.03 -0.05,-0.1 -0.09,-0.13 -0.02,-0.06 -0.03,-0.13 -0.07,-0.17 0,-0.08 -0.04,-0.12 -0.09,-0.15 -0.02,-0.05 -0.09,-0.07 -0.14,-0.09 0,-0.13 0,-0.26 0,-0.39 -0.06,-0.02 -0.08,-0.09 -0.04,-0.14 0.06,-0.08 -0.04,-0.09 -0.05,-0.16 -0.05,-0.03 -0.08,-0.09 -0.19,-0.07 -0.09,8.1e-4 -0.12,-0.05 -0.14,-0.1 -0.04,-0.06 -0.1,-0.04 -0.18,-0.03 -0.05,-0.02 -0.04,-0.1 -0.11,-0.11 -0.04,-0.05 -0.11,-0.08 -0.22,-0.07 -0.03,0.03 -0.11,0.11 -0.14,0.02 -0.05,-0.04 -0.14,-0.05 -0.25,-0.04 -0.01,-0.08 -0.15,-0.03 -0.16,-0.11 -0.07,-0.02 -0.1,-0.07 -0.13,-0.12 0.04,-0.07 -0,-0.12 -0.04,-0.16 -0.03,-0.04 -0.07,-0.07 -0.12,-0.1 -0.08,-0.01 -0.12,-0.05 -0.18,-0.07 -0.07,-0.02 -0.09,-0.08 -0.14,-0.11 -0.04,-0.04 -0.03,-0.12 -0.09,-0.15 -0.07,-0.02 -0.14,-0.03 -0.16,-0.09 -0.08,-0.01 -0.09,-0.09 -0.2,-0.07 -0.03,-0.06 -0.14,-0.04 -0.2,-0.07 -0.05,-0.04 -0.12,-0.06 -0.18,-0.09 -0.04,-0.05 -0.15,-0 -0.16,0.04 -0.06,0.03 -0.12,0.05 -0.18,0.08 -0.02,0.04 -0.18,0.05 -0.18,-0.02 -0.07,-0.02 -0.15,-0.03 -0.2,-0.06 -0.05,-0.03 -0.04,-0.11 -0.12,-0.11 -0.01,-0.06 -0.1,-0.05 -0.11,-0.11 -0.05,-0.04 -0.07,-0.1 -0.09,-0.16 -0.03,-0.05 -0.07,-0.1 -0.09,-0.15 -0.03,-0.05 -0.07,-0.09 -0.09,-0.14 -0.06,-0.03 -0.04,-0.12 -0.09,-0.15 -0.02,-0.07 -0.05,-0.12 -0.09,-0.17 -0.01,-0.07 -0.07,-0.1 -0.07,-0.17 -0.05,-0.03 -0.06,-0.1 -0.11,-0.13 -0.04,-0.04 -0.04,-0.12 -0.13,-0.11 -0.03,-0.04 -0.09,-0.06 -0.1,-0.12 -0.05,-0.03 -0.1,-0.06 -0.16,-0.09 -0.08,-0.01 -0.12,-0.05 -0.18,-0.07 -0.03,-0.05 -0.04,-0.13 -0.13,-0.13 -0.02,-0.05 -0.09,-0.06 -0.12,-0.1 -0.05,-0.03 -0.08,-0.07 -0.09,-0.14 -0.06,-0.03 -0.04,-0.12 -0.09,-0.15 -0.01,-0.08 -0.03,-0.14 -0.07,-0.19 -0.02,-0.07 -0.05,-0.12 -0.07,-0.18 -0.05,-0.04 -0.09,-0.09 -0.14,-0.13 -0.04,-0.05 0.01,-0.18 -0.09,-0.18 -0.13,0.04 -0.11,-0.07 -0.16,-0.1 -0.04,-0.04 -0.06,-0.09 -0.11,-0.11 -0.05,-0.03 -0.04,-0.11 -0.12,-0.11 -0.05,-0.03 -0.11,-0.06 -0.17,-0.09 -0.03,-0.05 -0.09,-0.07 -0.14,-0.09 0.01,-0.08 -0.05,-0.1 -0.09,-0.13 -0.01,-0.07 -0.06,-0.1 -0.09,-0.15 -0.06,-0.02 -0.13,-0.03 -0.16,-0.09 0.01,-0.08 -0.07,-0.08 -0.09,-0.13 -0.02,-0.06 -0.09,-0.07 -0.09,-0.15 -0.04,-0.04 -0.09,-0.07 -0.09,-0.14 -0.06,-0.02 -0.07,-0.08 -0.11,-0.11 -0.01,-0.07 -0.11,-0.05 -0.14,-0.1 -0.01,-0.07 -0.03,-0.13 -0.09,-0.16 -0.04,-0.03 -0.06,-0.09 -0.11,-0.11 -0.02,-0.06 -0.03,-0.13 -0.09,-0.15 -0.02,-0.06 -0.06,-0.11 -0.09,-0.15 -0,-0.09 -0.05,-0.14 -0.04,-0.23 0.01,-0.09 -0.02,-0.23 0.02,-0.29 0.02,-0.06 0.06,-0.1 0.09,-0.15 -0.03,-0.11 0.18,-0.01 0.14,-0.13 -0.07,-0.05 0.03,-0.16 -0.02,-0.2 -0.03,-0.02 -0.13,-0.13 -0.12,1.6e-4 -0.05,0.09 -0.11,0.02 -0.05,-0.05 -0.05,-0 -0.16,-0.12 -0.14,0.01 -0.13,0.01 0.02,-0.12 -0.13,-0.11 -0.06,-0.09 -0.1,0.05 -0.12,-0.04 -0.1,-0.02 0.01,-0.11 -0.04,-0.15 -0.01,-0.07 -0.06,-0.11 -0.09,-0.16 -0,-0.08 -0.05,-0.13 -0.06,-0.2 -0.02,-0.05 -0.09,-0.06 -0.09,-0.12 -0.04,-0.04 -0.01,-0.15 -0.09,-0.16 -0.03,-0.04 -0.08,-0.07 -0.09,-0.13 -0.04,-0.04 -0.08,-0.07 -0.11,-0.11 -0.05,-0.02 -0.08,-0.07 -0.11,-0.1 -0.03,-0.05 -0.14,-0.03 -0.18,-0.07 -0.05,-0.03 -0.11,-0.05 -0.15,-0.09 -0.09,-1.7e-4 -0.14,-0.04 -0.2,-0.07 -0.12,0.01 -0.2,-0.02 -0.3,-0.02 -0.03,-0.05 -0.08,-0.07 -0.09,-0.14 -0.02,-0.06 -0.09,-0.07 -0.09,-0.15 -0.01,-0.07 -0.02,-0.22 -0.02,-0.19 -0.04,-0.06 -0.01,-0.12 -0,-0.2 0.06,-0.05 -0.06,-0.1 -0.13,-0.09 -0.09,-0 -0.09,-0.09 -0.09,-0.18 -0.04,-0.05 -0.01,-0.16 -0.04,-0.22 -0.04,-0.04 -0.02,-0.15 -0.07,-0.19 0.02,-0.11 -0.03,-0.16 -0.02,-0.27 0,-0.1 0,-0.19 -0.02,-0.26 0,-0.09 -0.01,-0.2 0.02,-0.27 -0,-0.09 -0.02,-0.16 -0.04,-0.22 0,-0.1 0,-0.21 0,-0.31 -0.05,-0.05 -0.01,-0.19 -0.02,-0.28 -0.02,-0.08 0.03,-0.22 -0.02,-0.27 -0.06,-0.06 0.01,-0.14 0,-0.22 0.08,-0.04 0.03,-0.12 0.02,-0.2 0.04,-0.04 0.09,-0.08 0.04,-0.14 -0.01,-0.07 -0.04,-0.12 -0.07,-0.18 -0.02,-0.07 -0.01,-0.18 -0.04,-0.25 -0.01,-0.08 -0.04,-0.13 -0.05,-0.22 -0.04,-0.05 -0.04,-0.13 -0.05,-0.22 -0.04,-0.04 -0.04,-0.12 -0.09,-0.15 -0,-0.07 -0.08,-0.08 -0.07,-0.17 -0.04,-0.04 -0.07,-0.09 -0.13,-0.11 -0.04,-0.03 -0.05,-0.1 -0.09,-0.13 -0.01,-0.07 -0.08,-0.08 -0.09,-0.15 -0.04,-0.04 -0.1,-0.05 -0.09,-0.14 -0.07,-0.01 -0.03,-0.11 -0.09,-0.13 -0.01,-0.07 -0.06,-0.1 -0.09,-0.15 -0.05,-0.03 -0.07,-0.09 -0.09,-0.15 -0.05,-0.04 0.01,-0.17 -0.09,-0.16 -0.03,-0.05 -0.04,-0.12 -0.09,-0.15 -0.03,-0.05 -0.07,-0.08 -0.11,-0.11 -0.08,-0.01 -0.06,-0.1 -0.09,-0.15 -0.02,-0.05 -0.07,-0.08 -0.11,-0.11 -0.02,-0.05 -0.08,-0.06 -0.09,-0.11 -0.06,-0.01 -0.09,-0.06 -0.14,-0.09 -0.03,-0.04 -0.1,-0.06 -0.11,-0.11 -0.06,-0.01 -0.09,-0.06 -0.14,-0.09 -0.01,-0.07 -0.09,-0.07 -0.11,-0.13 -0.05,-0.03 -0.08,-0.07 -0.11,-0.11 -0.06,-0.01 -0.09,-0.06 -0.14,-0.09 -0.02,-0.06 -0.07,-0.08 -0.09,-0.13 -0.06,-0.02 -0.07,-0.08 -0.11,-0.11 -0.03,-0.05 -0.06,-0.1 -0.09,-0.15 -0.01,-0.06 -0.07,-0.08 -0.09,-0.13 -0.01,-0.07 -0.07,-0.09 -0.09,-0.15 -0.03,-0.05 -0.09,-0.07 -0.15,-0.09 -0.04,-0.03 -0.1,-0.05 -0.14,-0.09 -0.05,-0.04 -0.09,-0.07 -0.16,-0.09 -0.01,-0.06 -0.11,-0.05 -0.14,-0.1 -0.09,0 -0.12,-0.04 -0.16,-0.09 -0.07,-0.02 -0.11,-0.06 -0.16,-0.09 -0.06,-0.02 -0.1,-0.06 -0.16,-0.09 -0.07,-0.01 -0.1,-0.07 -0.19,-0.07 -0.06,-0.03 -0.09,-0.07 -0.16,-0.09 -0.06,-0.02 -0.07,-0.08 -0.14,-0.09 -0.03,-0.05 -0.09,-0.07 -0.17,-0.09 -0.1,0 -0.19,-0 -0.24,-0.04 -0.09,-0 -0.1,-0.07 -0.2,-0.07 -0.03,-0.06 -0.14,-0.05 -0.2,-0.08 -0.11,-0.01 -0.24,-0 -0.36,-0.01 -0.04,0.05 -0.14,-0.02 -0.18,-0.04 -0.04,-0.04 -0.05,-0.12 -0.13,-0.07 -0.05,0.05 -0.15,0.05 -0.26,0.04 -0.08,0.02 -0.17,0.04 -0.25,0 -0.03,0.09 -0.1,0.01 -0.16,0 -0.04,-0.05 -0.08,-0.09 -0.16,-0.09 -0.04,-0.05 -0.08,-0.09 -0.15,-0.11 -0.11,0.01 -0.16,-0.03 -0.25,-0.04 -0.03,-0.04 -0.09,-0.05 -0.11,-0.11 -0.08,-0.01 -0.09,-0.07 -0.15,-0.09 -0.05,-0.05 -0.19,-0.01 -0.23,-0.06 -0.05,-0.02 -0.11,-0.05 -0.14,-0.09 -0.08,-0 -0.1,-0.06 -0.15,-0.09 -0.07,-0.02 -0.12,-0.05 -0.16,-0.09 -0.02,-0.05 -0.09,-0.06 -0.12,-0.1 -0.07,-0.01 -0.08,-0.07 -0.13,-0.09 -0.05,-0.03 -0.12,-0.04 -0.16,-0.09 -0.08,-0.01 -0.11,-0.07 -0.18,-0.08 -0.06,0.05 -0.08,-0.05 -0.18,-0.03 -0.14,0 -0.27,0 -0.41,0 -0.02,0.05 -0.08,0.07 -0.11,0.11 -0.16,0 -0.32,0 -0.47,0 -0.06,-0.02 -0.09,-0.07 -0.16,-0.09 -0.05,-0.04 -0.09,-0.07 -0.16,-0.09 -0.03,-0.05 -0.12,-0.05 -0.14,-0.1 -0.05,-0.06 -0.07,-0.02 -0.18,-0.03 -0.04,-0.05 -0.19,-0.01 -0.27,-0.02 -0.04,-0.05 -0.21,0.01 -0.26,-0.04 -0.07,-0.02 -0.17,-0.02 -0.21,-0.07 -0.09,-0.01 -0.16,-0.04 -0.25,-0.04 -0.04,-0.04 -0.2,-0.03 -0.24,0 -0.04,0.04 -0.11,0.07 -0.17,0.09 -0.04,0.04 -0.08,0.07 -0.14,0.09 -0.05,0.04 -0.14,0.04 -0.18,0.09 -0.02,0.06 -0.09,0.08 -0.19,0.07 -0.1,0 -0.14,-0.05 -0.21,-0.07 -0.07,-0.03 -0.2,0 -0.23,-0.06 -0.08,-0 -0.17,-0 -0.18,-0.07 -0.08,-0.01 -0.13,-0.06 -0.25,-0.04 -0.04,-0.04 -0.16,-0.01 -0.16,-0.09 -0.08,-0.01 -0.14,-0.05 -0.22,-0.07 -0.08,-0.02 -0.19,-0.01 -0.25,-0.04 -0.12,0.02 -0.18,-0.02 -0.29,-0.02 -0.09,-0.01 -0.14,-0.06 -0.26,-0.04 -0.06,-0.04 -0.15,-0.03 -0.19,-0.08 -0.09,-0.01 -0.13,-0.06 -0.24,-0.05 -0.05,-0.04 -0.12,-0.04 -0.16,-0.09 -0.05,-0.03 -0.12,-0.04 -0.16,-0.09 -0.08,-0.01 -0.17,-0.03 -0.23,-0.06 -0.07,-0.01 -0.11,-0.06 -0.18,-0.07 -0.03,-0.07 -0.24,0.02 -0.27,-0.04 -0.11,0.02 -0.16,-0.02 -0.2,-0.07 -0.07,0.03 -0.19,0.02 -0.29,0.02 -0.05,0.04 -0.08,0.08 -0.17,0.09 -0.11,-0.01 -0.2,0.01 -0.26,0.04 -0.04,0.05 -0.13,0.06 -0.21,0.07 -0.04,0.06 -0.18,0.03 -0.24,0.06 -0.05,0.04 -0.18,0.02 -0.24,0.05 -0.07,-0.02 -0.15,-0.04 -0.23,-0.07 -0.08,-0.02 -0.17,-0.03 -0.26,-0.04 -0.06,-0.06 -0.12,0.04 -0.22,0.02 -0.11,0.01 -0.17,-0.04 -0.29,-0.02 -0.07,-0.03 -0.19,-0.01 -0.26,-0.04 -0.12,0.02 -0.12,-0.06 -0.2,-0.07 -0.04,-0.03 -0.1,-0.05 -0.14,-0.09 -0.02,-0.05 -0.08,-0.07 -0.11,-0.11 -0.07,-0.02 -0.15,-0.03 -0.2,-0.06 -0.04,-0.04 -0.11,-0.06 -0.16,-0.09 -0.04,-0.04 -0.05,-0.11 -0.13,-0.11 -0.06,-0.03 -0.12,-0.05 -0.14,-0.13 -0.07,-0.01 -0.08,-0.07 -0.13,-0.09 0.01,-0.08 -0.12,-0.05 -0.12,-0.13 -0.07,-0.02 -0.12,-0.06 -0.21,-0.06 -0.05,-0.02 -0.22,-0.05 -0.26,0 -0.04,0.04 -0.11,0.05 -0.15,0.09 -0.05,0.03 -0.08,0.07 -0.15,0.09 -0.04,0.03 -0.1,0.05 -0.14,0.09 -0.02,0.07 -0.15,0.03 -0.21,0.07 -0.05,0.04 -0.2,0.02 -0.25,0 -0.13,0.02 -0.19,-0.02 -0.3,-0.02 -0.04,-0.04 -0.08,-0.08 -0.15,-0.09 -0.08,0.02 -0.17,0.03 -0.25,0 -0.1,-0 -0.13,-0.06 -0.25,-0.04 -0.12,-0.01 -0.2,0.02 -0.3,0.02 -0.06,0.03 -0.15,0.03 -0.2,0.07 -0.06,0.03 -0.14,0.05 -0.21,0.07 -0.07,0.03 -0.15,0.05 -0.23,0.07 -0.07,0.03 -0.14,0.05 -0.23,0.07 -0.06,0.04 -0.12,0.07 -0.22,0.07 -0.09,0 -0.16,0.02 -0.24,0.04 -0.09,0.01 -0.18,0.03 -0.29,0.02 0.01,0.1 -0.13,0.07 -0.19,0.1 -0.1,-0.01 -0.11,0.06 -0.23,0.05 -0.1,8.1e-4 -0.13,0.06 -0.22,0.06 0,0.08 -0.04,0.12 -0.1,0.15 -0.05,0.02 -0.05,0.1 -0.11,0.11 -0.03,0.04 -0.08,0.07 -0.09,0.13 -0.1,-0 -0.17,0.01 -0.18,0.09 -0.03,0.05 -0.06,0.11 -0.16,0.09 -0.06,0.03 -0.15,0.04 -0.22,0.07 -0.06,0.03 -0.13,0.04 -0.2,0.07 -0.05,0.02 -0.1,0.05 -0.14,0.09 -0.01,0.07 -0.07,0.09 -0.14,0.11 -0.03,0.05 -0.04,0.12 -0.14,0.11 -0.05,0.03 -0.02,0.13 -0.1,0.13 -0.07,0.03 -0.17,0.03 -0.26,0.04 -0.04,0.04 -0.11,0.05 -0.15,0.09 -0.06,0.02 -0.1,0.06 -0.16,0.09 -0,0.08 -0.01,0.15 -0.07,0.17 -0,0.08 -0.14,0.03 -0.11,0.13 -0.06,0.02 -0.05,0.1 -0.11,0.11 -0.03,0.05 -0.06,0.08 -0.09,0.13 -0.14,-0.04 -0.05,0.13 -0.17,0.11 -0.05,0.03 -0.09,0.07 -0.16,0.09 -0.11,-0.01 -0.14,0.04 -0.21,0.07 -0.07,0.01 -0.08,0.07 -0.15,0.09 -0.04,0.04 -0.11,0.05 -0.16,0.09 -0.06,0.01 -0.09,0.06 -0.14,0.09 -0.01,0.07 -0.08,0.08 -0.09,0.15 -0.04,0.05 -0.02,0.14 -0.07,0.18 -0,0.07 -0.06,0.1 -0.09,0.15 -0.04,0.04 -0.14,0.03 -0.14,0.1 -0.04,0.03 -0.06,0.08 -0.11,0.1 -0.03,0.04 -0.09,0.05 -0.11,0.11 -0.08,0.01 -0.12,0.06 -0.21,0.07 -0.1,-0.01 -0.19,8.2e-4 -0.22,0.06 -0.05,0.04 -0.18,0.01 -0.18,0.1 -0.04,0.04 -0.06,0.1 -0.16,0.08 -0.05,0.04 -0.18,-5e-5 -0.2,0.07 -0.12,0 -0.24,0 -0.36,0 -0.03,0.04 -0.21,0.03 -0.25,0 -0.02,-0.05 -0.08,-0.07 -0.09,-0.13 -0.09,-0 0.01,0.12 0.04,0.13 0.02,0.07 -0.1,0.06 -0.04,0.16 0.06,0.03 0.14,0.04 0.11,0.15 0.03,0.03 0.11,0.1 0.03,0.13 -0.09,0 -0.07,-0.09 -0.14,-0.11 -0.02,0.07 -0.12,0.08 -0.23,0.07 -0.1,0 -0.21,-0.01 -0.24,0.04 -0.05,-0.02 -0.15,-0.06 -0.1,-0.11 0.03,-0.06 0.22,0.02 0.25,-0.04 0.03,-0.03 0.15,-0.06 0.09,-0.11 0.03,-0.07 3.5e-4,-0.12 -0.05,-0.16 -0.05,-0 -0.11,0.05 -0.19,0.01 -0.11,-0.01 -0.11,0.07 -0.25,0.04 -0.07,0.02 -0.14,0.03 -0.19,0.07 -0.02,0.06 -0.09,0.07 -0.14,0.1 -0.04,0.01 -0.15,-0.07 -0.18,-0.02 -0.11,0 -0.22,0 -0.3,-0.02 -0.06,-0.04 -0.19,-0.02 -0.26,-0.04 -0.03,-0.04 -0.1,-0.05 -0.11,-0.11 -0.07,-0.01 -0.13,-0.04 -0.16,-0.1 -0.09,-0.05 -0.1,0.1 -0.16,0.04 -0.07,-0.01 -0.08,-0.08 -0.18,-0.07 -0.04,0.04 -0.2,0.03 -0.24,0 0.05,-0.08 -0.01,-0.11 -0.09,-0.13 -0.05,-0.04 -0.14,-0.01 -0.16,0.04 -0.08,0.01 -0.14,0.05 -0.24,0.04 -0.06,0.01 -0.1,0.1 -0.05,0.15 0.08,0.01 0.08,0.09 0.09,0.16 -0.02,0.08 0.03,0.22 -0.02,0.26 0.04,0.09 -0.09,0.22 0.05,0.2 0.08,0.06 0.13,-0.04 0.18,-0.01 0.04,0.02 0.14,0.07 0.07,0.14 0.02,0.09 -0.08,0.07 -0.07,0.16 0.01,0.07 -0.15,-0.01 -0.16,-0.05 0.14,0.03 0.12,-0.05 0.03,-0.07 -0.03,-0.1 -0.05,0.05 -0.13,0.02 -0.07,0.02 -0.14,0.04 -0.15,0.12 -0.03,0.06 -0.05,0.14 -0.05,0.23 0.01,0.1 -0.01,0.18 -0.02,0.26 -0.02,0.07 -0.01,0.18 -0.04,0.24 0.02,0.09 -0.05,0.1 -0.07,0.15 -0.09,0.01 -0.05,0.13 -0.11,0.15 0.01,0.09 2.3e-4,0.16 -0.07,0.17 -0.04,0.05 -0.04,0.12 -0.07,0.19 0,0.07 0.06,0.1 0.09,0.14 0.05,0.01 0.09,0.12 0.05,0.15 0,0.08 0.04,0.12 0.07,0.18 0.04,0.04 0.07,0.09 0.09,0.15 -10e-4,0.08 0.04,0.13 0.05,0.2 0.06,0.03 0.02,0.14 0.09,0.15 -0.02,0.11 0.03,0.16 0.02,0.27 -0.04,0.09 0.08,0.15 0.02,0.19 0,0.1 0,0.19 -0.02,0.27 -0,0.09 -0.03,0.15 -0.04,0.22 -0.02,0.07 -0,0.16 -0.07,0.19 0.05,0.08 -0.01,0.12 -0.02,0.2 -0,0.09 0.01,0.21 -0.02,0.27 -0.03,0.06 5e-5,0.18 -0.05,0.23 0,0.08 -0.09,0.07 -0.09,0.14 -0.03,0.06 -0.02,0.16 -0.02,0.25 -0.06,0.02 -0.06,0.1 -0.13,0.11 l -0,0 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_06.js b/lib/mapael-maps/france/france_region_06.js new file mode 100644 index 000000000..02b993d3e --- /dev/null +++ b/lib/mapael-maps/france/france_region_06.js @@ -0,0 +1,36 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Mayotte +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://commons.wikimedia.org/wiki/File:Mayotte_blank_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_06 : { + width : 50.342926, + height : 64.002068, + getCoords : function (lat, lon) { + var xfactor = 193.03305111901; + var xoffset = -8694.0721391537; + var x = (lon * xfactor) + xoffset; + + var yfactor = -180.02792269821; + var yoffset = -2277.4739363656; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-976" : "m 47.35,19.46 c -0.03,0.13 -0.27,-0.04 -0.24,0.15 -0.18,0.13 -0.24,0.34 -0.37,0.48 0.02,0.18 -0.17,0.28 -0.2,0.45 -0.21,0.03 -0.27,0.23 -0.31,0.38 -0.12,0.16 -0.26,0.34 -0.46,0.41 -0.13,0.08 -0.33,0.09 -0.31,0.29 -0.17,0.16 -0.23,0.4 -0.47,0.5 -0.14,0.07 -0.27,0.15 -0.38,0.21 -0.06,0.15 -0.29,0.16 -0.32,0.35 -0.16,0.04 -0.17,0.23 -0.35,0.26 -0.02,0.11 -0.21,0.2 -0.28,0.17 -0.22,0.11 -0.39,-0.24 -0.23,-0.39 0.14,-0.08 -0.1,-0.11 -0.07,-0.23 -0.13,0.07 -0.34,0.03 -0.25,0.24 0.04,0.22 -0.18,0.31 -0.2,0.51 -0.07,0.04 -0.18,0.06 -0.13,0.19 -0.07,0.17 -0.3,0.28 -0.43,0.1 -0.09,-0.08 -0.34,5.7e-4 -0.33,-0.2 -0.26,-0.03 -0.43,0.06 -0.63,0.18 0.04,0.18 -0.26,0.35 -0.03,0.51 0.22,0.08 0.49,0.07 0.68,0.2 0.19,0.03 0.37,0.04 0.48,0.2 0.17,0.1 -0.11,0.26 0.05,0.37 0.03,0.13 0.25,0.05 0.25,0.21 0.09,4.1e-4 0.26,-0.18 0.38,-0.01 0.13,0.08 0.38,-0.02 0.49,0.14 0.19,4.4e-4 0.27,0.23 0.43,0.27 0.15,0.18 0.34,0.28 0.54,0.34 0.15,0.16 0.13,0.34 0.31,0.46 0.11,0.11 0.02,0.35 0.11,0.5 -0.09,0.3 0.28,0.3 0.5,0.43 0.2,0.03 0.16,0.31 0.3,0.44 0.09,0.1 0.13,0.21 0.05,0.33 0.13,0.04 -0.01,0.22 0.13,0.26 0.15,0.2 -0.01,0.39 0.03,0.64 -0.08,0.26 0.17,0.33 0.21,0.56 0.22,-0.02 0.35,0.14 0.53,0.06 0.17,-0.04 0.13,0.2 0.31,0.17 0.07,0.09 0.06,0.2 0.21,0.24 -0.02,0.19 0.24,0.25 0.18,0.44 0.17,0.05 0.35,-0.1 0.47,-0.14 0.02,-0.21 -0.13,-0.37 -0.25,-0.52 -0.09,-0.16 -0.14,-0.35 -0.24,-0.46 -0.1,-0.11 -0.1,-0.28 -0.06,-0.37 0.11,-0.14 0.08,-0.36 0.08,-0.55 -0.13,-0.01 0.08,-0.1 -0.06,-0.13 0.1,-0.14 0.04,-0.32 0.11,-0.45 0.01,-0.21 0.26,-0.27 0.3,-0.47 0.06,-0.15 0.33,-0.34 0.52,-0.19 0.12,-0.14 0.43,0.02 0.58,-0.11 0.19,-0.03 0.33,-0.18 0.47,-0.31 0.12,-0.17 0.34,-0.3 0.33,-0.53 -0.06,-0.1 -0.14,-0.11 -0.05,-0.21 -0.01,-0.2 -0.18,-0.32 -0.23,-0.52 -0.23,-0.06 -0.28,-0.43 -0.12,-0.56 0.18,-0.13 0.27,-0.32 0.3,-0.51 0.06,-0.11 0.25,-0.12 0.34,-0.1 0.04,0.13 0.28,0.34 0.27,0.07 0.11,-0.14 -0.08,-0.2 -0.02,-0.36 -0.14,0.03 -0.14,-0.18 -0.27,-0.23 0.01,-0.25 -0.01,-0.49 -0.11,-0.66 0.02,-0.21 -0.28,-0.24 -0.42,-0.29 -0.23,0.01 -0.38,-0.16 -0.32,-0.39 0.09,-0.05 0.02,-0.23 0.1,-0.26 -0.08,-0.07 0.1,-0.28 -0.05,-0.36 0.02,-0.19 -0.1,-0.27 -0.12,-0.45 -0.13,0.01 -0.04,-0.11 -0.19,-0.13 -0.02,-0.15 -0.24,-0.14 -0.26,-0.29 -0.18,-0.13 -0.25,-0.32 -0.43,-0.46 -0.07,-0.03 -0.12,-0.05 -0.14,-0.14 -0.28,-0.05 -0.11,-0.37 -0.3,-0.52 -0.07,-0.16 -0.21,-0.25 -0.43,-0.23 z m -25.87,43.4 c 0.03,0.18 -0.25,0.07 -0.36,0.1 -0.08,0.02 -0.19,0.12 -0.25,0 -0.14,-0.02 -0.35,0.05 -0.46,-0.04 0.04,-0.19 -0.21,-0.1 -0.33,-0.12 -0.13,0.03 0.02,0.2 -0.11,0.24 -0.13,0.09 -0.19,-0.1 -0.31,-0.1 0,-0.1 -0,-0.2 -0.1,-0.26 0,-0.11 -0.09,-0.16 -0.07,-0.27 -0.1,-0.04 -0.09,-0.13 -0.12,-0.21 -0.1,-0.05 -0.09,-0.16 -0.19,-0.23 -0.03,-0.09 0.03,-0.2 -0.06,-0.26 0.04,-0.13 -0.07,-0.21 -0.15,-0.27 -0.01,-0.07 -0.05,-0.15 -0.16,-0.14 -0.12,-0.01 -0.29,0.04 -0.38,-0.05 -0.15,-0.03 -0.27,0.03 -0.36,0.14 -0.11,0.09 -0.2,0.21 -0.2,0.35 -0.07,0.06 -0.14,0.08 -0.23,0.12 -0.07,-0.03 -0.12,0.07 -0.17,0.06 -0.12,0.08 -0.25,0.09 -0.41,0.08 -0.17,-0.06 -0.01,0.21 -0.19,0.15 -0.06,-0.02 -0.09,0.11 -0.15,9e-4 -0.02,-0.12 -0.09,-0.2 -0.08,-0.33 -0.08,-0.05 -0.02,-0.16 -0.1,-0.21 0.03,-0.09 -0.03,-0.16 -0.05,-0.23 0.01,-0.11 -0.19,-0.23 -0.08,-0.34 0.11,-0.06 0.16,-0.17 0.13,-0.29 0.12,-0.06 0.02,-0.23 0.05,-0.33 -0.12,-0.06 -0.13,-0.19 -0.04,-0.28 0.01,-0.15 -0.18,-0.16 -0.3,-0.14 -0.08,-0.02 -0.19,0.01 -0.23,0.04 -0.06,-0.06 -0.21,-0.06 -0.18,-0.18 -0.08,-0.06 -0.17,-0.13 -0.25,-0.13 -0.07,-0.07 -0.22,0.01 -0.27,-0.08 -0.15,0.02 -0.23,-0.06 -0.35,-0.11 -0.09,0 -0.19,0.01 -0.25,0.05 -0.1,-0.01 -0.14,0.06 -0.23,0.08 -0.07,0.08 -0.01,0.2 -0.14,0.23 0.02,0.13 -0.12,0.07 -0.16,0.16 -0.09,0.04 -0.03,0.14 -0.13,0.16 -0.08,0.08 -0.13,0.15 -0.15,0.26 -0.03,0.07 -0.07,0.15 -0.05,0.24 -0.09,0.06 -0.12,0.15 -0.16,0.24 0.01,0.17 5.3e-4,0.34 0.01,0.51 0.03,0.1 -0.16,0.11 -0.1,0.24 -0,0.15 -0.21,0.07 -0.32,0.08 -0.13,-0.07 -0.13,-0.21 -0.12,-0.34 -0.12,-0.04 0.01,-0.23 -0.14,-0.26 -0.13,-0.06 -0.11,-0.21 -0.22,-0.24 -0.2,0.05 -0.09,-0.17 -0.11,-0.27 0.02,-0.1 -0.13,-0.2 0.02,-0.27 0.11,-0.07 0.08,-0.18 0.2,-0.23 -0.02,-0.09 0.13,-0.14 0.12,-0.22 0.06,-0.05 0.01,-0.16 0.09,-0.2 -0.04,-0.13 0.09,-0.21 0.05,-0.34 -0.01,-0.11 -0.17,-0.14 -0.17,-0.25 -0.01,-0.12 0.06,-0.27 -0.03,-0.37 -0.03,-0.1 -0.1,-0.16 -0.06,-0.28 -0.03,-0.09 -0.12,-0.16 -0.12,-0.27 0.07,-0.05 0.05,-0.13 0.08,-0.2 0.11,-0.03 0.07,-0.15 0.17,-0.2 0.02,-0.15 0.2,-0.14 0.28,-0.26 0.11,-0.05 0.17,-0.22 0.09,-0.29 -0.06,-0.08 0.2,-0.13 0.14,-0.25 0.14,-0.06 0.01,-0.22 -0.1,-0.23 -0.06,-0.12 0.06,-0.29 -0.06,-0.39 -0.04,-0.09 0.11,-0.15 0.05,-0.26 -0,-0.08 -8.9e-4,-0.12 -0.05,-0.17 0.02,-0.08 -0.03,-0.15 -0.13,-0.11 -0.07,-0.08 -0.18,-0.02 -0.23,-0.1 -0.16,0.06 -0.11,-0.18 -0.27,-0.15 -0.03,-0.06 -0.11,-0.04 -0.17,-0.1 -0.09,-0.02 -0.16,0.08 -0.22,0.08 -0.09,0.1 -0.2,0.18 -0.3,0.28 -0.11,0.06 0.11,0.13 -0.03,0.17 -0.1,0.06 -0.1,0.15 -0.16,0.22 -0,0.08 0.05,0.26 -0.11,0.2 -0.09,0.1 -0.23,0.03 -0.35,0.06 -0.08,0.11 -0.28,-0.02 -0.38,0.09 -0.12,-0.05 -0.19,0.13 -0.29,0.12 -0.07,0.08 -0.13,0.12 -0.21,0.15 -0.06,0.06 -0.16,-0.01 -0.2,0.08 -0.11,-0.01 -0.25,0.02 -0.33,-0.05 -0.07,-0.05 -0.14,-0.05 -0.21,-0.07 0.01,-0.09 -0.06,-0.09 -0.07,-0.17 -0.07,-0.09 -0.15,-0.11 -0.25,-0.13 5.7e-4,-0.1 -0.14,-0.18 -0.22,-0.2 -0.06,-0.09 -0.19,-0.09 -0.25,-0.18 -0.07,-0.06 -0.14,-0.19 -0.27,-0.15 -0.08,0.01 -0.13,-0.09 -0.23,-0.05 -0.14,-0.03 -0.25,0.02 -0.36,0.09 -0.05,0.08 -0.12,0.1 -0.2,0.13 -0.01,0.03 -0.1,0.02 -0.13,0.08 -0.14,0.02 -0.33,-0.02 -0.34,-0.18 -0.01,-0.13 -0.01,-0.29 0.15,-0.28 0.06,-0.09 0.15,-0.16 0.27,-0.15 0.05,-0.06 0.1,-0.04 0.15,-0.09 0.11,0 0.11,-0.13 0.23,-0.11 0.06,-0.11 0.18,-0.13 0.26,-0.21 0.11,-0.08 0.16,-0.19 0.29,-0.24 0.05,0.01 0.08,-0.1 0.16,-0.02 0.12,0.09 0.27,-0.01 0.29,-0.14 0.04,-0.05 0.14,-0.03 0.16,-0.09 0.15,0.03 0.25,-0.07 0.37,-0.11 0.14,0.04 0.2,-0.09 0.33,-0.1 0.12,0.03 0.2,-0.02 0.28,-0.06 0,-0.17 0.22,-0.12 0.29,-0.24 0.01,-0.07 0.1,-0.1 0.11,-0.18 0.09,-0.05 0.08,-0.14 0.14,-0.19 0.02,-0.11 0.1,-0.17 0.16,-0.26 0.01,-0.07 0.05,-0.1 0.07,-0.15 0.12,0 0.12,-0.12 0.24,-0.12 0.05,-0.11 0.23,-0.07 0.24,-0.22 0.06,-0.03 0.03,-0.13 0.1,-0.14 -0.03,-0.13 0.07,-0.2 0.05,-0.32 0.03,-0.1 0.17,-0.13 0.09,-0.25 -0.12,-0.04 -0.11,-0.19 -0.03,-0.25 -0.01,-0.25 -7.1e-4,-0.5 -0,-0.75 0.08,-0.03 0.15,-0.11 0.21,-0.13 0.17,-0.02 0.18,-0.19 0.16,-0.32 -0.02,-0.13 -0,-0.27 0.06,-0.37 0.03,-0.13 -0.12,-0.16 -0.12,-0.26 -0.09,-0.08 0.01,-0.21 -0.13,-0.27 -0.07,-0.07 0.03,-0.19 -0.08,-0.23 -0.06,-0.1 -0.16,-0.11 -0.26,-0.14 -0.09,-0.09 -0.27,0.04 -0.35,-0.08 -0.1,-0 -0.22,0.02 -0.29,-0.05 -0.11,0.02 -0.21,-0.13 -0.3,-0 -0.14,0.06 -0.11,0.25 -0.27,0.25 -0.12,-0.03 -0.16,0.07 -0.27,0.05 -0.12,0.08 -0.26,0.1 -0.36,0.23 -0.06,0.12 -0.23,0.02 -0.3,0.11 -0.18,-0 -0.37,4.1e-4 -0.55,-0 -0.02,-0.11 0.01,-0.21 0.11,-0.28 -0.01,-0.13 0.17,-0.1 0.22,-0.2 0.14,-0.08 0.18,-0.19 0.16,-0.35 -0.01,-0.14 -0.17,-0.12 -0.27,-0.13 -0.06,-0.08 -0.17,-0.16 -0.19,-0.24 -0.1,-0.14 -0.28,-0.18 -0.45,-0.14 -0.08,-0.01 -0.26,0.04 -0.22,-0.09 -0.08,-0.02 -0.04,-0.12 -0.12,-0.15 -0.11,-0.06 -0.13,-0.18 -0.03,-0.26 0.02,-0.12 -0.03,-0.3 -0.21,-0.25 -0.11,0.02 -0.05,-0.09 -0.11,-0.1 0,-0.12 -0.21,-0.17 -0.07,-0.29 -0.01,-0.12 0.05,-0.28 -0.04,-0.37 -0.07,-0.1 -0.24,-0.1 -0.24,-0.23 -0.06,-0.05 -0.02,-0.16 -0.09,-0.2 -0.02,-0.1 0.01,-0.19 0.05,-0.27 0.03,-0.11 -0.07,-0.16 -0.06,-0.27 -0.06,-0.05 -0.05,-0.11 -0.11,-0.17 -0.04,-0.05 -0.05,-0.14 -0.07,-0.2 -0.08,-0.07 0.02,-0.28 -0.05,-0.34 -0.06,-0.08 -0.14,-0.04 -0.19,-0.13 -0.06,-0.04 -0.1,-0.02 -0.14,-0.07 -0.11,-0.02 -0.2,-0.12 -0.34,-0.11 -0.06,-0.11 -0.25,0.02 -0.31,-0.09 -0.08,0.01 -0.17,-0.01 -0.22,-0.05 -0.12,-0.02 -0.05,-0.18 -0.05,-0.24 0.09,-0.06 0.03,-0.24 -0,-0.3 0.07,-0.07 0.16,-0.08 0.22,-0.15 0.11,-0.03 0.23,0.02 0.3,-0.07 0.09,0.02 0.21,0.01 0.27,-0.04 0.16,-0.03 0.37,0.05 0.48,-0.05 0.14,-0.01 0.26,-0 0.36,0.06 0.15,-0.02 0.3,-0 0.44,-0.01 0.18,3e-5 0.37,0 0.55,0 0.01,-0.05 0.08,-0.09 0.07,-0.13 0.15,-0.05 0.32,0 0.48,-0.02 0.41,0 0.81,4e-4 1.22,4e-4 0.07,0.12 0.27,0.01 0.39,0.05 0.07,-0.09 0.15,-0.02 0.23,0.01 0.14,-0.02 0.29,-0 0.43,-0.01 0.12,0 0.24,-0.03 0.3,0.08 0.1,0.11 0.12,0.26 0.09,0.41 0.01,0.13 0.1,0.2 0.15,0.33 0.07,0.07 0.28,-0.02 0.24,0.13 0.1,0.05 0.13,0.15 0.16,0.24 -0.05,0.14 0.09,0.2 0.05,0.34 0.01,0.09 10e-4,0.16 -0.06,0.23 0.02,0.05 -0.1,0.07 -0.01,0.11 0.07,0.09 -0.07,0.15 -0.04,0.24 -0.03,0.08 -0.13,0.1 -0.12,0.19 -0.12,0.11 0.02,0.25 0.01,0.36 -0.01,0.1 0.14,0.2 -0.01,0.28 0.04,0.11 -0.09,0.16 -0.05,0.28 -0.04,0.12 0.1,0.21 0.09,0.29 -0.07,0.02 0.06,0.11 0.04,0.15 0.11,0.08 0.15,0.2 0.14,0.33 0.06,0.09 0.24,0.07 0.22,0.22 0.06,0.01 0.02,0.13 0.13,0.1 0.11,-0.02 0.22,-0.01 0.19,0.12 -0.03,0.09 -0.12,0.2 0.02,0.27 0.1,0.03 0.23,-0.02 0.3,0.06 0.12,0.02 0.17,-0.1 0.3,-0.05 0.15,0.05 0.26,-0.09 0.39,-0.04 0.05,0.08 0.29,-0.02 0.23,0.15 -0.03,0.12 0.03,0.27 0.19,0.24 0.13,0 0.25,-0.01 0.33,-0.1 0.01,0.09 0.05,0.22 0.17,0.21 -0.01,0.15 0.19,0.16 0.31,0.14 0.18,-0.04 0.15,0.15 0.26,0.2 0.11,0.02 0.22,-0.02 0.3,0.06 0.13,-0.04 0.19,0.08 0.32,0.04 0.12,-4.8e-4 0.25,0 0.37,5.7e-4 -0.02,0.13 0.14,0.19 0.11,0.32 0.1,0.07 0.02,0.2 0.15,0.24 0.08,0.09 0.19,0.18 0.28,0.27 0.06,0.09 0.19,0.05 0.26,0.11 0.13,-0.02 0.18,0.12 0.29,0.14 0.06,0.04 0.15,10e-4 0.2,0.08 0.14,0 0.29,-0.04 0.42,0.01 0.05,0.06 0.17,0.01 0.21,0.08 0.15,0.03 0.22,-0.08 0.37,-0.05 0.11,-0.01 0.22,0.03 0.27,-0.06 0.1,-0.1 0.32,0.04 0.42,-0.09 0.11,-0.02 0.3,0.05 0.35,-0.04 0.07,-0.09 0.18,-0.05 0.26,-0 0.12,0.01 0.15,-0.11 0.26,-0.13 0.07,-0.04 0.03,-0.17 0.15,-0.13 0.1,-0.09 0.11,-0.2 0.15,-0.31 0.09,-0.07 0.16,-0.13 0.26,-0.17 0.11,-0.09 0.17,-0.2 0.13,-0.34 0.01,-0.19 0,-0.38 0,-0.57 -0.07,-0.02 -0.11,-0.08 -0.19,-0.05 -0.06,-0.05 -0.02,-0.21 -0.01,-0.24 0.14,-0 0.18,-0.15 0.24,-0.23 0.02,-0.11 0.01,-0.24 -0.05,-0.33 -0.03,-0.08 0.02,-0.19 0.03,-0.23 -0.11,-0.11 0.06,-0.18 0.02,-0.3 0.04,-0.11 -0.04,-0.23 -0.15,-0.23 -0.05,-0.13 -0.27,-0.03 -0.22,-0.19 0,-0.21 -0,-0.42 0,-0.63 -0.03,-0.13 -0.09,-0.25 -0.18,-0.35 -0.1,-0.12 -0.25,-0.14 -0.34,-0.27 -0.11,-0.03 -0.19,-0.09 -0.2,-0.19 -0.1,-0.04 -0.16,-0.17 -0.2,-0.25 -0.06,-0.09 -0.09,-0.25 -0.01,-0.37 0.07,-0.1 -0.02,-0.27 -0.17,-0.23 -0.15,0.03 -0.28,-0.01 -0.41,-0.06 -0.06,-0.08 -0.24,-0.17 -0.14,-0.28 0.08,-0.09 0.01,-0.26 0.03,-0.38 -0.03,-0.11 0.06,-0.28 -0.05,-0.34 0.01,-0.07 -0.02,-0.14 -0.05,-0.18 -0.01,-0.12 -0.13,-0.22 -0.12,-0.33 -0.1,-0.1 0.03,-0.27 -0.09,-0.35 0.01,-0.08 -0.04,-0.18 -0.11,-0.23 -0.05,0.01 -0.07,-0.06 -0.15,-0.05 -0.03,-0.06 -0.11,-0.12 -0.14,-0.04 -0.08,-0.11 -0.25,-0.01 -0.38,-0.06 -0.1,-0.04 -0.22,-0.09 -0.19,-0.22 -0.11,-0.05 0.01,-0.24 -0.15,-0.27 -0.02,-0.11 -0.12,-0.21 -0.25,-0.2 -0.15,0.01 -0.12,-0.17 -0.24,-0.22 -0.1,-0.08 -0.18,-0.19 -0.28,-0.26 -0.14,-0.04 -0.29,8.6e-4 -0.44,-0.01 -0.07,0 -0.14,-0.02 -0.14,0.05 -0.1,-0.02 -0.14,-0.15 -0.18,-0.19 -0.06,-0.09 -0.07,-0.21 -0.17,-0.25 -0.07,-0 -0.12,-0.07 -0.18,-0.07 -0.08,-0.06 -0.12,-0.15 -0.13,-0.23 -0.1,-0.06 -0.15,-0.2 -0.29,-0.21 -0.07,0.01 -0.14,0.11 -0.12,-0.02 -0,-0.08 -0.09,-0.12 -0.06,-0.22 -0.07,-0.05 -0.03,-0.17 -0.13,-0.22 -0.01,-0.09 -0.16,-0.13 -0.13,-0.24 -0.08,-0.04 -0.08,-0.15 -0.17,-0.18 -0.1,-0.09 -0.22,-0.21 -0.21,-0.35 -0.13,-0.08 -0.11,-0.23 -0.1,-0.35 0.03,-0.14 -0.13,-0.18 -0.11,-0.32 -0.01,-0.1 -0.06,-0.19 -0.15,-0.26 -0.09,-0.07 -0.08,-0.2 -0.21,-0.24 -0.1,-0.04 -0.17,0.02 -0.24,0.05 -0.06,-0.04 -0.09,-0.05 -0.15,-0.08 -0.06,-0.03 -0.18,-0.03 -0.23,-0.11 -0.04,-0.04 -0.16,0.02 -0.17,-0.07 -0.08,0.11 -0.27,0 -0.35,0.1 -0.15,-0.03 -0.36,0.06 -0.43,-0.07 -0.14,-0.07 0.02,-0.24 -0.12,-0.31 -0.07,-0.03 -0.16,-0.01 -0.2,-0.07 -0.11,0.01 -0.25,0.01 -0.33,-0.04 -0.08,-0.01 -0.04,-0.11 -0.11,-0.14 0.01,-0.1 -0.16,-0.12 -0.11,-0.24 -0.07,-0.07 -0.17,-0.14 -0.19,-0.23 -0.1,-0.08 -0.11,-0.19 -0.23,-0.26 -0.1,-0.06 -0.07,-0.21 -0.23,-0.2 -0.08,-0.11 -0.19,-0.2 -0.31,-0.24 -0.1,0.01 -0.15,-0.08 -0.26,-0.05 -0.08,-0.07 -0.15,-0.17 -0.18,-0.26 0.07,-0.13 0.22,-0.14 0.31,-0.25 -0.02,-0.12 0.21,-0.14 0.26,-0.03 0.1,0.05 0.27,0.07 0.35,7.8e-4 0.08,-0.03 0.25,0.01 0.27,-0.11 0.07,-0.01 0.05,-0.12 0.09,-0.14 0.03,-0.14 0.21,-0.14 0.27,-0.24 -0.01,-0.11 0.17,-0.12 0.16,-0.24 0.01,-0.08 0.08,-0.11 0.06,-0.21 0.06,-0.08 0.11,-0.18 0.16,-0.27 -0.02,-0.08 0.04,-0.12 0.1,-0.11 0.08,-0.1 0.21,0.01 0.28,0.04 0.09,0.11 0.23,0.12 0.34,0.19 0.08,-0.01 0.19,-0 0.24,-0.06 0.15,0.01 0.24,-0.15 0.4,-0.1 0.11,0.01 0.2,0.11 0.31,0.02 0.01,-0.06 0.1,0.09 0.11,-0.02 0.15,-0.02 0.32,0.03 0.47,-0.02 0.05,-0.04 0.12,-0.05 0.17,-0.08 0.15,0.03 0.29,-0.11 0.32,-0.23 0.08,-0.06 0.04,-0.12 0.11,-0.17 0.03,-0.12 -0.17,-0.15 -0.12,-0.28 -0.05,-0.09 -0.17,-0.08 -0.23,-0.16 -0.07,-0.02 -0.13,0.01 -0.17,-0.06 -0.1,10e-4 -0.15,-0.14 -0.23,-0.12 -0.05,-0.06 -0.18,-0.02 -0.21,-0.09 -0.22,0 -0.43,0 -0.65,0 -0.01,-0.1 -0.18,-0.01 -0.21,-0.1 -0.15,0.01 -0.31,0.03 -0.41,-0.09 -0.14,-0.02 -0.31,-0.04 -0.41,0.05 -0.12,0.02 -0.16,-0.17 -0.29,-0.1 -0.12,0.02 -0.05,-0.12 -0.15,-0.13 -0.06,-0.11 -0.06,-0.27 -0.01,-0.37 0.06,-0.06 -0,-0.19 0.08,-0.25 -0.03,-0.09 0.07,-0.12 0.06,-0.19 0.09,-0.08 0.1,-0.19 0.11,-0.31 0.11,-0.07 -0.03,-0.26 0.1,-0.34 0.14,-0.07 -0.03,-0.28 0.1,-0.32 0,-0.12 0.06,-0.19 0.12,-0.29 0.03,-0.14 -0.08,-0.2 -0.18,-0.29 -0.1,-0.04 0.07,-0.11 0.01,-0.2 0.07,-0.04 0.05,-0.17 0.17,-0.12 0.13,0.04 0.21,-0.06 0.23,-0.16 0.1,-0.03 0.07,-0.13 0.13,-0.17 -8.9e-4,-0.08 0.08,-0.1 0.05,-0.2 0.05,-0.15 -0.09,-0.26 -0.05,-0.4 0.01,-0.12 -0.06,-0.21 -0.15,-0.29 0.01,-0.1 -0.14,-0.11 -0.12,-0.23 -0.09,-0 -0.03,-0.15 -0.14,-0.11 -0.1,-0.12 -0.2,0.09 -0.33,-0 -0.03,-0.07 0.01,-0.18 -0.07,-0.23 -0.06,-0.11 -0.12,-0.25 -0.26,-0.27 0,-0.12 -0.17,-0.13 -0.11,-0.27 -0.02,-0.11 0.09,-0.17 0.05,-0.29 5.8e-4,-0.42 4.4e-4,-0.85 6.2e-4,-1.27 0.09,0.01 0.03,-0.13 0.13,-0.14 0.08,-0.12 0.24,-0.12 0.33,-0.21 0.07,0.04 0.11,-0.1 0.16,0 0.16,0.01 0.33,-0.01 0.49,0.01 0.18,-0.02 0.15,-0.26 0.33,-0.26 0.14,0.02 0.17,-0.21 0.02,-0.26 -0.06,-0.12 -0.2,-0.1 -0.3,-0.03 -0.09,-0.03 -0.14,0.11 -0.22,0 -0.13,-0.01 -0.3,-0.03 -0.42,0.02 -0.08,0.12 -0.16,-0.17 -0.23,-0.03 -0.08,-0.12 -0.25,0 -0.36,-0.07 -0.02,-0.08 -0.08,0.09 -0.11,-0.01 -0.11,-0.05 -0.27,0.04 -0.35,-0.07 -0.13,-0.07 -0.15,-0.18 -0.13,-0.3 -0.08,-0.06 -0.07,-0.14 0.03,-0.18 0.09,-0.08 -0.15,-0.03 -0.05,-0.12 0.07,-0.07 0.02,-0.22 -0.09,-0.27 -0.09,-0.07 -0.15,-0.18 -0.26,-0.22 -0.1,0.01 -0.02,-0.11 -0.11,-0.12 -0.14,-0.05 -0.08,-0.24 -0.12,-0.32 -0.09,-0.07 0.14,-0.06 0.2,-0.05 0.13,0.02 0.19,-0.07 0.32,-0.06 0.1,-0.02 0.12,-0.18 0.23,-0.14 0.05,-0.08 0.17,-0.06 0.2,-0.16 0.05,0.01 0.04,-0.07 0.11,-0.05 0.06,-0.07 0.21,-0.02 0.25,-0.13 0.14,0 0.12,-0.18 0.07,-0.26 -0.02,-0.03 -0.08,-0.1 -0.07,-0.15 0.11,-0.06 0.17,-0.17 0.15,-0.29 0.11,-0.07 0.02,-0.21 -0.01,-0.28 0.02,-0.1 -0.04,-0.27 0.03,-0.33 0.15,0.01 0.29,-0.09 0.35,-0.2 -0.08,-0.09 -0.05,-0.21 -0.17,-0.27 0.03,-0.13 -0.12,-0.05 -0.15,-0.15 -0.06,-0.05 -0.13,-0.02 -0.12,-0.11 -0.13,-0.08 0.01,-0.23 0.06,-0.3 0.01,-0.08 0.01,-0.18 -0.1,-0.18 -0.07,-0.08 -0.19,0.01 -0.26,-0.08 -0.04,0.06 -0.2,0.05 -0.18,0.17 -0.12,0.05 0.02,0.2 -0.1,0.24 0.03,0.14 -0.15,0.11 -0.21,0.2 -0.05,0.04 -0.16,0.04 -0.12,0.13 -0.09,0 -0.03,0.16 -0.14,0.11 -0.09,0.13 -0.25,0.09 -0.39,0.09 -0.09,0.01 -0.22,-0.03 -0.25,0.05 -0.09,-0.09 0.03,-0.25 -0.05,-0.35 -0.12,-0.05 -0.07,-0.22 -0.24,-0.2 -0.14,0.05 -0.15,-0.15 -0.29,-0.14 -0.1,0.01 -0.15,0 -0.2,-0.07 -0.07,-0.07 -0.14,-0.16 -0.25,-0.14 -0.06,-0.08 -0.17,-0.01 -0.22,-0.1 -0.09,0.04 -0.15,-0.06 -0.22,-0.06 -0.05,-0.12 -0.21,-0.05 -0.27,-0.14 -0.11,-0.02 -0.15,0.09 -0.27,0.05 -0.07,0.01 -0.08,0.06 -0.15,0.06 -0.04,0.11 -0.15,0.24 -0.28,0.26 -0.09,0.09 -0.31,0.02 -0.45,0.04 -0.08,-0.06 -0.17,-0.2 -0.32,-0.15 -0.11,0.02 -0.16,-0.07 -0.27,-0.06 -0.08,-0.09 0.04,-0.25 -0.07,-0.33 0.05,-0.1 -0.09,-0.11 -0.11,-0.15 0.04,-0.15 -0.12,-0.17 -0.23,-0.19 -0.02,-0.13 -0.27,-0.01 -0.2,-0.19 -0.03,-0.06 -0.07,-0.08 -0.06,-0.16 -0.04,-0.05 -0.1,-0.02 -0.13,-0.07 -0.16,0.02 -0.1,-0.22 -0.26,-0.15 -0.08,-0.06 -0.15,-0.15 -0.27,-0.1 -0.09,0 -0.13,-0.07 -0.23,-0.05 -0.07,-0.05 -0.2,-0.07 -0.2,-0.19 -0.09,-0.07 0.01,-0.18 -0.09,-0.25 0.02,-0.11 0.01,-0.22 -0.1,-0.29 -0.02,-0.13 -0.21,-0.21 -0.3,-0.32 -0.06,-0.08 -0.16,-0.11 -0.27,-0.1 -0.09,-0.12 -0.26,0.06 -0.23,0.16 -0.04,0.09 -0.14,0.04 -0.12,-0.04 -0.08,-0.12 -0.25,-0.05 -0.37,-0.07 -0.1,-0 -0.14,0.07 -0.24,0.06 -0.09,0.04 -0.08,0.14 -0.13,0.19 0.05,0.13 -0.07,0.2 -0.16,0.27 -0.08,0.05 -0.03,0.15 -0.14,0.13 -0.04,0.05 -0.01,0.11 -0.1,0.1 -0.09,0.05 -0.14,0.2 -0.27,0.14 -0.09,-0.06 0.03,-0.18 -0.09,-0.23 -0.06,-0.04 -0.05,-0.13 -0.09,-0.16 0.01,-0.09 -0.06,-0.14 -0.08,-0.21 -0.05,-0.07 -0.18,-0.04 -0.15,-0.15 0.04,-0.12 -0.01,-0.28 -0.17,-0.25 -0.08,0.04 -0.14,0.09 -0.23,0.1 -0.08,-0.09 -0.22,-0.08 -0.3,-0.19 -0.07,-0.09 -0.17,-0.06 -0.23,-0.16 -0.06,-0.15 -0.3,-0.05 -0.3,-0.23 -0.02,-0.05 -0.15,-0.11 -0.1,-0.21 0.05,-0.14 -0.08,-0.25 -0.06,-0.39 0.02,-0.12 -0.02,-0.25 0.06,-0.33 0.03,-0.12 0.19,-0.09 0.24,-0.2 0.08,-0.04 0.08,-0.08 0.09,-0.15 0.07,-0.07 0.23,-0.03 0.28,-0.15 0.08,-0.08 -0.01,-0.18 -0.01,-0.25 0.09,-0.08 0.19,-0.2 0.35,-0.15 0.11,0.01 0.24,0.02 0.32,-0.05 0.11,0.02 0.15,-0.07 0.26,-0.06 0.1,-0.04 0.19,-0.12 0.27,-0.19 0.12,-0.08 0.14,-0.23 0.28,-0.31 0.1,-0.06 0.12,-0.15 0.15,-0.25 0.11,-0.07 0.2,-0.18 0.3,-0.26 -0.05,-0.16 0.17,-0.23 0.16,-0.37 -0.07,-0.15 0.15,-0.18 0.11,-0.32 0.14,-0.1 -0.05,-0.2 -0.01,-0.32 0.05,-0.16 -0.13,-0.24 -0.23,-0.34 -0.09,-0.09 -0.16,-0.19 -0.3,-0.18 -0.1,-0.07 -0.29,-0.05 -0.37,0.01 -0.13,0.03 -0.24,-0.02 -0.34,-0.07 -0.04,-0.07 -0.13,-0.08 -0.19,-0.08 -0.11,-0.07 -0.3,-0.05 -0.4,-0.01 -0.14,0.06 -0.33,-0.01 -0.49,0.03 -0.08,0.07 -0.22,0.01 -0.26,0.12 -0.15,0.04 -0.33,0.03 -0.48,-0 -0.08,-0.05 -0.26,-0.01 -0.29,-0.14 -0.07,-0.07 -0.02,-0.24 -0.01,-0.29 0.12,-0.11 0.33,-0.02 0.5,-0.05 0.14,0.04 0.2,-0.12 0.29,-0.18 -0.01,-0.11 0.18,-0.14 0.17,-0.26 0.07,-0.06 0.04,-0.13 0.13,-0.17 0.1,-0.06 0.07,-0.21 0.22,-0.2 0.17,0.03 0.19,-0.13 0.17,-0.25 10e-4,-0.1 -0.03,-0.19 0.07,-0.24 0.05,-0.04 0.06,-0.11 0.1,-0.17 0,-0.12 0.17,-0.08 0.26,-0.1 0.09,-0.06 0.16,-0.2 0.09,-0.29 -0.08,-0.08 -0.02,-0.21 0.06,-0.26 0.06,-0.06 0.19,-0.15 0.24,-0.25 -0.05,-0.06 -0.07,-0.11 -0.07,-0.18 -0.08,-0.04 -0.02,-0.11 -0.11,-0.14 -0.05,-0.08 -0.08,-0.14 -0.12,-0.23 -0.05,-0.03 -0.12,-0.1 -0.18,-0.11 -0.05,-0.13 0.04,-0.24 0.17,-0.25 0.05,-0.06 0.12,-0.11 0.04,-0.16 0.03,-0.04 0.13,0.01 0.12,-0.07 0.16,0.03 0.21,-0.2 0.09,-0.27 -0.05,-0.1 0.05,-0.15 0.13,-0.14 0.11,-0.06 0.29,-0.07 0.38,0.01 0.12,0 0.16,0.18 0.31,0.16 0.07,0.06 0.18,0.03 0.24,0.09 0.15,-6.9e-4 0.32,0.03 0.45,-0.05 0.14,-0.04 0.24,0.1 0.38,0.05 0.06,-0.04 0.06,-0.05 0.11,-0 0.12,0.01 0.27,0.04 0.35,-0.06 0.03,-0.09 0.15,-0.08 0.19,-0.13 0.1,0.03 0.15,-0.19 0.25,-0.06 0.11,0.06 0.28,-0.02 0.27,-0.13 0.11,-0.08 0.1,-0.19 0.22,-0.25 0.06,-0.1 0.04,-0.24 -0.03,-0.3 0.05,-0.12 -0.14,-0.15 -0.12,-0.25 -0.12,-0.09 0.02,-0.21 0.14,-0.15 0.11,0.05 0.18,-0.11 0.24,0.01 0.02,0.07 0.02,0.1 0.1,0.1 0.08,0.1 0.17,-0.1 0.24,-0.13 0.08,-0.07 0.09,-0.22 0.2,-0.28 0,-0.11 0.08,-0.2 0.13,-0.3 -9.8e-4,-0.05 0.09,-0.1 0.05,-0.17 -0.03,-0.13 0.02,-0.26 -0.01,-0.38 -0.08,-0.11 -0.11,-0.24 -0.24,-0.33 -0.12,-0.08 -0.23,-0.09 -0.33,-0.2 -0.11,-0.03 -0.16,0.08 -0.28,0.05 -0.13,0.04 -0.22,-0.06 -0.24,-0.16 -0.1,-0.09 -0.24,-0.11 -0.3,-0.23 -0.03,-0.15 0.14,-0.13 0.21,-0.21 0.08,-0.12 0.2,0.11 0.3,-0.02 0.02,-0.04 0.08,0.08 0.14,0.03 -0.01,0.1 0.18,-0 0.18,0.1 0.07,0 0.15,0.06 0.18,0.08 0.12,0.01 0.17,0.16 0.31,0.12 0.12,-0.02 0.32,0.03 0.39,-0.03 0.04,-0.03 0.12,-0.03 0.16,-0.07 0.09,0.01 0.13,0.16 0.24,0.09 0.08,0.12 0.17,0.01 0.23,-0.05 0.06,-0.09 0.25,0.01 0.34,-0.07 0.08,-0.07 0.16,-0.17 0.26,-0.23 0.1,-0.02 0.17,-0.13 0.19,-0.19 0.07,-0.07 0.15,-0.15 0.14,-0.23 -0.14,-0.06 0.03,-0.24 -0.09,-0.32 -0.03,-0.08 -10e-4,-0.19 -0.07,-0.25 0.04,-0.09 -0.11,-0.12 -0.01,-0.17 0.02,-0.13 0.1,-0.25 0.06,-0.39 -0.02,-0.05 0.11,-0.05 0.02,-0.1 -0.03,-0.04 0.14,-0.14 0.17,-0.18 0.09,-0.02 0.16,-0.08 0.26,-0.06 0.13,-0.06 0.16,-0.21 0.14,-0.34 -0.02,-0.14 0.03,-0.25 0.11,-0.36 0.01,-0.13 0.25,0.01 0.3,-0.1 0.1,0.01 0.21,0.01 0.28,-0.05 0.11,0.02 0.15,-0.07 0.26,-0.06 0.1,-0.07 0.23,-0.08 0.31,-0.18 0.11,0.02 0.13,-0.1 0.17,-0.14 0.16,-0.03 0.02,-0.19 0.14,-0.26 -0.04,-0.11 0.02,-0.19 0.06,-0.28 -0.02,-0.08 -0.13,-0.13 -0.14,-0.21 -0.11,0.01 -0.18,-0.04 -0.14,-0.14 -0.02,-0.11 0.03,-0.2 0.1,-0.26 0.07,0.02 0.1,0.05 0.17,0.07 0.05,0.06 0.08,0.12 0.15,0.03 0.09,0.08 0.2,0.09 0.3,0.16 0.16,-0.05 0.35,0.04 0.5,-0.05 0.04,-0.06 0.01,-0.16 0.08,-0.19 -0,-0.13 0.13,-0.12 0.22,-0.15 0.08,-0.05 0.29,-10e-4 0.27,-0.16 0.05,-0.06 0.09,-0.16 0.13,-0.22 0.1,-0.06 0.18,-0.17 0.22,-0.24 0.01,-0.09 0.08,-0.12 0.13,-0.2 10e-4,-0.05 0.08,-0.08 0.05,-0.16 0.04,-0.08 0.18,-0.22 0.26,-0.08 0.07,0.07 0.1,0.19 0.2,0.23 0.11,-0 0.07,0.15 0.19,0.17 0.02,0.1 -6.7e-4,0.24 -0.15,0.18 -0.13,-0.01 -0.1,0.18 -0.2,0.17 -0.08,0.07 -0.23,-0.01 -0.29,0.11 -0.07,0.07 -0.19,0.14 -0.16,0.26 -0.03,0.09 -0.08,0.16 -0.05,0.27 0,0.11 0,0.23 0,0.34 0.12,0.04 0.14,0.16 0.27,0.17 0.04,0.14 0.25,0.04 0.32,0.14 0.08,-0.01 0.14,-0.18 0.22,-0.06 -0.05,0.1 -0.17,0.18 -0.18,0.31 -0.12,0.11 -0.3,0.03 -0.45,0.05 -0.18,0 -0.37,0 -0.55,0 -0.04,0.11 -0.25,-0.01 -0.29,0.14 -0.06,0.07 -0.14,0.07 -0.22,0.12 -0.14,-0.05 -0.21,0.05 -0.34,0.05 -0.04,0.06 -0.16,0.03 -0.21,0.09 -0.08,0.02 -0.14,0.13 -0.22,0.12 -0.06,0.12 -0.22,0.04 -0.29,0.17 -0.11,4.1e-4 -0.15,0.15 -0.29,0.11 -0.13,-0.04 -0.17,0.12 -0.29,0.12 -0.09,0.09 -0.2,0.2 -0.15,0.34 0.06,0.11 0.19,0.17 0.27,0.27 0.1,0.07 0.19,-0.07 0.32,-0.03 0.11,0.01 0.18,0.08 0.3,0.05 0.09,0.06 0.2,0.06 0.32,0.05 0.11,0 0.23,-4.5e-4 0.34,0 0.03,0.08 0.15,0.13 0.12,0.22 0.09,0.08 -0.01,0.22 0.11,0.26 0.12,0.05 0.29,-0.02 0.43,0.02 0.08,0.07 0.21,0.02 0.26,0.13 0.05,0.03 0.15,0.02 0.06,0.08 -0.03,0.06 0.13,0.14 0.18,0.04 0.08,0.02 0.11,-0.1 0.19,-0.04 0.05,-0.04 0.09,-0.07 0.12,-0.01 0.08,-0.01 0.26,0 0.13,0.09 0.03,0.09 -0.01,0.19 -0.11,0.18 -0.07,0.05 -0.11,0.13 -0.13,0.18 -0.08,0.07 -0.15,0.15 -0.26,0.18 -0.07,0.12 -0.04,0.32 -0.02,0.42 0.11,0.04 0.07,0.21 0.22,0.21 0.12,-0.05 0.25,-0.08 0.39,-0.05 0.15,0.03 0.25,-0.12 0.4,-0.03 0.03,0.04 0.21,-0 0.15,0.12 -0.02,0.11 0,0.22 0.11,0.29 -0.01,0.16 0.23,0.11 0.34,0.12 0.14,-0.05 0.19,0.12 0.29,0.12 0.01,0.14 0.24,0.18 0.23,0.32 0.03,0.11 -0.11,0.12 -0.17,0.13 -0.07,0.1 -0.25,0.08 -0.22,0.23 0.01,0.07 -0.02,0.14 0.05,0.16 -0.01,0.07 0.02,0.14 0.05,0.18 0.01,0.13 0.1,0.22 0.19,0.31 0.09,0.06 0.1,0.18 0.17,0.27 0.07,0.05 0.16,0.01 0.21,0.08 0.08,0.04 0.19,0.06 0.3,0.05 0.11,0.05 0.19,0.13 0.29,0.2 0.1,0.01 0.24,-0.03 0.28,0.09 0.08,-0 0.13,0.04 0.05,0.08 0.04,0.14 0.24,0.03 0.3,0.13 0.13,-0.02 0.23,0.02 0.33,0.07 0.03,0.07 0.13,0.08 0.16,0.1 0.11,0.05 0.19,0.09 0.29,0.13 0.12,-0.05 0.2,0.02 0.28,0.08 0.1,-0.02 0.18,0.03 0.25,0.06 0.12,-0.04 0.08,-0.23 0.25,-0.21 0.07,0.03 0.1,0.06 0.19,0.06 0.08,0.1 0.01,0.27 0.03,0.4 -0.01,0.12 0.03,0.31 -0.02,0.39 -0.14,0.02 -0.27,0.01 -0.38,-0.05 -0.09,-0.05 -0.15,-0.21 -0.25,-0.09 -0.04,-0.04 -0.14,-0.11 -0.17,-0.01 -0.11,-0.03 -0.15,0.13 -0.25,0.12 -0.08,0.09 -0.12,0.16 -0.12,0.27 -0.1,0.03 -0.02,0.19 -0.04,0.28 0.04,0.13 -0.15,0.27 -0,0.37 -0.02,0.11 -0,0.22 0.11,0.29 0.05,0.09 0.16,0.05 0.19,0.13 0.09,0.05 0.12,0.15 0.22,0.15 0.07,0.08 0.17,0.15 0.24,0.23 0.13,0.02 0.19,0.14 0.24,0.23 0.09,0.03 0.16,0.05 0.12,0.15 -0.02,0.12 0.1,0.18 0.06,0.31 0.01,0.13 -0.04,0.25 0.08,0.33 0.07,0.02 -0.08,0.07 0.02,0.11 0.01,0.1 0.18,0.17 0.12,0.3 -0.05,0.17 0.16,0.21 0.25,0.29 0.04,0.11 0.12,-0.09 0.12,0.03 -0.01,0.07 0.12,0.05 0.14,0.1 0.16,-0.04 0.25,0.14 0.09,0.21 -0.02,0.05 -0.02,0.14 -0.06,0.18 0.08,0.11 0.25,0.07 0.32,0.01 0.06,-0 0.12,-0.11 0.16,-0.01 -0.01,0.09 0.1,0.04 0.14,0.11 0.09,-0.01 0.18,-0 0.24,0.05 0.08,-0.02 0.16,-0.11 0.21,-0.08 0.1,0.08 0.27,-0.01 0.4,0.04 0.07,0.07 0.19,0.03 0.24,0.1 0.11,-0.01 0.17,-0.07 0.28,-0.06 0.14,-0.02 0.07,-0.2 0.14,-0.23 -0.13,-0.1 0.2,-0.1 0.12,0.03 -0.02,0.14 0.17,0.18 0.24,0.24 0.07,0 0.15,0 0.17,0.05 0.1,-0.03 0.18,0.03 0.25,0.05 0.09,10e-4 0.14,0.05 0.21,0.09 0.04,0.05 0.04,0.11 0.09,0.15 -0.16,0.06 -0.09,0.22 -0.11,0.34 -0.02,0.15 0.08,0.31 0.23,0.35 0.07,0.09 0.18,0.06 0.25,0.12 0.11,-0.02 0.14,0.08 0.25,0.05 0.14,0.05 0.24,-0.06 0.37,-0.05 0.09,0.01 0.12,-0.05 0.19,-0.07 0.08,-0.05 0.05,-0.14 0.15,-0.18 0.03,-0.07 0.14,-0.09 0.14,-0.19 0.07,-0.04 0.03,-0.1 0.09,-0.14 0.02,-0.15 0.24,-0.2 0.28,-0.34 0.08,-0.06 10e-4,-0.2 0.09,-0.24 0.09,0.02 0.06,-0.17 0.2,-0.15 0.01,-0.06 0.13,-0.03 0.15,-0.09 0.07,0.1 0.3,0.06 0.3,-0.08 -0.03,-0.08 0.03,-0.15 0.11,-0.15 0.1,-0.07 0.04,-0.17 -0.02,-0.23 0.07,-0.16 -0.09,-0.27 -0.21,-0.36 -0.11,-0.08 -0.09,-0.19 -0.21,-0.25 -0.05,-0.15 0.12,-0.19 0.24,-0.21 0.04,-0.1 0.23,-0.08 0.2,-0.22 0.01,-0.12 0.23,-0.03 0.16,0.07 -0.06,0.14 0.11,0.2 0.23,0.18 0.07,0.06 0.19,0.13 0.2,0.24 0.01,0.11 0.23,0.19 0.23,0.3 0.18,0 0.12,0.18 0.17,0.27 0.04,0.09 0.11,0.21 0.25,0.19 0.13,0.05 0.22,0.17 0.35,0.25 0.1,0.01 0.17,0.14 0.26,0.21 0.06,0.08 0.16,0.09 0.21,0.14 0.2,9.7e-4 0.41,6.4e-4 0.61,9.3e-4 0.07,-0.12 0.26,-0.01 0.39,-0.05 0.08,-0.05 0.2,-0.14 0.21,-0.24 0.13,-5.6e-4 0.2,-0.1 0.33,-0.06 0.07,0.06 0.28,0.04 0.25,0.2 0.08,0.05 0.2,0.18 0.3,0.05 0.22,0 0.44,4.1e-4 0.66,4.5e-4 0.06,0.12 0.19,0.19 0.32,0.2 0.12,-0.04 0.2,0.06 0.27,0.12 0.03,0.05 0.06,0.05 0.05,0.11 0.08,0.03 0.16,0.03 0.22,0.08 0.07,-0.04 0.12,0.05 0.14,0.03 0.07,-0.06 0.16,-0.01 0.21,-0.08 0.09,4.1e-4 0.09,-0.07 0.2,-0.06 0.1,-0.05 0.25,-0.07 0.36,-0.02 -0.12,0.06 0,0.22 0.13,0.18 0.08,-0.07 0.19,-0.16 0.23,-0.25 0.08,0.03 0.2,-0.03 0.22,-0.03 0.06,0.14 0.26,0.05 0.34,0.12 0.08,0.04 0.18,0.09 0.27,0.12 0.14,0.04 0.14,0.21 0.27,0.28 0.04,0.02 0.13,0.03 0.1,0.11 -0.05,0.15 0.12,0.16 0.22,0.18 0.03,0.03 0.11,0.05 0.16,0.08 0.1,-0.01 0.24,0.01 0.29,-0.05 0.09,0.11 0.24,0.01 0.18,-0.11 0.01,-0.1 0.19,-0.13 0.18,-0.25 0.11,0.02 0.31,-0.04 0.36,0.03 -0.02,0.1 -0.01,0.19 0.06,0.26 -0.01,0.1 -0.1,0.18 -0.06,0.28 -0.07,0.05 -0.04,0.11 -0.1,0.15 0,0.07 -0.07,0.08 -0.06,0.15 -0.06,0.04 -0.11,0.01 -0.14,0.08 -0.08,0.06 -0.21,0.18 -0.08,0.26 0.03,0.05 0.13,0.01 0.14,0.08 0.06,0.07 0.17,0.03 0.13,0.14 0.01,0.06 0.07,0.06 0.06,0.13 0.1,0.04 0.18,0.09 0.31,0.07 0.06,0.04 0.04,0.05 0.1,-0 0.12,-0.05 0.17,0.1 0.29,0.05 0.14,-0.02 0.28,0.03 0.37,0.12 0.14,0.07 0.13,0.22 0.23,0.31 0.05,0.06 0.21,-0.02 0.23,0.07 0.09,0.02 0.18,-0 0.24,-0.04 0.1,0.02 0.13,-0.06 0.21,-0.06 0.11,-0.1 0.28,-0.02 0.38,0.03 0.01,0.13 0.18,0.17 0.19,0.29 0.05,0.05 0.03,0.1 0.12,0.1 0.03,0.06 0,0.14 0.08,0.19 -0.05,0.11 0.1,0.15 0.15,0.18 0.11,0.01 0.14,0.11 0.24,0.13 0.05,-0 0.01,0.11 0.08,0.11 0.08,0.08 0.15,0.18 0.26,0.19 0.09,0.11 0.2,0.16 0.33,0.21 0.03,0.06 0.1,-0.07 0.19,-0.02 0.09,0.01 0.22,-0.04 0.2,0.09 0.08,0.06 0.16,0.14 0.24,0.21 0.03,0.05 0.04,0.11 0.08,0.14 -0.02,0.11 0.1,0.15 0.06,0.27 -0,0.11 -0.02,0.23 0.02,0.34 0.08,0.08 -0.02,0.23 0.08,0.3 -0,0.1 0.06,0.18 0.13,0.26 0.11,-0.04 0.07,0.12 0.15,0.14 0.07,0.06 0.13,0.19 0.08,0.29 -0.1,0.07 -0.16,0.21 -0.3,0.22 -0.1,-0.05 -0.14,0.08 -0.24,0.04 -0.13,0.05 -0.16,0.17 -0.16,0.29 -0.13,0.09 0.06,0.19 0.01,0.31 0.02,0.11 -0.14,0.16 -0.13,0.25 -0.14,0.05 -0.04,0.24 -0.14,0.28 0.07,0.06 0.07,0.21 0.01,0.29 -0.04,0.1 -0.11,0.19 -0.15,0.29 -0.1,-0.01 -0.22,0.01 -0.29,-0.06 -0.12,0.06 -0.31,0.12 -0.27,0.28 0.1,0.07 0.15,0.16 0.26,0.22 0.13,0.01 0.03,0.16 -8.9e-4,0.2 0.11,0.07 -0,0.3 0.16,0.28 0.09,-0.09 0.22,-0.02 0.29,0.05 0.08,0.04 0.19,-0.02 0.23,0.06 0.14,-0.02 0.12,0.15 0.18,0.18 -0.02,0.14 0.23,0.09 0.16,0.23 0.05,0.11 0.07,0.21 0.06,0.33 0,0.1 0,0.2 4.4e-4,0.3 -0.09,0.01 -0.05,0.17 -0.18,0.15 -0.07,0 -0.04,0.06 -0.11,0.05 -0.1,0.09 -0.26,0.04 -0.39,0.04 -0.12,-0.06 -0.13,-0.19 -0.24,-0.27 -0.12,-0.07 -0.27,-0.03 -0.35,0.07 -0.08,0.1 -0.18,0.17 -0.31,0.18 -0.04,0.14 -0.21,0.05 -0.31,0.08 -0.04,-0.04 -0.09,-0.09 -0.12,-4.1e-4 -0.09,0.06 -0.15,0.08 -0.25,0.11 -0.05,0.05 -0.03,0.17 -0.15,0.13 -0.09,-0.02 -0.19,0.01 -0.18,0.09 -0.15,-0 -0.2,0.19 -0.22,0.25 -0.14,0.01 -0.18,0.16 -0.29,0.22 -0.1,0.14 -0.28,0.06 -0.42,0.08 -0.1,0.04 -0.19,0.08 -0.27,0.16 -0.13,-0 -0.11,0.16 -0.21,0.21 -0.03,0.08 -0.02,0.12 -0.07,0.18 0.01,0.08 -0.01,0.15 -0.06,0.21 0.05,0.06 0.09,0.13 0.01,0.19 -0.02,0.13 0.01,0.27 -0.01,0.4 0.01,0.07 0.08,0.07 0.01,0.12 -0.02,0.1 0.02,0.21 -0.07,0.28 0.05,0.12 -0.06,0.19 -0.13,0.25 -0.11,-0.01 -0.22,-0 -0.3,0.05 -0.07,0.04 -0.13,0.12 -0.2,0.12 -0.06,0.1 -0.19,0.09 -0.26,0.19 -0.02,0.05 -0.01,0.11 -0.11,0.1 -0.04,0.05 0.04,0.16 -0.09,0.15 -0.07,0.04 0.01,0.14 -0.08,0.18 0.01,0.06 -0.07,0.08 -0.06,0.16 -0.08,-0.01 -0.14,0.08 -0.23,0.05 -0.07,0.06 -0.14,0.04 -0.19,0.13 -0.1,0.05 -0.11,0.15 -0.17,0.22 0.05,0.07 -0.07,0.13 -0.06,0.18 -0.07,0.06 -0.01,0.18 -0.12,0.21 -0.07,0.12 -0.11,0.23 -0.19,0.34 0.04,0.12 -0.17,0.18 -0.1,0.32 0.02,0.12 -0.18,0.15 -0.17,0.27 -0.02,0.12 0.04,0.18 0.11,0.25 -0.08,0.04 -0.03,0.19 -0.16,0.18 -0.07,0.12 -0.23,0.08 -0.35,0.08 -0.07,0.11 -0.25,-0.02 -0.32,0.1 -0.14,0 -0.2,0.12 -0.32,0.15 -0.06,0.02 -0.1,0.12 -0.19,0.11 -0.05,0.07 -0.14,0.01 -0.12,0.11 -0.07,0.03 -0,0.12 -0.12,0.12 -0.1,0.05 -0.16,0.13 -0.17,0.24 -0.04,0.11 -0.15,0.16 -0.17,0.27 -0.12,0.04 -0.04,0.17 -0.13,0.22 -0.04,0.12 0.06,0.28 0.16,0.29 0.07,0.08 0.23,-0.03 0.29,0.07 0.15,0.03 0.31,-0.02 0.45,0.02 0.07,0.11 -0.06,0.2 -0.16,0.22 -0.06,0.1 -0.24,0.17 -0.21,0.3 -0.04,0.07 -0.06,0.14 -0.14,0.14 -0.08,0.09 -0.24,0.11 -0.25,0.23 -0.15,0.01 -0.1,0.21 -0.22,0.26 -0.1,0.04 -0.05,0.15 -0.12,0.21 -0.02,0.04 -0.01,0.14 -0.07,0.18 0.04,0.12 -0.05,0.21 -0.05,0.31 -0.03,0.09 0.03,0.17 0.11,0.16 0.07,0.05 0.11,0.13 0.13,0.18 0.1,0.06 0.08,0.16 0.18,0.22 0.1,0.05 0.18,0.08 0.29,0.14 0.1,0.01 0.01,0.15 -0.01,0.2 -0.05,0.12 -0.17,0.12 -0.25,0.19 -0.09,0.13 0.06,0.21 0.03,0.34 -0,0.09 0.14,0.1 0.11,0.19 0.08,0.02 0.13,0.04 0.05,0.1 0.14,0.07 0.12,0.2 0.21,0.3 -0.05,0.13 0.16,0.16 0.11,0.3 -0.02,0.11 -0.01,0.3 0.15,0.27 0.18,-0.01 0.04,-0.24 0.21,-0.21 0.05,-0.09 0.3,-0.05 0.28,0.09 0.08,0.09 0.09,0.21 0.19,0.28 -0,0.1 0.12,0.14 0.17,0.15 -0.1,0.09 -0.04,0.23 -0.05,0.35 0.05,0.08 0.07,0.2 0.21,0.19 0.06,0.13 0.23,0.06 0.29,0.18 0.08,0.07 0.15,0.17 0.25,0.21 0.09,0.01 0.13,-0.11 0.18,4.1e-4 0.08,0.09 0.18,0.18 0.32,0.15 0.1,-0.04 0.05,-0.18 0.19,-0.15 0.07,0.02 0.16,-0.02 0.18,0.05 0.14,-0 0.23,0.05 0.31,0.14 0.05,0.06 0.05,0.15 0.1,0.22 -0.07,0.08 -0.18,0.15 -0.19,0.24 -0.12,0.09 -0.21,0.21 -0.19,0.36 0.02,0.13 -0.09,0.2 -0.05,0.34 0.05,0.09 0.17,0.16 0.2,0.26 0.1,0.1 0.21,0.1 0.29,0.22 0.09,0.01 0.12,0.08 0.19,0.11 0.05,-0.07 0.2,-0.03 0.25,-0.14 0.06,-0.01 0.15,-0.01 0.18,-0.06 0.06,-0.01 0.13,-0.07 0.17,-0.07 0.05,-0.06 0.18,-0.02 0.21,-0.08 0.08,-0.02 0.15,-0.09 0.24,-0.05 0.1,0 0.15,0.09 0.26,0.05 0.15,-0.04 0.25,0.09 0.21,0.21 -0.01,0.12 0.01,0.24 -0,0.36 -0.09,0.09 -0.12,0.21 -0.1,0.34 -0.07,0.12 -0.19,-0.08 -0.31,-0.01 -0.11,0.01 -0.19,-0.01 -0.24,0.08 -0.1,0.06 -0.01,0.18 -0.14,0.23 -0.04,0.09 0.04,0.27 -0.11,0.26 -0.02,0.11 -0.09,0.19 -0.17,0.27 0.02,0.1 -0.09,0.16 -0.05,0.26 -0.04,0.13 0.02,0.25 0.17,0.27 0.03,0.03 0.1,0.03 0.14,0.07 0.03,-0.11 0.1,0.04 0.17,0.02 -0.05,0.09 -0.09,0.15 -0.13,0.25 -0.04,0.02 -0.02,0.09 -0.08,0.12 0,0.07 -0.06,0.09 -0.07,0.17 -0.17,0.1 -0.38,0.02 -0.56,0.04 -0.01,0.05 -0.08,0.09 -0.07,0.14 -0.17,-0.02 -0.22,0.13 -0.33,0.2 -0.12,0.05 -0.04,0.18 -0.11,0.26 -0.04,0.04 0,0.15 -0.09,0.18 -0.08,0.08 -0.22,0.09 -0.28,0.16 -0.11,4.1e-4 -0.14,0.15 -0.28,0.1 -0.11,-0.03 -0.13,0.08 -0.25,0.05 -0.04,0.06 -0.14,0.05 -0.17,0.1 -0.14,0.02 -0.34,-0.06 -0.44,0.07 -0.03,0.1 -0.11,0.25 -0.21,0.27 -0.06,-0.12 -0.2,-0.11 -0.28,-0.04 -0.11,-0.02 -0.19,-0 -0.27,0.05 -0.1,0.07 -0.26,0.17 -0.27,0.29 -0.13,0.06 -0.01,0.21 0.01,0.3 -0.02,0.1 0.03,0.21 -0.08,0.25 -0.07,0.08 -0.21,0.13 -0.2,0.27 0.02,0.1 -0.02,0.18 0.07,0.22 0.12,0.1 -0.07,0.21 -0.01,0.33 0,0.11 -0.04,0.24 0.03,0.34 0.08,0.09 0.19,0.15 0.21,0.26 0.06,0.08 -0.02,0.19 0.09,0.23 0.12,-0 0.09,0.06 0.01,0.1 -0.04,0.08 -0.08,0.12 -0.1,0.21 -0.14,0.04 -0.09,0.22 -0.03,0.3 -0.03,0.12 0.01,0.28 0.18,0.25 0.1,0.04 0.18,0.1 0.27,0.19 0.11,0 0.08,0.15 0.19,0.17 0.04,0.03 0.05,0.08 0.07,0.14 0.09,0.04 0.13,0.16 0.24,0.16 0.1,0.06 0.12,0.15 0.14,0.25 0.09,0.1 0.26,-0.02 0.33,0.09 0.14,0.03 0.33,-0.06 0.4,0.08 0.07,0.07 0.25,0.17 0.1,0.27 0.02,0.11 -0.21,0.06 -0.25,0.01 -0.12,0.01 -0.17,-0.09 -0.3,-0.05 -0.1,-0.02 -0.15,-0.09 -0.27,-0.05 -0.1,-0.01 -0.15,-0.08 -0.27,-0.05 -0.07,-0.08 -0.2,-0.04 -0.31,-0.05 -0.09,-0.02 -0.24,0.04 -0.27,-0.04 -0.07,-0.02 -0.16,0 -0.19,-0.06 -0.1,0.02 -0.17,-0.03 -0.25,-0.05 -0.12,-0.01 -0.2,-0.1 -0.31,-0.12 -0.05,-0.1 -0.26,-0.08 -0.21,-0.23 -0.05,-0.01 -0.09,0.1 -0.12,0.01 -0.09,-0.01 -0.15,-0.08 -0.24,-0.06 -0.09,-0.09 -0.24,-0.02 -0.36,-0.04 -0.1,-0.02 -0.21,0.02 -0.29,0.04 -0.05,-0.06 -0.11,-0.04 -0.17,-0.09 -0.09,0.01 -0.22,-0.02 -0.25,0.05 -0.11,-5.3e-4 -0.17,0.12 -0.28,0.1 -0.01,0.08 -0.14,0.03 -0.15,0.1 -0.02,0.05 -0.03,0.11 -0.06,0.13 -0.02,0.07 -0.09,0.13 -0.06,0.22 -0.03,0.06 -0.1,0.11 -0.01,0.17 0.02,0.06 -0,0.13 0.07,0.17 -0.06,0.12 0.08,0.18 0.04,0.29 0.01,0.07 0.11,0.12 0.01,0.18 0.01,0.17 -0.25,0.01 -0.34,0.11 -0.05,0.03 -0.16,0.01 -0.19,0.07 -0.08,0.01 -0.18,-0.01 -0.21,-0.04 -0.07,0.09 -0.3,-0.01 -0.28,0.15 -0.06,0.05 -0.19,0.06 -0.18,0.18 -0.06,0.01 -0.11,0.01 -0.1,0.09 -0.06,0.04 -0.02,0.12 -0.13,0.13 -0.08,0.04 0.04,0.17 -0.07,0.21 0.03,0.1 -0.16,0.12 -0.11,0.22 -0.08,0.01 -0.05,0.12 -0.11,0.15 0.04,0.13 -0.09,0.21 -0.05,0.34 -0.01,0.09 0.15,0.11 0.11,0.2 0.09,0.03 0.06,0.19 0.19,0.16 0.06,0.05 0.17,0.06 0.22,0.16 0.15,0.05 0.11,0.21 0.17,0.3 0.14,0.07 -0.01,0.25 0.12,0.31 0.04,0.08 -0.11,0.1 -0.01,0.16 0.06,0.11 -0.09,0.15 -0.04,0.25 -0.03,0.12 0.01,0.25 0.13,0.31 0.12,0.14 -0.13,0.12 -0.22,0.1 -0.07,-0.04 -0.15,-0.08 -0.22,-0.15 -0.08,0.02 -0.08,-0.07 -0.17,-0.06 -0.09,-0.08 -0.22,-0.1 -0.36,-0.08 -0.13,-0.04 -0.26,-0.15 -0.43,-0.1 -0.06,0.08 -0.22,0.01 -0.28,0.09 -0.1,-0.01 -0.13,0.06 -0.22,0.07 -0.05,0.07 -0.09,0.14 -0.11,0.21 -0.02,0.01 -0.07,0.06 -0.06,0.11 -0.04,0.05 -0.09,0.11 -0.1,0.18 -0.08,0.05 -0.06,0.23 -0.02,0.28 0.04,0.06 0.14,0.1 0.18,0.12 0.02,0.15 -0.01,0.31 0.01,0.46 0.12,0.06 0.1,0.17 0.2,0.24 0.06,0.08 0.17,0.14 0.26,0.14 0.05,0.06 0.13,0.01 0.16,0.09 0.02,0.08 0.01,0.17 0.14,0.14 0.07,0.05 0.22,0.1 0.25,0.2 0.05,0.06 0.07,0.12 0.07,0.18 0.07,0.04 0.03,0.1 0.09,0.14 -0.02,0.1 0.18,0.13 0.06,0.2 -0.02,0.18 0.01,0.35 -0.01,0.53 0.02,0.1 0.09,0.16 0.06,0.27 0.03,0.1 0.09,0.17 0.17,0.25 -0.03,0.09 0.12,0.05 0.13,0.11 0.11,-0 0.13,0.15 0.25,0.1 0.07,0.03 0.11,0.12 0.2,0.11 0.11,0.09 0.2,0.28 0.38,0.23 0.13,0.04 0.11,0.19 0.23,0.25 0.12,-0.02 0.09,0.19 0.24,0.16 0.08,-0.03 0.13,-0.07 0.23,-0.06 0.11,0 0.2,-0.01 0.27,0.06 0.13,-0.01 0.27,-0.01 0.4,-0.01 0.15,0.03 0.22,0.18 0.24,0.3 0.13,0.05 0.12,0.21 0.21,0.29 0.1,0.07 0.18,0.17 0.28,0.25 0.11,0.01 0.17,0.16 0.31,0.11 0.11,-10e-4 0.3,0.03 0.31,-0.11 0.02,-0.14 0.21,-0.05 0.29,-0.12 0.08,-0.04 0.28,0.02 0.33,-0.05 0.1,0.07 0.26,0.05 0.34,-0.02 0.11,-0.01 0.15,0.1 0.27,0.06 0.13,-0.03 0.31,0.03 0.27,0.18 0.02,0.12 -0.07,0.17 -0.17,0.22 -0.15,-0.01 -0.05,0.2 -0.17,0.22 -0.06,0.08 -0.11,0.12 -0.21,0.14 -0.07,0.09 -0.19,0.2 -0.16,0.33 0.08,0.07 0.08,0.24 -0.06,0.25 -0.05,0 -0.09,0.1 -0.12,-4e-4 -0.06,0.09 -0.17,0.02 -0.24,0.11 -0.08,-0.02 -0.05,0.07 -0.15,0.05 -0.04,0.04 -0.01,0.11 -0.1,0.14 -0.04,0.08 -0.08,0.12 -0.1,0.21 -0.03,0.08 -0.2,-0.01 -0.19,0.09 -0.14,-0.04 -0.22,0.06 -0.24,0.16 -0.06,0.05 0.01,0.18 -0.08,0.22 0.02,0.12 -10e-4,0.26 -0.14,0.31 -0.08,0.01 -0.1,-0.09 -0.19,-0.04 -0.13,-8.6e-4 -0.21,-0.13 -0.35,-0.11 -0.09,-0.06 0.13,-0.15 -0.03,-0.15 -0.06,-0.02 -0.08,-0.07 -0.16,-0.05 -0.13,6.9e-4 -0.18,-0.16 -0.33,-0.1 -0.16,0.05 -0.25,-0.07 -0.35,-0.17 -0.03,-0.07 -0.16,0.01 -0.2,-0.09 -0.12,0.03 -0.17,-0.08 -0.3,-0.05 -0.1,0 -0.15,0.07 -0.26,0.05 -0.11,0.01 -0.1,0.14 -0.22,0.1 -0.08,0.05 -0.22,0.07 -0.22,0.2 -0.08,-0.01 -0.01,0.12 -0.1,0.11 0.05,0.11 -0.13,0.17 -0.01,0.26 0.04,0.07 -0.08,0.1 -0.05,0.18 -0.08,0.11 -0.19,0.19 -0.22,0.32 0.01,0.09 -0.03,0.21 0.06,0.25 -0.02,0.14 0.17,0.1 0.22,0.16 -0.05,0.1 0.14,0.22 -0.02,0.3 -0.1,0.03 -0.19,0.01 -0.27,0.07 -0.1,-0 -0.17,0.09 -0.29,0.05 -0.1,0.02 -0.17,0.09 -0.29,0.04 -0.11,-0.04 -0.01,-0.18 -0.11,-0.2 -0.01,-0.16 -4.5e-4,-0.32 -0,-0.48 -0.16,-0.03 -0.09,-0.2 -0.11,-0.31 -0.06,-0.11 -0.13,-0.21 -0.1,-0.34 0,-0.13 0,-0.27 4.4e-4,-0.4 0.11,-0.02 0.05,-0.21 0.03,-0.25 -0.1,-0.05 -0.08,-0.17 -0.19,-0.23 0,-0.09 -0.12,-0.13 -0.13,-0.22 -0.04,-0.05 -0.03,-0.12 -0.09,-0.14 -0.12,-0.08 -0.12,-0.2 -0.1,-0.32 0.03,-0.15 -0.05,-0.29 -0.17,-0.38 -0.08,-0.09 -0.22,-0.11 -0.31,-0.17 -0.1,0.01 -0.14,-0.06 -0.23,-0.06 -0.07,-0.06 -0.12,-0.11 -0.22,-0.1 -0.05,-0.03 -0.01,-0.14 -0.11,-0.09 -0.06,0.07 -0.13,0.03 -0.16,0.09 -0.1,0.01 -0.19,0.1 -0.19,0.18 -0.09,0.01 -0.12,0.06 -0.12,0.12 -0.07,0.08 -0.18,0.03 -0.24,0.11 -0.09,10e-4 -0.15,0.14 -0.27,0.09 -0.03,0.14 -0.23,0.06 -0.3,0.2 -0.08,0.1 -0.2,0.11 -0.28,0.2 -0.14,-0.01 -0.17,0.19 -0.04,0.25 0.05,0.07 0.02,0.13 0.08,0.2 0.02,0.12 -0.04,0.26 0.06,0.36 -0.03,0.11 -0.01,0.22 0.05,0.3 -0.02,0.11 0.05,0.27 -0.06,0.32 -0.02,0.06 0.11,0.1 0.01,0.12 -0.01,0.14 -0.18,0.18 -0.24,0.29 -0.07,0.03 -0.01,0.16 -0.09,0.19 0.01,0.15 -0.24,0.05 -0.22,0.19 -0.02,0.1 -0.21,0.03 -0.15,0.16 0.03,0.1 -0.08,0.14 -0.06,0.24 -0.1,0.06 -0.01,0.2 -0.1,0.26 -0.02,0.13 -0.17,0.14 -0.25,0.21 -0.04,0.08 0.01,0.17 -0.12,0.16 -0.02,0.1 -0.15,0.09 -0.22,0.11 -0.01,0.03 0.01,0.06 0,0.09 z m -2.2,-10e-4 c 0.04,0.12 -0.09,0.08 -0.05,0.2 -0.03,0.11 0.04,0.14 0.05,0.21 -0.01,0.08 0.03,0.2 -0.05,0.21 0.04,0.12 -0.06,0.12 -0.05,0.21 -0.05,0.03 -0.06,0.11 -0.05,0.2 0,0.09 -0.04,0.13 -0.13,0.13 -0.01,-0.06 -0.15,-0.02 -0.14,-0.1 -0.09,10e-4 -0.07,-0.09 -0.15,-0.1 0.02,-0.1 -0.08,-0.08 -0.06,-0.18 0.04,-0.04 0.12,-0.05 0.11,-0.14 0.02,-0.07 -0.04,-0.21 0.03,-0.23 4.4e-4,-0.08 0.17,-0.01 0.13,-0.12 0.02,-0.06 0.11,-0.05 0.11,-0.14 0.03,-0.06 0.08,-0.09 0.05,-0.19 -0.03,-0.11 0.14,-0.04 0.21,-0.06 0,0.03 0,0.07 0,0.1 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_11.js b/lib/mapael-maps/france/france_region_11.js new file mode 100644 index 000000000..506083563 --- /dev/null +++ b/lib/mapael-maps/france/france_region_11.js @@ -0,0 +1,44 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Ile-de-France for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_11 : { + width : 96.002411, + height : 73.382225, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -65.7919; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3248.39348; + var y = (lat * yfactor) + yoffset; + + return {x : x, y : y}; + }, + elems : { + "department-95" : "m 11.93,0 c -1.36,0.63 -1.85,2.23 -1.96,3.63 -0.19,1.09 -0.45,2.2 -0.78,3.23 -0.43,1.02 -1.75,1.9 -1.36,3.12 0.78,0.37 1.82,-0.17 2.6,0.38 0.91,0.22 0.51,1.54 1.48,1.63 0.71,0.18 1.87,0.37 1.95,-0.64 0.61,-0.1 1.86,0.5 1.88,-0.53 0.55,-0.92 1.84,-0.32 2.41,0.26 0.44,0.23 1.08,0.57 0.59,1.14 -0.41,0.57 -0.26,1.87 0.58,1.85 0.41,-0.41 0.43,-1.14 1.03,-1.46 0.26,-0.35 0.73,-0.64 0.81,-0.03 0.44,1.05 1.6,1.29 2.62,1.29 0.94,-0.09 1.41,0.7 1.98,1.25 1,0.25 2.14,-0.06 3.05,-0.53 0.39,-0.5 0.96,0.42 1.39,-0.12 0.27,-0.44 0.72,-0.14 0.65,0.28 -0.09,0.79 -0.12,1.6 0.96,1.54 0.93,0.15 1.53,1.01 1.49,1.92 0.26,0.64 1.56,0.11 1.16,1.03 -0.3,1.11 -0.22,2.62 0.93,1.11 0.8,-0.91 2.07,-1.21 2.87,-2.07 -0.08,-0.66 0.67,-0.73 1.11,-0.45 0.56,0.4 1.12,0.13 1.59,-0.23 0.48,-0.16 0.83,-0.76 1.42,-0.38 0.73,0.38 1.34,1.11 2.27,0.94 0.79,0.24 1.63,0.03 2.15,-0.59 1.11,-0.61 1.96,-1.5 2.75,-2.46 0.61,-0.02 0.41,-0.57 0.05,-0.83 -0.18,-0.68 1.01,-0.39 1.2,-0.97 0.12,-0.56 1.08,-0.97 0.75,-1.56 -0.67,-0.42 0.54,-1.18 0.11,-1.79 -0.17,-0.75 -1.21,-0.81 -1.18,-1.67 0.01,-0.6 -0.95,-0.94 -0.97,-0.18 0.21,0.85 -0.78,0.7 -1.27,0.5 -0.38,-0.02 -1.01,-0.34 -0.47,-0.72 0.37,-0.67 -0.82,-0.89 -1.22,-1.24 -0.42,-0.38 -1.13,-0.08 -1.52,-0.31 -0.23,-1.29 -1.92,-0.52 -2.67,-1.25 -0.6,-0.33 -0.94,1.14 -1.31,0.12 -0.58,-0.64 -1.05,-2.13 -2.14,-1.81 -0.67,0.41 -0.38,1.63 -1.36,1.64 -0.77,0.1 -1.81,0.71 -2.49,0.19 -0.04,-0.44 0.89,-0.75 0.29,-1.22 -0.77,-0.53 -1.76,0.14 -2.52,0.37 -0.8,0.04 -0.35,-1.41 -1.39,-1.1 -0.57,-0.59 -1.79,0 -2.19,-0.74 0.14,-0.76 -0.76,-0.87 -1.23,-0.49 -1.07,0.51 -2.1,1.12 -3.06,1.78 -0.57,-0.21 -1.22,-0.36 -1.72,0.08 -1.16,0.25 -2.37,0.44 -3.49,0.72 -0.25,-0.44 -0.72,-0.81 -1.24,-0.47 -0.37,0.03 -1.01,0.63 -1.07,-0.01 -0.34,-0.41 -0.97,-0.37 -1.41,-0.67 -0.75,-0.27 -1.47,0.07 -2.14,0.32 -0.87,0 -0.85,-1.19 -1.56,-1.49 -0.42,-0.25 -0.43,-0.77 0.12,-0.81 0.79,-0.43 0.2,-1.51 -0.54,-1.52 z", + "department-78" : "m 6.36,10.08 c -0.71,0.14 -1.24,0.78 -2.04,0.68 -1.05,-0.1 -1.92,0.42 -2.64,1.13 -0.6,0.42 -1.34,-1.04 -1.67,0.05 -0.14,1.2 0.87,2.03 1.29,3.02 0.19,0.64 -1.17,1.4 -0.29,1.79 0.57,0.15 1.69,-0.61 1.9,0.21 -0.47,0.28 -1.23,1.16 -0.36,1.45 0.14,0.44 -0.23,1.15 0.21,1.49 0.06,0.68 1.23,0.34 1.4,1.07 0.11,0.44 -0.08,0.95 0.42,1.26 0.9,0.44 0.17,0.98 -0.05,1.6 0.11,0.5 0.91,0.2 1.12,0.71 0.37,0.5 0.31,1.24 0.89,1.62 -0.53,0.87 -0.43,2.05 -0.79,3.02 -0.01,0.64 0.49,1.13 0.56,1.74 0.52,0.4 1.6,0.64 1.56,1.45 -0.41,0.91 -1.33,1.58 -1.53,2.56 -0.67,0.47 0.28,0.92 0.73,0.98 0.5,0.53 -0.49,1.47 0.19,2.02 0.31,0.57 1.09,0.32 1.48,0.67 0.4,0.65 0.37,1.74 1.09,2.13 0.5,-0.1 0.92,-0.07 1.35,0.2 0.45,-0.06 1.13,0.11 0.85,0.71 -0.36,0.63 -0.71,1.59 0.25,1.88 0.6,0.27 1.74,-0.33 1.97,0.51 0.15,0.66 1.39,0.87 0.91,1.7 -0.53,1.67 0.3,3.45 0.98,4.9 0.63,-0.05 1.44,-0.09 1.63,0.68 0.72,1.23 2.96,1.47 3.67,0.16 -0.15,-0.4 -0.55,-0.83 -0.14,-1.27 0.94,-0.79 0.77,-2.15 1.53,-3.08 0.22,-0.32 0.8,-0.71 0.21,-1.04 -0.53,-0.26 -1.45,-0.99 -0.83,-1.59 1.14,-0.21 2.41,0.55 3.5,0.12 0.16,-0.97 0.9,-1.83 0.85,-2.85 0.18,-0.44 1.46,-0.47 0.88,-1.15 -0.69,-0.41 -0.82,-1.37 -1.63,-1.63 -0.35,-0.38 -0.29,-1.16 0.31,-1.18 0.49,-0.62 0.67,-1.65 1.64,-1.72 1.34,0.01 2.59,-1.59 1.99,-2.88 -0.37,-0.63 0.74,-0.68 1.14,-0.64 0.58,0.23 0.45,-0.61 0.97,-0.67 0.52,-0.33 1.13,-0.46 1.71,-0.41 0.46,-0.36 -0.3,-1.42 0.66,-1.06 0.37,0.09 1.47,0.03 1.01,-0.57 -0.4,-0.2 -0.77,-0.44 -0.89,-0.87 -0.34,-0.22 -0.93,-0.01 -0.98,-0.58 -0.08,-0.54 -0.55,-0.61 -0.97,-0.58 -0.72,-0.53 -0.87,-1.69 -0.43,-2.45 -0.09,-1.41 0.29,-3.11 1.73,-3.71 0.83,-0.57 0.16,-1.83 0.75,-2.54 -0.18,-0.68 -1.66,-0.13 -1.37,-1.05 -0,-0.84 -0.56,-1.7 -1.48,-1.66 -0.86,-0.06 -1.18,-0.9 -0.92,-1.63 -0.3,-0.45 -0.84,0.24 -1.27,-0.09 -0.68,-0.02 -1.11,0.7 -1.85,0.57 -0.73,0.1 -1.68,0.58 -2.14,-0.31 -0.78,-0.98 -2.12,-0.92 -3.23,-1.05 -0.65,-0.31 -0.94,-1.33 -1.61,-1.38 -0.55,0.43 -0.78,1.1 -1.04,1.66 -0.35,0.2 -1.08,0.49 -0.93,-0.22 -0.03,-0.49 -0.61,-0.74 -0.23,-1.26 0.35,-0.47 0.46,-1.27 -0.28,-1.38 -0.56,-0.16 -0.69,-0.95 -1.4,-0.85 -0.73,-0.09 -0.86,0.8 -1.23,1.16 -0.65,-0.03 -1.6,-0.3 -1.83,0.54 -0.82,0.33 -2.06,0.12 -2.61,-0.62 0.11,-1.11 -1.46,-1.45 -2.32,-1.31 -0.56,-0.09 -1.31,0.93 -1.64,0.11 -0.18,-0.19 -0.45,-0.3 -0.71,-0.28 z", + "department-75" : "m 41.03,21.96 c -1.27,-0.06 -2.46,0.68 -3.27,1.54 -0.47,-0.15 -0.85,0.06 -1.23,0.25 -0.65,0.03 -1.66,1.18 -0.69,1.52 0.81,0.18 0.93,1.2 1.8,1.35 1.65,0.28 3.42,1.43 5.04,0.39 1.03,-0.89 2.21,0.62 3.32,0.28 0.54,-0.43 0.45,-1.69 -0.46,-1.47 -0.48,-0.01 -1,0.18 -1.33,0.45 -0.34,-1.13 -0.06,-2.5 -0.93,-3.4 -0.12,-1.14 -1.17,-0.96 -2.05,-0.92 l -0.18,0 -0.03,3e-4 z", + "department-93" : "m 50.56,14.82 c -0.46,0.33 -1.14,0.34 -1.42,0.97 -0.75,1.19 -2.15,1.71 -3.14,2.62 -0.82,-0.03 -1.72,-0.07 -2.53,-0.25 -0.64,-0.37 -1.3,-1.34 -2.07,-0.64 -0.6,0.3 -1.08,1.1 -1.81,0.59 -0.35,-0.19 -1.46,-0.42 -1.19,0.3 0.56,0.53 2.05,0.32 2.05,1.33 -0.06,0.69 -1.13,1.35 -0.68,2.02 1.05,0.43 2.37,-0.21 3.34,0.37 0.27,0.54 0.5,1.08 0.89,1.55 0.18,0.57 -0.13,1.72 0.86,1.53 1.07,-0.15 2.16,-1.04 3.23,-0.34 1.04,0.72 2.32,1.35 3.05,2.37 -0.11,0.74 1.41,0.94 1.04,0.05 -0.24,-0.71 -0.92,-1.55 -0.78,-2.26 0.67,-0.23 -0.04,-0.79 -0.4,-0.87 0.27,-0.43 -0.26,-0.81 -0.29,-1.14 0.41,-0.57 1.31,-0.71 1.23,-1.58 -0.09,-0.8 0.8,-1.4 0.35,-2.19 -0.23,-0.84 -1.06,-1.46 -1.25,-2.26 0.77,-0.61 0.45,-1.99 -0.49,-2.17 z", + "department-94" : "m 46.91,24.73 c -0.49,0.07 -1.3,0.32 -1.34,0.88 0.31,0.21 0.98,0.04 0.93,0.64 0.02,0.59 -0.23,1.64 -1.05,1.16 -1.03,-0.16 -2.09,-1.01 -3.03,-0.14 -0.7,0.5 -1.59,0.2 -2.33,0.5 -0.4,1.12 0.01,2.46 -0.66,3.53 -0.23,0.79 0.87,0.44 1.11,1 0.42,0.39 0.99,0.13 1.33,-0.1 0.46,0.44 -0.1,1.74 0.84,1.68 0.59,-0.25 1.17,-0.38 1.79,-0.16 1.34,-0.05 2.64,-0.54 3.94,-0.71 0.51,0.63 0.39,1.61 1.15,2.11 0.31,0.19 0.6,0.29 0.75,0.66 0.59,0.31 1.27,-0.47 0.77,-1 -0.01,-0.93 1.56,-1.44 0.88,-2.44 0.5,-0.32 0.24,-1.11 0.85,-1.28 0.43,-0.58 -0.47,-0.6 -0.83,-0.71 -0.34,-0.52 0.66,-1.18 0.14,-1.69 0.12,-0.8 -1.11,-0.7 -1.2,-1.46 -1.03,-1.05 -2.26,-2.13 -3.71,-2.49 -0.1,-0.01 -0.2,-0.01 -0.31,0 z", + "department-92" : "m 38.29,18.77 c -2,0.52 -3.26,2.41 -5.07,3.32 -1.07,0.77 -1.1,2.2 -0.99,3.39 -0.4,0.4 -0.48,0.98 -0.25,1.53 0.01,0.71 0.73,0.52 1.15,0.65 0.16,0.65 0.67,1.01 1.28,1.14 0.25,0.33 0.49,0.67 0.86,0.85 0.32,0.72 0.72,1.57 1.66,1.53 0.78,-0.01 1.11,0.83 1.08,1.46 0.36,0.27 0.92,-0.2 1.18,0.31 0.73,-0.09 0.08,-1 0.1,-1.43 0.14,-0.72 0.7,-1.47 0.38,-2.22 -0.12,-0.62 0.28,-1.24 0.24,-1.78 -0.96,-0.79 -2.46,-0.33 -3.22,-1.42 -0.37,-0.47 -1.1,-0.68 -1.44,-1.08 0.22,-1.13 1.41,-1.83 2.5,-1.7 0.39,-0.7 1.58,-0.82 1.76,-1.68 -0.35,-0.89 1.37,-1.42 0.54,-2.3 -0.48,-0.39 -1.16,-0.56 -1.77,-0.58 z", + "department-91" : "m 34.3,30.57 c -0.69,0.1 -0.16,1.43 -1.02,1.13 -0.84,-0.09 -1.71,0.31 -2.03,1.08 -0.41,-0.13 -1.74,-0.1 -1.26,0.59 0.47,0.79 -0.25,1.87 -0.79,2.49 -0.73,0.67 -2.1,0.04 -2.5,1.19 -0.2,0.46 -0.39,1.02 -0.92,1.14 -0.32,0.66 0.65,0.74 0.92,1.11 -0.05,0.76 1.05,1.03 0.98,1.72 -0.03,0.71 -1.1,0.32 -1.01,1.08 0.03,0.88 -0.63,1.66 -0.8,2.51 -0.97,0.37 -2.02,0.21 -2.99,-0.02 -0.62,-0.12 -0.96,0.63 -0.37,0.94 0.36,0.45 1.07,0.52 1.46,0.78 0.27,0.76 -0.76,0.3 -0.95,0.83 -0.65,0.79 -0.86,1.82 -1.18,2.74 -0.64,0.3 -0.72,1.13 -0.08,1.51 0.31,0.3 0.21,0.81 0.53,1.07 0.11,0.67 -0.05,1.36 -0.46,1.85 0.21,0.73 1.31,0.22 1.83,0.58 0.7,0.17 -0.05,1.08 0.33,1.53 0.16,0.52 0.71,1.11 0.11,1.55 -0.57,0.81 0.16,1.57 -0.05,2.42 0.21,0.68 -1.13,0.6 -0.6,1.28 0.89,1.29 2.64,1.01 3.9,0.55 0.62,-0.55 1.75,0 2.26,-0.82 0.45,-0.44 0.7,0.07 1.02,0.28 0.52,0.16 1.64,0.25 1.45,-0.6 -0.14,-0.77 1.36,0.02 1.34,-0.84 0.28,-0.42 0.61,-1.29 1.14,-1.32 0.47,0.49 1.15,0.68 1.72,0.96 0.04,0.48 -0.01,1.47 0.56,1.44 0.24,-0.6 0.76,-0.77 1.29,-0.42 1.01,0.41 0.89,-1.65 1.93,-1.27 0.57,0.51 0.93,1.46 1.87,1.37 0.62,0.05 1.47,-0.25 1.2,-1.03 -0.31,-1.09 1.83,-0.3 1.6,-1.41 0.41,-0.42 -0.19,-1.21 0.55,-1.43 0.51,-0.51 1.62,-0.43 1.54,-1.36 0.34,-0.84 1.37,-0.08 1.82,-0.74 0.38,-0.28 1.5,0.02 0.81,-0.72 -0.26,-0.62 -0.99,-0.83 -1.35,-1.3 -0.11,-1.38 -0.22,-2.9 0.31,-4.2 0.18,-0.63 -0.38,-1.05 -0.5,-1.57 0.17,-0.57 0.21,-1.21 0.15,-1.78 0.5,-0.74 0.85,-1.57 0.83,-2.47 0.35,-0.51 1.41,-1.09 0.78,-1.79 -0.51,-0.19 -1.06,-0.89 -0.83,-1.4 0.6,-0.06 1.43,-0.62 1.06,-1.29 -0.75,-0.35 -0.08,-1.22 0.39,-1.49 0.62,0.23 1.65,-0.16 1.33,-0.94 -0.43,-0.52 -1.48,0.42 -1.61,-0.42 -0.38,-0.35 -0.91,-0.48 -1.06,-1.06 -0.36,-0.43 -0.26,-1.06 -0.62,-1.45 -0.79,0.27 -2.06,0.26 -2.61,1.03 -0.24,0.35 -0.47,-0.56 -0.85,-0.37 -0.43,0.24 -0.83,0.32 -1.23,0.03 -0.55,-0.04 -1.65,0.61 -1.71,-0.34 0.11,-0.48 -0.11,-1.26 -0.66,-0.8 -0.57,0.21 -0.86,-0.56 -1.34,-0.42 -0.28,0.27 -0.53,1.41 -1.06,0.93 -0.27,-0.41 -1.36,0.03 -1.22,-0.63 0.54,-0.61 -0.34,-1.32 -0.97,-1.24 -0.8,-0.21 -1.53,-0.76 -2.39,-0.74 z", + "department-77" : "m 74.17,7.94 c -0.67,0.27 -0.71,1.17 -0.32,1.68 -1.02,0.27 -2.2,-0.24 -3.18,0.06 0.12,0.6 -0.83,1.46 -1.07,0.59 0.15,-0.71 -0.65,-0.75 -1.06,-0.4 -0.61,0.64 -1.47,0.19 -2.2,0.16 -0.23,0.44 -0.85,0.32 -1.25,0.64 -0.46,0.35 -0.98,0.14 -1.14,-0.39 -0.51,-0.51 -1.32,-0.52 -1.88,-0.98 -1.1,-0.17 -1.02,1.48 -1.92,1.8 -0.63,0.51 -1.76,0.41 -1.93,-0.53 -0.46,-0.21 -1,1.16 -1.55,0.41 -0.13,-0.95 -1.04,-1.65 -1.89,-2.06 -0.56,-0.33 -1.1,-0.1 -1.49,0.31 -0.77,0.49 -1.63,1.3 -1.76,2.25 0.07,0.32 1.09,0.74 0.38,0.85 -0.82,0.33 -1.01,1.4 -1.92,1.63 -0.63,0.49 0.41,0.61 0.76,0.54 0.6,0.55 1.29,1.74 0.51,2.4 0.05,0.94 1.01,1.58 1.24,2.51 0.24,0.38 0.27,0.73 -0.1,0.98 -0.36,0.8 -0.24,1.85 -1.15,2.32 -0.49,0.38 0.16,0.78 -0.08,1.25 0.11,0.4 1.11,0.14 0.7,0.77 -0.81,0.83 0.44,1.84 0.41,2.77 0.19,0.83 0.24,1.74 -0.17,2.49 0.12,0.57 1.01,0.19 1.03,0.9 0.2,0.53 -0.64,0.4 -0.66,0.92 -0.41,0.58 0.12,1.37 -0.57,1.81 -0.52,0.46 -1.04,1.17 -0.46,1.79 0.24,0.58 0.71,1.49 -0.2,1.71 -0.57,0.06 -1.58,0.01 -1.48,0.89 0.05,0.39 0.67,0.59 0.29,1.01 -0.09,0.51 -0.44,0.82 -0.92,0.88 -0.35,0.58 0.29,0.96 0.68,1.23 0.52,0.88 -0.77,1.4 -0.88,2.17 0.04,0.26 0.62,0.37 0.2,0.6 -0.62,0.64 -0.84,1.49 -0.88,2.31 -0.44,0.7 0.16,1.29 0.28,1.94 -0.08,1.6 -0.73,3.32 -0.18,4.88 0.68,0.42 1.31,1.24 1.59,1.91 -0.65,0 -1.27,0.13 -1.77,0.53 -0.45,0.04 -1.31,-0.13 -1.09,0.63 -0.23,0.61 -1.29,0.52 -1.55,1.18 -0.49,-0.01 -0.68,0.37 -0.34,0.71 -0.29,0.38 -0.2,0.98 -0.33,1.32 -0.48,0.06 -1.83,-0.09 -1.49,0.75 0.58,0.98 1.31,1.98 0.94,3.18 -0.16,1.24 1.34,1.79 2.33,1.48 0.4,0.28 0.47,1.06 1.15,0.93 0.99,0.57 1.11,2.03 1.05,3.06 -0.76,0.56 0.1,1.97 -0.63,2.48 -0.51,-0.24 -1.33,-0.53 -1.48,0.29 -0.26,0.57 -1.54,1.71 -0.16,1.54 1.01,0.03 2.24,0.23 2.92,-0.7 0.61,-0.22 1.55,-0.35 1.95,0.25 0.96,0.45 1.97,-0.27 2.91,-0.16 0.55,0.61 1.28,1.17 2.17,0.86 1.04,-0.18 1.77,-1.03 2.73,-1.4 0.46,-0.45 -0.52,-0.82 -0.47,-1.15 0.97,-0.14 2.05,-0.3 3.04,-0.19 0.73,0.38 -0.34,1.11 -0.17,1.68 -0.09,0.9 0.96,0.76 1.43,0.36 0.99,-0.6 1.73,-1.72 3.03,-1.61 0.66,-0.06 1.69,-0.14 1.67,-1.01 0.3,-0.69 0.93,-1.1 1.52,-1.44 0.2,-0.66 0.9,-0.79 1.46,-0.82 0.8,-0.86 0.99,-2.19 1.93,-2.93 0.4,-0.69 -0.29,-1.18 -0.77,-1.48 0.1,-0.98 -0.76,-2.06 0.12,-2.88 0.66,-0.75 0.16,-2.17 1.19,-2.61 0.79,-0.17 1.61,0.04 2.35,0.2 0.48,-0.25 0.54,-1.04 1.23,-0.93 0.86,0.15 1.74,-0.8 2.5,-0.11 0.56,0.55 1.24,0.18 1.87,0.09 0.59,0.12 1.39,0.41 1.72,-0.3 0.79,-0.86 1.78,0.13 2.71,-0.01 0.74,-7e-4 1.83,-0.15 1.91,-1.05 0.4,-0.83 1.24,-0.41 1.8,-0.02 0.64,0.05 0.72,-1.01 0.55,-1.46 -0.48,-0.21 -1.44,-0.69 -0.92,-1.33 0.34,-0.6 0.44,-1.4 -0.05,-1.91 0.11,-0.45 -0.55,-0.79 -0.46,-1.11 0.53,-0.63 1.67,-0.51 2.07,-1.14 -0.08,-0.82 -0.82,-1.37 -1.09,-2.09 0.2,-0.7 1.2,-0.18 1.68,-0.19 0.67,-0.04 1.41,-0.54 1.74,-1.06 -0.05,-0.56 -0.87,-1.1 -0.6,-1.62 0.46,-0.65 1.18,-1.05 1.78,-1.48 0.09,-0.39 -0.07,-0.93 0.52,-1 0.36,-0.26 1.73,-0.29 1.36,-1.01 -0.35,-0.54 -1.2,-0.31 -1.35,-1.01 -0.49,-0.65 -1.34,-0.36 -1.86,0.06 -0.39,0.09 -1.39,0.46 -1.13,-0.31 -0.16,-0.9 -0.98,-2.23 0.26,-2.75 0.55,-0.33 0.68,-1.09 0.27,-1.53 -0.22,-0.64 0.53,-1.85 -0.25,-2.02 -0.61,0.15 -1.24,-0.18 -1.19,-0.84 -0.32,-0.59 -1.59,0.4 -1.5,-0.52 0.18,-0.47 0.03,-1.43 0.6,-1.62 0.52,0.11 1.71,-0.1 1.14,-0.85 -0.25,-0.57 -1.45,-0.23 -1.37,-0.92 0.14,-0.95 1.14,-0.06 1.7,-0.31 1,-0.07 2.38,-0.86 1.83,-2.04 -0.27,-0.68 -0.85,-0.04 -1.02,0.33 -0.39,0.07 -1.22,-0.16 -0.75,-0.67 0.35,-0.68 -0.68,-0.41 -0.89,-0.82 -0.49,-0.28 -1.16,0.13 -1.52,-0.44 -0.79,-0.15 -0.57,-1.28 -1.13,-1.74 -0.08,-0.48 0.51,-1.47 -0.3,-1.52 -0.74,0.13 -1.53,1.24 -2,0.21 -0.63,-0.47 -0.08,-1.69 -0.88,-1.92 -0.54,0.16 -1.61,0.92 -1.8,-0.04 -0.31,-0.77 -0.34,-2 -1.32,-2.14 -0.24,-0.5 -0.61,-0.89 -1.09,-1.15 -0.32,-1.06 -2.04,-0.8 -2.13,-1.93 0.21,-0.41 0.78,-0.64 0.77,-1.19 0.45,-0.35 0.16,-0.79 0.01,-1.15 0.09,-0.82 -1.29,-1.18 -0.87,-2.1 -0.14,-0.93 -1.42,-1.01 -2.18,-1.09 -0.63,0.03 -1.2,-0.36 -1.82,-0.37 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_21.js b/lib/mapael-maps/france/france_region_21.js new file mode 100644 index 000000000..b45a628b1 --- /dev/null +++ b/lib/mapael-maps/france/france_region_21.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Champagne-Ardenne for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_21 : { + width : 114.48173, + height : 171.45135, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -154.4839; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3310.3254; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-10" : "m 41.16,96.59 c -0.66,0.15 -1.32,0.25 -1.96,0.01 -0.44,0.08 -0.59,0.74 -1.15,0.47 -1.35,-0.26 -3.18,-0.44 -3.91,1.02 -0.91,0.34 -1.86,-1.12 -2.73,-0.48 -0.57,0.46 -0.14,1.29 -0.81,1.69 -0.75,1.26 -2.77,-0.12 -3.35,1.37 -0.26,0.53 -0.05,1.45 -0.8,1.54 -0.57,0.43 -0.4,1.73 -1.35,1.44 -0.78,-0.24 -1.45,0.26 -1.54,1.06 -0.19,0.35 -0.31,1.1 -0.9,0.7 -0.33,-0.1 -1.44,-0.36 -1.11,0.32 0.2,1.19 0.51,3.02 -0.96,3.53 -0.84,0.69 -1.55,-0.62 -2.5,-0.57 -1.19,-0.07 -2.29,-0.79 -3.53,-0.45 -0.52,0.08 -0.91,-0.43 -1.44,-0.11 -0.78,0.13 -2.01,0.11 -2.01,-0.97 -0.19,-0.49 0.1,-1.8 -0.75,-1.7 -0.47,0.53 -0.83,-0.07 -1.02,-0.45 -0.53,-0.09 -0.63,-0.49 -0.66,-0.96 -0.22,-0.42 -0.84,-0.43 -0.9,-1 -0.63,-0.36 -1.46,0.22 -2.06,0.48 -0.41,0.33 0.3,1.13 -0.44,1.05 -0.6,0.35 -1.34,0.78 -1.61,1.42 0.17,0.48 0.86,1.29 0.53,1.78 -0.79,0.21 -1.37,1.27 -2.3,0.72 -0.36,-0.24 -1.22,-0.07 -0.78,0.46 0.44,0.58 1.03,1.4 0.87,2.14 -0.61,0.36 -1.67,0.28 -1.98,0.97 0.26,0.4 0.44,0.83 0.58,1.27 0.47,0.47 0.08,1.25 -0.2,1.7 0.18,0.79 1.61,0.96 1.01,1.93 -0.2,0.79 -0.41,2.1 0.47,2.53 0.56,-0.19 0.93,-0.91 1.65,-0.64 1.24,-0.09 2.14,0.77 2.83,1.67 0.53,0.43 0.69,1.09 1.02,1.62 0.44,0.09 0.72,0.35 0.85,0.79 0.38,0.5 1.14,0.85 0.79,1.59 0.2,0.79 1.43,0.64 1.65,1.5 0.57,0.82 -1.03,1.47 -0.54,2.18 0.52,0.08 0.72,0.68 0.25,1.02 -0.38,0.72 -1.54,1.22 -1.38,2.1 0.71,0.72 1.67,-1.01 2.32,-0.06 0.69,0.81 1.1,1.78 1.43,2.74 0.47,0.41 1.05,-0.11 1.17,-0.53 0.3,0.07 0.59,0.57 0.9,0.13 0.46,-0.41 0.01,-1.19 0.28,-1.54 0.8,-0.02 1.93,0.88 1.5,1.72 -0.57,0.32 -0.42,1.54 0.36,1.14 0.72,-0.49 1.12,0.68 1.58,1.04 0.61,0.5 0.42,1.19 0.54,1.84 0.53,0.9 1.1,1.79 1.14,2.87 0.47,0.88 1.87,1.3 1.91,2.43 -0.12,0.51 -1.36,0.03 -1.14,0.84 0.16,0.52 1.21,1.39 1.5,0.55 -0.08,-0.44 0.19,-1.29 0.73,-0.8 0.77,0.66 1.01,1.78 0.53,2.69 -0.01,0.56 -0.59,1.53 0.04,1.87 1.09,-0.36 2.29,-0.39 3.39,-0.21 0.5,-0.09 1.1,-1.09 1.4,-0.23 0.45,0.41 1.14,0.33 1.69,0.4 0.43,-0.31 0.23,-1.31 1.03,-1.02 0.52,-0.01 1.1,0.09 1.03,0.74 0.45,0.89 1.51,-0.03 1.96,-0.47 0.62,-0.36 1.03,-1.76 1.81,-1.01 0.52,0.15 0.24,1.2 0.94,0.86 0.58,-0.4 0.16,-1.11 -0.21,-1.47 0.29,-0.47 1.07,-0.27 1.53,-0.32 -0.19,1.05 0.17,2.14 1.16,2.64 0.85,0.73 2.39,0.26 2.22,-0.99 0.1,-0.56 0.53,-1.42 1.23,-0.97 1.36,0.17 2.74,-0.14 4.01,-0.49 0.81,0.33 1.68,0.86 2.55,0.32 1.23,-0.48 2.69,-0.17 3.9,-0.62 0.15,-0.83 -1.1,-1.43 -0.96,-2.24 1.22,-0.21 1.81,-1.85 3.22,-1.62 0.62,-0.25 0.79,0.5 1.39,0.42 0.93,-0.09 1.8,0.9 2.66,0.16 0.57,-0.25 0.82,-0.88 1.06,-1.4 -0.28,-0.6 -0.81,-1.07 -1.13,-1.66 -0.39,-0.43 -1.37,-0.26 -1.51,-0.86 0.7,-0.33 1.77,-0.18 2.1,-1.07 0.59,-0.65 1.23,-1.8 2.28,-1.28 1.11,0.1 2.19,0.96 3.3,0.66 0.55,-0.55 -0.25,-1.57 0.58,-2.01 0.47,-0.51 -0.38,-1 -0.1,-1.59 0.04,-1.07 1.05,-1.92 1.03,-2.95 -0.2,-0.49 -1.15,-0.63 -1.15,-1.13 0.44,-0.19 0.68,-0.64 0.39,-1.06 -0.19,-0.71 0.3,-1.29 0.51,-1.89 -0.21,-0.57 -0.67,-1.08 -0.47,-1.73 -0.19,-0.53 -1.04,-0.46 -0.96,-1.15 -0.21,-0.4 -0.64,-0.85 -0.07,-1.16 0.47,-0.24 0.78,-1.17 -0.03,-1.06 -0.67,-0.26 -1.22,-0.77 -1.98,-0.82 -0.63,-0.21 -1.36,-0.61 -0.97,-1.39 0.16,-1.15 -1.43,-1.02 -2.17,-0.91 -0.75,-0.13 -0.05,-1.44 -0.96,-1.53 -0.67,-0.08 -0.1,-0.87 -0.51,-1.25 -0.38,-1.1 -2.12,-1.05 -2.21,-2.25 0.18,-0.3 0.89,0.04 0.97,-0.53 0.21,-0.96 0.2,-2.02 0.96,-2.74 0.3,-1.07 -1.38,-1.23 -1.7,-2 -0.44,-0.6 -1.51,-0.29 -2.14,-0.12 -0.74,0.18 -1.46,0.54 -1.81,1.24 -0.67,0.65 -1.07,-0.48 -1.49,-0.81 -0.48,-0.25 -0.79,0.5 -1.31,0.15 -1.95,-0.48 -3.94,-1.11 -5.26,-2.7 -0.71,-0.9 -2.04,-1.18 -2.53,-2.24 0.21,-0.58 0.69,-1.2 0.27,-1.84 -0.33,-0.88 0.6,-1.79 0.08,-2.62 0.07,-0.84 -0.25,-1.98 -1.32,-1.84 -0.1,0 -0.2,-0.01 -0.29,0.01 z", + "department-51" : "m 30.47,50.75 c -1.32,0.33 -0.27,2.15 -1.09,2.86 -0.45,0.19 -1.02,0.15 -1.13,-0.39 -0.54,-0.78 -1.53,-0.67 -2.28,-0.96 -0.61,-0.35 -0.98,-1.63 -1.81,-1.28 -0.98,0.74 -2.9,1.12 -2.85,2.67 0.24,0.44 -0.07,1.31 -0.66,0.82 -1.04,-0.84 -2.54,-0.72 -3.62,-0.07 -0.63,-0.11 -0.84,0.51 -1.21,0.81 -1.34,0.35 -2.9,0.57 -3.99,1.49 -0.55,0.66 0.23,1.21 0.49,1.74 -0.14,0.41 0.04,0.78 0.17,1.12 -0.24,0.82 0.2,1.59 0.68,2.18 -0.07,0.63 -0.69,0.89 -0.98,1.33 0.27,0.77 1.38,0.64 2.02,0.84 0.51,0.4 -0.28,1.13 0.41,1.49 0.49,0.56 1.22,0.06 1.76,0.21 0.39,0.65 0.16,1.63 -0.71,1.75 -0.65,0.32 -1.3,0.95 -1.77,0.15 -0.75,-0.43 -1.66,0.2 -2.49,0 -0.46,-0.09 -0.93,0.18 -0.89,0.66 -0.46,0.16 -0.22,0.81 -0.62,1.06 0.14,0.55 0.76,0.95 0.93,1.56 0.12,0.49 0.9,1.35 0.34,1.78 -1.11,0 -2.46,1.08 -1.93,2.26 0.95,0.74 2.33,-0.74 3.27,0.18 0.48,0.53 1.07,1.61 0.15,2.03 -0.57,0.2 -1.3,0.22 -1.52,0.94 -0.41,0.46 -0.16,1.35 -0.64,1.68 -0.55,-0.05 -1.23,0.26 -0.93,0.92 0.35,0.78 -0.99,0.51 -1,1.24 -0.07,0.64 -0.25,1.5 -1.11,1.37 -1.48,-0.15 -1.97,1.51 -2.22,2.63 -0.26,0.38 -1.03,0.41 -0.8,1.06 0.09,0.93 0.49,2.29 -0.3,2.96 -0.22,-0.16 -0.55,-0.48 -0.9,-0.22 -0.68,0.46 -1.57,-0.11 -2.2,0.25 -0.02,0.84 1.57,0.17 1.33,1.16 0.23,0.63 -0.31,1.04 -0.89,0.85 -0.87,-0.02 -0.8,1.21 -0.88,1.77 0.58,0.04 1.71,-0.41 1.69,0.62 0.2,0.7 1.47,0.04 1.33,0.96 -0.12,0.74 -0.03,1.48 0.32,2.12 0.06,1.05 -1.73,1.21 -1.31,2.37 0.26,0.38 0.63,0.72 0.44,1.24 0.07,0.89 1.02,0.21 1.39,-0.07 0.62,-0.17 1.51,-0.15 2.05,0.06 -0.55,0.45 0.08,0.84 0.5,0.99 0.58,0.37 0.88,0.99 1.19,1.53 0.67,-0.07 0.47,0.7 0.84,1.04 0.37,0.64 1.06,0.86 1.74,0.79 0.74,0.69 -0.19,2.35 1.11,2.64 1.79,0.27 3.67,-0.19 5.39,0.48 0.98,-0.03 1.85,0.39 2.61,0.97 0.88,-0.16 1.79,-0.91 1.59,-1.91 0.08,-0.7 -0.1,-1.43 -0.24,-2.06 0.67,-0.45 2.12,0.37 2.2,-0.87 0.07,-0.82 0.81,-1.32 1.59,-1.06 1.01,-0.08 1.01,-1.46 1.74,-1.97 0.32,-0.66 0.51,-1.82 1.43,-1.83 0.96,0.24 2.15,0.18 2.63,-0.83 0.13,-0.49 0.04,-1.03 0.55,-1.39 0.67,-0.8 1.77,0.71 2.65,0.55 0.71,-0.9 1.49,-1.64 2.72,-1.22 0.72,-0.02 1.99,0.43 2.21,-0.57 0.57,0.22 1.2,0.66 1.86,0.28 1.05,-0.51 2.33,0.5 2.1,1.63 0.07,0.5 0.45,0.9 0.08,1.36 -0.31,0.83 -0.02,1.71 0.06,2.51 -0.54,0.41 -0.59,1.26 0.09,1.56 1.8,0.89 2.76,3.04 4.87,3.43 1.11,0.35 2.3,0.93 3.45,0.48 0.76,-0.1 0.39,1.3 1.23,0.98 0.7,-0.49 1.23,-1.35 2.19,-1.31 0.63,-0.4 1.67,-0.32 2.31,-0.18 -0.05,1.15 1.54,1.23 2.34,1 1.47,-0.38 2.93,0.07 4.36,0.32 0.69,-0.34 -0.28,-1.15 -0.05,-1.72 -0.38,-0.67 -0.98,-1.48 -0.75,-2.28 1.01,-0.2 1.97,-0.53 2.78,-1.18 0.6,-0.12 1.12,-0.53 0.94,-1.22 0.09,-1.34 -1.51,-1.53 -2.5,-1.46 -0.31,-0.07 -1.42,0.15 -0.97,-0.49 0.17,-0.56 0.59,-0.75 1.04,-1 0.39,-0.54 1.08,-0.41 1.51,-0.05 0.68,-0.09 1.17,0.77 1.86,0.24 0.7,-0.22 1.27,-0.81 1.89,-1.09 0.57,0.33 1.29,0.73 1.85,0.15 0.78,-0.23 2.43,-0.01 2.28,-1.29 -0.15,-0.38 0.71,-0.48 0.21,-0.93 -0.15,-0.47 0.37,-1.46 -0.5,-1.4 -1.21,-0.74 -2.09,-1.91 -2.85,-3.07 -0.64,-0.37 -1.94,-0.24 -1.94,-1.26 -0.27,-1.34 1.3,-1.71 1.95,-2.53 -0.1,-0.51 -0.58,-1 -0.79,-1.53 -0.45,-0.53 0.53,-1.07 0.15,-1.69 -0.44,-0.39 -0.09,-0.96 0.36,-1.11 0.28,-0.74 0.8,-1.48 1.71,-1.39 1.43,-0.07 3.38,-1.18 3.06,-2.83 -0.29,-0.54 -1.34,-0.31 -1.54,-0.75 0.29,-0.56 0.93,-0.6 1.41,-0.82 0.18,-0.5 0.23,-1.11 0.19,-1.62 -0.41,-0.81 -1.44,-0.85 -2.1,-0.3 -0.21,0.06 -0.8,0.45 -0.9,0.28 0.55,-1.1 2.08,-1.97 1.52,-3.39 -0.15,-1.35 -0.34,-2.74 -1.14,-3.88 -0.43,-1.21 -1.04,-2.35 -1.53,-3.52 0.13,-0.99 2,-0.68 1.97,-1.75 -0.29,-0.44 -0.63,-0.85 -0.71,-1.39 -0.37,-0.32 -1.01,-0.15 -1.29,-0.66 -0.32,-0.3 -0.97,-0.33 -0.7,-0.9 -0.29,-0.79 -1.41,-0.22 -1.91,0.09 -0.64,0.37 -0.92,1.19 -0.77,1.83 -1.02,0.04 -1.86,-0.56 -2.56,-1.21 -1.04,0.14 -2.15,0.45 -3.21,0.05 -0.64,-0.51 -1.49,-0.16 -2.17,-0.6 -0.79,0.12 -1.15,1.14 -2.01,1.25 -0.73,0.38 -1.56,-0.11 -1.66,-0.91 -0.12,-0.65 -0.48,-1.23 -0.93,-1.66 -0.09,-0.56 -0.14,-1.42 -0.94,-1.3 -1.13,0.02 -1.98,1 -3.16,0.89 -1.25,0.05 -2.56,0.74 -3.71,-0.09 -1.17,-0.38 -1.72,-1.49 -2.31,-2.45 -0.47,-0.28 -1,0.53 -1.4,-0.1 -0.61,-0.57 -1.75,-0.05 -2.02,-1.04 -0.46,-1.09 -1.7,-1.41 -2.19,-2.46 -0.56,-0.68 -1.49,-0.83 -2.29,-0.75 -0.31,-0.73 -1,-1.14 -1.8,-1.09 -1.59,-0.15 -3.2,0.18 -4.77,-0.16 l -0.06,0.01 z", + "department-08" : "M 65.48,0.09 C 64.75,1.22 63.6,1.89 62.62,2.74 c -0.35,0.92 -1.12,1.53 -1.99,1.91 -1.08,0.61 -1.34,1.89 -1.06,3.03 0.04,1.32 -0.21,2.79 -1,3.86 -1.43,0.82 -3.34,0.55 -4.68,1.63 -1.43,0.43 -2.34,1.94 -3.93,1.98 -1.01,0.24 -2.04,0.2 -2.98,-0.24 -1.43,-0.31 -2.96,-0.37 -4.17,-1.26 -1.28,-0.22 -2.72,-0.18 -3.92,0.28 -0.44,0.84 -1.02,1.84 -0.84,2.83 0.29,0.56 1.07,0.84 1.56,0.84 -0.05,1.11 0.05,2.39 -0.5,3.37 -0.52,0.45 -0.58,1.19 -0.93,1.76 -0.35,0.79 0.16,1.69 -0.01,2.43 -0.32,0.28 -0.92,1.06 -0.07,1.03 0.63,0.15 1.51,0.89 0.83,1.53 -0.65,0.49 -0.26,1.63 -1.2,1.8 -0.92,0.22 -0.96,1.28 -1.6,1.77 -0.65,0.22 -1.4,0.48 -1.56,1.23 -0.32,0.24 -0.9,0.26 -0.8,0.85 -0.09,0.78 -0.08,1.99 -0.94,2.31 -0.99,0.27 -2.32,-0.86 -3.07,0.16 -0.6,0.69 -0.09,1.51 0.6,1.87 0.92,0.17 0.1,1.42 0.89,1.79 0.43,0.49 -0.58,0.98 -0.74,1.42 -0.34,0.68 0.8,0.25 0.81,0.85 0.03,0.42 0.29,1.41 -0.38,1.36 -0.33,0.29 -0.52,0.7 -0.99,0.83 -0.32,1.06 0.04,2.34 0.62,3.28 0.26,0.27 0.46,0.78 -0.11,0.76 -0.88,-0.03 -0.67,0.96 -0.44,1.49 0.06,1.3 1.51,1.3 2.46,1.27 1.35,0.04 2.86,-0.29 4.12,0.24 0.24,0.48 0.58,0.91 1.15,0.8 0.86,0.11 1.82,0.39 2.05,1.34 0.29,0.66 1.13,0.61 1.55,1.03 0.09,0.75 0.57,1.64 1.45,1.53 0.63,0.15 1.2,0.92 1.85,0.34 0.84,-0.05 0.76,1.28 1.39,1.64 0.9,1.01 2.33,1.68 3.67,1.21 1.25,-0.12 2.56,-0.22 3.62,-0.93 0.58,-0.16 1.6,-0.22 1.92,0.37 -0.18,0.49 -0,0.96 0.41,1.25 0.59,0.64 0.44,2.13 1.49,2.23 0.94,0.02 1.6,-0.73 2.14,-1.37 0.64,-0.3 1.1,0.46 1.75,0.2 0.75,0.33 1.54,0.72 2.42,0.6 0.59,0.08 1.23,-0.29 1.75,-0.29 0.2,0.39 0.77,0.27 0.88,0.76 0.35,0.43 1.43,0.74 1.35,-0.12 0.23,-0.51 0.65,-1.06 0.75,-1.54 0.75,0.31 1.74,-0.56 2.35,0.17 -0.28,0.99 1.24,1.59 1.76,0.72 0.99,-0.48 1.58,-1.54 2.75,-1.63 0.57,0.1 1.02,-0.23 0.97,-0.84 0.3,-0.66 -0.59,-0.54 -0.72,-1.06 -0.33,-0.56 0.1,-1.26 -0.31,-1.86 -0.19,-0.98 1.3,-1.36 1.13,-2.38 0.43,-0.77 1.92,-0.04 2.13,-1.13 0.27,-0.66 -0.89,-0.95 -0.61,-1.51 0.45,-0.41 1.41,-0.79 0.86,-1.56 -0.47,-0.6 0.13,-1.25 0.03,-1.85 -0.6,-0.17 -1.19,-0.75 -1.1,-1.42 -0.19,-0.62 -1.31,-1.24 -0.81,-1.94 0.79,-0.09 1.51,-1.19 1.2,-1.92 -0.13,-0.59 0.13,-1.41 0.79,-1.48 0.37,-0.67 -0.42,-1.86 0.59,-2.18 0.96,-0.16 1.5,0.65 1.88,1.4 0.77,0.6 1.76,-0.12 2.57,-0.07 0.87,0.35 1.58,1.06 2.03,1.81 0.73,0.2 1.1,-0.75 1.78,-0.86 0.83,-0.56 1.01,-1.85 1.88,-2.3 0.73,0.24 1.91,0.01 1.81,-0.97 0.37,-0.25 0.4,-0.81 -0.11,-0.99 -0.54,-0.43 -1.34,-0.55 -1.74,0.1 -0.54,0.69 -1.72,0.21 -1.58,-0.67 0.09,-0.81 1.66,-1.47 0.62,-2.14 -0.84,-0.69 -1.51,-1.71 -2.44,-2.22 -0.79,0.32 -1.66,1.21 -2.52,0.53 -0.65,-0.39 -2.12,0.02 -2.05,-1.08 0.04,-1.05 -1.27,0.01 -1.58,-0.76 -0.57,-1.04 -0.45,-2.77 -1.76,-3.21 -0.69,-0.09 -1.52,0.19 -2.04,-0.36 -1.18,0.04 -1.7,-1.17 -2.53,-1.75 -1.01,-0.34 -1.96,0.16 -2.84,0.58 -1.09,-0.05 -2.29,-0.09 -3.31,-0.43 0.1,-0.88 0.78,-1.78 0.27,-2.7 -0.21,-0.74 -0.95,-1.43 -0.31,-2.2 0.48,-1.09 1.53,-2.52 0.48,-3.62 -0.58,-0.56 -0.76,-1.62 -1.74,-1.55 -1.2,0.01 -2.03,-1.57 -1.06,-2.42 1.18,-0.92 0.64,-2.65 1.5,-3.76 0.15,-0.67 -0.64,-1.46 0.11,-1.96 0.54,-0.43 0.11,-1.76 1,-1.72 0.94,0.21 0.48,-1.1 0.71,-1.61 0.21,-0.57 0.86,-1.15 0.18,-1.71 -0.6,-0.89 -2.18,0.52 -2.36,-0.71 -0.18,-0.22 -0.16,-0.9 -0.57,-0.76 z", + "department-52" : "m 72.24,98.22 c -0.61,-0.13 -0.96,0.5 -1.41,0.66 -0.53,-0.32 -1.23,-1.05 -1.77,-0.28 -0.62,0.38 -1.48,1.06 -2.22,0.75 -0.44,-0.41 -1.16,-0.1 -1.56,-0.58 -0.54,-0.25 -0.78,0.33 -1.14,0.5 -0.52,-0.01 -1.11,1.13 -0.28,1.03 1.09,-0.22 2.91,-0.1 3.05,1.3 0.05,0.61 0.55,1.75 -0.47,1.47 -0.99,0.04 -1.51,1.21 -2.56,1.1 -1.07,0.09 -0.75,1.91 0.23,1.84 0.32,0.38 -0.31,0.87 0.01,1.32 -0.03,0.31 0.56,0.96 0.21,1.16 -1.66,-0.17 -3.32,-1.01 -5,-0.37 -0.75,0.03 -0.46,0.72 -0.4,1.18 -0.13,0.52 -0.85,0.66 -0.8,1.29 -0.17,0.79 0.05,1.89 -0.94,2.16 -0.42,0.73 0.9,0.89 1.31,1.19 0.6,0.26 0.51,1.05 0.89,1.48 0.17,0.73 0.94,1.21 1.11,1.9 0.72,0.31 1.75,0.01 2.3,0.65 -0.1,0.68 -0.31,1.7 0.7,1.78 0.99,0.09 1.61,0.92 2.58,1.03 0.76,0.24 -0.24,0.91 -0.41,1.26 -0.3,0.9 0.67,1.6 1.29,2.01 -0.57,0.65 0.03,1.34 0.37,1.91 -0.52,0.63 -0.88,1.54 -0.37,2.32 -0.04,0.32 -0.82,0.58 -0.31,0.96 0.49,0.25 1.17,0.59 0.77,1.26 -0.33,1.08 -1.66,2.25 -0.73,3.4 0.22,0.6 -0.58,1.07 -0.49,1.7 -0,0.54 0.13,1.31 -0.69,1.09 -1.41,0.08 -2.81,-1.22 -4.16,-0.48 -0.86,0.41 -0.86,1.53 -1.81,1.79 -0.48,0.12 -0.47,0.63 -0.02,0.74 0.52,0.55 0.88,1.33 1.47,1.78 0.11,0.58 -0.7,0.9 -0.47,1.54 0.3,1.42 2.19,1.07 3.25,1 0.69,-0.13 0.63,0.87 1.13,1.14 -0.21,0.47 -1.23,1.22 -0.54,1.72 1.08,0.15 2.55,-0.15 3.06,1.13 0.38,0.69 -0.54,1.37 -0.93,1.85 -0.86,0.4 0.07,1.23 0.6,1.38 0.42,-0.69 1.11,-1.98 2.15,-1.47 0.54,0.51 0.54,1.39 1.04,1.93 0.22,0.61 0.14,1.59 1.06,1.55 1.03,0.41 0.4,1.86 1.31,2.43 0.64,0.35 1.08,1.21 0.46,1.75 -0.74,0.99 -2.19,1.12 -2.84,2.14 -0.24,0.68 0.69,0.93 1.02,0.41 0.85,0.16 0.85,1.35 0.88,2.02 0.55,0.61 -0.16,1.47 -0.45,2.05 0.18,0.85 1.3,1.4 1.98,0.68 0.28,-0.51 0.94,-0.93 1.49,-0.93 0.08,0.56 0.48,0.92 1.06,0.94 -0.03,0.59 -0.45,1.44 0.4,1.68 1,0.33 1.97,1.32 3.08,1.12 0.95,-0.41 0.96,-2.04 2.14,-1.97 0.3,0.75 -0.62,2.06 0.68,2.19 1.04,0.28 1.45,1.45 2.39,1.81 0.35,-0.12 0.79,-0.01 0.42,0.42 -0.55,0.71 -0.57,1.9 0.24,2.4 1.23,-0.45 1.79,-2.39 3.37,-2.07 0.54,0.03 0.63,0.55 0.76,0.93 0.74,0.11 1.11,-0.95 1.17,-1.56 0.17,-0.69 0.69,-1.27 1.19,-1.68 -0.28,-0.94 0.29,-2.69 1.5,-1.85 0.82,0.17 1.66,-0.24 2.21,-0.83 0.79,0.3 1.95,1.31 2.58,0.21 0.55,-0.45 0.91,-1.43 1.6,-1.6 0.75,0.3 0.57,1.16 0.89,1.72 0.83,0.55 2.04,0.3 2.92,-0.03 0.57,-0.39 2.05,-0.12 1.66,-1.27 -0.68,-0.92 -0.23,-2.17 0.48,-2.93 0.35,-0.68 0.16,-1.73 -0.79,-1.68 -0.78,-0.49 -0.18,-1.67 -0.14,-2.37 0.02,-0.68 0.55,-1.25 1.27,-1.05 0.95,0.21 1.88,0.15 1.53,-1.07 -0.09,-0.87 0.77,-1.76 1.67,-1.34 0.63,0 1.57,1.09 1.95,0.1 0,-0.62 -0.06,-1.28 0.45,-1.76 0.42,-0.47 0.47,-1.82 1.38,-1.42 0.43,0.2 1.37,0.36 1.12,-0.43 0.01,-1.43 -1.33,-2.2 -1.86,-3.39 -0.49,-0.12 -0.79,0.55 -1.32,0.49 -0.29,0.23 -0.54,0.73 -0.97,0.37 -0.77,-0.6 -1.13,-1.9 -0.32,-2.63 0.26,-0.74 -0.4,-1.47 -0.68,-2.13 -0.57,-0.82 -1.4,-1.57 -2.41,-1.65 -0.33,-0.3 -0.24,-0.92 -0.73,-1.17 -0.53,-0.46 -1.4,-1.34 -2.13,-0.91 0.04,0.75 -0.85,-0.01 -1.05,-0.22 -0.48,-0.48 0.24,-1.33 0.68,-1.62 0.5,0.09 0.81,-0.38 0.39,-0.75 -0.47,-0.6 0.64,-1.06 0.71,-1.65 0.44,-0.73 0.45,-1.61 0.24,-2.37 0.39,-0.85 1.44,-0.91 2.22,-0.95 -0.31,-0.98 -1,-2.24 -2.09,-2.56 -0.67,0.01 -1.55,-0.33 -1.93,-0.85 0.21,-0.63 0.73,-1.46 -0.03,-1.97 -0.59,-0.49 -1.39,-1.57 -1.97,-0.45 -0.66,0.92 -1.18,-0.93 -1.76,-1.35 -0.67,-0.95 -1.54,-1.89 -1.8,-2.99 -1.06,-0.58 -2.66,-0.63 -3.37,0.51 -0.34,0.35 -1.13,0.75 -1.22,-0.01 -0.24,-0.92 0.12,-1.87 0.61,-2.61 -0.44,-0.38 -1.61,-0.27 -1.75,-0.94 0.97,-0.33 1.98,-1.03 2.52,-1.91 -0.34,-0.28 -0.45,-0.97 -1.06,-0.94 -0.77,-0.46 -1.3,-1.29 -1.16,-2.2 -0.29,-0.56 -1.07,0.05 -1.49,-0.39 -1.01,-0.36 -1.36,-1.48 -2.08,-2.16 -0.76,-0.31 -1.65,0.09 -2.35,-0.53 -0.87,-0.41 -1.75,-0.85 -2.71,-0.87 -0.21,-0.28 -0.39,-0.7 -0.77,-0.73 -0.38,-0.85 -1.35,-1.59 -2.31,-1.49 -0.7,-0.5 -0.98,-1.45 -1.57,-1.99 -0.79,-0.17 -2.05,0.12 -2.22,-0.97 -0.15,-0.7 -0.37,-2.12 -1.09,-0.89 -0.43,0.63 -1.74,0.89 -2.01,0.02 0.47,-0.85 -0.07,-1.74 -0.2,-2.57 0.59,-0.28 1.02,-1.28 0.21,-1.6 -0.41,-0.16 -0.86,-0.23 -1.29,-0.21 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_22.js b/lib/mapael-maps/france/france_region_22.js new file mode 100644 index 000000000..a333340b9 --- /dev/null +++ b/lib/mapael-maps/france/france_region_22.js @@ -0,0 +1,38 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Picardie for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_22 : { + width : 131.49632, + height : 100.98322, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -62.6039; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3323.4374; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-60" : "m 17.05,40.42 c -0.83,0.1 -0.08,1.35 -0.94,1.53 -0.8,0.24 -0.89,1.06 -0.91,1.76 -0.4,0.31 -1.37,0.65 -0.77,1.31 0.61,0.79 1.15,-0.37 1.63,-0.7 0.66,-0.54 1.21,1.04 0.53,1.33 -0.62,0.18 -1.04,0.7 -1.03,1.33 -0.7,0.33 -0.81,1.34 -0.19,1.81 0.56,0.81 -0.52,1.34 -0.77,1.96 -0.12,0.63 0.91,0.58 0.98,1.01 -0.61,0.42 -0.19,1.06 0.18,1.45 0.35,0.5 -0.35,1.6 0.62,1.54 0.6,0.03 0.02,0.86 -0.07,1.15 -0.11,0.49 -1.24,1 -0.63,1.48 0.51,0.3 1.28,0.28 1.37,-0.42 0.7,-0.89 2.09,0.34 1.5,1.19 -0.91,0.02 -0.29,1.27 -1.06,1.54 -0.56,0.3 -0.53,0.98 -1.11,1.22 -0.6,0.72 -0.97,1.73 -1.02,2.63 0.17,0.36 1.04,-0.16 0.94,0.24 -0.4,0.24 -0.83,0.73 -0.29,1.11 0.68,0.63 1.32,1.34 1.4,2.3 0.45,0.71 0.51,1.49 0.41,2.29 0.07,0.71 0.07,1.65 0.86,1.89 0.38,0.27 0.15,0.75 0.46,1.09 -0.07,0.53 -0.08,1.39 -0.59,1.68 -0.8,0.07 -1.13,-0.65 -1.51,-1.17 -0.95,-0.46 -2.65,0.25 -2.34,1.47 0.32,0.65 1.52,0.71 1.53,1.49 0.08,0.62 -1.13,0.91 -0.59,1.47 0.63,0.23 0.74,0.93 1.14,1.35 0.72,0.08 1.32,-0.7 2.1,-0.39 0.57,0.21 1.18,0.42 1.77,0.59 0.64,0.77 1.85,-0.48 2.37,0.49 0.88,0.17 1.76,-0.44 2.67,-0.38 0.71,0.14 1.12,-0.88 1.78,-0.45 0.97,0.51 1.58,-0.76 2.51,-0.83 0.62,-0.46 1.49,-1.15 2.29,-0.93 0.31,0.44 0.39,1.23 1.15,1.09 0.77,-0.08 1.7,0.2 2.23,0.75 -0.01,0.3 0.02,1.08 0.47,0.67 0.37,-0.84 1.43,-0.13 2.03,-0.67 0.47,0.14 1.18,1.08 0.39,1.35 -0.15,0.72 1.03,0.16 1.41,0.19 1.18,0.03 1.52,-1.15 2.14,-1.88 1.28,-0.5 1.56,1.36 2.39,1.91 0.47,0.2 0.89,-0.59 1.32,-0.04 0.77,0.51 1.8,0.07 2.56,0.7 0.46,0.62 1.41,0.48 1.96,1.07 0.63,0.17 0.96,0.67 0.88,1.3 0.3,0.68 1.52,0.45 1.4,-0.38 0.21,-0.94 1.47,0.01 1.2,0.69 0.1,0.69 1.06,0.67 1.15,1.4 0.67,0.51 0.96,-0.76 1.58,-0.84 0.34,-0.2 0.76,-0.95 1.06,-0.38 1.12,0.31 2.22,1.22 2.47,2.37 0.63,0.35 0.95,-0.88 1.47,-0.75 0.09,0.58 0.47,1.25 1.17,0.98 0.6,-0.07 1.51,-0.72 0.86,-1.26 0.45,-0.49 1.21,-0.76 1.78,-1.04 0.37,0.8 1.47,0.62 1.89,1.28 0.32,1 1.37,0.2 1.9,-0.15 0.6,-0.59 1.63,0.42 2.28,-0.27 0.2,-0.42 0.74,-0.11 1.08,-0.4 0.52,0.09 0.26,1.47 0.9,0.96 0.33,-1.35 2,-0.88 2.99,-0.76 0.52,-0.19 0.01,-0.93 0.42,-1.28 0.19,-0.7 0.85,-0.94 1.29,-1.4 0.16,-0.35 0.07,-0.89 0.6,-0.88 0.34,-0.55 1.4,-0.28 1.49,-1.02 -0.3,-0.44 -1.15,-0.47 -1.03,-1.18 0.14,-1.06 -0.43,-1.79 -0.83,-0.43 -0.39,0.48 0.08,1.09 -0.07,1.53 -1.09,-0.3 -0.06,-1.66 -0.6,-2.3 -0.38,-0.12 -1.06,0.21 -0.96,-0.46 -0.18,-0.53 -0.74,-0.35 -1.1,-0.43 -0.47,0.14 -0.93,-0.39 -0.71,-0.97 0.82,0 0.85,-0.93 0.59,-1.5 -0.34,-0.74 0.05,-1.69 -0.38,-2.37 -0.41,-0.11 -0.35,-0.28 -0.48,-0.59 -0.47,0.02 -0.98,0.1 -1.28,-0.4 -0.35,-0.32 -0.86,-0.54 -0.48,-1.01 -0.07,-0.38 -0.76,-0.68 -0.14,-1.01 0.64,-0.44 1.33,-1.33 2.15,-0.7 0.5,0.35 1.17,0.38 1.5,-0.21 0.73,-0.42 1.23,-1.1 1.27,-1.97 0.19,-0.61 0.77,-1.02 0.62,-1.76 0.13,-0.92 -0.08,-2.06 0.27,-2.88 0.68,-0.13 1.3,0.51 2.02,0.15 0.47,0.03 1.35,-0.58 0.62,-0.93 -0.68,-0.57 -1.92,-0.63 -2.3,-1.46 0.28,-0.48 1.26,-0.73 0.46,-1.34 -0.22,-0.46 -1.15,-1.2 -0.61,-1.69 0.55,-0.15 1.19,-0.39 1.09,-1.1 0.15,-0.99 -0.07,-2.05 0.28,-2.96 -0.16,-1.13 -1.1,-1.89 -1.67,-2.78 0.27,-0.34 0.94,-0.64 0.62,-1.23 -0.35,-0.54 -0.86,-0.93 -0.13,-1.43 0.23,-0.33 1.06,-0.36 0.64,-0.93 -0.6,-0.48 0.6,-1.45 -0.26,-1.86 -0.67,-0.22 -1.04,0.69 -1.57,0.74 0.13,-0.49 -0.08,-1.56 -0.75,-1 -0.3,0.43 -0.22,1.1 -0.91,1.05 -0.38,0.18 -0.45,1.16 -0.98,0.63 -0.74,-0.29 -0.81,-1.7 -1.78,-1.31 -0.47,0.26 -0.83,0.61 -1.36,0.72 -0.51,0.49 0.44,1.03 -0.13,1.56 -0.28,-0.59 -1.06,-0.57 -1.18,-1.29 -0.14,-0.69 -0.76,-0.99 -1.4,-0.79 -0.37,-0.06 -0.89,-0.87 -1.03,-0.11 0.31,0.62 1.12,1.24 0.71,2.01 -0.34,-0.39 -1.06,-1.25 -1.42,-0.39 -0.37,0.38 -0.1,1.3 -0.87,1.13 -0.81,-0.09 -1.95,-0.04 -2.06,1 -0.12,0.64 0.6,1.56 -0.2,1.97 -0.69,0.25 -1.29,-0.13 -1.86,-0.44 -0.85,-0.04 -1.73,-0.16 -2.57,-0.19 -0.25,0.5 -0.39,1.12 -0.72,1.62 -0.25,0.55 -0,1.32 -0.71,1.58 -0.62,0.67 -1.75,-0.2 -1.48,-0.99 0.2,-0.81 -0.61,-1.43 -1.33,-1.09 -0.55,0 -0.88,1.13 -1.41,0.57 -0.32,-0.53 -0.7,-0.98 -1.25,-1.24 -0.56,-0.46 -1.25,-0.95 -1.95,-1.04 -0.28,0.36 -1.22,1.32 -1.45,0.41 -0.37,-0.46 -0.76,-0.88 -0.98,-1.42 -0.72,-0.76 -1.83,-0.78 -2.75,-0.49 -0.66,0.15 -1.01,-0.53 -1.62,-0.5 -0.53,-0.18 -0.81,-0.62 -0.96,-1.11 -0.5,-0.63 -1.24,0.2 -1.81,-0.29 -1.18,-0.43 -2.39,-1.49 -3.69,-0.91 -0.73,-0.07 -1.46,-0.49 -2.2,-0.12 -0.78,0.28 -1.41,1.14 -2.33,0.67 -0.92,-0.27 -1.91,0.75 -2.73,0.19 0.44,-0.69 -0.73,-1.21 -1.28,-1.36 -0.82,-0.14 -1.71,-0.15 -2.46,-0.39 -0.37,0.12 -0.82,1.18 -1.18,0.51 -0.16,-0.77 -1.09,-0.77 -1.45,-0.15 -0.49,0.61 -1.33,0.9 -2.03,0.47 -0.66,0.01 -1.47,-0.25 -1.57,-0.99 -0.31,-0.16 -0.81,-0.18 -0.36,-0.62 0.44,-0.25 0.51,-0.87 -0.08,-0.86 -0.4,-0.46 -0.86,-0.93 -1.5,-0.93 -0.38,-0.38 -1.09,-0.3 -1.59,-0.33 z", + "department-80" : "m 9.48,0.1 c -0.9,0.03 -2.13,0.37 -2.04,1.52 -0.15,1.48 -0.85,3.02 -0.45,4.5 0.17,0.73 0.84,1.06 1.51,1.11 0.44,0.24 0.64,0.78 1.13,0.93 0.61,1.04 1.51,2.09 2.78,2.16 0.35,0.37 -0.54,0.88 0.11,1.21 0.47,0.17 0.44,0.91 -0.14,0.69 -1.68,-0.39 -3.05,-1.44 -4.6,-2.1 -1.84,0 -2.99,1.94 -3.54,3.49 -0.53,1.93 -1.2,4 -2.94,5.18 -0.62,0.48 -2.21,1.4 -0.58,1.61 0.82,0.39 0.87,-1.09 1.7,-0.69 0.78,-0.06 1.29,0.69 0.96,1.41 -0.25,0.93 1.01,0.91 1.36,1.56 0.8,0.47 1.55,0.98 1.97,1.83 0.79,0.9 2.12,1.31 2.54,2.53 1.07,1.61 3.22,1.85 4.49,3.2 0.23,0.62 0.64,1.09 1.18,1.37 0.31,0.59 0.34,1.29 0.51,1.93 -0.08,0.87 0.48,1.52 0.53,2.37 0.45,1.29 1.03,2.63 2.11,3.47 0.27,0.63 0.69,1.26 1.41,1.32 0.37,0.35 0.59,0.94 1.21,0.92 0.9,0.35 -0.85,1.01 -0.06,1.4 0.36,0.42 0.6,1.09 1.27,0.97 0.75,0.3 1.63,0.4 2.15,-0.36 0.36,-0.43 1.15,-0.91 1.51,-0.21 0.49,1.13 0.73,-0.1 1.24,-0.38 0.48,0.04 0.86,0.51 1.41,0.42 1.07,-0.07 2.11,0.28 2.7,1.22 0.36,0.89 1.43,-0.18 2.1,-0.01 0.57,0.09 1.2,0.47 1.66,-0.14 0.96,-0.78 2.38,-0.25 3.51,-0.44 1.48,-0.26 2.58,1 3.95,1.17 0.39,-0.24 0.93,-0.37 1.19,0.18 0.33,0.59 0.78,1.31 1.55,1.11 0.37,0.44 0.9,0.87 1.47,0.4 1.12,-0.34 2.46,0.18 2.84,1.33 0.4,0.07 1,0.22 0.66,0.8 0.42,0.56 0.89,-0.53 1.34,-0.67 0.35,-0.35 0.41,0.44 0.84,0.42 0.7,0.27 1.22,1.02 2.02,0.86 -0.05,0.44 0.18,1.57 0.8,1.06 0.43,-0.73 1.44,-0.66 2.15,-0.54 0.24,0.76 -0.15,2.32 1.03,2.37 1.09,-0.33 0.63,-1.71 1.36,-2.35 0.27,-0.37 0.06,-1.11 0.73,-1.05 1.28,-0.14 2.55,0.04 3.66,0.68 0.92,0.23 0.84,-1.03 0.72,-1.59 -0.12,-0.63 0.08,-1.64 0.95,-1.44 0.58,0 1.62,0.14 1.6,-0.71 0.27,-0.65 0.92,-1.06 1.61,-1 0.13,-0.48 -1.26,-0.85 -0.46,-1.31 0.22,-0.25 0.68,-0.65 0.72,-0.06 0.16,1.22 0.72,0.02 1.17,-0.03 0.55,0.51 0.53,1.8 1.4,1.89 0.37,-0.29 0.05,-1.02 0.72,-1.09 0.52,-0.4 1.23,-0.95 1.9,-0.49 0.4,0.41 0.74,1.37 1.39,1.27 0.13,-0.49 0.49,-0.75 0.96,-0.74 0.4,-0.48 -0.5,-1.53 0.6,-1.15 0.52,-0.08 0.9,0.17 0.91,0.71 0.44,0.31 0.5,-0.59 1.06,-0.44 0.78,-0.63 -0.4,-1.43 -0.48,-2.14 -0.18,-0.58 0.01,-1.74 -0.94,-1.62 -0.73,-0.1 -1.13,-1.35 -0.19,-1.52 0.69,-0.41 0.5,-1.69 -0.14,-2.05 -0.74,0.15 -0.9,-1.05 -0.17,-1.18 1.22,-0.4 0.21,-0.75 0.56,-1.66 0.34,-0.59 0.34,-0.71 0.74,-0.68 1.3,-0.42 0.92,-2.02 1.22,-3.03 0.15,-1.09 1.36,-1.41 1.8,-2.27 -0.21,-1.06 1.04,-1.35 1.57,-1.95 -0.26,-0.56 -1.66,-0.12 -1.73,-0.83 0.18,-0.43 1.01,-1.43 0.16,-1.61 -0.39,0.13 -0.66,0.11 -0.85,-0.25 -0.54,-0.17 -1.23,-0.11 -1.41,-0.81 -0.33,-0.35 -0.75,-0.81 -1.24,-0.89 -0.78,0.52 -1.62,-0.51 -2.46,-0.43 -1.01,-0.1 -1.91,0.48 -2.79,0.9 -0.36,-0.58 -1.19,-1.01 -1.61,-0.27 -0.38,0.08 -0.64,0.32 -0.89,0.58 -0.68,0.04 -1.65,0.24 -1.79,0.98 -0.49,0.32 -1.44,-0.27 -0.81,-0.77 0.61,-0.26 0.82,-0.97 0.28,-1.45 -0.37,-0.28 -0.55,-0.63 -0.61,-1.09 -0.6,-0.51 -0.78,0.71 -1.41,0.64 -0.61,0.01 -0.91,0.6 -1.35,0.84 -0.57,0.32 -1.23,0.89 -1.92,0.46 -0.77,-0.54 0.56,-0.96 0.46,-1.61 0.63,-0.76 1.05,-1.78 0.73,-2.76 -0.54,-0.3 -1.34,-0.12 -1.76,-0.75 -0.28,-0.47 -1.27,-0.61 -1.13,0.15 0.36,0.6 -0.84,0.75 -0.3,1.29 0.39,0.29 0.88,0.94 0.1,1.1 -0.52,-0.03 -0.79,-0.88 -1.42,-0.79 -0.42,-0.08 -0.87,-0.4 -1.27,-0.08 -0.77,-0.13 -0.93,-1.24 -1.81,-0.92 -0.68,0.26 -1.93,-0.13 -1.77,-0.99 0.26,-0.25 0.76,-1.02 0.03,-0.84 -0.38,-0.02 -1.04,-0.39 -1,0.32 0.08,0.46 -0.42,1.2 -0.87,1.01 -0.41,-0.6 -0.57,-1.86 -1.6,-1.44 -1.11,0.03 -2.15,0.69 -2.4,1.8 -0.25,0.42 -0.33,1.28 -0.77,1.47 -0.72,-0.5 -1.39,-1.45 -2.28,-1.46 0.25,-1.19 0.26,-2.74 1.29,-3.54 0.58,-0.01 0.41,-0.8 1.01,-0.89 0.98,-0.39 2.27,-0.47 2.92,-1.4 -0.02,-0.84 -1.35,-0.7 -1.57,-1.5 -0.54,-0.72 -1.65,-0.16 -2.3,-0.67 -0.72,0.34 -1.48,0.77 -1.79,1.56 -0.44,0.26 -0.68,-0.76 -0.95,-0.97 -0.06,-0.41 -0.88,-1 -0.78,-0.29 0.32,0.49 -0.01,0.94 -0.57,0.84 -0.81,0.19 -1.37,-0.44 -2.05,-0.66 -0.57,0.18 -0.91,0.84 -1.58,0.89 -0.53,0.35 -0.74,-0.61 -1.32,-0.23 -1.04,0.24 -1.91,0.81 -2.69,1.46 -0.31,-0.01 -0.35,-0.74 -0.79,-0.82 -0.69,-0.36 -1.55,0.33 -2.24,0 0.14,-0.95 -1.21,-1.63 -0.83,-2.52 0.59,-0.31 0.08,-0.93 -0.43,-0.82 -0.8,-0.41 -1.56,-0.95 -2.48,-0.98 -0.71,-0.57 -1.65,-0.92 -2.5,-1.13 -0.75,-0.5 -0.63,-1.08 0.15,-1.48 0.57,-0.29 0.6,-1.22 -0.15,-1.21 -0.8,0.08 -1.18,1.42 -2.13,0.91 -0.91,-0.18 -1.33,-0.99 -1.96,-1.53 -0.95,-0.47 -1.83,-1.14 -2.84,-1.44 -1.26,-0.23 -2.4,0.34 -3.45,0.92 -0.87,0.14 -1.63,0.69 -2.45,0.86 -1.25,-0.51 -1.52,-2.38 -3.06,-2.35 -0.16,-0.02 -0.32,-0.01 -0.49,-0.01 z", + "department-02" : "m 105.47,20.48 c -0.68,0.17 -1.42,0.62 -1.19,1.42 -0.06,0.73 -1.06,0 -1.46,0.47 -0.48,0.44 -0.97,0.31 -1.19,-0.3 -0.69,-0.55 -1.62,-1.39 -2.56,-1.11 -0.5,0.44 -0.9,1.01 -1.55,1.16 -0.64,0.45 -0.89,1.41 -1.85,1 -1.81,0.16 -3.33,-1.1 -5.13,-0.92 -0.76,0.15 -0.78,1.35 -1.71,1.09 -0.71,-0.07 -1.71,0.28 -2.27,-0.25 -0.28,-0.67 -1.38,-0.42 -1.97,-0.43 -0.77,0.22 -1.43,0.77 -2.22,0.97 -0.49,0.25 -1.34,1.06 -0.48,1.42 0.36,0.3 1.33,-0.19 1.28,0.54 -0.51,0.74 -1.87,1.04 -1.57,2.2 -0.51,0.65 -1.53,0.94 -1.74,1.88 -0.34,0.86 -0.19,1.84 -0.49,2.68 -0.84,0.53 -1.8,1.27 -1.55,2.39 -0.18,0.5 -1.45,0.76 -0.84,1.39 0.38,0.15 1.01,0 0.89,0.64 0.07,0.64 0.32,1.52 -0.45,1.83 -0.64,0.44 -0.25,1.35 0.5,1.28 0.42,0.01 0.84,0.1 0.58,0.59 -0.09,1.55 1.36,2.69 1.17,4.28 -0.14,0.5 -0.23,1 0.1,1.44 0.13,0.38 0.04,0.76 -0.44,0.63 -0.89,0.18 -0.26,1.1 -0.08,1.58 0.22,0.73 -1.31,0.9 -0.48,1.49 0.68,0.73 1.42,1.63 1.57,2.64 -0.33,0.19 -0.64,0.53 -0.29,0.92 0.27,0.56 0.08,1.15 -0.14,1.65 0.22,0.66 -0.49,1.2 -1.09,1.21 -0.55,0.72 0.73,1.27 0.79,2.01 0.22,0.48 -0.23,0.7 -0.51,0.92 0.18,0.76 1.35,0.82 1.91,1.27 0.69,0.14 0.74,1.26 -0.07,1.21 -0.71,0.28 -1.46,0.37 -2.1,-0.08 -0.65,0.24 -0.25,1.31 -0.4,1.86 -0.04,0.91 0.14,1.98 -0.6,2.66 -0.24,0.61 -0.22,1.33 -0.89,1.71 -0.63,0.49 -1.22,1.61 -2.03,0.73 -0.8,-0.56 -1.94,0.11 -2.3,0.85 0.18,0.4 0.52,0.71 0.59,1.16 0.32,0.61 0.91,0.75 1.51,0.79 0.49,0.11 1.25,0.38 0.79,1 -0.35,1.09 0.39,2.22 0.23,3.27 -0.69,0.25 -0.56,1.12 0.16,1.14 0.97,-0.19 1.45,1.27 2.35,1.35 0.29,-0.24 0.52,-0.84 0.92,-0.31 0.27,0.67 -0.15,1.79 0.86,1.97 0.31,0.1 0.75,0.37 0.31,0.66 -0.5,0.57 -1.13,1.19 -1.88,1.27 -0.04,0.56 -1,0.92 -0.68,1.39 1.17,0.27 2.38,0.31 3.47,0.79 0.6,0.02 0.07,0.94 0.4,1.28 0.41,0.62 0.71,1.28 1.02,1.93 0.38,0.48 -0.54,0.86 -0.51,1.37 -0.5,0.29 -0.71,1.04 -0.05,1.31 0.98,0.32 1.94,1.05 2.44,1.92 0.22,0.41 0.88,0.27 0.99,0.85 0.47,0.59 0.38,2.16 1.46,1.91 0.41,-0.05 0.98,-0.86 1.19,-0.14 0.25,0.73 0.25,1.91 1.09,2.2 0.62,-0.15 1.11,-0.73 1.52,-1.08 0.75,0.68 0.03,1.92 0.73,2.67 -0.05,0.6 0.49,0.83 1.02,0.72 -0.13,0.66 0.61,0.52 1.01,0.64 0.56,0.21 1.4,0.42 1.14,1.2 0.21,0.86 0.82,-0.17 1.15,-0.35 0.68,-0.15 -0.09,-1.17 0.77,-1.19 0.88,-0.69 0.63,-2.26 1.74,-2.75 0.68,-0.27 2.01,-0.04 1.88,-1.17 -0.11,-0.92 1.42,-0.98 0.98,-1.98 0.1,-0.52 0.79,-0.38 1.13,-0.5 0.25,-0.87 0.48,-1.99 1.31,-2.48 0.66,0.08 1.56,-0.45 1.13,-1.2 -0.28,-1.05 -1.43,-1.2 -2.3,-0.84 -0.49,0.06 -1.76,0.48 -1.66,-0.42 -0.25,-1.22 1.03,-2.17 2.13,-2.19 0.58,-0.47 -0.45,-1.09 -0.41,-1.66 -0.09,-0.61 -0.64,-0.87 -0.97,-1.24 -0.24,-0.4 0.46,-0.34 0.34,-0.78 0.26,-0.51 0.29,-1.58 1.11,-1.35 0.83,0.16 1.66,-0.19 2.44,-0.21 0.64,0.66 1.34,0.69 2.02,0.03 0.56,-0.15 1.16,-1.27 0.39,-1.5 -0.86,0.35 -2.22,-0.36 -1.86,-1.39 -0.14,-0.53 -0.89,0.13 -1.05,-0.47 -0.36,-0.29 -1.21,-0.2 -1.06,-0.9 0.15,-0.52 1.15,-0.55 0.81,-1.27 -0.46,-0.78 -0.64,-1.63 -0.74,-2.5 -0.09,-0.46 0.14,-1.04 -0.41,-1.32 -0.64,-0.41 -0,-1.37 0.49,-1.63 1.12,-0.67 2.48,-0.76 3.64,-1.29 0.25,-0.39 0.54,-0.74 1.06,-0.7 1.14,-0.47 2.67,-0.93 3.68,0.01 0.5,0.39 0.93,-0.31 0.49,-0.7 -0.36,-0.4 0.54,-0.61 0.38,-1.11 0.7,-0.98 2.25,-0.87 2.96,-1.91 0.8,0.12 1.26,1.89 2.4,1.75 0.78,0.04 1.48,0.61 1.92,1.16 0.73,0.34 0.98,-0.54 0.86,-1.1 0.02,-1.06 0.83,-2.03 0.28,-3.09 -0.38,-0.56 -0.17,-1.34 0.54,-1.4 0.38,-0.69 -0.65,-1.32 -0.6,-2.05 0.05,-0.62 -0.29,-1.56 0.17,-2.02 0.6,-0.1 0.57,-1.08 1.22,-0.9 0.51,-0.54 0.08,-1.5 -0.68,-1.46 -0.57,-0.33 0.32,-0.96 0.54,-1.26 0.3,-0.57 -0.65,-0.94 -0.33,-1.58 0.15,-0.74 -0.84,-0.8 -1.06,-1.42 -0.46,-0.37 -0.6,-0.95 0,-1.21 0.11,-0.38 0.13,-0.92 0.7,-0.74 0.88,-0.06 1.96,0.68 2.77,0.16 0.52,-0.84 0.35,-2.02 0.76,-2.83 0.59,0.12 0.72,-0.42 0.94,-0.79 0.71,-0.37 1.61,-0.66 1.87,-1.5 0.47,-0.75 1.69,-0.87 1.68,-1.93 0.02,-0.57 1.14,-0.8 0.58,-1.39 -0.29,-0.69 -1.57,-0.3 -1.52,-1.15 0.44,-0.36 1.08,-0.92 0.48,-1.48 -0.39,-0.92 0.34,-1.94 0.67,-2.82 0.43,-0.55 0.85,-1.1 0.8,-1.86 -0.04,-0.59 0.51,-1.9 -0.44,-1.95 -1.12,-0.21 -1.32,-1.54 -0.8,-2.38 0.31,-0.44 0.46,-1.42 -0.36,-1.33 -1.01,0.12 -1.26,-1.35 -2.32,-1.15 -1.28,-0.26 -2.61,0.73 -3.8,0.17 -0.91,-1.14 -2.71,-0.14 -3.68,-1.14 -0.35,-0.19 -1.06,-0.02 -0.83,-0.65 -0.12,-0.84 0.75,-1.79 0.21,-2.54 -0.85,-0.21 -1.34,1.02 -2.24,0.79 -0.86,0.14 -1.56,1.01 -2.39,1.06 0,-0.38 -0.15,-0.82 -0.32,-1.09 -0.18,-0.69 -1.23,-0.63 -1.75,-1.03 -0.66,-0.08 -1.34,0.54 -1.91,-0.06 -0.48,-0.26 -1.03,0.1 -1.41,-0.36 -1.02,-0.03 -1.83,-1.04 -2.79,-1 -0.32,0.13 -0.63,0.25 -0.95,0.38 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_23.js b/lib/mapael-maps/france/france_region_23.js new file mode 100644 index 000000000..eea4ed4b0 --- /dev/null +++ b/lib/mapael-maps/france/france_region_23.js @@ -0,0 +1,37 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Haute-Normandie for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_23 : { + width : 79.088707, + height : 92.694054, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -2.5999; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3303.6884; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-27" : "m 19.54,38.83 c -1.31,0.42 -2.12,1.67 -3.43,2.14 -1.7,1.02 -3.81,0.8 -5.58,1.55 -0.63,1.04 0.6,2.17 0.2,3.29 -0.27,0.99 0.69,1.81 0.75,2.64 -0.3,0.57 -0.96,1.38 -0.24,1.91 0.37,0.53 0.01,1.06 -0.17,1.54 0.31,0.7 0.93,-0.24 1.25,-0.49 0.77,-0.55 2.29,0.13 1.94,1.19 0.27,1.19 -1.23,1.05 -1.95,1.5 -1.05,0.2 -0.14,1.42 0.37,1.7 0.52,0.69 1.73,0.27 1.98,1.2 0.05,1.21 -0.29,2.55 0.01,3.7 0.48,0.29 1.6,0.16 1.76,0.81 -0.5,0.82 -1.53,1.67 -1.03,2.76 0.11,0.45 0.79,1.17 0.35,1.55 -0.61,0.07 -1.64,-0.16 -1.65,0.75 -0.42,0.99 0.39,1.98 1.4,1.96 0.65,0.14 1.55,0.59 1.65,1.19 -0.66,0.94 -0.73,2.08 -0.77,3.17 -0.53,1.24 -1.73,2.26 -1.88,3.63 0.48,0.6 1.37,0.76 1.72,1.48 1.01,0.33 2.15,0.11 3.12,0.64 0.76,0.06 1.52,-0.02 2.26,0.26 0.83,-0.1 1.31,-1.54 2.24,-0.79 0.22,0.29 0.23,0.8 0.67,0.95 0.26,0.41 -0.15,1.41 0.63,1.32 0.38,-0.18 0.67,0.01 0.32,0.36 -1.25,0.98 -0.03,1.6 0.87,2.15 1.17,0.83 2.42,1.82 3.81,2.12 0.85,0.48 1.2,1.35 1.47,2.22 0.74,0.7 0.41,1.42 -0.24,2.05 -0.3,0.26 -1.23,0.54 -0.76,1.04 0.75,-0.03 1.51,0.55 1.21,1.37 -0.21,0.67 0.61,1.39 1.07,0.71 0.61,0.02 1.25,0.02 1.69,-0.48 0.65,-0.17 1.47,-0.24 1.67,-1.05 0.16,-0.59 0.56,-1.82 1.37,-1.44 0.89,0.61 2.37,0.5 3,-0.43 0.42,-0.4 0.95,-0.42 1.41,-0.17 1.42,0 2.28,-1.35 3.28,-2.06 0.58,0.39 1.26,0.06 1.88,0.44 0.99,0.04 0.69,-1.36 0.75,-1.99 -0.24,-0.83 0.98,-0.31 1.41,-0.23 -0.01,0.63 0.44,1.1 1.1,0.88 0.81,-0.25 1.38,0.67 2.12,0.49 0.47,-0.55 1.48,-0.45 1.78,0.22 0.86,0.15 1.7,-0.94 2.57,-0.21 1.04,0.41 1.49,-1.12 2.44,-1.28 0.82,-0.31 -0.3,-1.19 -0.37,-1.78 -0.35,-0.68 -0.22,-1.55 0.53,-1.85 0.89,-0.43 1.22,-1.7 2.31,-1.69 1.18,-0.1 2.69,-1.26 1.72,-2.48 0.03,-0.56 -0.45,-1.01 -0.51,-1.48 0.39,-0.35 0.41,-1.15 1.11,-1 0.54,0.11 1.75,-0.09 1.33,-0.89 -0.49,-0.45 -0.4,-1.19 0.28,-1.42 0.38,-0.9 -1.27,0.13 -1.8,-0.18 -0.44,-0.38 -0.34,-0.92 0.1,-1.24 0.55,-0.68 -0,-1.5 -0.57,-1.94 -0.23,-0.39 -0.17,-0.91 -0.5,-1.23 -0.21,-0.51 0.46,-1.71 0.98,-0.98 0.8,0.8 1.8,-0.37 1.86,-1.2 0.1,-0.56 0.3,-0.23 0.46,0.09 0.91,0.46 2.05,0.14 2.88,-0.36 0.46,-0.39 1.14,0.1 1.52,-0.28 0.08,-1.52 1.79,-2.43 1.75,-3.99 1.03,-1.58 0.09,-3.98 1.76,-5.24 0.67,-0.79 0.03,-2.23 1.16,-2.67 0.67,-0.35 1.88,-0.68 2.13,0.33 0.23,0.69 1.19,0.78 1.4,0.01 0.28,-0.6 -0.04,-1.23 -0.07,-1.84 -0.3,-0.33 -1.17,0.01 -1,-0.71 -0.04,-1.4 -0.1,-2.85 -0.68,-4.11 0,-1.14 -1.73,-1.55 -1.63,-2.71 -0.27,-0.51 -1.01,-0.34 -1.05,0.24 -0.47,0.22 -0.99,-0.65 -1.54,-0.26 -0.87,0.33 -1.59,-0.97 -2.53,-0.59 -0.7,-0.07 -0.85,-1.1 -1.39,-1.47 -0.43,-0.63 -1.38,-0.57 -1.72,0.05 -0.49,0.13 -0.59,-0.67 -1.17,-0.5 -1,0.08 -1.64,-0.95 -2.68,-0.74 -1.25,-0.04 -2.56,0.03 -3.77,-0.18 -0.55,0.14 -1.14,0.47 -1.16,1.05 -0.34,0.63 -1.1,0.47 -1.59,0.76 -0.02,0.7 0.18,1.63 -0.54,2.12 -0.83,0.31 -0.58,1.33 -0.74,1.96 -0.51,0.37 -0.49,1.4 -1.32,1.17 -0.8,0.11 -1.86,-0.37 -2.52,0.18 -0.12,0.72 -1.23,0.29 -1.74,0.52 -0.87,0.08 -1.53,0.87 -1.43,1.75 -1.16,0.22 -2.69,-0.07 -3.6,0.81 -0.04,0.55 0.69,1.02 0.21,1.55 -0.19,0.4 0.58,1.1 -0.23,0.98 -0.87,-0.08 -1.7,0.36 -2.52,0.42 -0.57,-0.56 -0.96,-1.82 -2.01,-1.36 -0.4,-0.17 0.2,-0.75 0.06,-1.06 -0.31,-0.56 -0.58,-1.17 -0.89,-1.68 -0.72,-0.12 -1.16,0.65 -1.48,1.13 -0.75,-0.06 -0.6,-1.24 -1.34,-1.46 -0.36,-0.4 -1.16,-0.12 -1.43,-0.47 0.16,-0.76 0.79,-1.51 1.65,-1.21 0.67,-0.1 1.52,0.48 2,0.1 -0.24,-0.81 -0.08,-1.86 -0.57,-2.54 -0.49,-0.05 -1.02,1.08 -1.44,0.5 0.14,-0.72 -0.43,-1.35 -1.17,-1.23 -0.79,0.03 -2.1,-0.02 -2.06,-1.09 -0.42,-0.77 -1.25,0.36 -1.75,-0.37 -0.8,-0.28 -1.47,0.68 -2.3,0.43 -1,0.32 -2.27,0.67 -3.23,0.11 0.06,-0.64 -0.57,-0.94 -1.01,-1.29 -0.73,-0.57 -2,0.16 -2.59,-0.79 -1.11,-0.9 -1.73,-2.48 -3.13,-2.96 -0.08,-0.01 -0.16,-0.01 -0.24,0 z", + "department-76" : "m 62.31,0.11 c -0.73,-0.12 -0.81,1.11 -1.56,0.7 -0.81,-0.55 -1.62,-0.55 -2.26,0.28 -2.76,2.05 -4.86,5.06 -8.22,6.21 -2.33,0.84 -4.29,2.57 -6.85,2.67 -1.5,0.07 -3.05,0.03 -4.38,0.85 -2.08,0.86 -4.36,1.18 -6.44,2.07 -2.73,0.39 -5.63,0.15 -8.21,1.33 -2.95,1.05 -5.25,3.33 -8.19,4.45 -1.34,0.53 -2.65,1.19 -3.61,2.26 -1.16,0.82 -2.65,0.63 -3.82,1.48 -1.21,0.68 -2.75,0.75 -3.62,1.97 -1.46,1.38 -1.18,3.64 -2.15,5.28 -0.92,2.28 -2.41,4.38 -2.99,6.78 0.35,1.27 1.53,2.23 2.66,2.82 0.61,0.13 1.23,0.27 1.6,0.77 0.67,0.27 1.07,-0.83 1.71,-0.23 2.87,1.51 6.41,1.51 9.44,0.51 1.52,-0.43 2.94,-1.43 4.45,-1.66 1.73,0.78 2.43,3.15 4.35,3.63 0.78,0.16 1.3,-0.81 1.96,-0.82 0.04,0.43 -0.68,1.11 0.07,1.41 0.58,0.05 0.49,0.62 0.67,0.98 0.88,0.38 1.89,-0.01 2.73,-0.25 0.86,0.37 1.66,-0.94 2.45,-0.4 0.59,0.57 1.3,-0.06 1.28,-0.7 0.62,0.61 0.31,2.21 1.51,2.1 0.84,0.17 2.15,-0.48 2.29,0.7 0.19,0.78 0.85,0.19 1.27,0.01 0.6,0.48 0.37,1.57 0.73,2.23 0.16,0.28 0.37,0.66 -0.1,0.73 -1.04,0.2 -2.38,-0.62 -3.25,0.24 -0.2,0.88 1.18,0.85 1.66,1.31 0.3,0.26 -0.05,1.36 0.62,0.91 0.4,-0.4 0.99,-1 1.51,-1 0.34,0.56 0.6,1.24 1.06,1.67 -0.06,0.55 0.18,0.97 0.67,1.15 0.51,0.39 1,0.89 1.15,1.43 0.79,-0.1 1.55,-0.52 2.33,-0.59 0.2,-0.33 0.01,-0.77 0.32,-1.13 0.3,-0.53 -0.95,-1.03 -0.19,-1.35 0.98,-0.64 2.16,-0.63 3.25,-0.83 0.53,-0.47 0.55,-1.44 1.36,-1.61 0.22,-0.44 0.87,-0.19 1.23,-0.39 0.2,0.69 0.92,0.07 0.75,-0.43 -0.12,-0.64 0.73,0.05 1.05,-0.1 0.95,0.15 2.28,0.35 2.69,-0.8 0.4,-0.68 0.01,-2.06 1.06,-2.2 0.66,-0.53 0.24,-1.51 0.34,-2.16 0.71,-0.12 1.39,-0.55 1.63,-1.2 0.78,-0.14 1.35,-0.8 2.05,-1.01 0.16,0.85 1.42,0.45 2.02,0.6 1.11,-0.01 2.18,0.18 3.14,0.7 0.54,0.1 1.15,-0.01 1.52,0.47 0.5,-0.08 0.96,-0.76 1.53,-0.27 0.87,0.35 0.95,1.7 1.93,1.75 0.95,-0.28 1.71,1.21 2.58,0.48 0.45,-0.19 0.64,0.25 0.86,0.49 0.41,-0.07 0.63,-0.56 1.02,-0.72 0.68,-0.8 0.41,-1.99 1.33,-2.62 0.33,-0.81 1.28,-1.12 1.6,-1.93 -0.03,-0.48 0.18,-0.8 0.53,-1.05 0.31,-0.75 -1.1,-1.52 -1.36,-0.58 -0.23,0.3 -0.47,1.02 -0.92,0.51 -0.38,-0.18 -1.33,-0.73 -0.59,-1.14 0.72,-0.32 1.26,-1.6 0.24,-1.91 -0.55,-0.28 0.2,-1.16 -0.25,-1.6 -0.24,-0.46 -0.79,-0.45 -1.17,-0.51 -0.43,-0.37 -0.11,-0.66 0.39,-0.68 -0.05,-0.73 -1.01,-1.35 0.18,-1.91 0.69,-0.47 0.41,-1.35 -0.21,-1.71 -0.63,-0.56 0.6,-1 0.67,-1.59 0.02,-0.97 1.5,-1.01 1.25,-2.05 -0.12,-0.75 -0.95,-0.17 -1.06,0.28 -0.35,0.82 -1.33,0.36 -1.59,-0.25 0.4,-0.65 1.23,-1.17 1.05,-2.09 -0.1,-0.86 1.6,-0.51 1.29,-1.5 -0.01,-0.56 0.32,-1.2 0.98,-0.88 0.41,0.21 1.23,0.01 0.79,-0.54 -0.48,-0.54 -1.1,-0.89 -1.35,-1.63 -0.73,-1.23 -1.15,-2.62 -1.5,-3.96 0.24,-0.66 -0.36,-1.15 -0.25,-1.82 -0.25,-0.79 -1.2,-1.07 -1.43,-1.92 -1.23,-1.52 -3.66,-1.61 -4.6,-3.45 -0.28,-0.48 -0.44,-1 -1.04,-1.16 -0.91,-0.5 -1.48,-1.36 -2.11,-2.13 -0.98,-0.5 -1.77,-1.28 -2.66,-1.91 -0.07,-0.61 0.41,-1.73 -0.59,-1.83 -0.1,-0.03 -0.21,-0.04 -0.32,-0.02 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_24.js b/lib/mapael-maps/france/france_region_24.js new file mode 100644 index 000000000..08a263d3c --- /dev/null +++ b/lib/mapael-maps/france/france_region_24.js @@ -0,0 +1,41 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Centre for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_24 : { + width : 140.46022, + height : 171.25021, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -1.9679; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3228.8694; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-37" : "m 26.32,81.64 c -0.84,0.11 -0.47,1.14 -1.03,1.54 -0.49,0.61 -1.16,1.03 -1.95,0.94 -0.73,0.28 -1.16,1.18 -2.07,0.97 -0.78,0.12 -1.32,0.86 -2.19,0.71 -1.08,-0.1 -0.56,1.42 -1.46,1.55 -1.15,0.5 -1.59,-0.95 -2.39,-1.41 -0.58,0.14 -1.04,0.95 -1.12,1.45 0.83,0.58 1.52,1.61 1.58,2.58 -0.48,0.61 -1.22,1.02 -1.91,0.42 -0.98,-0.36 -1.46,-1.58 -2.63,-1.49 -0.84,0.07 -1.44,-0.46 -2.09,-0.89 -0.56,-0.34 -1.36,0.02 -1.1,0.76 0.12,0.69 0.06,1.42 -0.57,1.83 -0.39,0.67 -1.14,1.64 -0.66,2.41 0.32,0.32 1.1,0.31 0.82,0.96 -0.12,1.97 -2.06,3.42 -1.78,5.52 0.17,0.79 -0.18,1.47 -0.8,1.93 -0.35,0.52 0.2,1.28 0.63,1.52 -0.44,0.9 -1.77,1.38 -1.57,2.53 -0.28,0.83 -1.42,0.86 -1.59,1.8 -0.39,0.87 -1.3,1.58 -1.05,2.63 -0.79,1.23 -0.57,2.78 -0.76,4.16 -0.38,0.45 -0.96,1.17 -0.32,1.66 0.19,0.92 -0.86,2.02 0.09,2.81 0.5,0.04 0.61,0.47 0.63,0.92 -0.02,0.81 0.99,1.06 1.31,0.32 0.4,0.04 1.19,0.14 1.32,0.6 -0.27,0.86 0.83,1.2 1.37,0.68 0.37,-0.34 0.77,-0.45 0.84,0.18 0.3,0.63 0.66,1.39 -0.05,1.9 -0.47,0.31 -0.55,1.34 0.23,1.02 0.44,0.03 0.71,0.76 1.21,0.29 0.53,-0.55 1.37,-1.21 2.1,-0.65 0.09,0.45 -0.17,1.52 0.64,1.3 0.46,-0.17 1.15,-0.58 1.37,0.14 0.27,0.54 0.3,1.2 -0.11,1.64 -0.28,0.58 0.32,1.14 0.18,1.66 -0.7,0.61 0.02,1.44 -0.14,2.2 -0.13,0.77 0.32,2.22 1.33,1.88 0.74,-0.22 1.18,-1.34 2,-0.74 0.91,0.12 1.8,0.92 2.72,0.73 1.28,-1.37 3.3,-1.72 5.11,-1.53 0.69,-0.15 1.84,0.34 2.29,-0.36 0.16,-0.99 -1.5,-0.85 -1.29,-1.87 -0.03,-0.34 -0.62,-0.9 0.05,-0.91 0.68,0.02 1.64,-0.41 2.21,0.09 0.16,0.78 0.82,1.08 1.52,1.18 0.47,0.73 1.81,0.33 1.91,1.36 0.57,1.39 0.37,2.94 0.79,4.35 0.72,0.79 1.19,2.08 2.3,2.37 0.66,-0.13 0.05,0.95 0.77,0.88 0.33,-0.02 1.08,0.05 0.6,0.49 -0.28,0.75 0.96,0.74 0.83,1.5 0.13,0.88 0.24,1.79 0.82,2.46 0.16,0.88 1.05,1.5 1.75,1.97 0.95,0.14 2.1,-0.66 2.96,-0.02 0.31,0.38 0.73,1.47 1.31,0.8 0.53,-0.31 0.63,-1.17 1.19,-1.35 1,0.41 1.39,-0.08 0.74,-0.9 -0.15,-0.53 0.04,-1.21 -0.61,-1.49 -0.27,-0.63 0.94,-0.77 0.81,-1.47 -0.11,-0.86 0.63,-1.51 0.51,-2.36 0.33,-1.87 0.68,-3.75 0.87,-5.64 0.75,-0.38 1.45,-1.3 0.88,-2.14 -0.67,-0.85 0.43,-1.74 0.81,-2.44 0.32,-0.76 1.35,-1.17 2.15,-1.21 1,-0.03 1.98,-1.2 2.95,-0.65 0.55,0.72 1.53,0.74 2.17,1.32 0.81,0.1 1.34,-0.87 1.72,-1.46 0.24,-1.08 1.08,-1.98 1.95,-2.55 0.13,-0.49 -0.28,-1.51 0.45,-1.65 1.25,0.5 2.15,-1.06 1.74,-2.12 -0.52,-1.07 -0.67,-2.29 -1.46,-3.21 -1.1,-1.96 -1.95,-4.09 -3.66,-5.61 -0.48,-0.44 -0.4,-1.6 -1.33,-1.45 -0.56,0.88 -2.01,0.18 -2.53,1.18 -0.49,0.18 -1.05,-0.91 -1.64,-1.16 -0.42,-0.35 -1.14,-0.21 -1.19,-0.93 -0.13,-0.61 -0.71,-1.47 0.03,-1.92 0.52,-0.6 0.92,-1.58 0.17,-2.16 -0.2,-0.65 0.97,-0.98 0.49,-1.67 -0.28,-0.9 -1.09,-1.64 -1.39,-2.44 0.81,0.11 1.91,-0.31 1.82,-1.28 -0.19,-0.83 -1.04,-1.03 -1.75,-0.89 0.02,-1.36 -1.09,-2.47 -1.12,-3.84 -0.31,-0.32 -1.3,-0.65 -0.71,-1.24 0.19,-0.65 1.31,-0.98 1.07,-1.72 -1.09,-0.46 -1,-2.17 -2.04,-2.74 -0.88,-0.08 -0.63,1.23 -1.2,1.49 -0.79,-0.25 -0.91,-1.17 -0.72,-1.88 -0.23,-0.93 -1.41,-0.84 -2.17,-0.96 -0.99,-0.44 -1.66,0.71 -1.8,1.51 -0.48,0.16 -1.25,0.47 -1.67,0.17 -0.08,-0.56 -0.98,-0.94 -0.45,-1.52 0.75,-0.47 -0.4,-1.06 -0.35,-1.48 0.09,-0.76 0.88,-1.6 0.58,-2.35 -0.57,-0.11 -1.05,0.64 -1.68,0.29 -1.29,0 -2.44,-0.5 -3.65,-0.89 -0.56,-0.16 -1.07,0.33 -1.33,0.63 -0.84,-0.14 -1.49,-1.53 -2.27,-0.47 -0.28,0.32 -1.04,0.41 -0.8,-0.22 0.17,-0.41 -0.04,-0.94 -0.54,-0.89 z", + "department-28" : "m 64.97,0.15 c -1.16,-0.15 -1.07,1.39 -0.65,2.06 0.63,0.9 0.3,2.34 -0.87,2.57 -0.64,0.64 -1.86,0.16 -2.24,1.1 -0.57,0.74 -1.97,1.25 -1.53,2.45 0.36,0.66 1.18,2.09 -0.07,2.3 -0.75,0.32 -1.23,1.71 -2.21,1.06 -0.88,-0.71 -1.79,0.6 -2.65,0.25 -0,-0.74 -1.31,-0.7 -1.33,-0.02 -0.84,-0.1 -1.55,-0.96 -2.49,-0.63 -1.02,0.31 -1.07,-1.52 -2.08,-1.08 -0.37,0.55 0.06,1.38 -0.3,1.98 -0.19,1.04 -1.25,-0.03 -1.86,0.26 -0.37,0.37 -0.79,-0.59 -1.18,0.04 -0.45,0.34 -0.71,0.96 -0.79,1.43 -0.75,-0.29 -1.31,0.35 -2.06,0.18 -0.79,-0.2 -1.4,0.27 -1.91,0.79 -0.83,0.44 -1.97,0.47 -2.71,-0.12 -1.23,0.04 -0.64,1.9 -1.73,2.19 -0.72,0.13 -2.01,0.62 -1.65,1.57 0.41,0.52 0.31,1.26 0.62,1.8 -0.19,0.42 -0.69,1.28 0.12,1.36 1.03,-0.05 0.58,1.35 1.19,1.85 0.56,0.9 1.78,0.62 2.52,1.31 0.41,0.29 1.5,0.8 0.85,1.39 -0.19,0.88 1.22,0.86 1.66,1.37 0.03,0.67 -0.77,1.07 -0.73,1.68 0.41,0.51 0.18,1.37 -0.5,1.41 -0.38,0.87 0.55,1.84 1.29,2.22 0.79,0.18 -0.33,0.79 -0.51,1.14 -0.64,0.42 -0.17,1.28 -0.55,1.75 -0.85,0.55 -1.22,1.7 -2.22,2.02 -0.3,0.47 -0.66,0.84 -1.26,0.83 -0.88,0.53 -1.86,0.76 -2.87,0.69 -0.65,0.05 -1.06,0.49 -1.26,1.04 -0.26,0.48 -0.88,1.26 -0.44,1.75 0.54,0.1 1.24,0.45 1.46,0.9 -0.66,0.67 -0.76,1.77 -0.16,2.56 0.46,0.82 1.21,1.69 1.38,2.58 -0.47,0.36 -1.25,0.79 -1.27,1.38 0.81,0.81 1.7,1.68 2.93,1.63 0.92,0.27 2.22,0.82 2.32,1.88 -0.8,0.54 -2.12,-0.07 -2.77,0.7 0.12,0.48 -0.6,1.04 -0.15,1.39 0.97,-0.35 1.99,0.57 2.9,-0.11 0.57,-0.42 1.45,-0.58 1.54,0.3 0.76,0.12 1.13,-0.98 1.74,-1.31 0.62,-0.7 2.61,-1.15 2.71,0.15 -0.56,0.78 -1.83,0.87 -2.2,1.79 0.48,0.67 1.62,0.29 2.35,0.47 0.73,-0.15 1.03,0.7 1.75,0.47 0.45,-0.1 1.52,-0.32 1.1,0.53 -0.2,1.39 0.88,2.77 2.3,2.88 0.38,0.38 0.11,1.2 0.69,1.52 0.97,0.29 0.64,1.59 1.35,2.07 0.8,-0.02 1.83,-0.86 2.43,0.09 0.46,0.65 1.28,0.16 1.84,0.36 0.15,0.49 0.61,1 1.17,0.65 0.57,-0.18 1.24,-0.57 1.74,-0.08 0.79,0.02 0.58,-1.66 1.41,-1.36 0.54,0.86 2.29,0.27 1.94,-0.81 -0.07,-0.38 -0.38,-1.56 0.38,-1.35 1.17,0.27 1.9,1.59 3.08,1.68 0.69,-0.68 0.03,-1.86 0.2,-2.72 0.21,-0.52 1.01,-0.61 1.31,-1.12 0.77,0.03 1.79,1.14 2.38,0.22 0.56,-0.32 1.27,-0.63 1.18,-1.42 0.25,-0.62 1.19,-0.72 1.76,-0.85 0.19,0.5 0.82,0.67 1.02,0.08 0.32,-0.69 0.87,0.36 1.37,0.24 1.32,0.21 2.91,-0.05 3.91,-0.96 0.13,-0.61 0.99,0.09 1.39,-0.01 0.39,-0.1 0.73,-0.29 1.15,-0.18 0.5,-0.31 0.97,-0.72 1.41,-1.11 0.43,-0.62 0.36,-1.59 1.15,-1.9 0.33,-0.29 0.37,-0.84 -0.07,-0.98 -0.63,-0.73 0.38,-1.49 1.02,-1.7 0.47,-0.18 1.63,0.31 1.65,-0.45 -0.05,-0.46 -0.88,-0.78 -0.54,-1.24 0.39,0.08 1.04,-0.02 0.72,-0.56 -0.49,-0.94 -0.57,-2.2 -0.2,-3.15 0.53,-0.41 1.53,-1.4 0.85,-2.04 -0.4,-0.02 -0.49,-0.59 -0.87,-0.62 -0.39,-0.4 -0.53,-1.15 0.21,-1.24 0.65,-0.72 -0.32,-1.7 0.13,-2.52 0.36,-0.71 0.47,-1.58 -0.31,-1.98 0.07,-0.46 0.5,-1.26 -0.25,-1.4 -0.57,-0.13 -1.78,0.25 -1.57,-0.74 0.42,-0.62 0.81,-1.83 -0.05,-2.24 -0.69,0.03 -1.17,0.79 -1.94,0.57 -1.08,0 -1.89,-0.74 -2.39,-1.62 -0.46,-0.31 -1.26,0.18 -1.48,-0.54 -0.68,-1.48 -1.44,-3.2 -0.81,-4.84 -0.16,-0.65 -0.78,-1.12 -1.1,-1.7 -0.76,-0.38 -2.17,0.17 -2.48,-0.88 -0.16,-0.67 0.84,-1.31 0.41,-1.81 -0.6,0.07 -1.15,0.01 -1.63,-0.26 -0.59,0.25 -1.01,-0.29 -0.98,-0.83 -0.55,-0.41 -0.5,-1.54 -1.4,-1.48 -0.88,-0.32 -1.38,-1.33 -0.79,-2.14 0.01,-0.65 -1.83,-0.83 -0.92,-1.54 0.17,-1.09 1.44,-1.7 1.54,-2.79 -0.34,-0.69 -1.32,-0.68 -1.76,-1.15 0.02,-0.86 -0.52,-1.65 -0.2,-2.53 0.26,-0.58 0.37,-1.17 0.25,-1.81 0.44,-0.27 0.28,-0.9 -0.23,-0.89 0.28,-0.7 -0.24,-1.54 -1.02,-1.33 -0.76,-0.39 -0.08,-0.94 0.04,-1.45 -0.14,-0.67 -0.99,-1.1 -0.75,-1.86 -0.09,-0.69 -0.95,-0.41 -1.29,-0.59 C 66.53,0.07 65.8,0.06 64.97,0.15 z", + "department-45" : "m 98.31,39.76 c -0.62,0.3 -0.95,1.06 -1.13,1.64 -0.42,-0.01 -1.51,-0.01 -0.94,0.65 0.4,0.49 -0.67,0.45 -0.92,0.46 -0.38,-0.06 -1.06,0.14 -1.33,-0.13 -0.11,-0.77 -0.75,0.07 -1.09,0.21 -0.66,0.13 -1.37,0.14 -1.94,0.54 -0.7,0.35 -1.63,-0.11 -2.27,0.32 -0.25,0.67 -0.47,1.38 -1.1,1.81 -0.7,1.17 -0.02,2.61 0.19,3.8 -0.54,0.27 -0.67,0.87 -0.23,1.29 0.25,0.76 -0.98,0.37 -1.38,0.51 -0.66,0.04 -1.53,0.48 -1.58,1.14 0.54,0.28 0.83,0.79 0.41,1.3 -0.19,0.52 -0.88,0.55 -0.9,1.2 -0.04,0.86 -0.81,1.22 -1.32,1.77 -0.09,0.74 -1.07,-0.08 -1.35,0.49 -0.61,0.05 -1.66,-0.73 -1.84,0.26 -0.47,0.29 -1.16,0.32 -1.67,0.6 -1.06,0.23 -2.23,0.15 -3.18,-0.35 -0.42,0.11 -0.66,0.98 -1.13,0.36 -0.72,-0.55 -2.01,-0.02 -1.95,0.94 -0.1,0.61 -0.67,0.77 -1.15,0.91 -0.13,0.31 -0.36,1.02 -0.76,0.53 -0.49,-0.08 -1.32,-0.82 -1.65,-0.2 0.03,0.69 -1.26,-0.18 -1.23,0.64 0.06,0.85 -0.02,1.91 0.32,2.62 0.53,0.12 1.43,-0.67 1.76,-0.05 0.31,0.8 -0.58,1.19 -0.61,1.88 0.3,0.73 -0.98,0.39 -1.07,1.04 -0.4,0.82 0.55,1.19 1.14,1.44 1.12,0.59 1.41,1.87 1.57,3 -0.32,1.41 -2.18,1.9 -2.47,3.3 0.2,1.04 1.98,1.52 1.58,2.71 -0.4,0.4 -0.99,1.09 -0.29,1.54 0.82,0.38 1.41,1.76 2.44,1.47 0.49,-0.23 0.25,-1.53 0.98,-1.07 0.95,0.48 1.85,1.12 2.93,1.2 0.96,0.64 0.98,2.08 1.28,3.12 0.28,0.97 0.52,2.32 1.78,2.36 0.39,0.08 0.74,0.21 0.68,0.63 0.23,0.59 0.94,0.4 1.01,-0.15 0.52,-0.69 1.93,-0.53 1.72,-1.72 -0.12,-0.56 0.37,-1.43 0.97,-0.98 0.21,1.08 1.61,0.57 2.37,0.69 0.59,-0.04 1.34,0.03 1.3,0.75 0.74,0.65 2.04,0.17 2.65,-0.47 0.63,-0.71 1.76,0.02 2.58,-0.21 0.8,-0.38 1.77,-0.35 2.53,0.14 0.49,-0.01 0.93,-0.51 1.4,-0.04 0.89,0.75 1.95,-0.33 2.85,-0.09 -0.08,0.51 0.31,0.72 0.69,0.85 0.7,0.65 0.89,1.6 1.09,2.46 0.75,0.52 1.91,-0.79 2.45,0.21 0.82,0.9 2.21,0.95 2.84,2.04 0.98,0.64 1.87,-0.7 2.78,-0.87 0.61,-0.33 1.32,-0.4 1.58,0.39 0.57,0.76 1.23,1.52 2,2.03 1.16,-0.37 2.74,-0.69 3.57,0.46 0.67,0.23 1.34,0.54 1.65,1.24 0.29,0.48 0.04,1.22 0.75,1.43 0.61,0.3 1.38,0.66 1.28,1.47 0.06,1.3 1.7,1.03 2.49,0.62 0.98,-0.6 0.29,-2.05 0.7,-2.95 0.17,-0.6 0.63,0.37 0.91,0.41 0.74,0.23 1.52,0.5 1.92,1.27 0.23,0.74 1.11,1.14 1.7,0.54 0.58,-0.6 1.25,-1.09 2.09,-1.2 -0.04,-0.61 -1.7,-1.29 -0.88,-1.95 0.67,-0.15 1.37,-0.27 2.04,-0.49 0.56,-0.25 0.96,-0.92 1.65,-0.49 0.49,0.22 1.66,0.41 1.51,-0.47 -0.04,-0.72 -0.62,-1.13 -1.02,-1.57 -0.26,-0.88 -0.5,-1.9 -0.37,-2.8 0.81,-0.37 0.57,-1.45 -0.31,-1.44 -0.78,-0.52 -0.13,-1.71 -1.04,-2.12 -0.52,-0.39 -1.34,-0.74 -1.18,-1.52 -0.36,-0.49 -0.93,0.62 -1.26,-0.09 -0.52,-0.87 0.31,-1.8 0.13,-2.75 0.03,-0.88 1.52,-0.46 2.22,-0.69 0.83,-0.02 1.82,0.21 2.39,-0.51 0.86,-0.61 1.9,-0.88 2.91,-1.03 0.36,-0.46 0.24,-1.26 -0.15,-1.65 -0.11,-0.47 -0.41,-1.21 0.27,-1.34 0.86,-0.61 0.12,-1.79 -0.75,-1.85 -0.46,-0.05 -0.54,-0.41 -0.14,-0.62 0.39,-0.58 0.06,-1.35 0.42,-1.94 0.2,-0.61 1.24,-0.34 1.59,-0.92 0.42,-0.86 1.43,-1.22 1.98,-1.93 0.82,-0.28 0.91,-1.31 1.54,-1.8 0.05,-0.98 -0.15,-2.16 -0.89,-2.85 -0.27,-0.49 0.28,-0.63 0.44,-0.93 -0.31,-0.46 -1,-0.68 -1.12,-1.32 -0.47,-0.89 -2.05,-0.91 -1.92,-2.15 -0.1,-0.65 -0.46,-1.21 -0.61,-1.85 -0.19,-0.38 -1.02,-0.12 -0.74,-0.74 0.61,-0.73 -0.31,-1.57 -1.06,-1.39 -0.33,-0.68 -1.34,-0.38 -1.75,-1.02 -0.81,-0.78 -2.08,0 -3.07,0.03 -1.53,0.1 -2.46,2.25 -4.06,1.67 -0.46,-0.63 0.05,-1.43 0.12,-2.05 -0.63,-0.42 -1.69,-0.14 -2.22,0.35 -0.14,0.37 0.17,0.88 -0.42,0.97 -0.99,0.26 -1.53,1.42 -2.65,1.22 -0.54,-0.04 -1.05,0.64 -1.44,0.01 -0.47,-0.6 -1.22,-1.04 -1.97,-0.59 -0.7,0.25 -1.52,0.29 -2.06,-0.25 -0.85,-0.34 -1.7,0.17 -2.3,0.72 -1.01,0.04 -2.06,-0.22 -3.01,0.2 -0.66,0.05 -0.42,-0.7 0.02,-0.87 0.79,-0.34 0.72,-1.68 1.57,-1.82 0.47,0.46 1.36,0.11 1.05,-0.59 -0.42,-0.9 0.64,-1.7 0.26,-2.66 0.02,-0.46 -0.26,-0.86 -0.45,-1.16 -0.13,-0.66 -1.14,-0.19 -1.28,-0.92 -0.54,-0.97 -2.23,-0.07 -2.57,-1.3 -0.34,-1.07 0.17,-2.63 -0.9,-3.34 -0.8,0.15 -1.79,0.82 -2.48,0.01 -0.45,-0.32 -1.11,-1.52 -1.65,-0.75 -0.36,0.54 -0.61,1.59 -1.45,0.93 -0.7,-0.3 -1.04,0.81 -1.56,0.81 -0.05,-0.42 -0.07,-0.95 -0.38,-1.2 0.42,-0.92 -0.79,-0.85 -1.2,-1.35 -0.08,-0.06 -0.2,-0.09 -0.3,-0.07 z", + "department-41" : "m 44.14,53.49 c -1.43,0.14 -2.26,1.6 -3.36,2.2 -0.25,-0.38 -0.54,-1.18 -1.11,-0.7 -1.14,0.83 -2.78,-0.17 -3.93,0.59 -0.12,0.43 0.58,0.46 0.35,1 0.11,0.69 -0.45,1.1 -1.09,0.95 -1.17,-0.38 -1.18,0.64 -1.05,1.49 0.02,0.84 0.92,1.17 1.61,0.9 0.83,1.04 -0.37,2.32 -0.56,3.35 0.55,0.77 1.28,1.79 1.1,2.78 -0.62,0.31 -1.59,0.46 -1.57,1.39 -0.15,0.64 0.34,1.46 0.09,2 -0.67,-0.05 -0.85,-0.78 -1.24,-1.14 -0.7,0.1 -1.64,0.62 -1.24,1.47 0.03,0.89 0.21,1.79 0.65,2.55 0.04,0.57 -0.11,1.15 -0.77,1.13 -0.77,0.22 -0.51,1.19 -1.13,1.58 -0.46,0.54 -0.96,1.13 -1.61,1.32 -0.32,0.44 0.68,1.22 -0.1,1.39 -0.7,-0.1 -1.46,-0.11 -1.91,0.55 -0.5,0.45 -1.61,0.29 -1.57,1.2 -0.2,0.65 -0.72,1.05 -1.34,1.23 -0.46,0.57 0.2,1.29 0.39,1.85 0.79,0.27 1.06,-1.48 1.85,-1.04 0.43,0.26 0.61,0.75 0.48,1.21 0.55,0.38 0.91,-1 1.51,-0.41 0.63,0.52 1.35,1.04 1.96,0.2 0.91,-0.53 1.83,0.6 2.78,0.57 1.14,0.28 2.41,0.43 3.4,-0.31 0.49,-0.11 -0.02,0.83 -0.01,1.04 -0.18,0.86 -1.05,1.87 -0.08,2.51 0.24,0.37 0.08,0.73 -0.24,0.88 -0.07,0.89 1.24,1.78 1.85,0.94 0.14,-0.67 0.77,-1.13 1.16,-1.65 0.71,0.2 1.45,0.29 2.18,0.25 0.27,0.38 0.81,0.35 1.12,0.59 -0.1,0.76 -0.42,1.65 0.25,2.3 0.52,-0.35 0.63,-2.05 1.66,-1.42 0.69,0.76 1.03,1.95 1.99,2.39 0.15,1.02 -1.2,1.55 -1.26,2.45 0.54,0.57 1.15,1.13 1.15,1.96 0.39,0.85 0.52,2.17 1.5,2.51 0.65,0.08 0.89,0.88 1.27,1.29 -0.41,0.66 -1.02,1.14 -1.7,1.45 0.04,0.55 0.65,0.98 0.79,1.57 0.23,0.48 0.64,1.08 0.03,1.47 -1.11,0.8 1.18,1.47 -0.12,2.42 -0.62,0.82 -0.84,2.33 0.23,2.87 0.86,0.13 1.29,1 1.89,1.49 0.35,-0.44 0.75,-0.99 1.4,-0.68 0.79,0.12 1.42,-0.91 2.15,-0.21 0.71,0.31 0.28,1.33 0.99,1.71 1.45,0.8 1.8,2.63 2.63,3.95 0.26,1.22 1.6,0.49 2.36,0.21 1.65,-0.56 2.48,-2.58 4.36,-2.51 0.58,-0.1 1.13,0.03 1.6,0.27 0.55,-0.22 1.38,1.21 1.45,0.25 0.03,-0.58 -0.69,-1.7 0.27,-1.82 0.75,-0.37 1.71,0.06 2.4,-0.38 0.03,-0.47 0.31,-0.89 0.87,-0.8 0.68,0.08 1.66,-0.04 2.1,0.55 0.21,0.84 1.41,0.35 1.95,0.12 0.51,-0.12 0.99,-1.2 1.35,-0.27 0.85,0.81 1.54,2.39 2.89,2.35 0.87,-0.49 1.58,0.73 2.43,0.84 0.81,-0.13 1.32,1.11 2.13,0.57 0.66,-0.21 1.61,-1.24 0.98,-1.87 -0.43,-0.09 -1.03,-0.57 -0.49,-0.96 0.47,-0.31 1.09,-0.57 1.14,-1.21 0.37,-0.82 0.98,-1.43 1.75,-0.58 0.84,0.6 1.8,1.33 2.91,0.9 1.17,-0.46 2.31,-1.31 3.65,-1.01 0.47,0.24 1.16,0.52 1.35,-0.19 0.43,-0.48 1.18,-1.19 0.49,-1.81 -0.44,-0.6 -1.39,-1.11 -1.04,-1.98 0.03,-0.71 -0.4,-1.47 -1.07,-1.62 -0.16,-1.2 0.65,-2.28 0.83,-3.37 0.49,0.3 0.94,1.18 1.47,0.39 0.58,-0.44 1.16,-1.05 1.81,-1.32 0.41,0.66 0.56,2.01 1.66,1.68 1.03,-0.14 0.92,-1.63 0.83,-2.41 -0.52,-0.97 0.3,-2.38 -0.45,-3.26 -0.57,-0.25 -1.12,0.49 -1.61,0.4 0.08,-1.02 0.94,-2.09 0.23,-3.13 -0.18,-1.28 -1.73,-0.64 -2.63,-0.92 -0.55,0.02 -1.19,-0.32 -0.99,-0.97 0.19,-0.48 -0.58,-1.34 0.18,-1.49 0.97,-0.83 2.18,-1.22 3.39,-1.58 0.82,-0.28 2,-0.82 1.6,-1.9 -0.14,-0.68 -0.61,-1.52 -1.35,-1.57 0.03,-0.44 -0.18,-1.09 -0.74,-0.72 -0.93,0.33 -1.91,0.14 -2.8,-0.1 -0.44,0.13 -0.87,0.68 -1.26,0.1 -0.52,-0.46 -1.27,-0.49 -1.76,-0.04 -1.01,0.22 -2.51,-0.65 -3.08,0.57 -0.31,0.37 -0.9,0.04 -1.26,0.41 -0.66,0.26 -1.4,-0.08 -1.53,-0.8 -0.51,-0.49 -1.33,0.05 -1.96,-0.19 -0.57,-0.08 -1.45,0.03 -1.53,-0.71 -0.64,-0.38 -0.63,0.83 -0.65,1.19 0.2,1.14 -1.5,0.63 -1.87,1.56 -0.13,0.68 -0.85,0.63 -1.11,0.07 -0.14,-1.01 -1.73,-0.48 -1.97,-1.48 -0.11,-0.74 -0.77,-1.37 -0.71,-2.11 0.09,-0.76 -0.41,-1.44 -0.55,-2.15 -0.71,-0.83 -2.02,-0.37 -2.72,-1.24 -0.31,-0.4 -1.15,-0.68 -1.2,0.07 -0.21,0.79 -1.26,1.24 -1.93,1.32 0.02,-0.36 0.79,-0.58 0.32,-1.01 -0.6,-0.63 -1.31,-1.16 -1.97,-1.74 0.8,-0.54 1.29,-1.76 0.42,-2.48 -0.32,-0.4 -0.93,-0.67 -1.32,-0.88 0.14,-1.71 2.49,-2.29 2.63,-4 -0.42,-0.72 -0.19,-1.75 -1.04,-2.24 -0.49,-0.64 -1.99,-0.64 -1.75,-1.7 0.09,-0.69 1.09,-0.73 1.15,-1.45 0.44,-0.37 1.05,-1.42 0.29,-1.72 -1.24,0.29 -2.73,0.45 -3.63,-0.59 -0.47,-0.2 -1.14,-1.23 -1.63,-0.69 -0.4,0.78 0.48,2.24 -0.75,2.28 -0.55,0.33 -1.03,-0.03 -1.53,-0.22 -0.63,0.15 -0.45,1.45 -1.14,1.39 -0.82,-0.8 -1.8,0.34 -2.66,0.04 -0.19,-0.79 -1.02,-0.81 -1.68,-0.62 -0.63,-0.03 -0.76,-1.08 -1.52,-0.86 -0.57,-0.05 -1.39,0.88 -1.83,0.32 -0.07,-0.84 -0.27,-1.83 -1.13,-2.18 -0.5,-0.49 -0.29,-1.43 -1.16,-1.55 -0.81,-0.24 -1.54,-0.83 -1.54,-1.71 -0.58,-0.5 0.22,-2.01 -1,-1.54 -0.46,0.11 -0.99,0.21 -1.27,-0.26 -1.01,-0.45 -2.49,0.19 -3.26,-0.74 0.28,-1.07 1.9,-1.1 2.33,-2.04 -0.1,-0.36 -0.62,-0.53 -0.95,-0.51 z", + "department-36" : "m 70.62,110.2 c -0.72,0.12 0.12,1.45 -0.88,1.04 -0.76,0.1 -2.19,-0.34 -2.48,0.65 -0.03,0.6 0.44,1.31 0.2,1.84 -0.74,-0.15 -1.32,-0.9 -2.15,-0.98 -1.28,-0.5 -2.59,0.19 -3.4,1.17 -1.02,0.85 -2.2,1.58 -3.51,1.81 -0.41,0.59 0.63,1.09 0.66,1.7 0.45,1.19 1.29,2.94 0.09,3.96 -0.45,0.49 -1.68,-0.08 -1.58,0.87 0.13,0.61 -0.08,1.38 -0.8,1.39 -0.37,0.4 -0.67,0.91 -0.98,1.38 0.01,1.07 -1.06,1.92 -1.99,2.28 -0.47,-0.03 -0.69,-0.76 -1.24,-0.75 -0.69,-0.18 -1.13,-1.11 -1.96,-0.76 -0.98,0.28 -1.84,0.92 -2.87,0.93 -0.88,0.21 -1.04,1.25 -1.62,1.73 -0.66,0.43 -0.6,1.35 -0.17,1.91 0.22,0.76 -0.25,1.54 -0.97,1.79 -0.39,0.99 -0.12,2.18 -0.45,3.2 -0.42,1.35 -0.26,2.8 -0.81,4.1 -0.06,0.74 -0.37,1.42 -0.9,1.92 0.05,0.49 0.65,0.82 0.45,1.37 -0.04,0.49 0.69,1.14 0.28,1.54 -0.47,0.1 -1.23,-0.32 -1.38,0.34 -0.39,0.43 -0.97,1.32 -1.63,1.04 -0.33,-0.65 -0.85,-1.32 -1.68,-1.13 -0.52,-0.07 -1.82,0.12 -1.3,0.9 0.66,0.23 1.44,0.59 1.62,1.36 0.06,0.75 1.04,1.75 0.04,2.26 -0.45,0.72 0.09,1.65 -0.03,2.38 -0.72,0.64 -0.81,1.64 -0.32,2.46 0.14,0.7 0.75,1.05 1.33,1.29 0.13,1.01 1.31,1.23 2.14,1.39 0.35,0.47 0.97,0.28 1.42,0.33 0.48,0.5 0.26,1.37 0.73,1.83 1.26,0.38 2.83,-0.4 3.82,0.76 0.52,0.55 1.37,1.07 1.62,1.76 -0.76,0.52 -0.17,1.3 0.08,1.91 -0.84,0.43 -0.12,1.43 0.51,1.65 0.48,0.26 1.25,0.42 1.19,1.11 0.29,0.31 0.93,-0.58 1.12,-0.07 -0.29,0.73 -0.77,1.43 -0.8,2.21 -0.11,0.38 -0.94,0.88 -0.46,1.23 0.43,0.09 1.06,-0.94 1.33,-0.32 -0.19,0.78 0.79,1.61 1.37,0.85 0.78,-1.03 2.63,0.64 3.16,-0.78 0.06,-0.37 -0.03,-0.77 0.49,-0.81 0.61,-0.25 1.34,-0.6 1.75,0.14 0.92,0.86 1.78,1.85 2.49,2.86 0.93,0.03 0.91,-1.44 1.82,-1.6 0.65,-0.49 0.98,-1.29 1.72,-1.65 0.58,-0.47 0.76,-2.04 1.75,-1.61 0.71,0.34 0.65,1.21 0.72,1.85 0.65,-0.17 1.18,-0.89 1.92,-0.94 0.41,-0.29 1.01,-1.23 1.41,-0.45 -0.26,0.74 0.02,2.25 1.09,1.84 0.72,-0.45 0.99,-1.59 1.81,-1.85 0.61,0.5 0.89,1.71 1.8,1.71 1.26,-0.76 1.72,-2.42 1.28,-3.78 0.87,-0.51 2.26,-0.62 2.79,0.45 0.36,0.61 1.35,1.28 1.9,0.55 0.53,-0.01 1.17,0.16 1.55,-0.3 0.62,-0.29 1.36,-0.34 1.85,0.18 1.02,0.22 2.18,-0.72 3.06,0.15 1.4,0.69 3.16,0.49 4.4,1.51 0.67,0.09 0.95,-0.86 1.67,-0.69 0.51,0 1.55,-0.07 1.27,-0.84 -0.27,-0.64 -0.43,-1.58 0.4,-1.87 0.73,-0.4 2.12,-0.92 1.57,-2.01 -0.13,-0.65 -0.88,-0.96 -0.75,-1.67 -0.11,-0.97 -1.05,-1.78 -0.98,-2.73 0.92,-0.67 -0.18,-2.01 0.72,-2.73 0.51,-0.76 0.13,-1.71 0.39,-2.53 -0.37,-0.5 -1.11,-0.67 -1.5,-1.22 -0.3,-0.38 -1.13,-0.85 -0.51,-1.34 0.95,-0.67 -0.16,-1.4 -0.72,-1.86 -0.56,-0.42 -1.91,0.13 -1.73,-0.96 -0.13,-0.8 -1.71,-1.6 -0.55,-2.27 1.04,-0.09 2.13,-1.53 1.26,-2.43 -0.79,-0.94 -2.22,-1.61 -2.43,-2.9 0.55,-0.23 1.35,-0.16 1.62,-0.85 0.38,-0.58 -0.07,-1.55 0.84,-1.76 0.99,-0.43 2.24,-1.33 2.1,-2.54 -0.67,-0.52 -1.72,0.31 -2.35,-0.4 -0.78,-0.46 -1.77,-1.21 -1.27,-2.25 0.57,-0.44 0.92,-1.08 0.93,-1.83 0.13,-0.66 0.99,-1.41 0.2,-1.98 -0.84,-0.83 -1.8,-1.63 -2.85,-2.07 -0.47,-0.95 1.03,-1.65 0.85,-2.66 -0.08,-0.43 0.01,-1.75 -0.75,-1.4 -0.23,0.45 -1.18,0.94 -1.34,0.21 -0.07,-0.71 -0.38,-1.82 -1.34,-1.46 -1.04,0.04 -1.78,1.03 -2.74,1.17 -0.77,-0.29 -1.57,0.61 -2.3,-0.02 -0.99,-0.36 -1.77,-1.39 -2.92,-1 -0.46,-0.07 -0.99,-0.4 -1.18,-0.77 0.63,-0.79 1.4,-1.52 1.79,-2.43 0.33,-0.52 1.2,-0.53 1,-1.33 -0.08,-0.95 0.31,-2.22 -0.89,-2.57 -0.44,-0.35 -1,-0.58 -1.5,-0.27 -1.44,-0.31 -2.16,-1.8 -3.13,-2.74 -0.78,0.68 -2.15,1.29 -3.08,0.61 -0.11,-0.9 -1.4,-0.45 -2.01,-0.72 -0.08,-0.01 -0.15,-0.01 -0.23,0 z", + "department-18" : "m 101.75,86.94 c -1.92,0.11 -3.54,1.27 -5.37,1.69 -0.93,0.41 -2.09,1.18 -1.66,2.37 -0.17,1.33 1.48,0.72 2.29,0.94 1.18,-0.17 1.51,1.19 1.65,2.07 -0.01,0.57 -1,1.81 0.08,1.6 0.44,-0.12 1.76,-0.16 1.38,0.62 -0.42,1.62 0.58,3.54 -0.44,5.01 -0.55,0.42 -1.65,0.44 -1.74,-0.45 -0.14,-0.51 -0.61,-1.32 -1.12,-0.63 -0.62,0.31 -1.11,1.23 -1.81,1.24 -0.47,-0.51 -1,-0.01 -1.07,0.53 -0.22,0.6 -0.86,1.75 0.06,2.01 0.61,0.65 0.62,1.55 0.68,2.35 0.38,0.74 1.43,1.31 1.35,2.19 -0.66,0.46 -1.11,1.9 -2.14,1.23 -1.54,-0.67 -2.86,0.9 -4.31,1.06 -1.34,0.13 -2.23,-1.3 -3.5,-1.28 -0.69,0.37 -0.45,1.5 -1.31,1.74 -0.51,0.09 -0.91,0.78 -0.19,0.87 0.97,0.62 0.13,1.97 -0.7,2.26 -0.66,0.74 -1.07,-0.04 -1.61,-0.41 -0.76,-0.41 -0.84,0.78 -0.73,1.26 0.05,0.7 0.4,1.52 -0.51,1.62 -0.88,0.62 -1.25,1.72 -1.9,2.54 -0.33,0.89 0.98,0.88 1.52,0.89 1.18,0.21 2.15,1.53 3.4,1.08 1.2,0.09 2.13,-0.66 3.14,-1.15 0.51,-0.04 1.13,-0.24 1.59,-0.16 0.05,0.59 0.72,0.82 0.44,1.45 -0.02,0.69 0.9,0.48 1.09,0.03 0.41,-0.15 1.28,-0.35 1.02,0.44 0.08,0.78 0.27,1.71 -0.44,2.27 -0.34,0.39 -0.88,1.35 -0.01,1.37 1.04,0.74 2.32,1.48 2.86,2.68 0.02,0.88 -0.99,1.57 -0.72,2.51 -0.35,0.51 -1.18,0.99 -0.73,1.74 0.59,0.93 1.71,1.72 2.83,1.3 0.51,-0.19 1.07,0.22 0.75,0.75 -0.36,1.28 -1.55,1.87 -2.61,2.45 -0.28,0.49 0.05,1.16 -0.46,1.59 -0.32,0.65 -1.35,0.57 -1.55,1.11 0.7,0.88 1.64,1.49 2.41,2.25 0.47,0.53 0.74,1.28 0.1,1.81 -0.32,0.66 -1.01,0.86 -1.58,1.18 -0.39,0.88 1.24,1.21 0.97,2.19 0.4,0.57 1.4,0.03 1.78,0.75 0.25,0.51 1.45,0.58 0.91,1.29 -0.66,0.65 -0.71,1.33 0.16,1.85 0.35,0.59 1.47,0.5 1.52,1.27 -0.35,0.79 0.22,1.88 -0.3,2.55 -1.1,0.51 0.13,1.99 -0.76,2.7 -0.13,0.96 0.92,1.73 0.81,2.74 0.12,0.68 0.94,0.98 0.92,1.74 0.32,1.2 -1.06,1.66 -1.89,2.07 -0.87,0.83 0.03,2.76 1.31,2.26 0.6,-0.51 1.44,0.21 2.14,-0.05 0.57,-0.3 1.39,0.53 1.76,-0.1 0.26,-1.1 0.64,-2.38 1.37,-3.19 0.54,0.71 1.26,-0.06 0.93,-0.72 0.24,-1.02 1.23,-1.93 2.24,-2.18 0.93,0.07 1.81,-0.21 2.67,-0.47 0.91,0.57 1.72,-0.36 2.61,-0.44 0.4,0.25 0.85,0.74 1.27,0.2 0.52,-0.1 0.94,0.89 1.44,0.19 0.86,-0.66 2.2,-0.97 2.59,-2.06 -0.01,-0.84 0.02,-2.16 -0.97,-2.41 -0.17,-0.32 -0.52,-0.72 -0.66,-0.93 0.25,-0.37 0.79,-0.58 0.64,-1.12 0.39,-0.42 0.71,-1.53 -0.19,-1.5 -0.45,-0.01 -0.84,-0.53 -0.29,-0.77 0.51,-0.2 1.46,-1.04 1.8,-0.2 0.51,0.71 1,-0.58 0.46,-0.9 -0.34,-0.51 0.23,-1.19 0.79,-0.91 0.54,-0.11 0.86,-0.64 1.37,-0.81 0.36,-0.58 0.64,-1.24 1.33,-1.49 0.33,-0.42 0.14,-1.12 0.84,-1.25 0.9,-0.75 1.19,0.75 1.67,1.21 0.63,0.75 1.46,-0.1 1.94,-0.56 0.68,-0.3 1.87,0.41 2.2,-0.5 0.6,-0.61 1.21,-1.26 1.75,-1.91 0.64,-0.26 1.11,-0.78 1.48,-1.33 0.56,-0.59 1.63,0.19 1.96,-0.71 0.53,-0.37 1.36,0.17 1.98,0.07 0.52,-0.1 1.35,0.6 1.52,-0.24 0.42,-0.71 1.09,-1.37 0.96,-2.27 0.23,-0.6 0.71,-1.12 0.48,-1.83 -0.01,-1.02 -0.41,-1.97 -0.69,-2.91 0.13,-1.09 0.89,-1.96 1.11,-2.98 -0.1,-0.91 -0.86,-1.67 -0.46,-2.64 0.22,-1.12 0.68,-2.63 -0.49,-3.39 -0.64,-0.63 -1.98,-0.9 -1.45,-2.03 0.18,-1.39 0.45,-2.9 -0.24,-4.19 -0.04,-2.12 -1.21,-4.05 -1.76,-6.05 -0.17,-0.91 0.63,-2.17 -0.53,-2.62 -1.39,-0.85 -2.18,-2.44 -3.76,-2.99 -0.99,-0.66 -0.78,-2.2 -0.02,-2.97 0.81,-1.35 1.34,-2.85 1.77,-4.31 0.61,-1.16 -0.48,-2.37 -0.96,-3.39 -0.62,-0.75 -0.35,-2.18 -1.35,-2.57 -1.12,-0.04 -1.74,1.08 -2.66,1.46 -1.21,0.25 -1.23,-1.44 -2.2,-1.76 -0.46,-0.35 -1.11,-0.16 -1.45,-0.63 -0.75,0.18 -0.31,1.35 -0.37,1.92 0.1,0.96 -1.26,1.09 -1.94,1.26 -0.88,0.22 -1.44,-0.62 -1.45,-1.39 -0.18,-0.97 -1.62,-0.88 -1.87,-1.72 0.12,-1.04 -0.84,-1.86 -1.78,-2 -0.45,-0.6 -1.16,-0.99 -1.94,-0.77 -0.75,0.01 -1.66,0.8 -2.13,-0.13 -0.77,-0.64 -1.37,-1.48 -1.96,-2.24 -1.19,0.09 -2.12,1.19 -3.26,1.38 -0.79,-0.36 -1.28,-1.27 -2.2,-1.44 -0.68,-0.27 -1.13,-1.18 -1.9,-1.13 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_25.js b/lib/mapael-maps/france/france_region_25.js new file mode 100644 index 000000000..dc1ba29bf --- /dev/null +++ b/lib/mapael-maps/france/france_region_25.js @@ -0,0 +1,38 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of france_region_25 for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_25 : { + width : 133.6552, + height : 102.0807, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 89.96; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3280.8834; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-50" : "m 0.84,0.09 c -1.31,-0.14 -0.55,1.58 -0.75,2.35 -0.43,1.27 0.75,1.42 1.69,1.61 1.24,0.22 2.52,1.01 2.65,2.38 0.54,1.8 0.64,4 -0.89,5.37 -0.69,0.48 -1,1.49 -0.27,2.07 0.74,0.66 1.57,1.44 1.29,2.54 0.29,1.1 1.35,1.91 1.19,3.16 0.18,1.21 -0.03,2.54 0.32,3.69 0.54,0.35 1.35,-0.32 1.8,-0.01 0.55,1.1 1.61,1.86 2.31,2.83 0.64,0.4 0.69,-0.55 0.77,-0.95 0.3,-0.4 0.56,0.69 0.71,0.89 0.32,0.58 -0.44,0.7 -0.8,0.83 0.34,0.95 1.14,1.81 1.96,2.33 -0.31,0.96 0.51,1.66 0.66,2.57 0.29,0.64 0.4,1.75 1.07,1.94 0.47,-1.34 2.16,-0.96 3,-0.3 0.63,0.33 0.12,0.34 -0.29,0.2 -0.75,-0.13 -2.12,-0.05 -1.86,1.06 0.16,1.26 0.21,2.62 0.68,3.79 0.37,0.17 0.85,-0.16 0.88,0.5 0.28,0.94 -1.5,0.25 -1.37,1.36 -0.08,0.98 -0.43,2.46 0.67,2.92 -0.81,1.29 -0.29,2.88 0.14,4.22 0.62,0.42 0.73,-0.84 1.13,-1.14 0.53,-0.75 2.1,-0.62 2.4,0.27 -0.13,0.3 -0.66,-0.48 -1.05,-0.38 -1.23,-0.01 -1.11,1.55 -1.11,2.4 0.08,0.96 -0.46,2.09 -0.01,2.96 0.31,0.1 0.83,0.02 0.64,0.54 -0.12,0.28 -0.09,1.42 -0.49,0.9 -0.68,0.02 -0.42,1.16 -0.59,1.62 -0.12,1.43 -0.35,3 -1.4,4.05 0.48,0.18 1.03,0.43 1.12,1.04 0.69,1.72 0.15,3.71 0.75,5.43 0.52,0.77 1.72,0.88 1.91,1.94 0.33,0.94 0.75,2.04 1.91,2.15 0.71,0.16 1.15,0.77 1.71,1.14 0.54,-0.06 1.03,-0.82 1.42,-0.03 0.59,0.67 2.03,0.59 2.18,1.61 -0.44,0.12 -0.97,-0.39 -1.49,-0.24 -1.33,-0.11 -2.59,0.36 -3.8,0.74 -1.46,0.13 -2.92,-0.36 -4.35,-0.37 -0.1,1.06 0.97,1.66 1.52,2.4 0.08,0.49 0.01,1.11 0.53,1.32 0.55,0.81 -0.55,1.86 0.34,2.54 0.37,1.07 1.16,1.97 1.47,3.09 0.62,0.73 1.96,0.12 2.37,1.16 0.19,1.14 1.69,0.94 2.52,1.21 0.95,-0.25 1.4,-1.21 1.79,-1.98 0.52,-0.18 0.69,-0.84 1.33,-0.73 0.63,-0.12 1.08,-0.62 1.59,-0.92 0.53,-0.56 -0.04,-1.54 0.8,-1.85 0.75,-0.46 1.55,0.28 2.37,0.09 0.58,0.06 0.76,0.92 1.45,0.67 0.77,0.01 1.28,0.97 2.09,0.54 1.1,-0.09 2.11,1.21 3.21,0.49 1.27,0.36 2.39,2.05 3.84,1.24 0.76,-0.22 0.39,-1.47 1.32,-1.44 0.62,0.04 1.33,0.17 1.45,0.88 0.82,0.83 2.47,0.49 2.88,-0.61 0.83,-1.02 1.69,-2.21 2.91,-2.76 1.01,-0.7 0.49,-2.14 1.48,-2.87 0.49,-0.49 -0.05,-1.22 0.42,-1.72 -0.13,-0.42 -0.79,-0.38 -0.81,-0.94 -0.25,-0.58 -0.52,-1.29 0.14,-1.71 0.17,-0.62 0.75,-0.89 1.15,-1.32 -1.06,-0.59 -2.41,-1.11 -3.08,-2.22 -0.15,-0.86 -1.05,-0.82 -1.68,-0.69 -0.79,-0.38 -0.33,-1.46 0.19,-1.88 0.34,-0.67 -0.65,-0.44 -0.92,-0.17 -0.55,0.25 -1.28,0.34 -1.63,-0.22 -0.92,-0.41 -1.87,-0.77 -2.66,-1.41 -0.72,-0.23 -0.92,0.86 -1.66,0.65 -0.74,0.06 -1.55,0.11 -2.11,-0.41 -0.6,-0.09 -0.96,0.75 -1.62,0.38 -0.75,-0.18 -1.54,-0.84 -1.24,-1.7 -0.3,-1.26 -2.05,-0.97 -2.79,-1.73 -0.29,-0.85 0.87,-0.95 1.23,-1.52 0.74,-0.53 1.19,-1.46 1.88,-1.96 0.27,0.34 0.76,0.76 1.09,0.2 0.56,-0.55 0.67,-1.4 1.48,-1.7 0.58,-0.14 0.98,-1.05 0.59,-1.48 -0.81,-0.25 -1.67,0.44 -2.42,0.28 -0.35,-0.49 0.51,-0.8 0.19,-1.36 -0.24,-0.52 0.51,-0.58 0.5,-1.09 0.55,-0.41 1.45,-0.45 1.93,0.03 1.14,0.74 2.11,-0.49 3.14,-0.8 1.01,-0.71 1.54,-1.87 2.06,-2.91 0.57,-0.35 1.07,-0.85 1.62,-1.18 0.24,-0.73 -1.26,-0.3 -0.95,-1.07 0.66,-0.75 0.94,-1.76 0.47,-2.68 -0.18,-0.55 0.3,-1.98 -0.72,-1.79 -0.5,0.07 -0.97,0.84 -1.41,0.74 0.03,-0.86 1.42,-0.87 1.48,-1.63 -0.33,-0.24 -0.71,-0.37 -0.93,-0.73 -0.55,-0.33 -1.09,-0.65 -1.41,-1.19 -0.38,-0.15 -1.09,-0.46 -0.37,-0.6 1.03,0.37 1.65,-0.78 1.76,-1.63 0.2,-0.34 0.83,-0.61 0.38,-1.05 -0.54,-1.06 -1.35,-1.19 -1.96,-0.06 -0.52,0.71 -1.47,1.21 -2.25,0.57 -0.57,-0.24 -1.33,-0.14 -1.58,-0.85 -0.92,-0.95 -2.24,-1.4 -3.1,-2.46 -0.49,-0.57 -1.29,-1.1 -1.48,-1.81 0.09,-0.67 -0.58,-1.24 -0.37,-1.96 -0.12,-0.86 1.55,-1.12 0.94,-2.02 -0.44,-0.33 -1.42,0.04 -1.31,-0.83 0.15,-0.63 -0.54,-0.66 -0.93,-0.4 -0.33,0.09 -1.17,0.34 -0.81,-0.28 0.46,-1.01 0.69,-2.25 0.55,-3.37 -1.21,-1.85 -2.97,-3.25 -4.03,-5.2 -0.99,-1.74 -2.86,-3.67 -1.88,-5.79 0.41,-0.69 1.74,-0.13 1.83,-1.12 -0.04,-0.74 0.44,-1.45 1.23,-1.11 0.58,-0.35 -0.1,-1.24 -0.14,-1.76 -0.2,-1.12 -0.97,-1.96 -1.26,-3 0.06,-0.99 -1.28,-0.59 -1.86,-0.85 -2.46,-0.57 -5.19,-0.82 -7.6,0.13 -0.61,1.24 -1.56,2.61 -3.14,2.36 -1.05,0.05 -2.22,-0.04 -3.09,0.58 -0.69,0.09 -1,-0.87 -1.78,-0.63 -0.58,0.05 -1.3,0.09 -1.46,-0.6 -0.47,-0.65 -1.42,-0.21 -2.03,-0.63 -1.09,-0.2 -2.24,-0.19 -3.25,-0.62 -0.64,0.04 -1.54,-0.13 -1.57,-0.9 -0.44,-0.96 -1.59,-0.82 -2.38,-0.44 -0.83,-0.09 -1.31,-1.39 -2.31,-1.19 z", + "department-61" : "m 106.66,50.02 c -0.77,0.5 -1.11,1.89 -2.28,1.67 -0.69,-0.29 -1.38,-0.67 -2.15,-0.32 -0.68,0.1 -0.09,-1.27 -0.92,-1 -0.67,0.09 -0.84,0.72 -1.03,1.24 -0.32,0.48 -0.87,0.35 -1.25,0.07 -0.88,-0.15 -1.31,0.75 -1.92,1.16 -0.65,0.17 -1.23,-0.15 -1.26,-0.86 -0.1,-0.69 -0.92,-0.81 -1.29,-0.26 -0.35,0.53 -0.9,0.64 -1.47,0.55 -1.19,0.44 -0.7,2.55 -2.17,2.57 -0.68,0.26 -1.67,0.38 -1.98,1.1 0.3,0.47 -0.21,0.48 -0.54,0.38 -1.36,0.48 -1.93,2.49 -3.61,2.17 -0.6,0.09 -1.76,0.05 -1.89,0.8 0.05,0.25 0.91,0.86 0.23,0.77 -0.93,-0.06 -1.84,-0.46 -2.37,-1.24 -0.78,-0.56 -1.82,-0.12 -2.58,-0.74 -1.07,-0.39 -2.36,0.05 -3.28,-0.64 -0.91,-0.18 -0.73,0.93 -0.9,1.46 -0.13,0.45 -0.51,1.2 -0.99,0.59 -0.47,-0.25 -0.82,-0.65 -0.75,-1.18 -0.35,-0.29 -0.94,-0.16 -1.16,-0.68 -0.28,-0.5 -0.77,-0.97 -1.34,-0.87 -0.72,-0.51 -1.91,-0.35 -2.33,0.49 -0.36,0.19 -0.83,0.27 -0.91,0.75 -0.95,0.21 -2.23,-0.27 -2.83,0.79 -0.31,0.61 -0.84,0.32 -1.27,0.1 -0.88,-0.08 -1.87,0.91 -2.67,0.39 -0.18,-0.84 -1.4,-0.71 -2.07,-0.8 -0.84,0.14 -0.09,0.99 0.23,1.29 -0.84,1.26 -2.31,1.92 -3.76,2.32 -1.39,0.44 -1.71,2.33 -3.3,2.43 -0.93,0.18 -0.29,1.88 0.46,1.17 1.04,-0.06 1.11,1.2 1.83,1.65 0.67,0.74 1.86,0.87 2.44,1.62 -0.21,0.46 -0.96,0.58 -1.09,1.18 -0.49,0.4 -0.64,1.03 -0.27,1.58 0.16,0.64 0.93,0.72 1.18,1.21 -0.31,0.27 -0.65,0.64 -0.54,1.15 -0.16,0.82 -1.08,1.35 -0.92,2.29 -0.14,1.22 -1.59,1.31 -2.2,2.16 -0.5,0.72 -1.65,1.38 -1.53,2.35 0.64,0.52 1.08,1.33 1.56,2.02 0.08,0.35 0.26,1.15 0.75,0.7 0.37,-0.45 1.47,-0.48 1.23,0.38 -0.12,0.71 0.55,1.35 1.22,0.96 0.6,-0.12 1.45,-0.66 0.75,-1.28 -0.3,-0.51 0.27,-1.15 0.84,-0.83 0.47,0.02 1.37,0.55 1.43,-0.24 0.25,-0.43 0.86,-0.77 1.03,-0.12 0.44,0.52 0.08,1.63 0.76,1.89 0.91,-0.25 1.5,-1.16 2.36,-1.42 0.5,0.1 0.9,-0.23 1.31,-0.31 0.94,0.19 1.02,-1.21 1.85,-1.37 0.3,-0.23 0.45,-1.04 0.98,-0.66 0.53,0.4 1.23,0.4 1.63,-0.2 1.03,-0.81 2.12,0.48 3.22,0.03 0.25,0.23 0.41,0.77 0.88,0.83 0.39,0.12 0.67,0.66 1.05,0.16 0.78,-0.39 0.85,-1.53 1.62,-1.85 0.54,0.37 1.41,0.07 1.73,0.75 0.61,0.09 0.43,-0.96 1.07,-1 0.62,-0.27 0.51,-0.98 -0.01,-1.28 -0.27,-0.37 0.41,-1.12 0.81,-1.36 1,0.21 2.06,0.42 2.7,1.31 0.45,0.6 1.35,0.81 1.72,1.41 -0.24,0.55 -1.41,0.76 -0.94,1.55 0.88,0.88 0.31,2.59 1.42,3.25 1,0.3 2.17,0.25 3.05,-0.31 0.62,-0.06 0.93,0.8 0.66,1.28 -0.02,1.18 -0.34,2.53 0.16,3.63 0.76,0.32 1.14,-0.96 1.92,-0.92 0.73,-0.14 0.81,1.11 1.62,1 0.58,0.13 1.34,-0.04 1.22,-0.77 0.25,-0.93 1.31,-1.04 2.02,-1.41 0.34,-0.53 0.41,-1.48 1.27,-1.42 0.51,0.12 1.46,-0.16 0.95,-0.82 -0.58,-0.42 0.25,-0.67 0.54,-0.39 0.56,0.13 0.38,-0.82 1,-0.6 0.94,-0.19 1.71,-0.79 2.71,-0.82 0.7,-0.08 1.19,-0.81 1.94,-0.45 0.96,0.39 1.99,0.59 2.76,1.35 1.1,0.3 1.12,1.6 1.69,2.4 0.28,0.67 -0.48,1.25 -0.18,1.98 -0.04,1.15 0.71,2.29 0.45,3.41 -0.51,1.08 0.91,1.76 1.79,1.73 0.41,1 1.82,1.1 2.74,0.88 0.43,-0.28 0.96,0.6 0.89,0.93 -0.87,0.43 0.29,1.49 0.86,1.63 0.75,-0.05 0.46,1.01 1.17,1.08 1.15,0.32 2.48,0.58 3.64,0.2 0.17,-0.58 0.7,-1.32 1.41,-0.97 0.64,0.17 1.28,0.55 1.38,1.28 0.84,1.45 1.6,3.09 3.07,4.01 0.82,-0.2 1.76,-0.7 2.24,-1.39 0.29,-0.37 1.27,-0.52 0.73,-1.15 -0.55,-1.2 -1.92,-2.44 -1.48,-3.86 0.78,-0.82 -0.54,-1.59 -1.29,-1.28 -0.41,-0.39 0.39,-0.95 0.33,-1.44 0.38,-0.72 0.73,-1.62 1.66,-1.76 0.59,-0.22 1.34,0.16 1.78,-0.42 1.08,0.2 1.98,-0.68 2.69,-1.35 0.95,-0.42 1.63,-1.47 1.92,-2.44 -0.12,-0.85 1.19,-1.18 1.07,-1.98 -0.86,-0.3 -1.54,-1.39 -1.38,-2.29 0.39,-0.28 0.88,-0.73 0.45,-1.22 -0.51,-0.74 1.3,-1.32 0.51,-2 -0.43,-0.43 -1.47,-0.45 -1.54,-1.13 0.48,-0.38 0.33,-1.07 -0.26,-1.26 -0.92,-0.87 -2.62,-0.56 -3.19,-1.79 -0.19,-0.59 -0.14,-1.64 -1.06,-1.46 -0.68,-0.16 -0.17,-1.09 -0.16,-1.55 -0.07,-0.9 -0.31,-1.97 -0.95,-2.59 -0.65,0.27 -1.4,0.52 -1.76,-0.33 -0.13,-0.58 0.27,-1.62 -0.67,-1.66 -0.37,0.08 -1.17,-0.05 -0.8,-0.59 0.53,-0.7 1.93,-1.05 1.62,-2.15 -0.36,-0.53 -0.82,-1.04 -0.72,-1.7 -0.89,-1.29 -2.74,-1.36 -3.83,-2.47 -0.91,-0.58 -1.94,-1.12 -2.72,-1.81 0.42,-0.53 0.97,-1.2 0.06,-1.61 -0.46,-0.25 0.12,-1.11 -0.57,-1.01 -0.66,0.22 -0.58,-0.6 -0.33,-0.93 -0.3,-0.76 -1.22,0.21 -1.5,0.55 -0.49,0.58 -1.29,-0.1 -1.94,0.03 -0.81,0.09 -1.5,-0.59 -2.26,-0.53 -0.29,0.46 -0.81,0.58 -1.26,0.21 -0.78,-0.43 -1.23,-1.24 -2.06,-1.62 -0.93,-0.87 0.66,-1.88 0.44,-2.81 -0.32,-0.29 0.09,-0.94 -0.48,-1.11 -0.16,-0.09 -0.34,-0.19 -0.53,-0.16 z", + "department-14" : "m 100.99,19.69 c -1.73,0.02 -3.21,0.92 -4.83,1.36 -1.77,0.55 -2.51,2.39 -3.83,3.51 -3.2,1.85 -6.52,3.77 -10.28,4.11 -0.98,0.29 -2.34,0.09 -3.03,0.96 0.02,0.68 -0.63,-0.17 -0.77,-0.37 -1.09,-0.83 -2.58,-0.93 -3.77,-1.61 -1.62,-0.57 -3.04,-1.71 -4.72,-2.06 -1.98,0.35 -3.85,-0.59 -5.79,-0.7 -1.22,0.39 -2.48,0.62 -3.76,0.34 -3.68,-0.35 -7.47,-0.54 -11.01,-1.54 -0.91,-0.31 -1.69,-0.87 -2.35,-1.49 -2.19,-0.3 -4.45,-0.08 -6.66,-0.02 -0.87,0.18 -1.49,1 -2.06,1.61 -0.1,0.93 0.43,2.08 -0.06,2.91 -1.18,0.58 -1.03,2.1 -0.17,2.88 -0.54,0.57 0.51,1.26 0.96,1.57 0.85,0.65 1.38,1.88 2.6,2.04 0.74,0.18 0.68,1.38 1.57,1.27 0.74,0.14 1.57,1.22 2.19,0.29 0.68,-0.56 1.18,-1.42 1.63,-2.07 0.48,0.7 0.9,1.58 1.72,1.96 -0.35,0.38 -1.07,0.56 -1.01,1.19 -0.26,0.74 -1.55,1.7 -0.71,2.46 0.72,0.38 1.75,0.85 1.75,1.77 0.53,0.2 0.6,0.75 0.6,1.29 -0,1.09 0.66,2.34 -0.28,3.23 -0.92,0.8 1.17,0.74 0.82,1.49 -1.08,0.55 -1.97,1.47 -2.42,2.6 -0.97,1.22 -2.41,2.4 -3.99,2.52 -0.75,0.13 -1.2,-0.74 -1.9,-0.59 -0.44,0.24 -0.46,0.84 -0.91,1.04 0.27,0.55 -0.64,1.15 -0.16,1.57 0.74,-0.18 1.68,-0.48 2.38,-0.16 0.27,0.98 -0.62,1.47 -1.27,1.93 -0.49,0.56 -0.75,1.58 -1.63,1.62 -0.24,-0.42 -0.89,-0.54 -0.93,0.06 -0.33,0.47 -0.92,0.75 -1.07,1.32 -0.46,0.19 -0.79,0.58 -1.13,0.88 -0.76,0.1 -0.18,0.96 0.34,0.92 0.79,0.22 1.87,0.18 2.04,1.2 0.38,0.45 -0.28,0.98 0.29,1.32 0.65,0.72 1.61,0.43 2.32,0.03 1,0.57 2.55,0.68 3.39,-0.23 0.9,-0.32 1.46,0.92 2.32,1.03 0.84,0.11 1.66,1.29 2.5,0.54 0.53,-0.16 1.28,-0.3 1.72,-0.54 -0.18,0.27 -0.45,1.15 0.18,0.89 0.95,-0.79 1.46,-2.25 2.89,-2.27 1.17,-0.24 2.46,-0.93 2.91,-2.04 -0.54,-0.4 -1.01,-1.26 -0.11,-1.52 0.73,0.21 1.59,0.27 2.3,0.37 -0.16,0.7 0.66,1.13 1.19,0.63 0.59,-0.34 1.46,-0.67 2.02,-0.16 0.8,0.01 0.85,-1.26 1.75,-1.1 0.58,-0.12 1.6,0.25 1.8,-0.51 0.87,-0.13 1.34,-1.22 2.33,-0.97 0.7,0.07 1.85,-0.27 1.98,0.75 0.3,0.87 1.3,0.57 1.88,0.96 0.06,0.33 -0.41,0.7 0.03,1 0.51,0.81 1.33,-0.12 1.1,-0.77 -0.04,-0.54 0.16,-1.2 0.85,-0.97 1.22,0.3 2.51,0.27 3.73,0.67 1.08,0.11 2.34,0.34 2.96,1.28 0.34,0.27 1.31,0.73 1.24,-0.08 -0.26,-0.6 0.62,-0.64 0.87,-1.06 1,0.25 2.35,0.3 3.09,-0.62 0.61,-0.63 1.25,-1.31 2.04,-1.65 0.51,-0.82 1.69,-1.02 2.56,-1.35 1.05,-0.43 0.75,-2.12 1.89,-2.51 0.87,0.19 1.44,-0.64 2.09,-1.01 0.85,0.32 0.68,1.58 1.63,1.7 0.7,-0.1 0.74,-1.13 1.53,-1.16 0.62,-0.48 1.22,0.54 1.74,-0.06 0.3,-0.42 0.18,-1.15 0.89,-1.18 0.43,-0.22 1.16,-0.27 0.96,0.44 0.21,0.92 1.25,-0.23 1.72,0.37 0.81,0.75 1.95,0.14 2.33,-0.72 0.23,-0.43 0.58,-0.9 1.05,-0.45 0.49,0.16 0.7,0.63 0.93,1 0.64,-0.21 1.27,-1.23 0.75,-1.87 -0.07,-0.53 0.31,-1.05 0.38,-1.57 0.44,-0.34 0.55,-0.96 -0.03,-1.23 -0.75,-0.77 -2.1,-0.28 -2.64,-1.34 -0.59,-0.5 0.06,-1.1 0.08,-1.69 0.36,-0.66 1.72,0.02 1.72,-0.85 -0.17,-0.28 -0.67,-0.18 -0.59,-0.67 -0.04,-0.97 0.01,-2.34 1.06,-2.75 0.27,-0.77 -1.01,-0.72 -1.44,-1.01 -0.67,-0.25 -0.13,-1.27 -0.29,-1.79 -0.12,-0.76 0.47,-1.99 -0.33,-2.49 -1.27,-0.07 -2.42,-1.25 -2.65,-2.44 0.8,-0.44 2.31,-0.27 2.61,-1.35 0.28,-1.07 -1.12,-2.01 -1.9,-1.11 -0.27,0.26 -1.16,0.99 -1.36,0.37 0.21,-0.55 0.8,-1.37 0.08,-1.81 -0.42,0.02 -0.71,-0.41 -0.23,-0.67 0.53,-0.63 0.83,-1.52 0.17,-2.17 -0.64,-1.55 -0.11,-3.45 -0.73,-4.96 -0.53,-0.08 -1.15,0.08 -1.7,0.09 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_26.js b/lib/mapael-maps/france/france_region_26.js new file mode 100644 index 000000000..52784377a --- /dev/null +++ b/lib/mapael-maps/france/france_region_26.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Bourgogne for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_26 : { + width : 122.0026, + height : 148.27129, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -129.7769; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3193.03348; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-71" : "m 62.11,82.4 c -1.47,0.74 -0.67,0.34 -2.62,0.83 -1.47,-0.12 -1.21,0.28 -1.64,1.27 -0.33,0.17 -0.77,-0.13 -1.08,0.18 -0.56,0.19 -1.67,-0.27 -1.67,0.68 0.08,0.66 -0.51,1.16 -0.53,1.75 0.4,0.64 1.75,1.14 1.15,2.04 -0.43,0.97 -0.04,2.24 -1.07,2.9 -0.55,0.76 -1.7,0.98 -2.11,1.8 0.34,0.85 1.12,-0.32 1.63,-0.37 0.63,0.26 0.76,1.22 0.89,1.83 -0.13,0.42 -0.58,0.76 -0.38,1.29 -0.35,0.78 -0.39,2.12 0.53,2.48 0.99,0.42 1.85,1.47 2.05,2.54 -0.47,0.91 -1.86,1.05 -2.54,1.8 0.74,0.97 1.09,2.4 0.59,3.54 -0.35,0.67 -1.09,-0.55 -1.54,0.14 -1.15,0.17 -2.36,0.48 -3.11,1.46 -0.49,0.33 -1.01,0.56 -1.32,1.1 -0.95,0.4 -1.91,0.85 -2.96,0.95 -0.72,0.09 -0.91,0.77 -1.32,1.2 -0.53,0.36 -1.2,0.3 -1.81,0.36 -0.36,-1.14 -0.58,-2.66 -2,-2.93 -1.49,-0.66 -2.99,0.83 -4.44,0.47 -0.4,-0.01 -0.77,-0.32 -1.16,-0.19 -0.23,0.55 0.61,0.98 0.45,1.59 -0.12,0.54 0.36,0.75 0.68,0.98 -0.04,0.68 0.49,1.09 0.92,1.51 0.17,0.91 1.4,1.21 1.48,2.18 0.19,0.62 0.78,1.22 0.77,1.85 -0.52,0.44 -0.02,1.03 0.5,1.06 0.34,1.12 0.69,2.47 0.08,3.57 0.1,0.72 1.01,0.77 1.57,0.77 0.74,0.46 1.78,1.55 2.62,0.63 0.48,-0.5 1.05,0.17 0.89,0.67 0.21,0.33 0.88,0.19 0.77,0.76 -0.16,0.87 0.76,1.81 1.57,1.29 0.63,-0.9 1.88,-0.37 2.74,-0.24 0,0.48 0.32,0.85 0.84,0.84 0.89,0.37 1.44,1.29 1.2,2.26 0.01,0.45 -0.43,0.67 -0.25,1.16 -0.34,0.33 -0.41,0.78 -0.35,1.24 -0.46,0.64 -0.32,1.39 0.02,2.06 0.41,0.99 -0.31,2.2 0.2,3.12 0.31,0.01 0.71,0.26 0.26,0.5 -0.6,0.65 -2.03,-0.26 -2.2,0.83 -0.11,1.19 -1.78,0.77 -2.37,1.49 -0.15,0.73 0.69,1.31 0.51,2.1 0.15,0.99 -1.05,1.93 -0.44,2.87 0.94,0.79 2.58,0.01 3.38,0.97 0.09,0.83 0.53,2.07 1.6,1.7 1.3,0.01 2.1,-1.18 3.34,-1.34 0.69,-0.62 1.56,-0.21 2.06,0.44 0.59,0.64 1.82,0.96 2.53,0.39 -0.08,-0.66 0.6,-0.96 1.16,-0.93 0.44,0.32 0.95,1.02 1.48,0.49 0.58,-0.21 1.27,0.16 1,0.84 -0.23,0.29 -0.75,0.79 -0.08,0.95 0.69,0.45 1.22,-0.2 1.49,-0.78 0.38,-0.5 1.18,0.08 1.44,-0.67 0.54,-0.56 1.64,0 2.07,-0.57 -0.34,-0.38 -0.34,-0.89 0.13,-1.2 1.09,-0.77 0.48,-2.43 0.88,-3.53 0.39,-0.73 0.08,-2 1.03,-2.3 0.43,0.03 0.56,-0.66 0.99,-0.24 0.48,0.37 1.21,0.13 1.62,0.65 0.44,0.13 0.99,0.11 1.11,0.68 0.27,1.04 1.62,0.7 2.27,0.27 0.1,-0.5 0.4,-1.45 1.09,-1.18 0.5,0.45 0.2,1.55 1.11,1.61 0.55,0.16 1.31,-0.03 1.19,-0.73 0.23,-0.48 0.64,-0.85 0.81,-1.35 0.49,-0.51 1.05,0.14 1.57,0 0.37,-0.51 1.08,-0.18 1.18,0.38 0.32,0.5 0.85,1.05 0.45,1.68 -0.38,0.14 -1.34,0.13 -0.96,0.8 0.5,0.4 1.27,0.42 1.72,0.99 0.64,0.31 0.69,0.84 0.31,1.37 -0.07,0.4 0.56,0.71 0.01,1.01 -0.53,0.68 -0.34,1.98 0.73,1.92 0.63,0.18 1.53,0.19 1.59,-0.65 0.59,-1.1 0.55,-2.38 1.12,-3.49 0.09,-1.29 0.98,-2.33 1.15,-3.62 0.43,-1.24 1.12,-2.42 0.98,-3.8 0.22,-1.64 1.7,-2.87 1.7,-4.59 -0.03,-0.97 0.35,-1.83 0.97,-2.55 0.34,-1.05 0.31,-2.2 0.94,-3.17 0.16,-0.7 0.92,-0.48 1.12,0.04 0.49,0.11 0.6,-0.79 1.2,-0.47 0.67,0.03 1.45,0.08 1.69,0.81 0.83,0.85 2.36,1.46 3.28,0.37 0.63,-0.16 1.38,0.15 1.92,-0.42 0.38,-0.43 0.92,-0.24 1.36,-0.39 0.08,-0.31 0.16,-0.71 0.55,-0.4 0.48,0.42 1.37,0.18 1.49,1 0.31,1.01 0.58,2.5 1.85,2.69 0.83,0.59 2.05,0.83 3.02,0.5 0.33,-0.52 0.77,-0.91 1.44,-0.75 0.71,0.09 1.38,-0.09 1.93,-0.49 1.04,0.41 2.14,-1.09 1.27,-1.85 -0.86,-0.32 -1.5,-1.14 -2.43,-1.33 -0.11,-1.21 -0.03,-2.46 0.14,-3.61 -0.23,-0.81 1.12,-0.35 1.55,-0.56 0.8,-0.4 0.37,-1.49 0.06,-2.04 0.62,-0.42 1.67,-0.9 1.67,-1.74 -0.2,-0.51 -1.3,-0.78 -0.6,-1.39 0.37,-0.86 -1.15,-1.13 -1.09,-1.85 0.31,-0.38 0.56,-1 0.03,-1.31 -0.28,-0.67 -0.54,-1.46 -1.4,-1.57 -0.52,-0.32 -0.12,-1.22 0.2,-1.6 0.36,-0.25 1.17,-1.25 0.27,-1.31 -0.42,-0.45 -0.86,-0.96 -1.55,-0.97 -0.72,-0.29 -1.08,-1.76 -0.23,-2.06 1.09,0.26 1.89,-0.89 3,-0.75 0.78,-0.1 1.82,0.49 2.45,-0.08 0.24,-0.51 -0.23,-0.87 -0.67,-0.9 -0.28,-0.39 -0.51,-0.92 -1.08,-0.89 -0.78,-0.28 -0.93,-1.13 -1.03,-1.81 -0.6,-0.72 -1.48,0.67 -2.16,-0.06 -0.43,-0.27 -0.83,0.66 -1.04,-0.05 -0.38,-0.93 -1,-1.79 -1.05,-2.83 -0.23,-0.8 -1.28,-0.41 -1.54,0.17 -0.6,0.42 -0.39,-0.56 -0.77,-0.77 -0.47,-0.36 0.54,-0.71 0.23,-1.22 -0.01,-0.77 -0.36,-1.52 -1.22,-1.57 -0.5,-0.11 -0.87,0.27 -1.36,0.18 -0.3,0.22 -0.35,0.72 -0.85,0.62 -0.72,0.31 -1.41,0.62 -2.24,0.57 -0.76,-0.03 -1.25,0.77 -1.8,0.98 0.1,-0.78 -0.91,-0.68 -1.24,-1.2 -0.55,-0.63 -1.66,-1.35 -2.31,-0.46 -0.41,0.06 -0.98,0.21 -0.72,0.76 0.16,0.53 -0.86,-7e-4 -1.1,0.09 -1.2,-0.12 -2.56,-0.68 -3.73,-0.23 -0.21,0.37 -0.13,0.92 -0.72,0.96 -1.16,0.34 -2.34,0.77 -3.45,1.23 -0.79,0.26 -1.54,1.33 -2.45,0.78 -0.77,-0.52 -1.52,0.34 -1.95,0.91 -0.64,0.52 -1.96,0.11 -2.01,-0.73 0.27,-0.33 0.69,-0.9 0.06,-1.11 -0.82,-0.59 -2.06,-0.28 -2.72,-1.07 -0.61,0.05 -0.84,-0.47 -0.88,-0.98 -0.31,-0.48 -1.01,-0.63 -1.03,-1.3 -0.11,-0.53 -1.01,-0.53 -0.71,-1.15 0.14,-0.32 0.36,-1.33 -0.3,-1.02 -0.72,0.35 -1.89,0.46 -2.18,-0.5 -0.21,-0.63 -0.84,-0.32 -1.27,-0.49 -0.67,-0.94 -2.06,-0.22 -2.74,-1.16 -0.86,-0.5 0.44,-1.69 -0.36,-2.1 -0.89,-0.31 -1.55,0.36 -1.89,1.09 -0.33,0.31 -0.71,-0.5 -0.73,-0.8 0.06,-0.62 0.38,-1.78 -0.62,-1.76 -0.65,0.1 -1.17,-0.2 -1.72,-0.43 -0.77,0.14 -1.72,-0.07 -1.85,-0.98 -0.34,-0.39 -0.41,-0.95 -0.77,-1.3 -0.4,-0.07 -0.85,-0.06 -1.02,-0.52 -0.09,-0.07 -0.21,-0.11 -0.32,-0.09 z", + "department-58" : "m 11.13,53.77 c -0.8,-0.02 -1.15,0.78 -1.65,1.17 -0.89,0.16 -1.69,1.22 -2.5,0.33 -0.68,-0.54 -1.53,-0.29 -2.07,0.28 -0.77,0.06 -1.75,-0.71 -2.37,0.05 -0.64,0.21 -1.25,0.69 -1.92,0.72 -0.41,-0.27 -0.91,0.16 -0.45,0.51 0.88,1.06 1.83,2.1 2.12,3.48 0.51,1.15 1.43,2.29 1.41,3.58 -0.59,1.03 -0.67,2.26 -1.32,3.28 -0.41,1.08 -1.29,2.12 -1.29,3.3 0.28,1.26 1.86,1.27 2.46,2.3 0.62,0.99 1.91,1.32 2.45,2.33 0.22,1.11 -0.31,2.34 0.46,3.34 0.75,1.62 1.19,3.34 1.47,5.07 0.72,1.45 0.04,3.13 0.1,4.64 0.69,0.91 2.32,1.26 2.2,2.68 0.04,1.33 -0.86,2.73 0.05,3.95 0.53,1.12 -0.67,2.16 -0.87,3.24 -0.24,0.81 0.55,1.5 0.47,2.33 0.19,0.94 0.27,1.93 -0.28,2.76 0.05,0.82 -0.45,1.45 -0.88,2.09 -0.97,2.05 0.89,4.19 2.77,4.81 2.09,0.35 2.46,3.12 4.52,3.53 1.03,-0.13 1.58,-1.32 2.54,-1.69 0.38,-0.33 0.62,-0.83 1.24,-0.66 1.08,-0.27 0.93,1.17 1.57,1.63 0.97,0.87 2.56,0.11 2.84,-1.09 0.32,-0.77 1.41,-0.06 2.09,-0.19 0.86,-0.21 -0.05,0.95 0.68,1.15 0.49,0.16 0.83,0.56 0.58,1.09 -0.18,0.65 -0.11,1.68 0.81,1.57 0.82,0.11 0.86,-0.94 1.48,-1.27 0.43,-0.29 0.83,-1.1 1.37,-1.01 0.24,0.44 1.1,0.63 1.02,-0.1 0.02,-0.66 -0.71,-1.53 -0.25,-2.08 0.45,0.24 0.95,0.31 1.36,-0.03 0.79,0.03 0.25,-1.07 0.07,-1.44 -0.29,-0.5 0.31,-1.22 0.79,-1.27 0.12,0.57 0.69,0.78 1.23,0.71 0.52,0.14 0.69,0.87 1.36,0.77 1.64,0.16 3.3,-1.39 4.84,-0.29 1.26,0.28 1.2,1.68 1.75,2.57 0.49,0.26 1.25,0.09 1.66,-0.31 0.6,-1.18 2.02,-1.34 3.17,-1.64 0.9,-0.2 1.29,-1.1 2.15,-1.35 0.69,-0.75 1.58,-1.44 2.67,-1.42 0.53,0.05 0.91,-0.57 1.35,-0.58 0.26,0.44 1.02,0.53 0.94,-0.15 0.18,-1.08 -0.21,-2.12 -0.66,-3.05 0.56,-0.91 1.97,-0.98 2.49,-1.93 -0.35,-1.2 -1.43,-2.05 -2.47,-2.63 -0.59,-0.73 -0.33,-1.66 -0.16,-2.49 -0.21,-0.58 0.74,-0.96 0.33,-1.58 -0.09,-0.6 -0.67,-1.47 -1.29,-0.83 -0.31,0.58 -1.18,0.3 -1.23,-0.25 0.9,-1.09 2.92,-1.5 2.94,-3.2 -0.15,-0.84 0.95,-1.88 0,-2.51 -0.61,-0.35 -1.15,-1.14 -0.5,-1.72 0.25,-0.57 -0.19,-1.44 0.63,-1.7 0.53,-0.21 1.32,0.25 1.57,-0.46 0.36,0.05 0.82,-0.02 0.76,-0.52 -0,-0.37 -0.05,-0.85 0.47,-0.73 1.28,-0.11 2.69,-0.17 3.84,-0.69 0.3,-0.77 0.08,-1.79 0.82,-2.41 0.63,-1.04 -0.63,-2.04 -1.25,-2.75 -0.44,-0.31 -0.7,-1.41 -1.41,-0.9 -0.57,0.24 -1.3,1.11 -1.62,0.23 -0.52,-1.3 -0.84,-2.76 -0.49,-4.13 -0.15,-0.52 0.58,-0.81 0.24,-1.37 -0.3,-1.1 -1.72,-0.62 -2.56,-0.72 -0.9,-0.04 -1.47,0.74 -1.83,1.42 -0.5,0.54 -1.28,0.46 -1.71,-0.12 -1.23,-0.89 -1.11,-2.54 -1.22,-3.87 -0.23,-0.81 -0.82,-1.02 -1.19,-0.21 -0.66,0.11 -1.5,-0.21 -1.96,0.53 -0.3,0.44 -1.08,0.72 -1.23,0 -0.3,-0.72 -0.6,-1.54 0.32,-1.9 0.62,-0.39 0.83,-1.21 0.11,-1.63 -0.27,-0.35 -1.03,-0.86 -1.15,-0.1 -0.21,0.67 -0.48,1.38 -1.14,1.66 -0.26,0.51 0.45,1.43 -0.5,1.48 -0.52,-0.07 -0.87,-0.68 -1.42,-0.75 -0.23,-0.31 -0.27,-0.93 -0.86,-0.67 -0.8,0.21 -2.02,0.57 -2.44,-0.42 -0.32,-0.89 -1.06,-1.46 -1.86,-1.88 0.15,-0.42 -0.07,-0.88 -0.6,-0.77 -0.79,-0.35 -1.83,-0.31 -2.32,-1.13 -0.49,-0.34 -0.51,0.81 -1.01,0.26 -0.67,-0.6 -0.54,-1.58 -0.6,-2.36 -0.58,-0.37 -1.32,-0.57 -1.75,-1.18 -0.64,-0.45 -1.29,-0.98 -1.19,-1.87 0.13,-0.39 -0.42,-1.25 -0.64,-0.56 -0.24,1.25 0.15,2.68 -0.41,3.84 -1.35,-0.39 -2.77,-1.4 -4.22,-0.8 -0.36,0.51 -0.45,1.33 -1.26,1.31 -0.55,0.09 -0.81,0.7 -1.09,1.01 -0.48,-0.64 -1.05,-1.33 -1.94,-1.44 -0.42,-0.1 -0.66,-0.74 -1.09,-0.18 -0.73,0.25 -1.95,0.84 -2.27,-0.18 -0.53,-0.59 -0.92,-2.08 -1.98,-1.58 -0.57,0.47 -1.1,0.12 -1.45,-0.4 -0.35,-0.41 -0.85,-0.72 -1.32,-0.81 -0.65,-0.83 0.13,-2.32 -0.81,-2.93 -0.19,-0.08 -0.39,-0.13 -0.6,-0.11 z", + "department-89" : "m 24.21,0.1 c -0.88,0.14 -0.26,1.7 -1.23,1.54 -1.07,0.08 -2.14,0 -3.14,-0.33 -0.84,-0.04 -1.2,1.3 -2.06,0.71 -0.72,-0.35 -1.5,0.56 -2.13,-0.05 -0.42,0.01 -0.79,-0.62 -1.29,-0.25 -0.68,0.52 -1.81,-0.19 -2.26,0.7 -0.21,0.41 -0.56,1.07 -0.93,0.41 -0.83,-0.39 -2.57,-0.35 -2.47,0.92 0.46,1.08 -1.34,1.7 -0.68,2.76 0.05,0.73 0.04,1.59 0.85,1.87 0.18,0.42 0.29,1.16 0.02,1.49 -1.07,0.2 -1.11,1.69 -1.72,2.41 -0.25,0.77 -1.67,0.03 -1.59,1.07 -0.51,0.42 -1.48,0.46 -1.59,1.31 -0.2,0.48 0.2,0.88 0.59,0.76 0.39,0.5 0.91,0.91 1.61,0.8 0.38,0.13 0.57,0.64 1.07,0.54 0.68,0.17 0.93,0.92 0.8,1.54 0.38,0.38 0.65,0.88 0.77,1.45 0.5,0.53 0.27,1.28 0.58,1.88 0.52,0.7 1.92,0.65 1.87,1.72 0.13,0.53 1.22,0.51 1.12,1.02 -0.57,0.38 -0.96,0.8 -0.2,1.24 0.39,0.78 0.65,1.76 0.51,2.62 -0.77,0.54 -0.8,1.7 -1.78,2.01 -0.8,0.49 -1.42,1.22 -1.93,1.96 -0.8,0.24 -1.79,0.7 -1.62,1.73 0.18,0.45 -0.19,0.75 -0.24,1.1 0.44,0.42 1.31,0.47 1.25,1.32 0.26,0.75 -1.18,1.05 -0.6,1.87 0.23,0.63 0.51,1.51 0.16,2.1 -1.32,0.12 -2.59,0.59 -3.6,1.45 -1.09,0.31 -2.3,-0.07 -3.41,0.27 -0.99,0.01 -0.47,1.37 -0.76,2.02 -0.29,0.43 -0.01,1.55 0.62,1.13 0.29,-0.48 1.01,-0.1 0.72,0.41 0.3,0.88 1.6,1.02 1.84,1.88 -0.26,0.61 0.02,1.23 0.66,1.41 0.41,0.31 1.05,1.02 0.26,1.32 -0.84,0.76 0.18,1.76 -0.04,2.65 0.28,0.49 0.85,0.76 1.11,1.29 0.8,0.54 1.79,1.36 2.81,1.16 0.65,-0.41 1.49,-0.39 1.91,-1.15 0.59,-0.61 1.99,-0.78 2.36,0.11 -0.06,0.77 -0.3,2 0.49,2.45 0.85,0.27 1.4,1.75 2.42,1.15 1.21,-0.45 1.5,1.17 2.17,1.8 0.74,0.85 1.81,-0.15 2.52,-0.4 0.37,0.7 1.34,0.56 1.89,1.11 0.34,0.42 0.86,0.58 1.29,0.14 0.59,-0.39 1.49,-0.5 1.55,-1.4 -0.04,-0.56 0.92,-0.14 1.24,-0.3 0.68,-0.02 1.44,-0.12 1.93,0.43 0.45,0.3 1.52,0.62 1.39,-0.3 0.16,-1.17 -0.18,-2.46 0.15,-3.58 0.75,0.05 0.93,1.14 0.93,1.77 0.2,0.82 1.19,1.04 1.65,1.71 0.37,0.52 1.49,0.37 1.32,1.21 0.08,0.52 -0.19,1.93 0.68,1.8 0.45,-0.51 1.07,-0.11 1.36,0.32 0.74,0.52 1.94,0.12 2.5,0.82 -0.24,0.92 1.08,0.97 1.35,1.7 0.28,0.74 0.94,1.68 1.88,1.28 0.48,0 1.31,-0.55 1.67,-0.11 -0.05,0.54 0.38,0.84 0.86,0.9 0.23,0.42 0.99,0.67 0.96,-0.05 -0.04,-0.47 -0.1,-1.03 0.46,-1.17 0.53,-0.44 0.62,-1.18 0.72,-1.79 0.96,-0.31 2.5,0.97 1.67,1.91 -0.66,0.44 -1.26,1.19 -0.79,2.01 0.33,0.89 1.27,0.17 1.63,-0.28 0.64,-0.32 1.61,0 1.96,-0.83 0.45,-0.08 0.79,0.69 1.01,1.06 -0.3,1.27 0.05,2.84 1.05,3.75 0.51,0.52 1.45,0.45 1.65,-0.31 0.48,-0.87 1.37,-1.34 2.36,-1.14 0.39,0.05 1.52,-0.07 1.05,-0.68 -0.54,-0.33 0.34,-1.43 -0.58,-1.52 -0.69,0.09 -0.55,-0.43 -0.49,-0.88 0.12,-0.74 -1.28,-1.15 -0.41,-1.68 0.62,-0.41 0.41,-1.12 0.49,-1.69 0.24,-0.24 0.66,0.47 0.88,-0.03 0.2,-0.59 0.98,-0.53 0.99,-1.25 0.23,-0.55 0.17,-1.17 -0.32,-1.49 0.11,-0.55 0.04,-1.08 -0.17,-1.58 0.01,-0.99 1.39,-0.96 1.5,-1.95 0.03,-0.76 0.67,-1.32 1.33,-1.55 0.84,-0.83 0.25,-2.44 1.37,-3.06 0.86,-0.43 -0.01,-1.74 0.83,-2.21 0.42,-0.66 1.58,-1.6 0.4,-2.11 -0.44,-0.27 -0.19,-0.84 0.3,-0.75 0.39,-0.17 1.59,-0.29 1.25,-0.88 -0.37,-0.09 -0.03,-0.74 -0.37,-0.98 -0.05,-0.56 -1.05,-0.32 -0.73,-0.94 0.23,-0.38 0.89,-0.37 0.76,-0.99 0.38,-0.73 1.48,0.55 1.91,-0.31 0.21,-0.48 0.6,-0.78 1.08,-0.87 0.59,-0.72 0.07,-1.75 0.44,-2.5 0.45,-0.67 -0.76,-1.06 -0.47,-1.8 -0.02,-0.57 0.42,-1.96 -0.63,-1.78 -0.66,-0.07 -1.49,0.73 -2.06,0.24 -0.24,-0.69 0.25,-1.89 -0.62,-2.11 0.53,-0.83 1.25,-1.85 2.35,-1.84 0.66,-0.5 -0.23,-1.71 -0.98,-1.4 -1.36,0.06 -2.87,-1.22 -2.52,-2.66 -0.07,-0.63 -1.26,-0.58 -0.96,0.16 0.42,0.56 0.1,1.47 -0.63,1.44 -0.49,-0.19 -0.31,-1.36 -1.06,-1.09 -0.89,0.3 -0.99,1.39 -1.89,1.63 -0.51,0.35 -1.52,0.52 -1.57,-0.34 -0.22,-0.6 -1.38,-0.74 -1.45,0.07 -0.1,0.54 -0.61,0.71 -1.04,0.44 -0.57,0.08 -1.12,-0.09 -1.33,-0.7 -0.54,-0.17 -0.87,1.03 -1.52,0.57 -1.13,-0.37 -2.25,0.17 -3.34,0.31 -0.76,-0.14 0.09,-0.92 0.05,-1.37 0.37,-1.09 0.68,-2.57 -0.44,-3.35 -0.85,-0.11 -0.14,1.24 -0.94,1.3 -0.48,0.36 -0.53,-0.36 -0.94,-0.4 -0.18,-0.34 -0.73,-1.05 -0.37,-1.36 0.48,0.07 1.43,-0.23 0.93,-0.86 -0.42,-0.74 -1.35,-1 -1.78,-1.67 0.21,-1.06 -0.35,-2.12 -1.16,-2.76 0.12,-0.82 0.15,-1.71 -0.62,-2.25 -0.35,-0.56 -0.99,-0.92 -1.55,-0.48 -0.68,-0.23 -0.68,-1.02 -0.23,-1.47 0.48,-0.71 -0.58,-1.92 -1.2,-1.29 0.18,0.72 -0.42,1.65 -1.23,1.53 -0.41,0.02 -1.48,0.72 -1.39,-0.14 -0.4,-0.98 -0.77,-2.2 -1.68,-2.79 -0.77,-0.17 -1.41,1.25 -2.06,0.34 -0.56,-0.4 0.48,-0.88 0.63,-1.24 0.39,-0.4 1.46,-1.39 0.56,-1.8 -0.74,-0.14 0.1,-1 0.32,-1.25 0.87,-0.84 -0.32,-1.85 -1.14,-2.09 -0.81,-0.18 0.11,-1.16 -0.61,-1.5 -0.67,-0.25 -0.65,-1.16 -1.42,-1.2 -0.27,-0.64 -0.51,-1.42 -1.08,-1.94 -0.52,-0.76 -1.28,-1.36 -2.24,-1.3 -0.66,-0.61 -1.34,0.37 -1.93,0.61 -0.74,-0.35 -0.74,-1.28 -1.16,-1.85 -0.33,-0.28 -0.77,-0.53 -1.21,-0.51 z", + "department-21" : "m 80.38,24.4 c -1.23,0.11 -2.43,0.99 -2.95,2.08 0.12,0.61 0.92,0.85 0.83,1.59 0.13,0.61 -0.89,0.34 -1.23,0.43 -1.33,-0.1 -2.61,0.25 -3.82,0.77 -0.91,-0.61 -2.02,-0.85 -3.05,-0.37 -1,0.33 -2.03,0.28 -3.04,0.09 -0.77,0.35 -0.47,1.45 -0.82,2.07 0.28,0.48 0.64,1.1 0.42,1.68 -0.87,0.27 -2.21,0.77 -2.18,1.86 0.54,0.56 -0.13,1.8 0.69,2.07 0.72,-0.09 1.61,-0.45 2.29,-0.22 0.2,1.06 -0.36,2.41 0.69,3.15 -0.36,0.91 -0.25,2 -0.54,2.93 -0.27,0.43 -0.98,0.24 -1.17,0.84 -0.19,0.32 -0.46,0.97 -0.86,0.45 -0.42,-0.49 -1.19,-0.31 -1.13,0.38 -0.22,0.28 -0.82,0.54 -0.37,0.95 0.5,0.39 0.67,0.94 0.87,1.48 0.19,0.17 1,0.83 0.28,0.8 -0.45,-0.12 -0.95,-0.14 -1.23,0.22 -0.96,-0.14 -1.34,0.37 -0.32,0.89 0.54,0.45 -0.31,1.18 -0.57,1.61 -0.59,0.72 -0.46,1.79 -0.82,2.53 -1.07,0.17 -0.98,1.48 -1.22,2.29 -0.18,0.61 -0.58,1.05 -1.16,1.23 -0.48,0.25 -0.33,0.82 -0.5,1.16 -0.3,0.46 -0.56,0.96 -1.16,1.04 -0.51,0.65 -0.23,1.69 0.02,2.41 0.59,0.76 -0.04,1.87 -0.51,2.56 -0.28,0.43 -0.76,0.47 -1.14,0.63 -0.05,0.69 -0.55,1.19 -0.98,1.67 0.43,0.38 1.1,0.78 0.75,1.46 -0.09,0.75 0.89,0.27 1.14,0.57 -0.19,0.79 -0.28,1.7 0.4,2.3 0.3,-0.2 0.68,-1.45 1.24,-1 -0.31,0.76 -1.06,1.46 -0.6,2.34 -0.21,0.35 0.01,0.7 0.03,1.01 -0.76,0.57 -0.65,1.54 -0.42,2.37 0.12,0.61 0.18,2.11 1.2,1.67 0.69,-0.27 1.44,-1.03 1.83,-0.02 0.72,0.95 2.06,1.87 1.93,3.18 -0.75,0.79 -1.32,2.38 -0.32,3.17 0.39,0.16 1.13,-0.22 0.99,0.5 0.34,0.9 0.98,2.45 2.21,1.87 0.63,0.16 1.2,0.64 1.92,0.59 0.83,-0.04 0.7,0.88 0.59,1.43 -0.23,0.52 0.41,1.48 0.75,0.7 0.25,-0.99 1.79,-1.1 2.31,-0.39 -0.39,0.61 -0.68,1.59 0.12,2.03 0.68,0.57 1.71,0.16 2.33,0.8 0.56,0.15 1.29,0.07 1.5,0.77 0.52,0.86 1.61,0.53 2.32,0.17 0.5,0.35 -0.37,1.64 0.56,1.79 0.31,0.34 0.08,1.02 0.65,1.23 0.65,0.17 0.52,0.84 0.76,1.29 0.47,0.26 0.93,0.48 1.39,0.77 0.84,0.12 1.96,0.2 2.43,1 -0.16,0.44 -0.8,0.86 -0.15,1.28 0.72,0.78 1.84,0.1 2.05,-0.77 0.91,-0.75 2.2,0.61 3.03,-0.31 0.1,-0.34 0.28,-0.68 0.7,-0.51 1.23,-0.37 2.44,-0.85 3.66,-1.28 0.46,-0.29 0.46,-1.1 1.17,-1.04 1.26,-0.16 2.5,0.33 3.73,0.38 0.79,-0.64 1.75,-1.4 2.83,-1.31 0.76,0.6 1.4,1.76 2.58,1.4 1.24,-0.13 2.49,-0.43 3.6,-0.93 0.49,-0.06 0.59,-0.71 1.15,-0.57 0.37,-0.01 0.44,-0.56 0.85,-0.24 0.79,0.47 1.81,0.22 2.05,-0.71 0.47,-0.36 1.48,-0.43 1.37,-1.23 -0.29,-0.56 -1.63,-0.24 -1.27,-1.1 0.21,-1.14 1.17,-1.89 2.04,-2.53 0.9,-1.06 2.85,-0.01 3.4,-1.57 0.22,-0.87 0.55,-1.76 0.93,-2.54 0.46,-0.39 1.08,-0.66 1.13,-1.35 0.54,-0.98 1.15,-2.21 0.28,-3.17 0.53,-0.52 1.71,-0.88 1.31,-1.87 0.44,-1.2 0.19,-2.63 0.73,-3.8 0.4,-0.19 0.99,-0.34 1.03,-0.94 0,-1.03 -1.45,-0.52 -1.88,-1.15 -0.14,-0.68 1.03,-0.81 0.83,-1.58 -0.04,-1.06 0.21,-2.26 -0.21,-3.23 -0.72,-0.23 -1.41,0.92 -2.05,0.15 -0.63,-0.83 -0.23,-2.08 -0.42,-3.06 0.08,-0.73 -0.61,-1.08 -1.11,-1.45 -0.53,-0.13 -1.26,0.96 -1.43,0.01 -0.26,-0.35 -0.26,-0.75 0.26,-0.68 0.53,-0.09 0.65,-0.63 0.29,-0.97 0.08,-0.51 0.35,-1.39 1.06,-1.09 0.59,0.07 1.4,0.51 1.75,-0.25 0.48,-0.45 0.56,-1.29 1.05,-1.67 1.13,-0.22 1.22,-1.71 0.61,-2.48 -0.25,-1.08 0.05,-2.4 -1.02,-3.11 -0.5,-0.34 -0.92,-1.29 -1.57,-1.15 -0.69,0.65 -0.84,1.98 -1.79,2.3 -0.36,-0.17 -0.71,-0.91 -1.1,-0.28 -0.27,0.72 -1.32,0.4 -1.18,-0.33 -0.57,-0.92 -1.69,0.09 -2.19,0.58 -0.49,0.45 -0.65,1.14 -1.4,1.23 -0.66,0.21 -0.72,-0.94 -0.96,-1.32 -0.06,-0.46 0.65,-1.3 -0.17,-1.36 -0.6,-1.04 -1.64,-1.95 -2.87,-2.26 -0.1,-0.52 0.27,-1.42 -0.11,-1.78 -0.64,0.1 -0.86,1.07 -1.41,1.42 -0.34,0.67 -1.15,0.69 -1.68,0.26 -0.78,-0.55 -1.95,-0.61 -2.55,-1.41 0.11,-0.66 -0.04,-1.31 -0.75,-1.43 -0.21,-0.38 -0.29,-1.22 -0.78,-0.5 -0.49,0.63 -1.6,1.57 -2.33,0.72 -0.56,-0.41 -0.61,-1.09 -0.18,-1.59 0.32,-0.51 0.18,-1.03 0.02,-1.53 0.15,-0.65 -0.19,-1.88 -1.08,-1.46 -0.85,0.57 -1.21,-1.1 -0.38,-1.29 0.95,-0.64 2.48,-1.03 2.8,-2.26 -0.33,-0.96 -1.71,-1.43 -1.49,-2.63 -0.06,-0.92 -1.58,-0.58 -1.4,-1.61 -0.24,-0.88 -0.81,-1.64 -1.18,-2.49 -0.84,-0.66 -1.62,0.47 -1.93,1.15 -0.32,0.64 -0.91,-0.33 -1.22,-0.53 -0.63,-0.59 0.63,-0.95 0.81,-1.41 0.72,-0.7 0.32,-1.9 -0.66,-2.04 -0.78,-0.15 -1.84,0.22 -2.35,-0.59 0.09,-0.72 1.06,-1.48 0.21,-2.12 -0.74,-0.67 -1.88,0.1 -2.74,-0.39 -0.76,-0.05 -1.05,-1.26 -1.87,-0.82 -0.96,0.69 -1.84,-0.53 -2.87,-0.36 -0.44,0.04 -0.47,-0.46 -0.96,-0.31 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_31.js b/lib/mapael-maps/france/france_region_31.js new file mode 100644 index 000000000..919587018 --- /dev/null +++ b/lib/mapael-maps/france/france_region_31.js @@ -0,0 +1,37 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Nord-Pas-de-Calais for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_31 : { + width : 122.17262, + height : 73.767746, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -70.6019; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3371.1074; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-59" : "m 44.82,0.12 c -2.91,0.87 -5.78,2.78 -8.93,2.29 -1.66,-0.34 -3.22,0.76 -4.84,1 -2.26,0.37 -4.27,1.57 -6.49,2.12 -0.21,0.61 0.85,1.07 1.13,1.66 1.64,2.6 2.5,5.63 3.79,8.41 0.46,0.87 0.22,2.16 0.97,2.85 0.89,0.57 1.47,1.88 2.75,1.65 0.35,0.02 0.53,0.47 0.92,0.12 0.66,-0.58 1.37,0.3 2.1,0.27 0.42,0.19 0.86,0.05 1.18,-0.16 0.61,0.24 1.26,0.51 1.67,1.02 -0.84,0.93 -2.44,0.75 -3.03,1.94 0.11,1.13 1.26,1.82 1.97,2.58 -0.51,0.23 -1.29,1.44 -0.36,1.57 0.52,-0.24 1.18,-0.4 1.53,0.22 0.72,0.88 1.86,1.08 2.62,1.92 0.73,0.79 1.88,0.62 2.64,-0.05 0.58,0.53 1.21,1.64 2.12,0.6 0.52,-0.43 1.1,0.11 1.65,0.04 0.41,0.35 0.78,1.17 1.42,0.68 0.72,-0.02 1.33,-0.43 1.81,-0.92 0.51,0.44 1.24,0.35 1.8,0.58 0.2,0.46 0.65,1.61 1.27,1.18 0.27,-0.53 0.26,-1.81 1.18,-1.51 0.73,-0.04 -0.09,-0.77 -0.37,-0.88 -0.55,-0.22 -0.04,-1.03 0.31,-1.25 0.95,0.05 1.99,-0.42 2.79,0.34 0.63,0.53 1.49,1.21 1.57,2.07 -0.79,0.12 -1.59,0.4 -2.15,1.03 -0.46,0.55 -1.29,1.26 -1.07,2.04 0.94,0.13 1.03,1.54 0.61,2.18 -0.73,0.11 -0.44,1.63 0.34,1.42 1.1,0.09 2.14,-0.36 3.17,-0.52 0.35,0.61 -0.77,1.73 0.28,1.99 1.06,0.45 1.95,-0.59 3.04,-0.43 0.87,0.08 1.44,0.94 2.24,1.24 1.01,0.37 0.68,1.47 0.28,2.16 -0.21,0.87 1.05,1.41 1.56,0.64 0.19,-0.31 0.96,-0.72 0.91,-0.07 0.12,0.43 0.87,0.51 0.38,0.97 0.01,0.48 -0.22,1.16 -0.84,0.88 -1.08,0.2 -1.58,1.53 -2.72,1.64 -0.71,0.53 0.14,1.5 0.37,2.09 0.57,1.2 2.14,1.33 2.61,2.57 0.12,0.47 0.94,0.78 0.9,1.23 -0.41,0.31 -1.15,0.23 -1.26,0.91 -0.24,0.57 -0.23,1.58 0.64,1.49 1.21,0.19 2.68,0.29 3.7,0.77 -0,0.49 -0.15,1.25 0.59,1.26 0.64,0.07 1.59,0.83 0.82,1.44 -0.62,0.54 -1.99,-0.02 -2.11,1.14 0.04,0.44 0.62,0.52 0.64,1 0.67,0.49 -0.32,1.14 -0.69,1.5 -0.39,0.15 -1.52,-0.08 -1.05,0.68 0.17,0.56 0.82,0.55 1.13,0.87 -0.38,0.69 -1.73,0.78 -1.65,1.67 0.56,0.62 1.02,2.03 0.01,2.49 -0.6,-0.04 -0.25,0.52 -0.13,0.76 -0.58,0.42 -0.44,1.2 0.15,1.54 0.73,0.24 0.81,1.38 1.72,1.29 0.49,0.15 0.98,0.39 1.46,0.47 0.44,0.63 1.42,-0.05 1.93,-0.29 0.76,-0.61 1.98,-0.64 2.81,-0.24 0.43,0.94 1.75,0.48 2.56,0.54 0.81,-0.06 0.71,-1.57 1.71,-1.1 1.03,-0.01 2,0.26 2.92,0.71 0.95,0.07 2.1,0.6 2.97,0.05 0.34,-0.71 1.11,-0.86 1.67,-1.28 0.27,-0.64 0.99,-0.93 1.62,-0.58 0.92,0.2 1.51,0.95 2.2,1.48 0.57,-0.04 1.11,-0.42 1.67,-0.55 0.26,-0.35 0.15,-0.91 0.71,-1.07 0.72,-0.33 1.56,-0.92 2.3,-0.88 0.75,0.6 1.66,0.91 2.54,1.1 0.46,0.34 1.13,0.09 1.62,0.49 0.6,0.24 1.17,-0.6 1.71,0.03 0.72,0.28 1.68,0.33 1.9,1.25 0.11,1.22 0.99,0.14 1.59,-0.09 0.91,-0.31 1.86,-0.6 2.66,-1.16 0.76,-0.08 0.79,1.16 0.46,1.62 -0.15,0.45 -0.87,1.52 0.06,1.53 0.86,-0.13 1.28,0.99 2.18,0.65 0.82,0.01 1.69,0.16 2.27,0.73 1,0.11 2.33,0 2.97,-0.87 0.39,-0.86 -0.92,-1.47 -0.38,-2.34 0.27,-0.76 0.89,-1.25 1.65,-1.4 0.59,-0.53 1.39,-0.87 1.86,-1.5 0.42,-1.08 -1,-1.7 -1.01,-2.73 -0.07,-0.6 0.21,-1.59 -0.68,-1.71 -0.67,-0.15 -1.52,0.58 -2.06,0.14 -0.4,-1.09 0.77,-1.91 0.79,-2.99 0.34,-0.89 -0.14,-2.11 0.8,-2.71 0.5,-0.85 1.38,-1.28 2,-1.98 0.29,-1.15 -1.24,-1.4 -1.81,-2.04 -0.38,-0.56 -0.96,0.03 -0.72,0.54 0.29,0.53 -0.07,1.08 -0.67,0.96 -1.08,-0.84 -0.77,-2.7 -2.15,-3.3 -1.2,-0.81 -2.45,-1.71 -2.99,-3.1 -1.02,0.12 -2.06,0.69 -3.12,0.76 -1.08,0.3 -2.33,1.18 -3.43,0.65 -1.55,-1.58 -3.95,-1.28 -5.96,-1.14 -1.24,0.15 -1.33,1.59 -1.67,2.48 -0.58,-0.32 -1,0.9 -1.43,0.14 -0.85,-1.12 -1.29,-2.59 -1.5,-3.95 0.75,-1.6 0.44,-3.51 -0.06,-5.14 -0.55,-1.11 -1.54,-1.96 -2.34,-2.88 -0.9,-0.31 -1.93,-0.19 -2.88,-0.31 -0.66,-0.09 -1.65,0.81 -2.08,0.03 -0.21,-0.67 1.03,-1.32 0.17,-1.8 -0.72,-0.76 -1.75,-0.25 -2.24,0.47 -0.8,0.86 -2.14,0.55 -3.13,1.09 -0.65,0.38 -1.28,0.22 -1.8,-0.27 -1.26,-0.7 -2.82,-1.33 -3.35,-2.74 0.02,-1.48 0.56,-3.17 -0.45,-4.46 -0.44,-1.19 -1.12,-2.42 -1.11,-3.69 0.24,-0.41 0.96,-0.72 0.47,-1.29 -0.17,-0.69 -0.16,-1.64 -1.09,-1.77 -1.4,0.08 -1.55,-1.63 -2.15,-2.51 -0.55,-1.08 -1.12,-2.81 -2.67,-2.56 -0.95,0.05 -1.48,1.15 -2.5,0.85 -1.27,-0.1 -2.34,0.65 -3.51,0.96 -0.59,0.39 -1.26,0.55 -1.93,0.57 -0.77,0.5 -0.46,1.66 -1.07,2.32 -0.31,0.44 -0.57,1.15 -1.09,1.32 -0.71,-0.71 -1.76,-0.8 -2.52,-1.46 -0.84,-0.45 -2.01,0.19 -2.64,-0.74 -0.49,-0.45 -0.21,-1.31 -0.9,-1.63 -0.54,-0.57 -0.71,-1.45 -1.48,-1.76 -0.49,-0.49 -1.06,-1.01 -0.98,-1.75 -0.64,-0.73 -1.87,-0.75 -2.77,-0.6 -0.64,0.43 -1.3,0 -1.39,-0.7 -0.15,-0.85 -1.36,-1.32 -0.82,-2.28 0.39,-1.24 -0.13,-2.6 -0.66,-3.7 0.34,-0.84 1.45,-1.36 1.5,-2.28 -0.31,-1.25 -1.07,-2.41 -2.16,-3.09 -1.1,-1.68 -0.61,-3.99 -1.7,-5.68 -0.06,-0.03 -0.16,-0.08 -0.24,-0.05 z m 28.09,54.52 0.01,0.01 -0.01,-0.01 z", + "department-62" : "m 22.57,5.46 c -2.76,0.34 -5.55,0.86 -8.14,1.84 -2.24,0.64 -4.54,1.36 -6.55,2.57 -1.6,1.23 -2.74,3.06 -4.52,4 -0.77,0.4 -2.03,0.22 -2.52,1.03 0.16,2.39 1.51,4.79 0.74,7.22 -0.49,1.68 -1.76,3.22 -1.36,5.09 0.29,2.25 0.45,4.51 0.58,6.77 -0.01,0.91 1.17,1.34 1.11,2.17 -0.4,0.43 -1.41,0.07 -1.14,1.02 -0.17,2.67 -0.26,5.38 -0.77,8 -0.14,1.34 1.46,1.76 2.31,2.43 0.84,0.33 1.55,0.98 1.84,1.83 0.52,0.57 1.37,0.57 1.94,0.09 1.08,-0.23 2.06,-0.71 3.01,-1.26 1.84,-0.35 3.64,0.73 5.11,1.74 0.5,0.74 1.38,1.32 2.27,1.39 0.43,-0.34 0.99,-1.73 1.68,-1.01 0.62,0.32 0.5,1.08 -0.1,1.36 -0.59,0.21 -0.79,1.22 0.03,1.18 0.71,-0.1 1.2,0.77 1.89,0.93 0.89,0.43 1.93,0.45 2.67,1.19 0.34,0.21 1.08,0.15 1.15,0.57 -0.93,0.8 -0.03,2.17 0.76,2.71 0.45,0.32 0.93,0.01 1.33,-0.13 0.61,0.02 0.86,0.61 1.24,0.91 0.72,-0.31 1.3,-1.01 2.14,-1.15 0.53,-0.15 1.19,-0.44 1.54,0.04 0.96,0.13 1.71,-1.6 2.58,-0.58 0.38,0.71 1.55,0.35 1.76,-0.24 -0.12,-0.28 -0.87,-0.57 -0.2,-0.75 0.86,-0.44 1.09,0.96 1.55,1.38 0.51,1.15 0.76,-0.23 1.19,-0.63 0.56,-0.08 0.99,-1.02 1.54,-0.38 0.64,0.51 1.77,-0.43 2.02,0.62 0.34,0.79 1.74,0.76 1.7,1.72 -0.93,0.79 -2.16,1.02 -3.27,1.34 -0.5,0.27 -0.48,0.95 -1.05,1.18 -0.63,0.8 -0.94,1.94 -0.94,2.93 0.5,0.3 1.22,0.45 1.57,1.05 0.19,0.63 0.84,0.31 0.89,-0.21 0.41,-0.63 0.46,-1.71 1.14,-2.09 0.8,-0.33 1.63,-0.52 2.52,-0.56 0.22,0.37 0.69,1.81 1.3,1.16 0.15,-0.41 -0.04,-1.48 0.71,-1.13 0.35,0.25 1.22,-0.24 1.18,0.45 -0.31,0.4 -0.91,1.08 -0.12,1.39 0.69,0.38 1.59,-0.05 2.23,0.26 0.16,0.78 0.96,0.74 1.56,0.66 0.65,0.2 1.29,0.41 1.79,0.93 0.75,0.02 -0.05,-0.89 -0.3,-1.1 0.03,-0.37 0.62,-0.73 0.5,-1.23 -0.31,-0.79 0.88,-0.48 1.24,-0.27 0.5,0.61 1.31,0.81 2.07,0.79 0.21,1.05 -0.04,2.02 -0.68,2.85 -0.07,0.52 -0.31,0.91 -0.77,1.18 -0.38,0.8 1.07,0.71 1.35,0.21 0.4,-0.22 0.83,-0.4 1.18,-0.75 0.8,-0.3 1.46,-0.94 2.2,-1.29 0.4,0.5 0.37,1.3 0.88,1.79 0.45,0.35 -0.17,1.13 0.4,1.28 0.59,-0.38 1.66,-0.07 1.81,-0.98 0.44,0.16 0.77,-0.06 1.03,-0.35 0.74,-0.34 1.18,0.77 1.88,0.3 0.95,-0.62 2.12,-0.94 3.18,-0.36 0.37,0.16 1.65,0.62 1.48,-0.21 -0.07,-0.51 0.21,-1.08 0.23,-1.62 0.38,-0.22 1.06,-0.41 0.9,-1.05 0.03,-0.64 -0.81,-1.22 -0.58,-1.8 0.35,-0.53 1.29,-0.64 1.37,-1.32 -0.77,-0.24 -1.8,-1.57 0.04,-1.61 0.8,-0.09 1.3,-1.06 0.63,-1.65 -0.21,-0.3 -0.71,-0.49 -0.35,-0.91 0.11,-0.67 0.63,-1.01 1.29,-0.86 0.66,0.12 1.38,-0.67 0.64,-1.12 -0.49,-0.4 -1.53,-0.36 -1.37,-1.27 -0.28,-0.98 -1.66,-0.61 -2.42,-0.92 -2.06,-0.18 -2.01,0.2 -2.02,-1.67 0.24,-0.57 1.51,-1.13 0.79,-1.79 -0.3,-0.84 -0.93,-1.43 -1.74,-1.78 -1.13,-0.8 -1.73,-2.27 -2.07,-3.5 0.94,0.06 1.94,-0.22 2.35,-1.15 0.35,-0.73 1.77,-0.07 1.74,-1.16 0.07,-0.46 -0.31,-0.73 -0.4,-1.14 -0.71,-0.24 -0.86,1.07 -1.64,0.8 -0.88,-0.13 -1.02,-1.25 -0.57,-1.89 0.71,-0.95 -0.49,-1.47 -1.18,-1.82 -0.64,-0.54 -1.43,-1.2 -2.31,-0.71 -0.71,0.13 -1.32,0.92 -2.05,0.38 -1.46,0.09 0.42,-2.6 -1.2,-1.87 -0.99,0.3 -2.11,0.48 -3.13,0.21 0.01,-0.48 -0.61,-1.44 0.19,-1.57 0.97,-0.45 0.23,-1.85 -0.59,-2 0.07,-0.64 0.51,-1.46 0.97,-1.96 0.7,-0.45 1.27,-1.38 2.22,-1.07 0.5,-0.45 -0.45,-1.09 -0.68,-1.49 -0.89,-0.99 -2.74,-1.3 -3.74,-0.36 -0.26,0.77 1.23,0.82 1.14,1.49 -0.26,0.67 -1.31,-0.4 -1.45,0.57 -0.31,0.3 -0.08,1.06 -0.42,1.24 -0.8,-0.03 -1.11,-0.83 -1.55,-1.33 -0.57,-0.09 -1.12,-0.43 -1.68,-0.41 -0.46,0.66 -1.41,0.67 -2.13,0.9 -0.52,-0.37 -0.97,-1 -1.68,-0.86 -0.5,-0.37 -1.18,0.09 -1.44,0.44 -0.74,0.02 -1.16,-0.69 -1.66,-1.03 -0.68,0.45 -1.64,0.93 -2.32,0.19 -0.68,-0.72 -1.61,-0.98 -2.37,-1.54 -0.52,-0.53 -1.2,-1.29 -1.98,-0.77 -0.52,-0.1 -1.12,-0.81 -0.44,-1.2 1.06,-0.65 -0.37,-1.03 -0.7,-1.63 -0.38,-0.52 -1.2,-1.41 -0.37,-1.93 0.66,-0.79 2.05,-0.65 2.52,-1.63 -0.26,-0.51 -1.26,-0.85 -1.67,-0.42 -1.16,-0.16 -2.46,-0.64 -3.57,-0.19 -0.68,-0.47 -1.64,-0.44 -2.15,-1.19 -0.44,-0.67 -1.53,-0.79 -1.54,-1.72 -0.4,-2.98 -2.11,-5.61 -3.1,-8.4 -0.36,-1.23 -1.31,-2.18 -2.13,-3.14 -0.53,-0.5 -1.26,-0.72 -1.99,-0.66 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_41.js b/lib/mapael-maps/france/france_region_41.js new file mode 100644 index 000000000..e5e89554e --- /dev/null +++ b/lib/mapael-maps/france/france_region_41.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Lorraine for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_41 : { + width : 125.6265, + height : 119.09375, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -223.31495; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3273.7064; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-55" : "m 23.07,0.11 c -0.77,0.32 -0.55,1.73 -1.61,1.67 -1.21,-0.14 -1.89,0.97 -2.3,1.93 -0.54,0.51 -1.27,0.8 -1.92,1.16 -0.67,0.35 -0.71,-0.71 -1.19,-0.93 -0.57,-0.57 -1.36,-1.09 -2.15,-0.7 -0.63,-0.05 -1.61,0.66 -1.87,-0.29 -0.19,-0.82 -1.39,-1.74 -2.02,-0.83 -0.33,0.63 0.62,1.75 -0.38,1.97 -0.63,0.2 -0.63,0.98 -0.28,1.39 -0.2,0.91 -0.82,1.8 -1.72,2.07 0.3,0.7 1.35,1.16 1.17,2.05 0.24,0.67 1.65,0.72 0.98,1.65 -0.36,0.69 0.22,1.27 0.36,1.87 -0.37,0.55 -1.86,0.73 -0.83,1.46 0.8,0.77 -0.18,2.01 -1.15,1.79 -0.83,-0.11 -0.68,0.91 -1.19,1.3 -0.49,0.49 -1.01,1.2 -0.48,1.86 0.24,0.53 -0.22,1.26 0.46,1.63 0.4,0.03 0.88,0.43 0.44,0.8 -0.09,0.41 -0.07,1 -0.7,0.9 -1.28,-0.2 -1.95,1.06 -3.01,1.46 -0.43,0.21 -0.55,0.85 -0.03,0.97 0.09,0.68 0.72,1.12 0.87,1.73 -0.38,0.82 -1.99,0.69 -1.96,1.7 0.65,2.42 2.43,4.48 2.45,7.07 0.32,0.81 0.11,1.63 -0.49,2.27 -0.4,0.33 -0.1,0.98 0.38,0.6 0.56,-0.32 1.4,0.15 1.65,0.68 -0.03,0.59 0.13,1.52 -0.43,1.86 -0.44,-0.08 -1.31,0.55 -0.59,0.82 0.6,-0.03 1.47,0.46 1.03,1.16 -0.21,0.71 -0.7,1.34 -1.25,1.81 -0.87,0.22 -1.7,0.73 -2.62,0.62 -0.69,0.33 -1,1.16 -1.47,1.74 -0.05,0.45 0.45,0.81 0.06,1.28 -0.62,1 0.75,1.67 0.7,2.59 -0.5,0.74 -1.99,0.94 -1.96,2 0.1,0.54 0.25,1.17 0.94,1.21 0.77,0 1.26,0.47 1.52,1.13 0.71,0.96 1.61,1.94 2.7,2.39 0.17,0.71 0.28,1.55 0.41,2.2 -0.39,0.25 -0.37,0.88 -0.86,1.11 -0.29,0.56 0.86,0.53 0.62,1.21 0.02,0.6 -0.82,0.91 -0.5,1.59 0.32,0.72 -0.19,1.94 0.58,2.4 0.99,0.16 1.33,-1.02 2,-1.41 0.46,0.72 0.17,2.12 1.12,2.49 0.55,0.19 1.38,-0.13 1.82,0.16 0.27,0.91 0.92,2.15 2.07,1.9 0.44,0.42 1.06,0.85 1.54,1.28 0.27,0.91 1.28,1.02 2.05,1.26 0.88,0.43 1.95,1.18 2.91,0.73 0.98,0.17 1.35,1.03 1.85,1.76 0.55,0.82 1.55,1.01 2.44,1.15 0.57,0.54 0.12,1.59 0.9,2.06 0.39,0.4 1.05,0.3 1.26,0.89 0.4,0.31 1.01,-0.12 1.35,0.4 0.42,0.24 1.43,0.92 1.55,0.05 0.05,-1.03 1.35,-0.93 2.06,-1.32 0.49,-0.18 0.91,0.39 1.4,-0.06 0.82,-0.09 1.63,-0.26 2.3,-0.79 0.86,0 0.2,-0.79 0.24,-1.18 1.29,-0.53 2.44,0.67 3.7,0.5 0.98,-0.38 1.28,-1.55 1.8,-2.37 0.04,-0.89 -0.09,-1.81 0.32,-2.64 -0.26,-0.89 -1.57,-0.57 -2.13,-1.19 -0.84,-0.75 -0.59,-2.48 0.64,-2.65 0.68,-0.5 1.4,-0.96 2.29,-0.88 0.71,0.03 0.77,-1.3 -0.05,-0.96 -0.39,0.09 -1.34,0.82 -1.19,-0.09 -0.32,-1.03 -0.91,-2.05 -0.55,-3.17 0.23,-0.9 0.84,-2.01 -0.08,-2.75 -0.52,-0.58 -1.47,-1.26 -1.23,-2.13 0.67,-0.21 0.97,-0.77 0.85,-1.42 0.36,-0.66 1.4,-1.17 0.97,-2.02 1.28,-1.23 0.86,-3.22 0.29,-4.68 0.05,-0.57 1.47,-0.42 0.86,-1.17 -0.74,-0.43 -1.33,-1.3 -1.55,-2.09 0.84,-0.27 1.57,-0.79 2.09,-1.54 0.55,-0.4 1.4,0.2 1.91,-0.43 0.94,-0.59 -0.13,-1.64 -0.81,-1.89 -0.41,-0.09 -1.05,-0.58 -0.54,-0.98 0.67,-0.5 0.2,-1.44 0.8,-2.02 0.14,-0.76 1.67,-0.99 0.82,-1.78 -0.28,-0.7 -1.02,-0.92 -1.68,-0.99 -0.04,-0.95 1.28,-2.09 0.25,-2.93 -0.65,-0.24 -1.31,0.12 -1.9,0.21 -0.76,-0.24 -1.3,-1.12 -0.75,-1.84 0.47,-0.87 -0.69,-1.56 -0.17,-2.42 0.02,-0.6 0.82,-1.3 0.43,-1.83 -0.54,-0.11 -1.59,0.65 -1.65,-0.3 -0.23,-0.67 -0.13,-1.42 0.53,-1.81 0,-0.56 -0.93,-0.99 -0.5,-1.63 0.06,-0.55 0.02,-1.23 0.73,-1.35 0.9,-0.19 1.61,-1.47 0.96,-2.21 -0.5,-0.27 -1.34,0.19 -1.56,-0.58 -0.28,-0.47 -0.43,-1.04 0.19,-1.3 0.51,-0.64 0.08,-1.59 -0.68,-1.72 -0.34,-0.64 -0.31,-1.61 -1.15,-1.87 -0.07,-0.57 0.24,-1.37 -0.5,-1.67 -0.79,-0.42 -1.75,-1.47 -2.71,-1.02 -0.21,0.27 -0.06,0.74 -0.57,0.7 -1.13,0.14 -2.35,0.03 -3.3,0.74 -0.58,0.25 -1.64,-0.06 -1.72,0.86 -0.02,0.45 -0.93,1.26 -1.06,0.5 -0.07,-0.69 -1.16,-0.41 -1.25,-1.02 0.5,-0.33 1.11,-0.28 1.63,-0.14 0.47,-0.15 1.45,-0.92 0.45,-0.99 -0.42,-0.04 -1.36,-0.38 -0.76,-0.85 0.25,-0.39 -0,-0.96 -0.44,-0.97 -0.26,-0.75 0.41,-2.27 -0.79,-2.2 -0.37,-0.09 -1.33,0 -0.8,-0.58 0.22,-0.58 0.6,-1.02 1.01,-0.31 0.56,0.86 1.5,1.07 0.93,-0.15 -0.16,-0.63 -0.8,-1.23 -0.16,-1.83 0.47,-0.91 -0.81,-1.48 -0.68,-2.38 -0.39,-0.69 -0.71,-1.4 -0.96,-2.14 -0.45,-0.56 -0.99,-1.31 -1.75,-1.4 z", + "department-54" : "m 39.86,4.21 c -0.75,0.35 -1.03,1.69 -2.07,1.26 -1.09,-0.31 -2.17,-1.32 -3.37,-0.68 -0.85,0.39 -0.71,1.55 -1.19,2.17 -0.79,-0.06 -1.32,-0.97 -2.18,-0.98 -1.2,-0.47 -1.4,1.31 -2.49,1.26 -0.56,0.2 -1.52,-0.02 -1.86,0.55 0.44,0.27 0.27,0.87 -0.12,1.17 -0.51,0.74 -0.34,2 0.53,2.33 -0.21,0.52 -0.36,1.46 0.47,1.48 0.76,-0.04 0.01,1.16 0.84,1.09 1.11,-0.02 1.89,-1.06 3.05,-0.94 0.84,0.11 1.52,-0.34 2.07,-0.88 0.97,-0.2 1.8,0.79 2.59,1.2 0.88,0.38 0.03,1.62 0.96,1.93 0.52,0.51 0.41,1.6 1.28,1.72 0.55,0.59 0.51,1.61 -0.2,2.05 -0.26,0.67 0.39,1.54 1.14,1.17 0.82,-0.4 0.76,0.77 0.7,1.26 0.03,0.96 -0.9,1.23 -1.55,1.65 -0.65,0.77 -0.2,1.83 0.26,2.55 -0.46,0.52 -0.91,1.18 -0.5,1.89 0.31,0.8 1.63,-0.54 1.67,0.41 -0.02,0.87 -1.04,1.84 -0.5,2.67 0.32,0.3 0.39,0.93 0.7,1.13 -0.62,0.36 -1.18,1.26 -0.39,1.78 0.46,0.53 0.93,-0.19 1.49,-0.03 0.58,-0.08 1.42,-0.02 1.33,0.77 0.23,0.69 -0.25,1.11 -0.52,1.65 -0.28,0.96 1.33,0.3 1.31,1.17 0.21,0.64 1.09,1.2 0.12,1.61 -0.62,0.52 -1.1,1.26 -1.01,2.07 -0.11,0.39 -1.05,1.25 -0.2,1.4 0.69,0.23 1.39,0.89 1.59,1.6 -0.35,0.95 -1.55,0.92 -2.37,1.1 -0.62,0.49 -1.05,1.33 -1.97,1.31 -0.17,0.75 0.75,1.56 1.35,2.09 0.44,0.42 0.01,0.97 -0.49,1.01 -0.74,0.46 0.21,1.02 0.18,1.59 0.31,1.02 -0.03,2.1 -0.37,3.01 0.17,0.26 0.68,0.44 0.3,0.83 -0.77,0.51 -1.84,1.19 -1.61,2.28 -0.04,0.54 -0.67,0.47 -0.85,0.83 -0.14,1.34 1.71,1.8 1.8,3.01 -0.68,1.52 -0.92,3.67 0.4,4.91 0.43,0.1 1.46,-0.52 1.46,0.22 0.03,0.81 -0.77,1.15 -1.47,1.01 -0.84,0.05 -1.33,0.82 -2.11,1.03 -0.65,0.75 -0.5,2.26 0.64,2.45 0.5,0.35 1.5,0.41 1.75,1 -0.84,0.81 -0.59,2.13 -0.19,3.09 0.72,0.79 1.52,-0.52 2.35,-0.4 0.69,-0.39 1.71,-1.01 2.31,-0.21 0.36,0.4 1.15,0.2 1.41,0.57 0.13,0.92 -0.97,1.52 -0.54,2.44 0.32,2.07 0.21,0.72 0.76,2.09 -0.33,0.24 0.03,0.35 0.21,0.88 0.1,0.61 0.77,1.1 1.28,0.7 0.59,0.19 0.69,0.89 0.49,1.41 -0.03,0.73 0.2,2.11 1.24,1.72 1.3,-0.55 2.81,-0.92 4.18,-0.53 0.52,-0.32 -0.3,-1.24 0.5,-1.44 0.62,-0.35 0.63,0.81 0.8,1.14 0.01,0.6 0.87,0.93 0.98,0.2 0.25,-0.37 0.92,-0.28 1.02,-0.84 0.3,-0.68 0.25,-1.44 0.25,-2.17 0.41,0.12 1.27,-0.27 1.54,0.1 0.13,0.91 1.44,0.26 2.01,0.29 0.91,-0.05 1.74,-0.57 1.96,-1.47 0.39,-0.22 0.87,-0.46 1.31,-0.58 0.58,0.36 0.37,1.39 1.16,1.62 0.8,0.59 1.68,0.03 2.46,-0.2 0.52,0.11 0.66,0.54 0.68,0.96 0.51,0.31 1.14,0.16 1.31,-0.46 0.6,-0.71 1.64,-0.95 2.48,-0.6 0.35,-0.17 0.68,-0.28 1.07,-0.25 0.88,-0.16 1.51,-1.52 2.39,-0.66 0.26,0.19 1.32,0.7 1.14,-0.02 -0.64,-1.01 0.35,-2.32 1.29,-2.65 0.46,-0.19 1.23,-0.67 1.56,-0.01 0.24,0.94 0.11,2.45 1.31,2.75 0.6,-0.07 0.92,0.52 1.42,0.66 0.74,-0.36 1.63,-0.22 2.3,0.2 0.75,-0.12 0.96,0.89 1.75,0.72 0.58,0 1.4,0.42 1.66,-0.36 0.32,-0.88 1.31,-1.15 1.86,-1.87 0.46,0.21 0.24,1.23 1.01,1.07 1.3,-0.45 2.07,-1.81 3.06,-2.7 0.68,-1.07 1.9,-1.36 3,-1.76 0.87,-0.64 2.05,-0.66 2.85,-1.46 -0.11,-0.54 -0.75,-0.98 -0.41,-1.65 0.04,-0.31 -0.78,-0.26 -0.33,-0.49 0.36,-0.55 -0.74,-0.83 -0.81,-1.37 -0.22,-0.65 -0.67,-1.14 -1.32,-1.32 -0.39,-0.25 -1.31,-0.74 -0.55,-1.15 1.2,-0.93 -0.82,-0.59 -1.44,-0.63 -0.76,0.11 -1.55,-0.25 -1.67,-1.07 -0.05,-0.52 -0.68,-0.57 -0.78,-0.05 -0.42,0.57 -1.43,0.13 -2.05,0.31 -0.64,0.05 -1.45,0.08 -1.53,-0.77 -0.42,-1.23 -1.87,-0.51 -2.77,-0.74 -0.6,-0.29 -0.84,-0.95 -1.21,-1.39 -1.06,-0.09 -2.17,-0.1 -3.08,-0.77 -0.31,-0.13 -0.9,1.06 -0.89,0.32 0.08,-0.68 0.46,-2.08 -0.63,-2.1 -0.76,0.37 -1.12,-0.5 -1.77,-0.63 -0.5,0.08 -0.88,-0.21 -0.98,-0.68 -0.59,-0.69 -1.07,-1.86 -2.07,-1.94 -0.57,0.08 -1.41,0.36 -1.91,0.13 -0.28,-1.12 -1.78,-0.69 -2.5,-1.19 -0.15,-0.67 -0.91,-1.52 -1.59,-0.89 -0.48,0.36 -1.08,0.72 -1.58,0.2 -0.39,-0.36 -1.24,0.35 -1.2,-0.44 -0.19,-0.88 -0.72,-1.72 -1.31,-2.32 -0.25,-0.13 -1.29,0.25 -1.11,-0.24 0.62,-0.75 -1.12,-1.01 -0.76,-1.72 0.59,-0.21 0.33,-1.04 0.94,-1.25 0.25,-0.56 -1.01,-0.9 -0.09,-1.26 0.76,-0.42 1.23,-1.09 0.27,-1.56 -0.32,-0.46 -1.16,0.05 -1.23,-0.62 -0.31,-0.69 -1.16,-0.77 -1.67,-0.24 -0.85,0.35 -1.24,-1.05 -2.15,-0.73 -0.66,0.23 -1.25,-0.07 -1.8,-0.36 -0.5,0.09 -0.64,0.97 -1.24,0.43 -0.69,-0.21 -0.23,-1.1 -0.69,-1.54 -0.24,-0.8 -1.09,-0.62 -1.64,-0.32 -0.64,-0.09 -0.41,-1.21 -1.16,-0.97 -0.54,0.26 -1.42,-0.38 -0.84,-0.88 0.24,-0.64 0.21,-1.53 -0.56,-1.75 -0.63,-0.84 -1.51,-1.54 -2.59,-1.65 -0.86,-0.34 -0.97,-1.37 -1.66,-1.88 0.09,-0.51 -0.12,-0.97 -0.41,-1.38 0.01,-0.59 0.1,-1.41 0.93,-1.12 0.76,-0.16 1.88,0.22 2.44,-0.38 -0.36,-0.8 -1.25,-2.05 -0.19,-2.71 0.64,0.16 1.63,-0.64 0.89,-1.18 -0.35,-0.55 -1.04,-0.52 -1.49,-0.85 -0.39,-0.48 -0,-1.23 0.3,-1.58 0.67,0.15 0.67,-0.86 1.26,-1.02 0.88,-0.59 0.56,-1.76 -0.29,-2.14 -0.13,-0.37 -0.07,-0.88 -0.41,-1.11 -0.15,-0.76 0.34,-1.69 -0.09,-2.34 -0.33,0.02 -0.63,0.43 -0.93,-0.02 -0.55,-0.58 -1.54,-1.11 -1.67,-1.94 0.42,-0.24 1.21,-0.5 0.67,-1.11 -0.41,-0.42 -1.3,-0.45 -1.41,-1.16 0.48,-0.68 0.21,-1.78 -0.55,-2.08 -0.15,-0.92 1.07,-1.35 0.94,-2.2 -0.46,-0.5 0.23,-0.94 0.05,-1.5 -0.02,-0.75 -0.06,-1.85 -1.13,-1.37 -0.44,0.16 -0.76,-0.01 -0.77,-0.49 -0.53,-0.85 -2.01,-0.12 -2.26,-1.24 -0.39,-0.75 -0.71,-1.63 -1.58,-1.9 -0.64,-0.45 -1.4,-0.74 -2.08,-1.09 l -0.05,0.01 z", + "department-57" : "m 60.01,7.6 c -1.01,0.02 -2.09,0.09 -2.78,0.9 -0.59,0.09 -1.06,0.48 -1.19,1.1 -0.18,0.59 -1.01,0.45 -1.01,1.15 -0.64,0.34 -1.41,-0.76 -2.01,-0.03 -0.83,0.92 -2.25,0.5 -3.26,0.19 -0.75,-0.49 -0.18,-1.68 -1.01,-2.19 -0.69,-0.63 -1.91,-0.91 -2.74,-0.44 -0.03,0.84 1.1,0.21 1.57,0.57 0.56,0.31 0.01,1.04 0.35,1.52 0.26,0.4 0.05,0.63 -0.2,0.89 -0.11,0.48 0.75,1.19 -0.08,1.32 -0.61,0.35 -1.06,1.33 -0.24,1.72 0.52,0.71 -0.18,2.08 0.71,2.53 0.69,-0.16 0.86,0.89 1.35,1.18 -0.32,0.25 -1.43,-0.04 -1.16,0.74 0.48,0.6 1.12,1.48 1.96,1.49 0.38,-0.48 0.81,0.16 0.67,0.58 -0.04,0.73 -0.21,1.56 0.19,2.18 -0.14,0.92 1.27,1.13 0.92,2.09 -0.21,0.79 -1.08,1.28 -1.33,1.98 -1,-0.17 -1.06,1.74 0.01,1.62 0.45,0.32 1.13,0.76 1.26,1.24 -0.43,0.77 -1.82,0.65 -1.8,1.68 0.36,0.48 0.19,1.25 0.79,1.63 0.02,0.49 -0.93,0.42 -1.27,0.5 -0.68,0.17 -2.13,-0.3 -2.3,0.69 0.05,0.58 0.91,1.02 0.39,1.58 0.12,0.41 0.78,0.4 0.79,0.93 0.33,1.28 2.02,0.94 2.8,1.72 0.28,0.7 1.11,0.93 1.38,1.56 0.17,0.66 -0.6,2.21 0.47,1.97 0.54,-0.25 0.95,-0.05 0.92,0.62 0.42,0.64 1.36,-0.4 1.81,0.31 0.66,0.48 0.33,1.95 1.28,1.96 0.44,-0.39 1.09,-0.68 1.54,-0.18 0.65,0.23 1.65,-0.35 2.13,0.16 0.2,0.88 1.37,0.42 1.9,0.13 0.67,-0.04 1.01,0.6 1.45,0.94 0.39,0.08 0.83,-0.06 0.94,0.45 0.49,0.31 0.69,1.09 0.05,1.35 -0.52,0.12 -0.8,0.64 -0.41,1.02 0.14,0.41 0.12,0.96 -0.37,1.03 -0.07,0.34 -0.06,0.66 -0.36,0.93 -0.07,0.96 1.34,0.59 1.87,0.84 0.09,0.66 -0.01,1.68 0.99,1.54 0.19,0.21 -0.32,0.61 -0.1,0.93 0.22,1.05 1.63,1.25 2.51,1.09 0.58,-0.23 1.14,-0.85 1.62,-0.12 0.45,0.38 0.61,1.18 1.37,1.02 1.06,0.02 1.69,1.3 2.84,0.97 0.51,-0.1 1.17,-0.4 1.42,0.24 0.42,0.76 1.21,1.13 1.5,1.95 0.46,0.4 1.17,0.29 1.61,0.78 0.5,0.29 1.24,-0.12 1.54,0.56 0.42,0.38 -0.03,1.55 0.8,1.33 0.72,0.21 1.35,0.91 2.2,0.77 0.43,0.1 1.45,-0.47 1.23,0.37 0.01,0.58 0.8,0.48 0.83,1.03 0.88,0.29 2.22,-0.42 2.8,0.63 0.15,0.99 0.94,1.07 1.8,0.89 0.82,0.06 1.66,-0.12 2.18,-0.78 0.65,0.45 0.7,1.8 1.78,1.59 0.65,0.11 1.52,-0.27 2.08,0.11 0.34,0.56 -0.85,0.98 -0.18,1.45 0.63,0.44 1.53,0.45 1.7,1.36 0.2,0.88 1.04,1.17 1.63,1.69 0.05,0.93 1.08,0.47 1.62,0.33 0.99,0.59 2.5,0.71 3.3,-0.28 0.11,-0.51 0.56,-0.98 1.1,-0.82 0.94,-0.61 1.57,-1.7 2.1,-2.67 0.13,-0.88 0.73,-1.72 0.7,-2.64 0.2,-0.56 1.43,-1.11 0.84,-1.72 -0.48,-0.2 -1.3,0.13 -1.41,-0.61 -0.14,-0.5 -1.08,-1.16 -0.64,-1.68 1.03,-0.22 0.89,-1.53 1.53,-2.18 0.4,-0.81 0.44,-1.78 1.22,-2.36 -0.15,-0.67 -0.64,-1.32 -0.87,-2 -0.44,-0.64 -1.35,-0.09 -1.7,-0.85 -0.2,-0.52 -0.57,-1.35 -1.26,-1.15 -0.32,0.62 -0.8,-0.32 -1.22,-0.38 -0.5,-0.2 -0.2,-1.54 -0.9,-0.98 -0.35,0.48 -1.82,-0.32 -1.44,0.73 0.2,0.47 0.13,0.99 -0.42,1.12 -0.7,0.18 -0.19,1.26 -0.97,1.22 -0.65,-2e-4 -1.24,0.78 -1.84,0.61 -0.3,-0.31 -0.64,-0.78 -0.01,-0.97 0.93,-0.81 -0.91,-0.45 -1.18,-1.07 0.14,-0.56 -0.11,-1.51 0.3,-1.78 0.55,-0.19 1.69,0.12 1.89,-0.59 -0.33,-0.97 -1.49,-0.07 -2.07,-0.31 -0.66,-1.3 -2.27,-1.8 -3.61,-2.05 -0.75,0.13 -0.79,-0.54 -0.49,-1.02 0.1,-0.73 -1.47,-1.19 -0.76,-1.85 0.37,0.3 1.01,0.73 1.33,0.11 0.5,-0.5 0.25,-2.03 1.27,-1.82 0.45,0.14 1.42,0.3 1.18,-0.45 0.25,-0.53 0.24,-1.16 0.4,-1.73 0.62,-0.58 0.48,-1.43 0.68,-2.16 0.46,-0.78 1.14,-1.56 0.86,-2.54 -0.01,-0.38 0.17,-0.72 0.56,-0.52 0.52,-0.25 1.14,-0.44 1.5,0.19 0.24,0.43 -0.63,0.45 -0.4,0.98 0.16,0.79 0.87,1.34 0.86,2.21 -0.13,1.21 0.96,1.03 1.8,1.01 0.68,-0.1 0.87,0.71 1.47,0.81 0.3,0.57 0.87,0.95 1.47,0.49 0.99,-0.27 1.95,0.5 2.84,0.84 0.34,0.28 -0.31,1.08 0.4,1.11 0.53,-0.02 0.79,0.86 1.42,0.61 0.68,-0.21 1.34,-0.79 2.07,-0.43 1.56,-0.02 3.3,-1.53 4.72,-0.33 0.59,0.78 1.54,0.93 2.36,1.25 0.24,0.55 0.98,0.39 1.05,-0.15 0.46,-0.7 1.34,-1.23 1.37,-2.12 0.31,-0.66 0.13,-1.42 0.76,-1.95 0.32,-0.83 0.64,-1.68 1.3,-2.32 0.84,-0.93 -0.39,-2.22 -1.36,-2.39 -0.84,-0.15 -1.89,0.31 -2.48,-0.57 -0.74,-0.95 -1.39,-2.05 -2.26,-2.89 -0.28,-0.68 0.62,-1.6 -0.37,-2.01 -0.79,-0.6 -2.21,0.45 -2.57,-0.79 -0.59,-0.66 -1.68,-0.11 -2.37,0.13 -0.98,0.4 -0.63,2.14 -1.91,2.03 -1.15,-0.19 -1.44,1.18 -2.27,1.59 -1.07,0.17 -2.03,-1.07 -3.13,-0.4 -0.54,0.38 -1.18,0.51 -1.68,-0.03 -0.49,-0.46 -1.11,0.04 -1.59,-0.08 -0.72,-0.53 -1.67,-0.83 -2.17,-1.58 -0.78,-0.03 -0.51,1.18 -1,1.58 -0.31,0.63 -1.55,1.21 -1.79,0.24 -0.56,-1.3 -0.54,-2.74 -0.76,-4.09 -1.04,-1.1 -2.84,-0.84 -3.82,-2.03 -0.52,-0.68 -1.29,-0.32 -1.85,0.05 -0.84,0.23 -1.94,-0.71 -2.61,0.02 -0.24,1.03 1.09,2.13 0.21,3.08 -0.4,0.94 -1.46,0.82 -2.2,0.41 -0.99,-0.52 -2.21,-0.13 -3.16,-0.61 -0.59,-0.37 -1.05,-1.38 -0.26,-1.79 0.52,-0.6 0.13,-1.83 -0.81,-1.44 -0.78,0.31 -0.81,-0.56 -0.84,-1.1 0.09,-1.01 -1,-1.22 -1.45,-1.89 -0.19,-0.41 0.18,-0.88 -0.31,-1.2 -0.62,-0.96 -1.77,-1.35 -2.43,-2.23 -0.19,-0.83 -1.18,-1.2 -1.33,-1.98 0.04,-0.72 1.48,-0.76 0.97,-1.6 -0.4,-0.93 -1.31,-1.39 -2.11,-1.87 -0.53,-0.65 0.47,-1.7 -0.47,-2.19 -1.38,-0.86 -2.65,-1.98 -4.25,-2.36 -0.5,-0.4 -1.17,-0.78 -1.8,-0.3 -1.41,1.09 -3.37,0.14 -4.66,-0.7 -0.71,-0.74 -1.67,-1.44 -2.62,-1.74 -0.57,0.04 -1.14,0.07 -1.71,0.11 z", + "department-88" : "m 100.33,73.4 c -1.01,0.59 -2.15,0.94 -3.15,1.53 -0.56,0.44 -1.46,0.18 -1.96,0.82 -1.46,1.11 -2.46,2.98 -4.13,3.71 -0.55,-0.1 -0.64,-0.63 -0.85,-1.01 -0.86,0.23 -1.43,1.22 -1.96,1.91 -0.2,0.73 -1.26,0.3 -1.74,0.19 -0.5,-0.1 -0.96,-0.19 -1.33,-0.57 -0.75,-0.34 -1.74,-0.81 -2.49,-0.29 -0.79,-0.26 -1.45,-0.89 -2.32,-0.97 -0.44,-0.19 -0.05,-0.76 -0.42,-1.08 -0.52,-0.47 0.19,-1.7 -0.74,-1.7 -1.45,0.05 -3.06,1.74 -1.96,3.12 0.28,0.43 -0.05,0.59 -0.44,0.34 -0.8,-0.21 -1.66,-1.29 -2.39,-0.35 -0.48,0.5 -1.12,0.53 -1.72,0.62 -0.36,0.46 -0.93,0.09 -1.33,-0.03 -0.82,0.08 -1.47,0.67 -1.83,1.37 -0.39,0.02 -1.44,0.26 -1.39,-0.37 0.32,-0.75 -0.66,-0.79 -1.08,-0.45 -0.95,0.23 -2.53,0.04 -2.56,-1.22 -0.09,-0.8 -0.8,-0.42 -1.1,-0.02 -0.78,0.06 -0.44,1.34 -1.32,1.3 -1.02,0.42 -2.27,0.59 -3.35,0.41 -0.28,-0.56 -1.47,-0.71 -1.2,0.19 0.32,1.08 -0.54,1.92 -1.37,2.4 -0.42,0.79 -1.46,-0.1 -1.25,-0.79 0.13,-0.58 -0.81,-0.82 -0.72,-0.13 0.29,0.63 -0.63,1.39 -1.09,0.78 -0.69,0.04 -1.36,0.19 -2.05,0.15 -0.71,0.27 -1.88,1.07 -2.47,0.23 -0.18,-0.43 -0.1,-0.95 -0.46,-1.33 0.02,-0.46 0.55,-1.22 -0.15,-1.45 -0.34,0.07 -0.69,0.45 -0.94,-0.01 -0.83,-0.87 -0.83,-0.34 -1.09,-1.61 -0.38,-0.84 -0.07,-1.38 -0.49,-2.4 -0.23,-0.81 1.09,-1.67 0.31,-2.34 -0.87,-0.08 -1.57,-1.23 -2.49,-0.55 -0.67,0.49 -1.54,0.32 -2.12,1.03 -0.53,0.5 -1.32,-0.85 -1.73,-0.01 -0.39,0.84 -1.03,2.08 -2.2,1.67 -0.79,-0.14 -1.75,-0.84 -2.51,-0.4 -0.07,0.46 -0.11,0.99 -0.69,1.1 -0.58,0.13 -0.7,0.95 -0.93,1.2 -0.33,-0.73 -1.55,-0.6 -1.91,0.03 -0.47,0.11 -0.73,-0.63 -1.24,-0.27 -0.78,0.26 -1.86,0.66 -1.69,1.67 -0.71,0.22 -1.57,-0.76 -2.37,-0.38 -0.84,0.53 -1.91,1.02 -2.36,1.94 0.16,0.64 1.44,-0.01 1.45,0.63 -0.57,0.67 -1.08,1.5 -0.78,2.44 0.2,0.84 1.14,0.1 1.41,-0.3 0.74,-0.89 2.03,-0.73 2.93,-0.26 0.68,-0.04 0.18,0.89 0.63,1.19 0.76,1.25 1.7,2.47 2.71,3.48 0.55,-0.14 0.81,-1.37 1.4,-0.56 0.63,0.54 2.02,1.26 1.29,2.28 -0.65,0.87 0.78,1.27 1.42,1.29 0.97,-0.14 1.46,1.11 1.94,1.76 0.16,0.3 0.8,1.21 0.05,1.2 -0.76,-0.09 -1.81,0.16 -1.74,1.12 0.1,1.07 -0.08,2.21 -0.93,2.92 -0.55,0.42 0.13,0.78 0.2,1.15 -0.52,0.48 -1.8,0.81 -1.46,1.78 0.2,0.56 0.72,0.33 0.96,-0.02 0.79,0.14 1.75,0.34 2.12,1.13 0.63,0.28 0.71,1.24 1.5,1.2 0.63,0.28 1.09,0.99 1.77,1.11 0.01,0.94 0.78,1.74 0.84,2.63 -0.38,0.57 -0.84,1.24 -0.41,1.93 0.07,0.76 0.9,0.97 1.32,0.39 0.66,-0.12 1.02,-0.66 1.36,-1.16 0.49,-0.01 0.34,0.82 0.52,1.13 0.4,0.61 0.81,1.59 1.59,1.7 0.28,-0.31 0.23,-0.88 0.75,-1.03 0.64,-0.61 0.36,-1.81 1.4,-2.05 0.47,-0.48 1.28,0.66 0.74,1.12 -0.24,0.43 -1.31,1.17 -0.62,1.61 1.08,0.02 1.14,-1.75 2.32,-1.45 0.74,0.09 0.71,-0.77 1.22,-1.1 0.15,-0.42 0.03,-0.9 0.5,-1.22 0.77,-0.89 1.9,-1.62 3.13,-1.31 0.7,0.2 1,-0.87 1.71,-0.59 0.68,0.45 1.11,1.13 1.1,1.95 0.29,0.55 0.37,1.19 -0.02,1.66 -0.01,0.98 1.32,0.64 1.83,1.15 0.56,0.22 0.38,1.1 1.1,1.03 0.69,0.19 1.02,-0.34 1.57,-0.57 0.65,-0.6 1.5,-1.09 2.35,-0.56 1.19,0.28 2.23,-1.04 3.39,-0.52 0.88,-0.19 1.17,1.12 2.04,1.01 0.68,0.4 0.96,1.29 1.54,1.8 0.1,0.73 0.36,1.63 1.06,1.94 0.99,-0.87 2.7,-0.64 3.23,-2.01 0.38,-0.92 1.36,-1.7 2.33,-1.7 0.89,0.66 1.64,1.54 2.01,2.58 1.09,0.87 2.48,1.36 3.52,2.32 0.9,0.8 2.37,0.78 3.06,1.8 -0.01,0.88 0.8,1.67 1.65,1.71 0.38,-0.43 0.88,-0.57 1.46,-0.6 0.96,-0.37 2.31,-0.84 2.54,-1.94 -0.49,-0.53 -0.17,-1.43 -0.7,-1.91 -0.02,-0.79 1.58,-1.16 0.88,-2.02 -0.66,-0.31 0.3,-0.84 0.14,-1.35 -0.01,-1.08 0.17,-2.21 0.86,-3.04 0.2,-0.52 -0.17,-1.43 0.68,-1.4 1.03,-0.53 2.33,-1.28 2.56,-2.5 0.13,-1.32 1.11,-2.35 1.98,-3.28 0.4,-0.73 1.21,-1.44 1.17,-2.31 -0.39,-0.34 -1.24,-0.66 -0.83,-1.34 0.55,-1.1 0.78,-2.43 1.8,-3.19 0.13,-0.39 0.26,-0.69 0.57,-0.96 0.78,-1.31 0.73,-3.18 2.02,-4.12 0.09,-0.68 0.69,-1.14 0.75,-1.83 0.36,-0.26 1.16,-0.42 0.89,-1.08 -0.28,-0.48 -0.7,-0.88 -0.72,-1.46 -0.63,-0.49 -1.33,0.53 -2.07,0.28 -0.98,0.03 -1.43,-1.01 -2.33,-1.22 -0.58,-0.28 0.38,-0.85 0.5,-1.19 0.43,-0.42 0.83,-1.13 0.11,-1.51 -0.29,-0.21 -0.71,-0.66 -0.26,-0.91 0.24,-1.2 0.71,-2.33 0.77,-3.57 0.19,-0.58 0.86,-1.52 -0.1,-1.8 -0.84,-0.06 -0.37,-1.02 -0.73,-1.42 -0.06,-0.03 -0.12,-0.03 -0.18,-0.02 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_42.js b/lib/mapael-maps/france/france_region_42.js new file mode 100644 index 000000000..3bf744e89 --- /dev/null +++ b/lib/mapael-maps/france/france_region_42.js @@ -0,0 +1,37 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Alsace for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_42 : { + width : 63.03125, + height : 109.81562, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -312.72695; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3237.8284; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-67" : "m 11.66,0.12 c -0.37,0.18 -0.73,0.31 -1.14,0.21 -0.68,0.44 0.56,1.19 -0.11,1.65 -0.69,0.67 -1.14,1.59 -0.98,2.54 -0.29,0.63 -0.73,1.22 -0.67,1.96 -0.33,0.39 -0.25,0.99 -0.34,1.4 -0.66,-0.01 -1.81,-0.58 -1.97,0.46 -0.11,0.85 -0.87,1.34 -1.19,2.05 -0.04,0.69 0.03,1.86 1,1.73 1.43,0.19 2.46,1.2 3.69,1.83 0.54,0.15 1.73,-0.26 1.61,0.67 -0.39,0.76 -1.6,0.18 -2.06,0.63 0.19,0.56 -0.32,1.43 0.15,1.84 0.4,0.19 1.52,0.06 1.44,0.7 -0.29,0.2 -1.21,0.56 -0.58,0.93 1.03,0.02 1.92,-0.67 2.44,-1.49 0.6,-0.25 0.74,-0.85 0.58,-1.41 0.12,-0.89 1.35,-0.35 1.78,-0.93 0.65,0.04 0.54,0.8 0.65,1.22 0.65,0.48 1.61,0.05 2.23,0.65 0.23,0.23 1.07,-0.27 0.72,0.29 -0.63,0.37 -0.04,1.21 0.53,0.97 0.79,0.18 0.98,0.91 1.28,1.53 0.44,0.57 0.93,1.1 0.14,1.58 -0.65,0.89 -0.78,2.04 -1.45,2.93 -0.1,0.53 -0.23,1.07 -0.85,1.23 -0.49,0.58 0.42,1.34 0.84,1.74 0.37,0.46 1.13,0.19 1.49,0.5 -0.23,0.88 -1.33,1.42 -1.25,2.43 -0.42,1.07 -0.55,2.26 -1.39,3.14 -0.53,0.66 -0.95,1.66 -1.94,1.58 -0.59,0.32 -0.59,1.24 -1.39,1.35 -0.89,0.44 -1.82,0.06 -2.68,-0.17 -0.59,0.16 -1.21,0.11 -1.79,0.27 -0.51,0.5 0.39,0.93 0.84,0.77 0.7,-0.19 1.89,0.26 1.42,1.13 -0.39,0.13 -1.66,-0.31 -1.28,0.5 0.35,0.37 1.38,0.41 1.05,1.13 -0.38,0.79 -0.63,1.62 -0.51,2.49 -0.42,0.71 -0.48,1.59 -0.59,2.39 -0.4,0.67 1.11,1.1 0.46,1.81 -0.21,0.57 -1.7,1.38 -0.65,1.72 0.91,0.31 1.62,1.44 2.69,0.93 0.39,-0.16 1.37,-0.73 1.55,-0.06 -0.22,0.63 0.45,0.86 0.66,1.38 1.32,0.89 3.56,-0.09 4.37,1.63 0.46,0.36 -0.04,1.42 0.76,1.32 0.22,0.04 1.08,-0.29 1.02,0.06 -0.42,0.3 -1.13,1.18 -0.29,1.45 0.87,-0.03 1.73,0.05 2.48,0.58 1.49,0.75 2.98,1.47 4.45,2.26 0.15,0.94 -0.48,2.32 0.18,2.99 0.48,0.34 1.55,0.2 1.77,0.82 -0.16,0.69 0.08,1.53 0.94,1.47 0.92,0.22 2.43,0.46 2.73,-0.77 0.65,-2.53 2.1,-4.78 3.78,-6.75 0.76,-1.3 0.16,-3.02 0.85,-4.31 0.76,-0.84 2.51,-1.21 2.22,-2.65 -0.54,-1.88 -0.81,-4 0.13,-5.82 0.51,-1.07 1.12,-2.22 0.84,-3.45 0.43,-1.03 2.25,-1.25 1.72,-2.64 -0.01,-1.97 -0.69,-4.11 0.42,-5.9 0.43,-1.06 0.86,-2.26 2.05,-2.66 1.61,-1.23 3.39,-2.52 4.38,-4.3 0.43,-0.67 -0.16,-2.04 0.91,-2.18 0.78,-0.21 2.18,0.3 2.04,-0.96 0.08,-1.56 2.11,-1.12 2.93,-2.04 1.34,-1.51 1.1,-3.77 2.18,-5.46 0.75,-1.55 1.8,-2.98 2.64,-4.45 0.35,-0.48 1.48,-0.64 1.4,-1.29 -0.98,-0.16 -2.08,-0.12 -3.08,-0.48 -1.13,-0.44 -2.41,-0.45 -3.49,-0.95 -1.44,-1.03 -2.93,-2.05 -4.7,-2.43 -0.74,-0.38 -1.15,-1.38 -2.15,-1.2 -0.55,-0.12 -0.77,0.8 -1.22,0.31 -1.02,-0.13 -2.17,0.62 -3.14,-0.1 -0.76,-0.34 -1.47,-1.35 -2.29,-0.59 -0.92,0.6 -2.04,0.62 -3.03,0.14 -1.08,-0.17 -2.14,0.85 -3.19,0.19 -0.87,0.05 -1.42,1.09 -1.69,1.83 -0.22,0.78 -0.88,1.41 -0.94,2.26 -0.33,0.69 -0.3,1.54 -1.04,2 -0.56,0.26 -0.33,1.28 -1.09,1.14 -0.68,-0.13 -1.19,-0.71 -1.94,-0.7 -0.84,-0.26 -1.19,-1.37 -2.2,-1.26 -1.04,-0.03 -2,0.42 -2.92,0.77 -0.94,-0.09 -1.89,-0.01 -2.73,0.44 -0.74,0.2 -1.04,-0.83 -1.74,-0.81 -0.04,-0.67 -0.44,-1.28 -1.17,-1.43 -0.8,-0.51 -1.7,-0.46 -2.5,-0.04 -0.38,-0.34 -0.77,-0.77 -1.25,-0.98 -0.47,-0.96 -1.79,-0.28 -2.48,-0.79 -0.42,-1.02 -0.72,-2.1 -1.22,-3.08 -0.2,-0.39 -0.02,-0.69 0.32,-0.88 0.13,-0.28 -0.2,-0.5 -0.44,-0.46 z", + "department-68" : "m 16.65,50.64 c -0.59,0.02 -0.78,0.77 -1.4,0.75 -0.44,0.18 0,0.74 -0.42,0.98 -0.37,0.45 -0.39,1.07 -0.91,1.42 -0.94,1.22 -0.91,2.92 -1.86,4.12 -0.1,0.68 -0.96,0.91 -1.18,1.57 -0.29,0.68 -0.45,1.41 -0.83,2.07 -0.27,0.43 7e-5,1.05 0.55,0.96 0.6,-0.04 0.2,0.78 0.11,1.08 -0.33,0.69 -0.83,1.27 -1.2,1.94 -0.52,0.52 -1.27,0.92 -1.36,1.72 -0.21,0.42 -0.74,0.89 -0.39,1.38 -0.16,0.67 -0.9,1.1 -1.32,1.62 -0.35,0.3 -0.7,0.56 -1.09,0.8 -0.42,0.1 -1.09,-0.1 -0.88,0.61 0.09,0.56 -0.07,1.05 -0.48,1.42 -0.59,0.99 -0.29,2.25 -0.58,3.28 0.21,0.34 0.4,0.73 0.14,1.11 -0.14,0.52 -0.78,0.66 -0.98,1.1 0.36,0.52 0.09,1.3 0.58,1.78 0.31,0.31 0.35,0.96 -0.19,1.01 -0.45,0.37 -0.72,0.97 -1.38,1.03 -0.51,0.25 -1.45,0.23 -1.61,0.88 0.19,0.76 0.5,1.62 1.13,2.11 0.82,0.42 1.79,0.3 2.55,0.83 1.24,0.22 2.03,1.45 3.29,1.69 0.6,0.08 1.02,0.47 1.3,0.98 0.25,0.3 0.72,0.65 0.37,1.06 -0.34,0.59 -0.01,1.15 0.22,1.69 0.22,0.67 0.29,1.42 -0.04,2.06 -0.07,0.28 0.11,0.77 -0.36,0.66 -0.49,-0.07 -0.72,0.36 -0.66,0.79 -0.31,0.66 -0.48,1.42 -0.23,2.14 0.08,0.55 0.69,0.96 1.11,0.44 0.72,-0.31 1.81,-0.28 2.33,0.36 0.06,0.56 0.32,1.14 0.75,1.47 0.39,0.39 0.09,1.13 0.54,1.44 1.16,0.4 1.57,1.96 0.9,2.97 -0.13,0.6 0.71,0.81 1.14,1.01 0.52,0.2 1.28,-0.38 1.65,0.11 -0.54,0.87 -0.99,2.02 -0.7,3.05 0.57,0.88 2.01,-0.05 2.52,0.84 0.08,0.53 0.4,1.23 0.96,0.6 0.95,-0.48 2.03,-0.83 3.07,-1 1.16,0.3 2.57,0.74 3.6,-0.11 0.84,-0.34 1.27,-1.31 2.11,-1.65 0.52,-0.57 -0.41,-1.08 -0.72,-1.5 -0.33,-0.38 0.19,-0.74 0.57,-0.56 0.66,0.14 1.35,0.98 2.03,0.38 0.67,-0.34 0.68,-1.17 0.26,-1.71 -0.24,-0.49 0.6,-0.32 0.84,-0.37 0.85,-0.02 0.57,-1.35 -0.17,-1.31 -0.4,0 -0.65,-0.29 -0.26,-0.54 0.56,-0.68 1.73,-0.55 2.11,-1.38 -0.03,-0.87 1.24,-0.7 1.72,-1.03 0.25,-1.14 -0.58,-2.03 -0.94,-3 -0.42,-1.27 -2.11,-1.71 -2.34,-3.1 -0.24,-0.85 -0.39,-1.97 0.5,-2.5 0.84,-0.6 1.02,-1.75 0.52,-2.63 -0.82,-1.67 -0.46,-3.7 0.71,-5.11 0.74,-0.83 0.08,-1.92 0.01,-2.85 0.26,-0.71 1.34,-0.86 1.31,-1.74 0.15,-0.82 -0.44,-1.8 0.4,-2.37 0.96,-1.01 1.95,-2.47 1.29,-3.9 -0.68,-1.43 -2.59,-2.27 -2.37,-4.06 0.01,-1.38 0.32,-2.75 0.41,-4.11 -0.43,-0.5 -1.27,-0.24 -1.84,-0.46 -0.53,-0.04 -1.15,-0.44 -0.95,-1.06 0.42,-0.91 -0.76,-0.84 -1.31,-1.08 -0.34,-0.15 -1.01,-0.2 -0.79,-0.75 0.02,-0.81 0.41,-1.81 -0.15,-2.51 -0.76,-0.44 -1.51,-0.92 -2.38,-1.19 -1.2,-0.64 -2.38,-1.75 -3.85,-1.45 -0.51,0 -0.99,-0.5 -0.77,-1.03 0.14,-0.64 -0.82,-0.34 -0.88,-0.8 0.39,-0.82 -0.44,-1.56 -1.03,-1.99 -0.75,-0.14 -1.56,0.01 -2.26,-0.38 -0.18,-0.05 -0.38,-0.09 -0.57,-0.08 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_43.js b/lib/mapael-maps/france/france_region_43.js new file mode 100644 index 000000000..c388f1dc3 --- /dev/null +++ b/lib/mapael-maps/france/france_region_43.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Franche-Comte for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_43 : { + width : 86.249969, + height : 116.49937, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -239.98095; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3168.2364; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-70" : "m 39.82,0.14 c -0.5,0.38 -1.04,0.73 -1.72,0.55 -1.48,0.04 -3.08,1.07 -3.19,2.63 -0.41,0.51 -0.63,1.31 -1.48,1.13 -0.99,-0.03 -1.1,1.59 -2.11,1.39 -0.84,-0.16 -0.13,-1.14 0.18,-1.48 0.77,-0.39 0.19,-1.5 -0.54,-1.17 -0.8,0.34 -0.49,1.42 -0.9,1.96 -0.48,0.05 -0.71,0.4 -0.76,0.83 -0.67,0.53 -0.12,1.4 -0.43,2.03 -0.59,0.41 -1.54,-0.5 -1.95,0.36 -0.18,0.69 -0.68,1.21 -0.89,1.88 -0.08,0.53 0.42,1.34 -0.49,1.31 -0.71,0.51 -1.02,-0.46 -1.7,-0.45 -0.8,-0.31 -1.57,0.42 -1.38,1.24 0.3,0.66 -0.2,1.37 -0.89,1.27 -0.64,-0.22 -1.72,-0.44 -1.88,0.49 -0.08,0.8 -0.67,1.95 0.02,2.59 0.5,0.03 1.08,0.19 1,0.83 0.18,0.65 -0.18,1.15 -0.68,1.49 -0.14,0.47 -0.07,0.99 -0.36,1.45 0.18,0.61 0.74,1.57 -0.06,2 -0.59,0.07 -1.14,0.27 -1.67,0.52 -0.81,0.21 -1.66,0.19 -2.5,0.27 -0.4,-0.63 -0.3,-1.67 -0.92,-2.11 -1.14,0.21 -1.34,2.24 -2.69,1.95 -0.7,-0.04 -1.48,-0.88 -2.05,-0.1 -0.83,0.65 -1.85,0.25 -2.75,0.14 -0.54,0.63 -0.09,1.77 -0.8,2.38 -0.62,0.62 -1.28,2.05 -0.28,2.62 1.11,-0.1 1.08,-1.84 2.07,-2.17 0.97,0.35 1.77,1.29 2.23,2.2 0.43,0.85 -0,1.83 0.59,2.59 0.26,0.81 0,2.08 -0.95,2.24 -0.73,0.55 -0.75,1.99 -1.75,2.17 -0.58,-0.39 -1.67,-0.51 -1.95,0.33 -0.32,0.55 1,0.46 0.41,0.89 -0.4,0.14 -1.41,1.05 -0.51,1.14 0.43,-0.18 1.22,-0.59 1.32,0.15 0.2,0.38 1.28,0.15 0.9,0.74 -0.39,0.62 -0.3,1.51 0.07,2.09 -0.13,0.6 -0.21,1.67 0.72,1.52 0.59,-0.19 1.21,-0.63 1.8,-0.11 -0.05,1.1 -0.31,2.28 0.01,3.39 -0.02,0.61 -1.3,0.89 -0.85,1.46 1.14,-0.03 2.23,0.71 2.63,1.78 0.39,0.41 1.06,0.52 1.11,1.18 0.47,0.13 0.64,0.57 0.95,0.9 0.56,0.12 1.21,-0.23 1.8,0.01 0.69,0.35 1.27,-0.1 1.72,-0.57 0.55,-0.1 0.85,-0.87 1.48,-0.41 0.7,0.25 1.45,0.29 2.17,0.45 0.55,-0.19 0.86,-0.82 1.49,-0.86 0.88,-0.9 2.2,-1.14 3.34,-1.5 0.43,-0.44 0.79,-1.02 1.45,-1.06 0.25,-0.43 0.95,0.08 1.03,-0.55 0.02,-0.75 1.56,0.13 1.29,-0.86 -0.11,-0.67 0.92,-0.18 1.23,-0.13 0.64,0.07 1.35,1.17 1.95,0.51 -0.07,-0.44 0.31,-0.53 0.6,-0.25 1,0.81 1.46,-1.05 2.41,-0.98 0.78,0.12 1.07,-0.61 1.09,-1.24 0.32,-0.19 1.28,0.23 1.14,-0.5 -0.22,-0.47 0.42,-1.37 0.87,-1.01 0.48,0.88 2.19,0.22 2.17,-0.71 -0.23,-0.32 -0.34,-0.77 0.22,-0.75 0.67,0.08 0.8,-0.76 1.23,-0.98 0.46,0.47 1.05,0.65 1.4,-0.01 0.42,0.41 1.18,0.24 1.03,-0.46 -0.05,-0.54 0.48,-0.58 0.84,-0.63 0.79,-0.7 0.78,-1.94 1.13,-2.78 0.63,0.18 1.11,-0.26 1.26,-0.82 0.42,-0.51 1.22,-0.55 1.81,-0.72 0.58,0.2 1.12,-0.02 1.41,-0.51 0.91,0.01 1.98,0.06 2.77,0.55 0.3,0.49 0.5,1.45 1.14,0.63 0.51,-0.66 0.81,-0.38 1.21,0.13 0.52,0.28 1.05,-0.66 1.45,0.05 0.67,0.53 1.86,0.09 1.67,-0.88 0.04,-0.43 -0.1,-0.94 -0.41,-1.15 0.08,-0.5 0.48,-1.33 1.06,-0.75 0.54,0.24 0.86,0.85 1.57,0.64 0.87,-0.01 1.49,-0.97 1.61,-1.73 -0.17,-0.36 -0.81,-1.21 -0.12,-1.3 0.31,0.55 1.24,0.06 1.35,0.8 0.39,0.52 1.11,0.62 1.63,0.33 0.96,0.16 1.43,1.86 2.54,1.38 0.61,-0.62 0.9,-1.51 1.46,-2.18 -0.16,-0.72 -1.09,-1.17 -1.15,-1.99 -0.01,-0.54 -0.81,-0.65 -0.49,-1.17 0.25,-0.53 1.18,-0.97 0.74,-1.65 -0.72,-0.27 -0.73,-1.37 -0.76,-2.04 0.13,-0.92 -0.39,-1.74 -0.6,-2.59 -0.99,-1.75 0.36,-3.74 1.61,-4.95 0.45,-0.46 1.42,-1.23 0.57,-1.81 -0.54,-0.47 -1.2,-0.93 -1.14,-1.74 -0.68,-0.8 -1.95,-0.83 -2.76,-1.52 -1.06,-0.76 -2.1,-1.52 -3.29,-2.09 -0.94,-0.44 -0.78,-1.77 -1.72,-2.27 -0.73,-0.97 -2.03,-0.32 -2.52,0.53 -0.46,0.86 -1.02,1.76 -2.1,1.85 -0.66,0.11 -1.25,0.64 -1.82,0.75 -0.68,-0.67 -0.79,-1.64 -1.23,-2.41 -0.52,-0.59 -0.84,-1.54 -1.83,-1.37 -0.34,-0.38 -0.56,-1.01 -1.21,-1 -1.34,-0.45 -2.59,1 -3.95,0.4 -1.39,-0.35 -2.14,1.51 -3.51,1.27 -0.29,0.34 -0.93,0.24 -0.72,-0.3 0,-0.94 -1.08,-0.97 -1.73,-1.17 -0.36,-0.27 -1.19,-0.74 -0.53,-1.17 0.37,-0.5 0.17,-1.07 -0.13,-1.5 -0.01,-0.66 -0.46,-1.65 -1.19,-1.72 z", + "department-25" : "m 64.7,29.99 c -0.68,0.19 0.28,0.83 -0.21,1.22 -0.41,0.99 -1.79,1.98 -2.76,1.17 -0.31,-0.67 -1.49,-0.55 -1.23,0.28 0.56,1 0.06,2.85 -1.35,2.44 -0.33,-0.46 -0.85,-0.6 -1.31,-0.25 -0.58,-0.2 -1.43,-0.79 -1.83,0.05 -0.11,0.21 -0.29,0.91 -0.5,0.37 -0.16,-0.69 -0.37,-1.56 -1.24,-1.58 -0.76,-0.23 -2.03,-0.61 -2.29,0.42 -0.6,-0.05 -1.28,-0.43 -1.8,0.11 -0.82,0.01 -1.07,0.89 -1.6,1.32 -0.57,-0.23 -0.79,0.35 -0.72,0.83 -0.21,0.67 -0.7,1.23 -0.79,1.94 -0.32,0.24 -1.02,-0.22 -0.99,0.47 0.06,0.77 -1.05,0.98 -0.97,1.75 -0.63,-0.1 -1.24,-1.3 -1.88,-0.8 0.09,0.7 -1.46,0.31 -0.93,1.01 0.3,0.03 0.75,0.36 0.21,0.45 -0.76,0.42 -1.45,1.49 -2.44,0.9 -0.31,-0.38 -0.9,-0.29 -0.94,0.27 -0.01,0.52 0.72,1.11 -0.03,1.45 -0.54,0.4 -0.58,-1.24 -1.14,-0.38 -0.01,0.85 -0.88,1.29 -1.62,1.35 -0.68,0.15 -0.87,1.18 -1.66,0.89 -0.49,-0.18 -0.84,0.11 -1.13,0.39 -0.95,-0.01 -1.65,-1.16 -2.67,-0.9 -0.36,0.18 0.16,0.96 -0.4,0.8 -0.54,-0.17 -1.31,0.05 -0.97,0.75 0.07,0.58 -0.57,0.35 -0.78,0.06 -0.39,-0.12 -0.63,0.33 -1.03,0.3 -0.62,0.68 -1.47,1.09 -2.38,1.29 -1.02,0.19 -1.66,1.03 -2.57,1.4 -0.44,0.46 -1.03,0.75 -1.61,0.34 -0.53,-0.28 -0.86,0.37 -0.46,0.74 0.72,1 0.35,2.85 1.75,3.3 0.6,-0.19 0.7,0.75 1.29,0.79 0.68,0.14 0.27,1.08 0.94,1.24 0.52,0.12 0.88,0.47 0.8,1.02 -0.02,0.66 1.08,1.13 0.29,1.64 -0.58,0.68 -0.66,1.6 -1.31,2.23 -0.14,0.51 -1.07,0.35 -0.75,1.04 0.05,0.67 0.76,1.71 0.17,2.26 -0.74,0.27 -1.4,0.8 -1.45,1.66 -0.1,0.93 1.15,0.6 1.61,0.31 0.87,-0.16 0.44,-1.16 0.91,-1.61 0.76,-0.57 0.71,0.72 0.74,1.16 -0.06,0.84 0.89,0.84 1.4,1.18 0.68,0.16 1.45,0.12 1.93,0.68 0.73,0.27 0.97,-0.74 1.36,-1.03 0.17,0.66 -0.64,1.89 0.32,2.13 0.44,0.03 0.83,-0.59 1.11,-0.05 0.85,-0.04 1.55,0.99 1.01,1.71 -0.72,0.24 -0.32,0.94 0.24,1.06 0.37,0.22 1.09,0.56 0.55,1.03 -0.64,0.58 -0.36,1.5 0.39,1.8 0.97,0.12 0.01,1.65 0.96,1.69 0.72,-0.29 0.5,0.68 0.37,1.07 0.17,0.88 1.37,0.27 1.79,-0.06 0.69,0.04 0.84,1.02 1.61,0.86 0.61,0.47 1.22,1.08 1.94,1.46 0.57,0.55 0.94,1.31 1.58,1.83 0.45,0.6 1.1,1.2 1.26,1.91 -0.47,0.44 -1.02,0.86 -1.16,1.52 -1.43,1.21 -3.1,2.2 -4.52,3.43 -0.83,0.58 0.37,1.5 0.56,2.13 0.52,0.55 0.18,1.26 -0.45,1.52 -0.68,0.33 -1.1,0.94 -1.21,1.63 -0.4,0.54 0.61,1.06 0.87,1.48 0.86,0.71 1.6,1.8 2.69,2.11 0.72,-0.57 -0.91,-1.34 -0.16,-2.01 2.57,-2.2 4.87,-4.71 7.54,-6.78 1.18,-0.72 2.87,-0.98 3.53,-2.3 0.72,-0.25 0.86,-1.43 1.78,-1.31 0.95,-0.34 1.61,-1.37 1.94,-2.23 -0.46,-0.62 -1.49,-1.23 -0.9,-2.11 0.27,-1.36 1.42,-2.44 1.16,-3.92 0.09,-1.28 -0.75,-2.33 -1.29,-3.41 0.83,-0.96 1.59,-2.24 2.76,-2.74 1.98,-0.18 3.86,-1.04 5.7,-1.76 1.35,-0.84 2.12,-2.46 3.72,-2.92 0.67,-0.39 0.36,-1.25 -0.07,-1.68 -0.16,-0.92 0.52,-1.86 1.48,-1.97 0.91,-0.24 0.38,-1.62 1.42,-1.75 1.39,-0.66 3.03,-1.51 3.62,-3.01 0.65,-1.39 2.01,-2.43 3.16,-3.41 1,-0.56 2.06,-1.42 1.84,-2.7 0.1,-0.93 -0.58,-2.43 0.86,-2.35 0.73,-0.25 2.35,-0.54 1.97,-1.65 -0.14,-0.41 0.8,-0.4 1.03,-0.57 1.14,-0.24 1.26,-1.81 0.28,-2.35 -0.63,-0.6 -1.48,-0.53 -2.19,-0.16 -1.65,0.42 -3.39,0.39 -5.09,0.47 -0.19,-1.3 1.24,-1.83 1.77,-2.81 0.31,-0.28 1.03,-0.14 0.87,-0.79 0.06,-1.48 -0.15,-3.23 -1.33,-4.22 -0.06,-0.53 -0.26,-1.42 0.25,-1.76 0.29,-0.12 0.7,-0.15 0.83,0.18 0.64,-0.09 0.72,-1.27 -0.02,-1.37 -0.61,-0.24 -1.37,-0.58 -1.16,-1.38 -0.12,-0.87 -1.32,-1.24 -2,-0.74 -0.86,0.15 -2.04,0.43 -2.59,-0.42 -0.81,-0.01 -0.87,1.82 -1.79,1.14 -0.81,-0.21 -1.13,-1.25 -1.93,-1.36 -0.26,0.24 -0.5,0.46 -0.85,0.15 -0.56,-0.16 -0.95,-0.55 -1.29,-0.94 -0.14,-0.06 -0.29,-0.06 -0.44,-0.05 z", + "department-39" : "m 11.97,47.92 c -0.5,0.12 -0.3,0.81 -0.68,1 -0.33,-0.08 -0.69,0.06 -0.69,0.47 -0.21,0.81 -0.21,1.69 -0.2,2.5 -0.34,0.42 -0.25,0.96 -0.25,1.46 -0.21,0.64 -1.28,0.61 -1.33,1.3 0.32,0.32 0.52,0.75 0.37,1.23 -0.06,0.72 -0.48,1.3 -0.76,1.92 0.02,0.53 -0.42,0.92 -0.9,1.03 -0.47,0.27 -0.38,0.81 -0.49,1.24 -0.4,0.43 -0.54,0.97 -0.68,1.51 -0.38,1.1 -1.74,0.99 -2.71,1.14 -0.62,0.06 -0.86,0.74 -1.26,1.06 -0.81,0.38 -1.46,1.3 -1.37,2.21 0.51,0.32 1.29,0.33 1.69,0.77 0.1,0.4 -0.53,0.23 -0.64,0.58 -0.2,0.63 -1.12,0.24 -1.31,0.9 -0.38,0.49 -1.06,0.92 -0.64,1.63 0.08,0.48 0.37,1.07 -0.1,1.44 -0.11,0.51 0.63,1.03 1.01,0.53 0.34,-0.36 1.07,-0.2 1.29,0.2 0.14,0.84 0.22,1.73 0.84,2.39 0.18,0.24 0.1,0.87 0.57,0.65 0.31,-0.22 0.66,-0.32 0.86,0.11 0.59,0.37 1.28,-0.88 1.89,-0.23 0.45,0.38 -0.01,1.23 0.54,1.62 0.57,0.67 1.72,0.2 2.26,0.84 0.04,0.6 0.36,1.17 0.04,1.77 -0.86,0.04 -1.76,0.17 -2.55,-0.2 -0.75,0.18 -1.53,0.29 -2.17,0.79 -0.33,0.39 -0.83,-0.33 -1.09,0.19 -0.28,0.64 0.08,1.7 0.89,1.62 0.55,0.16 0.89,0.56 1.26,0.94 0.45,0.11 0.57,0.58 0.24,0.9 -0.38,0.56 -1.23,1.23 -0.86,1.98 0.38,0.31 1.27,-0.01 1.24,0.72 -0.03,0.57 0.42,0.91 0.64,1.36 0.15,0.56 -0.92,1.16 -0.02,1.45 0.55,0.28 1.17,1.07 0.64,1.63 -0.06,0.63 1.24,0.89 0.7,1.53 -0.4,0.59 -0.96,1.13 -1.61,1.43 0.37,0.59 0.66,1.11 0.18,1.79 -0.29,0.58 -1.53,-0.11 -1.83,0.49 0.3,0.63 -0.27,1.15 -0.16,1.79 0.05,0.64 -0.18,1.43 0.12,1.97 1.01,0.09 1.52,1.15 2.49,1.3 0.18,0.73 0.19,1.78 -0.68,2.05 -0.42,0.28 -1.09,-0.12 -1.3,0.5 -0.58,0.25 -1.32,-0.07 -1.96,0.01 -0.49,-0.04 -0.44,0.57 -0.86,0.72 -0.33,0.54 0.68,1.22 0.06,1.7 -0.42,0.49 -0.13,1.16 0.44,1.34 0.57,0.29 1.24,0.29 1.69,0.81 0.28,0.25 0.94,0.64 0.43,1.03 -0.73,0.44 0.3,0.72 0.22,1.26 0.18,0.71 0.91,1.21 1.51,1.54 0.41,-0.03 0.15,-0.82 0.59,-0.82 0.5,0.51 0.29,1.55 0.92,1.95 0.47,0.01 0.91,-0.8 1.23,-0.18 0.57,0.45 0,1.23 -0.17,1.79 -0.62,0.68 0.01,2.01 0.98,1.69 0.36,-0.09 0.75,-0.34 1.04,0.02 1.13,0.21 2.06,-0.77 2.51,-1.7 0.49,-0.18 1.29,0.07 1.54,-0.6 0.39,-0.7 0.4,-1.72 1.3,-1.99 0.38,-0.07 0.59,-0.79 1,-0.6 0.31,0.32 -0.25,1.1 0.46,1.07 0.58,-0.04 1.05,0.36 1.34,0.78 0.47,0.28 1.39,0.05 1.4,0.84 0.16,0.77 -0.1,1.63 0.2,2.35 0.5,0.27 1.09,-0.26 1.64,-0.18 1.44,-0.18 2.91,0.58 4.31,0.18 0.36,-0.4 1.11,-0.11 1.3,-0.73 0.27,-0.45 0.73,-0.78 1.27,-0.74 0.56,-0.4 0.08,-1.64 0.9,-1.76 0.65,0.44 0.99,-0.52 1.25,-0.94 0.66,-1.09 1.13,-2.43 2.33,-3.06 0.97,-0.67 1.48,-1.77 2.27,-2.58 0.82,-0.48 1.8,-1.52 1.15,-2.51 -0.46,-0.69 -0.08,-1.49 0.48,-1.97 0.89,-0.94 1.16,-2.24 1.86,-3.29 0.34,-0.55 1.12,-0.85 1.25,-1.51 -0.09,-0.47 -0.69,-0.73 -0.96,-0.25 -0.47,0.46 -0.85,-0.41 -1.25,-0.6 -0.95,-0.91 -2.02,-1.78 -2.81,-2.83 0.24,-0.34 0.41,-0.71 0.49,-1.12 0.49,-0.61 1.41,-0.84 1.78,-1.53 -0.25,-0.93 -1,-1.7 -1.23,-2.6 1.28,-1.07 2.63,-2.14 4.05,-3.07 0.57,-0.24 0.89,-0.78 1.05,-1.35 0.25,-0.41 1.16,-0.62 0.78,-1.22 -0.7,-1.19 -1.83,-2.07 -2.62,-3.17 -0.52,-0.52 -1.37,-0.69 -1.68,-1.37 -0.31,-0.31 -0.82,0.29 -0.98,-0.25 -0.14,-0.54 -0.81,-0.88 -1.22,-0.39 -0.35,0.62 -1.09,0.17 -1.5,-0.08 -0.08,-0.38 0.28,-1.17 -0.42,-1.11 -0.78,-0.22 -0.08,-1.44 -0.78,-1.79 -0.47,-0.34 -1.2,-0.91 -0.79,-1.56 0.36,-0.46 0.58,-0.99 -0.11,-1.27 -0.25,-0.29 -0.88,-0.37 -0.98,-0.68 0.41,-0.47 1.17,-1.08 0.53,-1.71 -0.33,-0.34 -0.85,-0.28 -1.24,-0.48 -0.43,0.03 -0.94,0.3 -1.22,-0.2 -0.31,-0.22 2.2e-4,-0.97 -0.57,-0.84 -0.36,0.24 -0.76,0.19 -1.01,-0.17 -0.39,-0.33 -1.12,-0.56 -1.48,-0.16 -0.39,-0.4 -0.92,-0.67 -1.44,-0.84 -0.41,-0.53 0.18,-1.52 -0.43,-1.91 -0.63,0.11 -0.24,1.02 -0.67,1.36 -0.28,0.48 -0.94,0.3 -1.26,0.74 -0.78,0.13 -1.49,-0.85 -0.91,-1.49 0.18,-0.45 -0.91,-1.12 -0.09,-1.28 0.44,-0.01 0.72,0.72 1.18,0.34 0.88,-0.38 0.32,-1.49 0.08,-2.12 -0.24,-0.49 0.03,-1.15 0.62,-1.11 0.25,-0.25 0.33,-0.64 0.66,-0.87 0.29,-0.61 0.47,-1.36 0.99,-1.8 -0.09,-0.45 -0.55,-0.78 -0.51,-1.3 -0.02,-0.45 -0.21,-1.01 -0.78,-0.87 -0.72,0.16 -0.25,-0.84 -0.69,-1.12 -0.34,-0.33 -1.06,-0.21 -1.08,-0.81 -0.24,-0.37 -0.75,0.29 -0.84,-0.25 -0.48,-0.7 -0.99,-1.4 -0.98,-2.29 -0.32,-0.79 -0.61,-1.85 -1.49,-2.17 -0.49,-0.02 -0.82,0.44 -1.27,0.54 -0.36,0.67 -1.37,0.88 -2.02,0.46 -0.51,-0.25 -1,0.1 -1.42,0.3 -0.57,-0.1 -0.34,-1.05 -1.01,-1.03 -0.22,-0.29 -0.24,-0.81 -0.69,-0.93 -0.6,-0.14 -0.58,-0.94 -1.08,-1.14 l -0.04,0 z", + "department-90" : "m 72.33,13.48 c -0.55,0.23 -0.49,0.97 -0.95,1.33 -0.63,0.8 -1.51,1.36 -1.95,2.3 -0.77,0.99 -0.8,2.48 -0.08,3.5 -0.03,0.67 0.48,1.24 0.41,1.93 -0.01,0.83 -0.07,1.76 0.62,2.36 0.29,0.29 0.48,0.66 0.1,0.97 -0.14,0.38 -0.57,0.43 -0.76,0.72 -0.05,0.5 0.53,0.78 0.56,1.29 0.18,0.47 0.52,0.85 0.75,1.28 0.26,0.15 0.87,0.53 0.4,0.81 -0.7,0.47 -0.05,1.72 0.76,1.5 0.78,0.02 1.57,-0.19 2.27,-0.46 0.8,0.18 1.42,0.82 1.46,1.64 0.04,0.86 1.41,0.54 1.43,1.42 0.01,0.47 0.26,1.11 -0.01,1.5 -0.5,0.35 -0.45,-0.64 -0.86,-0.74 -0.5,-0.2 -0.94,0.42 -0.64,0.85 0.2,0.34 -0.18,0.93 0.34,1.04 0.43,0.61 0.84,1.44 0.71,2.19 -0.36,0.5 0.42,0.64 0.75,0.45 0.83,-0.18 1.47,-0.8 2.26,-1.07 0.62,-0.6 -0.22,-1.42 -0.38,-2.05 -0.12,-0.36 -0.45,-1.06 0.17,-1.13 0.42,-0.08 0.81,-0.3 1.15,-0.48 0.96,0.2 1.82,0.91 2.87,0.71 1.1,-0.11 2.47,-0.62 2.45,-1.94 0.17,-1 -0.69,-1.63 -1.42,-2.13 -0.16,-0.46 -0.02,-1.09 -0.52,-1.4 -0.45,-0.55 -0.43,-1.71 -1.38,-1.73 -0.72,-0.12 -1.46,0.05 -1.95,0.59 -0.4,0.24 -0.3,-0.53 -0.6,-0.62 -0.31,-0.79 -0.34,-1.73 0.1,-2.47 0.16,-0.36 0.01,-1.1 0.63,-0.98 0.41,0.01 0.38,-0.37 0.4,-0.64 0.61,-1 -0.15,-2.14 -0.3,-3.13 0.23,-0.47 0.38,-1.05 -0.1,-1.44 -0.8,-1.1 -2.3,-1.18 -3.29,-2.06 -0.38,-0.36 -0.84,-0.58 -1.34,-0.6 -0.84,-0.67 -2.13,-0.38 -2.92,-1.15 -0.45,-0.63 -0.74,-1.4 -0.95,-2.13 -0.05,-0.04 -0.12,-0.05 -0.18,-0.04 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_52.js b/lib/mapael-maps/france/france_region_52.js new file mode 100644 index 000000000..de883e275 --- /dev/null +++ b/lib/mapael-maps/france/france_region_52.js @@ -0,0 +1,40 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Pays de la Loire for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_52 : { + width : 158.63092, + height : 151.9375, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 117.60305; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3204.0434; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-44" : "m 49.49,48.34 c -0.62,0.47 0.6,1.44 0.1,1.98 -0.76,0.48 -1.83,0.28 -2.45,1.07 -0.86,0.62 -2.08,0.21 -2.95,0.89 -0.4,0.24 -0.53,0.82 -1.11,0.74 -1.04,0.51 -1.05,1.78 -1.24,2.74 -0.55,0.17 -0.78,1.05 -1.48,0.76 -0.66,-0.14 -1.58,-0.06 -1.76,0.65 -0.87,0.4 -1.74,-0.78 -2.53,0.02 -1.32,0.32 -2.7,-0.65 -4.06,-0.28 -0.75,0.21 -1.32,0.87 -2.16,0.79 -1.06,0.14 -1.85,0.89 -2.72,1.38 -0.67,-0.04 -0.03,-1.7 -0.83,-1.11 -0.71,0.59 -1.35,1.8 -2.43,1.41 -0.69,-0.11 -0.64,0.61 -0.89,0.98 -0.53,0.34 -1.47,0.01 -1.71,0.81 -0.42,0.44 -0.07,0.85 0.18,1.2 0.27,0.72 -0.19,1.34 -0.59,1.87 -0.06,0.94 0.07,1.9 -0.14,2.83 0.02,0.42 0.49,1.01 -0.16,1.18 -0.67,0.45 -1.91,0.3 -2.21,1.06 0.18,0.8 -0.23,2.06 -1.25,1.67 -0.75,-0.09 -0.18,-1.36 -1.03,-1.15 -0.92,0.01 -1.55,1.46 -2.46,0.76 -0.36,-0.25 -0.26,-0.98 -0.91,-0.82 -0.97,-0.41 -1.21,0.98 -1.48,1.6 -0.31,0.58 0.05,1.62 -0.88,1.69 -0.64,0.21 -1.39,0.46 -1.9,-0.12 -0.67,0.02 -1.45,0.69 -2.07,0.09 -0.34,-0.5 -0.72,-1.01 -1.25,-0.29 -1,0.62 -0.36,2 -0.45,2.93 0.65,0.56 1.97,-0.02 2.54,0.67 0.14,0.56 -0.55,0.81 -0.92,0.43 -0.6,-0.19 -0.94,0.41 -1.23,0.76 -0.24,-0.92 -1.59,-1.5 -2.27,-0.66 -0.81,0.74 -1.72,1.35 -2.71,1.78 -0.32,0.68 0.75,0.4 1,0.81 0.64,0.43 1.03,1.09 1.26,1.78 1.27,0.32 2.53,1.35 2.85,2.66 -0.82,1.77 -2.89,0.4 -3.99,-0.28 -0.44,-0.2 -1.07,0.42 -0.47,0.68 1.61,0.81 3.28,1.63 4.96,2.24 0.3,-0.48 0.09,-1.72 1.03,-1.39 1.14,0.04 2.51,0.35 3.01,1.45 0.84,0.74 2.16,1.99 3.26,0.97 0.6,-0.55 1.35,-0.89 2.06,-1.22 0.63,-0.5 1.57,-0.72 1.79,-1.64 0.26,-0.99 1.16,-1.64 2.2,-1.46 1.54,0.16 3.11,0.07 4.53,-0.53 1.23,-0.25 2.51,0.47 3.38,1.24 0.58,0.87 1.8,-0.06 2.58,0.54 2.07,0.83 3.18,2.86 4.82,4.23 0.81,0.62 1.96,0.85 2.81,1.16 -1.34,0.17 -3.04,0.27 -3.84,-1.05 -1.19,-1.04 -3.09,-0.95 -4.05,-2.33 -0.22,-0.23 -0.46,-0.57 0.02,-0.52 0.39,-0.45 -0.54,-0.91 -0.93,-1.02 -0.48,0.01 -0.21,0.98 -0.77,0.59 -1.23,-0.21 -2.49,-0.41 -3.47,-1.26 -0.8,0.04 -1.39,0.85 -2.26,0.78 -1.35,0.28 -2.98,0.13 -4.12,0.97 -0.27,0.74 -0.18,1.55 -0.51,2.27 0.39,1.09 1.07,2.18 0.74,3.41 -0.06,0.89 -0.73,1.6 -1.65,1.54 -0.77,0.14 -1.83,0.65 -1.91,1.49 0.58,0.19 1.03,0.85 1.76,0.62 1.26,0.05 2.44,0.61 3.7,0.7 2.55,0.77 4.57,2.67 5.86,4.95 0.43,0.52 1.28,0.49 1.46,1.26 0.35,0.79 0.89,1.75 1.88,1.68 0.31,1.19 1.2,2.46 2.57,2.47 0.51,0.17 1.78,-0.14 1.71,0.7 -0.28,1.1 1.3,0.99 1.97,1 0.94,-0.1 1.88,-0.11 2,1 0.13,0.66 0.19,2.08 1.24,1.8 0.71,-0.45 1.34,-0.01 1.88,0.47 0.65,0.33 1.4,-0.12 2.09,0.25 1.09,0.14 2.13,0.86 3.22,0.76 0.27,-0.46 0.69,-0.79 1.27,-0.78 0.44,-0.09 1.54,-0.46 0.86,-1.03 -0.56,-0.69 -1.57,-1.4 -1.65,-2.27 0.41,-0.03 1.2,-0.14 0.91,-0.76 -0.94,-1.08 -1.71,-2.62 -1.11,-4.05 0.26,-0.5 -0.64,-0.99 0.07,-1.34 0.9,-0.3 1.54,-1.05 2.33,-1.52 0.76,0.06 1.3,0.83 1.15,1.57 0.07,0.82 0.68,1.77 -0.1,2.41 -0.12,0.83 1,1.51 0.45,2.39 -0.17,0.36 -0.35,1.43 0.37,1.09 1.01,-0.54 1.95,-1.15 3.06,-1.42 0.8,-0.2 1.04,-0.96 1.24,-1.63 -0.04,-0.55 -0.98,-0.86 -0.45,-1.44 0.35,-0.77 -0.12,-1.56 -0.17,-2.28 0.32,-0.58 1.04,-0.75 1.57,-0.9 0.58,0.31 1.55,1.03 1.88,0.03 0.4,-0.52 0.37,-1.13 0.36,-1.69 0.35,-0.6 1.14,-1.38 1.59,-0.45 0.85,0.67 1.73,1.27 2.48,2.07 1,0.71 2.71,1.47 3.65,0.29 0.32,-0.69 0.07,-1.69 -0.83,-1.7 -0.73,-0.25 -1.12,-0.93 -1.35,-1.58 -0.97,-0.38 -2.18,-0.6 -3.19,-0.25 -0.45,0.05 -0.55,-0.31 -0.18,-0.56 0.6,-0.42 0.79,-1.15 0.4,-1.77 -0.26,-0.66 0.75,-0.96 1.23,-1.12 0.77,-0.6 1.8,-1.39 1.91,-2.44 -0.22,-0.41 -0.62,-0.73 -0.6,-1.28 0.06,-0.47 -0.06,-0.88 -0.37,-1.24 0.11,-0.67 0.29,-1.46 -0.41,-1.91 -0.56,-0.33 -0.76,0.7 -1.36,0.67 -0.76,0.17 -1.32,-0.74 -1.81,-1.19 -0.84,-0.75 -0.1,-2.34 -1.37,-2.71 -0.82,-0.32 -1.89,0.17 -2.59,-0.35 0.51,-0.78 1.45,-1.26 2.11,-1.93 1.02,-0.8 2.41,-0.4 3.52,-1 0.97,-0.1 2.02,-0.18 2.72,-0.96 1.3,-0.59 2.82,-0.01 4.17,-0.47 1.3,0.1 2.61,0.47 3.89,-0.02 1.14,-0.26 2.38,-0.9 3.04,-1.89 -0.35,-0.83 -1.15,-1.56 -1.11,-2.55 0.02,-0.82 -0.65,-1.47 -0.7,-2.22 0.33,-0.45 0.29,-1.24 -0.41,-1.2 -0.8,-0.01 -1.71,0.16 -2.25,-0.57 -1.79,-0.7 -3.96,0.29 -5.7,-0.61 -0.51,-0.45 -1.16,-1.28 -0.51,-1.89 0.17,-0.65 -1.03,-0.46 -0.79,-1.19 -0.06,-1 0.38,-1.49 1.41,-1.11 1.62,0.02 3.31,0.53 4.9,0.19 0.37,-0.46 1.6,-0.78 1.17,-1.53 -1.12,-0.8 -2.69,-0.66 -3.76,-1.6 -0.81,-0.39 -1.98,0.08 -2.46,-0.92 -0.6,-0.6 -0.09,-1.9 -1.11,-2.09 -0.52,-0.86 0.17,-2.03 -0.59,-2.85 -0.26,-0.49 -0.65,-1.04 -1.25,-0.96 -0.68,-0.27 -2.02,-0.59 -1.85,-1.52 0.64,-0.16 1.16,-0.85 0.46,-1.31 -0.31,-0.37 0.04,-1.15 -0.66,-1.11 -1.61,-0.45 -3.22,-0.92 -4.79,-1.46 -0.51,-0.64 -0.87,-1.86 -1.88,-1.67 -0.99,-0.44 -2.02,-0.33 -3.02,-0.55 z", + "department-53" : "m 105.95,0.12 c -0.75,0.21 -1,1.18 -0.24,1.59 0.2,0.83 -1.1,0.89 -1.11,1.68 0.01,0.55 -0.85,0.5 -0.95,0.05 -0.56,-0.39 -1.69,-0.78 -1.91,0.19 -0.29,0.65 -1.06,0.96 -1.15,1.69 -0.62,-0.11 -1.04,-0.91 -1.7,-1.07 -0.26,-0.46 -0.79,-0.53 -1.31,-0.53 -0.8,-0.24 -1.77,-0.53 -2.36,0.28 -0.56,0.55 -1.4,-0.35 -1.97,0.29 -0.99,0.56 -1.36,2.05 -2.68,1.96 -1.42,-0.01 -2.35,1.4 -3.67,1.59 -0.3,-0.68 0.25,-2.18 -0.85,-2.23 -0.43,0.15 -0.34,0.89 -0.95,0.83 -0.5,-0.19 -1.74,-0.52 -1.74,0.32 0.1,0.41 1.19,0.65 0.41,1 -0.66,0.39 -1.75,1.22 -2.33,0.31 -0.45,-0.35 0.01,-1.53 -0.84,-1.31 -0.43,0.13 -1.16,0.9 -1.21,0.02 -0.21,-0.97 -0.94,-1.89 -1.76,-2.43 -0.9,0.09 -2.27,0.68 -2.88,-0.31 -0.14,-0.79 -1.1,-0.61 -1.66,-0.72 -0.38,0.29 -0.12,1.01 -0.7,1.23 -0.79,0.63 -1.81,0.52 -2.53,-0.17 -0.68,-0.41 -1.7,-1.47 -2.05,-0.19 -0.72,1.19 1.02,2.61 0.05,3.69 -0.89,0.94 -0.07,2.38 0.43,3.31 0.65,0.91 -0.03,2 0.28,3.01 -0.1,0.68 0.75,1.24 0.23,1.85 -0.7,1.11 -1.78,2 -2.02,3.35 -0.6,1.24 0.67,2.47 0.56,3.75 0.31,1.02 0.22,2.11 0.47,3.14 0.8,1.74 0.61,3.77 1.35,5.53 0.24,0.58 1.35,0.93 0.73,1.63 -0.51,1.2 0.18,2.35 0.46,3.48 -0.24,1.09 -1.64,1.72 -2.69,1.5 -0.69,0.08 -1.83,-0.72 -2.18,0.21 -0.07,0.92 -1.29,0.57 -1.48,1.39 -0.3,1.13 -0.25,2.36 -0.84,3.4 0.09,0.71 -0.52,1.03 -0.92,1.49 -0.16,0.56 0.6,1.24 -0.18,1.62 -0.27,0.35 -1.07,0.24 -0.86,0.88 0.17,0.83 -0.11,1.75 -0.68,2.3 0.34,0.71 1.29,0.95 1.79,1.57 0.68,0.31 1.59,1.01 2.33,0.63 -0.03,-0.61 0.62,-0.29 1.02,-0.3 1.26,0.16 2.41,0.82 3.74,0.7 1.16,-0.04 2.25,1.2 3.36,0.35 0.54,-0.31 0.13,-0.88 -0.34,-0.83 -0.1,-0.59 0.81,-1.45 1.26,-0.8 1.03,-0.08 1.58,0.98 2.37,1.49 0.61,0.37 1.48,1.11 2.18,0.74 -0.07,-0.78 1.24,-1.21 1.58,-0.46 0.43,0.15 0.86,0.27 1.07,0.72 0.44,0.35 1.17,-0.23 1.45,0.44 1.01,0.81 2.49,0.2 3.68,0.5 0.96,0.26 2.25,0.66 3.12,-0.05 0.43,-0.65 1.02,-1.29 1.89,-0.98 0.61,0.02 1.56,0.52 1.8,-0.36 0.32,-0.44 -0.06,-1.25 0.25,-1.58 1.3,-0.1 2.13,1 3.1,1.62 0.52,-0.03 0.96,-0.43 1.48,-0.45 0.2,-0.37 0.4,-0.84 0.89,-0.45 0.3,0.36 1.07,0.51 0.9,-0.18 -0.02,-0.7 -0.12,-1.94 -1.14,-1.62 -1.15,0.22 -1.68,-1.04 -1.92,-1.93 0.45,-0.76 1.22,-1.12 1.77,-1.75 0.5,-0.21 1.55,0.17 1.43,-0.63 0.51,-0.71 -0.15,-1.43 -0.89,-1.49 -0.87,-0.06 -0.55,-1.21 -0.54,-1.76 0.65,-0.28 0.96,-1.17 1.81,-1.05 1.27,-0.18 2.99,-0.18 3.76,-1.36 0.02,-0.54 -0.8,-0.7 -0.65,-1.31 -0.18,-0.7 -0.46,-1.36 -0.69,-2.02 -0.39,-0.43 -1.18,-0.56 -1,-1.35 0.09,-0.48 -0.31,-1.56 0.33,-1.74 0.92,0.31 1.82,-0.28 2.44,-0.89 0.75,-0.18 2.14,0.6 2.31,-0.56 0.14,-0.57 -0.79,-0.78 -0.4,-1.37 0.46,-0.56 1.17,-1.49 0.25,-2.04 -0.43,-0.14 -0.98,-0.59 -1.02,-1.01 0.43,-0.26 0.49,-0.71 0.17,-1.06 0.41,-1.18 2.01,-1.25 2.83,-2.05 0.52,-0.52 1.52,-0.95 1.59,-1.74 0.27,-0.59 -0.01,-1.21 -0.35,-1.74 -0.72,-1.42 0.61,-2.6 0.85,-3.91 -0,-0.84 -1.09,-1.27 -0.76,-2.2 0.03,-0.49 0.32,-1.09 0.87,-0.86 0.49,-0.32 -0.23,-1.17 0.45,-1.4 0.53,-0.49 1.13,-0.9 1.89,-0.66 0.84,0.12 1.73,-0.47 1.47,-1.41 -0.13,-1.2 0.18,-2.44 0.06,-3.6 -0.5,-0.67 -1.2,0.42 -1.84,0.22 -0.82,-0.03 -1.96,0.02 -2.46,-0.71 -0.18,-1.09 -0.23,-2.27 -1,-3.1 -0.21,-0.76 1.41,-0.93 0.81,-1.63 -0.89,-0.43 -1.55,-1.17 -2.24,-1.83 -0.54,-0.19 -1.14,-0.16 -1.67,-0.35 z", + "department-49" : "m 60.6,50.26 c -0.68,0.47 -0.5,1.55 -0.68,2.28 0.04,0.6 0.67,1.35 0.06,1.87 -0.82,-0.01 -0.33,0.92 0.17,1.04 0.58,0.46 1.46,0.13 2.01,0.48 0.13,0.94 1.29,1.46 0.89,2.5 -0.17,0.59 -0.04,1.23 0.57,1.44 0.48,0.85 0.45,2.3 1.67,2.56 0.75,-0.11 1.45,0.1 2.03,0.59 1,0.74 2.58,0.44 3.37,1.44 -0.1,0.76 -0.97,1.25 -1.54,1.68 -1.93,0.26 -3.92,-0.44 -5.85,-0.33 -0.44,0.6 -0.16,1.58 0.6,1.75 0.39,0.51 -0.7,0.92 -0.19,1.48 0.82,1.63 3.03,1.17 4.51,1.07 0.81,-0.04 1.85,-0.05 2.25,0.77 0.7,0.39 1.72,-0.32 2.32,0.18 0.52,0.63 -0.4,1.33 0.16,1.97 0.45,1.22 0.5,2.6 1.44,3.62 0.64,0.76 -0.61,1.34 -1.14,1.65 -2.06,1.6 -4.86,0.68 -7.26,0.92 -1.17,0.02 -2.5,-0.07 -3.32,0.92 -1.04,0.46 -2.22,0.4 -3.29,0.82 -1.24,-0.06 -2.43,0.39 -3.21,1.4 -0.79,0.47 -1.61,1.56 -0.08,1.08 0.9,-0.05 2.38,0.02 2.34,1.25 0.12,1.24 1.07,2.91 2.5,2.68 0.44,-0.3 0.83,-0.86 1.39,-0.39 0.87,0.53 0.01,1.58 0.6,2.23 0.18,0.69 0.09,1.53 0.71,2.01 0.07,1.22 -1.26,2.01 -2.1,2.69 -0.41,0.2 -1.1,0.23 -0.99,0.9 0.15,0.62 0.29,1.31 -0.27,1.79 0.27,0.63 1.48,0.25 2.14,0.49 0.67,0 1.24,0.38 1.31,1.05 0.4,0.75 1.33,0.91 2.07,1.11 -0.02,0.8 0.1,1.82 -0.85,2.13 -0.41,0.69 0.92,0.74 1.31,0.93 1.36,0.19 2.78,1.23 4.16,0.59 0.19,-0.37 0.71,-1.06 1.09,-0.49 0.54,0.09 0.97,0.37 1.26,0.85 0.58,0.66 1.24,-0.6 1.78,0.06 0.68,0.36 1.25,0.84 1.53,1.55 0.5,0.46 1.58,0.57 1.85,-0.19 0.75,-0.79 2.06,-0.42 2.7,-1.37 0.65,-0.5 1.16,0.33 1.62,0.64 0.54,0.01 1.1,-0.56 1.54,0.07 0.56,0.49 1.08,-0.33 1.7,-0.12 0.35,-0.08 0.42,-0.64 0.87,-0.38 0.96,0.1 2.09,0.46 2.96,0.1 0.77,-0.85 1.61,-1.7 2.47,-2.36 -0.16,-0.6 -0.79,-1.45 -0.24,-2.02 1.23,-0.67 2.72,-1.51 4.13,-1.13 -0.19,0.99 1.05,0.78 1.64,0.75 0.69,0.12 1.48,-0.13 1.43,-0.96 0.12,-0.92 1.15,-0.25 1.68,-0.63 0.67,-0.03 1.31,0.51 1.99,0.1 1.53,-0.96 3.5,-0.86 5.14,-0.27 0.58,-0.04 0.75,-1 1.44,-0.6 0.43,0.26 1.25,-0.08 1.52,0.37 -0.14,0.88 -1.6,1.11 -1.46,2.04 0.47,0.29 1.41,-0.21 1.66,0.5 0.12,0.75 1.16,0.05 1.34,-0.38 0.2,-0.73 0.19,-2 1.13,-2.18 0.64,0.28 1.83,0.91 2.33,0.14 0.12,-0.52 -0.67,-0.68 -0.35,-1.24 0.39,-1.54 1.31,-2.96 2.63,-3.86 0.29,0.68 1.2,1.02 1.67,0.34 0.64,-0.67 -0.18,-1.47 0.07,-2.18 0.97,-1.21 0.28,-2.85 0.96,-4.19 0.41,-0.69 0.04,-1.55 0.64,-2.18 0.6,-0.68 0.82,-1.66 1.44,-2.28 0.95,0 0.96,-1.18 0.86,-1.84 0.67,-0.24 1.91,-0.88 1.22,-1.74 -0.09,-0.33 -0.62,-0.57 -0.65,-0.83 0.74,-0.59 1.52,-1.34 1.23,-2.39 -0.27,-1.97 1.54,-3.35 1.76,-5.19 0.17,-0.88 -1.29,-0.83 -1.16,-1.65 0.54,-0.8 0.54,-1.91 1.37,-2.48 0.25,-0.6 0.54,-1.66 -0.07,-2.1 -0.4,-0.11 -0.85,0.52 -0.99,-0.16 -0.63,-0.58 -0.73,0.53 -0.94,0.91 -0.5,0.38 -1.04,0.77 -1.52,1.15 -0.46,-0.17 -0.54,-0.99 -1.19,-0.92 -0.24,-0.36 -0.56,-0.69 -1.09,-0.6 -1.01,-0.07 -2.21,0.15 -2.93,-0.74 -0.7,-0.26 -1.22,-0.79 -1.39,-1.53 -0.2,-0.67 -0.81,0.01 -1.14,-0.04 -0.52,-0.65 -1.48,-0.51 -2.17,-0.92 -0.52,-0.14 -1.06,0.14 -1.49,-0.21 -0.79,0.15 -0.08,1.46 -0.99,1.4 -0.65,0.33 -1.16,-0.1 -1.63,-0.49 -0.69,-0.34 -2.03,-0.04 -1.89,-1.19 -0.06,-0.75 -1.15,-1.42 -0.75,-2.17 0.69,-0.18 1.82,-1.03 1.16,-1.78 -0.73,-0.54 -1.37,0.67 -1.98,0.92 -0.64,0.44 -1.31,-0.47 -2,-0.5 -1.3,-0.35 -2.69,-0.32 -4.01,-0.06 0.17,-0.61 0.23,-1.35 -0.39,-1.7 -0.42,-0.64 -0.25,-2.01 -1.28,-2.07 -0.37,0.15 -0.37,0.72 -0.89,0.46 -0.79,-0.17 -1.46,1.04 -1.98,0.05 -0.67,-0.65 -1.48,-1.26 -2.41,-1.42 -0.13,0.71 -0.04,1.95 -0.9,2.28 -1.03,-0.22 -2.45,-0.57 -3.03,0.62 -0.7,0.87 -2.03,0.21 -2.97,0.29 -1.19,-0.29 -2.43,-0.11 -3.61,-0.21 -0.41,-0.5 -0.98,-0.9 -1.66,-0.69 -0.67,-0.46 -1.37,-1.3 -2.3,-1.19 -0.51,0.2 0.03,1.33 -0.71,0.98 -0.88,-0.31 -2.01,-0.41 -2.45,-1.33 -0.44,-0.52 -1.03,-0.84 -1.67,-0.92 -0.33,-0.4 -1.43,-0.46 -1.13,0.3 0.31,0.27 0.63,0.83 0.11,1.08 -1.15,0.87 -2.39,-0.34 -3.64,-0.24 -1.46,0.13 -2.75,-0.98 -4.18,-0.71 -0.25,0.51 -0.82,0.53 -1.31,0.25 -1.15,-0.31 -2.04,-1.12 -2.97,-1.79 -0.07,-0.03 -0.14,-0.03 -0.21,-0.02 z", + "department-85" : "m 58.66,98.27 c -0.88,0 -0.68,0.94 -0.76,1.52 -0.27,0.43 -0.44,1.02 -0.54,1.47 -0.94,0.31 -1.66,-1.07 -2.56,-0.33 -0.74,0.21 -0.77,0.98 -0.46,1.57 0.4,0.66 -0.4,1.34 -0.01,1.93 0.59,0.33 0.4,1.12 0.05,1.53 -0.04,1.09 -1.56,1.01 -2.29,1.41 -0.76,0.22 -1.38,1.06 -2.15,1.08 -1.08,-0.58 0.39,-1.58 -0.16,-2.39 -0.4,-0.6 -0.72,-1.43 -0.12,-2.01 0.02,-1 -0.22,-2.16 -0.85,-2.96 -0.92,-0.41 -1.35,1 -2.24,1.03 -0.56,0.12 -0.7,0.68 -0.37,1.09 -0.1,0.84 -0.64,1.72 -0.04,2.53 0.24,0.65 0.64,1.27 1.12,1.72 0.18,0.62 -0.38,0.98 -0.75,1.31 0.14,0.95 1.47,1.39 1.66,2.34 -0.43,0.66 -1.3,0.69 -1.9,1.03 -0.19,0.38 -0.42,0.86 -0.92,0.56 -1.32,-0.54 -2.7,-0.94 -4.13,-1.01 -0.99,0.4 -1.51,-1.17 -2.48,-0.61 -0.91,0.42 -1.54,-0.61 -1.42,-1.41 -0.03,-0.75 -0.55,-1.59 -1.41,-1.26 -0.95,0.03 -1.88,-0.17 -2.8,-0.32 0.36,-1.07 -0.08,-1.66 -1.19,-1.39 -1.46,0.07 -2.82,-1.11 -3,-2.52 -0.36,-0.31 -1.05,-0.09 -1.23,-0.68 -0.51,-0.57 -0.75,-1.98 -1.75,-1.78 -1.71,0.69 -2.3,2.61 -2.5,4.27 -0.08,1.03 -1.1,1.3 -1.91,1.55 -1.14,0.63 -0.85,2.39 -2.13,2.91 -0.53,1.28 -0.16,2.79 -0.33,4.16 1.58,3.1 5.64,3.93 7.03,7.19 0.33,0.95 0.84,2.05 2.02,2.04 1.48,0.66 1.31,2.76 2.72,3.56 1.25,0.83 0.82,2.89 2.2,3.54 0.43,-0.02 -0.16,0.62 0.04,0.92 0.37,1.99 0.57,4.08 1.24,5.98 0.64,0.29 1.11,-0.75 0.6,-1.18 -0.14,-0.32 -0.2,-1.22 0.2,-1.22 0.41,1.08 0.79,2.33 2.01,2.76 1.37,0.68 2.49,2.19 4.09,2.28 0.39,-0.16 1.15,-0.5 1.18,0.21 0.12,0.49 -0.8,1.37 0.1,1.43 1.72,0.23 3.58,-0.18 5.22,0.38 1.79,0.79 1.94,2.9 2.38,4.56 0.27,0.94 1.49,0.7 2.15,0.33 0.61,-0.1 1.35,0.12 1.79,-0.37 1.32,0.16 1.96,1.68 3.12,2.19 0.53,-0.07 -0.12,-1.21 0.44,-0.51 1.06,1 1.88,2.37 3.06,3.23 0.68,-0.51 0.01,-1.75 0.67,-2.37 0.73,-0.61 1.82,-1.33 2.77,-0.74 0.63,0.27 1.84,0.46 1.89,-0.5 0.36,-0.37 0.36,0.65 0.86,0.38 1.07,-0.53 1.34,-2.24 2.76,-2.19 1.07,-0.18 2.48,0.08 3.12,-1 0.56,0.06 1.14,-0.03 1.62,-0.36 -0.12,1.09 -0.64,2.08 -1.05,3.05 0.49,0.89 1.96,0.74 2.69,0.2 0.5,-0.63 1.36,-0.17 1.91,-0.03 0.21,-0.42 0.16,-1.29 0.85,-1.28 0.49,0.46 1.23,-0.27 1.63,0.12 -0.16,0.35 -0.33,0.85 0.21,0.99 1.04,0.28 1.86,1.61 3.01,1.28 0.34,-0.26 0.14,-0.86 0.69,-0.9 0.37,-0.31 0.8,-0.63 1.26,-0.21 0.66,0.36 2.11,0.53 2.07,-0.58 0.33,-0.71 1.55,-0.77 1.54,-1.72 0.75,-0.45 1.99,0.13 2.39,-0.94 0.42,-0.36 0.79,-1.31 -0.05,-1.39 -0.89,-0.16 -1.47,-1.08 -2.33,-1.2 -0.47,0.27 -0.41,1.6 -1.15,1.11 -0.52,-0.68 -0.33,-1.75 -0.3,-2.58 0.54,-0.45 1.16,-1.07 0.98,-1.89 -0.11,-0.73 -0.78,-1.25 -0.55,-2.01 -0.17,-0.74 -1.02,-1.5 -0.57,-2.27 0.56,-0.26 1.76,0 1.58,-0.99 0.12,-0.76 -0.34,-1.31 -0.74,-1.86 -0.42,-0.69 0.52,-1.3 0.03,-2.01 -0.6,-0.55 0.49,-1.34 -0.18,-1.9 -0.33,-0.57 -1.01,-0.58 -1.52,-0.52 0.04,-0.81 1.13,-1.79 0.16,-2.46 -0.71,-0.51 -1.42,-0.99 -0.46,-1.6 0.52,-0.93 -0.78,-1.65 -1.33,-2.23 -0.34,-0.42 -0.05,-1.28 -0.81,-1.32 -0.94,-0.76 -0.77,-2.39 -0.16,-3.33 0.57,-0.31 0.65,-1.36 -0.17,-1.29 -0.65,0.06 -1.01,-0.61 -1.65,-0.62 -1.52,-0.83 -2.08,-2.76 -3.53,-3.63 0.31,-0.86 1.09,-2.13 0.04,-2.79 -0.58,-0.58 -1.23,-1.17 -2.07,-1.18 -0.69,-0.22 0.28,-0.82 -0.27,-1.23 -0.09,-0.48 -1.18,-0.14 -0.84,-0.68 0.52,-0.82 -0.7,-1.53 -1.33,-1.84 -0.64,-0.15 -1.39,0.53 -1.85,-0.24 -0.49,-0.45 -1.53,-1.29 -1.91,-0.25 -0.23,0.67 -1.23,0.16 -1.75,0.19 -1.83,-0.38 -3.6,-0.96 -5.3,-1.74 -1.61,-0.33 -2.49,-1.86 -3.92,-2.46 -0.28,-0.26 -0.51,-0.7 -0.95,-0.67 z", + "department-72" : "m 129.3,5.54 c -0.71,0.34 -1.45,0.53 -2.26,0.64 -0.72,0.18 -1.32,0.65 -2.04,0.77 -0.23,0.34 -0.15,0.74 -0.7,0.7 -0.36,0.24 -0.04,0.91 -0.67,0.85 -0.62,0.15 -1.76,0 -1.79,0.9 -0.11,0.87 -1.01,0.93 -1.67,1.15 -0.6,0.24 -0.58,0.94 -0.53,1.41 -0.91,0.6 -2.12,0.29 -2.74,-0.56 -0.65,-0.64 -0.99,0.49 -1.58,0.59 -0.61,0.39 -1.37,0.41 -1.96,0.74 -0.83,-0.1 -1.73,-0.19 -2.31,0.53 -0.79,0.39 0.2,1.2 0.03,1.68 -0.4,-0.22 -1.35,-0.54 -1.29,0.25 -0.22,1.14 1.18,1.93 0.56,3.07 -0.57,1.05 -1.36,2.35 -0.55,3.51 0.41,0.53 0.4,1.11 0.29,1.7 0.15,0.73 -1.11,0.65 -1.32,1.26 -0.73,1.08 -2.32,1.14 -3.09,2.12 -0.02,0.37 0.52,0.66 0.02,1 -0.45,0.7 0.5,1.1 0.94,1.4 0.54,0.49 0.31,1.11 -0.16,1.53 -0.44,0.44 -0.32,1.08 0.17,1.39 -0.06,0.62 -0.11,1.62 -0.99,1.19 -0.67,-0.11 -1.47,-0.22 -1.93,0.38 -0.6,0.45 -1.37,0.54 -2.06,0.57 -0.24,0.67 -0.27,1.65 0.16,2.25 0.53,0.23 1.08,0.49 0.96,1.19 0.18,0.93 0.63,1.8 1.22,2.49 -0.28,0.89 -1.45,1.3 -2.28,1.53 -1.23,0.08 -3.01,0.07 -3.38,1.57 -0.28,1.22 1.68,1.22 1.58,2.36 -0.3,0.34 0.11,1.19 -0.6,1.07 -0.6,-0.04 -1.31,0.14 -1.46,0.75 -0.92,-0.07 -1.5,1.27 -0.98,2.01 0.29,1.38 2.65,0.01 2.53,1.59 0.34,1.3 -0.06,2.86 0.94,3.94 0.28,0.36 -0.29,1.32 0.47,1.06 0.86,-0.7 1.89,0.08 2.85,-0.16 0.94,0.04 1.9,1.35 2.76,0.49 0.64,-0.4 1.19,-1.36 1.95,-0.6 0.57,0.15 0.54,0.59 0.11,0.9 -0.35,0.53 -0.88,0.84 -1.37,1.13 -0.12,0.9 0.86,1.52 0.92,2.41 0.29,0.58 0.97,0.39 1.46,0.47 0.53,0.6 1.61,1.02 2.08,0.1 0.23,-0.3 0.44,-1.33 0.94,-1.09 0.38,0.61 1.25,0.11 1.76,0.62 0.58,0.2 1.23,0.16 1.69,0.59 0.39,-0.01 0.78,-0.69 1.03,-0.02 0.32,0.66 0.62,1.4 1.37,1.61 1,1.12 2.6,0.71 3.89,0.91 -0.01,0.66 0.93,0.53 1.11,1.15 0.53,0.5 0.78,-0.55 1.35,-0.49 0.56,-0.23 0.54,-0.94 0.68,-1.37 0.77,-0.08 1.45,0.42 2.27,0.21 0.63,-0.11 1.31,-0.08 1.61,0.56 0.92,0.62 2.25,0.18 2.96,1.19 0.66,0.67 2.31,1.52 2.81,0.28 -0.06,-0.89 -0.59,-1.68 -1.26,-2.2 -0.56,-0.6 0.26,-1.31 0.64,-1.77 1.04,-0.13 1.36,1.59 2.39,1.47 0.87,-0.14 0.78,-1.17 1.29,-1.63 0.75,-0.22 1.71,0.03 2.27,-0.66 0.68,-0.24 1.57,-0.06 1.98,-0.84 0.62,-0.47 1.6,-0.12 2.16,-0.78 0.52,-0.5 -0.77,-0.67 -0.61,-1.34 -0.11,-0.48 -0.83,-1.03 -0.12,-1.39 0.88,-0.35 1.19,-1.32 1.76,-2.01 0.76,-0.26 1.45,-0.67 2.08,-1.17 0.38,-0.11 1.33,0.38 1.17,-0.37 -0.49,-0.48 -0.07,-1.11 0.5,-1.19 0.83,-0.56 1.31,-1.47 1.79,-2.3 0.24,-0.45 0.68,-0.37 1.02,-0.58 0.44,-0.91 -0.68,-1.54 -0.47,-2.47 -0.09,-0.76 -0.3,-1.74 0.57,-2.14 0.38,-0.44 1.16,-0.5 1.23,0.21 0.03,0.54 0.73,0.48 0.57,-0.07 -0.07,-0.79 -0.31,-2.22 0.83,-2.32 0.84,-0.12 0.8,-1.06 0.37,-1.59 -0.28,-0.73 -1.25,-1.54 -0.47,-2.3 0.22,-0.67 0.72,-1.61 0.27,-2.25 -0.61,-0.05 -1.52,-0.02 -1.62,-0.83 -0.02,-0.51 -0.36,-1.31 0,-1.67 0.62,-0.3 2.07,0.06 1.98,-1 0.08,-0.71 -1.36,-0.29 -0.97,-0.98 0.94,-0.15 1.62,-1.19 1.41,-2.13 0.64,-0.72 1.96,0.05 2.67,-0.55 0.11,-1.1 -1.34,-1.5 -2.2,-1.67 -1.38,0.16 -1.97,-1.39 -3.19,-1.61 -0.74,-0.01 -1.37,1.06 -2.04,0.24 -1.26,-0.71 -1.67,-2.07 -2.45,-3.19 -0.35,-0.9 -1.18,-2.16 -2.31,-1.72 -0.85,0.3 0.12,1.24 -0.36,1.66 -0.42,-0.16 -0.75,-0.65 -1.31,-0.54 -1.04,-0.1 -2.25,-0.04 -3.13,-0.61 -0.19,-1.07 -1.84,-1.02 -1.97,-2.2 0.12,-0.42 0.4,-1.38 -0.38,-1.2 -0.62,0.44 -1.27,-0.29 -1.92,-0.04 -0.65,-0.02 -0.71,-0.77 -1.21,-0.93 -0.96,0.28 -1.96,-0.96 -1.69,-1.84 0.47,-0.75 -0.3,-1.68 -0.23,-2.5 -0.1,-0.76 -0.41,-1.6 0.07,-2.26 0.18,-0.77 -0.6,-1.2 -0.68,-1.92 -0.94,-1.26 -2.65,-2.16 -4.21,-2.27 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_53.js b/lib/mapael-maps/france/france_region_53.js new file mode 100644 index 000000000..62b0eb777 --- /dev/null +++ b/lib/mapael-maps/france/france_region_53.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Bretagne for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_53 : { + width : 172.88751, + height : 94.71875, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 220.22005; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3224.4354; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-29" : "m 37.21,9.53 c -0.91,0.67 -1.9,1.21 -3,1.49 -0.68,0.41 -0.56,1.4 -0.99,2.01 -0.97,-1.5 -3.05,-0.87 -4.48,-0.59 -0.95,0.32 -1.89,0.92 -2.48,1.73 -0.06,0.5 0.86,0.64 0.9,0.89 -1.41,0.14 -3.26,-0.5 -4.33,0.71 -0.24,0.53 -1.05,0.13 -0.62,-0.4 0.29,-0.45 0.73,-1.21 -0.05,-1.45 -0.74,-0.54 -1.73,-0.92 -2.53,-0.27 -0.82,0.68 -1.88,0.87 -2.83,1.26 -0.32,0.45 1.05,0.73 0.19,0.85 -1.02,0.1 -2.02,0.23 -2.91,0.8 -0.94,0.09 -2.16,-1.19 -3.02,-0.16 -0.44,0.13 -0.8,0.47 -0.38,0.9 0.14,0.42 0.81,0.82 0.8,1.13 -0.91,0.41 -1.84,-0.12 -2.66,-0.45 -0.66,0.19 -0.66,1.49 -0.15,1.84 0.63,-0.12 1.11,1.45 0.31,0.99 -0.83,-1.37 -2.74,-1.16 -4.01,-0.63 -0.52,-0.03 -1.14,0.2 -1.1,0.78 -0.59,0.18 -1.48,-0.14 -1.67,0.74 -0.62,1.22 -2.2,2.65 -1.33,4.1 0.22,0.54 1.63,1.04 0.47,1.28 -1.12,0.55 -0.99,2.09 -1.33,3.11 0.27,0.92 1.22,1.78 1.1,2.76 -0.22,0.47 -0.97,0.54 -0.68,1.22 0.12,0.89 0.67,1.93 1.74,1.68 0.86,0.09 2.29,0.07 2.27,-1.11 0.4,-0.79 1.54,-0.22 2.16,-0.06 0.62,0.23 1.13,0.78 1.87,0.45 1.46,-0.42 2.81,-1.07 4.23,-1.62 2.07,-1.16 4.37,-1.69 6.63,-2.33 1.1,-0.34 2.16,-0.9 3.27,-1.17 -1.62,1.65 -4.15,1.85 -5.78,3.5 -0.96,0.38 -0.74,1.6 -1.18,2.36 0.33,0.57 1.09,-0.25 1.59,-0.25 0.44,-0.2 0.58,0 0.48,0.4 0.52,0.74 1.69,-0.08 1.89,-0.76 0.36,-0.49 1.26,-0.04 1.62,-0.64 0.23,0.9 0.82,0.45 1.27,-0.03 0.24,-0.17 0.95,-0.44 1.07,-0.19 -0.56,0.82 -1.63,1.25 -2.04,2.14 0.47,0.87 1.78,-0.11 2.34,0.68 0.39,0.38 1.25,0.45 1.5,0.14 0.04,1.05 1.5,0.49 1.96,0.9 -0.88,0.39 -2.03,0.08 -2.88,0.72 -0.26,0.27 -1.13,0.24 -1.11,-0.13 0.35,-0.76 -0.95,-0.58 -1.35,-0.48 -1.46,0.12 -2.83,1.19 -4.3,0.93 -0.52,-0.49 -1.03,-1.26 -1.91,-0.96 -0.84,0.01 -1.68,0.69 -2.5,0.48 -0.3,-0.42 -1.21,-0.79 -1.16,0.01 -0.65,-0.12 -1.31,-0.73 -0.96,-1.42 -0.06,-0.66 0.84,-1.32 0.44,-1.91 -1.17,-0.11 -2.31,1.15 -1.85,2.33 0.18,0.52 0.1,1.84 -0.73,1.46 -0.53,-0.5 -1.67,-0.32 -1.37,0.6 0.41,1.21 1.94,1.11 2.97,1 0.71,-0.05 0.75,0.8 0.24,1.12 -1.06,0.68 0.17,1.78 0.16,2.72 0.29,0.63 -0.39,1.2 -0.2,1.76 0.58,0.34 0.96,-0.37 1.18,-0.8 0.86,-0.88 1.37,-2.09 1.74,-3.22 1.14,-0.82 2.63,-0.2 3.66,0.51 0.61,0.32 1.58,0.06 1.77,0.95 0.63,0.83 2.01,-0.3 2.59,0.73 0.84,0.83 0.66,2.19 1.55,3.02 0.55,0.89 -0.1,1.99 -0.25,2.93 -0.11,0.66 -0.74,1.12 -1.35,0.68 -0.91,-0.18 -1.61,-1 -2.6,-0.62 -1.82,0.42 -3.71,0.66 -5.42,1.41 -0.82,0.03 -1.69,-0.07 -2.39,0.49 -0.82,0.36 -1.82,-0.1 -2.65,0.36 -1.12,0.33 -2.37,0.06 -3.41,0.66 -0.57,0.19 -1.85,-0.61 -1.54,0.43 0.3,0.55 -0.23,0.87 -0.42,1.29 0.56,0.73 1.76,0.71 2.61,0.91 1.24,-0.06 2.48,0.33 3.44,1.11 0.49,0.75 1.5,0.47 1.91,-0.22 0.37,-0.63 0.89,-0.16 1.2,0.23 0.88,0.4 1.74,0.84 2.45,1.55 2.79,2.16 4.63,5.4 5.46,8.76 0.34,0.82 -0.33,1.35 -0.93,1.7 -0.41,0.6 -0.23,1.86 0.72,1.72 1.28,0.03 2.52,0.28 3.77,0.49 1.79,-0.09 4.18,-0.1 5.03,-2.02 0.76,-0.85 -0.62,-0.61 -0.93,-1.09 -0.16,-0.66 -0.86,-1.32 -0.36,-2.02 0.09,-0.49 0.59,-0.49 0.73,-0.06 0.22,0.71 1.06,1.68 1.75,0.86 0.44,-0.22 1.08,-0.5 0.64,-1.11 -0.38,-0.81 -1.57,-1.89 -0.91,-2.73 0.39,1.24 1.13,2.47 2.18,3.22 0.61,0.15 1.48,-0.4 1.77,0.45 0.2,0.54 0.7,0.69 1.01,0.24 0.71,-0.44 1.36,0.62 2,0.06 0.47,-0.77 -0.24,-1.92 0.34,-2.6 1.04,-0.18 1.76,0.69 2.33,1.42 0.38,0.44 1.2,0.6 1.12,1.31 0.25,0.42 0.77,0.7 0.59,1.27 0.43,1.04 1.69,1.51 2.01,2.61 0.38,0.49 0.79,-0.37 1.26,-0.05 1.19,0.42 2.62,0.68 3.64,-0.27 0.47,-0.44 1.34,-0.57 1.48,0.23 0.58,0.85 1.67,1.03 2.6,0.94 1.42,0.97 3.25,0.59 4.82,1.15 1.05,-0.1 1.04,-1.53 1.24,-2.32 -0.04,-0.86 -1.19,-1.57 -0.6,-2.49 0.18,-0.4 0.95,-1.23 0.96,-0.3 0.24,0.79 1.39,1.22 1.91,0.42 0.43,-0.25 1.07,-0.29 1.05,-0.96 0,-0.46 -0.03,-1.04 0.59,-1.07 0.52,-0.3 1.73,0.11 1.61,-0.85 -0.03,-0.82 -0.75,-2.04 0.03,-2.69 0.91,-0.19 0.26,-1.07 0.06,-1.55 0.45,-0.64 -0.07,-1.82 -0.88,-1.71 -0.55,0.35 -1.1,0.66 -1.73,0.77 -0.3,0.21 -0.09,1.1 -0.65,0.59 -0.75,-0.43 -0.52,-1.81 -1.61,-1.78 -0.79,0.01 -1.16,-0.91 -1.97,-0.93 -1.01,-0.27 -2.01,0.28 -3.04,0.28 -0.81,0.35 -1.45,-0.37 -1.48,-1.14 -0.69,-1.01 -0.81,-2.24 -1.29,-3.34 -0.3,-0.57 -1.41,-0.55 -1.18,-1.4 0.25,-1.05 0.01,-1.81 -1.14,-1.45 -0.38,-0.33 -0.3,-1.22 0.14,-1.62 0.03,-0.55 0.45,-0.88 0.51,-1.41 0.88,-1.05 2.49,-0.61 3.49,-1.56 1.17,-0.66 2.5,-1.04 3.6,-1.78 0.49,-0.29 1.65,0.17 1.68,-0.62 -0.43,-0.37 -1.06,-0.57 -1.28,-1.19 -0.53,-0.61 -0.33,-1.44 0.27,-1.89 -0.02,-0.58 0.92,-0.47 0.76,-1.06 0.07,-0.54 0.47,-1.38 -0.33,-1.55 -0.37,-0.07 -1.1,-0.42 -0.74,-0.87 0.77,0.02 0.6,-0.89 0.07,-1.12 -0.29,-0.63 -0.3,-1.38 -0.55,-2.05 -0.11,-0.64 0.65,-1.51 0.02,-1.98 -0.64,-0.29 -1.65,-0.26 -2.12,-0.73 0.24,-1.17 0.21,-2.75 1.53,-3.3 1.16,-0.18 0.6,-0.9 -0.12,-1.31 -0.58,-0.28 -1.1,-0.64 -1.2,-1.35 -0.38,-1.33 1.26,-2.14 1.87,-3.1 0.95,-0.51 0.29,-1.24 -0.33,-1.64 -0.35,-0.35 -1.26,-0.16 -1.32,-0.72 0.69,-0.49 0.42,-1.61 -0.46,-1.65 -0.67,0.04 -1.54,-0.25 -1.5,-1.06 -0.64,-1.06 -1.04,-2.31 -1.02,-3.56 0.28,-0.54 1.4,-1.05 0.76,-1.72 -0.08,-0.37 -0.02,-1.18 -0.64,-0.86 -1.13,0.53 -2.31,-0.29 -3.24,-0.89 -0.74,-0.38 -1.56,-0.17 -2.29,-0.02 -0.66,-0.14 -1.39,-1.29 -1.88,-0.25 -0.29,0.2 -0.76,0.08 -0.86,0.59 -0.5,0.72 -0.1,1.62 -0.31,2.36 -0.75,0.65 -0.12,2.09 -0.48,2.71 -0.34,-1.11 -2.33,-0.97 -2.19,-2.3 0.34,-0.44 -0.05,-1.13 -0.58,-0.75 -0.64,0.27 -1.12,1.12 -1.68,1.28 0.38,-0.89 -0.49,-1.56 -0.62,-2.33 -0.16,-0.56 -0.46,-1.11 -0.24,-1.75 -0.01,-0.26 0.16,-0.97 -0.32,-0.9 z m -9.89,28.67 0,0.02 0,-0.02 z", + "department-22" : "m 77.62,0.14 c -1.39,0.92 -3.25,1.31 -4.29,2.65 0.01,0.98 -1.04,1.56 -1.5,2.19 0.48,-1.35 0.56,-2.92 0.2,-4.3 -0.68,-0.62 -1.33,0.55 -1.6,1.07 -0.24,0.5 -0.74,0.71 -1.23,0.64 -0.67,0.54 -1.76,-0.27 -2.49,0.36 -0.87,0.53 -2.1,0.46 -2.6,1.52 -0.45,0.49 -1.29,0.64 -1.87,0.47 0.24,-0.57 -0.07,-1.14 -0.7,-1.15 -0.65,-0.08 -0.96,-1.25 -1.63,-0.92 -0.42,0.64 -1.66,-0.34 -1.98,0.57 -0.36,0.14 -0.93,0.19 -0.73,0.77 0.26,0.62 -0.17,1.34 -0.88,1.17 -1.16,0.07 -1.34,1.97 -0.29,2.35 0.5,0.48 0.95,1.05 1.24,1.68 -0.69,0.27 -2.2,0.08 -2.04,1.23 -0.06,0.68 0.21,1.32 0.48,1.88 0.11,0.83 -1.02,1.34 -1.49,0.58 -0.38,-0.48 -1.26,-0.42 -1.27,0.27 -0.37,0.68 -1.51,0.94 -0.99,1.91 0.08,0.97 0.39,1.89 0.89,2.68 0.05,1.44 2.34,0.56 2.45,1.97 0.01,0.39 -0.5,1.12 0.18,1.16 0.76,0.01 1.16,0.97 1.82,1.11 -0.7,1.32 -2.32,2.16 -2.67,3.66 0.03,0.67 0.41,1.29 1.02,1.52 0.21,0.57 0.98,0.51 1.3,0.85 -0.73,0.81 -2.2,1.16 -2.19,2.51 0.02,0.54 -0.64,1.46 0.24,1.65 0.53,0.28 1.48,0.24 1.78,0.77 -0.1,0.92 -0.38,1.86 0.06,2.74 0.03,0.39 0.13,1.4 0.77,0.97 0.18,-0.29 1,-0.21 0.51,0.18 -0.27,0.46 -1.45,1.15 -0.66,1.67 0.35,0.27 1.18,0.47 0.76,1.05 -0.12,0.6 0.13,1.42 -0.64,1.61 -0.77,0.52 -1.09,1.6 -0.35,2.3 0.41,0.43 1.38,0.86 1.06,1.59 -0.52,0.07 -1.77,-0.39 -1.76,0.46 0.67,0.67 1.87,0.14 2.7,0.06 0.51,-0.19 1.03,-0.24 1.4,0.18 0.47,0.23 0.98,-0.13 1.24,-0.42 0.42,0.33 1.3,0.93 0.54,1.42 -0.56,0.61 0.64,1.44 1.14,0.82 0.89,-0.1 1.49,-0.89 2.41,-0.9 0.28,-0.25 0.65,-0.47 0.94,-0.07 0.28,0.66 0.91,0.92 1.58,0.9 0.52,0.19 0.9,0.91 1.55,0.5 0.61,-0.34 1.26,-0.21 1.89,-0.18 0.58,-0.33 0.94,-1.19 1.75,-0.92 0.72,-0.08 2.17,0.25 2.15,-0.86 -0.12,-0.88 0.29,-1.84 1.24,-1.99 0.92,-0.04 1.83,-0.27 2.74,0.02 0.54,0.1 1.03,0.37 1.46,0.66 0.27,0.8 0.61,2.26 1.7,2.14 0.73,-0.47 1.57,-0.62 2.42,-0.38 0.93,0.04 1.86,0.33 2.42,1.11 0.82,0.8 2.05,0.47 3.05,0.37 0.72,0.83 1.24,1.75 1.46,2.81 0.68,1.87 0.68,-1.29 1.68,-0.79 0.63,0 1.48,0.29 1.86,-0.35 0.51,-0.34 1.6,-1.17 1.95,-0.2 0.61,1.33 -0.08,2.72 -0.39,4.03 -0.29,1.24 1.43,2.34 2.31,1.3 0.82,-0.71 1.52,-1.63 2.57,-1.94 0.72,-0.53 -0.13,-1.59 0.77,-2.04 0.63,-0.72 1.63,-1.87 0.71,-2.77 -0.22,-0.19 -0.56,-0.77 -0.02,-0.72 0.74,0.01 1.5,-0.04 2.09,-0.5 0.6,-0.04 1.19,-0.2 1.68,-0.57 0.77,-0.13 1.88,0.05 2.07,0.92 0.54,0.72 1.43,1.3 1.37,2.31 0.17,0.86 0.85,0.32 1.13,-0.09 0.47,0.38 1.11,0.25 1.18,-0.43 0.41,-0.5 1.54,0.1 1.66,-0.77 0.35,-0.49 0.98,-0.38 1.45,-0.48 0.06,-0.68 0.98,-0.7 1.11,-1.37 0.33,-0.87 -0.09,-1.97 0.32,-2.75 0.47,-0.17 1.12,0.72 1.44,-0.01 2.1e-4,-0.97 -0.26,-2.32 0.88,-2.76 0.86,-0.46 1.85,-0.29 2.74,-0.16 0.58,-0.23 -0.01,-0.59 -0.08,-0.89 0.39,-0.55 1.43,-0.37 1.51,-1.21 0.38,-0.36 1.13,-0.96 1.46,-0.23 0.51,0.28 1.35,1.12 1.89,0.66 -0.05,-0.84 0.78,-1.19 1.52,-1.15 0.93,-0.54 0.61,-1.83 0.25,-2.63 0.17,-0.53 1.48,0.08 1.44,-0.79 -0.19,-0.6 -0.82,-1.12 -0.37,-1.79 0.31,-1.1 0.22,-2.35 -0.36,-3.32 -0.14,-0.67 0.15,-1.38 0.85,-1.55 0.54,-0.36 0.01,-0.92 0.14,-1.32 0.75,-0.41 0.72,-1.14 0.41,-1.8 0.45,-0.8 0.31,-1.85 -0.19,-2.56 0.17,-0.62 -0.5,-0.78 -0.77,-0.23 -0.41,0.46 -0.2,1.28 -0.96,1.44 -0.29,0.18 -1.1,1.1 -0.99,0.18 0.14,-0.5 0.35,-1.06 -0.11,-1.51 -0.37,-0.51 -0.84,-1.62 -1.62,-0.99 -0.45,0.14 -0.57,0.65 -0.73,0.93 -0.81,-0.12 -0.43,-1.15 -0.83,-1.59 -0.88,-0.28 -1.98,-0.11 -2.51,-1.07 -0.78,-0.58 -0.86,-2.15 -2.05,-2.07 -0.72,0.35 -0.82,1.18 -0.53,1.85 -0.08,0.44 -0.82,0.92 -0.92,0.19 -0.22,-1.13 -0.67,-0.28 -0.94,0.27 -0.44,0.5 -0.31,-0.57 -0.55,-0.79 0.01,-0.69 -0.52,-1.09 -0.98,-1.52 -0.44,-0.56 0.04,-1.7 -0.66,-2 -1.12,0.42 -1.97,1.37 -2.85,2.08 -0.76,-0.27 -0.39,-1.26 0.16,-1.56 0.4,-0.59 1.15,-1.47 0.81,-2.14 -0.52,-0.53 -1.52,-1.71 -1.55,-0.3 -0.79,0.85 -2.11,1.07 -2.99,1.87 -0.29,0.16 -0.98,0.87 -0.94,0.12 -0.39,-0.73 -1.49,-0.27 -2.16,-0.32 -0.39,-0.06 -1.38,0.3 -0.76,0.72 0.34,0.1 0.85,0.16 0.42,0.54 -0.93,1.17 -2.24,2.1 -3.74,2.31 -1.55,1.32 -2.62,3.25 -4.32,4.39 -0.51,-0.05 -1.42,-0.9 -1.65,-0.02 -0.14,0.51 0.11,1.32 -0.2,1.71 -0.7,-0.59 -1.45,-1.29 -1.91,-2.07 0.25,-0.58 0.43,-1.52 -0.38,-1.74 -1.36,-0.24 -2.02,-1.69 -3.33,-2.08 -0.84,-0.81 -0.35,-2.22 -0.66,-3.25 -0.14,-1.13 -1.33,-1.81 -2.24,-2.31 -0.97,-0.19 -0.78,-1.46 -1.63,-1.85 -0.62,-0.49 -1.54,-1.1 -1.61,-1.93 0.39,-0.78 0.21,-2.5 -1.03,-2.09 -0.92,0 -2.08,-0.19 -2.76,-0.79 -0.07,-0.42 -0.65,-0.34 -0.84,-0.53 0.24,-0.82 1.69,-0.73 1.4,-1.79 0.14,-1.23 -1.34,-0.62 -2.08,-0.72 -1.3,0.01 -1.08,1.66 -1.64,2.44 -0.39,0.65 -0.71,1.67 -1.39,1.95 -0.04,-0.84 0.61,-1.44 1.15,-1.98 0.26,-0.82 0.71,-1.61 0.76,-2.48 -0.51,-1.01 0.27,-2.33 -0.5,-3.27 l -0.14,0.02 z", + "department-56" : "m 78.94,44.19 c -0.1,7e-4 -0.21,0 -0.32,0.01 -0.92,0.04 -2.31,-0.07 -2.54,1.12 0.15,0.69 -0.1,1.78 -0.98,1.73 -0.55,-0.16 -0.93,0.39 -1.48,0.05 -0.7,-0.15 -1.37,0.5 -1.14,1.16 -0.69,0.02 -1.41,-0.72 -2.11,-0.2 -0.52,0.56 -1.31,0.29 -1.68,-0.28 -0.32,-0.37 -0.93,-0.33 -1.07,0.08 -0.56,0.11 -0.21,-0.85 -0.69,-1.03 -0.83,-0.41 -1.76,0.41 -2.53,0.67 -0.59,0.22 -1.33,1.06 -1.85,0.25 -1.14,-0.36 0.54,-1.24 -0.25,-1.82 -0.48,-0.42 -0.85,0.44 -1.41,0.09 -0.53,-0.26 -1.1,-0.52 -1.67,-0.19 -1,0.16 -2.12,0.24 -3.04,-0.17 -1.3,0.5 -2.66,0.86 -3.8,1.72 -0.57,0.38 -1.23,0.43 -1.85,0.44 -0.6,0.18 -0.86,0.76 -1.03,1.28 -0.31,0.39 -0.29,0.94 -0.66,1.31 -0.25,0.59 0.33,1.03 0.87,0.89 0.35,-0.01 0.8,0.19 0.47,0.6 -0.35,0.72 -0.19,1.69 0.68,1.94 1.02,0.65 0.7,2.12 1.38,3.04 0.45,0.56 0.32,1.97 1.32,1.8 1.06,-0.1 2.13,-0.39 3.18,-0.4 0.97,0.17 1.63,1.01 2.62,1.07 0.85,0.25 0.55,1.43 1.31,1.7 0.44,-0.04 0.25,-0.73 0.83,-0.64 0.66,-0.11 1.3,-0.94 1.83,-0.81 0.38,0.48 1.31,1.23 0.69,1.83 -0.01,0.53 0.76,1.42 0,1.74 -1.09,0.5 -0.15,1.79 -0.24,2.63 0.08,0.47 0.21,1.46 -0.55,0.96 -0.65,-0.51 -1.66,0.3 -1.58,1.07 -0.13,0.67 -0.68,0.88 -1.22,1.11 -0.56,0.79 -1.41,0.11 -1.91,-0.35 -0.45,-0.47 -1.13,-0.02 -0.88,0.59 0.02,0.9 1.25,1.51 0.6,2.44 -0.34,0.77 -0.48,1.78 0.28,2.35 0.93,1.3 1.35,3.41 3.11,3.83 1.1,-0.39 2.65,0.24 3.45,-0.79 0.43,-0.7 -0.56,-1.19 -0.84,-1.49 0.77,0.1 1.58,-0.05 2.05,-0.71 0.84,-0.73 1.75,-1.56 2.65,-2.11 -0.9,0.92 -0.87,2.68 -2.35,3.02 -0.42,0.28 -0.08,0.91 -0.58,1.22 -0.3,0.81 1.16,0.19 1.59,0.58 0.62,0.14 1.34,0.46 1.27,1.2 0.67,0.8 1.87,1.04 2.46,1.98 0.29,0.63 1.09,0.39 1.04,-0.29 -0.04,-0.7 0.75,-1.35 0.45,-2 0.64,-0.03 0.63,-1.13 1.44,-0.89 0.58,-0.55 0.01,-1.57 -0.42,-2.07 -0.41,-0.26 -0.6,-0.85 0.06,-0.51 0.52,0.37 1.23,0.52 1.57,-0.17 0.34,-0.06 0.05,0.78 0.07,1.01 -0.15,0.72 0.73,0.25 0.93,0.44 0.05,0.53 0.39,1.34 0.08,1.78 -0.97,0.26 -1.67,1.06 -2.69,1.19 -1.23,0.39 -1.22,2.05 -1.01,3.09 0.73,0.77 1.81,1.22 2.39,2.11 -0.63,1.41 -0.23,4.9 -0.1,5.8 0.14,0.87 1.19,1.11 1.91,0.93 0.29,-0.7 -0.9,-1.06 -0.98,-1.75 -0.22,-0.5 -0.15,-2.41 -0.2,-3.88 0.15,0.09 0.31,0.06 0.34,-0.23 -0.13,-0.46 0.3,-0.59 0.59,-0.26 0.26,0.26 1.16,0.62 0.53,0.95 -0.11,0.7 0.98,0.38 1.35,0.31 0.77,-0.24 1.61,-0.2 2.39,-0.34 0.11,-0.46 -0.42,-1.57 0.2,-1.75 0.32,0.63 0.19,1.76 0.94,2.06 0.57,-0.09 -0.17,-1.46 0.5,-0.73 0.65,0.58 0.97,1.51 1.96,1.61 0.77,0.05 0.03,-0.88 -0.19,-1.16 -0.72,-0.72 -0.97,-1.68 -0.69,-2.66 0.23,-0.87 -0.77,-1.67 -0.63,-2.37 0.49,0.54 0.97,1.33 1.56,1.64 -0.16,0.61 -0.34,1.93 0.68,1.8 0.63,-0.35 0.37,0.52 0.86,0.68 0.32,0.36 1.01,0.52 1.05,-0.17 0.05,-0.65 0.54,-0.55 0.98,-0.52 0.74,-0.21 0,-1.53 0.94,-1.33 0.9,-0.2 2.03,0.32 2.79,-0.26 0.33,-0.32 -0.43,-0.88 0.27,-0.69 0.6,-0.04 1.21,0.1 1.36,0.76 0.26,0.33 0.68,0.62 -0.02,0.4 -0.71,0.03 -0.08,0.78 0.29,0.84 0.47,0.15 1.31,0.94 1.67,0.34 0.04,-0.35 -0.52,-0.53 -0.01,-0.75 0.6,-0.35 0.27,-0.99 -0.06,-1.3 0.78,-0.21 0.93,1.07 0.93,1.62 -0.16,1.45 -1.81,2.19 -1.99,3.66 -0.29,0.83 -1.58,0.63 -2.13,0.28 -0.08,-0.81 -0.83,0.08 -1.16,-0.12 -0.19,-0.5 -0.69,-0.34 -0.73,0.11 -0.66,0.13 -1.71,0.29 -1.98,-0.54 -0.63,-0.44 -1.64,-0.58 -2.32,-0.23 -0.4,0.55 0.35,0.99 0.79,1.03 0.57,0.68 1.71,0.83 1.99,1.82 0.11,0.97 0.82,1.67 1.79,1.81 0.91,0.34 1.53,-0.66 2.43,-0.66 1.09,-0.42 2.21,-0.36 3.27,0.11 0.96,0.21 0.88,-1.05 1.06,-1.64 0.53,0.17 1.63,0.59 1.84,-0.16 -0.05,-0.35 -0.72,-0.87 -0.02,-0.8 0.7,0.18 1.46,-0.14 2.04,-0.32 -0.19,0.7 -1.07,0.81 -1.36,1.36 0.41,0.59 1.47,0.17 2.1,0.25 0.93,-0.04 1.83,-1.02 2.76,-0.35 0.87,0.38 1.82,0.59 2.65,1.14 0.84,0.52 1.74,0.12 2.59,-0.02 0.32,0.05 1.3,0.38 0.55,0.43 -1.5,0.15 -3,0.3 -4.55,0.32 -0.61,-0.09 -0.89,0.42 -0.66,0.94 0.2,0.73 -0.26,2.06 0.64,2.39 1.01,-0.25 1.03,-1.53 1.94,-1.93 0.28,-0.32 0.89,-0.56 0.8,0.08 0.22,0.84 1.3,0.8 1.91,0.44 0.69,-0.17 1.2,0.57 1.91,0.15 0.71,-0.02 0.96,-0.64 0.92,-1.26 0.26,-0.74 0.74,-1.43 0.76,-2.26 0.59,0.16 1.59,-0.14 2.01,0.36 -0.34,0.58 0.42,0.95 0.86,0.58 0.64,-0.25 1.56,-1.23 2.23,-0.63 -0.02,0.6 0.23,1.33 1,0.97 0.93,-0.36 0.02,-2.02 1.23,-2.16 0.83,-0.25 2.1,-0.23 1.72,-1.48 0.19,-1.17 -0.54,-2.52 0.4,-3.51 0.5,-0.71 0.2,-1.64 -0.44,-2.13 0.04,-0.59 -0.72,-0.87 -0.42,-1.48 0.23,-0.62 0.28,-1.53 -0.5,-1.73 -0.13,-0.86 -0.23,-1.79 -0.29,-2.65 0.58,-0.88 1.6,-1.18 2.61,-1.14 0.73,-0.14 0.13,-0.86 -0.4,-0.68 -0.36,-0.19 -0.42,-0.76 -0.96,-0.7 -0.34,-0.11 -1.17,0.06 -1.27,-0.31 0.49,-0.51 0.96,-1.03 1.7,-1.1 1.1,-0.47 0.56,-2.08 1.75,-2.44 0.56,-0.26 0.72,-0.98 0.18,-1.35 -0.15,-0.39 -0.34,-1.46 -0.89,-0.81 -0.47,0.35 -1.51,0.96 -1.79,0.11 0.26,-0.58 0.3,-1.21 -0.19,-1.67 -0.37,-0.94 0.4,-1.76 1.18,-2.13 0.52,-0.96 -0.7,-1.76 -0.85,-2.67 -0.63,-0.81 -1.21,-1.95 -2.25,-2.25 -0.71,0.21 -1.37,-0.02 -1.92,-0.47 -1.28,-0.75 -2.78,-0.36 -4.13,-0.2 -0.4,-0.59 0.47,-1.02 0.17,-1.63 0.23,-1 1.16,-1.75 1.93,-2.36 0.96,-0.28 2.64,0.3 3.02,-0.97 0.21,-0.53 -0.15,-1.13 -0.76,-0.88 -0.78,0.1 -1.95,0.12 -2.05,1.07 -0.62,0.22 -1.14,0.01 -0.89,-0.76 0.11,-1.3 -0.13,-2.71 -1.29,-3.49 -0.62,-0.68 -1.57,-0.25 -1.92,0.47 -0.46,0.16 -1.27,-0.25 -1.35,0.55 -0.4,0.31 -0.71,-0.59 -0.81,-0.89 -0.25,-1.06 -1.15,-1.8 -1.75,-2.65 -0.66,-0.45 -1.65,-0.48 -2.17,0.14 -0.48,0.1 -1.02,0.08 -1.4,0.4 -0.5,0.1 -1.93,-0.16 -1.61,0.75 0.95,0.82 0.04,2.07 -0.62,2.75 -0.63,0.49 -0.41,1.28 -0.6,1.92 -0.57,0.66 -1.53,0.69 -2.04,1.45 -0.57,0.61 -1.21,1.31 -2.14,1.19 -0.44,0.17 -0.95,0.5 -0.87,-0.29 -0.29,-0.29 -0.49,-0.63 -0.38,-1.12 0.09,-1.49 1.19,-3.03 0.43,-4.52 -0.67,-0.71 -1.56,0.4 -2.05,0.85 -0.63,0.25 -1.5,-0.43 -2.07,0.21 -0.4,0.39 -0.53,1.35 -1.12,1.42 -0.38,-1.04 -0.36,-2.3 -1.22,-3.14 -0.54,-1.14 -1.94,0.06 -2.83,-0.55 -0.84,-0.22 -1.04,-1.25 -1.96,-1.3 -1.13,-0.3 -2.43,-0.54 -3.44,0.19 -0.44,0.18 -1.02,0.11 -0.99,-0.45 -0.65,-0.4 -0.56,-1.37 -1.14,-1.82 -0.58,-0.43 -1.23,-0.62 -1.96,-0.61 z", + "department-35" : "m 134.51,11.19 c -1.01,0.48 -2.08,1.16 -3.2,0.58 -0.5,-0.27 -1,0.08 -0.89,0.62 -0.63,0.28 -1.8,-0.42 -2.1,0.39 0.18,0.91 -0.58,1.58 -1.42,1.67 -0.9,0.64 0.08,1.86 0.26,2.64 0.27,0.8 0.74,1.72 1.72,1.68 0.37,0.17 0.9,0.75 0.74,1.11 -0.34,-0.04 -1.06,-0.42 -0.95,0.24 0.02,0.86 1.14,1.18 0.88,2.11 0.24,0.95 0.95,-0.66 1.45,-0.89 0.41,0.21 0.6,1.14 0.86,1.62 0.42,0.57 0.08,1.14 -0.12,1.69 0.07,0.61 0.72,1.4 -0.24,1.62 -0.51,0.49 0.21,1.44 -0.6,1.74 -0.68,0.38 -0.84,1.35 -0.21,1.83 0.19,0.6 0.12,1.33 0.47,1.88 -0.74,0.65 -0.77,1.9 -0.06,2.57 0.29,0.9 -1.7,0.63 -1.26,1.66 0.15,0.78 0.11,1.68 -0.14,2.41 -0.52,0.3 -0.63,-0.67 -1.2,-0.29 -0.69,0.15 -0.56,1.56 -1.43,1.09 -0.67,-0.16 -1.23,-0.58 -1.73,-0.98 -0.71,-0.06 -0.78,0.71 -1.15,1.1 -0.26,0.4 -1.31,0.06 -1,0.76 0.38,0.36 -0.23,1.42 -0.66,0.81 -1.31,-0.71 -3.5,0.2 -3.17,1.9 0.15,0.47 0.35,1.26 -0.38,1.28 -0.41,0.05 -1.07,-0.7 -1.1,0.05 -0.21,0.93 0.23,2.41 -0.73,2.99 -0.78,0.11 0.16,0.96 -0.49,1.14 -0.48,0.07 -0.87,-0.55 -1.37,-0.12 -0.93,0.48 0.13,1.38 0.49,1.87 1.02,0.89 0.32,2.36 0.82,3.46 0.59,0.23 0.31,-0.76 0.87,-0.77 0.77,-0.24 1.83,-0.62 2.56,-0.14 0.49,0.94 -0.46,1.88 -1.41,1.84 -0.92,0.14 -2.07,-0.28 -2.54,0.81 -0.56,0.55 -1.06,1.24 -0.87,2.05 -0.18,0.3 -0.54,0.95 0.13,0.89 1.5,-0.49 3.11,-0.13 4.44,0.65 0.62,0.31 1.43,-0.32 1.84,0.46 0.76,0.82 1.7,1.56 1.95,2.72 0.37,0.58 1.08,1.24 0.54,1.96 -0.24,0.59 -1.09,0.54 -1.19,1.27 -0.26,0.82 0.75,1.44 0.36,2.27 -0.1,0.91 1.13,0.37 1.42,-0.05 0.29,-0.16 0.44,-1.12 0.86,-0.8 0.04,0.77 -0.13,1.73 0.72,2.14 -0.12,0.78 -0.82,1.18 -1.37,1.61 -0.29,0.6 -0.17,1.36 -0.86,1.74 -0.31,0.48 -1.43,0.31 -1.23,1.1 0.38,0.34 1.09,0.07 1.37,0.63 0.3,0.39 1.13,0.14 0.94,0.84 0.15,0.89 -1.17,0.31 -1.72,0.63 -0.49,0.22 -1.3,0.56 -1.22,1.19 0.68,0.72 -0.39,2.06 0.71,2.46 0.72,0.28 0.01,1.25 0.03,1.8 0.16,0.85 1.18,0.28 1.67,0.09 0.53,0.07 1.02,-0.16 1.06,-0.71 0.6,-0.68 1.76,-0.18 2.32,-1.02 0.4,-0.26 0.87,-1.11 1.34,-1.02 0.08,0.41 -0.03,1.52 0.72,1.18 0.84,-1.02 2.22,-1.22 3.44,-1.45 0.54,-0.36 1.01,-0.97 1.76,-0.73 1.38,0.05 2.76,0.81 4.1,0.14 0.62,-0.28 0.96,0.65 1.58,0.22 0.49,-0.46 1.05,-0.81 1.77,-0.63 1.23,0.11 2,-1.19 1.97,-2.28 0.13,-0.87 0.94,-1.16 1.6,-1.5 0.07,-0.51 0.5,-0.67 1,-0.74 1.01,-0.34 2.22,-0.17 2.96,-1.07 0.53,-0.6 1.99,0.11 1.94,-0.94 0.04,-0.5 -0.65,-1.06 -0.39,-1.48 1.32,-0.06 2.77,0.19 4.07,0.41 0.89,0.68 1.11,2.13 2.47,2.1 1.34,0.27 2.67,1 4.04,0.97 0.68,-0.66 -0.01,-1.9 0.84,-2.52 0.83,-0.6 0.36,-1.62 0.51,-2.41 0.57,-0.3 1.52,-0.7 1.03,-1.52 -0.36,-0.88 0.99,-1.03 0.86,-1.89 0.77,-1.21 0.34,-2.86 1.21,-4 0.62,-0.24 1.11,-0.68 1.44,-1.27 1.05,-0.54 2.31,0.55 3.39,-0.09 0.54,-0.35 1.37,-0.62 1.14,-1.46 -0.46,-1.13 -0.74,-2.45 -0.28,-3.63 -0.19,-0.74 -1.08,-1.11 -1.09,-1.97 -0.4,-1.47 -0.23,-3.14 -1.08,-4.44 -0.24,-1.09 -0.22,-2.28 -0.55,-3.34 0.22,-1.32 -0.93,-2.52 -0.5,-3.87 0.14,-1.61 1.8,-2.46 2.17,-3.93 -0.47,-1.08 -0.65,-2.36 -0.38,-3.53 -0.1,-1.11 -1.21,-1.82 -1.09,-3 -0.35,-0.87 0.78,-1.25 0.64,-2.11 -0.04,-0.7 -0.58,-1.26 -0.42,-2.02 0.04,-0.5 0.05,-1.39 -0.68,-1.29 -0.77,-0.32 -1.52,-0.95 -2.36,-0.47 -0.68,-0.11 -1.23,-0.86 -1.99,-0.67 -0.55,-0.33 -1.09,-0.78 -1.8,-0.65 -0.59,0.03 -1.22,-0.62 -1.69,0.05 -0.5,0.6 -0.19,1.78 -1.11,2.03 -0.51,0.41 -1.08,0.59 -1.66,0.84 -0.2,0.35 -0.39,0.48 -0.77,0.42 -0.41,0.29 -0.02,1 -0.6,1.2 -0.61,0.46 -1.34,1.05 -2.13,0.65 -0.82,10e-5 -1.91,-0.27 -1.87,-1.29 -0.5,-0.86 -2.16,-0.09 -2.44,-1.17 -0.25,-1.18 -1.01,-2.23 -1.62,-3.25 -0.47,-0.65 0.75,-1.77 -0.33,-2.19 -0.45,-0.57 1.7e-4,-1.58 -0.82,-1.97 -0.77,-0.34 -0.6,-1.29 -1.15,-1.76 -1.14,-0.3 -1.72,1.33 -2.85,1.35 -1.8,0.34 -3.66,0.45 -5.49,0.45 -0.45,0.62 -1.37,-0.04 -2.04,0.06 -0.93,0.01 -1.93,-0.21 -2.29,-1.19 -0.64,-0.88 -0.89,-2.26 -0.04,-3.09 0.89,-0.17 0.63,-1.89 0.06,-2.12 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_54.js b/lib/mapael-maps/france/france_region_54.js new file mode 100644 index 000000000..212800d16 --- /dev/null +++ b/lib/mapael-maps/france/france_region_54.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Poitou-Charentes for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_54 : { + width : 126.42387, + height : 137.91618, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 71.954; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3112.0984; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-79" : "m 63.16,4.63 c -0.6,0.19 -1.11,1 -1.82,0.5 -1.48,-0.44 -3.18,-0.44 -4.52,0.37 -0.59,0.29 -1.19,0.34 -1.75,-0.01 -0.87,-0.08 -2.03,0.21 -2.09,1.26 -0.82,0.69 -2.24,-0.06 -3.11,0.67 -0.32,0.35 -0.71,0.78 -0.81,0.05 -0.17,-0.67 1.32,-0.95 0.77,-1.44 -1.42,0.12 -3,0.57 -3.97,1.65 -0.44,0.67 0.88,1.48 0.22,1.98 -0.78,-0.04 -0.89,0.93 -1.46,1.3 -0.56,1.01 -1.52,1.06 -2.56,0.92 -0.58,0.17 -1.67,-0.63 -1.89,0.18 -0.04,0.49 -0.48,0.19 -0.69,0.02 -0.49,-0.01 -0.92,0.75 -1.35,0.15 -0.58,-0.71 -1.43,0.22 -2.01,-0.44 -0.32,-0.62 -1.08,-0.55 -1.42,0.02 -0.26,0.29 -0.53,0.64 -0.9,0.36 -0.74,-0.01 -1.5,0.49 -1.72,1.16 -0.41,-0.04 -1.54,0.03 -1.07,0.68 0.52,0.17 0.78,0.32 0.64,0.9 0.8,0.44 1.4,1.33 2.24,1.79 0.58,0.03 -0.09,0.93 -0.09,1.21 -0.3,0.57 -0.59,1.22 0.12,1.65 1.14,1.07 1.71,2.98 3.43,3.28 0.59,0.38 1.99,0.42 1.81,1.42 -1.06,0.78 -1.61,2.85 -0.34,3.66 0.54,-0.02 0.7,0.41 0.71,0.89 0.35,1 1.47,1.5 1.74,2.58 -1.26,0.71 -0.28,1.47 0.49,2.08 0.72,0.43 -0.33,0.97 -0.22,1.57 -0.12,0.68 0.83,0.4 1.06,0.89 0.57,0.33 0.52,0.9 0.27,1.42 -0.09,0.63 0.64,1.25 0.12,1.86 -0.56,0.89 0.76,1.28 0.68,2.14 0.09,0.53 0.29,1.53 -0.58,1.42 -0.79,-0.17 -1.46,0.69 -0.94,1.37 0.51,0.5 0.57,1.16 0.46,1.83 0.4,0.46 0.84,1.22 0.68,1.87 -0.38,0.37 -0.26,1.04 -0.87,1.16 -0.65,0.76 -0.06,1.94 0.19,2.72 0.5,-0.15 0.42,-1.82 1.3,-1.19 0.77,0.52 1.57,1 2.44,1.28 0.67,0.47 -0.28,1.24 -0.51,1.74 -0.43,0.73 -1.29,0.57 -1.99,0.62 -0.47,0.43 -0.65,1.23 -1.42,1.31 -0.31,0.37 -0.28,1.03 -0.85,1.2 -0.93,0.7 -2.05,-0.82 -2.94,0.11 -0.37,0.26 -0.05,1.04 -0.72,0.86 -0.45,-0.14 -1.17,-0.02 -0.93,0.61 -0.02,0.65 0.55,1.19 0.58,1.78 -0.27,0.57 -1.37,1.28 -0.28,1.63 0.94,0.73 2.5,1.25 2.73,2.57 0.2,0.55 -0.87,0.69 -0.32,1.17 0.54,0.23 1.21,0.11 1.5,0.74 0.59,0.72 1.83,0.62 2.4,1.19 -0.26,0.26 -1.26,0.48 -0.62,0.93 0.95,0.32 1.78,-0.6 2.71,-0.16 0.68,0.16 1.45,0.42 1.78,1.04 0.63,0.06 0.23,1.28 1.03,1.31 0.99,0.07 2.17,0.92 3.01,0.05 0.54,-0.6 0.45,0.34 0.55,0.68 0.09,0.76 1.05,0.85 1.41,0.23 0.77,-0.47 0.99,0.73 1.48,1.03 0.66,-0.04 1.32,-0.21 2.02,-0.09 0.51,0.1 0.99,-0.86 1.25,-0.06 0.45,0.82 0.77,1.92 1.89,1.99 0.68,0.23 1.44,0.37 2.09,0.09 0.64,0.22 0.15,1.44 0.96,1.27 0.22,-0.15 0.5,-0.5 0.55,0.03 0.12,0.68 0.21,1.5 0.94,1.76 0.47,0.59 0.38,1.72 1.33,1.79 0.67,0.75 1.67,-0.14 2.37,-0.43 0.51,-0.22 0.89,-0.75 0.57,-1.24 -0.01,-0.73 0.45,-1.33 1.06,-1.64 0.17,-0.59 -1.02,-1.46 -0.2,-1.93 0.83,-0.24 1.69,-0.15 2.48,-0.05 0.35,-0.45 0.8,-0.79 1.33,-1.03 0.21,-0.42 0.09,-1.04 0.71,-1.22 0.4,-0.32 1.37,0.25 1.27,-0.55 -0.22,-0.81 0.73,0.17 1.09,0.01 0.49,-0.17 1,-0.46 1.37,0.09 0.47,0.5 1.52,1.25 1.89,0.25 0.1,-0.56 -0.2,-1.22 0.4,-1.61 0.13,-0.52 0.16,-1.08 0.58,-1.5 0.61,-0.47 0.09,-1.54 -0.6,-1.05 -0.26,0.45 -0.85,0.85 -1.22,0.23 -0.55,-0.14 -0.95,-0.49 -1.12,-1.08 -0.23,-0.82 -1.26,-0.66 -1.71,-1.15 -0.19,-1.19 0.52,-2.24 1.38,-3 0.07,-0.74 -0.57,-1.63 -0.4,-2.32 0.62,-0.06 2.01,0.01 1.7,-1.02 -0.08,-0.63 -1.12,-1.28 -0.25,-1.65 0.31,-0.34 0.07,-0.83 0.47,-1.16 0.15,-0.71 -0.82,-1.14 -1.37,-1.38 -0.88,-0.11 -1.76,0.67 -2.06,1.44 -0.06,0.47 -0.54,1.09 -0.96,1.23 -0.84,-0.54 -1.77,-1.47 -2.79,-1.38 0.07,-0.64 0.61,-1.45 -0.1,-1.92 0.15,-0.67 1.28,-1.12 0.25,-1.76 -0.27,-0.54 -0.96,-0.37 -1.32,-0.67 -0.07,-0.58 -0.79,-1 -0.37,-1.61 0.15,-0.77 0.42,-1.75 0,-2.42 0.29,-0.88 0.06,-1.52 -0.97,-1.24 -0.48,-0.01 -0.01,-0.86 -0.09,-1.14 0.26,-0.72 0.01,-1.79 0.55,-2.33 0.77,0.04 1.86,-0.85 1.24,-1.63 -0.93,-0.81 0.28,-2 1.05,-2.38 0.35,0.04 0.71,-0.3 0.31,-0.54 -0.14,-0.56 -0.25,-1.4 -1.06,-1.24 -0.45,-0.02 -0.93,-0.33 -0.59,-0.8 0.34,-0.37 0.22,-1.41 -0.41,-0.87 -0.52,0.6 -1.43,1.09 -2.2,0.96 -0.14,-1.06 1.39,-1.53 1.27,-2.63 0.28,-0.74 1.24,-1.21 0.95,-2.12 0.58,-0.21 0.93,-0.68 0.74,-1.3 0.29,-0.62 1.06,-0.78 1.58,-1.04 -0.14,-0.76 -0.99,-1.33 -1.63,-1.71 -0.43,-0.01 -0.89,-0.1 -0.85,-0.66 -0.17,-0.85 -0.2,-1.86 0.6,-2.4 0.42,-0.25 0.57,-1.21 -0.14,-0.98 -0.55,0.34 -1.37,-0.01 -1.73,-0.45 0.03,-0.93 1.19,-1.03 1.77,-1.53 0.58,-0.33 0.92,1.03 1.41,0.32 0.64,-0.71 -0.48,-0.95 -0.89,-1.27 -0.43,-0.48 -1.03,-0.8 -1.66,-0.8 0.32,-0.77 0.5,-1.53 0.92,-2.25 0.21,-1.19 -0.77,-2.12 -1.15,-3.14 -0.69,-0.49 -0.07,-1.27 0.18,-1.8 -0.29,-0.92 -1.52,-0.8 -2.14,-0.29 -0.39,-0.23 -0.58,-1.11 -0.41,-1.57 0.4,-0.88 -0.22,-1.93 -0.37,-2.82 -0.11,-0.87 -0.98,-0.27 -1.39,-0.06 -0.42,-0.38 -0.91,-1.4 -1.58,-0.77 -0.44,0.16 -0.93,-0.28 -0.44,-0.65 0.25,-0.58 1.24,-1.01 1.02,-1.6 -0.39,-0.11 -0.75,-0.37 -1.16,-0.34 z", + "department-17" : "m 27.46,53.74 c -0.64,0.06 -0.83,0.98 -1.56,0.78 -1.64,-0.24 -3.34,0.54 -4.09,2.05 -0.33,0.68 -0.99,0.11 -1.48,0.33 -0.59,0.85 0.17,2.02 0.18,2.94 0.32,0.69 -0.12,1.39 -0.83,1.56 -1.09,0.69 -2.18,1.45 -3.1,2.33 -0.16,0.71 0.17,1.52 -0.49,2.11 -0.43,0.55 -0.87,1.88 0.15,2.06 0.63,0.18 1.54,-0.22 2.05,0.19 -0.02,0.98 1.16,1.19 1.44,1.97 -0.22,0.27 -0.6,0.72 -0.12,1.03 1.36,0.32 1.27,2 1.7,3.04 0.3,0.8 1.6,0.83 1.48,1.88 0.03,0.78 0.12,1.98 -0.97,1.96 -0.53,0.21 -1.21,-0.95 -1.5,-0.15 -0.09,0.94 0.47,1.71 1.22,2.19 0.52,0.61 -0.14,1.3 -0.08,1.9 0.23,0.9 1.04,2.09 0.36,2.93 -0.55,0.42 -1.22,-0.15 -1.73,0.12 -0.39,0.45 -0.07,1.42 -0.6,1.66 -0.41,-0.09 -1.21,-0.03 -0.94,0.59 0.41,2.64 1.42,5.37 3.7,6.94 1.05,0.89 2.3,1.72 3.27,2.57 -2.58,-1 -5.29,-2.45 -6.37,-5.17 -0.57,-0.57 -1.47,0.08 -2.18,-0.1 -0.94,-0.14 -2.27,0.06 -2.32,1.26 -0.21,1.72 -0.37,3.49 -0.46,5.21 0.61,0.73 1.24,-0.64 1.96,-0.32 1.21,0.32 1.56,1.77 2.77,2.15 1.52,0.74 2.99,1.53 4.14,2.78 0.99,0.8 2.63,1.07 2.85,2.57 0.26,1.36 1.54,2.34 2.89,2.34 0.74,0.46 1.3,1.18 2.06,1.58 2.75,2.45 5.36,5.3 6.34,8.96 0.5,1.36 0.73,2.91 1.38,4.18 1.7,0.11 3.53,0.75 5.2,0.21 0.3,-0.26 0.32,-1.32 0.88,-0.95 1.02,0.55 0.04,1.82 0.6,2.57 1.23,0.69 2.73,0.96 4.05,0.41 0.94,0.32 2.07,0.64 2.76,1.41 0.14,0.55 -0.34,1.49 0.41,1.68 0.53,1.08 -0.89,2.36 0.08,3.38 0.5,0.84 0.57,1.87 1.01,2.73 0.61,-0.18 0.92,-1.38 1.74,-0.87 0.75,0.14 1.14,0.71 1.54,1.27 0.95,-0.04 1.92,0.43 2.24,1.4 0.27,0.76 0.88,1.35 1.73,1.28 0.93,0.37 1.78,1 2.85,1.07 1.16,0.67 1.57,-0.86 2.35,-1.36 0.48,-0.4 1.27,-1.04 1.61,-0.12 0.34,0.45 1.25,1.45 1.65,0.55 0.47,-0.7 -0.05,-1.88 0.62,-2.4 0.31,-0.21 1.71,-0.58 0.97,-1.04 -0.8,-0.16 -0.13,-1.02 0.1,-1.41 0.31,-0.9 0.3,-1.91 0.41,-2.83 -0.53,-0.58 -1.66,-0.41 -1.94,-1.29 -0.97,-0.68 -2.35,0.04 -3.45,-0.4 -0.48,-0.08 0.19,-0.58 0.05,-0.87 0.08,-0.62 0.46,-2.09 -0.58,-2.04 -0.36,0.04 -0.87,0.56 -0.9,-0.1 -0.55,-1.25 -2.19,-0.45 -3.02,-1.36 -0.66,-0.23 -1.74,0.04 -1.98,0.75 -0.02,0.6 -0.89,-0.03 -1.13,-0.19 -0.49,-0.69 -0.47,-1.63 -0.08,-2.35 0.04,-0.53 0.47,-0.32 0.71,-0.08 0.76,0.37 1.28,-1.13 0.29,-1 -0.4,0 -1.04,0.36 -1.11,-0.25 -0.36,-0.54 -1.57,-0.74 -1.14,-1.61 0.43,-0.48 1.28,-0.23 1.57,-0.89 0.4,-0.26 0.99,-0.16 1.22,-0.67 0.53,0.05 0.61,-0.56 0.05,-0.64 -0.52,-0.34 -0.08,-1.18 -0.55,-1.63 -0.2,-0.54 -0.73,-0.79 -1.19,-0.95 -0.11,-0.54 0.11,-1.24 0.78,-1.12 0.47,-0.23 0.31,-0.99 0.92,-1.13 0.57,-0.51 -0.36,-0.7 -0.57,-1.04 0.07,-0.44 -0.02,-1.15 -0.64,-0.86 -0.47,0.19 -0.52,-0.62 -1.06,-0.45 -0.46,-0.08 -1.56,-0.48 -0.93,-1.06 0.46,-0.5 1.18,-1.34 0.36,-1.92 -0.48,-0.66 -1.4,-0.64 -1.74,-1.38 -0.81,-0.3 -1.28,-1.12 -1.7,-1.83 -0.61,-0.19 -1.32,0.54 -1.9,-0.05 -0.65,-0.44 0.36,-1.26 0.52,-1.85 0.13,-0.78 1.26,0.09 1.23,-0.73 -0.41,-0.94 -1.71,-1.45 -1.47,-2.66 -0.09,-0.77 -0.07,-1.58 0.55,-2.1 10e-4,-0.79 -1.18,-0.43 -1.7,-0.47 -0.84,0.33 -0.92,-0.75 -0.54,-1.21 0.21,-0.57 0.76,-0.6 1.26,-0.53 0.73,-0.06 1.14,-0.77 1.3,-1.35 1.44,0.26 3.06,0.26 4.42,-0.34 0.41,-0.22 0.07,-0.96 0.68,-0.9 0.71,-0.01 1.68,-0.23 2.23,0.11 0.42,0.5 0.51,1.73 1.28,1.8 0.7,-0.47 1.36,-1.14 2.3,-0.9 0.74,-0.08 0.47,-1.11 0.93,-1.54 0.56,-0.73 -0.58,-1.9 0.51,-2.34 0.58,-0.37 0.81,-1.29 0.19,-1.7 -0.03,-0.64 -0.61,-1.04 -0.93,-1.49 0.39,-0.41 0.54,-0.99 0.06,-1.36 -0.2,-0.43 -0.12,-1.13 0.53,-0.86 0.7,0.07 1.79,0.3 1.89,-0.7 0.18,-0.44 0.15,-1.12 -0.38,-1.26 -0.21,-0.75 -0.98,-0.99 -1.52,-1.41 -0.18,-0.64 -0.35,-1.32 -1.04,-1.56 -0.48,-0.4 -0.13,-1.73 -0.97,-1.55 -0.66,0.45 -0.56,-0.65 -0.67,-1.02 -0.44,-0.38 -1.11,0.09 -1.63,-0.21 -0.7,-0.22 -1.52,-0.36 -2.06,-0.87 -0.02,-0.61 -0.65,-1.99 -1.36,-1.23 -0.87,0.03 -1.79,-0.08 -2.63,0.19 -0.4,-0.15 -0.1,-0.98 -0.66,-1.12 -0.68,-0.55 -0.8,0.87 -1.47,0.43 -0.67,-0.17 -0.52,-0.92 -0.84,-1.32 -0.59,-0.26 -0.4,1.05 -1.03,0.54 -0.91,-0.51 -2.21,-0.26 -3,-0.93 -0.15,-1.18 -1.21,-2.28 -2.48,-2.02 -0.88,0.06 -2.22,0.7 -2.83,-0.2 0.37,-0.36 0.63,-1.14 -0.14,-1.18 -0.96,0.08 -1.3,-1.18 -2.27,-1.18 -0.42,-0.13 -1.02,-0.86 -0.38,-1.14 0.75,-0.96 -0.6,-1.69 -1.28,-2.11 -0.47,-0.44 -1.87,-0.78 -1.48,-1.65 0.52,-0.47 0.82,-1.03 0.26,-1.66 -0.4,-0.82 -0.22,-1.98 -1.29,-2.33 -0.69,-0.3 -1.38,-0.64 -1.83,-1.23 -0.52,-0.35 -1.5,-0.33 -1.41,0.53 0.1,0.65 -0.66,0.75 -0.98,0.35 -0.47,-0.25 -1.07,-0.14 -1.3,0.32 -0.95,0.33 -2.43,0.39 -2.95,-0.61 0.54,-0.58 1,-1.46 0.97,-2.26 -0.15,-0.23 -0.46,-0.17 -0.69,-0.17 -0.05,0 -0.09,0 -0.14,0 z m -24.49,7.34 c -0.94,0.31 -1.91,0.47 -2.86,0.62 -0.46,0.62 0.64,1.1 0.6,1.76 0.58,1.14 1.93,1.42 3.1,1.22 1.21,-0.18 2.41,0.07 3.34,0.92 1.79,0.99 3.69,2.42 5.82,2.25 0.6,0.03 0.97,-0.64 0.4,-1 -0.88,-0.66 -1.24,-2.13 -2.54,-2.11 -0.88,-0.29 -1.67,-0.87 -2.67,-0.79 -0.71,-0.14 -1.76,0.04 -2.27,-0.49 0.31,-0.25 0.49,-0.84 -0.1,-0.79 -0.71,-0.18 -1,0.49 -1.41,0.86 -0.84,0.16 -2.07,-0.31 -2.31,-1.13 0.5,-0.51 1.56,0.6 1.8,-0.26 -0.05,-0.47 -0.28,-1.17 -0.88,-1.06 z m 4.27,13.73 c -0.91,0.2 -0.07,1.23 0.19,1.65 0.69,0.8 1.04,1.68 0.72,2.74 -0.24,1.04 -0.17,2.02 0.86,2.58 1.53,1.4 3.43,2.45 4.36,4.39 1.11,1.29 1.15,2.99 1.61,4.53 0.55,0.56 1.06,-0.59 1.38,-0.92 0.81,-1.26 0.55,-2.85 1.06,-4.22 0,-1.49 -1.85,-1.91 -2.43,-3.04 0.33,-0.84 -0.67,-1.6 -0.19,-2.42 -0.02,-0.81 -0.64,-1.88 -1.5,-1.94 -1.2,0.51 -2.01,-0.97 -2.93,-1.47 -0.96,-0.72 -1.85,-1.8 -3.13,-1.88 z", + "department-16" : "m 104.3,68.78 c -0.64,0.02 -0.94,0.74 -1.54,0.97 -0.66,0.31 -0.11,0.94 -0.2,1.39 -1.03,0.61 -2.49,0.33 -3.46,0.94 0.12,0.43 -0.46,1.14 -0.78,0.56 -0.43,-0.14 -0.9,-0.05 -1.23,-0.47 -0.35,-0.43 -1.29,0.15 -1.28,-0.57 -0.36,-0.93 -1.5,-1.49 -1.5,-2.56 -0.41,-0.34 -0.81,0.39 -1.26,0.25 -0.37,0.67 -0.89,1.27 -1.28,1.92 -0.23,0.75 0.69,0.65 1.1,0.83 0.57,0.66 0.19,1.57 -0.55,1.88 -0.75,0.68 -2.22,0.82 -2.72,-0.24 -0.93,-0.63 -2.19,0.08 -3.23,-0.05 -0.96,-0.05 -2.25,0.55 -2.9,-0.47 -0.57,-0.74 -1.51,-0.93 -2.24,-1.47 -0.75,-0.44 -1.42,0.16 -1.98,0.54 -0.86,-0.13 -1.27,-1.53 -2.31,-1.04 -0.72,0.01 -1.22,0.96 -1.94,0.49 -0.83,-0.22 -1.01,0.68 -1.07,1.28 -0.33,0.37 -1.03,0.18 -1.29,0.72 -0.22,0.49 -0.65,0.6 -1.12,0.4 -0.57,0.1 -1.64,-0.29 -1.92,0.34 -0,0.64 1.11,1.35 0.25,1.81 -0.53,0.24 -0.84,0.78 -0.69,1.4 0.44,0.63 -0.54,1.16 -0.93,1.51 -0.57,0.15 -1.47,0.34 -1.64,0.88 0.63,0.52 0.78,1.27 0.37,1.99 -0.33,1.19 -1.98,-0.06 -2.45,0.86 -0.02,0.51 0.88,0.56 0.45,1.13 -0.4,0.5 -0.13,0.89 0.32,1.05 0.14,0.53 0.51,0.99 0.77,1.41 -0.06,0.8 -0.82,1.28 -1.12,1.96 0.15,0.82 0.06,1.6 -0.4,2.32 -0.15,0.53 0.08,1.3 -0.51,1.58 -0.37,-0.54 -1.17,-0.76 -1.71,-0.25 -0.38,0.53 -1.19,0.69 -1.53,0.03 -0.48,-0.51 -0.51,-1.53 -1.44,-1.44 -0.67,-0.06 -1.62,-0.06 -1.81,0.73 -0.89,0.92 -2.4,0.7 -3.58,0.76 -0.57,-0.19 -1.14,0.07 -1.23,0.67 -0.65,0.76 -2.12,0.05 -2.41,1.26 -0.34,0.74 0.54,0.96 1.09,0.75 0.45,-0.1 1.68,-0.04 1.29,0.68 -0.92,0.74 -0.6,2.12 -0.29,3.09 0.45,0.56 1.21,1.12 1.36,1.83 -0.45,0.42 -1.35,0.09 -1.57,0.86 -0.28,0.45 -0.92,1.56 0.05,1.62 0.61,0.07 1.43,-0.91 1.71,0.03 0.78,1.61 2.85,2.17 3.71,3.68 -0.13,0.63 -0.72,1.15 -1,1.52 0.22,0.96 1.55,0.57 2.2,1.03 0.44,0.08 0.92,0.38 0.55,0.84 -0.08,0.6 1.2,0.67 0.75,1.36 -0.57,0.29 -0.75,1.17 -1.31,1.37 -0.74,-0.13 -0.44,0.92 0.07,1.03 0.73,0.59 0.88,1.53 1.03,2.36 0.47,-0.14 0.88,0.62 0.26,0.81 -0.56,0.56 -1.49,0.43 -1.91,1.16 -0.42,0.2 -1.4,0.14 -1.06,0.87 0.71,0.72 1.57,1.43 2.67,1.27 0.28,0.37 0.06,1.14 -0.54,1.14 -0.45,0.01 -0.98,0.03 -1.04,0.64 -0.27,0.62 0.03,2.1 0.96,1.64 0.41,-0.57 1.19,-0.49 1.59,-1.02 0.84,0.51 1.76,0.93 2.78,0.87 0.7,0.25 1.18,1.04 2.02,0.93 1.12,0.04 0.47,1.26 0.52,1.99 -0.56,1.4 1.08,0.99 1.92,1.03 0.6,-0.04 1.41,-0.18 1.64,0.55 0.39,0.6 1.31,0.55 1.7,1.07 -0.01,0.44 -0.19,1.46 0.59,1.18 0.99,0.14 1,-1.34 1.88,-1.35 0.44,0.51 1.07,0.2 1.56,-0.03 0.79,-0.02 1.25,1.51 2.09,0.85 0.32,-0.83 1.41,-1.03 1.45,-2 0.07,-0.55 0.13,-1.38 0.92,-1.18 1.2,-0.12 0.86,-2.27 2.25,-1.94 0.87,0.1 1.48,-0.65 1.31,-1.48 0.07,-1.3 -0.82,-2.43 -0.83,-3.69 0.5,-1.4 0.49,-3.24 1.78,-4.2 0.38,-0.12 1.11,-0.11 0.75,-0.73 -0.27,-0.38 -0.15,-1.31 0.45,-0.86 0.3,0.47 0.83,0.41 0.83,-0.13 0.46,-0.36 1.08,-0.58 1.42,-1.09 0.67,-0.1 0.83,-1.01 1.61,-0.99 0.52,-0.4 1.06,0.69 1.39,-0.02 -0.02,-0.88 0.8,-1.46 0.97,-2.27 0.55,-0.17 0.53,-1.1 1.21,-1 0.78,-0.15 1.61,-0.81 1.04,-1.62 0.24,-0.97 1.07,-2.11 0.25,-3.06 -0.21,-0.31 -0.27,-0.7 0.13,-0.83 7.2e-4,-0.64 0.72,-1.43 1.33,-1.15 0.12,0.96 1.97,0.32 1.49,-0.58 -0.31,-0.68 0.74,-0.57 0.77,-1.18 0.59,-0.45 0.48,-1.42 1.06,-1.87 0.75,-0.43 0.78,-1.6 1.61,-1.9 0.28,-1.14 1.34,-2.01 2.34,-2.54 0.97,-0.07 0.44,-1.43 0.6,-2.06 -0.14,-0.65 0.44,-0.95 1.02,-0.84 0.79,-0.2 1.34,1.12 2.07,0.61 0.38,-0.62 -0.18,-1.41 0.54,-1.85 0.49,-0.82 1.44,-1.77 1.12,-2.77 -0.49,-0.53 0.86,-0.86 0.35,-1.47 -0.36,-0.84 -0.46,-1.93 -0.29,-2.79 0.7,-0.15 1.17,0.67 1.92,0.53 0.97,0.25 1.66,-0.44 2.37,-0.93 0.73,-0.02 0.55,-0.99 1.15,-1.29 0.44,-0.45 0.36,-1.1 -0.01,-1.49 0.06,-0.73 -0.66,-1.12 -0.65,-1.83 -0.32,-0.54 -0.93,-0.98 -1.42,-1.28 -0.41,0.11 -1.09,1.02 -1.38,0.29 -0.19,-0.93 -1.33,-1.13 -1.78,-1.8 -0.18,-1.12 0.22,-2.19 0.49,-3.23 0.02,-0.79 -0.85,-1.32 -0.67,-2.11 -0.65,-0.56 -1.74,-0.1 -2.54,-0.3 -0.56,-0.02 -1.12,-0.07 -1.67,-0.05 z", + "department-86" : "m 71.94,0.1 c -1.14,1.06 -2.25,2.5 -2.33,4.1 0.12,0.27 0.58,0.18 0.38,0.63 -0.07,0.28 -0.22,1.02 -0.51,0.97 -0.5,-0.47 -1.39,-0.24 -1.91,-0.79 -0.75,-0.05 -0.89,1.08 -0.9,1.66 0,1.43 0.71,2.82 0.84,4.18 -0.72,0.27 -0.24,1.75 0.55,1.2 0.66,-0.48 2.08,0.24 1.54,1.06 -0.41,0.48 -0.52,1.15 0.06,1.55 0.32,0.75 0.92,1.33 1.03,2.2 0.53,1.02 -0.95,1.92 -0.51,2.89 0.85,0.43 1.53,1.18 2.48,1.41 0.11,0.41 -0.43,1.03 -0.71,1.32 -0.46,-0.51 -1.25,-0.95 -1.81,-0.3 -0.36,0.29 -1.46,0.95 -0.49,1.26 0.39,0.4 0.88,0.23 1.26,0.02 0.59,0.03 0.85,0.67 0.32,1.02 -0.8,0.54 -1.04,1.48 -0.79,2.38 -0.11,0.52 0.36,0.64 0.74,0.67 0.66,0.47 1.53,1.08 1.77,1.87 -0.63,0.32 -1.63,0.57 -1.57,1.51 -0.05,0.61 -0.81,0.97 -0.63,1.63 -0.38,0.6 -1.29,1 -1.07,1.84 -0.24,0.74 -1.35,1.08 -1.33,1.88 0.78,0.32 1.69,-0.38 2.2,-0.96 0.33,-0.53 0.88,-0.05 0.67,0.4 -0.28,0.46 -0.49,1.63 0.41,1.45 0.81,-0.38 0.78,0.65 0.98,1.11 0.13,0.25 0.84,0.22 0.34,0.53 -0.8,0.51 -2.21,1.04 -2.01,2.21 0.34,0.34 0.89,0.7 0.42,1.23 -0.18,0.55 -0.54,1.03 -1.15,0.97 -0.44,0.28 -0.2,0.93 -0.57,1.27 -0.06,0.53 0.23,1.11 -0.26,1.47 -0,0.85 1.64,-0.09 1.36,0.96 -0.53,0.61 0.3,1.14 0.03,1.81 -0.07,0.94 -0.66,2.65 0.66,3 0.79,0.05 0.84,1 1.41,1.39 -0.71,0.43 -0.86,1.19 -0.2,1.7 -0.4,0.34 -0.84,1.25 0.07,1.21 0.86,0.18 1.56,1.52 2.49,1.02 0.4,-0.97 1.07,-1.93 2.04,-2.4 0.83,0.07 2.05,0.62 2.09,1.57 -0.46,0.39 -0.23,1.14 -0.73,1.53 -0.1,0.72 1.12,1.52 0.21,2.12 -0.35,0.55 -1.48,-0.02 -1.41,0.81 -0.01,0.69 0.87,1.74 0,2.18 -0.7,0.55 -1.34,1.66 -0.86,2.52 0.71,0.32 1.56,0.59 1.76,1.48 0.17,0.6 0.86,0.46 1.16,0.85 0.58,-0.04 0.96,-0.98 1.59,-0.46 0.75,0.62 -0.42,1.53 -0.43,2.25 -0.11,0.57 -0.98,1.25 -0.28,1.79 0.9,0.18 1.65,0.71 2.43,1.16 0.79,0.25 1.17,1.62 2.2,1.17 1.46,-0.31 3,-0.22 4.49,-0.32 0.41,0.58 0.98,1.33 1.77,0.97 0.93,-0.03 2.12,-1.24 1.44,-2.13 -0.38,-0.24 -1.1,0.06 -1.05,-0.63 -0.31,-0.86 0.92,-1.18 1.03,-1.98 0.08,-0.73 0.82,-0.21 1.16,-0.67 0.74,-0.36 0.71,0.55 0.76,0.99 0.75,0.49 1.05,1.44 1.8,1.9 0.72,-0.1 1.13,0.83 1.84,0.61 0.29,0.34 0.76,0.24 0.7,-0.25 0.86,-0.97 2.52,-0.32 3.45,-1.09 -0.01,-0.41 -0.31,-1.14 0.29,-1.31 0.72,-0.6 1.45,-1.38 2.51,-1.13 0.96,2e-4 1.91,0.58 2.83,0.14 0.52,-0.04 1.55,0.71 1.72,-0.12 -0.55,-1.27 -0.22,-2.94 -1.5,-3.83 -0.88,-0.58 -0.56,-2.06 0.43,-2.23 0.42,-0.04 1.69,0.13 1.24,-0.61 -0.18,-0.72 0.69,-0.75 0.8,-1.37 0.54,-0.58 1.48,-0.78 1.68,-1.65 0.37,-0.58 1.27,0.51 1.62,-0.26 0.27,-0.52 0.9,0.19 1.35,0.08 0.82,0.1 2.06,0.55 1.97,-0.75 0.13,-0.76 0.91,-1.14 0.79,-1.99 -0.04,-1.24 1.11,-2.54 2.41,-2.22 0.75,-0.09 1.36,0.26 1.97,0.59 0.61,0.03 0.33,-0.88 0.94,-0.93 0.6,-0.21 0.21,-1.27 0.92,-1.37 0.92,0.39 1.55,-0.63 1.53,-1.45 0.16,-0.4 0.9,-1.18 0.07,-1.29 -0.69,0.21 -0.35,-0.68 -0.9,-0.83 -0.81,-0.3 -1.76,-0.95 -1.76,-1.88 0.5,-0.3 0.33,-0.76 0.07,-1.13 -0.23,-0.45 0.19,-0.75 0.2,-1.13 -0.81,-1.39 -2.35,-2.36 -4,-2.15 -0.69,-0.09 -1.83,0.33 -1.54,-0.7 0.05,-0.77 -0.55,-1.43 -1.36,-1.25 -0.33,-0.12 -0.62,-0.44 -1.04,-0.37 -0.77,-0.13 -1.4,-0.62 -1.75,-1.29 -0.57,-0.31 -1.13,-0.67 -1.24,-1.4 -0.33,-0.57 -0.71,-1.23 -0.15,-1.8 0.73,-0.83 0.1,-1.91 0.31,-2.83 0.43,-0.52 1.16,-1.04 0.38,-1.67 -0.41,-0.68 -0.38,-1.75 -1.36,-1.91 -1.25,-0.97 -2.26,-2.23 -3.19,-3.5 -0.32,-0.48 -0.09,-1.3 -0.37,-1.87 -0.03,-0.59 -0.49,-0.81 -0.83,-1.16 -0.28,-0.39 0.07,-1.17 -0.73,-1 -0.48,-0.04 -0.44,-0.78 -0.98,-0.77 -0.81,-0.82 -1.57,-1.75 -2.18,-2.73 -0.19,-1.54 -0,-3.3 -0.9,-4.62 -0.49,-0.28 -1.19,-0.08 -1.48,-0.7 -0.42,-0.26 -1.04,0.12 -1.26,-0.53 -0.27,-0.4 -0.34,-1.04 -0.99,-0.94 -0.47,0.04 -1.73,-0.21 -1.61,0.56 0.48,0.31 0.28,1.12 0.94,1.29 0.6,0.23 0.98,1.57 0.03,1.5 -2.21,0.09 -4.77,-0.46 -6.55,1.22 -0.29,0.58 -0.81,0.41 -1.29,0.2 -0.92,0.09 -1.53,-0.87 -2.48,-0.71 -0.63,0.27 -1.31,1.19 -2.04,0.86 -0.7,-0.56 -0.9,-1.47 -0.89,-2.3 -0.36,-0.38 0.27,-0.7 -0.14,-1.1 -0.49,-0.38 -0.04,-0.47 0.16,-0.78 0.22,-0.76 -0.32,-1.65 0.23,-2.32 0.17,-0.5 0.14,-1.58 -0.66,-1.23 -0.45,0.05 -1.53,0.66 -1.3,-0.31 0.22,-0.84 -0.91,-1.4 -1.41,-0.72 -0.37,0.45 -1.12,1.03 -1.58,0.36 -0.39,-0.23 -1.25,0.31 -1.11,-0.51 0.06,-0.79 1.27,-1.22 0.69,-2.09 -0.06,-0.39 -0.5,-1.14 -0.88,-0.57 -0.3,0.8 -1.19,0.15 -1.61,-0.18 0.04,-0.66 -0.86,-1.58 -1.37,-0.85 -0.8,0.33 -1.3,0.09 -1.19,-0.79 -0.01,-0.6 -0.79,-0.57 -0.84,-1.19 -0.07,-0.58 -0.6,-0.89 -1.06,-0.53 -0.38,-0.18 -0.52,-0.95 -0.97,-0.84 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_72.js b/lib/mapael-maps/france/france_region_72.js new file mode 100644 index 000000000..864ea7faf --- /dev/null +++ b/lib/mapael-maps/france/france_region_72.js @@ -0,0 +1,40 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Aquitaine for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_72 : { + width : 147.37883, + height : 193.23335, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 82.028; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3014.8924; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-33" : "m 32.17,9.42 c -1.35,0.6 -1.67,2.33 -2.44,3.46 -0.9,1.15 -0.93,2.57 -0.99,3.96 -0.61,4.56 -0.18,9.24 -0.86,13.81 -0.54,4.31 -1.74,8.52 -1.95,12.89 -0.61,9.17 -2.18,18.25 -2.59,27.43 -0.23,0.48 0.43,1.07 0.51,0.37 0.12,-2.05 0.3,-4.24 1.78,-5.82 0.87,-0.89 1.14,-2.15 1.74,-3.18 1.21,-0.33 2.09,1.03 2.85,1.76 0.63,0.9 1.64,1.51 2.31,2.31 -0.15,0.54 -0.05,1.16 0.57,1.33 0.89,0.5 0.29,1.93 -0.63,2 -1.29,0.35 -2.75,0.59 -4.04,0.18 -0.46,-0.92 -1.95,-0.82 -2.18,0.22 -0.67,1.95 -0.9,4.12 -2.27,5.74 -1,1.52 0.46,3.25 0.04,4.89 -0.56,1.66 1.25,0.5 2.03,0.32 1.54,-0.68 3.4,-0.85 4.7,-1.95 0.37,-0.43 0.46,-1.26 0.94,-1.49 1.21,0.54 2.32,1.73 3.77,1.29 0.97,-0.01 0.89,1.32 0.88,2.01 -0.26,1.23 -0.86,2.4 -1.49,3.46 0.41,0.52 1.31,-0.06 1.87,-0.11 0.88,-0.1 1.78,-0.95 2.65,-0.7 1.26,0.68 2.7,1.33 4.15,1.39 0.95,-0.2 1.88,-0.68 2.53,-1.36 1.13,-0.52 2.4,-0.33 3.58,-0.23 0.42,-0.29 0.73,-0.99 1.37,-0.7 0.81,0.19 1.92,0.59 1.68,1.66 0.13,0.64 -0.15,1.31 -0.14,1.89 1.05,0.76 2.44,0.97 3.45,1.83 0.79,0.27 1.41,0.83 1.52,1.7 0.71,1.41 2.59,1.54 3.99,1.65 0.03,1.15 0.83,2.35 2.06,2.32 0.39,0.86 -0.23,1.95 -0.2,2.87 -0.13,0.87 -0.2,2.41 1.05,2.42 1.47,0.17 2.92,0.35 4.32,0.78 0.78,-0.08 1.67,-0.33 2.27,-0.79 0.05,-1.21 -0.43,-2.56 -0.04,-3.71 0.43,-0.21 1.01,-0.05 1.46,-0.32 1.09,0.27 1.03,1.87 2.02,2.36 0.58,0.83 0.85,-0.38 1.39,-0.35 0.82,0.69 1.56,-0.21 2.07,-0.76 0.74,-0.19 0.91,-1.16 1.56,-1.54 0.29,-0.56 -0.24,-1.15 -0.1,-1.75 -0.38,-1.09 -1.67,-1.67 -1.98,-2.76 0.06,-0.5 0.33,-0.96 0.89,-0.93 0.73,-0.5 1.85,-0.3 2.53,-0.96 0.37,-0.28 1.16,0.18 1.1,-0.57 0.09,-1.3 -1.54,-2.16 -0.97,-3.49 -0.03,-0.57 1.05,-1.42 0.17,-1.76 -0.65,-0.21 -0.45,-1.24 -0.54,-1.78 -0.08,-1.1 0.24,-2.35 1.37,-2.78 0.23,-0.52 -0.86,-1.1 -0.65,-1.58 0.42,0.05 0.76,0.79 1.19,0.23 0.54,-0.89 1.89,0.25 2.27,-0.85 0.42,-0.64 0.06,-1.88 1.14,-1.89 0.86,-0.29 1.33,-1.23 2.19,-1.44 0.21,-0.63 -0.73,-1.14 -0.43,-1.83 0.26,-0.42 1.09,0.83 1.23,-0.02 -0.18,-0.63 1.08,-1.19 0.41,-1.71 -0.56,-0.41 -1.38,0.04 -1.91,-0.19 -0,-0.61 -0.41,-1.09 -1.02,-1.04 -0.67,-0.51 -0.57,-1.57 0.21,-1.9 0.65,0.22 1.14,-0.35 1.03,-0.99 -0.13,-0.49 0.19,-0.8 0.6,-0.49 0.72,0.14 1.16,-0.47 1.49,-0.94 0.89,-0.03 0.33,1.48 1.2,1.41 0.29,-0.4 -0.11,-1.02 0.21,-1.48 0.05,-0.71 1.01,-1.42 1.37,-0.54 0.57,0.45 1.89,0.38 2.07,-0.4 -0.93,-1.21 -0.97,-2.77 -1.17,-4.22 0.94,0.41 1.89,-0.57 2.12,-1.32 -0.7,-0.72 -1.89,-1.75 -2.92,-1.16 -0.25,1.28 -1.94,1.44 -2.31,2.71 -0.25,0.7 -0.77,-0.16 -1.24,-0.03 -0.84,-0.1 -1.91,-0.43 -2.52,0.33 -0.49,0 -0.57,-1.31 -1.23,-0.7 -0.3,0.3 -0.56,0.98 -1.06,0.53 -0.52,-0.11 -1.13,-0.11 -1.3,-0.75 -0.32,-1.15 -1.67,-0.6 -2.48,-1 -0.36,-0.03 -1.06,-0.34 -0.4,-0.59 1.35,-0.39 1.54,-2.09 2.3,-3.08 0.95,-0.89 -0.46,-1.47 -0.68,-2.32 -0.21,-0.87 -0.08,-1.96 0.4,-2.7 1.15,-0.16 0.79,-1.67 0.9,-2.49 0.06,-1.42 1.66,-2.3 1.47,-3.79 -0.24,-1.15 -0.69,-2.82 -2.17,-2.71 -0.97,-0.05 -2.17,-0.17 -2.69,0.85 -0.68,0.81 -1.6,-0.07 -1.98,-0.72 -0.8,-0.86 -1.73,0.38 -2.23,0.93 -0.46,0.69 -1.24,0.78 -1.97,0.53 -1.18,-0.18 -2.19,-0.92 -3.37,-1.08 -1.04,-0.6 -1.16,-2.46 -2.52,-2.52 -0.33,0.07 -0.57,0.82 -0.8,0.16 -0.16,-0.99 -1.53,-2.19 -2.39,-1.24 -0.31,0.22 -0.3,0.97 -0.55,1.06 -0.69,-1.19 -0.87,-2.69 -1.58,-3.86 -0.25,-0.91 0.61,-1.8 0.34,-2.66 -0.29,-0.2 -0.77,-0.19 -0.54,-0.7 0.61,-1.25 -0.51,-1.67 -1.49,-2.04 -1.08,-0.8 -2.3,0.25 -3.44,-0.22 -0.61,-0.22 -1.49,-0.19 -1.92,-0.68 -0.26,-0.81 0.29,-1.98 -0.47,-2.54 -0.73,-0.01 -0.2,1.36 -1.01,1.09 -0.81,0.09 -1.62,0.47 -2.39,0.03 -0.86,-0.16 -1.78,-0.32 -2.64,-0.24 0.79,4.57 0.98,9.31 1.89,13.89 0.57,2.24 1.79,4.67 4.24,5.25 1.23,0.43 2.79,0.61 3.34,2.01 0.1,0.2 0.69,1.12 0.14,0.83 -0.99,-1.07 -2.51,-1.66 -3.95,-1.54 0.31,0.88 1.46,1.48 2.07,2.26 -0.27,1.98 -0.09,3.97 0.06,5.94 0.06,0.82 -0.29,0.46 -0.44,-0.1 -0.61,-1.89 -0.03,-4.07 -0.75,-5.91 -1.64,-1.75 -3.86,-2.98 -5.02,-5.15 -2.29,-3.19 -2.27,-7.29 -2.72,-11.04 -0.61,-2.8 -1.41,-5.61 -3,-8.03 -1.22,-1.92 -3.35,-3.02 -4.56,-4.97 -0.75,-1.2 -1.91,-2.11 -3.3,-2.37 -1.53,-0.82 -2.67,-2.26 -3.83,-3.56 -0.74,-0.96 0.63,-2.32 -0.22,-3.18 -0.12,-0.09 -0.29,-0.09 -0.44,-0.08 z", + "department-40" : "m 31.57,77.88 c -0.39,0.94 -0.87,1.95 -1.99,2.15 -1.85,0.78 -3.93,1.14 -5.67,2.13 -0.38,2.37 -0.67,4.75 -1.09,7.1 -0.43,4.37 -1.06,8.69 -1.87,13 -0.88,5.48 -2.1,10.93 -2.84,16.43 -0.59,2.95 -1.56,5.85 -1.84,8.84 -0.89,3.98 -1.4,8.08 -2.44,12.05 -0.24,1.45 -0.93,2.83 -1.03,4.28 0.65,0.43 1.31,-1.11 1.9,-0.15 0.28,0.38 0.16,1.05 0.81,1.1 1.09,0 1.22,1.58 2.36,1.37 1.31,0.06 2.5,-1.03 3.77,-0.38 1.24,1e-4 2.23,-1.09 3.28,-1.64 0.9,-0.41 1.66,-1.89 2.8,-1.25 0.62,0.63 1.47,1.22 1.79,2.05 -0.32,0.66 -1.7,0.2 -1.77,1.04 0.41,0.56 1.3,0.28 1.66,-0.15 0.8,0.09 0.94,-1.16 1.75,-0.85 0.47,0.14 0.63,-1.01 0.92,-0.36 0.23,0.96 1.31,0.25 1.92,0.7 0.71,0.36 2.01,0.19 1.85,-0.86 0.18,-0.39 -0.33,-0.8 -0.23,-1.09 0.86,-0.34 1.84,0.49 2.67,-0.02 0.88,0.34 1.14,-1.12 2.06,-0.77 0.73,-0.01 1.79,0.82 2.36,0.09 0.11,-0.76 1.12,-0.76 1.72,-0.76 0.66,-0.1 0.92,-0.65 1.21,-1.13 0.67,-0.41 1.14,0.75 1.63,1.05 0.5,0.29 0.55,1.04 1.04,1.25 0.63,-0.18 0.32,-1.41 1.19,-1.17 0.87,-0.05 1.59,-0.89 2.38,-0.94 -0.08,0.42 -0.84,1.13 0.03,1.27 0.79,0.19 1.53,1.42 2.38,0.67 0.36,-0.11 0.75,-1.13 1.15,-0.77 0.24,1.1 1.01,0.63 1.62,0.03 1.14,-0.97 2.31,-2.06 3.69,-2.63 0.48,0.19 1.16,0.8 0.51,1.25 -0.3,0.35 -1.3,1.39 -0.4,1.58 1.02,-0.34 1.92,-1.21 3.1,-0.95 0.97,-0.07 1.5,1.24 2.48,0.8 0.63,-0.25 1,-0.89 1.57,-1.19 0.17,-0.56 0.54,-1 1.19,-0.96 0.48,0.01 0.67,-0.4 0.44,-0.76 0.4,-0.43 0.26,-1.2 -0.45,-1.1 -0.48,0.13 -0.86,-0.1 -0.75,-0.63 7.3e-4,-0.45 -0.32,-1.23 0.4,-1.09 0.46,-0.22 0.54,-0.86 1.08,-0.94 0.64,-0.68 -0.84,-1.23 -0.21,-1.87 0.72,-0.47 -0.18,-1.85 0.85,-2 0.64,-0.44 1.51,-1 1.67,-1.8 -0.08,-0.49 -1.08,-0.17 -0.8,-0.8 0.55,-0.71 -0.35,-1.58 -0.26,-2.36 -0.03,-0.39 -0.41,-1.66 0.39,-1.43 0.87,0.21 0.72,-1.09 0.79,-1.62 0.16,-0.73 -1.03,-1.24 -0.3,-1.87 0.34,-0.34 0.76,-0.91 0.06,-1.19 -0.47,-0.46 -1.46,-0.34 -1.75,-0.92 0.11,-0.54 0.55,-1 1.1,-1 0.74,-0.32 1.11,-1.39 1.87,-1.53 0.37,0.31 0.74,0.13 0.94,-0.22 0.42,-0.07 0.91,-0.2 1.26,-0.35 0.41,0.23 1.2,1.44 1.25,0.34 -0.12,-0.95 1.23,-0.35 1.51,-1.13 0.39,-0.49 1.19,-0.61 1.16,-1.4 0.1,-0.73 0.84,0.01 1.09,0.25 0.45,0.48 1.55,1.29 0.83,1.98 -0.45,0.3 -0.92,0.96 -0.22,1.29 0.88,0.53 1.79,1.67 2.91,1.36 1.22,-0.89 0.1,-2.5 -0.21,-3.58 0.38,-0.82 1.13,-1.77 0.47,-2.66 -0.11,-0.57 -0.52,-1.41 -0.18,-1.89 1.01,-0.45 0.75,-1.9 1.28,-2.73 0.42,-0.71 0.43,-1.6 1.16,-2.13 0.42,-0.34 1.23,-1.27 0.34,-1.58 -1.75,-0.48 -3.8,-0.05 -5.25,-1.37 -1.3,-0.73 -2.91,-0.25 -4.3,-0.71 -0.64,-0.29 -1.47,0.52 -1.96,-0.07 -0.2,-1.84 0.26,-4.03 -1.33,-5.4 -0.54,-0.41 -0.67,-1.07 -1.02,-1.6 -0.58,-0.46 -1.57,-0.39 -2.11,0.01 0.04,1.23 0.08,2.47 0.12,3.7 -1.12,0.37 -2.23,1.1 -3.39,0.42 -1.34,-0.57 -2.94,-0.12 -4.21,-0.78 -0.67,-1.55 0.09,-3.21 0.02,-4.78 -0.35,-0.38 -1.04,-0.36 -1.39,-0.84 -0.66,-0.31 -0.42,-1.05 -0.68,-1.56 -0.99,-0.41 -2.19,-0.3 -3.14,-0.93 -1.2,-0.36 -0.74,-2.07 -1.98,-2.38 -1.26,-0.85 -2.64,-1.44 -4.06,-1.97 -0.52,-0.2 0.38,-0.65 0.24,-1.06 -0.05,-0.84 0.36,-2.22 -0.84,-2.31 -0.68,-0.42 -1.38,-0.47 -1.66,0.35 -0.61,0.36 -1.44,-0.19 -2.13,-0.02 -0.86,0 -1.85,0.22 -2.25,1.03 -0.91,0.08 -1.61,0.97 -2.59,0.67 -1.4,-0.16 -2.67,-1.01 -4,-1.37 -1.54,0.39 -3.15,1.18 -4.71,1.06 1.38,-1.46 2.22,-3.61 1.75,-5.64 -0.77,-0.32 -1.91,0.4 -2.61,-0.38 -0.59,-0.24 -1.25,-1.06 -1.85,-0.91 z", + "department-64" : "m 73.03,139.7 c -0.43,0.28 -0.97,0.98 -1.41,0.33 -0.76,-0.23 -1.48,0.85 -2.2,0.25 -0.62,-0.16 -1.13,0.24 -1.28,0.8 -0.63,0.67 -1.48,1.57 -2.46,1.4 -0.45,-0.54 -1.14,-0.59 -1.67,-0.94 -1.18,-0.17 -2.09,0.76 -3.14,1.01 -0.57,-0.12 -0.86,-1.03 -0.19,-1.28 0.56,-0.29 1.02,-1.22 0.18,-1.48 -0.77,0.18 -1.43,0.8 -2.16,1.16 -0.93,0.71 -1.75,1.82 -2.91,2.13 -0.06,-0.63 -0.75,-0.76 -1.13,-0.29 -0.45,0.42 -1.23,1.02 -1.72,0.31 -0.5,-0.73 -1.48,-0.59 -1.98,-1.29 -0.58,-0.23 -1.06,0.6 -1.68,0.29 -0.65,0.08 -0.07,1.43 -0.9,1.07 -0.83,-0.65 -1.37,-1.68 -2.28,-2.29 -0.62,-0.33 -0.3,0.97 -1.01,0.91 -0.45,0.73 -1.33,0 -1.91,0.5 -0.41,0.25 -0.37,1.1 -1.05,0.77 -0.88,0.05 -2.08,-0.67 -2.81,0.04 -0.19,0.41 -0.41,0.89 -0.9,0.49 -0.4,0.07 -0.72,0.4 -1.18,0.05 -0.54,-0.36 -1.34,-0.08 -1.15,0.66 -0.02,0.61 0.01,1.6 -0.89,1.4 -0.93,0.17 -1.69,-0.66 -2.64,-0.31 -0.33,-0.01 -0.47,-0.5 -0.9,-0.35 -0.93,-0.08 -1.35,0.82 -2.17,1.02 -0.34,0.18 -0.22,0.93 -0.79,0.57 -0.55,-0.02 -1.2,-0.27 -1.05,-0.96 0.23,-0.69 2.27,-0.03 1.51,-1.11 -0.87,-0.37 -1.06,-1.92 -2.23,-1.53 -1.06,0.48 -1.79,1.42 -2.87,1.89 -0.87,0.51 -1.76,1.49 -2.84,0.9 -1.24,-0.28 -2.36,0.73 -3.63,0.45 -0.62,0.06 -0.85,-0.41 -1.13,-0.84 -0.49,-0.61 -1.84,-0.15 -1.75,-1.18 0.02,-0.81 -0.91,-0.83 -1.23,-0.21 -1.47,0.52 -2.49,1.86 -3.55,2.97 -0.97,1.13 -1.17,2.75 -2.41,3.68 -1.84,1.62 -4.34,1.97 -6.64,2.43 -1.23,0.17 -0.94,1.78 -0.32,2.43 0.45,0.36 1.27,0.18 1.4,0.94 0.38,0.62 -0.06,1.86 0.78,2.11 1.33,-0.5 3.29,-1.19 4.44,0.06 0.32,0.49 -0.31,1.01 0.05,1.54 0.12,0.85 0.65,1.77 1.66,1.57 1.22,0.02 1.42,-1.34 1.58,-2.25 1.41,-0.73 2.98,0.35 4.23,0.96 1.07,0.54 2.74,-0.52 3.43,0.76 0.71,1.24 0.36,2.81 0.34,4.19 -0.25,0.67 -0.69,1.29 -0.76,2.05 -0.22,0.58 -0.47,1.12 -0.51,1.76 -0.5,1.45 -2.06,2.2 -2.82,3.39 0.67,0.91 0.91,2.37 1.98,2.89 1.2,0.24 2.42,0.94 3.69,0.72 0.73,-1.42 -0.01,-3.38 1,-4.71 0.64,-0.44 1.51,-0.92 2.31,-0.81 0.32,0.44 -0.62,0.86 -0.72,1.31 -0.55,0.7 -0.52,1.75 0.36,2.18 0.7,0.79 1.82,1.21 2.8,0.7 1.08,0.42 2.01,1.33 3.21,1.45 0.66,0.23 0.76,1.47 1.53,1.24 0.79,-0.72 1.74,0.37 2.4,0.78 0.99,0.8 2.91,0.04 3.39,1.55 1.01,1.06 2.45,2.01 3.97,1.61 1.72,0.14 3.53,1 5.24,0.29 0.66,-0.26 1.7,-1.42 2.34,-0.53 0.7,1.05 1.31,2.45 0.57,3.63 0.07,0.95 1.08,1.93 2.09,1.55 1.11,-0.05 1.23,1.52 2.23,1.71 0.94,0.71 1.77,1.73 1.98,2.92 0.27,0.67 1.33,0.62 1.54,1.22 -0.26,0.48 0.08,1.18 0.69,0.85 1.27,-0.41 1.28,-2.18 2.43,-2.62 0.89,0.58 1.66,1.55 2.85,1.35 0.92,-0.11 2.05,0.48 2.68,-0.46 0.62,-0.47 1.14,-1.41 1.79,-1.68 0.41,0.83 0.97,-0.26 1.03,-0.75 0.06,-1.19 -0.11,-2.49 -0.57,-3.58 -0.28,-0.34 -0.24,-1.15 0.31,-1.22 0.41,-0.43 0.88,-0.74 1.43,-0.88 0.49,-0.83 -0.38,-1.78 -0.26,-2.69 0.04,-0.68 -0.34,-1.87 0.42,-2.23 1.07,0.08 1.01,-1.21 1.1,-1.93 0.22,-0.8 0.96,0.11 1.42,-0.05 0.48,-0.23 1.42,-0.85 0.73,-1.39 -0.6,-0.67 0.63,-1.54 0.11,-2.31 -0.18,-0.51 -0.05,-1.37 0.63,-1.33 0.52,-0.34 1.16,-0.62 1.54,-1.09 0.38,-1.03 0.73,-2.17 1.36,-3.05 0.45,-0.37 0.5,0.79 0.98,0.23 0.34,-0.42 1.24,-0.16 1.09,-0.97 0.12,-0.71 -0.28,-1.75 0.22,-2.32 0.41,0.28 0.99,0.23 0.89,-0.39 0.26,-0.98 1.72,-1.96 0.94,-3.03 -0.8,-0.51 -1.17,-1.71 -0.38,-2.4 0.24,-0.57 0.38,-1.52 1.25,-1.28 0.69,0.34 1.78,-0.38 1.41,-1.14 -1.54,-1.1 -1.23,-3.23 -0.81,-4.81 -0.21,-0.46 -0.64,-0.84 -0.54,-1.44 -0.53,-0.35 -0.56,0.91 -1.19,0.96 -0.19,0.52 -0.32,1.33 -1.06,1.33 -0.46,0.09 -0.63,-0.25 -0.28,-0.52 0.22,-0.68 -0.72,-1.23 -0.23,-1.94 0.16,-0.48 -0.24,-1.2 0.54,-1.26 0.41,-0.08 1.42,0.06 1.06,-0.67 -0.16,-0.64 -0.95,-0.99 -0.68,-1.74 0.4,-1.15 -0.32,-2.45 -1.45,-2.79 -0.99,0.23 -0.64,-0.8 -0.73,-1.47 0.03,-0.53 -0.1,-1.2 -0.79,-1.05 -0.96,-0.22 -2.46,0.42 -2.92,-0.79 l -0.14,-0.08 -0.11,0.03 z", + "department-47" : "m 91.9,62.45 c -0.89,0.38 -0.65,1.57 -0.7,2.3 -0.3,0.38 -0.92,0.37 -0.9,-0.24 0,-0.37 -0.26,-1.33 -0.71,-0.74 -0.4,0.66 -1.24,0.6 -1.84,0.79 -0.31,0.45 0.11,1.76 -0.83,1.4 -1.18,-0.21 -1,1.95 0.11,1.67 0.73,-0.2 0.2,1.4 1.08,0.99 0.5,-0.36 1.35,-0.04 1.57,0.48 -0.28,0.6 -0.58,1.28 -0.9,1.85 -0.39,-0.04 -1.29,0.03 -0.84,0.64 0.45,0.22 0.57,0.85 0.02,1.03 -0.9,0.43 -1.54,1.19 -2.44,1.61 -0.45,0.69 -0.44,1.61 -0.97,2.3 -0.91,-0.33 -2.17,-0.17 -2.44,0.92 0.23,0.91 -1.05,0.93 -1.21,1.7 -0.47,1.15 -0.39,2.71 0.66,3.5 0.47,0.76 -0.67,1.13 -0.49,1.91 -0.07,1 0.64,1.74 1.01,2.58 0.04,0.5 0.27,1.62 -0.57,1.27 -0.87,-0.16 -1.42,0.76 -2.3,0.63 -0.7,0.1 -2.1,0.73 -1.42,1.61 0.72,1.02 2.09,1.88 1.83,3.28 0.33,0.54 0.04,1.01 -0.44,1.31 -0.55,0.35 -0.51,1.26 -1.24,1.31 -0.64,0.37 -1.37,1.37 -2.12,0.72 -0.85,0.13 -0.88,1.16 -0.51,1.76 0.36,1.14 0.02,2.43 0.34,3.57 0.5,0.27 1.11,-0.27 1.68,-0.04 1.8,0.19 3.84,-0.04 5.27,1.23 1.47,0.86 3.39,0.22 4.87,0.95 0.41,1.11 -1.17,1.62 -1.42,2.59 -0.24,1 -0.95,1.78 -1.05,2.84 -0.18,0.85 -1.14,1.45 -0.73,2.42 0.1,0.77 0.74,1.62 1.58,1.16 0.6,-0.1 0.97,-0.82 1.48,-0.96 0.77,0.33 0.15,1.57 1,1.71 0.79,-0.24 0.32,-1.42 1.07,-1.78 0.38,-0.45 0.55,-1.02 1.24,-1.15 0.41,-0.2 1.36,-0.52 1.37,0.24 0.19,0.56 0.76,0.68 1.24,0.67 0.74,0.18 1.77,1.08 2.46,0.42 -0.04,-0.37 -0.05,-0.7 0.46,-0.72 0.82,-0.23 1.7,-0.45 2.48,-0.02 0.56,-0.2 0.77,-1.01 1.47,-0.96 0.42,-0.51 1.37,-0.04 1.55,-0.85 0.13,-1.11 1.23,-1.38 2.18,-1.32 0.53,0.04 1,-0.6 1.42,-0.05 1.32,0.49 2.28,-0.75 3.13,-1.5 0.66,0.51 1.5,0.84 1.79,1.68 0.42,0.59 1.19,0.85 1.32,1.63 0.32,0.54 1.03,0.2 0.96,-0.37 0.49,-0.82 1.24,-1.61 2.25,-1.62 0.7,-0.43 0.4,-1.45 0.79,-2.11 0.28,-0.77 0.97,-1.74 1.9,-1.45 0.6,-0.42 0.06,-1.35 0.03,-1.87 1.34,-0.62 2.52,0.92 3.84,0.88 0.44,-0.11 0.28,-0.62 0.62,-0.81 0.04,-0.55 0.41,-1.65 -0.28,-1.89 -0.8,0.4 -1.74,-0.69 -1,-1.33 0.8,-0.47 2.24,0.39 2.41,-0.93 0.33,-0.72 0.83,-1.52 0.46,-2.3 0.37,-0.51 0.41,-1.22 0.37,-1.81 0.55,0.15 0.89,-0.44 0.4,-0.8 -0.6,-0.41 -0.71,-1.59 -1.63,-1.26 -0.7,0.31 -0.72,-0.71 -1.37,-0.73 -0.34,-0.56 0.36,-1.25 0.67,-1.71 0.66,-0.92 -0.47,-2.13 0.51,-2.93 0.47,-0.59 1.22,-0.31 1.54,0.29 0.37,0.37 0.4,1.12 1.13,0.98 0.67,0.1 1.28,-0.15 1.83,-0.44 0.93,-0.17 1.97,0.27 2.81,-0.06 0.27,-0.61 0.08,-1.23 -0.24,-1.74 0.54,-0.87 0.45,-2.68 -0.86,-2.59 -0.34,-0.6 -0.8,-1.13 -0.54,-1.89 0.18,-0.57 -0.29,-0.92 -0.56,-1.28 0.42,-1.08 0.13,-2.27 -0.69,-3.08 -0.38,-0.38 -0.78,-1.63 0.17,-1.46 0.43,0.03 0.78,0.64 1.18,0.15 0.55,-0.9 1.91,-1 2.27,-2.03 0.29,-1.28 -1.4,-1.57 -2.18,-2.11 -0.92,-0.45 -1.31,-1.64 -2.27,-1.97 -0.69,0.45 -1.65,-0.25 -2.25,0.5 -0.61,0.68 -1.43,0.99 -2.18,1.41 -0.29,0.37 -0.35,1.08 -1.01,0.82 -1.13,0.1 -1.41,-1.19 -1.83,-1.96 0.93,-0.48 0.62,-1.61 1.18,-2.32 0.05,-0.62 -1.18,-0.47 -0.68,-1.24 0.18,-1.06 -1.87,-1.58 -1.83,-0.3 -0.35,0.44 -1.02,-0.39 -1.26,0.26 -1.45,0.45 -3.15,0.65 -4.62,0.24 -0.37,-0.54 -0.41,-1.87 -1.38,-1.67 -0.4,0.16 -0.11,0.95 -0.69,0.7 -0.7,-0.18 -1.79,-0.24 -1.87,0.74 -0.14,0.56 -0.81,1.22 -1.39,1.07 -0.38,-0.59 -1.13,-1 -1.75,-0.44 -0.72,0.51 -1.7,0.28 -2.31,1.05 -0.57,0.33 -1.27,0.64 -1.9,0.75 -0.61,-0.47 -1.4,-0.39 -2.02,-0.75 -0.42,0.1 -1.05,0.13 -0.99,-0.49 -0.06,-0.86 0.81,-1.86 -0.17,-2.49 -0.31,-0.45 0.41,-1.01 -0.06,-1.48 -0.61,-0.79 -1.11,-2.48 -2.39,-2.15 -0.77,0.3 -1.96,0.71 -2.4,-0.26 -0.08,-0.05 -0.18,-0.1 -0.28,-0.07 z", + "department-24" : "m 109.55,0.56 c -0.69,0.52 -0.52,1.57 -1.23,2.02 -0.05,0.59 -1.04,0.7 -0.7,1.41 -0.01,0.76 -1.2,0.88 -1.72,1.03 -0.03,-0.96 -0.69,-0.77 -1.01,-0.07 -0.24,0.29 -0.16,0.69 -0.51,0.83 0.14,0.57 0.74,1.05 0.54,1.74 -0.15,0.87 -0.71,1.67 -0.5,2.59 -0.23,0.73 -1.07,0.83 -1.65,1.13 -0.26,0.36 -0.46,0.71 -0.81,0.94 -0.22,0.73 -0.84,1.32 -0.8,2.13 -0.38,0.73 -1.25,-0.27 -1.84,0.15 -0.55,0.17 -0.69,0.8 -1.26,0.89 -0.27,0.52 -0.83,0.65 -1.24,1 -0.23,0.25 -0.17,1.18 -0.67,0.66 -0.21,-0.45 -1.1,-0.67 -0.87,0.05 0.1,0.34 0.9,0.84 0.18,1 -0.79,-0.1 -1.49,0.4 -1.65,1.18 -0.61,1.5 -1.31,3.23 -0.43,4.77 0.22,1.05 0.7,2.52 -0.15,3.39 -0.67,0.36 -1.82,-0.23 -2.02,0.83 -0.18,0.71 -0.62,1.31 -1.39,1.35 -0.79,0.36 -0.32,1.45 -1.06,1.91 -0.55,0.4 -1.09,1.74 -1.93,1.19 -0.56,-0.26 -0.99,-1.4 -1.7,-0.68 -0.52,0.57 -1.26,-0.49 -1.71,0.21 -0.3,0.51 -0.58,0.94 -1.23,1.03 -0.83,0.42 -0.59,1.6 -1.37,2.12 -0.92,0.6 1.28,0.76 0.42,1.36 -0.54,0.34 -1.61,0.56 -1.28,1.43 -0.03,0.31 -0.46,0.97 0.18,0.89 1.06,-0.22 2.4,-0.39 3.36,0.24 0.66,0.81 1.21,1.96 1.15,2.99 -0.32,1.33 -1.58,2.25 -1.48,3.7 -0.16,0.71 -0,1.79 -0.59,2.27 -0.79,0.03 -0.78,1.24 -0.88,1.82 0.01,0.95 1.07,1.61 1.13,2.42 -0.74,1.19 -1.19,2.7 -2.23,3.65 -0.67,0.34 0.47,0.7 0.8,0.63 0.64,-0.12 1.35,-0.11 1.62,0.61 0.14,1.03 1.64,1.3 2.2,0.48 0.56,-0.33 1.05,0.13 1.51,0.33 1.01,-0.54 2.28,0.08 3.36,0.02 0.53,-0.51 0.91,-1.21 1.62,-1.56 0.62,-0.25 0.42,-1.04 0.73,-1.42 1.24,0.04 2.68,0.63 3.31,1.74 -0.37,0.55 -0.91,1.21 -1.54,1.45 -0.52,-0.26 -0.89,0.25 -0.55,0.71 0.39,0.93 -0.04,2.17 0.97,2.8 0.92,1.16 2.64,2.15 2.56,3.82 -0.22,0.59 0.36,0.94 0.57,1.36 -0.02,0.62 -0.8,1.76 0.01,2.13 0.55,-0.15 0.9,0.45 1.48,0.33 0.58,0.29 1.23,0.61 1.87,0.19 0.96,-0.25 1.53,-1.33 2.6,-1.2 0.69,-0.13 1.57,-1.14 2.15,-0.25 0.53,1.06 1.45,-0.16 1.68,-0.82 0.01,-1.11 1.34,-0.6 2,-0.79 0.39,-0.32 1,-0.88 1.4,-0.23 0.53,0.37 0.44,1.11 0.8,1.53 1.42,0.12 2.98,0.12 4.32,-0.44 0.26,-0.46 0.6,-0.25 0.98,-0.09 0.41,-0.15 0.39,-1.03 1.01,-0.94 0.79,0.07 1.5,0.66 1.35,1.52 -0.05,0.67 1.19,0.12 0.84,0.77 -0.56,0.73 -0.39,1.75 -1.06,2.39 -0.28,0.47 0.02,1.02 0.47,1.11 0.06,0.88 1.67,1.41 1.7,0.21 0.29,-0.59 1.18,-0.45 1.6,-0.98 0.67,-0.44 1.27,-1.33 2.18,-1 0.52,0.09 1.08,-0.5 1.45,0.14 1.02,1.26 2.38,2.15 3.84,2.76 0.36,0.44 0.13,1.68 0.99,1.45 0.65,-0.44 -0.31,-1.28 0.42,-1.71 0.6,-0.9 1.78,-1.5 2.1,-2.5 0.12,-0.85 -0.67,-2.17 0.49,-2.5 1.21,-0.85 3.43,-0.34 4,-2.02 0.38,-0.27 0.84,-0.49 1,-0.94 0.56,0.17 1.32,-0.01 1.24,-0.75 -0.08,-0.47 0.23,-1.01 0.72,-0.86 0.88,-0.77 -0.2,-1.65 -0.62,-2.3 0.14,-0.32 -0.15,-0.6 -0.15,-0.85 0.63,-0.89 1.77,-1.08 2.76,-1.2 0.78,-0.51 -0.25,-1.93 0.59,-2.35 0.55,0.2 0.92,-0.48 1.44,-0.36 0.25,-0.49 0.28,-1.55 1.09,-1.4 0.49,-0.04 1.23,-0.68 0.57,-1.05 -0.43,-0.36 -1.13,-0.96 -0.99,-1.55 0.2,-0.58 1.27,-0.49 0.96,-1.23 -0.32,-1.11 -0.9,-2.1 -0.9,-3.3 0.01,-0.58 -0.38,-1.38 -0.1,-1.85 0.41,-0.2 1.72,-0.29 1.19,-1.01 -0.56,-0.78 -1.01,-1.64 -1.55,-2.4 -0.51,-0.17 0.05,-0.86 -0.33,-1.22 -0.38,-0.48 -0.12,-1.41 -0.83,-1.57 -0.16,-0.56 0.77,-0.2 1,-0.58 0.73,-0.33 0.36,-1.22 -0.33,-1.28 -0.76,-0.26 -1.64,-0.08 -2.32,-0.49 -1.04,-0.06 -2.18,0.14 -2.96,-0.68 -0.34,-0.31 -1.16,-0.68 -1.08,-1.17 0.72,-0.15 2.01,-1.03 1.26,-1.82 -0.62,-0.74 -1.75,-0.09 -2.39,-0.61 -0.27,-0.82 0.25,-1.65 1.09,-1.79 0.58,-0.2 1.5,-1.34 0.7,-1.74 -0.69,0.14 -1.48,-0.26 -1.68,-0.93 -0.71,-0.37 0.15,-1.25 0.23,-1.78 0.11,-0.58 -0.02,-1.16 -0.06,-1.74 1.19,0.25 2.03,-0.83 2.21,-1.88 0.56,-0.52 1.68,-0.63 1.61,-1.63 0.08,-0.93 -1.1,-1.13 -1.72,-0.71 -0.55,-0.39 -1.42,-1.26 -0.99,-1.98 0.45,-0.18 1.41,0.05 1.19,-0.79 -0.34,-0.76 -1.39,-1.07 -2.06,-0.64 -0.44,-0.41 -0.38,-1.38 -1.2,-1.42 -0.6,-0.2 -1.45,0.77 -1.74,-0.1 -0.13,-0.67 -0.71,-1.17 -1.4,-0.83 -0.75,0.52 -1.7,-0.49 -1.13,-1.19 0.4,-0.91 1.18,-1.56 1.81,-2.31 -0.65,-0.45 -1.55,-1.43 -2.44,-1.09 -0.2,0.39 -0.92,0.73 -1.27,0.49 -0.33,-0.68 -0.88,-1.15 -1.49,-1.51 -1.01,-0.88 -0.04,-2.73 -1.42,-3.3 -0.91,-0.33 -1.85,0.53 -2.71,-0.13 -1.03,-0.37 -1.97,0.66 -2.94,0.59 -0.57,-0.27 -0.67,-1.45 -1.27,-1.26 -0.57,0.95 -0.62,2.73 -2.02,2.84 -0.93,0.29 -0.39,-1.33 -1.28,-1.13 -0.95,0.56 -1.26,-0.79 -1.83,-1.25 -0.33,-0.59 0.53,-1.18 0.5,-1.82 0.17,-0.69 0.65,-1.72 -0.24,-2.09 -0.48,-0.76 -1.45,-1.82 -2.4,-1.19 -0.94,0.23 -2.19,0.52 -2.82,-0.45 -0.47,-0.61 -0.85,-0.72 -1.32,-0.02 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_73.js b/lib/mapael-maps/france/france_region_73.js new file mode 100644 index 000000000..0b14fe5c8 --- /dev/null +++ b/lib/mapael-maps/france/france_region_73.js @@ -0,0 +1,43 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Midi-Pyrenees for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_73 : { + width : 172.01219, + height : 163.17259, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = 14.83805; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 2971.1414; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-65" : "m 11.62,95.16 c -0.75,-0.04 -0.78,0.82 -1.23,1.14 -0.97,-0.08 -0.45,1.14 -0.44,1.67 -0.01,0.46 -0.14,1.47 0.65,1.16 0.74,-0.04 1.1,0.96 1.48,1.48 0.56,0.76 -0.56,1.91 0.42,2.43 0.23,0.41 0.47,0.83 0.82,1.16 -0.5,0.55 -1.88,0.11 -2.01,1.16 -0.34,0.7 -0.26,1.49 0.37,1.97 -0.27,0.26 -0.45,0.96 0.17,0.67 0.7,-0.66 0.89,-2.08 2.06,-2.14 0.39,0.31 0.13,1.09 0.64,1.42 -0.23,1.04 -0.58,2.2 -0.23,3.29 0.22,0.48 0.29,1.09 0.82,1.43 0.64,0.79 -0.44,1.9 -1.34,1.59 -1.06,-0.18 -1,1.1 -1.54,1.64 -0.39,0.61 0.01,1.27 0.62,1.45 1.02,0.8 -0.13,2.07 -0.53,2.92 -0.29,0.44 -0.25,1.43 -1.02,1.18 -0.74,0.32 -0.21,1.48 -0.38,2.09 0.36,1.02 -0.96,0.55 -1.31,1.26 -0.43,0.25 -0.47,-0.81 -0.9,-0.31 -0.45,0.46 -0.34,1.16 -0.81,1.59 -0.23,0.72 -0.32,1.57 -1.15,1.85 -0.42,0.26 -0.55,0.81 -1.1,0.79 -0.83,0.51 0.26,1.41 -0.32,2.07 -0.5,0.64 0.02,1.22 0.36,1.69 -0.46,0.39 -1.01,1.04 -1.63,1.06 -0.34,-0.41 -1.21,-0.45 -1.07,0.29 0.27,0.86 -0.37,1.5 -1.13,1.75 -0.96,1.06 -2.5e-4,2.63 0.02,3.83 0.23,0.61 -0.15,1.23 -0.77,1.27 -0.76,0.34 -1.5,1.22 -0.9,2.03 0.42,0.93 0.4,1.97 0.47,2.93 0.78,1.12 1.98,1.96 3.3,2.3 0.7,0.53 1.13,1.39 1.98,1.68 0.7,0.81 1.63,-0.82 2.22,-0.46 -0.65,1.04 0.24,1.97 0.86,2.73 0.69,0.72 0.69,2.41 1.98,2.26 0.85,0.13 0.91,1.08 1.3,1.65 0.83,0.4 1.9,0.85 2.82,0.56 0.3,-0.31 0.44,-0.85 1.03,-0.67 0.88,0.13 1.64,-0.21 2.33,-0.69 0.91,-0.43 1.94,-0.04 2.83,-0.61 0.67,-0.17 1.19,-0.68 1.76,-0.96 1.28,0.15 2.3,1.15 3.64,1.16 0.73,0.7 0.55,2.54 1.91,2.61 1.02,0.01 1.3,-1.1 1.46,-1.89 0.6,-0.32 1.41,-0.98 2.12,-0.7 0.84,0.49 1.05,1.77 2.19,1.75 0.84,0.09 2.16,0.15 2.55,-0.75 -0.22,-0.39 -0.05,-0.93 -0.59,-1.16 -0.37,-0.27 -1.06,-0.61 -1.09,-1.03 0.66,-0.32 0.12,-1.33 0.19,-1.89 -0.01,-2.01 -0.01,-4.12 0.34,-6.07 0.44,-0.41 0.29,-1.95 1.27,-1.32 0.44,0.45 1.09,0.47 1.62,0.79 0.8,0.27 1.71,-0.05 1.79,-1 0.56,-1.09 0.6,-2.43 1.26,-3.45 0.71,-0.62 1.61,-1.19 1.85,-2.16 -0.62,-0.19 -1.78,-0.85 -1.36,-1.65 0.93,-0.37 -0.02,-1.27 -0.04,-1.85 0.04,-0.66 -0.73,-1.69 -0.95,-0.52 -0.31,0.57 -1.19,0.13 -1.53,0.76 -0.29,0.41 -0.92,1.2 -1.36,0.5 -0.44,-0.32 0.29,-0.67 0.13,-1.11 -0.21,-0.73 0.34,-1.59 1.1,-1.36 0.39,-0.51 -0.1,-1.28 -0.04,-1.91 -0.23,-0.56 -0.96,-0.61 -1.33,-1.06 -0.53,-0.29 -1.2,-0.44 -1.31,-1.13 -0.43,-0.61 -1.41,-0.28 -1.89,-0.54 0.2,-0.57 -0.22,-0.93 -0.64,-1.13 0.34,-1.21 1.63,-1.98 2.41,-2.91 0.48,-0.43 1.26,-1.16 0.51,-1.74 0.32,-1.25 1.87,-0.48 2.72,-1.03 0.7,-0.5 -0.08,-1.18 -0.58,-1.4 0.29,-0.95 1.24,-1.74 1.98,-2.43 0.48,-0.23 0.84,-0.6 1.01,-1.08 0.49,-0.23 0.74,-0.88 0.03,-1.03 -0.82,-0.55 -1.74,-0.83 -2.63,-1.12 -0.71,-0.31 -1.5,-0.48 -2.27,-0.54 -0.45,0.09 -0.87,0.72 -1.26,0.13 -0.64,-0.43 -1.6,-0.79 -2.06,0.03 -0.68,0.28 -1.58,-0.08 -2.08,-0.53 0.09,-0.53 -0.15,-1.35 -0.85,-1.02 -0.63,0.04 -1.25,0.32 -1.76,0.57 -0.88,-0.06 0.01,-1.64 -0.97,-1.63 -0.67,0.14 -0.85,-0.5 -0.77,-1.03 -0.34,-0.58 -1.15,0.2 -1.62,0.29 -0.91,0.56 -2.2,1.11 -3.15,0.47 -0.49,0.15 -0.89,0.04 -0.83,-0.57 0.1,-0.57 -0.12,-1.51 -0.87,-1.23 -0.62,-0.51 -1.43,-1.66 -0.79,-2.43 0.39,-0.25 1.25,-0.47 0.81,-1.1 -0.64,-0.71 -1.54,-1.34 -1.44,-2.43 -0.07,-0.64 -0.4,-2.03 -1.31,-1.5 -0.57,0.36 -0.77,-0.75 -1.42,-0.49 -1.16,0.31 -1.06,-1.77 -2.27,-1.6 -0.39,-0.41 -0.48,-1.12 -0.9,-1.54 -0.24,-0.9 -0.08,-2.52 -1.39,-2.61 -0.33,-0.05 -0.67,-0.09 -1.01,-0.05 z", + "department-32" : "m 41.02,64.02 c -0.66,0.38 -0.9,1.38 -1.81,1.44 -0.66,0.25 -1.57,-0.53 -1.96,0.25 -0.7,-0.43 -1.92,-0.33 -2.43,0.36 -0.21,0.52 -0.34,1.16 -1.03,1.23 -0.91,0.21 -1.63,0.79 -2.35,1.32 -0.83,-0.38 -2.04,-0.39 -2.66,0.36 -0.23,0.85 -1.28,0.77 -1.88,0.34 -0.62,-0.46 -1.67,-0.33 -2.09,-1 -0.1,-1.02 -1.36,-0.51 -1.76,0.01 -0.79,0.61 -1.38,1.46 -1.53,2.41 -0.42,0.46 -1.36,-0.07 -1.09,-0.71 0.14,-0.6 -0.56,-0.89 -0.86,-0.35 -0.58,0.68 -1.79,0.24 -2.2,1.2 -0.71,0.84 -0.32,1.89 0.03,2.76 0.38,0.82 -0.05,2.55 -1.23,2.1 -1.15,-0.32 -2.02,-1.36 -2.98,-1.91 0.27,-0.63 1.49,-1.03 0.89,-1.87 -0.45,-0.43 -0.93,-1.46 -1.65,-1.26 -0.14,0.51 -0.41,0.97 -0.95,1.18 -0.43,0.46 -0.79,0.99 -1.48,0.98 -0.3,0.31 -0.31,1.37 -0.98,0.82 -0.61,-0.81 -1.83,-0.36 -2.43,0.16 -0.97,-0.59 -1.52,0.94 -2.27,1.29 -0.39,0.15 -1.09,0.29 -0.9,0.89 0.67,0.53 1.93,0.42 2.07,1.51 0.48,0.79 -0.71,0.27 -0.71,0.91 0.16,0.8 0.81,1.49 0.48,2.37 -0.03,0.46 -0.03,1.16 -0.71,0.92 -0.87,-0.03 -0.37,0.99 -0.34,1.46 -0.03,0.63 0.41,1.24 0.36,1.82 -0.58,0.7 1.18,0.77 0.52,1.54 -0.46,0.81 -1.38,1.24 -2.07,1.78 -0.13,0.62 0.23,1.35 -0.42,1.8 -0.17,0.58 0.95,0.84 0.37,1.52 -0.19,0.47 -0.95,0.58 -0.87,1.23 -0.15,0.49 -0.89,-0.09 -0.84,0.57 -0.18,0.92 0.83,1.14 1.52,1.11 0.16,0.52 -0.3,1.64 0.41,1.84 0.58,-0.1 1.15,-0.76 1.61,-0.07 0.62,0.19 1.12,-1.05 1.49,-0.18 0.82,0.71 2.1,0.41 3.08,0.31 0.28,-0.41 0.82,-0.23 1.16,-0.54 0.17,-0.42 0.14,-1 0.79,-0.91 0.73,-0.18 1.45,0.13 2.13,0.3 0.64,0.91 0.42,2.24 1.16,3.11 0.08,0.54 0.53,0.76 0.97,0.9 0.57,0.5 0.79,1.75 1.8,1.41 0.51,-0.26 0.57,0.19 0.73,0.53 0.5,0.28 1.15,-0.6 1.42,0.22 0.84,0.82 0.16,2.21 1.03,2.95 0.57,0.22 1.11,0.97 1.07,1.54 -0.43,0.43 -1.51,0.68 -1.12,1.5 0.22,0.74 0.83,1.28 1.58,1.29 0.36,0.51 0.08,1.24 0.33,1.74 0.42,0.02 0.81,-0.1 1.14,0.23 1.51,0.37 2.72,-1.2 4.17,-1.05 0.08,0.49 0.3,1.17 0.96,0.95 0.76,-0.2 0.34,1.03 0.58,1.39 0.33,0.68 1.45,-0.15 2.1,-0.25 0.6,-0.19 1.2,0.35 0.91,0.97 0.16,0.78 1.52,1.02 2.02,0.44 0.09,-0.81 1.06,-0.14 1.5,-0.03 0.51,0.35 1.17,0.59 1.62,0.04 1.33,0.02 2.5,0.78 3.77,1.02 1.29,0.51 3.1,0.37 3.79,-1.03 0.72,-0.89 1.08,-2.22 1.99,-2.89 0.88,0.38 1.45,-0.54 1.36,-1.32 0.32,-0.31 0.24,-0.83 0.32,-1.19 0.89,-0.37 1.54,0.67 2.35,0.68 0.45,-0.18 0.42,-1.09 1.05,-0.66 0.88,0.25 1.78,-0.26 2.62,0.27 0.78,0.09 1.58,0.26 1.98,1.03 0.34,0.64 1.12,0.48 1.63,0.74 0.14,0.47 0.1,1.41 0.88,1.23 1.02,-0.44 0.63,-1.86 0.49,-2.7 0.1,-0.82 1.53,-0.17 1.33,-1.09 -0.62,-0.68 0.45,-1.29 0.53,-1.98 0.44,-0.69 -0.8,-0.96 -0.7,-1.52 0.49,-0.76 1.55,-0.92 1.77,-1.91 0.24,-0.52 -0.73,-1.11 0.06,-1.42 0.58,-0.4 -0.24,-0.59 -0.33,-0.92 0.5,-0.09 1.15,-0.86 1.68,-0.28 0.31,0.59 1.25,0.43 1.08,-0.3 -0.25,-0.73 0.85,-0.37 1.22,-0.57 0.6,0.02 1.03,-0.47 1.02,-1 0.67,-0.11 2.04,0.6 1.75,-0.6 -0.03,-0.69 -0.35,-1.71 -1.11,-1.84 -0.53,0.62 -1.27,-0.02 -1.42,-0.65 -0.21,-0.48 0.24,-1.37 -0.58,-1.39 -0.63,0.19 -1.77,0.3 -1.97,-0.47 0.07,-0.32 0.74,-0.98 0.05,-1.03 -0.75,0.34 -1.28,-0.5 -1.81,-0.77 -0.26,-0.71 0.9,-1.33 0.27,-1.91 -0.53,-0.51 -1.68,-0.17 -1.78,-1.12 -0.42,-0.71 -1.31,-1.08 -1.56,-1.91 -0.92,-0.69 -1.09,-1.96 -1.92,-2.7 -0.46,-0.25 -0.86,0.04 -1.15,0.31 -0.45,0.23 -1.11,0.1 -0.88,-0.53 -0.03,-0.91 0.93,-1.53 0.94,-2.39 -0.2,-0.6 -1.35,-0.31 -1.07,-1.1 0.2,-0.38 0.66,-0.81 0.14,-1.19 -0.66,-0.52 -1.04,-1.6 -0.22,-2.14 0.06,-0.7 -0.87,-1.1 -1.35,-1.48 -0.48,-0.24 -0.81,0.46 -1.29,0.03 -0.57,-0.05 -0.77,-0.68 -1.24,-0.79 -0.61,-0.03 -1.65,0.99 -1.99,0.1 -0.39,-0.54 -0.41,-1.33 0.36,-1.53 0.91,-0.76 1.37,-1.91 2.18,-2.78 0.32,-0.31 0.29,-0.8 -0.06,-0.97 0.17,-0.44 -0.47,-1.15 0.16,-1.31 0.58,0.06 1.57,-0.17 1.42,-0.94 -0.34,-0.28 -0.88,-0.19 -1.2,-0.58 -1.11,-0.05 -1.92,1.22 -2.93,1.42 -0.67,-0.59 0.04,-1.65 -0.79,-2.14 -1.21,0.1 -2.59,0.89 -2.97,2.09 -0.31,0.39 -1.02,0.65 -1.19,-0.02 -0.7,-1.17 -1.64,-2.33 -2.83,-3.02 -0.09,-0.04 -0.18,-0.04 -0.27,-0.03 z", + "department-31" : "m 84.69,74.56 c -0.61,0.38 -0.86,1.18 -1.54,1.55 -0.27,0.26 -0.85,0.71 -0.84,0.03 -0.02,-0.67 -0.83,-0.52 -0.95,0.03 -0.41,0.66 -0.68,1.87 -1.74,1.55 -0.78,0.05 -1.12,-0.92 -1.94,-0.86 -0.52,-0.21 -1.41,-0.43 -1.42,0.42 -0.34,0.54 0.59,1.25 0.01,1.62 -0.63,0.2 -1.26,-0.1 -1.81,-0.27 -0.65,0.14 -0.85,1.19 -0.06,1.24 0.67,0.17 1.92,-0.38 1.99,0.7 0.42,0.86 -0.85,1.04 -1.41,1.27 -0.6,0.28 -1.13,0.69 -1.85,0.7 -0.61,0.11 -0.68,0.83 -1.33,0.95 -0.71,0.3 -1.49,0.91 -2.27,0.9 -0.53,-0.49 0.68,-1.11 -0.1,-1.42 -0.61,-0.06 -1.41,-0.08 -1.61,-0.79 -0.46,-0.61 -1.12,-1.57 -1.79,-0.58 -0.51,0.12 -0.58,0.97 -1.07,0.93 -0.47,-0.28 -1.05,-1.48 -1.63,-0.76 -0.32,0.69 -1.07,0.8 -1.7,0.54 -1.01,-0.07 -2,0.29 -2.78,0.88 -0.43,-0.11 -1.15,-0.03 -0.88,0.6 0.65,1.68 2.41,2.66 3.15,4.25 0.6,0.23 1.46,0.36 1.82,0.93 -0.29,0.65 -0.89,1.6 0.03,2.05 0.39,0.51 1.47,0.01 1.55,0.73 -0.17,0.33 -0.76,0.82 -0.13,1.02 0.69,0.47 1.83,-0.52 2.26,0.38 -0.03,0.68 -0.05,1.82 0.89,1.88 0.44,0.08 0.43,-0.67 0.8,-0.17 0.64,0.62 1.1,1.77 0.78,2.6 -0.69,0.21 -1.85,-0.16 -1.97,0.86 -0.63,0.41 -1.79,0.09 -2,1.02 -0.28,0.5 -1.06,0.84 -1.15,0.06 -0.38,-0.54 -1.65,0.12 -0.9,0.65 0.42,0.37 -0.05,0.72 -0.46,0.61 -0.69,0.46 1.13,1.08 0.27,1.29 -0.52,0.39 -0.58,1.18 -1.31,1.29 -1.02,0.37 -0.54,1.02 0.14,1.45 0.29,0.36 -0.38,0.79 -0.25,1.23 -0.29,0.45 -0.66,0.95 -0.28,1.47 0.04,0.8 -0.94,0.55 -1.39,0.8 -0.18,0.81 0.71,1.79 -0.02,2.56 -0.35,0.89 -1.64,0.43 -1.55,-0.42 0.01,-0.83 -0.97,-0.04 -1.24,-0.64 -0.56,-0.77 -1.28,-1.42 -2.27,-1.45 -0.64,-0.28 -1.34,-0.41 -1.97,-0.1 -0.52,-0.22 -1.28,-0.34 -1.48,0.39 -0.17,0.61 -0.91,-0.28 -1.26,-0.36 -0.55,-0.59 -1.36,-0.58 -1.26,0.34 -0.44,0.56 -0.19,1.45 -0.84,1.92 -0.35,0.64 -1.13,-0.57 -1.32,0.4 -0.92,1.23 -1.43,3.11 -2.97,3.7 -0.34,0.07 -1.35,-0.09 -0.95,0.48 0.4,0.16 0.82,0.73 0.19,0.91 -0.46,0.39 -0.47,1.17 -1.18,1.28 -0.56,0.26 -1.01,0.88 -1.24,1.35 -0.64,0.1 -1.11,1.21 -0.21,1.27 0.43,0.73 -0.2,1.61 -1.02,1.57 -0.41,-0.13 -0.64,0.33 -1.07,0.08 -0.67,-0.08 -0.84,0.65 -0.27,0.96 0.02,0.64 -0.92,1.08 -1.23,1.61 -0.64,0.84 -1.75,1.49 -2.09,2.45 0.43,0.33 0.74,0.81 0.88,1.24 0.82,-0.18 1.56,0.22 1.93,0.97 0.34,0.46 1.23,0.07 1.24,0.77 0.27,0.53 1.24,0.53 1.34,1.08 -0.61,0.6 0.36,1.66 0,2.28 -0.37,-0.19 -1.09,-0.54 -1.15,0.16 -0.06,0.63 -0.46,1.44 -0.11,2 0.81,-0.23 1.24,-1.38 2.23,-1.29 0.5,-0.1 0.12,-1.17 0.8,-0.77 0.74,0.53 0.56,1.6 1.09,2.31 0.3,0.56 -0.33,0.63 -0.47,1.02 -0.05,0.9 1.66,1.01 1.15,2.02 -0.5,1.05 -2.01,1.39 -2.05,2.7 -0.46,1.17 -0.64,2.62 -1.57,3.52 -1.03,0.13 -2.17,-0.34 -2.97,-0.96 -0.87,-0.04 -0.62,1 -0.96,1.49 -0.24,1.79 -0.25,3.65 -0.43,5.43 0.45,0.75 0.17,1.69 0.07,2.45 0.41,0.66 1.65,0.87 1.32,1.89 0.24,0.6 1.18,0.92 1.75,0.68 0.8,-0.95 2.17,0.09 3.18,-0.1 0.4,-0.16 0.72,-0.69 1.18,-0.31 0.95,0.32 2.22,0.78 3.14,0.22 0.51,-1.46 -0.21,-3 -1.22,-4.05 0.31,-0.5 0.76,-1.4 0.05,-1.71 1.31,-0.98 0.18,-2.87 1.1,-4 0.78,-0.53 1.98,-1.44 2.81,-0.49 0.9,1.19 2.42,0.6 3.66,0.8 0.31,0.37 1.05,0.86 1.24,0.1 -0.02,-0.73 -0.27,-1.67 -0.93,-2.02 -0.31,-0.68 0.34,-1.44 -0.14,-2.12 -0.36,-0.6 -0.57,-1.22 0.2,-1.5 0.52,-0.53 1.99,-0.08 1.94,-1.08 -0.02,-0.43 -0.78,-1.44 0.1,-1.33 0.96,0.21 1.58,-0.68 2.52,-0.54 1.55,-0.09 2.2,-1.71 2.88,-2.84 0.08,-0.57 -0.64,-0.72 -0.97,-0.88 -0.21,-1.06 -0.43,-2.33 -0.3,-3.36 0.61,0.12 1,-0.64 0.49,-1.02 -0.28,-0.57 0.63,-0.89 0.32,-1.5 0.73,-0.3 1.24,1.27 1.84,0.44 0.62,-0.71 0.25,-1.69 0.54,-2.45 0.27,-0.37 0.66,0.53 1.1,0.37 0.81,-0.15 1.61,-0.6 2.08,-1.22 0.83,0.2 1.25,1.94 2.27,1.15 0.63,-0.25 0.98,0.78 1.41,1.09 0.77,0.59 0.33,2.03 1.46,2.23 0.94,0.24 1.23,-0.68 1.39,-1.35 0.75,-0.17 1.68,-1.16 0.84,-1.81 -0.7,-0.9 -2.11,-0.65 -2.95,-1.14 0.02,-0.79 0.35,-1.68 0.67,-2.33 0.56,0 1.32,0.32 1.63,-0.31 0.84,-0.29 2.2,0.49 2.7,-0.47 0.44,-0.55 1.17,-0.96 1.84,-0.82 0.94,-0.46 0.53,-2.11 -0.58,-1.94 -0.52,-0.11 -1.21,-0.36 -1.58,-0.58 0.29,-0.87 -0.97,-0.59 -1.25,-1.01 0.44,-0.37 0.1,-0.86 0.05,-1.28 0.63,-0.58 1.1,-1.36 1.74,-1.91 0.67,-0.16 1.88,-0.09 1.83,0.85 0.54,1.35 2.36,1.97 2.48,3.49 -0.14,0.65 -0.52,1.64 0.34,1.98 0.6,0.4 1.5,0.69 1.94,-0.09 0.25,-0.42 0.64,-0.44 1.05,-0.35 0.28,-0.39 -0.55,-0.75 -0.08,-1.19 0.27,-0.62 -0.63,-1 -0.3,-1.68 0.02,-0.79 0.01,-1.78 1,-1.41 0.23,0.35 0.2,1.15 0.88,0.94 0.67,-0.32 0.98,0.35 1.27,0.83 0.58,0.39 0.3,-1.04 0.97,-0.66 0.28,0.4 0.9,0.27 1.21,0.7 0.52,0.25 1.8,0.29 1.36,1.19 -0.05,0.68 0.88,0.25 0.72,-0.26 -0.09,-0.76 0.33,-1.8 1.07,-2.02 0.91,0.45 1.94,-0.76 1.36,-1.57 0.23,-0.55 1.51,-0.62 0.97,-1.42 -0.13,-0.4 -0.27,-1.33 0.37,-1.07 0.44,0 0.47,-0.78 0.97,-0.41 0.36,0.3 0.83,0.48 1.16,0.15 0.43,-0.06 1.6,0.35 1.46,-0.44 -0.62,-0.62 -0.27,-1.73 -0.31,-2.53 0.03,-0.41 0.75,-0.38 0.56,-0.92 -0.19,-0.66 0.48,-1.1 1.04,-1.18 0.29,-0.44 0.08,-1.38 0.81,-1.42 0.87,0.22 1.07,1.23 1.71,1.78 0.31,0.39 -0.35,1.54 0.46,1.27 0.42,-0.58 0.33,-1.74 1.31,-1.75 1.04,-0.34 1.82,0.46 2.71,0.72 0.64,-0.1 1.09,-0.72 1.76,-0.74 0.27,-0.88 -1.07,-1.42 -0.8,-2.33 -0.14,-1.15 1.41,-1.27 1.44,-2.36 0.08,-0.49 -0.43,-0.42 -0.7,-0.42 -0.39,-0.64 -0.92,0.2 -0.76,0.67 0.06,1.07 -1.48,0.85 -1.96,0.25 -0.66,-0.32 -1.41,-0.33 -1.98,-0.84 -1.33,-0.21 -2.16,-1.41 -2.67,-2.55 -0.27,-0.57 -1.2,-0.63 -0.98,-1.42 0.08,-1.07 -1.11,-1.4 -1.95,-1.37 -1,-0.05 -1.47,-0.96 -2.25,-1.38 -1.01,-0.23 -1.68,-1.12 -2.69,-1.34 -0.59,-0.33 -0.63,-1.06 -0.16,-1.51 0.25,-0.68 1.37,-0.62 1.4,-1.36 -0.13,-0.82 -0.53,-1.82 -1.55,-1.7 -0.62,-0.05 -1.64,-0.1 -1.29,-1.03 0.65,0.25 1.84,-0.2 1.66,-1 -0.61,-0.85 -2.3,-1.14 -2.23,-2.4 0.48,-0.87 -0.71,-1.47 -0.37,-2.35 -0.01,-0.63 -0.9,-0.38 -1.23,-0.77 -0.8,-0.38 -1.62,-0.77 -1.2,-1.78 0.26,-0.91 -0.85,-0.92 -1.12,-1.59 -0.6,-0.69 -0.29,-1.67 -0.74,-2.38 -0.29,-0.55 0.27,-1.22 -0.09,-1.67 -0.08,-0.05 -0.17,-0.08 -0.27,-0.06 z", + "department-09" : "m 75.67,114.53 c -0.95,-0.02 -1.1,1.02 -1.72,1.51 -0.48,0.59 -0.48,2.03 0.59,1.82 0.47,-0.04 0.54,0.33 0.53,0.67 0.42,0.77 1.5,0.31 2.03,0.76 0.45,0.68 0.46,1.71 -0.41,2.06 -0.68,-0.14 -1.59,0.24 -1.7,0.98 -0.96,0.75 -2.43,-0.1 -3.41,0.75 -0.38,0.14 -0.91,-0.46 -1.1,0.24 -0.3,0.57 -0.79,1.78 0.21,1.93 0.95,0.1 1.97,0.25 2.49,1.15 0.2,0.24 0.83,0.95 0.14,0.9 -0.4,0.34 -0.66,0.83 -1.18,0.98 -0.21,0.42 -0.08,1.1 -0.74,1.15 -0.55,0.15 -1.44,0.39 -1.58,-0.44 -0.35,-0.81 -0.45,-1.74 -1.26,-2.27 -0.31,-0.4 -0.78,-0.54 -1.13,-0.21 -0.92,0.06 -1.23,-1.36 -2.09,-1.25 -0.26,0.58 -0.91,0.59 -1.33,1 -0.54,0.19 -1.55,-0.42 -1.64,0.49 -0.17,0.64 -0.28,1.63 -0.92,1.94 -0.56,-0.04 -1.18,-1.22 -1.45,-0.25 -0.38,0.48 -0.25,1.03 0.08,1.46 0.04,0.64 -1.09,0.29 -0.85,1.09 -0.11,0.52 0.21,0.91 0.44,1.28 0.18,0.49 -0.75,0.78 -0.14,1.26 0.57,0.18 1.14,0.83 1.28,1.28 -1.03,2e-4 -0.94,1.38 -1.66,1.87 -0.71,1.13 -2.2,0.63 -3.16,1.32 -0.45,0.13 -1.41,0.04 -1.11,0.8 0.4,0.55 0.08,1.27 -0.58,1.33 -0.59,0.16 -2.01,0.2 -1.7,1.15 0.4,0.66 0.72,1.41 0.32,2.14 0.02,0.62 0.8,0.92 0.81,1.61 0.11,0.88 0.36,1.85 1.34,2.13 1.11,0.43 1.88,1.47 2.97,1.87 0.59,0.12 0.56,-0.86 1.19,-0.57 0.85,0.29 1.55,1.04 2.53,0.89 1.04,0.23 2.08,0.53 3.17,0.38 0.83,0.45 1.91,1.01 2.24,1.97 0.13,1.03 0.6,2.47 1.75,2.69 1.24,-0.24 2.46,-1.06 3.73,-0.5 1.43,0.43 3.07,-0.33 4.41,0.31 0.36,0.47 0.11,1.4 0.93,1.47 1.1,0.25 1.04,1.7 1.76,2.39 0.63,1.21 0.45,3.2 2,3.68 0.89,0.15 1.25,-0.81 1.01,-1.53 -0.12,-0.53 -0.03,-1.59 0.66,-1.63 1.21,0.77 2.42,-0.61 3.61,-0.23 0.67,0.54 1.03,1.52 2.01,1.63 1.83,0.54 4.04,-0.05 5.66,1.01 0.17,0.52 -0.65,1.34 0.19,1.64 0.97,0.38 2.07,0.91 3.05,0.25 0.61,-0.44 1.58,0.64 1.93,-0.14 0.2,-0.45 1.06,-0.56 0.92,-1.26 0.02,-0.47 0.47,-0.9 0.88,-0.46 0.59,0.26 1.35,0.28 1.7,-0.32 0.4,-0.29 1.25,0.01 1.24,-0.71 0.29,-0.81 0.65,-1.69 1.2,-2.32 0.63,0.47 1.63,0.61 2.14,-0.12 1.2,-0.21 2.53,-0.04 3.66,-0.58 0.45,0.47 1.39,0.77 1.75,0.02 0.42,-0.7 0.09,-1.86 -0.8,-1.93 -0.92,-0.8 -1.87,-1.65 -2.81,-2.45 -0.12,-0.43 -0.2,-1 -0.81,-0.96 -1.01,-0.15 -1.69,0.9 -2.65,1.09 -0.96,0.21 -2.12,0.22 -2.98,-0.25 -0.43,-0.48 -0.9,-0.89 -1.48,-1.13 -0.46,-0.31 -0.37,-0.9 0.16,-1 0.18,-0.76 -0.67,-1.44 -1.02,-2.06 -0.35,-0.73 -1.68,-0.49 -1.75,-1.32 0.32,-0.53 0.63,-1.11 0.75,-1.71 1.19,-0.56 2.66,-0.28 3.87,-0.89 0.5,-0.16 1.21,-0.48 0.99,-1.11 0.05,-1.12 0.72,-2.85 -0.68,-3.41 -0.47,-0.32 -1.85,-0.23 -1.42,-1.1 0.14,-0.53 0.72,-0.64 1.12,-0.93 0.52,-0.03 1.22,-0.12 1.1,-0.84 0.09,-0.77 0.21,-1.71 -0.5,-2.19 0.03,-0.67 0.86,-1.34 0.25,-2.04 -0.34,-0.74 -1.69,-0.22 -1.61,-1.24 -0.25,-0.6 0.28,-0.58 0.63,-0.77 0.07,-0.56 -0.39,-1.1 -0.29,-1.71 -0.13,-0.6 0.25,-1.82 -0.69,-1.81 -0.39,-0.37 -1.08,-1.07 -1.5,-0.31 -0.1,0.35 -0.44,0.78 -0.67,0.24 -0.41,-0.43 -0.16,-1.37 -0.98,-1.35 -1.35,-0.16 -2.73,-0.43 -3.97,-0.96 -1.05,-0.65 -1.8,-1.94 -3.12,-2 -0.61,-0.74 0.84,-1.5 0.3,-2.35 -0.41,-0.75 -0.92,-1.45 -0.95,-2.34 -0.21,-0.6 -0.97,-1.87 -1.45,-0.81 -0.79,0.57 -0.11,1.86 -1.03,2.26 -0.82,0.2 0.02,-1.19 -0.78,-1.26 -0.84,-0.02 -1.4,-0.97 -2.26,-0.72 -0.3,0.15 -0.23,1.05 -0.67,0.61 -0.35,-0.49 -0.76,-1.38 -1.52,-0.94 -0.84,0.43 -0.34,-1.33 -1.19,-0.96 -0.55,0.69 -0.55,1.83 0.09,2.46 -0.2,0.37 -0.41,0.83 -0.05,1.16 0.21,0.38 0.02,1 -0.45,0.59 -0.89,-0.25 -1.06,1.54 -1.97,0.69 -0.75,-0.19 -1.77,-0.69 -1.41,-1.64 0.19,-0.64 0.38,-1.38 -0.27,-1.84 -0.95,-0.92 -1.83,-1.94 -2.53,-3.06 -0.17,-0.18 -0.43,-0.2 -0.66,-0.18 z", + "department-81" : "m 111.94,56.04 c -0.67,-0.02 -1.45,0.32 -1.36,1.05 -0.71,0.08 -1.46,-0.04 -2.05,-0.4 -0.67,0.17 0.26,1.29 -0.64,1.16 -0.52,-0.01 -0.79,0.42 -0.87,0.83 -1.07,0.6 -2.47,0.84 -3.7,0.64 -0.74,-0.1 -1.32,-1.44 -2.04,-0.82 -0.41,0.77 1.26,1.28 0.32,1.79 -0.41,0.5 -0.68,-0.46 -1.18,-0.35 -0.63,-0.3 -1.2,0.11 -1.79,0.12 -0.76,-0.27 -0.5,0.77 -0.32,1.14 0.22,0.34 -0.11,1.46 -0.5,0.77 -0.31,-0.52 -1.17,-1.22 -1.52,-0.36 -0.27,0.4 0.21,1.12 -0.54,1.09 -0.9,0.04 -1.28,-1.26 -2.28,-1.05 -1.12,0.06 -2.39,-0.3 -3.44,0.15 -0.5,0.79 0.79,1.27 0.49,2.06 -0.28,0.72 0.4,1.03 0.96,1.18 0.64,0.39 0.91,1.3 0.37,1.88 -0.24,0.73 -0.98,0.97 -1.4,1.5 -0.59,-0.05 -0.42,0.51 -0.43,0.87 -0.14,0.63 -0.94,0.15 -1.18,0.73 -0.5,0.46 -0.3,1.28 -0.54,1.77 -1.03,0.37 -2.18,-0.65 -3.1,-0.03 -0.89,0.56 -0.28,0.97 0.51,0.97 0.93,0.22 0.75,1.79 -0.12,1.99 -1.1,0.98 0.3,2.31 0.14,3.46 0.15,0.72 0.96,0.93 1.33,1.42 0.01,0.77 -0.19,1.77 0.76,2.09 0.46,0.4 1.2,0.38 1.65,0.68 -0.03,1.05 0.65,1.97 0.43,3.04 0.26,1.2 2.23,1.3 2.31,2.59 -0.26,0.7 -1.49,0.59 -1.59,1.26 0.76,0.46 2.42,-0.14 2.46,1.02 0.1,0.59 0.48,1.56 -0.38,1.75 -0.78,0.23 -1.7,1.65 -0.59,2.06 0.54,0.08 0.95,0.26 1.27,0.68 0.62,0.64 1.73,0.39 2.14,1.26 0.71,0.84 1.87,0.71 2.8,0.97 0.66,0.48 0.5,1.32 0.9,1.92 0.36,0.36 1.19,0.4 0.95,1.08 0.5,1.73 2.48,2.3 4.01,2.75 0.52,0.38 1.61,1.13 2,0.23 0.16,-0.37 -0.17,-1.21 0.27,-1.35 0.36,0.21 0.88,0.4 1.06,-0.07 0.84,0.49 0.43,1.98 -0.41,2.33 -0.97,0.84 -0.36,2.5 0.81,2.77 0.65,0.56 0.88,1.42 1.16,2.16 1.32,0.47 2.88,-0.12 3.84,-1.07 0.94,-0.19 1.12,1.21 1.83,1.55 0.33,0.42 0.93,0.57 1.03,-0.1 0.41,-0.59 0.3,-1.26 0.05,-1.85 0.31,-0.94 1.19,-1.75 1.81,-2.41 0.45,0.56 1.08,1.24 1.83,0.7 0.61,0.07 1.05,0.7 1.7,0.77 0.96,0.36 1.97,1.33 3.05,0.94 0.48,-0.77 1.45,-0.89 2.28,-0.81 0.84,-0.11 1.82,-0.54 2.47,0.27 1.11,0.57 2.6,0.59 3.73,0.06 0.56,-0.2 0.71,-0.84 1.29,-0.86 0.53,-0.3 1.18,-0.87 1.12,-1.48 0.32,-0.24 1.3,0.2 1.01,-0.51 -1.12,-1.19 0.71,-3.06 -0.72,-4.07 -0.53,-0.8 -1.96,-1.76 -1.14,-2.83 0.46,-0.61 -0.37,-1.19 -0.29,-1.75 0.9,-1.03 0.68,-2.7 1.44,-3.75 0.23,0.13 0.21,0.67 0.67,0.54 1.49,-0.22 3.09,0.53 3.73,1.9 0.44,0.93 1.22,0.02 1.78,-0.21 0.73,0.05 1.1,-0.78 1.74,-0.87 0.66,-0.01 1.21,-0.56 1.92,-0.5 0.64,-0.23 1.05,-0.91 1.83,-0.66 1.05,-0.29 0.41,-1.84 1.15,-2.47 0,-0.83 -0.43,-1.63 -0.44,-2.48 -0.39,-1.04 -1.72,-0.18 -2.39,-0.67 -0.63,-0.5 -1.51,-0.56 -2.08,-1.17 -0.89,-0.14 -1.41,0.78 -1.8,1.41 -0.81,0.35 -1.9,1.04 -2.59,0.2 -0.76,-0.69 -1.98,-0.14 -2.59,-1.1 -1.21,-1.12 -2.29,-2.39 -3,-3.87 -1.05,-1 -2.48,-2.43 -1.53,-3.96 0.81,-0.59 -0.55,-1.11 -0.86,-1.52 -0.06,-0.88 0.27,-1.99 -0.68,-2.54 -0.43,-0.53 -1.34,-0.55 -1.66,-1.11 0.25,-0.65 1.33,-1.05 0.91,-1.92 -0.33,-0.47 -1.05,-0.54 -1.15,-1.23 -0.09,-0.86 -0.25,-1.88 -1.15,-2.27 -0.39,-0.47 -0.23,-1.46 -1.13,-1.4 -0.87,-0.09 -1.74,-0.09 -1.67,-1.15 -0.41,-1.83 -2.79,-1.86 -3.51,-3.45 -0.52,-0.21 -1.75,0.61 -1.79,-0.42 0.24,-0.94 -0.88,-1.41 -1.58,-0.93 -0.48,0.27 -1,0.66 -1.53,0.29 -0.56,-0.27 -1.56,0.19 -1.94,-0.31 0.42,-0.59 1.41,-0.24 1.91,-0.82 1.1,-0.4 -0.45,-1.22 -0.99,-0.82 -0.51,0.61 -0.88,-0.31 -1.13,-0.66 -0.33,-0.37 -1.16,-0.05 -1.1,-0.74 -0.1,-0.36 -0.35,-0.74 -0.77,-0.66 z", + "department-82" : "m 65.17,43.24 c -0.85,0.05 -1.45,0.76 -2.24,0.9 -0.25,0.3 -0.07,0.93 -0.67,0.88 -1.1,0.18 -2.39,-0.39 -3.31,0.37 -0.59,0.14 -1.7,-0.13 -1.68,0.81 -0.32,-0.78 -0.49,-2.36 -1.62,-2.33 -0.68,0.44 -0.98,1.29 -0.59,2.01 0.33,1.03 -1.26,1.76 -0.8,2.76 0.52,-0.02 0.56,0.7 1.1,0.58 0.48,-0.18 0.93,-0.12 1.07,0.4 0.37,0.54 0.83,0.99 1.28,1.46 -0.69,0.38 -0.88,1.12 -1.06,1.79 -0.4,0.44 0.24,1.03 -0.18,1.52 -0.5,0.75 -0.48,2.37 -1.65,2.1 -0.51,-0.05 -1.82,-0.04 -1.47,0.79 0.29,0.57 0.94,0.27 1.37,0.39 0.38,0.58 -0.08,1.39 0.31,2.02 -0.14,0.5 -0.81,0.93 -1.23,1.1 -1,-0.28 -1.93,-1.36 -3.01,-1.14 -0.59,0.54 0.11,1.75 -0.37,2.08 -0.97,-0.31 -1.96,0.43 -1.97,1.42 -0.24,0.56 -0.82,1.29 0.01,1.69 0.52,0.56 0.12,1.65 0.77,2.04 0.95,-0.28 1.7,-1.35 2.69,-1.37 0.51,0.45 1.62,0.35 1.74,1.17 -0.36,0.19 -0.75,0.42 -1.06,0.71 -0.35,0.01 -0.94,-0.12 -0.83,0.47 0.1,0.85 0.36,1.88 -0.53,2.4 -0.73,0.78 -0.99,1.91 -2.02,2.37 -0.35,0.47 -0.01,1.76 0.75,1.29 0.59,-0.19 1.32,-0.71 1.76,0.03 0.39,0.35 1.07,0.75 1.48,0.27 0.94,0.05 1.66,1.1 2.33,1.49 -0.33,0.47 -1.21,0.9 -0.76,1.61 0.37,0.55 1.12,1.1 1.07,1.76 -0.38,-0.02 -0.83,0.41 -0.31,0.62 0.44,0.15 1.2,0.48 0.77,1.05 -0.38,0.69 -1.25,1.66 -0.73,2.45 0.64,0.29 0.97,-0.8 1.65,-0.38 0.74,0.16 1.64,0.42 2.19,-0.24 0.94,-0.42 2.01,-0.55 2.99,-0.28 0.62,-0.03 0.92,-1.13 1.51,-0.91 0.41,0.22 0.84,0.42 1.1,0.75 0.7,-0.16 1.07,-1.16 1.79,-1.19 0.95,0.42 1.12,1.79 2.26,1.84 0.61,-0.06 1.16,0.58 0.51,1 -0.11,0.72 0.96,0.13 1.27,0.02 0.56,-0.24 1.71,-0.53 1.29,-1.34 0.45,-0.44 1.26,0.07 1.8,-0.31 0.8,-0.46 2.26,-0.52 2.31,-1.7 -0.45,-1.01 -1.97,0.2 -2.49,-0.86 -0.69,-0.49 0.26,-0.89 0.68,-1.09 0.55,-0.08 1.12,0.68 1.68,0.2 0.44,-0.52 -0.62,-1.21 0.06,-1.76 0.29,-0.87 1.41,-0.22 2.03,-0.19 0.7,0.26 1.31,1.39 2.12,0.6 0.69,-0.55 0.91,-1.65 1.49,-2.15 0.57,0.12 0.35,0.99 0.89,0.99 0.54,-0.24 0.76,-0.87 1.29,-1.1 0.23,-0.43 0.36,-1.04 1,-0.75 0.93,0.41 1.34,-0.21 1.08,-1.04 -0.13,-0.84 -1.79,-0.3 -1.48,-1.36 0.14,-0.35 0.74,-0.46 1.11,-0.57 0.79,-0.04 1.86,0.69 2.53,0.07 -0.07,-0.76 0.38,-1.65 1.01,-2.05 0.8,0.36 0.58,-0.68 0.67,-1.09 0.57,-0.03 0.77,-0.53 1.27,-0.72 0.82,-0.66 1.11,-2.38 -0.19,-2.68 -0.98,0.01 -0.46,-1.07 -0.78,-1.62 -0.44,-0.5 -0.78,-1.52 -0.03,-1.9 0.99,0.1 1.98,-0.02 2.96,-0.05 0.43,0.29 1.06,-0.12 1.4,0.44 0.31,0.32 1.2,1.23 1.44,0.41 -0.05,-0.51 0.43,-1.18 0.83,-1.39 0.47,0.18 0.79,1.08 1.25,0.97 0.42,-0.59 -0.63,-1.7 0.21,-2.2 0.37,0.28 0.82,0.34 1.2,0.1 0.74,-0.14 1.38,0.27 2.01,0.55 0.67,-0.33 -0.24,-1.01 -0.47,-1.36 -0.11,-0.63 1.09,-0.7 1.41,-0.25 0.68,0.72 2.2,0.99 2.79,0.09 -0.23,-0.34 -0.95,-0.42 -0.8,-1.04 0.07,-0.83 -1.32,-0.75 -1.32,0.05 -0.64,0.29 -0.31,-1.14 -1.03,-0.95 -0.84,0.22 -0.64,-1.01 -1.21,-1.29 -0.56,-0.3 0.34,-0.54 0.55,-0.64 0.67,-0.6 0.88,-2.02 1.91,-2.07 0.8,0.01 0.73,-1.3 0.78,-1.88 -0.78,-0.5 -1.96,-0.09 -2.85,-0.37 -0.48,-0.14 -1.59,-0.27 -1.49,-0.96 0.74,-0.72 -0.7,-1.37 -0.35,-2.19 -0.2,-0.47 -1.34,-0.63 -1.45,0.08 -0.46,0.67 -1.35,-0.85 -1.84,0 -0.02,0.52 -0.65,1.27 -1.1,0.62 -0.5,-0.47 -1.19,-0.42 -1.67,0.03 -1.5,0.34 -2.58,1.47 -3.61,2.54 -0.37,0.46 -0.97,0.93 -1.41,0.28 -0.37,-0.43 -0.13,-1.22 -0.83,-1.4 -0.53,-0.44 -1.62,-0.3 -1.27,0.57 -0.14,0.38 -0.45,0.82 0.02,1.15 0.55,0.67 0.71,1.7 -0.1,2.22 -0.68,0.61 -2.05,0.73 -2.32,-0.37 -0.33,-0.59 0.17,-1.99 -0.93,-1.94 -0.44,0.28 -0.85,-0.12 -0.91,-0.54 -0.66,-0.21 -0.66,0.83 -1.19,0.99 -0.32,1.27 -1.82,1.61 -2.75,2.37 -0.77,0.32 -1.22,1.07 -1.76,1.61 -0.63,-0.53 -0.9,-1.76 -1.99,-1.59 -0.71,0.04 -1.93,-0.31 -1.38,-1.26 0.12,-0.57 1.01,-0.93 0.5,-1.57 -0.12,-0.39 0.53,-1.38 -0.27,-1.25 -0.48,0.39 -1.05,0.56 -1.57,0.81 -0.13,0.27 -0.1,0.92 -0.58,0.59 -0.27,-0.4 -0.74,-0.59 -1.15,-0.33 -0.9,-0.23 -1.79,-0.91 -1.94,-1.85 -0.58,-0.41 -1.36,-0.47 -1.95,-0.87 -0.82,0.02 -1.08,-0.87 -1.05,-1.55 -0.08,-0.68 -1.53,-0.47 -1.1,-1.24 0.25,-1.11 1.93,-0.56 2.2,-1.55 0.05,-0.49 -0.37,-0.74 -0.83,-0.66 z", + "department-12" : "m 139.51,7.44 c -0.97,0.07 -1.09,1.14 -1.57,1.74 -0.75,0.11 -1.54,0.43 -1.88,1.2 -0.28,0.41 -0.08,1.35 -0.86,1.18 -1.02,-0.37 -0.87,1.08 -1.48,1.5 -0.37,0.49 0.16,1.18 -0.42,1.57 -0.39,0.81 0.23,2.31 -0.89,2.63 -1.16,0.35 -1.15,1.92 -1.29,2.91 0.06,0.77 -0.03,1.56 -0.83,1.89 -1.04,0.94 -2.19,1.96 -2.27,3.46 -0.13,0.49 -0.67,0.77 -1.02,1.03 -0.48,-0.27 -0.96,-0.09 -1.32,0.23 -1.26,-0.37 -2.62,-0.35 -3.93,-0.18 -0.71,0.01 -0.78,-0.79 -0.93,-1.3 -0.98,-0.43 -2.24,-0.07 -3.2,0.34 -0.65,0.47 -2.03,-0.04 -2.15,1.04 -0.04,0.57 0.53,1.21 -0.07,1.65 -0.21,0.47 -0.16,0.91 -0.57,1.27 -0.06,0.52 -0.43,0.75 -0.92,0.53 -1.01,-0.18 -0.86,1.58 -1.94,1.22 -0.42,-0.16 -0.84,-0.37 -1.29,-0.05 -0.57,-0.01 -1.22,-1.16 -1.68,-0.3 -0.09,0.3 -0.58,0.85 -0.55,0.18 -0.25,-0.73 -0.92,0.23 -1.19,0.51 -0.2,0.5 -0.62,0.72 -1.14,0.63 -1.53,0.29 -1.56,2.34 -3.01,2.75 -0.38,0.3 -0.76,0.6 -1.16,0.8 -0.26,0.25 0.18,1.2 -0.36,1.01 -0.37,-0.34 -0.52,-1.75 -0.97,-0.97 -0.16,0.46 -0.16,1.35 -0.91,1.14 -0.62,-0.17 -1.64,0.31 -1.01,1.01 0.51,0.76 -0.3,1.91 0.67,2.46 0.97,0.8 0.13,2.35 1.06,3.23 0.29,0.62 1.26,1.07 1.15,1.79 -0.27,0.57 -1.21,0.46 -1.22,1.23 -0.26,0.35 -0.96,0.45 -0.79,1.07 0.13,0.62 0.87,1.1 0.38,1.76 0.26,0.89 1.58,0.7 2.31,0.83 0.63,0.11 1.64,-0.1 2.02,0.51 -0.26,0.69 -0.09,1.61 -0.53,2.19 -0.47,-0.27 -1.09,-0.29 -1.32,0.32 -0.33,0.68 -0.85,1.29 -1.23,1.89 -0.03,0.67 0.42,1.43 1.13,1.23 0.31,0.11 0.23,0.75 0.69,0.5 0.58,-0.34 1.81,-0.26 1.64,0.65 0.17,0.58 0.79,0.92 1.28,1.17 0.64,0.08 0.91,-0.52 1.05,-0.98 0.36,-0.26 1.3,0.04 1.11,-0.7 -0.33,-0.58 0.65,-0.92 0.94,-0.45 0.66,0.33 1.22,-0.15 1.66,-0.56 0.45,-0.05 0.83,-0.26 1.24,-0.41 0.95,-0.17 0.88,1.32 1.84,1.4 0.39,0.24 0.39,1.28 1.03,0.8 0.42,-0.5 1.27,0.09 1.61,0.46 0.19,0.62 -1.69,0.83 -0.83,1.34 0.79,0.56 1.55,-0.07 2.28,-0.34 0.79,-0.29 1.63,0.51 1.38,1.31 0.17,0.67 0.77,0.28 1.12,0.09 0.83,-0.04 0.95,1.1 1.67,1.36 0.58,0.46 1.4,0.47 1.8,1.19 0.46,0.5 0.73,1.13 0.77,1.76 0.63,0.56 1.91,0.13 2.31,0.94 -0.1,0.67 0.44,0.99 0.88,1.33 0.7,0.64 0.42,1.63 0.85,2.36 0.49,0.32 1.29,0.63 1.01,1.39 -0.04,0.67 -1.49,1.1 -0.53,1.56 0.8,0.59 2.23,1.23 1.89,2.47 -0.27,0.75 0.21,1.34 0.85,1.64 0.41,0.27 0.36,0.83 -0.12,0.98 -0.77,1.09 0.27,2.5 1.11,3.22 0.52,0.13 0.5,0.93 0.91,1.25 0.84,1.41 1.89,2.85 3.36,3.65 0.93,0.07 1.7,0.66 2.57,0.87 0.85,-0.01 1.79,-0.34 2.02,-1.24 0.56,-0.77 1.72,-0.85 2.34,-0.12 0.5,0.23 1.13,0.12 1.45,0.65 0.74,0.31 2.08,-0.31 2.32,0.77 0.15,0.86 0.16,2.08 0.9,2.54 0.93,-0.56 2.24,-1.52 3.26,-0.6 0.45,0.51 1.11,0.56 1.67,0.29 0.71,0.24 0.69,-0.75 0.34,-1.09 -0.08,-0.86 -0.37,-1.91 0.05,-2.68 0.75,-0.28 0.57,-1.13 0.09,-1.56 -0.2,-0.52 -0.44,-1.11 -0.51,-1.67 0.65,-0.5 0.14,-1.56 0.77,-2.01 1.11,-0.48 2.03,0.4 2.89,0.93 1.13,0.25 2.35,0.39 3.52,0.32 0.7,-0.39 1.92,-0.76 1.93,-1.72 -0.28,-0.47 -0.67,-0.93 -0.51,-1.56 0.13,-0.77 1.03,-1.1 1.24,-1.85 0.7,-0.73 1.82,0.08 2.69,-0.09 0.45,0.08 0.99,-0.12 0.89,-0.62 0.73,-0.84 0.3,-2.04 0.68,-2.97 0.65,-0.43 0.85,-1.48 1.77,-1.41 0.88,-0.34 0.74,-1.66 1.68,-1.99 0.7,-0.43 1.05,-1.55 0.16,-1.99 -0.73,-0.57 -1.56,-1 -2.32,-1.49 -0.72,-0.17 -2.13,0.34 -2.28,-0.7 0.08,-0.52 -0.42,-1.42 -0.95,-0.8 -0.3,0.36 -0.72,0.67 -1.02,0.1 -0.31,-0.51 -1.74,-1.15 -0.88,-1.61 0.57,-0.73 1.76,-0.31 2.26,-1 0.13,-0.71 -0.37,-1.57 0.32,-2.09 0.09,-0.95 1.01,-1.44 1.79,-1.78 0.25,-0.65 -0.24,-1.52 -0.74,-1.94 -0.83,-0.07 -1.68,-0.08 -2.5,-0.19 -0.84,0.46 -1.92,0.29 -2.78,0.82 -0.39,0.09 -1.21,0.09 -1.36,-0.23 0.46,-0.67 1.41,-2.05 0.33,-2.62 -0.72,-0.55 -1.64,-0.67 -2.45,-0.88 -0.31,-0.38 0.06,-1.56 -0.74,-1.38 -0.09,0.38 -0.72,0.57 -0.92,0.23 -0.27,-1.05 0.39,-1.87 0.92,-2.65 0.42,-0.88 -0.11,-1.76 -0.64,-2.43 -0.24,-0.48 0.01,-1 -0.31,-1.45 -0.12,-0.66 -0.4,-1.64 0.4,-2 0.55,-0.49 -0.1,-1.07 -0.25,-1.5 0.35,-0.48 0.88,-1.11 0.38,-1.7 -0.16,-1.15 -0.88,-2.23 -1.91,-2.8 -0.87,-0.56 -1.31,-1.31 -0.95,-2.35 -0.05,-1.22 0.92,-2.7 -0.22,-3.68 -1.03,-1.03 -2.18,-1.94 -2.81,-3.27 -0.42,-0.7 -1.05,-1.19 -1.71,-1.59 -1.36,-1.5 -1.87,-3.58 -2.02,-5.53 0.6,-0.58 0.24,-1.47 -0.46,-1.73 -0.22,-0.46 0.3,-0.59 0.62,-0.57 0.69,-0.55 -0.15,-2.04 -0.96,-1.24 -1,0.36 -1.22,-1.14 -1.47,-1.76 -0.38,-1.26 -0.98,-2.51 -0.91,-3.83 -1.12,0.09 -2.74,-0.34 -3.43,0.86 -0.55,0.43 -0.69,-0.73 -0.51,-1.08 0.42,-1.24 0.33,-2.97 -0.83,-3.78 -0.17,-0.1 -0.37,-0.13 -0.56,-0.11 z", + "department-46" : "m 84.19,0.11 c -1.02,0.15 -2.06,0.77 -2.57,1.62 -0.61,0.48 -1.43,0.01 -2.06,0.54 -1.14,0.23 -0.44,1.55 -0.5,2.35 -0.01,1.31 1.13,2.38 0.97,3.67 -0.53,0.07 -1.19,0.48 -0.81,1.1 0.36,0.51 1.46,1.44 0.62,2.01 -0.72,-0.04 -1.41,0.45 -1.32,1.23 -0.36,0.51 -1.17,0.56 -1.75,0.7 -0.7,0.66 0.54,2.24 -0.81,2.28 -0.79,0.36 -2.44,0.36 -2.2,1.64 -0.08,0.91 1.35,1.17 0.85,2.14 0.01,0.46 -0.23,0.75 -0.69,0.69 -0.48,0.38 -0.19,1.22 -0.76,1.61 -0.26,0.37 -0.77,-0.26 -1.06,0.2 -0.96,0.89 -1.76,2.32 -3.3,2.09 -0.66,-0.07 -1.16,0.28 -1.58,0.67 -0.86,0.15 -0.25,1.41 -0.34,1.96 0.23,1.09 -1.23,1.57 -1.76,2.39 -1.31,0.36 0.1,2.34 -0.92,2.32 -1,-0.08 -1.87,0.63 -2.62,1.21 -0.38,0.24 -0.7,1.01 -1.16,0.91 0.01,-0.6 -1.04,-0.95 -0.98,-0.18 0.28,1.17 1.68,2.14 1.18,3.46 -0.29,0.68 0.6,0.92 0.46,1.59 0,0.81 0.01,2.2 1.11,2.14 0.99,0.72 0.27,2.26 0.68,3.23 0.83,0.48 1.52,-0.73 2.39,-0.6 0.88,-0.41 0.89,0.62 0.8,1.22 -0.56,0.62 -2.25,0.36 -2.14,1.53 0.42,0.2 0.97,0.33 1.1,0.9 0.12,0.59 0.31,1.29 1.02,1.34 0.56,0.54 1.44,0.42 2.07,0.66 -0.15,1.08 0.93,1.93 1.91,2 0.48,-0.31 1.25,0.73 1.46,-0.08 -0.02,-0.67 0.92,-0.25 1.25,-0.65 0.3,-0.16 1.1,-0.78 1,-0.01 -0.05,0.79 0.37,1.9 -0.51,2.33 -0.73,0.64 0.04,1.73 0.91,1.49 0.99,-0.23 1.65,0.76 2.09,1.45 1.16,-1.2 2.8,-1.85 4.05,-2.97 0.47,-0.64 0.88,-1.32 1.4,-1.91 0.47,0.27 0.85,0.86 1.53,0.66 1.14,0.52 0.21,2.44 1.55,2.69 1.06,0.21 2.4,-0.94 1.59,-1.99 -0.22,-0.52 -0.85,-1.01 -0.32,-1.58 0.2,-0.36 -0.27,-0.9 0.33,-0.99 0.65,-0.21 1.44,0.11 1.92,0.49 -0.31,0.74 0.57,2.01 1.21,1.07 0.33,-0.46 -0.89,-1.01 -0.27,-1.27 0.56,-0.22 0.81,0.71 1.3,0.18 0.75,-0.71 1.54,-1.43 2.59,-1.57 0.48,-0.39 1.29,-0.84 1.78,-0.19 0.34,0.5 1.17,0.32 0.98,-0.32 0.18,-0.56 0.87,-0.99 1.28,-0.33 0.56,0.62 0.8,-0.53 1.4,-0.4 0.82,0.07 1.66,-0.1 2.11,-0.84 0.32,-0.24 1.12,-0.21 0.75,-0.83 -0.92,-1.01 -1.81,-2.25 -1.67,-3.73 -0.11,-0.86 -1.18,-1.28 -0.94,-2.24 0.09,-0.66 -0.32,-1.26 -0.45,-1.83 0.5,-0.55 1.27,-0.43 1.87,-0.67 0.26,-0.34 0.17,-1.42 0.84,-0.98 1.11,0.19 1.86,-0.78 2.76,-1.2 0.78,-0.89 1.33,-2.4 2.74,-2.3 0.69,-0.26 0.75,-1.24 1.56,-1.41 0.42,-0.18 0.93,0.35 1.12,-0.31 0.7,-0.22 1.14,1.03 1.88,0.49 0.56,-0.41 1.04,0.83 1.55,0.11 0.41,-0.45 0.57,-1.47 1.41,-1.14 0.64,0.2 0.53,-0.52 0.85,-0.77 0.77,-0.44 -0.28,-1.29 -0.65,-1.62 -1.01,-0.4 -1.06,-1.71 -0.79,-2.6 0.54,-0.59 -0.16,-1.56 -0.74,-1.84 -0.45,0.11 -1.27,0.04 -1.09,-0.62 0.53,-0.97 1.12,-1.95 0.92,-3.12 0.06,-0.57 -0.21,-1.45 0.55,-1.57 0.46,-0.77 0.28,-1.93 -0.21,-2.65 -0.81,-0.41 -1.25,-1.19 -1.62,-1.98 -0.81,-0.84 -1.55,-1.96 -1.82,-3.13 0.08,-0.68 1.34,-1.14 0.64,-1.89 -0.46,-0.49 -1.16,-0.97 -0.88,-1.74 -0.04,-1.12 -0.88,-2.48 -2.17,-2.11 -1.41,0.11 -2.62,0.86 -3.73,1.66 -0.55,0.05 -0.27,-0.94 -0.66,-1.2 -0.65,-0.78 -1.71,-0.13 -1.96,0.67 -0.32,0.9 -1.72,0.75 -2.14,1.62 -0.67,0.04 -0.88,0.89 -1.58,0.85 -0.27,0.31 -0.67,0.29 -0.59,-0.19 -0.36,-0.77 -0.89,0.64 -1.28,0.02 -0.5,-0.36 -0.82,-0.85 -0.84,-1.44 -0.36,-0.73 -1.22,-1.12 -1.9,-1.33 -0.23,-0.62 -0.42,-1.3 -1.01,-1.69 -0.04,-0.62 -0.87,-0.49 -1.11,-1.03 -0.61,-0.74 -1.34,-1.79 -2.45,-1.38 -0.77,-0.46 -1.93,-0.62 -2.56,0.18 -0.58,0.12 -0.54,-0.64 -0.79,-0.9 -0.09,-0.05 -0.19,-0.05 -0.28,-0.04 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_74.js b/lib/mapael-maps/france/france_region_74.js new file mode 100644 index 000000000..0be8ff003 --- /dev/null +++ b/lib/mapael-maps/france/france_region_74.js @@ -0,0 +1,38 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Limousin for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_74 : { + width : 90.408798, + height : 101.04042, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -28.34195; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3064.4974; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-23" : "m 52.55,0.09 c -1.02,-0.12 -1.33,0.59 -1.16,1.5 0.07,1.08 -0.59,2.55 -1.76,2.68 -0.85,-0.22 -1.08,-1.55 -1.84,-1.63 -0.64,0.58 -1.06,1.8 -2.01,1.88 -0.82,-0.39 -1.15,-1.36 -0.77,-2.19 -0.47,-0.51 -0.8,0.88 -1.49,0.79 -0.66,-0.02 -1.1,1 -1.72,0.76 -0.4,-0.51 -0.08,-2.05 -1.09,-1.83 -0.91,0.47 -0.83,1.92 -1.9,2.14 -0.5,0.58 -0.97,1.22 -1.72,1.49 -0.3,0.48 -0.45,1.07 -1.03,1.36 -1.03,0.71 0.81,0.76 1.1,1.14 -0.43,0.65 0.32,1.86 -0.63,2.13 -0.69,0.37 -0.53,1.29 0.09,1.62 0.18,0.47 -0.57,0.55 -0.88,0.51 -0.57,0.33 -0.19,0.94 0.2,1.19 0.17,0.56 -0.53,0.56 -0.87,0.63 -0.88,0.73 -1.2,2.25 -0.13,2.99 0.14,0.86 1.17,1.03 1.93,0.96 0.4,-8e-4 1.25,-0.06 0.97,0.55 0.27,0.4 0.1,0.78 0.03,1.19 0.27,0.23 0.65,0.34 0.84,0.71 0.6,0.15 1.08,0.7 1.15,1.31 -0.66,0.36 -0.61,1.15 -0.1,1.61 0.48,0.38 1.07,0.54 1.35,1.16 0.45,0.24 0.56,0.65 0.24,1.06 -0.37,0.97 0.96,1.88 0.1,2.78 -0.48,0.71 -0.1,1.81 0.86,1.72 0.85,0.09 1.13,1.55 0.42,2.03 -0.74,0.69 -2.28,0.84 -2.48,1.98 0.26,0.44 0.98,0.2 1.23,0.74 0.52,0.57 1.81,0.62 1.79,-0.35 0.8,-0.19 2.11,-0.42 2.59,0.45 -0.65,0.68 0.39,1.43 0.21,2.19 -0.59,0.25 -1.35,-0.03 -1.87,0.3 0.06,0.49 0.43,0.95 0.35,1.52 0.24,1 1.45,0.86 2.14,1.27 0.7,0.64 1.7,-0.08 2.54,0.05 0.78,-0.07 1.5,-0.58 2.06,-1.04 -0.13,-0.57 0.81,-1.02 0.92,-0.29 0.45,0.66 -0.34,1.86 0.66,2.14 0.7,0.04 1.02,1.21 1.71,0.97 0.07,-0.3 0.32,-0.89 0.57,-0.33 0.36,0.8 1.39,0.88 1.87,1.63 0.51,0.57 0.46,1.43 0.98,1.98 0.09,0.7 -1.24,0.44 -0.86,1.17 0.48,0.5 -0.43,1.16 0.17,1.63 0.59,0.28 0.11,0.6 0.08,1 0.2,0.94 1.21,0.19 1.57,-0.2 0.36,0.09 0.82,0.25 1.06,-0.2 0.38,-0.81 1.25,-0.45 1.92,-0.52 0.72,-0.5 0.26,-1.84 1.31,-2.11 0.56,-0.1 1.11,-0.22 1.52,-0.64 0.5,0.16 0.71,0.9 1.27,1.03 0.49,0.26 0.32,1.12 1.01,1.05 0.48,0.41 1.03,0.01 1.51,-0.05 0.28,0.27 1.08,1.07 1.23,0.28 -0.11,-0.71 0.79,-0.1 0.97,0.15 0.2,0.39 0.83,0.44 1.02,0.7 0.11,0.57 0.9,0.6 1.19,1.1 0.54,0.53 1.38,0.42 1.96,0.76 0.11,0.47 -0.03,1.66 0.77,1.39 0.44,-0.36 0.97,-0.41 1.5,-0.42 0.89,-0.36 1.17,-1.39 1.16,-2.25 0.96,-0.54 2.23,-0.17 3.24,0.06 0.89,0.71 1.87,-0.39 2.43,-1.04 0.05,-0.52 1.18,-1.03 0.5,-1.46 -0.55,-0.39 -1.02,-0.94 -1.71,-1.04 -0.77,-0.59 -0.38,-1.76 -1.14,-2.4 -0.42,-0.65 -1.15,-1.22 -1.39,-1.95 0.24,-0.65 0.84,-0.82 1.45,-0.7 0.96,-0.13 1.19,-1.21 1.22,-2 0.6,-0.32 1.32,-0.29 1.89,0.01 0.72,-0.22 0.32,-1.39 1.19,-1.51 0.52,-0.46 1.55,-0.89 1.45,-1.68 -0.35,-0.72 0.1,-1.69 0.76,-2.08 0.15,-0.51 0.42,-0.96 1.03,-1.02 0.45,-0.11 1.35,-0.33 0.91,-0.96 -1.12,-1.11 0.23,-2.7 -0.5,-3.91 -0.82,-0.54 -1.47,-1.36 -1.68,-2.37 -0.58,-1.66 -0.26,-3.41 0.18,-5.06 0.11,-0.7 0.03,-1.79 -0.87,-1.85 -1.57,-1.13 -0.46,-3.74 -2.12,-4.79 -0.79,-0.26 -0.69,-1.4 -0.9,-2.07 -0.47,-0.7 -1.85,-1.3 -2.26,-0.31 -0.77,-0.48 -0.25,-1.7 -1,-2.28 -0.47,-0.93 -1.06,-0.68 -1.35,0.16 -0.32,0.56 -0.64,0.09 -0.8,-0.27 -0.74,-0.23 -1.57,-0.35 -2.07,-1.03 -0.87,-0.71 0.21,-1.72 0.78,-2.19 0.4,-0.37 -0.13,-0.61 -0.46,-0.43 -0.86,-0.09 -1.82,-0.53 -1.8,-1.52 -0.14,-0.55 0.06,-1.56 -0.81,-1.53 -2.16,-0.25 -4.41,-0.27 -6.54,0.18 -0.56,0.49 -1.48,0.84 -2.07,0.2 -1.4,-0.55 -3,-0.59 -4.31,-1.36 -0.85,-0.17 -1.83,0.53 -2.61,0.15 -0.48,-0.82 -1.47,0.03 -2.13,0.13 -0.9,-0.08 -1.98,0.75 -2.75,-0.04 -0.33,-0.56 -0.79,-1.43 -1.57,-1.35 z", + "department-87" : "m 32.52,3.72 c -0.51,0.05 -1.17,0.12 -1.14,0.78 -0.25,1 -1.42,1.2 -2.23,0.78 -0.91,-0.55 -1.46,0.97 -2.37,0.47 -0.41,-0.24 -0.15,-1.36 -0.88,-1.06 -0.15,0.36 -0.49,0.69 -0.87,0.31 -0.42,-0.56 -1.48,-0.46 -1.39,0.36 -0.29,0.51 -0.98,0.78 -0.95,1.46 -0.55,0.47 -1.05,-0.38 -1.56,-0.48 -1.22,-0.29 -2.83,0.17 -3.07,1.56 0.1,1.34 -1.16,2.36 -1.14,3.65 -1.12,-0.21 -2.44,-0.58 -3.48,-0.02 -0.57,-0.29 -1.43,-0.46 -1.55,0.41 -0.29,0.71 -1.43,0.57 -1.53,1.41 -0.45,0.32 -0.59,0.81 -0.41,1.28 -0.57,0.79 -2.14,-0.04 -2.35,1.21 -0.11,1.15 1.52,1.66 1.49,2.82 0.45,0.61 -0.22,1.55 0.51,2.07 0.3,0.78 -1.04,0.68 -1.22,1.21 0.1,0.73 1.16,1.32 0.57,2.1 -0.2,0.88 -0.43,1.82 -0.37,2.7 0.55,0.71 1.53,1.06 1.85,1.96 0.6,0.29 0.77,-1.11 1.42,-0.47 0.52,0.57 1.56,1 1.37,1.91 0.17,0.33 0.61,0.45 0.5,0.91 0.25,0.56 0.69,1.22 0.15,1.8 -0.4,0.33 -0.69,0.93 -0.79,1.33 -1.08,0.03 -1.62,1.45 -2.79,1.15 -0.74,0.1 -1.45,-0.83 -2.13,-0.41 -0.07,0.49 0.25,0.98 0.12,1.53 -0.13,0.54 0.63,1.02 0.41,1.49 -0.44,0.28 -0.27,0.69 -0.21,1.04 -0.23,1.22 -1.06,2.19 -1.62,3.25 -0.26,0.54 0.17,1.51 -0.39,1.85 -0.92,-0.16 -1.85,-1.49 -2.8,-0.78 -0.33,0.63 -0.36,1.44 0.03,2.02 -0.07,0.89 -1.28,0.52 -1.72,1.1 -0.39,0.39 -0.56,0.91 -1.06,1.2 -0.36,0.39 -0.09,1.12 -0.8,1.16 -0.53,0.7 0.73,1.29 1.05,1.78 1.12,0.48 2.72,-0.73 3.83,0.16 0.41,0.49 0.74,1.16 1.39,1.34 0.08,1.16 -0.5,2.25 -0.79,3.32 0.28,0.85 0.98,1.77 2,1.46 0.49,0.16 0.41,1.27 1.18,1.08 1.27,-0.42 1.02,-2.31 2.06,-2.9 0.55,0.27 0.58,1.69 1.39,1.27 0.5,-0.37 1.3,-0.2 1.85,-0.57 0.8,-0.12 1.6,0.64 2.37,0.08 1.2,-0.25 2.21,0.92 2.02,2.08 -0.09,0.92 0.66,1.51 1.35,1.88 0.41,0.32 0.61,1.42 1.32,0.87 0.49,-0.58 1.3,-0.68 1.86,-0.14 0.33,0.35 1.23,0.52 1.23,1.08 -0.69,0.87 -1.92,1.66 -1.92,2.87 0.34,0.84 1.26,0.35 1.87,0.21 0.56,0.26 0.58,0.97 0.93,1.33 0.84,-0.26 2.33,-0.57 2.49,0.7 0.19,0.63 0.87,0.23 0.77,-0.27 0.67,-0.31 0.04,-1.73 0.98,-1.81 0.57,0.07 0.21,-0.87 0.71,-0.67 0.95,0.21 1.74,1.1 2.68,1.15 0.76,-1.2 1.96,-2.1 2.52,-3.45 0.35,-0.6 1.02,-0.45 1.52,-0.23 0.86,-0.13 0.35,-1.3 0.75,-1.74 0.56,-0.03 0.98,-0.4 1.21,-0.85 0.63,0.05 0.58,1.16 1.29,0.85 0.37,-0.17 0.08,-0.99 0.68,-0.63 0.79,0.46 1.82,0.91 2.6,0.18 0.48,-0.4 0.34,-1.43 1.2,-1.3 1.25,0.1 2.05,-1.03 2.56,-1.98 0.73,-0.73 1.34,-1.82 2.34,-2.13 0.74,0.12 1.5,-0.28 1.87,-0.87 0.93,-0.17 1.13,-1.16 1.48,-1.85 0.37,-0.07 0.64,0.49 1.11,0.2 0.61,0.2 0.97,1.44 1.71,0.76 0.42,-0.5 1.1,0.52 1.33,-0.26 -0.03,-0.66 0.6,-0.53 1.03,-0.64 0.45,-0.2 0.16,-0.77 -0.12,-0.88 -0.02,-0.51 -0.84,-0.68 -0.83,-1.1 0.48,-0.35 0.14,-0.82 -0.21,-1.07 0.24,-0.6 0.41,-1.25 0.01,-1.83 -0.05,-0.55 1.2,0 0.86,-0.75 -0.45,-0.79 -0.3,-1.85 -1.26,-2.36 -0.47,-0.29 -0.98,-0.56 -1.37,-0.86 -0.42,0.28 -0.85,0.21 -1.19,-0.2 -0.57,-0.6 -1.85,-0.61 -1.72,-1.7 0.18,-0.43 0.1,-1.78 -0.62,-1.22 -0.17,0.44 -0.43,0.74 -0.89,0.87 -0.71,0.92 -2.04,0.24 -2.93,0.87 -0.49,0.28 -0.9,0.12 -1.15,-0.31 -0.68,-0.45 -1.84,-0.44 -2.21,-1.23 0.21,-0.61 -0.04,-1.24 -0.49,-1.61 0.25,-0.59 1.11,-0.28 1.36,-0.78 0.47,0.27 0.94,-0.21 0.51,-0.63 -0.6,-0.41 0.17,-1.39 -0.62,-1.58 -0.8,-0.29 -1.69,0.06 -2.03,0.8 -0.73,0.21 -1.51,-0.02 -1.97,-0.63 -0.45,-0.19 -1.31,-0.18 -0.96,-0.92 0.42,-1.4 2.91,-1.11 2.81,-2.78 -0.02,-0.79 -0.76,-1.12 -1.46,-1.02 -0.74,-0.49 -0.23,-1.62 0.01,-2.28 0.07,-0.84 -0.67,-1.62 -0.2,-2.45 -0.01,-0.95 -1.08,-1.21 -1.63,-1.75 -0.29,-0.44 -0.89,-1.12 -0.22,-1.54 0.59,-0.47 -0.22,-1.14 -0.7,-1.29 -0.29,-0.51 -0.96,-0.67 -1.32,-1.01 0.65,-0.4 0.49,-1.69 -0.42,-1.53 -0.93,0.06 -2.05,-0.18 -2.28,-1.2 -0.52,-0.39 -1.08,-1.35 -0.53,-1.94 0.31,-0.58 0.65,-1.21 1.39,-1.2 0.66,-0.47 -0.77,-0.84 -0.18,-1.34 0.43,-0.32 0.7,-0.79 0.48,-1.28 -0.02,-0.64 0.42,-1.1 0.86,-1.45 0.24,-0.83 0.18,-2.06 -0.9,-2.22 -0.7,-0.32 -0.2,-1.35 -0.83,-1.79 -0.85,-0.67 -1.34,-1.98 -2.45,-2.23 l -0.03,0.01 z", + "department-19" : "m 64.84,45.9 c -0.51,0.32 -1.1,0.5 -1.72,0.55 -0.96,0.33 -0.29,1.87 -1.24,2.15 -0.68,-0.01 -1.77,-0.32 -1.87,0.68 -0.23,0.65 -0.74,0.14 -1.1,0.03 -0.88,0.25 -0.4,1.39 -0.66,1.97 -0.43,0.21 -1.19,0.1 -1.23,0.81 -0.31,0.66 -1.14,-0.47 -1.51,0.23 -0.6,0.3 -1.15,-0.22 -1.45,-0.67 -0.71,-0.39 -1.64,-0.06 -1.7,0.81 -0.36,0.47 -1.07,0.58 -1.31,1.14 -0.89,0.51 -2.12,0.17 -2.77,1.15 -0.69,0.59 -1.21,1.3 -1.49,2.13 -0.6,0.75 -1.54,1.31 -2.49,1.15 -0.62,0.5 -0.63,1.65 -1.63,1.73 -0.88,0.35 -1.81,-0.96 -2.56,-0.05 -0.32,0.26 -1.14,0.45 -0.9,-0.26 -0.05,-1.07 -0.56,0.18 -1.03,0.31 -0.87,-0.02 -0.47,1.14 -0.94,1.59 -0.15,0.5 -0.5,0.76 -0.79,0.21 -1.02,-0.59 -1.49,1.08 -1.8,1.74 -0.15,0.44 -0.87,0.25 -1.02,0.77 -0.41,0.47 -0.73,1.82 -1.55,1.05 -0.85,-0.29 -1.77,-1.54 -2.52,-0.44 -0.6,0.32 -0.62,1.02 -0.79,1.57 -0.7,0.54 0.49,1.05 0.92,1.2 0.46,0.2 0.34,1.04 0.06,1.3 -0.59,-0.13 -1.41,0.46 -0.88,1.03 0.26,0.19 0.71,0.04 0.59,0.54 0.35,0.55 1.05,-0.35 1.49,0.18 1.04,0.35 0.57,1.82 -0.21,2.15 -1.36,0.29 -1.09,2.6 -2.65,2.52 -0.73,0.35 0.02,1.42 -0.51,1.97 -0.79,0.9 0.38,2.4 1.45,2.14 0.75,0.16 0.35,1.33 -0.12,1.65 -0.54,0.53 -1.66,0.51 -1.62,1.52 -0.11,1.03 1.27,0.44 1.85,0.51 0.78,0.24 1.36,1.47 0.45,1.94 -0.28,0.26 -1.4,0.81 -0.7,1.13 0.9,0.53 1.81,1.23 2.94,0.96 0.43,0.03 1.11,-0.24 1.16,0.34 0.65,0.2 1.44,-0.16 2.07,0.32 0.52,0.14 0.94,0.69 0.41,1.15 -0.39,0.4 -1.23,0.58 -0.67,1.25 -0.2,0.73 0.67,1.28 0.54,2.01 0.52,1.14 1.16,2.43 2.24,3.1 1.06,-0.12 1.58,-1.33 2.61,-1.58 0.41,-0.19 1.48,-0.65 1.37,0.21 0.09,0.79 0.91,0.26 1.2,-0.08 0.92,-0.06 1.88,0.35 2.81,0.44 0.58,0.16 1.09,0.49 1.27,1.07 0.42,0.72 1.33,0.7 1.67,1.5 0.56,0.65 0.64,1.83 1.7,1.92 1.25,0.27 0.91,1.93 2,2.33 0.41,0.06 0.5,-0.89 0.85,-0.2 0.63,0.69 1.63,0.1 1.76,-0.7 0.24,-0.18 0.74,0.17 0.89,-0.25 0.79,-0.29 1.59,-0.68 1.96,-1.52 0.47,-0.7 1.56,-1.04 2.02,-0.14 0.29,0.4 -0.03,1.52 0.72,0.83 0.84,-0.73 1.8,-1.24 2.92,-1.32 0.68,-0.27 1.37,-0.25 2.02,0.03 0.71,-0.16 1.39,-0.64 2.15,-0.32 1.01,0.18 1.69,-1.07 0.94,-1.8 -0.77,-0.8 -1.02,-1.94 -1.49,-2.92 0.23,-0.92 1.27,-1.41 1.94,-1.99 0.53,-0.33 1.62,0.35 1.68,-0.62 0.33,-0.87 0.4,-1.77 0.18,-2.66 0.32,-0.21 0.95,-0.17 1.14,-0.69 0.25,-0.47 0.23,-1.18 0.95,-1.16 0.41,-0.55 -0.68,-0.72 -0.92,-1.14 -0.45,-0.71 -0.82,-1.62 -0.66,-2.48 0.43,-0.88 1.35,-1.47 2.03,-2.1 0.04,-0.58 0.17,-1.13 0.71,-1.45 0.4,-0.5 0.6,-1.34 1.41,-1.24 1.13,-0.5 1.02,-2.35 2.45,-2.49 0.7,0.03 0.93,-0.61 0.79,-1.19 0.21,-0.73 0.69,-1.39 0.5,-2.22 0.09,-0.82 -0.56,-1.51 -0.59,-2.27 0.71,-0.37 1.68,-0.11 2.15,0.57 0.61,0.44 1.4,0.51 1.97,1.06 0.53,0.24 1.12,0.23 1.58,0.58 0.74,0.06 1.8,0.03 2.27,-0.63 -0.05,-0.97 -1.52,-1.27 -1.72,-2.06 0.39,-2.04 1.14,-4 1.07,-6.1 -0.13,-0.81 0.52,-2 -0.19,-2.63 -0.96,-0.5 -1.36,-1.7 -1.91,-2.58 -0.37,-0.58 0.22,-0.86 0.5,-1.22 0.3,-0.63 -0.23,-1.97 0.72,-2.12 0.57,0.18 1.39,0.09 1.31,-0.7 0.02,-0.54 -0.57,-1.01 -0.13,-1.57 0.49,-0.46 0.29,-1.05 0.05,-1.57 -0.05,-0.88 -0.6,-1.9 -1.44,-2.22 -0.65,0.12 -0.47,1.01 -1.12,1.19 -0.57,0.31 -1.04,1.38 -1.79,0.81 -0.89,-0.23 -1.8,-0.36 -2.66,-0.56 -0.88,-0.09 -0.75,0.88 -0.93,1.42 -0.32,0.74 -1.03,1.46 -1.92,1.28 -0.43,0.09 -1.19,0.77 -1.48,0.19 0,-0.67 -0.14,-1.55 -1.02,-1.48 -0.86,-0.14 -1.47,-0.92 -2.38,-0.75 0.04,-0.46 0.11,-1.14 -0.5,-1.19 -0.31,-0.26 -0.85,-1.29 -1.22,-0.58 0.13,0.79 -0.8,0.28 -1.04,0 -0.51,-0.39 -1.05,0.31 -1.57,-0.11 -0.33,-0.23 -0.94,0.45 -0.86,-0.24 0.11,-0.97 -1.08,-1.18 -1.46,-1.83 -0,0 -0.04,-0.02 -0.03,0 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_82.js b/lib/mapael-maps/france/france_region_82.js new file mode 100644 index 000000000..c78654f97 --- /dev/null +++ b/lib/mapael-maps/france/france_region_82.js @@ -0,0 +1,43 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Rhone-Alpes for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_82 : { + width : 159.56297, + height : 158.72586, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -168.4189; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3068.5254; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-42" : "m 8.83,16.04 c -0.62,0.06 -0.75,0.88 -1.43,0.79 -0.86,0.19 -2.31,0.04 -2.37,1.27 -0.28,0.48 -1.49,-0.27 -1.41,0.66 -0.03,0.58 0.74,0.57 0.73,1.19 0.2,0.87 -0.09,1.81 0.5,2.59 0.56,0.65 0.33,1 -0.19,1.46 -0.11,0.72 0.35,1.43 0.17,2.18 0.2,1.06 1.37,1.96 0.81,3.13 -0.83,1.62 0.1,3.44 0.57,5.03 -0.3,0.84 -1.38,1.22 -2.16,1.52 -0.5,0 -1.39,-0.58 -1.37,0.3 -0.55,0.7 -1.67,-0.58 -2.15,0.16 0.25,0.85 -1.05,1.67 -0.27,2.43 1.2,0.46 2.19,1.65 2.41,2.9 -0.48,0.81 -1.37,1.42 -1.32,2.47 0.18,1.16 0.13,2.61 -0.81,3.43 -0.66,0.19 -0.41,0.95 0.16,1.03 0.64,0.16 1.57,0.86 1.01,1.56 -0.05,0.64 0.66,0.98 1.19,0.89 0.28,0.87 1.39,1.39 1.07,2.43 -0.45,1.26 0.78,2.21 1.13,3.32 0.7,0.53 0.5,1.68 1.42,1.94 0.59,0.09 1.11,0.33 1.35,0.89 0.96,0.82 2.2,1.27 3,2.31 0.48,0.46 0.69,1.08 1.04,1.62 -0.41,1.44 0.15,3.16 1.36,4.04 0.56,0.88 -1.18,1.35 -0.55,2.22 0.17,0.5 0.1,1.03 -0.34,1.32 -0.03,0.88 -1.23,0.65 -1.72,1.18 -1.36,0.71 -1.89,2.34 -1.42,3.77 0.23,0.51 0.09,1.67 0.8,1.75 0.38,-0.3 -0.09,-0.95 0.49,-1.14 0.49,-0.42 0.71,-1.26 1.53,-1.07 0.58,-0.12 1.3,-0.24 1.47,0.51 0.43,0.52 0.83,1.06 1.13,1.66 0.48,0.18 0.28,-0.66 0.78,-0.7 0.65,-0.51 1.27,0.1 1.52,0.67 0.84,0.31 0.38,-1.25 1.21,-1.19 0.83,-0.25 1.57,-0.83 2.49,-0.52 0.8,-0.2 -0.57,-1.28 0.44,-1.36 0.64,-0.28 1.35,-0.42 1.91,0.1 0.75,0.11 1.62,-0.53 2.28,0.16 0.26,0.39 0.73,0.6 1.11,0.71 -0.15,0.61 0.51,1.1 1.02,0.67 0.57,-0.61 1.45,-0.59 2.09,-0.08 0.47,0.41 1.34,0.97 1.28,1.69 -0.32,0.53 -1,0.74 -1.29,1.2 -0,0.76 0.79,1.09 1.35,1.24 0.05,0.75 -1.01,1.51 -0.23,2.2 0.57,0.93 1.62,0.12 2.23,-0.29 0.49,-0.32 1.19,-0.23 1.38,0.37 0.78,0.81 1.55,2.2 2.83,2.11 0.38,-0.09 0.52,-0.73 0.96,-0.32 0.86,0.07 1.57,-0.77 2.48,-0.48 0.71,0.11 1.67,-0.93 0.78,-1.37 -0.47,-0.25 -0.02,-1.09 0.18,-1.44 0.29,-0.23 0.93,-0.16 0.76,-0.75 -0.34,-0.86 1.04,-0.8 1.05,-1.58 0.72,-0.89 1.79,-1.41 2.87,-1.63 0.75,-0.53 1.59,-0.91 2.37,-1.36 0.59,-1.06 -0.44,-2.05 -0.54,-3.05 0.05,-0.64 0.93,-0.95 0.64,-1.69 -0.02,-1.04 -0.84,-1.78 -0.91,-2.81 -0.45,-0.84 -1.16,0.14 -1.68,0.33 -1.12,0.56 -2.34,-0.53 -2.19,-1.68 -0.02,-0.72 -0.09,-1.5 0.26,-2.14 -0.15,-0.41 -0.85,-0.11 -0.92,-0.69 -0.31,-0.62 -0.62,-2.02 -1.61,-1.48 -0.79,0.41 -1.15,-1.04 -2.02,-0.66 -0.77,0.03 -1.88,0.91 -2.45,0.04 -0.26,-0.61 -1.23,-0.16 -1.6,-0.44 0.34,-0.83 -0.77,-0.95 -0.98,-1.59 -0.3,-1.15 -1.78,-1.13 -2.2,-2.2 -0.31,-0.54 -0.25,-1.28 -1.01,-1.48 -0.9,-0.25 -0.38,-1.4 -0.43,-2.06 0.14,-1.2 1.17,-2.23 1.27,-3.43 -0.42,-0.68 -1.47,0.52 -1.77,-0.38 -0.48,-0.71 -0.38,-1.64 0.51,-1.87 0.43,-0.59 0.18,-1.42 0.5,-2.07 0.04,-1.02 0.13,-2.03 0.62,-2.93 -0.18,-0.65 -1.18,-0.14 -1.59,-0.63 -0.64,-0.28 -0.91,-0.88 -1.1,-1.49 -0.42,-0.3 -0.79,-0.95 -0.11,-1.22 0.78,-0.75 0.1,-2.01 -0.86,-2.15 -0.48,-0.29 -0.89,-0.73 -0.79,-1.32 -0.23,-1.07 -1.53,-1.02 -2.14,-1.67 -0.31,-0.62 0.36,-0.75 0.84,-0.64 0.61,-0.19 1.51,0.61 1.81,-0.25 0.34,-0.61 -0.12,-1.46 -0.84,-1.18 -0.75,-0.52 -1.52,-1.34 -1.7,-2.26 0.78,-0.09 2.04,-0.15 2.15,-1.21 -0.03,-0.63 0.74,-0.98 0.49,-1.68 -0.16,-0.56 -0.1,-1.1 0.34,-1.48 0.03,-0.89 0.91,-1.33 1.7,-1.41 0.63,0.04 0.9,-1.08 1.5,-0.58 0.71,0.69 1.52,0.93 1.78,-0.28 0.39,-0.43 0.66,-1.2 -0.06,-1.48 -0.53,-0.32 -1.36,-0.52 -1.29,-1.31 0.25,-0.43 1.51,-0.4 0.96,-1.09 -0.35,-0.66 -1.15,-0.64 -1.44,-0.01 -0.87,0.06 -0.81,1.08 -0.53,1.63 -0.54,0.55 -1.32,-0.16 -1.89,0.38 -0.43,0.28 -0.72,0.89 -1.33,0.6 -0.73,0.07 -0.71,1.28 -1.6,1.02 -0.59,0.2 -1.24,-0.54 -0.6,-0.95 0.49,-0.48 -0.03,-1.43 -0.65,-0.89 -0.27,0.48 -0.82,0.45 -1.09,-0.03 -0.4,-0.85 -1.62,-0.23 -1.4,0.54 -0.94,0.39 -2.29,0.21 -2.96,-0.62 -0.49,-1.03 -1.32,-0.58 -2.09,-0.2 -1.15,0.09 -1.76,1.45 -2.99,1.23 -1.05,0.32 -1.49,-0.4 -1.74,-1.29 -0.06,-1.13 -1.54,-1.08 -2.37,-0.93 -0.72,-0.16 -1.83,-0.62 -1.26,-1.49 0.28,-0.95 1.08,-2.18 0.21,-3.06 -0.15,-0.09 -0.34,-0.1 -0.51,-0.09 z", + "department-69" : "m 45.2,14.06 c -0.39,0.16 -0.71,0.72 -1.15,0.28 -0.51,-0.34 -0.84,0.1 -0.94,0.54 -0.49,0.44 -0.71,1.09 -0.77,1.72 -0.82,-0.01 -2.3,-0.15 -2.19,-1.29 0.05,-0.69 -0.83,-0.55 -0.9,0.04 -0.11,1.05 -1.39,1.13 -2.21,1.09 -0.41,-0.38 -0.51,-1.24 -1.27,-1.15 -0.51,-0.24 -0.93,-0.83 -1.57,-0.57 -0.75,-0.54 -1.98,0.1 -1.96,1.09 -0.17,1.14 -0.57,2.42 -0.18,3.53 0.49,0.3 1.33,0.66 1.32,1.28 -0.27,0.47 -0.92,0.35 -1.18,0.71 0.22,0.87 1.43,1.1 1.94,1.74 -0.4,0.66 -0.69,1.66 -1.26,2.1 -0.73,-0.21 -1.46,-1.36 -2.07,-0.34 -0.64,0.45 -1.96,0.2 -2.07,1.24 -0.2,0.63 -0.84,1.16 -0.51,1.85 0.05,0.7 -0.4,1.24 -0.5,1.91 -0.36,0.77 -1.25,0.87 -1.96,0.98 -0.31,0.65 0.82,1.23 1.05,1.79 0.39,0.45 1.23,-0.24 1.29,0.58 0.33,0.5 0.09,1.4 -0.44,1.61 -0.74,0.12 -1.38,-0.45 -2.06,-0.31 -0.59,0.53 0.41,1.05 0.91,1.01 0.85,0.32 1.17,1.2 1.34,1.99 0.78,0.63 2.54,1.29 1.67,2.56 -0.51,0.23 -0.75,0.82 -0.24,1.19 0.33,0.87 0.87,1.81 1.96,1.76 0.48,-0.12 1.24,0.17 0.78,0.75 -0.45,0.64 -0.2,1.43 -0.53,2.13 -0.17,0.52 0.57,1.17 -0.08,1.46 -0.26,0.49 0.06,1.26 -0.67,1.41 -1.04,0.39 -0.35,2.36 0.67,1.71 0.45,-0.35 1.07,0.43 0.96,0.68 -0.62,0.63 -0.74,1.53 -1.16,2.28 -0.13,0.85 -0.62,2 0.04,2.71 1.19,0.38 0.9,2.03 2.06,2.52 1.14,0.24 1.15,1.65 2.17,2.06 0.44,0.14 0.06,0.82 0.68,0.75 0.9,-0.12 1.38,1.27 2.29,0.63 0.48,-0.24 1,-0.14 1.48,-0.36 0.57,0.42 1.2,1.15 2.01,0.6 1.06,-0.07 0.74,1.58 1.5,1.92 0.62,-0.2 -0.37,0.08 0.47,0.08 0.89,0.59 -0.15,0.78 0.01,2.21 -0.19,0.88 0.27,1.85 1.23,1.94 0.84,0.25 1.37,-0.52 1.98,-0.85 1.21,0.41 0.59,2.49 2.05,2.53 0.73,0.04 0.18,-0.82 0.68,-1.03 1.38,-1.17 3.12,-2.09 3.9,-3.8 -0.22,-0.81 -1.51,-0.7 -1.91,-1.47 -0.48,-1.03 -1.5,-1.61 -2.31,-2.31 1.08,-0.58 2.5,-0.17 3.51,0.44 0.41,-0.13 0.22,-0.91 0.79,-1.07 1.49,-0.73 3.26,-0.99 4.9,-1.02 0.55,0.27 0.67,-0.26 0.65,-0.62 0.69,-0.49 1.65,0.71 2.18,0.02 -0.26,-0.63 -0.26,-1.51 0.38,-1.94 0.24,-0.57 0.52,-1.12 1.1,-1.45 0.67,-0.46 1.38,-1 1.61,-1.8 0.56,-0.61 1.4,-0.18 2.03,-0.39 0.42,-0.75 -0.61,-1.46 -1.14,-1.85 -0.57,-0.34 -1.64,-0.19 -1.68,-1.09 0.11,-0.58 -0.17,-1.17 -0.81,-1.1 -0.4,-0.36 -0.83,-1.16 -0.58,-1.66 0.51,-0.03 1.31,0.51 1.52,-0.28 0.62,-1.06 -0.42,-1.15 -1.29,-0.96 -1.23,0.08 -2.39,0.46 -3.62,0.21 -0.99,-0.01 -1.98,-0.03 -2.96,0.1 -0.02,-1.23 -0.17,-2.48 -0.87,-3.51 -0.02,-0.49 0.17,-1.17 -0.53,-1.28 -0.46,-0.23 -0.4,-0.95 -0.84,-1.12 -0.24,-0.86 -1.51,-1.24 -2.17,-0.56 -0.29,0.16 -1.1,0.76 -0.84,-0.03 0.23,-0.58 0.09,-1.29 -0.63,-1.24 -0.42,-0.4 -0.69,-1.16 -1.44,-0.9 -0.71,0.24 -1.8,-0.39 -1.22,-1.18 0.48,-0.6 1.18,-1.09 0.76,-1.97 -0.24,-1.4 -0.21,-2.86 -0.5,-4.22 0.28,-0.66 1.42,-1.16 0.72,-1.95 -0.77,-0.77 -0.12,-1.33 0.41,-1.99 0.32,-1.09 1.47,-1.84 1.54,-3.03 -0.16,-0.87 -1.08,-1.66 -1.98,-1.39 -1.09,0.04 -1.96,-1.09 -1.41,-2.07 0.58,-0.59 -0.5,-1.4 0.2,-1.94 -0.15,-1.22 -2.34,-0.58 -2.28,-2 0.19,-0.6 1.52,-0.25 1.16,-1.06 -0.33,-0.46 -0.46,-1.39 -1.03,-1.55 z", + "department-07" : "m 48.1,76.26 c -0.99,0.24 -1.67,1.3 -2.78,1.27 -0.89,0.27 -1.77,0.94 -2,1.83 -0.5,0.25 -1.18,0.49 -0.96,1.22 0.3,0.8 -0.79,0.37 -0.98,0.97 -0.57,0.78 0.84,1.4 0.19,2.14 -0.72,0.85 -1.99,0.01 -2.79,0.76 -0.48,0.35 -1.12,0.01 -1.53,0.45 -0.48,-0.04 -1.01,0.15 -0.85,0.72 -0.69,1.04 -0.15,2.54 -1.26,3.38 -0.86,0.8 -0.93,2.11 -0.33,3.08 0.29,0.65 -0.76,0.37 -0.65,0.99 -0.57,-0.03 -0.74,-0.7 -0.63,-1.16 -0.32,-0.79 -1.61,-1.14 -2.28,-0.63 -0.44,0.81 0.89,0.85 1.07,1.53 0.11,0.79 -1.06,0.79 -1.58,0.94 -0.34,0.48 -0.25,1.2 -0.6,1.71 -0.26,0.63 0.24,1.15 0.84,1.13 0.63,0.29 0.63,1.51 -0.21,1.48 -0.48,0.2 -0.77,0.6 -1.36,0.46 -0.94,-0.15 -1.92,0.46 -1.88,1.48 -0.32,0.87 1.13,1.38 0.7,2.15 -0.81,0.41 -1.81,0.8 -2.72,0.78 -0.59,-0.54 -1.37,0 -1.32,0.73 -0.03,1.53 -1.9,2.27 -1.87,3.82 -0.08,0.64 -0.87,0.82 -1.28,1.26 -0.82,0.23 -1.7,-0.6 -2.5,0.02 -0.94,0.52 -2.07,-0.07 -3,0.19 -0.51,0.74 -0.47,1.59 -0.23,2.39 -0.25,0.43 -1.08,0.09 -1.37,0.61 -0.36,0 -0.64,0.22 -0.58,0.66 -0.39,0.48 -0.84,-0.5 -1.2,-0.64 -0.7,-0.22 -0.75,0.96 -0.93,1.41 -0.14,0.73 -0.96,1.32 -0.63,2.15 -0.47,0.36 -1.13,0.61 -1.48,1.15 -0.41,-0.02 -1.2,-0.14 -1.08,0.54 0.41,0.5 0.18,1.04 -0.15,1.53 -0.28,0.53 0.31,0.92 0.32,1.44 0.17,0.29 0.71,0.1 0.38,0.61 -0.61,0.96 0.17,1.84 0.5,2.71 0.3,0.81 -0.17,1.97 0.59,2.54 0.1,0.57 0.04,1.28 0.59,1.64 0,0.7 0.68,0.83 1.23,0.91 0.9,0.84 0.8,2.26 1.46,3.25 0.68,1.46 0,3.44 1.49,4.51 0.42,0.58 1.44,0.33 1.53,1.2 0.1,0.51 -0.27,1.28 0.47,1.44 0.48,0.29 0.96,0.94 0.3,1.35 -0.27,0.19 -0.88,0.19 -0.57,0.7 0.61,1.13 0.46,2.69 -0.23,3.72 -0.08,0.66 0.81,0.7 1.09,0.2 0.7,-0.6 1.68,-0.37 2.46,-0.68 0.46,-0.31 0.86,0.58 1.02,0.92 0.11,0.96 1.19,0.13 1.66,0.42 0.23,1.21 1.59,1.43 2.27,2.31 0.45,0.62 1.55,1.34 2.08,0.41 0.67,-0.75 0.36,-1.95 0.81,-2.72 0.8,-0.05 1.47,-0.75 1.66,-1.45 0.97,-0.2 2,-0.38 2.97,-0.52 1.17,0.93 -0.53,2.45 0.29,3.48 0.61,0.25 1.63,0.58 2.13,-0.02 0.44,-1 -0.35,-2.55 0.74,-3.23 0.63,0.13 1.29,0.11 1.92,0.16 0.63,0.41 1.28,0.94 2.01,1.06 -0.02,1.14 1.09,1.61 2.01,1.84 0.57,0.12 0.88,0.65 1.32,0.9 0.35,-0.15 0.72,-0.3 0.98,0.11 0.73,-0.01 0.26,-1.2 0.37,-1.66 -0.01,-1.95 -0.45,-4 0.4,-5.84 0.46,-0.99 -0.13,-2.56 1.13,-3.04 1,-0.89 0.75,-2.53 0.19,-3.6 -0.36,-1.02 1,-1.85 0.59,-2.8 -0.75,-0.68 -0.19,-1.69 0.2,-2.39 0.1,-1.02 1.89,-0.57 1.7,-1.76 0.26,-1.84 2.02,-3.18 1.7,-5.14 -0.14,-1.66 -1.13,-3.31 -0.76,-4.98 0.27,-0.69 -0.45,-1.73 0.57,-2.02 1.07,-0.39 0.83,-1.85 1.81,-2.28 0.51,-0.49 0.11,-1.51 0.97,-1.68 0.59,-0.45 0.37,-1.35 0.97,-1.83 0.42,-0.75 -0.6,-1.7 0.17,-2.31 0.61,-0.94 1.47,-2.29 0.52,-3.31 -0.62,-0.67 -0.91,-1.51 -1.02,-2.39 -0.15,-0.53 -0.93,-1.1 -0.39,-1.61 0.07,-0.76 -0.21,-1.63 0.55,-2.17 0.64,-0.68 -0.38,-1.19 -0.94,-1.35 -0.48,-0.71 0.09,-1.83 -0.59,-2.52 -0.45,-0.53 -1.12,-1.34 -0.47,-2.01 0.46,-0.49 1.08,-1.35 0.18,-1.78 -0.52,-1.48 -0.29,-3.16 -0.4,-4.72 -0.06,-1.21 0.23,-2.43 0.17,-3.62 -0.79,-1.01 -2.62,-1.84 -2.05,-3.39 0.49,-0.73 0.09,-1.51 -0.83,-1.44 z", + "department-26" : "m 59.55,77.71 c -0.85,0.22 -1.48,0.89 -2.35,1.06 -1.16,0.51 -2.05,1.65 -3.3,1.92 -0.61,0.07 -0.85,-0.75 -1.5,-0.49 -0.51,0.08 -1.82,0.15 -1.32,0.96 0.14,1.77 -0.29,3.57 -0.07,5.35 0.16,1.1 -0.17,2.58 0.85,3.32 0.2,0.96 -1.58,1.63 -0.81,2.58 0.52,0.79 1.35,1.56 0.96,2.61 -0.18,1 1.75,0.88 1.26,1.96 -0.85,1.21 -0.84,2.9 -0.23,4.22 0.04,1.34 1.53,2.12 1.52,3.42 -0.48,0.77 -0.58,1.72 -1.24,2.36 -0.24,0.72 0.48,1.54 -0.2,2.18 -0.31,0.72 -0.33,1.69 -1.22,1.96 -0.43,0.46 0.01,1.4 -0.79,1.57 -0.78,0.55 -0.54,1.93 -1.65,2.17 -0.8,0.44 -0.25,1.67 -0.43,2.39 -0.19,2.09 1.25,3.97 0.6,6.05 -0.3,1.08 -1.21,1.88 -1.41,3.02 -0.21,0.61 -0.1,1.55 -0.99,1.57 -0.99,0.22 -1.04,1.4 -1.45,2.14 -0.03,0.69 1.02,1.18 0.37,1.88 -0.64,0.81 -0.77,1.95 -0.12,2.78 0.07,0.9 0.12,2.09 -0.56,2.76 -1.54,0.61 -0.63,2.73 -1.47,3.87 -0.23,1.05 -0.48,2.31 -0.01,3.31 0.83,0.62 2.19,0.81 3.06,0.23 1.66,-0.29 3.91,0.79 3.79,2.7 0.03,1.23 0.57,2.31 0.53,3.56 0.53,0.46 1.13,-0.5 1.57,-0.79 0.71,-0.68 1.31,-1.61 2.43,-1.22 0.91,0.2 1.62,-0.25 2.3,-0.76 0.55,-0.16 1.11,-0.74 1.56,-0.85 1.05,0.14 1.76,-0.9 2.74,-1.12 0.94,-0.61 0.9,0.94 1.57,1.23 1.15,0.57 2.49,-0.44 3.11,-1.38 0.09,-0.52 1.04,-0.85 1,-0.09 0.27,0.96 -0.85,1.36 -0.89,2.19 0.33,0.56 0.73,1.18 0.43,1.89 -0.2,0.35 -0.61,0.83 -0.05,1.1 0.95,0.62 2.31,1.19 3.42,0.75 0.25,-0.3 0.1,-1.12 0.74,-0.85 1.03,0.16 1.61,1.21 2.6,1.37 0.7,0.01 1.4,0.49 2.02,-0.11 0.65,-0.11 1.5,0.48 1.45,1.2 0.23,0.81 -0.24,1.95 0.42,2.56 0.83,-0.04 1.95,-0.05 2.21,0.93 0.51,0.41 0.33,1.47 1.2,1.47 0.66,0.07 1.56,0.27 1.97,-0.37 0.75,-0.33 1.53,-0.75 1.77,-1.59 0.38,-0.22 1.43,0.04 1.16,-0.74 -0.35,-0.45 -0.69,-0.97 -0.2,-1.49 0.34,-0.62 1.35,-0.77 1.89,-0.43 0.25,0.49 0.76,1.11 1.35,1.06 0.3,-0.53 0.37,-1.4 1.23,-1.27 0.89,-0.21 0.25,-1.4 0.42,-2.01 -0.1,-0.86 -0.52,-1.72 -0.01,-2.55 0.25,-0.41 0.08,-1.01 -0.47,-0.73 -0.47,0.19 -1.08,0.51 -1.28,-0.21 -0.4,-0.41 -0.41,-0.93 -0.2,-1.4 -0.1,-0.59 -1.04,-0.48 -1.26,-0.85 0.12,-0.5 1.19,-1.01 0.67,-1.46 -1.23,-0.19 -2.61,0.21 -3.76,-0.18 -0.29,-1.11 -1.53,-0.77 -2.2,-0.33 -0.47,-0.56 -1.21,-0.86 -1.37,-1.61 -0.44,-0.29 -1.37,-0.09 -1.39,-0.84 0.9,-0.95 -0.02,-2.33 -0.63,-3.17 0.32,-0.48 0.88,-0.93 1.44,-0.48 0.6,0.51 1.81,0.71 1.94,-0.32 -0.33,-0.65 -1.62,-0.64 -1.4,-1.63 0.12,-0.84 -0.21,-1.73 -0.11,-2.52 0.54,-0.5 0.98,0.51 1.58,0.42 1.19,-0.06 2.2,0.55 3.23,1 0.79,-0.11 1.88,1.18 2.42,0.1 0.31,-0.55 0.09,-1.98 1.09,-1.74 0.44,0.21 1.12,-0.16 0.66,-0.62 -0.48,-0.67 -1.16,-1.36 -1.94,-1.54 -0.69,-0.33 -0.85,-1.14 -0.38,-1.73 0.52,-1.24 1.18,-2.46 1.84,-3.59 0.15,-0.82 -0.6,-1.86 -0.03,-2.54 1.38,-0.27 2.72,0.92 4.09,0.56 0.6,-0.22 0.88,-1.47 1.61,-0.82 0.74,0.42 1.29,-0.33 1.45,-0.97 0.25,-0.64 1.63,-0.81 1.16,-1.63 -0.7,-1.12 -1.9,-0.07 -2.82,-0.02 -0.8,-0.06 -1.12,-1.11 -1.96,-1.15 -0.92,-1.19 -2.85,0.15 -3.7,-1.1 -0.4,-0.64 -0.6,-1.64 -1.53,-1.63 -0.8,-0.22 -1.02,-0.97 -1.4,-1.58 -0.23,-0.37 -1.22,-0.77 -1.04,0.01 0.28,0.48 -0.12,0.66 -0.51,0.45 -1.28,-0.33 -2.69,-0.69 -3.7,-1.54 -0.12,-0.68 1.22,-1.02 0.6,-1.73 -0.4,-0.09 -0.55,-0.38 -0.38,-0.82 0.17,-1.53 0.23,-3.05 0.61,-4.53 0.16,-1.99 -0.38,-4.06 0.41,-5.95 0.07,-0.71 -0.45,-1.28 -0.42,-2 -0.33,-0.82 -0.88,-1.66 -0.39,-2.56 -0.01,-0.56 0.73,-0.67 0.73,-1.14 -0.49,-0.77 -1.43,-0.15 -1.66,0.51 -0.43,0.86 -1.17,1.4 -2.01,1.79 -0.32,0.44 -0.97,0.81 -1.41,0.29 -0.62,-0.38 -1.49,-0.41 -1.66,-1.29 -0.43,-0.2 -1.04,1.03 -1.5,0.25 -0.3,-0.69 -1.12,-0.13 -1.59,-0.01 -1.47,-0.11 -2.1,-2.14 -3.7,-1.75 -0.72,0.01 -0.84,1.47 -1.66,0.96 -0.16,-0.35 -0.48,-0.45 -0.77,-0.4 -0.62,-0.43 0.8,-0.46 0.87,-0.95 0.54,-1.24 1.72,-2.26 1.4,-3.76 0.2,-1.57 -1.1,-2.85 -0.83,-4.42 0.39,-0.42 1.39,-0.57 0.76,-1.31 -0.13,-0.65 -0.63,-0.97 -1.17,-1.15 -0.52,-0.39 -0.85,0.61 -1.46,0.32 -0.65,-0.04 -0.04,-1.01 -0.14,-1.39 -0.06,-0.6 0.59,-1.65 -0.02,-2.06 -0.61,0.53 -1.52,0.83 -2.35,0.88 -0.47,-0.81 -0.41,-2.37 -1.71,-2.32 -1.31,0.27 -0.69,-1.65 -1.87,-1.6 z m -1.27,60.37 c 0.8,0.07 1.41,0.99 2.23,0.86 0.29,0.5 -0.2,1.54 0.66,1.61 0.54,0.47 1.29,0.46 1.9,0.67 0.01,0.7 -0.83,1.32 -1.52,1.3 -0.79,0.32 -0.71,1.36 -1.23,1.94 0.08,0.42 -0.03,0.77 -0.45,0.97 -0.55,0.4 -0.33,1.45 -0.86,1.71 -1.3,-0.59 -2.81,-1.17 -4.2,-0.73 -0.14,-0.69 -0.71,-1.44 -0.12,-2.08 0.21,-0.59 -0.6,-0.54 -0.84,-0.66 0.52,-1.11 1.85,-1.88 1.74,-3.25 0.29,-1.35 2.13,-1.32 2.7,-2.33 z", + "department-38" : "m 75.7,42.07 c -0.65,0.66 -1.3,1.42 -1.89,2.17 -0.55,1.15 -0.55,2.55 -1.53,3.49 -0.66,0.72 -1.52,1.48 -2.47,1.71 -0.62,-0.07 -1.51,-0.03 -1.55,-0.83 -0.58,-1.05 -1.8,-1.76 -2.96,-1.74 -0.32,0.16 -0.19,0.81 -0.69,0.54 -0.7,-0.04 -0.41,1.31 -1.22,0.89 -0.55,-0.27 -1.17,0.23 -0.62,0.72 0.32,0.58 1.31,0.22 1.2,1.01 -0.03,0.66 0.16,1.55 1.02,1.43 0.96,0.17 1.87,1.06 2.07,2.02 -0.4,0.85 -1.59,-0.05 -2.16,0.62 -0.31,0.66 -0.73,1.45 -1.5,1.63 -0.58,0.3 -0.91,0.84 -1.09,1.4 -0.55,0.51 -1.17,1.28 -0.57,2 -0.01,0.48 -0.64,0.73 -1,0.39 -1,-0.78 -0.83,0.24 -1.02,0.83 -0.7,-0.09 -1.39,-0.59 -2.16,-0.31 -1.39,0.29 -3.26,0.23 -4.11,1.54 0.03,0.6 -0.51,0.6 -0.87,0.27 -0.74,-0.52 -1.76,-0.54 -2.58,-0.29 0.27,0.53 1.19,0.75 1.47,1.43 0.41,1.18 1.82,1.36 2.51,2.19 -0.78,1.8 -2.65,2.83 -4.1,4.08 -0.28,0.31 0.19,1.01 -0.47,0.99 -0.92,-0.18 -0.67,0.84 -0.66,1.39 -0.28,0.51 -0.95,0.96 -0.56,1.64 0.47,0.76 0.65,1.63 0.49,2.51 0.08,0.57 0.95,1.11 0.59,1.72 -0.75,0.75 0.04,1.93 0.73,2.43 0.72,0.99 1.99,-0.05 2.98,-0.04 0.58,-0.28 0.2,0.76 0.82,0.67 1.19,-0.11 1.72,-1.24 2.77,-1.64 0.96,-0.42 1.88,-0.95 2.85,-1.35 0.93,-0.25 0.99,0.89 1.46,1.35 0.65,0.4 1.81,0.16 1.86,1.22 0.11,0.64 0.49,1.59 1.31,1.16 0.54,-0.04 1.01,-0.39 1.32,-0.72 0.39,-0.09 1,-0.05 0.64,0.53 -0.17,0.9 -0.69,1.93 -0.32,2.82 0.57,0.38 0.98,-1.02 1.4,-0.32 0.49,0.16 1,0.32 1.11,0.93 0.08,0.49 0.83,0.92 0.75,1.37 -0.56,0.07 -1.54,0.11 -1.36,0.95 0.04,1.32 1.22,2.34 0.88,3.72 0.1,1.24 -0.32,2.38 -1.08,3.33 -0.21,0.47 -0.38,0.87 -0.75,1.2 -0.07,0.59 0.79,1.05 1,0.31 0.18,-0.75 0.86,-0.88 1.5,-0.7 1.35,-0.04 1.83,1.96 3.31,1.6 0.55,-0.16 1.18,-0.29 1.56,0.26 0.52,0.28 1.24,-0.88 1.53,-0.09 0.27,0.59 1.22,1.15 1.8,0.8 -0.01,-0.35 0.16,-0.84 0.44,-0.31 0.6,0.53 1.47,-0.29 1.93,-0.7 0.57,-0.48 0.74,-1.52 1.45,-1.77 0.51,0.03 1.28,0.51 1.15,1.03 -0.9,0 -1.07,1.22 -1.05,1.92 0.67,0.91 0.62,2.11 1.09,3.11 -0.49,1.05 -0.56,2.23 -0.47,3.39 0.14,1.63 -0.09,3.22 -0.4,4.81 0.09,0.99 -0.47,2.06 -0.14,3 0.48,0.01 0.7,0.44 0.45,0.85 -0.1,0.46 -1.17,0.9 -0.47,1.29 1.01,0.65 2.21,1.14 3.44,1.31 0.64,-0.15 -0.51,-1.24 0.3,-1.18 0.87,0.29 1.45,1.03 1.76,1.84 0.71,0.53 1.89,0.54 2.06,1.62 0.16,0.38 0.51,0.48 0.58,0.89 0.81,0.34 1.89,0.15 2.62,-0.12 0.61,0.78 1.58,1.05 2.25,1.76 1.3,0.44 2.66,-0.66 2.95,-1.93 0.44,-0.54 0.2,-1.4 0.53,-1.92 0.78,0.27 1.65,0.92 2.56,0.46 0.39,-0.28 0.82,-0.55 1.26,-0.19 0.61,0.13 0.89,-0.69 1.49,-0.59 0.25,-0.6 0.86,-0.75 1.31,-1.16 0.36,-0.79 -1.07,-0.87 -1.14,-1.46 0.59,-0.73 1.51,-0.94 2.33,-1.2 0.42,-0.36 0.79,-1.46 1.47,-0.83 0.45,0.46 1.04,1.48 1.71,0.68 1.03,-0.71 1.94,-1.63 2.79,-2.5 0.92,-0.17 1.6,0.93 2.5,0.36 0.92,-0.31 1.82,0.4 2.71,0.32 0.53,-0.88 1.59,-1.75 2.67,-1.36 0.45,0.62 1.18,1.97 2.09,1.23 0.27,-0.74 -0.15,-1.59 0.18,-2.35 -0,-1.12 0.28,-2.35 -0.12,-3.41 -0.64,-0.22 -1.58,-0.6 -1.23,-1.48 0,-0.71 -0.75,-1.36 -0.22,-2.05 0.28,-0.82 -0.93,-0.37 -1.33,-0.33 -1.33,0.44 -2.88,0.15 -3.94,-0.75 0,-1.24 0.13,-2.67 0.9,-3.68 0.55,-0.08 0.79,-0.6 0.53,-1.11 -0.16,-0.82 -0.52,-1.94 0.5,-2.36 0.66,-0.3 1.13,-1.68 0.18,-1.85 -0.57,-0.05 -1.32,0.64 -1.66,-0.15 -0.49,-0.8 -1.64,-1.03 -2.19,-0.19 -0.51,0.29 -1.36,-0.25 -0.89,-0.85 0.57,-0.89 0.92,-2.25 -0.09,-2.98 -0.29,-0.5 -0.47,-1.05 -0.78,-1.55 -0.4,-0.89 0.78,-1.64 0.24,-2.47 -0.08,-0.79 0.03,-1.86 0.83,-2.2 0.14,-0.65 0.77,-0.75 1.24,-1.03 0.37,-0.57 0.85,-1.53 0.39,-2.14 -0.33,-0.01 -0.98,-0.41 -0.42,-0.66 0.89,-0.64 -0.08,-1.79 -0.5,-2.43 -0.77,-0.68 -1.29,-1.57 -1.86,-2.39 -0.46,-0.27 -1.52,0.61 -1.57,-0.27 -0.7,-0.81 -1.74,0.49 -2.52,-0.23 -0.68,-0.25 -1.32,-0.7 -1.28,-1.49 -0.31,-0.7 -1.2,-0.87 -1.53,-1.59 -0.78,0.09 -1.77,0.36 -2.4,0.91 0.03,0.62 0.26,1.3 -0.05,1.94 -0.23,0.65 -1.17,1.5 -0.37,2.11 0.45,-0.04 0.51,0.29 0.28,0.64 -0.16,0.46 -0.82,1.35 -1.33,0.86 -0.47,-1.22 -2.01,-1.47 -3.06,-2.03 -0.91,-0.24 -1.39,-1.64 -2.49,-1.07 -0.57,0.21 -1.61,0.3 -1.56,-0.59 0.03,-0.97 -0.2,-1.89 -0.76,-2.69 -0.38,-1.2 -1.15,-2.19 -1.97,-3.13 -0.21,-0.88 -0.21,-1.91 -1.06,-2.5 -0.62,-0.9 -1.33,-1.81 -1.53,-2.92 -0.5,-0.71 -0.63,-1.56 -1.02,-2.3 -0.49,-0.6 -1.12,-1.45 -1.95,-1.33 -0.59,-0.79 0.23,-2.2 -0.69,-2.75 -0.98,-0.33 -1.11,-1.6 -1.99,-2.12 -1.1,-1.03 -1.8,-2.42 -2.88,-3.5 -0.57,-0.52 -0.83,-1.59 -0.12,-2.07 -0.04,-0.49 -0.64,-0.72 -0.73,-1.22 -0.87,-0.84 -1.83,-1.79 -2.99,-2.17 l -0.03,0.01 z", + "department-73" : "m 97.66,38.53 c -0.45,0.45 0.31,1.19 0.03,1.78 -0.43,2.3 -1.49,4.41 -1.88,6.69 -0.26,1.38 -0.01,2.88 -0.3,4.22 -0.62,0.31 0.02,1.17 -0.58,1.57 -0.45,1.17 -1.58,0.73 -2.56,0.64 -0.84,0.07 0.16,1.14 -0.18,1.71 -0.39,0.69 -1.23,1.27 -0.9,2.19 0.16,0.81 -0.73,0.85 -1.28,0.92 -0.46,0.22 -0.52,0.84 -0.99,1.02 -0.1,0.57 -0.89,1.04 -0.26,1.63 0.76,1.32 2.36,2.45 2.11,4.11 0.23,0.33 0.74,0.34 0.74,0.83 0.84,0.69 0.84,2 1.51,2.8 0.86,0.69 -0.26,2.79 1.33,2.79 0.69,-0.42 1.76,-0.43 2.21,0.36 0.87,0.8 2.15,0.9 3.13,1.6 0.57,0.15 0.69,0.71 1.06,1.03 0.59,0.02 1.32,-1.15 0.42,-1.31 -0.57,-0.83 0.26,-1.71 0.62,-2.42 0.32,-0.63 -0.18,-1.37 -0.02,-1.93 0.76,-0.47 1.65,-0.69 2.47,-1.04 0.43,0.56 1.01,1.07 1.58,1.39 0.13,0.76 0.39,1.57 1.26,1.79 0.96,0.51 2.24,-0.49 3,0.51 0.5,0.17 1.21,-0.47 1.46,0.31 0.64,1.59 2.48,2.51 2.66,4.3 -0.29,0.15 -0.79,0.54 -0.21,0.73 0.85,0.23 0.12,1.35 0.11,1.91 -0.05,0.98 -1.42,0.76 -1.63,1.63 -0.67,0.52 -0.97,1.32 -0.71,2.16 0.28,0.8 -0.52,1.41 -0.41,2.16 0.41,0.87 0.74,1.73 1.41,2.45 0.62,1.01 -0.59,1.95 -0.5,2.93 0.52,0.56 1.11,-0.22 1.49,-0.5 0.92,-0.1 1.37,0.91 2.13,1.15 0.63,-0.3 1.62,-0.2 1.66,0.68 -0.1,1.41 1.8,2.18 2.81,1.25 0.66,-0.79 1.23,0.33 1.67,0.84 0.46,0.64 0.68,1.43 0.45,2.15 0.54,0.74 1.75,0.36 2.53,0.62 0.86,0.16 1.93,1 2.66,0.13 0.38,-0.92 -0.65,-2.23 0.57,-2.71 0.35,-0.45 0.85,-0.56 1.27,-0.15 0.94,0.49 1.73,-0.4 2.13,-1.14 0.91,-0.24 1.86,0.12 2.72,0.29 0.82,-0.21 1.62,-0.67 2.1,-1.32 0.99,-0.68 2.46,0.1 3.22,-1.02 0.35,-0.43 0.97,-0.89 1.45,-0.3 0.85,0.52 2.11,0.47 2.52,1.51 0.72,0.63 1.87,0.09 2.61,-0.25 0.41,-0.56 -0.74,-1.63 0.24,-1.82 0.89,-0.31 2.18,-0.09 2.36,-1.31 0.28,-0.94 0.93,-1.71 1.94,-1.85 1,-0.19 1.97,-0.56 2.92,-0.94 0.28,0.29 0.55,1.02 1.07,0.58 0.47,-0.87 0.96,-2.03 2.06,-2.12 0.86,-0.78 0.12,-2.12 -0.06,-3.06 -0.11,-0.72 -1,-1.93 0.07,-2.33 0.68,-0.07 0.41,-0.73 0.59,-1.13 0.98,-0.99 1.63,-2.36 1.91,-3.7 -0.59,-0.97 -1.87,-1.22 -2.71,-1.87 -0.94,-0.95 -0.87,-3.04 -2.54,-3.15 -0.56,-0.01 -0.92,-0.42 -0.89,-0.96 -0.58,-0.7 -1.85,-0.56 -2.18,-1.57 -0.64,-1.44 -0.23,-3.2 -1.06,-4.6 -0.34,-1.1 0.49,-2.08 0.76,-3.02 -0.69,-0.83 -1.62,-1.51 -2.76,-1.31 -0.88,0.14 -0.91,-0.82 -1.25,-1.33 -0.99,-0.62 -2.63,-0.33 -3.11,-1.66 -0.83,-0.95 -1.39,-2.07 -1.33,-3.38 -0.05,-0.49 -0.09,-1.83 -0.91,-1.34 -0.91,0.06 -1.72,0.7 -1.99,1.6 -0.42,0.52 -0.86,1.4 -1.45,1.52 -0.4,-0.17 -1.27,-0.31 -0.7,-0.88 0.23,-0.66 -0.51,-1.2 -0.28,-1.88 -0.34,-0.89 -0.91,-2.04 -1.95,-2.2 -0.89,-0.13 -2.2,0.76 -2.83,-0.15 -0.09,-0.52 -0.37,-0.96 -0.88,-1.06 -0.73,-0.81 -1.07,-2.03 -1.15,-3.07 0.63,0.06 1.62,-0.31 1.26,-1.11 -0.35,-1.05 -1.53,-1.04 -2.36,-1.47 -0.67,-0.01 -0.86,0.94 -1.52,1.09 -0.85,0.88 -1.48,2.09 -1.51,3.3 -0.72,0.96 -0.91,2.25 -1.97,2.95 -0.76,0.61 -1.69,1.28 -1.54,2.39 -0.21,0.67 -0.99,1.04 -1.01,1.82 -0.45,0.97 -0.54,2.37 -1.86,2.41 -1.14,0.38 -2.33,0.53 -3.54,0.54 -0.06,-0.45 0.01,-1.66 -0.76,-1.32 -0.31,0.13 -0.76,0.69 -1.03,0.56 -0.25,-0.91 0.24,-2.16 -0.62,-2.79 -0.14,-0.81 -1.14,-1.57 -1.94,-1.35 -0.21,0.5 -0.78,0.26 -1.03,-0.06 -0.76,0.04 -0.24,1.32 -0.76,1.53 -0.34,-0.65 -1.25,-0.37 -1.8,-0.73 -0.47,-0.07 -0.73,0.7 -1.2,0.25 -0.48,-0.36 -1.21,-0.4 -1.7,-0.51 0.01,-0.61 -0.44,-1.04 -0.93,-1.29 0.04,-0.57 0.55,-1.77 -0.49,-1.68 -0.47,-0.1 -0.19,-0.97 -0.81,-1.05 -0.66,-0.37 -1.22,0.91 -1.76,0.14 -0.38,-0.36 -0.12,-1.3 -0.92,-1.18 -1.02,-0.5 -0.45,-1.96 -0.7,-2.86 -0.23,-1.29 -0.31,-2.65 -0.65,-3.91 -0.34,-0.35 -0.97,-0.38 -1.43,-0.38 z", + "department-74" : "m 134.25,3.96 c -1.98,0.51 -4.09,-0.11 -6.03,0.54 -1.69,0.88 -2.87,2.78 -4.92,2.88 -1.61,0.19 -3.71,0.06 -4.62,1.7 -1.07,1.17 -2.73,2.21 -2.73,3.97 0.1,0.69 1.48,0.71 0.93,1.55 -0.41,0.84 0.21,1.93 0.9,2.4 0.42,0.09 0.95,-0.58 1.26,0.01 0.37,0.53 0.48,1.32 -0.23,1.62 -1.53,1.19 -3.48,2.08 -4.62,3.7 0.15,0.96 -1.06,1.44 -1.7,1.89 -0.92,0.54 -2.12,0.67 -3,-0.02 -0.94,-0.11 -1.74,0.7 -2.72,0.57 -1.73,-0.1 -3.26,0.92 -4.94,1 -0.77,0.2 -1.52,0.85 -1.16,1.71 0.19,0.63 -0.32,1.15 -0.97,1 -0.99,0.19 -1.36,-0.93 -2.04,-1.36 -0.25,0.5 -0.16,1.27 -0.57,1.8 -0.32,1.76 -0.11,3.59 -0.18,5.37 -0.05,1.02 1.4,1.33 1.1,2.4 -0.08,0.89 -0.37,2.18 0.97,1.91 0.76,0.22 0.29,1.37 0.52,1.94 0.31,1.44 0.48,2.91 0.5,4.38 0.07,0.67 0.88,0.58 1.19,0.96 -0.06,0.61 0.65,1.43 1.18,0.8 0.34,-0.42 1.1,-0.12 1.48,0.06 -0.19,0.54 0.13,1.08 0.73,0.94 0.45,0.32 -0.03,1.12 0.02,1.58 0.26,0.43 0.87,0.53 0.99,1.06 0.58,0.39 1.43,1.09 2.13,0.73 0.22,-0.52 0.78,-0.22 1.09,0 0.59,0.21 1.53,0.05 1.32,-0.78 -0.01,-0.66 0.68,-0.27 0.9,0.03 0.57,0.28 0.97,-0.69 1.55,-0.21 0.84,0.25 1.11,1.08 1.58,1.67 0.61,0.22 0.16,1.19 0.32,1.69 -0.08,0.68 0.71,0.6 0.85,0.07 0.5,-0.09 1,0.52 0.86,1.04 0.4,0.7 1.5,0.24 2.16,0.27 0.76,-0.24 1.79,-0.22 2.32,-0.85 0.55,-0.82 0.59,-1.89 1.06,-2.69 0.59,-0.47 1.09,-1.17 0.58,-1.84 1.1,-1.12 2.6,-2.01 3.15,-3.6 0.44,-0.46 0.57,-1.04 0.46,-1.65 0.43,-1.24 1.14,-2.4 2.27,-3.1 0.25,-0.19 0.68,-1.23 1.02,-0.66 0.87,0.56 2.4,0.81 2.5,2.07 0.05,0.67 -0.39,0.98 -1.01,0.85 -0.65,0.38 0.05,1.31 0.13,1.87 0.25,0.92 1.4,1.05 1.58,2.03 0.48,0.87 1.65,0.01 2.41,0.12 0.73,-0.31 1.18,0.28 1.5,0.85 0.45,0.56 1.16,1.11 0.82,1.91 -0.09,0.58 0.7,0.95 0.24,1.52 -0.21,0.76 0.9,0.79 1.18,0.23 0.84,-0.71 0.9,-2.01 2.02,-2.43 1.02,-0.06 1.62,-1 1.61,-1.96 -0.09,-1.02 0.58,-2.66 1.85,-2.26 0.39,0.29 1.11,0.3 0.98,-0.35 0.01,-0.41 0.22,-0.99 0.72,-0.64 1.67,0.72 3.33,-0.42 4.67,-1.3 1.07,-1.02 1.17,-2.69 2.2,-3.73 0.24,-1.07 0.13,-2.38 -0.92,-2.98 -0.31,-0.29 0.4,-0.66 0.03,-1.04 -1.08,-1.72 -2.7,-3.09 -3.82,-4.78 -0.93,-0.47 -1.81,1.29 -2.7,0.56 -0.35,-0.84 0.72,-1.72 0.05,-2.53 0.03,-0.72 1.46,-1.61 0.49,-2.23 -0.76,-0.34 -1.61,-0.31 -2.36,-0.72 -0.84,-0.04 -2.06,-0.19 -2.06,-1.31 0.09,-1.22 0.81,-2.32 0.63,-3.6 0.03,-1.74 2.08,-2.69 2.14,-4.38 -0.61,-2.1 -2.81,-3.32 -3.41,-5.34 0.58,-0.82 1.83,-1.33 1.69,-2.56 0.1,-0.89 0.32,-2.26 -0.88,-2.5 -2.33,-0.82 -4.77,-1.84 -7.28,-1.85 z", + "department-01" : "m 56.91,0.14 c -0.49,1.07 -1.06,2.16 -1.02,3.38 -0.29,0.72 -1.14,1.22 -0.99,2.1 0.04,1.54 -0.71,2.9 -1.46,4.19 -0.56,0.8 -0.26,1.77 -0.39,2.66 -0.53,1.1 -0.96,2.27 -1.25,3.46 -0.34,0.69 -0.68,1.41 -0.76,2.2 -0.32,0.92 -0.66,1.88 -0.86,2.83 -0.48,0.71 -0.64,1.83 0.18,2.37 0.77,0.4 0.18,1.27 -0.06,1.85 -0.61,0.74 -0.98,1.62 -1.52,2.39 -0.5,0.39 -0.46,1.06 -0.06,1.5 0.47,0.7 -0.16,1.38 -0.6,1.88 -0.22,0.53 0.25,1.08 0.06,1.64 -0.08,1.3 0.72,2.66 0.16,3.91 -0.14,0.54 -1.17,0.78 -0.77,1.42 0.48,0.51 1.26,0.43 1.86,0.28 0.53,0.2 0.57,1.07 1.24,1.04 0.62,0.14 0.49,0.93 0.43,1.38 0.64,0.1 1.17,-0.74 1.83,-0.69 0.2,0.49 0.93,0.38 1.08,0.89 0.68,0.17 0.23,1.17 0.94,1.37 0.32,0.18 0.95,0.26 0.54,0.74 -0.52,0.8 0.71,1.25 0.61,2.05 0.15,0.6 -0.13,1.43 0.33,1.89 0.71,-0.05 1.5,-0.32 2.22,-0.02 0.55,0.17 1.1,-0.37 1.59,-0.02 0.92,0.11 1.74,-0.41 2.67,-0.27 0.5,0.1 1.1,-0.22 1.54,-0.02 0.41,0.36 0.96,-0.22 1.39,0.22 0.65,0.3 1.45,0.29 1.91,0.94 0.59,0.48 0.64,1.6 1.57,1.57 1.01,0.16 1.77,-0.74 2.51,-1.28 0.62,-0.75 1.22,-1.55 1.41,-2.53 0.17,-0.92 0.55,-1.87 1.4,-2.35 0.48,-0.41 0.58,-1.4 1.39,-1.23 0.9,0.71 1.89,1.34 2.73,2.12 0.18,0.4 0.34,0.83 0.78,1.04 0.34,0.28 0.23,0.75 -0.19,0.84 -0.52,0.87 0.49,1.69 0.97,2.32 1,1.09 1.71,2.45 2.87,3.43 0.52,0.35 0.44,1.39 1.22,1.33 0.71,0.05 0.73,0.94 1.34,1.2 0.38,0.18 0.48,0.82 -0.06,0.84 -0.24,-0.19 -0.5,-1.04 -0.84,-0.52 -0.01,0.46 0.15,1.27 0.76,1.2 0.43,0.12 0.74,0.44 0.95,0.81 0.46,0.32 0.94,0.65 0.91,1.28 0.25,0.68 0.51,1.5 1.13,1.93 0.44,-0.01 0.18,-0.66 0.6,-0.8 0.31,-0.32 0.4,-0.95 0.98,-0.82 0.67,0.07 1.4,-0.61 0.93,-1.25 -0.28,-1.01 1.48,-1.4 0.96,-2.46 -0.04,-0.3 -0.43,-0.75 -0.22,-1 0.83,-0.21 1.81,0.29 2.55,-0.17 0.23,-0.53 0.92,-0.89 0.68,-1.57 -0.1,-0.3 -0.02,-0.49 0.27,-0.58 0.35,-1.03 0.08,-2.2 0.23,-3.27 0.04,-0.94 0.14,-1.89 0.62,-2.7 0.38,-1.77 1.24,-3.44 1.41,-5.25 -0.09,-0.5 -0.37,-1 -0.05,-1.49 0.4,-1 0.57,-2.37 -0.43,-3.09 -0.54,-0.85 -0.37,-1.99 -0.41,-2.97 -0.1,-0.67 0.17,-1.29 0.16,-1.93 -0.45,-0.95 0.55,-1.87 0.48,-2.85 0.04,-0.57 0.81,-0.34 0.98,0.04 0.36,0.6 0.97,0.99 1.69,0.84 0.76,0.04 0.52,-0.9 0.34,-1.33 -0.12,-0.5 0.31,-0.92 0.76,-1.04 0.43,-0.38 0.93,-0.62 1.51,-0.47 0.59,-0.03 1.17,-0.3 1.68,-0.54 0.45,-0.65 1.03,-1.31 1.22,-2.08 -0.31,-0.84 -1.39,-1.27 -1.52,-2.16 0.46,-1.01 1.65,-1.39 2.53,-1.92 0.77,-0.34 1.54,-0.91 2.43,-0.75 0.65,-0.13 1.62,-0.15 1.91,-0.86 0.1,-0.77 -0.59,-1.47 -0.57,-2.17 0.86,-1.31 1.26,-2.83 2.04,-4.2 0.38,-0.67 0.56,-1.63 -0.2,-2.13 -1.02,-0.79 -1.96,-1.85 -3.23,-2.19 -1.24,0.28 -1.52,1.75 -2.47,2.44 -0.78,0.67 -1.68,1.24 -2.11,2.22 -0.55,0.76 -0.82,1.83 -1.57,2.41 -0.35,-0.05 -0.85,-0.16 -0.88,0.36 -0.08,0.59 -0.21,1.51 -1.01,1.42 -0.67,0.18 -0.84,1.24 -1.61,1.09 -0.38,0.17 -0.68,0.53 -1.16,0.4 -1.51,-0.11 -3.04,-0.61 -4.55,-0.15 -0.38,0.12 -0.87,0.13 -0.89,-0.38 -0.29,-0.81 0.26,-1.94 -0.49,-2.55 -0.43,-0.18 -1.02,0 -1.23,-0.54 -0.34,-0.55 -1.09,-0.46 -1.57,-0.68 0.09,-0.27 0.04,-1.01 -0.38,-0.66 -0.41,0.49 -1.35,0.53 -1.34,1.34 -0.16,0.82 -0.74,1.73 -1.69,1.61 -0.51,0.16 -0.58,0.81 -1.05,1.08 -0.87,0.95 -2.33,0.62 -3.46,0.56 -0.69,-0.22 -0.94,-1.11 -0.62,-1.7 0.37,-0.42 0.73,-1.18 0.42,-1.72 -0.48,-0.44 -1.2,0.65 -1.54,-0.03 -0.31,-0.43 -0.18,-1.34 -0.72,-1.46 -0.36,0.59 -0.05,1.57 -0.57,2.07 -0.32,-0.18 -0.19,-0.8 -0.26,-1.15 0.16,-0.95 -1.12,-1.1 -1.29,-1.87 0.08,-0.45 -0.32,-0.75 -0.49,-1.07 0.23,-0.37 0.9,-0.78 0.19,-1.1 -0.64,-0.72 -1.67,-0.69 -2.4,-1.29 -0.13,-0.15 -0.65,-0.32 -0.57,-0.51 0.4,-0.14 0.21,-0.68 0.62,-0.81 0.26,-0.57 -0.25,-1.41 -0.93,-1.26 -0.86,-0.03 -1.68,-0.3 -2.41,-0.74 -0.52,-0.02 -0.79,-0.58 -1.25,-0.74 -0.08,-0.44 -0.3,-0.89 -0.39,-1.33 0.01,-0.41 -0.32,-0.72 -0.38,-1.11 -0.29,-0.26 -0.75,-0.17 -1.08,-0.38 -0.41,0.01 -0.53,0.67 -1.02,0.4 -0.32,-0.1 -0.68,-0.03 -0.8,0.28 -0.5,0.18 -0.93,0.78 -1.5,0.43 -0.8,-0.19 -1.31,0.88 -2.13,0.68 -0.9,-0.34 -1.77,-0.82 -2.38,-1.57 -0.6,-0.4 -1.52,-0.56 -1.94,0.14 -0.43,0.35 -0.8,-0.21 -0.95,-0.54 -0.04,-0.06 -0.12,0.01 -0.17,0.02 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_83.js b/lib/mapael-maps/france/france_region_83.js new file mode 100644 index 000000000..c4399b08c --- /dev/null +++ b/lib/mapael-maps/france/france_region_83.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Auvergne for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_83 : { + width : 110.71876, + height : 144.4375, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -94.0269; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3087.5024; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-15" : "m 20.54,87.49 c -0.8,0.47 -0.55,1.75 -0.9,2.51 -0.23,0.79 -0.46,1.95 0.55,2.33 0.68,0.2 1.19,1.37 0.36,1.68 -0.68,0.1 -1.38,0.38 -1.84,0.85 -0.22,-0.59 -0.71,-0.98 -1.37,-0.9 -0.65,-0.21 -1.06,-0.93 -1.8,-0.93 -0.75,-0.43 -1.44,-1.39 -2.42,-0.99 -0.15,0.71 0.76,1.28 0.5,2.06 0.08,1.04 -0.51,1.95 -0.36,2.97 -0.23,1 -1.53,0.46 -1.97,1.28 -0.63,0.7 -0.79,2.09 -1.96,2.04 -0.61,0.2 -0.43,1.06 -1.07,1.28 -0.46,0.53 -0.4,1.28 -1.04,1.71 -0.68,0.7 -2.08,1.8 -1.19,2.84 -0.03,0.84 0.59,1.39 1.24,1.81 0.49,0.35 0.07,0.63 -0.34,0.68 -0.49,0.53 -0.58,1.38 -1.33,1.7 -0.57,0.44 0.16,1.17 -0.34,1.67 -0.24,0.61 -0.04,1.39 -0.55,1.91 -0.78,-0.52 -1.73,-0.13 -2.35,0.49 -1.01,0.52 -1.2,1.33 -0.47,2.2 0.21,0.93 0.8,1.65 1.52,2.27 -0.18,0.73 -0.43,1.67 -1.39,1.53 -0.66,-0.01 -2,-0.23 -2,0.76 C 0.51,121.97 0.4,122.86 0.64,123.66 c 0.3,0.55 1.52,1.14 0.86,1.83 -1.08,0.51 -0.57,1.84 0,2.54 0.89,1.19 1.4,2.75 2.77,3.51 0.31,0.45 0.16,1.1 0.4,1.6 0.04,0.64 -0.31,1.19 -0.75,1.58 -0.26,1.34 0.1,2.82 -0.89,3.92 -0.44,0.46 0.18,1.23 0.6,0.63 0.65,-0.21 0.94,0.84 1.23,1.25 0.32,0.6 -0.37,1.16 -0.17,1.83 -0.08,0.98 0.87,1.77 1.67,2.09 0.71,-0.46 -0.43,-1.47 0.36,-1.96 0.55,-0.64 1.48,-0.04 2.06,-0.63 0.97,-0.35 2.18,-0.72 3.19,-0.52 0.33,0.53 0.14,1.54 1.03,1.58 0.7,0.06 1.26,-0.63 2,-0.29 0.8,0.04 1.74,0.7 2.4,-0.06 0.63,0.11 1.57,-0.18 1.68,-0.94 0.13,-1.84 2.06,-2.71 2.86,-4.17 0.05,-1.23 0.24,-2.48 0.79,-3.58 0.42,-0.53 1.52,-0.41 1.41,-1.32 -0.06,-0.78 0.04,-1.52 0.48,-2.16 -0.04,-0.41 -0.34,-0.8 0.15,-1.11 0.51,-0.56 0.58,-1.91 1.65,-1.49 0.72,-0.1 0.28,-1.1 0.85,-1.45 0.34,-0.65 0.91,-0.94 1.61,-0.93 0.57,-0.42 0.4,-1.41 1.16,-1.62 0.17,-0.27 0.58,-0.77 0.76,-0.27 1.47,0.42 1.53,2.3 1.48,3.57 -0.14,0.75 -0.39,2.33 0.6,1.06 0.73,-1.02 2.09,0 3.04,-0.58 0.65,0.13 -0.05,1.09 0.28,1.52 0.45,1.38 0.62,3.08 1.62,4.24 0.56,0.41 0.9,-0.91 1.34,-0.23 0.5,0.54 0.78,1.43 0.09,1.96 -0.11,0.47 0.47,0.83 0.26,1.37 -0.15,0.53 -0.4,1.04 -0.15,1.64 0.37,1.19 0.49,2.48 1.31,3.48 0.23,0.37 0.48,1.44 1.06,0.8 0.65,-1.26 0.93,-2.71 1.58,-3.95 0.41,-0.21 1.34,-0.62 0.63,-1.1 -0.45,-1.29 0.9,-2.28 0.73,-3.59 -0.09,-1.08 0.3,-2.31 1.27,-2.84 0.13,-0.34 -0.31,-0.95 0.35,-0.67 1.02,0.18 0.53,-1.07 0.74,-1.61 0.55,-0.61 -0.09,-1.77 0.84,-2.13 0.33,-0.36 0.53,-1.12 1.19,-0.76 0.91,0.61 0.94,2.25 2.15,2.42 0.26,-0.4 0.65,-0.55 1.11,-0.64 1.05,-0.31 0.61,-1.47 0.63,-2.24 0.53,-0.24 1.01,-0.69 0.88,-1.35 -0.13,-0.45 0.63,-1.12 0.89,-0.63 -0.07,0.88 1.08,0.82 1.44,0.22 0.86,-0.41 1.54,-1.27 2.52,-1.38 0.71,-0.64 -1.13,-1.9 0.29,-2.11 0.64,-0.29 0.29,-0.97 -0.28,-0.94 -0.16,-0.45 -0.76,-0.43 -1.06,-0.53 0.29,-0.55 -0.22,-0.96 -0.73,-0.7 -0.67,-0.04 -0.58,-1.1 -0.62,-1.59 -0.16,-0.89 0.65,-1.74 0.31,-2.57 -0.41,-0.15 -0.94,-0.21 -0.99,-0.78 -0.26,-0.69 0.9,-0.7 1.22,-0.31 0.61,0.54 1.49,0.28 1.98,-0.27 -0.39,-0.34 -1.23,-0.16 -1.68,-0.66 -0.38,-0.38 -0.95,-0.37 -1.39,-0.4 -0.5,-0.67 -0.36,-1.65 -0.94,-2.25 -0.37,-1.17 0.22,-2.46 -0.14,-3.59 -0.5,-0.42 -1.6,-0.39 -1.37,-1.33 0,-0.66 -0.76,-1.02 -0.43,-1.73 0.44,-1.02 -0.85,-1.8 -1.68,-1.31 -0.39,0.23 -1.26,0.51 -1.05,-0.29 -0.08,-0.92 -1.3,-0.26 -1.84,-0.3 -0.62,0.05 -1.3,-0.23 -1.8,-0.47 0.03,-0.67 1.21,-0.55 1.1,-1.18 -0.13,-0.35 -1.09,-0.81 -0.6,-1.17 0.87,0.12 0.9,-1.17 0.45,-1.61 -0.63,-0.11 -0.52,0.98 -1.2,1 -0.57,0.11 -0.75,0.65 -0.58,1.15 -0.16,1.14 -1.56,1.37 -2.18,2.11 -1.18,-0.06 -1.99,-1.07 -3.06,-1.45 -1.06,-0.93 -1.25,-2.39 -1.6,-3.66 -0.67,-0.36 -1.34,-1.28 -2.13,-0.66 -0.55,-0.57 -1.17,-1.16 -2.01,-1.13 -0.36,-0.29 -0.79,-0.56 -1.22,-0.13 -0.41,0.34 -0.74,0.73 -1.34,0.48 -0.77,-0.05 -1.74,-0.56 -2.31,0.22 -0.84,0.11 -0.99,-1.16 -1.61,-1.52 -0.54,-0.59 0.06,-1.36 0.03,-1.96 -0.53,-0.21 -1.24,0.25 -1.68,-0.33 -0.27,-0.28 -0.72,-0.17 -0.99,-0.21 -0.09,-0.45 -0.4,-1.36 -0.93,-0.71 -0.65,0.57 -1.42,0 -1.91,-0.46 -0.43,-0.29 -1.12,0.55 -1.39,0.11 0.09,-0.46 0.48,-1.26 -0.3,-1.32 -0.16,-0.03 -0.32,-0.08 -0.49,-0.05 z", + "department-63" : "m 36.07,36.38 c -0.9,0.17 -1.93,0.8 -1.63,1.88 -0.04,0.64 -0.03,1.64 -0.67,1.93 -0.87,-0.07 -1.43,-0.79 -2.22,-1.03 -0.34,-0.27 -1.24,-1.11 -1.38,-0.25 -0.22,0.71 0.33,2.04 -0.57,2.36 -0.82,-0.05 -1.83,0.3 -1.86,1.24 -0.49,0.88 -0.51,2.67 -1.83,2.71 -0.68,-0.25 -1.34,-0.6 -2.06,-0.62 -0.52,-0.14 -1.26,-1.29 -1.43,-0.28 -0.75,2.24 -0.21,5.13 1.87,6.46 0.55,1.12 -0.72,2.5 0.2,3.58 0.42,0.44 0.29,1.08 -0.34,1.16 -0.64,0.15 -1.25,0.5 -1.41,1.16 -0.74,0.36 -1.47,1.64 -0.51,2.17 -0.92,1 -2.18,1.76 -2.75,3.07 -0.43,0.55 -0.88,-0.38 -1.42,-0.08 -0.73,-0.07 -0.93,0.62 -0.72,1.19 -0.27,0.73 -1.2,1.2 -1.97,0.99 -0.95,0.11 -0.35,1.23 0.08,1.59 0.71,0.78 1.26,1.68 1.41,2.72 0.75,0.68 1.75,1.04 2.37,1.88 0.92,1.13 2.18,2.68 1.52,4.2 -0.5,0.53 -0.03,1.09 0.12,1.61 -0.05,0.65 -0.53,1.13 -1.22,0.93 -1.22,0.13 -0.47,1.7 -1.15,2.33 -0.81,0.72 0.26,1.64 0.64,2.28 0.3,0.56 0.86,0.86 1.3,1.2 0.32,1.19 -0.12,2.39 -0.19,3.56 0.19,0.33 -0.03,0.88 0.53,0.96 0.54,0.06 1.08,0.26 0.82,0.92 0.08,0.9 1.24,-0.1 1.53,0.68 0.39,0.43 1.2,0.75 1.49,0.04 0.18,-0.43 0.8,-0.56 0.81,0.02 -0.03,0.62 0.49,0.89 1.01,0.91 0.45,0.59 1.19,0.32 1.8,0.38 0.43,0.52 -0.55,1.33 -0.05,1.93 0.45,0.46 0.73,1.2 1.27,1.51 0.66,-0.09 1.29,-0.72 1.94,-0.22 1,0.46 1.88,-0.49 2.76,-0.64 0.52,0.67 1.75,0.04 2.01,1.04 0.19,0.5 0.66,0.35 0.97,0.1 0.68,0.07 1.06,0.89 1.74,0.99 0.5,1.27 0.5,3.04 1.78,3.86 1.01,0.13 1.76,1.47 2.82,1.2 0.36,-0.8 1.81,-0.67 1.89,-1.76 -0.09,-0.71 0.31,-1.41 1.02,-1.51 0.55,-0.36 0.6,-1.29 1.44,-0.93 0.89,-0.13 2.12,0.47 2.84,-0.21 0.09,-0.52 0.72,-0.45 0.99,-0.84 0.48,-0.08 1.03,-0.16 1.07,-0.76 0.22,-0.6 0.77,-0.87 1.37,-0.68 1.07,0.03 1.77,-0.88 2.12,-1.77 0.69,-0.51 1.05,1.29 1.62,0.84 -0.08,-0.56 0.46,-1.5 1.07,-0.97 0.55,0.59 0.99,1.39 1.94,1.15 1.05,-0.15 2.6,0.69 3.14,-0.58 0.37,-0.44 1.02,-1.18 1.63,-0.9 0.08,1.24 1.62,2.04 2.72,1.75 0.49,-0.47 0.61,0.71 0.83,0.98 0.29,1.12 0.69,2.25 1.69,2.94 0.62,0.36 0.9,-0.92 1.43,-1.22 0.58,-0.36 0.63,-1.51 1.36,-1.54 0.58,0.21 1.15,0.67 1.18,1.27 0.73,0.19 1.49,0.22 2.22,0.49 1.08,0.45 1.66,-0.06 1.54,-1.17 0.02,-0.73 0.96,-1.74 1.55,-0.84 0.32,0.23 0.83,0.07 0.79,0.61 0.48,0.72 1.45,1.53 2.35,1.31 0.49,-1.22 -0.43,-2.88 0.75,-3.87 0.66,-0.68 1.55,-1.15 2.45,-1.39 0.15,-0.28 -0.09,-0.59 0.31,-0.72 0.35,-0.78 -0.28,-1.84 0.59,-2.41 0.6,-0.8 -0.69,-1.05 -0.83,-1.74 -0.51,-0.94 -0.58,-2 -0.6,-3.03 -0.47,-1.47 -1.59,-2.72 -3.05,-3.22 -0.65,-0.25 -0.85,-0.93 -1.36,-1.28 -0.76,-0.16 -1.53,-0.51 -1.59,-1.4 -0.33,-0.58 -0.83,-1.01 -0.99,-1.67 -0.65,-0.88 -1.01,-1.92 -0.83,-3.02 0.05,-0.69 -0.67,-1 -0.92,-1.6 -0.35,-0.21 -0.82,-0.14 -1.02,-0.63 -0.43,-0.33 -0.31,-0.69 -0.11,-1.07 -0.03,-1.02 -1.88,-0.88 -1.71,-1.93 0.79,-0.61 1.44,-1.71 1.27,-2.74 -0.11,-0.73 -0.3,-1.64 -0.21,-2.31 1.01,0.04 1.78,-1.19 1.1,-2.04 -0.49,-0.79 -1.15,-1.51 -2.04,-1.81 -0.63,-0.4 -0.82,-1.1 -1.07,-1.72 -0.51,-0.69 -1.54,-0.26 -2.1,-0.73 -0.22,-1.31 -0.82,-2.67 -1.72,-3.64 -0.54,-0.1 -1.02,0.5 -1.62,0.36 -0.58,0.22 -1.2,-0.61 -1.65,-0.01 -0.82,0.24 -1.7,0.24 -2.55,0.36 -0.16,-1.02 0.35,-2.45 -0.53,-3.22 -0.52,-0.14 -1.11,-0.11 -1.4,-0.67 -1.39,-0.19 -2.43,1.26 -3.76,1.5 -0.64,0.34 -0.37,-0.83 -1.07,-0.8 -1.34,-0.6 -2.95,0 -4.25,-0.61 -0.38,-0.23 -0.91,-0.62 -1.46,-0.38 -0.43,0.23 -0.75,0.61 -1.32,0.45 -0.86,0.02 -1.62,-0.32 -2.26,-0.84 -0.93,0.04 -0.64,-1.09 -0.86,-1.66 -0.67,-0.77 -1.62,0.57 -2.42,0.11 -0.59,-0.04 -1.39,0.11 -1.54,-0.67 -0.34,-0.71 -1.13,-0.62 -1.75,-0.66 -0.82,-0.78 -0.42,-2.23 -1.05,-3.05 -0.44,-0.2 -1.62,-0.12 -1.61,-0.77 0.75,-0.57 -0.48,-1.69 0.33,-2.32 0.48,-0.19 0.82,-0.59 0.63,-1.13 0.32,-0.41 0.14,-0.99 -0.45,-1.03 -1,-0.13 -2.04,-0.13 -3.01,-0.33 z", + "department-43" : "m 65.15,91.27 c -0.94,0.35 -1.29,1.86 -2.53,1.58 -1.2,0 -2.77,0.21 -3.47,-1.01 -0.39,-0.64 -1.13,-0.17 -1.15,0.45 -0.05,0.3 -0.32,1.06 -0.58,0.43 -0.16,-0.42 -0.81,-1.54 -1.27,-0.77 -0.25,1.3 -1.7,1.6 -2.81,1.66 -0.71,0.12 -0.4,1.59 -1.2,1.31 -0.71,-0.07 -1.14,0.68 -1.45,1.14 -0.95,0.16 -1.95,-0.15 -2.88,0.03 -0.03,0.66 0.33,1.7 -0.68,1.81 -0.25,0.42 1.01,0.58 0.54,1.18 -0.23,0.26 -1.01,0.49 -0.44,0.87 0.82,0.6 1.92,0.23 2.65,-0.19 0.47,0.33 0.23,1.13 0.68,1.36 0.52,-0.44 1.29,-0.69 1.91,-0.21 1.07,0.46 0.13,1.75 0.75,2.5 0.26,0.57 0.06,1.59 1.01,1.62 0.44,0.16 1.2,0.33 0.85,0.98 -0.31,0.97 -0.78,2.54 0.29,3.17 0.36,0.22 -0.14,0.88 0.17,1.23 0.08,0.63 0.62,0.62 1.07,0.75 0.62,0.54 1.45,0.56 2.11,0.93 0.74,0.44 -0.42,0.69 -0.75,0.83 -0.77,0.39 -1.54,-0.95 -2.18,-0.33 -0.32,0.93 1.39,0.61 1.06,1.55 -0.25,1.03 -0.69,2.28 -0.19,3.28 0.35,0.35 1.08,-0.03 1.33,0.25 -0.02,0.88 1,1.15 1.63,1.35 0.03,0.7 -0.64,0.98 -1.03,1.36 -0.19,0.68 0.69,0.61 1.05,0.72 0.11,0.81 0.68,1.24 1.45,1.13 0.78,0.62 0.25,1.87 0.58,2.72 0.32,1.25 1.05,2.35 1.2,3.64 0.23,0.6 0.73,1.03 0.75,1.71 0.3,0.53 0.64,1.19 1.12,1.54 0.71,-0.23 1.03,-1.22 1.92,-1.1 0.75,0.05 1.51,-0.43 2.2,-0.36 0.67,0.33 0.76,-0.83 0.88,-1.27 0.24,-0.54 -0.1,-1.45 0.33,-1.77 0.96,-0.09 2.39,-0.25 2.88,0.76 0.23,0.48 0.81,0.93 0.38,1.52 -0.87,0.9 0.04,0.97 0.85,0.68 0.73,-0.06 1.51,-0.09 2.14,-0.38 0.88,0.42 0.93,1.58 1.37,2.3 0.94,0.32 1.52,1.34 1.84,2.23 0.51,0.29 1.2,-0.83 1.66,-0.08 0.11,0.51 -0.87,1.24 0.03,1.53 0.63,0.5 1.05,-0.29 1.57,-0.47 0.8,0.17 1.2,-0.77 1.92,-0.92 0.12,-0.54 0.09,-1.15 0.5,-1.63 0.56,-0.74 0.25,-2.21 1.42,-2.35 0.42,0 0.35,1.16 0.93,0.73 0.13,-0.29 -0.2,-0.98 0.38,-0.74 0.57,0.24 0.81,-0.38 1.36,-0.27 0.51,-0.28 -0.21,-0.89 0.12,-1.32 0.07,-0.68 0.43,-1.42 1.24,-1.22 1.04,0.12 2.07,-0.05 3,-0.44 0.74,0.15 1.86,0.66 2.31,-0.24 0.71,-0.17 0.69,-0.95 0.79,-1.51 0.54,-1.15 1.7,-1.98 1.79,-3.35 0.03,-0.64 0.66,-0.95 1.19,-0.56 0.73,0.26 1.39,-0.3 2.13,-0.29 0.53,-0.09 1.02,-0.71 0.45,-1.09 -1.16,-0.84 -0.33,-3.01 1.08,-2.97 0.64,0.06 1.23,-0.14 1.78,-0.38 0.8,-0.01 0.64,-1.42 -0.14,-1.31 -0.62,-0.28 -1.07,-1 -0.53,-1.58 0.38,-0.37 0.24,-0.94 0.4,-1.33 0.41,-0.51 1.83,-0.04 1.58,-1 -0.35,-0.58 -1.42,-0.81 -0.95,-1.68 0.21,-0.52 1.08,0.01 1.49,-0.09 0.71,0.08 1.07,0.7 1.11,1.33 0.45,0.44 1.26,-0.25 0.67,-0.7 -0.56,-1.33 0.48,-2.56 1.24,-3.54 0.33,-0.78 -0.04,-1.77 0.58,-2.42 -0.09,-1.29 -1.55,-1.95 -2.18,-2.98 -0.49,-0.98 -1.68,0.05 -2.27,0.45 -0.8,0.36 -1.63,-0.71 -1.69,-1.28 0.27,-0.45 0.93,-1.37 0.06,-1.55 -0.38,-0.36 -1.47,-0.89 -0.65,-1.34 0.42,-0.5 1.59,-1.25 0.74,-1.91 -0.54,-0.48 -1.4,-1.4 -2.17,-0.92 -0.38,0.54 -1.63,0.77 -1.87,-0.08 -0.3,-0.35 -0.78,-0.42 -0.95,-0.93 -0.58,-0.73 -1.43,-0.11 -2.14,-0.09 -0.6,-0.47 -1.71,-0.67 -2.19,0.03 0,0.36 0.52,1.07 -0.16,1.1 -0.65,-0.02 -1.67,-0.33 -1.79,0.58 -0.53,-0.16 -1.34,-0.02 -1.41,0.7 0.04,0.48 -0.49,0.9 -0.76,0.33 -0.17,-0.7 -1.17,-1.16 -1.5,-0.3 -0.22,0.22 -0.18,1.1 -0.55,0.95 -0.4,-0.8 -0.82,-1.6 -1.37,-2.3 -0.02,-0.69 -0.76,-0.53 -1.15,-0.31 -0.47,-0.1 -1.08,-0.11 -1.16,0.51 -0.38,0.37 -0.83,0.7 -0.81,1.3 -0.12,0.3 -0.56,0.92 -0.72,0.29 -0.13,-0.49 -0.25,-1.09 -0.92,-1.07 -0.64,-0.07 -1.26,-0.22 -1.67,-0.71 -0.6,0.1 -0.36,-0.46 -0.57,-0.79 -0.26,-0.26 -0.74,-0.11 -0.85,-0.58 -0.86,-0.52 -1.31,0.78 -1.2,1.45 0.17,0.68 -0.45,1.07 -1.07,0.86 -0.96,-0.1 -1.84,-0.48 -2.8,-0.6 -0.45,-0.38 -0.73,-1.57 -1.52,-1.15 -0.32,0.44 -0.2,1.16 -0.84,1.28 -0.54,0.35 -0.91,1.83 -1.74,1.22 -0.91,-0.61 -1.4,-1.57 -1.53,-2.63 -0.16,-0.64 -0.63,-1.14 -1.31,-1.01 -1.03,-0.19 -2.11,-0.67 -2.45,-1.74 -0.08,-0.09 -0.21,-0.14 -0.33,-0.12 z", + "department-03" : "m 41.09,0.09 c -0.53,0.03 -0.65,0.93 -1.28,0.58 -1.07,-0.24 -1.29,1.09 -2.18,1.35 -0.68,0.38 -0.83,1.21 -1.57,1.57 -0.59,0.3 -0.37,1.08 -0.67,1.47 -0.82,-0.75 -2.14,-0.58 -2.85,0.25 -0.56,0.51 -1.31,0.26 -1.58,-0.42 -0.26,-0.45 -0.61,-1.5 -1.29,-0.94 -0.65,0.39 -0.38,1.55 -1.28,1.63 -0.49,0.33 -0.44,1.07 -1.07,1.29 -0.54,0.29 -0.85,0.95 -1.54,0.66 -0.62,0.1 -0.27,0.76 -0.06,1.06 0.07,0.49 -0.16,1.38 -0.8,0.88 -0.59,-0.44 -1.77,-0.28 -2.01,0.33 0.58,0.17 1.69,0.86 1,1.55 -0.36,0.28 -0.06,0.77 -0.23,1.04 -0.67,0.39 -0.15,1.28 0.46,1.35 0.61,0.77 0.55,1.86 0.72,2.79 -1.18,0.73 -2.34,1.71 -3.62,2.11 -0.29,-0.68 -0.88,-0.33 -1.32,-0.08 -0.47,0.1 -0.2,-0.76 -0.8,-0.58 -1.03,0.35 -2.03,0.8 -3.17,0.71 -1.3,0.06 -2.78,0.14 -3.58,1.33 -0.8,0.47 -0.02,1.59 -0.84,2.01 -0.42,0.05 -0.96,-0.06 -1.15,0.48 -0.78,1.48 -0.9,3.37 -0.4,4.96 0.26,0.38 0.79,0.29 1.15,0.57 0.49,0.09 1.26,0.02 1.06,0.79 0.02,0.4 -0.72,0.13 -0.85,0.54 -1.01,0.83 0.27,2.03 1.17,2.2 0.58,-0.08 0.87,0.54 1.33,0.59 0.39,-0.14 0.38,-1.36 0.9,-0.77 0.76,0.62 1.67,1.41 1.25,2.52 0.36,0.53 0.91,-0.64 1.46,-0.19 0.81,0.23 1.7,0.87 1.45,1.84 0.14,1.11 1.68,1.3 1.67,2.49 0.4,1.14 -0,3.01 1.48,3.41 0.81,0.19 0.41,1.35 0.75,1.93 0.25,0.78 1.04,1.13 1.79,1.18 0.65,0.32 1.81,1 2.22,-0.03 0.46,-0.9 0.75,-1.9 1.09,-2.8 0.55,-0.73 1.89,-0.29 2.08,-1.36 0.24,-0.68 -0.44,-1.52 0.43,-1.96 0.66,-0.22 0.95,0.83 1.63,0.76 0.55,0.39 1.4,1.36 2.04,0.56 0.42,-0.83 -0.03,-1.98 0.37,-2.71 0.72,-0.31 1.49,-1.18 2.3,-0.64 1.07,0.12 2.57,-0.1 3.28,0.88 -0.24,0.56 -0.03,1.41 -0.79,1.61 -0.76,0.37 -0.44,1.16 -0.29,1.75 -0.13,0.49 -0.09,1.14 0.58,1.12 0.68,-0.1 1.21,0.33 1.13,1.02 0.09,0.86 0.18,2.33 1.42,2.14 0.89,0.14 1.21,1.58 2.25,1.17 0.81,0.52 1.65,-0.25 2.49,-0.28 0.45,0.5 0.3,1.19 0.45,1.75 0.87,0.19 1.51,1 2.48,1.02 0.76,0.25 1.24,-0.53 2.01,-0.38 0.48,-0.11 0.79,0.09 1.13,0.28 0.44,-0.22 0.55,0.55 1.06,0.34 1.38,-0.06 2.97,-0.26 4,0.88 0.96,0.41 1.66,-0.65 2.44,-0.96 0.64,0.07 1.32,-0.9 1.79,-0.16 0.31,0.43 0.85,0.4 1.28,0.42 0.72,0.93 0.57,2.17 0.55,3.26 1.03,0.14 2.05,-0.24 2.95,-0.62 0.45,0.01 0.76,0.46 1.28,0.23 0.59,0.08 1.31,-0.75 1.72,0 0.77,0.99 1.15,2.22 1.65,3.32 0.67,0.5 2.27,0.29 2.14,1.5 0.41,0.47 0.99,-0.52 0.95,-0.95 -0.15,-0.63 0.53,-1.04 1.07,-0.73 0.48,0.22 1.27,0.4 1.28,-0.34 0.41,-0.77 1.09,0.48 1.68,-0.03 0.66,-0.43 2.17,-0.85 1.53,-1.93 -0.55,-1.45 -0.99,-3.06 -0.37,-4.56 0.35,-0.94 -0.22,-1.78 -0.75,-2.44 -0.09,-0.98 -0.2,-2.05 -0.29,-3.01 0.9,-0.02 0.57,-0.74 0.19,-1.26 -0.62,-1 0.1,-2.51 -0.98,-3.26 -0.34,-0.41 -0.36,-1.4 0.42,-1.13 0.62,0.33 1.04,-0.24 1.05,-0.81 0.86,-0.77 2.51,-0.06 3.19,-1.15 0.39,-0.12 0.9,-0.24 0.79,-0.8 0.24,-1.13 2.3,-0.37 2.35,-1.71 -0.01,-1.08 1.5,-0.38 2.04,-0.87 -0.47,-0.98 0.15,-2.27 -0.18,-3.37 -0.22,-0.75 -0.56,-1.54 -0.06,-2.26 -0.09,-0.66 0.49,-1.17 0.25,-1.83 0.92,-0.68 0.27,-2.39 -0.81,-2.61 -0.47,-0.05 -0.91,-0.14 -0.99,-0.67 -0.62,-0.48 -1.88,-0.87 -2.29,0.07 -0.58,0.43 -1.56,-0.12 -1.78,-0.72 0.04,-0.44 0.16,-1.45 -0.59,-1.13 -0.61,-0.09 -0.16,-0.76 -0.46,-1.01 -0.68,-0.03 -1.24,0.99 -1.91,0.34 -0.7,-0.25 -1.13,-1.1 -1.96,-0.88 -0.71,-0.06 -1.29,-0.9 -0.77,-1.51 0.12,-0.95 0.28,-2.27 -0.52,-2.97 -0.67,-0.08 -0.6,-0.63 -0.36,-1.08 -0.11,-0.87 -0.73,-1.6 -0.95,-2.44 -0.41,-0.57 -1.28,-0.79 -1.36,-1.54 -0.43,-0.32 -0.76,-0.7 -0.76,-1.26 -0.23,-0.42 -0.82,-0.6 -0.66,-1.2 -0.07,-0.72 -0.65,-1.29 -0.65,-2 -0.38,-0.23 -0.96,-0.06 -1.13,-0.6 -0.76,-0.3 -0.78,0.93 -0.41,1.32 0.52,0.51 0.35,1.1 -0.32,1.27 -0.46,0.18 -1.77,-0.11 -1.37,0.76 0.22,0.53 0.68,1.24 -0.05,1.6 -0.45,0.63 -0.72,-0.73 -1.25,-0.14 -0.73,0.55 -1.34,1.34 -1.72,2.1 -0.7,0.19 -2.06,0.06 -1.81,-0.97 0.28,-0.69 0.26,-1.75 -0.66,-1.9 -0.06,-0.42 -0.09,-1.15 -0.73,-0.99 -0.6,-0.11 -1.41,-0.35 -1.66,0.43 -0.42,1.36 -2.42,1.83 -3.19,0.53 -0.36,-0.46 -0.4,-1.37 -1.24,-1.2 -0.93,-0.04 -1.39,0.93 -2.18,1.27 -0.52,0.67 -1.46,1.45 -2.3,0.76 -1.65,-0.71 -2.01,-3.06 -3.96,-3.3 -1.62,-0.6 -2.82,-2.05 -3.15,-3.73 -0.68,-0.77 -1.92,-0.52 -2.83,-0.76 l -0.03,0.01 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_91.js b/lib/mapael-maps/france/france_region_91.js new file mode 100644 index 000000000..46eb99314 --- /dev/null +++ b/lib/mapael-maps/france/france_region_91.js @@ -0,0 +1,40 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Languedoc-Roussillon for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_91 : { + width : 144.28798, + height : 174.62637, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -76.7939; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 2966.1044; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-11" : "m 25.79,100.29 c -0.72,0.78 -1.7,1.65 -1.33,2.83 -0.07,0.55 -0.12,1.5 -0.72,1.7 -0.92,-0.41 -1.42,-1.33 -2.1,-1.95 -0.96,0.29 -1.77,1.16 -2.87,1.2 -0.58,0.02 -1.61,0.29 -1.61,-0.61 -0.33,-0.53 -0.42,-1.54 -1.08,-1.68 -0.33,0.24 -0.29,0.85 -0.85,0.75 -0.71,0.12 -1.37,1.05 -2.06,0.37 -0.37,-0.15 -0.73,0.02 -0.93,-0.38 -0.92,-0.43 -2.2,0.02 -2.07,1.18 -0.13,0.45 -0.98,0.78 -0.85,0.02 0.17,-1.05 -0.95,-1.54 -1.23,-2.4 -0.58,-0.55 -1.14,0.23 -1.1,0.8 0.11,0.9 -1.28,0.27 -1.2,1.18 0.15,0.38 0.49,0.95 -0.2,0.97 -0.77,0.44 -0.41,1.66 -0.24,2.37 0.32,0.42 0.19,1.31 -0.55,0.96 -0.46,-0.15 -0.88,0.18 -1.22,0.26 -0.43,-0.32 -1.07,-0.61 -1.41,-0.03 -0.6,0.03 -0.87,0.8 -0.29,1.11 0.17,0.78 -1.35,0.81 -0.96,1.71 -0.08,0.62 -0.59,1.09 -0.91,1.49 0.45,0.95 0.4,2.09 1.11,2.93 0.53,0.61 0.31,1.37 -0.17,1.89 -0.37,0.5 0.04,1.12 0.64,0.88 0.9,0.19 1.31,1.26 2.17,1.59 0.81,0.48 1.76,0.55 2.54,1.1 0.64,0.3 0.56,-1.08 1.05,-0.75 0.08,0.61 0.62,0.89 1.2,0.83 -0.08,0.51 0.34,1.76 1,1.07 0.51,-0.66 1.23,-0.03 1.68,0.33 1.03,0.33 0.54,1.69 0.81,2.48 -0.12,0.46 0.53,0.92 0.29,1.29 -0.55,-0.11 -1.05,0.33 -0.74,0.88 0.27,0.46 0.97,0.13 1.24,0.67 0.6,0.44 0.9,1.25 0.32,1.84 -0.46,0.56 0.52,0.82 0.33,1.41 -0.05,0.77 -0.21,1.91 0.72,2.17 -0.09,0.31 -0.55,0.89 -0.84,0.38 -0.48,-0.31 -1.33,-0.46 -1.61,0.14 -0.53,0.03 -0.87,0.71 -0.27,0.96 0.85,0.31 2.15,0.61 2.05,1.79 -0.17,1.09 0.34,2.78 -1,3.28 -1.21,0.81 -2.82,0.32 -4.03,1.03 -0.07,0.63 -0.8,1.09 -0.73,1.72 0.68,0.47 1.55,0.74 1.97,1.55 0.25,0.54 1.05,1.14 0.94,1.76 -0.58,0.02 -0.93,0.92 -0.15,0.9 0.86,0.64 1.66,1.52 2.87,1.4 1.63,0.32 2.8,-1.71 4.38,-1.1 0.51,0.42 0.6,1.18 1.21,1.55 0.66,0.51 1.25,1.16 1.81,1.72 0.92,0.06 1.63,1.28 1.07,2.09 -0.2,0.61 0.38,1.91 0.96,0.93 0.63,-0.86 1.78,-1.03 2.46,-1.8 0.43,-0.41 0.44,-1.43 1.07,-1.52 0.86,0.8 2.3,0.11 3,-0.64 1.09,-0.58 1,-1.6 0.69,-2.62 -0.22,-1.07 -0.12,-2.31 -0.81,-3.19 0.13,-0.72 -0.8,-1.4 -0.2,-2.06 1.71,-1.18 3.83,-0.49 5.68,-0.07 1.02,-0.17 2.03,-1.17 3.12,-0.58 1.17,0.05 2.33,-0.02 3.44,0.45 1.25,0.29 2.57,-0.2 3.78,0.4 1.24,0.15 3.16,0.04 3.51,-1.45 0.22,-1.6 1.55,-2.74 3,-3.23 0.59,-0.43 1.42,-0.89 2.14,-0.84 0.41,0.6 0.87,1.22 1.64,1.36 1.43,1.26 3.42,1.63 5,2.69 1.1,0.43 1.63,-1.03 1.65,-1.87 0.12,-0.34 -0.03,-1.44 0.64,-1.06 0.49,0.15 1.72,0.76 1.66,-0.22 0.01,-0.67 -0.27,-1.52 -1.01,-1.63 -1.09,-0.5 -1.56,-1.94 -0.83,-2.9 0.18,-0.34 1.09,-0.46 0.8,0.12 -0.19,0.56 -1.06,1.89 -0.05,2.12 1.03,-0.56 1.17,-2.02 1.37,-3.07 -0.03,-1.24 0.51,-2.35 1.18,-3.33 0.32,-0.6 0.28,-1.88 -0.71,-1.45 -1.17,-0.22 -0.87,-1.84 -0.97,-2.72 -0.35,-1.15 1.8,-1.6 1.93,-0.49 -0.22,0.46 -1.24,0.4 -0.94,1.15 0.19,0.55 0.94,1.69 1.54,0.89 0.29,-0.82 0.69,-1.61 1.25,-2.32 1.32,-1.94 2.48,-3.97 3.65,-6.01 -0.6,-0.84 -1.62,-1.47 -2.13,-2.45 -0.26,-0.48 -0.74,-1.11 -1.3,-0.59 -0.57,0.58 -1.71,0.22 -1.72,-0.6 -0.77,-0.36 -1.76,0.3 -2.5,-0.3 -1,-0.08 -1.27,-1.55 -2.36,-1.28 -0.57,0.16 -1.36,0.19 -1.44,-0.57 -0.31,-0.59 0.18,-1.62 -0.43,-1.99 -0.94,0.06 -2.1,0.95 -2.88,0.05 -0.5,-0.51 -1.19,0.09 -1.68,-0.46 -0.56,-0.13 -0.53,-1.28 -1.03,-0.96 -0.13,1.14 -1.69,0.91 -2.52,1.06 -0.79,0.18 0.21,0.93 -0.36,1.24 -0.8,0.58 -0.97,1.52 -1.24,2.37 -0.26,0.63 -1.25,1.37 -1.76,0.56 -0.46,-0.5 -1.12,-1.01 -1.79,-0.89 -0.54,-0.79 0.11,-2.13 -0.71,-2.77 -0.67,-0.07 -0.52,0.92 -1.11,1.13 -0.51,0.65 -1.59,-0.04 -1.94,0.8 -0.55,0.08 -1.04,-0.72 -1.13,-1.21 -0.27,-0.88 -0.65,-2.25 -1.85,-2.01 -0.6,-0.02 -1.1,-0.67 -0.65,-1.21 0.46,-0.98 0.1,-2.62 1.27,-3.12 0.52,0.18 1.07,-0.41 0.5,-0.77 -0.99,-1.13 -2.73,-0.21 -3.74,-1.26 -0.98,-0.63 -2.16,0.08 -3.23,-0.11 -0.87,0.07 -1.17,1.5 -2.15,0.89 -1.21,-0.39 -2.32,-1.07 -3.47,-1.57 -0.5,-0.42 -1.26,0.46 -1.67,-0.21 -0.22,-0.11 -0.43,-0.62 -0.72,-0.42 z", + "department-34" : "m 93.82,66.16 c -0.82,0.07 -1.52,0.67 -2.25,1.01 -0.31,0.33 -0.04,0.89 -0.48,1.16 -0.3,0.53 -0.07,1.72 -0.97,1.67 -0.55,-0.27 -0.64,0.3 -0.81,0.63 -0.6,0.31 -0.17,-1.18 -0.88,-0.81 -0.78,0.75 -1.16,1.86 -1.94,2.65 -0.49,0.75 0.95,0.9 0.72,1.52 -0.47,0.45 -1.21,0.55 -1.6,-0.06 -0.42,-0.22 -0.92,0.1 -1.33,-0.3 -1.1,-0.46 -0.14,-2.23 -1.27,-2.58 -0.31,0.27 -0.73,0.3 -1.09,0.51 -0.64,0.64 -1.37,1.49 -2.31,1.52 -0.41,-0.2 -0.62,-0.65 -0.12,-0.88 0.81,-1.12 -0.35,-2.91 -1.68,-2.23 -0.83,-0.26 -2.11,-0.17 -2.31,0.9 -0.74,0.87 -2.12,0.09 -3.07,0.26 -0.7,0.36 -1.08,1.18 -1.64,1.74 -0.53,0.87 1.09,1.57 0.37,2.43 -0.78,0.73 -1.8,1.34 -2.93,1.1 -1.15,-0.07 -2.45,0.07 -3.31,-0.83 -0.57,-0.34 -1.98,-1.05 -2.21,-0.02 0.15,0.57 0.08,1.13 -0.4,1.5 -0.14,0.5 0.24,0.97 0.27,1.48 0.31,0.46 1,1.02 0.35,1.55 -0.92,0.75 -0.48,2.17 -0.15,3.11 0.53,0.33 -0.18,0.66 -0.12,1.06 -0.87,0.18 -1.86,0.22 -2.52,-0.47 -1.09,-0.61 -2.16,0.32 -3.07,0.68 -0.93,-0.17 -0.89,1.2 -0.97,1.81 -0.26,1.02 -1.6,0.38 -2.1,1.19 -0.67,0.32 -1.47,0.25 -2.14,0.61 -0.83,-0.25 -0.97,0.96 -1.76,0.88 -0.61,0.09 -1.49,1.1 -1.98,0.29 -0.63,-1.7 -2.83,-2.36 -4.45,-1.91 -0.67,0.89 -0.5,2.18 -1.17,3.09 -0.05,0.55 0.8,0.96 0.31,1.55 -0.92,1.09 0.53,2.19 1.15,2.96 0.26,0.39 0.99,0.95 0.93,1.39 -0.96,0.33 -0.69,1.75 -0.44,2.52 0.18,0.39 0.09,0.83 -0.4,0.81 -0.78,0.49 -1.26,1.4 -2.12,1.73 -0.16,0.59 -1.67,0.5 -1.18,1.3 0.5,0.26 0.74,0.67 0.19,1.05 -0.42,0.33 -1.19,0.14 -1.34,0.81 -0.14,0.91 -0.19,1.81 -0.57,2.66 -0.08,1.12 1.41,0.36 1.8,1.14 0.71,0.84 0.56,2.33 1.7,2.74 0.29,-0.15 0.35,-0.63 0.83,-0.44 0.79,0.08 1.57,-0.4 1.71,-1.18 0.21,-0.36 0.78,-0.73 0.92,-0.1 0.51,0.78 -0.01,1.88 0.52,2.61 0.88,-0.11 1.42,0.81 2.08,1.2 1.06,0.13 1.46,-1.11 1.49,-1.96 0.27,-0.72 1.51,-1.23 0.9,-2.07 0.43,-0.63 1.54,-0.2 2.18,-0.61 1.87,-0.6 -0.53,-1.32 1.16,-1.4 0.81,1.38 0.7,1.72 1.47,1.74 0.57,-0.53 0.96,0.23 1.41,0.54 0.95,0.34 1.89,-0.48 2.87,-0.32 0.31,0.74 -0.39,2.53 0.72,2.5 0.86,-0.23 1.66,0.09 2.22,0.76 0.56,0.42 1.24,0.67 1.87,0.94 0.37,-0.36 1.19,-0.53 1.59,-0.09 0.19,0.74 0.99,1.08 1.61,0.58 1.06,-0.63 1.52,0.99 2.1,1.56 0.57,0.66 1.65,1.92 2.55,1.09 1.18,-1.47 3.09,-2.15 4.32,-3.57 1.33,-1.41 3.44,-1.73 5.24,-1.14 0.65,0.22 1.45,0.2 1.68,-0.57 0.99,-2.19 2.87,-3.78 4.26,-5.72 1,-0.81 2.34,-1.11 3.51,-1.57 0.82,-0.69 1.57,-1.44 2.54,-1.92 1.24,-0.98 2.77,-1.74 3.68,-3.06 -0.25,-0.66 -0.99,0.31 -1.36,0.49 -1.29,1.01 -2.64,2.36 -4.42,2.2 0.83,-0.73 2.02,-0.84 2.89,-1.57 1.21,-0.51 1.68,-1.77 1.92,-2.95 0.24,-1.01 1.43,-0.5 1.98,-1.15 0.98,-0.62 1.1,-2.12 2.37,-2.32 1.72,-0.43 3.28,-1.33 4.86,-2.12 1.22,-0.07 2.44,-0.96 3.62,-0.79 -0.14,0.96 1.2,0.62 1.76,0.67 0.58,0.11 0.82,-0.33 0.98,-0.78 0.82,-0.93 1.66,-2.06 1.8,-3.32 -0.56,-1.29 -1.27,-2.54 -1.58,-3.92 -0.39,-0.59 -0.35,-1.69 -1.08,-1.93 -0.64,0.21 -1.25,-0.04 -1.54,-0.67 -0.33,-0.49 -0.51,-1.39 -1.29,-1.1 -0.7,-0.11 -1.01,-0.79 -1.15,-1.39 -0.56,-0.66 -1.33,-1.65 -2.28,-1.49 -0.52,0.34 -1.48,0.81 -1.71,-0.09 0.04,-0.7 1.01,-1.52 0.4,-2.17 -0.6,0.07 -0.68,-0.74 -1.32,-0.62 -0.83,-0.19 -1.08,-1.09 -1.16,-1.8 -0.52,-0.29 -1.15,0.31 -1.74,0.18 -0.8,-0.05 -1.66,1.12 -2.37,0.36 -0.63,-0.25 -1.47,-1.01 -0.9,-1.72 0.59,-0.72 1.24,-1.98 0.59,-2.81 -0.77,-0.03 -1.58,-0.51 -1.49,-1.4 -0.37,-0.61 -1.32,-0.44 -1.93,-0.52 z", + "department-30" : "m 105.53,33.76 c -0.73,0.58 -1.04,1.42 -1.28,2.27 -0.17,0.64 -0.86,0.84 -1,1.46 -0.72,0.05 -1.72,-0.41 -2.14,0.46 -0.95,0.7 0.26,1.15 0.54,1.8 0.53,0.79 0.76,1.89 1.66,2.32 0.35,0.98 -1.52,1.59 -0.61,2.54 0.31,0.49 -0.17,1.88 0.86,1.5 0.74,0.05 1.34,1.34 0.37,1.57 -1.06,0.14 -0.39,1.46 -0.67,2.13 -0.24,0.54 -0.35,1.25 0.28,1.57 0.31,0.45 0.44,1.06 0.88,1.4 0.25,0.84 -0.84,-0.01 -1.15,-0.1 -0.42,-0.38 -1.1,-0.38 -0.98,0.32 0.14,0.67 -0.77,0.7 -0.85,1.29 -0.7,0.2 -1.24,0.79 -1.68,1.38 -0.84,-0.28 -1.86,-0.85 -2.64,-0.13 -1.42,0.38 -2.21,-1.33 -3.44,-1.73 -0.85,-0.56 -1.99,-0.61 -2.59,-1.53 -0.51,-0.5 -0.88,0.71 -1.39,0.07 -0.86,-0.12 -1.1,1.57 -0.38,1.92 0.38,0.42 -0.57,0.77 -0.43,1.29 0.04,0.96 -1.31,0.88 -1.95,0.77 -0.7,-0.31 -1.45,-0.23 -2.06,0.19 -1.52,-0.96 -3.48,-0.38 -5.06,-1.07 -0.26,-0.73 -0.59,-1.48 -1.39,-1.78 -0.5,-0.36 -0.89,-0.96 -1.62,-0.7 -0.85,0.17 -1.66,0.75 -1.79,1.63 -0.63,0.62 0,1.6 -0.36,2.24 -0.63,0.62 -2.06,0.18 -2.3,1.19 0.32,0.54 0.84,1.32 1.42,1.42 0.24,-0.34 0.93,-1.06 1.22,-0.37 0.22,0.51 0.58,1.83 1.38,1.28 0.33,-0.35 0.71,0.3 1.11,0.08 0.95,0.82 2.34,1.22 3,2.35 0.04,0.87 -0.59,1.43 -1.27,1.83 -0.58,0.55 -0.54,1.72 -1.57,1.67 -0.61,0.19 -0.67,0.96 -1.27,1.22 -0.52,0.55 -0.38,1.66 0.19,2.11 1.03,0.37 2.59,-0.36 3.17,0.93 0.28,0.74 -0.14,1.55 -0.19,2.27 0.71,0.32 1.42,-0.59 1.92,-1.04 0.57,-0.63 1.91,-1.3 2.31,-0.15 -0.03,0.83 0.08,2.24 1.25,2.08 0.7,-0.22 1.26,0.97 1.89,0.25 0.26,-0.62 -1.15,-0.76 -0.62,-1.49 0.8,-0.89 1.22,-2.11 2.12,-2.88 0.7,-0.07 1.99,0.76 2.27,-0.29 -0.01,-0.72 0.52,-1.28 0.49,-1.97 0.45,-0.75 1.44,-0.64 1.99,-1.27 0.88,-0.1 1.93,-0.07 2.72,0.29 0.06,0.59 0.19,1.58 1.04,1.41 1.15,0.25 0.78,1.84 0.27,2.54 -0.48,0.48 -0.93,1.51 -0.11,1.89 0.65,0.49 1.54,0.57 2.18,0.05 0.8,-0.17 1.7,-0.11 2.37,-0.65 0.55,0.22 0.1,1.17 0.5,1.61 0.29,0.7 1.22,0.32 1.64,0.7 0,0.46 0.58,0.51 0.81,0.62 0.09,0.86 -0.78,1.55 -0.58,2.37 0.72,0.7 1.42,-0.95 2.18,-0.19 0.89,0.53 1.8,1.21 2.08,2.23 0.29,0.61 0.92,0.46 1.41,0.61 0.36,0.41 0.33,1.1 0.93,1.38 0.52,0.54 1.48,0.07 1.78,0.92 0.17,0.89 0.83,1.61 0.85,2.55 0.26,1.11 1.24,2.03 1.32,3.15 -0.39,1.35 -1.37,2.4 -1.98,3.61 -0.4,0.52 -1.41,0.12 -2.01,0.37 -0.71,0.1 -0.24,0.73 -0.01,1.07 -0.07,0.51 -0.11,1.13 0.53,1.31 1.47,1.06 0.82,3.16 1.66,4.56 0.83,0.65 2.02,1.65 3.13,1.16 0.7,-0.81 0.03,-2.43 1.36,-2.74 0.95,-0.5 2.34,-0.69 2.86,-1.71 -0.09,-0.42 -0.63,-1.62 0.09,-1.67 0.28,0.35 0.25,1.25 0.95,0.99 0.67,-0.61 1.67,-0.7 2.35,-1.32 0.55,-0.06 1.11,-0.35 0.94,-1 0.31,-0.74 1.14,-0.64 1.76,-0.68 0.46,-0.37 1.13,-0.98 1.01,-1.59 -0.65,-0.38 -1.95,0.21 -2.05,-0.89 0.39,-1.18 0.74,-2.65 2,-3.19 0.55,-0.49 0.07,-1.59 0.96,-1.83 1.47,-0.61 3.17,-0.49 4.49,0.43 0.36,0.38 1.65,0.62 1.45,-0.23 -1.03,-1.95 0.35,-3.99 1.19,-5.72 0.53,-1.09 0.14,-2.25 -0.14,-3.31 0.26,-0.47 1.5,-1.24 0.31,-1.28 -0.47,-0.11 -0.45,-1.08 -0.02,-1.24 1.05,-0.48 2.07,-1.11 2.78,-2.05 1.06,-0.44 1.11,-1.93 2.29,-2.17 0.97,-0.55 2.15,-1.39 2.27,-2.57 -0.11,-0.42 -0.04,-1.22 0.61,-0.94 0.68,0.27 1.05,-0.41 0.82,-0.99 0.04,-0.83 -1.08,-0.83 -1.23,-1.58 -0.4,-0.92 -1.25,-1.59 -1.49,-2.56 -0.4,-0.42 -1.03,-0.63 -1.2,-1.24 -0.53,-0.33 -1.34,0.89 -1.59,-0.06 -0.52,-0.9 -0.91,-1.89 -0.41,-2.9 0.18,-1.31 0.61,-2.86 -0.04,-4.1 -0.58,-0.32 -0.13,-0.87 -0.24,-1.31 -0.35,-0.45 -1.48,0.22 -1.51,-0.59 0.37,-1.08 -0.58,-1.8 -1.01,-2.65 -0.17,-0.57 -0.59,-1.85 -1.37,-1.28 -0.48,0.09 -0.5,-0.76 -1.01,-0.82 -0.9,-0.45 -2.07,-0.63 -2.42,-1.72 -0.34,-0.72 -1.38,-0.44 -1.68,-1.18 -0.72,-0.2 -1.75,-0.55 -2.41,-0.09 -0.39,1.09 0.17,2.67 -0.8,3.49 -0.39,0.07 -0.46,-0.54 -0.96,-0.33 -0.9,0.28 -1.6,-0.85 -1.1,-1.6 0.16,-0.56 0.67,-2.04 -0.38,-1.96 -1,0.32 -2.46,0.01 -2.95,1.22 -0.35,0.61 -1.46,0.44 -1.37,1.34 -0.05,0.98 -0.52,2.48 -1.68,2.53 -1.18,-0.34 -1.67,-1.75 -2.87,-2.13 -0.63,-0.14 -0.31,-1.35 -1.1,-1.06 -0.48,0.31 -1.42,0.2 -1.27,-0.55 -0.04,-0.56 -0.57,-0.99 -1.05,-0.65 -0.95,0.01 -1.96,0.11 -2.62,0.85 -0.54,0.53 -1.32,-0.7 -0.75,-1.07 0.69,-0.9 0.73,-2.41 -0.01,-3.29 -0.21,-0.63 0.52,-0.74 0.88,-0.98 0.48,-0.94 -1.49,-0.91 -1.01,-1.89 0.28,-0.66 -0.27,-1.1 -0.83,-1.25 -0.41,-0.12 -0.66,-0.87 -1.09,-0.74 z", + "department-48" : "m 76.55,0.13 c -0.38,0.24 -0.42,0.93 -1.02,0.79 -0.74,0.24 -1.19,0.96 -1.93,1.18 -0.34,0.4 -0.72,0.97 -1.31,0.57 -0.41,-0.04 -0.58,-0.97 -1,-0.42 -0.25,0.5 0.32,1.32 -0.5,1.46 -0.85,0.27 -0.29,1.09 -0.21,1.62 -0.39,0.81 -1.55,0.99 -2.01,1.63 -1.3,-0.2 -1.39,-1.91 -2.38,-2.46 -1.1,0.26 -1.66,1.43 -1.58,2.49 -0.36,0.56 -0.02,1.39 -0.34,1.9 -0.93,-0.05 -1.09,0.97 -1.72,1.42 -0.95,1.15 0.05,2.9 -1.03,4.03 -0.56,0.72 0.17,1.73 -0.02,2.42 -1.35,0.12 -1.21,1.81 -1.72,2.72 -0.37,0.77 -0.99,1.87 -0.09,2.54 0.91,0.93 1.31,2.24 2.44,3 0.56,0.63 1.57,1.28 1.55,2.19 -0.22,1.3 -0.44,2.66 -0.42,3.96 0.6,0.72 1.65,1.05 2.15,1.8 0.25,0.58 0.85,0.98 0.76,1.69 0.33,0.44 0.33,1.01 -0.06,1.46 -0.6,0.44 0.16,0.85 0.02,1.38 0.22,0.76 -0.63,1.04 -0.58,1.76 -0.23,0.7 0.61,1.09 0.27,1.78 0.03,0.84 1.19,1.21 0.98,2.16 0.11,1.21 -1.72,1.96 -1.09,3.25 0.47,0.47 0.55,-0.4 0.82,-0.55 0.98,-0.02 0.2,1.92 1.34,1.76 0.89,-0.07 1.47,0.86 2.31,1.03 0.62,0.42 -0.28,1.23 -0.24,1.78 -0.3,0.51 0.11,1.25 0.73,0.9 0.75,-0.44 1.63,-0.52 2.43,-0.78 0.34,-0.43 1.16,0.17 1.67,0 0.65,0.02 1.81,-0.06 1.8,0.87 0.21,0.74 0.7,1.28 1.36,1.61 0.65,0.65 1.73,0.96 1.89,1.98 1.13,1.19 3.01,0.33 4.39,0.96 0.43,0.26 0.91,0.56 1.33,0.04 0.95,-0.34 2.17,0.78 3.05,-0.11 0.31,-0.44 0.4,-1 0.61,-1.45 -0.37,-0.52 -0.55,-1.13 -0.24,-1.76 0.1,-0.53 0.65,-0.78 1.09,-0.42 0.44,0.09 0.48,-0.74 1,-0.4 0.45,0.4 0.64,1.15 1.38,1.18 0.92,-0.06 1.4,0.88 2.25,1.09 0.7,0.4 1.27,1.49 2.08,1.39 0.72,-0.51 1.59,-0.78 2.39,-0.27 1.01,0.6 1.25,-1.11 2.21,-1.17 0.37,-0.18 0.09,-0.83 0.66,-0.69 0.56,-0.19 0.1,-1.09 0.45,-1.29 0.37,0.11 1.22,0.79 1.31,0.03 0.15,-0.62 -0.59,-0.82 -0.86,-1.13 0.26,-1.12 0.14,-2.44 0.63,-3.48 0.49,0.02 1.08,-0.42 0.62,-0.92 -0.33,-0.6 -1.22,0.04 -1.37,-0.77 -0.04,-0.55 0.09,-1.2 -0.48,-1.55 -0.45,-0.61 0.73,-1.14 0.93,-1.62 0.53,-0.67 -0.89,-0.97 -1.05,-1.64 -0.23,-1.16 -1.47,-1.85 -1.72,-2.94 0.74,-0.09 1.05,-1.25 1.92,-0.83 1.38,0.04 1.87,-1.57 2.29,-2.59 0.32,-0.51 0.9,-1.11 0.47,-1.74 -0.06,-1.73 -0.55,-3.42 -1.26,-4.99 -0.25,-0.73 -0.38,-2.07 -1.48,-1.76 -0.6,-0.15 -0.65,-1.04 -1.06,-1.44 -0.02,-0.55 0.05,-1.14 -0.54,-1.43 -0.2,-1.07 0.15,-2.3 -0.63,-3.23 -0.38,-0.52 -0.49,-1.23 -0.02,-1.69 -0.19,-0.46 -0.69,-0.82 -0.74,-1.4 -0.27,-0.71 0.85,-1.6 -0.08,-2.07 -0.45,-0.24 -1.39,-0.14 -1.44,-0.83 0.26,-0.38 0.7,-1.37 -0.18,-1.15 -0.37,0.1 -0.82,0.78 -1.06,0.1 -0.27,-0.9 -0.92,-1.73 -1.8,-2.03 -0.49,-0.64 -0.35,-1.82 -1.22,-2.17 -1.08,0.12 -2.18,0.3 -3.26,0.38 -0.5,-0.17 -0.35,-0.82 0.1,-0.94 0.25,-0.8 -0.35,-1.85 -1.11,-2.17 -0.59,-0.16 -1.29,0.2 -1.78,-0.21 -0.67,0.32 -0.06,1.28 -0.45,1.82 -0.35,0.49 -0.08,1.17 -0.38,1.62 -0.32,0.26 -0.69,-0.43 -1.1,-0.11 -1.04,0.28 -2.44,-0.07 -3.06,1.09 -0.24,0.45 -0.77,0.44 -0.96,-0.05 -0.19,-0.52 -0.86,-0.89 -0.9,-1.4 -0.15,-0.92 -0.94,-1.63 -0.91,-2.61 -0.54,-1.2 -1.19,-2.4 -1.03,-3.78 0.05,-0.75 -0.37,-1.65 -1.23,-1.55 -0.51,-0.03 -0.55,-0.52 -0.74,-0.81 -0.07,-0.04 -0.16,-0.04 -0.23,-0.01 z", + "department-66" : "m 53.39,135.98 c -1.47,0.48 -3.19,1.09 -4.13,2.38 -0.49,1.16 -0.84,3.03 -2.47,2.91 -3.09,0.07 -6.18,-0.47 -9.23,-0.78 -1.43,-0.28 -2.78,1.05 -4.23,0.32 -1.28,-0.36 -3.22,-0.67 -4.1,0.55 -0.06,1.74 1.01,3.28 1.02,5.06 0.7,1.31 -0.19,2.18 -1.18,2.94 -1.05,0.97 -3.08,0.12 -3.63,1.73 -0.75,0.93 -2.23,1.15 -2.72,2.24 -0.84,0.38 -1.13,-0.91 -1.99,-0.89 -1.2,-0.43 -2.37,0.27 -3.6,0.18 -0.99,0.08 -1.83,0.9 -2.78,0.4 -1.08,0.63 -1.02,2.61 -2.51,2.73 -0.6,0.85 -1.61,0.19 -2.39,0.54 -0.33,1.13 -1.52,2.06 -2.75,1.68 -1.12,0.15 -2.16,0.74 -3.14,1.21 -0.71,1.26 -1.32,3.05 -0.67,4.43 1.81,0.78 4.16,0.16 5.62,1.78 1.03,0.96 2.26,1.86 3.71,1.49 1,0.41 0.97,1.98 1.29,2.89 0.06,1.92 1.92,3.92 3.93,3.21 2.18,0.1 3.07,-2.19 4.12,-3.67 1.51,-1.28 3.71,0.06 5.27,-1.23 1.21,-0.46 2.6,0.57 3.79,0.97 1.4,0.95 3.03,1.45 4.57,2.06 0.89,1.41 2.02,2.91 3.79,3.29 0.7,0.41 1.63,0.2 1.74,-0.68 0.3,-0.82 1.1,-1.03 1.73,-0.41 1.26,0.37 2.7,0.95 3.99,0.74 0.37,-1.22 -1.98,-2.48 -0.28,-3.28 0.67,-0.82 1.67,-0.98 2.44,-1.62 1.24,-0.51 2.66,0.97 3.72,-0.28 1.31,-1.17 2.69,-2.85 4.68,-2.32 1.23,0.38 1.18,-1.91 2.38,-1.18 0.9,0.96 2.14,-0.17 3.22,0.18 1.23,-0.09 1.16,1.54 2.06,2.05 1.21,1.17 3.18,0.39 4.67,0.32 0.48,-0.68 -0.59,-1.61 -0.78,-2.29 -0.54,-1.08 -1.55,-1.74 -1.84,-2.94 -0.69,-0.92 -2.21,-1.04 -2.35,-2.42 -0.71,-2.31 -0.47,-4.89 -1.1,-7.13 -1.04,0.3 -1.91,-1.37 -1.04,-1.94 0.54,-0.12 0.92,1.22 1.32,0.44 0.07,-2.45 0.56,-5.06 -0.13,-7.44 -0.69,-1.37 -3.15,-0.11 -3.29,-1.97 -0.5,-0.73 -0.04,-1.41 0.1,-2.11 -1.06,-1.59 -3.55,-1.35 -4.71,-2.76 -0.79,-0.24 -1.31,-0.83 -1.85,-1.35 -0.09,-0.03 -0.19,-0.06 -0.28,-0.03 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_93.js b/lib/mapael-maps/france/france_region_93.js new file mode 100644 index 000000000..2a1423b22 --- /dev/null +++ b/lib/mapael-maps/france/france_region_93.js @@ -0,0 +1,41 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Provence-Alpes-Cote d'Azur for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_93 : { + width : 159.27597, + height : 137.85548, + getCoords : function (lat, lon) { + var xfactor = 45.48385; + var xoffset = -193.01295; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 2976.3944; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-84" : "m 33.75,46.17 c -0.4,0.4 -0.94,0.72 -1.53,0.94 -0.94,0.34 -1.11,1.34 -1.19,2.19 -0.26,0.82 -1.31,1.33 -1.36,2.11 0.42,0.25 0.98,0.57 0.5,1.05 -0.26,0.72 0.04,1.92 1.03,1.54 1.12,-0.23 2.14,0.81 3.22,0.49 0.43,-0.5 0.47,-1.27 1.09,-1.65 0.06,-0.75 0.71,-1.37 0.72,-2.16 0.53,-0.65 1.91,-0.41 2.06,-1.44 -0.4,-0.36 -1.13,-0.05 -1.48,-0.59 -0.59,-0.06 -1.08,-0.48 -0.99,-1.13 -0.12,-0.63 -0.97,-0.61 -1.31,-1.11 -0.23,-0.13 -0.48,-0.28 -0.76,-0.25 z m -10.71,6.69 c -0.7,0.06 -1.27,0.51 -2.01,0.31 -0.53,0.11 -1.53,-0.65 -1.59,0.29 -0.08,1.66 -0.66,3.7 0.77,4.99 0.63,0.56 -0.54,2.05 0.79,1.75 0.86,-0.26 0.85,0.31 0.88,0.98 0.13,0.48 0.66,0.7 0.5,1.28 0.06,1.59 -0.21,3.17 -0.54,4.68 0.19,0.63 0.45,1.45 0.97,1.82 0.48,-0.12 1.31,-0.92 1.46,0 0.33,0.67 1.38,0.83 1.33,1.71 0.59,0.74 1.02,1.6 1.57,2.36 0.57,0.28 0.94,0.75 0.95,1.42 0.19,0.59 -0.47,1.25 -1.06,0.85 -0.94,-0.03 -0.03,1.19 -0.64,1.59 -0.72,1.06 -1.74,1.89 -2.95,2.25 0.66,0.59 1.96,0.46 2.87,0.75 1.55,0.14 3.11,0.46 4.29,1.56 1.15,0.52 2.45,0.82 3.41,1.68 1.11,1.59 3.02,2.7 3.4,4.74 0.92,1.24 2.57,1.7 3.81,2.57 0.91,0.4 1.8,1.23 2.77,1.23 1.23,-0.68 2.62,-0.78 3.93,-0.32 1.27,0.04 2.22,0.8 3.17,1.53 3.19,1.93 6.67,4.28 10.59,3.84 1.37,0 2.8,-0.42 3.61,-1.58 0.79,-0.89 2.27,0.05 2.87,-1.05 0.34,-0.75 1.12,-1.08 1.5,-1.75 0.17,-1.22 -1.98,-1.31 -1.84,-2.57 0,-1.04 -1.45,-1.06 -1.62,-2.06 -0.61,-1.1 -1.64,-2.31 -3.06,-1.98 -0.95,-0.06 -1.86,0.22 -2.63,0.72 -0.68,0.08 -0.19,-1.03 -0.31,-1.39 -0.07,-1.22 1.41,-1.64 1.67,-2.76 0.3,-0.73 0.69,-1.47 0.81,-2.24 -0.42,-0.06 -0.96,-0.04 -1.06,-0.6 -0.16,-0.82 -0.82,-1.39 -1.67,-1.27 -0.62,-0.05 -1.73,-0.1 -1.5,-1.03 0.02,-1.85 1.13,-3.4 1.55,-5.14 -0.08,-0.63 0.44,-2.16 -0.37,-2.09 -0.55,0.32 -1.62,0.56 -1.66,-0.38 -0.33,-0.89 0.35,-2.29 -0.62,-2.86 -0.6,-0.16 -1.74,0.12 -1.65,-0.86 -0.1,-0.49 -0.51,-0.81 -0.7,-1.24 -0.66,-0.45 -1.69,-0.08 -2.25,-0.6 -0.28,-1.09 0.35,-2.63 -0.67,-3.41 -1.07,-0.18 -2.28,0.41 -3.35,-0.05 -0.63,-0.51 -1.41,-1.34 -2.28,-1.24 -0.52,0.17 -0.04,1.12 -0.68,0.98 -1.35,-0.02 -2.93,-0.4 -3.78,-1.49 0.38,-0.55 0.9,-1.77 0.08,-2.13 -0.38,-0.36 0.04,-1.17 0.44,-1.45 0.38,-0.32 0.75,-1.58 -0.1,-1.4 -0.58,0.81 -1.35,1.66 -2.34,2 -0.88,0.01 -1.78,-0.4 -2,-1.33 -0.6,-0.49 -1.46,0.35 -2.06,0.54 -0.96,0.72 -2.22,0.76 -3.21,1.46 -0.78,0.62 -1.73,0.8 -2.69,0.58 -1.02,0.02 -1.39,1.24 -2.23,1.68 -0.29,0.38 -1.13,0.86 -1.27,0.11 0.02,-0.8 -0.12,-1.58 -0.38,-2.3 -0.07,-1.22 -0.1,-2.91 -1.56,-3.25 -0.39,-0.48 -1.08,-0.46 -1.65,-0.45 z", + "department-13" : "m 23.48,79.58 c -1.25,1.4 -2.63,2.65 -4.24,3.59 -0.53,0.45 0.07,0.96 0.53,1.09 0.45,0.47 -0.39,0.67 -0.65,0.91 -0.19,0.85 0.28,1.77 0.21,2.66 0.16,1.29 -1.1,2.15 -1.34,3.35 -0.58,1.12 -0.53,2.39 0.05,3.49 0.13,0.63 -1.04,0.53 -1.42,0.34 -1.4,-1.01 -3.49,-1.36 -5,-0.42 -0.56,0.47 0.08,1.38 -0.72,1.63 -1.16,0.56 -1.53,2.01 -1.78,3.15 0.16,0.85 1.1,0.62 1.68,0.46 0.88,0.52 -0.14,1.44 -0.58,1.87 -0.46,0.6 -1.48,-0.17 -1.8,0.71 -0.01,0.61 -0.27,1.2 -0.97,1.12 -0.55,0.27 -0.96,0.76 -1.61,0.78 -0.55,0.07 -1.02,1.15 -1.54,0.48 -0.6,-0.02 0.06,0.76 -0.44,0.98 -0.92,1.06 -2.67,0.99 -3.46,2.15 -0.22,0.68 -0.62,1.56 -0.21,2.2 2.37,0.01 4.67,0.46 6.97,0.89 2.36,0.13 4.8,-1.02 7.08,0.04 0.96,0.4 2.72,0.96 2.33,2.33 -0.21,1.04 -1.76,2.02 -0.81,3.09 1.2,1.06 3.03,0.69 4.51,0.91 2.12,0.01 4.28,0.33 6.39,0.1 0.73,-0.73 -0.27,-1.68 -0.89,-2.09 -1.06,-0.93 -2.76,-1.54 -3.09,-3.04 0.09,-2.52 0.58,-5.23 -0.75,-7.54 -0.17,-0.53 -0.72,-1.41 -0.64,-1.8 1.03,0.87 1.62,2.26 2.1,3.52 0.41,2.02 -0.3,4.08 -0.13,6.08 1.08,1.64 3.11,2.29 4.59,3.49 0.38,0.43 1.45,0.61 1.29,-0.25 0,-0.78 -1.47,-0.85 -0.96,-1.7 0.66,-1.07 2.13,-0.91 3,-1.7 0.82,-0.25 1.55,0.53 2.36,0.62 0.49,0.22 0.41,1.21 1.15,0.85 1.07,-0.35 2.63,-0.36 3.14,-1.52 0.3,-1.19 0.08,-2.99 -1.39,-3.28 -0.76,-0.38 -0.92,-1.47 -0.83,-2.23 0.63,-0.7 0.13,-1.86 0.69,-2.51 0.68,0.25 0.83,1.46 1.79,1.27 0.74,0.13 2,-0.28 2.44,0.53 0.11,0.62 -0.67,1.26 0.03,1.78 0.68,0.55 1.39,1.56 2.35,1.45 0.83,-0.18 1.49,-1.34 2.36,-1.07 0.38,0.57 0.51,1.53 0.16,2.13 -1.22,0.57 -1.58,2.03 -2.85,2.5 -1.19,0.99 -2.88,0.32 -4.3,0.55 -1.21,0.17 -2.97,0.97 -2.78,2.44 0.35,1.45 1.58,2.77 3.16,2.67 2.22,0.05 4.47,0.11 6.69,-0.02 1.55,-0.29 2.86,-1.68 4.43,-1.64 1.75,0.77 2.26,3.14 1.35,4.7 0.11,0.69 1.28,0.96 0.88,1.78 -0.21,0.87 -1.42,1.9 -0.64,2.76 1.3,0.72 2.95,0.45 4.39,0.49 1.06,-0.37 2.11,1.21 3.18,0.41 0.39,-0.5 1.31,-0.66 1.42,0.14 0.43,1.02 1.5,1.64 2.44,2.1 0.62,-0.34 1.05,-1.11 1.88,-0.9 1.35,0.42 1.53,-0.67 1.49,-1.75 0.09,-0.81 0.03,-1.86 0.96,-2.18 0.57,-1.17 2.34,-1.1 2.89,-2.26 -0.3,-0.95 -1.14,-1.64 -1.57,-2.52 -0.73,-0.29 -1.98,0.39 -2.4,-0.51 0.71,-0.01 0.63,-0.79 0.63,-1.27 0.35,-0.48 0.75,-1.08 0.29,-1.65 -0.1,-0.74 -0.71,-1.63 -0.35,-2.33 0.88,-1.1 2.23,-0.12 3.34,-0.27 0.36,-0.13 1.51,-0.71 0.79,-1.02 -1.62,-0.92 -2,-2.98 -3.44,-4.09 -0.44,-0.67 0.6,-1.17 0.5,-1.88 0.04,-0.82 0.37,-1.7 0.26,-2.49 -0.62,-1.06 -2.19,-0.62 -2.74,-1.71 0.2,-0.56 1.46,-0.47 1.19,-1.35 -0.33,-1.66 0.56,-3.7 2.37,-3.99 0.86,-0.44 1.92,-0.22 2.71,-0.71 0.26,-0.52 0.97,-1.52 0.16,-1.81 -1.1,-0.32 -0.51,-2.42 -2.07,-1.92 -1.05,0.26 -1.16,1.71 -2.1,2.04 -1.06,-0.04 -2.28,0.15 -2.87,1.1 -1.68,1.38 -4.04,1.06 -6.04,0.8 -2.98,-0.81 -5.72,-2.45 -8.27,-4.13 -1.31,-1.12 -3.23,-1.36 -4.9,-1.28 -0.9,0.1 -1.76,0.99 -2.58,0.19 -1.92,-1 -3.87,-2.04 -5.6,-3.32 -0.25,-2.22 -2.38,-3.37 -3.54,-5.05 -0.86,-0.71 -1.97,-0.98 -2.97,-1.37 -1.1,-0.95 -2.44,-1.56 -3.9,-1.62 -1.16,-0.11 -2.31,-0.51 -3.45,-0.56 z", + "department-83" : "m 104.12,87.66 c -1.16,0.75 -2.76,0.05 -3.92,0.7 -0.27,0.89 -0.12,1.91 -0.89,2.62 -0.28,0.23 -0.64,1.32 -1.03,0.73 -0.76,-0.06 -1.65,0.12 -2.26,-0.53 -0.83,-1.02 -2.21,-1.46 -2.97,-2.49 -0.18,-0.63 -0.64,-1.26 -1.38,-1 -1.67,0.01 -1.88,1.96 -2.82,2.92 -0.6,0.73 -1.67,1.56 -2.59,0.91 -1.05,0.44 -1.22,1.95 -2.25,2.49 -0.63,0.28 -1.34,0.72 -1.25,1.48 -0.15,0.55 -0.96,1.14 -1.26,0.32 -0.2,-0.78 -1.31,-1 -1.2,-1.86 -0.01,-0.87 -0.89,-1.07 -1.56,-1.19 -0.56,-0.22 -0.55,-0.77 -0.59,-1.25 -0.11,-0.61 -1.29,-1.28 -1.44,-0.37 0.08,1.08 -1.12,1.68 -2.04,1.57 -0.31,0.19 -0.73,0.47 -0.76,-0.13 -0.24,-1.28 -1.81,-2.02 -2.99,-1.79 -0.41,0.45 -1.03,1.16 -0.82,1.78 0.46,0.08 1.08,0.21 0.97,0.85 -0.07,0.76 0.7,1.2 1.24,1.44 -0.18,0.62 -0.2,1.52 -0.71,1.95 -1.46,0.1 -3.08,0.43 -4.19,1.42 -0.86,1.01 -0.91,2.44 -0.65,3.68 -0.46,0.05 -1.63,0.55 -0.89,1.07 0.59,0.22 1.24,0.18 1.67,0.69 0.4,0.17 1.12,0.28 0.8,0.89 -0.54,1.17 0.03,2.68 -1.04,3.61 0.48,0.95 1.55,1.69 1.95,2.77 0.38,0.81 1.07,1.46 1.87,1.76 0.19,0.77 -0.91,1.01 -1.46,1.23 -0.93,-0.09 -2.28,-0.73 -2.96,0.25 -0.18,1.01 0.48,2 0.68,2.91 -0.53,0.68 -0.71,1.53 -0.77,2.34 0.61,0.56 1.96,-0.44 2.19,0.7 0.39,0.88 1.9,1.7 1.09,2.76 -0.98,0.43 -2,0.91 -2.62,1.81 -0.67,0.12 -0.96,0.79 -0.93,1.45 -0.04,0.93 -0.53,2.22 0.48,2.8 0.13,0.61 -0.33,1.59 0.6,1.76 0.75,0.32 1.26,1.28 2.21,0.92 0.46,-0.22 1.26,-0.09 0.97,0.55 -0.13,0.92 1.15,0.63 1.61,1.05 0.34,0.46 -0.7,0.54 -0.94,0.76 -0.73,0.23 -1.19,1.52 -0.18,1.68 1.26,-0.06 1.64,1.62 2.93,1.64 0.72,0.19 1.21,-0.41 1.27,-1.05 0.33,-0.57 0.94,-1.21 1.62,-0.7 0.42,0.39 1.22,-0.13 0.63,-0.53 -0.86,-0.16 -0.94,-1.52 -1.87,-1.48 -0.18,-0.55 0.84,-0.69 1.17,-0.9 0.4,-0.24 1.44,-0.41 1.14,0.39 0.15,0.85 1.4,0.37 1.97,0.51 0.69,0.13 1.88,-0.41 2.1,0.55 0.61,0.84 1.66,0.3 2.46,0.17 1.07,-0.12 2.36,0.64 2.06,1.87 -0.13,0.95 -1.22,0.72 -1.85,1 -0.35,0.72 0.92,0.52 1.31,0.49 0.78,-0.18 1.52,0.12 2.26,0.2 0.56,0.03 0.96,-0.74 0.25,-0.88 -0.85,0 -0.31,-1.07 -0.37,-1.56 0.02,-1.05 0.21,-2.48 1.45,-2.74 0.98,0.13 1.91,-0.06 2.83,-0.35 1.02,0.21 2.23,0.47 2.99,1.19 0.26,0.55 0.26,1.37 1.09,1.35 0.58,0.33 1.84,0.08 1.23,-0.77 -0.22,-0.94 -0.67,-2.39 0.49,-2.88 0.69,-0.59 1.57,-0.67 2.39,-0.89 0.54,-0.75 1.72,-0.19 2.51,-0.42 1.04,0.03 1.61,-0.84 2.2,-1.53 0.83,-0.61 2.55,-0.64 2.96,0.46 -0.24,0.61 0.35,1.22 0.93,0.82 0.82,-0.13 0.92,-0.91 0.96,-1.58 0.22,-0.91 1.33,-0.76 1.87,-1.27 0.11,-0.71 -1.27,-0.96 -0.72,-1.73 0.21,-0.95 1.73,-1.28 1.43,-2.36 -0.54,-0.85 -1.84,-0.29 -2.66,-0.39 -0.7,-0.05 -1.64,0.27 -2.25,-0.02 0.01,-0.87 1.25,-0.99 1.83,-1.4 0.61,-0.42 1.91,-0.18 1.82,-1.24 -0.09,-0.9 0.38,-1.82 1.35,-1.9 1.36,-0.26 1.18,-1.97 1.51,-2.99 0.21,-0.75 0.09,-2.16 1.04,-2.38 0.86,0.3 1.62,1.11 2.59,0.73 0.72,-0.07 1.8,0.21 2.07,-0.66 0.56,-0.18 1.67,0.17 1.67,-0.75 0.55,-0.65 1.57,-1 1.55,-2.03 0.32,-0.48 0.07,-1 -0.47,-1.13 -0.03,-0.86 -1.7,-0.78 -1.27,-1.73 0.44,-0.56 0.16,-1.18 -0.37,-1.51 -0.08,-1.03 0.93,-1.72 1.14,-2.65 -0.24,-0.53 -0.05,-1.03 0.15,-1.53 -0.04,-0.73 -0.86,-0.91 -1.44,-0.68 -1.43,0.34 -2.12,-1.34 -3.4,-1.55 -0.62,-0.63 -0.78,-1.7 -1.61,-2.07 -0.85,-0.98 0.58,-2.08 0.11,-3.17 -0.22,-0.9 -0.61,-2.1 -1.76,-2 -0.63,0.06 -0.97,-0.36 -1.26,-0.81 -0.59,-0.56 -1.36,-0.14 -1.96,0.11 -0.45,-0.27 -0.23,-1 -0.78,-1.19 -0.26,-0.93 -0.64,-2.37 -1.81,-2.4 -1.08,0.2 -1.85,1.34 -2.75,1.66 0,-0.73 -0.39,-1.55 -1.09,-1.77 -0.21,0.13 -0.42,0.26 -0.63,0.39 z", + "department-06" : "m 121.58,50.65 c -0.63,0.34 -1.06,1.08 -1.88,1 -0.99,0.47 -2.18,1.31 -2.26,2.49 -0.07,0.71 -0.51,1.42 -0.22,2.18 -0.56,-0.18 -1.35,-0.23 -1.52,0.47 -0.32,0.6 -1.07,0.76 -1.47,1.2 -0.15,0.71 -0.04,1.48 -0.42,2.1 0.13,0.88 -0.92,1.49 -0.66,2.41 -0.28,0.42 -0.67,0.9 -0.29,1.42 0.62,0.97 0.44,2.25 1.36,3.05 0.68,0.83 1.7,1.9 1.09,3.05 -0.52,1.32 0.66,2.41 1.75,2.88 0.33,0.53 0.52,1.2 1.2,1.44 1.14,0.44 1.45,1.63 1.76,2.67 0.4,0.39 1.1,0.39 1.28,1.05 0.21,0.62 0.71,0.99 1.31,1.15 0.6,0.52 1.42,1.14 1.62,1.88 -0.86,0.39 -1.98,0.63 -2.91,0.38 -0.84,-0.75 -1.89,-2.04 -3.17,-1.31 -0.92,0.58 -0.99,1.97 -2.14,2.3 -0.98,0.99 -2.01,-0.39 -3.09,-0.24 -0.44,0.46 0.51,1.35 -0.02,1.75 -0.72,0.06 -1.59,1.43 -0.58,1.71 0.53,0.1 1.32,0.64 1.2,1.19 -1.03,0.62 -2.28,0.69 -3.31,1.33 -0.07,0.79 0.65,1.5 0.88,2.24 0.43,0.6 1.04,-0.4 1.61,0.01 0.76,0.27 1.12,1.32 2.08,1.11 1.06,-0.19 1.15,1.25 1.49,1.94 0.39,0.76 0.02,1.44 -0.27,2.12 -0.16,0.54 -0.01,1.1 0.5,1.3 0.62,0.7 0.93,1.79 1.94,2.05 0.92,0.64 1.93,1.85 3.17,1.18 0.53,-0.17 0.98,0.53 1.11,0.93 -0.37,0.56 -0.3,1.21 -0.14,1.81 -0.71,0.81 -1.71,2.1 -0.57,3.01 -0.26,0.59 -0.59,1.77 0.42,1.76 0.39,0.4 0.92,1.26 1.55,0.68 0.79,-0.62 0.48,-1.61 0.58,-2.44 0.61,-0.96 1.83,-1.52 2.92,-1.65 1.53,0.37 2.63,-1.5 4.13,-1.18 0.3,0.26 0.78,1.29 1.16,0.64 0.36,-2.01 -0.47,-4.44 0.97,-6.13 0.78,-1.04 2.5,-0.17 3.07,-1.49 0.39,-0.7 0.8,-1.61 1.78,-1.45 0.94,-0.06 2.07,-0.34 2.92,-0.2 -0.14,0.43 -0.04,1.34 0.59,0.88 0.95,-0.37 -0.47,-1.62 0.51,-1.94 0.65,-0.17 1.92,0.27 1.96,-0.75 -0.3,-1.09 0.47,-2.06 1.42,-2.48 0.72,-0.21 0.64,1.05 1.42,0.84 0.67,0.12 1.39,-0.24 1.26,-1.01 0.07,-1.04 1.34,-1.04 2.09,-1.26 0.19,-0.87 -0.67,-1.71 -0.76,-2.59 -0.28,-1.21 -1.27,-2.89 -0.05,-3.9 0.98,-0.69 2.13,-1.4 2.2,-2.74 0.22,-0.87 0.38,-2.05 1.48,-2.15 1.3,-0.83 2.35,-2.04 3.38,-3.17 0.01,-0.87 -0.23,-2 0.73,-2.46 0.95,-0.81 1.96,-2.41 1.11,-3.59 -0.98,-0.88 -2.41,-2.11 -1.77,-3.57 0.03,-0.74 0.56,-2.07 -0.59,-2.2 -1.03,-0.34 -1.62,0.72 -2,1.45 -0.88,0.22 -1.91,-0.08 -2.71,0.51 -1.04,0.33 -2.15,0.49 -3.12,1.06 -0.87,0.42 -1.99,0.13 -2.66,0.96 -1.15,-0.01 -2.39,-0.19 -3.52,-0.44 -0.33,-0.54 -0.47,-1.41 -1.29,-1.42 -0.96,-0.23 -2.25,0.39 -2.75,-0.75 -0.46,-0.72 -1.17,-1.23 -2.04,-1.16 -1.15,-0.56 -1.53,-2.19 -2.97,-2.26 -0.51,0.07 -1.13,0.61 -1.39,-0.15 -0.8,-0.78 -1.87,-1.25 -2.8,-1.81 -0.88,-0.03 -1.91,0.7 -2.66,-0.13 -1.09,-0.81 -0.55,-2.65 -1.89,-3.31 -0.64,-0.33 -1.13,-0.89 -1.02,-1.65 -0.33,-0.97 -1.26,-1.56 -1.67,-2.48 -0.11,-0.11 -0.27,-0.18 -0.43,-0.15 z", + "department-04" : "m 122.96,30.94 c -0.93,0.41 -1.21,1.76 -2.33,1.91 -0.57,0.37 -0.62,1.32 -1.47,1.27 -0.95,0.29 -1.81,0.87 -2.69,1.27 -0.21,0.42 -0.09,1.03 -0.68,1.17 -0.85,0.93 -1.78,2.12 -3.14,2.21 -0.8,0.97 -0.71,2.54 -1.89,3.27 -0.73,0.72 -0.47,1.93 -0.88,2.73 -2.43,0.13 -4.92,-0.02 -7.32,-0.3 -0.62,-0.63 -1.4,-1.38 -2.38,-1.11 -0.72,-0.19 -0.58,-1.23 -1.16,-1.63 -0.59,-0.52 -1.12,-1.64 -2.02,-1.53 -0.59,0.17 -0.73,0.74 -0.23,1.1 0.25,0.83 -0.29,1.87 -0.89,2.5 -0.65,-0.26 -1.71,-1.48 -2.48,-0.58 -0.26,0.69 -1.41,0.13 -1.5,0.85 0.25,1.03 1.03,2.02 1.04,3.08 -0.32,0.65 -0.56,1.97 -1.49,1.89 -0.84,-0.77 -1.15,-2.05 -2.11,-2.73 -0.11,-0.52 -0.6,-0.65 -1.03,-0.78 -0.44,-0.57 0.06,-1.7 -0.93,-1.87 -0.77,-0.38 -1.82,-1 -2.63,-0.49 -0.25,0.52 0.06,1.52 -0.53,1.8 -0.95,-0.1 -1.94,0.51 -2.24,1.39 -1.27,0.95 -3.27,1.44 -3.58,3.27 -0.1,0.91 -0.77,1.56 -1.16,2.31 -0.45,0.3 -1.08,1.31 -0.43,1.64 0.34,0.01 0.85,-0.2 0.72,0.37 0.17,0.64 -0.08,1.15 -0.3,1.7 -0.28,0.78 0.69,1.61 0.01,2.29 -0.89,-0.6 -2.09,-1.34 -2.06,-2.55 -0.26,-0.59 -1.41,-1.29 -1.63,-0.32 -0.59,0.67 -0.83,1.83 0.07,2.35 0.55,0.39 1.1,0.84 1.21,1.52 0.52,0.35 0.29,1.35 1.1,1.49 0.66,0.09 1.52,0.53 0.89,1.25 -1.61,0.23 -3.26,-0.39 -4.66,-1.13 -1.13,0.1 -2.39,-0.03 -3.39,0.59 -0.82,-0.04 -1.33,0.82 -2.07,0.85 -0.8,-0.56 -2.05,0.16 -1.8,1.14 0.4,0.52 1.75,-0.12 1.52,0.9 0.15,1.01 -1.15,0.53 -1.8,0.54 -0.64,0 -0.53,-0.63 -0.34,-1.04 -0.12,-0.68 -0.98,-0.9 -1.23,-1.53 -0.91,-0.58 -2.43,0.68 -1.5,1.59 0.6,0.49 -0.12,1.1 -0.67,1.05 -0.69,0.1 -0.67,1.06 -1.37,1.2 -1.03,0.25 -1.6,1.25 -1.43,2.28 0.04,0.83 -0.22,2.24 1.05,1.81 1.12,-0.39 1.1,0.37 0.98,1.33 0.15,1.25 -0.41,2.34 -0.94,3.42 -0.23,0.92 -0.9,2.07 -0.38,2.99 0.69,0.52 1.64,0.41 2.39,0.53 0.38,0.71 0.63,1.67 1.59,1.74 0.04,1.24 -0.83,2.4 -1.41,3.47 -0.69,0.69 -1.28,1.63 -1.05,2.67 0.3,0.66 0.75,-0.18 1.07,-0.35 1.28,-0.07 2.78,-0.42 3.91,0.36 0.35,0.74 1.06,1.26 1.29,2.09 0.37,0.67 1.73,0.5 1.42,1.54 -0.06,1.09 1.32,1.31 1.75,2.12 0.77,-0.08 0.74,-1.72 1.74,-1.23 1.08,0.19 2.35,0.76 2.61,1.91 1.05,0.56 2.58,-0.36 2.45,-1.58 0.28,-0.47 1.06,-0.78 1.35,-0.14 0.69,0.48 0.16,1.82 1.2,1.88 0.91,0.06 1.38,0.86 1.45,1.68 0.48,0.48 0.82,1.12 1.32,1.6 0.78,0.2 0.67,-0.81 0.85,-1.25 0.92,-0.7 2.13,-1.2 2.5,-2.41 0.29,-0.34 0.74,-1.49 1.29,-0.86 0.64,0.79 1.57,-0.26 2.11,-0.67 1.05,-1.02 1.22,-3.18 3.01,-3.22 0.74,-0.27 1.44,0.22 1.49,0.98 0.99,1.26 2.53,1.98 3.74,3 0.57,0.3 1.18,-0.15 1.77,-0.07 1.09,-0.59 1.21,-1.94 1.35,-3.02 1.22,-1.13 3.24,0.03 4.48,-1.17 0.69,-0.36 1.26,0.69 1.58,1.16 0.51,0.72 1.12,-0.71 1.68,-0.93 0.48,-0.29 1.42,-0.46 1.83,-0.01 0.11,0.59 0.68,0.69 1.09,0.34 0.87,-0.46 2.05,-0.42 2.78,-1.05 -0.08,-0.83 -1.25,-0.85 -1.78,-1.21 0.03,-0.73 0.41,-1.53 1.13,-1.74 0.45,-0.69 -0.33,-1.27 -0.86,-1.57 -0.27,-0.2 -0.3,-0.57 0.14,-0.43 1.17,0.11 2.28,0.9 3.41,0.8 1.16,-0.33 1.68,-1.4 2.28,-2.32 1.04,-0.94 2.53,-0.22 3.3,0.74 0.65,0.81 1.9,0.37 2.67,0.02 0.32,-0.69 -0.57,-1.39 -1.1,-1.72 -0.92,-0.1 -1.31,-1.05 -1.75,-1.72 -0.39,-0.33 -1.27,0.01 -1.07,-0.81 0.07,-0.56 -0.29,-0.94 -0.58,-1.3 -0.29,-1.03 -1.71,-1.16 -2.09,-2.19 -0.61,-0.82 -2.08,-1.17 -2.06,-2.36 0.24,-1.03 0.52,-2.24 -0.31,-3.11 -0.64,-0.91 -1.62,-1.65 -1.59,-2.85 -0.07,-0.8 -1.19,-1.62 -0.32,-2.19 0.32,-0.5 -0.1,-1.17 0.45,-1.6 0.59,-0.49 0.17,-1.22 0.58,-1.76 0.26,-0.78 0.05,-1.92 1.09,-2.17 0.62,-0.19 0.69,-0.95 1.02,-1.32 0.43,0.14 1.28,0.19 1,-0.5 0.23,-0.68 0.37,-1.41 0.58,-2.09 0.64,-1.06 1.7,-1.91 2.94,-2.09 1.33,-0.9 0.71,-2.79 1.08,-4.13 -0.1,-1.18 1.53,-0.96 2.17,-1.51 -1.26,-1.78 -3.74,-3.22 -3.7,-5.72 -0.1,-1.36 1.17,-2.3 2.22,-2.91 1,-0.75 1.49,-1.89 1.85,-3.03 0.39,-0.55 0.93,-1.16 0.5,-1.88 -0.1,-0.84 -0.87,-1.17 -1.64,-1.18 z", + "department-05" : "m 92.89,0.12 c -0.92,0.25 -1.63,1.24 -1.1,2.16 0.19,0.48 0.58,1.51 -0.28,1.52 -1.03,0.5 -0.62,1.96 -1.09,2.79 -0.5,0.85 0.81,1.35 1.44,1.52 1.22,0.46 2.51,-0.16 3.7,-0.25 0.54,0.61 -0.39,1.36 0.2,2 0.46,0.55 -0.24,1.49 0.61,1.76 1.28,0.11 1.04,1.22 1,2.19 0.04,1.34 -0.36,2.63 -0.12,3.95 -0.53,0.79 -1.69,0.39 -2,-0.4 -0.51,-1.19 -2.09,-0.47 -2.63,0.32 -1,0.97 -2.33,-0.4 -3.47,0.21 -0.86,0.38 -1.73,-1.03 -2.43,-0.12 -0.98,1.01 -2.08,1.88 -3.19,2.74 -0.6,-0.52 -1.36,-2.29 -2,-0.92 -0.19,0.45 -0.47,0.63 -0.96,0.63 -0.5,0.26 -1.64,0.37 -1.59,1.05 0.28,0.44 1.46,0.83 1.02,1.47 -0.54,0.3 -1.13,0.65 -1.29,1.26 -0.7,-0.05 -1.3,0.89 -1.97,0.42 -0.72,-0.21 -1.09,0.98 -1.85,0.43 -0.58,0.09 -1.28,-0.83 -1.74,-0.36 0.25,1.1 -0.94,2.04 -0.76,3.1 0.52,0.18 0.81,0.66 0.78,1.23 -0.53,0.61 -1.46,0.99 -1.58,1.94 -0.18,0.9 -1.25,0.06 -1.79,0.33 -0.68,0.38 -1.24,1.41 -2.12,0.79 -0.93,-0.21 -2.04,-0.85 -2.96,-0.39 -0.57,0.89 0.83,2.18 -0.26,2.82 -0.65,0.74 -0.7,1.84 -1.37,2.6 -0.33,0.63 -0.72,1.79 0.31,1.98 1.01,0.26 1.61,1.36 2.24,2.13 -0.07,0.59 -1.06,0.18 -1.47,0.37 -0.61,0.27 -0.26,1.22 -0.74,1.67 -0.29,0.65 -1.01,0.59 -1.49,0.18 -0.57,-0.34 -1.27,-0.05 -1.74,-0.61 -0.9,-0.62 -2,-0.67 -3.03,-0.83 -0.44,-0.35 -1.26,-0.9 -0.84,0.18 0.34,0.85 -0.18,1.94 0.35,2.71 0.46,0.27 1.64,0.66 1.06,1.38 -0.5,0.81 -1.42,0.3 -2.05,-0.05 -0.52,-0.37 -1.25,0.09 -0.87,0.7 0.33,0.77 0.86,1.67 0.62,2.5 -0.66,0.38 0.12,0.97 0.62,0.79 0.61,0.08 0.48,1.09 1.17,1.15 0.27,0.47 0.79,0.78 1.25,0.32 0.66,-0.57 1.26,0.29 1.65,0.72 1.26,0.36 2.77,-0.21 3.93,0.31 -0.15,0.66 -1.33,1.39 -0.16,1.75 0.4,0.17 0.78,0.55 0.44,0.97 -0.13,0.75 0.67,1.6 1.39,1.06 0.44,-0.36 1.29,0.39 0.73,0.76 -0.45,0.57 -0.47,1.41 -0.01,1.94 -0.06,0.97 -0.14,2.01 0.32,2.89 0.74,-0.36 1.49,-0.84 2.32,-1.03 0.89,-0.54 2.04,-0.3 3.03,-0.47 1.36,0.7 2.91,1.36 4.48,1.28 0.82,-0.57 -0.52,-1.06 -0.97,-1.26 -0.83,-0.93 -1,-2.37 -2.18,-3.02 -0.89,-0.61 -0.47,-1.72 -0.01,-2.45 0.2,-0.82 1.38,-0.21 1.78,0.12 0.44,0.5 0.07,1.39 0.76,1.79 0.27,0.34 1.3,1.11 1.39,0.28 -0.46,-0.7 -0.4,-1.72 0.04,-2.4 0.24,-0.63 -0.28,-0.96 -0.8,-1 -0.4,-0.58 -0.19,-1.66 0.53,-1.93 1.11,-0.98 1.03,-2.64 1.93,-3.7 0.84,-0.83 2.18,-1.02 2.91,-1.96 0.3,-0.69 1.08,-1.23 1.8,-1.37 0.77,0.34 0.76,-0.99 0.72,-1.47 0.21,-0.8 1.42,-0.33 1.96,-0.19 0.77,0.29 1.87,0.6 1.76,1.64 -0.03,0.5 0.41,0.7 0.8,0.64 0.65,1.23 1.63,2.21 2.33,3.39 0.67,0.53 1.08,-0.73 1.28,-1.18 0.53,-1.39 -0.98,-2.61 -0.83,-3.9 0.95,-0.06 1.68,-0.79 2.53,-1.06 0.55,0.33 1.54,1.41 2.02,0.36 0.44,-0.73 0.48,-1.61 -0.08,-2.27 0.17,-0.42 0.83,-0.77 1.24,-0.86 0.91,1 1.94,1.96 2.46,3.23 0.51,0.3 1.23,-0.11 1.7,0.41 0.56,0.61 1.25,1.09 2.14,1 1.98,0.14 3.96,0.2 5.94,0.29 0.53,-0.84 0.08,-2.27 1.05,-2.94 1.09,-0.75 1.14,-2.19 1.48,-3.28 1.39,0.19 2.52,-0.88 3.23,-1.94 0.77,-0.23 0.49,-1.3 1.27,-1.53 0.82,-0.72 1.93,-0.86 2.92,-1.26 0.49,-0.42 0.51,-1.23 1.32,-1.26 0.83,-0.36 1.14,-1.4 1.93,-1.78 0.77,0.27 1.8,0.29 2.08,-0.66 0.66,-1.39 2.41,-1.82 3.71,-1.06 0.39,0.18 1.29,0.5 1.12,-0.27 0.09,-1.44 -0.99,-2.46 -1.92,-3.39 -0.16,-1.25 0.2,-2.81 -0.7,-3.82 0.26,-0.63 1.23,-1.27 0.5,-1.95 -0.48,-0.56 -0.7,-1.27 -1.5,-1.47 -0.9,-0.29 -2,-1.36 -2.93,-0.65 -1.03,0.93 -2.61,0.14 -3.64,-0.46 -1.39,-1.22 -3.06,-2.05 -4.52,-3.16 -0.14,-0.64 0.04,-1.36 -0.18,-2.01 0.26,-0.67 0.64,-1.39 0.32,-2.14 -0.46,-0.77 -0.27,-1.65 -0.34,-2.48 -0.67,-1.47 -2.82,-0.12 -3.69,-1.29 -0.42,-1.05 0.19,-2.49 -0.93,-3.24 -0.45,-0.58 -0.89,-1.29 -0.84,-2.02 -0.58,-0.55 -1.68,-0.52 -2.39,-0.21 -0.4,0.9 -1.61,1.62 -2.44,0.8 -0.83,-0.16 -1.61,0.86 -1.3,1.66 0.16,0.65 0.15,1.68 -0.74,1.69 -0.9,0.39 -1.54,-0.53 -2.43,-0.47 -0.85,-0.07 -1.73,-0.21 -2.49,-0.62 0.67,-1.13 -0.23,-2.74 -1.37,-3.11 -0.83,0.45 -1.99,0.92 -2.79,0.12 -0.24,-0.12 -0.29,-0.52 -0.63,-0.43 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_region_94.js b/lib/mapael-maps/france/france_region_94.js new file mode 100644 index 000000000..01b0df173 --- /dev/null +++ b/lib/mapael-maps/france/france_region_94.js @@ -0,0 +1,37 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Corse for Mapael +* Equirectangular projection +* +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_region_94 : { + width : 46.446445, + height : 108.90127, + getCoords : function (lat, lon) { + var xfactor = 43.64246; + var xoffset = -372.3068; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.77758; + var yoffset = 2828.4353; + var y = (lat * yfactor) + yoffset; + return {x : x, y : y}; + }, + elems : { + "department-2B" : "m 38,0.13 c -0.86,-0.02 -1.92,0.52 -1.53,1.54 -0.07,1.41 0.84,2.98 0.37,4.29 -1.02,0.63 -1.78,1.79 -1.08,2.97 0.31,1.25 -1.79,2.27 -0.43,3.42 1.03,1.77 1.09,4.03 0.87,5.99 -1.04,0.9 -0.68,2.46 -1.86,3.28 -0.55,0.85 -0.93,-0.81 -1.28,-1.08 -1.12,-2.41 -4.17,-2.24 -6.4,-2.1 -1.72,0.71 -3.34,2.33 -3.45,4.28 -0.49,0.75 -1.43,1.09 -2.19,1.5 -1.14,0.44 -2.33,0.58 -3.49,0.45 -1.27,0.09 -2.22,0.96 -3.12,1.69 -1.26,0.08 -2.73,0.73 -2.79,2.16 -0.17,0.84 -1.24,1.38 -1.95,1.07 -0.5,-0.83 -2.17,-0.44 -1.95,0.7 0.03,0.95 -0.24,2.04 -1.34,2.1 -1.06,0.43 -1.52,1.9 -1.26,2.91 0.55,0.03 0.75,0.45 0.43,0.95 -0.58,0.8 -0.29,1.95 -0.61,2.73 -0.95,-0.08 -2.64,0.12 -2.24,1.52 0.17,0.68 -1.48,0.75 -0.7,1.35 1,0.34 2.17,0.03 2.95,0.87 0.64,0.19 1.19,0.44 1.67,0.84 1.11,0.04 1.99,0.86 3.06,1 1.24,0.9 3.01,1.38 4.33,0.41 0.77,-0.11 0.17,1.27 0.48,1.72 0.24,0.68 1.13,0.91 0.94,1.76 0.01,1.01 1,1.42 1.81,1.42 0.54,0.67 1.03,1.52 2.01,1.51 0.95,0.85 2.04,1.85 3.41,1.78 0.81,0.66 0.07,2.09 1.02,2.71 0.51,0.73 0.31,1.7 0.58,2.38 0.82,0.94 2.43,1.07 2.54,2.56 0.08,1.41 0.1,3.38 1.72,3.95 0.77,0.31 2.51,-0.44 2.22,0.97 0.08,1.92 0.29,3.9 0.43,5.78 -0.75,1.03 0.98,1.01 1.14,1.77 -0.13,1.12 -1.42,2.33 -0.72,3.45 0.94,0.63 2.27,0.07 3.19,0.59 0.36,1.27 1.43,-0.32 1.94,-0.65 0.69,-0.89 2.17,-0.96 2.27,-2.27 0.41,-1.33 0.84,-2.87 -0.14,-4.05 1.28,-1.78 2.76,-3.65 3.53,-5.76 -0.18,-0.5 -1.18,-0.69 -0.53,-1.39 0.27,-0.72 0.81,-0.52 1.3,-0.18 1.13,-0.3 1.5,-1.8 2.21,-2.65 0.24,-0.46 1.18,-1.82 0.2,-1.93 -0.32,0.2 -1.24,0.4 -1.3,-0.03 0.83,-1.2 2.51,-2.04 1.99,-3.78 0,-3.75 0.33,-7.58 -0.83,-11.21 -0.44,-3.72 0.03,-7.52 -0.32,-11.27 -0.23,-0.96 0.23,-2.5 -0.7,-3.12 -0.69,0.83 -1.58,-0.5 -1.96,-1.06 -0.68,-1.08 -0.51,-2.43 -1.34,-3.45 -0.07,-0.74 0.43,-1.48 0.17,-2.25 0.09,-3.08 0.97,-6.12 1.82,-9.02 -0.1,-2.83 -1.09,-5.58 -1.05,-8.44 -0.51,-1.15 -0.27,-2.43 -0.58,-3.62 -0.71,-1.09 -2.3,-1.14 -3.47,-1.1 z", + "department-2A" : "m 0.43,41.82 c -0.96,0.22 0.16,1.27 -0.09,1.87 -0.26,0.78 0.55,1.05 0.89,0.33 0.84,-0.78 2.1,-0.24 2.66,0.64 -0.38,0.25 -2.07,0.91 -1.17,1.46 0.54,0.1 1.26,-0.09 1.36,0.59 0.94,0.46 2.04,1.2 2.26,2.23 -1.21,0.86 -2.67,0.94 -4,1.38 -0.75,0.43 -1.53,0.82 -2.35,1 -0.07,0.64 1.28,0.38 1.02,1.26 0.15,0.97 1.11,1.99 -0.03,2.74 -0.07,0.53 1.42,0.16 0.67,0.82 -0.95,0.18 -0.28,0.75 0.14,1.07 0.03,0.67 0.47,1.14 1.17,1.07 0.96,0.21 1.73,0.86 2.26,1.6 0.62,0.08 1.54,-0.78 1.77,0.26 0.37,1.33 1.26,2.39 2.05,3.39 -0.98,1.49 -3.77,1.26 -4.05,3.33 0.28,0.58 0.59,1.18 -0.18,1.59 -0.74,0.83 -2.43,-0.12 -2.92,0.84 0.37,0.93 1.98,1.58 1.15,2.73 -0.48,0.66 0.08,1.54 0.81,0.94 1.66,-0.37 3.76,0.29 4.92,-1.35 0.94,-0.7 2.23,0 2.52,1.07 0.84,0.92 -0.27,1.63 -0.59,2.43 0.03,0.56 0.78,1.61 -0.26,1.63 -0.56,-0.2 -1.15,0.41 -0.42,0.68 0.63,0.24 1.18,0.91 0.34,1.33 -0.65,0.87 -2.22,0.64 -2.64,1.63 0.95,1.48 -0.99,3.08 -2.46,2.85 -0.32,0.65 1.33,0.34 1.61,1.08 0.44,1.42 1.95,-0.12 2.92,-0.18 0.86,-0.46 0.88,0.55 0.75,1.14 -0.12,0.93 0.79,1.07 1.36,0.65 1.2,0.34 2.41,1.06 3.77,1.06 0.69,-0.12 1.67,0.59 0.96,1.2 -0.88,0.08 -1.57,0.66 -1.5,1.55 -0.78,0.66 -1.94,1.18 -2.96,1.26 -1.24,-0.36 -0.97,1.54 -1.16,2.25 -0.14,0.89 0.57,1.54 0.19,2.45 0.23,1.39 2.87,0.97 2.56,2.58 0.39,0.62 1.4,0.23 1.8,0.94 0.8,0.1 1.31,0.63 1.8,1.22 0.6,0.23 1.29,0.06 1.82,0.56 1,0.13 1.88,0.54 2.78,0.95 0.52,-0.07 0.69,0.84 1.22,0.28 0.27,-0.14 1.08,-1.21 0.9,-0.34 -0.27,0.72 -0.28,1.92 0.84,1.62 0.56,-0.02 1.59,0.4 0.94,1.11 -0.26,0.6 -1.29,2.11 -0.02,2.21 1.36,-0.01 2.29,1.1 3.2,1.91 1.25,0.61 2.31,-0.53 2.58,-1.7 0.22,-0.41 1.03,-1.91 0.02,-1.64 -0.14,0.16 -1.29,1.16 -1.02,0.41 0.66,-0.63 -0.15,-1.53 0.05,-2.14 1.48,-0.5 3.33,-2.12 2.6,-3.81 -0.26,-0.47 -0.53,-1.83 0.38,-1.85 0.78,-1.03 1.74,-1.78 2.68,-2.63 0.58,-0.57 0.9,-1.86 -0.25,-1.96 -0.79,-0.52 -1.28,0.22 -1.79,0.67 -0.97,0.39 -0.85,-0.86 -0.46,-1.35 0.21,-0.72 0.7,-1.51 1.52,-0.93 0.98,0.57 1.27,-0.33 1.3,-1.06 1.46,0.15 1.67,-1.66 1.06,-2.64 0.29,-0.98 1.97,-1.33 1.42,-2.65 -0.21,-3.01 0.22,-6.09 -0.26,-9.06 -0.6,-1.25 -1.82,0.32 -2.38,0.78 -0.6,0.62 -1.57,1.15 -2.05,0.22 -1.03,-0.08 -2.44,0.15 -3.17,-0.78 -0.33,-1.27 0.92,-2.26 0.78,-3.45 -0.17,-0.8 -2,-0.11 -1.41,-1.09 0.81,-0.8 -0.18,-1.9 0.13,-2.89 -0.12,-1.38 0.18,-3 -0.31,-4.23 -1.05,0.02 -2.6,0.57 -3.06,-0.77 -1.26,-1.34 0.01,-3.91 -1.83,-4.81 -1.66,-0.28 -1.44,-2.42 -2.15,-3.51 -0.87,-0.61 0.02,-2.75 -1.61,-2.49 -1.03,-0.32 -1.81,-1.14 -2.49,-1.85 -0.79,0.02 -1.49,-0.21 -1.73,-1.03 -0.49,-0.66 -1.54,-0.14 -1.86,-1.1 -0.52,-0.71 -0.33,-1.79 -1.26,-2.21 -0.4,-0.53 0.17,-2.18 -0.96,-1.68 -1.46,0.35 -3.05,-0.01 -4.24,-0.9 -1.05,0.03 -1.69,-1.07 -2.81,-0.86 -0.59,-0.13 -0.83,-0.88 -1.54,-0.8 -0.67,-0.69 -1.61,-0.71 -2.5,-0.73 -0.61,-0.3 -1.26,-0.51 -1.97,-0.4 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_regions.js b/lib/mapael-maps/france/france_regions.js new file mode 100644 index 000000000..e9592e983 --- /dev/null +++ b/lib/mapael-maps/france/france_regions.js @@ -0,0 +1,73 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of metropolitan France by region +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +* @source http://commons.wikimedia.org/wiki/File:Guadeloupe_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Martinique_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Guyane_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:La_R%C3%A9union_arrondissement_commune_map.svg +* @source http://commons.wikimedia.org/wiki/File:Mayotte_blank_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_regions : { + width : 599.91296, + height : 626.66663, + getCoords : function (lat, lon) { + if (lat < 43.213183 && lat > 40.780541 && lon > 7.611694 && lon < 11.21521) { + // Corse + var xfactor = 43.64246; + var xoffset = 223.2912; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.77758; + var yoffset = 3346.37839; + var y = (lat * yfactor) + yoffset; + } else { + var xfactor = 45.48385; + var xoffset = 222.309; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3371.10748; + var y = (lat * yfactor) + yoffset; + } + return {x : x, y : y}; + }, + elems : { + "region-53" : "m 77.55,146.69 c -2.18,0.97 -4.29,2.09 -5.31,4.31 -0.95,0.92 1.17,-5.13 -1.44,-3.44 -1.04,2.53 -4.55,0.8 -6.22,2.69 -2.17,3.05 -3.41,-2.38 -6.09,-0.78 -1.84,0.33 -1.1,2.47 -3.03,2.88 -0.93,1.49 3.49,3.66 0.09,3.84 -0.99,0.94 1.04,4.8 -1.59,3.13 -1.84,1.15 -0.66,-0.87 -2.47,-0.84 -2.05,-0.25 -3.75,-1.52 -5.91,-1.38 -3.15,-1.06 -2.04,4.36 -3.09,5.41 -1.21,-0.52 -1.95,-1.73 -2.19,-2.81 -1.19,0.54 -2.06,1.99 -2.28,-0.03 -0.68,-1.05 -0.42,-2.7 -0.91,-3.59 -1.58,0.96 -3.5,1.64 -4.16,3.31 -1.54,-1.47 -4.05,-0.61 -5.72,0.28 -1.47,0.32 -0.49,2.11 -0.47,1.94 -1.6,-0.37 -3.55,0.35 -4.66,0.72 1.4,-2.77 -2.51,-2.89 -3.97,-1.38 -0.64,0.11 -2,0.43 -1.03,1.28 -2.04,0.5 -3.81,0.84 -5.84,0.44 -2.03,0.42 1.52,3.32 -1.31,2.25 -2.56,-1.01 -1.41,1.5 -0.75,2.41 -1.28,-1.21 -3.95,-1.38 -5.34,-0.06 -1.98,0.41 -3.19,2.69 -3.28,4.59 0.74,1.03 1.43,1.8 -0.13,2.56 -1.57,2.24 1.6,4.38 -0.22,6.47 0.53,2.34 3.91,1.86 4.59,0.09 2.27,0.52 4.46,1.23 6.56,-0.44 2.6,-1.34 5.43,-2.15 8.22,-2.97 0.92,-0.31 4.09,-1.68 1.88,-0.22 -2.02,1.28 -5.2,1.76 -5.81,4.44 -0.04,1.77 1.96,-0.55 2.59,1.09 1.06,-1.01 2.4,-1.7 3.81,-1.44 1.47,-1.28 1.28,0.04 0.13,0.69 -1.8,1.75 1.83,1.25 2.72,1.94 0.36,-0.17 1.77,0.85 1.97,0.78 -1.65,0.15 -3.08,1.32 -4.38,0 -2.31,0.21 -4.61,1.9 -6.69,-0.09 -1.48,0.7 -3.23,0.53 -4.59,0.16 -0.84,-0.95 1.43,-3.75 -0.97,-2.47 -1.64,0.71 0.55,4.28 -2.09,3.09 -1.86,1.31 1.59,2.52 2.69,1.97 0.19,1.21 -0.97,2.21 -0.03,3.56 0.11,1.13 -0.37,2.81 1.06,1.28 1.1,-1.67 1.85,-4.89 4.5,-3.38 1.97,1.62 4.98,1.12 6,3.59 1.13,1.38 1.68,5.94 -1.13,5.16 -2.19,-1.24 -4.56,0.13 -6.78,0.53 -3.6,0.94 -7.3,1.41 -10.97,2 -1.02,2.79 2.2,2.3 3.94,2.69 1.57,0.58 2.72,2.13 4.28,0.44 2.87,1.58 5.45,3.83 6.97,6.78 0.75,1.87 2.57,4.36 0.56,6 -0.49,2.41 3.46,1.3 4.97,1.91 1.77,0.5 6.29,-1.55 3.63,-3.09 -1.14,-1.39 0.15,-3.24 1,-1.09 2.15,0.54 2.05,-1.76 0.84,-2.78 -0.21,-2.37 1.08,2.24 2.5,2.06 1.3,-0.04 1.91,1.21 3.25,0.75 2.3,0.96 0.55,-4.29 3.09,-2.06 2.11,1.57 2.69,4.21 4.56,6 1.48,0.03 3.55,0.98 5.03,-0.31 1.53,-0.27 2.74,1.8 4.56,1.56 7.1,1.87 6.22,-1.53 5.28,0.34 0.76,1.87 1.76,4.55 4,4.84 1.75,0.33 3.97,-0.88 2.47,-2.28 1.59,0.45 3.33,-2.79 4.09,-2.38 -0.13,1.59 -3.63,3.33 -2.06,4.22 2.47,-0.22 3.68,4.17 5.75,3.22 -0.25,-2.41 3.74,-3.2 1.31,-5.38 0.07,-0.51 1.48,0.54 1.97,-0.28 -0.65,1.5 2.24,1.64 0.59,3.25 -2.17,0.5 -5.09,2.65 -2.59,4.88 2.69,1.08 0.71,4.49 1.41,6.69 -0.22,1.75 3.13,1.9 1.44,0.16 -0.99,-0.96 -1.05,-6.52 1,-4.22 -0.06,1.32 4.37,0.76 3.56,-1.19 0.28,-0.25 1.24,3.02 1.38,0.81 0.45,1.07 3.39,2.69 1.94,0.66 -0.85,-1.47 -0.64,-3.47 -1.09,-4.88 1.67,1.06 0.92,3.22 2.78,3.75 1.19,1.24 2.51,-1.47 3.25,-1.75 1.74,0.54 4.19,-2.37 4.41,0.28 -1.13,0.56 2.41,2.03 2.03,0.22 -0.01,-1.02 0.07,-1.73 0.66,-0.31 -0.1,1.85 -1.62,4.06 -2.97,4.91 -2.01,-1.25 -3.92,0.53 -5.75,-1.09 -2.41,-0.75 -1.22,1.48 0.28,1.88 1.28,1.49 2.28,4 4.72,2.34 1.58,-1.19 4.64,1.01 4.91,-1.53 0.94,0.16 2.07,0.05 1.56,-1.03 1.32,-0.16 3,-0.7 1.13,0.69 0.65,1.62 3.99,-0.93 5.56,0.44 1.17,1.48 3.84,0.65 4.78,1.28 -2.04,0.45 -6.32,-0.66 -5.19,2.78 1.29,2.36 2.69,-3.37 4.06,-0.44 1.93,0.09 4.5,0.48 4.41,-2.28 0.26,-2.08 2.41,-0.85 3.03,-0.28 1.19,-0.72 2.59,-0.89 3.09,0.41 1.27,-0.55 0.9,-2.95 2.88,-2.59 0.95,-1.62 0.37,-3.71 0.84,-5.49 0.78,-5.61 -4.02,0.63 3.1,-3.58 1.4,-0.12 2.45,-2.65 2.97,-0.28 1.34,-1.32 3.48,-1.27 5,-2.28 1.96,0.36 3.9,0.32 5.81,0.38 2.01,-0.47 4.26,-1.08 4.47,-3.59 1.78,-2.07 5.04,-1.86 7.03,-3.38 -1.35,-2.84 2.64,-1.48 4,-1.03 0.91,1.88 2.98,2.02 4.75,2.59 2.4,1.02 2.01,-2.44 2.91,-3.78 -0.25,-1.23 1.51,-1.54 1.13,-3.09 1.75,-1.44 0.62,-4.34 2.53,-5.69 1.37,-2.06 5.65,0.75 5.31,-2.94 -0.57,-1.85 -0.31,-3.81 -1.41,-5.47 -0.19,-2.53 -1.34,-4.78 -1.47,-7.31 -0.32,-1.92 -1.38,-4.44 0.53,-5.94 1.68,-1.62 0.44,-4.09 0.5,-6.03 -1.88,-2.34 0.48,-5.06 -0.88,-7.47 -1.44,-1.4 -3.62,-0.63 -5.25,-1.78 -1.79,-0.97 -3.67,-0.49 -4.03,1.72 -2.41,0.32 -3.01,3.67 -5.59,3.19 -1.6,-0.55 -2.12,-2.02 -3.88,-2.34 -1.66,-2.38 -1.57,-5.06 -2.81,-7.53 -0.67,-1.47 -1.98,-2.35 -3.31,-0.84 -2.14,1.06 -4.77,0.58 -7.09,1 -1.98,0.31 -4.48,-1.04 -4.06,-3.28 0.37,-0.95 1.78,-2.35 0.56,-3.25 -1.79,1.11 -3.53,0.49 -5.19,1.22 -1.33,0.27 -1.62,2.1 -2.81,2.91 0.05,2.01 1.94,3.28 3.13,4.44 -1.9,1.4 1.28,2.2 0.34,3.34 -2.2,2.26 -0.47,-3.02 -3.16,-2.09 -1.23,2.3 -1.13,-1.92 -3.16,-0.97 -0.98,-0.96 -3.18,-4.55 -3.47,-1.25 -0.31,1.86 -1.31,-1.15 -2.13,0.75 -0.55,-1.37 -1.29,-3.44 -2.13,-4.22 -1.05,0.87 -3.98,2.86 -2.31,0.19 1.61,-1.33 -0.19,-4.16 -1.41,-1.78 -1.59,0.73 -2.87,2.56 -4.5,1.06 -0.75,-0.13 -2.87,0.55 -1.22,1.19 -1.01,2 -3.58,2.06 -4.94,3.59 -1.37,1.74 -2.79,3.54 -4.88,3.31 0.31,3.1 -2.72,0.01 -2.03,-1.5 -2.07,-1.61 -5.2,-2.76 -4.5,-6.06 -1.5,-2.13 -3.95,-3.36 -5.38,-5.66 0.92,-3.22 -2.95,-1.86 -4.25,-3.5 -0.56,-0.74 2.52,-2.63 -0.09,-2.81 -2.8,-0.54 -2.29,3.78 -4,4.19 1.22,-1.79 2.14,-3.95 1.69,-6.22 0,-0.43 -0.03,-0.98 -0.5,-1.16 z", + "region-52" : "m 208.48,167.06 c -1.48,0.64 0.52,2.23 -1.16,2.94 -0.62,1.58 -2.9,-1.24 -3.44,1.03 -1.11,2.61 -2.89,-1.23 -4.88,-0.63 -1.86,0.66 -3.73,0.55 -4.91,2.47 -1.67,0.11 -2.98,1.41 -4.56,1.69 -0,-0.93 -0.73,-2.83 -1.72,-1.31 -1.02,-0.25 -2.56,-0.06 -1.38,1.13 -0.7,1.44 -2.8,1.17 -2.97,-0.5 -0.93,-0.24 -1.59,0.59 -1.84,-0.91 -0.54,-2.95 -3.74,-0.29 -4.78,-2.56 -1.76,-0.88 -2.04,2.67 -4.06,1.19 -0.83,-1.53 -3.41,-1.05 -2.44,0.88 0.79,1.99 -1.26,3.98 0.56,5.81 0.03,1.6 0.47,3.25 0.34,4.84 -1.21,1.42 -2.79,3.36 -1.75,5.31 0.7,2.08 0.5,4.36 1.34,6.41 0.4,1.57 0.16,3.51 1.53,4.66 -0.23,1.58 0.13,3.02 0.41,4.5 -0.72,2.52 -3.81,0.32 -4.94,1.81 -1.68,0.68 -1.55,2.84 -2,4.41 -1.1,1.4 -0.69,2.98 -2.06,4.03 -0.81,2.4 -0.14,2.65 -0.66,2.94 -0.65,0.74 -0.38,1.51 -0.98,2.11 -1.77,-1.05 -3.44,-0.63 -5.05,-1.86 -1.28,-1.9 -2.98,-1.97 -5.09,-2.16 0.99,2.76 -2.34,2.74 -4.16,3.59 -2.66,0.16 -2.99,3.08 -4.31,4.44 -2.35,0.63 -4.46,0.91 -7,0.75 -2.15,-0.63 -4.33,0.65 -6.25,1.56 -1.04,1.56 -1.14,-2.44 -2.03,0.06 -1.72,0.93 -4.03,1.19 -4.59,3.22 0.34,1.88 -0.7,4.08 -0.41,6.22 -1.94,0.02 -2.39,1.77 -3.16,2.88 -1.2,-0.61 -1.59,-1.83 -3.09,-0.47 -1.16,0.3 -2.43,-2.11 -3.06,0.22 0.15,3.01 -3.49,2.71 -5.16,2 -2.61,-1.24 -2.16,4.49 0.53,3.28 1.03,1.2 -1.51,0.54 -1.88,1.31 -1.01,-2.17 -4.45,0.91 -4.53,1.78 1.63,1.36 3.42,2.64 4.66,4.41 0.14,3.2 -5.02,-1.23 -4.06,0.81 1.77,0.74 4.56,3.3 5.41,0.84 3.12,-0.51 5,4.8 7.97,1.47 2.43,-0.5 2.6,-4.21 5.47,-3.41 2.69,0.13 5.46,-1.42 7.72,0.94 2.25,0.07 4.06,1.3 5.34,3.09 0.91,1.4 2.77,2.15 4,2.66 -2.49,0.83 -3.91,-1.92 -6.16,-2.31 -1.91,-0.02 -1.26,-3.91 -3,-2 -2.34,-0.79 -4.4,-1.45 -6.75,-0.44 -2.98,-0.51 -4.67,2.23 -3.22,4.84 1.49,2.66 -2.12,3.14 -3.22,4.47 1.94,1.83 5.66,0.78 7.81,2.78 2.09,1.48 3.33,3.8 5.13,5.5 3.1,3.69 -1.32,-2.24 -2.94,-0.13 -1.04,2.02 -1.04,4.6 -3.56,5.41 -0.99,1.76 -2.23,3.3 -1.94,5.44 -0.02,2.5 2.58,3.68 4.25,5.06 1.48,1.04 2.72,2.47 3.19,4.25 1.93,0.88 2.89,2.4 3.97,4.13 1.35,1.69 2.62,3.67 2.78,5.78 0.54,1.46 0.07,4.78 1.69,4.94 0.11,-0.77 -0.23,-3.25 0.53,-1.25 0.82,1.68 2.7,2.29 4.06,3.41 1.2,0.95 3.56,-0.2 2.69,2.06 2,0.84 5.25,-0.66 6.78,1.66 0.84,1.71 0.97,5.4 3.81,3.72 2.06,-1.27 3.2,2.06 4.59,1.56 0.61,-0.76 2.33,3.52 3.44,2.53 -0.14,-2.55 2.6,-3.23 4.53,-2.44 0.96,-0.72 2.22,-0.12 2.91,-1.78 1.71,-1.01 4.1,-1.13 6,-1.81 -0.43,1.18 -1.66,4.21 0.88,3.34 1.55,-0.59 2.76,-0.38 3.69,-1.53 1.96,-0.54 1.67,1.96 3.78,2.09 1.38,0.67 2.23,-2.19 3.78,-0.59 1.88,-0.77 2.8,-3.17 5.13,-3.38 1.55,-1.43 -2.67,-3.79 -3.03,-1.72 -2.47,-0.7 0.97,-3.66 -0.06,-5.28 -0.62,-1.47 -1.62,-3.73 0.66,-4.06 -0.38,-1.92 -0.88,-3.67 -0.78,-5.72 -0.4,-1.4 -2.26,-0.43 -1.13,-2.19 0.1,-1.5 -1.87,-2 -0.63,-3.56 -1.5,-1.8 -4.18,-4.05 -2.16,-6.5 -0.53,-1.57 -3.62,-1.66 -4.25,-3.81 -2.25,-1.31 0.41,-4.47 -2.78,-5.13 -0.94,-0.55 0.01,-0.98 -0.91,-1.69 0.93,-1.21 1.47,-1.08 2.26,-1.4 1.5,-0.57 2.53,-1.4 4,-0.34 1.92,0.34 3.87,-0.61 5.94,-0.19 1.85,-0.7 3.41,-2.43 2.94,-4.28 1.33,-1.58 3.84,-1.82 5.19,-0.47 2.04,0.28 2.19,-2.51 4.47,-1.56 2.07,-0.07 3.91,-1.32 6.06,-0.47 0.98,-0.69 4.56,-0.52 2.22,0.97 -1.16,1.22 1.28,1.45 1.94,1.66 1.06,-1.12 0.87,-3.69 3.13,-2.25 1.72,-0.1 -0.18,-2.92 1.53,-3.78 0.74,-1.38 1.73,-1.61 3.03,-1 0.6,-1.69 0.81,-4.03 1.09,-6 0.39,-2.25 1.51,-4.36 3.06,-5.84 0.04,-1.46 2.68,-2.26 0.69,-3.69 2.11,-1.35 0.62,-4.46 2.53,-6.06 1.44,-1.95 -1.95,-3.07 0.06,-4.81 1.39,-3.22 0.07,-3.16 1.1,-3.1 2.37,0.18 3.96,1.27 5.93,2.57 2.46,0.23 0.91,-2.42 0.06,-3.25 0.43,-2.12 2.06,-0.81 2.81,0.13 1.46,-0.48 1.8,-2.16 3.66,-2.03 1.24,-0.96 4.39,-0.87 4.25,-2.53 -2.08,-1.77 1.01,-3.58 2.34,-4.72 1.24,-0.44 2.28,-0.33 2.16,-1.91 1.51,-0.55 2.08,-2.63 3.22,-3.34 -0.56,-1.36 -1.11,-5.36 1.28,-4.28 1.16,1.48 -0.06,-2.45 1.66,-2.44 1.26,-1.13 -1.77,-3.23 0.09,-4.63 0.46,-1.77 -3.37,-1.8 -1.47,-3.91 1.34,0.27 2.45,-1.18 0.69,-1.66 1.71,-0.69 1.24,-3.36 3.56,-2.72 1.69,-1.55 -2.41,-1.71 -3.25,-2.47 -1.21,-1.93 -3.96,0.61 -4.84,-1.97 -1.01,-1.18 -1.91,-5 -3.88,-3.16 0.5,1.93 -2.54,0.03 -3.75,0.28 -1.39,-0.92 -2.78,-1.98 -2.78,-3.69 -2.14,0.23 -5.75,-0.97 -4.94,-3.72 -1.03,-2 0.43,-4.65 -1.47,-6.31 -0.97,-1 -2.34,-1.62 -3.72,-1.75 -1.82,0.73 -4.08,0.78 -5.25,2.59 -1.02,0.75 -2.36,0.73 -2.94,2.22 -1.69,-0.06 -1.5,3.19 -3.53,1.63 -1.68,-1.56 -1.6,0.2 -3.1,0.08 -0.03,-0.82 -0.32,-0.1 -0.12,-1.36 -0.24,-1.26 0.73,-4.38 -1.59,-2.94 -1.71,0.29 -3.1,-0.61 -3,-2.41 -0.79,-1.07 -0.57,-1.9 0.13,-2.75 -0.95,-1.08 -2.33,-2.44 -3.94,-2.47 z", + "region-25" : "m 131.33,90.22 c -0.1,-0.01 -0.2,0.01 -0.31,0.03 -2.07,1.53 -0.37,4.37 2,4.31 2.23,1.05 2.23,4.3 1.5,6.31 -2.49,1.68 -0.73,3.58 0.41,5.38 0.96,2.16 0.93,4.77 1.5,7.06 2.08,-0.34 2.6,2.06 4.31,3 0.39,-2.34 1.97,0.49 0.34,0.84 1.8,1.66 2.25,4.31 3.31,6.44 1.02,-0.52 2.93,-1.19 3.41,0.25 -3.06,-1.2 -2.53,3.85 -1.06,4.84 0.73,1.01 -2.29,2.18 -0.88,4 0.9,1.35 -0.83,3.99 1.22,4.78 -0.29,-1.98 3.58,-1.34 2.47,-0.94 -2.19,-0.32 -2.42,4.49 -0.94,5.53 -1.49,1.88 -0.81,4.79 -2.53,6.75 2.86,1.4 0.28,5.39 2.63,7.16 1.57,2.06 3.28,4.7 6.22,4.41 1.27,0.62 2.97,2.16 0.44,1.47 -2.01,-0.05 -3.98,1.29 -6.03,0.56 -1.76,-0.81 -2.47,0.59 -0.91,1.63 1.59,2.18 0.86,5.03 2.72,7.13 1.82,0.95 4.55,4.48 6.47,1.53 1.1,-1.94 3.71,-1.76 4.13,-4.25 2.92,-0.15 5.6,1.84 8.56,2.03 1.72,0.13 4.33,2.58 5.31,-0.25 1.6,-0.43 2.18,1.64 4.64,0.78 1.35,0.03 1.29,2.39 2.76,2.84 1.25,-0.81 1.25,2.88 2.91,0.85 -0.34,-1.52 0.41,-2.15 1.78,-1.59 1.44,-1.68 1.56,0.19 2.09,1.19 1.94,-0.76 4.31,-1.38 5.84,-3.09 1.96,-0.76 5.17,-1.36 7.31,0.56 0.86,-1.55 2.64,-2.22 3.84,-1.53 2.19,-0.69 -0.32,-3.61 2.41,-3.25 1.22,0.63 4.8,2.15 2.63,3.63 0.42,2.11 1.42,5 4.16,3.63 2.64,-0.54 -0.68,6.29 2.44,4 1.37,-0.32 3.43,2.21 3.94,-0.5 1.52,-1.02 2.55,-2.1 3.94,-2.88 0.13,-1.39 3.5,-1.72 5.06,-2.44 2.07,-0.26 4.59,1.13 5.28,3.13 -0.06,2.06 0.38,4.02 0.44,6.06 0.3,2.62 4.16,1.96 5.31,3.19 -0.15,2.4 3.74,4.17 5.78,2.94 2.1,-2.41 3.28,1.6 4.31,2.97 0.79,2.77 5.5,0.5 4.25,-1.69 -2.11,-1.04 0.14,-4.68 -2.47,-4.47 -0.11,-2.74 2.48,-3.47 4.63,-3.75 2.4,-0.8 4.73,-4.02 4.38,-5.88 -2.6,-1.75 2.03,-5.13 -1.28,-6.06 0.58,-2.87 -4.21,-1.68 -4.03,-4.59 -2.12,-0.59 0.3,-4.97 -3,-4.28 -0.97,-0.7 -0.32,-2.36 -2.09,-2.5 2.39,-1.14 1.58,-4.4 -0.72,-5.22 -1.46,-1.16 -4.51,-1.72 -4.59,-3.75 0.31,-1.19 -1.25,-2.23 -1.53,-3.09 -1.64,1.84 -3.89,0.06 -5.91,0.5 -1.87,-0.14 -3.8,-2.54 -2.31,-4.34 0.36,-0.64 0.58,0.08 1.19,-1.63 -0.17,-1.62 1.69,-3.89 -1.06,-4 -2.67,-0.46 -0.94,-3.18 0.38,-3.34 -1.98,-1.59 2.31,-4.07 -0.88,-4.56 -0.57,-1.85 0.6,-4.24 -2.09,-4.84 -1.63,-0.93 -0.88,-2.37 0.84,-2.38 1.89,-1.03 -0.49,-3.21 -1.69,-1.53 -1.75,1.03 0.44,-1.94 -1.28,-1.97 1.47,-2.14 -0.51,-4.56 -0.16,-6.97 -0.31,-0.85 -1.21,-0.51 -1.88,-0.5 -2.27,0.34 -4.7,0.99 -6.5,2.44 -1.26,1.74 -2.9,3.08 -4.88,3.94 -2.67,1.45 -5.6,2.57 -8.66,2.72 -1.57,0.68 -2.47,1.16 -3.78,-0.13 -2.28,-0.63 -4.34,-1.82 -6.47,-2.81 -2.03,-0.27 -4.08,-0.36 -6.09,-0.91 -1.82,0.2 -3.72,0.61 -5.59,0.16 -3.59,-0.37 -7.33,-0.44 -10.72,-1.81 -1.79,-1.87 -4.45,-1.13 -6.75,-1.16 -1.97,-0.42 -3.96,1.4 -3.34,3.41 0.03,1.19 -1.86,-1.57 -3.19,-1.13 1.82,-3.14 -1.03,-5.44 -2.84,-7.69 -1.07,-2.07 -3.58,-4.19 -2.53,-6.72 1.49,-0.46 1.59,-1.77 2.81,-2.53 0.64,-1.58 -0.91,-6.17 -3.88,-5.59 -2.22,-0.46 -4.6,-0.57 -6.75,0.28 -0.7,2.48 -3.39,2.48 -5.44,2.63 -3.16,0.33 -5.73,-2.16 -9.06,-2.06 -1.72,-0.12 -2.65,-2.59 -4.5,-1.56 -0.6,-0.28 -1.01,-1.03 -1.69,-1.09 z", + "region-54" : "m 220.11,259 c -1.83,1.36 -2.39,3.5 -2.09,5.47 -1.62,-0.38 -3.86,-0.7 -3.09,1.91 -0.6,1.04 -0.69,0.03 -1.63,0.25 -0.87,-0.96 -2.95,-0.24 -1.19,-1.94 0.94,-0.85 -0.02,-1.14 -0.78,-1.16 -1.9,1.4 -4.41,-0.8 -6.38,0.88 -1.77,0.1 -3.38,-0.03 -4.53,1.59 -1.1,-0.38 -2.37,0.66 -3.13,0.44 0.43,-0.68 1.31,-1.97 -0.38,-1.34 -1.39,0.15 -3.84,1.4 -2.47,3.03 -1.35,1.52 -2.84,3.5 -5.19,2.53 -2.04,1.17 -4.12,-0.02 -6.25,-0.16 -1,1.07 -5.15,1.37 -3.16,3.19 0.99,1.24 3.17,1.93 1.88,3.78 0.61,2.43 2.79,3.98 5.03,4.94 0.97,0.91 -2.04,3.97 0.75,4.66 0.24,1.6 2.44,2.55 1.41,4.22 0.87,0.83 1.52,1.78 0.84,2.78 2.6,1.36 0.57,4.61 2.16,6.69 -0.35,1.33 -2.77,1.22 -1.25,3.06 1.15,1.77 0.53,3.41 -0.38,5.16 -0.03,1.27 0.81,2.02 1.28,0.5 1.8,0.1 4.51,2.12 1.81,3.38 -2.52,0.17 -3.25,4.04 -6.13,2.63 -0.61,0.86 -1.5,0.87 -2.16,1.66 -0.15,-0.66 -0.54,-1.26 -1.44,-1.63 -1.04,-0.75 -2.84,-2.01 -3.28,0.09 -1.72,-0.29 -6.44,1.16 -4,-2.06 0.3,-0.52 -0.12,-1.17 -0.75,-0.88 -1.84,1.26 -4.74,0.41 -5.81,2.91 -3.26,0.02 0.77,5.14 -3.06,5.47 -1.82,1.05 -3.7,4.18 -2.19,5.84 3.16,-0.44 2.83,3.25 4.66,4.75 0.18,1.52 3.73,5.28 0.16,5.06 -2.63,-0.06 1.74,2.73 0.25,4.13 1.31,1.55 0.24,3.46 -1.38,3.28 -0.47,1.76 -2.35,1.76 -1.16,3.84 0.65,3.56 3.83,5.46 6.34,7.59 -3.27,-0.53 -4.87,-4.06 -7.22,-5.25 -3.39,-0.91 -3.86,2.38 -3.84,4.88 -0.67,3.03 2.89,0.24 3.72,2.81 2.22,1.16 4.24,2.77 6.34,4.09 1.78,2.01 2.91,4.4 5.78,5.19 3.78,3.01 6.99,7.11 7.78,12 0.56,3.54 5.83,1.95 6.97,1.47 0.01,4.14 4.06,2.04 6.41,3.25 2.17,2.13 0.32,5.42 2.06,7.81 0.55,1.04 2.17,-1.22 3.19,0.59 2.59,1.32 4.25,4.44 7.59,4.28 1.79,-0.22 2.74,-3.46 4.41,-0.78 1.6,0.17 0.6,-2.97 2.56,-3.41 -0.86,-1.27 -0.11,-1.48 0.29,-2.89 0.46,0.7 0.68,-1.05 1.55,-0.77 1.12,-1.93 3.28,-0.2 4.75,-0.25 1.32,-1.28 1.61,-3.13 3.19,-3.94 0.74,-1.56 3.64,-1.09 2.59,-3.53 -0.91,-1.87 -0.76,-4.09 0.22,-5.91 0.83,-1.03 1.82,-1.26 1.72,-2.66 2.14,0.73 3.02,-3.1 5.38,-2.09 0.34,-1.94 2.4,-3.25 3.38,-4.41 1.34,-1.83 -0.88,-4.57 1.38,-5.63 2.01,1.43 2.17,-1.86 3.34,-3 1.3,-1.48 1.93,-3.57 3.66,-4.59 2.06,-0.54 0.26,-4.35 3.13,-3.19 1.8,1.51 1.2,-2.15 2.63,-2.69 0.9,-1.93 -0.04,-3.83 0.5,-5.66 1.77,0.89 4.2,0.31 5.03,-1.66 0.94,-1.41 -0.51,-4.75 -2.38,-4.5 -1.22,0.39 -3.6,-2.28 -2.44,-3.84 -0.52,-2.27 -0.81,-2.05 0.4,-4.47 -0.69,-1.69 -3.03,-5.26 0.35,-5.56 0.85,-1.96 2.73,-3.74 4.97,-3.81 3.08,1.68 3.11,-2.44 4.09,-4.25 1.66,-1.63 4.57,1.31 5.22,-1.78 1.49,-0.33 3.43,-2.93 1.13,-3.88 -2.84,-0.91 -0.57,-4.31 -2.72,-5.72 -1.55,-1.59 -4.62,0.57 -4.75,-2.44 -1.74,-0.37 -3.68,-1.15 -4.75,-2.78 -1.09,-1.83 0.1,-4.21 0.5,-6.06 -0.12,-2.37 -2.82,-3.37 -4.03,-5.16 -1.17,-2.49 -1.79,-5.27 -4.5,-6.69 -1.72,-1.44 -1.28,-3.75 -1.78,-5.69 -1.15,-1.45 -3.05,-1.62 -4.16,-2.97 -3.22,-0.24 0.18,1.98 -0.31,3.25 -2.34,0.38 -5.37,-0.55 -7.13,1.63 -1.89,-0.2 -3.78,-1.28 -5.44,-0.03 -1.93,-1.75 -0.88,-4.6 -0.81,-6.91 0.33,-1.71 -2.65,0.44 -2.06,-1.69 -0.96,-0.9 -3.56,1.74 -3.84,-0.44 1.52,-1.61 0.24,-3.14 -1.44,-2.16 -0.41,-1.64 -1.84,-1.37 -2.91,-1.47 -0.25,-1.89 -1.73,-2.4 -3.03,-3.22 z m -68.97,61 c -1.76,0.06 -3.89,0.95 -2.03,2.69 2.45,1.55 5.98,0.45 8.22,3 1.27,1.33 6.26,1.63 3.41,-0.91 -1.66,-2.42 -5.97,-1.19 -6.94,-3.13 -0.71,1.19 -4.32,0.67 -3,-0.41 1.53,0.61 1.73,-1.01 0.34,-1.25 z m 4.28,13.72 c -0.39,1.9 1.91,3.6 0.91,5.69 1.13,2.53 4.43,3.24 5.47,5.94 0.77,1.92 1.8,6.42 3.22,2.22 1.27,-2.59 -0.1,-4.72 -1.84,-6.47 0.15,-2.4 -0.83,-4.49 -3.47,-4.56 -1.38,-0.97 -2.49,-2.6 -4.28,-2.81 z", + "region-72" : "m 247.98,356.31 -0.34,0.38 c -1.25,1.56 -2.08,5.44 -4.38,4 -1.12,2.06 0.64,6.19 -2.78,7.03 -0.72,1.93 -1.6,3.14 -3.66,3.22 -1.43,0.82 -1.88,2.66 -3.44,2 1.01,1.66 -2.35,1.6 -2.03,3.69 -1.23,2.3 1.52,4.81 -0.19,6.81 -2.94,0.32 -3.39,4.4 -6.03,5.34 -2.31,-2.11 -5.97,0.65 -6.22,3.19 1.69,0.92 -1.24,1.84 -0.78,2.83 -0.45,0.74 0.74,0.18 -1.44,1.3 -2.38,-2.83 -4.15,2.64 -6.97,0.16 -2.07,-0.72 -3.49,-3.22 -5,-3.41 -0.47,-1.38 -2.8,-1.36 -2.84,0.28 -2.21,-2.81 -0.46,-6.54 -2.5,-9 -2.12,-1.28 -6.83,0.96 -6.34,-3.09 -0.56,-0.81 -2.47,1.64 -3.91,0.5 -4.02,-1.34 -1.32,4.42 -1.47,6.59 0.58,4.02 0.28,9.09 3.91,11.78 1.46,0.51 5.55,1.77 4.44,3.09 -0.84,-1.43 -5.07,-1.89 -2.38,0.25 1.43,1.74 0.5,4.83 0.75,7.16 -1.4,-2.45 0.48,-6.18 -2.53,-7.81 -3.29,-2.45 -5.45,-6.24 -5.75,-10.34 -0.44,-5.63 -1.58,-11.97 -6.41,-15.56 -1.63,-2.01 -3.21,-4.12 -5.81,-4.88 -2.26,-1.42 -3.52,-3.71 -3.19,-6.16 l -0.44,-0.09 c -2.25,1.99 -3.57,5.08 -3.5,8.13 -0.48,6.34 -0.21,12.81 -1.81,19.03 -1.2,6.71 -1.29,13.54 -2.25,20.28 -0.55,4.81 -1.06,9.63 -1.28,14.47 1.23,-0.88 0.56,-4.8 2.59,-6.25 0.81,-2.73 2.87,-3.42 4.53,-0.78 1.78,1.59 5.08,5.73 0.47,5.78 -1.94,0.32 -4.77,-1.94 -5.13,1.38 0.08,2.79 -3.05,4.54 -1.88,7.41 -0.13,1.32 0.11,2.59 0.97,2.72 -2.19,2.2 -1.34,5.96 -2.16,8.81 -1.09,9.88 -3.29,19.6 -4.84,29.41 -1.98,7.87 -2.82,16 -5.06,23.81 -1.75,2.09 2.49,-2.46 -2.31,2.69 -1.68,1.56 -1.95,4.34 -4.28,5.25 -1.69,1.55 -7.66,0.47 -5.66,3.84 1.87,0.86 1.46,4.4 4.19,2.53 2.6,-0.58 2.29,2.17 3.09,3.53 2.76,1.38 2.09,-3.66 4.78,-2 1.78,1.78 5.84,-0.03 5.91,3.25 0.24,2.43 -0.82,4.75 -1.66,6.97 -1.29,1.67 -3.57,3.42 -1.06,5.31 1.51,1.31 5.28,2.06 4.59,-1.16 -0.71,-1.55 2.39,-4.33 2.69,-2.53 -2.06,1.66 0.02,4.03 2.16,3.69 2.46,-0.03 4.03,2.65 6.25,2.53 1.72,1.34 4.04,1.08 5.38,2.88 1.73,1.93 4.53,0.85 6.75,1.66 1.99,-0.16 4.83,-2.3 5.06,1.22 -0.81,2.07 0.72,3.45 2.66,3.66 1.79,1.33 2.97,3.13 4.19,4.84 0.76,1.05 1.54,2.13 2.47,0.38 1.16,-3.48 4.7,1.81 7,-0.81 1.19,-1.54 3.57,-1.59 2.63,-4.13 -1.03,-1.8 -0.58,-3.28 1.28,-4.13 -0.06,-1.84 -1,-4.36 1,-5.5 -0.26,-2.35 3.42,-0.39 2.38,-2.97 -0.31,-2.04 0.52,-3.45 2.38,-4.53 0.43,-1.68 1.01,-3.08 2.84,-2.84 0.96,-1.29 0.1,-2.98 1.75,-3.53 1.05,-1.34 1.17,-3.03 0.09,-4.31 -0.45,-2.45 2.49,-1.8 2.94,-3.19 -2.11,-1.84 0.02,-4.67 -1.59,-6.53 -0.58,1.27 -2.64,3.58 -2.38,0.72 -1.29,-2.3 2.86,-1.98 0.97,-3.94 0.18,-1.68 -0.42,-3.21 -2.28,-3.81 0.91,-3.32 -2.92,-1.3 -3.97,-2.97 -1.33,0.53 -3.1,0.49 -3.52,0.5 0.99,-1.03 0.2,-2.18 -1.07,-2.15 -0.4,-1.67 2.47,-2.42 1.25,-4.29 -0.26,-2.14 3.64,-3.06 1.81,-4.72 0.02,-1.67 -1.1,-3.6 0.81,-4.38 -0.22,-1.33 -0.28,-2.98 -0.09,-3.94 -1.71,-0.35 -2.36,-1.85 -0.34,-2.34 1.14,-1.91 3.98,-1.35 4.91,-1.5 1.19,-0.68 2.41,-2.18 3.22,-2.59 1.87,0.5 1.3,2.46 1.03,3.38 1.52,2.87 4.03,1.16 3,-1.5 0.39,-1.08 0.27,-2.2 0.22,-3.31 0.41,1.66 2.29,0.5 3.31,0.13 0.07,1.08 1.01,2.13 1.44,0.5 0.34,-1.77 2.7,-2.85 3.78,-1.09 1.32,0.59 2.76,1.17 3.5,-0.31 2.29,0.11 4.8,-0.64 5.97,-2.66 1.88,-1.17 4.15,0.59 5.63,-1.44 2.19,-1.4 2.87,4.16 4.66,2.53 0.43,-1.77 3.28,-1.54 2.94,-3.81 0.32,-1.72 2.96,-1.12 2.06,-3.19 1.14,-1.2 3.77,2.23 4.38,-0.28 1.24,-1.76 -3.17,-1.95 -0.81,-3.09 1.93,0.3 2.46,-1.56 2.53,-3.13 0.05,-1.54 1.51,-2.58 -0.28,-3.69 -1.98,0.07 -2.65,-1.75 -1.25,-3.06 -0.66,-1.59 0.89,-4.04 2.16,-1.84 1.2,1.74 3.19,-0.62 4.88,0.22 1.47,-0.35 0.02,-2.37 0.66,-3.41 -0.74,-1.17 -2.31,-1.84 -1.81,-3.5 -0.48,-1.52 -0.18,-3.08 -1.47,-4.38 -0.18,-1.56 2.06,0.03 2.59,-1.47 0.98,-1.03 1.57,-1.58 2.28,-1.19 0.06,-2.42 3.42,-3.32 2.47,-6.13 2,-1.12 4.37,-1.45 5.84,-3.31 1.66,-0.91 2.36,-2.68 1,-4.38 -0.12,-2.03 4.05,-0.97 3,-3.63 1.33,-0.95 3.2,-1.67 3.34,-3.25 -2.18,-1.13 1.1,-2.93 -0.59,-4.41 -0.62,-1.56 -0.83,-3.43 0.72,-4.22 -0.86,-1.85 -2.53,-3.95 -2.31,-5.84 2.69,-1.69 -2.98,-1.93 -4.16,-2.16 -1.37,-0.3 -2.36,-1.78 -0.66,-2.38 0.85,-2.22 -4.19,-0.98 -1.81,-3.19 1.6,-0.51 1.96,-2.22 -0.06,-2.44 -1.52,-0.87 0.21,-2.7 -0.03,-4.03 1.56,-0.49 2.9,-2.44 3.59,-3.75 -0.89,-0.68 -4.19,-1.16 -2.03,-2.72 1.63,-1.41 -2.41,-0.91 -2.47,-2.47 -2.02,0.61 -2.38,-1.49 -4.38,-1.13 -1.27,-1.52 3.38,-3.7 0.06,-4.47 -2.98,1.52 -4.08,-2 -4.81,-4.22 -2.35,-1.05 -5.42,1.51 -6.94,-0.94 -0.7,1.49 -2.13,4.21 -3.44,1.81 -3.87,-0.26 0.41,-4.54 -2.06,-5.84 -1.62,-1.4 -4.46,0.29 -5.78,-1.44 z", + "region-73" : "m 289.48,399.97 c -1.78,0.39 -2.93,2.06 -4.78,2.22 -1.23,1.62 0.08,3.58 0.59,5.22 -0.62,1.03 -1.19,1.98 0,3.09 0.18,1.1 -1.75,1.01 -1.91,2.28 -1.5,0.17 -1.62,1.3 -1.78,2.63 -1.56,-0.12 -3.75,1.63 -1.81,2.97 0.48,1.24 -1.14,2.21 -1.53,3.19 -1.79,0.31 -2.39,2.67 -4.56,2.38 -2.48,0.13 -0.93,2.86 -2.16,3.97 -1.67,0.34 -1.51,2.49 -2.09,3.19 -1.96,-0.06 -3.04,2.91 -4.63,1.81 0.3,1.56 1.42,2.97 1.28,4.72 0.12,1.32 0.69,2.67 1.84,3.41 -0.23,1.58 0.34,3.51 2.06,1.94 -0.52,1.94 -4.36,2 -4.78,1.84 -1.31,0.31 -3.13,1.71 -3.41,-0.56 -1.85,-1.31 -1.55,1.91 -1.84,2.97 -1.51,2.17 2.33,1.52 2.56,3.22 0.14,1.45 -1.01,2.72 -0.91,4.22 -0.18,1.5 -1.62,1.79 -2.72,1.91 -0.4,1.36 2.31,1.1 1.28,2.88 -0.69,2.88 -3.06,-1.07 -4.31,0.63 0.27,1.88 -2.73,1.72 -2.47,3.84 0.52,1.2 -3.87,3.7 -4.14,3.52 -0.79,-1.18 -1.54,-3.12 -2.98,-3.55 -1.29,2.88 -5.51,-0.05 -6.5,2.81 -2.1,1.77 -4.75,1.23 -6.78,2.72 -2.08,0.01 -3.66,-3.12 -5.28,-0.69 -0.65,1.86 -1.85,2.55 -2.44,0.63 -2.23,0.44 -3.97,2.37 -2.44,4.63 0.2,3.15 -4.15,0.85 -4.06,-0.78 1.98,-1.15 -1.29,-3.91 -1.88,-1.47 -1.36,0.88 -2.15,2.44 -3.75,1.44 -1.57,0.41 -4.15,1.3 -4.19,2.91 0.97,-0.06 2.75,1.66 1.16,2.06 0.79,1.55 0.47,3.46 -0.69,4.13 -0.33,1.98 2.18,4.35 -0.41,5.44 -1.98,1.42 0.4,4.43 -2.41,5.47 -0.36,1.6 2.13,0.81 1.47,2.47 1.11,1.33 3.17,-0.5 4.56,0.81 3.53,-0.65 2.56,2.45 3.72,2.69 1.77,0.93 0.4,3.31 1.84,4.38 0.55,1.29 -2.76,1.06 -1.72,3.06 0.25,0.94 0.47,1.81 1.19,0.53 0.58,-2.18 2.66,-0.96 1.94,0.88 -0.78,1.76 0.67,3.33 0.88,4.81 -1.18,0.79 -3.45,1.09 -2.97,3.25 1.84,0.97 0.48,2.72 -0.19,4.03 -1.24,0.64 -1.12,1.94 -1.22,3.13 -0.94,1.24 -2.53,-0.25 -2.72,1.72 0.07,2.18 -3.14,2.41 -2.66,4.5 -0.68,1.38 0.98,2.94 -1.25,3.19 -1.81,-0.68 -0.81,2.21 -2.5,2.44 -0.96,1.75 1.59,4.41 -1.16,5.25 -1.17,1.23 0.37,3 0.22,4.56 0.8,1.85 3.22,1.79 4.31,3.38 0.8,1.59 2.24,-0.1 3.03,0.34 -0.62,1.62 1.47,2.54 1.69,4.03 0.86,0.9 2.3,1.13 2.69,2.41 1.83,1.45 3.76,-0.36 5.63,-0.56 1.93,-0.42 3.77,-1.29 5.69,-1.72 1.44,0.78 3.78,0.96 3.81,3.06 2.26,2.18 2.07,-2.6 4.38,-2 1.13,1.17 3.67,3.04 4.84,0.91 0,-0.09 0.01,-0.14 0,-0.22 1.66,1.72 4.89,-0.05 7.28,0.72 3.26,1.27 1.96,-3.09 1.03,-4.38 0.62,-1.99 -0.27,-6.24 2.88,-6.16 1.7,0.86 4.25,1.67 5.75,1.13 2.43,0.47 -6.68,-2.26 2.69,2.09 1.28,1.78 3.02,-0.35 4.47,1.25 1.71,0.48 3.77,0.11 5.28,1.22 1.52,0.96 0.79,4.16 3.22,3.75 1.81,-0.79 3.73,-0.26 5.63,-0.22 2.02,-0.71 2.59,1.65 3.84,2.53 1.12,1.34 1.04,3.24 2,4.59 1.28,1.48 2.36,-0.42 1.84,-1.72 0.69,-1.31 2.64,-0.57 3.97,-1.09 1.28,1.07 2.69,2.2 4.59,1.91 1.34,0.06 3.87,0.02 3.25,1.91 1.39,1.64 3.87,0.79 5.59,0.41 0.57,-1.18 1.04,-2.03 2.44,-1.44 2.19,-0.08 1.96,-2.41 3.34,-3.31 1.93,0.29 3.79,-0.92 5.78,-0.66 2.41,1.1 1.96,-2.39 0.13,-2.72 -1.56,-0.61 -2.09,-3.47 -3.94,-2.56 -1.44,1.17 -3.68,1.47 -5.16,0.19 -1.07,-0.5 -1.37,-1.29 -0.84,-2.25 -0.1,-1.78 -3.16,-1.91 -2.41,-3.56 0.61,-1.93 2.82,-1.16 4.25,-1.81 1.6,-0.65 1.67,-3.23 0.63,-4.41 -0.97,-0.41 -2.69,-1.29 -0.81,-2 2.76,-0.51 0.39,-3.41 1.31,-5 -0.68,-0.84 -2.9,-1.36 -1.25,-2.59 -0.05,-1.47 -0.57,-4.86 -2.63,-3.34 -0.79,0.58 -0.85,-2.15 -2.25,-1.41 -2.03,-0.09 -3.75,-1.13 -5.19,-2.44 -2.44,-0.46 0.31,-2.66 -1.41,-3.88 -1.53,-2.41 0.36,-2.48 0.41,-4.56 0.95,-0.61 0.19,-3.04 2.38,-2.38 3.88,1.33 0.46,-3.77 3.28,-4.97 0.71,-2.95 3.01,-0.1 2.94,1.59 0.84,-2.74 2.96,-1.33 4.81,-1.25 1.61,-1 0.87,-1.27 1.72,-1.16 0.99,1.3 1.91,3.3 3.94,1.97 1.54,-1.93 2.46,0.42 3.75,0.94 0.93,-1.18 0.32,-4.6 2.59,-4.31 1.41,0.67 3.34,0.92 4.75,2 1.78,0.44 3.29,-1.41 5.16,-0.91 1.54,0.64 3.33,1.48 4.91,0.41 1.22,-0.65 2.62,-2.15 3.16,-2.66 -0.33,-1.9 0.47,-4.11 -1.59,-5.38 -0.53,-1.92 -0.31,-3.93 0.59,-5.88 -0.09,-1.86 1.73,-0.33 2.84,-0.56 1.58,0.89 2.6,3.13 4.44,1.25 7.47,-3.19 5.08,-6.79 10.94,-4.25 2.15,-0.16 -0.17,-3.51 1.41,-4.88 -2.07,-2.25 0.27,-5.84 2.84,-3.47 2.56,1.39 6.38,-0.17 5.06,-3.28 1.23,-2.77 5.89,-0.36 5.28,-4.53 0.37,-2.38 6.06,-3.89 3.09,-6.44 -1.72,-1.06 -3.87,-0.95 -4.75,-2.59 -2,1.51 -3.18,-2.51 -0.38,-2.16 0.69,-1.75 0.95,-3.62 2.63,-4.69 -0.85,-3.72 -6.52,0.51 -7.06,-1.34 1.8,-2.6 -2.67,-2.63 -2.94,-4.34 -3.22,0.42 1.61,-3.78 -0.91,-5 -1.34,-2.93 1.78,-5.96 -0.75,-8.47 -2.48,-1.5 -1.86,-4.04 -1.69,-6.31 -1.66,-2.01 -3.31,-4.06 -5.13,-5.97 -2.19,-1.65 -1.11,-4.87 -2.22,-6.81 1.11,-1.31 0.68,-2.21 -1.06,-2.03 -1.82,-1.66 -0.62,-6.97 -4.41,-5.13 -3.08,2.23 0.69,-4.53 -2.69,-4.41 -2.14,1.63 -3.73,3.58 -5.5,5.09 -0.63,2.34 -1.06,4.47 -2.66,6.13 0.54,2.68 -1.95,3.69 -2.91,5.75 -0.72,3.27 -5.19,2.38 -7.34,1.69 -0.99,-2.01 -4.93,-0.47 -5.59,1.09 -1.77,1.5 -0.38,0.87 -2.13,0.13 -0.5,-1.43 1.01,-4.31 -1.52,-4.32 0.01,-1.34 1.13,-3.07 0.78,-4.75 2.27,-2.31 -1.49,-4.36 -2.44,-6.41 -1.64,-1.56 0.95,-3.19 -0.75,-4.47 0.04,-1.98 -1.5,-3.91 -3.63,-2.78 -1.3,0.58 -2.94,2.17 -3.41,-0.03 -1.69,-0.06 -2.56,2.18 -4.22,2.72 -0.83,0.81 -1.65,0.91 -2.34,0.28 -1.65,0.66 -1.8,-2.72 -3.47,-2.88 -0.92,-1.46 -2.12,-2.77 -3.53,-3.69 -1.38,-0.89 -3.01,0.06 -4.22,-0.31 -0.19,-0.27 -0.01,-0.7 -0.44,-0.56 z", + "region-91" : "m 373.48,405 c -1.15,1.06 -2.74,1.92 -4,2.63 -0.69,-0.64 -1.69,-0.79 -1.31,0.47 -1.53,0.76 -0.12,2.63 -1.88,3.19 -2.01,2.09 -2.23,-3.14 -4.09,-1.34 -1.31,1.13 -0.06,3.41 -1.69,4.16 -1.69,0.94 -1.26,2.84 -1.72,4.34 -0.97,1.48 0.22,3.28 -1.63,4.28 0.03,1.5 -1.96,3.13 -0.38,4.38 0.87,1.51 2.11,2.71 3.34,3.91 1.23,1.55 -0.59,3.54 0.25,5.22 1.19,0.89 2.58,1.88 2.81,3.5 -0.01,1.82 -0.64,3.51 -0.66,5.34 0.39,1.6 2.04,3.35 0.25,4.88 -0.7,0.91 0.02,1.97 0.78,0.94 0.68,0.58 0.48,2.1 2,1.88 1.21,0.4 2.29,1.44 1.19,2.63 0.66,2 3.45,-0.86 5.09,0.06 1.99,-0.31 1.2,2.35 2.99,2.61 1.32,3.93 1.53,-3.89 -2.64,0.71 -0.62,1.58 -0.36,3.76 -2.66,3.78 -0.55,1.53 1.6,1.9 2.22,1.31 0.87,2.49 4.92,1.11 5.56,4.16 -0.53,2.64 -5.31,3.38 -3.91,6.34 1.76,0.54 0.25,-0.92 -1.44,1.63 -1.75,0.05 -4.9,0.28 -4.13,3.06 0.95,2.61 -3.7,2.77 -5.44,1.78 -1.4,-1.16 -3.23,-1.06 -3,1.19 -0.18,1.32 1.22,2.9 -0.16,4.13 0.62,1.44 0.83,4.08 -1.5,2.91 -1.9,-1.31 -4.86,0.21 -4.97,2.34 -1.72,1.38 -4.21,1.09 -5.84,2.59 -2.33,1.39 -3.19,-2.96 -5.88,-1.81 -1.89,1.46 -1.49,4.44 -1.28,6.38 1.29,1.33 2.43,2.57 1.31,4.41 1.26,2.54 -3.84,3.1 -3.34,5.13 -1.15,-1.19 -3.34,-0.8 -4.78,-1.72 -2.41,-0.21 -4.21,2.13 -6.38,0.19 -1.15,-1.01 -2.84,-0.41 -3.88,-1.34 -2.13,0.57 -0.52,5.91 -3.13,3.75 -1.18,-2.85 -4.84,2.33 -5.84,-1.22 -0.72,-2.31 -2.45,1.37 -4.09,0.03 -1.54,-1.46 -2.34,0.39 -3.25,1.31 -0.23,-2.27 -2.22,-3.93 -3.16,-1.34 -0.87,0.24 -0.12,1.72 -1.22,2.06 0.19,1.45 0.77,3.36 -1.5,2.78 -1.58,-0.53 -2.15,0.65 -2.03,1.84 -1.91,1.64 -1.45,4.24 -0.22,6.19 -1.51,2.59 2.29,3.12 3.91,4.44 1.21,1.16 1.86,-1.13 2.63,0.28 0.85,0.87 1.08,1.72 2.47,1.06 2.01,0.75 2.1,4.05 1.22,5.03 1.15,0.71 2.39,1.6 1.5,3.22 0.51,1.05 0.44,2.72 0.88,3.41 -0.81,-0.18 -3.4,-0.4 -2.44,1.09 2.63,0.22 2.7,4.55 0.47,5.38 -1.52,0.14 -4.84,0.49 -3.84,2.72 1.13,0.78 3.35,2.2 1.94,3.69 1.87,2.17 4.6,1.89 6.78,0.47 1.87,0.67 3.2,2.93 4.91,4.19 0.34,0.39 0.23,1.54 -0.16,1.71 -0.99,0.41 -0.79,-0.53 -2.06,-0.05 -1.57,0.09 -3.05,0.46 -4.56,0.84 -1.73,-0.34 -1.73,2.75 -3.53,2.94 -1.28,-0.07 -2.45,0.32 -2.94,1.56 -1.36,0.64 -3.04,0.25 -4.34,1.16 -1.36,0.9 -1.71,2.73 -1.56,4.25 0.86,1.46 2.93,0.76 4.28,1.34 1.65,0.37 2.29,2.34 4.06,2.41 1.43,-0.11 2.32,0.89 2.38,2.25 0.19,1.48 0.68,3.18 2.19,3.81 1.13,0.44 2.45,0.21 3.5,-0.34 1.24,-0.79 1.71,-2.26 2.66,-3.31 1.39,-1.04 3.28,-0.07 4.75,-0.91 1.22,-0.79 2.49,-0.04 3.63,0.5 1.48,0.81 3,1.56 4.59,2.09 1.32,0.67 1.66,2.4 3.09,3 1.2,0.95 2.83,0.9 3.41,-0.69 1.34,-0.63 2.86,1.1 4.44,0.88 2.15,-0.12 -1.26,-2.72 0.69,-3.56 1.27,-0.56 2.54,-2.05 4.03,-1.25 1.72,0.59 2.72,-1.31 3.94,-2.13 1.15,-1.32 3.17,0.14 4.03,-1.41 0.83,-1.27 1.97,0.63 3.13,-0.16 2.01,-0.88 2.4,1.56 3.75,2.34 1.27,0.46 3.17,0.43 4.25,-0.38 -0.27,-1.45 -1.39,-2.71 -2.25,-3.91 -0.28,-1.72 -2.71,-1.85 -2.88,-3.63 -0.57,-2.26 -0.41,-4.65 -1,-6.91 -1.47,0.73 -1.9,-2.93 -0.31,-1.5 1.18,0.06 0.41,-2.1 0.75,-2.97 0.09,-1.49 0.11,-3.02 -0.31,-4.47 -0.95,-1.13 -3.85,-0.58 -3.44,-2.72 0.37,-0.79 0.15,-1.5 -0.34,-2 1.82,0.97 2.4,-1.32 2.84,-2.66 1.53,0.97 2.52,-0.67 1.16,-1.78 -1.63,-0.06 -2.17,-3.44 -0.28,-3.03 -1.3,1.16 0.14,3.3 0.81,1.09 0.3,-2.15 1.06,-4.18 1.75,-6.13 -1.37,-0.71 -2.48,-2.27 -1.53,-4.09 1.34,-0.99 2.06,0.84 0.72,1.34 0.45,2.19 2.18,0.9 2.38,-0.59 1.25,-2.32 3.42,-4.23 3.92,-6.8 1.24,-0.61 0.49,0.33 1.8,-0.76 1.74,-1.58 3.52,-3.11 5.56,-4.28 2.08,-1.06 5.08,1.35 5.97,-1.84 1.13,-1.74 2.55,-3.34 3.97,-4.84 1.92,-0.8 3.82,-1.55 5.34,-3.03 1.04,-0.77 4.25,-2.56 3.41,-3.19 -1.77,0.69 -2.88,2.98 -5.03,2.66 1.32,-1.08 3.93,-1.46 4.38,-3.59 0.26,-2.07 3.22,-1.88 3.78,-3.94 1.83,-0.89 3.8,-1.45 5.59,-2.44 1.64,-0.59 3.36,-1.3 4.81,-0.13 0.05,-0.76 -0.55,1.67 -0.09,2.28 2.02,1.25 0.61,4.53 2.94,5.5 2.92,2.1 1.98,-3.04 4.66,-2.88 1.75,-0.09 1.41,-1.81 1.59,-2.72 1.58,1.9 3.94,-1 5.06,-1.97 2.26,-0.22 2.56,-2.11 0.22,-2.34 -0.33,-2.07 2.01,-4.12 3.13,-5.5 1.84,-1.43 4.52,1.85 5.5,0.22 -1.01,-2.28 0.78,-4.15 1.44,-6.22 7.8e-4,-1.45 -0.24,-2.77 0.19,-4 -1.54,-1.58 2.66,-2.15 3.16,-3.78 1.09,-1.96 4.33,-2.35 4.06,-5.09 3.05,-0.25 -0.38,-2.8 -0.88,-4.22 -0.73,-1.79 -2.11,-2.02 -3.5,-2.47 -1.24,-1.93 0.7,-4.01 -0.09,-6.03 -0.11,-1.52 -0.56,-2.29 -1.94,-2.72 -0.09,-3.19 -3.04,-4.48 -5.5,-5.88 -0.85,-1.95 -5.4,-3.24 -4.56,0.22 -0.31,2.78 -4.11,0.64 -2.53,-1.5 -0.78,-2.43 -5.24,0.56 -5.03,2.59 -1.74,4.01 -4.07,-2.31 -6.63,-1.66 -0.17,-3.42 -6.06,1.94 -4.22,-2.25 0.89,-1.46 -1.23,-2.75 0.59,-3.78 -1.48,-1.1 -0.81,-3.1 -3,-3.5 -0.72,-0.11 -0.38,-1.61 -0.97,-3.91 -0.53,-1.76 -1.01,-3.64 -2.78,-4.28 -0.89,-1.53 -0.87,-3.26 -1.38,-4.88 -0.57,-1.51 -0.79,-3.12 -0.97,-4.63 0.86,-1.54 -2.63,-1.36 -1.38,-3.03 -0.77,0.01 -1.76,0.71 -1.69,-0.72 -1.09,-0.89 -1.88,-1.9 -2.41,-3.16 -0.97,-0.98 -4.72,1.23 -3.53,-1.13 0.36,-2.46 -4.24,-2.88 -3.41,-0.06 0.11,2.29 -2.55,0.74 -3.84,1.78 -1.38,2.1 -2.54,-0.84 -2.97,-2.16 -0.49,-1.59 -1.45,-3.11 -1.5,-4.81 0.52,-1.64 -1.5,-1.84 -2.16,-2.69 z", + "region-24" : "m 287.08,142.25 c -2.37,0.57 1.22,3.96 -1.47,4.66 -1.92,0.36 -4.9,2.34 -3.34,4.5 -0.05,2.87 -3.41,2.19 -5.41,2.66 -0.67,-1.12 -2.1,0.53 -3.09,-0.63 -1.43,0.4 -3.07,-2.56 -3.03,0.22 0.1,2.49 -3.8,-0.64 -3.88,2.19 -2.05,0.03 -3.85,1.15 -5.66,1.44 -2.16,-1.19 -1.85,2.14 -3.91,2.25 -1.02,0.93 0.19,3.18 0.09,4.13 1.27,1.02 1.45,3.18 3.56,3.09 1.58,0.76 1.01,2.47 2.66,3.09 -0.63,1.17 -0.32,2.65 -1.28,3.53 0.28,1.18 2.64,1.89 0.84,3 -0.7,2.66 -3.31,4.78 -6.03,5.03 -2.13,-0.37 -3.5,3.03 -1.19,3.56 -1.23,2.13 1.27,3.55 1.19,5.47 -2.6,1.83 1.89,3.04 3.25,3.41 1.88,1.2 -0.06,1.79 -1.34,1.75 -0.37,2.06 -1.7,1.58 -0.97,3.78 -1.55,-0.17 -2.95,1.3 -1.44,2.66 2.9,0.31 -0.83,3.65 1.5,5.13 0.09,1.68 -2.42,1.94 -1.44,4.03 -0.59,0.43 -2.04,-1.83 -2.47,0.22 -0.2,1.62 1.53,3.9 -0.56,4.75 -0.84,1.32 -2.23,2.39 -2.63,3.63 -2.15,0.21 -4.86,2.49 -4.44,4.44 0.43,0.52 0.91,0.21 1.34,-0.13 -0.21,0.37 -0.18,0.94 -0.56,1.22 -0.49,0.61 -1.15,1.02 -1.94,0.94 -0.73,0.28 -1.18,1.18 -2.09,0.97 -0.78,0.12 -1.32,0.87 -2.19,0.72 -1.08,-0.1 -0.54,1.4 -1.44,1.53 -1.15,0.5 -1.61,-0.95 -2.41,-1.41 -0.58,0.14 -1.02,0.96 -1.09,1.47 0.83,0.58 1.51,1.58 1.56,2.56 -0.48,0.61 -1.22,1.04 -1.91,0.44 -0.98,-0.36 -1.45,-1.59 -2.63,-1.5 -0.84,0.07 -1.45,-0.45 -2.09,-0.88 -0.56,-0.34 -1.35,0.01 -1.09,0.75 0.12,0.69 0.03,1.44 -0.59,1.84 -0.39,0.67 -1.15,1.64 -0.66,2.41 0.32,0.32 1.13,0.32 0.84,0.97 -0.12,1.97 -2.06,3.41 -1.78,5.5 0.17,0.79 -0.19,1.47 -0.81,1.94 -0.35,0.52 0.2,1.29 0.63,1.53 -0.44,0.9 -1.76,1.38 -1.56,2.53 -0.28,0.83 -1.41,0.84 -1.59,1.78 -0.39,0.87 -1.31,1.61 -1.06,2.66 -0.79,1.23 -0.55,2.78 -0.75,4.16 -0.38,0.45 -0.96,1.17 -0.31,1.66 0.19,0.92 -0.85,2.02 0.09,2.81 0.5,0.04 0.6,0.46 0.63,0.91 -0.02,0.81 0.99,1.05 1.31,0.31 0.4,0.04 1.18,0.16 1.31,0.63 -0.27,0.86 0.83,1.17 1.38,0.66 0.37,-0.34 0.78,-0.44 0.84,0.19 0.3,0.63 0.64,1.4 -0.06,1.91 -0.47,0.31 -0.53,1.35 0.25,1.03 0.44,0.03 0.69,0.75 1.19,0.28 0.53,-0.55 1.39,-1.22 2.13,-0.66 0.09,0.45 -0.18,1.54 0.63,1.31 0.46,-0.17 1.16,-0.59 1.38,0.13 0.27,0.54 0.28,1.22 -0.13,1.66 -0.28,0.58 0.32,1.14 0.19,1.66 -0.7,0.61 0.03,1.43 -0.13,2.19 -0.13,0.77 0.3,2.24 1.31,1.91 0.74,-0.22 1.17,-1.35 2,-0.75 0.91,0.12 1.83,0.91 2.75,0.72 1.28,-1.37 3.28,-1.71 5.09,-1.53 0.69,-0.15 1.83,0.35 2.28,-0.34 0.16,-0.99 -1.49,-0.86 -1.28,-1.88 -0.03,-0.34 -0.61,-0.89 0.06,-0.91 0.68,0.02 1.62,-0.41 2.19,0.09 0.16,0.78 0.83,1.06 1.53,1.16 0.47,0.73 1.82,0.34 1.91,1.38 0.57,1.39 0.36,2.94 0.78,4.34 0.72,0.79 1.2,2.08 2.31,2.38 0.66,-0.13 0.02,0.95 0.75,0.88 0.33,-0.02 1.1,0.07 0.63,0.5 -0.28,0.75 0.95,0.75 0.81,1.5 0.13,0.88 0.23,1.77 0.81,2.44 0.16,0.88 1.05,1.52 1.75,2 0.1,0.01 -5.98,-1 1.72,1.5 1.57,1.48 0.23,3.35 0.38,5.03 -1.08,1.82 -0.11,3.59 1.5,4.63 1.38,1.19 3.72,0.81 4.06,2.91 1.98,0.12 4.08,0.24 5.09,2.31 -0.26,1.88 -0.16,3.88 2.03,4.69 2.24,-0.13 -0.77,2.82 -0.03,3.5 1.32,-1.24 1.46,2.16 2.88,0.38 1.41,0.23 2.93,0.06 3.28,-1.41 2.3,-0.94 2.93,2.57 4.69,2.97 1.35,-1.69 3.16,-3.13 4.47,-4.81 1.27,0.09 0.91,2.97 2.47,1.19 1,-0.78 2.14,-1.36 1.97,0.41 1.06,2.68 2.68,-2.88 3.69,-0.03 1.94,1.77 2.64,-1.99 2.59,-3.22 2.22,-1.29 3.19,2.69 5.5,0.97 1.64,-0.66 3.21,0.27 4.94,-0.09 1.88,0.55 4.24,2.05 6.03,1.19 2.03,-0.39 1.38,-0.9 2.66,-0.44 2.26,0.05 5.32,0.81 5.34,-2.44 0.72,-1 2.01,-0.74 1.97,-2.56 1.67,-1.97 4.64,-0.98 6.78,-1.97 2.22,1.06 6.5,-0.37 5.38,-3.34 -1.23,-1.26 -1.47,-1.98 -0.47,-3.44 0.08,-1.16 -1.93,-1.56 0.06,-2.16 1.35,0.35 1.8,0.42 1.47,-1.25 2.2,-0.16 3.01,-3.8 5,-3.91 0.84,1.57 2.08,1.88 3.34,0.69 2.68,0.17 3.31,-3.16 5.63,-3.94 1.82,-1.28 5.05,0.88 5.66,-2.19 1.43,-2.02 -0.17,-4.15 0.13,-6.19 1.46,-1.86 -0,-3.73 0.59,-5.75 0.92,-2.7 -3.55,-3.59 -1.91,-6.41 -0.1,-2.89 -1.24,-5.6 -2.13,-8.31 0.53,-2.38 -1.6,-3.77 -3.28,-5.03 -3.42,-1.42 -0.39,-4.41 0.28,-6.66 1.22,-2.05 -0.14,-4.06 -1.06,-5.91 -1.79,-1.48 -2.93,-3.67 -1.59,-3.83 1.51,-0.53 3.38,-0.55 4.87,-0.83 -0.4,-1.72 -2.02,-3.65 -0.88,-5.78 -1.47,-1.35 -2.38,-3.98 -4.19,-4.28 -0.84,-2.52 1.25,-3.54 3.38,-3.25 1.7,-0.71 5.73,-1.19 3.97,-3.75 1.11,-1.31 0.7,-2.27 -0.59,-3 0.09,-2.52 2.74,-3.46 4.34,-5.16 2.49,-1.47 0.35,-4.35 0.53,-5.81 -2.16,-1.8 -3.41,-4.21 -4.19,-6.75 -2.19,-1.4 -4.9,-2.39 -7.25,-0.59 -1.4,1.83 -3.3,0.68 -2.72,-1.22 -2.2,-0.29 -2.54,2.59 -4.91,2.69 -1.57,0.29 -3.07,-1.32 -4.78,-0.63 -2.24,-0.9 -4.24,1.33 -6.47,0.31 0.78,-1.05 1.74,-2.43 2.84,-2.47 0.77,-2.05 0.77,-4.77 -1.78,-5.47 -2.81,0.03 -1.68,-2.89 -2.97,-4.34 -2.08,1.48 -3.79,-2.48 -5.13,0.38 -0.94,-0.72 -2.49,1.6 -2.25,-0.72 -0.16,-0.79 -0.99,-1.01 -1.63,-1.28 -1.65,1.48 -2.18,3.73 -4.78,2.38 -1.48,1.36 -3.64,1.18 -5.08,1.73 -1.14,-0.85 -2.55,-1.62 -0.64,-3.23 -0.54,-1.83 1.02,-5.17 -1.84,-5.28 -1.23,-0.49 1.24,-2.71 -0.91,-2.75 -2.16,1.54 -3.77,-1.07 -5.47,-1.88 -1.34,-1.71 -0.35,-3.89 -1.28,-5.66 -0.82,-1.34 -3.98,-0.35 -2.69,-2.81 -0.01,-0.99 -3.03,-0.4 -2.97,-2.28 -1.17,-0.9 -2.23,-2.16 -2.16,-3.38 -2.3,-1.28 3.11,-4.05 -0.34,-4.81 -1.59,-1.53 0.22,-3.8 -0.38,-5.47 0.09,-1.23 -2.38,-1.48 -1.19,-2.81 -0.68,-1.66 -1.82,-3.42 -3.63,-3.38 z", + "region-23" : "m 285.05,67.41 c -1.74,1.16 -3.94,-0.1 -5.28,2.16 -2.29,2.35 -4.85,4.56 -8.03,5.59 -2.34,1.39 -4.9,2.39 -7.66,2.22 -2.35,0.61 -4.59,1.65 -6.97,2.19 -3.55,1.43 -7.66,0.45 -11.06,2.44 -2.95,1.51 -5.58,3.64 -8.75,4.69 -1.51,1.33 -3.19,2.27 -5.16,2.72 -1.86,1 -4.4,1.34 -5.13,3.66 -0.75,3.04 -2.14,5.81 -3.56,8.59 -1.79,2.24 0.52,4.61 2.72,5.16 1.7,0.51 3.4,0.34 5.13,1.25 3.58,0.81 7.28,-0.28 10.44,-1.97 1.79,0.89 2.85,0.22 0.53,0.06 -1.88,0.87 -3.29,2.63 -5.47,2.88 -1.89,0.2 -4.84,0.55 -3.34,3.19 -0.14,1.72 1,3.52 0.38,5.06 0.52,0.98 -0.45,2.93 1.22,1.53 2.41,-1.27 2.66,2.55 0.25,2.53 -2.27,1.97 3.92,2.2 1.97,4.88 -0.97,2.23 3.08,1.92 1.13,3.78 -1.21,1.17 1.48,3.51 -1.22,3.34 -1.58,2.01 1.39,2.57 2.47,3.28 -0.33,1.89 -0.35,4.06 -1.75,5.59 -1.7,1.69 0.84,3.1 2.38,3.41 1.86,0.07 4.15,1.26 5.69,-0.41 1.46,0.13 1.02,2.44 2.28,2.66 -1.79,2.14 2.3,2.86 3.5,4.06 1.89,0.35 3.98,3.21 2.22,4.78 -1.89,0.92 1.6,1.34 0.72,2.84 1.42,0.67 4.08,-0.27 4.59,-2 0.83,-1.86 3.06,0.75 4.25,-1.28 1.94,0.28 3.17,-1.23 4.75,-2.06 1.61,0.81 2.92,-0.26 2.44,-1.91 1.47,-0.48 2.14,1.45 3.88,1.19 2.24,-0.19 5.23,1.16 7.19,-0.97 1.37,-1.08 -1.66,-3.52 0.97,-4.19 1.41,-1.51 5.16,-1.7 3.31,-4.59 -1.33,-2.09 3.4,-1.11 1.84,-3.13 1.16,-1.54 -0.11,-0.87 -1.16,-1.03 -0.43,-1.14 0.79,-2.47 -0.66,-3.59 -0.98,-1.38 0.17,-2.29 1.41,-1.59 1.25,-0.64 0.95,-2.16 2.41,-1.03 2.27,-0.15 3.98,-1.17 4.72,-3.38 1.38,-2.46 0.89,-5.49 2.66,-7.81 -0.2,-2.14 2.83,-2.48 3.56,-0.75 1.77,-0.54 0.57,-2.61 -0.28,-3.25 0.01,-7.53 -6.31,-5.19 -0.03,-11.56 1.4,-1.6 -0.11,-2.95 -1.28,-1.25 -2.63,-0.14 1.25,-2.56 -0.88,-3.41 0.87,-1.65 -2.2,-1.66 -1,-2.97 -0.44,-1.5 1.55,-2.17 0.03,-3.66 0.3,-0.9 3.04,-3.11 1.41,-3.25 -0.65,1.38 -2.95,0.59 -1.38,-0.63 0.63,-1.59 1.37,-2.89 2.63,-3.78 1.98,-0.19 -1.74,-2.75 -1.53,-4.38 -0.55,-2.02 -0.55,-4.33 -2.5,-5.63 -1.72,-1.41 -3.84,-2.18 -5.03,-4.19 -1.56,-1.57 -3.44,-2.86 -5,-4.38 -0.11,-0.69 0.28,-1.97 -0.94,-1.72 z", + "region-22" : "m 292.2,47.66 c -2.76,-0.03 -2.25,3.63 -2.63,5.5 1.19,2.06 4.27,3.76 5.47,5.16 1.3,3.21 -3.04,-0.18 -4.38,-0.47 -3.88,-0.07 -3.56,5.04 -5.41,7.34 -0.71,0.59 -3.75,3.11 -1.34,2.59 1.47,-1.5 2.5,0.6 2.53,1.63 1.88,1.27 3.39,3.01 5.06,4.5 0.98,2.07 3.36,2.37 4.84,3.88 1.75,1.4 1.73,3.63 2.31,5.59 5.2,9.88 10.59,5.88 3.16,4.19 -0.64,-0.36 -1.31,0.39 -2.03,0.43 -0.9,1.51 -2.05,2.89 -2.75,4.41 0.72,1.3 2.77,-1.95 2.47,0.53 -1.27,0.9 -2.25,2.63 -1.34,4.06 -0.91,0.95 -0.75,1.8 -0.03,2.47 -0.13,1.26 0.68,2.63 1.16,3.41 -0.63,0.67 -1.53,2.92 0.16,2 1.1,-1.62 2.87,0.58 1.22,1.44 -0.23,1.5 -3.78,3.59 -1.97,5 0.58,-0.31 -0.73,1.2 0.38,1.53 1.62,1.42 1.34,3.69 1.75,5.59 1.9,0.6 0.81,4.78 -0.75,2.44 -1.9,-1.54 -3.87,1.46 -1.31,2.28 0.51,0.93 -1.25,1.9 0.44,2.63 0.9,0.8 3.16,-0.28 4.5,0.91 2.36,0.62 4.7,-0.16 7.09,-0.5 1.69,-0.31 3.8,-3.12 5.13,-0.63 1.16,-0.16 2.38,0.21 2.81,1.47 0.86,-1.1 3.52,-0.86 2.75,0.88 2.24,1.07 3.58,-3.97 5,-0.88 1.77,1.37 4.5,0.8 6.44,2.34 1.05,0.95 1.86,2.93 2.78,0.72 0.99,0.53 1.93,3.8 3.34,1.69 1.96,-1.93 3.09,1.72 4.47,1.78 0.78,-1.34 2,1.92 2.88,-0.28 0.33,-2.65 3.12,-0.79 4.28,0.09 1.53,-0.88 3.18,-0.87 4.81,-1.03 0.35,1.73 1.88,-1.27 3.25,-0.13 1.13,-0.39 -0.39,-1.2 0.88,-1.76 1.66,-0.49 0.72,-1.03 3.31,0.24 2.65,0.21 2.97,4.34 1.65,6.21 1.62,1.27 3.48,2.24 4.22,4.31 0.74,1.63 2.33,-0.46 2.5,1.88 0.72,2.19 2.68,-1.36 2.66,1.28 -0.24,2.49 3.53,2.87 4.13,3.94 1.75,-1.8 2.07,-4.55 4.88,-5.19 0.68,-2.23 2.37,-3.42 3.56,-5.41 2.67,-0.52 -0.66,-3.26 -2.06,-1.84 -2.26,-0.47 0.23,-2.88 1.31,-3.13 -0.73,-1.44 -2.37,-4.13 0.25,-4.66 1.65,-0.44 4.9,1.28 4.78,-1.5 -2.06,0.27 -1.98,-2.16 -3.88,-2.41 0.6,-1.8 -0.18,-4.31 -0.78,-6.47 1.32,-1.8 3.96,-1.53 5.66,-2.91 1.45,-1.38 4.52,1.52 4,-1.34 1.45,-1.59 3.81,-2.88 5.19,-0.5 1.28,-0.12 3.39,2.55 3.31,-0.22 0.33,-2.86 0.56,-4.98 0,-7.75 1.55,-0.89 1.7,-2.64 0.84,-3.44 1.81,-1.93 -3.62,-5.62 0.69,-5.56 3.16,1.39 1.54,-3.19 4.13,-3.75 1.57,-1.42 5.28,-4.09 2.25,-5.69 0.32,-1.83 0.52,-4.01 1.72,-5.91 1.09,-2.4 -2.7,-2.85 -1.03,-5.34 -0.92,-1.56 -3.38,-2.22 -5.31,-1.53 -1.91,-0.8 -7.17,-0.14 -5.5,-3.66 -0.63,-2.33 -4.89,3.02 -5.13,-0.13 -1.96,-1.5 -4.73,-0.41 -6.75,-2.06 -0.64,-0.23 -1.39,-0.27 -2,0.09 -1.21,0.83 -2.3,3.03 -4.09,1.56 -1.81,-2.61 -3.43,0.49 -5.34,1.06 -2.18,0.63 -4.37,-2 -6.44,-0.25 -1.68,1.82 -4.05,-1.39 -6,0.13 -2.2,1.21 2.12,0.92 -3.49,0.21 -1.83,-1.56 -4.69,-3.08 -7.08,-1.77 -1.63,-0.91 -3.64,1.21 -5.28,1.47 -0.51,-0.79 1.21,-2.03 -0.44,-2.91 -0.98,-1.14 -4.78,3.67 -4.69,0.66 1.62,-1.44 1.72,-3.98 -0.88,-4.22 -1.44,-0.89 -1.04,1.89 -0.91,2.41 -1.98,-0.74 -4.51,-1.19 -6.31,-2.19 0.61,-1.3 -0.76,-2.03 -1.28,-0.53 -0.88,1.66 -1.66,-2.37 -3.22,-0.69 -1.76,0.6 -1.77,4.72 -3.75,1.88 -2.07,-1.49 1.22,-5.38 3.69,-5.38 1.77,-1.43 -2.78,-3.75 -4.16,-2.19 -0.97,2.36 -1.66,-1.18 -2.44,-0.22 -0.33,1.95 -3.12,-0.95 -4,0.91 -2.31,-1.06 -3.91,2.18 -5.59,0.41 -3.43,0.96 -1.19,-3.98 -4.22,-3.97 -2.08,-0.65 -5.34,-1.56 -3.25,-3.91 -1.24,0.25 -2.96,1.34 -4.16,-0.38 -1.88,-2 -4.89,-2.52 -7.13,-0.81 -2.62,2.08 -3.24,-1.93 -5.56,-1.66 z", + "region-11" : "m 297.86,122.72 c -1.75,0.85 -1.91,2.97 -2.19,4.66 -0.25,1.42 -0.71,2.89 -1.78,3.91 -0.04,1.04 -0.02,0.73 -0.54,1.02 l -1.06,0.48 c -1,0.54 -2.08,0.8 -3.19,0.78 -0.88,0.67 -1.82,1.37 -2.88,0.72 -1,1.18 0.69,2.19 0.91,3.31 0.23,0.75 -1.18,2.11 0.38,1.81 0.82,-0.44 1.71,0.18 0.75,0.88 -0.37,0.71 0.42,1.09 0.25,1.94 0.29,1.15 1.97,0.94 1.75,2.38 0.87,0.58 0.49,1.27 0.31,2.13 1.32,0.42 2.18,2.12 1.47,3.38 -0.42,1.39 -0.55,3.5 1.16,4.03 1.37,0.98 -0.49,2.26 -0.91,3.25 -0.68,1.18 1.59,1.25 0.69,2.59 -0.04,1.38 2.45,0.98 2.13,2.69 0.34,1.35 3.83,0.32 2.56,2.22 -0.54,1.64 1.41,1.3 2.25,1.56 1.15,0.87 1.43,2.02 0.97,3.34 0.17,1.23 0.64,2.42 1.19,3.53 1.78,-0.36 2.36,2.59 4.38,1.59 0.84,-0.96 2.2,-0.59 1.81,0.91 -0.14,0.69 -0.85,1.76 0.44,1.63 1.2,-0.21 1.25,0.89 1.19,1.75 1.04,0.89 -0.54,1.95 0.06,3 0.63,0.99 -0.75,1.43 -0.53,2.22 1.02,1.29 2.96,0.97 4.25,0.28 0.96,0.25 1.81,-0.89 2.53,-0.56 0.79,0.62 1.93,0.39 1.97,-0.66 1.21,0.12 1.33,-1.12 2.06,-1.75 0.86,0.29 2.16,0.62 2.03,1.69 0.29,1.34 0.97,-0.52 1.72,0.13 1.08,0.55 1.34,-2.34 2.41,-0.78 0.44,0.94 2.06,1.4 2.66,0.44 0.95,-0.46 0.56,-0.21 0.78,0.56 1.12,1.38 -0.37,3.96 2.41,3.78 2.91,0.69 3.09,4.39 1.75,6.31 -1.65,-0.84 -2.88,2.93 -0.41,1.94 1.73,-0.49 3.2,-1.29 5.03,-0.34 1.93,-0.8 3.98,1.81 5.69,-0.28 1.86,-0.31 -0.29,-2.16 1.34,-1.81 1.18,-0.45 3.05,-0.08 1.97,1.41 1.33,2.12 2.95,-1.7 4.97,-1.19 1.67,-0.49 2.04,-2.89 4.03,-3.22 1.12,-1.43 2.91,-3.39 1.16,-5.06 -0.16,-1.63 0.37,-3.89 1.72,-4.81 2.36,0.85 4.14,-2.07 6.47,-0.5 2.32,-0.04 4.01,-1.1 6.34,-0.53 1.28,-0.24 1.3,-2.33 2.97,-1.22 2,-0.66 -1.68,-2.32 -0.03,-3.59 -0.5,-1.21 -1.22,-2.85 0.84,-2.78 1.09,-0.89 -2.02,-3.22 0.59,-2.75 1.77,0.23 2.42,-1.17 1.63,-2.47 1.17,-1.39 1.99,-2.56 3.56,-3.44 -1.04,-1.49 -2.62,-1.7 -4.06,-1.03 -1.93,-1.91 1.07,-3.46 0.31,-5.34 0.3,-1.53 -1.56,-1.91 -2.53,-2.41 -1.25,-0.38 0.2,-2.47 1.31,-2.22 0.34,-0.82 -2.81,-1.8 -0.5,-1.81 1.33,0.7 3.87,-1.62 2.13,-2.16 -1.66,1.45 -1.35,-1.78 -3.38,-1.25 -2.08,-0.53 -0.4,-4.61 -3.09,-2.94 -1.53,-0.07 -0.55,-3.1 -2.69,-1.88 -1.2,-1.64 -2.76,-4.18 -5.06,-5.25 0.91,-1.5 1.05,-2.87 -0.13,-4.28 -0.33,-2.14 -2.6,-1.34 -4.06,-1.97 -0.98,0.49 0.07,2.52 -1.72,1.69 -1.65,-0.86 -2.4,2.1 -3.31,-0.03 -2.1,0.41 -4.57,1.94 -6.31,0.03 -1.77,-1.32 -2.95,3.71 -4.59,0.94 -2.01,1.88 -2.85,-3.56 -5.09,-1.22 -0.21,0.9 -0.92,1.22 -1.53,0.66 -0.5,-0.75 -1.18,-1.8 -1.72,-2.25 -0.42,0.8 -1.43,1.59 -2.09,0.59 0.23,-1.63 -1.65,-1.67 -2.72,-2.19 -0.93,-0.75 -2.23,-0.98 -3.44,-0.88 -1.14,0.44 -1.12,-2.19 -2.5,-1.88 -0.93,0.67 -1.26,2.11 -2.69,1.97 -0.85,0.25 -1.6,-0.39 -1.03,-1.13 -0.93,-1.31 -2.74,1.07 -3.44,-0.84 -1.09,-0.54 -2.35,-0.31 -3.03,-1.41 -1.39,-0.44 -2.35,1.15 -3.59,1.5 -1.54,0.3 -3.06,0.54 -4.63,0.91 -1.02,0.55 -1.67,-0.72 -2.78,-0.16 -1.18,-0.12 -2.15,-1.35 -3.5,-0.66 -1.05,0.52 -2.64,-1.33 -1.94,-2.09 0.55,-0.51 0.17,-1.55 -0.59,-1.5 z", + "region-74" : "m 301.02,306.63 c -2.22,0.07 -0.29,3.63 -2.53,4.06 -1.32,0.27 -2.03,-2.74 -3.03,-0.56 -0.89,1.96 -2.58,0.1 -2.16,-1.38 -1.21,0.88 -3.36,2.71 -3.53,0.16 -1.42,-0.74 -1.86,2.28 -3.34,2.69 -3.03,4.43 -2.07,0.52 -5.03,-1.22 l -0.41,-0.13 c -1.42,0.16 -1.77,2.72 -3.53,1.56 -1.2,0.66 -2.72,0.06 -3.06,-0.41 -1.3,-0.05 -2.56,-0.31 -3.03,1.5 -1.19,1 -3.76,-1.33 -4.72,1.13 -0.44,1.9 -0.85,4.73 -3.34,3.78 -1.9,-0.21 -3.23,0.53 -4.47,1.97 -0.02,1.86 -2.26,1.51 -2.78,2.81 1.14,1.36 1.75,3.08 2.03,4.81 -0.68,0.8 -1.8,1.33 -0.59,2.38 -0.3,1.93 -0.97,4.01 1.25,5.16 0.94,0.27 1.88,-0.68 2.59,0.81 1.7,1.94 1.36,4.76 -1.16,5.78 -1.21,0.95 -4.54,-1.23 -3.28,1.66 0.6,1.91 -0.37,3.83 -1.44,5.38 0.26,1.68 -1.12,2.51 -2.19,1.13 -2.49,-0.32 -0.09,2.97 -2.34,3.09 -1.43,0.77 -3.68,3.88 -0.84,4.34 1.89,-0.29 4.26,-0.22 4.78,2.09 -0.95,1.74 -0.87,4.3 1.41,4.5 2,2.75 2.35,-4.25 4.06,-1 1.82,-0.25 3.52,-0.54 5.31,-0.31 2.1,0.81 0.93,3.9 3.41,4.63 0.87,-0.16 3.26,-0.69 3.53,1.25 -1.52,0.83 -2.63,3.88 0.09,3.03 0.75,1.86 3.07,0.22 3.78,2.25 3.5,-1.57 -1.33,-1 1.91,0.69 0.31,0.97 -2.2,1.98 -0.06,2.44 2.59,0.34 1.5,2.35 0,3.31 -0.83,1.5 -2.83,2.33 -2.41,4.34 0.04,1.61 3.43,1.79 1.06,3.34 -1.8,0.75 -0.87,2.15 0.75,1.97 2.37,0.69 -2.16,3.2 0.91,3.56 1.71,0.75 4.39,-0.22 5.41,1.63 -1.66,1.67 0.02,3.87 0.78,5.63 1.3,2.58 3.32,-0.96 4.91,-0.44 1.79,0.66 4.2,-0.24 5.75,1.63 1.5,1.28 2.35,3.24 4.09,4.22 0.76,2.2 3.51,1.8 4.78,0.25 1.25,-0.4 3.35,-3.38 4.06,-0.75 1.76,-0.42 3.25,-1.83 5.25,-1.38 1.95,0.53 4.84,-0.88 2.72,-2.91 -1.73,-1.56 -0.23,-3.93 1.81,-4 1.95,-0.73 0.58,-3.64 2.69,-4.56 0.82,-1.71 -2.57,-3.03 -0.59,-4.81 1.51,-1.4 2.17,-3.42 4,-4.59 0.93,-1.64 3.52,-2.31 3.34,-4.5 0.2,-1.11 -1.11,-4.18 1.22,-2.94 1.67,0.96 3.92,2.81 5.81,1.56 0.19,-1.48 -2.29,-2.38 -0.91,-4.19 0.6,-1.88 0.65,-3.89 0.81,-5.81 -0.59,-1.81 -3,-2.97 -1.91,-5.16 0.21,-1.88 3.04,-1.93 2.06,-4.16 -0.15,-4.41 -1.04,-2.47 -1.69,-4.44 -2.17,-0.79 -2.33,-3.17 -3.84,-4.66 -1.26,-2.03 2.6,-0.91 2.25,-3.03 0.21,-1.29 2.68,0.2 2.69,-1.59 1.86,-0.73 1.65,-2.52 2.34,-3.94 0.66,-1.35 3.22,-1.28 1.78,-3.16 0.41,-1.56 0.09,-3.04 -1.28,-4.09 -1.25,-2.06 -0.74,-4.59 -0.19,-6.78 -0.66,-1.41 -2.33,-2.31 -2.06,-4.19 -0.44,-1.74 -1.9,-2.78 -2.47,-4.5 -0.93,-0.77 -2.55,0.95 -2.25,-1.16 -0.18,-1.3 -1.57,-1.83 -2.16,-0.53 -1.19,-0.72 -4.02,-1.51 -2.22,-3.34 1.61,-1.32 -2.5,-0.5 -1.84,-2.44 -0.35,-2.62 -3.97,-1.23 -5.84,-1.44 -1.93,0.7 -3.78,0.83 -5.66,-0.25 -1.44,-0.55 -3.1,-0.73 -4.56,-0.56 -1.66,-0.98 -3.65,1.46 -5.09,-0.03 -0.47,-0.46 -0.9,-1.08 -1.59,-1.19 z", + "region-83" : "m 355.23,283.59 c -0.53,0.03 -0.62,0.95 -1.25,0.59 -1.07,-0.24 -1.3,1.08 -2.19,1.34 -0.68,0.38 -0.82,1.2 -1.56,1.56 -0.59,0.3 -0.39,1.08 -0.69,1.47 -0.82,-0.75 -2.14,-0.58 -2.84,0.25 -0.56,0.51 -1.32,0.28 -1.59,-0.41 -0.26,-0.45 -0.59,-1.49 -1.28,-0.94 -0.65,0.39 -0.38,1.54 -1.28,1.63 -0.49,0.33 -0.43,1.06 -1.06,1.28 -0.54,0.29 -0.85,0.95 -1.53,0.66 -0.62,0.1 -0.27,0.76 -0.06,1.06 0.07,0.49 -0.17,1.38 -0.81,0.88 -0.59,-0.44 -1.76,-0.3 -2,0.31 0.58,0.17 1.69,0.87 1,1.56 -0.36,0.28 -0.08,0.8 -0.25,1.06 -0.67,0.39 -0.14,1.27 0.47,1.34 0.61,0.77 0.54,1.86 0.72,2.78 -1.18,0.73 -2.34,1.72 -3.63,2.13 -0.29,-0.68 -0.87,-0.35 -1.31,-0.09 -0.47,0.1 -0.22,-0.77 -0.81,-0.59 -1.03,0.35 -2.02,0.81 -3.16,0.72 -1.3,0.06 -2.79,0.14 -3.59,1.34 -0.8,0.47 0,1.58 -0.81,2 -0.42,0.05 -0.96,-0.07 -1.16,0.47 -0.78,1.48 -0.91,3.38 -0.41,4.97 0.26,0.38 0.8,0.29 1.16,0.56 0.49,0.09 1.26,0.01 1.06,0.78 0.02,0.4 -0.71,0.16 -0.84,0.56 -1.01,0.83 0.26,2.01 1.16,2.19 0.58,-0.08 0.88,0.54 1.34,0.59 0.39,-0.14 0.36,-1.36 0.88,-0.78 0.76,0.62 1.67,1.42 1.25,2.53 0.36,0.53 0.92,-0.63 1.47,-0.19 0.81,0.23 1.69,0.87 1.44,1.84 0.14,1.11 1.7,1.29 1.69,2.47 0.4,1.14 -0.02,3 1.47,3.41 0.81,0.19 0.42,1.36 0.75,1.94 0.21,1.17 -0,2.06 -0.66,2.5 -0.63,3.31 3.36,4.82 2.13,8.09 1.47,2.13 -3.77,2.43 -2.19,5.09 -1.55,1.17 -2.38,3.36 -4.44,2.97 -0.24,1.6 -1.76,1.78 -2.75,2.78 1.42,1.48 1.73,4.06 3.81,4.88 1.87,1.54 2.6,3.85 2.03,6.16 -0.04,1.68 -2.37,1.11 -2.13,3.19 -1.39,2.53 3.35,3.48 1.78,6.19 -0.13,0.85 0.13,1.66 0.63,2.31 -0.13,-0.03 -0.27,-0.04 -0.47,-0.03 -1.19,1.79 -1.69,4.43 0.41,5.72 -0.45,1.36 -2.52,1.74 -3.5,0.69 -1.54,-0.13 -3.08,-2.71 -4.38,-1.53 1.01,1.48 0.34,3.55 -0.13,5 -1.99,0.75 -2.55,2.82 -4.34,3.78 -0.52,1.72 -2.44,2.69 -2.84,4.41 0.01,1.72 2.73,2.74 0.56,4 -1.7,1.18 -0.24,4.86 -3.06,4.34 -2.7,0.63 -1.6,3.73 0,4.94 0.65,2.63 -4.47,0.66 -2.91,3.47 0.18,1.52 2.04,2.7 0.53,4.13 0.27,1.69 1.62,3.03 2.59,4.38 1.84,1.32 0.94,3.21 0.34,4.84 0.62,1.33 -1.77,3.31 -0.25,3.78 2.44,-0.09 0.11,3.66 2,4.56 1.7,1.06 0.3,-2.61 2.63,-2 1.68,-0.52 3.97,-1.43 4.56,0.78 2,-0.58 4.34,0.82 6.09,-0.75 0.44,-2.1 2.59,-3.2 3.22,-5.22 -0.69,-2.32 2.22,-3.17 2.16,-5.13 0,-1.99 1.08,-3.8 2.78,-4.53 0.13,-1.76 2.71,-1.81 3.06,-3.56 2.42,-0.56 2.51,3.04 2.13,4.63 0.65,0.42 1.86,-1.03 3.03,-0.47 1.73,-0.26 0.77,2.87 1.78,4.06 0.04,1.66 1.49,1.36 2.34,1.41 0.51,2.24 -0.6,4.89 0.69,7.09 0.22,1.4 1.89,3.14 2.25,0.88 0.17,-2.12 2.41,-3.18 1.69,-5.31 1.31,-1.43 0.08,-3.81 1.84,-5 0.34,-0.92 1.67,-0.91 1.28,-2.38 -0.31,-1.78 2.38,-4.14 2.91,-1.41 1.09,2.08 3.68,-0.13 3.13,-1.91 0.66,-0.39 0.95,-3.09 1.75,-1.44 1.49,0.21 2.72,-1.4 3.94,-1.91 0.35,-1.7 3.81,1.59 2.72,2.25 0.25,1.79 1.13,3.49 1.72,5.16 0.34,1.37 1.36,3.4 2.72,1.72 1.7,-0.4 4.23,-0.26 3.84,-2.75 0.47,-2.25 4.43,-0.37 3.41,1.53 -0.08,1.93 4.09,-1.3 4.13,1.69 0.63,1.03 1.68,1.89 2.41,2.97 1.04,-0.64 1.78,0.18 1.09,1.22 1.62,0.86 4.1,-0.84 4.34,-2.72 0.12,-1.27 1.25,-3.15 2.19,-1.59 -0.03,-1.43 2.74,-0.34 1.94,-2.19 0.24,-2.16 3.14,-1.12 4.56,-1.72 2.32,0.9 2.89,-1.82 3.72,-3.28 1,-1.17 1.04,-3.32 3.09,-2.47 1.27,0.03 2.49,-1.1 1.13,-2.06 -0.7,-2.65 2.93,-1.91 3.81,-3.19 -0.1,-1.04 -2.16,-1.3 -1.03,-2.72 -0.2,-1.4 2.98,-1.25 1.28,-2.53 -1.63,-1.76 2.37,-1.76 2.38,0.03 1.44,0.42 -0.33,-2.17 0.88,-2.91 0.94,-1.34 2.07,-3.68 0.75,-5.06 -0.88,-1.26 -2.37,-2.78 -3.72,-1.13 -1.58,0.28 -1.8,-1.64 -1.38,-2.53 -1.45,-0.91 -0.99,-1.91 0.06,-2.78 -0.1,-1.71 -2.18,-2.09 -3.34,-1.28 -1.53,-0.47 -2.3,-2.48 -4.19,-1.63 -1.37,-1.08 -2.02,0.41 -2.16,1.16 -1.7,-0.13 -2.86,0.95 -3.81,1.84 -0.54,-1.5 -1.85,-0.63 -2.22,0.5 -0.6,-1.73 -2.18,-3.98 -3.94,-1.94 -0.39,0.75 -1.16,2.57 -1.53,0.72 -0.67,-0.67 -0.11,1.33 -0.19,-2.22 -0.77,-2.78 3.41,-2.66 3.56,-5.06 0.08,-1.27 0.89,-2.57 -0.59,-3.5 -0.34,-2.4 -0.76,-5.08 -3.38,-6.03 -2.51,-1.49 -4.53,-3.84 -4.94,-6.81 0.3,-1.94 -2.55,-2.71 -2.44,-4.44 -2.77,-1.23 1.29,-3.16 -0.16,-5.28 -0.46,-1.42 2.46,-2.05 0.63,-3.69 -2.2,-1.35 -2.35,-3.28 -2.41,-2.44 0.41,0.47 0.97,-0.54 0.94,-0.97 -0.15,-0.63 0.52,-1.02 1.06,-0.72 0.48,0.22 1.27,0.4 1.28,-0.34 0.41,-0.77 1.1,0.48 1.69,-0.03 0.66,-0.43 2.17,-0.86 1.53,-1.94 -0.55,-1.45 -1,-3.06 -0.38,-4.56 0.35,-0.94 -0.22,-1.77 -0.75,-2.44 -0.09,-0.98 -0.19,-2.05 -0.28,-3 0.9,-0.02 0.56,-0.74 0.19,-1.25 -0.62,-1 0.08,-2.53 -1,-3.28 -0.34,-0.41 -0.34,-1.39 0.44,-1.13 0.62,0.33 1.03,-0.25 1.03,-0.81 0.86,-0.77 2.5,-0.04 3.19,-1.13 0.39,-0.12 0.93,-0.25 0.81,-0.81 0.24,-1.13 2.3,-0.38 2.34,-1.72 -0.01,-1.08 1.49,-0.35 2.03,-0.84 -0.47,-0.98 0.14,-2.28 -0.19,-3.38 -0.22,-0.75 -0.56,-1.53 -0.06,-2.25 -0.09,-0.66 0.49,-1.19 0.25,-1.84 0.92,-0.68 0.3,-2.38 -0.78,-2.59 -0.47,-0.05 -0.92,-0.15 -1,-0.69 -0.62,-0.48 -1.87,-0.88 -2.28,0.06 -0.58,0.43 -1.56,-0.09 -1.78,-0.69 0.04,-0.44 0.16,-1.48 -0.59,-1.16 -0.61,-0.09 -0.17,-0.75 -0.47,-1 -0.68,-0.03 -1.23,0.99 -1.91,0.34 -0.7,-0.25 -1.14,-1.12 -1.97,-0.91 -0.71,-0.06 -1.3,-0.89 -0.78,-1.5 0.12,-0.95 0.3,-2.27 -0.5,-2.97 -0.67,-0.08 -0.62,-0.64 -0.38,-1.09 -0.11,-0.87 -0.72,-1.6 -0.94,-2.44 -0.41,-0.57 -1.3,-0.78 -1.38,-1.53 -0.43,-0.32 -0.74,-0.7 -0.75,-1.25 -0.23,-0.42 -0.82,-0.58 -0.66,-1.19 -0.07,-0.72 -0.65,-1.3 -0.66,-2 -0.38,-0.23 -0.96,-0.08 -1.13,-0.63 -0.76,-0.3 -0.78,0.95 -0.41,1.34 0.52,0.51 0.35,1.09 -0.31,1.25 -0.46,0.18 -1.77,-0.09 -1.38,0.78 0.22,0.53 0.67,1.23 -0.06,1.59 -0.45,0.63 -0.72,-0.75 -1.25,-0.16 -0.73,0.55 -1.34,1.36 -1.72,2.13 -0.7,0.19 -2.06,0.04 -1.81,-1 0.28,-0.69 0.27,-1.72 -0.66,-1.88 -0.06,-0.42 -0.07,-1.16 -0.72,-1 -0.6,-0.11 -1.41,-0.34 -1.66,0.44 -0.42,1.36 -2.42,1.83 -3.19,0.53 -0.36,-0.46 -0.41,-1.39 -1.25,-1.22 -0.93,-0.04 -1.4,0.93 -2.19,1.28 -0.52,0.67 -1.44,1.44 -2.28,0.75 -1.65,-0.71 -2.01,-3.05 -3.97,-3.28 -1.62,-0.6 -2.82,-2.07 -3.16,-3.75 -0.68,-0.77 -1.9,-0.51 -2.81,-0.75 z", + "region-82" : "m 445.45,302.63 c -0.9,1.57 -0.94,3.47 -1.88,5.03 -0.08,2.19 -1.36,3.9 -1.91,5.91 -0.03,2.1 -1.17,3.91 -1.75,5.88 -0.42,1.81 -1.29,3.5 -1.5,5.34 -2.68,1.49 -2.72,-0.38 -2.84,-0.72 0.16,-1.57 0.9,-3.79 -1.34,-4.03 -1.92,-1 1.76,-1.41 0.19,-2.69 -0.13,-0.32 -0.29,-0.7 -0.66,-0.81 -0.87,0.66 -2.27,-0.18 -2.53,1.44 -0.41,2.16 -2.62,0.68 -2.94,-0.66 -0.67,1.6 -2.76,2.32 -3.66,0.47 -1.26,-0.9 -4.03,-1.29 -3.94,1 -0.13,1.97 -0.38,1.61 -0.42,3.08 0.23,1.74 -0.15,0.13 -0.32,2.71 -2.07,-0.72 -4.56,2.98 -5.94,0.98 1.08,-1.6 -0.62,-0.92 -1.5,-0.97 -1.01,-1.58 -2.12,1.87 -3.66,0.28 -1.85,-2.55 -4.05,0.47 -6.22,0.59 -1.47,-0.6 -1.79,-3.29 -3.91,-2.34 -2.98,-0.56 1.33,-4.04 -1.34,-4.63 -1.4,1.09 -3.38,0.82 -4.47,2.28 -1.82,0.16 0.93,1.98 0.09,3.09 1.14,1.99 -0.45,4.01 0.88,6.06 0.77,1.92 -0.65,4.23 0.63,6.22 0.35,2.41 -2.8,1.88 -3.97,2.59 -2.35,-0.89 -2.48,3.14 -0.31,3.44 2.21,1.91 -1.22,3.67 -0.25,5.94 0.04,1.28 -2.46,2.83 -0.03,3.19 0.41,1.15 0.55,2.32 1.81,2.59 1.02,2.1 0.9,4.48 2.53,6.38 1.14,1.23 2.73,2.04 4.03,3.16 1.77,0.88 2.27,2.98 2.13,4.78 0.78,1.17 1.98,2.38 0.88,3.66 0.6,2.98 -3.75,2.42 -3.69,5.28 -0.24,1.25 0.86,4.49 1.47,1.78 1.44,-1.91 3.35,-0.47 4.16,1.16 0.79,-1.11 1.74,-0.49 2.69,0 0.15,-2.21 3.89,-0.72 3.47,-2.81 1.64,-0.48 3.97,-0.56 5.25,0.84 0.93,1.42 3.2,-0.8 4.25,1.31 1.2,1.24 -2.34,2.55 0.19,3.31 -0.27,1.39 -0.27,3.35 1.86,1.85 2.67,-0.02 3.91,2.01 3.54,5.68 -0.84,1.45 -2.04,2.84 -1.17,4.56 -1.38,1.82 -1.62,-3.06 -3.47,-1.03 0.08,0.93 1.94,1.83 0.06,2.25 -1.79,0.55 -1.33,2.98 0.03,3.63 -0.47,2.05 -5.24,0.65 -3.53,3.84 1.35,2.27 -2.76,1.27 -3.53,2.22 -0.5,1.82 -1.65,3.12 -2.47,4.78 -1.73,1.45 -4.71,0.11 -6.56,1.22 -0.06,1.33 -0,2.6 -1.59,2.72 -0.66,1.6 -2.32,-1.22 -2.47,1.16 -0.36,1.82 -1.26,3.38 -3.22,3.84 0.04,1.47 -0.12,2.82 0.5,4.13 -0.1,1.82 1.01,3.59 1.19,5.5 0.67,1.99 3.1,2.63 3.16,5.03 0.75,1.76 0.21,4.28 2.34,5.16 1.14,0.83 0.95,2.06 1.75,2.97 -1.24,1.36 0.1,3.48 -0.91,5.34 1.7,-0.1 4,-2.04 4.88,0.53 2.26,-0.51 3.43,4.43 5.78,2.47 0.31,-2.54 2.52,-4.67 5.22,-4.38 0.89,1.01 -0.76,4.43 2.03,3.59 1.01,-1.21 0.12,-4.65 2.97,-3.25 2.16,0.6 2.97,2.89 5.16,3.5 3.18,1.08 0.5,-3.83 2.57,-2.6 2.1,-1.19 -0.23,0.37 3.05,-0.12 2.81,-0.3 3.35,2.7 3.5,4.84 0.37,3.51 2.73,-1.83 4.5,-0.56 2.16,-0.59 4.02,-1.98 6.09,-2.75 1.51,-0.08 2.31,2.57 4.03,0.72 0.5,-1.18 2.5,-1.96 1.56,0 -1.01,1.27 0.17,2.53 -0.34,4.06 1.15,1.41 3.52,1.07 4.38,0.13 1.67,1.57 4.23,0.98 5.78,1.84 0.25,1.64 0.25,3.65 2.38,3.5 0.91,2.71 3.77,2.53 5.25,0.38 2.19,-0.46 -0.07,-2.19 1.78,-3.09 1.34,-0.38 2.44,2.35 3.25,-0.06 2.18,-0.81 0.01,-3.75 0.91,-5.25 -1.51,0.33 -2.13,-0.36 -2.13,-1.88 -1.71,-0.59 -0.04,-1.12 -0.63,-2.16 -2.21,0.34 -4.08,-0.81 -6.06,-0.88 -1.47,-1.34 -2.64,-1.83 -2.28,-4 -1.26,-1.18 -0.41,-2.43 1.16,-1.56 2.99,0.47 -0.79,-1.86 -0.06,-3.41 -0.23,-2.54 3.39,-0.15 4.84,0.19 1.61,1.06 2.73,-0.14 3.06,-1.53 3.5,-0.73 -3.71,-2.71 -0.94,-4.78 1.26,-1.58 1.46,-3.53 1.66,-5.25 1.87,-0.08 4.5,0.45 5.83,-0.67 3.38,-2.47 0.39,-1.08 2.06,-4.74 -0.07,-3.68 3.61,-0.12 5.55,-2 2.01,-0.73 1.36,-1.84 0.69,-3.03 1.72,-0.3 3.13,-2.8 4.63,-0.88 2.1,-0.43 3.19,-3.79 5.72,-2.13 1.86,0.27 3.48,-0.14 4.91,-1.34 1.13,0.91 3.3,2.59 2.84,-0.19 0.52,-2.11 0.19,-4.13 -1.34,-5.56 0.21,-1.88 -0.41,-3.2 -2.41,-2.31 -3.75,0.79 -3.52,-3.61 -1.44,-5.34 -1.16,-1.18 0.95,-3.15 0.91,-4.03 0.97,1.07 1.62,2.76 3.31,1.25 2.63,0.04 0.96,3.97 3.56,3.72 1.62,0.4 4.28,1.15 3.63,-1.59 0.15,-2.51 3.33,0.05 4.25,-2.28 2.39,1.02 4.13,-0.89 6.19,-1.31 1.67,-0.64 2.9,-1.73 4.59,-0.28 0.86,1.73 4.44,1.23 3.34,-0.97 2.96,-0.22 3.03,-3.89 6.13,-3.81 1.12,-1.22 2.87,1.16 3.09,-1.13 2.54,-0.93 1.88,-3.3 1.06,-5.25 0.54,-1.73 2.09,-3.22 2.78,-5.09 0.35,-2.33 -3.38,-2.26 -3.56,-4.69 -1.48,-1.57 -3.46,-2.39 -4.84,-4.16 0.27,-1.97 -1.22,-3.82 -0.66,-5.75 1.75,-2.42 -1.83,-2.52 -3.09,-3.34 -1.24,-1.6 -4.57,-1.91 -4.63,-4.75 0.22,-1.3 -0.53,-2.5 -1.44,-2.38 0.77,-0.55 1.38,-1.18 1.16,-2.34 -0.04,-1.75 1.82,-1.78 2.78,-1.88 0.32,-1.93 2.75,0.19 3.94,-1.25 1.92,-0.72 2.67,-2.72 3.47,-4.44 1.07,-1.81 -0.82,-3.57 -1.31,-5.25 -1.54,-0.97 -2.37,-4.41 -4.38,-3.38 -2.46,1.2 -1.22,-2.53 -0.81,-3.63 0.45,-2.38 -5.15,-0.61 -4.47,-3.47 0.63,-1.52 0.3,-3.29 1.16,-4.69 1.66,-1.42 2.02,-3.73 0.13,-5.19 -1.28,-1.29 -2.79,-3.08 -0.72,-4.31 1.13,-1.5 0.53,-3.98 -1.56,-4.13 -2.01,-0.66 -4.04,-1.44 -6.19,-1.44 -2.47,0.62 -5.49,-0.55 -7.47,1.56 -1.52,1.73 -3.77,1.96 -5.91,2.13 -1.97,0.39 -2.97,2.4 -4.34,3.69 -1.65,1.56 1.06,2.55 0.25,4.16 -0.09,2.18 3.53,0.6 2.25,2.91 -1.49,1.45 -3.65,2.15 -4.84,3.94 -0.54,2.24 -3.42,2.72 -5.28,1.91 -1.74,0.51 -3.53,0.73 -5.31,1.13 1.53,-0.7 2.61,-2.7 0.88,-3.75 -0.92,-2.11 2.74,-3.25 4.44,-3.5 3.3,0.13 0.55,-3.33 2.31,-4.84 1.05,-1.66 2.38,-4.09 0.03,-5.38 -1.53,-2.11 -3.81,-0.86 -4.75,1.03 -1.87,1.05 -2.36,3.25 -3.81,4.63 -1.35,1.27 -3.12,4.03 -5.78,3.22 -1.93,-0.56 -4.98,1.07 -4.41,-2.25 -0.76,-1.18 -2.82,-1.78 -3.59,-2.53 -1.5,1.09 -1.87,3.05 -3.88,3.69 -1.35,2.09 -5.96,0.7 -3.69,-2 -0.13,-1.17 -2.22,0.33 -2.06,-1.72 -0.53,-0.8 -0.76,3.05 -1.06,0.88 -0.55,-1.56 -1.99,-2.97 -1.66,-4.47 -1.69,-0.63 -3.46,-1.38 -2.41,-3.31 -1.67,-0.94 -4.57,-0.63 -4.84,-3.19 -0.77,-2.9 -3.6,-0.35 -5.34,-0.31 -2.42,1.93 -4.07,-2.75 -6.44,-0.84 -0.29,-0.08 -0.47,-0.33 -0.63,-0.56 z m 1.38,137.94 c 2.48,0.28 2.22,2.93 4.59,3.22 -0.38,1.33 -2.81,1.87 -2.81,3.91 -0.59,3.17 -3.26,0.45 -5.16,1.06 -0.4,-1.03 -0.63,-2.47 -0.56,-3.44 1.53,-1.47 1.22,-3.81 3.66,-4.41 z", + "region-93" : "m 506.05,394.72 c -2.38,0.66 0.14,3.66 -2.03,4.59 -1.72,2.79 1.36,4.23 3.66,3.34 2.39,-0.55 0.1,3.64 2.59,4.03 0.47,1.76 0.32,4.2 -0.38,6.03 -1.48,-0.46 -3.08,-2.39 -4.31,-0.34 -2.25,0.76 -5.02,-1.36 -6.72,0.91 -1.11,1.7 -2.56,1.95 -3.88,0.47 -0.55,1.28 -4.21,1.51 -1.84,3.06 -0.94,2.26 -4.25,2.96 -6.38,2.25 -1.23,0.91 -1.36,3.17 -0.59,4.31 -1.22,2.28 -3.09,2.69 -5.5,3.16 -1.63,-1.42 -3.66,-0.25 -2.81,1.75 -0.72,1.97 -3.55,4.8 -0.25,5.88 1.2,0.81 1.12,1.94 -0.28,1.84 -0.36,2.15 -2.09,2.59 -3.75,1.28 -1.52,-0.34 -5.11,-2.61 -4.06,0.56 -0.41,1.39 2.92,2.83 0.38,3.09 -1.92,-1.14 -2.36,0.43 -1.34,1.94 -0.48,1.59 1.38,2.76 2.88,3.31 1.63,-0.31 3.03,1.39 4.88,0.66 1.62,0.26 -0.6,2 1.28,2.59 -1.05,2.29 3.34,0.82 2.17,3.08 0.1,1.26 -0.93,4.3 0.23,4.18 -1.44,0.42 -1.76,2.19 -2.9,0.77 -1.2,-1.89 -3.41,-0.48 -2.34,1.28 -1.15,1.03 -3.24,1.96 -3.59,3.63 -0.25,-0.96 -1.62,-1.18 -2.38,-1.81 -0.01,-2.28 -4,-1.04 -2.94,-3.84 0.24,-2.27 -2.29,-1.23 -3.59,-1.47 -1.07,-0.69 -2.7,-2.08 -3.25,-0.41 -1.82,0.23 -4.44,-0.81 -3.41,-2.94 -1.52,-1.18 1.51,-2.73 0,-3.5 -0.77,1.1 -2.2,2.65 -3.63,1.69 -1.1,-2.3 -2.93,-0.01 -4.5,0.34 -1.39,0.4 -2.62,1.74 -4.19,1.22 -1.3,-0.02 -2.71,3.54 -3.53,1.34 -0.4,-1.69 -0.01,-4.12 -1.78,-5.13 -0.57,-0.28 -1.13,-0.48 -1.78,-0.41 -1.19,0.91 -3.87,-0.8 -3.66,1.44 -0.73,2.05 0.8,3.61 1.06,5.47 -0.11,0.77 2,0.05 1.44,1.41 1.54,2.17 -0.7,4.93 0.41,7.13 0.94,0.88 2.16,-0.09 2.81,1.53 0.92,1.17 1.41,2.61 2.56,3.59 1.05,1.11 0.24,2.15 -1.06,2.19 0.2,1.77 -1.23,3.32 -2.73,3.84 -1.29,2.45 -1.68,0.97 -4.67,4.38 1.41,0.89 -0.84,2.14 0.09,3.63 0.42,2.15 -2.07,3.51 -1.69,5.72 0.86,1.45 -0.17,2.58 -1.63,1.53 -1.97,-1.55 -4.68,-0.42 -5.31,1.69 -1.63,1.04 -2.16,4.13 0.44,3.75 0.06,2.02 -2.9,1.67 -3.34,3.31 -1.75,0.99 -3.64,1.22 -4.5,2.81 -1.75,0.17 -4.98,3.13 -2.06,3.97 2.99,-0.17 5.9,1.41 8.88,0.56 2.1,-0.36 4.56,-0.11 6.16,1.38 1.4,1.7 -2.48,3.85 0.47,4.91 1.67,0.45 3.47,0.17 5.19,0.41 1.54,-0.09 3.75,0.56 4.88,-0.31 0.04,-2.31 -3.27,-2.38 -3.94,-4.38 -0.37,-2.14 0.45,-4.38 -0.31,-6.5 -0.27,-0.91 -2.07,-4.59 -0.28,-2.16 1.58,2.03 1.39,4.68 1.03,7.06 -0.44,2.92 3.28,3.57 4.97,5.19 2.32,-0.03 -1.88,-2.78 1.22,-3.16 1.7,-0.98 3.71,-0.9 5,0.78 2.12,-0.03 4.81,-1.93 3,-4.13 -2.29,-0.91 -1.95,-4.33 -0.97,-5.22 1.18,1.76 4.95,0.12 3.94,3.25 1.13,1.96 3.21,1.18 4.72,0.53 1.52,1.99 -1.57,3.81 -3.03,4.84 -1.9,0.72 -4.26,-0.43 -5.91,1.16 -1.75,1.59 0.46,4.43 2.47,4.22 2.62,-0.1 5.4,0.47 7.91,-0.44 1.54,-1.44 4.7,-1.73 4.94,0.97 -0.14,1.58 -0.17,2.96 0.5,4.25 -1.22,1.5 -0.89,3.6 1.41,3.31 2.25,-0.5 4.61,0.98 6.53,0.16 1.1,1.57 2.76,3.17 4.56,1.5 2.91,-0.26 1.33,-0.92 2.22,0.59 -0.02,1.61 1.89,3.03 3.53,2.53 0.63,0.64 0.56,1.77 1.88,1.59 0.19,0.99 -2.68,1.22 -1.13,2.53 1.43,0.36 3.77,3.21 4.47,0.28 0.46,-1.06 3.11,0.27 1.75,-1.19 -1.19,-0.66 -2.06,-1.92 -0.13,-2.22 1.14,-0.04 1.61,1.68 3.16,1 1.73,-0.39 2.65,1.89 4.53,0.69 2.33,-0.05 2.26,3.12 -0.06,3.09 1.01,0.28 3.45,0.88 4.16,-0.09 -1.41,-0.84 -0.65,-3.02 0.06,-4.19 1.81,-0.51 4.14,-1.09 5.91,0.03 0.9,0.75 1.79,2.99 3.06,1.38 -1.33,-2.25 0.73,-4.1 2.94,-4.34 1.82,-0.15 3.7,-0.23 4.81,-1.91 1.53,-0.99 2.63,0.46 3.19,1.5 1.86,-0.28 1.14,-2.69 3.09,-2.91 -0.25,-0.86 -1.21,-2.01 0.22,-2.75 2,-2.05 -1.75,-2.01 -3,-1.59 -2.62,-0.25 0.69,-1.84 1.75,-1.97 0.92,-0.9 0.58,-2.8 2.41,-3 1.27,-1 0.92,-2.99 1.38,-4.44 1.32,-1.24 3.42,1.1 5.13,-0.25 1.94,-0.35 4.81,-3.07 2.84,-4.69 0.95,0.46 2.28,0.08 1.88,-1.53 0.05,-1.74 2.24,-2.35 3.66,-2.25 1.4,-0.6 3.03,-1.95 4.31,-0.47 0.92,-1.55 -0.14,-3.61 0.66,-5.28 0.47,-2.1 3.38,-1.04 4.03,-3.03 0.72,-1.31 3.11,-1.17 4.22,-0.94 0.41,1.87 1.39,-0.15 1,-1.09 1.14,-0.12 2.61,-0.31 2.25,-2.03 0.47,-1.55 1.97,-1.33 2.75,-0.41 1.62,-0.12 1.33,-2.49 3.22,-2.44 0.12,-1.52 -1.18,-3.11 -1.22,-4.78 -0.33,-2.13 2.96,-2.32 2.78,-4.5 0.2,-2.18 2.79,-2.46 3.91,-4.09 1.16,-1.41 0.76,-3.43 2.5,-4.53 1.68,-1.83 -0.81,-3.39 -1.59,-4.88 0.1,-1.29 0.76,-4.59 -1.66,-3.22 -1.26,1.94 -3.98,1.28 -5.91,2.41 -1.51,0.57 -3.08,1.13 -4.69,1.28 -1.89,0.43 -2.52,-1.59 -4.03,-1.94 -2.04,0.55 -3.04,-1.82 -4.88,-2.31 -1.02,-1.04 -2,-2.12 -3.59,-1.63 -1.13,-0.99 -2.65,-2.58 -4.34,-1.81 -2.02,0.21 -1.92,-2.24 -2.78,-3.34 -1.88,-1.1 -1.6,-3.59 -3.53,-4.66 -0.06,-0.14 -0.21,0.11 -0.25,-1.31 -0.43,-1.8 0.92,-3.38 2.13,-3.88 -1.19,-1.88 -3.78,-3.31 -3.41,-5.91 0.82,-2.4 3.86,-3.29 4.41,-6 0.44,-1.01 0.06,-2.42 -1.06,-2.59 0.65,-0.26 1.29,-0.56 1.81,-1 0.67,-2.95 6.21,1.07 4.19,-2.81 -2.19,-1.97 -1.76,-5.16 -1.75,-7.72 -1.52,-2.46 -4.33,-1.95 -6.63,-1.66 -2.02,-1.18 -4.01,-2.55 -5.81,-4 -0.48,-1.92 0.49,-3.92 -0.22,-5.88 -0.38,-2.63 -4.73,-0.19 -4,-3.66 -0.57,-1.87 -2.47,-5.81 -4.59,-2.97 -1.36,0.43 -3.55,-0.41 -3.06,2 -0.06,2.84 -3.64,0.47 -5.25,0.41 0.16,-2.01 -1.7,-4.09 -3.81,-2.69 -0.55,-0.15 -0.84,-0.68 -1.38,-0.88 z m -59.16,46.06 c -1.34,0.86 -2.93,1.53 -2.88,3.41 -0.68,0.82 -1.64,1.75 -0.5,2.59 -1.2,2.34 2.22,1.85 3.59,2.34 1.48,-0.54 1.63,-2.54 2.38,-3.81 0.79,-0.35 2.98,-1.64 0.84,-1.78 -1.64,-0.52 -1.51,-2.57 -3.44,-2.75 z", + "region-26" : "m 374.42,178 c -0.09,0 -0.21,0.03 -0.31,0.06 -1.02,3.01 -4.51,0.42 -6.34,1.97 -2.2,0.17 -4.83,-1.19 -6.41,1.03 -2.57,-1.79 -3.94,2.42 -3.25,4.38 1.68,1.97 -0.57,4.6 -2.41,5.5 -1.87,0.69 -2.44,2.93 0.06,3.28 3.44,0.48 2.16,5.15 5.03,6.44 1.86,1.41 0.81,2.98 1.94,4.97 -0.66,1.96 -2.63,3.27 -4.19,4.59 -2.15,0.99 -1.2,3.07 -0.28,4.28 -1.27,1.6 0.91,4.33 -2.31,4.25 -1.68,2 -6.04,-0.22 -5.91,3.16 -0.16,1.79 1.75,0.84 2.06,2.41 1.23,1 1.49,2.38 2.38,3.59 -1.59,1.67 0.33,4.31 2.09,5.13 1.36,0.34 0.24,0.49 -0.59,-0.06 -1.93,0.57 -4.68,0.43 -5.94,1.69 1.17,1.4 2.06,2.94 2.69,4.63 1.41,1.6 0.64,3.6 -0.16,5.28 -1.13,1.89 -2.63,4.76 0.47,5.69 1.61,1.55 3.42,2.82 3,5.31 0.69,2.02 1.62,3.99 1.91,6.16 0.66,1.8 -0.92,4.43 1.25,5.56 2.12,1 -0.1,3.52 0.91,5.03 0.58,2.1 -1.62,3.94 -0.31,6.06 0.71,2.09 -0.92,3.84 -1.38,5.75 -0.16,2.28 2.07,3.67 3.97,4.25 1.45,1.18 2.99,4.61 5.06,2.22 1.39,-2.15 3.2,-1.4 4.22,0.47 1.89,0.79 3.51,-3.54 5,-0.91 1.15,0.73 0.12,3.43 2,3.06 0.82,-1.25 2.27,-2.28 3.44,-2.13 -0.45,-1.58 -0.46,-2.4 1.31,-2.25 -0.04,-1.1 -0.2,-3.77 1.47,-2.03 1.28,-0.83 1.92,1.84 0.59,0.91 0.57,3.06 3.65,4.81 4.22,7.81 0.75,1.41 1.19,3.46 1,5.06 2.04,1.85 5.27,-0.02 5.81,3.28 1.08,1.35 3.61,-1.11 4.91,1.13 2.56,1.38 0.03,4.03 0.38,6.06 0.06,1.87 1.72,4.92 -1.22,4.69 -0.63,1.31 -3.77,1.55 -2.13,3.66 -1.04,1.85 -0.29,4.33 2.16,3.69 1.09,1.48 2.44,3.3 4.28,1.41 2.27,-2.66 4.91,2.5 6.72,-0.66 1.34,0.75 3.64,-0.04 2.69,2.22 1.65,0.02 3.16,-2.01 5.16,-2 1.19,-2.22 0.14,-5.87 2.63,-7.28 2.52,0.05 4.6,3.81 6.38,0.47 0.58,2.51 2.94,1.41 3.28,-0.53 2.49,-1.24 4,1.91 2.38,2.88 2.76,0.76 1.62,3.11 1.88,5.06 3.75,1.26 2.79,-4.69 4.38,-6.75 1.05,-2.9 1.5,-5.84 2.75,-8.66 0.84,-2.16 1.03,-4.89 2.59,-6.5 1.57,0.12 3.16,-0.62 4.22,1.22 2.7,1.53 7.1,-3.93 8.31,0.81 1.01,2.83 4.29,2.1 6.38,1.09 2.34,0.51 4.16,-2.31 1.19,-2.97 -1.86,-1.31 -1.38,-5.17 1.06,-5.09 -0.29,-1.51 0.25,-2.26 1.31,-3.13 -1.26,-2.48 -1.09,-5.01 -3.19,-7.16 1.37,-1.38 0.91,-2.69 -0.97,-3.28 -2.12,-3.08 4.28,-2.05 5.28,-3.09 -2.01,-1.05 -2.54,-4.31 -5.09,-3.16 -2.06,-0.25 -1.36,-4.82 -3.91,-3.03 0.08,-1.67 -0.34,-4.37 -2.72,-3.03 9.3e-4,0.78 -0.25,0.19 3.03,-0.97 1.29,-0.68 2.18,-1.61 0.53,-2.31 -0.4,-3.73 4.95,-2.46 5.59,-5.38 0.99,-2.18 2.82,-4.19 2.56,-6.5 1.77,-1.75 0.38,-4.84 2.5,-6.44 -0.95,-0.58 -2.64,-1.01 -1,-2.28 0.09,-1.58 0.38,-4.2 -2,-3.25 -1.24,-1.39 0.1,-5.58 -3.16,-4.34 -0.46,-1.01 1.12,-1.5 0.72,-2.66 1.66,-0.28 3.17,-0.36 3.75,-2.25 1.65,-1.75 0.28,-6.48 -2.25,-6.5 -0.68,1.44 -1.97,2.06 -3,2.03 -1.1,-0.38 -2.24,-1.73 -3.19,0.19 -1.11,1.75 -2.94,0.44 -2.19,-1.28 -0.65,-2.03 -3.71,-1.92 -3.25,-4.41 -1.58,3.05 -5.35,1.56 -6.19,-1.13 -0.91,-2.23 -2.24,2.2 -3.59,-0.19 0.08,-1.59 0.77,-4.65 -1.66,-4.47 -0.04,-1.89 5.08,-2.47 2,-4.81 -1.06,-1.58 -1.96,-3.49 -3.19,-5.19 -1.04,-0.38 -2.4,2.55 -3.06,0.19 2.11,-0.98 1.08,-3.94 -1.22,-3.09 -1.29,-0.86 0.45,-3.41 -2.28,-2.97 -2.36,-0.57 -4.25,-0.93 -6.75,-1.56 -1.95,0.11 -3.54,1.99 -2.16,3.66 -2.49,1.1 -5.44,0.72 -8.06,0.84 -2.13,-0.11 -4.95,0.4 -3.47,3.25 -0.93,1.29 0.2,-0.42 -1.34,-0.75 -2.2,0.32 -2.21,-2.86 -3.25,-3 0.17,2 -0.71,2.08 -1.81,0.91 -1.33,1.07 -2.8,2.86 -4.13,0.78 -1.05,0.35 -1.81,1.8 -3.16,0.44 -1.52,0.35 -3.33,0.3 -5.13,0.56 0.09,-1.31 1.53,-4.11 -0.41,-4.47 -0.29,2.73 -3.58,-0.65 -1.03,-0.91 -1.81,-2.12 -2.59,-4.78 -3.66,-7.41 -1.51,-0.41 -2.48,-0.8 -1.75,-2.59 -1.08,-1.86 -1.78,2.42 -3.78,1.16 -0.25,-1.72 -1.49,-3.76 -3.25,-2.47 -1.89,-0.87 2.48,-2.38 0.41,-3.69 2.2,-1.9 -1.21,-2.95 -1.41,-4.72 -1.76,-1.44 -2.82,-5.28 -5.84,-4 -1.36,1.45 -1.28,-1.99 -2.66,-1.97 z", + "region-21" : "m 440.11,60.78 c -1.24,1.53 -2.96,2.67 -4.19,4.19 -2.61,0.85 -1.45,3.67 -1.94,5.63 -0.38,2.67 -3.5,2.01 -5.25,3.06 -1.78,1.03 -3.51,2.66 -5.75,2.31 -2.01,-0.47 -4.03,-0.8 -5.94,-1.63 -2.18,-1.07 -5.68,1.32 -3.94,3.53 2.27,0.8 0.7,3.6 -0.09,5.06 -0.22,1.15 -0.72,3.46 -0.19,3.94 2.34,1.86 -1.58,4.31 -2.94,5.53 -2.32,0.59 -0.76,4.67 -3.53,3.88 -2.19,-0.91 -2.9,1.61 -1,2.56 0.93,1.15 0.03,2.2 0,3.28 2.33,1.24 -2.55,2.94 -0.59,4.91 1.73,1.58 -1.34,2.03 0.06,3.69 0.69,0.8 0.59,-0.01 0.25,0.72 -0.85,1.01 -1.06,4.16 -2.81,2.13 -1.58,-0.94 -4.15,-2.71 -5.56,-0.59 -0.47,1.86 -1.99,2.53 -3.66,1.63 -2.11,0.93 -4.61,1.62 -6.38,2.88 -0.53,2.28 1.53,4.25 0.5,6.59 1.8,0.71 2.48,2.18 3.97,3 -0.94,2.45 -4.12,0.39 -5.91,1.53 -1.7,1.66 2.41,4.39 -0.88,5.41 -2.23,2.44 5.5,0.7 2.69,3.66 -2.5,1.8 -2.99,5.43 -5.91,6.75 -2.49,1 -1.19,4.96 -2.88,6 -1.36,-0.13 -2.85,0.18 -1.28,1.25 -0.7,1.1 -2.96,2.55 -0.28,3.03 3,1.24 1.09,4.26 0.72,6.31 0.94,1.84 3.99,-0.47 4.72,2.19 -0.43,1.32 -0.78,0.84 -2.28,2.16 -2.73,0.52 0.34,3.89 -2.69,3.91 -1.65,-0.53 -1.6,0.54 -0.78,1.56 1.13,1.8 -3.04,0.96 -1.25,3.06 0.42,1.28 -0.32,2.48 1,3.47 -1.08,1.82 0.39,3.41 2.03,2.16 1.85,0.1 2.84,1.82 3.75,3.16 1.48,1.39 2.14,3.14 3.41,4.59 -1.41,1.17 0.78,2.63 -1.13,3.5 -1.3,1.27 0.05,1.69 1.09,0.97 1.77,0.49 1.43,4.12 3.66,2.69 0.94,-0.2 0.66,-2.76 2.03,-1.09 0.65,0.86 -0.95,2.77 1.09,2.38 2.02,1.3 1.81,4.19 3.03,6.09 1.58,0.78 1.71,2.31 0.5,2.91 0.54,1.51 1.71,0.27 1.97,-0.31 2.56,0.7 -1.28,5.4 2.13,4.31 1.91,-0.23 3.38,-0.23 5.06,0.09 0.59,-1.33 1.97,-1.11 2.56,0.19 1.58,-0.22 2.92,-3.3 4.19,-0.97 0.61,-0.58 -0.3,-2.64 1.34,-1.56 -0.48,2.55 3.68,3.96 3.75,0.78 1.55,-0.59 3.75,-0.44 5.59,-0.63 1.75,0.63 3.69,-0.42 5.56,-0.41 0.29,-1.14 -1.6,-2.56 0.47,-3.03 1.86,-2.3 4.6,1.04 6.56,-0.69 0.26,0.05 0.56,-0.18 0.28,0.09 0.25,2.41 5.64,0.09 3.81,3.34 -0.25,1.39 4.64,0.53 2.81,2.97 -1.68,0.97 -0.12,3.13 0.63,1.09 2.69,-1.66 2.17,3.12 4.06,3.69 1.18,1.84 2.43,3.98 -0.56,4.81 -1.81,0.95 -0.48,1.61 0.72,1.69 1.1,1.35 -1.34,5.62 1.63,4.31 1.63,-1.99 2.74,0.58 3.16,1.72 1.59,1.44 3.76,1.44 4.59,-0.72 0.9,0.19 0.25,2.48 2.06,2.53 0.69,1.12 2.71,1.18 1.56,2.66 0.3,2.71 2.08,0.27 3.03,-0.44 1.42,-0.65 2.31,1.81 2.88,-0.44 1.04,-1.74 1.03,-4.77 3.75,-4 1.6,-1.14 3.56,0.94 4.63,-1.41 1.53,-1.73 1.57,2.71 3.72,1.25 1.9,-0.14 2.95,-1.34 2.19,-3.25 1.43,-1.27 0.78,-2.68 -0.38,-3.66 -0.36,-1.86 1.28,-3.09 2.84,-2.78 0.09,-1.65 1.04,-3.14 2.78,-1.91 1.89,0.14 0.95,-4.54 3.66,-3.31 0.78,-1.86 -1.65,-5 -3.63,-3.16 -2.15,-0.87 0.65,-4.13 -1.69,-5.38 -2.08,-0.99 -3.29,-3.61 -5.72,-3.13 -0.78,-1.43 1.74,-1.98 1.19,-3.5 1.49,-1.43 -0.02,-4.04 2.66,-4.09 0.87,-2.59 -4.13,-1.95 -3.41,-4.16 0.23,-2.18 -2.45,-1.79 -3.16,-1.75 -1.8,-1.38 -2.09,-5 -4.84,-4.5 -0.93,1.04 -3.31,1.86 -2.44,-0.53 1.81,-1.67 -2.53,-1.7 -0.13,-2.75 3.11,-1.15 -1.07,-3.22 -1.19,-4.59 -2.32,-0.43 -3.08,-3.25 -5.75,-2.97 -2.2,-0.41 -3.45,-2.38 -5.41,-3.25 -1,-0.87 -2.09,-2.25 -3.63,-2.31 -0.33,-1.23 -1,-2.41 -1.94,-0.91 -2.48,0.33 -1.07,-3.27 -1.22,-4.5 -1.26,-1.72 1.65,-2.53 -0.66,-4.38 -1.02,-1.86 -5.77,-3.19 -3.53,-5.53 1.95,-1.47 -1.09,-4.18 1.13,-5.78 1.48,-1.5 6.06,-1.28 3.63,-4.44 0.08,-0.05 1.84,-2.53 -0.16,-3.06 -3.37,1.1 0.97,-2.04 -0.44,-3.47 0.13,-2.66 -3.6,-5.31 -1.69,-7.59 -0.05,-1.17 0.9,-1.42 -0.5,-2.91 1.43,-0.97 3.17,-1.86 4.5,-2.69 -1.52,-2 -1.1,-5.7 1.75,-6.16 1.39,-0.71 -1.19,-2.05 0.69,-2.81 0.81,-2.16 -1.48,-3.72 -1.84,-5.84 1.6,-0.81 1.14,-3.15 2,-4.25 -0.08,-2.31 2.07,-1.25 2.72,-0.03 1.75,-0.02 3.3,-0.06 4.41,1.56 2.3,0.19 2.64,-3.44 5.09,-3.19 1.49,-1.51 -0.92,-3.03 -1.94,-1.38 -2.45,-0.56 1.15,-3.54 -1.97,-4.44 -1.17,-1.71 -3.05,0.7 -4.53,-0.56 -1.26,-0.27 -1.05,-1.58 -2.38,-1.47 -0.88,-1.51 -1.1,-3.88 -3.5,-3.53 -2.22,-0.27 -3.52,-3.42 -5.97,-1.44 -1.59,0.26 -4.08,-0.13 -2.88,-2.28 -0.7,-1.6 -0.78,-3.23 0.38,-4.75 1.08,-2.94 -3.71,-2.9 -3.44,-5.22 1.66,-1.87 1.38,-4.63 2.13,-6.72 0.47,-1.55 1.75,-1.78 1.81,-3.63 0.26,-2.46 -2.55,-0.11 -3.06,-2.5 z", + "region-31" : "m 335.55,0 c -3.43,1.47 -6.98,2.66 -10.72,2.44 -3.1,0.89 -6.3,1.61 -9.19,3.03 0.8,1.28 6.97,-1.14 -2.34,-0.13 -4.67,0.52 -9.22,1.97 -13.53,3.78 -2.62,1.21 -3.81,4.27 -6.75,5 -3.31,1.16 0.87,5.45 -0.72,8.03 -1.1,2.07 -1.79,4.43 -1.13,6.75 0.28,2.42 0.02,4.96 1.31,7.03 -2.1,2.06 -0.71,6.36 -1.75,9.34 1.02,1.95 3.49,2.59 4.78,4.31 2.63,0.04 5.26,-2.82 7.88,-0.78 1.48,1.06 3.49,3.43 4.94,1.34 2.53,0.17 -1.7,2.81 1.25,2.84 1.83,1.47 5.46,1.23 4.91,4.31 1.83,1.66 4.06,1.56 6.16,0.28 1.49,0.74 2.98,-1.47 4.28,0.06 1.29,-0.11 0.37,-2.57 1.84,-0.78 1.06,2.83 2.17,-1.71 4.19,-0.09 1.81,-0.02 3.82,3.17 0.84,3.09 -2.82,0.39 -4.83,5.19 -1.25,5.81 0.43,-1.96 3.39,-4.56 4.69,-1.88 0.95,0.06 0.96,-2.21 2.38,-0.91 -1.29,2.63 2.5,1.38 3.75,2.66 1.01,0.02 2.8,1.43 1.69,-0.5 0.03,-2.85 2.71,-0.51 3.78,-0.19 0.17,1.65 -2.94,5.59 0.5,3.59 1.5,-1.55 3.47,-2 3.75,0.66 0.78,1.86 3.16,-1.88 4.69,-0.22 1.46,-0.95 3.63,-0.91 4.72,-0.15 1.9,1.74 3.89,2.45 5.94,1.56 2.26,-1.32 5.08,2.02 6.88,-0.69 2.98,0.44 6.13,1.89 8.41,-1.06 1.98,-0.29 4.46,2.95 5.69,-0.34 2.9,-1.43 5.98,1.3 9.03,1.19 1.53,2.96 3.47,-0.57 5.81,0.03 -1.87,3.96 3.7,3.72 6.25,4.13 2.29,-0.95 -0.65,-4.31 2.59,-4.78 2.82,-0.8 0.91,-4.83 -0.56,-5.75 -3.06,0.67 -0.12,-3.85 -0.06,-5.38 1.87,-1.24 2.82,-4.01 -0.19,-4.25 -1.07,4.16 -2.09,-2.66 -4.38,-2.69 -1.69,-3.72 -4.83,-0.59 -7.63,-0.72 -2.37,-0.85 -5.7,-2.48 -7.81,-0.09 -1.66,4.51 -4.18,-2.38 -2.94,-4.66 0.52,-3.52 -3.25,-7.39 -6.78,-5.75 -1.77,0.07 0.31,-3.59 -2.47,-2.13 -2.41,2.31 -6.09,2.01 -8.28,-0.47 -0.77,-2.54 -0.39,-5.31 -1.88,-7.78 0.28,-2.25 0.28,-4.4 -2.31,-5.22 -0.57,-2.79 -2.95,-5.34 -5.75,-3.47 -2.32,0.87 -5.89,0.77 -6.5,3.63 -1.2,3.14 -4.3,-0.53 -6.47,-0.63 -1.62,-2.75 -3.48,-6.45 -7.19,-5.84 -1.19,-1.96 -1.71,-5.46 -1.09,-7.13 2.22,-2.65 -1.65,-4.22 -2,-6.53 -0.27,-1.34 -0.16,-2.93 -1.25,-3.94 z", + "region-41" : "m 466.52,97.41 c -1.09,2.05 -3.62,1.84 -4.56,4.16 -2.06,1.9 -3.21,-2.61 -5.44,-0.84 -1.22,-0.12 -2.64,-3.24 -3.13,-0.5 0.16,1.18 -1.23,2.02 -0.94,3.53 -0.98,0.86 -1.69,1.56 -0.25,2.59 0.87,1.11 1.38,3 1.09,4.25 -1.92,0.65 1.05,2.67 -1.31,3 -1.85,0.5 -3.02,3.3 -1.5,4.84 2.03,2.44 -5.45,1.89 -3.13,4.72 1.73,1.94 -2.71,2.05 -0.97,4.19 1.12,2.15 2.37,4.53 2.09,7 -0.73,0.97 -0.79,2.06 0.63,1.56 1.91,0.63 0.24,2.81 -0.25,3.22 2.97,1.13 -0.51,3.94 -2.44,3.81 -2.83,0.92 -1.21,4.12 -1.41,5.91 -2.27,0.76 -1.56,3.13 0.5,3.44 0.78,2.04 3.85,2.48 3.34,4.91 -1.03,1.56 0.33,2.54 -0.66,4.19 -0.41,2.22 1.46,2.8 2.69,1.28 0.35,1.45 0.98,2.82 2.72,2.31 1.09,2.08 3.52,2.55 5.06,4.34 2.27,0.9 4.8,0.88 6.22,3.16 2.51,0.35 2.84,2.78 4.16,4.07 0.18,1.56 -4.48,1.85 -0.63,2.75 -1.78,1.06 -0.17,4.08 1.16,1.75 2.93,-1.33 3.22,2.39 4.88,3.84 0.91,1.42 2.93,-0.64 3.63,1.69 -0.71,2.15 1.42,2.14 2.78,2.94 0.78,1.08 1.51,2.72 -0.56,2.47 -0.84,1.28 -0.49,3.15 -1.59,4.28 0.81,1.2 -2.55,2.08 -0.53,2.81 2.09,-0.91 3.19,2.33 5.13,2.81 2.36,1.3 0.12,4.13 1.53,5.44 1.54,0.44 2.35,-2.59 2.84,-0.06 0.68,2.6 2.59,0.64 2.94,-0.97 2.15,-1.68 1.28,1.08 0.69,1.97 1.78,-0.62 3.6,-1.91 4.47,-3.91 1.23,-1.14 3.61,-1.49 4.97,-1.19 1.42,1.44 -0.11,4.06 2.34,4.41 1.59,2.64 3.59,-1.32 5.56,-0.06 2.15,-1.17 4.72,-0.41 6,1.59 0.64,1.74 1.57,3.2 3.34,1.75 1.6,-0.75 3.18,-4.53 5,-1.72 1.23,2.37 3.96,3.34 6.13,4.66 1.42,0.78 2.18,3.61 4.22,2 2.04,-0.21 3.21,-1.94 2.16,-3.75 1.27,-2.36 0.32,-6.03 2.66,-8.19 2.71,-0.63 2.22,-4.22 4.34,-5.63 2.03,-1.71 -0.83,-4.01 1.34,-5.81 1.63,-1.7 1.83,-4.2 3.22,-6.03 1.11,-1.35 2.74,-4.19 -0.06,-4.34 -1.71,0.99 -4.63,-1.26 -2.47,-2.78 -1.57,-2.1 1.28,-4.86 0.25,-7.13 -1.03,-0.23 -0.28,-1.19 -1,-1.44 -0.68,0.29 -0.14,-0.47 -0.44,-0.75 -0.4,-3.01 1.27,1.11 5.69,-1.94 2.54,-1.28 3.63,-5.48 3.97,-7.28 -3.58,-1.29 -0.16,-3.78 0.28,-6 1.57,-2.39 -1.82,-4.04 -3.41,-4.91 -0.92,-0.46 -2.85,-2.67 -3.34,-0.41 0.04,1.34 -2.72,3.67 -3.47,1.97 1.42,-1.19 -2.33,-1.17 -0.66,-2.88 0.58,-0.42 2.92,-0.77 1,-1.22 -1.9,0.22 -3.07,-2.28 -5.31,-2.09 0.36,-1.47 -1.95,-2.92 0.66,-2.5 -0.24,-2.46 3.11,-1.18 2.78,-3.66 0.97,-1.9 0.89,-5.07 2.81,-5.94 1.56,0.28 -0.21,2.24 1.03,3.06 0.44,2.29 3.08,1.43 4.38,2.97 2.08,-0.63 3.44,0.95 4.44,2.22 2.35,0.41 4.6,-1.02 6.97,-0.91 1.74,1.66 4.79,2.7 5.41,-0.5 0.03,-2.29 3.08,-4.05 1.91,-6.13 -1.64,-1.28 -4.25,-0.4 -4.94,-3.09 -1.46,-0.89 -0.27,-4.1 -2.88,-3.22 -1.94,-1.81 -3.96,-0.43 -5,1.53 -1.63,0.41 -2.99,2.35 -4.94,1.09 -2.43,0.91 -4.5,-0.47 -6.56,-1.34 -0.06,2.16 -3.18,2.67 -2.81,0 0.36,-3.27 -3.35,-4.29 -5.78,-4.78 -1.02,0.19 -3.84,-0.21 -2.5,1.88 0.56,3.34 -3.79,1.81 -5.53,1.16 -1.66,-0.89 1.41,-3.24 -1.34,-3.13 -1.25,-2.69 -3.38,-5.31 -5.63,-7.63 -0.97,-1.2 2,-2.73 -0.66,-3.56 -1.56,-1.24 -0.91,-3.44 -3.28,-4.09 -1.88,-1.38 -4.07,-1.79 -6.22,-0.88 -2.51,-0.28 -4,-3.64 -6.72,-2.88 l -0.16,0.03 -0.06,-0.03 c -2.5,-0.46 -3.78,2.24 -5.5,3.13 -2.04,0.13 -5.36,1.51 -5.56,-1.88 -0.59,-1.44 -4.32,-0.37 -1.75,-0.13 6.4,8.39 -4.28,8.77 0.41,3.13 1.39,-4.07 -3.95,-2.74 -4.75,-5.91 -0.79,-0.88 -1.98,-1.2 -3,-1.72 -1.67,3.08 -5.74,-1.97 -6.63,2.41 -1.05,-0.08 -3.37,-1.42 -4.28,0.56 -1.19,-0.11 -1.91,0.37 -2.25,1.13 -0.01,-0.13 -0.06,-0.34 -0.16,-0.63 -0.19,-2.1 -0.51,-4.34 -1.91,-6.25 -0.32,-0.62 -0.83,-1.2 -1.56,-1.31 z", + "region-42" : "m 544.17,133.28 c -1.58,0.23 -0.4,2.18 -1.72,3.13 -0.53,1.32 -0.49,4.02 -1.78,4.5 -1.51,0.02 -3.73,3.48 -1.63,4.38 1.94,0.49 3.53,1.75 5.28,2.28 -0.53,0.75 -3.05,0.85 -1.84,2.56 1.17,0.35 1.66,0.71 0.88,1.56 2.9,0.8 2.45,-4.08 5.06,-3.5 0.08,1.99 2.93,1.1 3.25,2.09 0.08,1.35 3.5,2.12 2,4.19 -0.63,1.68 -2.44,3.57 -2,5.16 0.83,1.05 2.94,0.71 1.31,2.25 -1,1.88 -1.1,4.47 -3.13,5.69 -1.49,1.59 -3.4,2.15 -5.47,1.5 -1.5,-0.11 -1.19,1.4 0.16,0.88 1.61,0.28 1.03,1.44 -0.22,1.38 1.72,1.32 0.19,3.7 0,5.66 -0.32,1.37 1.25,2.63 -0.53,3.53 0.55,1.82 2.88,1.71 4.34,1.38 0.98,0.08 0.7,1.6 0.76,2.69 -1.65,1.36 -2.24,2.73 -3.14,4.75 -0.4,1.82 -2.18,2.92 -2.53,4.75 -1.33,1.4 1.34,1.6 0.25,2.88 -0.93,1.83 -2.95,3.03 -3.06,5.22 -0.53,1.75 -3.15,1.49 -3.13,3.25 -0.66,1.37 -1.22,3.06 -0.75,4.66 -0.41,1.17 -1.67,2.16 -0.53,3.44 0.71,1.97 -2.41,1.71 -3.06,2.97 -0.01,2.42 2.59,2.3 4.19,3.09 1.23,0.9 2.75,1.35 3.94,2.28 0.75,1.15 0.29,2.81 0.84,4.22 0.01,1.63 -1.95,1.8 -1.63,3.66 -0.16,2.76 3.71,-0.49 3.81,2.34 0.66,1.17 1.29,2.33 2.22,3.25 -0.26,1.35 -0.34,3.3 1.72,2.78 1.73,0.11 -1.35,2.87 0.69,3.56 1.21,-0.48 1.97,0.75 2.56,1.19 1.4,-0.54 2.92,-1.49 4.44,-0.84 1.79,0.56 3.17,-0.74 4.38,-1.84 1.37,-0.81 -1.77,-2.29 0.34,-2.25 1.11,1.41 3.17,-0.21 2.09,-1.59 1.35,0.23 1.88,-1.32 0.41,-1.53 0.05,-1.19 2.26,-1.14 2.66,-2.5 2.32,-0.26 0.57,-3.01 -0.22,-4.06 -1.18,-1.03 -2.5,-2.49 -1.91,-4.19 1.12,-1 1.79,-2.5 0.84,-3.94 -0.75,-1.85 0.36,-3.7 1.28,-5.22 -0.2,-1.24 -0.59,-2.58 0.78,-3.28 -0.03,-1.74 0.43,-3.15 1.69,-4.41 0.99,-1.53 -0.1,-3.22 -1.28,-4.25 -1.68,-1.54 -0.58,-3.95 -0.53,-5.88 -0.05,-0.53 -0.05,-0.78 -0.52,-0.9 1,-0.35 2.23,-1.39 2.36,-3.07 0.77,-2.6 3.86,-4.17 3.5,-7.09 -0.49,-2.51 3.84,-2.86 2.31,-5.53 -0.61,-2.16 0.06,-4.43 1.13,-6.31 -0.44,-2.54 2.88,-3.38 1.72,-5.97 -0.24,-1.77 -0.1,-3.58 0.78,-5.16 1.2,-2.36 4.12,-3.13 5.56,-5.34 0.93,-1.46 0.85,-3.74 3.25,-3.38 0.47,-2.65 4.31,-1.9 4.34,-4.97 0.46,-2.67 2.02,-4.89 3.41,-7.16 0.58,-0.8 2.66,-1.95 0.47,-2 -1.97,-0.34 -4.12,-0.64 -5.91,-1.63 -1.91,-1.34 -4.3,-2.4 -6.34,-3.16 -1.93,0.68 -3.88,0.6 -5.59,-0.59 -2.1,0.71 -4.3,0.32 -6.53,0.56 -2.49,-0.15 -2.66,2.95 -3.53,4.63 -0.5,2.61 -2.99,2.85 -4.69,1.16 -1.92,-1.57 -4.22,0.44 -6.31,0.41 -2.52,0.72 -2.77,-3.33 -5.5,-2.31 -1.48,-0.12 -2.6,-1.74 -4.31,-1.56 -0.6,-1.43 -1.26,-3.09 -1.06,-4.38 l -0.28,-0.03 c -0.13,-6.3e-4 -0.24,-0.02 -0.34,0 z", + "region-43" : "m 499.95,202.88 c -1.48,1.05 -4.3,0.24 -4.72,2.59 -0.74,1.61 -2.57,2.53 -4.03,2.94 -0.34,-0.77 1.77,-2.53 -0.13,-2.5 -0.99,1.61 -1.89,3.2 -2.41,4.94 -2.68,-0.87 -1.8,3.12 -3.25,3.5 -1.3,-0.7 -3.4,-0.74 -2.75,1.31 -0.88,1.21 -3.26,-0.03 -3.16,2.25 -0.46,1.62 2.57,1.94 0.91,3.63 -0.98,1.52 0.5,4.17 -2.22,4.09 -1.57,0.85 -3.25,0.21 -3.47,-1.56 -1.37,0.18 -2.07,2.82 -3.91,1.41 -1.24,0.85 -3.18,-0.03 -4.03,1.06 0.43,1.42 -2.57,3.53 -0.44,4.25 0.89,-1.83 2.68,-2.69 3.75,-0.38 0.5,1.68 1.76,4.17 -0.06,5.47 -0.69,1.13 -1.66,2.49 -3.19,1.78 -1.3,0.54 0.73,1.51 -0.69,1.81 -0.5,1.32 2.31,0.21 2.25,1.84 -0.45,1.42 -0.22,4.26 1.97,3.19 1.12,0.71 0.51,3.24 0.09,4.44 2,0.74 2.24,2.05 1.59,1.69 -1.89,1.19 -1.39,3.31 -1.88,5.28 -0.64,0.76 -1.53,1.44 -0.91,2.59 -0.09,2.24 -2.24,3.15 -2.59,5.25 -0.78,2.29 -3.95,1.21 -5.03,3.41 -1.54,1.4 0.69,1.67 1.06,2.56 -1.89,0.73 -2.98,2.37 -2.5,4.31 0.13,1.42 2.54,-0.58 2.41,1.59 0.08,2.38 2.07,2.37 3.72,2 0.66,0.84 0.66,2.24 2.22,2.19 2.43,0.87 -0.07,3.08 -1.69,1.94 -1.17,0.08 -2.56,0.6 -3.38,1.25 0.11,1.68 4.22,2.09 1.78,4 -0.64,1.56 1.6,1.33 1.53,2.91 0.07,1.18 -0.14,1.58 0.81,2.44 0.19,1.36 1.44,2.54 -0.31,3.53 -0.67,0.75 0.36,2.66 -1.63,2.5 -1.19,0.8 -1.33,4.35 1,4.72 2.68,1.66 -1.11,3.55 -2.81,2.97 -1.59,0.44 -1.07,2.34 -1.06,3.44 1.19,0.84 3.27,1.23 2.47,3.03 0.35,0.78 1.76,2.87 2.41,1.16 0.08,1.37 1.23,2.02 2.19,1.81 0.32,1.28 -1.45,3.91 1.22,3.44 2.17,0.36 3.07,-1.83 4.78,-2.44 -0.05,-1.35 2.19,-3.35 2.53,-1.41 1.91,0.51 3.27,1.45 2.94,3.66 1.58,0.41 3.83,0.19 5.69,0.41 2.04,-0.37 2.87,-2.19 4.06,-3.31 1.59,-0.86 1.86,-3.63 3.84,-4.44 0.79,-1.41 2.47,-2.27 3.03,-3.69 -1,-2.03 0.83,-3.26 1.53,-4.97 0.09,-1.12 3.26,-3.18 0.84,-3.09 -0.77,-1.17 0.92,1.4 -0.09,-1.81 1.33,-1.8 3.4,-2.99 4.88,-4.72 1.55,-1.95 4.01,-2.54 5.84,-4.06 0.99,-1.82 5.28,-2.43 3.19,-5 -0.6,-1.98 1.83,-3.6 1.09,-5.66 -0.72,-1.81 -1.81,-3.32 0.31,-4.66 1.51,-1.44 3.86,-1.04 5.63,-2.09 1.98,-0.67 3.24,-2.47 4.94,-3.63 0.57,-0.92 -0.6,-3.57 1.72,-3.63 0.6,-2.37 3.98,-2.14 4.69,-4.5 1.07,-2.43 3.92,-3.29 5.06,-5.56 -0.36,-1.72 0.13,-3.47 2.28,-3.53 0.32,-1.83 3.75,-1.83 2.03,-3.97 -1.97,-1.19 -4.44,0.69 -6.69,0.22 -2.07,-0.27 1.24,-2.7 1.84,-3.41 0.22,-0.54 0.22,-1.05 0.13,-1.53 0.18,0.04 0.39,0.05 0.53,-0.03 0.83,-0.18 1.46,-0.79 2.25,-1.06 0.62,-0.6 -0.22,-1.43 -0.38,-2.06 -0.12,-0.36 -0.43,-1.06 0.19,-1.13 0.42,-0.08 0.79,-0.29 1.13,-0.47 0.96,0.2 1.83,0.89 2.88,0.69 1.1,-0.11 2.46,-0.61 2.44,-1.94 0.17,-1 -0.68,-1.62 -1.41,-2.13 -0.16,-0.46 -0.02,-1.1 -0.53,-1.41 -0.45,-0.55 -0.43,-1.7 -1.38,-1.72 -0.72,-0.12 -1.45,0.05 -1.94,0.59 -0.4,0.24 -0.29,-0.53 -0.59,-0.63 -0.31,-0.79 -0.35,-1.73 0.09,-2.47 0.16,-0.36 0.01,-1.12 0.63,-1 0.41,0.01 0.39,-0.35 0.41,-0.63 0.61,-1 -0.16,-2.16 -0.31,-3.16 0.23,-0.47 0.39,-1.05 -0.09,-1.44 -0.8,-1.1 -2.3,-1.18 -3.28,-2.06 -0.38,-0.36 -0.85,-0.58 -1.34,-0.59 -0.84,-0.67 -2.11,-0.35 -2.91,-1.13 -0.45,-0.63 -0.76,-1.4 -0.97,-2.13 -0.05,-0.04 -0.09,-0.07 -0.16,-0.06 -0.55,0.23 -0.51,0.99 -0.97,1.34 -1.01,0.37 3.92,2.85 -0.59,-1.63 -1.1,-2.17 -3.71,-2.73 -5.59,-4.25 -2.21,-0.35 -2.46,-4.75 -5,-2.91 -0.65,1.93 -4.86,4.56 -5.25,1.25 -0.87,-1.44 -2.51,-3.08 -4.28,-2.97 -1.68,0.96 -3.66,-0.19 -5.13,1.22 -1.27,1.15 -2.33,0.4 -2.88,-0.84 -3.16,0.23 -0.06,-3.73 -2.81,-4.53 z", + "region-94" : "m 591.58,517.94 c -2.35,-0.01 -1.43,2.88 -1.09,4.28 0.7,1.81 -2.51,2.79 -1.13,4.66 -0.49,1.37 -1.42,2.72 -0.13,3.97 0.7,1.67 0.72,3.54 0.53,5.31 -1.04,0.77 -0.93,3.86 -2.56,3.13 -0.73,-1.62 -2.11,-3.04 -4,-3.03 -1.86,-0.3 -3.96,-0.02 -5.19,1.56 -1.27,1.17 -0.87,3.32 -2.75,3.91 -1.35,0.75 -2.96,0.9 -4.47,0.78 -1.63,0.44 -2.75,1.92 -4.5,2.06 -1.08,1.11 -1.59,3.82 -3.63,2.5 -2.28,-0.27 -0.71,2.9 -2.75,3.25 -1.77,0.65 -1.33,2.55 -0.72,3.72 -0.66,1.21 -0.31,3.41 -2.41,2.97 -0.67,0.62 -0.74,2.12 -1.28,2.47 0.95,10e-4 -0.08,0.77 -1.5,0.16 -0.71,0.81 -0.14,3.58 1.19,2.03 1.32,-0.93 3.13,1.22 1,1.59 -0.01,1 1.97,1.01 2.59,2 2.68,1.95 -1.56,2.5 -3.03,2.97 -0.69,0.53 -3.15,0.81 -1.41,1.72 1.22,1.06 0.05,2.76 0.63,3.53 0.85,0.12 -0.88,1.14 0.28,1.69 0.95,1.15 2.74,1.36 3.78,2.44 2.1,-0.64 1.94,2.54 3.38,3.53 -0.02,1.76 -4.46,1.44 -3.63,3.94 0.68,2.57 -4.21,0.58 -2.84,2.81 1.83,0.44 -0.6,3.95 1.91,2.84 1.99,0.16 3.75,-0.51 5.28,-1.56 2.42,0.22 1.96,2.83 1.16,4.31 1.13,1.3 -2.4,1.11 -0.19,2.13 0.63,2.06 -3.8,1.36 -2.69,3.78 0.22,1.8 -4.34,1.47 -1.31,2.5 0.94,2.3 4.04,-1.68 4.06,1.25 0.12,1.47 2.47,0.33 3.34,1.44 1.12,-0.15 4.2,0.76 1.94,1.72 -0.87,1.64 -2.45,2.58 -4.41,2.63 -0.89,1.51 -0.2,3.28 -0.22,4.84 0.82,0.95 2.52,1.16 2.75,2.44 1.7,0.55 3,1.99 4.72,2.41 1.66,0.13 3.24,1.84 4.81,1.22 1.07,-1.21 -0.28,2.62 1.63,1.5 2.2,0.53 -1.6,3.3 1.28,3.44 1.58,0.19 2.49,2.77 4.28,1.63 0.89,-0.72 2.28,-4.22 0.03,-2.56 -0.14,-1.13 -0.24,-2.82 1.44,-3.19 2.06,-1.11 0.42,-3.26 1.22,-4.75 1.02,-1.38 3.26,-2.06 3.38,-3.97 -0.51,-2.43 -3.68,1.63 -3.16,-1.09 0.32,-2.31 2.97,-0.07 3.16,-2.25 2.28,-0.35 0.06,-3.4 2.22,-4.19 0.34,-1.98 -0.18,-4.06 0.09,-6.09 -1.11,-4.76 0.77,-0.51 0.31,-8.16 -0.47,-1.47 -0.31,-2.8 0.84,-3.88 0.84,-1.19 1.62,-2.44 2.13,-3.81 -1.58,-0.86 0.17,-2.38 1.22,-1.81 1.03,-1.08 2.34,-2.79 2.25,-4.19 -1,0.15 -2.17,-0.12 -0.78,-0.97 1.56,-1.35 1.27,-3.54 1.22,-5.38 0.1,-3.14 -0.11,-6.33 -0.94,-9.38 -0.32,-3.98 0.06,-7.96 -0.31,-11.94 0.24,-1.18 -0.65,-2.07 -1.69,-1.91 -1.43,-1.2 -1.57,-3.23 -2.16,-4.88 0.02,-1.82 0.21,-3.64 0.5,-5.44 0.35,-1.84 0.88,-3.67 1.41,-5.47 -0.1,-2.84 -1.11,-5.58 -1.06,-8.44 -0.76,-1.38 0.27,-3.67 -1.56,-4.41 -0.78,-0.33 -1.64,-0.33 -2.47,-0.31 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/france_regions_domtom.js b/lib/mapael-maps/france/france_regions_domtom.js new file mode 100644 index 000000000..8154afa19 --- /dev/null +++ b/lib/mapael-maps/france/france_regions_domtom.js @@ -0,0 +1,123 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of France by region (with DOM/TOM) +* Equirectangular projection + +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +* @source http://commons.wikimedia.org/wiki/File:Guadeloupe_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Martinique_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:Guyane_department_location_map.svg +* @source http://commons.wikimedia.org/wiki/File:La_R%C3%A9union_arrondissement_commune_map.svg +* @source http://commons.wikimedia.org/wiki/File:Mayotte_blank_map.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + france_regions_domtom : { + width : 641.85596, + height : 627.08588, + getCoords : function (lat, lon) { + if (lat < 43.213183 && lat > 40.780541 && lon > 7.611694 && lon < 11.21521) { + // Corse + var xfactor = 43.64246; + var xoffset = 223.2912; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.77758; + var yoffset = 3346.37839; + var y = (lat * yfactor) + yoffset; + } else if (lat < 16.623033 && lat > 15.710307 && lon > -62.273712 && lon < -60.565338) { + // Guadeloupe + var xfactor = 86.761658287969; + var xoffset = 5362.7633969916; + var x = (lon * xfactor) + xoffset; + + var yfactor = -82.266584089643; + var yoffset = 1657.41182763; + var y = (lat * yfactor) + yoffset; + } else if (lat < 15.060189 && lat > 14.263052 && lon > -61.699448 && lon < -60.455246) { + // Martinique + var xfactor = 108.86848400636; + var xoffset = 6667.8264; + var x = (lon * xfactor) + xoffset; + + var yfactor = -102.17420080747; + var yoffset = 1888.497; + var y = (lat * yfactor) + yoffset; + } else if (lat < 6.479067 && lat > 1.241358 && lon > -55.823364 && lon < -49.308472) { + // Guyane + var xfactor = 14.877907532954; + var xoffset = 811.95256630287; + var x = (lon * xfactor) + xoffset; + + var yfactor = -13.494388491278; + var yoffset = 512.14159; + var y = (lat * yfactor) + yoffset; + } else if (lat < -20.713731 && lat > -21.587212 && lon > 54.879227 && lon < 56.109695) { + // La Reunion + var xfactor = 81.213304068446; + var xoffset = -4482.39787; + var x = (lon * xfactor) + xoffset; + + var yfactor = -78.260903254801; + var yoffset = -1124.8169; + var y = (lat * yfactor) + yoffset; + } else if (lat < -12.504962 && lat > -13.134316 && lon > 44.806137 && lon < 45.5793) { + // Mayotte + var xfactor = 193.03305111901; + var xoffset = -8691.6961; + var x = (lon * xfactor) + xoffset; + + var yfactor = -180.02792269821; + var yoffset = -1714.16093; + var y = (lat * yfactor) + yoffset; + } else { + var xfactor = 45.48385; + var xoffset = 264.2620; + var x = (lon * xfactor) + xoffset; + + var yfactor = -65.97284; + var yoffset = 3371.10748; + var y = (lat * yfactor) + yoffset; + } + return {x : x, y : y}; + }, + elems : { + "region-53" : "m 119.5,146.69 c -2.18,0.97 -4.29,2.09 -5.31,4.31 -0.95,0.92 1.17,-5.13 -1.44,-3.44 -1.04,2.53 -4.55,0.8 -6.22,2.69 -2.17,3.05 -3.41,-2.38 -6.09,-0.78 -1.84,0.33 -1.1,2.47 -3.03,2.88 -0.93,1.49 3.49,3.66 0.09,3.84 -0.99,0.94 1.04,4.8 -1.59,3.13 -1.84,1.15 -0.66,-0.87 -2.47,-0.84 -2.05,-0.25 -3.75,-1.52 -5.91,-1.38 -3.15,-1.06 -2.04,4.36 -3.09,5.41 -1.21,-0.52 -1.95,-1.73 -2.19,-2.81 -1.19,0.54 -2.06,1.99 -2.28,-0.03 -0.68,-1.05 -0.42,-2.7 -0.91,-3.59 -1.58,0.96 -3.5,1.64 -4.16,3.31 -1.54,-1.47 -4.05,-0.61 -5.72,0.28 -1.47,0.32 -0.49,2.11 -0.47,1.94 -1.6,-0.37 -3.55,0.35 -4.66,0.72 1.4,-2.77 -2.51,-2.89 -3.97,-1.38 -0.64,0.11 -2,0.43 -1.03,1.28 -2.04,0.5 -3.81,0.84 -5.84,0.44 -2.03,0.42 1.52,3.32 -1.31,2.25 -2.56,-1.01 -1.41,1.5 -0.75,2.41 -1.28,-1.21 -3.95,-1.38 -5.34,-0.06 -1.98,0.41 -3.19,2.69 -3.28,4.59 0.74,1.03 1.43,1.8 -0.13,2.56 -1.57,2.24 1.6,4.38 -0.22,6.47 0.53,2.34 3.91,1.86 4.59,0.09 2.27,0.52 4.46,1.23 6.56,-0.44 2.6,-1.34 5.43,-2.15 8.22,-2.97 0.92,-0.31 4.09,-1.68 1.88,-0.22 -2.02,1.28 -5.2,1.76 -5.81,4.44 -0.04,1.77 1.96,-0.55 2.59,1.09 1.06,-1.01 2.4,-1.7 3.81,-1.44 1.47,-1.28 1.28,0.04 0.13,0.69 -1.8,1.75 1.83,1.25 2.72,1.94 0.36,-0.17 1.77,0.85 1.97,0.78 -1.65,0.15 -3.08,1.32 -4.38,0 -2.31,0.21 -4.61,1.9 -6.69,-0.09 -1.48,0.7 -3.23,0.53 -4.59,0.16 -0.84,-0.95 1.43,-3.75 -0.97,-2.47 -1.64,0.71 0.55,4.28 -2.09,3.09 -1.86,1.31 1.59,2.52 2.69,1.97 0.19,1.21 -0.97,2.21 -0.03,3.56 0.11,1.13 -0.37,2.81 1.06,1.28 1.1,-1.67 1.85,-4.89 4.5,-3.38 1.97,1.62 4.98,1.12 6,3.59 1.13,1.38 1.68,5.94 -1.13,5.16 -2.19,-1.24 -4.56,0.13 -6.78,0.53 -3.6,0.94 -7.3,1.41 -10.97,2 -1.02,2.79 2.2,2.3 3.94,2.69 1.57,0.58 2.72,2.13 4.28,0.44 2.87,1.58 5.45,3.83 6.97,6.78 0.75,1.87 2.57,4.36 0.56,6 -0.49,2.41 3.46,1.3 4.97,1.91 1.77,0.5 6.29,-1.55 3.63,-3.09 -1.14,-1.39 0.15,-3.24 1,-1.09 2.15,0.54 2.05,-1.76 0.84,-2.78 -0.21,-2.37 1.08,2.24 2.5,2.06 1.3,-0.04 1.91,1.21 3.25,0.75 2.3,0.96 0.55,-4.29 3.09,-2.06 2.11,1.57 2.69,4.21 4.56,6 1.48,0.03 3.55,0.98 5.03,-0.31 1.53,-0.27 2.74,1.8 4.56,1.56 7.1,1.87 6.22,-1.53 5.28,0.34 0.76,1.87 1.76,4.55 4,4.84 1.75,0.33 3.97,-0.88 2.47,-2.28 1.59,0.45 3.33,-2.79 4.09,-2.38 -0.13,1.59 -3.63,3.33 -2.06,4.22 2.47,-0.22 3.68,4.17 5.75,3.22 -0.25,-2.41 3.74,-3.2 1.31,-5.38 0.07,-0.51 1.48,0.54 1.97,-0.28 -0.65,1.5 2.24,1.64 0.59,3.25 -2.17,0.5 -5.09,2.65 -2.59,4.88 2.69,1.08 0.71,4.49 1.41,6.69 -0.22,1.75 3.13,1.9 1.44,0.16 -0.99,-0.96 -1.05,-6.52 1,-4.22 -0.06,1.32 4.37,0.76 3.56,-1.19 0.28,-0.25 1.24,3.02 1.38,0.81 0.45,1.07 3.39,2.69 1.94,0.66 -0.85,-1.47 -0.64,-3.47 -1.09,-4.88 1.67,1.06 0.92,3.22 2.78,3.75 1.19,1.24 2.51,-1.47 3.25,-1.75 1.74,0.54 4.19,-2.37 4.41,0.28 -1.13,0.56 2.41,2.03 2.03,0.22 -0.01,-1.02 0.07,-1.73 0.66,-0.31 -0.1,1.85 -1.62,4.06 -2.97,4.91 -2.01,-1.25 -3.92,0.53 -5.75,-1.09 -2.41,-0.75 -1.22,1.48 0.28,1.88 1.28,1.49 2.28,4 4.72,2.34 1.58,-1.19 4.64,1.01 4.91,-1.53 0.94,0.16 2.07,0.05 1.56,-1.03 1.32,-0.16 3,-0.7 1.13,0.69 0.65,1.62 3.99,-0.93 5.56,0.44 1.17,1.48 3.84,0.65 4.78,1.28 -2.04,0.45 -6.32,-0.66 -5.19,2.78 1.29,2.36 2.69,-3.37 4.06,-0.44 1.93,0.09 4.5,0.48 4.41,-2.28 0.26,-2.08 2.41,-0.85 3.03,-0.28 1.19,-0.72 2.59,-0.89 3.09,0.41 1.27,-0.55 0.9,-2.95 2.88,-2.59 0.95,-1.62 0.37,-3.71 0.84,-5.49 0.78,-5.61 -4.02,0.63 3.1,-3.58 1.4,-0.12 2.45,-2.65 2.97,-0.28 1.34,-1.32 3.48,-1.27 5,-2.28 1.96,0.36 3.9,0.32 5.81,0.38 2.01,-0.47 4.26,-1.08 4.47,-3.59 1.78,-2.07 5.04,-1.86 7.03,-3.38 -1.35,-2.84 2.64,-1.48 4,-1.03 0.91,1.88 2.98,2.02 4.75,2.59 2.4,1.02 2.01,-2.44 2.91,-3.78 -0.25,-1.23 1.51,-1.54 1.13,-3.09 1.75,-1.44 0.62,-4.34 2.53,-5.69 1.37,-2.06 5.65,0.75 5.31,-2.94 -0.57,-1.85 -0.31,-3.81 -1.41,-5.47 -0.19,-2.53 -1.34,-4.78 -1.47,-7.31 -0.32,-1.92 -1.38,-4.44 0.53,-5.94 1.68,-1.62 0.44,-4.09 0.5,-6.03 -1.88,-2.34 0.48,-5.06 -0.88,-7.47 -1.44,-1.4 -3.62,-0.63 -5.25,-1.78 -1.79,-0.97 -3.67,-0.49 -4.03,1.72 -2.41,0.32 -3.01,3.67 -5.59,3.19 -1.6,-0.55 -2.12,-2.02 -3.88,-2.34 -1.66,-2.38 -1.57,-5.06 -2.81,-7.53 -0.67,-1.47 -1.98,-2.35 -3.31,-0.84 -2.14,1.06 -4.77,0.58 -7.09,1 -1.98,0.31 -4.48,-1.04 -4.06,-3.28 0.37,-0.95 1.78,-2.35 0.56,-3.25 -1.79,1.11 -3.53,0.49 -5.19,1.22 -1.33,0.27 -1.62,2.1 -2.81,2.91 0.05,2.01 1.94,3.28 3.13,4.44 -1.9,1.4 1.28,2.2 0.34,3.34 -2.2,2.26 -0.47,-3.02 -3.16,-2.09 -1.23,2.3 -1.13,-1.92 -3.16,-0.97 -0.98,-0.96 -3.18,-4.55 -3.47,-1.25 -0.31,1.86 -1.31,-1.15 -2.13,0.75 -0.55,-1.37 -1.29,-3.44 -2.13,-4.22 -1.05,0.87 -3.98,2.86 -2.31,0.19 1.61,-1.33 -0.19,-4.16 -1.41,-1.78 -1.59,0.73 -2.87,2.56 -4.5,1.06 -0.75,-0.13 -2.87,0.55 -1.22,1.19 -1.01,2 -3.58,2.06 -4.94,3.59 -1.37,1.74 -2.79,3.54 -4.88,3.31 0.31,3.1 -2.72,0.01 -2.03,-1.5 -2.07,-1.61 -5.2,-2.76 -4.5,-6.06 -1.5,-2.13 -3.95,-3.36 -5.38,-5.66 0.92,-3.22 -2.95,-1.86 -4.25,-3.5 -0.56,-0.74 2.52,-2.63 -0.09,-2.81 -2.8,-0.54 -2.29,3.78 -4,4.19 1.22,-1.79 2.14,-3.95 1.69,-6.22 10e-4,-0.43 -0.03,-0.98 -0.5,-1.16 z", + "region-52" : "m 250.44,167.06 c -1.48,0.64 0.52,2.23 -1.16,2.94 -0.62,1.58 -2.9,-1.24 -3.44,1.03 -1.11,2.61 -2.89,-1.23 -4.88,-0.63 -1.86,0.66 -3.73,0.55 -4.91,2.47 -1.67,0.11 -2.98,1.41 -4.56,1.69 -0,-0.93 -0.73,-2.83 -1.72,-1.31 -1.02,-0.25 -2.56,-0.06 -1.38,1.13 -0.7,1.44 -2.8,1.17 -2.97,-0.5 -0.93,-0.24 -1.59,0.59 -1.84,-0.91 -0.54,-2.95 -3.74,-0.29 -4.78,-2.56 -1.76,-0.88 -2.04,2.67 -4.06,1.19 -0.83,-1.53 -3.41,-1.05 -2.44,0.88 0.79,1.99 -1.26,3.98 0.56,5.81 0.03,1.6 0.47,3.25 0.34,4.84 -1.21,1.42 -2.79,3.36 -1.75,5.31 0.7,2.08 0.5,4.36 1.34,6.41 0.4,1.57 0.16,3.51 1.53,4.66 -0.23,1.58 0.13,3.02 0.41,4.5 -0.72,2.52 -3.81,0.32 -4.94,1.81 -1.68,0.68 -1.55,2.84 -2,4.41 -1.1,1.4 -0.69,2.98 -2.06,4.03 -0.81,2.4 -0.14,2.65 -0.66,2.94 -0.65,0.74 -0.38,1.51 -0.98,2.11 -1.77,-1.05 -3.44,-0.63 -5.05,-1.86 -1.28,-1.9 -2.98,-1.97 -5.09,-2.16 0.99,2.76 -2.34,2.74 -4.16,3.59 -2.66,0.16 -2.99,3.08 -4.31,4.44 -2.35,0.63 -4.46,0.91 -7,0.75 -2.15,-0.63 -4.33,0.65 -6.25,1.56 -1.04,1.56 -1.14,-2.44 -2.03,0.06 -1.72,0.93 -4.03,1.19 -4.59,3.22 0.34,1.88 -0.7,4.08 -0.41,6.22 -1.94,0.02 -2.39,1.77 -3.16,2.88 -1.2,-0.61 -1.59,-1.83 -3.09,-0.47 -1.16,0.3 -2.43,-2.11 -3.06,0.22 0.15,3.01 -3.49,2.71 -5.16,2 -2.61,-1.24 -2.16,4.49 0.53,3.28 1.03,1.2 -1.51,0.54 -1.88,1.31 -1.01,-2.17 -4.45,0.91 -4.53,1.78 1.63,1.36 3.42,2.64 4.66,4.41 0.14,3.2 -5.02,-1.23 -4.06,0.81 1.77,0.74 4.56,3.3 5.41,0.84 3.12,-0.51 5,4.8 7.97,1.47 2.43,-0.5 2.6,-4.21 5.47,-3.41 2.69,0.13 5.46,-1.42 7.72,0.94 2.25,0.07 4.06,1.3 5.34,3.09 0.91,1.4 2.77,2.15 4,2.66 -2.49,0.83 -3.91,-1.92 -6.16,-2.31 -1.91,-0.02 -1.26,-3.91 -3,-2 -2.34,-0.79 -4.4,-1.45 -6.75,-0.44 -2.98,-0.51 -4.67,2.23 -3.22,4.84 1.49,2.66 -2.12,3.14 -3.22,4.47 1.94,1.83 5.66,0.78 7.81,2.78 2.09,1.48 3.33,3.8 5.13,5.5 3.1,3.69 -1.32,-2.24 -2.94,-0.13 -1.04,2.02 -1.04,4.6 -3.56,5.41 -0.99,1.76 -2.23,3.3 -1.94,5.44 -0.02,2.5 2.58,3.68 4.25,5.06 1.48,1.04 2.72,2.47 3.19,4.25 1.93,0.88 2.89,2.4 3.97,4.13 1.35,1.69 2.62,3.67 2.78,5.78 0.54,1.46 0.07,4.78 1.69,4.94 0.11,-0.77 -0.23,-3.25 0.53,-1.25 0.82,1.68 2.7,2.29 4.06,3.41 1.2,0.95 3.56,-0.2 2.69,2.06 2,0.84 5.25,-0.66 6.78,1.66 0.84,1.71 0.97,5.4 3.81,3.72 2.06,-1.27 3.2,2.06 4.59,1.56 0.61,-0.76 2.33,3.52 3.44,2.53 -0.14,-2.55 2.6,-3.23 4.53,-2.44 0.96,-0.72 2.22,-0.12 2.91,-1.78 1.71,-1.01 4.1,-1.13 6,-1.81 -0.43,1.18 -1.66,4.21 0.88,3.34 1.55,-0.59 2.76,-0.38 3.69,-1.53 1.96,-0.54 1.67,1.96 3.78,2.09 1.38,0.67 2.23,-2.19 3.78,-0.59 1.88,-0.77 2.8,-3.17 5.13,-3.38 1.55,-1.43 -2.67,-3.79 -3.03,-1.72 -2.47,-0.7 0.97,-3.66 -0.06,-5.28 -0.62,-1.47 -1.62,-3.73 0.66,-4.06 -0.38,-1.92 -0.88,-3.67 -0.78,-5.72 -0.4,-1.4 -2.26,-0.43 -1.13,-2.19 0.1,-1.5 -1.87,-2 -0.63,-3.56 -1.5,-1.8 -4.18,-4.05 -2.16,-6.5 -0.53,-1.57 -3.62,-1.66 -4.25,-3.81 -2.25,-1.31 0.41,-4.47 -2.78,-5.13 -0.94,-0.55 0.01,-0.98 -0.91,-1.69 0.93,-1.21 1.47,-1.08 2.26,-1.4 1.5,-0.57 2.53,-1.4 4,-0.34 1.92,0.34 3.87,-0.61 5.94,-0.19 1.85,-0.7 3.41,-2.43 2.94,-4.28 1.33,-1.58 3.84,-1.82 5.19,-0.47 2.04,0.28 2.19,-2.51 4.47,-1.56 2.07,-0.07 3.91,-1.32 6.06,-0.47 0.98,-0.69 4.56,-0.52 2.22,0.97 -1.16,1.22 1.28,1.45 1.94,1.66 1.06,-1.12 0.87,-3.69 3.13,-2.25 1.72,-0.1 -0.18,-2.92 1.53,-3.78 0.74,-1.38 1.73,-1.61 3.03,-1 0.6,-1.69 0.81,-4.03 1.09,-6 0.39,-2.25 1.51,-4.36 3.06,-5.84 0.04,-1.46 2.68,-2.26 0.69,-3.69 2.11,-1.35 0.62,-4.46 2.53,-6.06 1.44,-1.95 -1.95,-3.07 0.06,-4.81 1.39,-3.22 0.07,-3.16 1.1,-3.1 2.37,0.18 3.96,1.27 5.93,2.57 2.46,0.23 0.91,-2.42 0.06,-3.25 0.43,-2.12 2.06,-0.81 2.81,0.13 1.46,-0.48 1.8,-2.16 3.66,-2.03 1.24,-0.96 4.39,-0.87 4.25,-2.53 -2.08,-1.77 1.01,-3.58 2.34,-4.72 1.24,-0.44 2.28,-0.33 2.16,-1.91 1.51,-0.55 2.08,-2.63 3.22,-3.34 -0.56,-1.36 -1.11,-5.36 1.28,-4.28 1.16,1.48 -0.06,-2.45 1.66,-2.44 1.26,-1.13 -1.77,-3.23 0.09,-4.63 0.46,-1.77 -3.37,-1.8 -1.47,-3.91 1.34,0.27 2.45,-1.18 0.69,-1.66 1.71,-0.69 1.24,-3.36 3.56,-2.72 1.69,-1.55 -2.41,-1.71 -3.25,-2.47 -1.21,-1.93 -3.96,0.61 -4.84,-1.97 -1.01,-1.18 -1.91,-5 -3.88,-3.16 0.5,1.93 -2.54,0.03 -3.75,0.28 -1.39,-0.92 -2.78,-1.98 -2.78,-3.69 -2.14,0.23 -5.75,-0.97 -4.94,-3.72 -1.03,-2 0.43,-4.65 -1.47,-6.31 -0.97,-1 -2.34,-1.62 -3.72,-1.75 -1.82,0.73 -4.08,0.78 -5.25,2.59 -1.02,0.75 -2.36,0.73 -2.94,2.22 -1.69,-0.06 -1.5,3.19 -3.53,1.63 -1.68,-1.56 -1.6,0.2 -3.1,0.08 -0.03,-0.82 -0.32,-0.1 -0.12,-1.36 -0.24,-1.26 0.73,-4.38 -1.59,-2.94 -1.71,0.29 -3.1,-0.61 -3,-2.41 -0.79,-1.07 -0.57,-1.9 0.13,-2.75 -0.95,-1.08 -2.33,-2.44 -3.94,-2.47 z", + "region-25" : "m 173.28,90.22 c -0.1,-0.01 -0.2,0.01 -0.31,0.03 -2.07,1.53 -0.37,4.37 2,4.31 2.23,1.05 2.23,4.3 1.5,6.31 -2.49,1.68 -0.73,3.58 0.41,5.38 0.96,2.16 0.93,4.77 1.5,7.06 2.08,-0.34 2.6,2.06 4.31,3 0.39,-2.34 1.97,0.49 0.34,0.84 1.8,1.66 2.25,4.31 3.31,6.44 1.02,-0.52 2.93,-1.19 3.41,0.25 -3.06,-1.2 -2.53,3.85 -1.06,4.84 0.73,1.01 -2.29,2.18 -0.88,4 0.9,1.35 -0.83,3.99 1.22,4.78 -0.29,-1.98 3.58,-1.34 2.47,-0.94 -2.19,-0.32 -2.42,4.49 -0.94,5.53 -1.49,1.88 -0.81,4.79 -2.53,6.75 2.86,1.4 0.28,5.39 2.63,7.16 1.57,2.06 3.28,4.7 6.22,4.41 1.27,0.62 2.97,2.16 0.44,1.47 -2.01,-0.05 -3.98,1.29 -6.03,0.56 -1.76,-0.81 -2.47,0.59 -0.91,1.63 1.59,2.18 0.86,5.03 2.72,7.13 1.82,0.95 4.55,4.48 6.47,1.53 1.1,-1.94 3.71,-1.76 4.13,-4.25 2.92,-0.15 5.6,1.84 8.56,2.03 1.72,0.13 4.33,2.58 5.31,-0.25 1.6,-0.43 2.18,1.64 4.64,0.78 1.35,0.03 1.29,2.39 2.76,2.84 1.25,-0.81 1.25,2.88 2.91,0.85 -0.34,-1.52 0.41,-2.15 1.78,-1.59 1.44,-1.68 1.56,0.19 2.09,1.19 1.94,-0.76 4.31,-1.38 5.84,-3.09 1.96,-0.76 5.17,-1.36 7.31,0.56 0.86,-1.55 2.64,-2.22 3.84,-1.53 2.19,-0.69 -0.32,-3.61 2.41,-3.25 1.22,0.63 4.8,2.15 2.63,3.63 0.42,2.11 1.42,5 4.16,3.63 2.64,-0.54 -0.68,6.29 2.44,4 1.37,-0.32 3.43,2.21 3.94,-0.5 1.52,-1.02 2.55,-2.1 3.94,-2.88 0.13,-1.39 3.5,-1.72 5.06,-2.44 2.07,-0.26 4.59,1.13 5.28,3.13 -0.06,2.06 0.38,4.02 0.44,6.06 0.3,2.62 4.16,1.96 5.31,3.19 -0.15,2.4 3.74,4.17 5.78,2.94 2.1,-2.41 3.28,1.6 4.31,2.97 0.79,2.77 5.5,0.5 4.25,-1.69 -2.11,-1.04 0.14,-4.68 -2.47,-4.47 -0.11,-2.74 2.48,-3.47 4.63,-3.75 2.4,-0.8 4.73,-4.02 4.38,-5.88 -2.6,-1.75 2.03,-5.13 -1.28,-6.06 0.58,-2.87 -4.21,-1.68 -4.03,-4.59 -2.12,-0.59 0.3,-4.97 -3,-4.28 -0.97,-0.7 -0.32,-2.36 -2.09,-2.5 2.39,-1.14 1.58,-4.4 -0.72,-5.22 -1.46,-1.16 -4.51,-1.72 -4.59,-3.75 0.31,-1.19 -1.25,-2.23 -1.53,-3.09 -1.64,1.84 -3.89,0.06 -5.91,0.5 -1.87,-0.14 -3.8,-2.54 -2.31,-4.34 0.36,-0.64 0.58,0.08 1.19,-1.63 -0.17,-1.62 1.69,-3.89 -1.06,-4 -2.67,-0.46 -0.94,-3.18 0.38,-3.34 -1.98,-1.59 2.31,-4.07 -0.88,-4.56 -0.57,-1.85 0.6,-4.24 -2.09,-4.84 -1.63,-0.93 -0.88,-2.37 0.84,-2.38 1.89,-1.03 -0.49,-3.21 -1.69,-1.53 -1.75,1.03 0.44,-1.94 -1.28,-1.97 1.47,-2.14 -0.51,-4.56 -0.16,-6.97 -0.31,-0.85 -1.21,-0.51 -1.88,-0.5 -2.27,0.34 -4.7,0.99 -6.5,2.44 -1.26,1.74 -2.9,3.08 -4.88,3.94 -2.67,1.45 -5.6,2.57 -8.66,2.72 -1.57,0.68 -2.47,1.16 -3.78,-0.13 -2.28,-0.63 -4.34,-1.82 -6.47,-2.81 -2.03,-0.27 -4.08,-0.36 -6.09,-0.91 -1.82,0.2 -3.72,0.61 -5.59,0.16 -3.59,-0.37 -7.33,-0.44 -10.72,-1.81 -1.79,-1.87 -4.45,-1.13 -6.75,-1.16 -1.97,-0.42 -3.96,1.4 -3.34,3.41 0.03,1.19 -1.86,-1.57 -3.19,-1.13 1.82,-3.14 -1.03,-5.44 -2.84,-7.69 -1.07,-2.07 -3.58,-4.19 -2.53,-6.72 1.49,-0.46 1.59,-1.77 2.81,-2.53 0.64,-1.58 -0.91,-6.17 -3.88,-5.59 -2.22,-0.46 -4.6,-0.57 -6.75,0.28 -0.7,2.48 -3.39,2.48 -5.44,2.63 -3.16,0.33 -5.73,-2.16 -9.06,-2.06 -1.72,-0.12 -2.65,-2.59 -4.5,-1.56 -0.6,-0.28 -1.01,-1.03 -1.69,-1.09 z", + "region-54" : "m 262.06,259 c -1.83,1.36 -2.39,3.5 -2.09,5.47 -1.62,-0.38 -3.86,-0.7 -3.09,1.91 -0.6,1.04 -0.69,0.03 -1.63,0.25 -0.87,-0.96 -2.95,-0.24 -1.19,-1.94 0.94,-0.85 -0.02,-1.14 -0.78,-1.16 -1.9,1.4 -4.41,-0.8 -6.38,0.88 -1.77,0.1 -3.38,-0.03 -4.53,1.59 -1.1,-0.38 -2.37,0.66 -3.13,0.44 0.43,-0.68 1.31,-1.97 -0.38,-1.34 -1.39,0.15 -3.84,1.4 -2.47,3.03 -1.35,1.52 -2.84,3.5 -5.19,2.53 -2.04,1.17 -4.12,-0.02 -6.25,-0.16 -1,1.07 -5.15,1.37 -3.16,3.19 0.99,1.24 3.17,1.93 1.88,3.78 0.61,2.43 2.79,3.98 5.03,4.94 0.97,0.91 -2.04,3.97 0.75,4.66 0.24,1.6 2.44,2.55 1.41,4.22 0.87,0.83 1.52,1.78 0.84,2.78 2.6,1.36 0.57,4.61 2.16,6.69 -0.35,1.33 -2.77,1.22 -1.25,3.06 1.15,1.77 0.53,3.41 -0.38,5.16 -0.03,1.27 0.81,2.02 1.28,0.5 1.8,0.1 4.51,2.12 1.81,3.38 -2.52,0.17 -3.25,4.04 -6.13,2.63 -0.61,0.86 -1.5,0.87 -2.16,1.66 -0.15,-0.66 -0.54,-1.26 -1.44,-1.63 -1.04,-0.75 -2.84,-2.01 -3.28,0.09 -1.72,-0.29 -6.44,1.16 -4,-2.06 0.3,-0.52 -0.12,-1.17 -0.75,-0.88 -1.84,1.26 -4.74,0.41 -5.81,2.91 -3.26,0.02 0.77,5.14 -3.06,5.47 -1.82,1.05 -3.7,4.18 -2.19,5.84 3.16,-0.44 2.83,3.25 4.66,4.75 0.18,1.52 3.73,5.28 0.16,5.06 -2.63,-0.06 1.74,2.73 0.25,4.13 1.31,1.55 0.24,3.46 -1.38,3.28 -0.47,1.76 -2.35,1.76 -1.16,3.84 0.65,3.56 3.83,5.46 6.34,7.59 -3.27,-0.53 -4.87,-4.06 -7.22,-5.25 -3.39,-0.91 -3.86,2.38 -3.84,4.88 -0.67,3.03 2.89,0.24 3.72,2.81 2.22,1.16 4.24,2.77 6.34,4.09 1.78,2.01 2.91,4.4 5.78,5.19 3.78,3.01 6.99,7.11 7.78,12 0.56,3.54 5.83,1.95 6.97,1.47 0.01,4.14 4.06,2.04 6.41,3.25 2.17,2.13 0.32,5.42 2.06,7.81 0.55,1.04 2.17,-1.22 3.19,0.59 2.59,1.32 4.25,4.44 7.59,4.28 1.79,-0.22 2.74,-3.46 4.41,-0.78 1.6,0.17 0.6,-2.97 2.56,-3.41 -0.86,-1.27 -0.11,-1.48 0.29,-2.89 0.46,0.7 0.68,-1.05 1.55,-0.77 1.12,-1.93 3.28,-0.2 4.75,-0.25 1.32,-1.28 1.61,-3.13 3.19,-3.94 0.74,-1.56 3.64,-1.09 2.59,-3.53 -0.91,-1.87 -0.76,-4.09 0.22,-5.91 0.83,-1.03 1.82,-1.26 1.72,-2.66 2.14,0.73 3.02,-3.1 5.38,-2.09 0.34,-1.94 2.4,-3.25 3.38,-4.41 1.34,-1.83 -0.88,-4.57 1.38,-5.63 2.01,1.43 2.17,-1.86 3.34,-3 1.3,-1.48 1.93,-3.57 3.66,-4.59 2.06,-0.54 0.26,-4.35 3.13,-3.19 1.8,1.51 1.2,-2.15 2.63,-2.69 0.9,-1.93 -0.04,-3.83 0.5,-5.66 1.77,0.89 4.2,0.31 5.03,-1.66 0.94,-1.41 -0.51,-4.75 -2.38,-4.5 -1.22,0.39 -3.6,-2.28 -2.44,-3.84 -0.52,-2.27 -0.81,-2.05 0.4,-4.47 -0.69,-1.69 -3.03,-5.26 0.35,-5.56 0.85,-1.96 2.73,-3.74 4.97,-3.81 3.08,1.68 3.11,-2.44 4.09,-4.25 1.66,-1.63 4.57,1.31 5.22,-1.78 1.49,-0.33 3.43,-2.93 1.13,-3.88 -2.84,-0.91 -0.57,-4.31 -2.72,-5.72 -1.55,-1.59 -4.62,0.57 -4.75,-2.44 -1.74,-0.37 -3.68,-1.15 -4.75,-2.78 -1.09,-1.83 0.1,-4.21 0.5,-6.06 -0.12,-2.37 -2.82,-3.37 -4.03,-5.16 -1.17,-2.49 -1.79,-5.27 -4.5,-6.69 -1.72,-1.44 -1.28,-3.75 -1.78,-5.69 -1.15,-1.45 -3.05,-1.62 -4.16,-2.97 -3.22,-0.24 0.18,1.98 -0.31,3.25 -2.34,0.38 -5.37,-0.55 -7.13,1.63 -1.89,-0.2 -3.78,-1.28 -5.44,-0.03 -1.93,-1.75 -0.88,-4.6 -0.81,-6.91 0.33,-1.71 -2.65,0.44 -2.06,-1.69 -0.96,-0.9 -3.56,1.74 -3.84,-0.44 1.52,-1.61 0.24,-3.14 -1.44,-2.16 -0.41,-1.64 -1.84,-1.37 -2.91,-1.47 -0.25,-1.89 -1.73,-2.4 -3.03,-3.22 z m -68.97,61 c -1.76,0.06 -3.89,0.95 -2.03,2.69 2.45,1.55 5.98,0.45 8.22,3 1.27,1.33 6.26,1.63 3.41,-0.91 -1.66,-2.42 -5.97,-1.19 -6.94,-3.13 -0.71,1.19 -4.32,0.67 -3,-0.41 1.53,0.61 1.73,-1.01 0.34,-1.25 z m 4.28,13.72 c -0.39,1.9 1.91,3.6 0.91,5.69 1.13,2.53 4.43,3.24 5.47,5.94 0.77,1.92 1.8,6.42 3.22,2.22 1.27,-2.59 -0.1,-4.72 -1.84,-6.47 0.15,-2.4 -0.83,-4.49 -3.47,-4.56 -1.38,-0.97 -2.49,-2.6 -4.28,-2.81 z", + "region-72" : "m 289.94,356.31 -0.34,0.38 c -1.25,1.56 -2.08,5.44 -4.38,4 -1.12,2.06 0.64,6.19 -2.78,7.03 -0.72,1.93 -1.6,3.14 -3.66,3.22 -1.43,0.82 -1.88,2.66 -3.44,2 1.01,1.66 -2.35,1.6 -2.03,3.69 -1.23,2.3 1.52,4.81 -0.19,6.81 -2.94,0.32 -3.39,4.4 -6.03,5.34 -2.31,-2.11 -5.97,0.65 -6.22,3.19 1.69,0.92 -1.24,1.84 -0.78,2.83 -0.45,0.74 0.74,0.18 -1.44,1.3 -2.38,-2.83 -4.15,2.64 -6.97,0.16 -2.07,-0.72 -3.49,-3.22 -5,-3.41 -0.47,-1.38 -2.8,-1.36 -2.84,0.28 -2.21,-2.81 -0.46,-6.54 -2.5,-9 -2.12,-1.28 -6.83,0.96 -6.34,-3.09 -0.56,-0.81 -2.47,1.64 -3.91,0.5 -4.02,-1.34 -1.32,4.42 -1.47,6.59 0.58,4.02 0.28,9.09 3.91,11.78 1.46,0.51 5.55,1.77 4.44,3.09 -0.84,-1.43 -5.07,-1.89 -2.38,0.25 1.43,1.74 0.5,4.83 0.75,7.16 -1.4,-2.45 0.48,-6.18 -2.53,-7.81 -3.29,-2.45 -5.45,-6.24 -5.75,-10.34 -0.44,-5.63 -1.58,-11.97 -6.41,-15.56 -1.63,-2.01 -3.21,-4.12 -5.81,-4.88 -2.26,-1.42 -3.52,-3.71 -3.19,-6.16 l -0.44,-0.09 c -2.25,1.99 -3.57,5.08 -3.5,8.13 -0.48,6.34 -0.21,12.81 -1.81,19.03 -1.2,6.71 -1.29,13.54 -2.25,20.28 -0.55,4.81 -1.06,9.63 -1.28,14.47 1.23,-0.88 0.56,-4.8 2.59,-6.25 0.81,-2.73 2.87,-3.42 4.53,-0.78 1.78,1.59 5.08,5.73 0.47,5.78 -1.94,0.32 -4.77,-1.94 -5.13,1.38 0.08,2.79 -3.05,4.54 -1.88,7.41 -0.13,1.32 0.11,2.59 0.97,2.72 -2.19,2.2 -1.34,5.96 -2.16,8.81 -1.09,9.88 -3.29,19.6 -4.84,29.41 -1.98,7.87 -2.82,16 -5.06,23.81 -1.75,2.09 2.49,-2.46 -2.31,2.69 -1.68,1.56 -1.95,4.34 -4.28,5.25 -1.69,1.55 -7.66,0.47 -5.66,3.84 1.87,0.86 1.46,4.4 4.19,2.53 2.6,-0.58 2.29,2.17 3.09,3.53 2.76,1.38 2.09,-3.66 4.78,-2 1.78,1.78 5.84,-0.03 5.91,3.25 0.24,2.43 -0.82,4.75 -1.66,6.97 -1.29,1.67 -3.57,3.42 -1.06,5.31 1.51,1.31 5.28,2.06 4.59,-1.16 -0.71,-1.55 2.39,-4.33 2.69,-2.53 -2.06,1.66 0.02,4.03 2.16,3.69 2.46,-0.03 4.03,2.65 6.25,2.53 1.72,1.34 4.04,1.08 5.38,2.88 1.73,1.93 4.53,0.85 6.75,1.66 1.99,-0.16 4.83,-2.3 5.06,1.22 -0.81,2.07 0.72,3.45 2.66,3.66 1.79,1.33 2.97,3.13 4.19,4.84 0.76,1.05 1.54,2.13 2.47,0.38 1.16,-3.48 4.7,1.81 7,-0.81 1.19,-1.54 3.57,-1.59 2.63,-4.13 -1.03,-1.8 -0.58,-3.28 1.28,-4.13 -0.06,-1.84 -1,-4.36 1,-5.5 -0.26,-2.35 3.42,-0.39 2.38,-2.97 -0.31,-2.04 0.52,-3.45 2.38,-4.53 0.43,-1.68 1.01,-3.08 2.84,-2.84 0.96,-1.29 0.1,-2.98 1.75,-3.53 1.05,-1.34 1.17,-3.03 0.09,-4.31 -0.45,-2.45 2.49,-1.8 2.94,-3.19 -2.11,-1.84 0.02,-4.67 -1.59,-6.53 -0.58,1.27 -2.64,3.58 -2.38,0.72 -1.29,-2.3 2.86,-1.98 0.97,-3.94 0.18,-1.68 -0.42,-3.21 -2.28,-3.81 0.91,-3.32 -2.92,-1.3 -3.97,-2.97 -1.33,0.53 -3.1,0.49 -3.52,0.5 0.99,-1.03 0.2,-2.18 -1.07,-2.15 -0.4,-1.67 2.47,-2.42 1.25,-4.29 -0.26,-2.14 3.64,-3.06 1.81,-4.72 0.02,-1.67 -1.1,-3.6 0.81,-4.38 -0.22,-1.33 -0.28,-2.98 -0.09,-3.94 -1.71,-0.35 -2.36,-1.85 -0.34,-2.34 1.14,-1.91 3.98,-1.35 4.91,-1.5 1.19,-0.68 2.41,-2.18 3.22,-2.59 1.87,0.5 1.3,2.46 1.03,3.38 1.52,2.87 4.03,1.16 3,-1.5 0.39,-1.08 0.27,-2.2 0.22,-3.31 0.41,1.66 2.29,0.5 3.31,0.13 0.07,1.08 1.01,2.13 1.44,0.5 0.34,-1.77 2.7,-2.85 3.78,-1.09 1.32,0.59 2.76,1.17 3.5,-0.31 2.29,0.11 4.8,-0.64 5.97,-2.66 1.88,-1.17 4.15,0.59 5.63,-1.44 2.19,-1.4 2.87,4.16 4.66,2.53 0.43,-1.77 3.28,-1.54 2.94,-3.81 0.32,-1.72 2.96,-1.12 2.06,-3.19 1.14,-1.2 3.77,2.23 4.38,-0.28 1.24,-1.76 -3.17,-1.95 -0.81,-3.09 1.93,0.3 2.46,-1.56 2.53,-3.13 0.05,-1.54 1.51,-2.58 -0.28,-3.69 -1.98,0.07 -2.65,-1.75 -1.25,-3.06 -0.66,-1.59 0.89,-4.04 2.16,-1.84 1.2,1.74 3.19,-0.62 4.88,0.22 1.47,-0.35 0.02,-2.37 0.66,-3.41 -0.74,-1.17 -2.31,-1.84 -1.81,-3.5 -0.48,-1.52 -0.18,-3.08 -1.47,-4.38 -0.18,-1.56 2.06,0.03 2.59,-1.47 0.98,-1.03 1.57,-1.58 2.28,-1.19 0.06,-2.42 3.42,-3.32 2.47,-6.13 2,-1.12 4.37,-1.45 5.84,-3.31 1.66,-0.91 2.36,-2.68 1,-4.38 -0.12,-2.03 4.05,-0.97 3,-3.63 1.33,-0.95 3.2,-1.67 3.34,-3.25 -2.18,-1.13 1.1,-2.93 -0.59,-4.41 -0.62,-1.56 -0.83,-3.43 0.72,-4.22 -0.86,-1.85 -2.53,-3.95 -2.31,-5.84 2.69,-1.69 -2.98,-1.93 -4.16,-2.16 -1.37,-0.3 -2.36,-1.78 -0.66,-2.38 0.85,-2.22 -4.19,-0.98 -1.81,-3.19 1.6,-0.51 1.96,-2.22 -0.06,-2.44 -1.52,-0.87 0.21,-2.7 -0.03,-4.03 1.56,-0.49 2.9,-2.44 3.59,-3.75 -0.89,-0.68 -4.19,-1.16 -2.03,-2.72 1.63,-1.41 -2.41,-0.91 -2.47,-2.47 -2.02,0.61 -2.38,-1.49 -4.38,-1.13 -1.27,-1.52 3.38,-3.7 0.06,-4.47 -2.98,1.52 -4.08,-2 -4.81,-4.22 -2.35,-1.05 -5.42,1.51 -6.94,-0.94 -0.7,1.49 -2.13,4.21 -3.44,1.81 -3.87,-0.26 0.41,-4.54 -2.06,-5.84 -1.62,-1.4 -4.46,0.29 -5.78,-1.44 z", + "region-73" : "m 331.44,399.97 c -1.78,0.39 -2.93,2.06 -4.78,2.22 -1.23,1.62 0.08,3.58 0.59,5.22 -0.62,1.03 -1.19,1.98 0,3.09 0.18,1.1 -1.75,1.01 -1.91,2.28 -1.5,0.17 -1.62,1.3 -1.78,2.63 -1.56,-0.12 -3.75,1.63 -1.81,2.97 0.48,1.24 -1.14,2.21 -1.53,3.19 -1.79,0.31 -2.39,2.67 -4.56,2.38 -2.48,0.13 -0.93,2.86 -2.16,3.97 -1.67,0.34 -1.51,2.49 -2.09,3.19 -1.96,-0.06 -3.04,2.91 -4.63,1.81 0.3,1.56 1.42,2.97 1.28,4.72 0.12,1.32 0.69,2.67 1.84,3.41 -0.23,1.58 0.34,3.51 2.06,1.94 -0.52,1.94 -4.36,2 -4.78,1.84 -1.31,0.31 -3.13,1.71 -3.41,-0.56 -1.85,-1.31 -1.55,1.91 -1.84,2.97 -1.51,2.17 2.33,1.52 2.56,3.22 0.14,1.45 -1.01,2.72 -0.91,4.22 -0.18,1.5 -1.62,1.79 -2.72,1.91 -0.4,1.36 2.31,1.1 1.28,2.88 -0.69,2.88 -3.06,-1.07 -4.31,0.63 0.27,1.88 -2.73,1.72 -2.47,3.84 0.52,1.2 -3.87,3.7 -4.14,3.52 -0.79,-1.18 -1.54,-3.12 -2.98,-3.55 -1.29,2.88 -5.51,-0.05 -6.5,2.81 -2.1,1.77 -4.75,1.23 -6.78,2.72 -2.08,0.01 -3.66,-3.12 -5.28,-0.69 -0.65,1.86 -1.85,2.55 -2.44,0.63 -2.23,0.44 -3.97,2.37 -2.44,4.63 0.2,3.15 -4.15,0.85 -4.06,-0.78 1.98,-1.15 -1.29,-3.91 -1.88,-1.47 -1.36,0.88 -2.15,2.44 -3.75,1.44 -1.57,0.41 -4.15,1.3 -4.19,2.91 0.97,-0.06 2.75,1.66 1.16,2.06 0.79,1.55 0.47,3.46 -0.69,4.13 -0.33,1.98 2.18,4.35 -0.41,5.44 -1.98,1.42 0.4,4.43 -2.41,5.47 -0.36,1.6 2.13,0.81 1.47,2.47 1.11,1.33 3.17,-0.5 4.56,0.81 3.53,-0.65 2.56,2.45 3.72,2.69 1.77,0.93 0.4,3.31 1.84,4.38 0.55,1.29 -2.76,1.06 -1.72,3.06 0.25,0.94 0.47,1.81 1.19,0.53 0.58,-2.18 2.66,-0.96 1.94,0.88 -0.78,1.76 0.67,3.33 0.88,4.81 -1.18,0.79 -3.45,1.09 -2.97,3.25 1.84,0.97 0.48,2.72 -0.19,4.03 -1.24,0.64 -1.12,1.94 -1.22,3.13 -0.94,1.24 -2.53,-0.25 -2.72,1.72 0.07,2.18 -3.14,2.41 -2.66,4.5 -0.68,1.38 0.98,2.94 -1.25,3.19 -1.81,-0.68 -0.81,2.21 -2.5,2.44 -0.96,1.75 1.59,4.41 -1.16,5.25 -1.17,1.23 0.37,3 0.22,4.56 0.8,1.85 3.22,1.79 4.31,3.38 0.8,1.59 2.24,-0.1 3.03,0.34 -0.62,1.62 1.47,2.54 1.69,4.03 0.86,0.9 2.3,1.13 2.69,2.41 1.83,1.45 3.76,-0.36 5.63,-0.56 1.93,-0.42 3.77,-1.29 5.69,-1.72 1.44,0.78 3.78,0.96 3.81,3.06 2.26,2.18 2.07,-2.6 4.38,-2 1.13,1.17 3.67,3.04 4.84,0.91 0,-0.09 0.01,-0.14 0,-0.22 1.66,1.72 4.89,-0.05 7.28,0.72 3.26,1.27 1.96,-3.09 1.03,-4.38 0.62,-1.99 -0.27,-6.24 2.88,-6.16 1.7,0.86 4.25,1.67 5.75,1.13 2.43,0.47 -6.68,-2.26 2.69,2.09 1.28,1.78 3.02,-0.35 4.47,1.25 1.71,0.48 3.77,0.11 5.28,1.22 1.52,0.96 0.79,4.16 3.22,3.75 1.81,-0.79 3.73,-0.26 5.63,-0.22 2.02,-0.71 2.59,1.65 3.84,2.53 1.12,1.34 1.04,3.24 2,4.59 1.28,1.48 2.36,-0.42 1.84,-1.72 0.69,-1.31 2.64,-0.57 3.97,-1.09 1.28,1.07 2.69,2.2 4.59,1.91 1.34,0.06 3.87,0.02 3.25,1.91 1.39,1.64 3.87,0.79 5.59,0.41 0.57,-1.18 1.04,-2.03 2.44,-1.44 2.19,-0.08 1.96,-2.41 3.34,-3.31 1.93,0.29 3.79,-0.92 5.78,-0.66 2.41,1.1 1.96,-2.39 0.13,-2.72 -1.56,-0.61 -2.09,-3.47 -3.94,-2.56 -1.44,1.17 -3.68,1.47 -5.16,0.19 -1.07,-0.5 -1.37,-1.29 -0.84,-2.25 -0.1,-1.78 -3.16,-1.91 -2.41,-3.56 0.61,-1.93 2.82,-1.16 4.25,-1.81 1.6,-0.65 1.67,-3.23 0.63,-4.41 -0.97,-0.41 -2.69,-1.29 -0.81,-2 2.76,-0.51 0.39,-3.41 1.31,-5 -0.68,-0.84 -2.9,-1.36 -1.25,-2.59 -0.05,-1.47 -0.57,-4.86 -2.63,-3.34 -0.79,0.58 -0.85,-2.15 -2.25,-1.41 -2.03,-0.09 -3.75,-1.13 -5.19,-2.44 -2.44,-0.46 0.31,-2.66 -1.41,-3.88 -1.53,-2.41 0.36,-2.48 0.41,-4.56 0.95,-0.61 0.19,-3.04 2.38,-2.38 3.88,1.33 0.46,-3.77 3.28,-4.97 0.71,-2.95 3.01,-0.1 2.94,1.59 0.84,-2.74 2.96,-1.33 4.81,-1.25 1.61,-1 0.87,-1.27 1.72,-1.16 0.99,1.3 1.91,3.3 3.94,1.97 1.54,-1.93 2.46,0.42 3.75,0.94 0.93,-1.18 0.32,-4.6 2.59,-4.31 1.41,0.67 3.34,0.92 4.75,2 1.78,0.44 3.29,-1.41 5.16,-0.91 1.54,0.64 3.33,1.48 4.91,0.41 1.22,-0.65 2.62,-2.15 3.16,-2.66 -0.33,-1.9 0.47,-4.11 -1.59,-5.38 -0.53,-1.92 -0.31,-3.93 0.59,-5.88 -0.09,-1.86 1.73,-0.33 2.84,-0.56 1.58,0.89 2.6,3.13 4.44,1.25 7.47,-3.19 5.08,-6.79 10.94,-4.25 2.15,-0.16 -0.17,-3.51 1.41,-4.88 -2.07,-2.25 0.27,-5.84 2.84,-3.47 2.56,1.39 6.38,-0.17 5.06,-3.28 1.23,-2.77 5.89,-0.36 5.28,-4.53 0.37,-2.38 6.06,-3.89 3.09,-6.44 -1.72,-1.06 -3.87,-0.95 -4.75,-2.59 -2,1.51 -3.18,-2.51 -0.38,-2.16 0.69,-1.75 0.95,-3.62 2.63,-4.69 -0.85,-3.72 -6.52,0.51 -7.06,-1.34 1.8,-2.6 -2.67,-2.63 -2.94,-4.34 -3.22,0.42 1.61,-3.78 -0.91,-5 -1.34,-2.93 1.78,-5.96 -0.75,-8.47 -2.48,-1.5 -1.86,-4.04 -1.69,-6.31 -1.66,-2.01 -3.31,-4.06 -5.13,-5.97 -2.19,-1.65 -1.11,-4.87 -2.22,-6.81 1.11,-1.31 0.68,-2.21 -1.06,-2.03 -1.82,-1.66 -0.62,-6.97 -4.41,-5.13 -3.08,2.23 0.69,-4.53 -2.69,-4.41 -2.14,1.63 -3.73,3.58 -5.5,5.09 -0.63,2.34 -1.06,4.47 -2.66,6.13 0.54,2.68 -1.95,3.69 -2.91,5.75 -0.72,3.27 -5.19,2.38 -7.34,1.69 -0.99,-2.01 -4.93,-0.47 -5.59,1.09 -1.77,1.5 -0.38,0.87 -2.13,0.13 -0.5,-1.43 1.01,-4.31 -1.52,-4.32 0.01,-1.34 1.13,-3.07 0.78,-4.75 2.27,-2.31 -1.49,-4.36 -2.44,-6.41 -1.64,-1.56 0.95,-3.19 -0.75,-4.47 0.04,-1.98 -1.5,-3.91 -3.63,-2.78 -1.3,0.58 -2.94,2.17 -3.41,-0.03 -1.69,-0.06 -2.56,2.18 -4.22,2.72 -0.83,0.81 -1.65,0.91 -2.34,0.28 -1.65,0.66 -1.8,-2.72 -3.47,-2.88 -0.92,-1.46 -2.12,-2.77 -3.53,-3.69 -1.38,-0.89 -3.01,0.06 -4.22,-0.31 -0.19,-0.27 -0.01,-0.7 -0.44,-0.56 z", + "region-91" : "m 415.44,405 c -1.15,1.06 -2.74,1.92 -4,2.63 -0.69,-0.64 -1.69,-0.79 -1.31,0.47 -1.53,0.76 -0.12,2.63 -1.88,3.19 -2.01,2.09 -2.23,-3.14 -4.09,-1.34 -1.31,1.13 -0.06,3.41 -1.69,4.16 -1.69,0.94 -1.26,2.84 -1.72,4.34 -0.97,1.48 0.22,3.28 -1.63,4.28 0.03,1.5 -1.96,3.13 -0.38,4.38 0.87,1.51 2.11,2.71 3.34,3.91 1.23,1.55 -0.59,3.54 0.25,5.22 1.19,0.89 2.58,1.88 2.81,3.5 -0.01,1.82 -0.64,3.51 -0.66,5.34 0.39,1.6 2.04,3.35 0.25,4.88 -0.7,0.91 0.02,1.97 0.78,0.94 0.68,0.58 0.48,2.1 2,1.88 1.21,0.4 2.29,1.44 1.19,2.63 0.66,2 3.45,-0.86 5.09,0.06 1.99,-0.31 1.2,2.35 2.99,2.61 1.32,3.93 1.53,-3.89 -2.64,0.71 -0.62,1.58 -0.36,3.76 -2.66,3.78 -0.55,1.53 1.6,1.9 2.22,1.31 0.87,2.49 4.92,1.11 5.56,4.16 -0.53,2.64 -5.31,3.38 -3.91,6.34 1.76,0.54 0.25,-0.92 -1.44,1.63 -1.75,0.05 -4.9,0.28 -4.13,3.06 0.95,2.61 -3.7,2.77 -5.44,1.78 -1.4,-1.16 -3.23,-1.06 -3,1.19 -0.18,1.32 1.22,2.9 -0.16,4.13 0.62,1.44 0.83,4.08 -1.5,2.91 -1.9,-1.31 -4.86,0.21 -4.97,2.34 -1.72,1.38 -4.21,1.09 -5.84,2.59 -2.33,1.39 -3.19,-2.96 -5.88,-1.81 -1.89,1.46 -1.49,4.44 -1.28,6.38 1.29,1.33 2.43,2.57 1.31,4.41 1.26,2.54 -3.84,3.1 -3.34,5.13 -1.15,-1.19 -3.34,-0.8 -4.78,-1.72 -2.41,-0.21 -4.21,2.13 -6.38,0.19 -1.15,-1.01 -2.84,-0.41 -3.88,-1.34 -2.13,0.57 -0.52,5.91 -3.13,3.75 -1.18,-2.85 -4.84,2.33 -5.84,-1.22 -0.72,-2.31 -2.45,1.37 -4.09,0.03 -1.54,-1.46 -2.34,0.39 -3.25,1.31 -0.23,-2.27 -2.22,-3.93 -3.16,-1.34 -0.87,0.24 -0.12,1.72 -1.22,2.06 0.19,1.45 0.77,3.36 -1.5,2.78 -1.58,-0.53 -2.15,0.65 -2.03,1.84 -1.91,1.64 -1.45,4.24 -0.22,6.19 -1.51,2.59 2.29,3.12 3.91,4.44 1.21,1.16 1.86,-1.13 2.63,0.28 0.85,0.87 1.08,1.72 2.47,1.06 2.01,0.75 2.1,4.05 1.22,5.03 1.15,0.71 2.39,1.6 1.5,3.22 0.51,1.05 0.44,2.72 0.88,3.41 -0.81,-0.18 -3.4,-0.4 -2.44,1.09 2.63,0.22 2.7,4.55 0.47,5.38 -1.52,0.14 -4.84,0.49 -3.84,2.72 1.13,0.78 3.35,2.2 1.94,3.69 1.87,2.17 4.6,1.89 6.78,0.47 1.87,0.67 3.2,2.93 4.91,4.19 0.34,0.39 0.23,1.54 -0.16,1.71 -0.99,0.41 -0.79,-0.53 -2.06,-0.05 -1.57,0.09 -3.05,0.46 -4.56,0.84 -1.73,-0.34 -1.73,2.75 -3.53,2.94 -1.28,-0.07 -2.45,0.32 -2.94,1.56 -1.36,0.64 -3.04,0.25 -4.34,1.16 -1.36,0.9 -1.71,2.73 -1.56,4.25 0.86,1.46 2.93,0.76 4.28,1.34 1.65,0.37 2.29,2.34 4.06,2.41 1.43,-0.11 2.32,0.89 2.38,2.25 0.19,1.48 0.68,3.18 2.19,3.81 1.13,0.44 2.45,0.21 3.5,-0.34 1.24,-0.79 1.71,-2.26 2.66,-3.31 1.39,-1.04 3.28,-0.07 4.75,-0.91 1.22,-0.79 2.49,-0.04 3.63,0.5 1.48,0.81 3,1.56 4.59,2.09 1.32,0.67 1.66,2.4 3.09,3 1.2,0.95 2.83,0.9 3.41,-0.69 1.34,-0.63 2.86,1.1 4.44,0.88 2.15,-0.12 -1.26,-2.72 0.69,-3.56 1.27,-0.56 2.54,-2.05 4.03,-1.25 1.72,0.59 2.72,-1.31 3.94,-2.13 1.15,-1.32 3.17,0.14 4.03,-1.41 0.83,-1.27 1.97,0.63 3.13,-0.16 2.01,-0.88 2.4,1.56 3.75,2.34 1.27,0.46 3.17,0.43 4.25,-0.38 -0.27,-1.45 -1.39,-2.71 -2.25,-3.91 -0.28,-1.72 -2.71,-1.85 -2.88,-3.63 -0.57,-2.26 -0.41,-4.65 -1,-6.91 -1.47,0.73 -1.9,-2.93 -0.31,-1.5 1.18,0.06 0.41,-2.1 0.75,-2.97 0.09,-1.49 0.11,-3.02 -0.31,-4.47 -0.95,-1.13 -3.85,-0.58 -3.44,-2.72 0.37,-0.79 0.15,-1.5 -0.34,-2 1.82,0.97 2.4,-1.32 2.84,-2.66 1.53,0.97 2.52,-0.67 1.16,-1.78 -1.63,-0.06 -2.17,-3.44 -0.28,-3.03 -1.3,1.16 0.14,3.3 0.81,1.09 0.3,-2.15 1.06,-4.18 1.75,-6.13 -1.37,-0.71 -2.48,-2.27 -1.53,-4.09 1.34,-0.99 2.06,0.84 0.72,1.34 0.45,2.19 2.18,0.9 2.38,-0.59 1.25,-2.32 3.42,-4.23 3.92,-6.8 1.24,-0.61 0.49,0.33 1.8,-0.76 1.74,-1.58 3.52,-3.11 5.56,-4.28 2.08,-1.06 5.08,1.35 5.97,-1.84 1.13,-1.74 2.55,-3.34 3.97,-4.84 1.92,-0.8 3.82,-1.55 5.34,-3.03 1.04,-0.77 4.25,-2.56 3.41,-3.19 -1.77,0.69 -2.88,2.98 -5.03,2.66 1.32,-1.08 3.93,-1.46 4.38,-3.59 0.26,-2.07 3.22,-1.88 3.78,-3.94 1.83,-0.89 3.8,-1.45 5.59,-2.44 1.64,-0.59 3.36,-1.3 4.81,-0.13 0.05,-0.76 -0.55,1.67 -0.09,2.28 2.02,1.25 0.61,4.53 2.94,5.5 2.92,2.1 1.98,-3.04 4.66,-2.88 1.75,-0.09 1.41,-1.81 1.59,-2.72 1.58,1.9 3.94,-1 5.06,-1.97 2.26,-0.22 2.56,-2.11 0.22,-2.34 -0.33,-2.07 2.01,-4.12 3.13,-5.5 1.84,-1.43 4.52,1.85 5.5,0.22 -1.01,-2.28 0.78,-4.15 1.44,-6.22 7.8e-4,-1.45 -0.24,-2.77 0.19,-4 -1.54,-1.58 2.66,-2.15 3.16,-3.78 1.09,-1.96 4.33,-2.35 4.06,-5.09 3.05,-0.25 -0.38,-2.8 -0.88,-4.22 -0.73,-1.79 -2.11,-2.02 -3.5,-2.47 -1.24,-1.93 0.7,-4.01 -0.09,-6.03 -0.11,-1.52 -0.56,-2.29 -1.94,-2.72 -0.09,-3.19 -3.04,-4.48 -5.5,-5.88 -0.85,-1.95 -5.4,-3.24 -4.56,0.22 -0.31,2.78 -4.11,0.64 -2.53,-1.5 -0.78,-2.43 -5.24,0.56 -5.03,2.59 -1.74,4.01 -4.07,-2.31 -6.63,-1.66 -0.17,-3.42 -6.06,1.94 -4.22,-2.25 0.89,-1.46 -1.23,-2.75 0.59,-3.78 -1.48,-1.1 -0.81,-3.1 -3,-3.5 -0.72,-0.11 -0.38,-1.61 -0.97,-3.91 -0.53,-1.76 -1.01,-3.64 -2.78,-4.28 -0.89,-1.53 -0.87,-3.26 -1.38,-4.88 -0.57,-1.51 -0.79,-3.12 -0.97,-4.63 0.86,-1.54 -2.63,-1.36 -1.38,-3.03 -0.77,0.01 -1.76,0.71 -1.69,-0.72 -1.09,-0.89 -1.88,-1.9 -2.41,-3.16 -0.97,-0.98 -4.72,1.23 -3.53,-1.13 0.36,-2.46 -4.24,-2.88 -3.41,-0.06 0.11,2.29 -2.55,0.74 -3.84,1.78 -1.38,2.1 -2.54,-0.84 -2.97,-2.16 -0.49,-1.59 -1.45,-3.11 -1.5,-4.81 0.52,-1.64 -1.5,-1.84 -2.16,-2.69 z", + "region-24" : "m 329.03,142.25 c -2.37,0.57 1.22,3.96 -1.47,4.66 -1.92,0.36 -4.9,2.34 -3.34,4.5 -0.05,2.87 -3.41,2.19 -5.41,2.66 -0.67,-1.12 -2.1,0.53 -3.09,-0.63 -1.43,0.4 -3.07,-2.56 -3.03,0.22 0.1,2.49 -3.8,-0.64 -3.88,2.19 -2.05,0.03 -3.85,1.15 -5.66,1.44 -2.16,-1.19 -1.85,2.14 -3.91,2.25 -1.02,0.93 0.19,3.18 0.09,4.13 1.27,1.02 1.45,3.18 3.56,3.09 1.58,0.76 1.01,2.47 2.66,3.09 -0.63,1.17 -0.32,2.65 -1.28,3.53 0.28,1.18 2.64,1.89 0.84,3 -0.7,2.66 -3.31,4.78 -6.03,5.03 -2.13,-0.37 -3.5,3.03 -1.19,3.56 -1.23,2.13 1.27,3.55 1.19,5.47 -2.6,1.83 1.89,3.04 3.25,3.41 1.88,1.2 -0.06,1.79 -1.34,1.75 -0.37,2.06 -1.7,1.58 -0.97,3.78 -1.55,-0.17 -2.95,1.3 -1.44,2.66 2.9,0.31 -0.83,3.65 1.5,5.13 0.09,1.68 -2.42,1.94 -1.44,4.03 -0.59,0.43 -2.04,-1.83 -2.47,0.22 -0.2,1.62 1.53,3.9 -0.56,4.75 -0.84,1.32 -2.23,2.39 -2.63,3.63 -2.15,0.21 -4.86,2.49 -4.44,4.44 0.43,0.52 0.91,0.21 1.34,-0.13 -0.21,0.37 -0.18,0.94 -0.56,1.22 -0.49,0.61 -1.15,1.02 -1.94,0.94 -0.73,0.28 -1.18,1.18 -2.09,0.97 -0.78,0.12 -1.32,0.87 -2.19,0.72 -1.08,-0.1 -0.54,1.4 -1.44,1.53 -1.15,0.5 -1.61,-0.95 -2.41,-1.41 -0.58,0.14 -1.02,0.96 -1.09,1.47 0.83,0.58 1.51,1.58 1.56,2.56 -0.48,0.61 -1.22,1.04 -1.91,0.44 -0.98,-0.36 -1.45,-1.59 -2.63,-1.5 -0.84,0.07 -1.45,-0.45 -2.09,-0.88 -0.56,-0.34 -1.35,0.01 -1.09,0.75 0.12,0.69 0.03,1.44 -0.59,1.84 -0.39,0.67 -1.15,1.64 -0.66,2.41 0.32,0.32 1.13,0.32 0.84,0.97 -0.12,1.97 -2.06,3.41 -1.78,5.5 0.17,0.79 -0.19,1.47 -0.81,1.94 -0.35,0.52 0.2,1.29 0.63,1.53 -0.44,0.9 -1.76,1.38 -1.56,2.53 -0.28,0.83 -1.41,0.84 -1.59,1.78 -0.39,0.87 -1.31,1.61 -1.06,2.66 -0.79,1.23 -0.55,2.78 -0.75,4.16 -0.38,0.45 -0.96,1.17 -0.31,1.66 0.19,0.92 -0.85,2.02 0.09,2.81 0.5,0.04 0.6,0.46 0.63,0.91 -0.02,0.81 0.99,1.05 1.31,0.31 0.4,0.04 1.18,0.16 1.31,0.63 -0.27,0.86 0.83,1.17 1.38,0.66 0.37,-0.34 0.78,-0.44 0.84,0.19 0.3,0.63 0.64,1.4 -0.06,1.91 -0.47,0.31 -0.53,1.35 0.25,1.03 0.44,0.03 0.69,0.75 1.19,0.28 0.53,-0.55 1.39,-1.22 2.13,-0.66 0.09,0.45 -0.18,1.54 0.63,1.31 0.46,-0.17 1.16,-0.59 1.38,0.13 0.27,0.54 0.28,1.22 -0.13,1.66 -0.28,0.58 0.32,1.14 0.19,1.66 -0.7,0.61 0.03,1.43 -0.13,2.19 -0.13,0.77 0.3,2.24 1.31,1.91 0.74,-0.22 1.17,-1.35 2,-0.75 0.91,0.12 1.83,0.91 2.75,0.72 1.28,-1.37 3.28,-1.71 5.09,-1.53 0.69,-0.15 1.83,0.35 2.28,-0.34 0.16,-0.99 -1.49,-0.86 -1.28,-1.88 -0.03,-0.34 -0.61,-0.89 0.06,-0.91 0.68,0.02 1.62,-0.41 2.19,0.09 0.16,0.78 0.83,1.06 1.53,1.16 0.47,0.73 1.82,0.34 1.91,1.38 0.57,1.39 0.36,2.94 0.78,4.34 0.72,0.79 1.2,2.08 2.31,2.38 0.66,-0.13 0.02,0.95 0.75,0.88 0.33,-0.02 1.1,0.07 0.63,0.5 -0.28,0.75 0.95,0.75 0.81,1.5 0.13,0.88 0.23,1.77 0.81,2.44 0.16,0.88 1.05,1.52 1.75,2 0.1,0.01 -5.98,-1 1.72,1.5 1.57,1.48 0.23,3.35 0.38,5.03 -1.08,1.82 -0.11,3.59 1.5,4.63 1.38,1.19 3.72,0.81 4.06,2.91 1.98,0.12 4.08,0.24 5.09,2.31 -0.26,1.88 -0.16,3.88 2.03,4.69 2.24,-0.13 -0.77,2.82 -0.03,3.5 1.32,-1.24 1.46,2.16 2.88,0.38 1.41,0.23 2.93,0.06 3.28,-1.41 2.3,-0.94 2.93,2.57 4.69,2.97 1.35,-1.69 3.16,-3.13 4.47,-4.81 1.27,0.09 0.91,2.97 2.47,1.19 1,-0.78 2.14,-1.36 1.97,0.41 1.06,2.68 2.68,-2.88 3.69,-0.03 1.94,1.77 2.64,-1.99 2.59,-3.22 2.22,-1.29 3.19,2.69 5.5,0.97 1.64,-0.66 3.21,0.27 4.94,-0.09 1.88,0.55 4.24,2.05 6.03,1.19 2.03,-0.39 1.38,-0.9 2.66,-0.44 2.26,0.05 5.32,0.81 5.34,-2.44 0.72,-1 2.01,-0.74 1.97,-2.56 1.67,-1.97 4.64,-0.98 6.78,-1.97 2.22,1.06 6.5,-0.37 5.38,-3.34 -1.23,-1.26 -1.47,-1.98 -0.47,-3.44 0.08,-1.16 -1.93,-1.56 0.06,-2.16 1.35,0.35 1.8,0.42 1.47,-1.25 2.2,-0.16 3.01,-3.8 5,-3.91 0.84,1.57 2.08,1.88 3.34,0.69 2.68,0.17 3.31,-3.16 5.63,-3.94 1.82,-1.28 5.05,0.88 5.66,-2.19 1.43,-2.02 -0.17,-4.15 0.13,-6.19 1.46,-1.86 -0,-3.73 0.59,-5.75 0.92,-2.7 -3.55,-3.59 -1.91,-6.41 -0.1,-2.89 -1.24,-5.6 -2.13,-8.31 0.53,-2.38 -1.6,-3.77 -3.28,-5.03 -3.42,-1.42 -0.39,-4.41 0.28,-6.66 1.22,-2.05 -0.14,-4.06 -1.06,-5.91 -1.79,-1.48 -2.93,-3.67 -1.59,-3.83 1.51,-0.53 3.38,-0.55 4.87,-0.83 -0.4,-1.72 -2.02,-3.65 -0.88,-5.78 -1.47,-1.35 -2.38,-3.98 -4.19,-4.28 -0.84,-2.52 1.25,-3.54 3.38,-3.25 1.7,-0.71 5.73,-1.19 3.97,-3.75 1.11,-1.31 0.7,-2.27 -0.59,-3 0.09,-2.52 2.74,-3.46 4.34,-5.16 2.49,-1.47 0.35,-4.35 0.53,-5.81 -2.16,-1.8 -3.41,-4.21 -4.19,-6.75 -2.19,-1.4 -4.9,-2.39 -7.25,-0.59 -1.4,1.83 -3.3,0.68 -2.72,-1.22 -2.2,-0.29 -2.54,2.59 -4.91,2.69 -1.57,0.29 -3.07,-1.32 -4.78,-0.63 -2.24,-0.9 -4.24,1.33 -6.47,0.31 0.78,-1.05 1.74,-2.43 2.84,-2.47 0.77,-2.05 0.77,-4.77 -1.78,-5.47 -2.81,0.03 -1.68,-2.89 -2.97,-4.34 -2.08,1.48 -3.79,-2.48 -5.13,0.38 -0.94,-0.72 -2.49,1.6 -2.25,-0.72 -0.16,-0.79 -0.99,-1.01 -1.63,-1.28 -1.65,1.48 -2.18,3.73 -4.78,2.38 -1.48,1.36 -3.64,1.18 -5.08,1.73 -1.14,-0.85 -2.55,-1.62 -0.64,-3.23 -0.54,-1.83 1.02,-5.17 -1.84,-5.28 -1.23,-0.49 1.24,-2.71 -0.91,-2.75 -2.16,1.54 -3.77,-1.07 -5.47,-1.88 -1.34,-1.71 -0.35,-3.89 -1.28,-5.66 -0.82,-1.34 -3.98,-0.35 -2.69,-2.81 -0.01,-0.99 -3.03,-0.4 -2.97,-2.28 -1.17,-0.9 -2.23,-2.16 -2.16,-3.38 -2.3,-1.28 3.11,-4.05 -0.34,-4.81 -1.59,-1.53 0.22,-3.8 -0.38,-5.47 0.09,-1.23 -2.38,-1.48 -1.19,-2.81 -0.68,-1.66 -1.82,-3.42 -3.63,-3.38 z", + "region-23" : "m 327,67.41 c -1.74,1.16 -3.94,-0.1 -5.28,2.16 -2.29,2.35 -4.85,4.56 -8.03,5.59 -2.34,1.39 -4.9,2.39 -7.66,2.22 -2.35,0.61 -4.59,1.65 -6.97,2.19 C 295.51,80.99 291.4,80.02 288,82 c -2.95,1.51 -5.58,3.64 -8.75,4.69 -1.51,1.33 -3.19,2.27 -5.16,2.72 -1.86,1 -4.4,1.34 -5.13,3.66 -0.75,3.04 -2.14,5.81 -3.56,8.59 -1.79,2.24 0.52,4.61 2.72,5.16 1.7,0.51 3.4,0.34 5.13,1.25 3.58,0.81 7.28,-0.28 10.44,-1.97 1.79,0.89 2.85,0.22 0.53,0.06 -1.88,0.87 -3.29,2.63 -5.47,2.88 -1.89,0.2 -4.84,0.55 -3.34,3.19 -0.14,1.72 1,3.52 0.38,5.06 0.52,0.98 -0.45,2.93 1.22,1.53 2.41,-1.27 2.66,2.55 0.25,2.53 -2.27,1.97 3.92,2.2 1.97,4.88 -0.97,2.23 3.08,1.92 1.13,3.78 -1.21,1.17 1.48,3.51 -1.22,3.34 -1.58,2.01 1.39,2.57 2.47,3.28 -0.33,1.89 -0.35,4.06 -1.75,5.59 -1.7,1.69 0.84,3.1 2.38,3.41 1.86,0.07 4.15,1.26 5.69,-0.41 1.46,0.13 1.02,2.44 2.28,2.66 -1.79,2.14 2.3,2.86 3.5,4.06 1.89,0.35 3.98,3.21 2.22,4.78 -1.89,0.92 1.6,1.34 0.72,2.84 1.42,0.67 4.08,-0.27 4.59,-2 0.83,-1.86 3.06,0.75 4.25,-1.28 1.94,0.28 3.17,-1.23 4.75,-2.06 1.61,0.81 2.92,-0.26 2.44,-1.91 1.47,-0.48 2.14,1.45 3.88,1.19 2.24,-0.19 5.23,1.16 7.19,-0.97 1.37,-1.08 -1.66,-3.52 0.97,-4.19 1.41,-1.51 5.16,-1.7 3.31,-4.59 -1.33,-2.09 3.4,-1.11 1.84,-3.13 1.16,-1.54 -0.11,-0.87 -1.16,-1.03 -0.43,-1.14 0.79,-2.47 -0.66,-3.59 -0.98,-1.38 0.17,-2.29 1.41,-1.59 1.25,-0.64 0.95,-2.16 2.41,-1.03 2.27,-0.15 3.98,-1.17 4.72,-3.38 1.38,-2.46 0.89,-5.49 2.66,-7.81 -0.2,-2.14 2.83,-2.48 3.56,-0.75 1.77,-0.54 0.57,-2.61 -0.28,-3.25 0.01,-7.53 -6.31,-5.19 -0.03,-11.56 1.4,-1.6 -0.11,-2.95 -1.28,-1.25 -2.63,-0.14 1.25,-2.56 -0.88,-3.41 0.87,-1.65 -2.2,-1.66 -1,-2.97 -0.44,-1.5 1.55,-2.17 0.03,-3.66 0.3,-0.9 3.04,-3.11 1.41,-3.25 -0.65,1.38 -2.95,0.59 -1.38,-0.63 0.63,-1.59 1.37,-2.89 2.63,-3.78 1.98,-0.19 -1.74,-2.75 -1.53,-4.38 -0.55,-2.02 -0.55,-4.33 -2.5,-5.63 -1.72,-1.41 -3.84,-2.18 -5.03,-4.19 -1.56,-1.57 -3.44,-2.86 -5,-4.38 -0.11,-0.69 0.28,-1.97 -0.94,-1.72 z", + "region-22" : "m 334.16,47.66 c -2.76,-0.03 -2.25,3.63 -2.63,5.5 1.19,2.06 4.27,3.76 5.47,5.16 1.3,3.21 -3.04,-0.18 -4.38,-0.47 -3.88,-0.07 -3.56,5.04 -5.41,7.34 -0.71,0.59 -3.75,3.11 -1.34,2.59 1.47,-1.5 2.5,0.6 2.53,1.63 1.88,1.27 3.39,3.01 5.06,4.5 0.98,2.07 3.36,2.37 4.84,3.88 1.75,1.4 1.73,3.63 2.31,5.59 5.2,9.88 10.59,5.88 3.16,4.19 C 343.14,87.21 342.48,87.96 341.75,88 c -0.9,1.51 -2.05,2.89 -2.75,4.41 0.72,1.3 2.77,-1.95 2.47,0.53 -1.27,0.9 -2.25,2.63 -1.34,4.06 -0.91,0.95 -0.75,1.8 -0.03,2.47 -0.13,1.26 0.68,2.63 1.16,3.41 -0.63,0.67 -1.53,2.92 0.16,2 1.1,-1.62 2.87,0.58 1.22,1.44 -0.23,1.5 -3.78,3.59 -1.97,5 0.58,-0.31 -0.73,1.2 0.38,1.53 1.62,1.42 1.34,3.69 1.75,5.59 1.9,0.6 0.81,4.78 -0.75,2.44 -1.9,-1.54 -3.87,1.46 -1.31,2.28 0.51,0.93 -1.25,1.9 0.44,2.63 0.9,0.8 3.16,-0.28 4.5,0.91 2.36,0.62 4.7,-0.16 7.09,-0.5 1.69,-0.31 3.8,-3.12 5.13,-0.63 1.16,-0.16 2.38,0.21 2.81,1.47 0.86,-1.1 3.52,-0.86 2.75,0.88 2.24,1.07 3.58,-3.97 5,-0.88 1.77,1.37 4.5,0.8 6.44,2.34 1.05,0.95 1.86,2.93 2.78,0.72 0.99,0.53 1.93,3.8 3.34,1.69 1.96,-1.93 3.09,1.72 4.47,1.78 0.78,-1.34 2,1.92 2.88,-0.28 0.33,-2.65 3.12,-0.79 4.28,0.09 1.53,-0.88 3.18,-0.87 4.81,-1.03 0.35,1.73 1.88,-1.27 3.25,-0.13 1.13,-0.39 -0.39,-1.2 0.88,-1.76 1.66,-0.49 0.72,-1.03 3.31,0.24 2.65,0.21 2.97,4.34 1.65,6.21 1.62,1.27 3.48,2.24 4.22,4.31 0.74,1.63 2.33,-0.46 2.5,1.88 0.72,2.19 2.68,-1.36 2.66,1.28 -0.24,2.49 3.53,2.87 4.13,3.94 1.75,-1.8 2.07,-4.55 4.88,-5.19 0.68,-2.23 2.37,-3.42 3.56,-5.41 2.67,-0.52 -0.66,-3.26 -2.06,-1.84 -2.26,-0.47 0.23,-2.88 1.31,-3.13 -0.73,-1.44 -2.37,-4.13 0.25,-4.66 1.65,-0.44 4.9,1.28 4.78,-1.5 -2.06,0.27 -1.98,-2.16 -3.88,-2.41 0.6,-1.8 -0.18,-4.31 -0.78,-6.47 1.32,-1.8 3.96,-1.53 5.66,-2.91 1.45,-1.38 4.52,1.52 4,-1.34 1.45,-1.59 3.81,-2.88 5.19,-0.5 1.28,-0.12 3.39,2.55 3.31,-0.22 0.33,-2.86 0.56,-4.98 0,-7.75 1.55,-0.89 1.7,-2.64 0.84,-3.44 1.81,-1.93 -3.62,-5.62 0.69,-5.56 3.16,1.39 1.54,-3.19 4.13,-3.75 1.57,-1.42 5.28,-4.09 2.25,-5.69 0.32,-1.83 0.52,-4.01 1.72,-5.91 1.09,-2.4 -2.7,-2.85 -1.03,-5.34 -0.92,-1.56 -3.38,-2.22 -5.31,-1.53 -1.91,-0.8 -7.17,-0.14 -5.5,-3.66 -0.63,-2.33 -4.89,3.02 -5.13,-0.13 -1.96,-1.5 -4.73,-0.41 -6.75,-2.06 -0.64,-0.23 -1.39,-0.27 -2,0.09 -1.21,0.83 -2.3,3.03 -4.09,1.56 -1.81,-2.61 -3.43,0.49 -5.34,1.06 -2.18,0.63 -4.37,-2 -6.44,-0.25 -1.68,1.82 -4.05,-1.39 -6,0.13 -2.2,1.21 2.12,0.92 -3.49,0.21 -1.83,-1.56 -4.69,-3.08 -7.08,-1.77 -1.63,-0.91 -3.64,1.21 -5.28,1.47 -0.51,-0.79 1.21,-2.03 -0.44,-2.91 -0.98,-1.14 -4.78,3.67 -4.69,0.66 1.62,-1.44 1.72,-3.98 -0.88,-4.22 -1.44,-0.89 -1.04,1.89 -0.91,2.41 -1.98,-0.74 -4.51,-1.19 -6.31,-2.19 0.61,-1.3 -0.76,-2.03 -1.28,-0.53 -0.88,1.66 -1.66,-2.37 -3.22,-0.69 -1.76,0.6 -1.77,4.72 -3.75,1.88 -2.07,-1.49 1.22,-5.38 3.69,-5.38 1.77,-1.43 -2.78,-3.75 -4.16,-2.19 -0.97,2.36 -1.66,-1.18 -2.44,-0.22 -0.33,1.95 -3.12,-0.95 -4,0.91 -2.31,-1.06 -3.91,2.18 -5.59,0.41 -3.43,0.96 -1.19,-3.98 -4.22,-3.97 -2.08,-0.65 -5.34,-1.56 -3.25,-3.91 -1.24,0.25 -2.96,1.34 -4.16,-0.38 -1.88,-2 -4.89,-2.52 -7.13,-0.81 -2.62,2.08 -3.24,-1.93 -5.56,-1.66 z", + "region-11" : "m 339.81,122.72 c -1.75,0.85 -1.91,2.97 -2.19,4.66 -0.25,1.42 -0.71,2.89 -1.78,3.91 -0.04,1.04 -0.02,0.73 -0.54,1.02 l -1.06,0.48 c -1,0.54 -2.08,0.8 -3.19,0.78 -0.88,0.67 -1.82,1.37 -2.88,0.72 -1,1.18 0.69,2.19 0.91,3.31 0.23,0.75 -1.18,2.11 0.38,1.81 0.82,-0.44 1.71,0.18 0.75,0.88 -0.37,0.71 0.42,1.09 0.25,1.94 0.29,1.15 1.97,0.94 1.75,2.38 0.87,0.58 0.49,1.27 0.31,2.13 1.32,0.42 2.18,2.12 1.47,3.38 -0.42,1.39 -0.55,3.5 1.16,4.03 1.37,0.98 -0.49,2.26 -0.91,3.25 -0.68,1.18 1.59,1.25 0.69,2.59 -0.04,1.38 2.45,0.98 2.13,2.69 0.34,1.35 3.83,0.32 2.56,2.22 -0.54,1.64 1.41,1.3 2.25,1.56 1.15,0.87 1.43,2.02 0.97,3.34 0.17,1.23 0.64,2.42 1.19,3.53 1.78,-0.36 2.36,2.59 4.38,1.59 0.84,-0.96 2.2,-0.59 1.81,0.91 -0.14,0.69 -0.85,1.76 0.44,1.63 1.2,-0.21 1.25,0.89 1.19,1.75 1.04,0.89 -0.54,1.95 0.06,3 0.63,0.99 -0.75,1.43 -0.53,2.22 1.02,1.29 2.96,0.97 4.25,0.28 0.96,0.25 1.81,-0.89 2.53,-0.56 0.79,0.62 1.93,0.39 1.97,-0.66 1.21,0.12 1.33,-1.12 2.06,-1.75 0.86,0.29 2.16,0.62 2.03,1.69 0.29,1.34 0.97,-0.52 1.72,0.13 1.08,0.55 1.34,-2.34 2.41,-0.78 0.44,0.94 2.06,1.4 2.66,0.44 0.95,-0.46 0.56,-0.21 0.78,0.56 1.12,1.38 -0.37,3.96 2.41,3.78 2.91,0.69 3.09,4.39 1.75,6.31 -1.65,-0.84 -2.88,2.93 -0.41,1.94 1.73,-0.49 3.2,-1.29 5.03,-0.34 1.93,-0.8 3.98,1.81 5.69,-0.28 1.86,-0.31 -0.29,-2.16 1.34,-1.81 1.18,-0.45 3.05,-0.08 1.97,1.41 1.33,2.12 2.95,-1.7 4.97,-1.19 1.67,-0.49 2.04,-2.89 4.03,-3.22 1.12,-1.43 2.91,-3.39 1.16,-5.06 -0.16,-1.63 0.37,-3.89 1.72,-4.81 2.36,0.85 4.14,-2.07 6.47,-0.5 2.32,-0.04 4.01,-1.1 6.34,-0.53 1.28,-0.24 1.3,-2.33 2.97,-1.22 2,-0.66 -1.68,-2.32 -0.03,-3.59 -0.5,-1.21 -1.22,-2.85 0.84,-2.78 1.09,-0.89 -2.02,-3.22 0.59,-2.75 1.77,0.23 2.42,-1.17 1.63,-2.47 1.17,-1.39 1.99,-2.56 3.56,-3.44 -1.04,-1.49 -2.62,-1.7 -4.06,-1.03 -1.93,-1.91 1.07,-3.46 0.31,-5.34 0.3,-1.53 -1.56,-1.91 -2.53,-2.41 -1.25,-0.38 0.2,-2.47 1.31,-2.22 0.34,-0.82 -2.81,-1.8 -0.5,-1.81 1.33,0.7 3.87,-1.62 2.13,-2.16 -1.66,1.45 -1.35,-1.78 -3.38,-1.25 -2.08,-0.53 -0.4,-4.61 -3.09,-2.94 -1.53,-0.07 -0.55,-3.1 -2.69,-1.88 -1.2,-1.64 -2.76,-4.18 -5.06,-5.25 0.91,-1.5 1.05,-2.87 -0.13,-4.28 -0.33,-2.14 -2.6,-1.34 -4.06,-1.97 -0.98,0.49 0.07,2.52 -1.72,1.69 -1.65,-0.86 -2.4,2.1 -3.31,-0.03 -2.1,0.41 -4.57,1.94 -6.31,0.03 -1.77,-1.32 -2.95,3.71 -4.59,0.94 -2.01,1.88 -2.85,-3.56 -5.09,-1.22 -0.21,0.9 -0.92,1.22 -1.53,0.66 -0.5,-0.75 -1.18,-1.8 -1.72,-2.25 -0.42,0.8 -1.43,1.59 -2.09,0.59 0.23,-1.63 -1.65,-1.67 -2.72,-2.19 -0.93,-0.75 -2.23,-0.98 -3.44,-0.88 -1.14,0.44 -1.12,-2.19 -2.5,-1.88 -0.93,0.67 -1.26,2.11 -2.69,1.97 -0.85,0.25 -1.6,-0.39 -1.03,-1.13 -0.93,-1.31 -2.74,1.07 -3.44,-0.84 -1.09,-0.54 -2.35,-0.31 -3.03,-1.41 -1.39,-0.44 -2.35,1.15 -3.59,1.5 -1.54,0.3 -3.06,0.54 -4.63,0.91 -1.02,0.55 -1.67,-0.72 -2.78,-0.16 -1.18,-0.12 -2.15,-1.35 -3.5,-0.66 -1.05,0.52 -2.64,-1.33 -1.94,-2.09 0.55,-0.51 0.17,-1.55 -0.59,-1.5 z", + "region-74" : "m 342.97,306.63 c -2.22,0.07 -0.29,3.63 -2.53,4.06 -1.32,0.27 -2.03,-2.74 -3.03,-0.56 -0.89,1.96 -2.58,0.1 -2.16,-1.38 -1.21,0.88 -3.36,2.71 -3.53,0.16 -1.42,-0.74 -1.86,2.28 -3.34,2.69 -3.03,4.43 -2.07,0.52 -5.03,-1.22 l -0.41,-0.13 c -1.42,0.16 -1.77,2.72 -3.53,1.56 -1.2,0.66 -2.72,0.06 -3.06,-0.41 -1.3,-0.05 -2.56,-0.31 -3.03,1.5 -1.19,1 -3.76,-1.33 -4.72,1.13 -0.44,1.9 -0.85,4.73 -3.34,3.78 -1.9,-0.21 -3.23,0.53 -4.47,1.97 -0.02,1.86 -2.26,1.51 -2.78,2.81 1.14,1.36 1.75,3.08 2.03,4.81 -0.68,0.8 -1.8,1.33 -0.59,2.38 -0.3,1.93 -0.97,4.01 1.25,5.16 0.94,0.27 1.88,-0.68 2.59,0.81 1.7,1.94 1.36,4.76 -1.16,5.78 -1.21,0.95 -4.54,-1.23 -3.28,1.66 0.6,1.91 -0.37,3.83 -1.44,5.38 0.26,1.68 -1.12,2.51 -2.19,1.13 -2.49,-0.32 -0.09,2.97 -2.34,3.09 -1.43,0.77 -3.68,3.88 -0.84,4.34 1.89,-0.29 4.26,-0.22 4.78,2.09 -0.95,1.74 -0.87,4.3 1.41,4.5 2,2.75 2.35,-4.25 4.06,-1 1.82,-0.25 3.52,-0.54 5.31,-0.31 2.1,0.81 0.93,3.9 3.41,4.63 0.87,-0.16 3.26,-0.69 3.53,1.25 -1.52,0.83 -2.63,3.88 0.09,3.03 0.75,1.86 3.07,0.22 3.78,2.25 3.5,-1.57 -1.33,-1 1.91,0.69 0.31,0.97 -2.2,1.98 -0.06,2.44 2.59,0.34 1.5,2.35 0,3.31 -0.83,1.5 -2.83,2.33 -2.41,4.34 0.04,1.61 3.43,1.79 1.06,3.34 -1.8,0.75 -0.87,2.15 0.75,1.97 2.37,0.69 -2.16,3.2 0.91,3.56 1.71,0.75 4.39,-0.22 5.41,1.63 -1.66,1.67 0.02,3.87 0.78,5.63 1.3,2.58 3.32,-0.96 4.91,-0.44 1.79,0.66 4.2,-0.24 5.75,1.63 1.5,1.28 2.35,3.24 4.09,4.22 0.76,2.2 3.51,1.8 4.78,0.25 1.25,-0.4 3.35,-3.38 4.06,-0.75 1.76,-0.42 3.25,-1.83 5.25,-1.38 1.95,0.53 4.84,-0.88 2.72,-2.91 -1.73,-1.56 -0.23,-3.93 1.81,-4 1.95,-0.73 0.58,-3.64 2.69,-4.56 0.82,-1.71 -2.57,-3.03 -0.59,-4.81 1.51,-1.4 2.17,-3.42 4,-4.59 0.93,-1.64 3.52,-2.31 3.34,-4.5 0.2,-1.11 -1.11,-4.18 1.22,-2.94 1.67,0.96 3.92,2.81 5.81,1.56 0.19,-1.48 -2.29,-2.38 -0.91,-4.19 0.6,-1.88 0.65,-3.89 0.81,-5.81 -0.59,-1.81 -3,-2.97 -1.91,-5.16 0.21,-1.88 3.04,-1.93 2.06,-4.16 -0.15,-4.41 -1.04,-2.47 -1.69,-4.44 -2.17,-0.79 -2.33,-3.17 -3.84,-4.66 -1.26,-2.03 2.6,-0.91 2.25,-3.03 0.21,-1.29 2.68,0.2 2.69,-1.59 1.86,-0.73 1.65,-2.52 2.34,-3.94 0.66,-1.35 3.22,-1.28 1.78,-3.16 0.41,-1.56 0.09,-3.04 -1.28,-4.09 -1.25,-2.06 -0.74,-4.59 -0.19,-6.78 -0.66,-1.41 -2.33,-2.31 -2.06,-4.19 -0.44,-1.74 -1.9,-2.78 -2.47,-4.5 -0.93,-0.77 -2.55,0.95 -2.25,-1.16 -0.18,-1.3 -1.57,-1.83 -2.16,-0.53 -1.19,-0.72 -4.02,-1.51 -2.22,-3.34 1.61,-1.32 -2.5,-0.5 -1.84,-2.44 -0.35,-2.62 -3.97,-1.23 -5.84,-1.44 -1.93,0.7 -3.78,0.83 -5.66,-0.25 -1.44,-0.55 -3.1,-0.73 -4.56,-0.56 -1.66,-0.98 -3.65,1.46 -5.09,-0.03 -0.47,-0.46 -0.9,-1.08 -1.59,-1.19 z", + "region-83" : "m 397.19,283.59 c -0.53,0.03 -0.62,0.95 -1.25,0.59 -1.07,-0.24 -1.3,1.08 -2.19,1.34 -0.68,0.38 -0.82,1.2 -1.56,1.56 -0.59,0.3 -0.39,1.08 -0.69,1.47 -0.82,-0.75 -2.14,-0.58 -2.84,0.25 -0.56,0.51 -1.32,0.28 -1.59,-0.41 -0.26,-0.45 -0.59,-1.49 -1.28,-0.94 -0.65,0.39 -0.38,1.54 -1.28,1.63 -0.49,0.33 -0.43,1.06 -1.06,1.28 -0.54,0.29 -0.85,0.95 -1.53,0.66 -0.62,0.1 -0.27,0.76 -0.06,1.06 0.07,0.49 -0.17,1.38 -0.81,0.88 -0.59,-0.44 -1.76,-0.3 -2,0.31 0.58,0.17 1.69,0.87 1,1.56 -0.36,0.28 -0.08,0.8 -0.25,1.06 -0.67,0.39 -0.14,1.27 0.47,1.34 0.61,0.77 0.54,1.86 0.72,2.78 -1.18,0.73 -2.34,1.72 -3.63,2.13 -0.29,-0.68 -0.87,-0.35 -1.31,-0.09 -0.47,0.1 -0.22,-0.77 -0.81,-0.59 -1.03,0.35 -2.02,0.81 -3.16,0.72 -1.3,0.06 -2.79,0.14 -3.59,1.34 -0.8,0.47 0,1.58 -0.81,2 -0.42,0.05 -0.96,-0.07 -1.16,0.47 -0.78,1.48 -0.91,3.38 -0.41,4.97 0.26,0.38 0.8,0.29 1.16,0.56 0.49,0.09 1.26,0.01 1.06,0.78 0.02,0.4 -0.71,0.16 -0.84,0.56 -1.01,0.83 0.26,2.01 1.16,2.19 0.58,-0.08 0.88,0.54 1.34,0.59 0.39,-0.14 0.36,-1.36 0.88,-0.78 0.76,0.62 1.67,1.42 1.25,2.53 0.36,0.53 0.92,-0.63 1.47,-0.19 0.81,0.23 1.69,0.87 1.44,1.84 0.14,1.11 1.7,1.29 1.69,2.47 0.4,1.14 -0.02,3 1.47,3.41 0.81,0.19 0.42,1.36 0.75,1.94 0.21,1.17 -0,2.06 -0.66,2.5 -0.63,3.31 3.36,4.82 2.13,8.09 1.47,2.13 -3.77,2.43 -2.19,5.09 -1.55,1.17 -2.38,3.36 -4.44,2.97 -0.24,1.6 -1.76,1.78 -2.75,2.78 1.42,1.48 1.73,4.06 3.81,4.88 1.87,1.54 2.6,3.85 2.03,6.16 -0.04,1.68 -2.37,1.11 -2.13,3.19 -1.39,2.53 3.35,3.48 1.78,6.19 -0.13,0.85 0.13,1.66 0.63,2.31 -0.13,-0.03 -0.27,-0.04 -0.47,-0.03 -1.19,1.79 -1.69,4.43 0.41,5.72 -0.45,1.36 -2.52,1.74 -3.5,0.69 -1.54,-0.13 -3.08,-2.71 -4.38,-1.53 1.01,1.48 0.34,3.55 -0.13,5 -1.99,0.75 -2.55,2.82 -4.34,3.78 -0.52,1.72 -2.44,2.69 -2.84,4.41 0.01,1.72 2.73,2.74 0.56,4 -1.7,1.18 -0.24,4.86 -3.06,4.34 -2.7,0.63 -1.6,3.73 0,4.94 0.65,2.63 -4.47,0.66 -2.91,3.47 0.18,1.52 2.04,2.7 0.53,4.13 0.27,1.69 1.62,3.03 2.59,4.38 1.84,1.32 0.94,3.21 0.34,4.84 0.62,1.33 -1.77,3.31 -0.25,3.78 2.44,-0.09 0.11,3.66 2,4.56 1.7,1.06 0.3,-2.61 2.63,-2 1.68,-0.52 3.97,-1.43 4.56,0.78 2,-0.58 4.34,0.82 6.09,-0.75 0.44,-2.1 2.59,-3.2 3.22,-5.22 -0.69,-2.32 2.22,-3.17 2.16,-5.13 0,-1.99 1.08,-3.8 2.78,-4.53 0.13,-1.76 2.71,-1.81 3.06,-3.56 2.42,-0.56 2.51,3.04 2.13,4.63 0.65,0.42 1.86,-1.03 3.03,-0.47 1.73,-0.26 0.77,2.87 1.78,4.06 0.04,1.66 1.49,1.36 2.34,1.41 0.51,2.24 -0.6,4.89 0.69,7.09 0.22,1.4 1.89,3.14 2.25,0.88 0.17,-2.12 2.41,-3.18 1.69,-5.31 1.31,-1.43 0.08,-3.81 1.84,-5 0.34,-0.92 1.67,-0.91 1.28,-2.38 -0.31,-1.78 2.38,-4.14 2.91,-1.41 1.09,2.08 3.68,-0.13 3.13,-1.91 0.66,-0.39 0.95,-3.09 1.75,-1.44 1.49,0.21 2.72,-1.4 3.94,-1.91 0.35,-1.7 3.81,1.59 2.72,2.25 0.25,1.79 1.13,3.49 1.72,5.16 0.34,1.37 1.36,3.4 2.72,1.72 1.7,-0.4 4.23,-0.26 3.84,-2.75 0.47,-2.25 4.43,-0.37 3.41,1.53 -0.08,1.93 4.09,-1.3 4.13,1.69 0.63,1.03 1.68,1.89 2.41,2.97 1.04,-0.64 1.78,0.18 1.09,1.22 1.62,0.86 4.1,-0.84 4.34,-2.72 0.12,-1.27 1.25,-3.15 2.19,-1.59 -0.03,-1.43 2.74,-0.34 1.94,-2.19 0.24,-2.16 3.14,-1.12 4.56,-1.72 2.32,0.9 2.89,-1.82 3.72,-3.28 1,-1.17 1.04,-3.32 3.09,-2.47 1.27,0.03 2.49,-1.1 1.13,-2.06 -0.7,-2.65 2.93,-1.91 3.81,-3.19 -0.1,-1.04 -2.16,-1.3 -1.03,-2.72 -0.2,-1.4 2.98,-1.25 1.28,-2.53 -1.63,-1.76 2.37,-1.76 2.38,0.03 1.44,0.42 -0.33,-2.17 0.88,-2.91 0.94,-1.34 2.07,-3.68 0.75,-5.06 -0.88,-1.26 -2.37,-2.78 -3.72,-1.13 -1.58,0.28 -1.8,-1.64 -1.38,-2.53 -1.45,-0.91 -0.99,-1.91 0.06,-2.78 -0.1,-1.71 -2.18,-2.09 -3.34,-1.28 -1.53,-0.47 -2.3,-2.48 -4.19,-1.63 -1.37,-1.08 -2.02,0.41 -2.16,1.16 -1.7,-0.13 -2.86,0.95 -3.81,1.84 -0.54,-1.5 -1.85,-0.63 -2.22,0.5 -0.6,-1.73 -2.18,-3.98 -3.94,-1.94 -0.39,0.75 -1.16,2.57 -1.53,0.72 -0.67,-0.67 -0.11,1.33 -0.19,-2.22 -0.77,-2.78 3.41,-2.66 3.56,-5.06 0.08,-1.27 0.89,-2.57 -0.59,-3.5 -0.34,-2.4 -0.76,-5.08 -3.38,-6.03 -2.51,-1.49 -4.53,-3.84 -4.94,-6.81 0.3,-1.94 -2.55,-2.71 -2.44,-4.44 -2.77,-1.23 1.29,-3.16 -0.16,-5.28 -0.46,-1.42 2.46,-2.05 0.63,-3.69 -2.2,-1.35 -2.35,-3.28 -2.41,-2.44 0.41,0.47 0.97,-0.54 0.94,-0.97 -0.15,-0.63 0.52,-1.02 1.06,-0.72 0.48,0.22 1.27,0.4 1.28,-0.34 0.41,-0.77 1.1,0.48 1.69,-0.03 0.66,-0.43 2.17,-0.86 1.53,-1.94 -0.55,-1.45 -1,-3.06 -0.38,-4.56 0.35,-0.94 -0.22,-1.77 -0.75,-2.44 -0.09,-0.98 -0.19,-2.05 -0.28,-3 0.9,-0.02 0.56,-0.74 0.19,-1.25 -0.62,-1 0.08,-2.53 -1,-3.28 -0.34,-0.41 -0.34,-1.39 0.44,-1.13 0.62,0.33 1.03,-0.25 1.03,-0.81 0.86,-0.77 2.5,-0.04 3.19,-1.13 0.39,-0.12 0.93,-0.25 0.81,-0.81 0.24,-1.13 2.3,-0.38 2.34,-1.72 -0.01,-1.08 1.49,-0.35 2.03,-0.84 -0.47,-0.98 0.14,-2.28 -0.19,-3.38 -0.22,-0.75 -0.56,-1.53 -0.06,-2.25 -0.09,-0.66 0.49,-1.19 0.25,-1.84 0.92,-0.68 0.3,-2.38 -0.78,-2.59 -0.47,-0.05 -0.92,-0.15 -1,-0.69 -0.62,-0.48 -1.87,-0.88 -2.28,0.06 -0.58,0.43 -1.56,-0.09 -1.78,-0.69 0.04,-0.44 0.16,-1.48 -0.59,-1.16 -0.61,-0.09 -0.17,-0.75 -0.47,-1 -0.68,-0.03 -1.23,0.99 -1.91,0.34 -0.7,-0.25 -1.14,-1.12 -1.97,-0.91 -0.71,-0.06 -1.3,-0.89 -0.78,-1.5 0.12,-0.95 0.3,-2.27 -0.5,-2.97 -0.67,-0.08 -0.62,-0.64 -0.38,-1.09 -0.11,-0.87 -0.72,-1.6 -0.94,-2.44 -0.41,-0.57 -1.3,-0.78 -1.38,-1.53 -0.43,-0.32 -0.74,-0.7 -0.75,-1.25 -0.23,-0.42 -0.82,-0.58 -0.66,-1.19 -0.07,-0.72 -0.65,-1.3 -0.66,-2 -0.38,-0.23 -0.96,-0.08 -1.13,-0.63 -0.76,-0.3 -0.78,0.95 -0.41,1.34 0.52,0.51 0.35,1.09 -0.31,1.25 -0.46,0.18 -1.77,-0.09 -1.38,0.78 0.22,0.53 0.67,1.23 -0.06,1.59 -0.45,0.63 -0.72,-0.75 -1.25,-0.16 -0.73,0.55 -1.34,1.36 -1.72,2.13 -0.7,0.19 -2.06,0.04 -1.81,-1 0.28,-0.69 0.27,-1.72 -0.66,-1.88 -0.06,-0.42 -0.07,-1.16 -0.72,-1 -0.6,-0.11 -1.41,-0.34 -1.66,0.44 -0.42,1.36 -2.42,1.83 -3.19,0.53 -0.36,-0.46 -0.41,-1.39 -1.25,-1.22 -0.93,-0.04 -1.4,0.93 -2.19,1.28 -0.52,0.67 -1.44,1.44 -2.28,0.75 -1.65,-0.71 -2.01,-3.05 -3.97,-3.28 -1.62,-0.6 -2.82,-2.07 -3.16,-3.75 -0.68,-0.77 -1.9,-0.51 -2.81,-0.75 z", + "region-82" : "m 487.41,302.63 c -0.9,1.57 -0.94,3.47 -1.88,5.03 -0.08,2.19 -1.36,3.9 -1.91,5.91 -0.03,2.1 -1.17,3.91 -1.75,5.88 -0.42,1.81 -1.29,3.5 -1.5,5.34 -2.68,1.49 -2.72,-0.38 -2.84,-0.72 0.16,-1.57 0.9,-3.79 -1.34,-4.03 -1.92,-1 1.76,-1.41 0.19,-2.69 -0.13,-0.32 -0.29,-0.7 -0.66,-0.81 -0.87,0.66 -2.27,-0.18 -2.53,1.44 -0.41,2.16 -2.62,0.68 -2.94,-0.66 -0.67,1.6 -2.76,2.32 -3.66,0.47 -1.26,-0.9 -4.03,-1.29 -3.94,1 -0.13,1.97 -0.38,1.61 -0.42,3.08 0.23,1.74 -0.15,0.13 -0.32,2.71 -2.07,-0.72 -4.56,2.98 -5.94,0.98 1.08,-1.6 -0.62,-0.92 -1.5,-0.97 -1.01,-1.58 -2.12,1.87 -3.66,0.28 -1.85,-2.55 -4.05,0.47 -6.22,0.59 -1.47,-0.6 -1.79,-3.29 -3.91,-2.34 -2.98,-0.56 1.33,-4.04 -1.34,-4.63 -1.4,1.09 -3.38,0.82 -4.47,2.28 -1.82,0.16 0.93,1.98 0.09,3.09 1.14,1.99 -0.45,4.01 0.88,6.06 0.77,1.92 -0.65,4.23 0.63,6.22 0.35,2.41 -2.8,1.88 -3.97,2.59 -2.35,-0.89 -2.48,3.14 -0.31,3.44 2.21,1.91 -1.22,3.67 -0.25,5.94 0.04,1.28 -2.46,2.83 -0.03,3.19 0.41,1.15 0.55,2.32 1.81,2.59 1.02,2.1 0.9,4.48 2.53,6.38 1.14,1.23 2.73,2.04 4.03,3.16 1.77,0.88 2.27,2.98 2.13,4.78 0.78,1.17 1.98,2.38 0.88,3.66 0.6,2.98 -3.75,2.42 -3.69,5.28 -0.24,1.25 0.86,4.49 1.47,1.78 1.44,-1.91 3.35,-0.47 4.16,1.16 0.79,-1.11 1.74,-0.49 2.69,0 0.15,-2.21 3.89,-0.72 3.47,-2.81 1.64,-0.48 3.97,-0.56 5.25,0.84 0.93,1.42 3.2,-0.8 4.25,1.31 1.2,1.24 -2.34,2.55 0.19,3.31 -0.27,1.39 -0.27,3.35 1.86,1.85 2.67,-0.02 3.91,2.01 3.54,5.68 -0.84,1.45 -2.04,2.84 -1.17,4.56 -1.38,1.82 -1.62,-3.06 -3.47,-1.03 0.08,0.93 1.94,1.83 0.06,2.25 -1.79,0.55 -1.33,2.98 0.03,3.63 -0.47,2.05 -5.24,0.65 -3.53,3.84 1.35,2.27 -2.76,1.27 -3.53,2.22 -0.5,1.82 -1.65,3.12 -2.47,4.78 -1.73,1.45 -4.71,0.11 -6.56,1.22 -0.06,1.33 -0,2.6 -1.59,2.72 -0.66,1.6 -2.32,-1.22 -2.47,1.16 -0.36,1.82 -1.26,3.38 -3.22,3.84 0.04,1.47 -0.12,2.82 0.5,4.13 -0.1,1.82 1.01,3.59 1.19,5.5 0.67,1.99 3.1,2.63 3.16,5.03 0.75,1.76 0.21,4.28 2.34,5.16 1.14,0.83 0.95,2.06 1.75,2.97 -1.24,1.36 0.1,3.48 -0.91,5.34 1.7,-0.1 4,-2.04 4.88,0.53 2.26,-0.51 3.43,4.43 5.78,2.47 0.31,-2.54 2.52,-4.67 5.22,-4.38 0.89,1.01 -0.76,4.43 2.03,3.59 1.01,-1.21 0.12,-4.65 2.97,-3.25 2.16,0.6 2.97,2.89 5.16,3.5 3.18,1.08 0.5,-3.83 2.57,-2.6 2.1,-1.19 -0.23,0.37 3.05,-0.12 2.81,-0.3 3.35,2.7 3.5,4.84 0.37,3.51 2.73,-1.83 4.5,-0.56 2.16,-0.59 4.02,-1.98 6.09,-2.75 1.51,-0.08 2.31,2.57 4.03,0.72 0.5,-1.18 2.5,-1.96 1.56,0 -1.01,1.27 0.17,2.53 -0.34,4.06 1.15,1.41 3.52,1.07 4.38,0.13 1.67,1.57 4.23,0.98 5.78,1.84 0.25,1.64 0.25,3.65 2.38,3.5 0.91,2.71 3.77,2.53 5.25,0.38 2.19,-0.46 -0.07,-2.19 1.78,-3.09 1.34,-0.38 2.44,2.35 3.25,-0.06 2.18,-0.81 0.01,-3.75 0.91,-5.25 -1.51,0.33 -2.13,-0.36 -2.13,-1.88 -1.71,-0.59 -0.04,-1.12 -0.63,-2.16 -2.21,0.34 -4.08,-0.81 -6.06,-0.88 -1.47,-1.34 -2.64,-1.83 -2.28,-4 -1.26,-1.18 -0.41,-2.43 1.16,-1.56 2.99,0.47 -0.79,-1.86 -0.06,-3.41 -0.23,-2.54 3.39,-0.15 4.84,0.19 1.61,1.06 2.73,-0.14 3.06,-1.53 3.5,-0.73 -3.71,-2.71 -0.94,-4.78 1.26,-1.58 1.46,-3.53 1.66,-5.25 1.87,-0.08 4.5,0.45 5.83,-0.67 3.38,-2.47 0.39,-1.08 2.06,-4.74 -0.07,-3.68 3.61,-0.12 5.55,-2 2.01,-0.73 1.36,-1.84 0.69,-3.03 1.72,-0.3 3.13,-2.8 4.63,-0.88 2.1,-0.43 3.19,-3.79 5.72,-2.13 1.86,0.27 3.48,-0.14 4.91,-1.34 1.13,0.91 3.3,2.59 2.84,-0.19 0.52,-2.11 0.19,-4.13 -1.34,-5.56 0.21,-1.88 -0.41,-3.2 -2.41,-2.31 -3.75,0.79 -3.52,-3.61 -1.44,-5.34 -1.16,-1.18 0.95,-3.15 0.91,-4.03 0.97,1.07 1.62,2.76 3.31,1.25 2.63,0.04 0.96,3.97 3.56,3.72 1.62,0.4 4.28,1.15 3.63,-1.59 0.15,-2.51 3.33,0.05 4.25,-2.28 2.39,1.02 4.13,-0.89 6.19,-1.31 1.67,-0.64 2.9,-1.73 4.59,-0.28 0.86,1.73 4.44,1.23 3.34,-0.97 2.96,-0.22 3.03,-3.89 6.13,-3.81 1.12,-1.22 2.87,1.16 3.09,-1.13 2.54,-0.93 1.88,-3.3 1.06,-5.25 0.54,-1.73 2.09,-3.22 2.78,-5.09 0.35,-2.33 -3.38,-2.26 -3.56,-4.69 -1.48,-1.57 -3.46,-2.39 -4.84,-4.16 0.27,-1.97 -1.22,-3.82 -0.66,-5.75 1.75,-2.42 -1.83,-2.52 -3.09,-3.34 -1.24,-1.6 -4.57,-1.91 -4.63,-4.75 0.22,-1.3 -0.53,-2.5 -1.44,-2.38 0.77,-0.55 1.38,-1.18 1.16,-2.34 -0.04,-1.75 1.82,-1.78 2.78,-1.88 0.32,-1.93 2.75,0.19 3.94,-1.25 1.92,-0.72 2.67,-2.72 3.47,-4.44 1.07,-1.81 -0.82,-3.57 -1.31,-5.25 -1.54,-0.97 -2.37,-4.41 -4.38,-3.38 -2.46,1.2 -1.22,-2.53 -0.81,-3.63 0.45,-2.38 -5.15,-0.61 -4.47,-3.47 0.63,-1.52 0.3,-3.29 1.16,-4.69 1.66,-1.42 2.02,-3.73 0.13,-5.19 -1.28,-1.29 -2.79,-3.08 -0.72,-4.31 1.13,-1.5 0.53,-3.98 -1.56,-4.13 -2.01,-0.66 -4.04,-1.44 -6.19,-1.44 -2.47,0.62 -5.49,-0.55 -7.47,1.56 -1.52,1.73 -3.77,1.96 -5.91,2.13 -1.97,0.39 -2.97,2.4 -4.34,3.69 -1.65,1.56 1.06,2.55 0.25,4.16 -0.09,2.18 3.53,0.6 2.25,2.91 -1.49,1.45 -3.65,2.15 -4.84,3.94 -0.54,2.24 -3.42,2.72 -5.28,1.91 -1.74,0.51 -3.53,0.73 -5.31,1.13 1.53,-0.7 2.61,-2.7 0.88,-3.75 -0.92,-2.11 2.74,-3.25 4.44,-3.5 3.3,0.13 0.55,-3.33 2.31,-4.84 1.05,-1.66 2.38,-4.09 0.03,-5.38 -1.53,-2.11 -3.81,-0.86 -4.75,1.03 -1.87,1.05 -2.36,3.25 -3.81,4.63 -1.35,1.27 -3.12,4.03 -5.78,3.22 -1.93,-0.56 -4.98,1.07 -4.41,-2.25 -0.76,-1.18 -2.82,-1.78 -3.59,-2.53 -1.5,1.09 -1.87,3.05 -3.88,3.69 -1.35,2.09 -5.96,0.7 -3.69,-2 -0.13,-1.17 -2.22,0.33 -2.06,-1.72 -0.53,-0.8 -0.76,3.05 -1.06,0.88 -0.55,-1.56 -1.99,-2.97 -1.66,-4.47 -1.69,-0.63 -3.46,-1.38 -2.41,-3.31 -1.67,-0.94 -4.57,-0.63 -4.84,-3.19 -0.77,-2.9 -3.6,-0.35 -5.34,-0.31 -2.42,1.93 -4.07,-2.75 -6.44,-0.84 -0.29,-0.08 -0.47,-0.33 -0.63,-0.56 z m 1.38,137.94 c 2.48,0.28 2.22,2.93 4.59,3.22 -0.38,1.33 -2.81,1.87 -2.81,3.91 -0.59,3.17 -3.26,0.45 -5.16,1.06 -0.4,-1.03 -0.63,-2.47 -0.56,-3.44 1.53,-1.47 1.22,-3.81 3.66,-4.41 z", + "region-93" : "m 548,394.72 c -2.38,0.66 0.14,3.66 -2.03,4.59 -1.72,2.79 1.36,4.23 3.66,3.34 2.39,-0.55 0.1,3.64 2.59,4.03 0.47,1.76 0.32,4.2 -0.38,6.03 -1.48,-0.46 -3.08,-2.39 -4.31,-0.34 -2.25,0.76 -5.02,-1.36 -6.72,0.91 -1.11,1.7 -2.56,1.95 -3.88,0.47 -0.55,1.28 -4.21,1.51 -1.84,3.06 -0.94,2.26 -4.25,2.96 -6.38,2.25 -1.23,0.91 -1.36,3.17 -0.59,4.31 -1.22,2.28 -3.09,2.69 -5.5,3.16 -1.63,-1.42 -3.66,-0.25 -2.81,1.75 -0.72,1.97 -3.55,4.8 -0.25,5.88 1.2,0.81 1.12,1.94 -0.28,1.84 -0.36,2.15 -2.09,2.59 -3.75,1.28 -1.52,-0.34 -5.11,-2.61 -4.06,0.56 -0.41,1.39 2.92,2.83 0.38,3.09 -1.92,-1.14 -2.36,0.43 -1.34,1.94 -0.48,1.59 1.38,2.76 2.88,3.31 1.63,-0.31 3.03,1.39 4.88,0.66 1.62,0.26 -0.6,2 1.28,2.59 -1.05,2.29 3.34,0.82 2.17,3.08 0.1,1.26 -0.93,4.3 0.23,4.18 -1.44,0.42 -1.76,2.19 -2.9,0.77 -1.2,-1.89 -3.41,-0.48 -2.34,1.28 -1.15,1.03 -3.24,1.96 -3.59,3.63 -0.25,-0.96 -1.62,-1.18 -2.38,-1.81 -0.01,-2.28 -4,-1.04 -2.94,-3.84 0.24,-2.27 -2.29,-1.23 -3.59,-1.47 -1.07,-0.69 -2.7,-2.08 -3.25,-0.41 -1.82,0.23 -4.44,-0.81 -3.41,-2.94 -1.52,-1.18 1.51,-2.73 0,-3.5 -0.77,1.1 -2.2,2.65 -3.63,1.69 -1.1,-2.3 -2.93,-0.01 -4.5,0.34 -1.39,0.4 -2.62,1.74 -4.19,1.22 -1.3,-0.02 -2.71,3.54 -3.53,1.34 -0.4,-1.69 -0.01,-4.12 -1.78,-5.13 -0.57,-0.28 -1.13,-0.48 -1.78,-0.41 -1.19,0.91 -3.87,-0.8 -3.66,1.44 -0.73,2.05 0.8,3.61 1.06,5.47 -0.11,0.77 2,0.05 1.44,1.41 1.54,2.17 -0.7,4.93 0.41,7.13 0.94,0.88 2.16,-0.09 2.81,1.53 0.92,1.17 1.41,2.61 2.56,3.59 1.05,1.11 0.24,2.15 -1.06,2.19 0.2,1.77 -1.23,3.32 -2.73,3.84 -1.29,2.45 -1.68,0.97 -4.67,4.38 1.41,0.89 -0.84,2.14 0.09,3.63 0.42,2.15 -2.07,3.51 -1.69,5.72 0.86,1.45 -0.17,2.58 -1.63,1.53 -1.97,-1.55 -4.68,-0.42 -5.31,1.69 -1.63,1.04 -2.16,4.13 0.44,3.75 0.06,2.02 -2.9,1.67 -3.34,3.31 -1.75,0.99 -3.64,1.22 -4.5,2.81 -1.75,0.17 -4.98,3.13 -2.06,3.97 2.99,-0.17 5.9,1.41 8.88,0.56 2.1,-0.36 4.56,-0.11 6.16,1.38 1.4,1.7 -2.48,3.85 0.47,4.91 1.67,0.45 3.47,0.17 5.19,0.41 1.54,-0.09 3.75,0.56 4.88,-0.31 0.04,-2.31 -3.27,-2.38 -3.94,-4.38 -0.37,-2.14 0.45,-4.38 -0.31,-6.5 -0.27,-0.91 -2.07,-4.59 -0.28,-2.16 1.58,2.03 1.39,4.68 1.03,7.06 -0.44,2.92 3.28,3.57 4.97,5.19 2.32,-0.03 -1.88,-2.78 1.22,-3.16 1.7,-0.98 3.71,-0.9 5,0.78 2.12,-0.03 4.81,-1.93 3,-4.13 -2.29,-0.91 -1.95,-4.33 -0.97,-5.22 1.18,1.76 4.95,0.12 3.94,3.25 1.13,1.96 3.21,1.18 4.72,0.53 1.52,1.99 -1.57,3.81 -3.03,4.84 -1.9,0.72 -4.26,-0.43 -5.91,1.16 -1.75,1.59 0.46,4.43 2.47,4.22 2.62,-0.1 5.4,0.47 7.91,-0.44 1.54,-1.44 4.7,-1.73 4.94,0.97 -0.14,1.58 -0.17,2.96 0.5,4.25 -1.22,1.5 -0.89,3.6 1.41,3.31 2.25,-0.5 4.61,0.98 6.53,0.16 1.1,1.57 2.76,3.17 4.56,1.5 2.91,-0.26 1.33,-0.92 2.22,0.59 -0.02,1.61 1.89,3.03 3.53,2.53 0.63,0.64 0.56,1.77 1.88,1.59 0.19,0.99 -2.68,1.22 -1.13,2.53 1.43,0.36 3.77,3.21 4.47,0.28 0.46,-1.06 3.11,0.27 1.75,-1.19 -1.19,-0.66 -2.06,-1.92 -0.13,-2.22 1.14,-0.04 1.61,1.68 3.16,1 1.73,-0.39 2.65,1.89 4.53,0.69 2.33,-0.05 2.26,3.12 -0.06,3.09 1.01,0.28 3.45,0.88 4.16,-0.09 -1.41,-0.84 -0.65,-3.02 0.06,-4.19 1.81,-0.51 4.14,-1.09 5.91,0.03 0.9,0.75 1.79,2.99 3.06,1.38 -1.33,-2.25 0.73,-4.1 2.94,-4.34 1.82,-0.15 3.7,-0.23 4.81,-1.91 1.53,-0.99 2.63,0.46 3.19,1.5 1.86,-0.28 1.14,-2.69 3.09,-2.91 -0.25,-0.86 -1.21,-2.01 0.22,-2.75 2,-2.05 -1.75,-2.01 -3,-1.59 -2.62,-0.25 0.69,-1.84 1.75,-1.97 0.92,-0.9 0.58,-2.8 2.41,-3 1.27,-1 0.92,-2.99 1.38,-4.44 1.32,-1.24 3.42,1.1 5.13,-0.25 1.94,-0.35 4.81,-3.07 2.84,-4.69 0.95,0.46 2.28,0.08 1.88,-1.53 0.05,-1.74 2.24,-2.35 3.66,-2.25 1.4,-0.6 3.03,-1.95 4.31,-0.47 0.92,-1.55 -0.14,-3.61 0.66,-5.28 0.47,-2.1 3.38,-1.04 4.03,-3.03 0.72,-1.31 3.11,-1.17 4.22,-0.94 0.41,1.87 1.39,-0.15 1,-1.09 1.14,-0.12 2.61,-0.31 2.25,-2.03 0.47,-1.55 1.97,-1.33 2.75,-0.41 1.62,-0.12 1.33,-2.49 3.22,-2.44 0.12,-1.52 -1.18,-3.11 -1.22,-4.78 -0.33,-2.13 2.96,-2.32 2.78,-4.5 0.2,-2.18 2.79,-2.46 3.91,-4.09 1.16,-1.41 0.76,-3.43 2.5,-4.53 1.68,-1.83 -0.81,-3.39 -1.59,-4.88 0.1,-1.29 0.76,-4.59 -1.66,-3.22 -1.26,1.94 -3.98,1.28 -5.91,2.41 -1.51,0.57 -3.08,1.13 -4.69,1.28 -1.89,0.43 -2.52,-1.59 -4.03,-1.94 -2.04,0.55 -3.04,-1.82 -4.88,-2.31 -1.02,-1.04 -2,-2.12 -3.59,-1.63 -1.13,-0.99 -2.65,-2.58 -4.34,-1.81 -2.02,0.21 -1.92,-2.24 -2.78,-3.34 -1.88,-1.1 -1.6,-3.59 -3.53,-4.66 -0.06,-0.14 -0.21,0.11 -0.25,-1.31 -0.43,-1.8 0.92,-3.38 2.13,-3.88 -1.19,-1.88 -3.78,-3.31 -3.41,-5.91 0.82,-2.4 3.86,-3.29 4.41,-6 0.44,-1.01 0.06,-2.42 -1.06,-2.59 0.65,-0.26 1.29,-0.56 1.81,-1 0.67,-2.95 6.21,1.07 4.19,-2.81 -2.19,-1.97 -1.76,-5.16 -1.75,-7.72 -1.52,-2.46 -4.33,-1.95 -6.63,-1.66 -2.02,-1.18 -4.01,-2.55 -5.81,-4 -0.48,-1.92 0.49,-3.92 -0.22,-5.88 -0.38,-2.63 -4.73,-0.19 -4,-3.66 -0.57,-1.87 -2.47,-5.81 -4.59,-2.97 -1.36,0.43 -3.55,-0.41 -3.06,2 -0.06,2.84 -3.64,0.47 -5.25,0.41 0.16,-2.01 -1.7,-4.09 -3.81,-2.69 -0.55,-0.15 -0.84,-0.68 -1.38,-0.88 z m -59.16,46.06 c -1.34,0.86 -2.93,1.53 -2.88,3.41 -0.68,0.82 -1.64,1.75 -0.5,2.59 -1.2,2.34 2.22,1.85 3.59,2.34 1.48,-0.54 1.63,-2.54 2.38,-3.81 0.79,-0.35 2.98,-1.64 0.84,-1.78 -1.64,-0.52 -1.51,-2.57 -3.44,-2.75 z", + "region-26" : "m 416.38,178 c -0.09,0 -0.21,0.03 -0.31,0.06 -1.02,3.01 -4.51,0.42 -6.34,1.97 -2.2,0.17 -4.83,-1.19 -6.41,1.03 -2.57,-1.79 -3.94,2.42 -3.25,4.38 1.68,1.97 -0.57,4.6 -2.41,5.5 -1.87,0.69 -2.44,2.93 0.06,3.28 3.44,0.48 2.16,5.15 5.03,6.44 1.86,1.41 0.81,2.98 1.94,4.97 -0.66,1.96 -2.63,3.27 -4.19,4.59 -2.15,0.99 -1.2,3.07 -0.28,4.28 -1.27,1.6 0.91,4.33 -2.31,4.25 -1.68,2 -6.04,-0.22 -5.91,3.16 -0.16,1.79 1.75,0.84 2.06,2.41 1.23,1 1.49,2.38 2.38,3.59 -1.59,1.67 0.33,4.31 2.09,5.13 1.36,0.34 0.24,0.49 -0.59,-0.06 -1.93,0.57 -4.68,0.43 -5.94,1.69 1.17,1.4 2.06,2.94 2.69,4.63 1.41,1.6 0.64,3.6 -0.16,5.28 -1.13,1.89 -2.63,4.76 0.47,5.69 1.61,1.55 3.42,2.82 3,5.31 0.69,2.02 1.62,3.99 1.91,6.16 0.66,1.8 -0.92,4.43 1.25,5.56 2.12,1 -0.1,3.52 0.91,5.03 0.58,2.1 -1.62,3.94 -0.31,6.06 0.71,2.09 -0.92,3.84 -1.38,5.75 -0.16,2.28 2.07,3.67 3.97,4.25 1.45,1.18 2.99,4.61 5.06,2.22 1.39,-2.15 3.2,-1.4 4.22,0.47 1.89,0.79 3.51,-3.54 5,-0.91 1.15,0.73 0.12,3.43 2,3.06 0.82,-1.25 2.27,-2.28 3.44,-2.13 -0.45,-1.58 -0.46,-2.4 1.31,-2.25 -0.04,-1.1 -0.2,-3.77 1.47,-2.03 1.28,-0.83 1.92,1.84 0.59,0.91 0.57,3.06 3.65,4.81 4.22,7.81 0.75,1.41 1.19,3.46 1,5.06 2.04,1.85 5.27,-0.02 5.81,3.28 1.08,1.35 3.61,-1.11 4.91,1.13 2.56,1.38 0.03,4.03 0.38,6.06 0.06,1.87 1.72,4.92 -1.22,4.69 -0.63,1.31 -3.77,1.55 -2.13,3.66 -1.04,1.85 -0.29,4.33 2.16,3.69 1.09,1.48 2.44,3.3 4.28,1.41 2.27,-2.66 4.91,2.5 6.72,-0.66 1.34,0.75 3.64,-0.04 2.69,2.22 1.65,0.02 3.16,-2.01 5.16,-2 1.19,-2.22 0.14,-5.87 2.63,-7.28 2.52,0.05 4.6,3.81 6.38,0.47 0.58,2.51 2.94,1.41 3.28,-0.53 2.49,-1.24 4,1.91 2.38,2.88 2.76,0.76 1.62,3.11 1.88,5.06 3.75,1.26 2.79,-4.69 4.38,-6.75 1.05,-2.9 1.5,-5.84 2.75,-8.66 0.84,-2.16 1.03,-4.89 2.59,-6.5 1.57,0.12 3.16,-0.62 4.22,1.22 2.7,1.53 7.1,-3.93 8.31,0.81 1.01,2.83 4.29,2.1 6.38,1.09 2.34,0.51 4.16,-2.31 1.19,-2.97 -1.86,-1.31 -1.38,-5.17 1.06,-5.09 -0.29,-1.51 0.25,-2.26 1.31,-3.13 -1.26,-2.48 -1.09,-5.01 -3.19,-7.16 1.37,-1.38 0.91,-2.69 -0.97,-3.28 -2.12,-3.08 4.28,-2.05 5.28,-3.09 -2.01,-1.05 -2.54,-4.31 -5.09,-3.16 -2.06,-0.25 -1.36,-4.82 -3.91,-3.03 0.08,-1.67 -0.34,-4.37 -2.72,-3.03 9.3e-4,0.78 -0.25,0.19 3.03,-0.97 1.29,-0.68 2.18,-1.61 0.53,-2.31 -0.4,-3.73 4.95,-2.46 5.59,-5.38 0.99,-2.18 2.82,-4.19 2.56,-6.5 1.77,-1.75 0.38,-4.84 2.5,-6.44 -0.95,-0.58 -2.64,-1.01 -1,-2.28 0.09,-1.58 0.38,-4.2 -2,-3.25 -1.24,-1.39 0.1,-5.58 -3.16,-4.34 -0.46,-1.01 1.12,-1.5 0.72,-2.66 1.66,-0.28 3.17,-0.36 3.75,-2.25 1.65,-1.75 0.28,-6.48 -2.25,-6.5 -0.68,1.44 -1.97,2.06 -3,2.03 -1.1,-0.38 -2.24,-1.73 -3.19,0.19 -1.11,1.75 -2.94,0.44 -2.19,-1.28 -0.65,-2.03 -3.71,-1.92 -3.25,-4.41 -1.58,3.05 -5.35,1.56 -6.19,-1.13 -0.91,-2.23 -2.24,2.2 -3.59,-0.19 0.08,-1.59 0.77,-4.65 -1.66,-4.47 -0.04,-1.89 5.08,-2.47 2,-4.81 -1.06,-1.58 -1.96,-3.49 -3.19,-5.19 -1.04,-0.38 -2.4,2.55 -3.06,0.19 2.11,-0.98 1.08,-3.94 -1.22,-3.09 -1.29,-0.86 0.45,-3.41 -2.28,-2.97 -2.36,-0.57 -4.25,-0.93 -6.75,-1.56 -1.95,0.11 -3.54,1.99 -2.16,3.66 -2.49,1.1 -5.44,0.72 -8.06,0.84 -2.13,-0.11 -4.95,0.4 -3.47,3.25 -0.93,1.29 0.2,-0.42 -1.34,-0.75 -2.2,0.32 -2.21,-2.86 -3.25,-3 0.17,2 -0.71,2.08 -1.81,0.91 -1.33,1.07 -2.8,2.86 -4.13,0.78 -1.05,0.35 -1.81,1.8 -3.16,0.44 -1.52,0.35 -3.33,0.3 -5.13,0.56 0.09,-1.31 1.53,-4.11 -0.41,-4.47 -0.29,2.73 -3.58,-0.65 -1.03,-0.91 -1.81,-2.12 -2.59,-4.78 -3.66,-7.41 -1.51,-0.41 -2.48,-0.8 -1.75,-2.59 -1.08,-1.86 -1.78,2.42 -3.78,1.16 -0.25,-1.72 -1.49,-3.76 -3.25,-2.47 -1.89,-0.87 2.48,-2.38 0.41,-3.69 2.2,-1.9 -1.21,-2.95 -1.41,-4.72 -1.76,-1.44 -2.82,-5.28 -5.84,-4 -1.36,1.45 -1.28,-1.99 -2.66,-1.97 z", + "region-21" : "m 482.06,60.78 c -1.24,1.53 -2.96,2.67 -4.19,4.19 -2.61,0.85 -1.45,3.67 -1.94,5.63 -0.38,2.67 -3.5,2.01 -5.25,3.06 -1.78,1.03 -3.51,2.66 -5.75,2.31 -2.01,-0.47 -4.03,-0.8 -5.94,-1.63 -2.18,-1.07 -5.68,1.32 -3.94,3.53 2.27,0.8 0.7,3.6 -0.09,5.06 -0.22,1.15 -0.72,3.46 -0.19,3.94 2.34,1.86 -1.58,4.31 -2.94,5.53 -2.32,0.59 -0.76,4.67 -3.53,3.88 -2.19,-0.91 -2.9,1.61 -1,2.56 0.93,1.15 0.03,2.2 0,3.28 2.33,1.24 -2.55,2.94 -0.59,4.91 1.73,1.58 -1.34,2.03 0.06,3.69 0.69,0.8 0.59,-0.01 0.25,0.72 -0.85,1.01 -1.06,4.16 -2.81,2.13 -1.58,-0.94 -4.15,-2.71 -5.56,-0.59 -0.47,1.86 -1.99,2.53 -3.66,1.63 -2.11,0.93 -4.61,1.62 -6.38,2.88 -0.53,2.28 1.53,4.25 0.5,6.59 1.8,0.71 2.48,2.18 3.97,3 -0.94,2.45 -4.12,0.39 -5.91,1.53 -1.7,1.66 2.41,4.39 -0.88,5.41 -2.23,2.44 5.5,0.7 2.69,3.66 -2.5,1.8 -2.99,5.43 -5.91,6.75 -2.49,1 -1.19,4.96 -2.88,6 -1.36,-0.13 -2.85,0.18 -1.28,1.25 -0.7,1.1 -2.96,2.55 -0.28,3.03 3,1.24 1.09,4.26 0.72,6.31 0.94,1.84 3.99,-0.47 4.72,2.19 -0.43,1.32 -0.78,0.84 -2.28,2.16 -2.73,0.52 0.34,3.89 -2.69,3.91 -1.65,-0.53 -1.6,0.54 -0.78,1.56 1.13,1.8 -3.04,0.96 -1.25,3.06 0.42,1.28 -0.32,2.48 1,3.47 -1.08,1.82 0.39,3.41 2.03,2.16 1.85,0.1 2.84,1.82 3.75,3.16 1.48,1.39 2.14,3.14 3.41,4.59 -1.41,1.17 0.78,2.63 -1.13,3.5 -1.3,1.27 0.05,1.69 1.09,0.97 1.77,0.49 1.43,4.12 3.66,2.69 0.94,-0.2 0.66,-2.76 2.03,-1.09 0.65,0.86 -0.95,2.77 1.09,2.38 2.02,1.3 1.81,4.19 3.03,6.09 1.58,0.78 1.71,2.31 0.5,2.91 0.54,1.51 1.71,0.27 1.97,-0.31 2.56,0.7 -1.28,5.4 2.13,4.31 1.91,-0.23 3.38,-0.23 5.06,0.09 0.59,-1.33 1.97,-1.11 2.56,0.19 1.58,-0.22 2.92,-3.3 4.19,-0.97 0.61,-0.58 -0.3,-2.64 1.34,-1.56 -0.48,2.55 3.68,3.96 3.75,0.78 1.55,-0.59 3.75,-0.44 5.59,-0.63 1.75,0.63 3.69,-0.42 5.56,-0.41 0.29,-1.14 -1.6,-2.56 0.47,-3.03 1.86,-2.3 4.6,1.04 6.56,-0.69 0.26,0.05 0.56,-0.18 0.28,0.09 0.25,2.41 5.64,0.09 3.81,3.34 -0.25,1.39 4.64,0.53 2.81,2.97 -1.68,0.97 -0.12,3.13 0.63,1.09 2.69,-1.66 2.17,3.12 4.06,3.69 1.18,1.84 2.43,3.98 -0.56,4.81 -1.81,0.95 -0.48,1.61 0.72,1.69 1.1,1.35 -1.34,5.62 1.63,4.31 1.63,-1.99 2.74,0.58 3.16,1.72 1.59,1.44 3.76,1.44 4.59,-0.72 0.9,0.19 0.25,2.48 2.06,2.53 0.69,1.12 2.71,1.18 1.56,2.66 0.3,2.71 2.08,0.27 3.03,-0.44 1.42,-0.65 2.31,1.81 2.88,-0.44 1.04,-1.74 1.03,-4.77 3.75,-4 1.6,-1.14 3.56,0.94 4.63,-1.41 1.53,-1.73 1.57,2.71 3.72,1.25 1.9,-0.14 2.95,-1.34 2.19,-3.25 1.43,-1.27 0.78,-2.68 -0.38,-3.66 -0.36,-1.86 1.28,-3.09 2.84,-2.78 0.09,-1.65 1.04,-3.14 2.78,-1.91 1.89,0.14 0.95,-4.54 3.66,-3.31 0.78,-1.86 -1.65,-5 -3.63,-3.16 -2.15,-0.87 0.65,-4.13 -1.69,-5.38 -2.08,-0.99 -3.29,-3.61 -5.72,-3.13 -0.78,-1.43 1.74,-1.98 1.19,-3.5 1.49,-1.43 -0.02,-4.04 2.66,-4.09 0.87,-2.59 -4.13,-1.95 -3.41,-4.16 0.23,-2.18 -2.45,-1.79 -3.16,-1.75 -1.8,-1.38 -2.09,-5 -4.84,-4.5 -0.93,1.04 -3.31,1.86 -2.44,-0.53 1.81,-1.67 -2.53,-1.7 -0.13,-2.75 3.11,-1.15 -1.07,-3.22 -1.19,-4.59 -2.32,-0.43 -3.08,-3.25 -5.75,-2.97 -2.2,-0.41 -3.45,-2.38 -5.41,-3.25 -1,-0.87 -2.09,-2.25 -3.63,-2.31 -0.33,-1.23 -1,-2.41 -1.94,-0.91 -2.48,0.33 -1.07,-3.27 -1.22,-4.5 -1.26,-1.72 1.65,-2.53 -0.66,-4.38 -1.02,-1.86 -5.77,-3.19 -3.53,-5.53 1.95,-1.47 -1.09,-4.18 1.13,-5.78 1.48,-1.5 6.06,-1.28 3.63,-4.44 0.08,-0.05 1.84,-2.53 -0.16,-3.06 -3.37,1.1 0.97,-2.04 -0.44,-3.47 0.13,-2.66 -3.6,-5.31 -1.69,-7.59 -0.05,-1.17 0.9,-1.42 -0.5,-2.91 1.43,-0.97 3.17,-1.86 4.5,-2.69 -1.52,-2 -1.1,-5.7 1.75,-6.16 1.39,-0.71 -1.19,-2.05 0.69,-2.81 0.81,-2.16 -1.48,-3.72 -1.84,-5.84 1.6,-0.81 1.14,-3.15 2,-4.25 -0.08,-2.31 2.07,-1.25 2.72,-0.03 1.75,-0.02 3.3,-0.06 4.41,1.56 2.3,0.19 2.64,-3.44 5.09,-3.19 1.49,-1.51 -0.92,-3.03 -1.94,-1.38 -2.45,-0.56 1.15,-3.54 -1.97,-4.44 -1.17,-1.71 -3.05,0.7 -4.53,-0.56 -1.26,-0.27 -1.05,-1.58 -2.38,-1.47 -0.88,-1.51 -1.1,-3.88 -3.5,-3.53 -2.22,-0.27 -3.52,-3.42 -5.97,-1.44 -1.59,0.26 -4.08,-0.13 -2.88,-2.28 -0.7,-1.6 -0.78,-3.23 0.38,-4.75 1.08,-2.94 -3.71,-2.9 -3.44,-5.22 1.66,-1.87 1.38,-4.63 2.13,-6.72 0.47,-1.55 1.75,-1.78 1.81,-3.63 0.26,-2.46 -2.55,-0.11 -3.06,-2.5 z", + "region-31" : "m 377.5,0 c -3.43,1.47 -6.98,2.66 -10.72,2.44 -3.1,0.89 -6.3,1.61 -9.19,3.03 0.8,1.28 6.97,-1.14 -2.34,-0.13 -4.67,0.52 -9.22,1.97 -13.53,3.78 -2.62,1.21 -3.81,4.27 -6.75,5 -3.31,1.16 0.87,5.45 -0.72,8.03 -1.1,2.07 -1.79,4.43 -1.13,6.75 0.28,2.42 0.02,4.96 1.31,7.03 -2.1,2.06 -0.71,6.36 -1.75,9.34 1.02,1.95 3.49,2.59 4.78,4.31 2.63,0.04 5.26,-2.82 7.88,-0.78 1.48,1.06 3.49,3.43 4.94,1.34 2.53,0.17 -1.7,2.81 1.25,2.84 1.83,1.47 5.46,1.23 4.91,4.31 1.83,1.66 4.06,1.56 6.16,0.28 1.49,0.74 2.98,-1.47 4.28,0.06 1.29,-0.11 0.37,-2.57 1.84,-0.78 1.06,2.83 2.17,-1.71 4.19,-0.09 1.81,-0.02 3.82,3.17 0.84,3.09 -2.82,0.39 -4.83,5.19 -1.25,5.81 0.43,-1.96 3.39,-4.56 4.69,-1.88 0.95,0.06 0.96,-2.21 2.38,-0.91 -1.29,2.63 2.5,1.38 3.75,2.66 1.01,0.02 2.8,1.43 1.69,-0.5 0.03,-2.85 2.71,-0.51 3.78,-0.19 0.17,1.65 -2.94,5.59 0.5,3.59 1.5,-1.55 3.47,-2 3.75,0.66 0.78,1.86 3.16,-1.88 4.69,-0.22 1.46,-0.95 3.63,-0.91 4.72,-0.15 1.9,1.74 3.89,2.45 5.94,1.56 2.26,-1.32 5.08,2.02 6.88,-0.69 2.98,0.44 6.13,1.89 8.41,-1.06 1.98,-0.29 4.46,2.95 5.69,-0.34 2.9,-1.43 5.98,1.3 9.03,1.19 1.53,2.96 3.47,-0.57 5.81,0.03 -1.87,3.96 3.7,3.72 6.25,4.13 2.29,-0.95 -0.65,-4.31 2.59,-4.78 2.82,-0.8 0.91,-4.83 -0.56,-5.75 -3.06,0.67 -0.12,-3.85 -0.06,-5.38 1.87,-1.24 2.82,-4.01 -0.19,-4.25 -1.07,4.16 -2.09,-2.66 -4.38,-2.69 -1.69,-3.72 -4.83,-0.59 -7.63,-0.72 -2.37,-0.85 -5.7,-2.48 -7.81,-0.09 -1.66,4.51 -4.18,-2.38 -2.94,-4.66 0.52,-3.52 -3.25,-7.39 -6.78,-5.75 -1.77,0.07 0.31,-3.59 -2.47,-2.13 -2.41,2.31 -6.09,2.01 -8.28,-0.47 -0.77,-2.54 -0.39,-5.31 -1.88,-7.78 0.28,-2.25 0.28,-4.4 -2.31,-5.22 -0.57,-2.79 -2.95,-5.34 -5.75,-3.47 -2.32,0.87 -5.89,0.77 -6.5,3.63 -1.2,3.14 -4.3,-0.53 -6.47,-0.63 -1.62,-2.75 -3.48,-6.45 -7.19,-5.84 -1.19,-1.96 -1.71,-5.46 -1.09,-7.13 2.22,-2.65 -1.65,-4.22 -2,-6.53 C 378.48,2.6 378.59,1.01 377.5,0 z", + "region-41" : "m 508.47,97.41 c -1.09,2.05 -3.62,1.84 -4.56,4.16 -2.06,1.9 -3.21,-2.61 -5.44,-0.84 -1.22,-0.12 -2.64,-3.24 -3.13,-0.5 0.16,1.18 -1.23,2.02 -0.94,3.53 -0.98,0.86 -1.69,1.56 -0.25,2.59 0.87,1.11 1.38,3 1.09,4.25 -1.92,0.65 1.05,2.67 -1.31,3 -1.85,0.5 -3.02,3.3 -1.5,4.84 2.03,2.44 -5.45,1.89 -3.13,4.72 1.73,1.94 -2.71,2.05 -0.97,4.19 1.12,2.15 2.37,4.53 2.09,7 -0.73,0.97 -0.79,2.06 0.63,1.56 1.91,0.63 0.24,2.81 -0.25,3.22 2.97,1.13 -0.51,3.94 -2.44,3.81 -2.83,0.92 -1.21,4.12 -1.41,5.91 -2.27,0.76 -1.56,3.13 0.5,3.44 0.78,2.04 3.85,2.48 3.34,4.91 -1.03,1.56 0.33,2.54 -0.66,4.19 -0.41,2.22 1.46,2.8 2.69,1.28 0.35,1.45 0.98,2.82 2.72,2.31 1.09,2.08 3.52,2.55 5.06,4.34 2.27,0.9 4.8,0.88 6.22,3.16 2.51,0.35 2.84,2.78 4.16,4.07 0.18,1.56 -4.48,1.85 -0.63,2.75 -1.78,1.06 -0.17,4.08 1.16,1.75 2.93,-1.33 3.22,2.39 4.88,3.84 0.91,1.42 2.93,-0.64 3.63,1.69 -0.71,2.15 1.42,2.14 2.78,2.94 0.78,1.08 1.51,2.72 -0.56,2.47 -0.84,1.28 -0.49,3.15 -1.59,4.28 0.81,1.2 -2.55,2.08 -0.53,2.81 2.09,-0.91 3.19,2.33 5.13,2.81 2.36,1.3 0.12,4.13 1.53,5.44 1.54,0.44 2.35,-2.59 2.84,-0.06 0.68,2.6 2.59,0.64 2.94,-0.97 2.15,-1.68 1.28,1.08 0.69,1.97 1.78,-0.62 3.6,-1.91 4.47,-3.91 1.23,-1.14 3.61,-1.49 4.97,-1.19 1.42,1.44 -0.11,4.06 2.34,4.41 1.59,2.64 3.59,-1.32 5.56,-0.06 2.15,-1.17 4.72,-0.41 6,1.59 0.64,1.74 1.57,3.2 3.34,1.75 1.6,-0.75 3.18,-4.53 5,-1.72 1.23,2.37 3.96,3.34 6.13,4.66 1.42,0.78 2.18,3.61 4.22,2 2.04,-0.21 3.21,-1.94 2.16,-3.75 1.27,-2.36 0.32,-6.03 2.66,-8.19 2.71,-0.63 2.22,-4.22 4.34,-5.63 2.03,-1.71 -0.83,-4.01 1.34,-5.81 1.63,-1.7 1.83,-4.2 3.22,-6.03 1.11,-1.35 2.74,-4.19 -0.06,-4.34 -1.71,0.99 -4.63,-1.26 -2.47,-2.78 -1.57,-2.1 1.28,-4.86 0.25,-7.13 -1.03,-0.23 -0.28,-1.19 -1,-1.44 -0.68,0.29 -0.14,-0.47 -0.44,-0.75 -0.4,-3.01 1.27,1.11 5.69,-1.94 2.54,-1.28 3.63,-5.48 3.97,-7.28 -3.58,-1.29 -0.16,-3.78 0.28,-6 1.57,-2.39 -1.82,-4.04 -3.41,-4.91 -0.92,-0.46 -2.85,-2.67 -3.34,-0.41 0.04,1.34 -2.72,3.67 -3.47,1.97 1.42,-1.19 -2.33,-1.17 -0.66,-2.88 0.58,-0.42 2.92,-0.77 1,-1.22 -1.9,0.22 -3.07,-2.28 -5.31,-2.09 0.36,-1.47 -1.95,-2.92 0.66,-2.5 -0.24,-2.46 3.11,-1.18 2.78,-3.66 0.97,-1.9 0.89,-5.07 2.81,-5.94 1.56,0.28 -0.21,2.24 1.03,3.06 0.44,2.29 3.08,1.43 4.38,2.97 2.08,-0.63 3.44,0.95 4.44,2.22 2.35,0.41 4.6,-1.02 6.97,-0.91 1.74,1.66 4.79,2.7 5.41,-0.5 0.03,-2.29 3.08,-4.05 1.91,-6.13 -1.64,-1.28 -4.25,-0.4 -4.94,-3.09 -1.46,-0.89 -0.27,-4.1 -2.88,-3.22 -1.94,-1.81 -3.96,-0.43 -5,1.53 -1.63,0.41 -2.99,2.35 -4.94,1.09 -2.43,0.91 -4.5,-0.47 -6.56,-1.34 -0.06,2.16 -3.18,2.67 -2.81,0 0.36,-3.27 -3.35,-4.29 -5.78,-4.78 -1.02,0.19 -3.84,-0.21 -2.5,1.88 0.56,3.34 -3.79,1.81 -5.53,1.16 -1.66,-0.89 1.41,-3.24 -1.34,-3.13 -1.25,-2.69 -3.38,-5.31 -5.63,-7.63 -0.97,-1.2 2,-2.73 -0.66,-3.56 -1.56,-1.24 -0.91,-3.44 -3.28,-4.09 -1.88,-1.38 -4.07,-1.79 -6.22,-0.88 -2.51,-0.28 -4,-3.64 -6.72,-2.88 l -0.16,0.03 -0.06,-0.03 c -2.5,-0.46 -3.78,2.24 -5.5,3.13 -2.04,0.13 -5.36,1.51 -5.56,-1.88 -0.59,-1.44 -4.32,-0.37 -1.75,-0.13 6.4,8.39 -4.28,8.77 0.41,3.13 1.39,-4.07 -3.95,-2.74 -4.75,-5.91 -0.79,-0.88 -1.98,-1.2 -3,-1.72 -1.67,3.08 -5.74,-1.97 -6.63,2.41 -1.05,-0.08 -3.37,-1.42 -4.28,0.56 -1.19,-0.11 -1.91,0.37 -2.25,1.13 -0.01,-0.13 -0.06,-0.34 -0.16,-0.63 -0.19,-2.1 -0.51,-4.34 -1.91,-6.25 -0.32,-0.62 -0.83,-1.2 -1.56,-1.31 z", + "region-42" : "m 586.13,133.28 c -1.58,0.23 -0.4,2.18 -1.72,3.13 -0.53,1.32 -0.49,4.02 -1.78,4.5 -1.51,0.02 -3.73,3.48 -1.63,4.38 1.94,0.49 3.53,1.75 5.28,2.28 -0.53,0.75 -3.05,0.85 -1.84,2.56 1.17,0.35 1.66,0.71 0.88,1.56 2.9,0.8 2.45,-4.08 5.06,-3.5 0.08,1.99 2.93,1.1 3.25,2.09 0.08,1.35 3.5,2.12 2,4.19 -0.63,1.68 -2.44,3.57 -2,5.16 0.83,1.05 2.94,0.71 1.31,2.25 -1,1.88 -1.1,4.47 -3.13,5.69 -1.49,1.59 -3.4,2.15 -5.47,1.5 -1.5,-0.11 -1.19,1.4 0.16,0.88 1.61,0.28 1.03,1.44 -0.22,1.38 1.72,1.32 0.19,3.7 0,5.66 -0.32,1.37 1.25,2.63 -0.53,3.53 0.55,1.82 2.88,1.71 4.34,1.38 0.98,0.08 0.7,1.6 0.76,2.69 -1.65,1.36 -2.24,2.73 -3.14,4.75 -0.4,1.82 -2.18,2.92 -2.53,4.75 -1.33,1.4 1.34,1.6 0.25,2.88 -0.93,1.83 -2.95,3.03 -3.06,5.22 -0.53,1.75 -3.15,1.49 -3.13,3.25 -0.66,1.37 -1.22,3.06 -0.75,4.66 -0.41,1.17 -1.67,2.16 -0.53,3.44 0.71,1.97 -2.41,1.71 -3.06,2.97 -0.01,2.42 2.59,2.3 4.19,3.09 1.23,0.9 2.75,1.35 3.94,2.28 0.75,1.15 0.29,2.81 0.84,4.22 0.01,1.63 -1.95,1.8 -1.63,3.66 -0.16,2.76 3.71,-0.49 3.81,2.34 0.66,1.17 1.29,2.33 2.22,3.25 -0.26,1.35 -0.34,3.3 1.72,2.78 1.73,0.11 -1.35,2.87 0.69,3.56 1.21,-0.48 1.97,0.75 2.56,1.19 1.4,-0.54 2.92,-1.49 4.44,-0.84 1.79,0.56 3.17,-0.74 4.38,-1.84 1.37,-0.81 -1.77,-2.29 0.34,-2.25 1.11,1.41 3.17,-0.21 2.09,-1.59 1.35,0.23 1.88,-1.32 0.41,-1.53 0.05,-1.19 2.26,-1.14 2.66,-2.5 2.32,-0.26 0.57,-3.01 -0.22,-4.06 -1.18,-1.03 -2.5,-2.49 -1.91,-4.19 1.12,-1 1.79,-2.5 0.84,-3.94 -0.75,-1.85 0.36,-3.7 1.28,-5.22 -0.2,-1.24 -0.59,-2.58 0.78,-3.28 -0.03,-1.74 0.43,-3.15 1.69,-4.41 0.99,-1.53 -0.1,-3.22 -1.28,-4.25 -1.68,-1.54 -0.58,-3.95 -0.53,-5.88 -0.05,-0.53 -0.05,-0.78 -0.52,-0.9 1,-0.35 2.23,-1.39 2.36,-3.07 0.77,-2.6 3.86,-4.17 3.5,-7.09 -0.49,-2.51 3.84,-2.86 2.31,-5.53 -0.61,-2.16 0.06,-4.43 1.13,-6.31 -0.44,-2.54 2.88,-3.38 1.72,-5.97 -0.24,-1.77 -0.1,-3.58 0.78,-5.16 1.2,-2.36 4.12,-3.13 5.56,-5.34 0.93,-1.46 0.85,-3.74 3.25,-3.38 0.47,-2.65 4.31,-1.9 4.34,-4.97 0.46,-2.67 2.02,-4.89 3.41,-7.16 0.58,-0.8 2.66,-1.95 0.47,-2 -1.97,-0.34 -4.12,-0.64 -5.91,-1.63 -1.91,-1.34 -4.3,-2.4 -6.34,-3.16 -1.93,0.68 -3.88,0.6 -5.59,-0.59 -2.1,0.71 -4.3,0.32 -6.53,0.56 -2.49,-0.15 -2.66,2.95 -3.53,4.63 -0.5,2.61 -2.99,2.85 -4.69,1.16 -1.92,-1.57 -4.22,0.44 -6.31,0.41 -2.52,0.72 -2.77,-3.33 -5.5,-2.31 -1.48,-0.12 -2.6,-1.74 -4.31,-1.56 -0.6,-1.43 -1.26,-3.09 -1.06,-4.38 l -0.28,-0.03 c -0.13,-6.3e-4 -0.24,-0.02 -0.34,0 z", + "region-43" : "m 541.91,202.88 c -1.48,1.05 -4.3,0.24 -4.72,2.59 -0.74,1.61 -2.57,2.53 -4.03,2.94 -0.34,-0.77 1.77,-2.53 -0.13,-2.5 -0.99,1.61 -1.89,3.2 -2.41,4.94 -2.68,-0.87 -1.8,3.12 -3.25,3.5 -1.3,-0.7 -3.4,-0.74 -2.75,1.31 -0.88,1.21 -3.26,-0.03 -3.16,2.25 -0.46,1.62 2.57,1.94 0.91,3.63 -0.98,1.52 0.5,4.17 -2.22,4.09 -1.57,0.85 -3.25,0.21 -3.47,-1.56 -1.37,0.18 -2.07,2.82 -3.91,1.41 -1.24,0.85 -3.18,-0.03 -4.03,1.06 0.43,1.42 -2.57,3.53 -0.44,4.25 0.89,-1.83 2.68,-2.69 3.75,-0.38 0.5,1.68 1.76,4.17 -0.06,5.47 -0.69,1.13 -1.66,2.49 -3.19,1.78 -1.3,0.54 0.73,1.51 -0.69,1.81 -0.5,1.32 2.31,0.21 2.25,1.84 -0.45,1.42 -0.22,4.26 1.97,3.19 1.12,0.71 0.51,3.24 0.09,4.44 2,0.74 2.24,2.05 1.59,1.69 -1.89,1.19 -1.39,3.31 -1.88,5.28 -0.64,0.76 -1.53,1.44 -0.91,2.59 -0.09,2.24 -2.24,3.15 -2.59,5.25 -0.78,2.29 -3.95,1.21 -5.03,3.41 -1.54,1.4 0.69,1.67 1.06,2.56 -1.89,0.73 -2.98,2.37 -2.5,4.31 0.13,1.42 2.54,-0.58 2.41,1.59 0.08,2.38 2.07,2.37 3.72,2 0.66,0.84 0.66,2.24 2.22,2.19 2.43,0.87 -0.07,3.08 -1.69,1.94 -1.17,0.08 -2.56,0.6 -3.38,1.25 0.11,1.68 4.22,2.09 1.78,4 -0.64,1.56 1.6,1.33 1.53,2.91 0.07,1.18 -0.14,1.58 0.81,2.44 0.19,1.36 1.44,2.54 -0.31,3.53 -0.67,0.75 0.36,2.66 -1.63,2.5 -1.19,0.8 -1.33,4.35 1,4.72 2.68,1.66 -1.11,3.55 -2.81,2.97 -1.59,0.44 -1.07,2.34 -1.06,3.44 1.19,0.84 3.27,1.23 2.47,3.03 0.35,0.78 1.76,2.87 2.41,1.16 0.08,1.37 1.23,2.02 2.19,1.81 0.32,1.28 -1.45,3.91 1.22,3.44 2.17,0.36 3.07,-1.83 4.78,-2.44 -0.05,-1.35 2.19,-3.35 2.53,-1.41 1.91,0.51 3.27,1.45 2.94,3.66 1.58,0.41 3.83,0.19 5.69,0.41 2.04,-0.37 2.87,-2.19 4.06,-3.31 1.59,-0.86 1.86,-3.63 3.84,-4.44 0.79,-1.41 2.47,-2.27 3.03,-3.69 -1,-2.03 0.83,-3.26 1.53,-4.97 0.09,-1.12 3.26,-3.18 0.84,-3.09 -0.77,-1.17 0.92,1.4 -0.09,-1.81 1.33,-1.8 3.4,-2.99 4.88,-4.72 1.55,-1.95 4.01,-2.54 5.84,-4.06 0.99,-1.82 5.28,-2.43 3.19,-5 -0.6,-1.98 1.83,-3.6 1.09,-5.66 -0.72,-1.81 -1.81,-3.32 0.31,-4.66 1.51,-1.44 3.86,-1.04 5.63,-2.09 1.98,-0.67 3.24,-2.47 4.94,-3.63 0.57,-0.92 -0.6,-3.57 1.72,-3.63 0.6,-2.37 3.98,-2.14 4.69,-4.5 1.07,-2.43 3.92,-3.29 5.06,-5.56 -0.36,-1.72 0.13,-3.47 2.28,-3.53 0.32,-1.83 3.75,-1.83 2.03,-3.97 -1.97,-1.19 -4.44,0.69 -6.69,0.22 -2.07,-0.27 1.24,-2.7 1.84,-3.41 0.22,-0.54 0.22,-1.05 0.13,-1.53 0.18,0.04 0.39,0.05 0.53,-0.03 0.83,-0.18 1.46,-0.79 2.25,-1.06 0.62,-0.6 -0.22,-1.43 -0.38,-2.06 -0.12,-0.36 -0.43,-1.06 0.19,-1.13 0.42,-0.08 0.79,-0.29 1.13,-0.47 0.96,0.2 1.83,0.89 2.88,0.69 1.1,-0.11 2.46,-0.61 2.44,-1.94 0.17,-1 -0.68,-1.62 -1.41,-2.13 -0.16,-0.46 -0.02,-1.1 -0.53,-1.41 -0.45,-0.55 -0.43,-1.7 -1.38,-1.72 -0.72,-0.12 -1.45,0.05 -1.94,0.59 -0.4,0.24 -0.29,-0.53 -0.59,-0.63 -0.31,-0.79 -0.35,-1.73 0.09,-2.47 0.16,-0.36 0.01,-1.12 0.63,-1 0.41,0.01 0.39,-0.35 0.41,-0.63 0.61,-1 -0.16,-2.16 -0.31,-3.16 0.23,-0.47 0.39,-1.05 -0.09,-1.44 -0.8,-1.1 -2.3,-1.18 -3.28,-2.06 -0.38,-0.36 -0.85,-0.58 -1.34,-0.59 -0.84,-0.67 -2.11,-0.35 -2.91,-1.13 -0.45,-0.63 -0.76,-1.4 -0.97,-2.13 -0.05,-0.04 -0.09,-0.07 -0.16,-0.06 -0.55,0.23 -0.51,0.99 -0.97,1.34 -1.01,0.37 3.92,2.85 -0.59,-1.63 -1.1,-2.17 -3.71,-2.73 -5.59,-4.25 -2.21,-0.35 -2.46,-4.75 -5,-2.91 -0.65,1.93 -4.86,4.56 -5.25,1.25 -0.87,-1.44 -2.51,-3.08 -4.28,-2.97 -1.68,0.96 -3.66,-0.19 -5.13,1.22 -1.27,1.15 -2.33,0.4 -2.88,-0.84 -3.16,0.23 -0.06,-3.73 -2.81,-4.53 z", + "region-94" : "m 633.53,517.94 c -2.35,-0.01 -1.43,2.88 -1.09,4.28 0.7,1.81 -2.51,2.79 -1.13,4.66 -0.49,1.37 -1.42,2.72 -0.13,3.97 0.7,1.67 0.72,3.54 0.53,5.31 -1.04,0.77 -0.93,3.86 -2.56,3.13 -0.73,-1.62 -2.11,-3.04 -4,-3.03 -1.86,-0.3 -3.96,-0.02 -5.19,1.56 -1.27,1.17 -0.87,3.32 -2.75,3.91 -1.35,0.75 -2.96,0.9 -4.47,0.78 -1.63,0.44 -2.75,1.92 -4.5,2.06 -1.08,1.11 -1.59,3.82 -3.63,2.5 -2.28,-0.27 -0.71,2.9 -2.75,3.25 -1.77,0.65 -1.33,2.55 -0.72,3.72 -0.66,1.21 -0.31,3.41 -2.41,2.97 -0.67,0.62 -0.74,2.12 -1.28,2.47 0.95,0 -0.08,0.77 -1.5,0.16 -0.71,0.81 -0.14,3.58 1.19,2.03 1.32,-0.93 3.13,1.22 1,1.59 -0.01,1 1.97,1.01 2.59,2 2.68,1.95 -1.56,2.5 -3.03,2.97 -0.69,0.53 -3.15,0.81 -1.41,1.72 1.22,1.06 0.05,2.76 0.63,3.53 0.85,0.12 -0.88,1.14 0.28,1.69 0.95,1.15 2.74,1.36 3.78,2.44 2.1,-0.64 1.94,2.54 3.38,3.53 -0.02,1.76 -4.46,1.44 -3.63,3.94 0.68,2.57 -4.21,0.58 -2.84,2.81 1.83,0.44 -0.6,3.95 1.91,2.84 1.99,0.16 3.75,-0.51 5.28,-1.56 2.42,0.22 1.96,2.83 1.16,4.31 1.13,1.3 -2.4,1.11 -0.19,2.13 0.63,2.06 -3.8,1.36 -2.69,3.78 0.22,1.8 -4.34,1.47 -1.31,2.5 0.94,2.3 4.04,-1.68 4.06,1.25 0.12,1.47 2.47,0.33 3.34,1.44 1.12,-0.15 4.2,0.76 1.94,1.72 -0.87,1.64 -2.45,2.58 -4.41,2.63 -0.89,1.51 -0.2,3.28 -0.22,4.84 0.82,0.95 2.52,1.16 2.75,2.44 1.7,0.55 3,1.99 4.72,2.41 1.66,0.13 3.24,1.84 4.81,1.22 1.07,-1.21 -0.28,2.62 1.63,1.5 2.2,0.53 -1.6,3.3 1.28,3.44 1.58,0.19 2.49,2.77 4.28,1.63 0.89,-0.72 2.28,-4.22 0.03,-2.56 -0.14,-1.13 -0.24,-2.82 1.44,-3.19 2.06,-1.11 0.42,-3.26 1.22,-4.75 1.02,-1.38 3.26,-2.06 3.38,-3.97 -0.51,-2.43 -3.68,1.63 -3.16,-1.09 0.32,-2.31 2.97,-0.07 3.16,-2.25 2.28,-0.35 0.06,-3.4 2.22,-4.19 0.34,-1.98 -0.18,-4.06 0.09,-6.09 -1.11,-4.76 0.77,-0.51 0.31,-8.16 -0.47,-1.47 -0.31,-2.8 0.84,-3.88 0.84,-1.19 1.62,-2.44 2.13,-3.81 -1.58,-0.86 0.17,-2.38 1.22,-1.81 1.03,-1.08 2.34,-2.79 2.25,-4.19 -1,0.15 -2.17,-0.12 -0.78,-0.97 1.56,-1.35 1.27,-3.54 1.22,-5.38 0.1,-3.14 -0.11,-6.33 -0.94,-9.38 -0.32,-3.98 0.06,-7.96 -0.31,-11.94 0.24,-1.18 -0.65,-2.07 -1.69,-1.91 -1.43,-1.2 -1.57,-3.23 -2.16,-4.88 0.02,-1.82 0.21,-3.64 0.5,-5.44 0.35,-1.84 0.88,-3.67 1.41,-5.47 -0.1,-2.84 -1.11,-5.58 -1.06,-8.44 -0.76,-1.38 0.27,-3.67 -1.56,-4.41 -0.78,-0.33 -1.64,-0.33 -2.47,-0.31 z", + "region-01" : "m 29.7,299 c -1.87,1.62 -3.85,3.09 -5.8,4.6 -1.43,1.52 -0.11,4.46 1.17,5.6 2.13,-0.29 1.96,2.76 1.56,3.13 -0.94,0.26 -0.86,0.93 -2.23,0.75 -1.03,1.66 -1.29,3.62 -2.45,4.7 1.04,1.32 0.08,3.56 1.78,4.78 0.07,1.69 2.29,0.69 2.84,1.78 2.57,1.14 4.82,0.08 7.34,-0.38 2.38,-0.82 4.2,-1.85 6.78,-2.46 2.37,0.03 4.67,-0.43 6.92,-1.15 2.18,-0.06 4.33,0.34 6.48,0.62 2.37,0.69 -1.08,-1.04 -1.87,-0.73 -3.38,-0.38 -3.95,-4.08 -6.74,-5.2 -2.32,-1.36 -4.81,-0.91 -7.05,-1.44 -2.4,-1 -4.48,-4.07 -3.05,-6.6 0.27,-2.73 -1.51,-4.9 -3.7,-6.25 -0.49,-1.1 -2.18,0.21 -1.97,-1.73 z m -7.17,21.03 c 0.11,-1.09 -0.45,-1.63 -1.09,-1.6 1.7,-0.65 -2.37,-1.12 -2.11,0.41 -0.62,1.09 -1.76,0.26 -1.23,-0.66 -0.14,0.74 -1.86,1.51 -1.16,0.16 -1.87,1.19 -0.57,-2.14 -0.53,-0.23 0.53,-0.38 2.26,-2.49 0.24,-1.72 -2.07,0.4 -2.51,-2.1 -4.57,-1.54 -1.98,-0.8 -3.96,-1.34 -5.61,-2.88 -1.91,-0.59 -4.89,0.65 -5.15,3.01 -1.66,0.26 0.25,1.19 -0.95,1.74 -0.71,2.26 -0.52,4.57 1.52,6.1 -0.09,1.85 -0.15,3.66 0.81,5.04 -0.57,1.79 0.61,2.89 0.15,4.71 0.8,1.67 -0.36,3.89 1.54,5.38 0.67,2.38 2.22,3.96 3.95,5.62 -0.52,2.79 2.77,2.33 3.89,0.76 0.91,0.09 1.87,-0.69 3.16,-0.35 1.57,-1.07 2.52,-3.39 4.69,-4.38 1.9,-1.56 1.47,-3.64 1.43,-5.75 -0.18,-1.37 -1.46,-2.26 -0.25,-3.52 -1.49,-0.22 -1.13,-1.71 -1.93,-2.53 0.7,-1.4 -1.1,-2.18 -0.05,-3.66 -1.4,-2.35 2.33,-3 2.98,-1.09 1.78,-0.78 -1.18,-1.71 0.27,-3.01 z m 46.75,-7.55 c -2.05,0.7 -3.82,2.03 -5.88,2.72 -0.67,0.4 -2.43,0.86 -1.64,2.25 1.93,-1.3 4.48,-1.07 6.19,-2.82 1.64,-0.34 2.78,-0.69 1.33,-2.15 z m -23.09,28.1 c -2.49,0.56 -3.6,2.83 -4.31,4.93 -1.85,0.89 -0.59,4.21 0.59,5.34 1.72,0.81 3.58,1.63 5.49,0.98 2.2,-0.83 5.35,-2.33 5.09,-5.09 -0.59,-1.82 -2.8,-2.59 -3.39,-4.32 -1.07,-0.65 -2.48,-1.08 -3.47,-1.83 z", + "region-02" : "m 41.12,417.83 c 1.08,-0.51 0.39,-1.76 -0.57,-0.9 0.17,0.88 -1.41,-0.39 -1.27,-1.01 -1.24,-0.99 1.89,-2.22 0.44,-3.63 1.28,0.98 0.78,-0.99 2.05,-0.53 -0.37,-0.35 0.77,-1.14 -0.47,-1.12 0.04,-0.9 -0.95,0.65 -0.65,-0.43 -1.5,0.33 -2.35,3.48 -3.67,1.24 -0.33,-2.28 -2.52,0.16 -3.91,-0.8 -1.39,0.24 -2.33,-1.07 -3.57,-0.37 0.25,-1.05 -0.91,-1.38 -1.15,-0.52 -1.07,-1.01 0.24,1.52 -1.12,0.6 -0.49,-0.54 -0.75,-1.49 -1.33,-0.43 -1.1,-1.32 -3.62,-0.54 -4.2,0.97 -0.58,1.92 -2.17,0.41 -2.74,-0.58 -2.08,0.55 0.33,-2.63 -1.76,-2.44 -5.48e-4,-0.53 1.16,-1.07 -0.06,-1.42 -2.07,0.45 -0.47,-1.87 0.13,-2.37 0.62,-1.62 2.65,-0.37 3.18,-2.13 0.87,0.36 0.47,-1.74 1,-0.52 -0.64,1.14 2.43,-0.72 0.85,0.8 -0.4,0.92 1.34,0.72 1.64,1.17 0.97,-0.45 1.45,0.48 2.19,-0.49 0.85,0.34 1.33,-1.02 1.54,-1.07 0.26,-1.45 -2.92,-0.45 -1.99,-2.3 0.46,-0.94 -2.73,-1.2 -0.72,-2.06 -0.22,-0.83 -0.91,-0.31 -0.32,-1.22 -0.28,-1.25 -1.72,-0.04 -2.19,0.42 0.84,0.51 -1.42,1.49 -0.91,0.58 -0.58,-0.48 -1.39,0.67 -1.49,-0.49 -1.01,-8e-4 -3.19,0.56 -3.88,-0.97 -0.78,-1.26 -2.08,-1.97 -3.49,-2.28 -1.15,-0.83 -2.34,-1.58 -3.07,-2.86 -0.88,-1.77 -2.7,-3.11 -2.93,-5.17 -0.03,-1.4 1.44,-2.77 0.52,-4.11 -1.38,-1.67 -3.18,-2.85 -4.5,-4.46 -0.96,-1.27 -1.25,-3.03 -0.33,-4.41 0.77,-1.16 1.42,-2.66 2.96,-2.91 1.42,-0.6 2.51,-1.36 4.14,-1.34 1.94,-0.31 3.72,0.55 5.55,1 1.84,1.32 3.97,2.23 5.78,3.47 0.88,0.17 1.63,-0.49 2.29,0.47 1.2,-0.45 -0.22,1.09 1.16,0.77 0.55,0.84 0.95,2.15 2.18,1.32 0.46,0.47 -0.31,1.48 0.76,2.04 0.55,0.58 1.02,1.32 1.85,1.29 -0.17,1.12 2,1.82 1.83,3.36 0.87,1.99 1.35,-0.57 2.16,-1.09 1.4,-1.24 3.07,0.15 4.34,-1.28 1.3,-0.15 1.97,-1.87 3.28,-0.59 0.31,1.1 -0.19,2.01 -0.82,0.64 -1.26,-0.45 -1.99,0.91 -0.82,1.48 -0.66,0.53 -1.36,0.82 -0.16,1.39 -1.04,0.46 -2.2,0.46 -2.53,-0.69 -0.98,-1.09 -4.2,-0.24 -2.77,1.16 -0.07,-0.08 -1.31,0.94 -0.15,1.45 0.54,0.96 1.79,-0.77 1.13,0.65 -0.86,1.64 2.23,-0.74 1.71,0.68 -0.05,1.07 2.49,0.61 0.91,1.29 -0.54,0.71 -2.62,0.33 -2.44,1.52 -1.19,-0.96 -1.91,1.6 -0.65,1.89 0.96,1.92 1.98,-0.69 3.1,-0.19 0.53,-0.7 1.62,1.13 2.18,-0.26 1.09,0.7 -0.67,2.09 -1.68,1.55 -0.75,0.72 1.96,1.16 0.72,2.18 -1.01,0.96 0.44,1.05 1.02,1.19 -0.3,0.36 2.56,-0.58 1.17,0.24 -0.61,0.96 1.29,1.06 0.4,2.08 0.68,1.31 2.89,-0.39 2.41,1.68 1.13,-0.12 -1.31,0.7 0.07,1.12 0.45,-0.31 -0.09,0.75 0.96,0.4 -1.15,1.68 2.42,-1.51 0.96,0.45 -1.33,0.96 -0.09,1.54 0.49,2.31 -0.21,0.48 -1.59,0.45 -0.21,0.55 1.27,0.1 -0.04,1.32 -0.52,1.19 -0.46,1.05 0.15,1.15 0.92,0.8 0.51,0.76 -0.16,2.24 1.12,2.39 0.9,1.14 -0.09,1.68 -0.67,1.77 0.66,0.76 0.79,1.51 -0.18,2.18 0.29,1.26 -1.18,2.05 -1.49,2.98 -0.77,-0.72 -1.83,-0.35 -0.75,0.49 0.39,0.2 0.85,0.97 -0.05,0.52 -1.06,0.12 -1.08,2.05 -2.33,1.55 -0.14,0.12 -0.36,0.31 -0.56,0.15 z", + "region-03" : "m 8.71,468.07 c 0.65,-1.02 1.07,0.28 1.13,-0.79 0.6,-1.37 1.44,-3.03 0.93,-4.38 -1.66,0.13 -0.96,-2.54 -2.78,-2.38 -0.6,-0.96 -1.5,-1.7 -1.87,-2.73 -1.18,-0.67 0.75,-2.15 -1.08,-2.39 0.53,-1.57 -0.71,-2.9 -0.71,-4.39 1.24,-0.95 -0.25,-2.77 -0.39,-3.83 0,-1.65 0.37,-3.36 1.62,-4.57 0.78,-1.59 2.45,-2.29 3.72,-3.41 1.25,-0.94 1.5,-2.32 1.8,-3.75 0.65,-0.4 1,0.91 0.34,-0.26 0.06,-1.37 3.02,-0.59 2.9,0.84 0.82,-0.03 1.05,1.48 0.59,0.08 -0.99,0.16 -0.71,-1.46 -1.36,-1.44 1.6,0.69 3.18,1.47 4.8,2.1 1.33,0.32 2.78,0.17 4,0.85 -1.36,-0.48 -0.37,-0.97 0.4,-0.29 1.17,0.73 3.53,0.91 3.51,2.46 0.15,-0.44 -0.92,-1.82 0.32,-0.98 1.44,0.61 2.5,1.73 3.63,2.7 0.86,0.47 0.91,0.83 0.28,1.24 0.68,-0.75 2.44,1.17 3.52,1.74 0.99,0.55 1.3,1.55 -0.1,1.43 -0.9,0.02 1.24,-0.07 1.05,0.04 0.89,-1.67 2.77,0.32 1.04,1.07 -0.22,0.58 -0.66,1.9 -0.09,0.47 1.05,-2.28 3.22,0.37 4.41,1.15 0.62,1.46 1.88,3.86 -0.2,4.74 -1.09,-0.08 -2.47,1.1 -2.94,1.37 1.28,-1.39 3.58,-0.74 4.43,-2.59 -0.11,-1.14 -0.29,-4.42 1.62,-2.67 0.78,1 0.87,3.03 1.64,3.51 -0.36,1.37 1.94,2.42 0.64,3.98 -0.88,0.91 -1.94,1.45 -2.28,2.82 -1.35,1.08 -2.13,1.89 -2.81,3.44 -0.72,1.18 -1.63,2.27 -2.32,3.48 -0.66,1.57 -3.27,2.04 -2.6,4.08 -0.47,1.63 -1.6,2.37 -2.12,3.98 -1.14,1.19 -0.58,2.64 -1.58,3.75 -0.94,1.49 -2.65,1.97 -4.04,3.01 -0.89,1.67 -2.64,1.09 -4,0.49 -0.92,0.05 -2.79,0.91 -1.61,-0.51 -0.85,-1.69 -2.58,-0.7 -3.74,0.09 -1.12,-0.05 -3.37,-0.46 -3.6,-1.1 -0.48,-1.26 -1.35,0.32 -1.85,0.37 -0.51,0.22 -0.76,0.52 -1.24,0.65 -0.2,1.31 -2.14,0.51 -2.39,1.77 -0.99,0.4 -1.37,-0.86 -2.43,-0.3 -1.27,0 -1.69,-1 -2.99,-0.94 -1.07,-0.36 -0.91,-1.62 -1.81,-1.66 0.75,-0.08 1.5,0.21 1.41,-0.85 1.82,-0.45 2.27,-2.16 3.1,-3.6 1.14,-1.2 1.62,-2.64 1.67,-4.27 -0.34,-0.76 0.11,-1.81 -0.59,-2.19 0.12,-0.6 0.6,-1.04 1.04,-1.43 z", + "region-04" : "m 6.55,518.47 c -0.78,1.45 -2.64,1.3 -3.67,1.73 -0.99,0.7 -1.49,1.6 -0.68,2.68 -0.71,1.55 0.53,2.89 1.77,3.65 0.93,1.16 2.29,2.18 2.27,3.78 1.62,0.39 1.26,2.73 0.7,3.93 0.45,1.49 1.2,2.88 2.74,3.48 1.08,0.59 1.53,1.64 1.59,2.6 1.58,0.71 3.59,0.34 5.04,1.47 1.1,1.14 2.04,2.73 3.9,2.49 0.94,0.35 1.57,1.68 2.8,1.36 0.41,0.86 2.31,0.21 3.21,1.12 1.44,0.09 2.25,1.23 3.54,1.09 1.35,0.11 2.51,-0.11 3.53,0.99 1.15,0.16 2.43,-0.77 3.36,0.25 0.97,-0.65 2.13,-0.39 3.06,-1.1 1.71,0.47 3.22,-0.48 4.88,-0.5 1.4,-0.53 3.03,-0.16 4.19,-1.51 1.57,-1.15 0.29,-3.12 0.62,-4.69 -0.36,-1.46 -0.16,-2.97 0.21,-4.43 0.05,-1.5 1.91,-2.21 1.43,-3.7 1.44,0.27 0.59,-1.52 0.63,-2.21 -0.35,-1.08 -1.04,-1.57 -2.06,-1.88 -0.88,-1.15 -2.6,-0.49 -2.96,-2.18 -1.08,-1.2 -2.34,-2.37 -3.22,-3.72 0.44,-1.22 -1.09,-2.15 -1.97,-2.71 -0.85,-1.32 -0.31,-2.94 -0.71,-4.36 -0.6,-1.39 -1.75,-2.36 -2.73,-3.46 -1.17,-1.09 -2.77,-1.02 -4.16,-1.47 -1.38,-0.92 -2.99,-1 -4.56,-1.16 -1.75,0.65 -3.41,-1.15 -5.14,-0.63 -1.66,0.9 -2.84,-1.39 -4.3,-0.66 -1.84,-0.3 -3.75,0.39 -5.21,1.5 -1.17,0.67 -2.02,1.64 -3.1,2.36 -0.47,0.42 -1.58,-0.1 -1.2,0.65 -1.11,0.28 0.14,-0.7 -1.09,-0.23 -1.02,-0.1 -2.71,-0.7 -1.94,0.71 -1.38,0.63 -0.02,2.61 -0.46,3.77 -0.09,0.33 -0.08,0.76 -0.33,1.01 z", + "region-06" : "m 49.48,582.55 c -1.09,1.5 -3.13,3.73 -4.29,3.49 -0.04,1.14 -2.37,-0.07 -1.41,1.23 1.85,0.72 3.9,1.95 4.4,4.11 -0.1,1.08 1.24,1.43 1.82,1.86 -0.65,-1.36 -0.49,-3.36 1.48,-3.55 1.1,-0.6 -0.97,-2.5 0.97,-2.4 -0.79,-1.8 -1.36,-3.15 -2.75,-4.67 l -0.22,-0.08 -4e-6,0 z m -25.87,43.4 c -1.57,0.66 -2.04,-0.42 -2.69,-1.5 -0.96,0.2 -2.68,1.53 -2.26,-0.56 -0.29,-2.1 -3.3,-0.98 -2.96,1.01 -1.62,-0.83 0.04,-2.33 -0.71,-3.6 1.64,-0.91 -0.12,-3.97 -1.08,-1.71 -1.63,1.31 -2.55,-0.9 -4.24,-0.25 0.82,-1.56 3.2,-1.18 3.96,-2.88 1.01,-1.3 1.13,-5.01 -1.46,-3.23 -1.62,0.66 0.17,-1.25 -1.53,-1.26 -0.93,-1.21 -0.93,-3.41 -2.47,-3.89 1.47,-0.76 4.49,-0.99 5.8,-0.12 1.15,1.3 -0.49,4.45 2.29,4.33 1.9,0.37 2.98,2.44 5.05,1.92 2.41,0.01 1.95,-2.86 1.45,-4.39 -1.22,-1.08 -1.51,-2.15 -2.04,-3.65 -1.59,-1.05 -3.84,-1.95 -4.25,-4.13 -1.32,-0.69 -3.52,-1.33 -3.97,-2.87 1.54,0.04 1.54,-2.04 3.24,-1.32 2.23,0.16 0.64,-1.78 -0.71,-1.32 -2.76,-0.15 1.21,-3.79 -0.77,-4.49 -1.17,-1.17 -0.41,-2.93 0.99,-3.08 -0.81,-0.3 -2.36,0.07 -2.38,-1.41 -0.73,-0.83 1.72,-0.73 1.2,-2.07 0.52,-1.02 -0.6,-2.24 -1.17,-0.74 -1.08,-0.02 -2.3,-1.56 -3.73,-0.67 -1.38,-1.12 -2.95,-3.83 -4.66,-1.87 -0.45,-1.03 -3,-1.58 -1.11,-2.91 2.35,-0.34 2.82,-4.03 -0.2,-2.95 -2.28,0.03 0.97,-1.22 1.01,-2.35 -0.21,-1.04 -0.06,-2.57 1.45,-1.8 1.15,0.24 2.14,-0.36 2.17,-1.33 1.37,0.02 0.77,-2.06 -0.41,-1.84 0.29,-0.76 3.75,0.79 2.93,-1.59 0.08,-1.65 2.69,-1.39 2.16,-3.05 1.08,1.03 2.85,-2.46 2.47,-0.48 -1.81,0.56 1.51,1.73 -0.75,1.56 -0.98,0.03 -3.73,1.55 -1.35,1.54 0.86,0.67 2.53,0.49 1.6,1.93 1.21,-0.17 2.2,0.81 1.8,1.89 0.87,1.21 3.54,0.7 3.54,2.06 -2.07,-0.6 -0.93,1.74 -8.76e-4,2.31 0.04,2.42 2.59,1.12 3.79,2.15 0.54,2.08 2.3,-0.27 2.8,-0.97 -0.78,-2.25 1.18,0.06 1.82,0.58 2.04,-0.22 3.89,0.64 5.99,0.59 0.47,1.45 2.5,-0.57 1.49,1.25 0.7,1.31 2.83,0.84 3.67,2.26 1.61,0.56 1.58,2.4 0.73,3.53 -0.86,0.86 -0.83,1.5 0.49,2.06 0.18,1.64 -2.47,0.32 -3.17,1.86 -1.49,0.3 -0.43,2.32 -2.07,2.69 -1.28,0.99 -1.03,2.78 -2.77,3.12 -1.51,0.97 1.38,1.21 -0.28,1.86 -1.29,1.06 0.47,1.9 0.16,2.96 0.48,0.72 1.17,0.81 1.64,1.7 0.58,0.53 2.15,0.13 1.18,1.39 0.07,1.56 3.14,-0.41 1.84,1.46 -1.63,0.49 0.52,1.96 -1.3,2.13 -0.96,1.27 -4.27,1.29 -2.85,3.7 -0.91,1.44 3.37,2.6 0.79,2.21 -1.19,-0.25 -4.04,-1.63 -3.48,0.73 -1.74,0.05 -1.93,1.8 -0.95,2.74 0.79,1.58 -2.92,-0.58 -1.9,1.79 1.5,1.03 1.09,3.24 3.21,3.52 1,0.24 1.78,1.35 3.05,0.64 0.56,0.98 -1.46,2.2 -2.15,2.56 -1.46,-1.46 -2.81,0.08 -2.47,1.36 -1.65,0.28 -0.51,-4.66 -3.13,-3.2 -1.69,0.47 -0.29,2.47 -1.63,3.31 -0.13,0.32 -0.41,0.54 -0.68,0.75 z m -2.2,-10e-4 c -0.08,2.44 -1.24,0.23 0,0 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/france/paris_districts.js b/lib/mapael-maps/france/paris_districts.js new file mode 100644 index 000000000..59b96ef69 --- /dev/null +++ b/lib/mapael-maps/france/paris_districts.js @@ -0,0 +1,48 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Paris by district + +* @author CCM Benchmark Group +* @source http://fr.m.wikipedia.org/wiki/Fichier:France_location_map-Departements.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps :{ + paris_districts : { + width : 867.55469, + height : 465.94473, + getCoords : function (lat, lon) { + // TODO + return {x : lat, y : lon}; + }, + elems : { + "district-75101" : "m 387.31065,229.36801 11.13736,4.76664 6.81561,5.00795 8.46022,10.02602 3.30159,3.39843 9.17115,4.60997 6.68777,-12.93169 13.99444,-38.40607 -47.32341,-17.0907 -13.99442,-3.64856 -14.3628,-4.41671 -3.49861,-2.68842 -2.57793,-2.88046 -4.41924,-4.60872 -15.83585,4.41668 -13.18122,31.0192 6.4606,2.07437 20.13297,11.32476 29.03177,10.02731 z", + "district-75102" : "m 446.58174,205.96922 13.54134,-35.71171 -55.0767,-12.89967 -44.39994,13.03544 6.64046,7.19667 4.16654,3.39463 11.97885,3.39465 8.46335,2.44417 6.64042,1.49364 48.04568,17.65218 z", + "district-75103" : "m 496.05972,180.03408 12.62982,28.65083 4.03629,41.55053 -9.37472,-2.85151 -7.35675,-2.86738 -5.5335,-2.15674 -9.11437,-5.83878 -8.33318,-8.6903 -9.37467,-6.92506 -16.14541,-5.56723 -3.64582,-1.22208 16.27567,-43.99465 32.29081,8.28294 z", + "district-75105" : "m 489.56799,341.2573 -38.82234,18.68629 -53.39986,-15.36241 28.81241,-87.30815 9.74654,4.88038 10.41942,5.555 5.73376,2.62523 7.5725,3.2266 6.26589,2.65684 6.7874,3.47302 7.28109,4.63522 3.18907,4.08698 8.8386,9.98557 7.84634,8.52512 -10.27082,34.33431 z", + "district-75107" : "m 324.5806,204.60623 7.38094,1.32652 6.21409,2.27525 20.01243,11.17063 18.68069,6.55508 8.69509,3.06037 -20.44221,45.88007 -7.27342,2.78446 -17.67722,13.82618 -11.41659,7.10512 -6.9972,6.14496 -8.93066,4.6087 -7.91794,-6.24096 -4.69546,-4.32069 -4.87965,1.63229 -5.33997,2.97644 -2.02555,0 -12.88963,-12.77001 -49.93184,-43.73362 3.00236,-5.00163 18.76171,-24.17562 14.41373,-7.83787 28.27191,-5.31633 z", + "district-75108" : "M 260.43936,209.8719 248.47049,168.29733 237.0539,147.65408 249.94352,120.86583 356.283,88.316696 l 0.46041,3.55255 -1.28902,5.56889 -1.02548,44.350194 1.82856,5.86574 -0.092,2.61009 -1.6445,1.73712 -9.51852,23.10289 -13.29141,31.06608 -7.19673,-1.5098 -34.49862,-0.10488 -29.57629,5.31633 z", + "district-75109" : "m 435.9225,164.50473 -30.88907,-7.20113 -58.92404,17.42674 -0.64443,-0.48007 -0.13817,-0.19204 9.299,-22.46754 1.74935,-1.44021 0.13804,-2.4964 -2.07155,-5.71291 1.01275,-44.695064 1.38101,-5.56888 -0.64443,-3.26452 5.06379,-1.68025 3.08426,-3.74459 1.97955,0 34.06545,13.53812 2.34777,0 30.01442,-9.02541 8.24018,-0.5761 0.18418,22.755624 -4.23527,22.32349 -0.87464,12.09793 -0.13816,20.40321 z", + "district-75110" : "m 440.71019,86.876456 20.89959,-2.6884 16.38826,-1.44023 3.77481,-0.76812 29.36989,0.48008 9.02285,12.38595 1.01268,24.291834 0.36833,2.01632 23.10927,32.06906 -6.35276,2.78445 -18.13752,11.04172 -5.70832,3.84066 -18.50582,9.12143 -3.86686,-1.72831 -32.22415,-8.16128 -23.93794,-5.66492 0.18416,-21.41134 0.82863,-11.90589 4.23528,-21.41139 -0.46037,-22.851624 z", + "district-75111" : "m 544.36576,153.14847 5.20814,7.06088 34.8949,42.63677 8.72374,29.05821 7.81233,3.39461 9.50495,7.06087 15.75475,31.09499 1.56243,12.35653 1.1719,4.61674 -47.52483,-8.55451 -13.80164,-0.81473 -19.92147,-5.15986 -5.98938,-1.0863 -17.44746,-8.6903 -10.80701,-7.19667 -4.68741,-50.10498 -12.62985,-28.78664 17.96826,-9.23345 8.59356,-5.56718 14.84336,-8.96193 6.77073,-3.12305 z", + "district-75112" : "m 676.86371,295.93344 -33.28182,-3.33281 -14.71313,-2.03681 -47.78523,-8.96187 -13.93201,-0.67891 -18.48905,-4.75253 -6.90088,-1.22205 -18.09853,-9.23344 -9.37469,-6.24614 -0.84379,0.0428 0.73648,6.04895 -1.74423,5.03828 -9.95625,28.61504 -2.53693,7.50813 21.26532,25.92914 17.51099,21.09681 15.42665,21.42906 20.8997,26.81607 10.1474,8.71519 13.00251,-10.90536 15.51912,-2.93603 12.79281,-7.54986 7.1304,0.20971 5.03326,4.40407 8.17899,11.7442 7.34014,5.24296 10.48587,2.72632 16.56771,0.20972 9.01792,5.03323 31.03825,-1.04858 20.97178,20.55236 -0.62915,3.14576 1.25832,1.67775 6.29153,-1.0486 3.14579,2.51663 -0.62917,4.61382 10.06644,-0.83891 7.75959,3.98466 28.73135,-1.25831 11.95399,5.45265 19.50367,-1.468 12.16369,-9.85676 13.00254,-45.71852 -2.72635,-0.41943 -3.77486,1.67774 0.83875,-16.98713 3.35558,-7.9693 6.92061,-7.1304 5.45276,-2.09719 2.09716,-16.14829 -7.1304,-13.42193 -10.69571,-14.05112 -7.1304,-4.61378 -21.60084,-5.87213 -34.39381,-6.72589 -2.09718,-5.0183 -19.02291,-0.87923 -1.73918,8.84853 -8.80815,-0.62916 -1.13547,15.92363 -17.0275,2.63947 -17.72426,-5.18151 -13.41143,-0.29661 -6.09235,-11.81615 -2.75178,-0.71601 -5.61148,5.31926 -0.62916,11.11505 4.19435,9.43731 3.98466,20.55236 -18.87462,10.48591 -7.96929,2.09718 -7.96927,-0.20973 -3.56524,-2.5166 5.87212,-5.87209 8.17899,-40.05614 2.93607,-16.98717 0.0232,-6.14101 z", + "district-75113" : "m 419.074,462.46003 2.30176,-7.7495 -5.34001,-15.65047 -1.74933,-13.44209 2.02546,-6.04898 -1.84131,-28.22847 -0.36834,-8.73735 2.94634,-32.45313 33.5129,9.69753 39.00652,-18.59916 10.37566,-34.44795 18.57479,22.37404 12.51636,14.87228 9.38843,12.0347 8.53932,12.00065 8.16093,10.80805 18.04055,22.71013 9.62357,8.96853 -12.5964,6.43108 -16.77744,9.85674 -10.48589,8.38871 -50.1226,24.11756 -8.59846,3.35549 -11.95391,-0.20973 -13.42197,-2.09716 -7.54984,-11.95395 -2.51661,0 -7.34013,6.29157 -9.64702,6.29154 -9.64704,-0.20975 0.20971,4.61381 -1.67773,-0.20972 -3.58828,-2.775 z", + "district-75114" : "m 284.16759,417.18377 2.60351,-10.48081 11.69268,-16.41859 5.98454,-7.39318 22.83305,-33.02921 15.65164,-19.87513 1.83025,1.44022 7.6305,-10.27361 44.76784,23.3317 20.07098,5.66488 -3.22239,32.35709 2.20961,37.15789 -1.93339,5.85694 1.84137,14.01821 5.24797,15.26639 -2.41945,7.67109 -5.3119,-2.48555 -32.71602,-0.41944 -0.62912,-9.43731 z", + "district-75115" : "m 136.27945,365.95718 36.99623,-57.46506 9.88224,-14.51853 14.92056,-14.16229 24.52588,-26.40159 1.5908,-4.92961 1.72885,-1.35178 46.02394,40.61187 16.11204,15.74645 1.84137,0 5.15597,-2.97642 5.06378,-1.7283 5.43202,4.80075 6.99721,5.47288 9.20685,-4.32068 30.751,16.03453 -7.82583,10.46564 -1.74935,-1.24819 -16.11203,20.73927 -22.28062,32.2611 -6.99723,8.2573 -10.77203,15.07437 -2.27621,11.3197 -14.08786,-5.04278 -29.15079,-10.27618 -13.21226,-6.29154 -15.93856,-12.79277 -21.18149,-11.5345 -3.14578,8.59842 -17.82601,17.82603 -18.03576,0.41944 -0.2097,-22.43983 8.80812,-6.71093 -8.38871,-6.71101 -15.84665,3.27424 z", + "district-75116" : "m 136.43034,365.64261 21.89657,-33.76694 24.9819,-38.00691 15.44484,-14.89631 24.00163,-25.77244 1.59075,-5.03448 3.72122,-6.48987 18.97733,-23.80029 8.44047,-5.03231 5.03381,-3.00396 -12.10914,-41.48259 -11.45801,-20.77526 -42.98203,-19.23786 -6.61099,1.5526 -66.48058,-13.42196 -11.95393,35.23265 -31.667404,-13.63169 -2.726328,-0.20974 -15.099705,24.32732 -26.214746,11.32477 -1.887462,-2.93606 -14.260821,19.71351 -7.549843,17.6163 L 0.5,239.15906 l 1.88746,10.06646 -1.048589,12.79282 52.010049,17.19687 9.227599,13.21222 25.585596,10.06646 10.69561,0.20971 0.41942,4.8235 -5.03322,9.64704 1.67777,4.4041 0.2097,19.29404 10.066475,12.16363 3.35547,9.01789 22.85927,3.98464 4.01773,-0.39583 z", + "district-75117" : "m 363.08078,5.968541 -1.73397,9.088581 -10.03546,53.672484 4.69547,17.66679 0,2.01631 -31.76368,9.69756 -17.21695,5.280814 -33.32886,10.17761 -23.75382,7.39318 -12.88962,26.69221 -41.48718,-18.96805 3.53619,-21.43958 2.72632,-6.92069 9.85679,-12.163664 26.63415,-20.34263 10.90535,-0.83886 44.25047,-34.81319 40.05618,-18.664901 10.48587,-6.710975 19.06274,-0.822999 z", + "district-75118" : "m 513.00815,1.105904 6.61851,16.120832 -0.13014,2.98731 -13.67148,53.09229 -6.38004,9.09765 -17.70797,-0.54312 -3.12488,0.95049 -17.83812,1.35786 -20.05151,2.98731 -7.94253,0.27158 -29.55656,9.09763 -2.99464,0 -33.9835,-13.4428 -1.82286,-0.1358 -2.86451,3.53044 -5.98948,2.17256 0.5208,-1.90101 -4.81758,-18.19529 10.15601,-53.907022 1.59131,-8.331257 31.75081,-0.992041 36.28121,-0.629153 18.66488,-1.677751 49.49344,-1.468026 13.79883,-0.442682 z", + "district-75119" : "m 654.64925,121.91773 -10.54658,5.43142 -11.06738,3.9378 -30.20754,2.30835 -17.0569,4.48092 -22.52546,8.41876 -18.61935,6.92506 -22.78584,-31.9097 -0.65096,-2.98729 -0.91151,-23.490974 -9.11437,-12.35653 -11.06739,-0.27156 -0.2604,-0.67892 5.72897,-8.01137 14.19238,-54.72174 -0.26041,-1.76522 L 512.92867,1.093858 566.94824,0.5 l 15.09968,5.24295 4.61381,0.419436 5.24296,2.306894 10.27618,10.066466 10.48589,22.64955 1.88748,14.05108 1.25827,13.42197 1.04862,5.6624 0.2097,16.5677 9.85676,15.938564 11.53447,5.03325 13.8414,4.82352 2.34579,5.23395 z", + "district-75120" : "m 676.00295,295.72369 -28.77538,-2.71571 -18.0984,-2.30835 -0.91151,-3.93778 -1.82285,-13.17126 -16.14539,-31.23078 -9.11437,-6.92506 -7.68213,-3.53042 -8.59353,-27.293 -0.52083,-1.76521 -17.18705,-21.31837 -18.09851,-21.45418 -4.42697,-6.65353 31.24918,-11.67758 10.67686,-3.93781 16.40582,-4.34514 30.20753,-2.17256 11.32791,-4.0736 9.97507,-5.2338 9.57926,17.77321 3.35547,13.2122 2.09719,68.99723 3.35548,16.77743 0.20974,14.0511 5.24295,29.15083 -2.30555,13.78214 z", + "district-75104" : "m 426.29692,256.983 6.95864,-13.75639 10.63729,-29.19277 19.43689,6.76531 9.94175,7.30081 7.65326,7.98124 9.53375,6.27709 12.22592,4.76579 10.01824,2.87286 0.74632,9.55098 0.71724,5.89095 -8.65484,25.06433 -3.06352,8.8076 -2.66877,8.03598 -20.10624,-23.20731 -14.45727,-8.21103 -12.10952,-5.14819 -7.15696,-3.2718 z", + "district-75106" : "m 385.36011,228.92237 13.36451,5.41552 6.79698,5.11043 11.38451,12.9959 9.18772,5.02391 -28.81041,87.05141 -44.77522,-23.75014 -30.94211,-15.94484 7.18831,-6.23465 11.05367,-6.87926 18.57483,-14.25673 6.29888,-2.41138 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/netherlands/netherlands_provinces b/lib/mapael-maps/netherlands/netherlands_provinces new file mode 100644 index 000000000..ff769cdc8 --- /dev/null +++ b/lib/mapael-maps/netherlands/netherlands_provinces @@ -0,0 +1,40 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* @Author Timo Hutjens +* Map of the Netherlands by Provinces +* +* @source http://upload.wikimedia.org/wikipedia/commons/d/d5/Provinces_of_the_Netherlands.svg +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + netherlands : { + width : 200, + height : 236, + getCoords : function (lat, lon) { + // @TODO + // Implement the required code to convert the lat / lon to x / y coordinates + }, + elems : { + "Drenthe" : "M 161.05556,30.326251 L 160.28093,30.713711 L 159.89361,31.101171 L 159.89361,31.488641 L 159.11898,31.876101 L 158.34435,32.263561 L 157.95703,32.651021 L 157.95703,33.038481 L 157.56972,33.425941 L 157.1824,34.200861 L 156.79508,34.588321 L 156.79508,34.975791 L 156.02045,36.913091 L 156.02045,37.300551 L 156.02045,38.462941 L 155.63314,38.462941 L 155.24582,40.012781 L 154.8585,40.012781 L 153.69656,39.625321 L 153.30924,40.400241 L 154.47119,41.175171 L 155.63314,41.175171 L 156.40777,41.562631 L 156.02045,42.725011 L 156.02045,43.887391 L 156.02045,44.274861 L 156.79508,45.437241 L 158.34435,47.762011 L 158.73166,48.536931 L 159.11898,49.311851 L 159.5063,49.699311 L 158.34435,51.636621 L 158.34435,52.024081 L 157.95703,52.411541 L 157.56972,52.799001 L 156.40777,53.961391 L 154.8585,55.123771 L 153.30924,53.573931 L 152.14729,53.573931 L 150.98534,53.186461 L 150.21071,53.573931 L 150.21071,53.961391 L 150.21071,54.348851 L 149.43608,54.736311 L 148.27413,56.286151 L 147.88682,56.673621 L 147.4995,57.061081 L 145.95024,57.836001 L 145.17561,58.610921 L 144.01366,59.385841 L 144.40097,60.160771 L 144.40097,60.548231 L 145.56292,61.710611 L 145.95024,62.098071 L 146.72487,62.872991 L 147.11219,63.260461 L 147.4995,63.647921 L 147.88682,64.422841 L 148.27413,64.422841 L 147.88682,65.197761 L 147.4995,65.585221 L 146.72487,66.360151 L 146.72487,66.747611 L 146.33755,66.747611 L 145.95024,67.135071 L 144.78829,67.522531 L 144.40097,67.909991 L 144.01366,67.909991 L 144.01366,68.297451 L 144.40097,69.072371 L 144.78829,69.847301 L 145.17561,70.622221 L 145.17561,71.009681 L 145.17561,71.397141 L 145.95024,72.559531 L 145.95024,72.946991 L 146.72487,73.334451 L 146.72487,73.721911 L 146.33755,74.109371 L 147.4995,74.496831 L 147.11219,74.109371 L 147.4995,73.721911 L 147.4995,74.109371 L 147.88682,74.496831 L 147.88682,74.109371 L 148.27413,73.721911 L 148.66145,73.721911 L 149.04876,73.721911 L 149.43608,73.721911 L 149.43608,74.109371 L 149.8234,74.109371 L 150.21071,74.109371 L 150.59803,74.109371 L 150.59803,74.496831 L 150.98534,74.884291 L 151.37266,74.884291 L 151.37266,75.271751 L 151.75998,75.271751 L 152.14729,75.271751 L 152.14729,74.884291 L 152.53461,74.884291 L 152.53461,75.271751 L 152.92192,75.271751 L 153.30924,75.271751 L 153.69656,75.271751 L 154.08387,74.884291 L 154.47119,74.884291 L 154.8585,74.884291 L 154.8585,75.271751 L 154.47119,75.271751 L 154.47119,75.659221 L 154.8585,75.659221 L 154.8585,76.046681 L 155.24582,76.434141 L 155.63314,76.434141 L 156.02045,76.821601 L 156.40777,76.821601 L 156.40777,77.209061 L 156.40777,77.596521 L 156.79508,77.596521 L 156.79508,77.983981 L 157.1824,78.371441 L 157.1824,79.146371 L 157.56972,79.533831 L 157.95703,79.533831 L 157.95703,79.146371 L 158.34435,79.146371 L 158.73166,79.146371 L 158.73166,78.758911 L 159.11898,78.758911 L 159.11898,79.146371 L 159.5063,79.146371 L 159.5063,78.758911 L 159.89361,78.371441 L 160.28093,78.371441 L 160.28093,78.758911 L 160.28093,79.146371 L 160.66824,79.146371 L 161.05556,79.533831 L 161.44287,79.146371 L 161.83019,78.758911 L 161.83019,78.371441 L 162.21751,78.758911 L 162.60482,79.146371 L 163.37945,79.146371 L 163.76677,79.146371 L 164.15409,79.533831 L 164.5414,79.533831 L 164.5414,79.146371 L 164.15409,76.821601 L 164.92872,76.046681 L 165.70335,75.271751 L 166.09067,74.884291 L 167.63993,74.884291 L 168.80188,74.496831 L 169.18919,74.496831 L 169.18919,74.109371 L 169.96383,74.496831 L 170.73846,74.884291 L 171.51309,75.271751 L 173.06235,76.046681 L 173.83698,76.046681 L 174.2243,76.434141 L 173.83698,76.821601 L 173.83698,77.209061 L 173.83698,77.596521 L 173.83698,77.983981 L 174.2243,77.983981 L 174.61162,77.596521 L 174.99893,77.596521 L 175.38625,77.209061 L 175.77356,76.434141 L 176.5482,76.434141 L 176.93551,76.434141 L 177.32283,76.046681 L 177.71014,76.046681 L 178.09746,76.046681 L 178.48478,76.046681 L 178.87209,76.046681 L 179.25941,76.046681 L 179.64672,76.434141 L 180.03404,76.046681 L 180.42136,76.046681 L 181.19599,76.046681 L 181.97062,76.046681 L 182.35793,75.659221 L 182.74525,76.046681 L 183.51988,76.046681 L 183.9072,76.046681 L 184.68183,76.434141 L 184.68183,76.821601 L 185.06915,76.821601 L 185.84378,76.821601 L 186.23109,76.821601 L 186.61841,76.821601 L 187.39304,76.821601 L 187.78036,76.434141 L 188.16767,76.434141 L 188.55499,76.821601 L 188.94231,76.434141 L 188.94231,76.821601 L 189.32962,76.821601 L 190.49157,77.209061 L 190.87889,77.209061 L 191.65352,76.434141 L 191.65352,76.046681 L 191.65352,75.271751 L 191.65352,73.721911 L 192.04083,69.847301 L 192.04083,64.810301 L 192.04083,62.485531 L 193.20278,60.160771 L 192.04083,60.160771 L 192.04083,59.385841 L 191.65352,58.998381 L 190.87889,57.836001 L 190.49157,57.836001 L 190.49157,57.448541 L 189.32962,57.448541 L 189.32962,57.061081 L 190.10425,54.736311 L 190.49157,54.348851 L 190.49157,53.573931 L 189.71694,53.573931 L 189.32962,53.186461 L 188.94231,52.799001 L 188.55499,52.024081 L 187.78036,50.861701 L 187.39304,50.861701 L 187.39304,50.474241 L 187.00573,50.474241 L 186.61841,49.699311 L 186.23109,48.924391 L 185.84378,48.536931 L 185.45646,48.149471 L 185.45646,47.762011 L 185.06915,47.374551 L 184.29451,46.599621 L 183.51988,45.824701 L 183.13257,45.437241 L 181.19599,43.499931 L 180.03404,42.337551 L 178.87209,41.175171 L 178.87209,40.787701 L 177.32283,39.625321 L 176.93551,38.850401 L 175.38625,37.688011 L 175.38625,37.300551 L 174.99893,37.300551 L 174.61162,36.913091 L 174.2243,36.913091 L 173.83698,36.913091 L 172.67504,36.913091 L 171.9004,37.300551 L 171.51309,37.300551 L 169.57651,38.075481 L 169.57651,37.688011 L 169.18919,37.300551 L 169.57651,36.913091 L 169.18919,36.913091 L 169.18919,36.525631 L 168.80188,36.138171 L 168.41456,35.750711 L 168.02725,35.363251 L 168.02725,34.975791 L 167.25261,34.975791 L 167.25261,34.588321 L 166.8653,34.200861 L 166.8653,33.813401 L 166.8653,33.425941 L 166.09067,33.813401 L 165.70335,33.425941 L 165.70335,33.038481 L 165.31603,31.876101 L 164.92872,32.263561 L 164.5414,31.876101 L 164.15409,30.713711 L 163.37945,30.713711 L 162.99214,30.326251 L 162.60482,30.713711 L 162.21751,30.326251 L 161.83019,30.326251 L 161.05556,30.326251 z M 192.04083,59.385841 L 192.42815,59.385841 L 192.42815,58.998381 L 192.04083,59.385841 z ", + "Overijssel" : "M 144.01366,59.385841 L 142.85171,60.160771 L 142.46439,60.548231 L 142.07708,60.935691 L 140.91513,60.935691 L 140.52781,60.935691 L 140.91513,61.710611 L 140.91513,62.098071 L 140.52781,62.098071 L 140.1405,62.485531 L 139.36587,62.872991 L 139.36587,62.098071 L 138.20392,62.485531 L 137.8166,62.872991 L 137.8166,62.485531 L 137.42929,62.485531 L 137.04197,62.098071 L 136.65466,61.323151 L 136.65466,60.548231 L 135.88002,60.935691 L 135.88002,61.323151 L 135.10539,60.935691 L 135.10539,61.323151 L 134.33076,61.323151 L 133.94344,61.710611 L 133.94344,62.098071 L 133.55613,62.485531 L 133.55613,62.872991 L 133.16881,63.260461 L 132.7815,63.260461 L 132.7815,63.647921 L 132.39418,63.647921 L 132.00686,64.035381 L 131.61955,64.035381 L 131.23223,64.035381 L 130.84492,64.035381 L 130.4576,63.647921 L 130.07028,63.647921 L 129.68297,63.647921 L 129.68297,63.260461 L 129.29565,63.260461 L 128.90834,63.260461 L 128.90834,62.872991 L 128.52102,62.872991 L 127.74639,63.647921 L 128.1337,64.422841 L 128.52102,64.810301 L 128.90834,65.197761 L 128.90834,65.585221 L 129.68297,65.585221 L 130.4576,65.585221 L 130.84492,65.972681 L 132.00686,66.360151 L 132.39418,67.135071 L 132.7815,67.522531 L 133.16881,67.522531 L 133.94344,68.297451 L 134.33076,69.459841 L 135.10539,71.009681 L 135.10539,71.397141 L 135.49271,71.397141 L 135.88002,71.784601 L 135.88002,72.172061 L 136.26734,72.559531 L 136.26734,72.946991 L 136.26734,73.334451 L 135.49271,73.721911 L 135.10539,74.109371 L 134.71808,74.496831 L 134.71808,74.884291 L 134.71808,75.271751 L 135.10539,75.271751 L 135.10539,74.884291 L 135.88002,75.271751 L 136.26734,75.271751 L 137.04197,75.659221 L 137.42929,76.046681 L 137.8166,76.434141 L 138.59123,76.434141 L 138.97855,77.209061 L 138.59123,77.596521 L 137.42929,78.371441 L 137.04197,78.371441 L 135.88002,78.758911 L 135.88002,79.146371 L 135.10539,79.533831 L 134.71808,79.533831 L 133.94344,79.921291 L 133.55613,79.533831 L 133.16881,79.146371 L 130.07028,79.921291 L 129.68297,80.308751 L 129.68297,81.083671 L 129.68297,81.471131 L 129.68297,81.858601 L 130.07028,82.246061 L 130.07028,82.633521 L 128.52102,82.246061 L 128.90834,82.633521 L 129.29565,82.633521 L 129.68297,82.633521 L 129.68297,83.020981 L 130.07028,83.408441 L 130.07028,83.795901 L 130.07028,84.183361 L 130.4576,84.570821 L 130.84492,84.958291 L 130.84492,85.345751 L 130.84492,85.733211 L 131.23223,86.120671 L 131.23223,86.895591 L 131.23223,87.670511 L 132.00686,87.283051 L 132.39418,87.670511 L 133.16881,88.832901 L 133.55613,89.607821 L 134.33076,90.770201 L 134.33076,91.545131 L 135.10539,91.157661 L 135.49271,90.770201 L 135.88002,90.382741 L 135.88002,90.770201 L 136.26734,91.157661 L 136.65466,90.770201 L 137.42929,89.995281 L 138.20392,89.220361 L 138.59123,88.832901 L 138.97855,88.832901 L 139.36587,88.832901 L 139.75318,88.445441 L 140.1405,88.832901 L 140.52781,88.832901 L 140.91513,89.220361 L 141.30245,89.607821 L 141.30245,89.995281 L 141.30245,90.382741 L 141.68976,90.770201 L 142.85171,91.157661 L 143.23903,91.545131 L 143.23903,91.932591 L 143.62634,93.094971 L 143.62634,93.869891 L 144.01366,94.257351 L 144.40097,94.644821 L 144.40097,95.419741 L 144.01366,95.807201 L 144.01366,96.194661 L 144.01366,96.969581 L 144.40097,97.357041 L 144.78829,97.357041 L 144.78829,97.744511 L 144.78829,98.131971 L 144.78829,98.906891 L 144.40097,98.906891 L 144.40097,99.294351 L 144.01366,99.294351 L 143.23903,99.681811 L 142.46439,99.681811 L 142.46439,100.06927 L 142.07708,100.06927 L 142.07708,100.45673 L 142.46439,100.8442 L 142.85171,100.8442 L 143.23903,101.23166 L 142.85171,101.23166 L 142.46439,101.61912 L 142.07708,101.61912 L 142.07708,102.39404 L 142.07708,103.16896 L 142.07708,103.94389 L 141.68976,103.94389 L 141.68976,104.33135 L 142.07708,104.33135 L 142.46439,104.33135 L 142.46439,104.71881 L 142.46439,105.88119 L 142.85171,105.88119 L 143.23903,105.88119 L 143.62634,105.88119 L 143.62634,106.26865 L 143.62634,106.65611 L 144.01366,106.65611 L 144.01366,107.8185 L 144.40097,108.20596 L 144.78829,108.59342 L 144.78829,108.98088 L 144.78829,109.36834 L 144.78829,109.7558 L 145.17561,110.14327 L 145.56292,110.14327 L 145.95024,110.14327 L 146.33755,110.14327 L 146.33755,110.53073 L 145.95024,110.53073 L 145.56292,110.91819 L 145.56292,111.30565 L 145.95024,112.08057 L 146.33755,112.08057 L 146.72487,112.08057 L 146.72487,111.69311 L 147.4995,111.30565 L 147.88682,111.30565 L 147.88682,111.69311 L 148.66145,111.69311 L 149.04876,111.69311 L 149.43608,112.08057 L 149.43608,111.69311 L 149.8234,111.69311 L 150.21071,111.69311 L 150.59803,111.69311 L 151.37266,111.69311 L 151.75998,111.69311 L 152.14729,112.08057 L 152.53461,111.69311 L 152.92192,111.69311 L 153.30924,111.69311 L 153.69656,111.69311 L 153.69656,112.08057 L 154.8585,112.08057 L 154.8585,111.69311 L 155.63314,111.69311 L 155.63314,110.91819 L 156.02045,110.91819 L 156.40777,110.53073 L 157.1824,110.53073 L 157.56972,110.53073 L 157.95703,110.14327 L 157.95703,110.53073 L 158.34435,110.53073 L 158.73166,110.53073 L 159.5063,110.53073 L 159.89361,110.53073 L 159.89361,110.91819 L 159.89361,111.30565 L 160.28093,112.08057 L 161.44287,112.85549 L 161.44287,113.63042 L 161.83019,113.63042 L 161.83019,114.01788 L 162.60482,114.01788 L 162.60482,114.7928 L 162.99214,115.18026 L 162.99214,115.56772 L 163.37945,115.56772 L 163.76677,115.95518 L 164.5414,115.56772 L 164.92872,115.56772 L 166.8653,115.95518 L 168.41456,115.56772 L 168.80188,115.56772 L 169.57651,115.95518 L 169.18919,116.34264 L 169.57651,116.73011 L 169.96383,117.11757 L 169.96383,116.73011 L 170.35114,116.34264 L 170.73846,115.95518 L 171.12577,116.34264 L 171.12577,116.73011 L 171.51309,115.95518 L 171.9004,115.95518 L 173.06235,116.73011 L 173.06235,117.11757 L 173.06235,117.50503 L 173.06235,118.66741 L 172.28772,119.8298 L 173.06235,119.8298 L 173.44967,119.8298 L 174.2243,120.21726 L 174.99893,120.60472 L 175.38625,120.60472 L 177.71014,120.60472 L 180.80867,120.60472 L 181.97062,120.60472 L 182.35793,120.21726 L 182.74525,119.8298 L 183.13257,119.44233 L 183.13257,119.05487 L 183.51988,117.11757 L 183.9072,117.11757 L 183.9072,116.73011 L 185.06915,115.95518 L 185.06915,115.56772 L 186.23109,115.18026 L 187.39304,115.18026 L 187.78036,114.40534 L 187.78036,114.01788 L 188.16767,113.63042 L 188.16767,113.24295 L 188.55499,112.85549 L 188.55499,112.46803 L 188.55499,112.08057 L 188.55499,111.69311 L 188.94231,111.30565 L 189.71694,110.91819 L 190.10425,111.30565 L 190.49157,111.30565 L 190.87889,111.30565 L 191.65352,111.30565 L 192.81546,110.53073 L 192.81546,110.14327 L 191.65352,108.59342 L 191.2662,108.20596 L 191.2662,107.43104 L 190.87889,107.43104 L 190.87889,107.04358 L 190.87889,106.65611 L 190.87889,106.26865 L 190.87889,105.88119 L 191.2662,104.71881 L 191.2662,104.33135 L 191.65352,104.33135 L 191.65352,103.94389 L 192.04083,103.94389 L 192.04083,103.55642 L 192.04083,103.16896 L 192.42815,102.39404 L 192.42815,102.00658 L 193.20278,100.8442 L 193.20278,98.906891 L 192.42815,97.357041 L 192.42815,96.969581 L 192.42815,96.582121 L 192.04083,96.582121 L 191.65352,96.582121 L 191.2662,96.582121 L 190.87889,95.807201 L 190.49157,95.032281 L 189.71694,94.257351 L 189.71694,93.869891 L 189.32962,93.094971 L 189.32962,92.320051 L 188.94231,91.545131 L 188.94231,91.157661 L 188.55499,91.157661 L 188.16767,91.157661 L 187.78036,91.932591 L 187.39304,93.094971 L 186.61841,93.482431 L 186.61841,93.869891 L 186.23109,93.869891 L 184.29451,93.482431 L 183.51988,93.094971 L 182.35793,92.707511 L 181.5833,92.707511 L 181.97062,91.932591 L 181.19599,91.932591 L 180.03404,91.932591 L 177.71014,91.932591 L 176.93551,91.932591 L 176.5482,91.545131 L 174.99893,90.770201 L 174.61162,90.382741 L 173.83698,89.995281 L 174.2243,86.895591 L 173.44967,85.733211 L 172.67504,84.183361 L 173.06235,84.183361 L 173.83698,84.570821 L 174.61162,84.570821 L 174.99893,83.408441 L 175.77356,83.408441 L 176.5482,83.795901 L 176.93551,83.408441 L 174.61162,81.471131 L 174.61162,80.696211 L 174.99893,79.146371 L 174.99893,78.758911 L 174.61162,78.371441 L 174.2243,77.983981 L 173.83698,77.983981 L 173.83698,77.596521 L 173.83698,77.209061 L 173.83698,76.821601 L 174.2243,76.434141 L 173.83698,76.046681 L 173.06235,76.046681 L 171.51309,75.271751 L 170.73846,74.884291 L 169.96383,74.496831 L 169.18919,74.109371 L 169.18919,74.496831 L 168.80188,74.496831 L 167.63993,74.884291 L 166.09067,74.884291 L 165.70335,75.271751 L 164.92872,76.046681 L 164.15409,76.821601 L 164.5414,79.146371 L 164.5414,79.533831 L 164.15409,79.533831 L 163.76677,79.146371 L 163.37945,79.146371 L 162.60482,79.146371 L 162.21751,78.758911 L 161.83019,78.371441 L 161.83019,78.758911 L 161.44287,79.146371 L 161.05556,79.533831 L 160.66824,79.146371 L 160.28093,79.146371 L 160.28093,78.758911 L 160.28093,78.371441 L 159.89361,78.371441 L 159.5063,78.758911 L 159.5063,79.146371 L 159.11898,79.146371 L 159.11898,78.758911 L 158.73166,78.758911 L 158.73166,79.146371 L 158.34435,79.146371 L 157.95703,79.146371 L 157.95703,79.533831 L 157.56972,79.533831 L 157.1824,79.146371 L 157.1824,78.371441 L 156.79508,77.983981 L 156.79508,77.596521 L 156.40777,77.596521 L 156.40777,77.209061 L 156.40777,76.821601 L 156.02045,76.821601 L 155.63314,76.434141 L 155.24582,76.434141 L 154.8585,76.046681 L 154.8585,75.659221 L 154.47119,75.659221 L 154.47119,75.271751 L 154.8585,75.271751 L 154.8585,74.884291 L 154.47119,74.884291 L 154.08387,74.884291 L 153.69656,75.271751 L 153.30924,75.271751 L 152.92192,75.271751 L 152.53461,75.271751 L 152.53461,74.884291 L 152.14729,74.884291 L 152.14729,75.271751 L 151.75998,75.271751 L 151.37266,75.271751 L 151.37266,74.884291 L 150.98534,74.884291 L 150.59803,74.496831 L 150.59803,74.109371 L 150.21071,74.109371 L 149.8234,74.109371 L 149.43608,74.109371 L 149.43608,73.721911 L 149.04876,73.721911 L 148.66145,73.721911 L 148.27413,73.721911 L 147.88682,74.109371 L 147.88682,74.496831 L 147.4995,74.109371 L 147.4995,73.721911 L 147.11219,74.109371 L 147.4995,74.496831 L 146.33755,74.109371 L 146.72487,73.721911 L 146.72487,73.334451 L 145.95024,72.946991 L 145.95024,72.559531 L 145.17561,71.397141 L 145.17561,71.009681 L 145.17561,70.622221 L 144.78829,69.847301 L 144.40097,69.072371 L 144.01366,68.297451 L 144.01366,67.909991 L 144.40097,67.909991 L 144.78829,67.522531 L 145.95024,67.135071 L 146.33755,66.747611 L 146.72487,66.747611 L 146.72487,66.360151 L 147.4995,65.585221 L 147.88682,65.197761 L 148.27413,64.422841 L 147.88682,64.422841 L 147.4995,63.647921 L 147.11219,63.260461 L 146.72487,62.872991 L 145.95024,62.098071 L 145.56292,61.710611 L 144.40097,60.548231 L 144.40097,60.160771 L 144.01366,59.385841 z M 146.72487,112.08057 L 146.72487,112.46803 L 146.72487,112.85549 L 147.11219,112.46803 L 146.72487,112.08057 z ", + "Gelderland" : "M 132.00686,87.283051 L 131.23223,87.670511 L 131.23223,88.057971 L 130.84492,89.220361 L 130.4576,89.995281 L 130.4576,90.382741 L 130.4576,90.770201 L 130.07028,91.545131 L 130.07028,91.932591 L 130.07028,92.320051 L 129.68297,91.932591 L 129.68297,92.707511 L 129.29565,92.707511 L 129.29565,92.320051 L 129.29565,91.932591 L 128.90834,92.707511 L 128.90834,93.094971 L 129.29565,93.094971 L 129.29565,93.482431 L 128.90834,93.482431 L 129.29565,93.869891 L 128.90834,94.257351 L 128.52102,94.644821 L 127.35907,95.807201 L 126.58444,96.582121 L 125.80981,96.969581 L 125.80981,97.357041 L 125.42249,97.357041 L 125.03518,97.744511 L 124.64786,97.744511 L 124.26055,98.131971 L 124.26055,98.519431 L 123.87323,98.519431 L 123.87323,98.906891 L 123.48591,98.906891 L 123.0986,98.906891 L 122.32397,99.294351 L 121.93665,99.681811 L 121.54933,99.681811 L 121.16202,100.06927 L 120.38739,100.45673 L 120.00007,100.45673 L 119.61275,100.8442 L 119.22544,101.23166 L 119.22544,101.61912 L 118.83812,101.61912 L 118.45081,101.61912 L 118.45081,102.00658 L 118.45081,102.39404 L 118.06349,102.39404 L 118.06349,102.7815 L 117.67617,102.7815 L 117.67617,103.16896 L 117.28886,103.16896 L 117.28886,103.55642 L 116.51423,103.94389 L 116.12691,104.33135 L 115.7396,104.71881 L 115.7396,105.10627 L 115.35228,105.88119 L 115.35228,106.65611 L 114.96496,107.43104 L 114.96496,107.8185 L 114.57765,108.59342 L 114.19033,108.98088 L 112.64107,108.98088 L 112.25375,108.98088 L 111.47912,109.7558 L 111.0918,109.36834 L 110.70449,109.7558 L 109.54254,110.14327 L 108.76791,110.14327 L 108.38059,110.53073 L 107.60596,110.53073 L 107.21864,112.46803 L 107.21864,112.85549 L 107.99328,113.24295 L 107.99328,112.85549 L 109.54254,114.01788 L 109.54254,114.40534 L 109.54254,114.7928 L 109.54254,115.18026 L 109.54254,115.56772 L 109.54254,116.73011 L 109.92986,117.11757 L 111.86644,117.11757 L 111.86644,117.50503 L 111.47912,117.50503 L 111.86644,117.89249 L 111.86644,118.27995 L 111.86644,118.66741 L 112.25375,118.66741 L 112.64107,118.66741 L 112.64107,119.44233 L 113.4157,119.44233 L 113.4157,119.8298 L 113.4157,120.21726 L 112.64107,120.21726 L 112.64107,120.60472 L 112.64107,120.99218 L 113.02838,120.99218 L 113.02838,121.37964 L 112.64107,121.37964 L 112.25375,121.37964 L 112.25375,121.7671 L 111.86644,122.15456 L 111.86644,122.92949 L 111.86644,123.31695 L 111.47912,123.70441 L 111.0918,124.09187 L 110.70449,124.09187 L 110.70449,124.47933 L 111.0918,124.86679 L 111.86644,125.25425 L 112.25375,125.25425 L 112.64107,125.25425 L 113.02838,124.86679 L 113.4157,124.47933 L 113.80302,124.47933 L 114.19033,124.09187 L 114.19033,123.70441 L 114.57765,123.70441 L 114.57765,123.31695 L 114.57765,122.92949 L 114.19033,122.54202 L 115.35228,122.15456 L 115.7396,122.92949 L 115.7396,123.31695 L 115.7396,123.70441 L 115.7396,124.09187 L 116.12691,124.47933 L 115.7396,124.86679 L 115.7396,125.25425 L 115.7396,127.19156 L 116.51423,127.19156 L 116.51423,127.57902 L 116.12691,127.57902 L 117.28886,128.35394 L 117.28886,129.51633 L 117.28886,129.90379 L 117.28886,130.29125 L 117.28886,130.67871 L 117.67617,131.06617 L 118.06349,131.45363 L 118.45081,131.45363 L 118.45081,131.84109 L 118.83812,132.61602 L 118.83812,133.00348 L 119.22544,133.39094 L 118.83812,133.7784 L 119.22544,134.16586 L 119.22544,134.55332 L 119.22544,134.94078 L 118.83812,135.32825 L 118.06349,135.71571 L 117.28886,135.32825 L 116.12691,134.94078 L 115.35228,134.55332 L 114.96496,133.7784 L 114.57765,133.7784 L 114.19033,133.7784 L 113.80302,133.39094 L 113.4157,133.39094 L 112.64107,133.00348 L 112.25375,132.61602 L 111.86644,132.61602 L 111.47912,132.61602 L 110.31717,132.61602 L 109.92986,132.22856 L 109.54254,132.22856 L 109.15522,132.61602 L 108.76791,133.00348 L 108.38059,133.00348 L 107.60596,133.39094 L 107.21864,133.39094 L 106.83133,133.7784 L 106.44401,133.7784 L 105.66938,133.39094 L 105.28207,133.7784 L 104.89475,133.7784 L 104.50743,134.16586 L 104.50743,134.55332 L 104.12012,134.55332 L 103.7328,134.94078 L 103.34549,134.94078 L 102.95817,134.55332 L 102.57085,134.16586 L 101.40891,134.16586 L 101.02159,134.16586 L 100.24696,133.39094 L 99.472327,133.00348 L 99.085007,133.00348 L 98.697687,133.00348 L 98.697687,133.7784 L 98.310377,134.16586 L 97.923057,134.55332 L 97.535747,134.55332 L 97.148427,134.55332 L 96.761107,134.16586 L 96.373797,133.7784 L 95.986477,134.55332 L 95.599167,135.71571 L 94.824537,136.49063 L 94.437217,136.87809 L 94.824537,136.87809 L 94.437217,137.26555 L 94.049897,138.04047 L 93.662587,138.04047 L 93.662587,138.42794 L 93.275267,139.59032 L 92.887957,139.97778 L 92.887957,140.36524 L 92.500637,140.36524 L 91.726007,140.36524 L 91.338687,140.36524 L 91.338687,141.14016 L 90.951377,141.52762 L 90.564057,141.52762 L 90.176737,141.52762 L 89.789427,141.52762 L 89.789427,141.91509 L 89.789427,142.30255 L 90.176737,142.69001 L 90.176737,143.07747 L 89.789427,143.07747 L 89.402107,142.69001 L 88.240157,143.07747 L 87.852847,142.69001 L 87.078217,143.07747 L 86.690897,142.69001 L 86.690897,143.07747 L 86.690897,143.46493 L 87.078217,143.85239 L 86.690897,143.85239 L 87.078217,144.23985 L 87.465527,144.23985 L 87.852847,144.23985 L 88.627477,144.23985 L 88.240157,145.7897 L 88.240157,146.17716 L 87.465527,146.17716 L 87.465527,146.56462 L 87.465527,146.95208 L 87.852847,146.95208 L 88.240157,147.33954 L 89.014797,147.727 L 89.402107,148.11447 L 89.789427,148.11447 L 89.789427,148.50193 L 90.176737,148.88939 L 90.176737,149.27685 L 90.564057,149.27685 L 90.564057,149.66431 L 90.951377,149.66431 L 91.338687,149.27685 L 91.726007,148.88939 L 92.113317,148.88939 L 92.500637,149.27685 L 92.887957,149.66431 L 94.049897,150.05177 L 94.049897,150.43923 L 94.049897,150.82669 L 94.049897,151.21416 L 94.437217,151.60162 L 94.049897,151.98908 L 93.662587,152.37654 L 93.275267,152.37654 L 93.275267,152.764 L 93.662587,153.15146 L 94.437217,152.764 L 95.211847,152.764 L 95.986477,152.764 L 96.373797,152.764 L 97.148427,152.764 L 97.535747,152.764 L 97.923057,152.764 L 98.310377,152.37654 L 98.697687,152.764 L 99.472327,153.15146 L 99.859637,153.53892 L 100.24696,153.15146 L 100.63427,152.764 L 101.40891,152.764 L 102.18354,153.15146 L 102.57085,153.15146 L 102.57085,152.764 L 103.34549,152.37654 L 105.28207,151.60162 L 105.28207,151.21416 L 105.66938,151.21416 L 105.66938,150.43923 L 105.66938,149.66431 L 106.0567,148.88939 L 106.0567,148.50193 L 106.83133,147.33954 L 107.21864,146.95208 L 107.60596,146.56462 L 107.60596,146.17716 L 107.99328,145.7897 L 108.38059,145.7897 L 108.38059,146.17716 L 108.76791,146.56462 L 109.15522,146.95208 L 109.54254,146.95208 L 110.31717,146.95208 L 111.0918,146.95208 L 111.47912,146.56462 L 111.86644,145.7897 L 111.86644,145.40224 L 112.25375,145.40224 L 112.64107,145.40224 L 113.02838,145.40224 L 113.4157,145.7897 L 113.4157,146.17716 L 113.80302,146.17716 L 114.19033,146.17716 L 114.57765,146.56462 L 114.96496,146.56462 L 115.35228,146.17716 L 115.35228,145.7897 L 115.7396,145.40224 L 116.12691,145.40224 L 116.90154,145.40224 L 117.28886,145.40224 L 117.67617,145.40224 L 118.45081,145.7897 L 118.83812,146.17716 L 119.22544,146.17716 L 120.00007,146.17716 L 120.38739,146.56462 L 120.38739,147.33954 L 120.7747,147.727 L 121.16202,148.11447 L 121.54933,148.50193 L 121.93665,148.50193 L 122.32397,148.50193 L 122.71128,148.88939 L 123.0986,148.88939 L 123.0986,149.66431 L 123.48591,149.66431 L 123.87323,150.05177 L 124.26055,150.05177 L 124.64786,150.05177 L 125.03518,150.43923 L 125.42249,150.82669 L 125.42249,151.21416 L 125.80981,151.60162 L 126.19713,151.60162 L 126.58444,151.60162 L 127.35907,151.60162 L 127.74639,151.60162 L 128.90834,151.21416 L 129.29565,151.21416 L 130.4576,151.21416 L 131.23223,151.21416 L 131.61955,151.21416 L 132.00686,151.21416 L 132.00686,150.82669 L 132.00686,150.43923 L 131.61955,150.05177 L 132.00686,149.66431 L 132.7815,149.66431 L 133.16881,149.66431 L 133.55613,150.05177 L 133.94344,150.43923 L 133.94344,150.82669 L 134.33076,151.21416 L 134.33076,151.60162 L 134.71808,151.98908 L 135.10539,151.98908 L 135.10539,152.37654 L 135.49271,152.764 L 135.88002,152.764 L 136.26734,152.37654 L 136.26734,151.98908 L 136.65466,151.60162 L 137.42929,151.21416 L 137.8166,151.21416 L 138.20392,150.43923 L 138.20392,150.05177 L 137.8166,150.05177 L 137.8166,149.27685 L 138.20392,149.27685 L 137.8166,148.88939 L 137.42929,148.88939 L 137.42929,148.50193 L 137.42929,148.11447 L 137.42929,147.727 L 136.65466,146.95208 L 136.26734,146.95208 L 135.88002,146.95208 L 135.88002,146.56462 L 136.26734,146.17716 L 136.65466,146.17716 L 135.88002,145.7897 L 136.65466,144.62731 L 137.04197,144.62731 L 137.04197,145.01478 L 137.8166,145.01478 L 138.20392,145.01478 L 138.97855,144.62731 L 139.36587,144.62731 L 139.75318,144.23985 L 140.1405,143.85239 L 140.52781,144.23985 L 140.91513,143.85239 L 141.30245,143.46493 L 141.68976,143.46493 L 141.30245,143.07747 L 141.68976,142.69001 L 142.07708,142.30255 L 142.46439,142.69001 L 143.23903,143.46493 L 143.62634,143.46493 L 144.01366,143.46493 L 145.56292,143.85239 L 146.72487,143.85239 L 147.11219,144.23985 L 147.11219,143.46493 L 147.11219,143.07747 L 147.11219,142.69001 L 147.11219,142.30255 L 146.33755,141.91509 L 145.95024,141.91509 L 145.95024,141.52762 L 145.95024,141.14016 L 145.56292,140.36524 L 145.17561,139.97778 L 144.40097,139.97778 L 144.01366,139.97778 L 144.40097,139.59032 L 144.40097,139.20286 L 144.78829,139.20286 L 145.17561,139.59032 L 146.72487,138.8154 L 147.11219,139.20286 L 147.4995,139.20286 L 147.88682,139.59032 L 148.66145,139.97778 L 148.66145,140.36524 L 147.88682,140.36524 L 148.27413,140.7527 L 148.66145,141.14016 L 149.04876,141.52762 L 149.8234,141.91509 L 150.59803,141.91509 L 150.59803,141.52762 L 151.37266,141.52762 L 151.75998,141.91509 L 152.14729,141.91509 L 152.14729,141.52762 L 152.53461,141.52762 L 152.53461,141.14016 L 152.92192,141.52762 L 154.08387,141.91509 L 154.08387,142.30255 L 154.47119,143.07747 L 154.47119,143.46493 L 155.24582,143.07747 L 156.02045,143.07747 L 156.40777,143.07747 L 156.79508,143.46493 L 157.1824,143.46493 L 157.56972,143.85239 L 157.56972,144.23985 L 157.56972,144.62731 L 157.95703,144.62731 L 158.34435,144.62731 L 158.73166,144.62731 L 159.5063,145.01478 L 159.89361,145.01478 L 159.5063,144.23985 L 159.89361,144.62731 L 159.5063,143.85239 L 159.5063,143.46493 L 159.89361,143.07747 L 159.5063,143.07747 L 159.5063,142.69001 L 159.11898,142.69001 L 158.73166,142.30255 L 158.73166,141.91509 L 158.73166,141.14016 L 159.5063,141.52762 L 159.89361,141.52762 L 160.28093,141.91509 L 160.66824,141.91509 L 160.66824,142.30255 L 161.05556,142.30255 L 161.44287,142.30255 L 161.83019,141.91509 L 162.21751,142.69001 L 162.60482,142.69001 L 162.99214,143.07747 L 163.37945,142.69001 L 164.5414,142.30255 L 164.5414,141.91509 L 164.5414,141.52762 L 164.92872,141.52762 L 165.31603,141.14016 L 165.70335,141.14016 L 166.09067,141.14016 L 166.47798,140.7527 L 166.47798,140.36524 L 166.8653,140.36524 L 167.25261,139.97778 L 167.25261,140.36524 L 167.63993,140.36524 L 168.02725,139.97778 L 168.80188,139.59032 L 170.73846,138.8154 L 171.12577,138.8154 L 171.51309,138.8154 L 171.51309,138.42794 L 172.28772,138.04047 L 173.06235,137.65301 L 173.44967,137.65301 L 173.83698,137.26555 L 173.83698,137.65301 L 174.2243,137.65301 L 174.61162,137.65301 L 174.61162,138.04047 L 174.99893,138.42794 L 175.77356,139.20286 L 176.5482,138.8154 L 176.5482,138.42794 L 176.93551,138.42794 L 177.32283,138.04047 L 177.71014,138.04047 L 177.71014,137.65301 L 178.09746,137.26555 L 178.48478,137.26555 L 179.25941,136.10317 L 179.64672,135.71571 L 179.64672,135.32825 L 179.64672,134.94078 L 179.64672,133.7784 L 180.42136,133.39094 L 181.19599,133.39094 L 181.5833,132.61602 L 181.19599,132.22856 L 181.19599,131.45363 L 181.19599,131.06617 L 180.03404,130.67871 L 180.42136,130.67871 L 178.09746,129.12887 L 177.71014,128.7414 L 177.32283,127.96648 L 175.38625,127.19156 L 173.83698,127.19156 L 173.83698,126.8041 L 173.83698,126.02918 L 173.83698,125.64171 L 174.2243,125.25425 L 174.2243,124.86679 L 174.2243,124.47933 L 175.38625,124.47933 L 176.16088,124.09187 L 176.93551,123.70441 L 176.93551,123.31695 L 176.93551,122.92949 L 176.93551,122.54202 L 177.32283,122.54202 L 177.32283,122.15456 L 177.71014,120.60472 L 175.38625,120.60472 L 174.99893,120.60472 L 174.2243,120.21726 L 173.44967,119.8298 L 173.06235,119.8298 L 172.28772,119.8298 L 173.06235,118.66741 L 173.06235,117.50503 L 173.06235,117.11757 L 173.06235,116.73011 L 171.9004,115.95518 L 171.51309,115.95518 L 171.12577,116.73011 L 171.12577,116.34264 L 170.73846,115.95518 L 170.35114,116.34264 L 169.96383,116.73011 L 169.96383,117.11757 L 169.57651,116.73011 L 169.18919,116.34264 L 169.57651,115.95518 L 168.80188,115.56772 L 168.41456,115.56772 L 166.8653,115.95518 L 164.92872,115.56772 L 164.5414,115.56772 L 163.76677,115.95518 L 163.37945,115.56772 L 162.99214,115.56772 L 162.99214,115.18026 L 162.60482,114.7928 L 162.60482,114.01788 L 161.83019,114.01788 L 161.83019,113.63042 L 161.44287,113.63042 L 161.44287,112.85549 L 160.28093,112.08057 L 159.89361,111.30565 L 159.89361,110.91819 L 159.89361,110.53073 L 159.5063,110.53073 L 158.73166,110.53073 L 158.34435,110.53073 L 157.95703,110.53073 L 157.95703,110.14327 L 157.56972,110.53073 L 157.1824,110.53073 L 156.40777,110.53073 L 156.02045,110.91819 L 155.63314,110.91819 L 155.63314,111.69311 L 154.8585,111.69311 L 154.8585,112.08057 L 153.69656,112.08057 L 153.69656,111.69311 L 153.30924,111.69311 L 152.92192,111.69311 L 152.53461,111.69311 L 152.14729,112.08057 L 151.75998,111.69311 L 151.37266,111.69311 L 150.59803,111.69311 L 150.21071,111.69311 L 149.8234,111.69311 L 149.43608,111.69311 L 149.43608,112.08057 L 149.04876,111.69311 L 148.66145,111.69311 L 147.88682,111.69311 L 147.88682,111.30565 L 147.4995,111.30565 L 146.72487,111.69311 L 146.72487,112.08057 L 147.11219,112.46803 L 146.72487,112.85549 L 146.72487,112.46803 L 146.72487,112.08057 L 146.33755,112.08057 L 145.95024,112.08057 L 145.56292,111.30565 L 145.56292,110.91819 L 145.95024,110.53073 L 146.33755,110.53073 L 146.33755,110.14327 L 145.95024,110.14327 L 145.56292,110.14327 L 145.17561,110.14327 L 144.78829,109.7558 L 144.78829,109.36834 L 144.78829,108.98088 L 144.78829,108.59342 L 144.40097,108.20596 L 144.01366,107.8185 L 144.01366,106.65611 L 143.62634,106.65611 L 143.62634,106.26865 L 143.62634,105.88119 L 143.23903,105.88119 L 142.85171,105.88119 L 142.46439,105.88119 L 142.46439,104.71881 L 142.46439,104.33135 L 142.07708,104.33135 L 141.68976,104.33135 L 141.68976,103.94389 L 142.07708,103.94389 L 142.07708,103.16896 L 142.07708,102.39404 L 142.07708,101.61912 L 142.46439,101.61912 L 142.85171,101.23166 L 143.23903,101.23166 L 142.85171,100.8442 L 142.46439,100.8442 L 142.07708,100.45673 L 142.07708,100.06927 L 142.46439,100.06927 L 142.46439,99.681811 L 143.23903,99.681811 L 144.01366,99.294351 L 144.40097,99.294351 L 144.40097,98.906891 L 144.78829,98.906891 L 144.78829,98.131971 L 144.78829,97.744511 L 144.78829,97.357041 L 144.40097,97.357041 L 144.01366,96.969581 L 144.01366,96.194661 L 144.01366,95.807201 L 144.40097,95.419741 L 144.40097,94.644821 L 144.01366,94.257351 L 143.62634,93.869891 L 143.62634,93.094971 L 143.23903,91.932591 L 143.23903,91.545131 L 142.85171,91.157661 L 141.68976,90.770201 L 141.30245,90.382741 L 141.30245,89.995281 L 141.30245,89.607821 L 140.91513,89.220361 L 140.52781,88.832901 L 140.1405,88.832901 L 139.75318,88.445441 L 139.36587,88.832901 L 138.97855,88.832901 L 138.59123,88.832901 L 138.20392,89.220361 L 137.42929,89.995281 L 136.65466,90.770201 L 136.26734,91.157661 L 135.88002,90.770201 L 135.88002,90.382741 L 135.49271,90.770201 L 135.10539,91.157661 L 134.33076,91.545131 L 134.33076,90.770201 L 133.55613,89.607821 L 133.16881,88.832901 L 132.39418,87.670511 L 132.00686,87.283051 z M 119.22544,101.23166 L 118.45081,100.8442 L 118.83812,101.23166 L 119.22544,101.23166 z ", + "Utrecht" : "M 87.465527,105.88119 L 87.465527,106.26865 L 87.078217,106.26865 L 87.078217,106.65611 L 87.078217,107.04358 L 86.303577,106.65611 L 86.303577,107.04358 L 85.528947,107.43104 L 85.528947,107.8185 L 85.141637,107.8185 L 84.754317,107.8185 L 84.366997,107.8185 L 83.592367,107.43104 L 83.205057,107.8185 L 83.205057,108.20596 L 83.592367,108.59342 L 83.205057,108.98088 L 82.817737,109.36834 L 82.817737,109.7558 L 82.430427,109.7558 L 82.043107,109.7558 L 82.043107,110.14327 L 81.655787,109.7558 L 81.268477,109.7558 L 80.881157,109.7558 L 80.493847,110.14327 L 79.719207,110.53073 L 79.719207,110.91819 L 79.331897,110.91819 L 78.944577,111.30565 L 78.557267,111.30565 L 78.557267,111.69311 L 78.169947,111.69311 L 77.782627,112.08057 L 77.395317,112.08057 L 77.007997,112.08057 L 76.620687,112.08057 L 76.620687,112.46803 L 77.007997,112.85549 L 77.007997,113.63042 L 77.007997,114.01788 L 77.395317,114.01788 L 77.395317,114.40534 L 77.782627,114.7928 L 78.169947,114.7928 L 78.169947,115.18026 L 78.557267,115.56772 L 78.944577,115.95518 L 79.719207,115.95518 L 80.106527,116.34264 L 81.655787,117.50503 L 80.493847,117.89249 L 80.493847,119.44233 L 80.106527,119.44233 L 79.719207,119.44233 L 78.944577,119.44233 L 78.557267,119.44233 L 78.557267,119.05487 L 77.782627,119.05487 L 77.395317,119.44233 L 77.007997,119.8298 L 77.395317,119.8298 L 77.007997,120.21726 L 77.007997,120.60472 L 76.620687,120.60472 L 76.233367,120.60472 L 76.233367,120.99218 L 77.782627,121.7671 L 78.169947,122.15456 L 77.782627,122.15456 L 77.782627,123.31695 L 78.169947,124.47933 L 78.169947,124.86679 L 78.557267,124.86679 L 78.169947,125.25425 L 78.944577,125.25425 L 80.493847,125.25425 L 80.106527,125.64171 L 79.719207,126.02918 L 79.331897,126.02918 L 78.169947,126.8041 L 77.782627,127.96648 L 77.395317,128.35394 L 77.007997,128.35394 L 77.007997,128.7414 L 76.620687,129.12887 L 77.007997,129.90379 L 77.395317,129.90379 L 77.782627,129.51633 L 78.169947,129.51633 L 78.557267,129.51633 L 78.944577,129.51633 L 79.331897,129.51633 L 79.719207,130.67871 L 79.331897,130.67871 L 77.782627,131.06617 L 78.169947,131.45363 L 78.557267,132.22856 L 78.944577,133.00348 L 79.331897,133.39094 L 79.719207,133.7784 L 80.106527,134.16586 L 80.106527,134.55332 L 80.493847,134.94078 L 80.493847,135.71571 L 80.493847,136.10317 L 80.881157,136.10317 L 81.655787,136.10317 L 82.043107,136.10317 L 82.430427,135.71571 L 82.817737,135.71571 L 82.817737,135.32825 L 83.205057,135.32825 L 83.592367,134.55332 L 83.979687,134.16586 L 84.366997,134.16586 L 84.754317,134.16586 L 85.141637,134.55332 L 85.528947,134.55332 L 85.916267,134.16586 L 85.916267,133.7784 L 86.303577,133.39094 L 86.690897,133.00348 L 87.078217,133.00348 L 87.465527,133.00348 L 88.240157,133.7784 L 88.627477,133.7784 L 89.014797,133.39094 L 89.014797,133.00348 L 89.402107,133.00348 L 89.789427,133.00348 L 90.176737,134.16586 L 89.789427,134.94078 L 91.338687,135.32825 L 92.113317,135.71571 L 93.662587,136.49063 L 94.049897,136.49063 L 94.437217,136.49063 L 94.824537,136.49063 L 95.599167,135.71571 L 95.986477,134.55332 L 96.373797,133.7784 L 96.761107,134.16586 L 97.148427,134.55332 L 97.535747,134.55332 L 97.923057,134.55332 L 98.310377,134.16586 L 98.697687,133.7784 L 98.697687,133.00348 L 99.085007,133.00348 L 99.472327,133.00348 L 100.24696,133.39094 L 101.02159,134.16586 L 101.40891,134.16586 L 102.57085,134.16586 L 102.95817,134.55332 L 103.34549,134.94078 L 103.7328,134.94078 L 104.12012,134.55332 L 104.50743,134.55332 L 104.50743,134.16586 L 104.89475,133.7784 L 105.28207,133.7784 L 105.66938,133.39094 L 106.44401,133.7784 L 106.83133,133.7784 L 107.21864,133.39094 L 107.60596,133.39094 L 108.38059,133.00348 L 108.76791,133.00348 L 109.15522,132.61602 L 109.54254,132.22856 L 109.92986,132.22856 L 110.31717,132.61602 L 111.47912,132.61602 L 111.86644,132.61602 L 112.25375,132.61602 L 112.64107,133.00348 L 113.4157,133.39094 L 113.80302,133.39094 L 114.19033,133.7784 L 114.57765,133.7784 L 114.96496,133.7784 L 115.35228,134.55332 L 116.12691,134.94078 L 117.28886,135.32825 L 118.06349,135.71571 L 118.83812,135.32825 L 119.22544,134.94078 L 119.22544,134.55332 L 119.22544,134.16586 L 118.83812,133.7784 L 119.22544,133.39094 L 118.83812,133.00348 L 118.83812,132.61602 L 118.45081,131.84109 L 118.45081,131.45363 L 118.06349,131.45363 L 117.67617,131.06617 L 117.28886,130.67871 L 117.28886,130.29125 L 117.28886,129.90379 L 117.28886,129.51633 L 117.28886,128.35394 L 116.12691,127.57902 L 116.51423,127.57902 L 116.51423,127.19156 L 115.7396,127.19156 L 115.7396,125.25425 L 115.7396,124.86679 L 116.12691,124.47933 L 115.7396,124.09187 L 115.7396,123.70441 L 115.7396,123.31695 L 115.7396,122.92949 L 115.35228,122.15456 L 114.19033,122.54202 L 114.57765,122.92949 L 114.57765,123.31695 L 114.57765,123.70441 L 114.19033,123.70441 L 114.19033,124.09187 L 113.80302,124.47933 L 113.4157,124.47933 L 113.02838,124.86679 L 112.64107,125.25425 L 112.25375,125.25425 L 111.86644,125.25425 L 111.0918,124.86679 L 110.70449,124.47933 L 110.70449,124.09187 L 111.0918,124.09187 L 111.47912,123.70441 L 111.86644,123.31695 L 111.86644,122.92949 L 111.86644,122.15456 L 112.25375,121.7671 L 112.25375,121.37964 L 112.64107,121.37964 L 113.02838,121.37964 L 113.02838,120.99218 L 112.64107,120.99218 L 112.64107,120.60472 L 112.64107,120.21726 L 113.4157,120.21726 L 113.4157,119.8298 L 113.4157,119.44233 L 112.64107,119.44233 L 112.64107,118.66741 L 112.25375,118.66741 L 111.86644,118.66741 L 111.86644,118.27995 L 111.86644,117.89249 L 111.47912,117.50503 L 111.86644,117.50503 L 111.86644,117.11757 L 109.92986,117.11757 L 109.54254,116.73011 L 109.54254,115.56772 L 109.54254,115.18026 L 109.54254,114.7928 L 109.54254,114.40534 L 109.54254,114.01788 L 107.99328,112.85549 L 107.99328,113.24295 L 107.21864,112.85549 L 107.21864,112.46803 L 107.60596,110.53073 L 107.21864,110.14327 L 106.83133,109.7558 L 106.44401,109.36834 L 106.0567,109.36834 L 106.0567,108.98088 L 105.66938,108.59342 L 105.28207,108.59342 L 104.89475,108.59342 L 104.50743,108.59342 L 104.12012,108.20596 L 103.34549,108.20596 L 102.95817,107.8185 L 101.40891,107.8185 L 100.63427,107.43104 L 99.472327,109.7558 L 99.472327,110.14327 L 99.472327,110.53073 L 99.085007,111.30565 L 98.697687,112.46803 L 98.310377,113.24295 L 98.310377,114.01788 L 97.923057,114.40534 L 97.923057,114.7928 L 97.148427,116.34264 L 96.373797,116.34264 L 95.986477,116.34264 L 95.599167,116.34264 L 93.275267,115.95518 L 92.887957,115.95518 L 90.951377,116.73011 L 89.402107,117.11757 L 89.402107,115.56772 L 89.014797,115.56772 L 89.014797,114.7928 L 89.014797,114.40534 L 88.627477,114.40534 L 88.240157,114.01788 L 89.014797,114.01788 L 89.014797,113.63042 L 89.014797,113.24295 L 89.014797,112.46803 L 89.014797,111.69311 L 89.402107,111.69311 L 90.176737,111.30565 L 89.402107,110.91819 L 89.402107,110.14327 L 89.402107,109.7558 L 89.014797,109.7558 L 89.014797,110.14327 L 88.627477,109.7558 L 88.240157,108.59342 L 88.240157,108.20596 L 88.627477,108.20596 L 89.014797,108.20596 L 89.014797,107.8185 L 89.402107,107.8185 L 89.789427,107.8185 L 89.789427,107.43104 L 90.176737,107.43104 L 90.564057,107.43104 L 90.176737,107.04358 L 89.789427,107.04358 L 89.402107,107.43104 L 89.014797,107.43104 L 88.627477,107.04358 L 88.240157,107.43104 L 88.240157,105.88119 L 87.852847,105.88119 L 87.465527,105.88119 z ", + "Noord-Holland" : "M 71.972897,49.699311 L 71.198257,50.086771 L 71.198257,50.086771 L 71.198257,50.086771 L 71.198257,50.086771 L 70.810947,50.474241 L 70.423627,50.474241 L 70.423627,50.861701 L 70.423627,50.861701 L 70.036317,50.861701 L 70.036317,50.861701 L 69.648997,50.474241 L 69.648997,50.474241 L 69.648997,50.086771 L 69.648997,49.699311 L 69.648997,49.311851 L 70.036317,49.311851 L 70.036317,49.311851 L 70.036317,49.311851 L 70.036317,49.311851 L 70.423627,49.311851 L 70.810947,49.311851 L 71.972897,48.924391 L 71.972897,48.924391 L 72.747527,48.924391 L 72.747527,49.311851 L 72.747527,49.311851 L 71.972897,49.699311 z M 73.909467,50.474241 L 73.134837,51.636621 L 73.134837,52.024081 L 73.134837,52.411541 L 73.134837,53.186461 L 72.747527,54.348851 L 72.747527,55.511231 L 72.747527,57.061081 L 71.972897,59.385841 L 71.585577,61.710611 L 70.810947,64.035381 L 70.810947,64.810301 L 70.423627,64.810301 L 70.423627,65.585221 L 69.648997,67.135071 L 69.648997,67.909991 L 68.874367,70.234761 L 68.874367,70.622221 L 68.874367,71.009681 L 68.874367,71.397141 L 68.874367,71.784601 L 68.874367,72.946991 L 68.487047,74.496831 L 68.487047,75.271751 L 68.487047,76.046681 L 68.099737,77.596521 L 68.099737,78.371441 L 68.099737,78.758911 L 68.099737,79.533831 L 67.712417,79.921291 L 67.712417,80.308751 L 67.325097,83.020981 L 66.937787,86.508131 L 66.550467,88.445441 L 66.163157,89.220361 L 65.775837,89.995281 L 65.388517,90.770201 L 65.001207,91.932591 L 65.775837,91.545131 L 66.163157,91.545131 L 66.937787,91.157661 L 67.325097,91.545131 L 66.937787,91.545131 L 66.937787,91.932591 L 66.163157,91.932591 L 65.775837,92.320051 L 66.550467,92.320051 L 66.550467,92.707511 L 65.775837,92.320051 L 65.388517,92.320051 L 65.388517,92.707511 L 64.613887,92.320051 L 64.613887,93.094971 L 65.001207,93.869891 L 64.613887,94.257351 L 64.613887,95.032281 L 64.226577,95.807201 L 63.839257,97.357041 L 63.451937,98.519431 L 62.677307,100.45673 L 61.128047,103.55642 L 63.839257,104.71881 L 65.001207,105.10627 L 65.001207,104.33135 L 65.388517,104.71881 L 65.775837,104.33135 L 66.163157,104.33135 L 66.550467,104.33135 L 67.325097,104.71881 L 66.937787,105.49373 L 66.550467,105.88119 L 66.550467,106.65611 L 66.163157,106.65611 L 66.163157,107.04358 L 66.163157,107.43104 L 65.775837,107.8185 L 65.388517,108.20596 L 65.001207,108.59342 L 65.001207,108.98088 L 65.001207,109.36834 L 65.001207,109.7558 L 65.001207,110.53073 L 64.613887,110.91819 L 64.613887,111.30565 L 64.226577,111.30565 L 64.226577,111.69311 L 64.226577,112.08057 L 64.226577,112.46803 L 64.613887,112.46803 L 65.001207,112.85549 L 65.388517,112.85549 L 65.775837,112.46803 L 66.550467,112.85549 L 67.712417,112.85549 L 68.099737,112.85549 L 68.487047,112.85549 L 68.874367,112.46803 L 69.648997,112.08057 L 70.036317,112.08057 L 70.036317,111.69311 L 70.423627,112.08057 L 70.810947,112.08057 L 71.198257,112.08057 L 71.585577,111.69311 L 71.972897,111.30565 L 73.134837,111.69311 L 72.747527,112.85549 L 73.134837,113.24295 L 73.522157,113.63042 L 73.909467,112.85549 L 74.296787,112.85549 L 75.071417,112.85549 L 75.458737,112.46803 L 75.458737,112.08057 L 75.846047,112.08057 L 76.233367,112.08057 L 76.620687,112.08057 L 77.007997,112.08057 L 77.395317,112.08057 L 77.782627,112.08057 L 78.169947,111.69311 L 78.557267,111.69311 L 78.557267,111.30565 L 78.944577,111.30565 L 79.331897,110.91819 L 79.719207,110.91819 L 79.719207,110.53073 L 80.493847,110.14327 L 80.881157,109.7558 L 81.268477,109.7558 L 81.655787,109.7558 L 82.043107,110.14327 L 82.043107,109.7558 L 82.430427,109.7558 L 82.817737,109.7558 L 82.817737,109.36834 L 83.205057,108.98088 L 83.592367,108.59342 L 83.205057,108.20596 L 83.205057,107.8185 L 83.592367,107.43104 L 84.366997,107.8185 L 84.754317,107.8185 L 85.141637,107.8185 L 85.528947,107.8185 L 85.528947,107.43104 L 86.303577,107.04358 L 86.303577,106.65611 L 87.078217,107.04358 L 87.078217,106.65611 L 87.078217,106.26865 L 87.465527,106.26865 L 87.465527,105.88119 L 87.852847,105.88119 L 88.240157,105.88119 L 88.240157,107.43104 L 88.627477,107.04358 L 89.014797,107.43104 L 89.402107,107.43104 L 89.789427,107.04358 L 90.176737,107.04358 L 90.564057,107.43104 L 90.176737,107.43104 L 89.789427,107.43104 L 89.789427,107.8185 L 89.402107,107.8185 L 89.014797,107.8185 L 89.014797,108.20596 L 88.627477,108.20596 L 88.240157,108.20596 L 88.240157,108.59342 L 88.627477,109.7558 L 89.014797,110.14327 L 89.014797,109.7558 L 89.402107,109.7558 L 89.402107,110.14327 L 89.402107,110.91819 L 90.176737,111.30565 L 89.402107,111.69311 L 89.014797,111.69311 L 89.014797,112.46803 L 89.014797,113.24295 L 89.014797,113.63042 L 89.014797,114.01788 L 88.240157,114.01788 L 88.627477,114.40534 L 89.014797,114.40534 L 89.014797,114.7928 L 89.014797,115.56772 L 89.402107,115.56772 L 89.402107,117.11757 L 90.951377,116.73011 L 92.887957,115.95518 L 93.275267,115.95518 L 95.599167,116.34264 L 95.986477,116.34264 L 96.373797,116.34264 L 97.148427,116.34264 L 98.310377,114.01788 L 98.310377,113.24295 L 98.697687,112.46803 L 99.085007,111.30565 L 99.472327,110.53073 L 99.472327,110.14327 L 99.472327,109.7558 L 100.63427,107.43104 L 101.40891,107.8185 L 102.95817,107.8185 L 102.18354,107.04358 L 102.18354,106.65611 L 102.57085,106.26865 L 102.18354,106.26865 L 101.79622,106.26865 L 101.40891,105.88119 L 101.02159,105.88119 L 100.63427,105.49373 L 100.24696,105.49373 L 100.24696,105.10627 L 99.859637,104.71881 L 99.472327,105.10627 L 99.085007,105.10627 L 98.697687,105.10627 L 97.148427,105.10627 L 96.761107,105.49373 L 96.373797,105.49373 L 95.986477,105.88119 L 95.599167,105.88119 L 95.599167,105.49373 L 95.211847,105.49373 L 94.824537,105.10627 L 94.437217,104.71881 L 94.049897,103.94389 L 93.662587,103.94389 L 93.662587,103.55642 L 92.887957,103.55642 L 92.500637,103.55642 L 92.113317,102.7815 L 90.951377,102.7815 L 90.564057,102.7815 L 90.176737,102.7815 L 89.402107,103.16896 L 89.014797,102.7815 L 89.014797,103.16896 L 88.627477,103.16896 L 88.627477,102.7815 L 89.014797,102.7815 L 89.014797,102.39404 L 88.627477,102.00658 L 88.240157,102.00658 L 87.852847,102.39404 L 87.465527,102.39404 L 87.078217,102.39404 L 87.078217,102.00658 L 87.465527,102.00658 L 87.465527,101.61912 L 87.465527,101.23166 L 86.690897,100.8442 L 86.303577,100.8442 L 86.303577,101.23166 L 85.916267,101.23166 L 85.528947,100.8442 L 85.141637,100.8442 L 85.141637,100.45673 L 85.528947,100.45673 L 85.916267,100.45673 L 86.303577,100.06927 L 85.141637,99.294351 L 85.141637,98.906891 L 85.916267,99.294351 L 86.303577,99.681811 L 86.690897,99.681811 L 87.078217,99.294351 L 87.078217,99.681811 L 87.465527,100.06927 L 87.852847,99.681811 L 87.852847,99.294351 L 87.852847,98.906891 L 88.240157,98.906891 L 88.627477,98.519431 L 88.627477,97.744511 L 89.014797,97.357041 L 89.402107,96.969581 L 89.789427,96.582121 L 90.176737,96.582121 L 90.564057,96.582121 L 90.564057,96.194661 L 90.951377,95.807201 L 90.951377,95.419741 L 91.726007,94.644821 L 91.338687,94.644821 L 90.951377,94.644821 L 90.564057,94.257351 L 90.564057,94.644821 L 89.789427,94.257351 L 89.789427,93.869891 L 89.789427,93.482431 L 89.789427,93.094971 L 90.176737,92.707511 L 90.176737,92.320051 L 89.789427,92.320051 L 89.402107,92.707511 L 89.014797,92.320051 L 89.789427,91.932591 L 90.564057,91.932591 L 90.564057,91.545131 L 90.176737,91.157661 L 90.176737,90.770201 L 90.176737,90.382741 L 90.564057,89.995281 L 90.951377,90.382741 L 90.951377,89.995281 L 91.338687,89.607821 L 91.726007,88.832901 L 91.338687,88.832901 L 91.338687,88.057971 L 90.951377,88.057971 L 90.951377,87.670511 L 90.564057,87.283051 L 90.564057,86.895591 L 90.176737,86.120671 L 90.176737,85.733211 L 89.402107,84.570821 L 89.402107,84.183361 L 89.014797,83.795901 L 89.014797,83.020981 L 88.627477,82.246061 L 88.627477,81.858601 L 88.240157,81.471131 L 88.627477,81.083671 L 88.240157,80.696211 L 88.240157,80.308751 L 88.240157,79.921291 L 88.240157,79.533831 L 88.240157,78.758911 L 88.240157,78.371441 L 88.627477,78.371441 L 88.627477,77.983981 L 89.014797,77.983981 L 89.402107,77.596521 L 89.789427,77.596521 L 90.176737,77.596521 L 90.176737,77.983981 L 90.564057,78.371441 L 90.564057,77.983981 L 90.951377,77.596521 L 91.338687,77.596521 L 91.726007,77.596521 L 92.113317,77.596521 L 92.500637,77.983981 L 92.887957,78.371441 L 93.275267,78.371441 L 93.662587,78.758911 L 93.662587,79.146371 L 94.437217,79.146371 L 94.824537,79.146371 L 95.211847,79.146371 L 95.599167,78.758911 L 96.373797,77.983981 L 96.761107,77.983981 L 97.535747,77.983981 L 97.535747,77.596521 L 97.923057,77.209061 L 98.310377,77.209061 L 98.310377,76.821601 L 99.085007,76.434141 L 99.085007,76.046681 L 99.472327,75.659221 L 99.472327,74.884291 L 99.472327,74.496831 L 99.859637,73.721911 L 100.24696,73.721911 L 100.63427,73.721911 L 101.02159,73.721911 L 101.40891,73.334451 L 101.79622,73.334451 L 101.40891,72.946991 L 101.79622,72.946991 L 102.18354,72.559531 L 102.57085,72.172061 L 102.18354,71.784601 L 101.79622,71.397141 L 101.79622,71.009681 L 101.79622,70.622221 L 101.79622,70.234761 L 101.79622,69.847301 L 101.79622,69.459841 L 101.79622,69.072371 L 101.40891,69.072371 L 101.02159,68.684911 L 100.24696,68.297451 L 99.085007,68.297451 L 98.697687,68.297451 L 98.310377,67.909991 L 97.535747,67.909991 L 97.148427,67.909991 L 96.761107,68.684911 L 96.373797,69.072371 L 96.373797,69.459841 L 95.986477,69.072371 L 95.599167,69.072371 L 95.211847,69.072371 L 94.824537,69.072371 L 94.049897,68.297451 L 93.662587,67.909991 L 93.275267,67.522531 L 93.662587,66.747611 L 93.275267,66.747611 L 92.887957,66.360151 L 92.500637,66.360151 L 93.275267,60.548231 L 92.500637,59.385841 L 91.338687,57.061081 L 91.338687,56.673621 L 90.951377,56.286151 L 89.789427,53.961391 L 89.402107,53.961391 L 89.402107,53.186461 L 89.014797,52.799001 L 88.627477,52.799001 L 88.240157,53.186461 L 87.852847,53.186461 L 87.465527,52.799001 L 87.078217,52.799001 L 86.690897,53.186461 L 85.916267,53.186461 L 85.141637,53.961391 L 85.141637,54.348851 L 84.366997,55.511231 L 83.979687,55.511231 L 83.205057,55.898691 L 82.817737,56.286151 L 81.268477,57.061081 L 80.881157,56.673621 L 79.719207,55.898691 L 79.331897,55.898691 L 78.169947,55.123771 L 77.782627,54.736311 L 77.395317,54.348851 L 77.007997,53.573931 L 77.007997,52.799001 L 77.007997,52.024081 L 77.395317,51.249161 L 77.395317,50.861701 L 77.007997,50.861701 L 77.007997,51.249161 L 76.620687,51.249161 L 76.233367,51.249161 L 76.233367,50.861701 L 76.233367,50.474241 L 75.458737,50.474241 L 74.684107,50.474241 L 74.296787,50.474241 L 73.909467,50.474241 z M 77.395317,50.861701 L 77.395317,50.474241 L 77.007997,50.474241 L 77.395317,50.861701 z M 89.402107,53.186461 L 89.789427,53.573931 L 89.789427,52.799001 L 89.402107,52.799001 L 89.402107,53.186461 z M 85.916267,100.45673 L 85.916267,100.8442 L 86.303577,100.8442 L 85.916267,100.45673 z M 92.500637,91.932591 L 92.500637,92.320051 L 92.500637,92.707511 L 92.113317,93.482431 L 92.500637,93.482431 L 92.887957,93.094971 L 93.275267,93.094971 L 93.662587,92.707511 L 94.049897,92.707511 L 94.049897,92.320051 L 93.275267,92.707511 L 92.887957,92.320051 L 92.500637,91.932591 z M 102.95817,105.49373 L 102.95817,105.88119 L 103.34549,105.88119 L 102.95817,105.49373 z M 80.493847,43.887391 L 79.719207,44.662321 L 79.331897,45.049781 L 78.944577,45.049781 L 78.557267,45.049781 L 78.169947,45.049781 L 77.007997,46.599621 L 77.007997,46.987081 L 77.007997,46.987081 L 77.007997,47.374551 L 76.620687,47.374551 L 76.233367,47.374551 L 75.846047,46.987081 L 75.071417,46.599621 L 74.684107,46.599621 L 75.071417,46.987081 L 75.458737,47.374551 L 75.458737,47.374551 L 75.846047,47.762011 L 76.233367,47.762011 L 75.458737,47.762011 L 75.458737,47.762011 L 75.458737,48.149471 L 75.458737,48.149471 L 75.458737,48.149471 L 74.684107,48.149471 L 74.296787,48.149471 L 74.684107,48.149471 L 74.296787,48.536931 L 73.909467,48.536931 L 73.522157,48.924391 L 73.134837,48.924391 L 73.134837,48.536931 L 73.134837,47.762011 L 72.747527,46.212161 L 72.747527,45.437241 L 72.747527,45.049781 L 73.134837,43.887391 L 73.134837,43.499931 L 73.134837,43.499931 L 73.522157,42.337551 L 73.909467,41.175171 L 74.296787,40.012781 L 74.684107,39.625321 L 75.458737,38.462941 L 76.233367,36.913091 L 77.395317,35.750711 L 77.395317,35.750711 L 77.395317,35.750711 L 77.395317,36.138171 L 77.395317,36.525631 L 77.782627,36.138171 L 77.782627,36.138171 L 77.782627,36.138171 L 78.169947,35.750711 L 78.169947,35.750711 L 78.557267,35.363251 L 78.944577,35.363251 L 78.944577,35.750711 L 78.944577,35.363251 L 78.944577,35.363251 L 78.557267,35.363251 L 78.557267,34.975791 L 78.169947,35.363251 L 78.169947,35.363251 L 77.395317,35.750711 L 77.395317,35.750711 L 78.557267,33.425941 L 78.944577,33.038481 L 79.719207,32.651021 L 79.719207,32.263561 L 80.106527,32.263561 L 80.493847,32.263561 L 80.493847,32.263561 L 80.881157,32.651021 L 81.268477,33.038481 L 81.268477,33.425941 L 81.268477,33.813401 L 81.655787,33.813401 L 81.268477,33.813401 L 81.268477,33.813401 L 81.268477,34.200861 L 81.655787,34.588321 L 81.655787,34.588321 L 82.043107,34.975791 L 82.817737,36.138171 L 82.817737,36.525631 L 82.817737,36.525631 L 82.817737,36.525631 L 82.817737,36.525631 L 82.430427,36.913091 L 82.430427,39.237861 L 82.430427,40.400241 L 82.430427,40.787701 L 82.043107,41.562631 L 81.655787,41.562631 L 81.268477,41.950091 L 81.268477,41.950091 L 81.268477,41.950091 L 81.268477,42.725011 L 80.493847,43.499931 L 80.493847,43.887391 z M 95.986477,47.762011 L 95.986477,47.762011 L 90.564057,52.411541 L 90.176737,52.799001 L 89.789427,52.799001 L 89.789427,52.411541 L 90.564057,52.411541 L 95.986477,47.762011 z ", + "Limburg" : "M 132.00686,149.66431 L 131.61955,150.05177 L 132.00686,150.43923 L 132.00686,150.82669 L 132.00686,151.21416 L 131.61955,151.21416 L 132.00686,151.60162 L 132.39418,151.60162 L 132.39418,151.98908 L 132.39418,152.37654 L 132.7815,153.15146 L 132.7815,153.92638 L 133.16881,154.31385 L 133.94344,154.31385 L 134.71808,154.70131 L 135.49271,154.70131 L 135.88002,155.08877 L 136.26734,155.08877 L 136.65466,156.25115 L 136.65466,157.02607 L 136.65466,157.41354 L 137.04197,157.41354 L 137.04197,158.18846 L 137.04197,158.57592 L 137.04197,158.96338 L 137.04197,160.12576 L 137.42929,160.51323 L 137.42929,160.90069 L 138.59123,161.28815 L 138.97855,161.67561 L 139.36587,162.06307 L 139.75318,162.45053 L 139.75318,162.83799 L 140.1405,163.22545 L 140.1405,164.38784 L 140.1405,164.7753 L 140.52781,165.16276 L 140.91513,165.93768 L 140.91513,166.32514 L 140.91513,166.7126 L 140.91513,167.10007 L 140.91513,167.48753 L 141.30245,167.87499 L 140.91513,167.87499 L 140.52781,167.87499 L 140.52781,168.26245 L 139.75318,167.48753 L 139.36587,167.10007 L 138.97855,167.10007 L 138.97855,166.7126 L 138.20392,167.10007 L 137.42929,167.48753 L 136.26734,167.87499 L 135.49271,168.26245 L 134.71808,168.26245 L 133.94344,168.26245 L 133.16881,167.87499 L 132.00686,167.48753 L 130.4576,167.10007 L 130.84492,170.58722 L 131.23223,171.7496 L 131.23223,172.52452 L 131.61955,173.29945 L 132.39418,176.7866 L 132.39418,177.17406 L 133.94344,179.88629 L 134.71808,181.43613 L 135.49271,182.59852 L 134.71808,182.98598 L 133.55613,184.14836 L 132.7815,184.92328 L 132.39418,184.92328 L 132.00686,185.31074 L 131.61955,185.31074 L 130.4576,185.69821 L 127.35907,186.47313 L 126.97176,186.86059 L 126.58444,186.86059 L 125.80981,187.24805 L 123.87323,187.63551 L 123.48591,187.63551 L 121.93665,188.41043 L 120.7747,189.57282 L 120.38739,190.34774 L 119.61275,191.89758 L 119.22544,193.83489 L 119.22544,195.38474 L 118.06349,195.7722 L 117.67617,195.7722 L 116.51423,196.15966 L 117.28886,196.54712 L 120.38739,197.7095 L 120.7747,198.09696 L 120.7747,198.48443 L 121.16202,199.25935 L 121.54933,198.87189 L 121.93665,199.25935 L 122.32397,199.25935 L 122.71128,199.25935 L 123.48591,199.25935 L 123.87323,199.25935 L 124.26055,199.25935 L 125.03518,199.25935 L 125.42249,198.87189 L 125.80981,198.87189 L 126.19713,199.25935 L 126.97176,199.25935 L 127.35907,199.64681 L 127.35907,200.03427 L 127.74639,200.03427 L 127.35907,200.42173 L 126.97176,200.42173 L 126.97176,200.80919 L 127.35907,200.80919 L 127.35907,201.19665 L 127.35907,201.58412 L 127.35907,201.97158 L 127.74639,201.97158 L 127.74639,201.58412 L 128.1337,201.58412 L 128.52102,201.58412 L 128.52102,201.19665 L 128.90834,201.19665 L 129.29565,201.19665 L 129.29565,200.80919 L 130.07028,200.42173 L 130.07028,200.80919 L 130.4576,200.80919 L 130.4576,201.58412 L 131.61955,202.35904 L 131.23223,202.7465 L 130.84492,203.13396 L 130.84492,203.52142 L 130.07028,203.90888 L 129.68297,203.90888 L 129.68297,204.29634 L 129.29565,204.68381 L 128.90834,205.07127 L 129.29565,205.45873 L 130.07028,205.45873 L 130.4576,205.84619 L 130.4576,206.23365 L 130.07028,206.62111 L 130.07028,207.00857 L 129.68297,207.00857 L 129.29565,206.62111 L 128.90834,206.62111 L 128.52102,206.62111 L 128.52102,207.00857 L 128.52102,207.39603 L 128.90834,207.7835 L 128.90834,208.17096 L 128.52102,208.17096 L 128.52102,208.55842 L 128.90834,209.33334 L 128.52102,209.33334 L 128.52102,209.7208 L 128.1337,209.7208 L 127.35907,209.33334 L 126.97176,210.49572 L 126.97176,211.27065 L 126.58444,211.65811 L 126.58444,212.04557 L 126.97176,212.04557 L 127.35907,212.43303 L 127.35907,212.82049 L 126.97176,213.59541 L 126.97176,213.98288 L 126.97176,214.37034 L 126.97176,214.7578 L 126.58444,215.14526 L 126.19713,215.53272 L 125.80981,216.30764 L 125.42249,216.30764 L 125.03518,217.08257 L 124.64786,217.85749 L 124.64786,218.24495 L 125.03518,218.24495 L 125.42249,218.24495 L 125.80981,217.85749 L 126.19713,217.85749 L 126.58444,218.24495 L 126.58444,218.63241 L 125.80981,219.01987 L 125.80981,219.40733 L 125.80981,219.79479 L 125.03518,220.56972 L 125.03518,220.95718 L 124.64786,221.34464 L 125.03518,221.7321 L 124.64786,222.11956 L 124.26055,222.11956 L 123.87323,222.11956 L 123.48591,222.11956 L 123.0986,222.50702 L 123.0986,222.89448 L 123.0986,223.28194 L 122.32397,224.05687 L 122.32397,224.44433 L 121.93665,224.44433 L 121.54933,224.83179 L 121.16202,224.83179 L 121.16202,225.21925 L 120.7747,225.21925 L 120.38739,225.21925 L 120.7747,225.60671 L 120.38739,225.99417 L 120.38739,226.38163 L 120.38739,226.7691 L 120.38739,227.15656 L 120.38739,227.54402 L 120.38739,227.93148 L 120.38739,228.31894 L 120.7747,228.31894 L 120.7747,228.7064 L 120.7747,229.09386 L 121.16202,229.09386 L 121.16202,229.48132 L 121.54933,229.86879 L 121.93665,229.86879 L 122.32397,229.86879 L 122.32397,230.25625 L 123.0986,230.25625 L 123.48591,230.64371 L 123.48591,231.03117 L 123.0986,231.41863 L 123.48591,232.58101 L 123.48591,233.35594 L 122.71128,234.51832 L 122.71128,234.90578 L 123.0986,234.90578 L 123.48591,234.90578 L 123.87323,234.51832 L 124.26055,234.51832 L 124.64786,234.13086 L 124.64786,234.51832 L 125.03518,234.90578 L 125.42249,234.90578 L 125.80981,234.51832 L 125.80981,234.13086 L 126.19713,233.7434 L 126.97176,232.58101 L 127.74639,232.58101 L 127.74639,233.35594 L 128.1337,234.13086 L 128.52102,233.7434 L 129.29565,234.90578 L 129.68297,234.90578 L 130.07028,234.51832 L 130.4576,234.90578 L 130.84492,234.51832 L 131.23223,234.13086 L 131.23223,234.51832 L 131.23223,235.29324 L 131.61955,234.90578 L 132.00686,234.51832 L 132.00686,234.13086 L 132.39418,234.13086 L 132.7815,234.13086 L 133.55613,233.7434 L 133.55613,234.13086 L 133.55613,234.90578 L 134.33076,235.29324 L 134.33076,234.90578 L 134.71808,234.90578 L 135.10539,234.90578 L 135.10539,235.29324 L 135.88002,234.90578 L 136.26734,234.51832 L 136.65466,234.51832 L 137.04197,234.51832 L 137.42929,234.51832 L 137.8166,234.51832 L 138.20392,234.90578 L 138.97855,235.29324 L 139.36587,235.29324 L 139.36587,234.90578 L 140.1405,234.90578 L 140.52781,234.90578 L 140.52781,234.13086 L 140.91513,233.35594 L 139.75318,232.58101 L 139.36587,232.58101 L 138.97855,232.19355 L 138.97855,231.80609 L 138.59123,231.80609 L 138.20392,231.41863 L 138.20392,231.03117 L 138.20392,230.64371 L 138.59123,230.25625 L 138.97855,230.64371 L 139.75318,231.03117 L 140.1405,230.25625 L 140.52781,229.86879 L 140.52781,229.48132 L 140.91513,229.48132 L 140.52781,229.09386 L 140.52781,228.7064 L 140.1405,228.31894 L 140.1405,227.93148 L 140.1405,227.54402 L 140.52781,227.15656 L 141.30245,227.15656 L 141.68976,226.7691 L 142.07708,226.7691 L 142.07708,226.38163 L 142.46439,226.38163 L 142.46439,226.7691 L 143.23903,227.15656 L 143.23903,226.38163 L 143.23903,225.99417 L 143.62634,225.99417 L 143.62634,225.60671 L 144.01366,225.21925 L 144.01366,224.44433 L 143.62634,224.05687 L 143.62634,224.44433 L 143.23903,223.66941 L 143.23903,223.28194 L 143.23903,222.89448 L 143.62634,222.50702 L 143.62634,222.11956 L 144.01366,221.7321 L 144.01366,221.34464 L 143.62634,220.95718 L 143.23903,220.95718 L 142.85171,220.95718 L 142.07708,220.95718 L 142.07708,220.56972 L 142.07708,220.18225 L 141.68976,220.56972 L 141.30245,220.18225 L 140.1405,219.79479 L 140.1405,219.01987 L 140.1405,218.63241 L 139.36587,218.24495 L 139.75318,217.85749 L 140.1405,217.85749 L 140.1405,217.47003 L 140.52781,215.92018 L 140.1405,215.92018 L 138.59123,215.92018 L 138.20392,215.92018 L 137.8166,216.30764 L 137.42929,216.30764 L 137.04197,215.92018 L 137.04197,215.53272 L 136.65466,215.53272 L 135.88002,215.92018 L 135.49271,215.92018 L 135.10539,216.30764 L 134.71808,216.30764 L 134.33076,216.6951 L 133.94344,216.6951 L 133.55613,216.30764 L 134.33076,215.53272 L 134.33076,214.37034 L 133.94344,214.37034 L 133.55613,213.98288 L 133.55613,213.59541 L 133.16881,213.59541 L 133.16881,213.20795 L 132.7815,213.20795 L 132.7815,212.82049 L 132.7815,212.43303 L 132.7815,212.04557 L 132.7815,211.27065 L 132.39418,210.88319 L 132.00686,210.10826 L 132.39418,210.10826 L 133.16881,210.10826 L 133.55613,210.10826 L 133.55613,209.7208 L 134.33076,209.33334 L 134.71808,208.94588 L 134.71808,209.33334 L 135.49271,210.49572 L 135.88002,211.27065 L 135.88002,211.65811 L 136.26734,211.27065 L 136.65466,211.27065 L 136.65466,211.65811 L 137.04197,211.65811 L 137.04197,211.27065 L 137.42929,210.88319 L 137.42929,210.49572 L 137.8166,210.10826 L 137.8166,209.7208 L 137.8166,209.33334 L 138.20392,208.94588 L 138.20392,208.55842 L 138.59123,208.17096 L 138.59123,207.7835 L 138.97855,207.39603 L 139.75318,207.00857 L 140.1405,206.62111 L 140.91513,206.23365 L 141.30245,206.23365 L 141.68976,205.84619 L 142.07708,205.45873 L 142.07708,205.07127 L 142.46439,204.68381 L 142.85171,204.68381 L 143.23903,204.68381 L 143.62634,204.29634 L 143.62634,203.90888 L 143.62634,203.52142 L 144.01366,203.13396 L 144.40097,203.13396 L 144.78829,203.13396 L 145.17561,202.7465 L 145.56292,202.7465 L 145.56292,202.35904 L 146.33755,202.35904 L 146.72487,201.97158 L 147.11219,201.97158 L 147.88682,201.97158 L 147.4995,201.58412 L 147.88682,201.58412 L 148.27413,201.19665 L 146.72487,200.03427 L 146.33755,200.03427 L 148.66145,198.87189 L 147.88682,198.09696 L 145.56292,199.25935 L 145.17561,199.64681 L 144.78829,200.03427 L 144.40097,200.03427 L 144.01366,200.03427 L 143.23903,200.03427 L 143.23903,199.64681 L 142.85171,199.25935 L 142.85171,196.54712 L 142.46439,196.15966 L 142.85171,195.7722 L 143.62634,195.7722 L 142.85171,194.22235 L 143.62634,193.83489 L 144.01366,193.05997 L 145.56292,191.51012 L 145.56292,191.12266 L 145.95024,190.7352 L 146.72487,189.57282 L 147.11219,188.7979 L 147.11219,188.41043 L 147.4995,188.02297 L 147.4995,187.63551 L 147.4995,187.24805 L 147.88682,186.86059 L 147.88682,186.47313 L 148.27413,186.47313 L 148.66145,186.47313 L 149.04876,186.47313 L 149.04876,186.08567 L 150.98534,184.14836 L 150.59803,182.98598 L 150.21071,182.21105 L 150.21071,181.82359 L 150.59803,181.43613 L 150.98534,181.04867 L 149.8234,181.04867 L 149.8234,180.66121 L 150.21071,178.33644 L 150.21071,177.17406 L 150.59803,177.17406 L 150.21071,176.39914 L 150.59803,176.01167 L 150.59803,174.84929 L 150.21071,174.07437 L 149.8234,173.29945 L 150.21071,172.52452 L 149.8234,172.13706 L 149.8234,171.36214 L 149.8234,170.97468 L 149.43608,170.19976 L 148.66145,169.81229 L 147.88682,169.42483 L 147.11219,167.10007 L 146.33755,166.7126 L 145.95024,166.32514 L 145.56292,165.93768 L 145.17561,165.16276 L 145.17561,164.7753 L 144.78829,164.7753 L 143.62634,164.00038 L 143.62634,163.22545 L 143.62634,162.45053 L 144.01366,162.45053 L 144.01366,162.06307 L 144.40097,160.90069 L 144.40097,160.51323 L 144.78829,160.12576 L 144.78829,159.7383 L 144.01366,159.35084 L 143.62634,159.35084 L 143.23903,159.35084 L 143.23903,158.96338 L 142.85171,158.96338 L 142.46439,158.96338 L 140.52781,158.18846 L 140.1405,157.801 L 140.1405,157.41354 L 140.1405,157.02607 L 140.52781,156.63861 L 140.1405,156.25115 L 140.1405,155.86369 L 140.1405,155.08877 L 140.52781,155.08877 L 140.91513,155.08877 L 140.91513,154.70131 L 140.52781,154.70131 L 140.52781,154.31385 L 140.52781,153.92638 L 140.1405,153.92638 L 138.97855,153.15146 L 138.59123,152.764 L 137.8166,152.764 L 137.42929,152.764 L 136.26734,152.764 L 136.26734,152.37654 L 135.88002,152.764 L 135.49271,152.764 L 135.10539,152.37654 L 135.10539,151.98908 L 134.71808,151.98908 L 134.33076,151.60162 L 134.33076,151.21416 L 133.94344,150.82669 L 133.94344,150.43923 L 133.55613,150.05177 L 133.16881,149.66431 L 132.7815,149.66431 L 132.00686,149.66431 z ", + "Flevoland" : "M 119.61275,80.308751 L 119.22544,80.696211 L 116.51423,81.471131 L 116.12691,81.471131 L 115.7396,81.858601 L 112.64107,84.570821 L 112.64107,84.958291 L 112.25375,84.958291 L 110.70449,84.958291 L 110.31717,84.958291 L 110.31717,85.345751 L 109.92986,86.508131 L 109.92986,86.120671 L 109.54254,86.895591 L 109.54254,87.283051 L 109.54254,87.670511 L 109.54254,88.057971 L 109.54254,88.445441 L 108.76791,88.832901 L 108.38059,88.832901 L 107.99328,89.220361 L 107.60596,89.995281 L 107.21864,89.995281 L 106.83133,89.995281 L 106.83133,90.382741 L 100.24696,94.644821 L 99.085007,95.419741 L 99.085007,95.807201 L 98.697687,95.807201 L 98.697687,96.194661 L 98.310377,96.194661 L 98.080407,96.194661 L 95.599167,97.744511 L 95.211847,98.131971 L 93.662587,99.294351 L 93.275267,99.294351 L 93.275267,99.681811 L 94.049897,100.45673 L 94.049897,101.23166 L 94.049897,102.39404 L 93.662587,102.7815 L 94.049897,102.7815 L 94.437217,103.55642 L 94.049897,103.55642 L 94.437217,103.94389 L 94.824537,103.55642 L 95.211847,103.55642 L 96.761107,103.16896 L 97.148427,103.16896 L 97.535747,103.16896 L 97.923057,103.55642 L 98.310377,103.55642 L 98.697687,103.55642 L 99.472327,103.55642 L 100.63427,103.94389 L 101.40891,104.71881 L 102.57085,105.10627 L 103.34549,105.88119 L 106.83133,108.98088 L 107.21864,109.7558 L 107.60596,109.7558 L 108.38059,110.14327 L 109.15522,109.7558 L 111.0918,108.98088 L 111.47912,108.98088 L 112.25375,108.98088 L 112.64107,108.59342 L 113.80302,108.20596 L 114.19033,108.20596 L 114.57765,106.65611 L 114.96496,106.26865 L 114.96496,105.10627 L 115.35228,105.10627 L 115.35228,104.33135 L 115.35228,103.94389 L 115.35228,103.55642 L 115.35228,103.16896 L 114.96496,103.16896 L 114.96496,102.7815 L 114.57765,102.00658 L 114.96496,101.61912 L 116.12691,100.45673 L 116.90154,100.8442 L 118.06349,100.45673 L 118.45081,100.45673 L 118.83812,100.06927 L 118.45081,100.06927 L 118.83812,99.681811 L 119.22544,99.294351 L 119.61275,98.906891 L 120.7747,97.744511 L 123.87323,96.194661 L 124.26055,96.194661 L 124.64786,96.194661 L 125.03518,96.582121 L 125.42249,96.582121 L 126.97176,95.419741 L 127.35907,94.644821 L 128.1337,93.869891 L 128.52102,93.094971 L 128.90834,92.707511 L 129.29565,91.932591 L 130.4576,89.607821 L 130.84492,88.832901 L 130.84492,88.445441 L 130.84492,87.670511 L 130.84492,85.733211 L 130.4576,84.958291 L 128.52102,83.020981 L 128.52102,82.633521 L 128.1337,82.633521 L 126.19713,82.633521 L 125.80981,82.633521 L 124.26055,82.246061 L 120.7747,81.083671 L 120.38739,81.083671 L 120.00007,80.308751 L 119.61275,80.308751 z M 98.080407,96.194661 L 98.697687,95.807201 L 97.923057,96.194661 L 98.080407,96.194661 z M 123.87323,60.548231 L 124.26055,61.323151 L 123.48591,60.935691 L 123.48591,61.323151 L 123.0986,61.323151 L 121.16202,61.710611 L 120.7747,61.710611 L 120.7747,62.098071 L 119.61275,64.035381 L 117.67617,67.135071 L 117.67617,67.522531 L 117.28886,68.684911 L 117.28886,72.559531 L 117.28886,74.496831 L 117.28886,75.271751 L 117.28886,75.659221 L 117.28886,76.046681 L 117.67617,76.046681 L 118.06349,76.434141 L 118.45081,76.821601 L 119.22544,77.983981 L 120.38739,79.533831 L 120.7747,79.921291 L 121.16202,79.921291 L 125.03518,79.921291 L 125.42249,79.921291 L 126.58444,79.921291 L 129.68297,79.921291 L 130.07028,79.921291 L 133.16881,79.146371 L 133.55613,79.533831 L 133.94344,79.921291 L 134.71808,79.533831 L 135.10539,79.533831 L 135.88002,79.146371 L 135.88002,78.758911 L 137.04197,78.371441 L 137.42929,78.371441 L 138.59123,77.596521 L 138.97855,77.209061 L 138.59123,76.434141 L 137.8166,76.434141 L 137.42929,76.046681 L 137.04197,75.659221 L 136.26734,75.271751 L 135.88002,75.271751 L 135.10539,74.884291 L 135.10539,75.271751 L 134.71808,75.271751 L 134.71808,74.884291 L 134.71808,74.496831 L 135.10539,74.109371 L 135.49271,73.721911 L 136.26734,73.334451 L 136.26734,72.946991 L 136.26734,72.559531 L 135.88002,72.172061 L 135.88002,71.784601 L 135.49271,71.397141 L 135.10539,71.397141 L 135.10539,71.009681 L 134.33076,69.459841 L 133.94344,68.297451 L 133.16881,67.522531 L 132.7815,67.522531 L 132.39418,67.135071 L 132.00686,66.360151 L 130.84492,65.972681 L 130.4576,65.585221 L 129.68297,65.585221 L 128.90834,65.585221 L 128.90834,65.197761 L 128.52102,64.810301 L 128.1337,64.422841 L 127.74639,63.647921 L 127.35907,64.035381 L 127.35907,63.647921 L 126.97176,62.872991 L 125.42249,60.935691 L 125.03518,60.935691 L 123.87323,60.548231 z M 124.64786,80.696211 L 125.03518,80.696211 L 125.42249,80.696211 L 125.42249,80.696211 L 125.80981,81.083671 L 125.42249,81.471131 L 125.42249,81.471131 L 125.03518,81.471131 L 125.03518,81.471131 L 125.03518,81.471131 L 125.03518,81.858601 L 125.03518,81.858601 L 125.03518,81.858601 L 124.64786,81.471131 L 124.64786,81.471131 L 124.64786,81.083671 L 124.26055,81.083671 L 124.26055,80.696211 L 124.64786,80.696211 L 124.64786,80.696211 z M 101.79622,73.334451 L 101.79622,73.334451 L 102.57085,73.334451 L 105.28207,74.496831 L 105.66938,74.884291 L 107.60596,76.821601 L 108.38059,77.983981 L 108.38059,78.371441 L 110.31717,81.471131 L 111.0918,83.408441 L 111.0918,83.795901 L 110.70449,83.795901 L 110.31717,84.183361 L 109.54254,84.570821 L 109.15522,86.120671 L 108.76791,86.895591 L 109.15522,86.895591 L 109.15522,86.895591 L 108.76791,87.670511 L 108.76791,86.895591 L 108.76791,86.895591 L 109.15522,86.120671 L 109.54254,84.570821 L 109.92986,84.183361 L 110.70449,83.795901 L 111.0918,83.795901 L 111.0918,83.408441 L 110.31717,81.471131 L 107.60596,76.821601 L 105.66938,74.884291 L 105.28207,74.496831 L 102.95817,73.334451 L 102.57085,74.109371 L 102.57085,74.109371 L 102.18354,74.109371 L 101.79622,74.109371 L 101.40891,74.109371 L 101.79622,74.109371 L 102.18354,73.721911 L 102.57085,73.334451 L 102.18354,73.334451 L 102.18354,73.334451 L 101.79622,73.334451 z ", + "Friesland" : "M 95.986477,47.762011 L 97.535747,46.212161 L 97.923057,45.824701 L 102.18354,41.950091 L 102.57085,41.950091 L 103.7328,41.562631 L 104.12012,41.562631 L 104.12012,41.562631 L 104.12012,41.562631 L 104.12012,41.175171 L 104.12012,41.562631 L 104.50743,41.950091 L 104.12012,41.562631 L 103.7328,41.562631 L 103.7328,41.562631 L 102.95817,41.950091 L 102.18354,41.950091 L 98.697687,45.437241 L 98.310377,45.824701 L 98.310377,45.824701 L 97.923057,45.824701 L 97.535747,46.212161 L 95.986477,47.762011 L 95.986477,47.762011 z M 106.0567,42.337551 L 106.0567,41.950091 L 105.66938,41.175171 L 105.66938,41.175171 L 106.0567,41.175171 L 106.0567,41.562631 L 106.44401,41.562631 L 106.83133,41.562631 L 106.83133,41.950091 L 106.83133,42.337551 L 107.21864,42.337551 L 107.21864,42.725011 L 107.21864,42.725011 L 107.21864,43.112471 L 106.83133,43.112471 L 106.44401,42.725011 L 106.0567,42.337551 z M 146.33755,12.890501 L 144.40097,13.665421 L 144.01366,13.665421 L 143.23903,13.277961 L 142.07708,13.277961 L 142.07708,13.665421 L 141.68976,13.665421 L 141.30245,13.665421 L 140.91513,13.277961 L 139.36587,13.665421 L 138.59123,13.665421 L 138.20392,13.665421 L 137.8166,14.052881 L 136.26734,14.440341 L 135.88002,14.440341 L 135.49271,14.440341 L 133.94344,15.215261 L 133.16881,15.215261 L 132.7815,15.215261 L 132.39418,15.215261 L 132.00686,15.215261 L 132.00686,14.827801 L 131.61955,14.440341 L 131.61955,15.215261 L 130.84492,15.602721 L 130.07028,15.990191 L 129.68297,16.377651 L 128.90834,16.765111 L 128.52102,17.152571 L 127.74639,17.540031 L 126.97176,17.540031 L 125.80981,18.314951 L 124.26055,19.089881 L 123.48591,19.477341 L 121.54933,20.639721 L 120.38739,20.639721 L 120.00007,21.027181 L 119.22544,21.414641 L 118.83812,21.414641 L 118.45081,21.802101 L 117.67617,22.189571 L 116.90154,22.577031 L 116.51423,22.964491 L 115.7396,23.739411 L 115.35228,24.514331 L 114.96496,24.901791 L 114.96496,25.289261 L 114.57765,25.289261 L 114.57765,25.676721 L 113.80302,26.064181 L 113.4157,26.451641 L 113.02838,26.451641 L 112.25375,27.226561 L 111.86644,27.614021 L 111.47912,27.614021 L 111.0918,28.001481 L 110.70449,28.776411 L 110.31717,28.776411 L 109.92986,29.163871 L 109.54254,29.938791 L 109.15522,31.101171 L 108.76791,31.488641 L 108.76791,31.876101 L 109.15522,31.876101 L 108.76791,32.263561 L 108.38059,32.651021 L 107.99328,33.038481 L 107.99328,33.425941 L 108.38059,33.425941 L 108.38059,34.200861 L 107.99328,34.975791 L 107.99328,36.138171 L 107.99328,36.913091 L 107.99328,37.300551 L 107.60596,37.688011 L 107.60596,38.075481 L 106.83133,38.462941 L 106.44401,38.462941 L 106.83133,38.850401 L 106.44401,39.237861 L 106.44401,39.625321 L 106.0567,40.012781 L 106.44401,40.012781 L 106.83133,40.400241 L 107.21864,41.175171 L 107.21864,41.562631 L 107.21864,41.950091 L 107.21864,42.337551 L 107.60596,43.112471 L 107.21864,43.112471 L 107.60596,43.499931 L 107.21864,43.499931 L 107.21864,43.112471 L 106.44401,43.112471 L 106.44401,43.499931 L 106.44401,43.887391 L 106.83133,43.887391 L 107.21864,43.887391 L 107.21864,44.662321 L 107.21864,45.049781 L 107.60596,44.662321 L 107.60596,45.049781 L 107.21864,45.049781 L 107.21864,45.437241 L 107.60596,45.437241 L 107.99328,45.824701 L 107.99328,46.212161 L 107.99328,46.599621 L 107.99328,46.987081 L 107.60596,47.374551 L 107.60596,48.149471 L 107.99328,49.311851 L 107.99328,50.086771 L 108.38059,50.474241 L 108.38059,50.607431 L 109.15522,50.086771 L 108.38059,50.861701 L 108.38059,50.607431 L 107.99328,50.861701 L 107.99328,51.249161 L 107.99328,52.024081 L 107.60596,52.024081 L 107.21864,52.411541 L 107.60596,52.799001 L 107.99328,53.573931 L 107.99328,53.961391 L 107.99328,54.736311 L 107.99328,55.123771 L 107.60596,55.511231 L 107.21864,55.511231 L 106.83133,55.511231 L 106.0567,56.286151 L 105.66938,56.673621 L 105.28207,57.061081 L 105.66938,57.448541 L 105.66938,57.836001 L 105.66938,58.223461 L 106.44401,58.223461 L 106.44401,58.610921 L 106.83133,58.610921 L 107.60596,59.385841 L 108.38059,60.160771 L 108.76791,60.160771 L 109.15522,60.160771 L 109.54254,60.160771 L 110.31717,60.160771 L 110.31717,59.773301 L 111.47912,60.160771 L 112.25375,60.160771 L 112.64107,60.548231 L 114.19033,61.323151 L 114.96496,61.323151 L 114.96496,61.710611 L 115.7396,61.710611 L 116.12691,61.323151 L 116.51423,61.323151 L 116.51423,60.935691 L 116.90154,60.548231 L 116.90154,60.160771 L 117.67617,59.773301 L 118.45081,60.160771 L 118.83812,59.773301 L 119.61275,59.385841 L 120.00007,59.385841 L 120.38739,59.773301 L 120.38739,60.548231 L 120.7747,60.548231 L 121.16202,60.548231 L 121.93665,60.548231 L 122.32397,60.548231 L 122.71128,60.548231 L 122.71128,60.935691 L 123.0986,60.935691 L 123.48591,60.548231 L 123.48591,60.935691 L 124.26055,61.323151 L 123.87323,60.548231 L 125.03518,60.935691 L 125.42249,60.935691 L 126.97176,62.872991 L 127.35907,63.647921 L 127.35907,64.035381 L 127.74639,63.647921 L 128.52102,62.872991 L 128.90834,62.872991 L 128.90834,63.260461 L 129.29565,63.260461 L 129.68297,63.260461 L 129.68297,63.647921 L 130.07028,63.647921 L 130.4576,63.647921 L 130.84492,64.035381 L 131.23223,64.035381 L 131.61955,64.035381 L 132.00686,64.035381 L 132.39418,63.647921 L 132.7815,63.647921 L 132.7815,63.260461 L 133.16881,63.260461 L 133.55613,62.872991 L 133.55613,62.485531 L 133.94344,62.098071 L 133.94344,61.710611 L 134.33076,61.323151 L 135.10539,61.323151 L 135.10539,60.935691 L 135.88002,61.323151 L 135.88002,60.935691 L 136.65466,60.548231 L 136.65466,61.323151 L 137.04197,62.098071 L 137.42929,62.485531 L 137.8166,62.485531 L 137.8166,62.872991 L 138.20392,62.485531 L 139.36587,62.098071 L 139.36587,62.872991 L 140.1405,62.485531 L 140.52781,62.098071 L 140.91513,62.098071 L 140.91513,61.710611 L 140.52781,60.935691 L 140.91513,60.935691 L 142.07708,60.935691 L 142.46439,60.548231 L 142.85171,60.160771 L 144.01366,59.385841 L 145.17561,58.610921 L 145.95024,57.836001 L 147.4995,57.061081 L 147.88682,56.673621 L 148.27413,56.286151 L 149.43608,54.736311 L 150.21071,54.348851 L 150.21071,53.961391 L 150.21071,53.573931 L 150.98534,53.186461 L 152.14729,53.573931 L 153.30924,53.573931 L 154.8585,55.123771 L 156.40777,53.961391 L 157.56972,52.799001 L 157.95703,52.411541 L 158.34435,52.024081 L 158.34435,51.636621 L 159.5063,49.699311 L 159.11898,49.311851 L 158.73166,48.536931 L 158.34435,47.762011 L 156.79508,45.437241 L 156.02045,44.274861 L 156.02045,43.887391 L 156.02045,42.725011 L 156.40777,41.562631 L 155.63314,41.175171 L 154.47119,41.175171 L 153.30924,40.400241 L 153.69656,39.625321 L 152.53461,39.237861 L 152.53461,38.850401 L 152.14729,38.462941 L 151.37266,38.075481 L 150.98534,37.688011 L 150.59803,37.688011 L 149.8234,37.688011 L 149.04876,37.688011 L 148.27413,37.688011 L 147.88682,37.688011 L 147.4995,36.913091 L 147.11219,36.525631 L 146.72487,36.138171 L 146.72487,34.588321 L 146.72487,34.200861 L 146.72487,33.425941 L 146.72487,32.651021 L 147.11219,32.263561 L 147.4995,31.488641 L 147.4995,31.101171 L 147.88682,30.713711 L 148.27413,30.713711 L 148.66145,30.326251 L 149.04876,29.551331 L 149.04876,29.163871 L 149.04876,28.776411 L 149.04876,28.001481 L 148.66145,28.001481 L 148.27413,28.001481 L 148.27413,27.614021 L 148.66145,27.226561 L 149.04876,26.839101 L 149.43608,26.451641 L 149.43608,26.064181 L 149.43608,25.676721 L 149.8234,25.289261 L 149.8234,24.901791 L 150.21071,24.901791 L 150.59803,24.514331 L 150.21071,24.514331 L 150.21071,24.126871 L 150.21071,23.739411 L 150.21071,23.351951 L 150.59803,22.964491 L 150.98534,22.964491 L 151.37266,22.577031 L 151.37266,22.189571 L 151.75998,21.802101 L 152.14729,21.802101 L 152.14729,21.414641 L 151.75998,21.414641 L 151.75998,21.027181 L 151.75998,18.702411 L 151.37266,18.702411 L 151.37266,18.314951 L 150.59803,18.314951 L 150.21071,18.314951 L 149.8234,18.702411 L 149.43608,18.702411 L 149.04876,18.702411 L 149.43608,19.089881 L 149.43608,19.477341 L 149.04876,19.477341 L 149.04876,19.089881 L 148.66145,18.702411 L 148.66145,18.314951 L 148.27413,18.314951 L 148.66145,17.927491 L 148.27413,17.927491 L 147.88682,17.540031 L 147.88682,17.927491 L 147.4995,18.702411 L 147.4995,18.314951 L 147.4995,17.927491 L 146.72487,17.540031 L 146.33755,17.927491 L 146.33755,18.314951 L 147.11219,19.089881 L 147.11219,19.477341 L 146.72487,19.477341 L 146.72487,19.089881 L 146.33755,19.477341 L 146.33755,19.089881 L 145.95024,18.702411 L 145.95024,18.314951 L 145.95024,17.927491 L 145.95024,17.152571 L 145.56292,16.765111 L 145.56292,16.377651 L 145.95024,15.990191 L 145.56292,15.990191 L 145.56292,15.602721 L 145.56292,15.215261 L 145.17561,14.827801 L 145.56292,14.052881 L 145.56292,13.665421 L 145.56292,13.277961 L 146.33755,12.890501 z M 148.66145,17.927491 L 148.66145,18.314951 L 149.04876,18.702411 L 148.66145,17.927491 z M 106.0567,40.012781 L 104.89475,41.175171 L 104.50743,41.175171 L 104.12012,41.175171 L 104.50743,41.562631 L 104.89475,41.562631 L 105.28207,41.175171 L 106.0567,40.012781 z M 108.76791,32.263561 L 108.76791,31.876101 L 108.38059,32.263561 L 108.76791,32.263561 z M 146.33755,20.252261 L 146.72487,20.252261 L 146.72487,20.639721 L 146.33755,20.252261 z M 145.56292,20.639721 L 145.95024,20.639721 L 145.56292,21.027181 L 145.56292,20.639721 z M 107.60596,43.887391 L 107.99328,43.887391 L 107.60596,44.274861 L 107.60596,43.887391 z M 140.52781,9.403341 L 140.52781,9.790811 L 140.1405,10.178271 L 139.75318,10.178271 L 139.75318,10.178271 L 139.75318,9.790811 L 139.75318,9.403341 L 139.75318,9.403341 L 140.1405,9.015881 L 140.1405,9.015881 L 140.52781,9.015881 L 140.52781,9.403341 z M 124.26055,9.015881 L 125.42249,9.015881 L 126.58444,9.015881 L 131.61955,8.628421 L 133.94344,8.240961 L 135.10539,8.240961 L 135.88002,8.628421 L 136.26734,8.628421 L 136.26734,9.015881 L 136.26734,9.015881 L 136.26734,9.403341 L 135.88002,9.403341 L 134.71808,9.403341 L 133.94344,9.403341 L 132.7815,9.403341 L 132.00686,9.790811 L 132.00686,9.790811 L 131.23223,10.178271 L 130.84492,10.178271 L 130.84492,10.178271 L 130.84492,10.178271 L 129.29565,10.565731 L 127.74639,10.953191 L 126.97176,10.953191 L 126.58444,10.953191 L 126.19713,10.953191 L 125.03518,10.565731 L 124.64786,10.565731 L 123.87323,10.565731 L 123.48591,10.565731 L 123.48591,10.953191 L 123.0986,11.340651 L 122.71128,11.728111 L 121.93665,11.728111 L 121.54933,12.115571 L 121.16202,12.115571 L 120.7747,12.115571 L 121.16202,12.115571 L 120.7747,12.503031 L 120.38739,12.115571 L 119.61275,12.115571 L 119.22544,11.728111 L 118.45081,11.340651 L 118.06349,10.565731 L 118.06349,10.178271 L 118.45081,9.790811 L 118.83812,9.015881 L 119.22544,8.628421 L 120.00007,7.853501 L 120.38739,7.853501 L 120.7747,7.853501 L 121.16202,8.240961 L 121.54933,8.240961 L 121.93665,8.628421 L 121.54933,8.628421 L 121.54933,8.628421 L 121.16202,8.240961 L 121.16202,8.240961 L 120.7747,8.240961 L 120.00007,8.240961 L 119.61275,8.628421 L 120.38739,8.628421 L 120.7747,8.628421 L 120.7747,8.628421 L 122.32397,9.015881 L 124.26055,9.015881 M 154.8585,4.753811 L 154.8585,5.528731 L 154.47119,5.528731 L 154.08387,5.528731 L 153.69656,5.528731 L 153.30924,5.528731 L 152.53461,5.916191 L 152.53461,5.916191 L 151.37266,6.303661 L 150.98534,6.691121 L 150.98534,7.078581 L 150.21071,7.466041 L 149.8234,7.466041 L 149.04876,7.466041 L 149.04876,7.466041 L 148.66145,7.466041 L 148.66145,7.466041 L 147.4995,7.853501 L 147.11219,7.853501 L 147.11219,7.853501 L 145.95024,7.853501 L 145.56292,7.853501 L 145.17561,8.628421 L 145.17561,9.015881 L 144.78829,9.015881 L 144.78829,9.403341 L 144.78829,9.403341 L 144.40097,9.403341 L 144.40097,9.403341 L 144.01366,9.403341 L 144.01366,9.790811 L 144.01366,9.790811 L 143.62634,9.015881 L 143.62634,9.015881 L 143.62634,8.628421 L 144.01366,8.628421 L 144.40097,8.240961 L 144.01366,7.853501 L 144.01366,7.466041 L 144.01366,6.691121 L 144.40097,6.303661 L 145.17561,5.916191 L 145.17561,5.528731 L 145.17561,5.528731 L 144.78829,5.528731 L 144.40097,5.528731 L 144.01366,5.528731 L 144.01366,5.528731 L 143.62634,5.528731 L 144.01366,5.528731 L 144.01366,5.528731 L 144.40097,5.141271 L 145.17561,5.528731 L 146.33755,5.528731 L 150.21071,5.141271 L 151.37266,5.141271 L 153.69656,4.753811 L 154.47119,4.366351 L 154.8585,4.753811 zM 99.859637,26.839101 L 99.859637,26.839101 L 99.859637,26.839101 L 99.472327,26.451641 L 99.859637,26.451641 L 99.859637,26.451641 L 100.63427,26.451641 L 101.02159,26.451641 L 101.02159,26.451641 L 100.63427,26.451641 L 100.63427,26.839101 L 100.24696,26.839101 L 100.24696,26.839101 L 99.859637,26.839101 L 99.859637,26.451641 L 99.859637,26.451641 L 99.859637,26.451641 L 99.859637,26.451641 L 99.859637,26.839101 z M 109.15522,13.665421 L 107.60596,13.665421 L 106.83133,14.052881 L 106.44401,14.052881 L 106.0567,14.440341 L 106.0567,14.440341 L 105.28207,15.215261 L 104.89475,15.602721 L 104.89475,15.602721 L 104.50743,15.602721 L 104.12012,15.602721 L 104.12012,15.990191 L 103.7328,15.990191 L 103.34549,15.602721 L 103.34549,15.990191 L 102.95817,15.990191 L 102.57085,16.377651 L 102.57085,16.377651 L 102.57085,16.377651 L 102.18354,16.377651 L 102.18354,16.765111 L 102.18354,16.765111 L 101.79622,16.377651 L 101.40891,16.377651 L 101.40891,16.377651 L 101.02159,16.377651 L 100.63427,16.377651 L 100.63427,16.377651 L 100.24696,16.765111 L 99.859637,17.152571 L 99.472327,16.765111 L 99.085007,17.152571 L 98.697687,17.152571 L 98.310377,17.540031 L 98.310377,17.927491 L 98.310377,17.927491 L 98.310377,17.927491 L 97.923057,17.927491 L 97.148427,18.314951 L 97.535747,18.314951 L 97.148427,18.702411 L 96.761107,18.702411 L 95.986477,18.702411 L 95.599167,17.927491 L 95.211847,17.927491 L 95.211847,17.927491 L 95.211847,17.540031 L 95.599167,17.152571 L 96.373797,15.990191 L 97.148427,14.827801 L 97.148427,14.827801 L 97.923057,14.440341 L 98.697687,14.052881 L 100.24696,13.665421 L 102.57085,13.277961 L 103.34549,13.277961 L 105.66938,12.503031 L 107.60596,11.728111 L 111.86644,10.178271 L 113.02838,10.178271 L 114.19033,9.790811 L 114.57765,10.178271 L 114.96496,10.178271 L 115.35228,10.565731 L 115.35228,10.565731 L 115.35228,11.340651 L 115.35228,11.728111 L 115.35228,11.728111 L 115.35228,11.340651 L 115.35228,10.953191 L 114.96496,10.565731 L 114.96496,10.565731 L 114.96496,10.953191 L 114.57765,11.340651 L 114.57765,11.340651 L 114.19033,11.728111 L 113.4157,11.728111 L 113.02838,11.728111 L 112.25375,12.115571 L 112.25375,12.115571 L 112.25375,12.115571 L 111.86644,11.728111 L 111.86644,11.728111 L 111.86644,11.728111 L 111.86644,11.728111 L 111.86644,12.115571 L 112.25375,12.115571 L 111.86644,12.503031 L 111.47912,12.503031 L 111.47912,12.503031 L 111.0918,12.503031 L 111.0918,12.115571 L 110.70449,12.115571 L 110.70449,12.115571 L 111.0918,12.503031 L 111.0918,12.890501 L 110.70449,12.890501 L 110.31717,12.890501 L 110.31717,12.890501 L 109.92986,12.503031 L 109.92986,12.503031 L 109.92986,12.503031 L 110.31717,12.890501 L 110.70449,13.277961 L 111.0918,13.277961 L 111.47912,13.277961 L 111.47912,13.277961 L 111.0918,13.665421 L 110.31717,13.665421 L 109.54254,13.665421 L 109.15522,13.665421 z M 95.599167,22.577031 L 95.599167,22.577031 L 95.211847,22.964491 L 94.824537,23.351951 L 94.437217,23.351951 L 94.049897,23.351951 L 93.662587,23.351951 L 93.662587,23.351951 L 93.662587,23.739411 L 93.662587,23.739411 L 93.275267,23.739411 L 93.275267,23.739411 L 93.275267,23.351951 L 93.275267,23.351951 L 93.662587,23.351951 L 93.275267,23.351951 L 93.662587,22.964491 L 94.049897,22.577031 L 94.824537,22.577031 L 95.599167,22.577031 L 95.599167,22.577031 z M 90.564057,22.964491 L 90.564057,23.351951 L 90.176737,23.739411 L 89.402107,24.126871 L 87.078217,24.901791 L 86.303577,25.289261 L 86.303577,25.676721 L 86.303577,26.451641 L 86.690897,26.451641 L 86.690897,26.064181 L 86.690897,26.064181 L 86.690897,26.064181 L 86.690897,26.064181 L 87.078217,26.064181 L 86.690897,26.451641 L 86.303577,27.226561 L 86.303577,27.226561 L 86.303577,27.226561 L 85.141637,28.001481 L 84.754317,28.388951 L 84.366997,28.388951 L 84.366997,28.776411 L 83.979687,29.163871 L 83.205057,29.551331 L 83.205057,29.551331 L 83.205057,29.551331 L 82.817737,29.551331 L 82.043107,29.551331 L 80.881157,29.551331 L 80.493847,29.938791 L 80.493847,29.938791 L 80.493847,30.326251 L 80.881157,30.326251 L 80.493847,30.326251 L 80.106527,30.326251 L 80.106527,30.326251 L 80.106527,29.551331 L 80.106527,29.163871 L 80.106527,28.776411 L 82.430427,27.614021 L 83.592367,26.451641 L 84.366997,26.064181 L 85.141637,25.289261 L 85.528947,24.901791 L 87.078217,23.739411 L 87.852847,23.351951 L 88.240157,22.964491 L 88.240157,22.964491 L 89.402107,22.577031 L 90.176737,22.189571 L 90.951377,21.802101 L 91.338687,21.802101 L 92.500637,22.189571 L 92.500637,22.577031 L 92.113317,22.964491 L 92.113317,22.964491 L 92.113317,22.964491 L 91.726007,22.964491 L 91.338687,22.964491 L 90.564057,22.964491 z M 154.8585,4.753811 L 155.63314,4.753811 L 155.63314,4.753811 L 155.63314,5.141271 L 155.63314,5.141271 L 154.8585,5.528731 L 154.8585,4.753811 z", + "Groningen" : "M 174.61162,7.853501 L 173.83698,8.240961 L 170.73846,8.628421 L 170.35114,9.015881 L 169.18919,9.403341 L 168.80188,9.403341 L 168.41456,9.790811 L 167.63993,9.790811 L 166.8653,10.565731 L 166.47798,10.565731 L 166.09067,10.565731 L 165.70335,10.565731 L 164.92872,10.953191 L 164.15409,11.340651 L 163.76677,10.953191 L 163.37945,11.340651 L 161.44287,11.340651 L 160.28093,11.728111 L 158.73166,12.115571 L 157.95703,12.115571 L 157.1824,12.503031 L 156.40777,12.503031 L 155.24582,12.890501 L 154.08387,13.277961 L 153.69656,13.665421 L 153.69656,14.052881 L 152.92192,14.440341 L 152.53461,14.052881 L 152.14729,13.665421 L 150.21071,12.503031 L 149.8234,12.503031 L 148.27413,13.277961 L 148.27413,12.890501 L 147.88682,12.890501 L 147.88682,13.277961 L 147.4995,13.277961 L 147.4995,12.890501 L 147.11219,13.277961 L 147.4995,13.665421 L 147.88682,13.665421 L 148.27413,14.052881 L 148.66145,14.052881 L 149.04876,14.440341 L 149.43608,14.440341 L 149.43608,14.827801 L 149.04876,14.827801 L 148.66145,14.827801 L 148.27413,14.827801 L 148.27413,14.440341 L 147.4995,14.052881 L 147.4995,13.665421 L 146.72487,13.665421 L 146.33755,14.440341 L 146.72487,14.440341 L 147.11219,14.827801 L 147.4995,14.827801 L 147.4995,15.215261 L 147.11219,15.602721 L 146.72487,15.215261 L 146.72487,15.602721 L 147.11219,15.990191 L 147.4995,15.990191 L 147.88682,15.990191 L 148.27413,15.990191 L 148.66145,15.990191 L 149.04876,15.990191 L 149.04876,16.377651 L 148.27413,16.377651 L 147.88682,16.377651 L 147.88682,16.765111 L 148.27413,16.765111 L 148.66145,16.765111 L 149.04876,16.765111 L 149.43608,16.377651 L 149.43608,16.765111 L 149.43608,17.152571 L 149.04876,17.152571 L 149.43608,17.540031 L 149.8234,17.152571 L 150.21071,17.152571 L 150.21071,17.540031 L 149.8234,17.927491 L 149.04876,17.927491 L 149.04876,18.314951 L 149.43608,18.702411 L 149.8234,18.314951 L 150.21071,18.314951 L 150.59803,18.314951 L 150.98534,18.314951 L 151.37266,18.702411 L 151.75998,18.702411 L 151.75998,21.027181 L 151.75998,21.414641 L 152.14729,21.414641 L 152.14729,21.802101 L 151.75998,21.802101 L 151.37266,22.189571 L 151.37266,22.577031 L 150.98534,22.964491 L 150.59803,22.964491 L 150.21071,23.351951 L 150.21071,23.739411 L 150.21071,24.126871 L 150.21071,24.514331 L 150.59803,24.514331 L 150.21071,24.901791 L 149.8234,24.901791 L 149.8234,25.289261 L 149.43608,25.676721 L 149.43608,26.064181 L 149.43608,26.451641 L 149.04876,26.839101 L 148.66145,27.226561 L 148.27413,27.614021 L 148.27413,28.001481 L 148.66145,28.001481 L 149.04876,28.001481 L 149.04876,28.776411 L 149.04876,29.163871 L 149.04876,29.551331 L 148.66145,30.326251 L 148.27413,30.713711 L 147.88682,30.713711 L 147.4995,31.101171 L 147.4995,31.488641 L 147.11219,32.263561 L 146.72487,32.651021 L 146.72487,33.425941 L 146.72487,34.200861 L 146.72487,34.588321 L 146.72487,36.138171 L 147.11219,36.525631 L 147.4995,36.913091 L 147.88682,37.688011 L 148.27413,37.688011 L 149.04876,37.688011 L 149.8234,37.688011 L 150.59803,37.688011 L 150.98534,37.688011 L 151.37266,38.075481 L 152.14729,38.462941 L 152.53461,38.850401 L 152.53461,39.237861 L 153.69656,39.625321 L 154.8585,40.012781 L 155.24582,40.012781 L 155.63314,38.462941 L 156.02045,38.462941 L 156.02045,37.300551 L 156.02045,36.913091 L 156.79508,34.975791 L 156.79508,34.588321 L 157.1824,34.200861 L 157.56972,33.425941 L 157.95703,33.038481 L 157.95703,32.651021 L 158.34435,32.263561 L 159.11898,31.876101 L 159.89361,31.488641 L 159.89361,31.101171 L 160.28093,30.713711 L 161.05556,30.326251 L 161.83019,30.326251 L 162.21751,30.326251 L 162.60482,30.713711 L 162.99214,30.326251 L 163.37945,30.713711 L 164.15409,30.713711 L 164.5414,31.876101 L 164.92872,32.263561 L 165.31603,31.876101 L 165.70335,33.038481 L 165.70335,33.425941 L 166.09067,33.813401 L 166.8653,33.425941 L 166.8653,33.813401 L 166.8653,34.200861 L 167.25261,34.588321 L 167.25261,34.975791 L 168.02725,34.975791 L 168.02725,35.363251 L 168.41456,35.750711 L 168.80188,36.138171 L 169.18919,36.525631 L 169.18919,36.913091 L 169.57651,36.913091 L 169.18919,37.300551 L 169.57651,37.688011 L 169.57651,38.075481 L 171.51309,37.300551 L 171.9004,37.300551 L 172.67504,36.913091 L 173.83698,36.913091 L 174.2243,36.913091 L 174.61162,36.913091 L 174.99893,37.300551 L 175.38625,37.300551 L 175.38625,37.688011 L 176.93551,38.850401 L 177.32283,39.625321 L 178.87209,40.787701 L 178.87209,41.175171 L 180.03404,42.337551 L 181.19599,43.499931 L 183.13257,45.437241 L 183.51988,45.824701 L 184.29451,46.599621 L 185.06915,47.374551 L 185.45646,47.762011 L 185.45646,48.149471 L 185.84378,48.536931 L 186.23109,48.924391 L 186.61841,49.699311 L 187.00573,50.474241 L 187.39304,50.474241 L 187.39304,50.861701 L 187.78036,50.861701 L 188.55499,52.024081 L 188.94231,52.799001 L 189.32962,53.186461 L 189.71694,53.573931 L 190.49157,53.573931 L 190.49157,54.348851 L 190.10425,54.736311 L 189.32962,57.061081 L 189.32962,57.448541 L 190.49157,57.448541 L 190.49157,57.836001 L 190.87889,57.836001 L 191.65352,58.998381 L 192.04083,59.385841 L 192.42815,58.998381 L 192.42815,59.385841 L 192.04083,59.385841 L 192.04083,60.160771 L 193.20278,60.160771 L 192.81546,59.385841 L 192.81546,58.998381 L 193.5901,57.836001 L 195.91399,53.961391 L 197.46326,51.249161 L 198.23789,48.149471 L 198.6252,46.212161 L 199.01252,45.824701 L 199.01252,45.437241 L 198.23789,41.950091 L 198.23789,40.012781 L 198.23789,39.625321 L 198.23789,36.913091 L 197.07594,36.138171 L 197.07594,35.363251 L 197.07594,34.975791 L 197.07594,34.588321 L 197.46326,34.200861 L 197.46326,33.425941 L 197.46326,33.038481 L 197.85057,31.876101 L 198.23789,31.876101 L 198.6252,31.488641 L 199.39984,31.488641 L 198.6252,31.101171 L 198.23789,30.713711 L 198.6252,30.326251 L 198.6252,29.938791 L 198.6252,28.388951 L 198.23789,27.226561 L 198.23789,26.839101 L 197.85057,26.839101 L 196.68862,26.451641 L 196.30131,26.451641 L 196.30131,26.064181 L 195.91399,26.064181 L 195.52668,26.064181 L 195.13936,26.064181 L 194.75204,26.064181 L 194.75204,25.676721 L 194.36473,25.676721 L 193.97741,25.676721 L 193.20278,25.676721 L 192.81546,25.289261 L 192.42815,25.289261 L 192.04083,24.901791 L 191.65352,24.514331 L 191.65352,24.126871 L 191.65352,23.351951 L 192.04083,22.964491 L 191.65352,22.189571 L 191.65352,21.802101 L 192.04083,21.802101 L 192.42815,21.027181 L 192.42815,20.639721 L 191.65352,21.027181 L 191.2662,21.414641 L 190.10425,21.414641 L 189.71694,21.414641 L 189.32962,21.414641 L 188.94231,21.414641 L 188.16767,21.027181 L 188.16767,20.639721 L 187.78036,20.639721 L 187.39304,20.639721 L 186.61841,20.252261 L 185.84378,19.864801 L 185.84378,20.252261 L 185.06915,19.864801 L 184.29451,19.477341 L 183.9072,19.477341 L 183.9072,19.089881 L 184.29451,19.089881 L 183.9072,18.702411 L 183.13257,17.927491 L 182.74525,17.927491 L 182.35793,17.540031 L 182.35793,17.152571 L 182.35793,16.377651 L 182.35793,15.602721 L 181.97062,15.215261 L 181.97062,14.827801 L 181.97062,14.440341 L 181.97062,13.665421 L 181.5833,12.890501 L 181.19599,12.890501 L 181.19599,11.728111 L 181.5833,10.565731 L 181.5833,10.178271 L 180.42136,9.015881 L 179.64672,8.628421 L 179.25941,9.403341 L 179.64672,9.790811 L 179.25941,9.790811 L 178.87209,9.790811 L 178.48478,9.790811 L 178.48478,9.403341 L 178.87209,9.790811 L 178.87209,9.403341 L 179.25941,8.628421 L 178.87209,8.628421 L 178.09746,8.240961 L 177.32283,9.015881 L 176.93551,8.628421 L 176.16088,8.240961 L 174.99893,8.240961 L 174.61162,7.853501 z M 184.29451,19.089881 L 184.68183,19.477341 L 184.68183,19.089881 L 184.29451,19.089881 z M 198.23789,26.839101 L 198.23789,26.064181 L 197.85057,26.451641 L 198.23789,26.839101 z M 161.83019,1.266661 L 161.83019,1.654121 L 161.83019,1.654121 L 162.21751,2.041581 L 162.60482,2.429041 L 162.99214,2.816501 L 162.60482,2.429041 L 162.21751,2.429041 L 161.44287,2.429041 L 161.05556,2.429041 L 161.05556,2.429041 L 161.05556,2.816501 L 161.05556,3.203971 L 161.44287,3.203971 L 161.44287,3.203971 L 161.05556,3.978891 L 160.66824,3.591431 L 160.28093,2.429041 L 159.89361,2.041581 L 159.89361,1.654121 L 160.28093,0.879201 L 160.66824,0.879201 L 161.05556,0.879201 L 161.44287,0.879201 L 161.83019,1.266661 L 161.83019,1.266661 L 161.83019,1.266661 z M 165.70335,1.654121 L 166.47798,1.654121 L 167.25261,1.654121 L 168.02725,2.041581 L 168.02725,2.429041 L 168.02725,2.041581 L 167.25261,2.041581 L 166.47798,2.041581 L 166.09067,2.041581 L 166.09067,2.041581 L 165.70335,2.041581 L 165.31603,2.429041 L 165.31603,2.429041 L 165.31603,2.041581 L 165.70335,1.654121 L 165.70335,1.654121 z M 146.72487,15.990191 L 147.11219,16.377651 L 147.11219,15.990191 L 147.11219,15.990191 L 147.88682,16.377651 L 147.88682,16.377651 L 147.88682,16.765111 L 147.88682,16.765111 L 147.4995,16.765111 L 147.11219,16.765111 L 146.72487,16.377651 L 146.72487,15.990191 L 146.72487,15.990191 z", + "Zeeland" : "M 40.987617,159.35084 L 40.987617,159.7383 L 40.212987,160.51323 L 39.825667,160.51323 L 40.212987,161.28815 L 40.600307,161.28815 L 40.987617,162.06307 L 41.374937,162.83799 L 42.149567,162.83799 L 42.924197,162.83799 L 43.311517,162.83799 L 43.698827,162.83799 L 43.698827,162.45053 L 44.086147,162.45053 L 44.086147,162.83799 L 44.086147,163.22545 L 43.698827,163.61292 L 43.311517,163.61292 L 42.924197,163.61292 L 42.536877,163.61292 L 42.149567,163.61292 L 41.762247,163.61292 L 41.374937,164.00038 L 40.987617,164.00038 L 40.212987,163.22545 L 38.663727,162.83799 L 38.276407,162.83799 L 37.501777,163.22545 L 37.114457,163.61292 L 36.727147,163.61292 L 35.952507,164.00038 L 35.565197,164.38784 L 35.177877,164.00038 L 34.403247,164.38784 L 34.015927,164.7753 L 34.015927,165.55022 L 34.403247,165.55022 L 34.403247,165.93768 L 34.790567,165.93768 L 35.177877,165.93768 L 35.565197,166.32514 L 35.952507,166.7126 L 36.339827,166.7126 L 36.339827,167.10007 L 36.339827,167.48753 L 36.727147,167.87499 L 37.114457,167.87499 L 37.501777,168.26245 L 37.889087,168.64991 L 37.889087,169.42483 L 38.276407,169.81229 L 38.663727,169.81229 L 38.663727,170.19976 L 39.051037,170.19976 L 39.438357,170.19976 L 40.987617,170.19976 L 41.374937,170.19976 L 41.762247,170.19976 L 42.149567,170.58722 L 42.536877,170.58722 L 42.536877,170.19976 L 43.311517,170.58722 L 44.086147,170.97468 L 43.698827,171.36214 L 43.698827,171.7496 L 43.698827,172.13706 L 44.086147,172.13706 L 45.635407,172.91198 L 46.022727,173.29945 L 46.022727,175.62421 L 46.022727,176.01167 L 46.410037,177.56152 L 46.022727,177.56152 L 45.635407,177.56152 L 45.248097,177.56152 L 44.860777,177.17406 L 44.473457,177.17406 L 44.086147,177.17406 L 43.698827,177.17406 L 43.311517,177.56152 L 42.924197,177.56152 L 42.536877,177.94898 L 42.149567,177.94898 L 41.762247,177.94898 L 41.374937,177.94898 L 41.374937,177.56152 L 40.987617,177.56152 L 39.825667,176.7866 L 39.438357,176.7866 L 39.051037,175.62421 L 38.663727,175.62421 L 37.889087,174.46183 L 37.889087,174.07437 L 37.501777,173.68691 L 37.889087,173.29945 L 37.501777,172.91198 L 37.501777,172.52452 L 37.501777,172.13706 L 37.114457,172.13706 L 36.727147,171.7496 L 35.952507,170.97468 L 35.565197,170.58722 L 35.177877,170.58722 L 34.790567,170.58722 L 34.403247,170.19976 L 34.015927,170.19976 L 33.241297,169.81229 L 32.853987,169.81229 L 32.466667,169.42483 L 32.079347,169.81229 L 31.692037,169.81229 L 31.692037,170.19976 L 30.917407,169.03737 L 31.304717,169.03737 L 30.917407,168.64991 L 30.917407,168.26245 L 30.530087,168.26245 L 30.142777,168.26245 L 29.755457,168.26245 L 29.368137,168.64991 L 28.980827,168.64991 L 28.593507,168.64991 L 27.818877,168.64991 L 27.431557,168.64991 L 27.044247,168.64991 L 26.656927,168.64991 L 26.656927,168.26245 L 26.269617,167.87499 L 25.494977,167.87499 L 24.720347,168.26245 L 24.333037,168.26245 L 23.945717,168.64991 L 22.783767,168.26245 L 22.396457,168.26245 L 22.009137,167.87499 L 21.621817,168.26245 L 20.847187,168.64991 L 20.847187,169.03737 L 20.459877,169.42483 L 20.459877,169.81229 L 20.072557,170.19976 L 19.685237,170.19976 L 19.297927,170.58722 L 19.685237,170.58722 L 20.072557,170.58722 L 19.297927,170.97468 L 19.297927,170.58722 L 18.523297,169.81229 L 18.135977,169.42483 L 18.135977,169.03737 L 17.748667,167.87499 L 17.748667,167.48753 L 17.361347,167.48753 L 16.974027,167.10007 L 16.199398,166.7126 L 15.812088,166.32514 L 15.424768,165.93768 L 15.424768,165.55022 L 15.424768,164.7753 L 15.812088,164.38784 L 15.424768,164.38784 L 15.037448,164.38784 L 14.650138,164.00038 L 13.488188,164.00038 L 13.100868,164.00038 L 12.713558,164.00038 L 11.938928,164.00038 L 11.938928,164.38784 L 11.551608,164.38784 L 11.164288,164.38784 L 10.776977,164.7753 L 10.002347,165.16276 L 9.6150275,165.55022 L 8.8403975,165.93768 L 8.4530775,165.93768 L 8.0657675,166.32514 L 7.6784475,166.7126 L 6.9038175,167.10007 L 6.5164975,167.48753 L 6.1291875,167.48753 L 5.7418675,167.87499 L 5.3545575,168.26245 L 5.3545575,168.64991 L 5.3545575,169.03737 L 5.3545575,169.42483 L 5.7418675,170.19976 L 6.1291875,170.19976 L 6.5164975,170.58722 L 6.9038175,170.97468 L 7.6784475,171.36214 L 7.6784475,171.7496 L 8.0657675,171.7496 L 8.4530775,172.13706 L 8.8403975,172.52452 L 8.8403975,172.91198 L 9.2277075,173.29945 L 9.2277075,173.68691 L 9.6150275,174.07437 L 9.6150275,174.46183 L 10.002347,174.84929 L 10.389658,175.23675 L 11.164288,175.62421 L 11.164288,176.01167 L 11.551608,176.01167 L 11.938928,176.39914 L 11.938928,176.7866 L 12.326238,176.7866 L 13.100868,176.7866 L 13.488188,176.7866 L 13.488188,176.39914 L 13.488188,175.62421 L 13.875508,175.62421 L 13.875508,176.39914 L 14.262818,176.7866 L 14.650138,176.7866 L 15.424768,176.7866 L 15.812088,176.39914 L 15.812088,176.01167 L 16.199398,176.01167 L 16.974027,176.01167 L 17.361347,176.01167 L 16.586717,175.62421 L 16.974027,175.23675 L 17.748667,174.84929 L 18.135977,174.84929 L 18.135977,175.23675 L 19.297927,174.46183 L 19.297927,174.07437 L 19.297927,173.68691 L 19.685237,174.07437 L 19.685237,174.46183 L 20.072557,174.46183 L 19.685237,174.84929 L 19.685237,175.62421 L 20.072557,175.62421 L 19.685237,176.01167 L 20.072557,176.39914 L 20.072557,176.7866 L 19.685237,176.39914 L 19.297927,176.7866 L 18.910607,176.7866 L 19.297927,177.17406 L 19.685237,177.56152 L 19.685237,177.94898 L 20.072557,177.94898 L 20.072557,178.7239 L 20.072557,179.11136 L 20.459877,179.11136 L 20.847187,179.49883 L 21.234507,179.49883 L 21.234507,179.11136 L 21.621817,179.11136 L 22.396457,179.49883 L 22.783767,179.49883 L 22.783767,179.88629 L 23.558397,180.27375 L 23.558397,180.66121 L 23.945717,180.66121 L 24.720347,181.43613 L 25.107667,181.43613 L 25.882297,181.43613 L 26.656927,181.04867 L 27.044247,181.04867 L 27.431557,180.66121 L 28.206197,180.66121 L 28.593507,180.66121 L 28.980827,181.04867 L 29.368137,180.66121 L 29.755457,179.11136 L 30.142777,179.11136 L 30.142777,178.7239 L 30.142777,178.33644 L 30.530087,178.33644 L 30.530087,177.56152 L 30.530087,177.17406 L 30.530087,176.7866 L 30.530087,176.39914 L 30.530087,176.01167 L 31.304717,176.39914 L 32.079347,176.01167 L 32.466667,176.01167 L 33.241297,175.23675 L 33.628617,175.62421 L 34.015927,176.01167 L 34.403247,176.39914 L 34.403247,176.7866 L 34.790567,176.7866 L 34.790567,177.17406 L 35.177877,177.17406 L 35.565197,177.17406 L 35.952507,177.56152 L 36.339827,177.94898 L 37.114457,177.94898 L 37.114457,178.33644 L 37.114457,179.11136 L 37.889087,179.49883 L 38.276407,179.49883 L 38.663727,179.88629 L 39.051037,179.88629 L 39.825667,180.27375 L 40.600307,180.66121 L 41.374937,180.66121 L 41.762247,181.04867 L 42.536877,181.04867 L 43.698827,180.66121 L 44.473457,180.27375 L 44.860777,180.27375 L 45.248097,180.27375 L 45.248097,180.66121 L 45.635407,180.66121 L 46.022727,180.66121 L 46.797357,181.04867 L 47.184677,182.21105 L 47.184677,182.98598 L 48.346617,182.98598 L 49.121257,182.59852 L 48.733937,182.21105 L 48.346617,182.21105 L 48.346617,181.82359 L 48.733937,180.66121 L 48.346617,179.49883 L 48.346617,179.11136 L 49.121257,178.7239 L 48.346617,177.56152 L 46.797357,173.29945 L 46.022727,171.7496 L 46.022727,171.36214 L 46.410037,170.58722 L 46.797357,169.42483 L 47.184677,168.64991 L 47.184677,168.26245 L 46.797357,167.87499 L 46.797357,167.10007 L 45.248097,165.16276 L 44.860777,164.7753 L 44.860777,164.38784 L 44.860777,163.61292 L 44.860777,163.22545 L 45.248097,162.45053 L 45.635407,162.06307 L 46.022727,161.67561 L 47.184677,161.28815 L 46.797357,161.28815 L 46.022727,160.90069 L 45.248097,160.90069 L 44.860777,160.90069 L 44.473457,160.90069 L 43.698827,160.51323 L 42.536877,159.7383 L 42.149567,159.7383 L 40.987617,159.35084 z M 18.910607,176.7866 L 19.297927,176.01167 L 18.910607,176.39914 L 18.910607,176.7866 z M 43.311517,183.37344 L 43.311517,183.7609 L 43.698827,183.7609 L 43.698827,184.14836 L 43.311517,184.14836 L 43.311517,184.53582 L 43.698827,184.53582 L 43.311517,184.53582 L 42.924197,184.53582 L 42.536877,184.14836 L 42.536877,183.7609 L 42.536877,183.37344 L 42.536877,183.37344 L 42.536877,183.37344 L 42.924197,183.37344 L 43.311517,183.37344 z M 31.304717,183.37344 L 31.692037,183.37344 L 32.079347,182.98598 L 32.079347,183.37344 L 32.079347,183.37344 L 32.079347,183.37344 L 31.304717,183.37344 z M 42.149567,184.53582 L 42.149567,184.53582 L 42.149567,184.92328 L 42.149567,184.92328 L 42.149567,185.31074 L 42.149567,185.31074 L 41.762247,185.31074 L 41.762247,185.31074 L 41.374937,185.31074 L 41.374937,184.92328 L 40.987617,184.92328 L 40.987617,184.92328 L 41.374937,184.92328 L 41.762247,184.92328 L 41.374937,184.53582 L 41.762247,184.53582 L 41.762247,184.53582 L 41.374937,184.53582 L 40.987617,184.92328 L 40.987617,184.53582 L 40.987617,184.53582 L 41.374937,184.53582 L 41.374937,184.53582 L 40.987617,184.53582 L 41.374937,184.14836 L 41.374937,184.14836 L 40.987617,184.14836 L 40.987617,184.14836 L 40.600307,184.14836 L 40.600307,184.14836 L 40.600307,183.7609 L 40.600307,184.14836 L 40.212987,184.14836 L 40.212987,183.7609 L 40.987617,183.7609 L 41.374937,183.7609 L 41.374937,183.7609 L 41.762247,184.14836 L 41.762247,184.14836 L 42.149567,184.53582 z M 8.4530775,179.49883 L 8.4530775,179.88629 L 8.0657675,179.88629 L 7.6784475,179.88629 L 6.9038175,180.27375 L 6.5164975,180.27375 L 6.1291875,180.27375 L 5.7418675,180.66121 L 5.3545575,180.66121 L 4.9672375,180.66121 L 4.5799175,180.66121 L 4.1926075,180.66121 L 3.8052875,180.66121 L 3.8052875,181.04867 L 3.4179775,181.04867 L 3.0306575,181.43613 L 2.6433375,181.43613 L 2.2560275,181.43613 L 1.8687075,181.82359 L 1.4813975,181.82359 L 1.4813975,182.21105 L 1.8687075,182.59852 L 1.8687075,183.37344 L 1.8687075,183.7609 L 1.8687075,184.14836 L 2.2560275,184.53582 L 2.2560275,185.31074 L 1.0940775,186.47313 L 0.70675752,186.86059 L 1.0940775,187.24805 L 1.8687075,188.02297 L 1.4813975,188.02297 L 1.0940775,188.02297 L 1.0940775,188.41043 L 1.4813975,188.7979 L 1.8687075,189.18536 L 1.8687075,189.57282 L 1.4813975,189.96028 L 1.8687075,190.34774 L 2.2560275,190.34774 L 2.6433375,191.12266 L 3.0306575,191.12266 L 3.4179775,191.89758 L 3.8052875,191.51012 L 4.1926075,191.89758 L 4.1926075,192.28505 L 4.1926075,192.67251 L 4.5799175,192.67251 L 4.9672375,193.05997 L 5.3545575,193.05997 L 6.5164975,193.05997 L 9.6150275,192.67251 L 9.2277075,189.96028 L 8.8403975,189.57282 L 9.6150275,189.18536 L 10.002347,189.57282 L 10.389658,189.57282 L 10.389658,189.18536 L 10.776977,189.18536 L 11.164288,189.18536 L 11.164288,188.7979 L 11.551608,188.7979 L 11.938928,189.18536 L 12.326238,189.57282 L 12.713558,189.18536 L 12.326238,188.41043 L 13.100868,188.02297 L 13.488188,188.41043 L 14.262818,188.7979 L 14.650138,189.18536 L 15.424768,189.57282 L 15.812088,189.57282 L 15.812088,189.18536 L 16.586717,189.18536 L 17.361347,189.96028 L 17.748667,189.96028 L 18.135977,190.34774 L 18.135977,190.7352 L 19.297927,190.7352 L 19.685237,191.12266 L 19.685237,190.7352 L 21.234507,191.12266 L 21.621817,191.12266 L 22.009137,191.89758 L 22.396457,191.89758 L 22.396457,191.51012 L 22.783767,191.89758 L 23.171087,192.28505 L 23.558397,192.28505 L 23.558397,192.67251 L 23.171087,193.05997 L 23.171087,193.83489 L 23.171087,194.99727 L 23.171087,195.7722 L 23.558397,196.15966 L 23.945717,196.15966 L 23.945717,195.7722 L 24.333037,196.15966 L 24.720347,196.15966 L 25.107667,196.15966 L 25.494977,196.15966 L 25.882297,196.15966 L 26.269617,196.15966 L 26.656927,196.15966 L 27.044247,196.15966 L 27.818877,195.38474 L 28.206197,195.38474 L 28.593507,195.38474 L 28.593507,196.15966 L 28.206197,196.15966 L 27.818877,196.54712 L 28.206197,196.93458 L 28.593507,196.93458 L 28.980827,196.93458 L 29.755457,196.54712 L 30.142777,196.54712 L 29.755457,195.7722 L 30.530087,195.38474 L 30.917407,196.15966 L 31.304717,196.15966 L 31.304717,195.7722 L 31.692037,195.7722 L 32.079347,195.7722 L 32.466667,195.38474 L 32.466667,194.99727 L 33.241297,194.99727 L 33.628617,194.22235 L 34.015927,194.22235 L 34.403247,193.83489 L 35.177877,193.44743 L 35.565197,193.44743 L 35.565197,193.83489 L 35.952507,193.83489 L 36.339827,193.44743 L 36.339827,193.83489 L 37.114457,193.83489 L 37.501777,193.44743 L 37.889087,193.44743 L 38.276407,193.05997 L 39.051037,192.28505 L 39.825667,191.89758 L 40.600307,191.51012 L 42.536877,189.96028 L 42.924197,189.57282 L 46.797357,184.92328 L 46.410037,184.92328 L 46.410037,184.53582 L 46.022727,184.53582 L 46.022727,184.14836 L 46.022727,183.7609 L 45.635407,184.14836 L 45.635407,183.7609 L 45.635407,183.37344 L 45.248097,182.98598 L 44.860777,182.98598 L 44.473457,182.98598 L 44.860777,182.59852 L 44.473457,182.59852 L 44.086147,182.59852 L 44.086147,182.98598 L 43.698827,183.37344 L 43.698827,183.7609 L 44.086147,184.14836 L 44.473457,184.14836 L 44.473457,184.53582 L 44.473457,184.92328 L 44.086147,184.53582 L 43.698827,184.92328 L 44.086147,184.92328 L 43.698827,185.31074 L 44.086147,185.31074 L 44.086147,185.69821 L 43.698827,185.31074 L 42.924197,185.31074 L 43.311517,185.69821 L 43.311517,186.08567 L 42.924197,185.31074 L 42.536877,184.92328 L 42.149567,184.92328 L 42.536877,185.31074 L 42.924197,185.69821 L 42.536877,185.69821 L 42.536877,185.31074 L 42.149567,185.31074 L 41.762247,185.31074 L 41.374937,185.31074 L 41.374937,185.69821 L 41.762247,185.69821 L 41.762247,186.08567 L 41.374937,186.08567 L 40.600307,184.53582 L 40.212987,184.53582 L 39.051037,183.7609 L 39.051037,183.37344 L 38.663727,183.37344 L 38.663727,183.7609 L 37.114457,183.37344 L 36.727147,182.98598 L 36.727147,182.59852 L 36.339827,182.21105 L 36.339827,181.82359 L 35.952507,181.43613 L 36.339827,181.04867 L 35.952507,181.04867 L 35.565197,180.66121 L 35.565197,180.27375 L 34.790567,180.27375 L 34.403247,180.27375 L 34.015927,179.88629 L 33.241297,179.88629 L 32.853987,180.66121 L 32.853987,181.04867 L 32.466667,181.04867 L 32.466667,181.82359 L 32.466667,182.21105 L 32.466667,182.59852 L 32.466667,182.98598 L 32.079347,183.37344 L 31.304717,183.37344 L 30.142777,183.7609 L 29.368137,184.14836 L 28.980827,184.53582 L 28.593507,184.53582 L 28.593507,184.92328 L 27.818877,184.92328 L 27.818877,185.31074 L 27.431557,185.69821 L 27.044247,185.69821 L 26.269617,185.69821 L 25.882297,185.69821 L 25.494977,185.31074 L 25.107667,185.31074 L 25.107667,185.69821 L 24.720347,185.31074 L 24.720347,185.69821 L 24.720347,186.08567 L 24.333037,185.31074 L 24.333037,184.92328 L 23.945717,184.92328 L 23.558397,184.92328 L 23.558397,184.53582 L 22.396457,184.53582 L 22.396457,185.69821 L 21.621817,185.31074 L 21.621817,184.92328 L 22.009137,184.53582 L 21.621817,184.53582 L 20.847187,184.53582 L 20.459877,184.53582 L 20.072557,184.53582 L 19.685237,184.53582 L 19.685237,184.14836 L 19.297927,183.7609 L 18.910607,183.37344 L 18.523297,183.37344 L 18.523297,182.98598 L 18.135977,182.59852 L 16.974027,182.59852 L 16.199398,182.21105 L 15.812088,182.21105 L 14.650138,181.82359 L 14.262818,181.82359 L 14.262818,181.43613 L 13.875508,181.43613 L 13.100868,181.04867 L 12.713558,181.04867 L 12.326238,180.66121 L 11.938928,180.27375 L 11.551608,180.27375 L 11.164288,179.88629 L 10.776977,179.88629 L 10.776977,179.49883 L 9.6150275,179.49883 L 9.2277075,179.49883 L 8.4530775,179.49883 z M 43.698827,184.92328 L 43.311517,184.53582 L 42.924197,184.92328 L 43.698827,184.92328 z M 43.311517,184.53582 L 43.698827,184.53582 L 44.086147,184.53582 L 44.473457,184.53582 L 44.086147,184.14836 L 43.698827,184.14836 L 43.311517,184.14836 L 43.311517,184.53582 z M 44.086147,183.37344 L 44.473457,183.7609 L 44.086147,183.7609 L 44.086147,183.37344 z M 44.860777,183.37344 L 45.248097,183.37344 L 44.860777,183.7609 L 44.860777,183.37344 z M 42.149567,186.08567 L 42.536877,186.08567 L 42.536877,186.47313 L 42.149567,186.47313 L 42.149567,186.08567 z M 18.523297,168.26245 L 18.523297,168.26245 L 18.135977,167.87499 L 18.135977,167.48753 L 18.135977,167.48753 L 18.523297,167.48753 L 18.910607,167.87499 L 18.910607,168.26245 L 18.523297,168.64991 L 18.523297,168.64991 L 18.523297,168.26245 z M 20.459877,159.35084 L 20.459877,159.35084 L 20.459877,159.35084 L 20.072557,159.7383 L 20.072557,160.51323 L 20.072557,160.90069 L 20.072557,160.90069 L 20.459877,161.28815 L 20.847187,160.90069 L 20.459877,160.51323 L 20.459877,160.51323 L 20.847187,160.90069 L 20.459877,161.28815 L 20.459877,161.28815 L 19.685237,160.90069 L 19.685237,161.28815 L 19.685237,161.67561 L 19.685237,161.67561 L 19.685237,161.67561 L 19.297927,161.28815 L 19.297927,161.28815 L 19.297927,161.28815 L 18.910607,161.67561 L 18.910607,161.67561 L 19.297927,161.67561 L 19.297927,162.06307 L 18.910607,162.06307 L 18.910607,161.67561 L 18.523297,162.06307 L 18.523297,162.06307 L 18.523297,162.45053 L 18.523297,163.22545 L 18.135977,163.22545 L 18.135977,163.22545 L 18.523297,162.45053 L 18.523297,162.06307 L 18.135977,161.67561 L 18.135977,161.67561 L 17.748667,161.67561 L 17.748667,161.67561 L 17.748667,161.67561 L 17.748667,161.67561 L 18.135977,161.67561 L 18.523297,160.90069 L 19.297927,160.51323 L 19.297927,160.12576 L 19.297927,160.12576 L 19.297927,159.7383 L 19.297927,159.7383 L 19.297927,159.7383 L 19.297927,160.12576 L 19.297927,160.12576 L 19.297927,160.12576 L 19.685237,160.12576 L 19.685237,160.12576 L 19.685237,160.12576 L 19.685237,160.12576 L 20.072557,160.12576 L 20.072557,159.7383 L 20.459877,159.35084 L 20.459877,159.35084 z M 19.297927,177.17406 L 18.135977,176.39914 L 17.748667,176.01167 L 17.748667,176.01167 L 18.135977,175.23675 L 18.523297,175.62421 L 19.297927,176.01167 L 18.910607,176.39914 L 18.910607,176.7866 L 19.297927,177.17406 z M 19.685237,175.62421 L 19.297927,175.62421 L 18.523297,175.23675 L 18.523297,175.23675 L 19.297927,174.84929 L 19.685237,174.84929 L 19.685237,174.84929 L 19.685237,175.62421 z M 30.530087,152.37654 L 30.530087,152.37654 L 30.530087,152.37654 L 30.530087,151.98908 L 30.917407,151.98908 L 31.692037,152.37654 L 31.304717,152.37654 L 30.530087,152.37654 L 30.530087,152.37654 z M 44.860777,160.90069 L 44.860777,160.51323 L 44.473457,160.12576 L 44.086147,159.7383 L 44.086147,160.12576 L 43.698827,160.12576 L 42.924197,159.35084 L 43.311517,158.96338 L 43.311517,158.96338 L 42.924197,158.96338 L 42.924197,159.35084 L 42.149567,159.35084 L 42.149567,158.96338 L 42.924197,158.96338 L 42.924197,158.96338 L 44.086147,158.96338 L 44.473457,158.96338 L 44.473457,158.96338 L 44.086147,158.96338 L 44.086147,158.96338 L 43.698827,158.96338 L 43.698827,158.96338 L 43.698827,159.35084 L 43.698827,159.35084 L 44.473457,159.35084 L 44.473457,159.7383 L 44.860777,160.12576 L 44.860777,160.51323 L 44.860777,160.90069 L 44.860777,160.90069 L 44.860777,160.90069 z M 32.853987,151.60162 L 32.466667,151.98908 L 32.079347,151.98908 L 31.692037,151.98908 L 31.692037,151.60162 L 32.079347,151.60162 L 32.466667,151.60162 L 33.241297,151.60162 L 32.853987,151.60162 z M 31.692037,160.90069 L 31.304717,161.28815 L 30.917407,161.28815 L 30.917407,161.28815 L 30.530087,161.28815 L 30.530087,161.28815 L 29.755457,160.90069 L 29.368137,160.90069 L 29.368137,160.90069 L 30.142777,160.51323 L 30.142777,160.12576 L 30.142777,160.51323 L 29.368137,160.90069 L 28.980827,160.90069 L 29.368137,160.12576 L 28.980827,159.7383 L 28.980827,158.96338 L 28.593507,158.96338 L 28.593507,158.57592 L 28.593507,158.18846 L 28.206197,157.41354 L 27.431557,157.02607 L 27.044247,157.41354 L 27.044247,157.02607 L 25.882297,156.63861 L 25.882297,156.63861 L 25.882297,156.63861 L 25.882297,156.25115 L 25.882297,156.25115 L 25.882297,155.86369 L 25.494977,155.47623 L 24.720347,155.47623 L 24.333037,155.47623 L 23.945717,155.86369 L 23.945717,156.25115 L 24.333037,156.25115 L 24.720347,155.86369 L 25.107667,156.25115 L 24.720347,155.86369 L 24.333037,156.25115 L 23.558397,156.25115 L 23.171087,157.02607 L 22.396457,157.41354 L 22.396457,157.41354 L 22.396457,157.41354 L 22.396457,157.41354 L 22.009137,157.41354 L 21.621817,157.41354 L 20.847187,157.801 L 20.459877,158.18846 L 20.459877,158.96338 L 20.459877,158.96338 L 20.847187,158.96338 L 20.847187,159.35084 L 20.459877,159.35084 L 20.459877,159.35084 L 20.459877,159.35084 L 20.072557,158.96338 L 20.072557,158.96338 L 20.072557,158.96338 L 20.459877,158.96338 L 20.459877,158.96338 L 20.459877,158.18846 L 20.459877,158.18846 L 20.072557,157.801 L 19.685237,157.801 L 19.297927,157.801 L 19.297927,157.41354 L 18.910607,157.02607 L 18.523297,156.25115 L 18.523297,155.47623 L 18.523297,154.70131 L 18.523297,154.31385 L 18.910607,153.53892 L 19.685237,152.764 L 20.459877,152.37654 L 20.847187,152.37654 L 21.234507,152.37654 L 22.783767,151.98908 L 23.171087,151.60162 L 23.945717,151.60162 L 24.720347,151.60162 L 25.882297,151.98908 L 25.882297,151.60162 L 25.882297,151.60162 L 25.882297,151.21416 L 26.269617,150.82669 L 26.269617,150.43923 L 26.656927,150.43923 L 27.044247,150.43923 L 26.656927,150.82669 L 27.044247,150.82669 L 26.656927,151.21416 L 26.656927,151.21416 L 26.656927,151.21416 L 26.656927,151.21416 L 26.656927,150.82669 L 26.656927,150.82669 L 26.269617,150.82669 L 26.269617,151.21416 L 25.882297,151.98908 L 26.269617,151.98908 L 26.656927,151.98908 L 27.044247,151.98908 L 27.431557,151.98908 L 27.431557,151.98908 L 27.431557,151.98908 L 28.593507,151.98908 L 29.368137,151.60162 L 29.368137,151.60162 L 29.755457,151.98908 L 29.755457,151.98908 L 30.142777,152.37654 L 30.142777,152.764 L 30.530087,152.764 L 30.530087,152.764 L 30.917407,152.764 L 31.304717,152.764 L 32.079347,152.37654 L 32.466667,152.764 L 33.628617,152.764 L 33.628617,152.764 L 33.628617,153.15146 L 33.628617,153.15146 L 33.628617,152.764 L 34.015927,153.15146 L 34.015927,153.92638 L 34.015927,153.92638 L 34.403247,154.31385 L 35.177877,155.08877 L 35.565197,155.86369 L 35.565197,156.63861 L 35.952507,156.63861 L 36.727147,156.63861 L 37.114457,156.63861 L 37.889087,157.02607 L 37.889087,157.02607 L 39.051037,157.801 L 39.438357,157.801 L 39.438357,157.801 L 39.438357,158.18846 L 39.825667,158.18846 L 40.600307,157.41354 L 40.987617,157.41354 L 41.374937,157.41354 L 41.374937,157.41354 L 42.536877,157.41354 L 42.536877,157.41354 L 42.924197,157.02607 L 43.311517,157.02607 L 43.311517,157.801 L 43.311517,158.18846 L 43.698827,158.18846 L 43.698827,158.18846 L 43.311517,158.57592 L 43.311517,158.57592 L 42.924197,158.57592 L 43.311517,158.18846 L 43.311517,158.18846 L 42.924197,157.801 L 42.924197,157.41354 L 42.536877,157.41354 L 42.536877,157.801 L 42.149567,157.41354 L 40.987617,157.801 L 40.600307,157.801 L 40.212987,158.18846 L 39.825667,158.18846 L 39.825667,158.57592 L 40.212987,158.96338 L 40.212987,158.96338 L 40.212987,159.35084 L 40.212987,159.35084 L 40.212987,159.35084 L 40.212987,159.35084 L 39.825667,159.7383 L 40.212987,159.7383 L 40.212987,159.35084 L 39.825667,159.7383 L 39.825667,160.12576 L 39.438357,160.12576 L 39.051037,160.51323 L 38.663727,161.28815 L 38.276407,161.28815 L 37.889087,161.67561 L 37.501777,161.28815 L 36.727147,161.67561 L 36.339827,162.06307 L 35.565197,162.06307 L 35.565197,162.45053 L 34.403247,162.45053 L 34.015927,162.45053 L 33.241297,162.45053 L 32.853987,162.45053 L 32.853987,162.45053 L 32.079347,161.67561 L 32.079347,161.67561 L 32.079347,161.67561 L 31.692037,160.90069 L 31.692037,160.90069 z M 27.818877,168.64991 L 27.818877,168.26245 L 27.431557,168.26245 L 27.818877,168.26245 L 27.818877,168.26245 L 27.818877,168.64991 L 27.818877,168.64991 L 27.818877,168.64991 z M 26.656927,163.22545 L 26.656927,163.22545 L 27.044247,163.22545 L 27.044247,163.22545 L 27.044247,163.61292 L 27.431557,163.61292 L 27.818877,163.61292 L 28.206197,164.00038 L 28.206197,164.38784 L 28.593507,165.16276 L 28.980827,165.55022 L 28.980827,165.93768 L 28.980827,165.93768 L 29.368137,165.93768 L 29.368137,166.32514 L 29.368137,166.7126 L 29.368137,166.7126 L 29.368137,167.10007 L 29.368137,167.10007 L 28.980827,167.48753 L 28.206197,167.48753 L 28.206197,167.48753 L 28.206197,167.48753 L 27.818877,168.26245 L 27.818877,168.26245 L 27.044247,168.26245 L 26.656927,167.87499 L 26.269617,167.48753 L 26.269617,167.48753 L 25.494977,167.48753 L 25.107667,167.48753 L 25.107667,167.87499 L 24.720347,167.87499 L 24.720347,167.87499 L 24.333037,167.87499 L 23.558397,167.87499 L 23.171087,167.48753 L 22.396457,167.48753 L 20.847187,167.87499 L 20.459877,168.26245 L 20.072557,169.03737 L 19.685237,169.03737 L 19.297927,169.81229 L 19.297927,169.81229 L 19.297927,169.42483 L 18.910607,169.03737 L 19.297927,168.64991 L 19.297927,168.26245 L 19.297927,167.87499 L 18.523297,167.10007 L 18.910607,167.10007 L 18.910607,166.7126 L 19.297927,166.32514 L 19.297927,166.32514 L 18.910607,166.7126 L 18.910607,166.7126 L 18.523297,167.10007 L 18.523297,167.10007 L 18.135977,166.7126 L 17.748667,166.32514 L 17.361347,166.32514 L 16.974027,165.93768 L 16.586717,165.93768 L 16.586717,165.16276 L 16.199398,165.16276 L 16.199398,164.7753 L 16.199398,164.38784 L 16.586717,164.38784 L 16.586717,164.38784 L 16.199398,164.38784 L 15.812088,164.38784 L 15.812088,164.38784 L 15.812088,164.38784 L 16.974027,164.00038 L 18.135977,163.61292 L 18.135977,163.22545 L 18.135977,163.22545 L 18.523297,163.22545 L 18.523297,163.22545 L 18.523297,163.61292 L 18.910607,163.61292 L 19.297927,163.61292 L 19.685237,164.00038 L 20.072557,164.00038 L 20.459877,164.38784 L 20.459877,164.38784 L 20.847187,164.38784 L 21.234507,164.00038 L 21.621817,164.00038 L 22.396457,163.61292 L 22.396457,163.61292 L 23.171087,164.00038 L 23.558397,163.61292 L 23.558397,163.61292 L 24.333037,163.22545 L 24.333037,163.22545 L 25.107667,163.22545 L 25.494977,163.61292 L 26.269617,163.22545 L 26.656927,163.22545 L 26.656927,163.22545 z ", + "Zuid-Holland" : "M 32.853987,148.88939 L 33.241297,149.27685 L 33.241297,149.27685 L 32.853987,148.88939 L 32.079347,148.88939 L 31.304717,149.27685 L 30.530087,149.66431 L 30.142777,149.66431 L 30.142777,149.27685 L 30.142777,149.27685 L 30.917407,148.88939 L 30.917407,148.50193 L 31.304717,148.11447 L 31.692037,147.727 L 31.692037,148.11447 L 32.079347,148.11447 L 32.853987,148.88939 L 32.853987,148.88939 z M 61.128047,103.55642 L 58.804147,108.59342 L 58.029517,109.7558 L 57.642207,110.53073 L 56.480257,112.46803 L 56.092937,112.85549 L 56.092937,113.24295 L 55.318307,114.40534 L 54.930987,115.18026 L 53.769047,116.73011 L 51.445147,119.8298 L 50.283197,120.60472 L 50.283197,120.99218 L 49.508567,121.7671 L 49.121257,121.7671 L 49.121257,122.15456 L 49.121257,122.54202 L 49.508567,122.54202 L 49.121257,122.92949 L 49.121257,122.54202 L 48.733937,122.54202 L 48.346617,122.92949 L 47.959307,123.70441 L 47.571987,124.09187 L 46.410037,125.25425 L 45.635407,126.02918 L 44.473457,127.57902 L 44.086147,127.96648 L 43.311517,128.7414 L 42.924197,129.12887 L 42.924197,129.51633 L 42.149567,130.67871 L 41.374937,131.06617 L 40.600307,131.84109 L 40.212987,131.84109 L 39.825667,131.45363 L 37.889087,131.06617 L 37.501777,131.45363 L 37.114457,131.45363 L 36.727147,131.45363 L 36.339827,131.84109 L 36.339827,132.22856 L 35.952507,132.61602 L 35.565197,133.39094 L 35.952507,133.7784 L 36.339827,134.16586 L 36.339827,134.55332 L 35.565197,135.32825 L 35.177877,136.10317 L 34.403247,137.26555 L 34.790567,137.26555 L 35.177877,137.26555 L 35.565197,137.65301 L 35.952507,137.26555 L 37.501777,136.87809 L 37.889087,136.87809 L 38.276407,137.65301 L 37.889087,137.65301 L 37.889087,138.04047 L 37.114457,138.8154 L 37.114457,139.20286 L 36.727147,139.59032 L 36.727147,139.97778 L 37.114457,140.36524 L 38.663727,142.69001 L 38.663727,143.07747 L 38.663727,143.46493 L 38.276407,143.85239 L 39.051037,143.46493 L 39.438357,143.85239 L 39.825667,144.23985 L 40.212987,144.62731 L 40.212987,145.01478 L 40.600307,145.01478 L 40.987617,145.01478 L 41.374937,145.01478 L 41.762247,145.01478 L 41.374937,145.40224 L 41.762247,145.7897 L 42.149567,145.7897 L 42.149567,145.40224 L 42.536877,145.40224 L 42.924197,145.40224 L 43.311517,145.40224 L 43.698827,145.7897 L 44.473457,146.95208 L 44.860777,146.95208 L 45.248097,146.95208 L 45.635407,146.95208 L 45.635407,147.33954 L 46.410037,147.33954 L 46.797357,148.11447 L 47.184677,148.50193 L 47.571987,148.50193 L 47.959307,148.50193 L 47.571987,148.88939 L 47.184677,148.88939 L 47.571987,149.66431 L 47.959307,150.05177 L 49.121257,150.43923 L 49.121257,150.82669 L 49.895887,150.82669 L 50.670517,151.21416 L 51.445147,151.21416 L 51.445147,151.60162 L 52.994407,151.98908 L 53.769047,152.764 L 54.156357,152.764 L 54.930987,153.15146 L 56.092937,153.92638 L 56.480257,153.92638 L 56.867567,154.31385 L 57.642207,154.31385 L 57.642207,154.70131 L 59.191467,154.70131 L 59.578787,154.70131 L 60.353417,155.08877 L 60.740727,155.08877 L 61.128047,155.08877 L 61.515367,155.47623 L 61.902677,155.47623 L 62.289997,155.86369 L 62.677307,155.86369 L 63.451937,155.47623 L 63.839257,155.47623 L 65.001207,155.08877 L 65.388517,155.08877 L 65.775837,154.70131 L 66.550467,154.70131 L 66.937787,153.92638 L 67.325097,154.31385 L 67.712417,154.31385 L 68.487047,153.92638 L 68.487047,154.31385 L 70.036317,153.92638 L 70.423627,153.53892 L 70.810947,153.15146 L 71.585577,152.764 L 72.747527,151.98908 L 73.134837,151.21416 L 73.522157,150.82669 L 73.909467,149.66431 L 74.296787,149.27685 L 74.684107,148.88939 L 74.684107,148.50193 L 75.071417,148.11447 L 75.458737,148.11447 L 76.233367,147.727 L 77.007997,147.727 L 77.782627,147.727 L 78.557267,147.727 L 78.944577,147.727 L 79.719207,147.33954 L 80.106527,147.33954 L 80.881157,146.17716 L 81.268477,146.17716 L 82.043107,145.7897 L 82.430427,145.40224 L 83.205057,145.40224 L 83.592367,145.40224 L 83.979687,145.40224 L 84.754317,145.7897 L 85.528947,145.7897 L 85.916267,145.7897 L 86.303577,146.17716 L 87.078217,146.17716 L 87.465527,146.17716 L 88.240157,146.17716 L 88.240157,145.7897 L 88.627477,144.23985 L 87.852847,144.23985 L 87.465527,144.23985 L 87.078217,144.23985 L 86.690897,143.85239 L 87.078217,143.85239 L 86.690897,143.46493 L 86.690897,143.07747 L 86.690897,142.69001 L 87.078217,143.07747 L 87.852847,142.69001 L 88.240157,143.07747 L 89.402107,142.69001 L 89.789427,143.07747 L 90.176737,143.07747 L 90.176737,142.69001 L 89.789427,142.30255 L 89.789427,141.91509 L 89.789427,141.52762 L 90.176737,141.52762 L 90.564057,141.52762 L 90.951377,141.52762 L 91.338687,141.14016 L 91.338687,140.36524 L 91.726007,140.36524 L 92.500637,140.36524 L 92.887957,140.36524 L 92.887957,139.97778 L 93.275267,139.59032 L 93.662587,138.42794 L 93.662587,138.04047 L 94.049897,138.04047 L 94.437217,137.26555 L 94.824537,136.87809 L 94.437217,136.87809 L 94.824537,136.49063 L 94.437217,136.49063 L 94.049897,136.49063 L 93.662587,136.49063 L 92.113317,135.71571 L 91.338687,135.32825 L 89.789427,134.94078 L 90.176737,134.16586 L 89.789427,133.00348 L 89.402107,133.00348 L 89.014797,133.00348 L 89.014797,133.39094 L 88.627477,133.7784 L 88.240157,133.7784 L 87.465527,133.00348 L 87.078217,133.00348 L 86.690897,133.00348 L 86.303577,133.39094 L 85.916267,133.7784 L 85.916267,134.16586 L 85.528947,134.55332 L 85.141637,134.55332 L 84.754317,134.16586 L 84.366997,134.16586 L 83.979687,134.16586 L 83.592367,134.55332 L 83.205057,135.32825 L 82.817737,135.32825 L 82.817737,135.71571 L 82.430427,135.71571 L 82.043107,136.10317 L 81.655787,136.10317 L 80.881157,136.10317 L 80.493847,136.10317 L 80.493847,135.71571 L 80.493847,134.94078 L 80.106527,134.55332 L 80.106527,134.16586 L 79.719207,133.7784 L 79.331897,133.39094 L 78.944577,133.00348 L 78.557267,132.22856 L 78.169947,131.45363 L 77.782627,131.06617 L 79.331897,130.67871 L 79.719207,130.67871 L 79.331897,129.51633 L 78.944577,129.51633 L 78.557267,129.51633 L 78.169947,129.51633 L 77.782627,129.51633 L 77.395317,129.90379 L 77.007997,129.90379 L 76.620687,129.12887 L 77.007997,128.7414 L 77.007997,128.35394 L 77.395317,128.35394 L 77.782627,127.96648 L 78.169947,126.8041 L 79.331897,126.02918 L 79.719207,126.02918 L 80.106527,125.64171 L 80.493847,125.25425 L 78.944577,125.25425 L 78.169947,125.25425 L 78.557267,124.86679 L 78.169947,124.86679 L 78.169947,124.47933 L 77.782627,123.31695 L 77.782627,122.15456 L 78.169947,122.15456 L 77.782627,121.7671 L 76.233367,120.99218 L 76.233367,120.60472 L 76.620687,120.60472 L 77.007997,120.60472 L 77.007997,120.21726 L 77.395317,119.8298 L 77.007997,119.8298 L 77.395317,119.44233 L 77.782627,119.05487 L 78.557267,119.05487 L 78.557267,119.44233 L 78.944577,119.44233 L 79.719207,119.44233 L 80.106527,119.44233 L 80.493847,119.44233 L 80.493847,117.89249 L 81.655787,117.50503 L 80.106527,116.34264 L 79.719207,115.95518 L 78.944577,115.95518 L 78.557267,115.56772 L 78.169947,115.18026 L 78.169947,114.7928 L 77.782627,114.7928 L 77.395317,114.40534 L 77.395317,114.01788 L 77.007997,114.01788 L 77.007997,113.63042 L 77.007997,112.85549 L 76.620687,112.46803 L 76.620687,112.08057 L 76.233367,112.08057 L 75.846047,112.08057 L 75.458737,112.08057 L 75.458737,112.46803 L 75.071417,112.85549 L 74.296787,112.85549 L 73.909467,112.85549 L 73.522157,113.63042 L 73.134837,113.24295 L 72.747527,112.85549 L 73.134837,111.69311 L 71.972897,111.30565 L 71.585577,111.69311 L 71.198257,112.08057 L 70.810947,112.08057 L 70.423627,112.08057 L 70.036317,111.69311 L 70.036317,112.08057 L 69.648997,112.08057 L 68.874367,112.46803 L 68.487047,112.85549 L 68.099737,112.85549 L 67.712417,112.85549 L 66.550467,112.85549 L 65.775837,112.46803 L 65.388517,112.85549 L 65.001207,112.85549 L 64.613887,112.46803 L 64.226577,112.46803 L 64.226577,112.08057 L 64.226577,111.69311 L 64.226577,111.30565 L 64.613887,111.30565 L 64.613887,110.91819 L 65.001207,110.53073 L 65.001207,109.7558 L 65.001207,109.36834 L 65.001207,108.98088 L 65.001207,108.59342 L 65.388517,108.20596 L 65.775837,107.8185 L 66.163157,107.43104 L 66.163157,107.04358 L 66.163157,106.65611 L 66.550467,106.65611 L 66.550467,105.88119 L 66.937787,105.49373 L 67.325097,104.71881 L 66.550467,104.33135 L 66.163157,104.33135 L 65.775837,104.33135 L 65.388517,104.71881 L 65.001207,104.33135 L 65.001207,105.10627 L 63.839257,104.71881 L 61.128047,103.55642 z M 38.276407,143.85239 L 37.889087,144.23985 L 38.276407,144.23985 L 38.276407,143.85239 z M 35.565197,143.07747 L 34.790567,143.46493 L 35.565197,143.46493 L 35.565197,143.07747 z M 35.565197,143.46493 L 34.403247,143.85239 L 34.015927,143.85239 L 33.628617,143.85239 L 34.403247,143.46493 L 33.241297,143.85239 L 30.917407,144.62731 L 30.142777,145.01478 L 29.755457,145.01478 L 28.593507,145.40224 L 28.206197,145.40224 L 27.818877,146.17716 L 27.818877,146.56462 L 27.818877,146.95208 L 28.206197,148.11447 L 28.206197,148.50193 L 28.593507,148.50193 L 28.593507,148.88939 L 28.980827,148.88939 L 29.755457,148.50193 L 29.755457,148.11447 L 29.368137,148.11447 L 29.368137,147.727 L 29.755457,147.727 L 30.142777,147.727 L 30.530087,147.727 L 30.917407,147.33954 L 31.304717,147.33954 L 31.692037,147.33954 L 32.079347,147.33954 L 32.466667,146.95208 L 32.853987,146.56462 L 33.628617,146.95208 L 34.403247,146.95208 L 35.177877,147.33954 L 35.177877,147.727 L 35.565197,148.11447 L 35.952507,148.88939 L 36.339827,148.88939 L 36.339827,149.66431 L 36.339827,150.05177 L 35.952507,150.05177 L 35.952507,150.43923 L 36.339827,150.43923 L 35.952507,150.82669 L 35.952507,151.21416 L 36.339827,151.98908 L 36.727147,151.98908 L 36.727147,152.37654 L 37.114457,152.764 L 37.114457,153.15146 L 37.501777,153.92638 L 37.501777,154.70131 L 37.889087,154.70131 L 38.276407,154.70131 L 38.663727,155.08877 L 39.051037,154.70131 L 39.051037,155.08877 L 39.825667,155.08877 L 40.600307,155.08877 L 40.987617,155.08877 L 41.374937,155.08877 L 41.762247,155.47623 L 42.924197,155.86369 L 43.311517,156.63861 L 43.698827,157.02607 L 44.473457,157.02607 L 44.860777,157.02607 L 44.860777,157.41354 L 45.635407,157.41354 L 46.022727,157.801 L 46.410037,157.801 L 46.410037,158.18846 L 46.410037,158.57592 L 47.184677,158.96338 L 47.571987,159.35084 L 48.733937,159.35084 L 49.121257,159.35084 L 49.508567,159.35084 L 50.283197,158.96338 L 51.057837,158.96338 L 51.445147,158.96338 L 52.607097,158.57592 L 53.381727,158.18846 L 53.769047,157.801 L 54.156357,157.02607 L 54.156357,156.63861 L 53.769047,156.63861 L 53.769047,156.25115 L 54.156357,156.25115 L 54.543677,156.25115 L 54.930987,156.25115 L 55.318307,156.25115 L 56.092937,155.86369 L 55.705627,155.86369 L 55.705627,155.47623 L 55.705627,155.08877 L 55.318307,155.08877 L 54.930987,155.47623 L 54.156357,155.47623 L 53.381727,155.47623 L 52.607097,155.47623 L 52.219777,155.47623 L 51.445147,155.47623 L 50.670517,154.31385 L 49.895887,154.31385 L 49.508567,153.92638 L 49.121257,153.92638 L 48.733937,153.53892 L 48.733937,153.15146 L 47.959307,152.764 L 47.959307,152.37654 L 47.959307,151.98908 L 47.571987,151.98908 L 46.410037,150.82669 L 45.248097,149.66431 L 44.860777,149.66431 L 44.860777,149.27685 L 44.086147,149.27685 L 43.698827,148.88939 L 43.311517,148.88939 L 42.536877,148.11447 L 41.762247,147.727 L 41.374937,147.727 L 39.825667,146.95208 L 39.438357,146.56462 L 38.276407,146.17716 L 38.276407,145.7897 L 37.889087,145.40224 L 37.501777,145.40224 L 37.501777,145.7897 L 37.114457,145.40224 L 37.501777,145.40224 L 37.501777,145.01478 L 37.501777,144.62731 L 37.114457,144.62731 L 37.114457,145.01478 L 36.727147,145.01478 L 36.727147,144.62731 L 35.952507,144.23985 L 35.952507,143.85239 L 35.565197,143.46493 z M 28.206197,148.88939 L 27.818877,149.66431 L 27.431557,150.05177 L 26.656927,150.43923 L 27.044247,150.43923 L 27.818877,150.82669 L 28.206197,151.21416 L 28.593507,151.21416 L 28.593507,150.82669 L 28.206197,150.43923 L 27.818877,150.05177 L 28.206197,148.88939 z M 50.670517,151.60162 L 51.445147,151.98908 L 52.607097,152.37654 L 53.381727,152.764 L 53.381727,152.764 L 53.769047,153.15146 L 53.381727,153.15146 L 53.381727,153.15146 L 52.607097,153.53892 L 51.445147,153.53892 L 51.057837,153.53892 L 50.670517,153.15146 L 50.283197,152.764 L 50.283197,152.764 L 49.895887,152.764 L 49.121257,151.98908 L 48.733937,151.98908 L 48.346617,151.60162 L 48.346617,151.60162 L 48.346617,151.60162 L 48.733937,151.21416 L 48.733937,151.21416 L 49.508567,151.21416 L 50.670517,151.60162 z M 34.015927,150.82669 L 34.403247,150.82669 L 34.790567,150.43923 L 34.790567,150.43923 L 34.790567,150.82669 L 34.790567,151.21416 L 35.177877,152.37654 L 35.952507,153.15146 L 35.952507,153.15146 L 35.952507,153.15146 L 35.565197,153.53892 L 35.177877,153.53892 L 35.177877,153.15146 L 34.790567,152.764 L 34.790567,152.37654 L 34.403247,151.60162 L 34.015927,151.21416 L 34.015927,151.21416 L 34.015927,150.82669 z M 56.092937,155.86369 L 55.705627,156.25115 L 55.705627,156.25115 L 56.092937,156.25115 L 56.092937,156.25115 L 55.705627,156.25115 L 55.705627,156.63861 L 55.318307,156.25115 L 55.318307,156.25115 L 55.318307,156.25115 L 56.092937,155.86369 z ", + "Noord-Brabant" : "M 82.430427,145.40224 L 82.043107,145.7897 L 81.268477,146.17716 L 80.881157,146.17716 L 80.106527,147.33954 L 79.719207,147.33954 L 78.944577,147.727 L 78.557267,147.727 L 77.782627,147.727 L 77.007997,147.727 L 76.233367,147.727 L 75.458737,148.11447 L 75.071417,148.11447 L 74.684107,148.50193 L 74.684107,148.88939 L 74.296787,149.27685 L 73.909467,149.66431 L 73.522157,150.82669 L 73.134837,151.21416 L 72.747527,151.98908 L 71.585577,152.764 L 70.810947,153.15146 L 70.423627,153.53892 L 70.036317,153.92638 L 68.487047,154.31385 L 68.487047,154.70131 L 67.712417,155.08877 L 67.325097,155.47623 L 66.937787,155.47623 L 66.550467,155.86369 L 66.163157,156.25115 L 63.064627,157.02607 L 62.677307,157.02607 L 62.289997,157.02607 L 61.128047,157.41354 L 60.353417,157.41354 L 59.191467,157.02607 L 58.804147,156.63861 L 58.416837,156.63861 L 58.029517,156.25115 L 57.642207,156.25115 L 56.867567,156.25115 L 56.480257,156.63861 L 55.705627,157.02607 L 55.318307,157.41354 L 55.318307,157.801 L 54.930987,158.57592 L 54.543677,158.96338 L 54.156357,159.35084 L 53.769047,159.7383 L 52.994407,160.12576 L 52.607097,160.12576 L 52.219777,160.51323 L 51.832467,160.51323 L 51.832467,160.12576 L 51.445147,160.12576 L 51.057837,160.51323 L 50.283197,160.51323 L 49.895887,160.51323 L 49.508567,160.90069 L 49.121257,160.90069 L 48.733937,160.90069 L 48.346617,161.67561 L 47.959307,161.67561 L 47.959307,161.28815 L 47.571987,161.28815 L 47.184677,161.28815 L 46.022727,161.67561 L 45.635407,162.06307 L 45.248097,162.45053 L 44.860777,163.22545 L 44.860777,163.61292 L 44.860777,164.38784 L 44.860777,164.7753 L 45.248097,165.16276 L 46.797357,167.10007 L 46.797357,167.87499 L 47.184677,168.26245 L 47.184677,168.64991 L 46.797357,169.42483 L 46.410037,170.58722 L 46.022727,171.36214 L 46.022727,171.7496 L 46.797357,173.29945 L 48.346617,177.56152 L 49.121257,178.7239 L 48.346617,179.11136 L 48.346617,179.49883 L 48.733937,180.66121 L 48.346617,181.82359 L 48.346617,182.21105 L 48.733937,182.21105 L 49.121257,182.59852 L 51.832467,182.59852 L 51.832467,182.98598 L 52.219777,183.37344 L 52.219777,184.53582 L 52.607097,184.14836 L 53.769047,184.53582 L 54.156357,184.53582 L 54.543677,184.53582 L 54.930987,184.53582 L 55.318307,184.53582 L 55.705627,184.14836 L 56.480257,183.7609 L 56.867567,183.7609 L 56.867567,183.37344 L 56.867567,182.98598 L 54.930987,180.27375 L 54.543677,179.11136 L 54.930987,178.7239 L 55.318307,178.7239 L 55.318307,178.33644 L 55.318307,177.94898 L 55.318307,177.56152 L 55.318307,177.17406 L 54.930987,177.17406 L 54.543677,176.7866 L 54.930987,176.39914 L 57.642207,175.23675 L 58.416837,175.23675 L 58.804147,174.84929 L 59.191467,174.46183 L 59.578787,174.46183 L 59.966097,174.46183 L 62.677307,174.07437 L 63.064627,174.84929 L 62.289997,176.7866 L 62.677307,179.11136 L 64.613887,178.33644 L 65.001207,178.33644 L 65.775837,178.33644 L 67.325097,178.7239 L 68.099737,179.11136 L 68.487047,179.11136 L 68.487047,178.7239 L 68.874367,179.11136 L 69.648997,178.7239 L 69.261677,177.17406 L 70.423627,176.7866 L 70.810947,176.7866 L 71.198257,175.62421 L 71.972897,175.23675 L 72.360207,174.84929 L 72.747527,174.07437 L 73.522157,173.68691 L 73.909467,173.29945 L 73.522157,172.91198 L 73.909467,172.91198 L 74.296787,172.91198 L 74.296787,172.52452 L 75.071417,172.13706 L 75.458737,172.52452 L 75.458737,172.91198 L 75.846047,172.91198 L 76.233367,172.91198 L 77.007997,173.29945 L 77.395317,173.29945 L 77.395317,173.68691 L 77.395317,174.07437 L 77.782627,174.46183 L 78.169947,174.07437 L 78.557267,174.46183 L 78.169947,175.23675 L 78.169947,176.01167 L 78.557267,176.01167 L 78.557267,176.39914 L 78.169947,176.39914 L 77.782627,176.7866 L 77.395317,177.17406 L 77.782627,178.7239 L 77.782627,179.11136 L 78.169947,179.11136 L 78.557267,179.11136 L 78.557267,179.49883 L 78.169947,179.49883 L 77.007997,179.11136 L 76.620687,178.7239 L 75.846047,178.7239 L 75.846047,178.33644 L 75.458737,178.33644 L 74.684107,178.7239 L 74.684107,179.11136 L 74.684107,179.49883 L 75.071417,179.88629 L 75.846047,180.27375 L 76.233367,180.27375 L 77.395317,179.88629 L 78.169947,179.88629 L 78.944577,179.88629 L 79.331897,180.27375 L 79.719207,180.27375 L 79.719207,179.88629 L 80.106527,179.88629 L 80.493847,179.88629 L 80.881157,179.88629 L 81.268477,179.88629 L 82.043107,180.66121 L 82.043107,181.04867 L 82.430427,181.04867 L 82.817737,181.43613 L 83.205057,181.43613 L 84.754317,179.11136 L 87.078217,177.56152 L 87.078217,176.7866 L 87.465527,176.7866 L 87.465527,176.39914 L 87.078217,176.01167 L 87.078217,175.62421 L 87.465527,175.23675 L 87.465527,174.84929 L 87.852847,174.46183 L 88.627477,174.07437 L 89.014797,174.07437 L 88.627477,174.46183 L 89.014797,174.84929 L 89.014797,175.23675 L 89.402107,175.23675 L 90.951377,175.23675 L 92.113317,178.7239 L 91.726007,179.49883 L 90.564057,181.82359 L 92.887957,184.53582 L 92.887957,184.92328 L 93.275267,185.31074 L 93.662587,185.69821 L 93.662587,188.41043 L 95.211847,188.7979 L 95.599167,188.41043 L 96.761107,188.02297 L 97.148427,188.02297 L 97.148427,187.63551 L 99.472327,189.18536 L 98.697687,192.28505 L 99.085007,192.67251 L 100.63427,192.28505 L 102.18354,192.67251 L 103.34549,192.67251 L 104.12012,192.67251 L 104.50743,192.28505 L 104.89475,191.51012 L 106.0567,191.89758 L 107.60596,192.28505 L 108.38059,192.67251 L 109.54254,191.51012 L 109.92986,191.12266 L 111.0918,190.7352 L 111.47912,190.34774 L 111.86644,189.96028 L 111.86644,189.57282 L 112.25375,189.57282 L 113.80302,189.96028 L 113.80302,190.34774 L 114.19033,191.12266 L 115.35228,191.89758 L 115.7396,192.28505 L 115.7396,192.67251 L 115.7396,193.05997 L 115.7396,193.44743 L 115.7396,193.83489 L 115.7396,194.60981 L 116.12691,196.15966 L 116.51423,196.15966 L 117.67617,195.7722 L 118.06349,195.7722 L 119.22544,195.38474 L 119.22544,193.83489 L 119.61275,191.89758 L 120.38739,190.34774 L 120.7747,189.57282 L 121.93665,188.41043 L 123.48591,187.63551 L 123.87323,187.63551 L 125.80981,187.24805 L 126.58444,186.86059 L 126.97176,186.86059 L 127.35907,186.47313 L 130.4576,185.69821 L 131.61955,185.31074 L 132.00686,185.31074 L 132.39418,184.92328 L 132.7815,184.92328 L 133.55613,184.14836 L 134.71808,182.98598 L 135.49271,182.59852 L 134.71808,181.43613 L 133.94344,179.88629 L 132.39418,177.17406 L 132.39418,176.7866 L 131.61955,173.29945 L 131.23223,172.52452 L 131.23223,171.7496 L 130.84492,170.58722 L 130.4576,167.10007 L 132.00686,167.48753 L 133.16881,167.87499 L 133.94344,168.26245 L 134.71808,168.26245 L 135.49271,168.26245 L 136.26734,167.87499 L 137.42929,167.48753 L 138.20392,167.10007 L 138.97855,166.7126 L 138.97855,167.10007 L 139.36587,167.10007 L 139.75318,167.48753 L 140.52781,168.26245 L 140.52781,167.87499 L 140.91513,167.87499 L 141.30245,167.87499 L 140.91513,167.48753 L 140.91513,167.10007 L 140.91513,166.7126 L 140.91513,166.32514 L 140.91513,165.93768 L 140.52781,165.16276 L 140.1405,164.7753 L 140.1405,164.38784 L 140.1405,163.22545 L 139.75318,162.83799 L 139.75318,162.45053 L 139.36587,162.06307 L 138.97855,161.67561 L 138.59123,161.28815 L 137.42929,160.90069 L 137.42929,160.51323 L 137.04197,160.12576 L 137.04197,158.96338 L 137.04197,158.57592 L 137.04197,158.18846 L 137.04197,157.41354 L 136.65466,157.41354 L 136.65466,157.02607 L 136.65466,156.25115 L 136.26734,155.08877 L 135.88002,155.08877 L 135.49271,154.70131 L 134.71808,154.70131 L 133.94344,154.31385 L 133.16881,154.31385 L 132.7815,153.92638 L 132.7815,153.15146 L 132.39418,152.37654 L 132.39418,151.98908 L 132.39418,151.60162 L 132.00686,151.60162 L 131.61955,151.21416 L 131.23223,151.21416 L 130.4576,151.21416 L 129.29565,151.21416 L 128.90834,151.21416 L 127.74639,151.60162 L 127.35907,151.60162 L 126.58444,151.60162 L 126.19713,151.60162 L 125.80981,151.60162 L 125.42249,151.21416 L 125.42249,150.82669 L 125.03518,150.43923 L 124.64786,150.05177 L 124.26055,150.05177 L 123.87323,150.05177 L 123.48591,149.66431 L 123.0986,149.66431 L 123.0986,148.88939 L 122.71128,148.88939 L 122.32397,148.50193 L 121.93665,148.50193 L 121.54933,148.50193 L 121.16202,148.11447 L 120.7747,147.727 L 120.38739,147.33954 L 120.38739,146.56462 L 120.00007,146.17716 L 119.22544,146.17716 L 118.83812,146.17716 L 118.45081,145.7897 L 117.67617,145.40224 L 117.28886,145.40224 L 116.90154,145.40224 L 116.12691,145.40224 L 115.7396,145.40224 L 115.35228,145.7897 L 115.35228,146.17716 L 114.96496,146.56462 L 114.57765,146.56462 L 114.19033,146.17716 L 113.80302,146.17716 L 113.4157,146.17716 L 113.4157,145.7897 L 113.02838,145.40224 L 112.64107,145.40224 L 112.25375,145.40224 L 111.86644,145.40224 L 111.86644,145.7897 L 111.47912,146.56462 L 111.0918,146.95208 L 110.31717,146.95208 L 109.54254,146.95208 L 109.15522,146.95208 L 108.76791,146.56462 L 108.38059,146.17716 L 108.38059,145.7897 L 107.99328,145.7897 L 107.60596,146.17716 L 107.60596,146.56462 L 107.21864,146.95208 L 106.83133,147.33954 L 106.0567,148.50193 L 106.0567,148.88939 L 105.66938,149.66431 L 105.66938,150.43923 L 105.66938,151.21416 L 105.28207,151.21416 L 105.28207,151.60162 L 103.34549,152.37654 L 102.57085,152.764 L 102.57085,153.15146 L 102.18354,153.15146 L 101.40891,152.764 L 100.63427,152.764 L 100.24696,153.15146 L 99.859637,153.53892 L 99.472327,153.15146 L 98.697687,152.764 L 98.310377,152.37654 L 97.923057,152.764 L 97.535747,152.764 L 97.148427,152.764 L 96.373797,152.764 L 95.986477,152.764 L 95.211847,152.764 L 94.437217,152.764 L 93.662587,153.15146 L 93.275267,152.764 L 93.275267,152.37654 L 93.662587,152.37654 L 94.049897,151.98908 L 94.437217,151.60162 L 94.049897,151.21416 L 94.049897,150.82669 L 94.049897,150.43923 L 94.049897,150.05177 L 92.887957,149.66431 L 92.500637,149.27685 L 92.113317,148.88939 L 91.726007,148.88939 L 91.338687,149.27685 L 90.951377,149.66431 L 90.564057,149.66431 L 90.564057,149.27685 L 90.176737,149.27685 L 90.176737,148.88939 L 89.789427,148.50193 L 89.789427,148.11447 L 89.402107,148.11447 L 89.014797,147.727 L 88.240157,147.33954 L 87.852847,146.95208 L 87.465527,146.95208 L 87.465527,146.56462 L 87.465527,146.17716 L 87.078217,146.17716 L 86.303577,146.17716 L 85.916267,145.7897 L 85.528947,145.7897 L 84.754317,145.7897 L 83.979687,145.40224 L 83.592367,145.40224 L 83.205057,145.40224 L 82.430427,145.40224 z M 82.817737,181.43613 L 82.430427,181.43613 L 82.043107,181.43613 L 82.430427,181.82359 L 82.817737,181.43613 z M 82.430427,177.17406 L 82.817737,177.17406 L 82.817737,177.56152 L 83.205057,177.94898 L 83.592367,177.94898 L 83.592367,178.33644 L 83.592367,178.7239 L 83.205057,178.7239 L 82.817737,178.33644 L 82.430427,178.33644 L 82.817737,177.94898 L 82.430427,177.56152 L 82.430427,177.17406 z M 83.205057,177.17406 L 83.592367,177.56152 L 83.205057,177.56152 L 83.205057,177.17406 z M 82.817737,177.17406 L 82.817737,177.56152 L 83.205057,177.94898 L 83.205057,177.94898 L 83.205057,177.56152 L 83.205057,177.17406 L 83.592367,177.56152 L 83.592367,177.56152 L 83.205057,177.56152 L 83.205057,177.56152 L 83.205057,177.94898 L 83.205057,177.94898 L 83.592367,177.94898 L 83.592367,178.33644 L 83.592367,178.33644 L 83.592367,178.7239 L 83.592367,178.7239 L 83.205057,178.7239 L 82.817737,178.33644 L 82.430427,178.33644 L 82.817737,177.94898 L 82.430427,177.56152 L 82.430427,177.17406 L 82.817737,177.17406 L 82.817737,177.17406 z" + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/thailand/thailand.js b/lib/mapael-maps/thailand/thailand.js new file mode 100644 index 000000000..5fe444091 --- /dev/null +++ b/lib/mapael-maps/thailand/thailand.js @@ -0,0 +1,117 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map of Thailand + +* @author Saravut Sanghirun & Nantamano Thawarow +* @Admincourt.go.th +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps : { + thailand : { + width : 900.0, + height : 1640.0, + getCoords : function (lat, lon) { + /*Begin Convert latitude,longitude to x,y*/ + var xfactor = 10842593.562843978; + var xoffset = 11766951.788423348; + var yfactor = -2308687.245142453; + var yoffset = -627707.0178170179; + var x = (lon * xfactor) + xoffset; + var y = (lat * yfactor) + yoffset; + /*End Convert latitude,longitude to x,y*/ + return {x : x, y : y}; + }, + elems : { + /*Begin List of SVG path forbuilding the map*/ + "NongKhai" : "m 644.16052,243.45848 2.91595,3.71121 0.26509,5.03665 0,3.9763 2.12069,5.56682 1.59052,4.24138 1.85561,6.89225 0.53017,5.56682 1.85561,-1.8556 2.91595,0.53017 0.79526,0.53017 1.06035,-1.8556 2.12069,0.53017 2.12069,-3.44613 0,-3.18104 3.18104,-1.59052 4.50648,0 2.38578,2.38578 2.12069,0 3.44612,3.18104 1.85561,0.53018 -1.59052,1.8556 -0.26509,2.65087 3.71122,1.06035 1.8556,1.32543 1.85561,0 3.18104,1.85561 2.65087,2.38578 1.06034,-3.44613 0.79526,-0.79526 0.53018,1.85561 1.06034,0.53017 -0.79526,1.59052 1.32544,2.12069 -2.38578,1.59052 3.18104,3.44613 2.38578,0.53017 -1.06035,-2.12069 0.53017,-0.53017 3.44613,0.26508 1.59052,-1.32543 1.8556,1.59052 1.32544,-1.32543 2.38578,-0.53018 0,3.9763 1.8556,-1.06034 0,3.44612 1.85561,2.38578 0.26509,2.12069 3.71121,1.32544 1.85561,-0.79526 1.06034,-1.59052 1.32544,-1.32544 -0.53018,-3.97629 -1.8556,-3.44613 1.8556,-6.09699 2.65087,-1.06035 1.59052,-0.26509 2.12069,3.9763 0.26509,2.1207 3.44613,2.12069 3.44612,-5.83191 0,-3.9763 -1.32543,-2.65086 0.79526,-3.18104 3.71121,0 3.71121,-2.1207 -7.68751,-8.48277 -6.89225,-13.25433 -3.9763,-8.74786 -3.18104,-3.44612 -2.38578,-1.06035 -2.91595,0 -2.91596,1.06035 -2.91595,2.12069 -2.38578,1.8556 -2.91595,-0.79526 -1.59052,-2.91595 -2.12069,-1.59052 -3.18104,-0.79526 -7.42243,-1.06034 -4.77156,-1.32544 -3.9763,-2.65086 -2.38578,-1.85561 -3.18104,-0.79526 -6.09699,-1.59052 -3.71121,-0.26509 -1.85561,0.79526 -5.56682,-0.79526 -2.91595,-1.32543 -6.36208,1.06035 -8.21769,3.44612 -2.38578,3.18104 -0.26508,2.91596 1.8556,1.8556 3.18104,1.32544 1.85561,1.8556 z", + "Buengkan" : "m 644.16052,243.72356 3.18104,3.44613 0.79526,10.07329 4.50647,14.04959 1.06035,6.62717 2.38578,4.50647 -1.06035,1.32544 1.85561,3.9763 -1.06035,3.18104 -4.50647,0 -4.24139,2.91595 -2.38578,-0.79526 -2.91595,-3.9763 -1.32543,-0.26509 -6.097,2.91596 -2.12069,5.03664 -1.06035,0.26509 -2.65086,-2.65087 -2.91595,-1.32543 -2.65087,-2.38578 -1.59052,-0.53017 -2.91595,-2.38578 -0.53018,1.8556 -2.65086,0.79526 -1.06035,2.38578 -2.12069,1.85561 -1.85561,0.26508 -3.44613,-5.8319 -6.09699,-1.32543 -1.32543,1.06034 1.06034,2.1207 -1.8556,2.12069 -1.85561,3.9763 0.79526,2.91595 0,5.03665 0,1.59052 -2.12069,3.9763 -4.77156,2.38578 -2.12069,5.56682 -3.9763,1.8556 -3.71122,-1.06034 -5.30173,1.06034 -0.79526,-1.8556 -4.50647,-1.06035 -0.26509,-3.44613 -0.53017,-3.9763 0.53017,-0.79526 -3.44612,-2.38578 -4.24139,-4.50647 -7.68751,0.53017 -2.65087,-3.9763 0,-3.44612 -2.12069,-1.06035 -1.32544,-1.59052 -0.53017,-3.18104 -2.38578,-3.18104 -2.12069,-2.12069 -2.38578,-1.06035 -1.06035,-2.12069 -5.03664,-3.44613 -2.1207,-1.32543 -4.24138,-1.85561 -2.91596,-1.06034 -3.71121,1.32543 -0.26509,1.59052 -1.59052,-0.79526 -0.79525,-2.12069 0.53017,-1.06035 -2.38578,-1.59052 -1.32543,-2.91595 -1.85561,0.26508 -3.44613,-2.12069 -0.53017,-1.8556 1.85561,-4.77156 1.59052,-2.65087 2.12069,-1.85561 -0.53017,-3.71121 5.03664,0.53017 2.65087,1.32544 1.59052,4.77156 4.24138,4.24138 3.18104,3.18104 2.91596,2.65087 3.44612,2.38578 2.65087,1.06034 2.65087,-0.26508 3.44612,3.44612 3.18104,2.38578 2.38578,0.79526 4.24139,0.79526 3.71121,0 3.18104,0 2.91595,0.53018 2.1207,0.79526 1.32543,2.91595 0,2.91595 -1.32543,2.91596 0,3.9763 7.95259,4.50647 1.85561,-0.26509 -0.53017,-2.12069 -1.32544,-2.91595 1.06035,-1.32544 2.91595,-0.79526 2.38578,-0.79526 2.38578,-2.65086 1.32544,-2.1207 2.12069,-0.79526 2.65087,-1.32543 2.38578,-0.53017 0.79526,-0.79526 0.26508,-1.85561 6.62717,-1.85561 3.18104,-2.65086 3.18104,-0.79526 3.44612,2.12069 2.65087,1.59052 1.85561,-0.26509 5.03664,-6.09699 -1.59052,-5.03664 1.06035,-2.91596 0.79526,-2.91595 2.38578,-0.26509 1.85561,-0.79526 1.8556,-2.12069 1.06035,-2.91595 0.79526,-3.9763 1.32543,-2.38578 2.91595,-1.59052 4.77156,-0.53018 2.38578,-0.26508 z", + "ChiangRai" : "M211.12,106.77l2.52,-2.93l0.56,-2.18l-1.59,-1.98l-1.26,-3.81l-2.03,-0.65l-0.77,-1.09l-0.96,-2.75l0.09,-1.39l1.78,-2.04l2.7,-1.63l1.38,-2.07l3.0,-0.77l1.46,-2.41l1.04,-4.75l1.61,-3.12l0.91,-0.81l2.18,-0.46l0.65,-0.57l-0.62,-3.34l-2.32,-2.27l-0.46,-2.95l2.15,-2.54l1.49,-4.93l2.91,-1.83l3.23,0.6l2.39,-0.32l2.34,1.15l1.26,3.61l2.16,1.64l1.1,-1.0l2.83,-6.04l0.1,-4.75l-1.09,-0.69l-3.06,-0.5l-4.91,-4.05l-0.08,-1.72l3.2,-1.2l2.29,-1.6l0.99,-1.2l0.09,-1.23l-3.73,-1.54l-2.18,-1.63l1.11,-1.98l0.55,-3.09l-0.83,-1.92l-3.46,-3.68l-1.21,-6.46l-0.95,-2.18l-4.02,-4.19l-0.74,-1.45l1.53,-0.54l6.69,4.13l8.33,2.71l4.18,-0.12l2.5,1.46l1.35,0.29l2.18,-0.39l3.99,-1.67l6.51,-0.37l2.03,-0.66l2.06,-1.87l2.43,-5.92l1.15,-1.64l1.84,-1.19l2.34,-0.77l6.38,-1.09l1.31,0.85l1.26,2.99l2.34,2.54l4.19,0.84l1.3,0.79l2.16,3.31l4.55,2.85l-0.19,3.8l0.69,2.37l1.49,1.76l2.08,1.11l2.12,0.04l2.04,-2.04l-0.05,-4.22l1.12,-0.93l3.31,-1.26l1.34,-4.17l2.03,-2.58l3.14,-2.07l3.76,-0.85l3.89,1.04l2.05,2.24l6.19,13.36l2.81,3.68l1.59,3.19l2.62,1.33l1.23,1.6l3.65,1.74l1.12,-0.44l0.61,-1.3l0.3,6.22l-0.76,4.44l-5.49,15.17l-0.94,5.74l-0.97,1.6l-3.91,2.09l-1.99,4.19l-3.97,5.2l-0.53,2.42l1.02,2.24l-5.38,5.84l-4.8,1.04l-3.03,2.7l-4.9,0.19l-3.99,2.62l-2.0,4.18l0.15,2.6l-1.43,1.93l0.15,1.72l-1.76,2.21l-0.11,2.85l-5.44,2.53l-0.64,2.48l-3.52,-0.95l-3.33,0.52l-1.53,0.64l-4.79,4.33l-1.81,0.51l-2.74,-1.4l-0.04,-2.43l1.18,-4.62l-0.37,-1.44l-1.24,-1.11l-17.96,2.97l-4.38,2.68l-1.6,0.2l-0.38,-1.97l-1.28,-1.47l-1.94,-0.89l-1.43,-3.59l-1.86,-0.88l-1.71,0.74l-2.86,3.97l-0.04,2.18l-1.67,3.07l-0.16,3.23l1.37,3.23l-0.27,7.5l-2.74,6.22l-1.38,9.31l0.56,0.97l1.62,0.37l0.03,2.12l-1.75,2.49l-1.34,3.64l-2.95,0.26l-1.64,0.72l-5.37,6.13l-1.42,0.85l-2.58,0.31l-1.64,-6.15l-5.94,-6.93l-2.02,-6.77l0.96,-5.35l1.96,-2.16l0.49,-3.3l-2.05,-7.06l-0.09,-0.82l1.1,-2.75l-2.27,-7.18l0.24,-3.49l-0.51,-1.6l-1.58,-2.28Z", + "Phayao" : "M329.48,81.92l1.51,2.3l0.61,5.34l0.66,2.03l3.99,5.62l0.78,5.49l3.33,2.6l3.21,1.39l3.24,0.92l1.88,-0.12l0.87,-1.09l1.27,1.98l0.09,0.66l-2.58,1.5l-2.22,4.41l-3.42,2.87l-0.16,3.02l0.71,1.76l1.92,2.02l2.16,0.51l1.72,-1.12l1.31,1.52l2.14,0.48l0.33,1.25l-1.41,7.55l1.7,4.44l-0.04,3.24l1.01,4.05l1.22,1.52l-2.78,2.59l-3.38,1.03l-1.19,0.82l-1.25,3.5l2.14,3.32l-1.58,-0.06l-4.79,-2.56l-2.55,-0.14l-1.11,0.38l-1.1,1.95l-0.96,4.09l0.59,0.85l3.39,0.47l0.44,0.66l-0.08,1.18l-3.53,2.61l-3.57,0.19l-1.49,0.81l-6.48,10.82l-0.84,2.65l-11.71,-0.84l-3.92,0.51l-4.6,-1.41l-3.29,1.05l-1.34,1.02l-2.32,-1.21l-2.07,0.13l-0.61,-1.19l0.24,-2.41l-1.43,-2.59l-1.69,-1.52l-8.77,-5.38l-2.53,-4.58l-6.59,-1.96l-1.87,0.21l-2.19,-0.57l-0.11,-2.29l-2.04,-3.25l-3.67,-1.1l-0.82,-0.65l-1.81,-5.52l-3.09,-5.08l-2.85,-7.58l-0.74,-7.16l0.87,-3.31l-1.34,-3.32l0.01,-2.34l-1.01,-3.57l-0.14,-2.43l1.85,-0.26l4.21,-2.63l17.5,-2.99l0.83,0.75l0.26,1.47l-1.17,4.03l0.07,2.84l2.61,1.76l1.55,0.17l1.54,-0.62l4.91,-4.41l1.26,-0.5l3.05,-0.49l2.63,0.98l1.27,-0.09l0.63,-0.87l0.19,-1.74l5.62,-2.75l0.17,-2.98l1.76,-2.22l-0.14,-1.76l1.45,-2.05l-0.18,-2.46l1.8,-3.85l3.72,-2.44l4.8,-0.15l3.15,-2.74l4.86,-1.06l5.51,-5.92Z", + "Nan" : "M353.19,102.39l2.64,-0.13l8.71,3.3l4.19,3.39l6.45,-6.21l4.4,-5.18l1.34,-2.3l1.26,-1.0l13.66,0.27l2.26,0.84l4.8,2.91l3.11,1.14l3.14,0.24l3.16,-0.38l2.62,-0.72l3.28,-1.64l3.04,1.19l0.77,0.8l0.87,2.45l0.22,2.65l-0.53,3.07l-1.34,2.29l-2.45,0.67l-2.6,1.71l-1.66,4.1l-0.58,4.73l0.82,3.59l2.63,0.95l0.77,1.07l-0.18,1.93l2.19,9.35l-0.33,6.59l0.25,2.65l0.75,1.86l8.92,8.81l0.83,3.0l-4.53,4.35l-1.8,5.28l-3.65,4.59l-0.98,2.26l0.4,8.88l-2.44,7.5l0.67,2.21l2.49,2.45l0.5,1.56l-0.52,1.52l-4.28,4.54l-2.74,1.12l-0.89,0.83l-0.67,4.9l-1.34,1.29l-7.46,4.39l-1.03,3.33l-3.1,3.14l-0.67,2.43l0.79,2.28l3.83,4.18l-7.27,6.03l-4.11,2.61l-5.2,4.75l-1.6,2.74l0.72,1.33l-0.16,1.19l-3.2,2.99l0.04,0.79l1.18,0.83l0.1,0.76l-2.78,2.11l-2.61,5.5l-3.5,2.17l-5.26,4.49l-4.43,-0.36l-3.12,0.29l-1.93,-1.11l-6.25,-0.34l-4.06,-1.3l-3.05,2.36l-3.11,0.21l-0.78,1.16l-3.88,0.37l-2.28,-0.31l-2.24,0.68l-0.98,-0.34l0.19,-1.18l-2.03,-11.33l4.45,-2.07l1.15,-1.6l0.96,-2.52l0.85,-4.58l3.18,-5.54l0.11,-1.37l-0.89,-1.68l0.09,-4.11l2.27,-2.4l2.09,-5.03l0.53,-2.38l-0.07,-2.53l-1.08,-3.07l-3.15,-0.39l-1.72,-1.85l-5.4,-0.18l-2.18,0.85l-0.77,-0.56l-1.0,-6.25l-1.36,-2.12l-0.14,-1.12l0.65,-4.01l1.34,-1.32l0.09,-0.75l-0.99,-0.91l-2.09,-0.42l-1.11,-3.01l0.47,-2.69l2.44,-3.09l0.42,-1.72l-0.54,-0.67l-2.07,-0.75l-0.46,-0.89l-0.14,-2.59l-1.63,-1.03l-0.46,-1.21l1.31,-4.02l6.31,-10.6l1.1,-0.61l3.74,-0.25l3.88,-2.91l0.24,-1.32l-0.52,-1.36l-3.97,-1.12l0.93,-3.6l0.93,-1.66l2.88,-0.03l4.7,2.53l2.28,0.03l0.39,-1.13l-2.13,-3.0l1.13,-2.96l4.34,-1.62l3.09,-2.97l0.09,-0.95l-1.31,-1.14l-0.98,-3.93l0.04,-3.25l-1.68,-4.33l1.4,-7.38l-0.41,-1.76l-0.82,-0.63l-1.6,-0.15l-1.52,-1.62l-1.05,0.12l-0.96,0.97l-1.72,-0.43l-1.59,-1.73l-0.76,-3.02l0.59,-1.38l3.02,-2.36l2.21,-4.39l2.63,-1.56l-0.05,-1.38l-1.55,-2.42l1.06,-1.71l2.12,-1.56Z", + "Phrae" : "M323.82,286.23l-5.07,-6.93l-1.93,-0.1l-2.97,0.67l-1.08,0.61l-1.66,2.59l-2.21,1.9l-7.81,5.67l-6.45,2.33l-2.65,-0.43l-4.82,1.09l-0.61,0.43l-0.65,1.68l-3.64,3.2l-4.28,-2.38l-11.55,0.92l-3.54,1.99l-1.96,2.83l-0.65,1.85l-1.67,1.55l-1.67,-0.91l-1.03,-2.12l-4.79,-5.05l-7.17,-2.5l-5.22,0.97l-2.79,1.58l-8.58,9.93l-0.79,0.44l-2.62,0.07l-3.97,2.65l-2.67,-0.39l-3.96,-5.55l-0.4,-1.48l0.24,-2.16l3.59,-0.6l1.84,0.14l2.1,-1.66l2.43,-3.91l11.8,-13.29l5.1,-3.79l2.6,-2.71l1.12,-3.4l1.35,-0.61l1.42,0.45l1.13,0.99l1.43,-0.01l2.17,-1.92l2.31,-0.93l3.96,-2.54l3.85,-5.09l0.4,-3.35l5.54,-8.3l2.95,-2.32l2.77,-3.74l3.28,-0.72l1.36,-0.87l6.29,-10.55l3.94,-2.52l5.37,-9.69l0.64,-2.21l0.01,-3.45l0.7,-1.35l2.98,-1.32l1.91,0.22l1.11,-1.81l0.47,-2.88l-1.54,-3.05l0.89,-4.44l-1.07,-7.23l2.38,-4.7l0.01,-1.91l-0.94,-1.97l1.17,-0.9l2.89,-0.96l4.59,1.41l3.97,-0.51l11.45,0.83l-0.22,1.93l2.09,1.6l0.1,2.45l0.56,1.13l2.51,1.18l-0.3,1.08l-2.49,3.18l-0.55,3.07l0.59,2.39l0.78,1.2l2.84,0.96l-1.41,1.61l-0.69,4.26l0.17,1.36l1.37,2.13l1.07,6.39l1.42,0.97l2.28,-0.86l4.73,0.03l1.98,1.92l3.02,0.31l0.67,1.75l0.16,3.15l-0.48,2.17l-2.03,4.91l-1.96,1.75l-0.41,0.91l-0.09,4.39l0.95,2.18l-3.31,6.0l-0.87,4.66l-0.92,2.42l-0.91,1.28l-1.57,0.45l-3.18,2.08l2.03,11.58l-0.18,1.01l-3.6,1.6l-2.06,2.08l-0.65,1.41l-0.4,4.59l-2.13,3.61Z", + "Uttaradit" : "M277.1,297.38l1.63,0.22l2.33,1.82l1.51,0.26l3.9,-3.37l1.02,-1.94l4.62,-1.03l2.69,0.42l7.51,-2.86l9.34,-7.24l1.88,-2.8l3.37,-0.86l1.83,0.34l4.45,6.39l0.77,0.37l1.39,-1.4l1.37,-2.84l0.43,-4.72l0.51,-1.06l1.82,-1.85l3.49,-1.54l1.52,0.49l2.29,-0.69l2.15,0.32l4.2,-0.38l0.93,-1.27l3.0,-0.16l2.79,-2.29l3.92,1.3l6.14,0.32l2.04,1.13l8.01,-0.01l5.35,-4.56l3.65,-2.32l2.61,-5.51l2.9,-2.33l-0.17,-1.44l-1.17,-0.86l3.18,-3.0l0.31,-1.28l-0.69,-1.71l1.34,-2.14l5.07,-4.6l4.07,-2.58l7.38,-6.13l7.41,3.67l0.89,1.22l-2.69,3.43l-0.19,5.17l1.34,3.31l2.08,1.6l0.31,0.78l-2.29,8.01l0.41,2.25l2.12,5.52l-0.69,1.23l-4.94,3.35l-4.97,8.6l-2.79,2.39l-3.39,1.86l-0.94,1.29l-0.47,2.52l0.33,3.73l-0.48,1.18l-2.17,0.93l-1.13,1.49l1.12,2.12l-1.81,1.65l-0.25,1.11l0.47,3.28l-0.63,2.08l-1.6,1.04l-2.84,0.76l-0.92,-0.25l-1.32,-1.89l-2.18,0.41l-2.57,3.0l-1.56,3.59l-6.09,4.62l-3.21,5.2l-3.02,2.97l-4.66,2.14l-1.81,1.84l-5.57,4.1l-2.97,4.15l-7.8,2.06l-0.55,-0.02l-1.39,-1.62l-4.78,0.07l-10.54,3.78l-1.5,1.44l-2.29,-0.39l-2.28,0.74l-3.48,2.94l-1.77,3.44l1.45,6.89l-0.32,1.15l-5.51,4.52l-1.41,0.49l-1.86,-0.94l-2.49,0.27l-12.54,3.8l-2.62,-1.45l-2.61,1.06l0.11,-4.38l-1.4,-4.87l1.02,-1.88l2.48,-2.13l1.38,-4.03l-0.09,-6.05l-1.4,-1.99l-0.24,-1.21l2.47,-0.91l1.33,-2.44l-1.78,-4.17l-2.43,-2.77l-2.48,-1.78l-1.01,-2.25l-1.5,-0.6l-2.2,-3.22l0.24,-1.23l2.22,-1.33l1.56,-1.91l1.13,-5.38l-0.06,-1.87l-0.89,-3.39l-4.63,-4.67l-0.44,-1.14l0.21,-2.38l-2.29,-2.33Z", + "Lampang" : "M252.93,114.58l0.18,2.91l1.0,3.51l0.0,2.4l1.32,3.19l-0.87,3.24l0.76,7.36l2.9,7.74l3.07,5.05l1.87,5.64l1.17,0.95l3.38,0.89l1.9,3.01l-0.07,1.9l0.46,0.77l1.92,0.63l2.45,-0.14l2.06,0.89l2.86,0.29l1.31,0.59l2.52,4.57l8.84,5.44l1.5,1.34l1.31,2.35l-0.3,1.82l0.47,1.85l0.83,0.49l1.93,-0.17l2.33,1.21l0.98,2.06l-0.03,1.47l-2.24,4.08l-0.19,1.24l1.1,6.77l-0.88,4.54l1.32,2.26l0.13,1.56l-0.84,3.03l-2.02,-0.16l-3.36,1.6l-0.85,1.69l-0.02,3.48l-0.59,2.01l-5.27,9.51l-3.93,2.52l-6.2,10.45l-1.09,0.71l-3.45,0.8l-2.92,3.87l-3.0,2.37l-5.61,8.41l-0.4,3.35l-3.7,4.89l-6.14,3.37l-2.05,1.86l-0.82,0.01l-1.05,-0.95l-1.76,-0.55l-1.91,0.79l-1.17,3.44l-2.53,2.66l-5.17,3.85l-11.84,13.33l-3.38,4.83l-0.79,0.49l-4.86,0.28l-1.22,0.76l-0.21,1.52l0.58,2.7l3.86,5.47l1.07,0.74l2.6,0.12l4.11,-2.71l2.94,-0.17l2.67,-2.73l0.46,1.27l-0.35,4.27l-2.51,3.87l0.19,3.9l-2.59,0.04l-0.97,1.15l-0.25,3.42l1.47,1.14l0.59,2.88l-2.02,1.93l-0.6,5.23l1.29,2.85l1.49,1.06l-0.78,4.28l2.48,2.3l2.09,0.97l0.53,3.53l-2.35,2.98l-0.38,2.28l0.31,2.6l-1.24,1.6l-0.31,1.48l-5.25,2.58l-1.22,-0.58l-1.42,-2.84l-1.8,-2.02l-3.32,-0.8l-4.15,-6.82l-0.83,-3.54l0.23,-3.24l-0.33,-1.0l-0.84,-0.7l-3.59,-0.43l-1.66,0.66l-1.36,1.5l-0.72,2.29l-2.92,2.96l-4.22,-2.32l-2.35,-0.06l-2.0,-1.33l-2.75,-0.37l-2.38,-1.31l-1.27,-1.89l-1.6,-1.2l0.27,-4.26l1.81,-6.51l-0.52,-4.49l-1.74,-4.25l-0.05,-2.03l2.82,0.09l1.68,-1.38l0.88,-6.62l1.96,-2.1l0.29,-3.22l2.41,-2.11l1.86,-2.97l-1.47,-3.84l2.32,-0.89l3.7,0.39l0.44,-1.1l-0.85,-2.4l1.59,-0.21l0.58,-1.0l-0.49,-1.41l-4.19,-4.79l-2.8,-1.15l-0.19,-2.58l-1.8,-1.64l0.11,-4.54l-3.3,-6.88l-0.63,-8.86l-1.22,-1.92l-0.2,-2.61l-1.97,-3.08l-1.14,-4.27l0.48,-0.79l3.28,-1.66l1.64,0.05l1.75,-0.71l2.12,0.23l1.62,-3.51l3.23,-2.05l1.76,-3.7l0.15,-1.64l6.25,-9.09l1.61,-3.1l2.66,-1.48l3.8,-0.11l1.6,-1.13l0.48,-3.33l1.22,-1.5l0.25,-2.63l1.98,-1.66l0.7,-2.17l-0.27,-1.96l-3.01,-1.43l0.62,-1.66l1.29,-1.6l-0.99,-2.34l0.31,-1.81l1.45,-4.18l1.61,-2.13l0.31,-1.53l-0.18,-2.58l-1.03,-2.32l-0.82,-5.04l-0.82,-0.58l-1.43,0.27l-0.17,-0.55l1.75,-2.26l2.63,-1.27l0.75,-1.08l0.83,-4.64l-0.81,-3.5l0.44,-0.77l2.37,-1.5l4.1,-0.9l6.49,-6.93l4.12,-0.69l1.49,-3.88l1.56,-2.02l0.36,-1.83l-0.24,-1.49l-2.07,-0.92l1.36,-9.16l2.76,-6.32l0.27,-7.63l-1.38,-3.34l0.16,-2.93l1.64,-2.96l0.01,-2.1l2.71,-3.74l1.12,-0.49l1.29,0.64l1.4,3.55l2.14,1.06l1.02,1.21l0.34,2.02Z", + "Lamphun" : "M212.51,215.84l-0.35,2.91l-0.77,0.64l-4.17,0.29l-3.06,1.73l-1.68,3.2l-6.31,9.2l-0.18,1.72l-1.67,3.5l-3.16,1.95l-1.55,3.43l-1.71,-0.42l-1.76,0.71l-1.8,-0.0l-3.46,1.75l-0.81,1.32l1.19,4.69l1.97,3.09l0.17,2.52l1.22,1.94l0.62,8.81l3.3,6.9l-0.08,4.64l1.83,1.71l0.04,2.15l0.43,0.8l2.46,0.82l4.52,5.2l-0.04,0.9l-1.51,0.13l-0.44,0.5l0.78,3.05l-4.26,-0.35l-2.13,1.27l-0.04,1.16l1.47,2.77l-1.72,2.7l-2.48,2.2l-0.34,3.34l-1.98,2.14l-0.46,5.03l-0.71,1.95l-1.11,0.56l-2.55,-0.19l-3.46,-2.7l-1.67,-0.76l-3.68,-0.27l-1.97,0.47l-1.5,1.04l-1.11,1.65l-0.44,4.09l-1.47,1.94l-1.13,3.39l-4.52,3.51l-5.25,1.81l-5.2,-0.13l-0.76,-1.55l0.0,-6.84l-1.42,-5.12l0.72,-1.89l-0.75,-1.44l-0.03,-1.34l0.53,-1.13l3.5,-1.13l0.99,-1.45l0.0,-1.52l-0.57,-1.65l-2.92,-4.47l3.64,-0.04l1.61,0.49l7.89,4.11l4.13,-1.28l2.68,-2.38l1.43,-8.74l-2.17,-3.61l-3.83,-12.5l-1.45,-0.82l-2.77,0.3l-0.84,-1.15l-0.51,-2.21l1.54,-8.68l-0.2,-7.25l-0.39,-1.51l-1.42,-1.84l-0.4,-5.55l-0.65,-2.48l-1.21,-1.23l-7.02,-4.0l-3.53,-1.31l2.71,-3.95l-1.6,-3.12l1.81,-3.76l-0.06,-1.46l-0.65,-0.95l1.25,-0.67l6.48,-1.41l6.46,-4.7l9.95,-4.94l4.45,-8.18l1.32,-0.75l3.45,-6.67l1.32,-0.11l1.77,1.63l0.79,0.05l2.82,-2.37l3.63,-0.4l2.82,-2.42l1.0,-0.32l4.02,-0.07l0.19,2.19l2.19,2.65l1.64,0.95l0.67,1.72l0.02,1.54l-1.4,1.33l0.11,1.56l5.1,3.43l3.04,2.67l2.56,1.34Z", + "ChiangMai" : "M122.52,83.8l0.71,-0.07l2.75,2.53l2.25,0.91l1.78,-1.93l5.45,-1.87l2.75,-3.19l1.79,-0.79l9.58,-1.39l2.15,-0.72l6.26,-4.76l4.48,2.39l3.79,4.42l1.82,-0.42l3.84,-2.77l4.28,-1.7l1.58,-1.38l1.43,-2.44l0.9,-2.89l-1.0,-7.07l1.54,-3.11l-0.84,-4.18l1.18,-7.62l2.04,-3.71l3.91,-2.86l4.68,-1.83l4.33,-0.64l2.02,0.19l6.21,2.1l4.19,3.42l2.52,1.18l2.81,-0.44l13.04,-3.99l5.12,-4.52l1.99,-1.11l2.44,1.83l3.35,1.16l-0.47,1.12l-2.52,1.86l-3.18,1.14l-0.61,1.55l0.95,2.27l2.45,1.4l1.53,1.63l4.49,1.35l-0.22,4.17l-2.77,5.83l-0.52,0.53l-1.34,-1.27l-1.35,-3.73l-2.89,-1.43l-2.41,0.36l-3.35,-0.59l-3.38,2.07l-1.6,5.1l-1.35,1.21l-0.9,1.65l0.5,3.29l0.81,1.23l1.53,1.09l0.6,2.68l-2.43,0.63l-1.25,1.12l-1.68,3.27l-1.0,4.65l-1.27,2.16l-1.76,0.09l-1.22,0.67l-1.46,2.14l-3.77,2.53l-1.09,2.33l0.34,1.95l1.25,2.76l0.73,0.65l1.67,0.39l1.16,3.64l1.55,1.88l-0.47,1.54l-2.64,3.3l2.11,4.11l-0.25,3.44l2.26,7.09l-1.09,2.52l0.08,1.13l2.07,7.66l-0.43,2.2l-2.02,2.32l-1.11,4.65l0.14,1.11l1.69,6.25l6.33,7.64l1.59,6.03l-2.29,1.45l-0.69,1.13l0.77,3.74l-1.05,4.96l-3.47,2.0l-1.49,2.7l0.77,0.94l1.81,-0.05l0.17,2.43l1.71,5.49l-0.21,2.86l-1.6,2.12l-1.75,5.47l-0.03,1.1l0.9,2.15l-1.15,1.14l-0.72,1.94l0.55,1.17l2.66,0.92l-0.25,2.56l-2.28,2.3l-0.65,3.38l-0.49,0.4l-1.92,-0.92l-3.6,-3.02l-4.91,-3.22l-0.03,-0.88l1.38,-1.28l0.01,-2.07l-0.81,-2.0l-1.74,-1.05l-2.01,-2.42l0.12,-1.52l-0.46,-0.88l-1.08,-0.42l-3.65,0.29l-1.31,0.46l-2.64,2.32l-3.71,0.44l-2.65,2.31l-2.09,-1.65l-2.07,0.21l-3.64,6.85l-1.35,0.79l-0.8,1.99l-2.85,4.19l-0.62,1.79l-9.84,4.88l-6.4,4.67l-6.37,1.36l-1.82,0.96l0.73,2.7l-1.83,4.09l1.56,3.01l-2.32,2.68l-0.4,1.35l0.21,0.46l3.81,1.45l6.96,3.97l1.21,1.55l0.69,7.2l1.49,2.04l0.3,1.18l0.2,7.15l-1.53,8.93l0.82,3.03l0.61,0.7l1.06,0.28l2.34,-0.35l0.83,0.41l3.77,12.37l2.06,3.04l-1.33,8.82l-1.64,1.63l-4.31,1.45l-3.47,-2.03l-6.07,-2.57l-4.43,0.04l-6.22,2.9l-0.85,1.61l-0.08,2.42l-3.35,2.81l-0.85,1.48l0.6,3.48l1.16,1.84l-0.08,1.78l-1.52,2.39l-3.26,0.59l-2.62,1.26l-2.27,4.8l-0.41,3.22l0.33,2.92l2.63,2.75l0.76,1.49l-0.2,2.94l-1.59,3.67l0.33,0.98l2.03,1.23l0.15,3.18l-0.54,2.26l-6.45,2.19l-3.86,0.19l-5.15,2.27l-1.35,-0.34l-7.61,-5.49l0.4,-4.16l-1.0,-3.86l-1.73,-2.21l2.0,-1.99l0.31,-0.99l-0.58,-1.31l-1.69,-1.09l1.13,-6.89l-0.24,-1.88l-1.91,-5.28l-2.36,-1.02l-2.26,0.36l-0.45,-1.92l0.26,-5.97l0.73,-1.05l2.84,-2.12l0.97,-2.11l-0.22,-0.53l-6.09,-2.47l-1.16,-1.02l-0.06,-0.95l-2.26,-4.39l1.36,-1.1l0.09,-1.99l1.71,-1.52l-0.15,-2.42l-1.48,-1.95l-2.15,-1.42l-5.6,-6.95l-3.66,-2.16l-2.13,-1.97l-1.56,-3.17l-0.39,-2.86l1.16,-3.98l1.12,-1.61l2.05,-1.12l0.42,-1.38l-0.27,-2.05l-2.13,-4.24l0.48,-2.11l-0.18,-4.12l-1.71,-2.84l1.41,-5.03l1.52,-3.46l-0.31,-0.95l-1.37,-1.01l-0.4,-2.36l0.66,-1.07l5.05,-4.39l1.75,-4.44l3.05,0.06l0.99,-0.89l0.37,-1.38l-0.31,-0.68l-2.48,-1.68l-2.91,-1.21l-4.52,-6.01l0.25,-6.46l-1.91,-4.74l1.14,-2.22l-0.18,-7.23l1.3,-5.0l-0.67,-0.91l-1.76,-0.13l-1.58,-5.66l3.09,-6.77l1.26,-5.4l-1.65,-6.11l2.54,-5.48l-0.02,-1.18l-1.44,-3.45l3.13,-2.83l1.11,-4.4l1.16,-0.27l1.38,-1.15l2.39,-0.15l1.59,1.38l2.55,1.03l1.66,1.8l1.31,2.83l2.61,2.1l4.19,5.36l2.13,0.61l3.44,-0.18l3.56,0.53l2.49,1.0l1.47,1.13l1.26,-0.39l1.87,-2.9l5.23,1.25l2.32,-0.0l3.29,-1.42l3.61,-0.51l2.27,-1.43l1.0,-1.5l1.15,-3.9l-0.6,-3.17l-2.81,-4.67l-3.75,-3.91l2.43,-9.05l-0.64,-7.97l-1.39,-3.1l0.84,-2.32l0.02,-3.84l0.84,-4.67l-0.91,-1.93l-2.49,-2.05l-0.21,-3.04l-1.69,-2.01l-1.03,-5.54l-4.14,-2.9l-2.36,-2.28l-1.15,-2.11l-0.2,-3.22Z", + "Phatthalung" : "M301.16,1400.52l3.51,0.57l2.28,1.93l1.29,0.48l-5.6,5.36l-0.27,2.33l1.26,9.28l1.96,5.26l1.4,5.89l4.34,3.87l3.82,9.29l2.1,3.59l2.82,2.22l5.06,0.37l1.98,0.64l0.79,1.99l-3.19,3.61l-0.71,2.82l-4.6,1.85l-1.64,2.66l-5.37,0.91l-5.5,1.89l-3.08,0.23l-9.0,4.82l-4.23,4.55l-6.76,-8.85l-2.75,-7.57l0.87,-2.04l-0.56,-3.37l-3.53,-4.47l-0.88,-3.31l-1.9,-1.83l-2.98,-8.98l-0.28,-2.07l-2.83,-3.23l-0.21,-4.04l-3.22,-5.4l0.16,-3.73l2.06,-1.29l0.46,-2.68l-2.73,-3.28l-1.32,-6.38l-4.18,-9.55l0.46,-0.43l4.84,-0.96l2.0,-1.99l15.48,-2.07l4.42,1.89l1.1,1.46l0.58,2.43l3.01,2.81l9.28,2.5Z", + "Trang" : "M207.21,1416.37l5.67,-4.21l3.12,-5.36l0.02,-1.24l-2.67,-4.61l-0.39,-2.59l-1.87,-2.91l0.11,-0.58l3.85,-3.87l1.21,-2.08l0.41,-1.57l-0.48,-1.85l2.42,1.1l1.56,2.41l2.01,1.89l6.9,0.09l3.76,1.82l1.4,0.08l3.26,-0.86l0.95,-3.05l1.8,-1.66l0.73,-1.71l2.61,-2.01l1.72,-2.85l9.99,-0.45l2.36,-0.52l0.98,0.45l0.91,1.23l-1.79,7.66l0.47,4.39l5.18,11.2l1.33,6.39l2.39,2.61l0.36,0.98l-0.4,1.59l-2.19,1.54l-0.01,4.75l3.1,4.91l0.23,4.1l2.84,3.23l0.23,1.94l3.01,9.05l2.0,2.0l0.81,3.18l3.5,4.39l0.51,3.03l-0.86,2.26l2.8,7.73l7.15,9.37l1.45,2.61l-2.51,0.66l-2.93,-1.36l-1.94,-1.69l-3.5,-4.83l-1.25,-0.99l-1.46,0.7l-2.15,5.24l-1.43,1.54l-1.29,-0.35l-3.32,-2.26l-1.34,-2.33l-0.02,-2.73l-0.67,-0.41l-5.54,1.63l-2.42,-0.15l-0.89,-0.81l-5.05,2.23l-1.36,-0.64l-0.52,-1.11l0.04,-3.76l-0.6,-0.35l-5.53,3.62l-0.94,-1.51l-2.67,-0.55l-2.73,-4.31l-1.87,-4.93l0.51,-2.13l2.3,-1.33l2.05,-3.21l1.42,-3.92l0.56,-3.73l-0.4,-0.46l-1.03,0.21l-3.04,5.83l-1.89,1.99l-2.25,-0.87l-0.37,-1.43l0.51,-4.62l-0.43,-1.64l-2.15,-0.27l-1.18,1.64l-0.77,2.22l-0.32,1.84l0.44,3.78l-0.34,1.26l-1.59,0.52l-2.56,-0.99l-2.66,-1.93l-3.13,-0.55l-1.4,-0.87l-4.32,-6.54l0.94,-1.75l0.17,-2.56l-0.63,-5.85l-1.56,-3.28l-3.21,-0.25l1.23,-2.11l-1.75,-10.11l-1.09,-0.45l-1.9,0.57l-1.76,-1.09l1.36,-1.21l-0.37,-1.26ZM226.93,1460.55l0.31,0.47l-2.12,0.1l-2.19,1.1l-2.49,3.54l-0.25,-5.65l0.66,-2.04l3.32,1.91l2.75,0.58Z", + "Satun" : "M260.27,1473.86l3.45,-0.03l4.11,-1.44l-0.05,2.53l1.5,2.63l3.53,2.44l1.73,0.47l1.68,-1.34l2.33,-5.44l1.03,-0.66l3.22,4.48l2.99,2.85l2.72,1.39l3.65,-0.66l0.81,0.7l1.31,2.25l0.51,4.4l5.42,7.07l1.36,0.81l5.5,1.39l2.9,2.5l-0.39,3.97l-1.69,5.32l1.68,5.88l-0.62,3.71l-0.24,0.51l-1.28,-0.62l-1.55,0.5l-0.96,1.19l-1.18,8.24l1.2,5.8l-2.33,2.96l0.3,3.83l-0.43,2.63l-1.34,3.17l-1.83,-3.28l-1.75,-0.6l1.2,-3.21l-0.04,-2.12l-1.42,-0.81l-1.41,0.36l-1.1,1.13l-0.81,1.89l-3.2,-2.7l-3.03,-3.48l-1.23,-3.44l-1.15,-0.49l-1.82,0.82l1.28,-2.79l-1.41,-4.09l-0.89,-0.72l-1.79,-0.05l-0.94,-2.94l-4.01,-3.54l-2.63,-4.11l-2.12,-1.58l-2.55,0.71l-1.56,-4.04l-1.39,-1.53l-9.43,-3.58l-2.52,-2.35l0.46,-5.87l1.8,-0.16l0.79,-0.91l-0.79,-2.21l-2.76,-1.39l0.54,-4.03l-0.71,-1.54l2.71,-5.0l1.28,-0.83l3.37,-4.94ZM250.81,1542.02l-0.45,0.28l-3.1,-5.69l-2.91,-3.79l0.24,-1.19l2.29,-2.91l0.0,-3.7l1.99,-1.56l1.06,-5.15l2.3,5.0l2.57,12.36l-0.45,2.47l-2.62,1.04l-0.91,2.84ZM202.1,1534.2l2.62,-0.15l1.8,0.91l-4.3,2.65l-2.25,0.39l-2.08,-0.6l-0.61,-0.61l0.95,0.04l2.03,-2.21l1.84,-0.42Z", + "Songkhla" : "M309.3,1520.24l1.08,-4.92l-1.68,-5.83l1.67,-5.15l0.32,-4.51l-2.66,-2.54l-4.49,-1.6l-1.75,-0.15l-1.25,-0.84l-5.05,-6.63l-0.9,-5.56l-2.03,-2.11l-1.55,-2.78l4.21,-4.55l8.88,-4.76l2.94,-0.19l5.51,-1.89l5.64,-1.03l1.62,-2.65l4.75,-1.98l0.81,-2.96l2.56,-2.88l0.67,3.95l3.12,1.94l0.35,0.62l-2.22,1.08l-0.46,1.1l0.44,1.38l1.82,1.74l0.62,2.55l1.48,1.7l2.32,0.74l2.15,-0.54l-0.14,1.43l1.04,0.96l1.77,-0.3l4.02,0.68l1.0,-0.3l4.65,-3.95l0.93,-1.47l0.63,-3.39l1.07,2.15l16.72,22.83l2.14,1.82l3.06,0.97l4.31,-0.32l1.47,0.3l13.71,9.65l3.84,1.53l4.18,-0.11l-2.86,5.94l-0.29,7.32l1.49,2.55l1.13,6.11l1.42,1.01l2.75,0.91l0.45,4.23l-0.21,1.18l-7.94,11.48l-5.81,1.31l-3.25,1.31l-1.63,1.19l-0.72,1.12l-0.69,3.26l0.18,7.06l-0.91,2.08l-3.46,1.91l-5.18,0.13l0.41,-1.65l-1.99,-4.32l-0.55,-6.34l-1.05,-2.23l-2.67,-1.63l-3.39,-0.34l-0.75,-0.55l-0.21,-3.19l-0.56,-0.98l-2.07,0.09l-6.91,4.94l-1.74,0.24l-12.19,-4.01l-5.47,-3.43l-1.77,-0.41l-4.5,0.18l-2.34,-0.72l-4.11,-1.98l-2.03,-1.79l-1.18,-1.97l-4.0,-12.18l-0.83,-0.94l-1.43,-0.54l-2.31,-0.03l-1.89,1.24l-1.25,-0.03l-1.06,-0.75ZM308.92,1402.9l-1.52,-0.53l-2.46,-2.02l-3.15,-0.52l1.74,-5.9l0.8,-1.39l4.57,-2.09l5.18,-1.62l3.59,-1.87l6.4,-1.3l10.53,50.04l5.79,15.6l9.21,11.26l0.4,1.82l-0.77,1.52l-1.43,-0.04l-2.46,-1.44l-6.67,-5.41l-4.77,-0.76l1.3,-2.56l0.12,-2.71l-1.9,-11.92l-1.32,-3.52l-0.43,-7.5l-2.04,-3.64l-2.92,-1.46l-3.43,0.7l-3.43,2.69l-1.27,2.28l-1.44,-1.14l-0.35,-2.59l0.67,-1.93l3.55,-2.19l1.62,-2.14l0.46,-4.43l-0.68,-5.84l-1.5,-5.51l-2.01,-3.42l-2.49,-0.97l-6.41,1.59l-1.08,0.88Z", + "Narathiwat" : "M473.99,1534.39l5.05,7.76l4.04,4.01l10.91,6.85l12.04,11.54l5.57,4.02l-0.66,5.58l0.48,8.43l-1.14,3.3l-2.81,2.79l-8.02,6.17l-2.74,3.31l-1.68,4.63l-0.08,4.74l-0.66,3.99l-4.71,3.86l-1.51,2.76l-3.19,1.98l-1.48,3.02l-1.12,1.21l-1.49,0.16l-2.12,-1.15l-2.42,-3.5l-1.63,-0.59l-1.71,0.48l-2.82,2.23l-1.99,-0.42l-1.55,-1.71l-2.06,-4.83l0.35,-2.9l-3.26,-1.43l-2.98,-4.47l-2.51,-0.54l-5.97,1.91l-0.39,-1.24l0.21,-4.54l-1.27,-2.75l0.15,-8.48l-0.96,-1.7l-2.92,-1.92l-0.93,-3.91l-1.31,-1.73l-3.3,-2.16l-1.88,-4.45l2.34,-2.72l0.32,-4.29l3.25,-16.28l0.62,-0.59l4.34,-1.41l5.7,-0.88l8.41,-9.92l0.05,-1.26l-1.17,-1.46l0.65,-2.01l-0.19,-1.1l-2.66,-2.09l0.41,-1.25l2.9,-0.93l1.39,0.4l1.31,-0.5l2.11,1.22l0.29,2.07l1.52,2.28l1.28,0.41l3.63,-0.01Z", + "Yala" : "M376.84,1564.35l5.62,-0.15l3.9,-2.18l1.09,-2.45l-0.33,-4.62l0.79,-5.54l1.95,-1.88l3.17,-1.28l6.11,-1.49l8.14,-11.8l-0.16,-5.26l5.62,3.79l6.61,0.44l1.94,-0.75l3.04,-2.53l2.6,-4.57l0.92,-0.8l0.0,2.34l0.77,3.13l-0.27,3.0l3.29,5.01l1.23,0.25l3.47,-1.35l5.45,-1.05l4.12,0.18l4.28,-2.57l1.19,-0.26l0.68,0.39l2.56,4.05l1.32,1.04l1.41,0.26l3.47,-1.23l1.01,1.27l-8.15,10.1l-5.52,0.81l-4.43,1.44l-0.96,0.87l-3.38,16.61l-0.32,4.25l-2.33,2.65l1.84,4.9l4.0,2.97l0.86,1.38l0.82,3.66l3.03,2.05l0.78,1.43l-0.2,8.25l1.28,2.82l-0.22,4.41l0.44,1.51l-11.25,4.37l-7.97,4.45l-4.21,0.76l-3.44,1.79l-1.88,7.59l-2.21,3.96l-1.63,1.55l-5.0,3.01l-2.83,0.89l-1.53,-0.71l-2.86,-5.36l-2.17,-2.5l-2.59,-1.7l-4.03,-0.48l-3.26,-5.41l-0.18,-1.09l5.32,-11.25l1.65,-1.05l4.24,-1.2l1.05,-2.21l0.98,-5.75l0.72,-10.61l-0.92,-2.34l-3.58,-3.0l0.08,-2.2l1.32,-1.64l1.43,-0.68l1.12,-1.19l-0.14,-5.08l-0.71,-1.41l-1.61,-0.68l-5.09,1.04l-1.61,-0.53l-3.77,-2.89l-2.28,0.55l-2.78,2.96l-1.82,0.47l-5.91,-1.3l-1.5,0.45l-0.74,0.74l-1.01,-2.16l0.08,-3.73Z", + "MaeHongSon" : "M0.71,213.72l2.26,0.28l0.81,0.52l2.93,5.1l1.31,0.86l9.11,-0.13l4.46,-2.06l7.49,-4.92l1.98,-0.65l5.79,0.15l6.26,-1.68l0.69,-1.39l0.89,-4.66l-2.02,-9.03l-0.93,-8.67l-1.33,-4.19l0.31,-3.89l-0.55,-1.58l-6.15,-5.46l-0.33,-1.02l4.83,-4.29l0.81,-1.85l0.7,-4.25l1.1,-1.98l6.71,-5.11l1.55,-1.73l0.82,-1.85l0.47,-8.81l-0.3,-2.18l-0.88,-2.25l-4.32,-4.16l0.29,-0.81l3.13,-0.46l1.07,-2.77l-2.49,-4.04l-1.69,-6.51l3.48,-4.71l4.6,-4.46l0.76,-1.84l-0.84,-2.64l-0.12,-4.09l0.79,-1.15l3.98,-0.6l6.74,-3.34l3.44,-3.47l3.29,-0.86l0.62,-1.57l0.03,-1.99l-1.02,-6.11l2.05,-8.6l1.89,-0.43l2.96,3.36l1.6,0.48l2.62,-0.42l2.11,1.16l4.28,3.85l4.42,1.55l0.56,4.38l2.17,1.63l3.12,-0.55l4.75,-2.23l14.28,0.25l3.67,-1.88l0.26,3.27l1.28,2.38l2.49,2.41l3.92,2.62l1.02,5.5l1.66,1.95l0.25,3.15l2.59,2.21l0.75,1.59l-0.85,4.41l-0.02,3.85l-0.84,2.41l1.42,3.28l0.62,7.74l-2.42,9.21l0.94,1.61l3.0,2.72l2.68,4.43l0.55,2.8l-1.08,3.67l-0.77,1.19l-2.1,1.32l-3.49,0.47l-3.25,1.41l-2.0,0.0l-3.2,-1.02l-2.45,-0.2l-1.03,0.73l-1.55,2.56l-1.36,-1.06l-2.71,-1.09l-3.7,-0.55l-4.24,0.08l-1.75,-1.06l-3.19,-4.52l-2.6,-2.09l-1.28,-2.8l-2.35,-2.42l-2.11,-0.65l-1.79,-1.46l-2.92,0.2l-1.41,1.16l-1.43,0.47l-1.16,4.49l-3.22,3.06l1.45,4.66l-2.36,4.43l-0.19,1.26l1.65,5.98l-1.22,5.23l-3.13,6.95l0.22,1.98l1.49,4.19l2.32,0.73l-1.3,4.82l0.18,7.2l-1.14,2.26l1.92,4.9l-0.2,6.65l4.74,6.32l3.0,1.28l2.43,1.78l-0.86,1.44l-2.5,-0.36l-0.84,0.5l-1.81,4.52l-4.98,4.31l-0.85,1.41l0.47,2.97l1.57,1.57l-1.48,3.21l-1.45,5.41l1.73,2.89l0.16,3.92l-0.49,2.2l2.19,4.49l0.21,1.7l-0.19,0.87l-1.98,1.07l-1.19,1.55l-1.36,4.44l0.0,1.32l1.13,4.04l1.0,1.42l2.3,2.11l3.56,2.08l5.52,6.88l3.07,2.46l0.73,2.13l-1.86,1.87l-0.11,2.0l-1.25,0.88l-0.03,1.31l1.49,2.44l0.83,2.63l1.46,1.25l4.94,2.0l-5.92,1.57l-4.17,3.84l-8.56,0.16l-13.36,6.26l-1.93,1.49l-5.77,0.6l-1.71,1.43l-14.8,-13.65l-1.62,-2.76l-0.48,-4.0l-3.54,-3.34l-1.13,-2.8l-2.98,-3.41l1.9,-0.26l0.33,-0.5l-1.43,-5.16l0.63,-1.52l3.01,-5.22l2.95,-1.96l0.83,-1.29l-3.72,-9.5l-2.08,-1.15l-0.74,0.05l0.56,-3.0l-1.25,-3.32l-0.39,-3.01l-7.1,-10.55l0.21,-0.72l1.64,-0.85l0.82,-1.73l0.09,-2.21l-0.7,-1.84l-7.37,-3.24l-1.66,0.69l-2.07,5.46l-1.15,1.36l-4.24,-2.83l-2.1,-2.11l-1.46,-2.39l-1.06,-7.88l-2.75,-4.22l-4.19,-8.93l-2.62,-2.72Z", + "PathumThani" : "M385.77,696.36l0.22,21.24l-1.02,7.55l-7.08,1.38l-17.07,2.04l-1.58,-0.21l-8.46,-2.48l-3.67,-0.59l-6.17,-0.13l-2.13,-1.34l-7.1,-2.76l-3.11,-0.56l-1.98,-1.15l-2.12,-4.41l-0.35,-3.34l1.4,-3.84l15.55,0.31l3.32,-1.36l2.88,1.13l5.48,-1.16l1.87,-0.75l3.96,-3.9l22.59,-10.52l0.93,0.06l1.89,1.42l1.75,3.4Z", + "Nonthaburi" : "M324.78,707.45l-1.26,3.27l-0.19,2.53l0.42,1.99l2.47,4.9l2.1,1.1l3.11,0.56l7.04,2.74l2.18,1.36l5.82,0.18l-3.05,10.41l-2.66,2.77l-0.79,2.6l-1.0,0.31l-4.97,-0.6l-10.14,0.17l-4.85,-10.35l-0.37,-3.62l0.88,-5.75l-0.71,-1.76l-2.61,-3.7l0.14,-1.42l1.49,-3.42l0.49,-4.53l1.52,-1.81l3.36,0.53l1.58,1.53Z", + "Samut Prakan" : "M341.72,757.09l2.08,0.4l1.9,-1.97l1.39,-0.24l1.28,-2.28l1.62,-0.51l1.68,1.57l-1.33,2.49l0.13,0.53l1.41,0.92l8.08,0.61l1.99,-0.93l1.98,-5.13l5.27,-0.64l2.64,0.29l5.06,2.23l3.03,-0.07l7.15,2.63l1.8,1.03l0.68,2.38l-2.9,3.83l-1.93,0.94l-0.29,2.99l-2.61,1.11l-1.16,2.66l-0.54,3.15l-1.9,1.98l-7.24,-1.34l-2.39,-0.97l-7.54,-1.02l-3.17,-1.19l-4.24,-2.98l-1.88,-0.75l0.82,-4.27l-0.44,-2.2l-1.66,2.53l-0.41,1.88l0.11,4.55l-0.79,1.35l-1.98,0.89l-9.21,1.6l-0.71,-7.26l0.28,-1.63l1.89,-0.58l1.48,-1.44l0.79,-4.53l-0.22,-2.63Z", + "Bangkok Metropolis" : "M379.35,753.62l-2.26,0.02l-5.94,-2.39l-6.58,0.13l-1.29,0.68l-2.23,5.39l-1.82,0.4l-6.27,-0.35l-1.74,-0.9l1.13,-1.86l-0.14,-1.51l-1.8,-1.46l-1.48,0.04l-1.16,0.61l-1.3,2.27l-1.26,0.15l-1.84,1.94l-1.59,-0.51l-0.83,0.5l0.17,2.85l-0.73,4.3l-1.19,1.09l-2.18,0.84l-0.34,2.06l0.73,7.38l-3.58,0.62l-2.51,-0.11l0.92,-1.56l-0.71,-5.79l-2.25,-6.83l-1.83,-1.8l-1.62,-0.46l-0.41,-0.83l-2.35,-11.11l0.9,-4.86l10.01,-0.17l5.01,0.6l1.75,-0.71l0.72,-2.6l2.71,-2.87l3.13,-10.67l13.54,3.24l17.15,-2.05l6.9,-1.33l-0.8,10.97l0.52,1.15l1.81,1.31l0.55,1.01l-3.19,3.84l-4.78,7.53l-0.16,0.77l0.49,1.06Z", + "SingBuri" : "M318.76,600.62l-1.51,-3.71l2.14,-1.77l0.2,-3.4l1.19,-0.7l3.81,1.25l0.67,1.57l-0.36,1.89l1.7,3.28l8.02,3.66l-0.44,1.56l1.3,1.59l1.24,6.07l-0.8,2.66l-1.91,2.31l-0.05,1.48l1.91,5.8l2.64,3.36l0.86,6.39l0.9,2.89l-1.51,2.49l-4.6,-0.53l-1.6,-2.26l-2.97,0.04l-3.64,-2.36l-1.14,-1.96l-0.82,-0.57l-3.85,0.88l-3.8,-1.16l-3.75,0.7l-1.82,-2.55l-0.19,-0.86l1.26,-2.53l0.15,-6.26l-0.71,-1.02l-1.41,0.33l-0.67,-0.28l-0.56,-1.38l1.76,-2.9l6.0,0.09l1.85,-1.45l2.19,-3.2l0.32,-1.3l-0.67,-1.16l-1.3,-0.92l-2.19,-0.65l0.92,-2.48l2.27,-0.87l0.54,-2.54l-1.6,0.48Z", + "LopBuri" : "M427.85,575.91l-0.2,2.59l-2.16,4.12l-0.12,13.58l0.34,3.36l1.2,0.56l2.39,-0.12l2.79,1.83l4.56,0.88l1.56,2.2l1.06,3.64l5.21,11.11l0.03,3.24l-0.42,1.12l-6.37,3.67l-1.32,1.22l-3.2,1.42l-2.06,4.54l-2.03,0.95l-1.31,1.32l-1.36,0.43l-0.75,1.17l-4.9,-1.22l-1.3,-1.0l-2.47,-0.61l-1.16,-3.32l-1.26,-1.13l-2.44,-0.94l-1.91,-3.77l-5.46,-1.67l-5.07,1.3l-5.3,3.2l-0.64,1.27l-0.05,2.17l-3.19,3.55l-3.68,0.02l-1.61,-2.09l-2.24,-0.81l-0.57,-0.65l-0.37,-5.65l-0.82,-1.37l-2.15,-1.79l-0.15,-2.11l-1.27,-0.37l-3.06,1.23l-2.64,0.46l-0.75,2.67l-2.29,1.04l-0.28,2.06l-3.68,6.13l-10.96,6.73l-0.95,1.13l-1.65,3.7l-3.56,-0.9l-1.62,-1.34l-1.73,-0.17l-4.1,-3.13l-0.97,-1.62l1.64,-3.1l-0.91,-2.88l-0.87,-6.45l-0.61,-1.33l-2.07,-2.16l-1.85,-5.58l-0.01,-1.03l2.37,-3.27l0.41,-1.99l-1.27,-6.35l-1.27,-2.05l1.73,-3.09l2.83,-3.22l1.17,-2.91l0.06,-3.47l4.02,-3.06l0.75,-3.81l2.59,-3.59l1.6,-1.62l1.74,-0.92l3.01,-3.67l11.96,-10.97l1.79,-2.21l0.76,-1.85l-1.01,-4.62l14.21,3.39l5.7,-1.45l5.17,-0.35l5.91,4.16l1.47,1.7l1.89,0.49l2.29,-0.25l4.76,3.46l3.01,0.35l4.5,-1.37l3.73,0.72l1.74,2.63l0.51,3.07l0.96,1.54l3.99,3.29Z", + "AngThong" : "M332.25,637.23l1.62,2.26l4.85,0.59l1.09,1.79l2.9,2.33l-0.24,5.61l-1.38,5.82l-0.85,1.53l0.63,2.5l0.13,9.63l-2.67,1.6l-2.45,-0.78l-2.14,0.09l-0.12,-5.24l-0.55,-1.25l-0.74,-0.49l-2.68,0.33l-2.17,1.09l-4.2,0.49l-3.48,-0.64l-2.4,0.93l-3.76,0.11l-2.86,-2.95l-1.8,-5.09l0.08,-0.66l1.48,-1.13l0.59,-1.1l-1.26,-2.45l1.57,-2.2l0.57,-2.44l-0.99,-3.45l0.48,-2.87l-1.08,-4.67l0.56,-1.95l1.63,-1.71l3.71,-0.71l3.86,1.16l3.58,-0.91l1.65,2.36l3.78,2.46l3.05,0.01Z", + "PhraNakhonSiAyutthaya" : "M318.34,705.88l0.0,-3.26l-0.75,-1.4l-5.7,-1.15l3.35,-5.08l-0.05,-2.68l2.19,-8.4l0.77,-6.34l0.05,-2.32l-2.58,-4.59l-0.41,-4.24l2.37,-0.19l2.25,-0.92l3.49,0.64l4.29,-0.5l2.29,-1.12l2.19,-0.32l0.75,1.1l-0.02,4.57l0.56,1.28l2.38,-0.06l2.64,0.79l3.19,-1.83l0.44,-2.16l-0.36,-8.1l-0.63,-2.36l0.81,-1.36l1.4,-5.91l0.19,-5.26l0.89,0.55l1.6,0.13l2.2,1.57l2.99,0.67l-1.85,5.28l-0.16,1.77l1.65,1.74l0.86,2.19l1.19,0.87l2.05,0.37l2.84,-0.29l5.77,-2.25l5.02,0.05l1.91,0.65l-0.11,3.17l-1.56,1.69l1.32,3.49l-0.86,4.02l0.36,3.84l0.45,1.05l2.72,2.69l-0.37,2.82l-0.94,2.37l0.18,1.21l1.04,0.49l2.19,-0.05l1.13,1.24l0.11,6.88l-17.81,8.37l-4.16,4.04l-1.53,0.56l-5.26,1.13l-2.89,-1.13l-3.37,1.37l-15.64,-0.31l-1.8,-1.72l-2.87,-0.77l-1.24,0.21l-1.15,1.21Z", + "Kanchanaburi" : "M89.98,585.14l3.69,0.17l2.09,-0.91l1.76,-1.7l3.74,-5.31l1.09,-0.24l4.25,1.11l5.38,2.88l1.0,-0.2l0.56,-1.13l-0.04,-1.84l-1.81,-1.77l0.56,-1.17l1.75,-1.47l-0.31,-2.95l0.54,-0.98l3.89,-0.83l3.68,-1.7l4.17,2.09l1.47,1.61l0.34,2.29l0.7,0.21l2.86,-3.25l1.09,-5.38l-0.19,-5.69l-2.54,-16.54l0.1,-7.5l3.78,1.54l2.53,2.06l2.2,0.65l1.49,1.0l1.66,0.15l0.55,0.55l7.17,11.31l0.19,0.73l-1.11,0.68l0.41,1.16l4.29,2.92l1.18,3.75l3.17,2.67l3.17,5.24l4.42,5.5l2.01,4.1l4.93,2.57l4.47,3.48l1.32,8.82l-0.22,4.11l0.78,2.4l6.44,5.51l1.48,2.22l1.4,0.26l5.82,-1.17l2.9,1.29l2.69,-0.2l5.56,2.09l1.35,0.13l2.94,-0.7l1.17,1.03l1.51,4.04l0.49,4.19l-0.28,1.95l-2.63,3.01l0.76,3.42l1.31,0.84l2.44,-0.26l4.34,5.61l2.16,1.91l3.63,-0.98l2.28,1.0l0.67,2.11l-0.94,1.54l-0.01,0.98l2.68,3.72l5.0,-0.88l2.85,-3.06l0.89,-1.86l0.85,-5.83l1.68,0.76l4.17,0.47l1.32,-0.4l1.97,-1.51l2.99,-0.04l1.94,0.82l6.24,7.45l3.38,2.73l1.96,2.72l3.92,1.86l3.15,0.81l1.78,1.61l0.05,0.56l-2.13,1.94l-0.23,1.1l0.9,1.42l3.01,2.15l0.87,1.15l-0.89,1.16l-5.23,2.49l-0.91,0.89l-0.78,20.26l0.59,4.34l-0.2,5.46l-1.21,3.97l-4.67,4.34l-0.3,1.59l0.84,6.36l0.51,0.77l1.55,0.21l1.31,1.27l0.8,2.19l-0.39,2.88l0.59,1.62l1.55,2.28l2.43,1.1l1.28,3.05l1.71,0.96l0.22,0.84l-1.44,1.4l-2.9,7.05l-1.46,0.62l-0.8,0.91l-1.23,3.43l-0.82,0.67l-3.58,0.18l-7.95,-0.95l-1.85,0.28l-6.1,2.51l-4.08,0.78l-3.59,3.45l-0.97,0.36l-3.82,-1.5l-1.88,-2.65l-1.09,-0.59l-3.05,1.89l-11.32,3.49l-1.83,-0.44l-2.85,-1.62l-2.45,0.97l-2.72,-0.79l-2.23,2.11l-3.09,1.9l-5.77,0.71l-4.01,-4.14l-0.77,-1.68l-1.21,-5.2l-0.05,-4.96l-1.16,-1.39l-2.03,-0.69l-1.43,-2.91l-3.43,-2.58l-0.94,-1.22l-2.43,-4.53l-3.42,-4.12l-0.79,-4.39l-1.16,-1.97l-2.13,-1.39l-4.82,-1.74l-12.8,-9.65l-2.39,-2.52l-2.89,-5.3l-3.89,0.23l-2.68,-2.96l-3.32,-1.12l-2.19,-1.73l-4.89,-6.16l-7.55,-15.33l-2.81,-1.42l-2.26,-6.45l-1.45,-2.25l-13.12,-12.62l-5.82,-9.22l-0.8,-2.0l0.34,-2.31l-1.82,-2.2l-0.05,-6.3l-0.76,-2.51l-2.52,-4.86l0.02,-1.28l1.4,-3.13l-0.58,-2.63l-3.39,-3.59l-0.76,-2.43l0.45,-1.99l2.23,-3.82l0.58,-2.14l-1.42,-4.28Z", + "Ratchaburi" : "M199.5,806.77l0.29,-1.87l-1.87,-7.73l1.52,-3.19l-0.34,-3.2l0.44,-7.64l-3.89,-17.13l-0.27,-9.2l0.32,-5.43l-0.33,-0.63l5.6,-0.7l3.29,-2.02l1.83,-1.95l2.69,0.8l2.23,-0.97l2.68,1.56l2.27,0.49l11.5,-3.54l2.61,-1.83l2.64,3.1l1.75,1.01l2.62,0.64l1.39,-0.54l3.45,-3.37l3.97,-0.73l6.05,-2.49l1.56,-0.26l8.0,0.95l3.72,-0.18l1.44,-1.12l1.41,-3.69l2.01,-1.15l3.29,-7.78l1.83,-0.44l3.67,0.89l1.8,1.0l0.84,2.13l-0.01,2.8l1.13,3.81l-1.14,4.9l0.47,2.8l-0.72,2.75l0.14,1.07l1.93,2.7l1.46,0.6l1.93,-0.62l2.93,-2.44l0.51,0.23l0.89,1.66l0.18,2.8l3.58,0.74l0.55,0.66l-0.23,4.91l-0.11,0.78l-2.2,2.2l-0.64,1.31l-1.21,10.06l-2.71,-0.16l-3.74,1.57l-5.15,-2.14l-1.57,0.65l-2.45,5.3l-0.16,4.4l-2.1,4.37l-1.47,5.43l-9.9,-0.49l-6.86,2.43l-3.92,4.48l-0.41,6.17l-2.83,1.63l-5.64,0.87l-5.87,-0.72l-1.22,0.52l-1.58,1.55l-2.67,-1.02l-2.23,0.93l-4.43,-1.53l-1.47,-1.22l-2.07,-0.53l-1.89,-1.49l-1.89,-0.5l-3.12,2.63l-0.39,4.32l-4.23,2.41l-0.67,-0.26l-1.67,-3.36l-7.16,-3.74Z", + "Saraburi" : "M416.21,636.24l1.52,19.15l-1.73,2.82l-0.43,1.87l0.47,0.95l2.01,1.45l1.29,2.16l2.22,2.31l-0.9,0.89l-0.67,3.36l-1.47,2.02l-0.98,2.75l0.12,2.44l-2.61,2.3l-1.69,0.37l-1.41,-1.94l-2.46,-1.73l-4.52,-0.27l-2.09,-2.48l-1.05,-0.23l-0.5,0.78l0.04,3.06l-1.99,3.01l-0.05,2.3l-1.12,1.37l-3.91,2.78l-1.87,-1.47l-2.54,0.66l-0.39,0.76l0.46,2.83l-0.58,1.53l-3.11,3.51l-1.57,-3.05l-2.31,-1.74l-1.46,-0.05l-4.08,1.83l-0.32,-7.25l-1.45,-1.27l-2.92,-0.3l1.16,-3.54l0.2,-2.37l-3.16,-3.67l-0.36,-3.72l0.86,-4.1l-1.32,-3.47l1.53,-1.48l0.28,-2.37l-0.33,-1.53l-2.43,-0.92l-5.19,-0.05l-5.85,2.26l-3.5,0.21l-1.79,-0.88l-0.82,-2.14l-1.51,-1.37l0.12,-1.48l3.73,-9.57l0.8,-0.93l10.99,-6.75l3.81,-6.32l0.25,-1.97l2.19,-0.93l0.94,-2.83l2.03,-0.07l2.48,-1.13l1.09,0.03l0.07,1.99l2.25,1.92l0.66,1.13l-0.04,3.94l0.44,1.78l0.89,0.99l2.15,0.76l1.75,2.2l4.47,-0.09l3.44,-3.83l0.5,-3.22l5.14,-3.09l4.7,-1.23l5.0,1.51l1.79,3.66l2.7,1.13l0.95,0.86l1.0,3.19Z", + "SuphanBuri" : "M209.53,609.35l1.63,-5.69l2.67,-2.07l2.73,2.35l6.15,1.79l1.35,3.78l10.61,2.23l2.78,1.79l8.04,2.26l2.19,-0.31l0.24,-1.36l-0.68,-3.03l2.22,-0.7l7.92,3.5l7.76,1.06l7.99,3.29l8.35,0.81l2.41,0.63l2.86,-0.54l4.9,-1.98l0.87,-1.06l-0.47,-1.87l0.28,-0.51l7.31,1.76l2.89,2.56l1.83,-0.4l5.02,-2.61l-1.55,2.86l1.4,1.93l1.99,0.15l-0.16,6.04l-1.27,2.62l0.3,1.25l1.8,2.53l-1.62,1.76l-0.66,2.25l1.09,4.85l-0.48,2.83l0.98,3.34l-0.49,2.13l-1.66,2.51l1.26,2.36l-1.94,1.92l-0.2,1.19l2.25,5.92l2.79,2.72l1.18,0.22l0.43,4.39l2.58,4.59l-0.82,8.29l-2.2,8.43l0.07,2.57l-3.54,5.28l-5.33,2.5l-1.31,1.44l-3.1,-0.33l-11.46,0.31l-4.15,-0.48l-6.44,3.95l-5.23,4.89l-6.83,0.38l-0.87,-2.27l-1.6,-1.49l-1.54,-0.25l-0.9,-7.06l4.86,-4.8l1.31,-4.27l0.2,-5.6l-0.59,-4.32l0.72,-19.94l5.82,-3.02l1.27,-1.72l-0.37,-1.08l-3.77,-2.94l-0.68,-1.08l1.93,-1.67l0.34,-2.02l-2.68,-2.33l-2.69,-0.5l-3.7,-1.73l-1.87,-2.64l-3.4,-2.75l-6.29,-7.49l-2.39,-1.03l-3.3,0.06l-3.11,1.89l-6.21,-1.13l-0.69,1.23l0.1,1.77l-1.18,4.64l-1.41,1.15l-1.13,1.82l-4.46,1.05l-2.36,-3.32l1.0,-2.17l-0.93,-2.78l-2.8,-1.2l-3.34,1.02l-1.86,-1.66l-4.5,-5.76l-1.4,-0.32l-1.47,0.43l-0.66,-0.45l-0.68,-2.74l2.57,-2.89l0.37,-2.34l-0.5,-4.3l-0.87,-2.81l-0.77,-1.55l-1.09,-0.96Z", + "SamutSongkhram" : "M282.63,797.79l-1.44,0.4l-1.79,1.59l-2.04,-0.32l-0.84,0.31l-1.04,3.85l-1.7,-0.89l-1.51,-2.23l0.62,-4.15l-0.57,-2.27l1.49,-5.54l2.13,-4.44l0.16,-4.39l2.66,-5.34l5.74,2.1l3.95,-1.6l2.69,0.18l4.11,5.31l1.14,2.75l-3.47,1.26l-1.68,1.2l-1.81,3.84l-1.92,-0.52l-0.48,0.25l1.5,1.07l-0.15,1.56l-0.77,1.58l-1.23,1.12l-3.33,1.31l-0.42,2.02Z", + "NakhonPathom" : "M317.54,707.05l-0.35,3.95l-1.61,3.95l-0.16,1.75l3.32,5.47l-0.88,5.53l0.24,3.21l5.12,11.32l-0.93,5.12l0.48,2.29l-0.81,0.68l-5.36,1.93l-0.05,1.67l-1.03,1.23l0.18,1.62l-4.91,0.63l-2.86,-2.01l-8.6,-0.32l-3.36,-0.58l-0.89,-0.92l-2.85,-0.32l-0.51,-0.36l0.07,-2.38l-1.0,-1.86l-0.76,-0.49l-1.32,0.41l-2.79,2.33l-1.17,0.27l-0.89,-0.38l-1.85,-2.78l0.75,-3.1l-0.47,-2.8l1.14,-4.97l-1.14,-3.94l-0.37,-4.17l-0.65,-1.13l-1.37,-0.93l-5.36,-1.29l-0.47,-1.3l-1.62,-0.85l-1.31,-3.09l-2.45,-1.12l-1.41,-2.09l-0.49,-1.26l0.32,-2.49l7.06,-0.42l5.41,-4.99l6.25,-3.85l3.88,0.53l11.43,-0.31l3.31,0.31l1.58,-1.55l5.21,-2.44l5.75,1.03l0.55,0.94l0.0,4.33Z", + "PrachuapKhiriKhan" : "M229.47,982.12l6.87,-0.75l1.6,-1.21l7.03,-9.48l2.51,-10.11l-0.5,-1.36l-1.77,-0.52l-3.92,-2.94l-1.29,-1.58l-0.74,-2.28l0.33,-2.13l1.68,-4.39l0.11,-2.54l-0.86,-2.01l-5.11,-3.45l0.32,-2.81l2.63,-8.59l-0.5,-1.24l-1.12,-0.62l-1.31,0.0l-6.11,1.98l-1.15,-0.28l-0.3,-1.57l2.39,-2.71l0.26,-1.89l-1.96,-4.39l-0.12,-4.38l-3.0,-4.58l-0.68,-8.23l-0.76,-2.48l-2.42,-4.36l-0.43,-2.12l1.84,-4.6l0.13,-6.2l7.24,-1.97l4.35,-0.03l6.28,1.49l2.22,2.2l3.34,0.79l1.39,-1.48l4.06,-1.94l4.32,-0.86l4.92,0.35l7.13,-5.13l10.14,-0.05l4.1,-0.83l2.16,10.07l-0.4,6.95l0.41,2.53l3.26,7.89l0.12,1.42l-0.89,1.6l-2.41,8.3l0.21,1.24l3.3,4.24l0.66,4.01l-0.44,1.21l-3.01,3.0l-0.73,4.05l-2.78,4.78l-10.81,11.42l-2.68,4.89l-0.9,5.18l1.45,3.91l-2.43,0.94l-0.45,1.04l0.74,5.49l-0.63,2.48l0.42,0.97l-3.63,0.51l-3.16,3.09l-8.83,14.5l-1.04,2.99l-2.11,3.13l-1.75,9.04l-3.53,8.3l-2.03,2.15l-0.58,1.36l-0.33,6.41l0.36,2.38l1.81,4.49l0.0,1.81l-1.27,1.21l-0.96,-1.85l-1.72,0.05l-2.13,1.34l-2.32,2.82l-1.35,3.31l0.12,4.54l1.93,5.87l-1.18,4.26l-4.54,0.87l-1.61,1.47l-2.38,0.92l-1.34,1.19l-5.65,-0.35l-1.95,0.27l-3.2,-0.94l-2.69,0.14l-1.43,0.67l-3.79,-0.72l-8.76,-4.3l-0.57,-0.69l-0.66,-2.71l1.02,-0.82l2.48,-4.28l3.23,-1.31l0.92,-1.04l3.34,-9.9l1.37,-2.39l3.52,-4.25l2.96,-6.87l5.29,-6.19l1.45,-6.45l0.97,-1.67l4.46,-4.99l1.03,-2.25l0.44,-2.02l-0.06,-6.89l0.9,-1.64l1.62,-1.03Z", + "Phetchaburi" : "M193.31,809.15l4.25,-0.47l1.48,-1.24l7.07,3.66l1.59,3.28l1.34,0.54l4.81,-2.72l0.47,-1.2l-0.12,-2.98l2.62,-2.46l1.4,0.4l1.64,1.38l2.33,0.65l1.55,1.26l4.62,1.58l2.37,-0.93l1.63,0.9l1.24,0.09l2.66,-2.04l5.84,0.72l6.54,-1.1l2.57,-1.82l0.44,-1.75l-0.0,-4.49l1.54,-1.39l1.34,-2.08l0.74,-0.64l5.76,-2.17l10.54,0.37l0.49,1.82l-0.57,4.48l1.76,2.57l2.1,1.06l0.96,-0.52l-0.07,-1.23l0.82,-2.33l2.52,0.21l1.99,-1.67l1.09,-0.29l0.69,3.39l3.4,4.52l8.14,7.17l1.47,6.13l1.77,4.24l-0.23,1.75l-0.92,1.66l-4.37,6.43l-3.15,13.12l-3.95,6.29l-2.47,8.89l-0.47,7.92l-4.13,0.84l-10.33,0.07l-1.57,0.74l-5.63,4.41l-4.64,-0.41l-4.5,0.89l-4.31,2.05l-1.12,1.35l-2.76,-0.7l-2.34,-2.25l-6.46,-1.54l-4.59,0.04l-7.23,1.96l-1.32,-2.4l-5.33,-2.95l-3.69,-3.99l-3.53,-1.33l-1.21,-4.16l-1.28,-0.79l-3.23,-0.79l-1.02,-1.7l-0.37,-6.3l-3.87,-4.65l-0.73,-4.46l-1.63,-4.22l0.11,-1.31l1.42,-3.19l-0.26,-2.35l-1.63,-2.37l-6.18,-4.73l-0.47,-1.98l1.52,-5.03l0.3,-2.78l-0.34,-4.52l1.16,-1.65l1.91,-0.72Z", + "ChaiNat" : "M319.45,601.21l-0.33,1.04l-2.44,1.05l-0.85,2.15l0.44,1.35l2.54,0.75l1.18,1.35l-2.35,3.86l-1.57,1.22l-6.08,-0.14l-5.94,3.09l-1.5,0.31l-2.54,-2.46l-7.05,-1.83l-0.89,0.02l-0.66,0.68l0.29,2.4l-0.48,0.45l-4.7,1.89l-2.53,0.5l-2.4,-0.63l-8.2,-0.78l-7.99,-3.29l-7.33,-1.01l0.34,-1.12l-0.75,-1.75l0.11,-0.82l1.26,-1.66l1.65,-0.52l2.01,-1.92l2.04,-1.18l1.98,-3.55l0.19,-1.22l-1.45,-1.48l-4.51,-7.04l-1.92,-4.11l-0.73,-4.91l-1.21,-2.79l0.03,-1.18l0.79,-1.17l3.7,-2.31l10.65,1.71l2.82,1.86l5.03,-1.0l7.09,0.06l4.33,1.24l0.9,1.81l1.3,0.24l2.01,-1.31l-1.63,-0.37l-0.09,-1.26l1.4,-3.19l-0.06,-2.84l-1.93,-3.24l-2.28,-1.79l-0.26,-0.94l2.68,-0.26l0.32,-2.11l6.05,-0.17l5.42,5.22l4.51,2.11l2.14,2.11l3.35,5.07l4.91,12.99l-1.42,1.07l-0.14,3.28l-2.32,2.14l1.82,4.47l1.25,-0.15Z", + "NongBuaLamPhu" : "M569.04,362.42l-1.62,1.15l-0.79,2.51l-2.58,1.72l-3.44,0.66l-1.22,1.29l-0.27,1.27l3.74,8.11l1.22,1.68l12.84,12.37l-5.1,12.31l-1.68,6.64l-5.35,0.88l-2.48,-2.53l-3.21,-1.09l-3.87,-0.5l-4.44,1.05l-2.04,-0.38l-1.99,-1.17l-5.96,-1.86l-1.59,-3.51l-1.15,-0.6l-1.92,-2.59l-2.1,-1.06l-3.38,0.04l-1.29,1.25l-4.12,2.28l-3.44,-0.88l-2.4,-1.28l-7.32,-0.98l-1.93,-2.89l-1.89,-4.11l0.93,-0.84l4.48,-1.74l2.45,-2.52l4.37,-1.83l0.36,-1.01l-4.42,-4.16l-0.84,-3.12l-1.39,-1.97l-4.82,-2.04l-2.15,-0.43l-2.31,-1.4l-1.75,-0.35l-1.24,-0.7l-2.52,-2.88l-0.61,-3.1l3.37,-4.37l0.28,-3.43l3.74,-4.04l0.85,-1.53l-0.46,-2.46l0.19,-2.57l-3.47,-4.26l-0.66,-2.22l0.14,-1.56l0.73,-0.72l1.07,-0.17l6.28,0.25l1.53,-0.33l5.56,-3.57l1.86,-3.17l-0.1,-2.02l-2.04,-6.21l2.54,-3.13l1.23,-0.37l1.52,0.87l1.4,0.01l1.73,-0.97l2.51,-2.38l0.95,-0.06l2.58,1.03l5.91,1.08l2.97,1.28l3.15,-1.29l0.37,1.1l-0.16,5.13l1.07,2.58l0.77,4.88l4.03,8.05l0.61,2.08l0.48,3.36l-0.83,2.37l0.31,3.2l0.97,1.33l1.21,0.59l2.7,0.24l0.71,0.87l0.16,1.4l-1.34,3.42l0.05,1.79l2.03,1.19l2.38,3.03l1.1,0.03l4.96,-1.94l3.29,-0.1Z", + "SamutSakhon" : "M317.19,752.85l5.78,-2.2l1.38,7.25l0.87,2.0l2.16,0.86l1.71,2.2l1.68,5.7l0.49,6.01l-0.8,1.09l-4.59,0.12l-2.04,0.82l-4.91,-2.45l-1.59,-1.26l-0.6,0.13l-1.05,2.05l-2.85,2.1l-9.36,3.66l-4.01,0.82l-2.33,1.03l-1.19,-2.84l-4.18,-5.41l1.2,-10.14l2.84,-3.49l0.35,-5.56l3.16,0.54l8.38,0.29l3.07,2.05l4.65,-0.47l1.14,-0.67l-0.21,-1.73l0.97,-1.06l-0.09,-1.43Z", + "SuratThani" : "M296.22,1206.68l0.4,1.18l-1.06,1.19l-2.04,9.25l-2.98,1.41l-0.8,2.38l-0.51,0.26l-7.5,0.7l-0.96,-5.68l-1.04,-2.03l1.54,-2.04l-0.21,-2.15l-1.37,-3.64l0.86,-1.0l4.98,-0.12l6.52,1.61l2.04,-0.35l1.02,-2.0l1.11,1.04ZM286.88,1182.46l4.07,0.19l3.27,2.08l1.24,3.47l1.04,7.45l-10.08,-5.19l0.5,-1.3l-0.38,-1.23l-2.05,-2.86l1.65,-2.93l0.75,0.33ZM194.13,1183.18l1.88,6.68l1.18,6.83l0.98,2.48l3.29,4.95l1.22,6.04l4.6,8.43l5.94,7.67l-2.94,0.0l-0.42,1.5l-3.66,2.22l-2.2,2.44l-0.59,1.97l0.41,4.54l2.3,5.14l5.36,1.31l5.22,0.37l3.19,2.88l10.5,-0.88l3.21,-2.32l2.13,-5.36l1.38,-1.15l6.17,0.76l1.92,-0.38l3.32,-1.81l3.33,-0.81l2.03,-1.46l4.44,0.38l0.92,-0.9l1.15,0.07l1.47,0.59l-1.96,2.92l0.38,6.21l-2.55,8.16l0.35,0.91l1.13,0.74l0.82,1.85l2.6,0.54l0.84,0.62l0.25,5.36l-1.48,1.02l-1.46,-0.89l-1.12,0.27l-1.92,8.27l-1.3,1.02l-2.85,0.69l-0.28,0.71l0.76,2.14l-0.36,0.57l-3.29,1.51l-1.9,0.0l-2.06,1.23l-1.73,-1.57l-2.08,0.42l-3.56,6.46l-0.81,0.84l-1.68,0.01l-0.68,0.49l-0.71,6.33l0.42,4.12l-0.58,2.38l-2.95,3.4l-0.61,3.25l-4.34,3.6l-0.16,3.71l-2.01,1.47l-2.2,2.63l-4.15,1.7l-4.01,2.83l-1.11,-0.12l-2.93,-2.07l-1.24,0.02l-0.4,1.39l0.47,6.05l-3.16,4.53l-1.72,4.99l0.58,2.46l1.88,2.5l-5.33,1.84l-3.17,0.09l-4.26,-1.21l-1.76,-1.11l-7.11,-0.9l-2.98,2.87l-3.48,1.11l-6.32,-0.91l-3.08,1.07l-1.07,-2.76l-0.23,-5.28l-0.86,-2.46l0.29,-1.88l1.58,-3.0l0.05,-1.47l-2.56,-4.6l1.41,-2.18l3.23,-2.76l0.06,-0.72l-1.17,-2.32l-2.69,-2.69l-2.53,-1.11l-2.0,-2.4l-5.87,-0.63l-2.03,-2.24l-1.53,-0.86l-2.08,0.63l-1.71,4.0l-0.97,0.64l-1.02,0.07l-5.66,-2.06l-4.05,1.64l-4.23,0.37l-3.58,-2.71l-0.07,-0.94l2.51,-0.8l1.28,-2.35l2.1,-2.02l0.3,-8.88l-0.86,-1.04l-3.3,-0.67l-3.1,-4.74l-4.13,-3.26l-4.64,-1.11l0.51,-2.28l-0.87,-3.56l0.67,-1.39l5.02,-2.4l-0.24,-2.27l-2.41,-6.94l1.58,-1.52l-0.8,-5.34l0.29,-1.78l0.99,-0.51l0.59,-1.05l-0.31,-2.92l0.7,-2.71l2.21,-2.73l0.42,-1.21l-0.41,-5.48l-0.5,-0.77l-1.46,-0.78l2.36,-3.55l1.37,-0.87l4.35,-1.26l1.27,1.74l1.63,0.23l5.15,-0.82l1.26,-0.76l0.49,-2.66l-0.65,-0.69l-1.51,0.03l-0.11,-3.79l1.85,0.42l0.56,-0.37l0.8,-1.94l-1.04,-1.59l0.15,-0.69l2.44,-0.91l5.33,-6.06l2.6,-1.9l0.18,-0.82l-0.85,-1.17l-0.06,-1.39l-1.68,-1.29l-0.15,-1.84l2.27,-3.2l1.57,-5.7l1.86,0.22l7.16,-3.86l3.31,-1.26l3.51,0.93l2.97,-0.23l3.73,-1.19l1.69,0.57l1.49,-0.17l1.33,-0.6l1.95,-2.45l3.42,-1.69l1.34,-1.24l4.48,-0.64ZM254.64,1212.04l-1.9,0.73l-0.71,-0.34l2.31,-1.75l0.31,1.35Z", + "Ranong" : "M125.98,1187.43l-0.09,-2.73l0.68,-0.69l2.64,-0.55l1.69,-1.19l1.21,-1.37l1.85,-3.63l-0.13,-0.49l-0.5,0.02l-3.51,3.55l-0.66,-0.13l-1.06,-1.57l-1.63,-1.05l0.71,-1.55l2.63,-2.82l1.28,0.96l1.95,-0.53l-0.22,-1.02l1.27,-0.92l0.62,-1.32l-0.46,-0.85l-1.39,-0.58l1.99,-2.51l0.7,-0.48l2.49,-0.02l1.14,-0.79l0.02,-1.58l-1.25,-0.49l-1.5,0.37l-0.65,-0.84l0.39,-1.87l4.77,-8.22l1.61,-1.85l2.96,-8.38l3.36,-7.25l1.12,-7.01l1.65,-4.04l0.17,-2.44l1.98,-6.62l1.11,-5.59l1.5,-4.27l0.09,-2.31l-1.51,-6.89l-0.85,-1.39l-1.99,-1.72l-0.33,-1.18l0.94,-4.57l1.04,-2.41l4.74,-6.28l1.97,-1.77l4.06,-0.68l1.25,-1.75l1.45,1.06l1.36,2.14l1.48,0.8l-1.93,4.68l0.26,1.94l1.24,0.35l0.63,1.13l1.64,0.6l0.4,1.92l1.87,1.59l0.52,2.15l0.98,1.36l-0.82,2.23l-1.4,1.88l1.29,2.99l-1.91,2.56l-1.64,0.67l-2.31,2.48l-1.04,3.25l0.23,4.49l1.57,2.32l2.08,0.74l0.56,0.64l0.91,3.21l-0.22,1.09l-2.51,4.32l-1.42,1.15l0.29,3.82l-1.89,3.06l-0.67,2.42l0.34,2.33l4.5,6.78l-0.89,5.95l-1.63,2.18l-0.33,1.82l-0.85,1.51l-1.26,1.1l-2.61,0.59l-1.63,1.2l-3.7,5.07l-2.99,-0.38l-2.18,1.07l-1.84,2.54l-2.29,1.98l-1.33,4.37l-2.24,2.65l-2.41,1.08l-4.05,4.18l-0.62,2.67l3.04,9.53l-0.27,1.74l0.75,0.78l3.11,1.12l3.47,2.12l2.29,2.56l0.23,2.16l1.67,1.29l0.02,1.27l0.82,1.1l-2.57,2.02l-5.25,5.98l-2.59,1.08l-0.26,1.37l1.01,1.32l-0.6,1.46l-1.59,-0.43l-0.86,0.41l-0.02,4.51l0.54,0.58l1.58,-0.04l-0.39,2.17l-6.44,1.18l-2.17,-1.99l-4.62,1.31l-1.69,1.08l-2.51,3.79l-3.43,-0.94l-4.94,-4.47l-4.05,1.14l0.68,-3.06l3.08,-5.92l1.92,-9.61l1.28,-2.57l3.32,1.95l4.85,-4.21l-0.5,-1.73l-3.66,0.01l-1.01,-2.13l-1.93,-0.83l0.67,-1.35l1.82,-1.37l1.34,-0.17l1.49,-2.23l-0.33,-1.21l-1.49,-1.99l1.38,-0.32l0.3,-1.26l-1.79,-1.9l3.28,1.5l1.59,-0.26l0.79,-1.93l1.32,-1.09l0.56,-1.16l-0.85,-1.0l-2.4,-0.1l-1.77,-0.74l-1.09,1.02ZM114.79,1185.9l0.37,3.04l-1.6,2.37l-1.01,-1.68l0.43,-1.33l1.8,-2.39Z", + "Chumphon" : "M168.57,1071.04l3.03,0.71l4.7,-1.94l1.32,-1.86l0.44,-2.32l-0.04,-1.83l-1.06,-3.44l0.31,-2.2l0.97,-1.95l1.08,-1.01l4.33,1.43l1.4,-0.14l1.01,-1.46l1.37,-4.17l1.67,-1.71l4.75,-2.58l0.55,2.43l0.89,1.12l7.86,3.95l4.4,1.16l4.86,-0.76l3.14,0.93l7.85,0.07l1.49,-1.25l2.47,-0.97l1.53,-1.43l3.86,-0.74l-0.75,2.65l0.19,2.68l1.69,4.66l0.39,2.17l-0.31,1.26l-1.55,-1.27l-2.03,-0.09l-2.68,0.4l-1.2,0.79l-0.9,7.5l-6.49,9.87l-0.42,1.21l0.48,1.92l-3.35,0.72l-3.35,3.12l-1.24,1.93l-1.54,7.45l-0.98,1.67l-3.75,1.4l-0.46,1.46l0.25,1.05l0.98,0.76l1.5,0.22l-2.31,3.29l-0.4,2.09l0.83,1.59l4.4,3.35l-0.4,4.82l-0.55,0.58l-2.25,0.14l-2.1,1.15l-1.19,-2.11l-2.93,-1.46l-1.6,0.75l-2.58,0.37l-1.3,1.55l0.74,6.06l1.22,1.81l6.05,6.09l1.44,0.47l1.23,-0.28l-0.72,1.14l-4.5,0.6l-0.99,1.68l-0.61,2.55l-2.92,4.86l-0.9,2.72l0.23,3.35l2.2,3.59l0.5,1.76l-0.28,1.04l-1.57,1.26l-0.36,1.56l0.74,4.79l0.0,8.6l0.75,1.78l-2.21,2.3l-0.72,3.91l-4.93,0.76l-1.36,1.25l-3.47,1.72l-2.05,2.54l-0.94,0.38l-1.22,0.14l-1.92,-0.55l-3.72,1.2l-2.8,0.21l-3.7,-0.91l-3.47,1.31l-7.08,3.82l-1.69,-0.4l-1.01,1.28l-1.19,5.01l-1.99,2.79l-2.18,-2.42l-3.59,-2.19l-3.34,-1.3l0.17,-1.86l-3.02,-10.0l1.35,-2.64l3.06,-2.9l2.42,-1.1l2.3,-2.72l1.43,-4.51l2.16,-1.81l1.84,-2.54l1.42,-0.77l2.83,0.46l1.35,-0.73l3.23,-4.68l1.4,-1.05l2.65,-0.6l1.53,-1.32l0.71,-1.0l0.57,-2.48l1.68,-2.32l0.91,-6.31l-4.59,-7.01l-0.25,-1.92l0.6,-2.13l1.94,-3.19l-0.31,-3.76l1.35,-1.01l2.54,-4.37l0.29,-1.48l-1.07,-3.65l-0.79,-0.85l-1.93,-0.63l-1.39,-2.06l-0.16,-4.1l1.01,-3.0l2.02,-2.15l1.74,-0.76l2.01,-2.68l0.09,-1.13l-1.27,-2.17l1.32,-1.66l0.91,-2.61l-1.02,-1.59l-0.61,-2.33l-1.85,-1.56l-0.42,-1.95l-1.87,-0.82l-0.45,-0.98l-1.2,-0.29l-0.19,-0.46l2.0,-5.8l-1.92,-1.48l-1.2,-1.97l-1.67,-1.21l1.16,-1.77l1.25,-0.55Z", + "NakhonSiThammarat" : "M279.55,1269.01l-1.44,2.47l0.0,2.71l1.25,8.31l-0.48,1.89l1.37,3.32l2.17,21.23l0.88,3.55l2.03,3.11l6.04,3.64l3.74,8.1l1.76,2.61l0.72,2.23l0.77,1.07l3.6,1.76l0.83,1.44l1.64,0.34l1.71,-0.39l1.69,-1.37l-0.98,-3.12l-0.22,-4.34l-1.13,-3.91l-3.0,-1.34l1.03,-0.44l3.04,2.21l2.95,3.38l1.27,2.23l5.52,14.3l3.38,21.64l4.2,19.24l-6.52,1.33l-3.62,1.88l-5.17,1.62l-4.69,2.14l-1.13,1.81l-1.76,5.98l-8.69,-2.28l-1.34,-1.65l-1.46,-0.96l-0.5,-2.28l-1.29,-1.74l-4.96,-2.1l-15.62,2.09l-2.24,2.07l-4.72,0.9l-0.61,0.49l-0.56,-0.85l-0.45,-4.09l1.8,-7.82l-1.18,-1.77l-1.37,-0.64l-9.36,0.99l-2.65,-0.21l-1.15,0.43l-1.71,2.95l-2.45,1.84l-0.88,1.89l-1.8,1.66l-1.28,3.14l-2.97,0.44l-4.34,-1.92l-6.8,-0.07l-3.23,-4.1l-3.49,-1.63l-1.17,-1.35l1.29,-1.52l0.7,-2.91l-1.43,-3.66l-2.25,-1.88l-2.49,-5.26l0.93,-1.32l0.22,-1.84l-0.57,-3.23l2.68,-4.9l0.05,-8.84l-0.29,-1.4l-4.12,-3.35l-3.95,-6.04l0.18,-1.62l1.47,-3.87l3.22,-4.67l-0.38,-6.9l0.74,0.08l2.99,2.08l1.41,-0.01l4.11,-2.88l4.23,-1.75l2.28,-2.7l2.0,-1.46l0.5,-1.24l-0.33,-1.86l0.36,-1.19l4.07,-3.13l0.66,-3.34l3.0,-3.49l0.63,-2.6l-0.42,-4.16l0.59,-5.94l1.97,-0.18l1.15,-1.09l3.35,-6.28l1.49,-0.32l0.91,1.25l1.06,0.34l2.24,-1.27l1.88,0.0l3.62,-1.7l0.61,-1.1l-0.7,-2.35l2.59,-0.52l1.74,-1.49l1.33,-4.47l0.46,-3.56l1.97,0.9l2.03,-1.16l0.26,-4.63l-0.38,-1.78l-0.99,-0.9l-2.65,-0.5l-0.64,-1.64l-1.37,-1.25l2.54,-8.08l-0.4,-6.08l1.97,-2.81l1.21,0.26l2.07,-1.34l1.17,1.1l3.92,1.71l-0.04,2.13l0.71,1.78l2.0,3.47l0.83,-0.09l0.08,7.48l0.57,2.26l2.66,3.91l0.32,6.89l1.43,3.82Z", + "Krabi" : "M169.16,1344.61l3.41,-1.01l6.5,0.89l3.74,-1.23l2.7,-2.75l2.14,0.02l4.61,0.87l1.64,1.07l4.52,1.26l3.39,-0.11l5.65,-1.93l1.52,2.11l3.69,2.91l0.13,9.7l-2.65,4.78l0.42,4.62l-1.1,1.51l2.21,5.46l2.7,2.58l1.35,3.49l-0.67,2.34l-1.37,1.93l1.4,1.8l0.77,2.35l-1.46,3.24l-3.85,3.87l-0.27,1.11l1.93,3.16l0.63,3.23l2.5,4.17l-3.04,5.53l-5.44,4.04l-1.45,-1.65l-3.21,-0.96l-2.27,-2.68l-4.3,-2.79l-1.56,-1.38l-1.11,-2.67l-1.07,0.37l-0.26,3.68l-0.99,2.82l-2.0,1.33l-3.55,-0.72l-2.3,-2.41l-0.57,-7.07l-1.33,-2.7l4.25,-3.33l0.78,-1.44l0.85,-7.34l-0.68,-0.27l-2.05,2.06l-1.98,0.16l-2.93,-4.14l-3.48,-1.48l-0.71,-1.97l0.35,-2.31l-0.38,-1.1l-0.94,-1.15l-2.48,-1.61l-1.34,-2.29l-1.87,0.36l-1.8,2.92l-4.63,1.92l-1.26,-0.35l-1.72,-4.03l-1.48,-0.95l-1.05,0.45l-0.74,1.56l-1.33,1.08l-0.48,-2.28l-1.93,-2.33l0.01,-7.3l-0.39,-1.51l0.39,-5.35l-0.38,-1.8l-1.87,-4.32l-0.72,-0.02l-1.49,2.83l-0.42,-7.76l-1.18,-1.24l-2.19,0.63l-2.98,1.9l-1.82,-0.31l-0.4,0.75l0.28,-6.55l4.18,-3.72l-0.43,-3.04l1.73,-4.83l-1.31,-2.61l-0.25,-8.64l2.82,-0.74l1.21,-0.86l1.04,-1.73l0.43,-4.06l2.18,-0.78l1.43,-3.62l0.78,-0.86l1.61,0.2l2.19,2.46l1.0,0.49l5.3,0.41l1.91,2.33l3.02,1.52l2.07,2.16l1.03,2.06l-3.15,2.74l-1.58,2.59l0.81,2.22l1.76,2.57l-0.52,2.58l-1.19,1.84l-0.21,1.84l0.86,2.53l0.25,5.36l0.69,2.28l0.85,1.03ZM191.3,1422.23l-1.48,-0.09l-1.26,-1.64l-1.9,-1.11l-2.46,-4.01l1.94,-1.03l3.86,0.6l1.94,1.19l0.29,3.21l-0.93,2.88ZM191.0,1435.2l-1.36,0.94l-2.2,-1.26l-2.09,-2.49l-3.09,-7.22l0.11,-3.75l-0.83,-3.2l0.53,-0.51l4.58,3.69l0.02,3.77l1.1,4.01l3.23,6.03Z", + "Phangnga" : "M105.76,1247.42l1.35,0.41l1.13,-0.34l2.65,-2.7l-0.11,-0.62l-1.79,-0.92l-0.03,-1.35l1.26,-3.25l1.32,-1.82l1.43,-4.92l3.92,-1.27l4.77,4.37l5.65,2.04l0.6,5.48l-2.6,3.83l-0.73,2.88l0.3,2.87l-1.47,1.26l-0.38,2.07l0.79,5.37l-1.58,1.53l2.69,8.85l-1.27,0.22l-4.02,2.62l-0.44,1.41l0.87,3.6l-0.61,2.27l0.54,0.66l4.56,1.05l3.98,3.13l3.68,5.24l2.73,0.31l0.68,0.58l-0.27,8.39l-1.98,1.81l-1.19,2.26l-2.57,0.86l-0.4,0.94l0.46,1.05l4.03,2.98l4.57,-0.37l3.81,-1.62l5.24,1.9l-0.4,3.96l-0.9,1.47l-4.16,1.79l-0.22,2.95l0.44,6.07l0.32,1.31l0.98,1.22l-1.7,4.65l0.51,2.8l-0.37,0.44l-1.58,-1.15l-4.21,-1.24l-0.54,0.29l-0.46,2.23l-3.23,0.69l-1.69,0.86l-2.84,2.59l-1.36,0.45l-0.89,-1.1l-1.05,-0.15l-0.93,1.98l-0.96,-0.99l-1.07,-0.18l-0.4,1.37l-2.02,-0.17l-1.88,0.89l-0.84,1.32l0.2,0.57l3.16,1.27l0.31,3.59l0.67,1.73l0.03,2.81l-1.77,4.35l-1.96,2.47l-1.11,-1.36l-0.98,-0.15l-1.58,2.88l-1.37,-1.24l-2.17,-3.85l-2.63,-1.04l-0.98,-1.66l-3.27,-0.68l-1.1,-0.92l-0.42,-6.25l-1.64,-3.2l-2.17,-10.17l-4.62,-13.96l-0.16,-2.24l0.74,-2.05l0.4,2.36l0.83,1.55l2.68,2.91l0.68,-0.16l0.57,-2.54l-3.53,-3.68l0.73,-1.87l0.02,-2.35l1.49,-4.61l-0.23,-2.51l-1.98,-5.61l3.3,-3.61l1.18,-9.88l2.33,-3.69l1.04,-4.35l3.42,-5.44l0.56,-0.34l3.39,0.59l0.37,-0.54l-0.6,-2.18l3.47,-4.11l0.03,-0.5l-0.48,-0.14l-5.05,1.8l-0.78,-0.63l-0.26,-2.47l1.07,-0.95l2.6,-0.15l1.95,-1.36l-1.27,-3.57l-4.53,-6.55l-0.61,-3.76ZM137.38,1367.22l-0.04,0.9l-3.83,-1.51l-0.8,-1.09l2.47,-0.86l0.29,-0.49l-0.43,-1.63l3.22,-4.51l0.7,0.4l0.17,1.34l-1.75,7.44ZM128.06,1366.0l0.71,1.34l5.0,2.83l1.56,1.61l0.83,2.99l0.14,11.73l-0.76,2.09l-1.18,-0.09l-1.03,-1.41l-1.53,-6.24l0.38,-1.24l1.53,-0.59l0.28,-1.29l-0.39,-2.01l-0.82,-1.06l-2.27,-0.94l-2.17,-4.97l-0.29,-2.75ZM102.15,1264.38l-2.1,0.58l-1.95,-0.09l-1.26,-1.12l0.85,-10.75l1.08,-0.62l1.99,0.12l2.68,2.49l0.97,1.65l0.57,4.15l-2.17,2.19l0.37,0.87l-1.05,0.52ZM101.88,1276.25l-2.44,6.03l-0.44,-0.06l-0.82,-1.85l-0.21,-2.13l0.51,-2.35l-0.37,-6.18l0.74,-1.37l1.65,0.33l1.99,1.2l1.16,1.9l-0.38,1.99l-1.38,2.49ZM58.97,1220.49l-0.25,0.44l-2.52,-0.23l-0.32,1.23l-1.37,-1.15l0.32,-1.7l1.72,-1.09l2.24,0.54l0.19,1.95ZM56.53,1226.57l-0.23,0.57l-2.98,-2.32l-0.19,-1.16l1.65,-0.84l0.99,0.75l0.76,2.99Z", + "Phuket" : "M101.39,1358.09l0.81,0.56l1.77,-0.03l1.85,1.51l1.4,6.52l0.39,0.33l0.95,-0.11l0.91,-0.85l4.63,3.78l2.13,-1.71l0.72,0.25l0.63,1.23l-0.05,1.65l-2.16,4.25l0.03,3.57l-1.76,1.34l-0.56,2.99l1.33,4.31l1.03,1.52l0.66,0.0l1.0,-1.0l0.55,1.07l0.03,1.45l-0.73,1.06l-3.6,1.35l-0.49,1.68l0.24,3.17l-3.42,-1.63l-2.37,0.2l-1.25,5.12l-0.89,1.43l-1.2,0.29l-1.6,-0.92l-0.51,-1.37l-0.56,-6.95l-1.35,-2.61l-0.12,-0.91l1.8,-1.42l-0.35,-1.84l-2.83,-1.27l1.94,-2.32l-0.73,-2.46l1.64,-3.22l-0.76,-7.18l1.48,-4.26l0.22,-2.42l-0.84,-6.19Z", + "Surin" : "M627.4,562.42l-0.59,-0.31l-1.26,0.63l-1.5,-1.32l-0.2,-0.74l0.98,-1.5l0.59,-2.97l12.06,3.47l3.93,1.62l2.49,1.63l5.95,2.11l1.95,-0.35l9.81,-4.54l1.59,-0.07l6.38,1.24l1.77,-0.62l3.63,-2.49l2.34,-0.17l4.64,1.73l15.82,1.18l3.59,-1.09l3.02,-1.62l3.08,-0.04l1.4,-0.82l0.42,0.09l0.63,2.15l1.08,0.73l3.14,0.32l-0.26,1.56l1.03,0.54l3.2,-0.6l0.22,1.16l1.12,0.76l6.87,0.29l0.99,0.5l0.72,2.7l0.89,1.38l-0.28,1.61l-4.3,2.54l-2.52,4.2l-1.02,0.61l-0.68,1.21l-1.36,0.28l-0.52,0.68l1.22,3.09l-1.29,3.46l-0.53,4.41l2.28,3.01l1.43,7.26l1.05,1.26l-0.1,3.63l-1.6,1.91l-0.52,2.34l-1.76,1.36l-0.82,2.22l-3.18,4.01l-2.81,6.85l0.17,1.28l1.37,1.9l3.81,1.98l3.09,0.6l0.63,0.51l0.78,1.8l0.12,6.36l5.81,8.23l0.0,3.1l-1.77,9.02l1.76,9.99l-1.75,10.41l-4.35,1.19l-3.11,-2.43l-5.87,0.31l-1.25,1.02l-0.78,1.44l-1.69,0.2l-1.48,-0.29l-3.39,-2.19l-1.64,-0.55l-3.36,0.33l-8.34,-1.83l-3.72,-0.26l-0.83,-0.96l0.24,-2.54l-0.36,-1.44l-1.65,-1.35l-1.3,-0.37l-2.32,0.74l-1.21,2.61l-2.05,1.02l-4.8,-1.9l-2.02,0.29l-9.06,5.24l-0.94,-0.12l-2.06,-1.32l-1.67,0.51l-4.79,2.96l-9.57,0.26l-2.96,0.89l-0.21,-2.51l0.61,-2.11l-0.33,-2.24l1.53,-4.59l-2.14,-5.65l-0.72,-3.63l0.22,-6.93l1.67,-1.89l0.67,-2.96l2.12,-4.13l1.61,-6.62l-0.14,-3.41l2.7,-3.73l8.94,-6.96l2.55,-4.76l1.66,-1.21l0.99,-1.48l-0.32,-7.71l0.46,-0.92l1.99,-1.44l0.38,-1.15l-1.48,-3.08l0.79,-2.45l-1.09,-2.87l-0.52,-8.51l1.83,-5.59l1.98,-1.34l2.15,-5.64l-0.4,-1.61l-1.78,-0.55l-1.42,-1.95l-1.59,-0.76l-2.15,-0.71l-0.52,0.38l0.39,1.08l-0.76,1.13l-1.48,0.04l-0.55,-0.51l0.9,-0.75l-0.15,-0.69l-0.92,-0.7l-1.74,0.54l-2.73,-1.28l-5.65,2.61l-1.33,1.62l-0.77,0.27l-2.62,-1.09l-1.27,0.88l-0.52,-1.0l-1.9,-1.01l-0.77,-1.53l-1.64,0.16l-2.18,-2.85l-2.56,0.35l-1.83,-4.09l-0.28,-1.64l-1.13,-0.33l-0.38,0.38Z", + "KhonKaen" : "M624.72,397.0l1.97,2.62l-1.11,3.39l-0.04,1.98l0.52,1.39l1.16,0.17l1.47,-0.9l1.02,-1.23l0.3,-1.92l0.46,-0.07l1.74,0.92l1.03,3.29l-0.57,3.88l-2.19,3.53l-0.64,15.37l-3.26,3.19l-2.95,6.13l-2.52,2.92l-1.57,0.78l-2.52,0.35l-2.71,2.98l-8.35,2.44l-0.11,0.69l1.41,2.4l-0.16,1.86l-1.27,2.36l-2.21,2.63l-2.36,4.82l-4.29,3.42l-0.94,1.74l-0.04,6.21l1.5,5.24l0.34,5.58l-0.92,3.26l0.07,1.7l1.36,3.14l2.45,1.53l1.78,3.94l-0.49,7.31l3.29,7.29l-0.08,4.77l0.94,3.24l-3.68,1.29l-1.61,1.68l-0.55,1.58l-0.17,6.49l-1.19,4.2l-1.02,1.69l-0.99,0.52l-3.35,1.04l-1.63,-0.14l-5.27,-4.21l-3.93,-0.94l-2.07,-2.88l-0.42,-2.06l-1.06,-0.65l-3.04,1.13l-5.87,-0.92l-1.73,1.38l-9.46,-1.28l-4.76,0.81l-2.53,1.24l-1.95,0.17l-2.17,-2.26l-3.13,-1.87l-0.11,-3.06l-2.32,-2.03l-1.69,-2.57l0.52,-1.21l-0.57,-3.64l0.31,-1.4l1.47,-1.76l2.53,-4.74l-0.19,-0.89l1.3,-5.08l1.12,-1.23l-0.64,-1.15l-1.99,-0.76l-2.55,-2.24l-7.11,-3.23l-1.28,-2.08l2.69,-2.09l4.08,-4.27l2.28,-4.39l2.64,-3.04l3.12,-4.66l5.23,-16.21l0.17,-2.76l-3.74,-2.51l-0.86,-2.84l-0.78,-0.75l-1.51,0.11l-0.46,0.63l0.07,1.08l-1.82,0.47l-2.39,-1.55l-3.03,0.56l-2.21,-0.46l-1.41,-1.08l-3.08,-1.08l-2.0,-2.11l-4.13,-1.79l-2.83,0.56l-10.84,-0.41l-2.31,-1.49l-3.78,-4.84l-3.6,-1.7l-2.11,-5.02l-1.36,-1.34l-4.94,-0.22l-6.3,-2.55l-1.98,-0.31l-1.4,0.17l-3.93,1.73l-3.27,-2.72l2.33,-3.05l1.38,-2.77l0.41,-4.51l8.48,-3.24l9.23,-5.72l3.76,0.35l2.88,-1.82l3.18,-0.63l2.68,-2.07l7.25,0.96l2.3,1.25l3.74,0.94l1.36,-0.35l4.35,-3.25l1.68,-0.18l3.18,1.23l1.7,2.41l1.07,0.52l0.26,1.2l1.52,2.47l6.08,1.92l2.03,1.19l2.42,0.42l4.34,-1.04l3.7,0.48l2.97,1.0l2.79,2.64l5.68,-0.9l0.72,-0.94l1.49,-6.2l5.97,-14.11l0.94,-5.34l0.07,-3.27l2.33,-4.13l1.1,3.38l6.31,3.33l4.7,4.1l-1.11,1.71l0.85,2.16l-0.17,2.78l0.51,4.34l0.67,0.52l5.7,-0.42l2.23,1.14l2.31,2.48l2.75,0.49l17.0,-7.92Z", + "UdonThani" : "M519.76,275.14l0.83,0.99l0.79,0.09l2.53,-2.3l2.2,-0.6l1.07,1.13l3.12,0.91l2.09,1.7l3.42,1.35l3.53,2.58l1.29,2.32l3.06,1.72l1.04,1.37l1.79,1.26l0.98,1.89l0.51,3.12l1.84,2.36l1.98,0.99l-0.42,2.61l2.64,3.66l1.35,0.64l7.02,0.41l3.47,3.56l3.95,3.01l-0.37,1.97l0.55,3.31l-0.44,2.38l0.78,0.53l3.99,0.77l0.82,1.38l1.01,0.37l5.66,-0.83l2.2,0.34l1.81,-0.77l2.75,-2.11l0.95,-3.58l1.09,-1.27l5.33,-3.03l0.68,-1.86l1.29,-1.44l-0.25,-1.79l0.68,-3.41l-1.74,-4.19l3.84,-5.69l-0.14,-2.76l1.79,-0.12l4.75,1.02l2.19,3.25l0.95,2.53l0.76,0.38l1.98,-0.84l1.36,-1.31l1.81,-2.88l2.24,-0.83l0.69,-1.21l2.43,2.41l1.79,0.65l2.31,2.48l2.66,1.18l1.08,1.46l1.69,1.21l1.9,-1.16l1.1,-3.54l0.96,-1.22l6.22,-2.68l1.15,0.79l2.22,3.43l1.62,0.96l1.34,-0.25l3.63,-2.25l4.4,-1.18l-0.3,1.72l1.21,0.88l-0.95,0.28l-1.14,-0.63l-0.67,0.45l-0.83,4.9l-0.62,0.86l1.41,3.22l1.86,1.09l0.32,1.06l0.21,2.85l-0.84,3.25l0.23,9.36l-1.27,0.24l-1.46,1.18l-2.3,-0.2l-1.35,0.78l-1.0,1.41l-0.49,1.8l-1.05,1.19l-0.85,2.72l-1.73,1.72l-1.03,2.36l-1.2,5.3l2.39,5.4l-1.7,1.79l-1.58,4.27l-1.62,1.74l0.02,1.06l3.02,5.0l7.13,1.59l6.96,3.74l4.25,0.23l2.46,-1.47l1.06,1.22l5.74,3.07l3.62,3.08l2.24,-0.32l0.91,0.39l2.42,2.41l1.64,2.63l2.43,0.99l0.54,6.07l-3.71,-4.66l-3.74,-1.37l-2.17,0.62l-3.91,2.41l-2.76,3.51l0.42,2.15l-0.14,3.28l-2.65,4.11l-0.44,2.68l0.14,3.45l-3.38,4.54l-1.33,3.58l-1.01,-2.76l0.17,-2.7l-2.74,-2.79l-5.42,-2.5l-5.52,-1.22l-2.22,-1.53l-4.64,-1.43l-2.37,0.78l-4.18,0.3l-3.86,-0.61l-3.4,5.11l-16.91,7.91l-2.26,-0.4l-2.2,-2.41l-2.52,-1.29l-5.63,0.43l-0.65,-4.13l0.16,-2.89l-0.84,-2.0l1.13,-1.1l-0.12,-1.03l-4.96,-4.37l-6.17,-3.22l-0.66,-2.75l-0.89,-0.86l-1.01,0.58l-2.1,3.76l-0.9,8.23l-0.71,1.73l-12.57,-12.1l-4.59,-8.51l-0.2,-1.35l1.14,-1.33l3.3,-0.58l2.87,-1.94l0.88,-2.62l1.54,-0.97l0.21,-0.87l-1.41,-0.76l-2.84,0.34l-5.68,1.91l-2.11,-2.87l-1.79,-0.88l0.54,-3.45l0.8,-1.41l-0.19,-1.66l-0.97,-1.3l-3.06,-0.4l-1.55,-1.37l-0.29,-2.85l0.71,-1.52l0.06,-2.31l-1.09,-4.41l-3.98,-7.91l-0.76,-4.86l-1.06,-2.54l-0.11,-6.34l-1.02,-0.59l-2.92,1.34l-2.84,-1.25l-5.99,-1.1l-2.51,-1.02l-1.34,0.05l-4.31,3.37l-2.72,-0.94l-1.54,0.46l-2.64,3.14l-1.33,-2.37l-1.59,-1.55l-2.59,-7.71l-0.92,0.32l-1.17,3.18l-0.56,0.06l-0.5,-0.67l-1.41,-8.0l0.88,-3.69l1.34,-1.39l-0.11,-2.18l0.84,-3.78l-0.35,-3.16l-1.19,-2.82l-1.52,-9.76l1.24,-0.8l0.34,-0.81l0.41,-2.73l1.42,-3.9l0.29,-3.25l2.86,2.78l2.57,-0.05l1.26,2.41l1.95,1.11l-0.33,1.32l0.68,1.56Z", + "Loei" : "M389.18,325.18l4.34,0.81l3.95,2.28l3.46,3.53l1.76,0.38l6.72,3.43l0.8,-0.04l1.69,-1.27l1.89,-2.65l0.31,-1.64l3.79,-1.41l4.84,-7.67l11.86,-9.64l3.0,-0.77l1.96,-2.49l0.31,-1.13l-0.28,-0.44l-1.9,-0.36l0.31,-0.45l1.29,-0.43l3.28,0.01l2.26,-1.89l1.28,3.13l0.66,0.1l1.62,-2.88l2.04,-2.09l3.58,-1.5l2.22,-1.5l0.03,-0.64l-1.87,-1.51l2.59,-0.96l0.89,-1.1l0.86,-3.9l2.36,1.09l1.24,-1.36l0.89,-2.03l1.62,-1.03l9.98,-1.93l3.33,-9.85l0.95,-4.77l0.83,-1.93l1.63,-1.51l1.42,1.24l4.22,1.14l4.12,2.36l2.53,-0.67l18.27,-19.28l0.64,-0.49l2.71,0.14l-0.2,3.62l-2.93,2.49l-0.79,1.6l-1.48,5.73l-0.49,4.66l-1.28,3.26l-0.41,2.73l-1.59,1.68l1.52,10.03l1.2,2.9l0.33,2.98l-0.84,3.7l0.13,2.04l-1.29,1.27l-0.95,4.03l1.5,8.34l0.86,1.03l1.39,-0.14l1.32,-3.15l2.18,7.1l1.66,1.64l1.59,2.7l2.07,6.3l0.07,1.69l-2.26,3.37l-4.62,2.74l-7.63,0.05l-1.36,0.26l-1.04,1.03l-0.23,2.03l0.74,2.48l3.43,4.18l-0.23,2.38l0.46,2.32l-4.49,5.26l-0.32,3.53l-2.87,3.41l-0.68,1.7l0.83,3.02l2.79,3.18l3.84,1.42l1.93,1.23l1.89,0.32l4.54,1.88l1.16,1.66l0.98,3.35l4.24,3.84l-4.4,1.96l-2.44,2.52l-4.41,1.7l-1.27,1.15l-0.02,1.26l3.77,6.41l-2.41,1.88l-3.1,0.59l-3.32,1.91l-3.26,-0.46l-9.33,5.76l-8.63,3.3l-6.18,0.84l-1.1,-1.3l0.56,-3.42l-0.97,-3.16l0.42,-6.18l-0.6,-3.59l-0.58,-1.51l-2.78,-3.08l-3.8,-9.1l-0.66,-0.63l-1.18,-0.09l-1.37,0.93l-2.32,3.82l-2.02,0.93l-2.07,0.24l-1.91,-0.73l-2.4,-5.1l-6.63,-3.42l-0.97,-0.15l-2.37,1.17l-2.96,-0.98l-1.93,0.66l-3.58,-0.52l-3.42,1.06l-1.72,-1.58l-10.21,-4.08l-2.16,0.96l-0.15,3.02l-2.44,4.02l-1.11,0.6l-2.6,0.19l-1.05,0.92l-0.27,2.0l0.74,2.62l-0.93,3.73l-0.03,2.91l-1.49,0.79l-0.87,1.37l-3.04,0.25l-0.2,-1.44l-0.69,-0.87l-3.18,-1.87l1.09,-1.4l0.17,-1.23l-1.58,-3.06l1.48,-1.95l0.55,-6.16l1.52,-4.22l1.02,-6.1l2.2,-3.73l0.63,-3.35l-2.76,-4.74l-3.44,-0.81l-1.48,-2.39l-2.1,-1.11l-1.8,-2.48l-3.72,-0.03l-2.38,-0.57l-1.57,0.35l-1.1,-0.7l-0.42,-2.07l0.78,-4.05l-0.79,-4.66l-2.01,-3.44l2.04,-2.62l0.38,-3.23l2.3,-1.68l1.1,-2.05Z", + "MahaSarakham" : "M606.84,448.75l7.82,-2.24l2.77,-3.01l2.33,-0.27l1.86,-0.93l2.72,-3.15l2.93,-6.1l2.77,-2.37l0.72,-1.78l-0.09,-1.79l2.57,0.37l0.52,0.35l0.01,1.04l-1.57,1.4l-0.34,0.97l0.46,3.92l0.91,2.22l-2.05,6.18l0.39,2.38l2.02,3.81l-2.17,4.39l0.61,2.79l1.15,0.85l3.1,0.38l6.76,-1.88l1.81,-2.44l1.07,3.37l3.48,0.93l1.49,2.09l1.62,3.84l2.05,1.81l2.88,1.33l0.73,2.46l-0.21,1.58l2.87,3.83l0.7,2.12l1.49,-0.08l1.32,-1.85l4.49,-0.01l-4.97,8.18l-0.83,2.91l-0.15,3.17l1.46,4.04l0.13,6.92l1.43,6.02l-1.75,2.86l-1.17,3.61l-3.54,16.96l-1.1,0.49l-4.94,-0.49l-2.7,1.13l-1.71,2.0l-2.63,6.25l-2.01,3.0l0.35,1.06l1.79,0.99l0.84,2.77l1.88,1.37l2.87,1.17l1.54,1.49l3.61,-0.8l1.23,0.17l1.06,0.75l0.42,2.16l-2.48,7.99l-5.97,2.48l-1.69,0.3l-5.62,-2.04l-2.45,-1.61l-4.01,-1.66l-12.47,-3.59l-3.69,-3.03l0.06,-0.76l1.06,-1.08l-0.25,-2.41l-3.63,-2.93l-0.89,-3.14l-2.41,-1.61l-4.95,-5.34l0.05,-0.6l3.41,-2.61l-0.16,-3.24l-2.38,-3.14l-2.1,-1.31l-2.3,-2.72l-0.92,-2.89l-0.02,-5.39l-3.28,-7.2l0.61,-4.54l-0.15,-2.91l-1.86,-4.11l-2.49,-1.59l-1.2,-2.78l-0.07,-1.42l0.9,-2.52l-0.3,-6.47l-1.51,-5.32l-0.07,-4.76l0.42,-2.03l4.81,-4.04l2.37,-4.85l2.16,-2.56l1.35,-2.5l0.21,-2.4l-1.21,-2.36Z", + "RoiEt" : "M725.11,449.49l0.52,3.94l0.64,0.82l1.25,0.3l11.44,-5.49l1.1,-0.0l1.7,1.11l6.5,0.03l3.65,-1.51l1.83,-2.64l0.74,1.8l0.85,4.92l0.92,8.06l0.69,1.03l2.09,0.61l-3.02,6.77l-1.14,0.51l-2.22,-0.08l-1.97,1.44l-2.01,2.74l-1.54,3.7l-1.22,1.75l-5.7,2.75l-3.1,3.11l-3.34,1.08l-1.77,1.61l-0.5,2.04l1.84,3.99l-0.95,5.99l-1.17,0.33l-2.99,-0.57l-3.01,0.02l-2.13,0.67l-0.55,1.13l0.06,4.9l-0.83,1.71l0.34,1.62l2.39,3.1l-1.89,1.33l-0.49,0.96l0.38,1.42l-1.4,1.46l-0.01,1.38l0.64,1.45l0.49,0.21l4.89,-1.23l2.09,-1.27l0.06,-2.53l3.56,2.16l2.08,3.78l0.42,4.55l-0.91,4.77l1.07,0.47l1.19,-0.62l0.94,0.57l5.71,10.13l-6.07,2.36l-5.6,4.56l-1.78,0.74l-3.94,5.66l-2.25,1.74l-3.84,4.87l-0.54,1.38l-0.45,-1.48l-0.54,-0.35l-1.54,0.58l-2.21,-0.12l0.55,-1.32l-0.4,-0.55l-3.32,-0.16l-1.11,-0.92l-0.35,-1.78l-1.06,-0.4l-1.6,0.85l-3.17,0.06l-3.1,1.66l-3.27,1.02l-15.66,-1.17l-5.38,-1.78l-3.03,0.66l-2.73,2.17l-1.46,0.51l-7.11,-1.31l-3.87,1.66l2.28,-7.29l-0.55,-2.74l-1.44,-1.05l-1.46,-0.22l-3.27,0.89l-1.48,-1.45l-4.16,-1.99l-0.79,-0.97l-0.42,-2.12l-2.01,-1.57l1.91,-2.66l2.6,-6.2l1.55,-1.81l3.14,-1.03l4.12,0.57l1.54,-0.72l0.5,-1.24l3.21,-16.05l1.13,-3.51l1.52,-2.0l0.29,-1.1l-1.43,-6.18l-0.14,-6.96l-1.45,-4.01l0.13,-2.92l0.76,-2.71l5.25,-8.64l2.39,-1.09l0.68,-0.23l1.09,1.85l2.28,0.51l2.15,-0.54l0.32,-1.63l2.35,2.63l1.6,0.2l1.46,-0.67l1.16,0.48l0.74,-0.76l0.01,-0.55l-1.37,-1.57l3.15,0.63l0.55,-0.37l0.0,-1.12l2.89,0.98l0.47,-0.25l0.9,-3.12l1.3,-1.94l0.48,-4.22l-0.44,-1.04l-2.34,-2.02l-0.42,-2.36l-1.57,-2.05l-0.21,-1.07l10.71,-8.22l1.95,-0.94l4.58,-0.27l2.48,1.44l2.17,0.31l1.97,1.18l4.44,0.33l4.17,-0.64l3.2,0.43Z", + "Kalasin" : "M682.61,381.9l-0.63,1.81l0.57,1.03l2.08,0.33l2.2,-0.57l1.37,0.55l8.96,6.89l0.27,0.64l-0.64,2.26l0.15,1.44l1.49,2.83l4.17,2.6l1.39,2.84l3.43,2.34l3.21,1.42l3.49,3.41l0.96,-0.04l0.76,-0.84l0.93,-3.14l1.73,-0.18l0.93,-1.48l2.97,-1.45l0.95,-1.15l3.66,1.2l1.58,1.11l6.37,8.42l3.71,6.28l0.61,1.93l1.26,1.59l-0.59,1.98l0.5,3.64l5.9,9.94l0.72,10.02l-2.15,-0.39l-3.13,0.21l-1.46,-1.05l-1.55,-0.04l-11.38,5.47l-1.05,-0.64l-0.48,-3.81l-0.56,-0.59l-3.36,-0.45l-4.27,0.64l-4.29,-0.33l-1.78,-1.13l-2.13,-0.29l-2.33,-1.46l-5.32,0.24l-2.17,1.05l-10.97,8.49l-0.0,1.41l1.62,2.13l0.58,2.71l2.69,2.75l-0.45,3.91l-1.27,1.87l-0.79,2.83l-2.4,-0.92l-1.14,0.4l0.0,0.92l-3.27,-0.49l-0.43,1.09l1.33,1.58l-1.14,-0.26l-1.45,0.7l-1.05,-0.06l-1.69,-2.22l-1.33,-0.78l-0.6,0.34l-0.03,1.62l-1.57,0.43l-1.99,-0.45l-1.38,-1.98l-3.63,1.5l-5.17,0.0l-1.91,2.16l-0.76,-2.0l-2.79,-3.72l0.26,-1.33l-0.83,-2.79l-3.19,-1.63l-1.87,-1.67l-1.5,-3.68l-1.72,-2.36l-3.33,-0.79l-1.07,-3.42l-1.18,-0.02l-1.89,2.47l-6.27,1.66l-2.7,-0.36l-0.75,-0.56l-0.4,-2.48l2.12,-4.2l-2.08,-4.13l-0.31,-1.64l2.02,-6.62l-0.93,-2.4l-0.45,-3.73l1.65,-1.67l0.35,-1.13l-0.7,-1.53l-3.31,-0.66l0.57,-3.28l0.07,-8.76l2.15,-3.41l0.62,-4.26l-1.15,-3.63l-0.61,-0.73l-1.7,-0.55l-1.3,0.49l-0.63,2.47l-2.01,1.2l-0.27,-2.7l1.1,-3.67l-0.45,-1.13l-1.71,-1.85l2.87,-4.59l3.62,0.63l4.34,-0.31l1.6,-0.71l1.93,0.18l3.43,1.35l1.79,1.32l5.56,1.23l5.22,2.39l2.48,2.47l-0.15,2.96l0.88,2.36l0.88,0.68l0.95,-0.91l1.16,-3.36l3.31,-4.42l0.33,-6.2l2.66,-4.17l0.15,-3.5l-0.43,-1.88l2.56,-3.15l5.31,-2.8l3.44,1.21l3.41,4.67Z", + "SakonNakhon" : "M644.41,331.06l1.7,-1.68l0.9,-2.81l1.01,-1.1l1.36,-3.04l1.21,-0.61l2.17,0.2l1.58,-1.23l1.26,-0.22l0.44,-0.69l-0.24,-9.39l0.84,-3.18l-0.22,-3.08l-0.5,-1.46l-1.82,-1.03l-1.25,-2.61l0.6,-0.82l0.7,-4.59l1.44,0.48l1.85,-0.92l-1.62,-1.31l1.34,-3.53l-0.1,-1.59l-1.61,-3.4l0.96,-0.71l0.13,-0.77l-2.19,-3.64l-0.07,-0.81l1.64,-0.51l2.49,0.58l1.93,-1.23l1.76,-0.19l2.66,-2.75l0.18,-3.48l2.75,-1.66l3.47,0.21l3.15,1.93l1.66,0.24l2.59,2.98l2.68,0.58l-1.71,0.73l-0.39,0.99l0.43,2.11l1.6,1.22l2.38,0.36l0.6,1.27l4.6,1.56l2.27,2.12l1.6,0.76l0.97,-0.51l0.48,-2.27l0.7,-0.8l-0.03,1.38l1.49,1.13l-0.25,1.06l0.47,1.56l-1.61,1.23l-0.17,1.26l2.88,3.03l1.75,0.64l0.82,-0.32l0.09,-0.9l-0.74,-1.29l0.26,-0.31l3.34,0.28l2.02,-1.07l0.62,1.48l0.95,0.52l1.44,-1.37l1.97,-0.63l-0.6,3.05l1.12,0.64l1.47,-0.97l-0.19,3.64l1.67,1.67l0.52,1.82l3.77,2.11l2.57,-1.66l0.51,-1.44l0.99,-0.46l1.26,4.69l1.96,-0.12l0.75,0.79l0.42,1.49l1.21,0.48l0.88,3.15l-0.42,1.89l0.88,1.12l-1.79,3.12l-2.39,0.65l-0.61,0.68l0.72,3.14l0.9,1.25l0.18,1.11l-1.25,3.32l-0.44,4.1l-2.56,5.36l4.73,9.44l4.34,1.58l1.2,-0.71l-0.15,-1.72l2.45,1.62l1.39,0.25l0.81,-0.6l1.05,-2.15l0.75,-0.42l7.29,0.61l9.22,-1.84l5.18,0.34l5.65,-0.27l0.2,6.75l1.15,1.98l0.65,7.37l1.26,2.92l-0.32,1.01l-2.29,2.58l-1.65,4.16l-0.55,5.69l-3.4,3.43l-0.73,1.47l-0.15,1.95l0.42,1.36l3.29,2.0l-0.08,1.34l-1.05,1.16l-6.47,3.84l-2.17,4.6l-2.85,1.29l-4.02,2.96l-4.47,1.02l-3.89,-0.73l-2.64,0.08l-1.16,1.54l-0.76,2.46l-2.05,2.17l-2.8,0.5l-4.71,-2.35l-1.31,0.04l-1.03,1.21l-3.04,1.51l-0.86,1.41l-1.82,0.27l-1.04,3.27l-0.74,0.58l-3.32,-3.3l-3.29,-1.47l-3.34,-2.28l-1.3,-2.76l-4.15,-2.57l-1.44,-3.27l0.61,-3.18l-1.07,-1.33l-9.41,-6.89l-4.75,0.14l-0.07,-0.97l1.3,-1.6l-0.37,-6.1l-0.51,-0.87l-2.35,-0.91l-1.57,-2.55l-2.54,-2.53l-1.3,-0.56l-2.0,0.39l-3.52,-3.02l-5.75,-3.07l-1.5,-1.51l-2.64,1.64l-3.9,-0.22l-6.81,-3.68l-7.33,-1.74l-2.44,-4.72l1.61,-1.87l1.69,-4.45l1.63,-1.72l-0.09,-1.09l-1.6,-2.56l-0.67,-2.03l0.99,-2.94l0.17,-2.06l0.99,-2.24Z", + "NakhonPhanom" : "M734.8,275.37l4.85,0.13l3.28,-2.05l5.35,11.22l1.72,4.7l1.97,2.03l7.0,4.14l1.56,2.01l2.42,4.82l2.02,2.63l1.45,3.8l3.29,3.85l3.29,2.95l18.84,9.44l5.09,3.16l1.25,1.29l4.57,7.31l2.77,1.71l1.07,1.17l2.85,6.85l-0.1,13.42l-0.91,7.55l-6.98,16.35l-0.56,2.55l1.0,10.37l1.46,3.64l0.44,2.39l-0.99,3.94l-1.66,0.64l-0.89,1.18l0.02,1.71l1.28,2.33l-0.05,1.28l-0.44,0.39l-1.34,-0.07l-4.19,-2.21l-0.35,-0.69l0.37,-2.07l-0.35,-2.6l-1.8,-0.97l-7.83,-0.71l-4.12,0.99l-1.98,1.15l-1.01,-0.06l-1.14,-0.72l-1.3,-2.19l-1.11,-0.92l-2.41,0.73l-3.78,-2.12l-2.99,1.33l-5.24,-2.33l-2.6,0.18l-3.95,1.76l-3.66,-1.53l-2.75,-2.81l3.64,-2.69l2.9,-1.32l2.33,-4.74l6.33,-3.71l1.27,-1.38l0.04,-2.27l-3.44,-2.3l0.03,-2.39l4.06,-4.67l0.59,-5.79l1.25,-3.4l2.58,-3.12l0.45,-1.7l-1.26,-2.83l-0.65,-7.39l-1.15,-2.0l-0.11,-6.31l-0.51,-1.01l-11.27,-0.12l-9.18,1.84l-7.39,-0.6l-1.23,0.67l-1.41,2.51l-3.81,-1.91l-0.67,0.54l0.23,1.62l-0.96,0.29l-2.66,-0.91l-1.03,-0.85l-4.06,-8.18l0.17,-1.24l2.3,-4.18l0.44,-4.1l1.27,-3.43l-0.1,-1.19l-1.03,-1.55l-0.72,-2.57l2.81,-1.04l2.04,-3.66l-0.92,-1.41l0.45,-1.73l-0.96,-3.42l-1.23,-0.54l-0.43,-1.5l-0.93,-0.98l-2.08,-0.12l-1.01,-4.42l0.05,-3.66l-2.23,-3.17l-0.2,-1.03l1.76,-5.46l3.39,-1.2l2.37,3.77l0.68,2.23l3.11,1.92l1.82,-0.28l2.71,-5.24l-0.42,-2.1l0.16,-3.15l-1.54,-2.03l0.62,-2.47Z", + "Mukdahan" : "M746.79,398.81l2.95,3.02l2.29,1.3l2.08,0.42l3.99,-1.78l2.36,-0.15l5.18,2.33l3.16,-1.32l3.48,2.1l2.32,-0.75l2.09,2.83l1.63,1.02l1.4,0.04l2.05,-1.18l3.9,-0.93l7.55,0.69l1.26,0.57l0.28,2.18l-0.37,2.19l0.58,1.15l5.55,2.6l1.01,-0.21l0.74,-0.76l0.08,-1.76l-1.39,-3.09l0.44,-1.11l1.27,-0.57l0.01,1.7l2.38,10.32l-2.8,10.01l-0.51,4.84l0.68,4.86l1.19,2.07l1.99,1.69l6.13,3.3l3.15,3.16l4.25,9.47l4.01,2.61l4.24,3.81l-1.75,2.28l-8.65,6.45l-5.48,2.19l-2.24,0.15l-1.23,-0.83l-10.67,-2.03l-2.79,-2.71l-1.27,0.5l-0.65,1.62l-0.72,0.58l-2.27,0.16l-1.56,-1.71l-3.11,-2.25l-3.01,-6.18l-1.12,-0.55l-3.08,-0.29l-1.09,-1.86l-1.64,-1.24l-3.09,0.39l-3.9,-0.64l-4.19,-0.08l-2.08,0.62l-2.29,1.69l-2.18,-0.64l-2.57,-14.95l-0.8,-0.94l-0.87,0.16l-1.64,2.65l-3.54,1.43l-0.73,-10.09l-1.86,-3.77l-4.08,-6.31l-0.44,-3.37l0.58,-2.14l-1.34,-1.75l-0.63,-1.97l-3.73,-6.31l-6.08,-7.99l2.46,-0.44l1.33,-1.09l1.41,-1.83l1.31,-3.27l6.24,0.72l4.47,-1.01Z", + "NakhonNayok" : "M402.15,675.21l2.16,2.49l4.46,0.28l2.64,1.75l1.51,2.02l2.06,-0.13l3.43,-2.96l-0.11,-2.49l0.93,-2.62l1.49,-2.08l0.62,-3.23l0.93,-0.94l1.91,0.32l1.99,-2.95l2.83,1.15l1.42,1.72l9.38,5.68l3.06,4.36l4.6,2.0l1.05,2.37l0.97,0.65l1.65,3.11l-0.09,2.55l-0.8,1.23l-3.25,0.5l-3.72,1.26l-1.59,-0.22l-2.28,-1.43l-0.93,0.34l-0.71,4.89l-8.42,6.37l-1.44,2.54l-0.0,1.56l1.24,1.82l0.18,1.82l1.29,2.24l0.06,1.16l-0.85,0.7l-2.9,0.78l-2.53,-0.97l-4.86,0.93l-4.39,4.39l-4.89,1.89l-0.35,0.89l0.51,1.97l-7.63,-0.62l-13.14,0.66l-3.74,1.19l0.9,-6.57l-0.22,-21.21l3.56,-4.08l0.62,-1.71l-0.33,-3.1l1.84,-0.47l1.5,1.43l0.79,0.01l4.19,-2.95l1.24,-1.5l0.46,-1.48l-0.3,-1.01l2.01,-3.11l0.0,-3.22Z", + "SaKaeo" : "M519.95,705.18l1.42,0.08l1.32,-0.53l0.51,-1.28l-0.12,-2.26l1.96,-1.36l0.7,0.1l1.81,1.57l0.52,2.29l0.81,0.83l1.23,0.38l3.47,-0.06l2.41,1.33l1.51,-0.4l1.3,-1.69l4.56,-1.12l4.35,1.15l2.98,-1.07l2.92,1.61l3.94,-0.16l0.46,0.77l0.24,3.9l0.88,1.11l1.61,0.33l3.22,-0.67l0.41,-1.19l-1.7,-0.94l0.25,-1.0l2.95,-0.84l2.65,-2.09l1.64,1.25l1.16,-0.4l1.0,-1.33l2.49,1.8l6.77,0.42l5.68,-1.29l3.13,-1.63l2.63,-0.74l5.98,1.14l3.8,-1.02l-0.26,3.01l-3.78,6.67l-0.69,5.57l-10.5,9.34l-2.03,3.61l-2.7,7.86l-2.46,3.35l-0.85,4.39l-2.43,2.11l-10.87,5.28l-3.55,2.71l-0.16,2.93l2.38,2.32l3.08,2.01l-8.29,3.98l-6.53,0.54l-8.73,-0.74l-4.32,0.48l-2.31,2.75l0.06,1.47l1.67,3.71l0.37,9.93l-0.7,6.73l0.2,8.05l-0.38,0.66l-4.19,2.8l-1.52,3.82l-0.87,0.68l-1.42,0.12l-2.22,-0.71l-2.14,-1.8l-1.34,-2.49l-2.26,-0.42l-1.45,1.06l-2.31,3.91l-0.98,0.88l-5.41,1.38l-3.08,2.1l-0.86,0.14l-0.78,-1.76l-0.34,-4.52l0.33,-4.87l-2.74,-3.6l-3.42,-12.3l-2.63,-3.16l-0.76,-2.08l0.31,-3.21l3.87,-0.58l0.98,-1.62l0.3,-4.44l-0.65,-4.03l-1.03,-1.22l-4.66,0.75l-1.81,-0.3l-0.6,-0.58l0.63,-2.59l-0.09,-1.89l-3.32,-3.44l-1.41,-6.3l3.05,-3.61l0.19,-5.97l-0.74,-1.21l-4.13,-1.26l-0.63,-0.82l-0.08,-1.2l1.03,-3.01l-0.05,-4.57l0.53,-1.46l4.53,-3.75l-0.47,-4.42l0.58,-3.16l3.12,-1.69l2.56,0.02l1.42,-0.49l1.34,-1.24l1.12,-2.72l4.8,-4.42l0.81,-5.47l3.13,2.57l6.69,2.39Z", + "Chachoengsao" : "M410.66,723.78l1.59,4.71l-1.48,5.01l1.13,1.81l-0.16,1.13l0.36,0.37l1.59,-0.15l1.76,-1.37l3.13,-1.16l3.3,1.14l2.38,-0.69l7.75,1.33l1.92,-0.14l20.99,9.81l1.13,1.96l0.82,0.38l0.91,-0.6l1.03,-2.6l0.79,-0.36l7.29,2.85l1.91,0.41l1.74,-0.35l1.03,-0.82l0.52,-3.08l5.42,-1.12l3.28,3.02l1.54,3.93l1.8,1.84l1.79,0.55l4.43,-0.68l1.45,6.36l3.28,3.32l0.06,1.61l-0.68,2.39l0.32,0.98l1.95,0.89l2.05,0.02l3.19,-0.73l0.67,0.68l0.62,3.85l-0.26,4.15l-0.6,1.16l-3.96,0.64l-0.59,0.89l-0.12,1.51l0.93,3.9l2.62,3.15l1.89,7.42l-4.17,3.99l-5.19,2.96l-2.27,5.66l-0.5,0.06l-0.91,-1.72l-1.64,-0.33l-2.41,0.92l-2.29,2.32l-4.07,2.64l-3.32,0.39l-2.57,0.85l-0.27,-1.75l-3.85,-6.65l-4.87,-4.86l-3.31,-1.37l-2.65,-2.14l-2.06,-1.01l-1.56,-3.34l-2.82,-3.93l-3.59,-1.83l-2.69,0.89l-1.18,-0.2l-3.07,-2.13l-2.25,-3.13l-4.19,0.05l-5.18,-4.43l-1.87,-3.38l-2.64,-2.53l-8.4,-2.0l-4.94,-2.19l-1.53,-0.1l-0.92,0.52l-1.78,2.46l-1.72,0.24l-1.67,1.25l-2.65,-0.01l-0.96,0.4l-0.55,1.25l0.39,2.88l-1.36,1.54l-1.39,0.61l-0.93,1.66l-1.85,1.0l-1.25,0.2l1.35,-2.52l0.0,-0.75l-0.63,-0.33l-3.44,2.7l-1.26,0.31l-6.62,0.0l-4.65,-0.95l1.86,-1.92l0.56,-3.22l1.09,-2.47l2.55,-1.01l0.36,-3.11l1.78,-0.75l3.14,-4.32l-0.96,-3.09l-9.13,-3.77l-0.6,-1.09l4.78,-7.8l3.32,-4.13l-0.3,-1.17l-2.23,-1.83l-0.35,-0.79l0.88,-11.68l3.95,-1.32l13.07,-0.66l7.87,0.64Z", + "PrachinBuri" : "M412.56,736.1l0.1,-1.1l-1.08,-1.51l1.48,-5.03l-2.21,-7.81l4.74,-1.78l4.77,-4.55l4.43,-0.62l2.49,0.94l3.91,-1.54l0.2,-2.1l-1.31,-2.29l-0.22,-1.91l-1.2,-1.76l0.02,-1.02l1.24,-2.22l8.17,-6.04l0.64,-1.51l0.32,-3.71l2.39,1.29l1.91,0.25l3.83,-1.28l2.44,-0.21l1.92,-1.32l0.35,-3.72l-1.78,-3.39l-0.97,-0.65l-1.45,-2.75l-4.92,-2.2l-1.82,-3.27l2.49,-0.16l1.57,-1.96l3.0,-1.88l0.89,0.33l2.62,2.59l2.75,0.83l5.64,-0.81l2.82,0.29l1.11,0.55l0.92,1.24l1.77,1.11l1.09,1.57l4.63,3.54l2.71,3.37l2.28,1.44l1.02,-0.69l0.49,-2.8l2.04,-0.35l1.52,-0.88l3.56,0.2l3.84,-0.85l0.83,-0.46l1.73,-2.74l3.81,3.6l1.14,-0.03l2.29,-1.9l2.44,1.44l0.01,1.72l-3.65,5.43l-0.23,1.89l1.83,3.41l9.45,7.2l-0.8,5.74l-4.71,4.3l-1.12,2.71l-1.09,1.04l-3.83,0.42l-3.47,1.87l-0.79,1.92l0.44,6.03l-4.45,3.58l-0.62,1.75l0.06,4.53l-1.01,2.88l0.06,1.63l1.09,1.38l3.03,0.74l1.36,1.09l-0.15,5.62l-2.9,3.34l-4.61,0.68l-1.32,-0.43l-1.54,-1.57l-1.61,-4.03l-3.76,-3.31l-6.01,1.25l-0.63,0.78l-0.18,2.64l-0.53,0.38l-1.47,0.31l-1.74,-0.38l-7.54,-2.87l-1.4,0.7l-1.21,2.85l-1.57,-2.21l-21.25,-9.92l-2.05,0.12l-7.77,-1.33l-2.33,0.7l-3.43,-1.14l-1.73,0.44l-4.26,2.33Z", + "Chanthaburi" : "M483.16,858.04l1.7,-1.57l0.98,-5.92l0.25,-2.39l-0.49,-5.76l-0.45,-0.71l-1.65,-0.31l-1.15,-3.75l-0.83,-1.22l-1.85,-1.13l-2.2,0.48l-1.06,-1.47l-0.03,-2.47l1.08,-1.37l0.02,-1.06l-1.27,-1.84l-2.55,-0.76l-3.06,-8.66l1.01,-4.12l2.1,-2.27l2.88,-0.95l3.47,-0.45l4.23,-2.74l2.23,-2.28l2.12,-0.8l1.24,0.39l0.62,1.5l1.08,0.22l1.45,-1.83l1.74,-4.59l4.69,-2.44l3.95,-3.77l1.9,5.29l2.07,2.21l-0.37,4.65l0.35,4.58l0.59,1.99l0.83,0.48l1.39,-0.23l3.0,-2.06l3.35,-0.55l2.2,-0.9l4.42,-5.74l1.66,0.26l1.2,2.36l2.41,2.01l2.45,0.78l1.82,-0.16l1.28,-1.01l1.42,-3.69l4.36,-3.04l5.44,14.21l2.18,3.77l4.89,5.72l1.76,3.49l1.21,1.55l1.62,0.98l-0.27,0.76l-2.17,1.81l1.2,1.9l-1.23,1.46l-0.25,1.52l1.01,2.48l1.0,6.76l2.5,6.1l-1.15,4.27l-2.36,1.32l-3.31,0.63l-4.99,5.96l-0.16,5.33l0.59,1.55l-0.72,1.56l1.98,3.52l-0.77,-0.05l-2.92,-2.59l-1.29,-0.4l-1.56,0.93l-2.53,3.37l0.01,2.15l1.93,5.22l-0.4,2.03l-1.18,1.62l-0.06,0.98l1.95,3.61l2.71,1.7l-0.09,0.91l-1.57,2.74l-1.83,-1.36l-1.85,1.23l0.1,0.67l1.36,0.8l0.56,1.02l-1.35,1.63l-2.06,1.18l-1.63,-0.16l-0.77,-2.25l0.26,-4.76l0.63,-2.24l1.27,-2.21l-0.35,-0.6l-0.98,0.15l-2.42,3.68l-0.58,-2.35l0.54,-2.82l-3.29,1.45l-1.23,-0.12l-1.03,-1.4l-2.36,0.78l-0.03,0.7l1.25,1.27l-0.59,1.99l0.36,0.57l0.9,-0.07l1.94,-1.33l0.5,0.82l0.51,1.89l-0.39,1.62l2.11,1.59l1.04,3.13l-0.71,1.67l-3.5,-1.71l-6.62,-6.78l-4.46,-2.63l0.05,-1.09l-5.74,-7.38l0.32,-1.09l2.03,0.75l0.47,-0.22l-1.21,-1.22l1.85,-1.64l0.84,-1.73l-0.36,-0.57l-0.81,0.0l-0.87,1.19l-1.07,0.24l-0.33,-0.24l1.73,-1.1l0.26,-0.45l-0.4,-0.33l-5.27,0.11l-0.23,-0.42l2.08,-2.01l-0.3,-0.69l-4.59,0.24l-1.78,0.84l0.17,1.14l3.65,3.67l2.0,0.15l-0.61,4.33l-4.55,-6.21l-2.07,-0.76l-3.03,0.12l-0.01,-4.3l-1.28,-3.02l-0.67,0.1l-1.69,2.46l1.4,5.3l-2.96,-2.26l-1.83,-2.2l1.34,0.41l0.51,-0.47l-0.59,-2.1l-2.57,-0.44l-3.91,-6.14l-2.07,-2.05l-4.16,-2.61l0.42,-2.22l0.91,-1.24l0.03,-1.93Z", + "Trat" : "M543.12,901.03l1.94,-3.39l0.17,-1.35l-0.71,-0.88l-2.23,-1.25l-1.75,-3.24l1.2,-2.12l0.46,-2.37l-1.95,-5.36l-0.01,-1.78l2.33,-3.01l1.03,-0.67l3.76,2.9l0.95,0.24l0.88,-0.43l-0.05,-1.46l-1.79,-2.57l0.7,-1.58l-0.6,-1.53l-0.08,-4.53l4.89,-6.04l3.68,-0.85l-0.55,3.82l0.32,2.46l0.9,1.92l1.76,1.32l6.12,2.03l3.18,2.3l8.23,8.3l3.41,2.28l0.83,3.5l1.58,1.73l3.52,1.9l1.11,1.28l0.3,1.92l-0.83,1.38l-2.83,2.5l-1.73,4.27l-2.48,18.06l0.84,4.5l5.61,8.7l2.15,2.59l1.71,3.73l1.1,5.52l4.98,9.55l7.66,11.04l1.19,4.27l0.39,6.1l-1.1,1.73l-0.52,-1.4l0.08,-8.24l-1.49,-3.23l-7.4,-9.8l-4.57,-3.78l-0.6,-0.98l0.0,-7.02l-1.16,-5.08l-1.95,-3.22l-12.68,-12.2l-0.07,-0.38l2.02,0.19l0.36,-0.64l-1.4,-1.87l-3.82,-2.99l0.11,-1.74l-0.6,-0.35l-4.75,2.11l-0.69,2.27l1.54,10.37l1.36,2.68l-0.09,1.44l-2.79,-1.05l0.03,-3.16l-2.07,-2.71l-6.48,-4.0l-11.67,-4.08l-1.82,-1.09l-1.92,-0.04l-1.15,1.73l-3.17,-1.37l-0.34,-0.75l0.4,-2.12l-0.78,-2.28l-1.93,-3.25l-0.16,-1.33l2.59,0.58l2.83,-0.99l2.3,-1.77l1.82,-1.98l0.86,-2.57l-0.42,-1.34ZM565.55,971.0l-0.6,1.37l0.4,0.56l2.53,-0.21l1.58,2.51l0.24,3.75l-1.81,3.36l0.4,1.15l0.82,0.0l-0.87,2.01l0.33,2.51l-2.26,-3.03l-4.03,-1.37l1.29,-2.11l-0.07,-1.46l-1.46,-4.42l2.45,-8.29l0.92,1.33l0.16,2.32ZM532.56,924.04l3.27,0.77l1.9,-0.07l4.62,3.69l3.37,5.77l1.35,0.98l0.12,0.76l4.58,6.35l-0.15,1.42l-1.1,0.49l-1.56,-0.98l-3.41,-3.41l-0.67,0.18l-0.3,3.28l-2.5,0.16l-4.1,-1.33l-0.52,0.38l0.07,0.88l-1.5,-0.51l0.39,-1.87l0.02,-6.83l-1.07,-1.32l-2.83,-6.54l0.88,0.0l0.35,-0.59l-1.2,-1.68Z", + "ChonBuri" : "M381.6,867.95l0.55,-1.61l-0.39,-0.48l-1.52,0.0l1.13,-2.41l-0.33,-0.6l-2.46,-0.59l1.73,-4.46l1.2,-1.75l1.8,0.83l1.01,-0.18l2.55,-3.42l0.54,-2.16l-0.78,-3.4l-4.82,-7.25l-0.37,-1.28l0.29,-0.81l2.62,-2.22l0.66,-3.31l0.9,0.31l1.15,-0.55l1.82,-2.61l-0.11,-2.82l-2.35,-3.35l-0.64,-1.95l-0.67,-0.85l-1.83,-0.7l-0.33,-0.8l6.23,-9.27l0.95,-2.12l-0.09,-2.21l-1.17,-3.96l-2.26,-4.1l0.19,-0.96l1.02,-1.26l0.85,-2.33l3.48,-1.11l1.91,-1.38l0.64,-4.18l-0.22,-2.45l-1.5,-2.18l0.73,-2.17l2.12,-0.46l2.0,-1.08l1.0,-1.71l1.39,-0.62l1.41,-1.58l0.37,-1.07l-0.53,-2.36l0.28,-0.67l3.25,-0.21l1.78,-1.28l1.78,-0.27l2.05,-2.67l0.79,-0.28l5.78,2.32l8.3,1.97l2.31,2.28l1.93,3.45l5.33,4.55l1.37,0.35l2.84,-0.38l2.09,3.01l3.37,2.31l1.53,0.24l2.45,-0.9l3.19,1.62l2.69,3.78l1.68,3.48l2.19,1.11l2.7,2.17l3.24,1.33l4.7,4.71l3.72,6.46l0.25,1.82l-2.11,2.28l-0.44,1.46l-3.1,-1.37l-2.59,-0.34l-2.14,1.31l-3.32,1.05l-1.12,0.95l-0.48,3.2l-1.13,1.32l-2.83,1.7l-3.18,-0.69l-0.9,0.21l-2.12,2.68l-1.81,1.45l-3.38,-0.8l-3.99,2.39l-3.42,-3.39l-3.31,-2.12l-2.74,-0.32l-3.55,2.52l-6.21,-2.42l-3.7,-0.83l-1.42,0.55l-1.28,1.57l0.13,1.47l1.53,1.75l-0.63,0.8l-1.18,0.31l-6.31,-0.98l-1.6,0.58l-1.85,1.75l-0.26,0.97l2.44,2.74l0.27,1.08l-0.35,2.59l0.66,3.37l-0.96,1.71l-2.79,2.44l-0.4,3.1l-0.67,1.16l-5.21,4.43l-0.4,4.54l-1.19,2.46l-1.59,6.72l0.42,3.65l-0.3,3.74l-4.45,-1.97l1.56,-1.77l-0.84,-2.04l-1.85,-1.06l-2.17,0.98l-1.21,-0.62l-1.98,0.44Z", + "Rayong" : "M393.34,869.45l-0.13,-2.73l1.56,-6.6l1.2,-2.49l0.36,-4.41l5.11,-4.27l0.83,-1.49l0.29,-2.83l2.7,-2.32l1.16,-2.07l0.08,-1.44l-0.72,-2.2l0.35,-2.52l-0.3,-1.29l-0.57,-1.15l-1.84,-1.66l1.81,-1.8l1.14,-0.41l6.2,0.98l1.67,-0.42l1.01,-1.62l-1.73,-2.6l1.58,-1.76l3.84,0.73l1.63,0.92l5.11,1.56l3.51,-2.57l2.28,0.32l3.03,1.98l2.58,2.89l1.37,0.68l1.39,-0.41l2.75,-2.0l3.5,0.77l2.08,-1.63l2.09,-2.61l3.16,0.65l1.3,-0.29l3.57,-2.75l0.9,-3.87l3.84,-1.38l1.78,-1.23l2.33,0.29l3.16,1.4l-0.48,2.51l2.83,8.35l0.87,1.04l2.21,0.53l1.0,1.47l-1.24,2.62l0.49,3.04l1.23,1.2l2.4,-0.43l1.38,0.93l1.87,4.85l1.97,0.73l0.47,5.62l-1.2,8.01l-1.68,1.54l-0.07,2.02l-0.86,1.11l-0.4,2.18l-2.3,-0.74l-6.68,-0.22l-2.1,0.65l-3.04,4.7l-1.74,0.88l-6.68,-0.12l-1.06,0.61l-0.39,1.71l-2.91,-0.04l-3.36,-0.8l-4.82,0.76l-2.57,0.92l-1.14,1.23l-0.42,1.77l-0.74,0.08l-2.66,-1.72l-7.59,-3.38l-8.14,-1.99l-17.46,-2.26l-2.54,0.53l-3.69,2.09l-4.65,0.83l-1.06,0.9Z", + "KamphaengPhet" : "M276.42,421.71l-1.2,6.12l2.7,5.3l1.03,0.69l1.73,0.01l6.27,2.81l2.16,2.31l1.18,3.99l-4.15,11.18l-1.67,3.09l0.12,1.19l1.58,2.1l-5.48,6.76l0.05,4.66l-1.18,4.2l-3.91,8.64l-0.52,4.76l-6.83,5.91l-2.71,3.8l-1.85,3.8l-2.54,3.67l-0.61,3.16l-3.4,7.67l-1.58,0.52l-4.67,3.63l-2.39,-2.75l-1.21,-4.76l-1.76,-3.1l-1.65,-1.05l-3.74,-1.2l-2.52,-1.7l-3.63,-0.38l-3.4,0.48l-1.96,2.18l-4.34,-1.46l-2.03,0.2l-5.37,-0.91l-2.91,0.9l-2.23,-0.12l-2.93,2.23l-1.16,-1.42l-4.92,-3.33l-1.93,-0.46l-5.04,0.96l-2.78,2.58l-2.76,0.52l-2.65,2.69l-0.27,-2.81l0.46,-2.67l-1.67,-3.03l0.51,-4.79l-1.09,-1.45l-2.19,-0.56l-1.12,-1.22l-1.97,-10.71l0.16,-1.64l1.38,-3.61l0.06,-2.02l-0.28,-1.59l-1.94,-2.08l-0.8,-5.36l1.14,-5.98l0.7,-7.37l-0.28,-1.81l-1.62,-1.85l-0.89,-2.64l-0.03,-1.63l1.32,-1.8l2.41,0.43l2.91,-0.41l3.17,0.99l3.6,-0.56l5.51,-3.3l1.63,-2.42l4.9,-0.6l2.11,-1.53l1.49,-3.61l-0.96,-5.37l0.26,-3.19l2.18,-2.19l1.3,-3.38l1.67,-2.31l0.4,-1.48l-0.44,-3.17l0.24,-2.13l1.92,-1.39l1.1,-1.84l0.36,-4.09l1.52,-3.75l2.77,1.86l1.44,0.37l5.85,-1.51l5.89,-0.46l2.44,0.29l2.4,2.09l0.64,3.78l0.89,1.43l14.96,9.28l17.23,-0.41l0.82,0.34l4.62,4.75Z", + "Tak" : "M122.03,412.02l3.39,-1.63l1.32,-1.37l0.41,-1.42l-0.87,-1.26l-2.01,-1.01l-0.4,-1.11l0.23,-1.31l0.57,-0.35l1.0,0.27l1.3,0.94l0.62,-0.44l-1.65,-4.77l-2.74,-1.59l-0.41,-3.38l-0.64,-1.46l-4.19,-6.89l-4.15,-3.35l-2.3,-0.64l-5.26,-0.12l-1.73,-0.54l-1.38,-1.31l-1.26,-2.2l0.82,-1.28l-0.05,-1.1l-0.39,-0.35l-2.52,-0.02l-0.13,-0.54l1.28,-2.02l-0.07,-0.6l-2.42,-1.63l-3.85,-5.5l-3.78,-2.64l-9.24,-8.69l-0.78,-0.97l-0.2,-1.29l0.44,-3.71l-0.67,-1.75l-4.46,-2.27l-1.34,-1.41l-1.87,-4.72l-3.89,-6.53l-5.36,-2.99l-2.43,-2.24l1.3,-1.18l4.52,-0.2l1.46,-0.48l1.92,-1.49l13.21,-6.2l8.62,-0.18l4.27,-3.89l6.22,-1.6l-0.51,1.16l-2.76,2.05l-0.94,1.33l-0.34,6.38l0.18,1.6l0.6,0.92l2.63,-0.23l1.83,0.74l1.75,4.94l0.22,1.66l-1.12,7.04l2.27,2.26l-0.32,0.76l-1.5,1.04l-0.48,1.28l1.79,2.46l0.95,3.7l-0.38,4.23l1.4,1.55l2.18,0.98l4.4,3.42l2.54,0.38l4.29,-2.13l6.89,-0.94l3.49,-1.21l0.73,-0.73l0.62,-2.51l-0.18,-3.53l-2.33,-1.99l1.57,-3.46l0.22,-3.26l-0.93,-1.88l-2.5,-2.52l-0.28,-2.61l0.39,-3.08l2.04,-4.4l2.29,-1.07l3.44,-0.67l1.8,-2.69l0.15,-2.35l-1.19,-1.94l-0.55,-3.06l0.64,-1.07l3.42,-2.9l0.67,-3.69l0.96,-0.8l4.75,-1.97l3.55,6.04l0.0,1.32l-0.74,0.98l-3.42,1.07l-0.86,1.73l0.04,1.55l0.73,1.21l-0.7,2.02l1.42,5.12l0.0,6.89l0.94,2.0l2.97,0.5l3.01,-0.14l6.13,-2.29l4.34,-3.63l1.0,-3.24l1.39,-1.68l0.38,-4.04l1.11,-1.76l2.46,-1.2l3.98,0.22l4.7,3.24l0.06,2.49l1.72,4.17l0.5,5.14l-1.8,5.56l-0.42,3.44l0.41,1.8l1.57,0.92l1.34,1.96l2.52,1.4l2.79,0.39l2.1,1.36l2.31,0.05l4.39,2.36l0.61,-0.1l3.04,-3.18l0.78,-2.38l1.1,-1.22l1.22,-0.53l3.21,0.34l0.76,1.13l-0.24,3.14l0.89,3.79l4.25,7.0l-0.36,12.08l0.93,3.91l-2.61,2.59l-2.04,3.71l0.36,5.17l-1.43,6.36l1.14,3.35l3.16,1.04l2.64,2.89l1.13,0.62l-1.59,3.95l-0.32,3.93l-0.94,1.59l-2.09,1.67l-0.29,2.4l0.44,3.11l-0.35,1.25l-1.64,2.26l-1.26,3.3l-2.25,2.35l-0.3,3.46l0.97,5.29l-0.3,1.29l-1.0,1.87l-1.46,1.16l-5.3,0.77l-1.75,2.49l-5.33,3.2l-3.25,0.51l-3.14,-0.98l-2.97,0.41l-2.56,-0.42l-1.15,0.81l-0.85,1.67l0.05,1.95l0.92,2.73l1.79,2.49l-0.63,8.14l-1.14,6.08l0.84,5.59l2.11,2.64l0.03,2.65l-1.57,5.01l1.76,10.74l1.18,1.88l2.47,0.79l0.98,1.09l-0.52,4.72l1.68,3.08l-0.47,2.53l0.91,7.29l0.59,1.46l3.32,2.69l0.54,8.5l-1.64,4.48l-0.72,6.19l-3.27,5.84l-3.22,2.61l0.09,4.36l2.44,2.54l-1.26,3.65l-0.35,4.69l0.53,2.27l-1.71,2.98l-2.68,10.96l-2.05,3.52l-1.42,1.21l-4.4,-3.42l-4.75,-2.42l-1.94,-4.0l-4.46,-5.56l-3.15,-5.21l-3.18,-2.68l-1.2,-3.78l-4.29,-2.93l-0.21,-0.32l1.06,-0.75l-0.23,-1.31l-7.31,-11.53l-0.84,-0.77l-1.69,-0.16l-1.41,-0.96l-2.16,-0.62l-2.58,-2.08l-4.21,-1.72l-0.38,-3.83l0.29,-2.53l3.39,-11.22l0.25,-2.14l-0.86,-7.22l1.63,-6.3l-0.8,-2.51l-2.87,-4.09l-0.27,-1.17l0.66,-0.61l3.58,1.06l2.37,-0.13l0.97,-0.5l2.84,-3.31l1.55,-4.0l2.06,-1.0l8.35,0.76l2.83,1.88l1.68,-0.22l1.18,-0.81l3.13,-3.87l0.17,-5.06l0.65,-2.09l4.43,-5.63l2.15,-11.68l-0.09,-2.14l-1.93,-2.94l-4.49,-3.55l-0.41,-3.66l-0.65,-0.26l-2.36,2.0l-0.91,1.89l-0.91,4.54l-1.39,2.52l-6.49,5.1l-3.27,4.86l-1.45,1.06l-1.75,-1.23l-2.18,-9.51l-1.43,-3.26l-0.12,-1.04l1.04,-2.22l0.17,-1.5l-0.94,-2.11l-7.22,-9.76l0.39,-3.27l-0.75,-2.4l-1.65,-2.14l-3.73,-2.54l-1.42,-2.01l-1.32,-4.29l-3.2,-2.53l-0.18,-1.72l1.98,-3.69Z", + "NakhonSawan" : "M368.75,506.36l0.23,2.87l0.55,1.18l2.46,1.17l1.43,1.91l-0.52,3.44l0.22,3.15l1.34,6.79l2.39,6.4l-1.12,2.49l1.37,3.93l-3.06,3.58l-0.89,4.19l-0.68,1.2l-1.21,1.24l-2.39,0.99l-0.98,0.9l-0.85,2.33l1.06,3.68l0.09,1.34l-0.64,1.44l-1.67,2.06l-11.97,10.98l-2.99,3.64l-1.69,0.88l-1.75,1.77l-2.66,3.7l-0.7,3.75l-4.07,3.13l-0.14,3.7l-1.11,2.73l-2.73,3.04l-1.03,2.05l-7.95,-3.59l-1.44,-2.87l0.38,-1.76l-0.84,-1.98l-0.87,-0.71l-3.27,-0.79l-5.0,-13.23l-3.5,-5.29l-3.11,-2.85l-3.69,-1.49l-5.56,-5.32l-6.48,0.14l-1.22,-2.84l-8.05,-6.73l-2.2,-0.89l-1.88,0.71l-2.97,-1.44l-3.82,-4.73l-0.94,-5.9l-0.96,-2.01l-1.41,-0.17l-2.37,1.22l-1.35,-0.08l-3.51,-1.42l-5.25,-4.57l-3.61,0.09l-4.09,1.71l-3.86,3.33l-4.16,1.53l-3.21,3.99l-3.75,2.26l-0.97,0.31l-4.03,-0.29l-4.8,-3.95l-5.31,-2.73l-1.34,-3.3l-9.43,-4.52l-4.02,-2.47l-1.56,-2.13l-2.85,-2.18l-4.36,-2.07l-4.08,0.37l-0.23,-3.23l-3.48,-2.94l-0.9,-4.34l2.97,-3.1l2.7,-0.49l2.77,-2.57l1.99,-0.04l2.78,-0.84l1.37,0.32l4.87,3.29l1.6,1.6l3.36,-2.31l1.98,0.19l2.87,-0.89l5.22,0.91l1.88,-0.23l4.21,1.5l1.15,-0.28l1.58,-2.01l2.0,-0.38l4.11,0.28l2.66,1.71l3.8,1.23l1.44,0.91l0.98,1.37l1.45,5.5l1.13,2.07l2.03,1.83l1.57,-0.37l3.57,-3.17l1.71,-0.61l0.75,-0.81l3.11,-7.38l0.56,-3.05l6.25,-10.31l7.44,-6.46l0.47,-1.13l0.32,-4.13l3.9,-8.62l1.23,-4.37l-0.07,-4.6l5.22,-6.33l1.37,1.06l1.39,2.36l0.97,4.88l-0.49,1.02l0.24,2.14l1.54,6.17l3.77,2.52l1.3,1.39l0.03,2.88l2.89,4.36l2.19,6.9l3.26,6.37l2.97,1.55l2.33,1.96l1.11,0.27l1.36,-0.48l2.61,1.91l2.14,0.27l1.94,-0.44l0.56,-3.09l1.04,-0.4l4.2,1.13l2.53,-0.26l4.81,1.54l4.31,-0.55l5.14,0.26l1.66,-0.88l2.38,0.12l2.02,-1.06l4.34,-1.1l6.68,0.69l5.62,1.6l3.82,0.15Z", + "UthaiThani" : "M293.03,564.51l-2.18,-0.11l-0.78,0.95l0.42,1.49l2.3,1.81l1.78,2.92l0.06,2.47l-1.43,3.33l0.12,1.73l0.4,0.37l-0.28,0.14l-0.45,-0.06l-1.1,-1.94l-4.58,-1.32l-7.28,-0.07l-4.91,1.0l-2.65,-1.83l-10.75,-1.73l-0.97,0.2l-3.72,2.64l-0.69,1.25l-0.04,1.48l1.23,2.89l0.74,4.94l1.99,4.26l4.56,7.12l1.29,1.15l-1.97,4.07l-1.92,1.07l-1.99,1.91l-1.68,0.54l-1.46,1.89l-0.22,1.38l0.74,1.71l-0.32,0.83l-7.83,-3.41l-2.99,1.21l0.68,4.02l-1.5,0.17l-5.55,-1.44l-2.64,-0.91l-2.52,-1.68l-10.46,-2.19l-1.26,-3.69l-6.31,-1.88l-2.11,-2.04l-0.98,-0.38l-1.41,0.57l-1.97,1.98l-1.57,5.57l-4.17,0.62l-5.58,-2.09l-2.67,0.21l-3.08,-1.31l-6.55,1.13l-1.61,-2.21l-6.01,-4.87l-0.81,-1.77l0.05,-4.85l-1.32,-8.85l1.61,-1.39l2.14,-3.69l2.71,-11.03l1.81,-3.6l-0.58,-1.9l0.35,-4.59l1.26,-3.88l-0.58,-1.1l-1.89,-1.56l-0.23,-3.31l0.33,-0.89l2.92,-2.06l3.38,-6.05l0.74,-6.25l1.66,-4.55l-0.37,-4.88l3.98,-0.37l4.05,1.95l2.69,2.05l1.72,2.26l4.07,2.5l9.25,4.4l1.37,3.31l5.42,2.81l4.4,3.74l1.3,0.45l3.6,0.16l1.34,-0.42l3.86,-2.33l3.16,-3.95l4.07,-1.48l3.89,-3.35l3.82,-1.61l3.81,0.17l4.44,4.17l3.76,1.53l1.44,0.18l1.96,-1.13l1.38,-0.2l0.76,1.61l0.99,6.03l2.93,3.87l1.82,1.69l2.55,1.04l2.06,-0.68l1.82,0.76l7.89,6.6l1.14,2.76l-0.04,1.78Z", + "Phichit" : "M359.35,459.8l1.94,5.06l1.25,5.3l-1.18,3.16l-5.38,7.17l-0.48,2.29l0.5,4.58l-0.85,4.8l0.54,0.72l7.97,2.32l6.47,4.36l0.17,1.68l-1.48,4.29l-3.73,-0.12l-5.65,-1.61l-6.83,-0.7l-4.55,1.14l-1.94,1.04l-2.47,-0.1l-1.53,0.85l-5.02,-0.27l-4.32,0.55l-4.63,-1.52l-2.61,0.24l-4.33,-1.13l-1.72,0.81l-0.32,2.78l-2.76,0.34l-3.17,-2.13l-2.4,0.24l-2.27,-1.92l-2.74,-1.33l-3.18,-6.22l-2.2,-6.92l-2.87,-4.29l-0.06,-2.97l-1.53,-1.67l-3.55,-2.26l-1.46,-5.91l-0.21,-1.95l0.48,-1.16l-1.01,-5.07l-1.51,-2.59l-1.73,-1.36l-1.76,-2.52l1.68,-3.37l4.12,-11.12l8.85,-1.95l6.22,-6.01l2.51,-1.44l4.31,-1.41l1.59,0.95l0.78,4.81l0.57,0.36l1.14,-0.57l0.51,2.86l0.92,0.87l2.16,-0.7l0.89,-1.01l2.45,0.79l8.91,-2.16l4.46,0.97l6.12,-1.05l2.19,0.49l1.72,2.35l2.54,6.25l0.17,3.04l9.32,9.02Z", + "Phetchabun" : "M480.93,413.32l-0.32,4.01l-1.33,2.66l-2.42,3.24l-2.28,1.6l-3.71,-3.14l-3.62,-0.58l-3.31,0.55l-3.28,-2.28l-2.84,1.59l-1.9,2.01l-3.59,-1.1l-1.59,0.84l-0.26,2.66l0.91,2.05l-0.5,1.23l-1.41,0.97l-0.35,3.86l0.28,1.68l1.42,1.8l-5.08,3.67l-0.22,1.31l0.49,2.08l-0.38,1.15l-2.28,3.59l-4.38,4.06l-0.08,2.53l-2.54,2.95l-1.81,8.4l-1.53,2.56l1.93,2.74l-2.36,3.69l0.17,2.76l-2.35,12.24l0.57,5.89l1.33,3.84l1.38,1.05l2.91,0.69l0.41,0.63l-2.46,7.66l-3.33,3.13l-0.53,2.25l0.37,9.76l0.4,1.43l3.12,2.81l2.88,0.44l0.74,1.41l-2.04,6.9l-1.25,8.73l0.94,6.41l-0.14,9.44l-4.2,8.55l-3.29,3.45l-3.72,-3.05l-0.8,-1.2l-0.57,-3.22l-0.9,-1.89l-1.19,-1.13l-4.09,-0.81l-4.65,1.38l-2.59,-0.31l-4.81,-3.48l-2.52,0.21l-1.45,-0.35l-1.41,-1.65l-6.21,-4.32l-5.52,0.34l-5.52,1.44l-14.27,-3.41l1.24,-2.1l2.2,-0.85l1.7,-1.63l0.81,-1.47l0.83,-4.05l3.09,-3.61l-0.14,-1.65l-1.17,-2.61l1.11,-2.58l-2.41,-6.5l-1.32,-6.71l0.11,-7.24l-1.51,-1.75l-2.35,-1.08l-0.39,-0.79l-0.26,-3.16l1.55,-4.49l0.01,-1.95l-2.18,-2.06l-4.88,-2.95l-7.99,-2.35l0.76,-4.77l-0.5,-5.02l1.15,-2.79l4.56,-5.77l1.15,-2.51l0.08,-2.38l-3.1,-9.26l2.55,-3.34l1.05,-3.71l2.37,-0.65l4.84,-3.2l2.68,-0.97l1.18,-3.25l4.26,-7.0l0.16,-1.5l-0.8,-4.07l1.96,-5.22l1.8,-1.89l3.7,-0.9l2.11,-2.12l-0.02,-0.79l-1.21,-1.69l0.04,-2.07l-0.83,-2.77l-1.46,-2.12l0.42,-2.36l3.38,-0.99l5.02,-5.1l2.3,-1.27l4.04,-4.94l6.69,-0.34l1.19,-1.57l1.41,-0.66l1.3,-7.32l-0.75,-2.74l0.2,-1.55l0.94,-0.6l2.21,-0.09l1.49,-0.83l2.6,-4.29l0.08,-2.85l1.34,-0.6l10.04,4.02l1.82,1.63l2.88,-0.95l4.37,0.43l1.39,-0.7l3.5,1.02l2.23,-1.1l0.8,0.03l6.41,3.3l2.31,5.02l2.35,0.96l2.43,-0.26l2.26,-1.03l2.45,-3.93l1.52,-0.73l4.19,9.44l2.82,3.15l0.49,1.32l0.55,3.32l-0.42,6.26l0.97,3.11l-0.57,2.98l0.37,1.53l1.51,1.02l5.86,-0.77Z", + "Sukhothai" : "M275.89,297.41l2.59,2.32l0.03,3.18l5.04,5.36l0.8,3.11l0.06,1.65l-1.07,5.18l-1.31,1.59l-2.56,1.71l-0.18,1.71l2.38,3.55l1.49,0.59l1.03,2.26l2.54,1.83l2.32,2.66l1.6,3.72l-1.04,1.77l-2.1,0.6l-0.64,0.7l0.29,1.77l1.34,1.8l0.08,5.81l-1.26,3.67l-2.43,2.06l-1.19,2.25l1.39,5.11l-0.13,4.67l-1.12,0.37l-2.07,-0.54l-3.28,0.16l-0.89,0.69l-0.11,0.89l1.74,4.03l2.36,1.42l1.6,3.01l5.01,4.33l8.1,4.68l4.24,3.15l0.59,1.38l-1.0,3.57l0.81,2.07l-0.96,0.74l-5.73,-0.15l-3.53,0.7l-0.92,1.12l-0.39,2.68l-2.36,-0.67l-4.95,-0.06l-3.99,9.35l-0.55,0.93l-2.27,1.36l-0.53,1.12l-0.02,1.57l0.56,0.74l4.45,1.27l0.5,0.6l-0.48,1.19l-2.82,1.33l-4.58,-4.7l-1.22,-0.56l-17.04,0.47l-14.8,-9.17l-0.65,-1.06l-0.69,-3.91l-2.31,-2.23l-3.27,-0.59l-5.96,0.46l-5.66,1.5l-1.14,-0.28l-4.47,-2.73l-2.73,-2.96l-3.07,-0.98l-0.88,-2.82l1.43,-6.25l-0.39,-4.98l1.94,-3.5l2.22,-1.86l0.5,-1.01l0.07,-1.23l-0.91,-1.44l-0.08,-1.42l0.35,-11.7l2.71,0.63l1.61,1.83l1.54,2.99l1.61,0.77l0.85,-0.17l5.26,-2.82l0.33,-1.52l1.3,-1.79l-0.29,-2.77l0.33,-1.97l2.37,-3.03l0.09,-1.89l-0.75,-2.38l-2.25,-1.12l-2.24,-2.04l0.85,-4.15l-1.6,-1.25l-1.17,-2.36l0.56,-5.04l2.06,-2.09l-0.69,-3.39l-1.4,-0.99l0.27,-2.97l0.49,-0.59l2.13,0.26l0.92,-0.77l-0.18,-3.97l2.54,-4.0l0.37,-3.85l-0.62,-2.28l5.83,-7.1l2.57,-1.47l3.83,-0.81l3.12,0.33l4.48,1.72l4.91,5.12l1.04,2.14l1.79,1.15l1.16,-0.17l1.6,-1.66l0.91,-2.26l2.28,-2.88l3.64,-1.56l8.16,-0.56Z", + "Phitsanulok" : "M359.54,331.17l1.34,-1.16l4.72,-2.18l3.11,-3.06l3.18,-5.17l6.11,-4.64l1.65,-3.71l2.38,-2.8l1.61,-0.21l0.87,1.64l1.42,0.46l4.08,-1.26l-1.95,4.34l-3.57,4.16l-1.62,2.63l0.21,2.78l1.91,1.4l3.41,0.63l-0.88,1.65l-2.42,1.84l-0.42,3.33l-2.1,2.87l0.29,1.18l1.75,2.47l0.77,4.52l-0.69,3.02l0.09,2.66l0.46,0.96l1.49,0.93l1.78,-0.33l2.3,0.56l3.38,-0.07l1.66,2.38l2.03,1.03l1.64,2.53l3.34,0.73l2.52,4.31l-0.59,2.93l-2.23,3.84l-1.01,6.05l-1.53,4.24l-0.53,6.1l-1.55,2.18l1.6,3.07l-0.31,1.31l-0.86,0.77l0.01,0.94l1.65,1.39l1.72,0.71l0.6,1.69l-3.04,0.19l-4.17,5.05l-2.26,1.24l-5.03,5.1l-2.86,0.53l-0.67,0.64l-0.5,3.02l1.36,1.85l0.91,2.95l-0.02,2.15l1.24,1.95l-1.82,1.76l-3.63,0.85l-2.12,2.21l-2.05,5.51l0.67,5.45l-4.2,6.83l-1.07,3.07l-2.46,0.82l-4.8,3.18l-2.26,0.51l-0.75,1.02l-0.77,3.14l-2.38,3.11l-8.91,-8.61l-0.1,-2.85l-2.58,-6.36l-1.07,-1.89l-1.94,-1.32l-1.71,-0.11l-6.02,1.04l-4.55,-0.97l-8.88,2.15l-2.54,-0.8l-1.21,1.16l-1.63,0.56l-0.35,-2.21l-0.75,-1.48l-1.33,0.36l-0.81,-4.46l-2.63,-1.46l-4.34,1.46l-2.66,1.52l-6.14,5.96l-8.49,1.86l-1.19,-3.96l-2.31,-2.51l-6.54,-2.97l-2.08,-0.15l-2.01,-3.1l-0.85,-2.04l0.03,-1.44l1.15,-4.49l2.98,-1.41l0.93,-1.63l-1.0,-1.55l-4.28,-1.15l-0.31,-1.56l0.79,-1.19l1.85,-0.92l0.64,-1.08l3.86,-9.13l2.28,0.43l2.02,-0.18l2.65,0.66l0.61,-0.57l0.34,-2.66l0.47,-0.61l3.24,-0.65l6.04,0.09l1.41,-1.27l-0.79,-2.3l1.0,-3.6l-0.9,-1.95l-4.29,-3.19l-8.1,-4.68l-4.92,-4.26l-1.53,-2.95l-2.49,-1.62l-1.39,-3.83l2.03,-0.46l4.02,0.54l3.97,-1.77l2.83,1.42l12.55,-3.81l2.13,-0.26l1.95,0.95l1.88,-0.57l5.86,-4.87l0.39,-1.67l-1.47,-6.51l1.61,-3.15l3.31,-2.79l1.88,-0.61l2.47,0.38l1.61,-1.49l10.37,-3.72l4.47,-0.07l1.66,1.67l7.56,-1.74l1.84,-0.97l2.32,-3.7l5.98,-4.74Z", + "Yasothon" : "M767.8,567.67l0.35,2.7l-2.08,6.77l-1.39,-0.61l-0.66,-2.17l-0.9,-0.91l-1.54,0.02l-3.69,-2.02l-4.06,-0.26l-5.02,-3.12l-8.55,-12.06l-2.49,-2.54l-0.55,-3.13l-1.69,-3.7l2.11,-1.82l5.09,-1.85l1.38,-0.71l0.14,-0.59l-1.74,-2.45l-4.28,-8.13l-1.33,-0.84l-1.59,0.62l0.83,-4.46l-0.48,-4.84l-2.32,-4.1l-4.3,-2.61l-0.61,0.36l0.15,2.69l-1.68,1.05l-4.6,1.13l-0.45,-1.89l1.44,-1.48l-0.37,-1.49l0.36,-0.71l1.99,-1.22l0.17,-0.6l-2.62,-3.41l-0.24,-1.22l0.8,-1.62l0.05,-5.41l2.8,-0.7l5.49,0.61l0.94,-0.3l0.72,-0.97l0.76,-5.86l-1.84,-4.08l0.37,-1.46l1.78,-1.51l3.12,-0.98l3.05,-3.07l3.2,-1.82l2.14,-0.57l1.86,-2.37l1.56,-3.74l1.89,-2.58l1.61,-1.22l2.11,0.11l1.36,-0.51l3.57,-7.58l2.22,-1.66l2.66,-0.6l7.15,0.79l2.87,-0.42l1.27,1.0l1.24,2.01l3.73,0.49l3.27,6.31l5.0,4.24l2.95,-0.18l1.05,-0.87l0.52,-1.46l0.68,-0.29l0.8,1.3l1.71,1.33l10.78,2.07l0.91,0.66l-0.35,2.6l-0.94,0.77l-13.27,2.19l-6.43,1.65l-4.48,2.86l-1.56,2.08l-3.0,7.25l-2.53,2.68l-1.14,3.76l-4.06,5.1l-0.87,3.94l0.02,3.48l-1.74,2.51l-1.72,11.22l1.74,3.64l0.32,5.99l0.63,0.51l1.28,0.06l0.35,2.57l0.86,0.95l4.37,1.8l0.76,2.08l-0.19,0.61l-3.0,2.22l-4.94,0.09l-1.75,0.69l-1.93,-0.4l-0.74,0.38l-0.94,7.26l-1.39,3.15l0.03,1.86l1.12,2.83l3.54,2.45l1.05,-0.33Z", + "UbonRatchathani" : "M792.59,582.33l-1.26,-1.28l-5.09,-0.51l-2.67,1.79l-2.47,-1.25l-2.26,0.36l-3.52,-1.39l-3.45,-0.02l-3.31,-2.23l-1.71,-0.49l2.09,-6.8l-0.29,-4.19l-0.28,-0.39l-1.11,1.17l-0.65,-0.09l-3.24,-2.46l-0.48,-1.96l-0.07,-1.41l1.42,-3.28l0.84,-6.97l2.1,0.35l1.72,-0.69l5.59,-0.32l1.09,-1.27l1.87,-1.1l0.29,-1.3l-0.63,-1.51l8.51,2.61l3.37,-0.07l1.39,-0.83l2.6,-3.5l0.05,-2.13l-1.99,-1.51l1.67,-1.09l2.27,1.16l4.28,5.65l1.28,0.97l1.61,0.37l2.45,-0.28l1.69,0.61l1.27,2.59l0.54,2.33l0.97,1.36l1.22,0.68l1.43,0.05l3.07,-0.71l1.88,3.14l1.49,0.83l1.64,-0.37l1.64,-1.45l1.47,-2.88l0.62,-3.31l-0.7,-5.38l0.44,-2.74l4.82,-13.83l2.68,-3.89l1.34,-3.47l-0.21,-6.69l1.41,-1.8l2.13,-1.65l0.61,-1.11l-0.53,-2.85l-2.0,-1.83l-0.49,-1.13l0.54,-4.53l6.04,-6.02l1.13,-4.03l0.41,-0.4l13.87,4.92l5.64,0.39l12.55,3.17l1.62,0.85l-0.34,1.14l-3.46,1.59l-2.59,2.89l-0.3,4.18l1.32,4.33l4.33,9.2l1.22,1.83l2.82,2.18l8.48,0.2l4.58,1.54l4.72,3.03l2.95,4.26l1.03,5.1l-1.07,5.58l-2.66,6.93l-0.65,7.12l-0.59,1.85l-1.65,1.61l-3.77,2.37l-4.99,1.58l-2.27,1.46l-1.12,2.63l0.63,2.31l1.89,1.31l2.42,0.46l4.02,-0.41l0.41,5.13l-6.36,4.56l-4.52,4.71l-1.73,3.92l-0.42,5.13l0.92,1.84l2.52,0.65l2.57,2.62l2.44,0.06l0.32,2.12l3.18,4.51l1.52,1.16l2.41,0.49l-0.62,0.9l-4.25,2.67l-1.19,2.27l1.71,3.73l-0.71,2.13l-2.81,0.46l-0.09,2.48l0.8,1.94l-2.44,1.12l-1.38,4.62l0.16,2.6l1.57,3.05l-1.02,8.41l1.56,7.39l-0.27,3.14l-1.27,2.88l-3.39,4.49l-3.31,3.2l-1.86,4.28l-5.08,1.43l-3.55,3.16l-1.12,-0.06l-2.0,-1.31l-1.37,-0.01l-2.83,3.82l-7.41,2.05l-1.66,-0.01l-3.2,1.69l-2.62,5.68l-3.26,5.4l-5.58,1.73l-2.16,-1.04l-1.84,-2.05l-3.37,-6.25l0.31,-7.32l-0.57,-1.49l-6.15,-1.55l0.11,-0.79l-2.24,-3.62l-1.13,-1.01l-2.94,0.07l-0.74,-0.38l1.59,-2.04l0.51,-1.54l-1.06,-4.42l-2.75,-3.19l-0.42,-1.22l1.86,-7.93l1.05,-1.82l1.39,-0.89l1.41,-0.06l2.19,1.33l0.93,-0.42l0.03,-0.76l-2.33,-5.41l-3.19,-1.94l-5.0,-10.05l-0.27,-1.65l1.61,-2.94l-1.89,-4.47l-2.74,-2.08l-2.55,-1.19l-4.46,-0.79l-3.08,-4.62l-0.51,-6.15l0.66,-2.7l-0.85,-5.41l0.07,-3.5l0.36,-0.54l1.71,0.78l1.34,-0.76l1.59,-2.11l0.23,-1.62l-0.37,-0.45l-2.99,-0.7l0.92,-0.47l0.1,-1.42l-1.44,-1.44l-2.09,-3.93l-1.01,-1.05l-1.8,0.02l-0.03,1.53Z", + "AmnatCharoen" : "M827.39,526.95l-4.91,14.08l-0.46,2.92l0.7,5.34l-0.6,3.12l-1.37,2.65l-1.41,1.21l-1.19,0.23l-1.0,-0.64l-1.16,-2.54l-0.83,-0.68l-1.22,-0.2l-2.28,0.81l-2.12,-0.57l-2.77,-6.28l-2.12,-0.77l-3.72,0.02l-1.06,-0.78l-4.32,-5.69l-1.56,-1.14l-1.52,-0.26l-2.17,1.51l0.2,1.1l1.77,1.07l-0.06,1.57l-2.42,3.21l-1.11,0.64l-2.89,0.04l-13.43,-4.54l-0.66,-0.73l-0.43,-2.66l-1.82,-0.43l-0.27,-5.81l-0.44,-1.62l-1.29,-1.98l0.37,-3.72l0.74,-1.37l0.59,-5.78l1.76,-2.59l-0.01,-3.55l0.81,-3.72l4.03,-5.05l1.14,-3.75l2.5,-2.62l3.03,-7.32l1.34,-1.82l4.22,-2.72l6.32,-1.63l10.01,-1.39l3.88,-1.05l0.96,-1.08l0.37,-2.65l2.22,-0.16l5.65,-2.27l2.91,-2.51l5.45,-3.64l2.44,-2.83l2.62,1.69l1.11,1.99l0.27,7.29l0.41,2.92l1.08,2.74l1.82,2.43l2.29,1.75l2.54,0.92l-1.34,4.23l-6.16,6.23l-0.57,4.96l0.65,1.48l1.92,1.71l0.43,2.42l-4.07,4.27l0.16,6.81l-1.26,3.28l-2.68,3.89Z", + "SiSaKet" : "M721.36,578.46l1.05,-0.65l2.45,-4.12l4.12,-2.26l0.7,-1.37l0.0,-1.23l-1.9,-4.59l-1.34,-0.65l-6.42,-0.22l0.47,-1.24l3.77,-4.78l2.26,-1.75l3.39,-5.12l4.94,-3.34l1.59,3.49l0.64,3.32l2.51,2.55l8.64,12.16l4.56,2.92l1.65,0.56l3.26,0.1l3.53,1.97l1.6,0.01l1.7,3.23l3.66,1.06l3.45,2.29l3.54,0.04l3.54,1.4l2.21,-0.37l2.62,1.27l2.66,-1.79l4.88,0.48l0.95,1.1l0.85,0.26l0.44,-0.39l-0.06,-1.44l0.67,0.07l2.91,4.77l1.33,1.21l0.07,0.63l-1.23,0.63l-0.06,0.67l1.15,0.86l2.34,0.37l-0.63,2.01l-0.85,0.78l-1.02,0.57l-1.94,-0.74l-0.74,1.16l-0.08,3.75l0.85,5.32l-0.66,2.64l0.55,6.45l2.45,4.22l0.94,0.8l4.59,0.86l4.94,2.98l1.75,4.01l-1.57,2.74l0.31,2.19l5.03,10.11l0.93,0.96l2.32,1.08l2.19,5.1l-3.11,-1.18l-2.68,1.33l-1.19,2.09l-1.89,8.23l0.58,1.62l2.68,3.07l0.93,3.24l-0.01,1.37l-1.84,2.25l-0.14,1.09l0.77,0.78l3.21,-0.12l0.93,0.81l1.99,3.79l-1.51,-0.27l-3.41,-1.92l-3.85,0.2l-4.57,-2.87l-1.99,-0.24l-1.78,0.84l-3.17,2.5l-1.36,0.28l-1.0,-2.25l-1.1,-0.68l-1.4,0.52l-1.57,2.13l-1.64,0.07l-2.75,-1.14l-1.94,0.09l-1.84,1.09l-3.37,4.5l-1.98,0.82l-5.52,-1.48l-1.26,0.36l-2.06,1.49l-0.85,0.02l-13.75,-2.28l-5.82,-2.36l-2.68,-0.25l-3.31,2.05l-1.73,0.49l-1.06,-0.39l-0.5,-0.81l-0.14,-1.66l-0.92,-0.03l-4.03,4.23l-1.13,-0.04l-2.21,-1.54l-3.95,1.07l-2.39,1.17l1.66,-9.91l-1.76,-10.04l1.77,-8.93l-0.02,-3.42l-5.85,-8.35l-0.05,-6.11l-0.92,-2.17l-1.0,-0.8l-3.07,-0.59l-3.68,-1.92l-1.15,-2.05l2.68,-6.9l3.18,-4.01l0.79,-2.17l1.79,-1.4l0.57,-2.45l1.31,-1.23l0.6,-2.21l-0.17,-2.6l-1.08,-1.38l-1.42,-7.21l-0.51,-1.1l-1.36,-1.0l-0.45,-1.31l0.6,-3.56l1.31,-3.63l-1.23,-2.97l1.55,-0.45l0.8,-1.32Z", + "Chaiyaphum" : "M477.07,424.0l4.0,3.04l5.14,-1.97l1.75,0.27l6.4,2.57l4.78,0.16l1.31,1.59l1.91,4.58l3.69,1.78l3.68,4.75l2.65,1.7l11.11,0.44l2.62,-0.58l3.89,1.69l1.97,2.09l3.21,1.15l1.48,1.11l2.46,0.5l2.86,-0.58l2.47,1.56l2.37,-0.6l0.38,-0.49l-0.09,-1.15l1.03,-0.0l1.0,3.06l3.72,2.46l0.04,0.73l-2.19,8.43l-1.44,3.25l-1.49,5.39l-3.26,5.07l-2.67,3.08l-2.26,4.36l-3.99,4.16l-2.8,2.09l-0.15,0.59l1.61,2.73l1.95,1.22l5.24,2.06l4.67,3.47l-0.95,0.91l-1.36,5.28l0.2,0.82l-2.41,4.48l-1.56,1.94l-0.35,1.7l0.56,3.56l-0.4,0.86l-2.51,0.52l-3.38,1.91l-3.91,3.51l-1.59,0.2l-1.12,-1.48l-0.34,0.77l-0.6,0.19l0.39,0.82l-0.69,0.36l-2.91,-0.07l-1.88,1.0l-0.29,2.31l-1.39,1.82l0.01,2.13l-1.32,0.65l-1.55,3.1l-3.34,2.78l-0.62,-1.06l-4.08,-3.01l-0.58,0.11l-3.92,7.27l-4.43,3.06l-0.83,1.5l-0.49,3.11l1.27,3.84l0.11,1.71l-4.76,2.55l-1.9,1.94l-2.04,5.65l-1.86,0.01l-2.92,-0.93l-3.86,0.97l-8.37,4.53l-4.25,1.83l-5.14,1.45l-4.27,4.03l-3.64,2.29l-15.0,4.22l-1.98,0.14l-0.83,-0.62l-3.03,-5.36l-7.07,-3.51l4.18,-4.66l3.38,-7.57l0.15,-9.68l-0.94,-6.29l1.23,-8.61l2.06,-7.06l-1.06,-2.07l-3.28,-0.66l-2.34,-2.1l-0.47,-1.34l-0.31,-10.84l3.71,-3.87l2.55,-7.98l-0.83,-1.39l-3.78,-1.22l-1.43,-3.81l-0.55,-6.62l2.35,-11.22l-0.18,-2.72l2.37,-3.74l-0.21,-1.15l-1.69,-1.67l1.48,-2.39l1.8,-8.38l2.5,-2.85l0.04,-2.45l4.31,-3.96l2.37,-3.71l0.48,-1.53l-0.39,-2.97l4.3,-2.82l0.88,-1.06l-0.12,-1.11l-1.33,-1.22l-0.23,-1.4l0.28,-3.5l1.35,-0.88l0.63,-1.61l-0.91,-2.24l0.09,-2.04l1.31,-0.52l2.44,1.09l1.04,-0.04l2.14,-2.12l2.35,-1.44l1.87,1.72l1.26,0.54l3.5,-0.53l3.28,0.52l2.22,2.29l1.5,0.9l2.79,-1.61Z", + "BuriRam" : "M552.59,626.51l3.66,1.55l1.36,2.02l1.07,0.78l2.99,0.24l4.28,-1.04l0.77,-0.9l0.3,-1.58l-2.43,-4.45l-0.63,-2.58l1.15,-4.37l-3.94,-3.03l4.84,1.13l5.39,2.04l5.68,-0.24l3.89,-1.27l5.26,-3.76l1.74,-4.76l1.5,-2.2l-0.39,-2.94l7.86,-8.68l6.87,-3.02l2.4,0.73l2.96,-0.72l1.89,-1.58l0.22,-1.1l-0.93,-1.66l-0.18,-4.51l0.5,-3.39l-0.52,-1.98l0.05,-2.55l0.33,-0.87l2.09,-0.99l0.44,-1.28l-1.29,-1.23l-3.38,-0.77l-0.52,-1.1l2.26,-4.45l1.97,0.85l2.6,-2.28l0.21,-0.89l-0.67,-1.39l-1.18,-1.48l-1.06,-0.54l-3.11,0.13l-0.71,-1.2l-1.12,-0.7l-0.65,-1.49l-2.54,-1.06l-3.18,-0.1l-2.61,0.76l-1.67,-0.44l-1.79,0.25l-2.1,-2.09l-1.61,-2.68l-0.74,-8.3l1.27,0.96l1.88,0.37l5.33,-1.88l1.16,-1.93l1.11,-3.55l0.36,-7.64l0.81,-1.64l1.34,-0.92l3.2,-1.04l2.21,2.61l2.07,1.27l2.22,2.88l0.22,2.59l-3.32,2.47l-0.17,1.45l5.12,5.59l2.38,1.59l0.81,3.04l3.63,2.93l0.14,1.77l-1.0,0.93l-0.06,1.46l0.86,1.14l2.94,2.08l-0.59,2.99l-1.01,1.59l0.24,1.26l1.95,1.79l1.39,-0.37l1.14,0.45l0.4,-0.76l2.18,5.84l0.47,0.28l2.33,-0.5l2.05,2.78l1.9,0.0l0.54,1.36l1.92,1.02l0.48,1.16l0.62,0.16l1.26,-1.02l2.36,1.07l1.34,-0.35l1.41,-1.67l5.26,-2.46l2.59,1.29l1.39,-0.55l0.33,0.53l-0.6,1.1l1.29,1.03l2.16,-0.23l1.2,-2.09l2.38,0.99l1.53,2.01l1.64,0.5l-0.11,1.99l-1.78,4.19l-1.99,1.37l-1.92,5.86l0.52,8.72l1.09,2.79l-0.77,2.62l1.46,2.9l-0.24,0.69l-1.94,1.39l-0.63,1.27l0.35,7.6l-2.59,2.55l-2.47,4.65l-8.83,6.86l-2.85,3.88l-0.32,1.41l0.31,2.4l-1.58,6.45l-2.1,4.08l-0.64,2.89l-1.73,2.03l-0.23,7.25l0.73,3.72l2.11,5.49l-1.53,4.5l0.33,2.25l-0.6,2.06l0.23,2.82l-4.5,1.38l-6.58,0.99l-5.84,2.67l-8.72,7.44l-1.78,1.04l-5.95,2.09l-1.68,1.71l-0.62,2.25l-3.81,1.04l-6.12,-1.13l-2.79,0.78l-3.05,1.6l-5.52,1.26l-6.51,-0.4l-2.6,-1.82l-0.69,0.13l-1.25,1.6l-1.54,-1.17l-0.86,-6.6l2.82,-5.62l0.56,-2.76l-1.76,-1.43l-0.86,-5.67l-1.87,-2.37l0.55,-3.91l-1.01,-3.29l-1.46,-2.3l-4.77,-3.85l-3.01,-7.35l-0.16,-1.4l2.43,-6.41l0.22,-2.68l-2.93,-7.03l0.02,-3.96l-1.98,-2.51l-2.26,-7.62Z", + "Pattani" : "M473.49,1533.62l-3.98,-0.32l-1.2,-1.88l-0.18,-1.78l-0.55,-0.84l-2.24,-1.18l-1.52,0.49l-1.44,-0.39l-2.91,0.79l-1.1,1.27l0.15,1.41l2.56,1.92l0.15,0.65l-0.62,1.94l-2.3,0.97l-1.49,0.23l-1.24,-0.67l-2.91,-4.4l-1.26,-0.67l-1.56,0.34l-4.17,2.52l-4.03,-0.2l-5.5,1.06l-3.75,1.32l-1.17,-1.03l-2.11,-3.67l0.3,-2.85l-0.77,-3.13l-0.04,-2.54l-0.65,-0.51l-1.68,1.15l-2.51,4.46l-2.9,2.42l-2.73,0.79l-5.21,-0.57l-3.9,-2.9l-6.19,-2.76l-1.09,-5.99l-1.48,-2.53l0.28,-6.93l2.77,-5.06l0.12,-1.12l13.12,-0.45l3.93,-0.78l4.91,-2.64l1.92,-0.3l2.58,2.14l4.3,-0.23l0.52,-2.73l-3.26,-2.32l-6.31,-2.61l2.49,-1.28l2.68,1.17l2.86,2.29l4.3,1.66l3.54,2.03l7.45,1.77l7.46,3.94l17.6,28.52Z", + "NakhonRatchasima" : "M527.7,525.76l0.58,0.54l2.14,-0.31l3.98,-3.56l4.78,-2.38l0.66,0.08l1.79,2.71l2.19,1.84l0.06,2.94l0.46,0.65l2.97,1.64l2.75,2.52l2.11,-0.31l2.09,-1.14l4.97,-0.88l9.52,1.28l1.86,-1.4l5.68,0.94l3.16,-1.07l0.62,2.19l1.94,2.85l1.14,0.69l3.29,0.65l2.88,2.23l0.97,10.11l3.31,4.18l0.87,0.48l1.89,-0.24l1.72,0.44l2.72,-0.77l2.84,0.08l2.32,0.97l0.42,1.24l1.21,0.81l0.91,1.35l2.74,-0.16l1.32,0.48l1.56,2.44l-2.24,2.18l-1.51,-0.89l-0.85,0.28l-2.45,4.91l0.91,1.88l3.49,0.83l0.81,0.65l-0.17,0.5l-2.12,1.02l-0.58,1.39l-0.05,2.7l0.52,1.91l-0.5,3.33l0.18,4.61l0.94,1.96l-0.76,1.03l-3.51,1.21l-2.67,-0.68l-7.14,3.17l-8.06,8.91l0.33,3.09l-1.43,2.03l-1.72,4.72l-4.91,3.46l-3.64,1.2l-5.52,0.24l-9.21,-3.18l-1.69,0.27l-0.18,0.9l0.52,0.69l3.45,2.25l-1.13,3.31l0.0,1.58l0.64,2.11l2.29,3.91l0.08,0.78l-0.75,1.27l-3.85,0.89l-2.71,-0.21l-2.23,-2.71l-2.75,-0.96l-1.55,-1.26l-0.7,0.28l2.43,9.01l1.98,2.51l-0.07,3.75l0.96,3.04l1.97,3.99l-0.18,2.31l-2.45,6.48l0.18,1.81l1.84,5.23l1.3,2.38l4.86,3.95l1.28,2.06l0.93,2.98l-0.51,4.13l1.9,2.43l0.87,5.69l0.56,0.83l1.14,0.5l-0.52,2.21l-2.88,5.85l0.85,6.71l-2.62,2.07l-3.2,1.05l-0.3,1.92l1.66,0.88l-1.18,0.52l-2.18,0.17l-1.12,-0.66l-0.45,-1.13l0.06,-2.95l-0.84,-1.27l-4.16,0.09l-2.99,-1.62l-3.11,1.06l-4.51,-1.13l-4.73,1.18l-1.44,1.77l-0.96,0.24l-2.24,-1.3l-4.53,-0.25l-0.65,-0.87l-0.25,-1.8l-2.85,-2.22l-2.74,1.16l-0.64,1.53l0.21,2.01l-0.75,0.68l-2.43,-0.26l-5.53,-2.06l-13.25,-10.45l-1.53,-3.55l3.73,-5.8l0.39,-1.4l-0.51,-1.72l-2.1,-1.38l-1.09,-0.1l-2.14,1.81l-0.78,0.12l-3.18,-3.48l-1.08,-0.14l-2.62,3.22l-3.7,0.81l-3.55,-0.2l-1.69,0.92l-2.13,0.38l-0.65,0.76l-0.07,2.13l-0.68,0.45l-4.19,-4.55l-4.65,-3.56l-1.04,-1.53l-1.85,-1.18l-0.89,-1.21l-1.34,-0.68l-3.1,-0.34l-5.49,0.83l-2.52,-0.75l-2.53,-2.53l-1.33,-0.5l-1.97,0.78l-2.99,3.13l-2.97,0.12l-9.27,-5.61l-1.47,-1.76l-3.07,-1.27l-1.16,0.44l-1.35,2.57l-1.63,-0.41l-2.25,-2.33l-1.35,-2.23l-2.25,-1.96l2.18,-4.48l-1.5,-18.74l2.14,0.53l1.69,1.14l5.21,1.06l0.84,-1.22l1.31,-0.4l1.33,-1.34l2.4,-1.26l1.75,-4.27l3.13,-1.37l1.32,-1.22l5.92,-3.27l0.86,-0.83l0.37,-1.24l-0.19,-4.41l-5.11,-10.4l-1.06,-3.64l-1.12,-1.71l-1.01,-1.06l-4.4,-0.72l-2.9,-1.87l-3.05,-0.04l-0.17,-16.5l2.12,-3.92l0.25,-2.43l6.85,3.39l3.48,5.77l0.75,0.36l2.2,-0.15l15.22,-4.28l3.8,-2.4l4.13,-3.93l5.07,-1.42l4.3,-1.85l8.32,-4.51l3.62,-0.92l2.72,0.92l2.1,0.09l0.79,-0.78l1.66,-5.01l1.08,-1.32l5.83,-3.57l0.13,-1.44l-1.44,-4.53l0.44,-2.74l0.65,-1.21l4.52,-3.16l3.73,-6.95l4.93,4.08l3.8,-3.13l1.53,-3.06l1.47,-0.84l0.06,-2.28l1.35,-1.72l0.21,-2.11l1.32,-0.75l3.1,0.03l1.23,-0.65l0.09,-0.5Z" + + /*End List of SVG path forbuilding the map*/ + + + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/ukraine/ukraine.js b/lib/mapael-maps/ukraine/ukraine.js new file mode 100644 index 000000000..eb2a621a9 --- /dev/null +++ b/lib/mapael-maps/ukraine/ukraine.js @@ -0,0 +1,59 @@ +/** + * + * Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) + * Requires jQuery and raphael.js + * + * Map of Ukraine with regions + * + * @author Ievgen Sentiabov https://github.com/joni-jones + */ +(function ($) { + $.extend(true, $.fn.mapael, + { + maps: { + ukraine: { + width: 570, + height: 390, + getCoords : function(lat, lon) { + var ax = 29.485884032047; + var bx = -626; + var ay = -44.3404565721; + var by = 2349.2960336992; + var x = (lon * ax) + bx; + var y = (lat * ay) + by; + return {x: x, y: y}; + }, + elems: { + "Zhytomyr": "m 233.456,60.381 c -0.173,-0.303 -0.692,-0.52 -1.429,-0.736 -0.779,-0.173 -1.342,-0.216 -1.775,-0.086 -0.736,0.26 -1.169,0.606 -1.255,1.083 0.043,0.346 0.043,0.606 -0.043,0.736 -0.13,0.216 -0.433,0.52 -0.823,0.823 l -0.433,0.26 c -0.39,-0.13 -0.693,-0.217 -0.909,-0.217 -0.087,-0.043 -0.303,-0.043 -0.606,-0.043 -0.52,0.043 -1.125,0.216 -1.818,0.649 -0.346,0.13 -0.649,0.26 -0.823,0.346 -0.52,0.303 -1.169,1.126 -1.991,2.425 -0.39,0.563 -0.52,1.125 -0.433,1.688 0.13,0.26 0.173,0.476 0.173,0.606 l -0.13,1.386 c -0.086,0.13 -0.216,0.216 -0.39,0.26 -0.39,0.043 -0.606,-0.216 -0.693,-0.779 -0.043,-0.649 -0.173,-0.996 -0.259,-1.039 -0.087,0 -0.26,0.13 -0.477,0.346 -0.216,0.173 -0.39,0.26 -0.563,0.26 -0.476,-0.086 -0.822,-0.779 -1.082,-2.122 -0.043,-0.13 -0.087,-0.346 -0.217,-0.606 0,-0.303 -0.086,-0.779 -0.26,-1.429 0,-0.26 0,-0.693 0.043,-1.256 -0.086,-0.26 -0.26,-0.39 -0.563,-0.39 -0.606,0.173 -1.039,0.26 -1.342,0.26 -0.563,-0.303 -0.996,-0.52 -1.255,-0.563 -0.346,-0.086 -0.606,-0.173 -0.779,-0.216 -0.693,-0.043 -1.516,0.303 -2.555,1.083 -0.996,0.736 -1.559,1.125 -1.602,1.169 l -0.13,-0.086 c -0.13,-0.433 -0.303,-1.039 -0.476,-1.862 -0.043,-0.087 -0.173,-0.26 -0.39,-0.433 -0.173,-0.173 -0.433,-0.433 -0.779,-0.736 -0.173,-0.13 -0.563,-0.39 -1.126,-0.779 -0.13,-0.173 -0.086,-0.736 0.13,-1.689 -0.043,-0.13 -0.13,-0.216 -0.216,-0.216 -1.039,0 -1.818,0.346 -2.381,1.126 -0.043,0.086 -0.26,0.476 -0.606,1.125 -0.39,0.823 -0.606,1.255 -0.692,1.342 -0.13,0.173 -0.433,0.346 -0.866,0.52 -0.303,0.13 -0.953,0.173 -1.949,0.173 -0.52,0.087 -0.909,0.087 -1.169,0.087 -0.346,-0.087 -0.563,-0.173 -0.736,-0.26 -0.216,-0.13 -0.433,-0.217 -0.563,-0.303 -0.13,-0.043 -0.649,-0.52 -1.602,-1.429 -0.086,-0.13 -0.26,-0.303 -0.52,-0.563 -0.303,-0.216 -0.52,-0.26 -0.693,-0.13 -0.173,0.087 -0.303,0.13 -0.39,0.217 -0.779,0.52 -1.125,1.082 -1.082,1.688 0.086,0.346 0.129,0.606 0.173,0.779 0.173,0.563 0.173,1.039 0.043,1.429 -0.043,0.043 -0.13,0.173 -0.26,0.346 -0.26,0.26 -0.52,0.606 -0.736,0.996 -0.346,0.39 -0.606,0.649 -0.692,0.823 -0.087,0.303 -0.173,0.52 -0.26,0.649 l -0.173,0.043 c -0.433,-0.303 -0.693,-0.52 -0.866,-0.606 -0.173,-0.13 -0.52,-0.346 -1.083,-0.649 l 0.086,-0.26 c -0.173,0.26 -0.433,0.433 -0.779,0.476 -0.433,0.043 -0.693,0.087 -0.693,0.087 -0.043,0 -0.13,0.043 -0.26,0.13 l -0.476,0.26 c -0.303,0.043 -0.52,0.13 -0.693,0.26 -0.086,0.13 -0.173,0.39 -0.303,0.909 -0.173,0.476 -0.216,0.823 -0.216,0.953 0.39,0.346 0.649,0.606 0.823,0.779 0.216,0.216 0.303,0.563 0.216,1.039 l -0.13,0.043 c -0.216,-0.043 -0.52,-0.26 -0.996,-0.606 -0.433,-0.346 -0.692,-0.606 -0.822,-0.779 0,-0.216 -0.086,-0.433 -0.26,-0.693 -0.217,-0.26 -0.39,-0.39 -0.563,-0.39 -0.13,0.043 -0.216,0.13 -0.216,0.216 l -0.13,0.347 c 0,0.303 -0.043,0.563 -0.043,0.736 l -0.173,0.736 c -0.173,0.476 -0.26,0.823 -0.26,1.039 0.043,0.173 0.173,0.303 0.433,0.52 0.26,0.173 0.39,0.303 0.477,0.476 0.043,0.13 0,0.347 -0.087,0.649 -0.086,0.13 -0.173,0.303 -0.303,0.477 -0.346,0.39 -0.692,0.606 -1.125,0.693 -0.649,0.086 -1.126,0.173 -1.299,0.259 l -0.087,0.13 c 0.043,0.13 0.303,0.65 0.779,1.473 0.39,0.692 0.477,1.342 0.347,1.861 -0.13,0.39 -0.347,0.693 -0.693,0.866 -0.476,0.26 -0.736,0.433 -0.866,0.563 -0.087,0.173 -0.173,0.39 -0.217,0.693 0,0.303 -0.043,0.476 -0.086,0.563 -0.476,0.433 -0.779,0.779 -0.909,1.125 -0.13,0.173 -0.173,0.563 -0.173,1.169 0,0.52 -0.043,0.823 -0.13,0.91 -0.606,0.606 -0.909,0.952 -0.953,1.039 -0.086,0.606 -0.13,0.953 -0.26,1.039 -0.476,0.303 -0.823,0.476 -1.039,0.563 -0.736,0.043 -1.212,0.173 -1.472,0.346 -0.13,0.13 -0.216,0.346 -0.303,0.693 -0.043,0.346 -0.217,0.649 -0.52,0.866 0.346,0.477 0.563,0.866 0.692,1.169 -0.086,0.39 -0.086,0.693 0,0.866 0.347,0.26 0.563,0.433 0.65,0.606 0.043,0.433 -0.173,0.606 -0.736,0.563 l -0.086,0.13 c 0,0.086 0.043,0.173 0.13,0.26 0.52,0.606 0.779,1.039 0.736,1.255 -0.043,0.477 -0.173,1.126 -0.39,2.079 -0.173,0.563 -0.217,0.996 -0.173,1.299 0,0.433 0.303,1.083 0.866,1.905 0.13,0.13 0.216,0.26 0.303,0.303 0.26,0.433 0.39,0.823 0.346,1.169 -0.043,0.303 -0.086,0.563 -0.173,0.736 -0.086,0.303 -0.39,0.909 -0.953,1.862 -0.303,0.346 -0.563,0.649 -0.736,0.822 0,0.303 -0.043,0.52 -0.086,0.693 -0.087,0.13 -0.26,0.476 -0.563,0.953 -0.043,0.086 -0.087,0.173 -0.043,0.346 0.087,0.173 0.303,0.347 0.693,0.563 0.39,0.173 0.649,0.39 0.779,0.563 0,0.043 0,0.13 0,0.26 -0.043,0.216 -0.216,0.52 -0.52,0.822 -0.476,0.477 -0.736,0.736 -0.823,0.779 v 0.043 c 0.347,0.087 0.563,0.217 0.649,0.39 0,0.217 0.043,0.39 0.087,0.52 0.129,0.13 0.39,0.217 0.866,0.26 0.087,0.52 0.216,0.91 0.433,1.169 0.606,0.173 1.083,0.303 1.385,0.39 l 0.087,0.129 c -0.173,0.13 -0.52,0.347 -1.083,0.606 l -0.086,0.13 c -0.433,0.346 -0.693,0.866 -0.866,1.472 l -0.26,0.953 c -0.216,0.779 -0.13,1.255 0.346,1.342 0.26,0 0.477,0.043 0.649,0.087 0.303,0 0.52,0.086 0.693,0.216 0.087,0.086 0.217,0.347 0.26,0.736 0.086,0.346 0.217,0.606 0.433,0.736 0.563,0.26 0.953,0.433 1.169,0.563 0.13,0.086 0.303,0.216 0.606,0.476 l 0.606,0.476 c 0.216,0.043 0.39,0.173 0.52,0.303 0,0.13 -0.13,0.26 -0.39,0.476 l -0.043,0.173 0.13,0.26 0.13,0.087 c 0.087,0 0.173,-0.043 0.347,-0.13 0.13,-0.087 0.303,-0.087 0.476,-0.043 0.043,0.043 0.086,0.216 0.086,0.433 0.043,0.216 0.087,0.39 0.173,0.433 0,0 0.216,0.043 0.606,0.087 0.303,0.043 0.563,0.216 0.736,0.476 -0.087,0.39 -0.087,0.693 -0.087,0.909 0.043,0.043 0.39,0.087 0.953,0.173 0.606,0.043 0.91,0.086 1.039,0.043 0,-0.043 0.13,-0.347 0.39,-0.866 l 0.217,-0.173 c 0.086,-0.086 0.173,-0.26 0.26,-0.606 l 0.13,-0.13 c 0.26,0 0.433,0.043 0.563,0.086 0.26,0.13 0.26,0.78 0.043,1.992 -0.043,0.347 0.043,0.606 0.217,0.779 0.086,0.13 0.39,0.39 0.779,0.823 0.346,0.39 0.476,0.736 0.39,1.039 -0.043,0.086 -0.086,0.173 -0.13,0.217 l -0.563,0.216 c -0.086,0.13 -0.13,0.303 -0.086,0.52 0.043,0.086 0.303,0.26 0.693,0.52 0.043,0.13 0,0.26 -0.087,0.346 -0.216,0.043 -0.433,0.303 -0.606,0.78 -0.217,0.433 -0.217,0.822 -0.043,1.039 0.043,0.043 0.303,0.13 0.736,0.26 0.303,0.086 0.476,0.346 0.519,0.736 -0.043,0.26 -0.086,0.563 -0.173,1.039 l -0.086,0.087 c -0.477,0 -0.78,0.173 -0.996,0.476 -0.216,0.303 -0.649,0.39 -1.255,0.346 -0.563,-0.086 -0.953,-0.173 -1.212,-0.216 0,0.303 0.216,0.736 0.606,1.299 0.39,0.563 0.606,0.996 0.606,1.386 -0.13,0.086 -0.477,0.13 -1.039,0.13 l -0.087,0.13 c -0.086,0.996 -0.086,1.559 0,1.645 l 0.216,0.217 c 0.13,0.043 0.477,0.086 1.039,0.043 0.477,0.087 0.563,0.477 0.303,1.126 0,0.26 0.347,0.779 1.039,1.559 0.173,0.26 0.303,0.52 0.433,0.909 0.043,0.303 0.216,0.606 0.39,0.866 l 0.087,0.043 c 0.173,0.173 0.39,0.26 0.563,0.216 0.26,0 0.433,0 0.477,0.043 l 0.52,0.13 c 1.125,0.216 1.732,0.346 1.862,0.39 0.303,0.13 0.822,0.347 1.515,0.649 0.606,0.087 0.953,0.173 1.083,0.217 0.043,0 0.043,0 0.043,0 0.086,0.086 0.216,0.13 0.346,0.086 1.688,-0.346 2.728,-0.477 3.031,-0.39 0.216,0.043 0.563,0.173 0.996,0.346 0.26,0.087 0.736,0.043 1.342,-0.13 0.303,-0.13 0.779,-0.26 1.342,-0.476 0.779,-0.173 1.256,-0.26 1.429,-0.26 l 0.563,0.13 c 0.173,0 0.649,-0.043 1.429,-0.13 0.433,-0.043 0.693,-0.13 0.823,-0.13 0.606,-0.26 0.996,-0.347 1.039,-0.347 0.087,0.043 0.477,0.26 1.212,0.606 0.476,0.26 0.909,0.39 1.299,0.303 0.347,-0.043 0.693,-0.346 0.996,-0.866 0.303,-0.563 0.519,-0.866 0.606,-0.909 0.303,-0.086 0.866,0.043 1.602,0.476 0.086,0 0.39,-0.13 0.909,-0.346 0.346,-0.216 0.736,-0.173 1.169,0.216 0.303,0.26 0.52,0.52 0.563,0.736 l 0.779,-0.217 c 0.216,-0.086 0.563,-0.26 1.039,-0.52 0.26,0 0.779,0.13 1.559,0.347 0.736,0.173 1.169,0.086 1.385,-0.217 0.087,-0.173 0.173,-0.476 0.303,-0.822 0.087,-0.173 0.217,-0.433 0.433,-0.823 0.13,-0.173 0.433,-0.303 0.823,-0.476 0.433,-0.13 0.736,-0.303 0.909,-0.477 0.173,-0.174 0.26,-0.563 0.39,-1.125 0.043,0 0.433,0.043 1.169,0.13 0.779,0.13 1.256,0.173 1.385,0.216 l 0.087,0.13 c 0,0.043 -0.13,0.303 -0.26,0.736 0.52,0.086 0.953,0.259 1.212,0.52 0,0.086 -0.087,0.39 -0.347,0.952 0,0.13 0.043,0.347 0.173,0.693 0.043,0.13 0,0.346 -0.043,0.606 0.259,0.823 0.519,1.386 0.909,1.689 0.217,0.216 0.606,0.433 1.169,0.692 0.043,0.087 -0.26,0.52 -0.953,1.299 -0.736,0.822 -0.996,1.299 -0.909,1.559 0.086,0.086 0.346,0.26 0.866,0.476 l 0.086,0.13 c -0.129,0.303 0,0.649 0.217,0.996 0.26,0.39 0.39,0.606 0.346,0.692 -0.086,0.173 -0.303,0.477 -0.606,0.866 0.13,0.26 0.346,0.433 0.736,0.606 0.346,0.13 0.693,0.173 0.996,0.087 0.086,0 0.26,-0.087 0.563,-0.217 0.347,0.087 0.866,0.173 1.516,0.303 0.173,0.043 0.433,0.086 0.779,0.173 l 1.169,-0.13 c 0.26,0 0.649,-0.043 1.083,-0.043 0.216,0 0.52,-0.043 0.866,-0.086 0.173,0.043 0.477,0.086 0.953,0.173 0,0 0,-0.26 0.043,-0.692 0,-0.303 0.086,-0.52 0.216,-0.693 0.606,-0.217 0.996,-0.347 1.169,-0.39 0.086,0 0.303,0.043 0.65,0.216 0.303,0.13 0.563,0.13 0.736,0.043 0.39,-0.173 0.693,-0.433 0.909,-0.779 0.303,-0.39 0.52,-0.649 0.693,-0.779 0.433,-0.087 0.693,-0.087 0.822,0.086 -0.129,-0.217 -0.086,-0.477 0.043,-0.736 0.173,-0.13 0.433,-0.26 0.866,-0.346 0.26,-0.823 0.26,-1.342 0.043,-1.559 -0.346,0.086 -0.649,0.13 -0.866,0.13 -0.13,0.043 -0.477,0.043 -1.039,0 0.173,-0.173 0.26,-0.347 0.346,-0.476 0.52,-0.693 0.779,-1.386 0.736,-2.035 -0.043,-0.13 -0.087,-0.346 -0.26,-0.606 -0.217,-0.26 -0.26,-0.52 -0.26,-0.78 0.13,-0.043 0.347,-0.173 0.606,-0.39 0.13,0 0.39,0 0.693,0.087 l 0.216,-0.217 c 0.043,-0.26 0.086,-0.433 0.173,-0.52 0.086,0 0.216,0 0.389,0.087 0.13,0.043 0.303,0 0.433,-0.043 0.173,-0.173 0.563,-0.433 1.04,-0.823 0.303,-0.173 0.692,-0.346 1.255,-0.606 0.043,-0.043 0.173,-0.173 0.39,-0.39 l 0.606,-0.217 0.087,-0.043 0.13,-0.13 c 0.043,-0.043 0.173,-0.173 0.433,-0.433 0.043,0 0.087,-0.086 0.173,-0.216 0,-0.26 0.043,-0.52 0.13,-0.649 0.13,-0.13 0.52,-0.347 1.212,-0.649 0.649,-0.347 0.953,-0.78 0.996,-1.299 -1.473,-2.165 -2.122,-3.42 -2.035,-3.723 0.043,-0.043 0.26,-0.173 0.476,-0.347 -0.346,-1.385 -0.52,-2.208 -0.563,-2.468 0,-0.216 0.13,-0.39 0.39,-0.476 0.086,0.043 0.39,0 0.909,-0.173 0.52,-0.217 0.779,-0.347 0.909,-0.476 0.043,-0.347 0.086,-0.52 0.086,-0.563 -0.346,-0.043 -0.606,-0.13 -0.693,-0.217 -0.086,-0.216 -0.086,-0.433 0.043,-0.649 0.173,-0.216 0.217,-0.346 0.217,-0.433 l -0.13,-0.26 c -0.52,-0.216 -0.822,-0.476 -0.952,-0.779 l -0.043,-0.13 c 0.043,-0.476 0.043,-0.866 0.043,-1.125 0,-0.216 0,-0.563 -0.043,-0.996 -0.043,-0.259 -0.043,-0.606 0,-1.082 0.043,-0.173 0.173,-0.347 0.303,-0.52 v -0.13 l -0.26,-0.173 c -0.13,0 -0.347,-0.043 -0.52,-0.173 -0.476,-1.083 -0.822,-1.688 -1.039,-1.862 -0.736,0.043 -1.169,0.043 -1.255,0 l -0.043,-0.13 c -0.043,-0.26 0,-0.692 0.217,-1.299 -0.303,-0.13 -0.477,-0.216 -0.606,-0.346 -0.043,-0.26 -0.043,-0.693 0.043,-1.256 -0.043,-0.216 -0.216,-0.563 -0.563,-0.996 -0.346,-0.477 -0.649,-0.693 -0.823,-0.693 -0.606,0 -0.996,0 -1.255,0.043 l -0.303,0.13 c -0.216,0.13 -0.433,0.216 -0.563,0.26 l -0.736,0.216 c -0.13,0.043 -0.303,0 -0.476,-0.13 -0.173,-0.39 -0.13,-0.649 0.13,-0.736 l 0.866,-0.087 c 0.043,0 0.173,-0.173 0.346,-0.476 v -0.13 l -0.779,-0.346 -0.087,-0.13 0.087,-0.303 0.129,-0.13 c 0.477,0.173 0.736,0.216 0.91,0.216 0.129,-0.13 0.26,-0.346 0.433,-0.693 0.217,-0.606 0.26,-1.082 0.043,-1.385 l -0.693,-0.26 c -0.086,-0.173 -0.086,-0.39 0,-0.693 0.13,-0.13 0.346,-0.173 0.693,-0.086 0.13,-0.173 0.346,-0.736 0.649,-1.732 -0.043,-0.086 -0.26,-0.26 -0.693,-0.52 -0.303,-0.26 -0.476,-0.433 -0.476,-0.563 0.13,-0.26 0.303,-0.649 0.52,-1.212 0.216,-0.303 0.563,-0.779 0.996,-1.385 0.303,-0.563 0.433,-0.866 0.477,-0.866 0.693,-0.347 1.125,-0.563 1.299,-0.736 0.216,-0.26 0.216,-0.693 0.043,-1.255 -0.217,-0.693 -0.303,-1.083 -0.303,-1.212 -0.086,-0.26 -0.173,-0.606 -0.217,-1.083 -0.216,-0.476 -0.952,-0.563 -2.251,-0.346 h -0.173 l -0.086,-0.13 c 0.086,-0.736 0.216,-1.689 0.563,-2.858 l 0.087,-0.563 c 0.043,-0.217 0.043,-0.39 0,-0.477 -0.39,-0.346 -0.649,-0.649 -0.78,-0.866 -0.129,-0.13 -0.519,-0.693 -1.168,-1.732 -0.347,-0.39 -0.563,-0.736 -0.693,-0.953 -0.087,-0.086 -0.217,-0.13 -0.39,-0.086 -0.217,0.043 -0.39,0.043 -0.433,0 -0.043,-0.217 -0.086,-0.606 -0.086,-1.212 l 0.086,-0.13 c 0.476,-0.043 0.953,-0.043 1.299,0.043 0.086,0 0.217,0.13 0.433,0.303 0.216,0.217 0.346,0.26 0.52,0.26 0.043,-0.086 0,-0.563 -0.13,-1.472 -0.087,-0.563 -0.043,-1.04 0.043,-1.299 0.129,-0.26 0.39,-0.606 0.736,-0.996 0.043,-0.13 0.043,-0.303 0,-0.52 -0.13,-0.52 -0.736,-0.909 -1.732,-1.169 l -0.086,-0.087 c -0.043,-0.303 -0.087,-0.52 -0.173,-0.606 -0.086,-0.346 -0.433,-0.693 -0.953,-1.126 -0.476,-0.39 -0.909,-0.606 -1.299,-0.692 l -0.173,0.086 c -0.477,0.823 -0.78,1.255 -0.823,1.255 -0.303,-0.563 -0.477,-1.299 -0.606,-2.294 0,-0.52 -0.086,-0.909 -0.086,-1.169 -0.043,-0.217 -0.13,-0.563 -0.303,-1.039 l -0.043,-0.043 c -0.043,-0.173 -0.13,-0.52 -0.303,-0.996 l 0.043,-0.13 c 0.563,0.086 1.125,-0.087 1.688,-0.52 0.822,-0.563 1.385,-1.169 1.688,-1.819 0.173,-0.346 0.26,-0.606 0.26,-0.779 0,-0.216 0,-0.563 -0.043,-0.953 0.13,-0.822 0.043,-1.342 -0.086,-1.472 h -0.13 c -0.173,0.216 -0.26,0.303 -0.39,0.303 l -0.13,-0.043 c -0.173,-0.26 -0.303,-0.477 -0.39,-0.606 -0.173,0.086 -0.26,0.13 -0.39,0.13 -0.043,0 -0.173,-0.043 -0.303,-0.173 -0.433,-0.26 -0.736,-0.693 -0.866,-1.342 -0.216,-0.866 -0.39,-1.386 -0.519,-1.602 -0.087,-0.173 -0.303,-0.347 -0.563,-0.477 -0.347,-0.173 -0.563,-0.303 -0.693,-0.39 -0.043,-0.043 -0.086,-0.086 -0.086,-0.173 -0.087,-0.173 0.043,-0.693 0.39,-1.472 0.086,-0.606 0,-1.212 -0.217,-1.818 -0.043,-0.087 -0.173,-0.303 -0.433,-0.606 l -0.649,-0.606 c -0.087,-0.086 -0.173,-0.303 -0.26,-0.649 -0.262,-0.95 -0.393,-1.47 -0.479,-1.556", + "Zaporizhia": "m 408.202,215.47 c -0.433,0.13 -0.736,0.173 -0.866,0.216 -0.39,0.173 -0.433,0.563 -0.13,1.126 0.13,0.346 0.39,0.692 0.693,0.952 0.26,0.303 0.563,0.693 0.952,1.256 0.13,0.173 0.26,0.39 0.39,0.606 0.259,0.433 0.39,0.952 0.476,1.515 0.043,0.606 -0.043,1.039 -0.217,1.299 -0.346,0.52 -0.433,1.212 -0.259,2.251 0.13,0.649 0,1.169 -0.39,1.646 -0.043,0.043 -0.043,0.086 -0.043,0.086 l -0.39,1.212 c 0.086,0.043 0.26,0.086 0.433,0.13 0,0 0.043,0 0.043,0.043 0.217,0.953 0.52,1.646 0.823,1.992 0.173,0.217 0.39,0.476 0.736,0.823 0.173,0.26 0.303,0.736 0.433,1.429 0.043,0.216 0.26,0.433 0.563,0.823 0.086,0.173 0.086,0.433 0,0.779 -0.086,0.346 -0.043,0.649 0.086,0.996 0.13,0.26 0.477,0.823 1.126,1.646 0.13,0.173 0.39,0.476 0.736,0.866 0.13,0.216 0.173,0.563 0.13,1.039 0,0.433 0.043,0.779 0.13,0.996 0.087,0.216 0.347,0.433 0.779,0.736 0.39,0.26 0.563,0.519 0.606,0.736 v 0.866 c 0,0.173 0.043,0.477 0.086,0.909 0.043,0.347 0,0.649 -0.13,0.823 -0.043,0.043 -0.26,0.173 -0.736,0.476 -0.39,0.217 -0.563,0.52 -0.519,0.91 0,0.303 0.173,0.822 0.519,1.515 -0.259,0.217 -0.563,0.087 -0.866,-0.346 -0.346,-0.52 -0.563,-0.779 -0.736,-0.779 0,0 -0.26,0.13 -0.736,0.433 -0.216,0.087 -0.563,0.173 -0.996,0.217 -0.433,0.043 -0.909,0.043 -1.516,0 -0.346,-0.086 -0.606,-0.173 -0.736,-0.173 -0.303,-0.043 -0.52,-0.043 -0.736,0.087 -0.087,0 -0.13,0.043 -0.13,0.086 -0.173,0.043 -0.26,0.26 -0.303,0.606 -0.043,0.303 -0.13,0.52 -0.173,0.563 -0.476,-0.043 -0.779,0 -0.953,0.086 -0.346,0.26 -0.563,0.477 -0.693,0.563 -0.433,0.39 -0.996,0.606 -1.602,0.606 -0.216,0 -0.606,-0.129 -1.082,-0.39 -0.476,-0.13 -0.779,-0.303 -0.953,-0.433 -0.433,-0.649 -0.779,-1.126 -0.953,-1.342 l -0.303,-0.346 c -0.087,-0.043 -0.26,-0.173 -0.563,-0.347 -0.477,-0.26 -0.866,-0.606 -1.212,-1.083 -0.303,-0.693 -0.649,-1.169 -1.039,-1.385 -0.26,-0.13 -0.563,-0.216 -0.953,-0.216 -0.39,-0.043 -0.693,-0.043 -0.823,-0.087 -0.13,-0.044 -0.433,-0.26 -0.866,-0.606 -0.39,-0.303 -0.693,-0.477 -0.866,-0.52 -0.043,0 -0.173,0.043 -0.433,0.13 -0.39,0.086 -0.693,0.216 -0.823,0.303 -0.563,0.303 -0.953,0.52 -1.169,0.563 -0.303,-0.043 -0.563,0.043 -0.736,0.173 -0.086,0.173 -0.173,0.26 -0.259,0.346 -0.347,0.433 -0.823,0.649 -1.386,0.779 -0.216,0 -0.779,-0.043 -1.602,-0.13 -0.606,-0.13 -1.039,-0.043 -1.342,0.216 -0.173,0.217 -0.346,0.477 -0.433,0.866 -0.173,0.433 -0.26,0.736 -0.347,0.866 -0.086,0.13 -0.476,0.477 -1.126,1.083 -0.259,0.216 -0.519,0.347 -0.692,0.433 h -0.173 c -0.13,-0.173 -0.173,-0.26 -0.216,-0.346 -0.086,-0.043 -0.217,-0.087 -0.39,-0.087 -0.13,0.043 -0.217,0.087 -0.346,0.13 0.129,0.52 0.26,1.039 0.433,1.646 0,0.086 0.217,0.649 0.563,1.688 0.086,0.216 0.173,0.606 0.303,1.125 0.086,0.26 0.216,0.606 0.39,1.083 l 0.043,0.866 c 0,0.086 0.043,0.173 0.13,0.26 0.39,0.13 0.78,-0.043 1.212,-0.52 0.043,0.043 0.217,0 0.433,-0.043 0.476,0.346 0.823,0.433 1.083,0.346 0.086,-0.043 0.173,-0.086 0.173,-0.13 0,-0.13 0.13,-0.39 0.39,-0.692 0.043,-0.087 0.087,-0.303 0.13,-0.736 0.26,-0.13 0.52,-0.216 0.693,-0.216 l 1.732,-0.173 c 0.087,0 0.216,0.086 0.39,0.26 l 0.043,0.173 c -0.043,0.086 -0.217,0.216 -0.477,0.303 -0.303,0.13 -0.476,0.217 -0.476,0.303 -0.26,0.823 -0.173,1.299 0.217,1.559 0.433,0.26 0.649,0.477 0.649,0.736 0,0.173 -0.087,0.346 -0.303,0.52 -0.173,0.13 -0.26,0.346 -0.217,0.563 l 0.217,1.04 c 0,0.086 0.043,0.173 0.086,0.303 0,0.39 0,0.996 -0.13,1.775 0.043,0.173 0.087,0.476 0.216,0.909 0,0.13 0,0.346 0.043,0.606 l 0.087,0.13 0.866,0.26 0.086,0.13 0.13,0.736 c 0.043,0.173 0.13,0.476 0.26,0.866 l 0.087,0.606 c 0.043,0.173 0.043,0.563 0.043,1.169 -0.043,0.52 0.043,0.866 0.217,1.083 0.13,0.043 0.346,0.043 0.649,0.043 0.26,0.13 0.433,0.477 0.433,1.04 0.043,0.52 0.087,0.822 0.217,0.909 0.606,0.043 0.996,0.173 1.212,0.346 0.26,0.26 0.477,0.433 0.563,0.433 0.996,0.346 1.602,0.563 1.775,0.779 0.173,1.212 0.346,1.948 0.606,2.122 0.087,0.086 0.303,0.086 0.693,0.086 0.303,0.043 0.563,0.347 0.649,0.953 0.13,0.52 0.13,0.823 0.086,0.996 -0.606,0.303 -0.952,0.477 -0.996,0.477 -0.346,0.13 -0.52,0.216 -0.52,0.216 -0.13,0.303 -0.13,0.736 -0.043,1.342 0,0.043 -0.13,0.303 -0.433,0.693 -0.086,0.476 -0.216,0.779 -0.389,0.996 -0.26,0.086 -0.477,0.173 -0.606,0.347 -0.173,0.39 -0.303,0.606 -0.39,0.649 -0.086,0.043 -0.433,0.043 -0.953,0.043 -0.346,0 -0.606,0.13 -0.736,0.433 0,0.693 0.043,1.125 0.173,1.256 0.216,0.173 0.519,0.086 0.822,-0.173 h 0.173 c 0.087,0.043 0.173,0.216 0.303,0.52 0.043,0.043 0.476,0.13 1.342,0.26 0.217,0 0.347,0.13 0.39,0.346 0.303,0.736 0.346,1.255 0.216,1.559 0,0.043 -0.13,0.217 -0.433,0.563 -0.173,0.26 -0.26,0.433 -0.173,0.649 0.13,0.476 0.39,0.866 0.649,1.083 0.043,0.13 0.13,0.303 0.26,0.52 0.086,0.173 0.216,0.433 0.303,0.823 0.043,0.043 0.347,0.043 0.91,0 0.173,-0.043 0.563,-0.043 1.168,0 0.606,0.043 0.953,0.13 1.039,0.216 l 0.087,0.13 c -0.043,0.303 -0.216,0.563 -0.52,0.736 -0.043,0.043 -0.043,0.216 -0.043,0.476 0,0.216 0.043,0.39 0.086,0.476 0.173,0.087 0.52,0.043 1.082,-0.043 0.52,-0.087 0.823,-0.13 0.953,-0.043 0.086,0.043 0.303,0.26 0.52,0.649 0.216,0.173 0.477,0.26 0.823,0.26 0.13,0.043 0.346,0.216 0.606,0.433 0.779,0 1.212,0.043 1.299,0.086 0.043,0.173 0.173,0.823 0.39,1.949 0,0.086 0.043,0.259 0.043,0.476 0.26,0.909 0.39,1.429 0.39,1.515 0,0.217 -0.129,0.606 -0.303,1.083 0,0.433 0.087,1.083 0.26,1.992 -0.043,0.303 0,0.52 0.13,0.563 0.13,0.086 0.563,0.13 1.299,0.13 0.346,-0.346 0.563,-0.563 0.606,-0.606 0.217,-0.389 0.52,-0.996 0.866,-1.775 0.086,-0.173 0.303,-0.39 0.606,-0.649 0.52,-0.606 0.866,-1.169 1.039,-1.646 0.087,-0.26 0.087,-0.52 0,-0.779 -0.173,-0.303 -0.26,-0.52 -0.346,-0.693 -0.087,-0.39 -0.173,-0.606 -0.26,-0.692 l -0.433,-0.39 c -0.39,-0.346 -0.476,-0.866 -0.216,-1.558 0.13,-0.433 0.346,-0.65 0.563,-0.606 0,0.736 0.043,1.212 0.217,1.429 0.086,0.086 0.26,0.173 0.476,0.346 l 0.173,0.217 c 0.043,0 0.086,0.13 0.216,0.346 0.13,0.26 0.26,0.433 0.347,0.476 0.26,0.13 0.693,0.217 1.212,0.26 l 0.13,0.086 v 0.173 c -0.087,0.173 -0.303,0.476 -0.606,0.866 -0.043,0.087 -0.043,0.217 0,0.39 0.086,0.477 0.13,0.953 0.086,1.429 0,0.129 -0.043,0.346 -0.086,0.692 0,0.13 0.043,0.303 0.13,0.433 0.043,0.086 0.13,0.13 0.217,0.216 0.173,0.043 0.39,0.13 0.692,0.216 0.13,0.087 0.217,0.13 0.26,0.173 h 0.173 c 0.13,-0.086 0.39,-0.433 0.823,-1.039 h 0.173 c 0.087,0.13 0.087,0.347 -0.043,0.693 -0.303,0.822 -0.823,1.429 -1.516,1.775 -0.13,0.173 -0.173,0.347 -0.173,0.563 0,0.26 -0.043,0.476 -0.087,0.563 -0.043,0.13 -0.216,0.346 -0.52,0.649 -0.13,0.13 -0.216,0.303 -0.26,0.476 -0.173,0.433 -0.52,0.996 -1.039,1.646 -0.173,0.39 -0.303,0.693 -0.39,0.866 -0.173,0.303 -0.347,0.563 -0.606,0.736 -0.086,0.13 -0.606,0.303 -1.429,0.563 -1.775,0.606 -2.728,0.953 -2.901,1.169 l -0.043,0.13 c 0.173,0.216 0.259,0.346 0.303,0.346 -0.173,0.13 -0.346,0.26 -0.563,0.303 -0.26,0.086 -0.477,0.173 -0.606,0.26 -0.043,0.26 -0.13,0.433 -0.173,0.476 0,0.043 -0.086,0.086 -0.173,0.13 -0.043,0 -0.26,0.13 -0.606,0.433 -0.043,0.13 -0.043,0.26 -0.043,0.39 0.13,0.173 0.303,0.303 0.649,0.346 0.216,-0.086 0.563,-0.26 0.953,-0.52 0.13,-0.086 0.303,-0.13 0.563,-0.216 l 0.303,-0.217 c 0.39,-0.216 0.996,-0.476 1.818,-0.779 1.083,-0.606 1.905,-1.429 2.468,-2.425 l 2.251,-3.983 c 0.043,-0.13 0.173,-0.303 0.346,-0.477 0.086,-0.129 0.303,-0.476 0.649,-1.082 1.342,-2.251 2.035,-3.42 2.122,-3.464 0.303,-0.39 0.866,-0.909 1.688,-1.559 0.13,-0.13 0.347,-0.476 0.649,-0.996 0.26,-0.476 0.52,-0.779 0.736,-0.952 l -0.693,-0.433 c -0.086,0.13 -0.303,0.26 -0.563,0.346 -0.347,0.13 -0.52,0.26 -0.649,0.39 -0.216,0.217 -0.52,0.693 -0.866,1.386 -0.13,0.216 -0.173,0.39 -0.26,0.476 -0.216,0.26 -0.389,0.433 -0.476,0.52 l -0.173,0.043 -0.129,-0.043 c -0.087,-0.13 -0.087,-0.303 0.043,-0.606 0.086,-0.26 0.086,-0.477 0,-0.563 -0.649,-0.736 -1.039,-1.212 -1.212,-1.429 -0.086,-0.173 -0.086,-0.346 -0.043,-0.563 0,-0.303 0.043,-0.52 0.043,-0.606 -0.216,-0.303 -0.346,-0.476 -0.39,-0.606 0,-0.043 -0.086,-0.303 -0.216,-0.736 -0.13,-0.52 -0.173,-0.779 -0.173,-0.823 0.13,-0.39 0.173,-0.692 0.13,-0.823 -0.173,-0.173 -0.303,-0.303 -0.346,-0.433 -0.216,-0.433 -0.216,-0.953 -0.086,-1.472 0.26,-0.346 0.389,-0.606 0.346,-0.779 -0.303,-0.347 -0.52,-0.606 -0.563,-0.779 l -0.043,-0.347 c 0.087,-0.779 0.13,-1.169 0.13,-1.212 0,-0.043 0,-0.13 0.043,-0.217 0.043,-0.13 0.173,-0.26 0.39,-0.433 0.086,0 0.26,-0.043 0.433,-0.043 0.13,-0.043 0.303,-0.13 0.52,-0.26 h 0.13 l 0.043,0.13 -0.043,0.173 0.043,0.043 c -0.217,0.39 -0.13,0.866 0.216,1.429 0.39,0.606 0.606,1.039 0.606,1.169 0,0.26 -0.173,0.693 -0.433,1.342 -0.043,0.347 0.13,0.78 0.433,1.386 0,0.13 -0.043,0.39 -0.173,0.736 0.086,0.173 0.26,0.433 0.476,0.693 0.043,0.043 0.13,0.13 0.216,0.216 0,0.13 0.043,0.26 0.13,0.433 0,0.216 -0.043,0.476 -0.087,0.909 0.087,0.13 0.346,0.26 0.823,0.433 0.13,0.086 0.26,0.26 0.39,0.433 0.346,0.173 0.606,0.173 0.823,0.086 0.173,-0.13 0.39,-0.39 0.563,-0.779 0.13,-0.39 0.26,-0.606 0.39,-0.606 l 0.087,0.043 c -0.087,0.477 -0.26,0.909 -0.52,1.342 l 0.693,0.433 c 0.129,-0.087 0.563,-0.26 1.342,-0.433 0.303,-0.086 0.649,-0.216 1.083,-0.476 0.996,-0.606 1.516,-0.91 1.559,-0.91 0.043,-0.086 0.129,-0.173 0.216,-0.26 0.346,-0.173 0.649,-0.52 0.996,-0.996 0.217,-0.39 0.39,-0.693 0.52,-0.779 l 0.39,-0.476 c 0.779,-0.996 1.256,-1.602 1.472,-1.819 0.173,-0.173 0.346,-0.346 0.563,-0.433 0.086,-0.086 0.26,-0.173 0.476,-0.216 0.173,-0.13 0.347,-0.346 0.606,-0.649 0.26,-0.173 0.649,-0.346 1.169,-0.563 l 0.649,-0.303 c 0.26,-0.13 0.649,-0.347 1.212,-0.693 0,0 0.346,0 0.952,0 0.043,0 0.477,-0.043 1.256,-0.173 0.216,0 0.52,-0.043 0.953,0 0.173,-0.043 0.39,-0.13 0.736,-0.303 l 0.043,-0.043 c 0.346,-0.173 0.606,-0.303 0.822,-0.303 0.043,-0.043 0.26,0.087 0.693,0.303 0.39,0.173 0.78,0.303 1.083,0.303 0.086,0 0.52,-0.129 1.255,-0.389 0.477,-0.173 0.91,-0.13 1.256,0.173 l 0.086,0.173 c 0.087,0.13 0.217,0.303 0.303,0.606 0.086,0.087 0.217,0.217 0.39,0.433 0,0.043 0.043,0.173 0.087,0.26 0,0.26 0,0.606 -0.043,1.039 l 0.173,0.043 c 0.043,-0.043 0.086,-0.173 0.173,-0.39 0.043,-0.26 0.13,-0.433 0.26,-0.52 l 0.13,-0.043 0.13,0.086 c 0,0 0,0.303 -0.086,0.866 l 0.13,0.043 c 0.173,-0.346 0.346,-0.822 0.433,-1.515 0.26,-0.39 0.476,-0.736 0.692,-0.996 0.52,-0.563 0.78,-0.866 0.823,-0.91 0.086,-0.129 0.13,-0.216 0.173,-0.26 0.216,-0.303 0.346,-0.519 0.476,-0.563 0.606,-0.563 1.212,-0.953 1.818,-1.212 0.13,-0.043 0.347,-0.13 0.606,-0.217 0.216,-0.043 0.476,-0.13 0.779,-0.216 0.26,-0.13 0.823,-0.433 1.602,-0.866 0.13,-0.043 0.39,-0.043 0.866,0.043 h 0.043 c 0.433,0.087 0.736,0.087 0.909,0 0.173,-0.086 0.39,-0.303 0.52,-0.693 0.086,-0.086 0.173,-0.173 0.346,-0.259 h 0.043 c 0.086,0.043 0.217,0.043 0.477,0.086 h 0.043 c 0.087,0.043 0.26,0.086 0.477,0.216 0.043,0 0.346,-0.043 0.866,-0.13 0.476,-0.086 0.909,-0.043 1.212,0.043 0.649,0.216 1.212,0.649 1.688,1.299 0.086,0.13 0.26,0.303 0.52,0.52 0.433,0.693 0.433,1.559 0,2.555 -0.086,0.13 -0.173,0.303 -0.346,0.563 -0.043,0.433 -0.173,0.779 -0.303,0.952 -0.13,0.087 -0.26,0.087 -0.433,-0.043 -0.173,-0.13 -0.303,-0.217 -0.346,-0.217 0.086,0.303 0.216,0.476 0.476,0.606 0.217,0.086 0.39,0.043 0.52,-0.087 0.13,-0.13 0.606,-1.299 1.342,-3.42 0.13,-0.476 0.216,-0.866 0.303,-1.083 0.563,-0.909 0.866,-1.602 0.909,-2.035 -0.216,-0.26 -0.303,-0.476 -0.26,-0.649 l 0.086,-0.13 c 0.13,-0.087 0.39,-0.13 0.779,-0.087 0.217,-0.086 0.606,-0.52 1.039,-1.299 0.303,-0.216 0.693,-0.39 1.169,-0.476 0.259,-0.173 0.563,-0.433 0.996,-0.823 0.173,-0.086 0.433,-0.216 0.736,-0.346 0.173,-0.087 0.346,-0.217 0.606,-0.39 l -0.823,-1.688 c -0.13,-0.26 -0.173,-0.433 -0.13,-0.563 0.477,-0.606 0.779,-0.953 0.866,-0.996 0.26,-0.303 0.389,-0.433 0.389,-0.433 0.13,-0.043 0.26,-0.13 0.347,-0.26 0.173,0 0.433,0.086 0.736,0.39 h 0.173 c 0.52,-0.39 0.823,-0.65 0.866,-0.736 -0.043,-0.216 -0.173,-0.433 -0.39,-0.692 -0.259,-0.303 -0.39,-0.52 -0.433,-0.65 0.043,-0.13 0.216,-0.303 0.52,-0.606 0.26,-0.216 0.39,-0.39 0.346,-0.52 -0.433,-0.346 -0.736,-0.606 -0.953,-0.779 -0.26,-0.303 -0.476,-0.52 -0.563,-0.649 l -0.13,-0.043 c -0.217,0.217 -0.347,0.477 -0.39,0.693 h -0.13 c -0.259,-0.303 -0.649,-0.649 -1.255,-1.039 -0.173,-0.736 -0.303,-1.169 -0.303,-1.299 -0.303,-0.822 -0.563,-1.429 -0.866,-1.818 -0.216,-0.26 -0.693,-0.563 -1.386,-0.866 -0.563,-0.216 -0.822,-0.303 -0.822,-0.303 l -0.433,-0.433 c -0.39,-0.433 -0.649,-0.692 -0.736,-0.866 l 0.086,-0.173 c 0.086,-0.129 0.52,-0.173 1.212,-0.173 0.649,0 1.039,-0.13 1.255,-0.347 0.087,-0.216 0.087,-0.649 -0.043,-1.299 -0.087,-0.606 -0.173,-1.039 -0.303,-1.299 -0.217,-0.303 -0.39,-0.52 -0.477,-0.606 -0.173,-0.217 -0.129,-0.477 0.043,-0.736 0.13,-0.216 0.39,-0.346 0.693,-0.39 l 0.26,0.347 c 0.173,0.043 0.346,0.043 0.649,0 0.043,0.043 0.13,0.129 0.13,0.26 0.087,0.086 0.346,0.173 0.823,0.216 0.433,0.043 0.736,0.043 0.866,0 0.693,-0.13 1.126,-0.303 1.342,-0.52 v -0.866 c 0.216,-0.476 0.39,-0.822 0.476,-1.039 0.13,-0.39 0.173,-0.649 0.26,-0.822 0.086,-0.26 0.303,-0.433 0.606,-0.52 0.52,-0.043 0.952,0.39 1.299,1.256 0.346,-0.217 0.606,-0.346 0.693,-0.433 -0.087,-0.303 -0.087,-0.52 -0.13,-0.649 -0.13,-0.736 0.043,-1.342 0.52,-1.732 -0.043,-0.39 -0.043,-0.649 -0.043,-0.779 0.477,-0.649 0.736,-1.125 0.736,-1.515 l -0.13,-0.087 c -0.303,0.087 -0.563,0.13 -0.736,0.13 -0.563,-0.174 -1.039,-0.26 -1.429,-0.26 l -0.086,0.13 -0.043,0.303 c -0.13,0.173 -0.26,0.26 -0.347,0.26 l -0.173,-0.043 c -0.043,-0.13 -0.086,-0.216 -0.13,-0.26 -0.433,-0.736 -0.693,-1.125 -0.779,-1.212 -0.39,-0.26 -0.693,-0.477 -0.909,-0.606 -0.217,-0.346 -0.433,-0.563 -0.563,-0.649 -0.303,-0.216 -0.52,-0.39 -0.606,-0.476 -0.39,-0.693 -0.693,-1.126 -0.91,-1.299 -0.476,-0.043 -0.909,-0.39 -1.299,-1.083 h -0.173 c -0.433,0.216 -0.779,0.433 -1.039,0.736 -0.347,0.303 -0.563,0.433 -0.693,0.433 -0.693,-0.866 -1.169,-1.516 -1.429,-1.948 l -0.39,-0.65 c -0.129,-0.129 -0.216,-0.216 -0.346,-0.303 -0.909,0.563 -1.472,0.736 -1.775,0.649 l -0.129,-0.086 c 0,-0.217 0,-0.477 0.129,-0.91 0.087,-0.346 0.13,-0.563 0.043,-0.649 -0.13,-0.086 -0.303,-0.086 -0.606,-0.043 -0.173,-0.043 -0.347,-0.39 -0.563,-0.996 0.043,-0.043 0.433,-0.216 1.083,-0.39 0.043,-0.043 0.043,-0.13 0.043,-0.26 -0.779,-0.13 -1.212,-0.26 -1.385,-0.433 -0.086,-0.13 -0.216,-0.433 -0.303,-0.91 -0.129,-0.519 -0.26,-0.822 -0.39,-0.996 l -0.52,-0.52 c -0.086,-1.385 -0.173,-2.165 -0.346,-2.295 -0.433,0.13 -0.693,0.173 -0.866,0.217 -0.736,0.086 -1.213,-0.087 -1.472,-0.606 -0.043,-0.086 -0.087,-0.13 -0.043,-0.216 0.303,-0.909 0.346,-1.515 0.173,-1.732 -1.126,0.13 -1.992,0.303 -2.555,0.39 -0.606,0.13 -1.083,0.26 -1.429,0.346 -0.043,0 -0.086,0 -0.13,0 -0.649,0 -1.083,0.043 -1.429,0.13 -0.043,-0.043 -0.173,-0.217 -0.303,-0.477 -0.087,-0.173 -0.303,-0.216 -0.693,-0.216 -0.26,0.043 -0.476,0.13 -0.649,0.303 -0.086,0.39 -0.173,0.693 -0.303,0.823 l -0.866,0.173 c -0.346,0 -0.649,-0.087 -0.866,-0.303 -0.26,-0.26 -0.433,-0.39 -0.52,-0.433 -0.563,0 -0.91,-0.043 -0.996,-0.086 -0.043,-0.216 -0.043,-0.346 -0.043,-0.476 -0.043,-0.217 -0.043,-0.52 -0.13,-0.953 l -0.086,-0.086 c -0.476,-0.043 -0.779,0 -0.953,0.086 -0.086,0.52 -0.216,0.866 -0.346,0.996 -0.433,0.216 -1.039,0.303 -1.905,0.216 l -0.086,-0.13 v -0.173 c -0.13,-0.13 -0.303,-0.173 -0.52,-0.13 -0.043,-0.13 -0.043,-0.26 0,-0.476 l -0.086,-0.13 -0.347,-0.129 c -0.043,0 -0.043,-0.26 -0.043,-0.736 0.173,-0.086 0.346,0.043 0.563,0.303 0.217,0.216 0.39,0.303 0.52,0.173 l 0.087,-0.173 c 0.13,-0.563 0.303,-1.126 0.563,-1.732 0.043,-0.043 0,-0.173 -0.087,-0.39 -0.086,-0.26 -0.043,-0.52 0.087,-0.823 l -0.043,-0.13 c -0.303,0 -0.52,0 -0.606,0.087 -0.13,0.173 -0.26,0.26 -0.303,0.26 -0.043,0 -0.087,-0.13 -0.217,-0.477 -0.086,-0.26 -0.303,-0.346 -0.649,-0.303 0.043,-0.173 0.043,-0.303 0.043,-0.39 0.086,-0.692 0.043,-1.255 -0.173,-1.688 -0.043,-0.086 -0.216,-0.13 -0.52,-0.173 -0.26,0 -0.39,-0.087 -0.476,-0.13 0,-0.216 0.13,-0.476 0.433,-0.779 0.26,-0.303 0.433,-0.563 0.433,-0.736 -0.043,-0.216 -0.086,-0.346 -0.173,-0.433 -0.129,0 -0.216,0 -0.303,0.043 -0.823,0.823 -1.386,1.125 -1.732,0.953 -0.043,-0.216 -0.086,-0.477 0,-0.866 -0.217,-0.303 -0.217,-0.823 -0.043,-1.645 0.043,-0.26 -0.13,-0.433 -0.563,-0.433 -0.736,-0.086 -1.731,0.216 -2.857,0.779 -0.173,0.086 -0.346,0.173 -0.52,0.303 -0.26,0.13 -0.433,0.216 -0.476,0.26 -0.26,-0.043 -0.433,-0.26 -0.649,-0.649 -0.217,-0.39 -0.39,-0.649 -0.563,-0.649 -1.083,-0.217 -1.602,-0.303 -1.646,-0.346 -0.433,-0.563 -0.736,-0.953 -0.866,-1.083 -0.26,-0.26 -0.736,-0.303 -1.472,-0.13 -0.953,0.26 -1.732,0.563 -2.251,0.996 -0.216,0.52 -0.433,0.779 -0.649,0.823 -0.606,0.216 -1.039,0.216 -1.385,0.043 -0.087,-0.087 -0.217,-0.13 -0.26,-0.13 -0.779,-0.173 -1.386,-0.303 -1.775,-0.39 -1.602,-0.173 -2.555,-0.26 -2.771,-0.39 -0.216,-0.086 -0.823,-0.433 -1.905,-0.996 -0.173,-0.13 -0.39,-0.173 -0.65,-0.173 l -0.216,-0.043 -1.646,0.303 c -0.13,0.043 -0.216,0.087 -0.259,0.087 -0.087,0.043 -0.173,0.043 -0.303,0.086 h -0.043 -0.173 c -0.216,0 -0.52,0 -0.822,0 l -0.347,-0.043 c -0.602,-0.09 -0.991,-0.134 -1.078,-0.09 m -6.408,0.13 -0.087,-0.13 c -0.563,-0.043 -0.909,0 -1.082,0.13 -0.086,0.26 -0.043,0.563 0.13,0.953 0.043,0.216 0.173,0.52 0.303,0.909 0,0.086 -0.043,0.173 -0.129,0.346 -0.043,1.039 -0.13,1.602 -0.217,1.688 l -0.563,0.173 -0.087,0.086 c -0.043,0.39 0,0.606 0.13,0.779 h 0.649 l 0.13,0.043 c 0.086,0.693 0.13,1.083 0.173,1.083 0.13,0.216 0.563,0.433 1.299,0.563 0.563,0.13 0.779,0.476 0.693,1.039 -0.087,0.39 -0.13,0.649 -0.216,0.736 -0.693,0.043 -1.299,0.13 -1.819,0.303 -0.216,0.346 -0.346,0.52 -0.433,0.649 l -0.346,0.043 c -0.216,0.13 -0.346,0.433 -0.39,0.866 -0.043,0.39 0,0.649 0.13,0.866 0.043,0.043 0.303,0.216 0.736,0.563 0.259,0.13 0.736,0.433 1.472,0.78 0.173,0.086 0.346,0.216 0.519,0.476 0,0.26 -0.173,0.649 -0.563,1.169 0,0.086 0.043,0.39 0.173,0.909 0,0.086 -0.043,0.26 -0.129,0.606 0,0.173 -0.043,0.26 -0.087,0.39 l 0.043,0.087 0.736,0.216 c 0.217,0.043 0.563,0.13 1.039,0.217 0,0.779 -0.086,1.559 -0.346,2.468 -0.043,0.13 -0.13,0.346 -0.26,0.649 -0.086,0.476 -0.216,1.125 -0.39,2.078 l -0.52,1.472 v 0.173 c 0.606,0.389 0.909,0.692 0.996,0.866 0.043,0.087 0.043,0.433 -0.043,0.909 0,0.173 -0.043,0.26 -0.086,0.39 0.996,-0.043 1.602,-0.13 1.862,-0.26 0.433,-0.216 0.953,-0.952 1.646,-2.251 0.13,-0.26 0.216,-0.476 0.303,-0.563 0.173,-0.216 0.52,-0.476 1.039,-0.779 0.043,-0.043 0.13,-0.26 0.217,-0.692 0.173,-0.736 0.303,-1.212 0.39,-1.342 0,-0.043 0,-0.086 0.043,-0.086 0.303,-0.52 0.477,-0.953 0.563,-1.342 0.086,-0.26 0.13,-0.649 0.086,-1.212 -0.043,-0.649 -0.259,-1.256 -0.649,-1.948 -0.216,-0.347 -0.476,-0.693 -0.779,-1.04 -0.173,-0.303 -0.303,-0.476 -0.389,-0.606 l -0.087,-0.433 c -0.043,-0.173 0.043,-0.39 0.216,-0.606 0.173,-0.26 0.303,-0.346 0.477,-0.346 0.043,0 0.086,0 0.13,0 l 0.39,-1.212 c 0,0 0,-0.043 0.043,-0.086 0.39,-0.477 0.52,-0.996 0.39,-1.646 -0.173,-1.039 -0.087,-1.732 0.259,-2.251 0.173,-0.26 0.26,-0.693 0.217,-1.299 -0.086,-0.563 -0.217,-1.083 -0.476,-1.515 -0.13,-0.217 -0.26,-0.433 -0.39,-0.606 -0.39,-0.563 -0.692,-0.953 -0.952,-1.256 -0.303,-0.26 -0.563,-0.606 -0.693,-0.952 -0.303,-0.563 -0.26,-0.953 0.13,-1.126 0.13,-0.043 0.433,-0.086 0.866,-0.216 -0.519,0.13 -0.866,0.173 -1.039,0.216 -0.39,0 -0.736,-0.043 -1.039,-0.173 -0.736,0.952 -1.169,1.472 -1.385,1.645 -0.173,0.13 -0.996,0.173 -2.511,0.216 -0.087,-0.043 -0.217,-0.043 -0.346,-0.129 -0.134,-0.695 -0.177,-1.215 -0.09,-1.647", + "Zakarpattia": "m 37.538,173.039 c -0.043,0.086 -0.087,0.216 -0.087,0.346 l -0.087,0.866 c 0,0.477 -0.043,0.779 -0.13,0.866 l -0.216,0.173 c -0.13,0.347 -0.13,0.78 -0.043,1.299 -0.086,0.26 -0.39,0.346 -0.909,0.39 -0.563,0 -0.996,0.173 -1.212,0.52 -0.13,0.173 -0.173,0.606 -0.173,1.299 -0.043,0.173 -0.173,0.346 -0.433,0.563 -0.26,0.173 -0.39,0.303 -0.39,0.433 -0.043,0.087 0,0.347 0,0.693 0.043,0.303 0,0.52 -0.087,0.736 -0.087,0.13 -0.303,0.39 -0.736,0.823 -0.476,0.433 -0.779,0.779 -0.866,1.083 -0.043,0.13 0.043,0.52 0.173,1.169 0.13,0.693 0.216,1.083 0.216,1.256 -0.043,0.173 -0.303,0.52 -0.779,0.909 -0.39,0.39 -0.606,0.779 -0.476,1.169 0.087,0.606 0,1.255 -0.26,2.035 -0.086,0.173 -0.216,0.476 -0.346,0.909 -0.173,0.26 -0.52,0.476 -1.039,0.692 -0.563,0.173 -0.909,0.39 -1.082,0.649 -0.217,0.347 -0.476,0.91 -0.823,1.646 -0.13,0.173 -0.39,0.303 -0.736,0.476 -0.13,0.043 -0.26,0.173 -0.476,0.347 -0.52,0.39 -0.823,0.692 -0.866,0.953 v 0.216 c -0.043,0.216 0,0.476 0.086,0.823 0,0.216 0,0.476 -0.043,0.866 l 0.043,0.303 c 0.043,0.13 0.173,0.346 0.346,0.693 0.043,0.13 -0.043,0.303 -0.26,0.476 -0.043,0.043 -0.13,0.13 -0.26,0.216 0,0.26 -0.043,0.606 -0.087,1.126 0,0.173 0.043,0.433 0.087,0.822 0.087,0.866 0.043,1.429 -0.087,1.775 l 0.563,0.173 c 0.39,-0.173 0.823,-0.347 1.299,-0.477 0.26,0.043 0.52,0.173 0.693,0.347 0.13,0.043 0.39,0.086 0.693,0.086 l 0.26,0.303 -0.043,0.303 -0.303,0.303 c -0.13,0.52 -0.13,0.909 0.087,1.212 l 0.13,0.043 c 0.823,-0.173 1.342,-0.259 1.515,-0.173 l 0.087,0.086 c 0.043,0.173 0,0.433 -0.087,0.91 -0.087,0.346 -0.087,0.736 0.087,1.212 0.043,0.173 0.173,0.39 0.39,0.606 0.13,0.52 0.303,0.909 0.433,1.125 0.217,0.26 0.39,0.39 0.52,0.52 0.173,0.173 0.26,0.346 0.346,0.606 0,0.086 0.043,0.129 0.087,0.173 0.173,0.173 0.433,0.087 0.779,-0.173 0,-0.087 0.173,-0.087 0.52,0 0.563,0.173 0.866,0.26 0.909,0.26 0.216,0.043 0.52,-0.087 0.866,-0.26 0.173,-0.087 0.346,-0.087 0.52,0 0.13,0.129 0.346,0.476 0.693,1.082 0.303,0.563 0.563,0.953 0.736,1.083 0.346,0.086 0.563,0.13 0.693,0.173 0.13,0.086 0.173,0.216 0.043,0.433 -0.13,0.216 -0.173,0.39 -0.173,0.433 l 0.087,0.087 c 0.13,0.13 0.26,0.216 0.346,0.259 0.303,0.477 0.433,0.823 0.476,1.126 0,0.13 0,0.26 -0.043,0.433 0,0.086 0.043,0.173 0.13,0.26 0.043,0.13 0.043,0.303 0,0.606 0.13,0.303 0.346,0.52 0.736,0.649 0.693,0.39 1.212,0.477 1.602,0.26 0.217,-0.129 0.39,-0.216 0.476,-0.26 0.39,-0.173 0.693,-0.26 0.866,-0.39 0.303,-0.173 0.476,-0.26 0.519,-0.26 0.26,0.173 0.433,0.26 0.52,0.303 l 0.173,-0.043 c 0.13,-0.13 0.26,-0.216 0.346,-0.26 0.217,-0.173 0.563,0.043 1.126,0.649 0.26,0.26 0.476,0.477 0.606,0.649 l 0.217,0.043 c 0.26,0.477 0.476,0.866 0.649,1.126 0.217,0.26 0.39,0.476 0.476,0.563 0.13,0.217 0.173,0.477 0.087,0.823 -0.087,0.216 -0.173,0.346 -0.217,0.39 -0.087,0.086 -0.173,0.13 -0.346,0.26 l -0.043,0.13 c 0.043,0.13 0.087,0.26 0.087,0.433 -0.043,0.13 -0.217,0.346 -0.433,0.476 -0.13,0.173 -0.13,0.39 0,0.736 0.13,0.13 0.217,0.216 0.303,0.26 0.346,0.086 0.519,0.173 0.519,0.173 0.174,0.217 0.347,0.347 0.433,0.433 0.043,0 0.303,-0.086 0.823,-0.216 0.26,-0.086 0.433,-0.303 0.52,-0.649 l 0.043,-0.52 c -0.13,-0.303 -0.217,-0.52 -0.26,-0.649 -0.043,-0.217 -0.043,-0.347 0,-0.39 0.217,-0.259 0.476,-0.303 0.866,-0.086 0.39,0.217 0.693,0.39 0.823,0.477 0,0 0.173,0.13 0.52,0.303 0.043,0.043 0.13,0.043 0.303,0.13 0.303,0.086 0.65,-0.086 1.039,-0.433 0.606,-0.303 0.953,-0.52 1.083,-0.693 0.173,-0.303 0.39,-0.866 0.606,-1.732 0.216,-0.996 0.346,-1.516 0.39,-1.516 0.043,-0.086 0.216,-0.26 0.433,-0.476 0.26,-0.216 0.563,-0.39 0.866,-0.39 0.26,-0.043 0.563,0.086 0.909,0.346 0.346,0.303 0.693,0.477 0.866,0.52 0.346,-0.086 0.649,-0.13 0.823,-0.13 0.13,0.043 0.26,0.173 0.433,0.39 0.087,0.086 0.173,0.129 0.173,0.216 0.217,0.649 0.39,1.169 0.563,1.385 0.823,0.477 1.385,0.823 1.688,1.083 0.346,0.476 0.606,0.779 0.779,0.996 0.087,0.086 0.26,0.13 0.52,0.086 0.303,-0.086 0.476,-0.13 0.52,-0.086 0.173,0 0.563,0.173 1.212,0.519 0.433,0.26 0.693,0.433 0.736,0.477 0.476,0.13 0.823,-0.043 1.039,-0.477 0.043,-0.216 0.086,-0.433 0.216,-0.519 0.346,-0.13 0.563,-0.303 0.693,-0.477 l 0.606,0.477 c 0.26,0.173 0.606,0.303 1.082,0.216 0.52,0 0.909,0 1.126,0.086 0.39,0.303 0.65,0.433 0.823,0.39 l -0.043,0.043 c 0.173,0.043 0.346,0.043 0.606,0 0.39,0 0.606,-0.043 0.649,-0.043 0.39,0.043 0.693,0.087 0.909,0.087 0.433,-0.13 0.823,-0.087 1.169,0.043 0.043,0 0.39,0.173 0.952,0.52 0.346,0.13 0.52,0.26 0.563,0.303 0.13,0.13 0.217,0.346 0.26,0.649 0.087,0.303 0.13,0.52 0.217,0.606 0.13,0.173 0.346,0.26 0.736,0.26 0.346,0 0.606,-0.043 0.736,-0.217 0.303,-0.26 0.519,-0.433 0.649,-0.433 l 0.13,0.087 c 0.26,-0.043 0.39,-0.13 0.52,-0.26 0.13,-0.216 0.217,-0.303 0.303,-0.347 l 0.563,-0.303 c 0.216,0.086 0.39,0.13 0.519,0.13 0.78,0.043 1.299,0.086 1.515,0.173 0.477,0.347 0.866,0.606 1.169,0.693 0.217,0.043 0.39,0.087 0.433,0.173 0.086,0.043 0.173,0.173 0.26,0.39 0.303,0.433 0.736,0.736 1.342,0.736 0.173,0 0.303,-0.043 0.433,-0.173 0.173,-0.13 0.26,-0.26 0.216,-0.39 0.173,0.043 0.26,0.13 0.347,0.173 0.909,0.606 1.602,0.823 2.035,0.649 l 0.173,-0.086 c 0.13,-0.13 0.433,-0.303 0.866,-0.606 0.39,-0.217 0.606,-0.303 0.736,-0.347 0.217,-0.043 0.52,-0.043 0.953,0.043 0.39,0.086 0.693,0.086 0.866,-0.086 0.173,-0.087 0.39,-0.303 0.606,-0.65 0.13,-0.303 0.433,-0.52 0.909,-0.649 0.347,-0.129 0.779,-0.086 1.342,0.087 0.649,0.173 1.083,0.303 1.256,0.303 0.303,-0.303 0.866,-0.303 1.732,-0.043 l 0.043,-0.13 0.13,-0.606 c 0.087,-0.52 0.433,-1.212 0.996,-2.121 0.217,-0.433 0.39,-0.736 0.52,-0.91 0.26,-0.303 0.476,-0.52 0.563,-0.692 l -0.043,-0.173 c -1.256,-1.559 -2.035,-2.468 -2.295,-2.728 -1.212,-1.125 -1.602,-2.078 -1.169,-2.9 0.39,-0.693 0.563,-1.039 0.563,-1.126 -0.217,-0.39 -0.39,-0.649 -0.433,-0.736 0,-0.086 -0.043,-0.129 -0.043,-0.173 -0.216,-0.216 -0.346,-0.433 -0.39,-0.606 l -0.433,-0.91 -2.079,-1.992 c -0.173,-0.173 -0.476,-0.39 -0.823,-0.606 -0.129,-0.13 -0.303,-0.346 -0.563,-0.736 -0.477,-0.043 -0.866,-0.043 -1.126,0 -0.043,-0.087 -0.043,-0.347 -0.043,-0.693 0.043,-0.347 0,-0.606 -0.173,-0.823 -0.086,-0.13 -0.303,-0.26 -0.563,-0.433 -0.303,-0.26 -0.433,-0.39 -0.433,-0.39 l -0.13,0.043 c -0.173,0.173 -0.346,0.606 -0.649,1.212 -0.303,0.346 -0.909,0.476 -1.861,0.476 -0.779,-0.043 -1.386,-0.173 -1.732,-0.476 -0.303,-0.347 -0.563,-0.866 -0.649,-1.688 -0.13,-0.866 -0.13,-1.775 0.043,-2.685 0.086,-0.303 0.13,-0.563 0.13,-0.736 -0.173,-0.433 -0.26,-0.866 -0.173,-1.342 0.043,-0.649 0.086,-1.039 0.086,-1.083 -0.26,-0.216 -0.563,-0.216 -0.953,0 -0.216,0.13 -0.476,0.346 -0.823,0.693 -0.346,0.216 -0.649,0.346 -0.952,0.476 -0.26,0.086 -0.736,0.13 -1.343,0.173 l -0.606,0.433 c -0.13,0.087 -0.26,0.26 -0.476,0.563 -0.173,0.173 -0.433,0.303 -0.693,0.347 -0.346,0.086 -0.563,0.043 -0.78,-0.087 -0.217,-0.216 -0.26,-0.563 -0.13,-1.082 0.13,-0.693 0.217,-1.126 0.217,-1.212 -0.043,-0.13 -0.13,-0.433 -0.39,-0.823 -0.216,-0.39 -0.563,-0.606 -0.996,-0.649 -0.606,-0.086 -0.909,-0.086 -0.909,-0.086 -0.13,-0.173 -0.26,-0.39 -0.346,-0.693 -0.087,-0.086 -0.303,-0.26 -0.649,-0.433 -0.303,-0.173 -0.52,-0.346 -0.649,-0.52 -0.13,-0.26 -0.13,-0.606 -0.043,-1.125 0.087,-0.477 0.087,-0.78 -0.043,-0.91 -0.043,0 -0.173,-0.086 -0.433,-0.173 -0.433,-0.13 -0.779,-0.173 -1.125,-0.087 -0.13,0.043 -0.346,0.13 -0.693,0.26 -0.303,0.043 -0.52,0 -0.693,-0.129 -0.173,-0.173 -0.346,-0.433 -0.606,-0.823 l -0.476,-0.52 c -0.52,-0.823 -0.866,-1.212 -0.953,-1.256 -1.039,-0.52 -1.818,-0.779 -2.381,-0.909 -0.173,-0.043 -0.433,-0.173 -0.823,-0.346 -0.043,0 -0.346,0.086 -0.909,0.26 -0.52,0.086 -1.126,0.043 -1.905,-0.173 -0.476,-0.086 -0.693,-0.13 -0.693,-0.173 -0.303,-0.086 -0.433,-0.433 -0.476,-1.039 -0.043,-0.52 -0.217,-0.779 -0.476,-0.779 -0.173,0 -0.346,0.173 -0.563,0.52 -0.217,0.39 -0.433,0.606 -0.52,0.649 l -0.216,-0.043 c -0.173,-0.173 -0.217,-0.433 -0.217,-0.736 0.043,-0.346 0,-0.606 0,-0.736 l -0.13,-0.087 -0.13,0.087 c -0.39,0.346 -0.65,0.563 -0.736,0.606 -0.086,0.043 -0.26,0.043 -0.563,0.043 -1.169,0.043 -2.035,-0.606 -2.684,-1.992 -0.173,-0.476 -0.433,-1.125 -0.736,-1.992 -0.346,-0.606 -0.909,-0.779 -1.732,-0.476 -0.043,0.043 -0.433,0.173 -1.169,0.39 -0.39,0.216 -0.649,0.303 -0.693,0.303 -0.736,0.13 -1.125,-0.173 -1.255,-0.909 -0.043,-0.086 -0.087,-0.26 -0.087,-0.52 -0.173,-0.216 -0.476,-0.39 -0.953,-0.606 -0.087,-0.043 -0.303,-0.303 -0.736,-0.736 -0.736,-0.866 -0.779,-1.905 -0.173,-3.161 0.043,-0.13 0.043,-0.216 0.043,-0.346 -0.346,-0.303 -0.52,-0.476 -0.563,-0.563 h -0.087 c -0.043,0 -0.043,0.043 -0.043,0.043 -0.13,0.13 -0.346,0.173 -0.52,0.173 -0.39,-0.087 -0.606,-0.217 -0.693,-0.433 -0.13,-0.347 -0.217,-0.52 -0.26,-0.563 -0.216,-0.13 -0.476,-0.173 -0.823,-0.086 -0.13,-0.13 -0.26,-0.303 -0.433,-0.606 -0.26,-0.39 -0.476,-0.563 -0.606,-0.606 -0.13,0 -0.39,0.086 -0.78,0.26 -0.173,0.043 -0.39,0.043 -0.693,-0.043 -0.043,0 -0.26,0.087 -0.65,0.173 -0.26,0.086 -0.519,0.086 -0.692,0.043 -0.39,-0.13 -0.736,-0.39 -1.126,-0.779 -0.13,-0.173 -0.39,-0.477 -0.65,-0.909 -0.303,-0.39 -0.606,-0.52 -0.996,-0.433 -0.217,0.043 -0.433,0.13 -0.563,0.303 l -0.129,0.261", + "Volyn": "m 88.802,54.536 c -0.13,0.346 -0.693,0.823 -1.688,1.515 -0.087,0.043 -0.39,0.26 -0.78,0.649 l -0.736,0.52 c -0.173,0.086 -0.39,0.216 -0.736,0.39 -0.39,0.26 -0.736,0.476 -0.953,0.736 -0.26,0.216 -0.606,0.649 -1.039,1.212 -0.606,0.563 -1.083,0.953 -1.386,1.169 l -0.866,0.476 c -0.649,0.39 -1.256,0.606 -1.775,0.649 -0.26,-0.13 -0.39,-0.216 -0.433,-0.26 0,-0.043 -0.043,-0.13 -0.043,-0.303 -0.217,-0.693 -0.476,-1.169 -0.779,-1.472 -0.173,-0.13 -0.996,-0.26 -2.468,-0.346 -0.303,0 -0.693,-0.13 -1.126,-0.347 -0.433,-0.173 -0.779,-0.303 -1.083,-0.303 -0.563,0.043 -0.952,0.173 -1.212,0.477 -0.303,0.043 -0.78,0.043 -1.342,0.086 -0.433,0.087 -0.779,0.26 -1.169,0.563 -0.39,0.346 -0.606,0.693 -0.606,1.083 0.043,0.13 0.087,0.303 0.217,0.433 0.13,0.13 0.26,0.26 0.26,0.303 0.217,0.736 0.39,1.256 0.52,1.602 0.087,0.26 0.173,0.433 0.173,0.563 0.043,0.086 0,0.346 0,0.779 l -0.13,0.086 c -0.13,0 -0.26,-0.086 -0.476,-0.26 -0.217,-0.13 -0.433,-0.216 -0.649,-0.13 0.086,0.563 0.13,0.996 0.26,1.212 0.043,0.346 0.217,0.52 0.52,0.563 0.433,0.043 0.693,0.086 0.693,0.13 0.217,0.26 0.217,0.563 -0.043,0.866 -0.26,0.346 -0.39,0.606 -0.39,0.736 0.303,0.13 0.563,0.303 0.779,0.477 0.13,0.086 0.173,0.173 0.173,0.303 0,0.129 0,0.26 0.043,0.303 0.217,0.217 0.347,0.39 0.476,0.52 0.173,0.217 0.173,0.433 0.043,0.693 l -0.39,0.217 -0.087,0.129 c 0.13,0.347 0.217,0.606 0.217,0.78 l -0.043,0.173 c -0.346,0.087 -0.563,0.217 -0.693,0.303 -0.043,0.043 -0.217,0.39 -0.606,1.169 l -0.13,0.26 -0.043,0.606 c 0,0.347 0.087,0.606 0.303,0.866 0.13,0.13 0.39,0.216 0.693,0.216 0.39,0.043 0.649,0.087 0.736,0.13 0.217,0.13 0.39,0.39 0.52,0.736 0.13,0.433 0.217,0.736 0.303,0.909 0.087,0.346 0.13,0.52 0.216,0.563 0.173,0.13 0.26,0.216 0.347,0.303 -0.087,0.303 -0.087,0.52 -0.13,0.693 0.217,0.086 0.346,0.173 0.433,0.216 0.13,0.26 0.216,0.39 0.303,0.477 0.217,0.086 0.346,0.13 0.476,0.173 0.043,0.303 0.346,0.52 0.866,0.649 0.086,0.347 0.217,0.563 0.39,0.65 0.26,0 0.433,0 0.563,0.043 0.217,0.173 0.39,0.303 0.476,0.347 0.346,0.26 0.52,0.433 0.563,0.476 0.043,0.13 0.043,0.346 0,0.736 -0.086,0.087 -0.216,0.173 -0.39,0.217 -0.043,0.346 0.043,0.736 0.217,1.212 0.173,0.26 0.303,0.476 0.39,0.606 l 0.13,0.303 c 0.26,0.086 0.476,0.216 0.693,0.346 0.043,0.476 0.043,0.779 0.043,0.866 0.13,0.216 0.217,0.346 0.26,0.39 0.087,0.26 0.043,0.476 -0.173,0.606 l -0.043,0.13 c 0,0.173 0.087,0.303 0.217,0.39 l 0.043,0.173 c -0.087,0.086 -0.173,0.173 -0.217,0.216 0.043,0.043 0.13,0.173 0.303,0.303 0.39,0.26 0.693,0.433 0.866,0.606 0.173,0.217 0.26,0.347 0.389,0.433 0,0.52 0,0.866 0.087,1.125 0.303,0.303 0.476,0.52 0.606,0.649 l 0.13,0.26 c 0.043,0.086 0.173,0.216 0.303,0.303 0.26,0.173 0.433,0.39 0.606,0.649 0.173,0.259 0.346,0.433 0.476,0.563 0.173,0.173 0.433,0.303 0.779,0.39 0.433,0.13 0.693,0.216 0.779,0.26 0.216,0.26 0.347,0.433 0.476,0.52 0.477,0.173 0.866,0.303 1.126,0.433 0.043,0.043 0.043,0.13 0.086,0.303 -0.043,0.086 -0.086,0.216 -0.216,0.476 -0.043,0.043 -0.086,0.13 -0.13,0.26 -0.173,0.216 -0.736,0.346 -1.688,0.346 -0.173,0 -0.39,-0.043 -0.736,-0.086 l -0.26,0.173 c -0.173,-0.13 -0.52,-0.173 -0.996,-0.13 -0.173,0 -0.476,0 -0.866,0.043 -0.303,0.043 -0.52,0.217 -0.65,0.52 -0.043,0.173 -0.043,0.347 -0.086,0.433 -0.13,0.39 -0.13,0.779 0.086,1.083 0.087,0.173 0.217,0.26 0.26,0.303 0.13,0.043 0.216,0.086 0.26,0.173 0.13,0.13 0.217,0.26 0.303,0.347 0.087,0.043 0.26,0.043 0.476,-0.043 0.173,-0.043 0.39,0 0.52,0.086 0.086,0.043 0.13,0.173 0.086,0.303 -0.173,0.303 -0.26,0.52 -0.26,0.563 0,0.303 0.086,0.606 0.303,0.909 0.173,0.346 0.389,0.52 0.693,0.606 0.346,-0.043 0.649,0 0.866,0.087 l 0.086,0.173 c 0,0.087 -0.086,0.217 -0.216,0.39 -0.087,0.52 -0.087,0.823 0.086,0.996 0.173,0.086 0.303,0.216 0.39,0.346 0.043,0.217 0.086,0.39 0.086,0.477 0.303,0.433 0.477,0.822 0.477,1.125 0,0.086 0,0.173 -0.043,0.26 0.217,-0.476 0.52,-0.736 1.039,-0.736 0.477,0 0.736,0.173 0.866,0.52 -0.086,0.39 0.043,0.649 0.303,0.779 l 0.692,0.303 c 0.173,0.433 0.303,0.736 0.433,0.779 0.649,0.346 1.039,0.52 1.212,0.476 0.086,-0.13 0.26,-0.26 0.433,-0.39 0.303,-0.13 0.563,-0.26 0.823,-0.26 0.347,-0.043 0.563,-0.043 0.693,-0.13 0.216,-0.346 0.433,-0.606 0.563,-0.693 0.217,-0.13 0.563,-0.043 1.126,0.26 0.52,0.26 0.779,0.52 0.823,0.693 -0.217,0.303 -0.303,0.563 -0.26,0.823 0.086,0.13 0.303,0.346 0.692,0.649 0.39,0.346 0.65,0.52 0.823,0.52 0.043,0 0.173,-0.087 0.389,-0.216 0.13,-0.173 0.347,-0.173 0.65,-0.13 0.216,0.086 0.476,0.259 0.779,0.563 0.39,0.563 0.606,0.823 0.65,0.866 0.13,0.303 0.086,0.563 -0.043,0.866 -0.217,0.303 -0.52,0.52 -0.996,0.649 -0.26,0.043 -0.65,0.13 -1.126,0.217 l -0.39,0.26 -0.043,0.173 c 0.043,0.173 0.52,0.563 1.342,1.169 0.26,0.13 0.39,0.347 0.346,0.693 -0.086,0.303 -0.129,0.52 -0.129,0.649 0,0 0.086,0.13 0.216,0.39 0.13,0.087 0.346,0.13 0.606,0.043 0.303,-0.173 0.477,-0.39 0.477,-0.693 0,-0.433 0,-0.736 0.043,-0.823 l 0.13,-0.086 c 0.303,-0.086 0.477,0 0.563,0.216 l 0.217,0.606 c 0.086,0.173 0.39,0.26 0.779,0.26 0.563,-0.043 0.866,-0.043 0.909,0 0.13,0.13 0.13,0.346 0.13,0.563 -0.043,0.173 0,0.303 0.043,0.346 0.043,0.043 0.347,0.13 0.91,0.216 0.519,0.087 0.822,0.26 0.952,0.563 0,0.13 0,0.433 -0.043,0.909 -0.043,0.217 0.086,0.39 0.346,0.52 0.303,0.087 0.52,0.173 0.606,0.217 l 0.953,0.39 c 0.086,0.043 0.346,-0.087 0.693,-0.347 0.476,-0.303 0.692,-0.476 0.736,-0.476 0.173,-0.086 0.39,-0.13 0.649,-0.173 0.52,-0.13 0.996,-0.043 1.342,0.26 l 0.303,0.26 c 0.216,0.13 0.563,0.173 0.953,0.13 l 0.13,-0.043 c 0.043,-0.173 0.086,-0.39 0,-0.736 -0.043,-0.303 -0.043,-0.563 0.043,-0.649 0.303,-0.086 0.693,0.13 1.04,0.563 0.39,0.433 0.692,0.649 0.952,0.606 l 1.169,-0.216 c 0.087,-0.043 0.217,0 0.347,0.13 0.346,0.173 0.52,0.563 0.52,1.039 -0.043,0.476 -0.087,0.823 -0.087,1.083 1.386,-1.039 2.122,-1.688 2.252,-1.948 0.216,-0.52 0.433,-0.823 0.563,-0.909 0.087,-0.043 0.303,-0.043 0.736,0.043 0.303,0.043 0.519,-0.043 0.519,-0.26 l 0.087,-0.779 -0.13,-0.26 c -0.173,-0.086 -0.476,-0.173 -0.996,-0.303 L 114,113.203 c -0.13,-0.173 -0.39,-0.476 -0.866,-0.823 -0.476,-0.346 -0.692,-0.563 -0.692,-0.736 l 0.043,-0.13 c 0.173,-0.086 0.39,-0.086 0.779,0.043 0.217,0.086 0.563,-0.087 0.91,-0.563 0.303,-0.39 0.519,-0.693 0.606,-0.953 l -0.087,-0.173 c -0.216,-0.303 -0.692,-0.736 -1.472,-1.255 v -0.13 c 0.26,-0.433 0.433,-0.736 0.606,-0.823 0.13,-0.043 0.39,0 0.823,0.13 1.645,0.433 2.814,0.563 3.507,0.433 0.563,-0.087 0.78,-0.563 0.649,-1.429 -0.043,-0.26 -0.216,-0.649 -0.433,-1.083 -0.173,-0.26 -0.26,-0.476 -0.26,-0.606 0.043,-0.217 0.217,-0.303 0.39,-0.26 1.515,0.216 2.338,0.346 2.468,0.39 l 0.173,-0.043 c 0.173,-0.173 0.043,-0.39 -0.303,-0.606 -0.52,-0.346 -0.736,-0.52 -0.823,-0.649 0,-0.13 0,-0.26 0.086,-0.303 0.173,-0.087 0.347,-0.217 0.433,-0.347 0.13,-0.26 0,-0.649 -0.26,-1.212 l 0.043,-0.13 0.216,0.043 c 0.39,0.477 0.823,0.779 1.342,0.953 0.693,0.13 1.212,0.26 1.602,0.39 l 0.173,-0.043 c 0.086,-0.303 0.216,-0.52 0.39,-0.693 0.043,-0.043 0.129,-0.086 0.303,-0.086 0.389,-0.13 0.692,-0.26 0.909,-0.346 0.217,-0.13 0.39,-0.26 0.52,-0.26 0.433,-0.086 0.779,-0.173 0.996,-0.26 0.173,-0.39 0.346,-0.606 0.476,-0.779 0.217,-0.043 0.649,-0.087 1.386,-0.087 0.649,0 1.083,0.173 1.385,0.433 0.173,0.216 0.477,0.52 0.823,0.953 v 0.13 l -0.13,0.303 c 0.043,0.087 0.13,0.173 0.216,0.173 0.823,0.087 1.299,0.173 1.386,0.26 l 0.39,0.26 c 0.303,0.303 0.52,0.563 0.736,0.693 0.303,0.26 0.606,0.346 0.866,0.26 0.13,-0.043 0.216,-0.13 0.26,-0.26 0.086,-0.909 0.173,-1.429 0.216,-1.559 0.043,-0.13 0.216,-0.39 0.563,-0.866 0.216,-0.216 0.26,-0.606 0.13,-1.169 l -0.13,-0.823 c 0,-0.303 0,-0.909 0.13,-1.861 -0.043,-0.217 -0.043,-0.347 0,-0.433 l 0.13,-0.303 c 0.563,-0.26 0.953,-0.52 1.169,-0.649 0.563,-0.563 0.953,-0.823 1.039,-0.823 0.26,-0.043 0.477,0 0.693,0.087 0.26,0.13 0.433,0.173 0.52,0.173 0.13,-0.13 0.303,-0.346 0.52,-0.736 -0.043,-0.13 -0.216,-0.26 -0.563,-0.433 -0.433,-0.173 -0.692,-0.346 -0.779,-0.52 v -0.173 c 0.173,-0.39 0.477,-0.693 0.866,-0.953 0.346,-0.216 0.606,-0.347 0.649,-0.477 0.043,-0.346 0.086,-0.52 0.086,-0.563 0.043,-0.26 -0.086,-0.477 -0.26,-0.52 -0.043,-0.13 -0.26,-0.347 -0.692,-0.65 -0.347,-0.26 -0.433,-0.52 -0.217,-0.779 0.13,-0.216 0.26,-0.303 0.39,-0.303 l 1.256,-0.173 c 0.779,-0.173 1.342,-0.26 1.731,-0.26 0.173,-0.13 0.217,-0.476 0.13,-1.083 -0.086,-0.52 -0.13,-0.822 -0.086,-0.822 l -0.346,-0.303 c -0.043,-1.126 -0.563,-1.949 -1.602,-2.511 -0.39,0.043 -0.693,0.13 -0.866,0.303 -0.216,0.13 -0.346,0.217 -0.476,0.217 -0.39,-0.217 -0.736,-0.39 -1.039,-0.433 0.13,-0.649 0.173,-1.125 0.173,-1.515 -0.043,-0.217 -0.043,-0.39 0,-0.477 0.563,0.043 1.169,-0.043 1.818,-0.216 0.866,-0.217 1.342,-0.606 1.472,-1.212 0,-0.086 0,-0.303 0,-0.52 0.043,-0.563 0,-0.909 -0.13,-0.996 -0.259,-0.216 -0.563,-0.52 -1.039,-0.909 -0.129,-0.086 -0.303,-0.303 -0.519,-0.52 l -0.52,-0.26 c -0.086,-0.043 -0.173,-0.086 -0.346,-0.173 l -1.385,-0.606 c -0.13,-0.043 -0.217,-0.216 -0.347,-0.476 -0.26,-0.39 -0.693,-0.779 -1.299,-1.212 -0.216,-0.216 -0.39,-0.346 -0.39,-0.476 l -0.086,-0.65 c -0.043,-0.173 -0.39,-0.389 -1.083,-0.649 -0.087,-0.043 -0.216,-0.216 -0.347,-0.476 -0.086,-0.303 0,-0.823 0.347,-1.645 0.173,-0.52 0.26,-0.779 0.26,-0.823 l -0.13,-0.13 c -0.13,0.043 -0.433,0.26 -0.953,0.736 -0.909,0.087 -1.342,-0.13 -1.299,-0.779 l -0.13,-0.043 c -0.217,-0.086 -0.346,0 -0.477,0.217 -0.086,0.26 -0.173,0.433 -0.216,0.52 l -0.433,0.39 c -0.173,0.086 -0.476,0 -0.952,-0.13 -0.606,-0.26 -1.256,-0.173 -1.992,0.303 -0.087,0.086 -0.173,0.346 -0.303,0.692 -0.086,0.303 -0.216,0.477 -0.39,0.52 -0.303,-0.043 -0.563,-0.216 -0.736,-0.52 -0.13,-0.303 -0.217,-0.649 -0.13,-0.952 0.173,-0.91 0.217,-1.386 0.217,-1.516 0,-0.303 0,-0.693 -0.043,-1.212 0,-0.346 0.043,-0.779 0.216,-1.385 0,-0.26 -0.129,-0.779 -0.346,-1.472 -0.173,-0.606 -0.26,-1.125 -0.173,-1.472 0.043,-0.303 0.39,-0.736 1.082,-1.342 0.52,-0.476 0.649,-0.953 0.347,-1.472 -0.26,-0.26 -0.563,-0.39 -0.953,-0.39 -0.13,-0.086 -0.173,-0.346 -0.216,-0.779 -0.173,0.13 -0.39,0.173 -0.649,0.173 -0.433,-0.043 -0.693,-0.173 -0.78,-0.39 -0.086,-0.13 -0.086,-0.433 -0.086,-0.953 -0.086,-0.563 -0.043,-1.212 0,-2.035 0.086,-0.649 0.173,-1.082 0.26,-1.342 0.043,-0.173 0.347,-0.563 0.866,-1.212 0.477,-0.649 0.823,-1.126 1.04,-1.299 0.13,-0.173 0.433,-0.347 0.822,-0.649 0.563,-0.477 0.953,-1.039 1.04,-1.732 0.043,-0.173 -0.043,-0.39 -0.173,-0.606 -0.173,-0.563 -0.26,-0.866 -0.303,-0.952 0,-0.347 0.087,-0.649 0.39,-0.823 0.087,-0.086 0.347,-0.216 0.823,-0.477 -0.13,-0.086 -0.736,-0.129 -1.862,-0.173 -1.126,-0.044 -1.732,-0.13 -1.775,-0.173 -0.043,-0.086 -0.043,-0.433 0,-1.039 -0.086,0 -0.216,-0.043 -0.39,-0.043 -0.649,-0.13 -1.559,-0.13 -2.728,0.043 -0.303,0 -0.736,-0.086 -1.385,-0.26 -0.217,0 -0.52,0 -0.953,0.086 -0.13,-0.043 -0.39,-0.13 -0.779,-0.346 -0.043,-0.043 -0.26,-0.086 -0.649,-0.26 -0.173,-0.043 -0.52,-0.217 -1.126,-0.52 -0.52,-0.26 -0.909,-0.39 -1.083,-0.39 -0.13,0 -0.303,0.086 -0.606,0.26 0,0 -0.216,0.043 -0.52,0.086 -0.216,-0.086 -0.39,-0.173 -0.52,-0.303 -0.087,-0.043 -0.346,0 -0.693,0.13 -0.086,0.043 -0.26,0.13 -0.476,0.26 -0.173,0.043 -0.433,0.13 -0.823,0.173 -0.043,0 -0.433,0.13 -1.083,0.39 -0.13,0.087 -0.433,0.173 -0.779,0.26 -0.346,0.13 -0.953,0.433 -1.775,0.909 -0.303,0.087 -0.736,0.087 -1.386,0.043 -0.173,0.043 -0.433,0.13 -0.736,0.26 -0.606,0.216 -1.256,0.347 -1.992,0.303 l -0.823,-0.043 c -0.173,-0.043 -0.433,-0.043 -0.736,-0.13 -0.52,0.043 -1.212,0.26 -2.122,0.606 -0.26,0.043 -0.736,-0.13 -1.342,-0.389 -0.217,-0.087 -0.477,-0.087 -0.823,-0.13 -0.043,0 -0.996,0.087 -2.814,0.26 -0.216,0.043 -0.476,0.086 -0.866,0.173 l -1.559,0.13 c -0.26,0 -1.126,0.043 -2.555,0.087 -0.216,0.086 -0.39,0.303 -0.52,0.563 -0.086,0.173 -0.216,0.39 -0.39,0.649 -0.174,0.259 -0.303,0.433 -0.346,0.52 -0.693,0.649 -1.039,1.039 -1.083,1.039 -0.043,0.13 -0.13,0.563 -0.216,1.256 -0.087,0.26 -0.13,0.433 -0.13,0.563 -0.04,0.473 -0.127,0.993 -0.3,1.426", + "Vinnytsia": "m 222.9375,137.40624 c -0.13,0.563 -0.201,0.952 -0.375,1.125 -0.174,0.173 -0.47425,0.369 -0.90625,0.5 -0.39,0.173 -0.71375,0.29575 -0.84375,0.46875 -0.216,0.39 -0.3505,0.6385 -0.4375,0.8125 -0.13,0.346 -0.19425,0.6395 -0.28125,0.8125 -0.216,0.303 -0.67025,0.39175 -1.40625,0.21875 -0.779,-0.217 -1.27125,-0.34375 -1.53125,-0.34375 -0.477,0.26 -0.8465,0.44425 -1.0625,0.53125 l -0.78125,0.21875 c -0.043,-0.217 -0.2595,-0.491 -0.5625,-0.75 -0.442,-0.4 -0.81025,-0.43575 -1.15625,-0.21875 -0.52,0.216 -0.82025,0.34375 -0.90625,0.34375 -0.736,-0.433 -1.322,-0.55575 -1.625,-0.46875 -0.087,0.043 -0.29075,0.34325 -0.59375,0.90625 -0.303,0.52 -0.653,0.832 -1,0.875 -0.39,0.087 -0.8365,-0.0525 -1.3125,-0.3125 -0.736,-0.347 -1.1005,-0.55075 -1.1875,-0.59375 -0.043,0 -0.4565,0.0838 -1.0625,0.34375 -0.13,0 -0.3795,0.081 -0.8125,0.125 -0.779,0.086 -1.2635,0.125 -1.4375,0.125 l -0.5625,-0.125 c -0.173,0 -0.62625,0.076 -1.40625,0.25 -0.563,0.216 -1.04075,0.33875 -1.34375,0.46875 -0.606,0.173 -1.08375,0.24325 -1.34375,0.15625 -0.433,-0.173 -0.784,-0.30075 -1,-0.34375 -0.303,-0.087 -1.34225,0.028 -3.03125,0.375 -0.13,0.043 -0.25775,-0.008 -0.34375,-0.0937 l -0.0625,0 c -0.043,0.39 -0.11325,0.663 -0.15625,0.75 -0.043,0.043 -0.317,0.0743 -0.75,0.0312 -0.52,0 -0.7685,-0.005 -0.8125,0.125 0.606,0.39 0.957,0.67475 1,0.71875 -0.13,0.433 -0.46825,0.77125 -1.03125,1.03125 -0.52,-0.13 -0.909,-0.21875 -1.125,-0.21875 -0.13,0.087 -0.2645,0.31025 -0.4375,0.65625 -0.173,0.39 -0.26275,0.65125 -0.21875,0.78125 0.26,0.26 0.726,0.448 1.375,0.75 0.433,0.347 0.6435,0.6775 0.6875,0.9375 0,0.216 -0.115,0.563 -0.375,1.125 -0.347,0.779 -0.60825,1.24 -0.78125,1.5 -0.043,0.086 -0.18925,0.27125 -0.40625,0.53125 l 0.0625,0.15625 c 0.303,0.217 0.5155,0.491 0.6875,0.75 0.086,0.26 -0.003,0.5105 -0.21875,0.8125 -0.303,0.26 -0.5525,0.221 -0.8125,-0.125 -0.086,-0.043 -0.23225,-0.043 -0.40625,0 -0.26,0 -0.42575,0.18425 -0.46875,0.53125 -0.087,0.216 -0.1445,0.45375 -0.1875,0.84375 0,0.043 0.45325,0.43975 1.40625,1.21875 l 0,0.125 c -0.043,0.086 -0.279,0.23225 -0.625,0.40625 -0.216,0.13 -0.293,0.35325 -0.25,0.65625 0.043,0.216 0.20775,0.37 0.46875,0.5 0.433,0.13 1.17875,0.1925 2.21875,0.0625 0.086,0 0.23225,0.2555 0.40625,0.6875 0.173,0.477 0.2315,0.71375 0.1875,0.84375 -1.212,0.216 -1.641,0.57375 -1.25,1.09375 l 0.28125,0.46875 c 0.086,0.13 0.125,0.442 0.125,0.875 l 0.25,0.125 0.4375,0.0937 c 0.259,0.043 0.375,0.2595 0.375,0.5625 -0.043,0.173 -0.0185,0.4235 -0.0625,0.8125 0,0.087 0.12175,0.361 0.46875,0.75 l 0.0937,0.0937 c 0.26,0.39 0.2795,0.6775 0.0625,0.9375 -0.346,0.346 -0.5195,0.5955 -0.5625,0.8125 -0.043,0.13 -0.043,0.2255 0,0.3125 0.043,0.39 0.32975,0.8365 0.71875,1.3125 0.13,0.303 0.1485,0.725 0.0625,1.375 0.173,0.649 0.26275,0.98825 0.21875,1.03125 -0.13,0.173 -0.25775,0.28125 -0.34375,0.28125 -0.823,0 -1.4615,0.0848 -1.9375,0.34375 l -0.34375,0.25 c -0.217,0.39 -0.3945,0.6015 -0.4375,0.6875 -0.216,0.173 -0.447,0.2315 -0.75,0.1875 -0.26,-0.043 -0.45975,-0.1825 -0.71875,-0.3125 -0.216,-0.26 -0.4325,-0.42575 -0.5625,-0.46875 -0.477,-0.086 -0.8465,-0.19425 -1.0625,-0.28125 -0.39,-0.346 -0.69025,-0.55075 -0.90625,-0.59375 -0.78,-0.303 -1.21375,-0.38 -1.34375,-0.25 -0.087,0.13 -0.202,0.36775 -0.375,0.84375 -0.13,0.39 -0.29475,0.65125 -0.46875,0.78125 -0.606,-0.086 -1.0095,-0.17575 -1.3125,-0.21875 -0.476,0.043 -0.83375,0.0625 -1.09375,0.0625 l -0.0312,0.0314 c -0.043,0.043 -0.0937,0.081 -0.0937,0.125 -0.13,0.216 -0.17575,0.53575 -0.21875,0.96875 l -0.375,0.46875 c -0.043,0.13 -0.005,0.35425 0.125,0.65625 l 0,0.15625 -0.125,0.0937 c -0.476,-0.043 -0.788,0.1345 -0.875,0.4375 -0.043,0.13 -0.121,0.47325 -0.25,0.90625 -0.13,0.216 -0.442,0.43525 -0.875,0.78125 -0.173,0 -0.23825,0.076 -0.28125,0.25 0.043,0.303 -0.0905,0.692 -0.4375,1.125 -0.087,0.26 -0.043,0.457 0,0.5 0.692,0.779 0.802,1.23325 0.5,1.40625 l -0.5625,0.28125 c -0.086,0 -0.125,0.077 -0.125,0.25 -0.043,0.173 -0.043,0.29975 0,0.34375 0.086,0.216 0.2205,0.51725 0.4375,0.90625 0.303,1.082 0.4375,1.6445 0.4375,1.6875 l -0.125,0.5625 c -0.13,0.52 -0.0217,1.3175 0.28125,2.3125 l 0.28125,0.71875 c 0,0.086 0.076,0.20875 0.25,0.46875 0.13,0.173 0.125,0.35725 0.125,0.53125 -0.086,0.043 -0.163,0.0937 -0.25,0.0937 -0.346,-0.129 -0.5575,-0.18075 -0.6875,-0.0937 l -0.0937,0.0937 0.15625,1 0.0937,0.28125 c 0,0 -0.008,0.12775 -0.0937,0.34375 -0.043,0.086 -0.0312,0.60275 -0.0312,1.46875 0,0.39 -0.115,0.88225 -0.375,1.53125 -0.303,0.693 -0.456,1.153 -0.5,1.5 0.26,-0.043 0.87225,0.307 1.78125,1 0.13,0.13 0.3845,0.3025 0.6875,0.5625 0.043,0.13 0.24,0.6575 0.5,1.4375 0.13,0.433 0.19525,0.78975 0.28125,1.09375 0.26,1.646 0.48325,2.534 0.65625,2.75 0.0806,0.12182 0.28887,0.19967 0.5625,0.28125 0.086,0 0.21375,-0.0195 0.34375,-0.0625 0.477,-0.043 0.9665,-0.1775 1.3125,-0.4375 0.477,-0.303 0.67575,-0.46875 0.71875,-0.46875 0.173,0.13 0.2745,0.3415 0.1875,0.6875 -0.043,0.39 -0.0548,0.663 0.0312,0.75 l 0.125,0.0937 c 1.083,0.39 1.65125,0.582 1.78125,0.625 0.346,0 0.8695,-0.12775 1.5625,-0.34375 0.476,-0.217 0.87675,-0.28625 1.09375,-0.15625 0.086,0.043 0.201,0.0693 0.375,0.15625 l 0.125,0.15625 c 0.086,0.043 0.1825,0.121 0.3125,0.25 0.086,0.087 0.245,0.2595 0.375,0.5625 0.26,0.303 0.52225,0.5195 0.78125,0.5625 l 0.75,0.3125 c 0.043,0.043 0.12,0.0625 0.25,0.0625 0.173,0.086 0.3455,0.394 0.5625,1 0.216,0.563 0.4285,0.9705 0.6875,1.1875 0.13,0.216 0.481,0.45375 1,0.84375 0.52,0.477 1.13125,0.70025 1.78125,0.65625 0.217,0.087 0.55525,0.21875 1.03125,0.21875 0.996,0.043 1.56525,0.26625 1.78125,0.65625 0.086,0.303 0.11825,0.692 0.0312,1.125 -0.087,0.26 -0.17075,0.605 -0.34375,1.125 -0.13,0.519 0.067,0.826 0.5,1 0.433,0.086 0.7205,-0.0213 0.9375,-0.28125 0.216,-0.346 0.3505,-0.60825 0.4375,-0.78125 0.087,-0.217 0.31425,-0.28125 0.53125,-0.28125 0.26,0 0.413,0.0642 0.5,0.28125 0.043,0.086 0.0625,0.40575 0.0625,0.96875 0,0.39 0.12775,0.65125 0.34375,0.78125 0.433,0.26 0.7595,0.336 1.0625,0.25 0.13,-0.043 0.442,-0.26725 0.875,-0.65625 0.26,-0.217 0.4325,-0.27625 0.5625,-0.40625 0.13,-0.13 0.21375,-0.2695 0.34375,-0.3125 0.173,-0.086 0.365,-0.0977 0.625,0.0312 0.216,0.086 0.32025,0.168 0.40625,0.125 0.216,-0.26 0.36225,-0.36325 0.40625,-0.40625 0.216,-0.086 0.40125,-0.0675 0.53125,0.0625 0.173,0.173 0.33975,0.43025 0.46875,0.90625 0.043,0.173 0.0235,0.485 -0.0625,0.875 -0.086,0.563 -0.40575,1.05425 -0.96875,1.53125 -0.043,0.043 -0.15125,0.081 -0.28125,0.125 l -0.15625,0.25 c -0.217,0.13 -0.3125,0.2255 -0.3125,0.3125 -0.043,0.173 -0.0352,0.3845 0.0937,0.6875 0.086,0.26 0.2595,0.3945 0.5625,0.4375 0.303,0.043 0.615,-0.18025 0.875,-0.65625 0.347,-0.606 0.62175,-1.02625 0.96875,-1.15625 0.26,-0.087 0.495,-0.17975 0.625,-0.0937 0.52,0.477 0.72375,0.98 0.59375,1.5 -0.043,0.13 -0.197,0.3025 -0.5,0.5625 0,0.043 0.0702,0.2155 0.15625,0.5625 0.13,0.26 0.21375,0.62175 0.34375,0.96875 0.129,0.303 0.36,0.50275 0.75,0.71875 0.086,-0.173 0.15625,-0.288 0.15625,-0.375 0,-0.866 0.10725,-1.4715 0.28125,-1.6875 l 0.15625,-0.25 c 0,0 0.658,-0.57425 2,-1.65625 0.086,-0.043 0.1825,-0.0937 0.3125,-0.0937 0.043,0 0.16975,0.0195 0.34375,0.0625 0.303,0.043 0.731,0.10825 1.25,0.28125 0.779,0.086 1.11325,0.1875 1.15625,0.1875 0.086,0.043 0.34825,0.26625 0.78125,0.65625 l 0.21875,0 c 0.086,-0.087 0.38725,-0.15625 0.90625,-0.15625 0.346,0 0.53125,0.0195 0.53125,0.0625 0.216,0.087 0.5045,0.2595 0.9375,0.5625 0.173,0.043 0.45475,0.048 0.84375,-0.125 0.217,0.043 0.4715,0.196 0.6875,0.5 0.26,0.303 0.375,0.62675 0.375,0.84375 0,0.173 -0.0898,0.37275 -0.21875,0.71875 0,0.303 0.26225,0.64125 0.78125,1.03125 0.086,0.217 0.0977,0.6675 -0.0312,1.1875 l 0.8125,0.9375 0,0.0625 c 0.173,0 0.6195,-0.12675 1.3125,-0.34375 0.823,-0.26 1.29575,-0.4325 1.46875,-0.5625 0,-0.043 0.16575,-0.32375 0.46875,-0.84375 0.26,-0.433 0.56025,-0.783 0.90625,-1 0.477,-0.26 0.77625,-0.46375 0.90625,-0.59375 0.043,-0.173 0.005,-0.562 -0.125,-1.125 -0.173,-0.606 -0.16125,-0.96375 -0.0312,-1.09375 0.953,-0.52 1.5145,-0.68075 1.6875,-0.59375 0.303,0.477 0.6725,0.83375 1.0625,1.09375 l 0.4375,0.25 c 0.043,0.043 0.13175,0.12775 0.21875,0.34375 0.086,0.087 0.2205,0.207 0.4375,0.25 1.212,0.52 1.86325,0.81925 1.90625,0.90625 0.303,0 0.68025,-0.0263 1.15625,-0.15625 0.26,0 0.67925,0.008 1.15625,0.0937 0.39,0.043 0.7545,-0.008 1.1875,-0.0937 0.217,0 0.4325,-0.12775 0.5625,-0.34375 0.13,-0.043 0.31425,-0.081 0.53125,-0.125 0.649,-0.173 1.08475,-0.486 1.34375,-0.875 l 0.15625,0 c 0.086,0.043 0.1445,0.13175 0.1875,0.21875 0.086,0.129 0.36,0.2595 0.75,0.5625 0.39,0.217 0.59375,0.34375 0.59375,0.34375 0.216,0.13 0.72,0.17575 1.5,0.21875 1.039,0.043 1.778,0 2.125,0 0.26,-0.043 0.6295,-0.1395 1.0625,-0.3125 0.216,0 0.43525,0.0965 0.78125,0.3125 l 0.0625,-0.0312 0.0937,-0.15625 c -0.086,-0.39 -0.0937,-0.6015 -0.0937,-0.6875 0.086,-0.087 0.1875,-0.13175 0.1875,-0.21875 0.346,-0.476 0.346,-0.93025 0,-1.40625 l -0.4375,-0.625 c -0.39,-0.477 -0.39,-0.865 0,-1.125 0.173,-0.13 0.3505,-0.168 0.4375,-0.125 0.13,0.043 0.21375,0.1775 0.34375,0.4375 0.087,0 0.34825,-0.0955 0.78125,-0.3125 0.389,-0.303 0.701,-0.418 0.875,-0.375 0.26,-0.173 0.413,-0.37 0.5,-0.5 0.044,-0.086 -0.008,-0.21475 -0.0937,-0.34375 0.216,-0.347 0.414,-0.60825 0.5,-0.78125 l -0.0626,-0.2812 c -0.043,-0.087 -0.125,-0.15225 -0.125,-0.28125 0.087,-0.217 0.125,-0.36325 0.125,-0.40625 l -0.0312,-0.15625 c -0.909,-0.13 -1.38275,-0.32875 -1.46875,-0.71875 0.606,-0.693 0.9705,-1.38225 1.1875,-2.03125 -0.044,-0.953 0.008,-1.48325 0.0937,-1.65625 0.086,-0.216 0.30925,-0.47825 0.65625,-0.78125 0.433,-0.432 0.75,-0.6445 0.75,-0.6875 l 0.46875,-0.59375 c 0.216,-0.346 0.38275,-0.60825 0.46875,-0.78125 0.217,-0.216 0.485,-0.49 0.875,-0.75 0.476,-0.303 0.8075,-0.35375 0.9375,-0.0937 0.087,0.217 0.048,0.57375 -0.125,1.09375 0.173,0.086 0.3075,0.38625 0.4375,0.90625 0.087,0.477 0.202,0.7255 0.375,0.8125 0.087,0 0.2255,-0.0195 0.3125,-0.0625 0.693,-0.606 1.05075,-1.00275 1.09375,-1.21875 0.043,-0.346 0.0507,-0.60825 0.0937,-0.78125 0.043,-0.173 0.0702,-0.17575 0.15625,-0.21875 0.086,-0.043 0.399,-0.081 0.875,-0.125 0.39,0 0.58875,-0.1005 0.71875,-0.1875 0.33985,-0.46717 0.62664,-0.79235 0.71875,-0.96875 -0.002,-0.005 0.003,-0.0262 0,-0.0312 -0.0885,-0.16805 -0.2788,-0.3413 -0.53125,-0.59375 -0.39,-0.347 -1.00225,-0.29525 -1.78125,0.0937 -0.693,0.347 -1.12,0.47375 -1.25,0.34375 -0.173,-0.26 -0.135,-0.5095 0.125,-0.8125 0.13,-0.13 0.35325,-0.3465 0.65625,-0.5625 0.173,-0.216 0.25675,-0.53575 0.34375,-0.96875 0.303,0 0.52725,-0.1345 0.65625,-0.4375 0.13,-0.26 0.15625,-0.46375 0.15625,-0.59375 l -0.125,-0.65625 c -0.043,-0.346 -0.2155,-0.697 -0.5625,-1 l -0.5,-0.6875 c 0,0 -0.1345,-0.2495 -0.4375,-0.8125 -0.216,-0.52 -0.3555,-0.99275 -0.3125,-1.46875 0.087,-0.52 0.0752,-0.82025 0.0312,-0.90625 l -0.125,-0.0937 -1.15625,-0.4375 c -0.13,-0.043 -0.3025,-0.1395 -0.5625,-0.3125 -0.823,-0.563 -1.207,-1.03575 -1.25,-1.46875 l 0,-0.375 c 0.173,-0.26 0.4995,-0.534 1.0625,-0.75 l 0.0625,-0.15625 -0.0625,-0.15625 c -0.216,-0.13 -0.47825,-0.23825 -0.78125,-0.28125 0,-0.259 -0.0195,-0.42575 -0.0625,-0.46875 l 0,-0.21875 -0.0937,-0.0937 c -1.255,0.129 -2.09825,0.12225 -2.53125,-0.0937 -0.173,-0.086 -0.23825,-0.399 -0.28125,-0.875 0,-0.563 -0.0195,-0.90125 -0.0625,-1.03125 -0.086,-0.347 -0.11325,-0.60725 -0.15625,-0.78125 -0.129,-0.563 -0.21875,-0.875 -0.21875,-0.875 -0.649,-0.173 -1.00675,-0.25775 -1.09375,-0.34375 -0.13,-0.13 -0.245,-0.4565 -0.375,-1.0625 0.433,-0.26 0.69525,-0.495 0.78125,-0.625 0.043,-0.13 0.005,-0.33375 -0.125,-0.59375 -0.216,-0.563 -0.49775,-0.875 -0.84375,-0.875 -0.303,0.043 -0.496,0.043 -0.625,0 -0.087,-0.173 -0.31025,-0.3465 -0.65625,-0.5625 -0.303,-0.173 -0.4375,-0.288 -0.4375,-0.375 l 0.375,-0.40625 c 0.043,-0.173 0.1055,-0.4225 0.0625,-0.8125 0.173,-0.173 0.43525,-0.26275 0.78125,-0.21875 l 0.0625,-0.0937 c 0.086,-0.13 0.0245,-0.35325 -0.0625,-0.65625 -0.173,-0.303 -0.27725,-0.4755 -0.40625,-0.5625 -0.65,0 -1.12275,-0.0263 -1.46875,-0.15625 -0.217,-0.043 -0.33875,-0.16575 -0.46875,-0.46875 -0.303,-0.606 -0.1685,-1.17925 0.4375,-1.65625 0.173,-0.173 0.45375,-0.3455 0.84375,-0.5625 l 0.28125,-0.125 0.84375,-0.46875 c 0,-0.087 -0.0145,-0.44375 -0.1875,-1.09375 0.086,-0.303 0.50125,-0.5525 1.28125,-0.8125 0.043,-0.13 -0.0397,-0.43025 -0.34375,-0.90625 -0.216,-0.39 -0.0765,-0.7215 0.3125,-0.9375 0.173,-0.39 0.0267,-0.62675 -0.40625,-0.84375 -0.52,-0.347 -0.86325,-0.57025 -0.90625,-0.65625 l 0,-0.1875 c 0.043,-0.087 0.18925,-0.18925 0.40625,-0.40625 0.26,-0.216 0.38275,-0.3125 0.46875,-0.3125 -0.043,-0.39 -0.12,-0.663 -0.25,-0.75 l -0.375,-0.0312 c -0.433,0.217 -0.7585,0.298 -1.0625,0.125 -0.043,-0.346 -0.1445,-0.58875 -0.1875,-0.71875 -0.26,-0.303 -0.3895,-0.54575 -0.5625,-0.71875 -0.217,-0.953 -0.54075,-1.457 -0.84375,-1.5 -0.996,-0.043 -1.5585,-0.0888 -1.6875,-0.21875 -0.086,-0.043 -0.17575,-0.471 -0.21875,-1.25 -0.043,-0.173 -0.1775,-0.4275 -0.4375,-0.6875 -0.216,-0.216 -0.30575,-0.51725 -0.21875,-0.90625 0.043,-0.346 0.2595,-0.60825 0.5625,-0.78125 0.996,-0.649 1.456,-1.0145 1.5,-1.1875 l 0.0625,-0.90625 c -0.043,-0.087 -0.18525,-0.437 -0.53125,-1 -0.303,-0.563 -0.46875,-0.94025 -0.46875,-1.15625 0.043,-0.173 0.1775,-0.3075 0.4375,-0.4375 0.303,-0.086 0.4375,-0.2255 0.4375,-0.3125 l -0.0625,-0.125 c 0.043,-0.389 0.1055,-0.68925 0.0625,-0.90625 0,-0.13 -0.269,-0.3025 -0.875,-0.5625 -0.649,-0.26 -1.0145,-0.61 -1.1875,-1 -0.173,-0.52 -0.173,-1.11175 0,-1.71875 0.086,-0.086 0.1875,-0.19525 0.1875,-0.28125 0.26,-0.433 0.34375,-0.7595 0.34375,-1.0625 -0.13,-0.303 -0.43025,-0.4765 -0.90625,-0.5625 -0.52,0 -0.908,-0.038 -1.125,-0.125 -0.129,-0.173 -0.3805,-0.18075 -0.8125,-0.0937 -0.173,0.13 -0.3845,0.39125 -0.6875,0.78125 -0.216,0.346 -0.5485,0.60825 -0.9375,0.78125 -0.173,0.086 -0.41575,0.0665 -0.71875,-0.0625 -0.347,-0.173 -0.56925,-0.21875 -0.65625,-0.21875 -0.173,0.043 -0.55025,0.18925 -1.15625,0.40625 -0.13,0.173 -0.21875,0.3845 -0.21875,0.6875 -0.043,0.433 -0.0625,0.6875 -0.0625,0.6875 -0.476,-0.086 -0.7635,-0.11325 -0.9375,-0.15625 -0.346,0.043 -0.658,0.0625 -0.875,0.0625 -0.433,0 -0.8025,0.0625 -1.0625,0.0625 l -1.1875,0.125 c -0.346,-0.087 -0.60825,-0.1445 -0.78125,-0.1875 -0.649,-0.13 -1.153,-0.19425 -1.5,-0.28125 -0.303,0.13 -0.4755,0.21875 -0.5625,0.21875 -0.303,0.086 -0.654,0.0362 -1,-0.0937 -0.39,-0.173 -0.62,-0.33375 -0.75,-0.59375 0.303,-0.39 0.539,-0.702 0.625,-0.875 0.043,-0.086 -0.0838,-0.2985 -0.34375,-0.6875 -0.217,-0.347 -0.34775,-0.697 -0.21875,-1 l -0.0937,-0.125 c -0.52,-0.216 -0.788,-0.414 -0.875,-0.5 -0.087,-0.26 0.17025,-0.7395 0.90625,-1.5625 0.692,-0.78 1.01175,-1.19425 0.96875,-1.28125 -0.563,-0.26 -0.9715,-0.4715 -1.1875,-0.6875 -0.39,-0.303 -0.64625,-0.8645 -0.90625,-1.6875 0.043,-0.26 0.1055,-0.495 0.0625,-0.625 -0.13,-0.346 -0.1875,-0.5575 -0.1875,-0.6875 0.26,-0.563 0.34375,-0.8515 0.34375,-0.9375 -0.26,-0.26 -0.69975,-0.44425 -1.21875,-0.53125 0.13,-0.433 0.28125,-0.67575 0.28125,-0.71875 l -0.0938,-0.1567 c -0.129,-0.043 -0.596,-0.0888 -1.375,-0.21875 -0.736,-0.087 -1.1435,-0.125 -1.1875,-0.125 z", + "Ivano-Frankivsk": "m 101.1875,154.62499 c -0.018,0.0141 -0.0126,0.0826 -0.0312,0.0937 -0.216,0.13 -0.4285,0.13 -0.6875,0 -0.13,-0.086 -0.366,-0.17075 -0.625,-0.34375 l -0.25,0.1875 c -0.173,0.043 -0.6195,-0.307 -1.3125,-1 -0.173,-0.086 -0.43525,-0.206 -0.78125,-0.25 -0.303,-0.043 -0.4755,-0.043 -0.5625,0 -1.429,0.39 -2.27025,0.6055 -2.53125,0.5625 -0.173,-0.043 -0.61275,-0.0888 -1.21875,-0.21875 -0.217,0.13 -0.4325,0.41075 -0.5625,0.84375 -0.043,0.086 -0.13175,0.2205 -0.21875,0.4375 -0.043,0.086 0.077,0.31025 0.25,0.65625 0.216,0.39 0.256,0.78575 0.125,1.21875 -0.043,0.13 -0.34325,0.4615 -0.90625,0.9375 -0.433,0.433 -0.586,0.79075 -0.5,1.09375 0.087,0.173 0.235,0.3465 0.625,0.5625 0.389,0.26 0.65125,0.44425 0.78125,0.53125 0,0.39 -0.114,0.62675 -0.375,0.84375 -0.173,0.13 -0.49775,0.3025 -0.84375,0.5625 -0.043,0.087 -0.11325,0.24 -0.15625,0.5 -0.086,0.216 -0.12,0.331 -0.25,0.375 -0.13,0.043 -0.48,0.125 -1,0.125 -0.606,0.043 -1.04175,0.12 -1.34375,0.25 -0.26,0.086 -0.3565,0.32975 -0.3125,0.71875 0.043,0.303 0.18925,0.50775 0.40625,0.59375 0.173,0.086 0.4275,-0.0525 0.6875,-0.3125 0.39,-0.346 0.61325,-0.5625 0.65625,-0.5625 0.13,-0.043 0.283,0.0145 0.5,0.1875 0.346,0.173 0.423,0.4275 0.25,0.6875 -0.216,0.433 -0.34375,0.6435 -0.34375,0.6875 0,0.346 0.05075,0.8305 0.09375,1.4375 l 0.0625,0.15625 c 0.216,0.173 0.51725,0.26175 0.90625,0.21875 0.433,-0.13 0.7205,-0.21875 0.9375,-0.21875 0.173,0.433 0.43525,0.8465 0.78125,1.0625 0.086,0.217 -0.1245,0.62725 -0.6875,1.40625 -0.173,0.173 -0.3465,0.26275 -0.5625,0.21875 -0.13,-0.043 -0.3025,-0.1775 -0.5625,-0.4375 -0.39,-0.13 -1.05875,0.0163 -1.96875,0.40625 -0.13,0.087 -0.29575,0.16975 -0.46875,0.34375 -0.996,0.476 -1.5955,0.73825 -1.8125,0.78125 -0.259,0 -0.649,0.0118 -1.125,-0.0312 -0.13,0.087 -0.43025,0.25175 -0.90625,0.46875 -0.433,0.216 -0.74,0.24325 -1,0.15625 -0.909,-0.303 -1.48325,-0.46875 -1.65625,-0.46875 -0.52,0 -0.95475,0.30025 -1.34375,0.90625 -0.173,0.346 -0.288,0.5195 -0.375,0.5625 -0.13,0 -0.56475,-0.16475 -1.34375,-0.46875 -0.563,-0.26 -0.93925,-0.26775 -1.15625,-0.0937 -0.043,0.043 -0.1775,0.279 -0.4375,0.625 -0.087,0.13 -0.2645,0.15625 -0.4375,0.15625 -1.429,0.043 -2.25175,0.1055 -2.46875,0.0625 -0.52,-0.043 -1.12725,-0.201 -1.90625,-0.375 -0.606,-0.043 -1.21825,0.16075 -1.78125,0.59375 l 0.09375,0 c -0.303,0.26 -0.4755,0.36325 -0.5625,0.40625 -0.13,0.13 -0.25275,0.76175 -0.46875,1.84375 0,0.13 -0.1005,0.33375 -0.1875,0.59375 -0.043,0.173 -0.13175,0.39725 -0.21875,0.65625 -0.303,0.477 -0.95325,1.058 -1.90625,1.75 -0.39,0.26 -0.5625,0.456 -0.5625,0.5 -0.087,1.169 -0.15125,1.99175 -0.28125,2.46875 -0.043,0.216 -0.27125,0.7785 -0.53125,1.6875 0.606,0.563 0.8985,1.2785 0.8125,2.1875 -0.043,0.563 -0.2165,1.3545 -0.5625,2.4375 -0.303,1.299 -0.5145,2.04575 -0.6875,2.21875 0.563,0.13 1.336,0.38725 2.375,0.90625 0.087,0.043 0.44875,0.427 0.96875,1.25 l 0.4687,0.5312 c 0.26,0.39 0.42075,0.6385 0.59375,0.8125 0.173,0.129 0.41575,0.169 0.71875,0.125 0.346,-0.129 0.5575,-0.206 0.6875,-0.25 0.346,-0.086 0.693,-0.0362 1.125,0.0937 0.26,0.086 0.3945,0.15625 0.4375,0.15625 0.13,0.13 0.11825,0.42925 0.03125,0.90625 -0.086,0.52 -0.09775,0.866 0.03125,1.125 0.13,0.173 0.35325,0.35725 0.65625,0.53125 0.346,0.173 0.57025,0.3515 0.65625,0.4375 0.087,0.303 0.21475,0.5145 0.34375,0.6875 0,0 0.30025,0.008 0.90625,0.0937 0.433,0.043 0.784,0.236 1,0.625 0.26,0.39 0.331,0.71375 0.375,0.84375 0,0.086 -0.08875,0.4955 -0.21875,1.1875 -0.13,0.52 -0.06075,0.87775 0.15625,1.09375 0.217,0.13 0.43425,0.17975 0.78125,0.0937 0.26,-0.043 0.5135,-0.16975 0.6875,-0.34375 0.216,-0.303 0.33875,-0.4755 0.46875,-0.5625 l 0.59375,-0.4375 c 0.606,-0.043 1.08275,-0.1015 1.34375,-0.1875 0.303,-0.13 0.62275,-0.25275 0.96875,-0.46875 0.347,-0.347 0.5955,-0.5575 0.8125,-0.6875 0.39,-0.216 0.70875,-0.216 0.96875,0 0,0.043 -0.05075,0.44375 -0.09375,1.09375 -0.087,0.476 -0.01675,0.91075 0.15625,1.34375 0,0.173 -0.038,0.41575 -0.125,0.71875 -0.173,0.909 -0.16125,1.8205 -0.03125,2.6875 0.086,0.823 0.35325,1.3415 0.65625,1.6875 0.346,0.303 0.93975,0.42575 1.71875,0.46875 0.952,0 1.573,-0.12275 1.875,-0.46875 0.303,-0.606 0.453,-1.04575 0.625,-1.21875 l 0.15625,-0.0312 c 0,0 0.10225,0.115 0.40625,0.375 0.26,0.173 0.4765,0.3075 0.5625,0.4375 0.173,0.217 0.2305,0.49675 0.1875,0.84375 0,0.346 -0.01175,0.6005 0.03125,0.6875 0.26,-0.043 0.648,-0.043 1.125,0 0.26,0.39 0.4325,0.58875 0.5625,0.71875 0.347,0.216 0.66975,0.452 0.84375,0.625 l 2.0625,1.96875 0.4375,0.9375 c 0.043,0.173 0.18925,0.37775 0.40625,0.59375 0,0.043 0.03125,0.0693 0.03125,0.15625 0.043,0.087 0.2205,0.361 0.4375,0.75 0,0.087 -0.1725,0.432 -0.5625,1.125 -0.433,0.822 -0.05575,1.78125 1.15625,2.90625 0.26,0.26 1.0565,1.15975 2.3125,2.71875 l 0.03125,0.1875 c -0.086,0.173 -0.3025,0.3855 -0.5625,0.6875 -0.13,0.173 -0.31425,0.47325 -0.53125,0.90625 -0.563,0.909 -0.88175,1.606 -0.96875,2.125 l -0.15625,0.59385 -0.03125,0.125 c 0,0.043 0.05075,0.0625 0.09375,0.0625 0.692,0.217 1.16575,0.4225 1.46875,0.8125 0.13,0.173 0.29075,0.4665 0.59375,0.8125 0.563,0.346 0.86325,0.58875 0.90625,0.71875 0.043,0.086 0.0235,0.34825 -0.0625,0.78125 -0.087,0.346 -0.0168,0.5525 0.15625,0.8125 0.52,0.606 1.0045,0.9335 1.4375,1.0625 0.346,0.043 0.60825,0.1015 0.78125,0.1875 0.216,0.26 0.42075,0.44425 0.59375,0.53125 0.216,0.13 0.644,0.163 1.25,0.25 0.217,0.086 0.82925,1.02575 1.78125,2.84375 0.13,0.173 0.206,0.3515 0.25,0.4375 0.043,0.13 0.19425,0.404 0.28125,0.75 0.13,0.303 0.33475,0.456 0.59375,0.5 0.173,0.043 0.35725,0.0548 0.53125,-0.0312 l 0.0312,-0.0312 -0.0312,-0.5 0,-0.40625 c 0.086,-0.779 0.26725,-1.5375 0.65625,-2.1875 l 0.46875,-1 c 0.13,-0.13 0.206,-0.25775 0.25,-0.34375 0.303,-0.779 0.35375,-1.38725 0.0937,-1.90625 -0.173,-0.52 -0.3125,-0.8085 -0.3125,-0.9375 0.043,-0.649 0.043,-0.98325 0,-1.15625 0,-0.13 -0.20475,-0.5045 -0.59375,-0.9375 -0.216,-0.216 -0.3945,-0.63125 -0.4375,-1.28125 -0.043,-0.693 -0.082,-1.1775 -0.125,-1.4375 -0.13,-0.649 0.336,-1.76525 1.375,-3.28125 0.13,-0.216 0.25675,-0.68975 0.34375,-1.46875 0.086,-0.649 0.3415,-1.0965 0.6875,-1.3125 0.649,0.13 1.0965,0.01 1.3125,-0.25 0.39,-0.477 0.6435,-0.77625 0.6875,-0.90625 0.173,-0.303 0.3515,-0.577 0.4375,-0.75 0.216,-0.303 0.42075,-0.456 0.59375,-0.5 0.52,0 0.832,-0.0507 0.875,-0.0937 0.043,-0.13 0.0118,-0.3075 -0.0312,-0.4375 -0.13,-0.26 -0.21875,-0.38275 -0.21875,-0.46875 -0.043,-0.173 -0.0625,-0.4275 -0.0625,-0.6875 0,-0.173 0.0195,-0.31925 0.0625,-0.40625 0.216,-0.563 0.5055,-0.913 0.9375,-1 0.52,-0.216 0.832,-0.331 0.875,-0.375 0.433,-0.649 0.77125,-1.12175 1.03125,-1.46875 0.173,-0.217 0.25675,-0.37 0.34375,-0.5 0.346,-0.563 0.62775,-0.9285 0.84375,-1.1875 0.346,-0.347 1.0235,-0.92025 2.0625,-1.65625 0.347,-0.346 0.658,-0.62 0.875,-0.75 0.779,-0.477 1.75675,-0.8075 2.96875,-0.9375 l 0.15625,-0.0312 c 0.823,0 1.25775,-0.0118 1.34375,0.0312 0.346,0.086 0.54575,0.2255 0.71875,0.3125 0.26,0.129 0.4325,0.19425 0.5625,0.28125 0.26,0.043 0.42075,0.0665 0.59375,-0.0625 0.086,-0.13 0.18925,-0.62125 0.40625,-1.53125 0.086,-0.39 0.125,-0.663 0.125,-0.75 0.043,-0.086 0.076,-1.287 0.25,-3.625 -0.13,-0.216 -0.207,-0.4325 -0.25,-0.5625 l -0.34375,-1 c -0.216,-0.433 -0.288,-0.783 -0.375,-1 -0.346,-1.429 -0.4855,-2.25175 -0.3125,-2.46875 l 0.46875,-0.5625 c 0.26,-0.303 0.42075,-0.46475 0.59375,-0.59375 0.433,-0.216 0.702,-0.42075 0.875,-0.59375 l 0,-0.0312 0.0312,0 c 0.303,-0.26 0.44425,-0.42075 0.53125,-0.59375 l 0,-0.34375 c -0.13,-0.216 -0.3465,-0.3505 -0.5625,-0.4375 -0.217,-0.087 -0.375,-0.1825 -0.375,-0.3125 0,-0.303 0.20375,-0.5525 0.59375,-0.8125 0.087,-0.13 0.087,-0.31525 0,-0.53125 -0.087,-0.174 -0.1835,-0.332 -0.3125,-0.375 -0.52,-0.303 -0.75775,-0.539 -0.84375,-0.625 -0.303,-0.606 -0.52625,-0.88275 -0.65625,-0.96875 -0.217,-0.13 -0.53575,-0.2695 -0.96875,-0.3125 -0.476,-0.043 -0.77625,-0.1445 -0.90625,-0.1875 -0.216,-0.129 -0.55525,-0.322 -1.03125,-0.625 l -0.53125,-0.15625 c -0.1945,-0.1735 -0.31125,-0.33225 -0.34375,-0.5 -0.0325,-0.16775 0.036,-0.31725 0.1875,-0.46875 l 0.375,-0.40625 0,-0.21875 c -0.346,-0.434 -0.735,-0.59875 -1.125,-0.46875 l -0.125,0.0937 c 0,0.043 -0.0118,0.20875 0.0312,0.46875 0,0.216 -0.039,0.38275 -0.125,0.46875 -0.174,0.087 -0.4995,0.053 -1.0625,-0.25 -0.563,-0.26 -0.952,-0.3605 -1.125,-0.1875 -0.13,0.13 -0.1105,0.48 0.0625,1 0.217,0.476 0.18475,0.85825 -0.0312,1.03125 -0.087,0.087 -0.13275,0.15625 -0.21875,0.15625 -0.087,-0.043 -0.2215,-0.0888 -0.4375,-0.21875 -0.173,-0.129 -0.3515,-0.18075 -0.4375,-0.0937 -0.216,0.087 -0.4325,0.399 -0.5625,0.875 -0.172,0.476 -0.365,0.7255 -0.625,0.8125 -0.3675,-0.065 -0.65975,-0.1855 -0.84375,-0.375 -0.184,-0.1895 -0.25975,-0.447 -0.28125,-0.75 -0.044,-0.346 0.0457,-0.60825 0.21875,-0.78125 0.087,-0.13 0.514,-0.2265 1.25,-0.3125 0.693,-0.043 1.08875,-0.158 1.21875,-0.375 0.044,-0.217 -0.0457,-0.40125 -0.21875,-0.53125 -0.346,0 -0.62,-0.0702 -0.75,-0.15625 -0.217,-0.303 -0.38275,-0.495 -0.46875,-0.625 -0.216,-0.172 -0.447,-0.22375 -0.75,-0.0937 -0.216,0.087 -0.47825,0.41075 -0.78125,0.84375 l -0.15625,0.0312 -0.125,-0.0937 c -0.087,-0.216 -0.0675,-0.47325 0.0625,-0.90625 0.217,-0.433 0.375,-0.73325 0.375,-0.90625 -0.086,-0.259 -0.13675,-0.452 -0.0937,-0.625 0.26,-0.779 0.418,-1.17575 0.375,-1.21875 l -0.0937,-0.0937 c -0.433,-0.043 -0.7545,0.1295 -1.1875,0.5625 -0.087,0.087 -0.1825,0.27125 -0.3125,0.53125 -0.173,0.346 -0.25,0.50775 -0.25,0.59375 -0.043,0.606 -0.17575,0.96375 -0.21875,1.09375 -0.173,-0.043 -0.365,-0.0118 -0.625,0.0312 -0.217,-0.087 -0.34375,-0.2595 -0.34375,-0.5625 0,-0.39 -0.0507,-0.65125 -0.0937,-0.78125 l -0.46875,-0.8125 -0.0937,-0.0625 0.0625,-0.375 0.15625,-0.21875 0.28125,-0.125 0.0625,-0.125 c 0.087,-0.26 0.0285,-0.457 -0.1875,-0.5 -0.649,-0.26 -1.08875,-0.42575 -1.21875,-0.46875 l -0.4689,-0.6565 c -0.26,-0.304 -0.49,-0.42975 -0.75,-0.34375 -0.043,0.087 -0.0937,0.0937 -0.0937,0.0937 -0.563,0.347 -0.90125,0.5195 -1.03125,0.5625 -0.347,0.044 -0.653,-0.0788 -1,-0.46875 -0.173,-0.216 -0.3125,-0.4705 -0.3125,-0.6875 l 0,-0.78125 c -0.044,-0.173 -0.2545,-0.409 -0.6875,-0.625 -0.433,-0.26 -0.71375,-0.34375 -0.84375,-0.34375 l -0.15625,-0.0625 c -0.087,-0.043 -0.163,-0.1395 -0.25,-0.3125 -0.173,-0.26 -0.211,-0.60325 -0.125,-0.90625 l 0.0937,-0.125 c 0.302,-0.13 0.687,-0.0412 1.25,0.21875 0.519,0.303 0.947,0.36825 1.25,0.28125 0.173,-0.217 0.3125,-0.37 0.3125,-0.5 -0.086,-0.217 -0.17575,-0.3895 -0.21875,-0.5625 0,-0.563 -0.0507,-0.95875 -0.0937,-1.21875 -0.086,-0.217 -0.17575,-0.36325 -0.21875,-0.40625 -0.303,-0.26 -0.68025,-0.32425 -1.15625,-0.28125 -0.173,-0.043 -0.404,-0.17075 -0.75,-0.34375 -0.26,0.086 -0.61775,0.317 -1.09375,0.75 -0.087,0 -0.15125,-0.10825 -0.28125,-0.28125 -0.216,-0.347 -0.2735,-0.70375 -0.1875,-1.09375 0.043,-0.389 0.0547,-0.73325 -0.0312,-0.90625 l -0.21875,-0.5625 c -0.043,-0.173 0.12275,-0.447 0.46875,-0.75 0.39,-0.346 0.55575,-0.812 0.46875,-1.375 -0.087,-0.737 -0.202,-1.202 -0.375,-1.375 -0.519,0 -0.81925,-0.14625 -0.90625,-0.40625 -0.086,-0.779 -0.13275,-1.3845 -0.21875,-1.6875 -0.13,-0.346 -0.207,-0.58875 -0.25,-0.71875 0,-0.216 0.0263,-0.409 0.15625,-0.625 0.174,-0.26 0.21875,-0.42575 0.21875,-0.46875 l -0.21875,-0.375 c -0.043,-0.13 -0.202,-0.48 -0.375,-1 L 104,159.28124 c -0.303,-0.563 -0.5575,-1.02125 -0.6875,-1.28125 -0.476,-0.866 -0.73325,-1.35825 -0.90625,-1.53125 -0.476,-0.606 -0.8845,-1.18025 -1.1875,-1.65625 l -0.0312,-0.1875 z", + "Sumy": "m 361.701,28.558 c 0.216,-0.303 0.303,-0.477 0.347,-0.563 -0.043,-0.086 -0.347,-0.346 -0.866,-0.823 -0.13,0 -0.26,0.087 -0.433,0.26 -0.26,0.347 -0.39,0.52 -0.433,0.52 -0.39,0.39 -0.91,0.303 -1.516,-0.303 0,-0.043 -0.043,-0.087 -0.043,-0.13 -0.216,0.173 -0.433,0.606 -0.563,1.255 -0.216,0.823 -0.346,1.299 -0.39,1.429 -0.216,0.303 -0.346,0.52 -0.433,0.693 l -0.39,0.736 c -0.043,0.13 -0.043,0.346 0,0.606 0.086,0.26 0.13,0.476 0.086,0.563 -0.086,0.216 -0.216,0.346 -0.26,0.39 -0.476,0.26 -0.779,0.476 -0.866,0.606 -0.173,0.216 -0.217,0.52 -0.173,0.996 v 0.563 c 0.13,0.779 0.173,1.256 0.173,1.386 l 0.086,-0.086 c 0.303,0.173 0.779,0.346 1.515,0.476 0,0 0.087,0.086 0.26,0.216 l 0.52,0.477 c 0.13,0.13 0.303,0.39 0.519,0.736 0.087,0.086 0.217,0.216 0.433,0.39 0.13,0.303 0.217,0.52 0.26,0.563 0.087,0.086 0.52,0.086 1.299,0.086 0,0.13 -0.086,0.606 -0.216,1.516 -0.563,0.39 -1.342,0.52 -2.338,0.346 l -0.13,-0.13 c 0,-0.216 -0.086,-0.39 -0.216,-0.52 -0.13,0 -0.26,0.043 -0.433,0.173 -0.086,0.086 -0.13,0.476 -0.086,1.039 0.043,0.693 0.043,1.125 0,1.342 -0.087,0.13 -0.303,0.303 -0.563,0.476 l -0.043,0.086 0.043,0.043 c 0.043,0.043 0.086,0.13 0.13,0.26 0.52,0.693 0.736,1.255 0.649,1.645 -0.087,0.13 -0.173,0.173 -0.26,0.173 -0.563,0 -0.91,0 -1.039,0.043 -0.13,0.13 -0.39,0.26 -0.736,0.39 l -1.039,0.346 -0.13,0.087 -0.043,0.13 c -0.433,0 -0.736,0 -0.909,0.086 -0.043,0.043 -0.13,0.216 -0.173,0.52 -0.91,-0.13 -1.516,-0.13 -1.862,0 -0.13,0.043 -0.173,0.216 -0.216,0.477 0,0.086 0.043,0.216 0.173,0.39 l -0.043,0.173 c -0.39,0.087 -0.692,0.173 -0.909,0.303 -0.086,0.043 -0.173,0.216 -0.216,0.476 -0.086,0.347 -0.13,0.563 -0.173,0.649 0,0 -0.173,0.173 -0.52,0.477 -0.173,0.13 -0.433,0.39 -0.736,0.779 -0.347,0.433 -0.52,0.909 -0.477,1.472 0,0.173 0.087,0.693 0.303,1.515 0.13,0.606 0.303,1.039 0.563,1.299 0.086,0.087 0.476,0.347 1.169,0.866 0.303,0.216 0.563,0.433 0.736,0.649 0.043,0.173 -0.13,0.52 -0.563,1.083 -0.13,0.086 -0.173,0.173 -0.173,0.216 -0.086,0.39 -0.043,0.649 0.13,0.736 0.173,0.043 0.346,0.087 0.52,0.043 0.13,0.217 0.173,0.563 0.173,1.169 0,0.649 0,1.083 0,1.212 0.173,0.043 0.39,0.173 0.563,0.303 0.087,0.086 0.13,0.216 0.13,0.433 -0.563,0.087 -0.91,0.173 -1.04,0.347 -0.043,0.13 0,0.476 0.087,1.125 0.476,0.347 0.736,0.606 0.822,0.693 0.043,0.086 0.173,0.216 0.303,0.347 -0.39,0.52 -0.649,0.779 -0.693,0.866 -0.606,-0.303 -1.039,-0.563 -1.342,-0.693 l -0.043,0.13 c 0.346,0.606 0.476,1.083 0.433,1.472 -0.086,0.13 -0.346,0.303 -0.779,0.433 l -0.087,0.173 c 0.087,0.39 0.087,0.78 0,1.169 l 0.087,0.13 c 0.216,0.043 0.476,0.216 0.692,0.433 l 0.043,0.173 c -0.303,0.216 -0.433,0.433 -0.433,0.606 0.217,0.477 0.303,0.909 0.173,1.299 -0.26,0.216 -0.693,0.39 -1.255,0.476 -0.52,0.043 -0.866,-0.043 -0.996,-0.39 -0.13,-0.39 -0.26,-0.693 -0.433,-0.909 -0.13,-0.043 -0.303,-0.087 -0.563,-0.087 -0.303,0.477 -0.433,0.823 -0.433,1.126 0.39,0.39 0.606,0.823 0.563,1.212 0.043,0.086 0.13,0.13 0.26,0.173 0.39,-0.086 0.606,-0.086 0.692,-0.043 0.217,0.216 0.26,0.476 0.217,0.779 -0.173,0.303 -0.303,0.563 -0.347,0.736 v 0.173 c 0.52,0.26 0.823,0.52 0.909,0.823 -0.303,0.303 -0.433,0.52 -0.476,0.606 0.26,0.476 0.346,0.779 0.346,0.996 -0.086,0.173 -0.303,0.303 -0.692,0.477 -0.433,0.13 -0.649,0.303 -0.649,0.476 0.216,0.433 0.26,0.909 0.129,1.299 -0.129,0.217 -0.476,0.39 -1.125,0.52 -0.606,0.129 -0.953,0.259 -0.996,0.346 0.26,0.216 0.26,0.606 -0.043,1.125 l 0.39,0.39 c 0.086,0.087 0.086,0.173 0.043,0.303 -0.303,0.433 -0.52,0.736 -0.606,0.953 l -0.476,0.866 0.043,0.087 c 0.52,0.086 0.953,0.173 1.342,0.346 0.26,0.086 0.736,0.26 1.472,0.606 0.477,-0.173 0.693,-0.26 0.78,-0.216 l 0.129,0.086 c 0.13,0.217 0.173,0.433 0.087,0.563 -0.477,0.173 -0.736,0.346 -0.736,0.477 l -0.043,0.173 c 0.13,0.26 0.649,0.52 1.515,0.779 0.823,0.303 1.342,0.39 1.516,0.303 0.173,-0.086 0.433,-0.649 0.866,-1.646 0.173,0.043 0.52,0.173 1.039,0.347 l 0.13,0.13 c 0,0.043 -0.303,0.52 -0.822,1.472 -0.26,0.216 -0.477,0.39 -0.606,0.563 -0.216,0.217 -0.346,0.477 -0.303,0.693 0,0.13 0.347,0.477 1.126,1.039 -0.173,0.303 -0.26,0.52 -0.303,0.649 0.217,1.559 0.173,2.468 -0.173,2.685 -0.13,0.043 -0.303,0 -0.563,-0.043 -0.217,0.433 -0.39,0.736 -0.433,0.953 0,0.39 -0.043,0.649 -0.086,0.823 l -0.433,1.125 c -0.173,0.477 -0.173,1.212 0,2.251 0.173,0.173 0.433,0.433 0.779,0.779 0.086,0.043 0.26,0.087 0.476,0.173 0,0.043 0.043,0.216 0.087,0.563 0,0.303 -0.13,0.52 -0.433,0.693 -0.433,0.26 -0.693,0.433 -0.779,0.563 0,1.169 0,1.775 -0.086,1.819 -0.477,0.13 -0.736,0.259 -0.78,0.433 0.087,0.13 0.087,0.26 0.087,0.477 0.086,0.26 0.173,0.39 0.173,0.433 0,1.04 -0.26,2.079 -0.823,3.031 -0.217,0.39 -0.433,0.736 -0.52,1.04 0,0.216 0,0.389 -0.043,0.52 l 0.476,0.216 c 0.173,0.043 0.477,0.26 0.953,0.606 0.477,-0.346 0.91,-0.433 1.256,-0.216 0.086,0.043 0.26,0.173 0.476,0.346 0,0 0.217,0.043 0.52,0.043 0.347,0 0.52,0 0.649,-0.043 0.173,-0.216 0.303,-0.649 0.39,-1.299 l 0.13,-0.13 1.429,0.043 c 0.26,0 0.433,0.086 0.563,0.346 0.086,0.13 0.173,0.347 0.303,0.649 0.086,0 0.26,0 0.52,-0.086 0.26,-0.043 0.433,-0.043 0.476,0.043 0.173,0.13 0.39,0.303 0.606,0.563 0.216,0.13 0.476,0.26 0.736,0.303 0.779,0.086 1.905,0.173 3.42,0.216 l 1.862,0.347 c 0.477,0.086 1.212,0.173 2.208,0.303 0.087,0 0.347,0.13 0.693,0.347 0.13,0.043 0.303,0.13 0.563,0.216 0.866,0.433 1.385,0.693 1.559,0.736 0.13,-0.043 0.303,-0.173 0.563,-0.52 0.216,-0.303 0.476,-0.433 0.736,-0.433 l 0.779,0.086 c 0.477,0.043 0.866,0.086 1.169,0.217 0.087,-0.217 0.087,-0.39 0.087,-0.563 -0.606,-0.346 -0.953,-0.563 -1.126,-0.649 l -0.043,-0.13 c 0.043,-0.173 0.13,-0.303 0.303,-0.39 0.217,-0.13 0.693,-0.347 1.386,-0.563 0.693,-0.303 1.169,-0.433 1.342,-0.433 l 0.129,0.087 c 0.26,0.433 0.606,0.866 1.04,1.255 0.216,0.173 0.953,0.563 2.251,1.126 0.13,0.043 0.303,0.173 0.606,0.346 0.26,0.173 0.433,0.173 0.606,0.043 0.043,-0.13 0.043,-0.26 -0.043,-0.433 -0.043,-0.173 -0.087,-0.347 0,-0.433 0.26,-0.26 0.476,-0.433 0.606,-0.39 0.217,0 0.52,0.173 0.953,0.433 0.13,-0.13 0.173,-0.346 0.086,-0.649 -0.043,-0.347 -0.086,-0.563 -0.043,-0.649 0.13,-0.087 0.476,-0.087 1.082,0.043 l 0.087,-0.39 0.086,-0.086 c 0.476,-0.13 0.866,-0.13 1.169,0.043 0.087,-0.13 0.173,-0.433 0.26,-0.78 0.26,0.13 0.736,0.303 1.386,0.52 l 0.043,0.129 c -0.129,0.65 -0.173,1.775 -0.086,3.334 0,0.39 0.217,0.866 0.649,1.472 0.043,0.043 0.303,0.347 0.779,0.866 0.13,0.086 0.303,0.26 0.477,0.563 0.26,0.217 0.693,0.606 1.342,1.039 0.346,0.39 0.52,0.736 0.52,1.04 0.043,0.173 -0.043,0.346 -0.26,0.649 -0.173,0.26 -0.26,0.476 -0.26,0.649 0.043,0.303 0.086,0.52 0.086,0.649 0.086,0.953 0.26,1.515 0.563,1.688 h 0.173 c 0,0 0.087,-0.173 0.26,-0.52 0.13,-0.216 0.26,-0.303 0.52,-0.216 0.173,0.086 0.303,0.13 0.347,0.216 0.13,0.173 0.173,0.303 0.173,0.433 l 0.043,0.649 c 0,0.043 0.13,0.13 0.433,0.216 0.086,0.086 0.13,0.433 0.086,0.996 0.649,0.173 1.083,0.346 1.342,0.52 0.347,0.303 0.433,0.692 0.303,1.255 -0.173,0.606 -0.563,0.823 -1.256,0.649 l -0.13,0.086 c -0.216,0.736 -0.303,1.256 -0.216,1.516 0.216,0 0.39,0 0.563,0.086 0,0 -0.043,0.303 -0.13,0.823 l 0.043,0.13 0.13,0.087 c 0.216,-0.043 0.433,-0.26 0.693,-0.52 0.13,-0.13 0.779,-0.26 1.948,-0.52 0.217,-0.043 0.433,0.043 0.649,0.217 0.26,0.216 0.433,0.346 0.563,0.346 0.433,0.043 1.083,0.043 1.949,0 0.303,-0.086 0.476,-0.39 0.563,-0.823 0.087,-0.52 0.216,-0.822 0.39,-0.866 h 0.173 c 0.433,0.346 0.692,0.563 0.779,0.693 l 0.216,0.043 c 0.303,-0.13 0.736,-0.39 1.212,-0.779 l 0.13,-0.043 c 0.346,-0.433 0.649,-0.606 0.866,-0.563 1.602,0.346 2.511,0.693 2.728,0.996 0.043,0 0.303,-0.13 0.823,-0.346 0.389,-0.173 0.563,-0.39 0.649,-0.563 0.13,-0.693 0.26,-1.083 0.39,-1.212 l 0.173,-0.043 c 0,0 0.086,0.13 0.216,0.303 0.086,0.13 0.303,0.303 0.606,0.52 0.346,0.26 0.606,0.347 0.693,0.347 0.086,-0.043 0.173,-0.26 0.303,-0.606 -0.217,-0.346 -0.303,-0.606 -0.39,-0.822 0,-0.087 0.173,-0.217 0.433,-0.347 0.26,-0.13 0.477,-0.26 0.693,-0.39 0.13,0 0.346,0.173 0.693,0.563 l 0.13,-0.043 c 0.13,-0.086 0.26,-0.433 0.39,-0.952 0.086,-0.433 0.303,-0.693 0.606,-0.78 0.13,-0.043 0.347,-0.086 0.563,0 l 0.52,0.043 0.779,0.39 0.477,0.39 c 0.043,0 0.303,-0.086 0.736,-0.26 0.347,-0.13 0.606,-0.26 0.736,-0.39 0.13,-0.173 0.087,-0.52 -0.173,-1.039 0,-0.086 0.043,-0.216 0.173,-0.39 0.173,-0.26 0.433,-0.303 0.823,-0.173 0.173,0.043 0.346,0.087 0.433,0.217 h 0.173 l 0.347,-0.303 v -0.13 l -0.39,-0.433 c 0,-0.13 0.26,-0.39 0.736,-0.693 0.173,-0.043 0.433,0.043 0.823,0.303 0.39,0.26 0.693,0.39 0.866,0.433 0.347,-0.26 0.433,-0.866 0.173,-1.732 l 0.086,-0.13 c 0.39,-0.216 0.996,0 1.905,0.606 0.909,0.606 1.386,0.909 1.516,0.909 l 0.086,-0.13 c 0,-0.216 -0.173,-0.476 -0.606,-0.822 0.13,-0.087 0.259,-0.13 0.433,-0.087 1.039,0.26 1.688,0.303 1.905,0.173 0.086,-0.086 0.26,-0.216 0.433,-0.39 0.129,-0.043 0.649,0.086 1.602,0.346 0.649,0.173 1.126,0.043 1.429,-0.433 0.173,-0.303 0.26,-0.563 0.173,-0.866 -0.173,0.043 -0.303,0.043 -0.346,0.043 -0.52,-0.086 -1.169,-0.347 -1.862,-0.866 -0.477,-0.259 -0.779,-0.476 -0.909,-0.649 -0.13,-0.13 -0.173,-0.563 -0.173,-1.255 -0.043,-0.779 -0.13,-1.342 -0.26,-1.732 -0.086,-0.173 -0.173,-0.26 -0.216,-0.346 -0.347,-0.39 -0.823,-0.649 -1.472,-0.736 -0.779,-0.086 -1.212,-0.216 -1.385,-0.346 -0.13,-0.086 -0.303,-0.39 -0.52,-0.909 -0.26,-0.433 -0.433,-1.169 -0.52,-2.208 -0.043,-0.087 -0.13,-0.52 -0.39,-1.299 -0.13,-0.39 -0.26,-1.039 -0.476,-1.905 l -0.173,-0.217 c -0.043,-0.173 -0.086,-0.26 -0.13,-0.26 0.043,-0.39 0.477,-0.736 1.342,-1.125 0.909,-0.39 1.429,-0.649 1.516,-0.779 -0.043,-0.087 -0.217,-0.217 -0.477,-0.346 -0.26,-0.173 -0.39,-0.347 -0.433,-0.433 -0.043,-0.13 0,-0.39 0.086,-0.866 0.13,-0.52 0.173,-0.909 0.13,-1.125 -0.087,-1.083 -0.303,-1.775 -0.736,-2.078 -0.043,0 -0.346,-0.173 -0.866,-0.477 -0.217,-0.086 -0.346,-0.216 -0.39,-0.303 -0.13,-0.129 -0.13,-0.433 -0.087,-0.866 0.087,-0.563 0.087,-0.866 0.087,-0.996 -0.043,-0.13 -0.26,-0.347 -0.563,-0.606 -0.346,-0.303 -0.52,-0.476 -0.563,-0.606 -0.043,-0.13 0,-0.52 0.13,-1.126 0.086,-0.52 0.043,-0.909 -0.087,-1.255 -0.216,-0.347 -0.433,-0.563 -0.736,-0.606 -0.39,-0.086 -0.693,-0.13 -0.909,-0.173 -0.087,-0.217 -0.043,-0.52 0.043,-0.909 0.043,-0.433 0.087,-0.693 0.043,-0.823 -0.173,-0.173 -0.303,-0.303 -0.39,-0.433 l -0.043,-0.173 0.13,-0.173 c 0.347,-0.217 0.866,-0.303 1.516,-0.303 0.303,-0.13 0.52,-0.346 0.692,-0.649 0.26,-0.476 0.13,-0.823 -0.303,-1.039 -0.087,-0.043 -0.477,-0.216 -1.256,-0.477 -0.346,-0.13 -0.52,-0.216 -0.563,-0.216 -0.086,0 -0.606,0.13 -1.515,0.39 -0.866,0.216 -1.516,0.26 -1.905,0.13 -0.433,-0.086 -0.822,-0.52 -1.082,-1.212 0,-0.173 0.043,-0.433 0.13,-0.692 -0.043,-0.52 -0.173,-0.953 -0.39,-1.342 -0.433,-0.823 -0.649,-1.256 -0.606,-1.299 -0.043,-0.26 0.043,-0.606 0.13,-1.126 0.043,-0.173 0,-0.346 -0.086,-0.606 -0.086,-0.433 -0.173,-0.736 -0.303,-0.823 -0.346,0 -0.606,0 -0.736,-0.086 -0.087,-0.173 -0.173,-0.303 -0.216,-0.39 -0.26,-0.173 -0.736,0.043 -1.559,0.563 -0.086,0 -0.346,-0.13 -0.736,-0.433 -0.39,-0.26 -0.823,-0.347 -1.299,-0.217 -0.303,0.043 -0.52,0.217 -0.649,0.433 -0.13,0.346 -0.26,0.52 -0.39,0.606 -0.087,0.043 -0.52,0.13 -1.299,0.26 -0.043,0 -0.303,0.13 -0.779,0.39 -0.303,0.087 -0.477,0.173 -0.606,0.217 -1.083,0.433 -2.381,0.476 -3.854,0.173 -0.606,-0.13 -0.909,-0.173 -0.952,-0.217 -0.13,-0.13 -0.303,-0.606 -0.52,-1.429 -0.216,-0.823 -0.346,-1.255 -0.346,-1.255 l -0.173,-0.087 c -1.429,0.347 -2.468,0.477 -3.074,0.303 -0.693,-0.303 -1.083,-0.476 -1.126,-0.52 -0.433,0.086 -0.736,0.043 -0.909,0 -0.043,0 -0.216,-0.13 -0.563,-0.346 -0.52,-0.303 -0.996,-0.433 -1.429,-0.39 -0.823,0.043 -1.342,0.217 -1.645,0.52 -0.173,0.26 -0.303,0.477 -0.39,0.606 -0.173,0.26 -0.39,0.346 -0.606,0.346 -0.346,-0.043 -0.823,-0.216 -1.429,-0.52 -0.693,-0.476 -1.169,-0.736 -1.429,-0.736 0.173,-0.087 0.476,-0.217 0.866,-0.347 0.13,-0.086 0.303,-0.173 0.52,-0.303 0.52,-0.39 0.866,-0.996 1.039,-1.688 l 0.13,-0.78 c 0.13,-0.216 0.303,-0.476 0.563,-0.736 0.13,-0.26 0,-0.52 -0.39,-0.823 l -0.043,-0.173 h -0.346 c -0.13,0 -0.39,-0.087 -0.736,-0.217 -0.736,-0.303 -1.299,-0.736 -1.645,-1.385 l -0.173,-0.217 0.043,-0.26 c 0.043,-0.043 0.216,-0.043 0.476,-0.086 0.217,0 0.39,-0.13 0.52,-0.346 0,0 0,0 0.043,-0.043 v -0.043 l 0.086,-0.606 c -0.043,-0.26 -0.129,-0.52 -0.303,-0.823 0,-0.13 0.086,-0.39 0.216,-0.736 0.13,-0.26 0.173,-0.477 0.217,-0.649 l 0.043,-0.39 c 0,-0.043 0,-0.043 0,-0.043 -0.13,-1.126 -0.26,-1.905 -0.433,-2.208 -0.13,-0.216 -0.39,-0.52 -0.822,-0.822 -0.477,-0.347 -0.736,-0.649 -0.866,-0.909 -0.216,-1.083 -0.39,-1.688 -0.433,-1.775 -0.433,-0.13 -0.779,-0.303 -0.996,-0.39 -0.52,-0.216 -0.779,-0.433 -0.822,-0.563 -0.087,-0.563 -0.043,-0.996 0.259,-1.256 0.087,-0.043 0.217,-0.086 0.39,-0.13 0.563,-0.087 0.952,-0.173 1.125,-0.217 0.26,-0.086 0.649,-0.259 1.169,-0.476 0.346,-0.043 0.909,-0.13 1.688,-0.173 0.303,-0.086 0.736,-0.26 1.299,-0.52 0.043,-0.043 0.563,0 1.516,0.043 l 0.52,-0.043 c 0.13,-0.043 0.39,-0.086 0.693,-0.086 0.823,-0.216 1.342,-0.693 1.472,-1.385 0.086,-0.433 -0.043,-0.91 -0.303,-1.472 l -0.13,-0.217 c -0.043,-0.563 -0.13,-0.909 -0.216,-1.083 -0.043,-0.086 -0.26,-0.346 -0.65,-0.822 -0.346,-0.39 -0.476,-0.606 -0.39,-0.736 -0.692,-0.26 -1.125,-0.476 -1.299,-0.52 -0.173,-0.086 -0.346,-0.346 -0.563,-0.779 -0.216,-0.39 -0.476,-0.649 -0.736,-0.693 -0.39,0.26 -0.693,0.433 -0.996,0.477 l -0.129,-0.086 c -0.087,-0.087 -0.13,-0.26 -0.13,-0.477 0.043,-0.303 0,-0.476 -0.086,-0.606 -0.043,-0.087 -0.303,-0.303 -0.822,-0.693 -0.173,-0.13 -0.433,-0.39 -0.649,-0.779 -0.26,-0.433 -0.477,-0.693 -0.65,-0.823 -0.303,-0.216 -0.692,-0.26 -1.125,-0.173 -0.52,0.043 -0.823,0.043 -0.909,0 -0.13,-0.173 -0.043,-0.39 0.26,-0.736 0.346,-0.303 0.346,-0.649 0.043,-1.083 -0.736,-0.953 -1.126,-1.602 -1.213,-1.905 -0.043,-0.13 -0.086,-0.26 -0.086,-0.477 -0.086,-0.216 -0.13,-0.346 -0.086,-0.433 0,-0.26 0.086,-0.606 0.216,-1.083 0,-0.087 -0.043,-0.347 -0.086,-0.823 -0.086,-0.346 -0.086,-0.649 0.043,-0.823 0.087,-0.173 0.303,-0.39 0.606,-0.692 0.043,-0.173 0,-0.26 0,-0.347 -0.086,-0.216 -0.26,-0.52 -0.606,-0.866 -0.043,-0.563 -0.216,-0.953 -0.476,-1.256 -0.216,-0.216 -0.52,-0.476 -1.039,-0.779 -0.996,-0.303 -1.602,-0.563 -1.775,-0.736 -0.173,-0.13 -0.346,-0.563 -0.563,-1.256 -0.26,-0.736 -0.477,-1.255 -0.779,-1.559 -0.26,-0.303 -0.606,-0.52 -1.04,-0.693 -0.433,-0.13 -0.692,-0.303 -0.866,-0.52 -0.13,-0.173 -0.26,-0.433 -0.39,-0.823 -0.173,-0.39 -0.216,-0.692 -0.173,-0.822 0,-0.217 -0.476,-0.347 -1.429,-0.39 -0.52,-0.087 -0.866,-0.087 -1.125,-0.043 -0.303,0.043 -0.52,0.086 -0.649,0.13 -0.649,0.043 -1.472,0.346 -2.425,0.823 -0.909,0.433 -1.386,0.649 -1.429,0.693 -0.649,0.822 -1.169,1.385 -1.602,1.645 -0.303,0.043 -0.52,-0.043 -0.736,-0.26 -0.265,-0.301 -0.309,-0.821 -0.179,-1.556", + "Sevastopol": "m 362.74245,361.41432 c -0.50619,0.63185 -0.61133,1.53551 -0.81623,2.31197 0.0522,0.71515 0.23564,1.39472 0.31184,2.11223 0.3484,1.05315 0.66809,2.32141 -0.17513,3.23547 -0.59356,0.58231 -0.19238,1.61523 0.63529,1.64049 0.16616,0.0738 0.55972,0.25157 0.52271,0.43425 -1.73856,0.48365 -3.89636,0.17073 -5.17882,1.70885 -0.45917,0.75976 0.63218,1.26941 1.09241,1.7046 1.03737,0.22058 2.15441,0.0313 3.22193,0.0967 -0.767,0.13412 -1.76747,-0.23495 -2.37243,0.29255 -0.35309,0.85487 0.91697,1.04582 1.43558,1.45249 0.58335,0.47795 1.31139,0.3566 1.92999,0.0764 0.73536,0.25471 1.05619,1.1619 1.43544,1.78927 0.26705,0.48803 0.0956,1.3 0.84035,1.40729 0.7336,0.0593 1.28859,0.57397 1.68874,1.14191 0.77068,0.49034 1.39182,-0.50557 1.73298,-1.0615 0.35617,-0.45053 0.94168,0.22417 1.3912,-0.18093 0.80137,-0.53816 1.82301,0.64898 2.55725,-0.0844 0.3026,-0.80696 -0.45066,-1.58169 -0.94892,-2.11093 -0.13354,-0.7861 -0.69373,-1.39201 -1.12985,-2.00237 0.0377,-0.8197 -0.52682,-1.48601 -0.60312,-2.27579 -0.32154,-0.91312 -1.4084,-0.8631 -2.16723,-0.9851 -0.50886,-0.6143 -0.73149,-1.67538 0.0716,-2.16196 0.48861,-0.41802 0.80745,-0.98404 0.96575,-1.58142 0.70357,-0.39024 0.36707,-1.20439 -0.28548,-1.40729 -1.17549,-0.55252 -2.57175,-0.24228 -3.8037,-0.5589 -0.60104,0.008 -0.27697,-0.80594 -0.36992,-1.17006 -0.0555,-0.62795 0.84856,-0.49483 1.25048,-0.73179 0.53915,-0.10099 1.49219,-0.51063 0.96902,-1.19418 -0.9688,-0.61646 -2.3375,-0.55448 -3.15635,-1.39523 -0.19904,-0.37827 -0.58554,-0.76794 -1.04541,-0.5026 z", + "Rivne": "m 125.907,46.872 c -0.043,0.606 -0.043,0.953 0,1.039 0.043,0.043 0.649,0.13 1.775,0.173 1.126,0.043 1.732,0.086 1.862,0.173 -0.476,0.26 -0.736,0.39 -0.823,0.477 -0.303,0.173 -0.39,0.476 -0.39,0.823 0.043,0.086 0.13,0.39 0.303,0.952 0.13,0.217 0.216,0.433 0.173,0.606 -0.087,0.693 -0.477,1.255 -1.04,1.732 -0.389,0.303 -0.692,0.476 -0.822,0.649 -0.217,0.173 -0.563,0.649 -1.04,1.299 -0.519,0.649 -0.822,1.039 -0.866,1.212 -0.086,0.26 -0.173,0.692 -0.26,1.342 -0.043,0.823 -0.086,1.472 0,2.035 0,0.52 0,0.823 0.086,0.953 0.087,0.216 0.347,0.346 0.78,0.39 0.259,0 0.476,-0.043 0.649,-0.173 0.043,0.433 0.086,0.693 0.216,0.779 0.39,0 0.693,0.13 0.953,0.39 0.303,0.52 0.173,0.996 -0.347,1.472 -0.692,0.606 -1.039,1.039 -1.082,1.342 -0.087,0.347 0,0.866 0.173,1.472 0.217,0.693 0.346,1.212 0.346,1.472 -0.173,0.606 -0.216,1.039 -0.216,1.385 0.043,0.52 0.043,0.909 0.043,1.212 0,0.13 -0.043,0.606 -0.217,1.516 -0.086,0.303 0,0.649 0.13,0.952 0.173,0.303 0.433,0.477 0.736,0.52 0.173,-0.043 0.303,-0.216 0.39,-0.52 0.13,-0.346 0.216,-0.606 0.303,-0.692 0.736,-0.477 1.385,-0.563 1.992,-0.303 0.476,0.13 0.779,0.216 0.952,0.13 l 0.433,-0.39 c 0.043,-0.087 0.13,-0.26 0.216,-0.52 0.13,-0.217 0.26,-0.303 0.477,-0.217 l 0.13,0.043 c -0.043,0.649 0.39,0.866 1.299,0.779 0.52,-0.476 0.823,-0.693 0.953,-0.736 l 0.13,0.13 c 0,0.043 -0.087,0.303 -0.26,0.823 -0.347,0.822 -0.433,1.342 -0.347,1.645 0.13,0.26 0.26,0.433 0.347,0.476 0.693,0.26 1.039,0.477 1.083,0.649 l 0.086,0.65 c 0,0.13 0.173,0.26 0.39,0.476 0.606,0.433 1.039,0.823 1.299,1.212 0.13,0.26 0.217,0.433 0.347,0.476 l 1.385,0.606 c 0.173,0.086 0.26,0.13 0.346,0.173 l 0.52,0.26 c 0.216,0.217 0.39,0.433 0.519,0.52 0.477,0.39 0.78,0.693 1.039,0.909 0.13,0.087 0.174,0.433 0.13,0.996 0,0.216 0,0.433 0,0.52 -0.13,0.606 -0.606,0.996 -1.472,1.212 -0.649,0.173 -1.256,0.26 -1.818,0.216 -0.043,0.086 -0.043,0.26 0,0.477 0,0.39 -0.043,0.866 -0.173,1.515 0.303,0.043 0.649,0.216 1.039,0.433 0.13,0 0.26,-0.086 0.476,-0.217 0.173,-0.173 0.477,-0.26 0.866,-0.303 1.039,0.563 1.559,1.385 1.602,2.511 l 0.346,0.303 c -0.043,0 0,0.303 0.086,0.822 0.087,0.606 0.043,0.953 -0.13,1.083 -0.39,0 -0.953,0.086 -1.731,0.26 l -1.256,0.173 c -0.13,0 -0.26,0.086 -0.39,0.303 -0.216,0.26 -0.13,0.52 0.217,0.779 0.433,0.303 0.649,0.52 0.692,0.65 0.173,0.043 0.303,0.26 0.26,0.52 0,0.043 -0.043,0.216 -0.086,0.563 -0.043,0.13 -0.303,0.26 -0.649,0.477 -0.39,0.26 -0.693,0.563 -0.866,0.953 v 0.173 c 0.087,0.173 0.347,0.347 0.779,0.52 0.347,0.173 0.52,0.303 0.563,0.433 -0.216,0.39 -0.39,0.606 -0.52,0.736 -0.086,0 -0.26,-0.043 -0.52,-0.173 -0.216,-0.087 -0.433,-0.13 -0.693,-0.087 -0.086,0 -0.476,0.26 -1.039,0.823 -0.216,0.13 -0.606,0.39 -1.169,0.649 l -0.13,0.303 c -0.043,0.086 -0.043,0.216 0,0.433 -0.13,0.952 -0.13,1.559 -0.13,1.861 l 0.13,0.823 c 0.13,0.563 0.086,0.953 -0.13,1.169 -0.347,0.477 -0.52,0.736 -0.563,0.866 -0.043,0.13 -0.13,0.649 -0.216,1.559 -0.043,0.13 -0.13,0.217 -0.26,0.26 -0.26,0.086 -0.563,0 -0.866,-0.26 -0.217,-0.13 -0.433,-0.39 -0.736,-0.693 l -0.39,-0.26 c -0.086,-0.086 -0.563,-0.173 -1.386,-0.26 -0.086,0 -0.173,-0.086 -0.216,-0.173 l 0.13,-0.303 v -0.13 c -0.346,-0.433 -0.649,-0.736 -0.823,-0.953 -0.303,-0.26 -0.736,-0.433 -1.385,-0.433 -0.736,0 -1.169,0.043 -1.386,0.087 -0.13,0.173 -0.303,0.39 -0.476,0.779 -0.217,0.086 -0.563,0.173 -0.996,0.26 -0.13,0 -0.303,0.13 -0.52,0.26 -0.216,0.086 -0.52,0.216 -0.909,0.346 -0.174,0 -0.26,0.043 -0.303,0.086 -0.173,0.173 -0.303,0.39 -0.39,0.693 l -0.173,0.043 c -0.39,-0.13 -0.909,-0.26 -1.602,-0.39 -0.52,-0.173 -0.953,-0.476 -1.342,-0.953 l -0.216,-0.043 -0.043,0.13 c 0.26,0.563 0.39,0.953 0.26,1.212 -0.086,0.13 -0.26,0.26 -0.433,0.347 -0.086,0.043 -0.086,0.173 -0.086,0.303 0.086,0.13 0.303,0.303 0.823,0.649 0.346,0.217 0.476,0.433 0.303,0.606 l -0.173,0.043 c -0.13,-0.043 -0.953,-0.173 -2.468,-0.39 -0.173,-0.043 -0.347,0.043 -0.39,0.26 0,0.13 0.087,0.346 0.26,0.606 0.216,0.433 0.389,0.823 0.433,1.083 0.13,0.866 -0.086,1.342 -0.649,1.429 -0.693,0.13 -1.862,0 -3.507,-0.433 -0.433,-0.13 -0.693,-0.173 -0.823,-0.13 -0.173,0.087 -0.346,0.39 -0.606,0.823 v 0.13 c 0.779,0.52 1.255,0.953 1.472,1.255 l 0.087,0.173 c -0.087,0.26 -0.303,0.563 -0.606,0.953 -0.347,0.476 -0.693,0.649 -0.91,0.563 -0.39,-0.13 -0.606,-0.13 -0.779,-0.043 l -0.043,0.13 c 0,0.173 0.216,0.39 0.692,0.736 0.477,0.347 0.736,0.649 0.866,0.823 l 0.692,1.299 c 0.52,0.13 0.823,0.217 0.996,0.303 l 0.13,0.26 -0.087,0.779 c 0,0.217 -0.216,0.303 -0.519,0.26 -0.433,-0.086 -0.649,-0.086 -0.736,-0.043 -0.13,0.086 -0.346,0.389 -0.563,0.909 -0.13,0.26 -0.866,0.909 -2.252,1.948 0,0.086 0,0.13 0,0.173 0,0.26 0,0.433 0.087,0.52 0.043,0 0.216,0.043 0.52,0.13 0.563,0.13 0.996,0.086 1.342,-0.13 0.476,-0.303 0.822,-0.476 0.996,-0.52 0.043,0 0.217,0 0.52,0.087 0.39,0.086 0.649,0.346 0.823,0.779 0.13,0.346 0.13,0.736 0,1.126 -0.086,0.216 -0.39,0.52 -0.823,0.909 -0.39,0.347 -0.563,0.65 -0.563,0.91 0.043,0 0.216,0.216 0.563,0.52 0.303,0.26 0.433,0.433 0.433,0.563 -0.216,0.823 -0.346,1.472 -0.346,1.992 0,0.433 0.13,1.083 0.346,1.948 0.216,0.13 0.433,0.26 0.563,0.347 0.39,0.303 0.692,0.563 0.909,0.736 l 0.086,0.13 c 0.173,0.087 0.52,0.433 1.083,0.996 0.086,0.043 0.39,0.26 1.039,0.649 0.563,0.303 1.039,0.52 1.299,0.649 l 0.13,0.173 c 0,-0.173 0.043,-0.52 0.086,-1.04 l 0.13,-0.086 c 0.346,-0.043 0.606,0.043 0.736,0.13 0.13,0.217 0.173,0.346 0.173,0.39 l 0.173,0.087 c 0.086,-0.563 0.129,-0.953 0.086,-1.126 -0.043,-0.26 -0.043,-0.39 -0.043,-0.52 l 0.043,-0.346 0.216,-0.217 c 0.563,0 0.866,-0.086 0.996,-0.216 0,-0.476 0.086,-0.866 0.39,-1.125 v -0.173 l -0.087,-0.087 c 0,-0.043 -0.216,-0.173 -0.476,-0.433 -0.39,-0.303 -0.39,-0.866 0,-1.732 0.086,-0.217 0.216,-0.346 0.346,-0.346 0.779,0.043 1.256,0.043 1.386,0.129 l 0.043,0.13 c 0,0.087 0,0.217 0.043,0.303 0.13,0.173 0.346,0.173 0.563,0.13 0.26,-0.13 0.476,-0.173 0.52,-0.13 0.086,0.347 0.173,0.563 0.303,0.649 l 0.216,0.043 c 0.52,-0.52 0.996,-0.909 1.342,-1.126 h 0.13 l 0.086,0.13 c 0.043,0.217 0.13,0.39 0.26,0.52 0.087,0.087 0.216,0.087 0.347,0.087 l 0.13,-0.13 c 0.303,-0.39 0.563,-0.649 0.692,-0.736 0.303,-0.26 1.169,-0.39 2.598,-0.39 0.173,0.043 0.303,0.043 0.433,0.043 0.91,0 1.559,-0.26 2.035,-0.779 0.736,-0.736 1.299,-1.299 1.645,-1.688 0.39,-0.433 0.693,-0.779 0.996,-1.039 0.52,-0.52 0.909,-0.693 1.255,-0.563 0.477,0.649 0.996,0.866 1.559,0.606 0.736,-0.39 1.169,-0.606 1.256,-0.563 0.303,0.043 0.476,0.13 0.563,0.13 1.212,0.736 1.992,1.039 2.294,0.952 l 0.693,-0.216 c 0.346,-0.173 0.693,-0.433 0.953,-0.779 l 0.13,-0.043 0.086,0.13 c 0.217,0.39 0.303,0.649 0.303,0.693 -0.043,0.086 -0.217,0.303 -0.52,0.606 -0.476,0.52 -0.649,1.126 -0.476,1.775 l 0.822,0.13 0.087,0.086 c 0.086,0.953 0.13,1.516 0.086,1.646 0.52,-0.346 0.866,-0.563 1.039,-0.649 0.347,-0.086 0.606,-0.13 0.779,-0.217 0.303,-0.13 0.606,-0.52 0.953,-1.125 0.779,-1.385 1.559,-2.208 2.251,-2.555 0.39,0.13 0.693,0.217 0.866,0.26 0.13,0.043 0.346,0.043 0.693,-0.043 l 0.563,-0.086 c 0.13,-0.043 0.52,-0.52 1.255,-1.516 0.52,-0.216 0.909,-0.39 1.083,-0.52 0.13,-0.087 0.303,-0.346 0.52,-0.779 0.216,-0.477 0.39,-0.779 0.563,-0.909 0.866,-0.52 1.385,-0.866 1.515,-1.083 0.13,-0.217 0.173,-0.433 0.173,-0.693 -0.043,-0.216 -0.043,-0.39 0,-0.476 0.13,-0.13 0.476,-0.26 0.996,-0.39 0.433,-0.087 0.693,-0.303 0.693,-0.606 l 0.086,-0.953 c 0.043,-0.13 0.26,-0.216 0.649,-0.346 0.043,-0.086 0.087,-0.346 0.13,-0.866 0,-0.39 0.13,-0.606 0.303,-0.649 0.173,0 0.39,0.13 0.693,0.346 0.216,0.216 0.52,0.26 0.866,0.13 l 0.087,-0.086 c 0,-0.173 0,-0.477 -0.087,-0.909 -0.043,-0.26 0.043,-0.563 0.303,-0.866 0.13,-0.13 0.217,-0.173 0.26,-0.173 0.563,0 0.866,0 0.909,-0.043 0.433,-0.26 0.693,-0.477 0.866,-0.606 0.346,-0.346 0.649,-0.563 0.823,-0.606 0.13,0.043 0.476,0.216 1.083,0.563 0.433,0.26 0.822,0.303 1.125,0.173 0.216,-0.13 0.39,-0.346 0.563,-0.736 0.129,-0.086 0.303,-0.26 0.563,-0.433 0.13,-0.086 0.433,-0.216 0.996,-0.39 0.433,-0.13 0.692,-0.26 0.736,-0.346 0.043,-0.563 0.216,-0.909 0.433,-1.126 0.086,-0.086 0.303,-0.086 0.606,-0.086 0.347,0.043 0.52,0.086 0.563,0.216 0.086,0.087 0.086,0.303 0.086,0.693 -0.043,0.39 -0.043,0.649 -0.043,0.736 0.043,0.043 0.303,0.173 0.866,0.259 0.476,0.13 0.779,0.173 0.909,0.173 v -0.043 c 0.087,-0.043 0.347,-0.303 0.823,-0.779 0.303,-0.303 0.476,-0.606 0.52,-0.822 0,-0.13 0,-0.217 0,-0.26 -0.13,-0.173 -0.39,-0.39 -0.779,-0.563 -0.39,-0.216 -0.606,-0.39 -0.693,-0.563 -0.043,-0.173 0,-0.26 0.043,-0.346 0.303,-0.477 0.476,-0.823 0.563,-0.953 0.043,-0.173 0.086,-0.39 0.086,-0.693 0.173,-0.173 0.433,-0.476 0.736,-0.822 0.563,-0.953 0.866,-1.559 0.953,-1.862 0.087,-0.173 0.13,-0.433 0.173,-0.736 0.043,-0.346 -0.086,-0.736 -0.346,-1.169 -0.087,-0.043 -0.173,-0.173 -0.303,-0.303 -0.563,-0.822 -0.866,-1.472 -0.866,-1.905 -0.043,-0.303 0,-0.736 0.173,-1.299 0.216,-0.953 0.347,-1.602 0.39,-2.079 0.043,-0.216 -0.216,-0.649 -0.736,-1.255 -0.087,-0.086 -0.13,-0.173 -0.13,-0.26 l 0.086,-0.13 c 0.563,0.043 0.779,-0.13 0.736,-0.563 -0.087,-0.173 -0.303,-0.346 -0.65,-0.606 -0.086,-0.173 -0.086,-0.477 0,-0.866 -0.13,-0.303 -0.346,-0.692 -0.692,-1.169 0.303,-0.216 0.476,-0.52 0.52,-0.866 0.086,-0.347 0.173,-0.563 0.303,-0.693 0.26,-0.173 0.736,-0.303 1.472,-0.346 0.216,-0.087 0.563,-0.26 1.039,-0.563 0.13,-0.086 0.173,-0.433 0.26,-1.039 0.043,-0.087 0.347,-0.433 0.953,-1.039 0.087,-0.087 0.13,-0.39 0.13,-0.91 0,-0.606 0.043,-0.996 0.173,-1.169 0.13,-0.346 0.433,-0.692 0.909,-1.125 0.043,-0.087 0.086,-0.26 0.086,-0.563 0.043,-0.303 0.13,-0.52 0.217,-0.693 0.129,-0.13 0.39,-0.303 0.866,-0.563 0.346,-0.173 0.563,-0.477 0.693,-0.866 0.13,-0.52 0.043,-1.169 -0.347,-1.861 -0.476,-0.823 -0.736,-1.342 -0.779,-1.473 l 0.087,-0.13 c 0.173,-0.086 0.649,-0.173 1.299,-0.259 0.433,-0.087 0.779,-0.303 1.125,-0.693 0.13,-0.173 0.217,-0.347 0.303,-0.477 0.087,-0.303 0.13,-0.52 0.087,-0.649 -0.087,-0.173 -0.217,-0.303 -0.477,-0.476 -0.26,-0.216 -0.39,-0.346 -0.433,-0.52 0,-0.216 0.086,-0.563 0.26,-1.039 l 0.173,-0.736 c 0,-0.173 0.043,-0.433 0.043,-0.736 l 0.13,-0.347 c 0,-0.086 0.086,-0.173 0.216,-0.216 0.173,0 0.346,0.13 0.563,0.39 0.173,0.26 0.26,0.477 0.26,0.693 0.13,0.173 0.39,0.433 0.822,0.779 0.477,0.346 0.78,0.563 0.996,0.606 l 0.13,-0.043 c 0.086,-0.477 0,-0.823 -0.216,-1.039 -0.173,-0.173 -0.433,-0.433 -0.823,-0.779 0,-0.13 0.043,-0.477 0.216,-0.953 0.13,-0.52 0.217,-0.779 0.303,-0.909 0.173,-0.13 0.39,-0.217 0.693,-0.26 l 0.476,-0.26 c 0.13,-0.087 0.216,-0.13 0.26,-0.13 0,0 0.26,-0.043 0.693,-0.087 0.346,-0.043 0.606,-0.216 0.779,-0.476 l 0.779,-2.251 c 0.043,-0.086 0.173,-0.26 0.39,-0.52 0.13,-0.26 0.217,-0.52 0.173,-0.823 -0.043,-0.476 -0.433,-0.779 -1.169,-0.866 -0.866,-0.043 -1.428,-0.087 -1.645,-0.173 -0.693,-0.346 -1.212,-0.606 -1.559,-0.693 -0.043,-0.043 -0.39,-0.043 -0.996,-0.13 -0.39,-0.043 -0.693,-0.13 -0.866,-0.303 h -0.216 c -0.649,-0.087 -1.039,-0.087 -1.169,0 -0.086,0.692 -0.216,1.039 -0.303,1.125 -0.173,0.13 -0.52,0.216 -1.126,0.26 -0.563,0.086 -0.952,0.086 -1.169,0 -0.346,-0.173 -0.649,-0.26 -0.866,-0.26 -0.086,0 -0.52,0.086 -1.256,0.303 -0.563,0.13 -0.953,0.043 -1.169,-0.217 -0.043,-0.173 0.13,-0.476 0.477,-1.039 0.303,-0.476 0.433,-0.909 0.303,-1.255 -0.086,-0.347 -0.563,-0.433 -1.385,-0.39 -0.823,0.086 -1.342,-0.043 -1.516,-0.303 -0.13,-0.216 -0.086,-0.996 0.173,-2.295 v -0.952 c 0,-0.13 -0.043,-0.347 -0.173,-0.606 -0.13,-0.216 -0.996,-0.39 -2.468,-0.52 -0.649,-0.086 -0.996,-0.13 -1.083,-0.13 -0.52,-0.043 -1.169,0 -1.862,0.13 -0.216,0 -0.563,0.173 -0.996,0.477 -0.39,0.26 -0.736,0.39 -1.039,0.39 -0.823,0 -2.555,-0.563 -5.239,-1.646 -0.087,-0.043 -0.39,-0.216 -0.823,-0.433 -0.433,-0.26 -0.996,-0.476 -1.646,-0.649 -0.26,-0.086 -0.649,-0.26 -1.125,-0.433 -0.433,-0.13 -1.169,-0.086 -2.165,0.043 -1.299,0.217 -2.035,0.303 -2.294,0.303 -0.779,0 -1.342,-0.043 -1.603,-0.13 -0.216,-0.217 -0.259,-0.823 -0.129,-1.775 -0.173,-0.26 -1.212,-0.303 -3.031,-0.13 -0.303,0.043 -0.779,0.13 -1.429,0.217 -0.217,0 -0.606,-0.087 -1.083,-0.303 -0.173,-0.043 -0.563,-0.043 -1.212,0.043 -0.52,0.043 -0.953,-0.043 -1.256,-0.217 -0.433,-0.303 -0.736,-0.563 -0.909,-0.822 -0.043,-0.087 -0.13,-0.217 -0.216,-0.39 -0.13,-0.129 -0.26,-0.303 -0.52,-0.563 -0.043,-0.087 -0.13,-0.216 -0.216,-0.39 0,-0.087 -0.087,-0.13 -0.26,-0.173 -0.13,-0.043 -0.26,-0.043 -0.39,-0.043 -0.087,0.043 -0.26,0.087 -0.433,0.173 -0.563,0.173 -1.256,0.217 -2.122,0.13 -0.347,-0.043 -0.823,-0.086 -1.429,-0.173 -0.043,-0.043 -0.13,-0.043 -0.26,0 -0.26,-0.043 -0.606,-0.13 -1.125,-0.303 -0.173,0 -0.476,-0.043 -0.823,-0.043 -0.649,-0.173 -1.429,-0.39 -2.338,-0.649 -0.13,-0.043 -0.346,-0.043 -0.606,-0.086 -0.303,0.043 -0.78,0.216 -1.516,0.606 -0.303,0.086 -0.736,0.13 -1.342,0.13 -0.303,0 -0.736,0 -1.342,0 -0.303,0 -0.822,0.086 -1.472,0.173 -0.251,-0.043 -0.684,-0.087 -1.16,-0.173", + "Ternopil": "m 101.1875,154.62499 0.0312,0.1875 c 0.303,0.476 0.7115,1.05025 1.1875,1.65625 0.173,0.173 0.43025,0.66525 0.90625,1.53125 0.13,0.26 0.3845,0.71825 0.6875,1.28125 l 0.3125,0.90625 c 0.173,0.52 0.332,0.87 0.375,1 l 0.21875,0.375 c 0,0.043 -0.0447,0.20875 -0.21875,0.46875 -0.13,0.216 -0.15625,0.409 -0.15625,0.625 0.043,0.13 0.12,0.37275 0.25,0.71875 0.086,0.303 0.13275,0.9085 0.21875,1.6875 0.087,0.26 0.38725,0.40625 0.90625,0.40625 0.173,0.173 0.288,0.638 0.375,1.375 0.087,0.563 -0.0787,1.029 -0.46875,1.375 -0.346,0.303 -0.51175,0.577 -0.46875,0.75 l 0.21875,0.5625 c 0.086,0.173 0.0743,0.51725 0.0312,0.90625 -0.086,0.39 -0.0285,0.74675 0.1875,1.09375 0.13,0.173 0.19425,0.28125 0.28125,0.28125 0.476,-0.433 0.83375,-0.664 1.09375,-0.75 0.346,0.173 0.577,0.30075 0.75,0.34375 0.476,-0.043 0.85325,0.0213 1.15625,0.28125 0.043,0.043 0.13275,0.18925 0.21875,0.40625 0.043,0.26 0.0937,0.65575 0.0937,1.21875 0.043,0.173 0.13275,0.3455 0.21875,0.5625 0,0.13 -0.1395,0.283 -0.3125,0.5 -0.303,0.087 -0.731,0.0217 -1.25,-0.28125 -0.563,-0.26 -0.948,-0.34875 -1.25,-0.21875 l -0.0936,0.125 c -0.086,0.303 -0.048,0.64625 0.125,0.90625 0.087,0.173 0.163,0.2695 0.25,0.3125 l 0.15625,0.0625 c 0.13,0 0.41075,0.0838 0.84375,0.34375 0.433,0.216 0.6435,0.452 0.6875,0.625 l 0,0.78125 c 0,0.217 0.1395,0.4715 0.3125,0.6875 0.347,0.39 0.653,0.51275 1,0.46875 0.13,-0.043 0.46825,-0.2155 1.03125,-0.5625 0,0 0.0507,-0.007 0.0937,-0.0937 0.26,-0.086 0.49,0.0397 0.75,0.34375 l 0.46875,0.65625 c 0.13,0.043 0.56975,0.20875 1.21875,0.46875 0.216,0.043 0.2745,0.24 0.1875,0.5 l -0.0625,0.125 -0.28125,0.125 -0.15625,0.21875 -0.0625,0.375 0.0937,0.0625 0.46875,0.8125 c 0.043,0.13 0.0937,0.39125 0.0937,0.78125 0,0.303 0.12675,0.4755 0.34375,0.5625 0.26,-0.043 0.452,-0.0743 0.625,-0.0312 0.043,-0.13 0.17575,-0.48775 0.21875,-1.09375 0,-0.086 0.077,-0.24775 0.25,-0.59375 0.13,-0.26 0.2255,-0.44425 0.3125,-0.53125 0.433,-0.433 0.7545,-0.6055 1.1875,-0.5625 l 0.0937,0.0937 c 0.043,0.043 -0.115,0.43975 -0.375,1.21875 -0.043,0.173 0.008,0.366 0.0937,0.625 0,0.173 -0.158,0.47325 -0.375,0.90625 -0.13,0.433 -0.1495,0.69025 -0.0625,0.90625 l 0.125,0.0937 0.15625,-0.0312 c 0.303,-0.433 0.56525,-0.75675 0.78125,-0.84375 0.303,-0.13 0.534,-0.0782 0.75,0.0937 0.086,0.13 0.25175,0.322 0.46875,0.625 0.13,0.086 0.404,0.15625 0.75,0.15625 0.173,0.13 0.26275,0.31425 0.21875,0.53125 -0.13,0.217 -0.52575,0.332 -1.21875,0.375 -0.736,0.086 -1.163,0.1825 -1.25,0.3125 -0.173,0.173 -0.26275,0.43525 -0.21875,0.78125 0.0215,0.303 0.0973,0.5605 0.28125,0.75 0.184,0.1895 0.47625,0.31 0.84375,0.375 0.26,-0.087 0.453,-0.3365 0.625,-0.8125 0.13,-0.476 0.3465,-0.788 0.5625,-0.875 0.086,-0.087 0.2645,-0.0352 0.4375,0.0937 0.216,0.13 0.3505,0.17575 0.4375,0.21875 0.086,0 0.13175,-0.0693 0.21875,-0.15625 0.216,-0.173 0.24825,-0.55525 0.0312,-1.03125 -0.173,-0.52 -0.1925,-0.87 -0.0625,-1 0.173,-0.173 0.562,-0.0725 1.125,0.1875 0.563,0.303 0.8885,0.337 1.0625,0.25 0.086,-0.086 0.125,-0.25275 0.125,-0.46875 -0.043,-0.26 -0.0312,-0.42575 -0.0312,-0.46875 l 0.125,-0.0937 c 0.39,-0.13 0.779,0.0348 1.125,0.46875 l 0,0.21875 -0.375,0.40625 c -0.1515,0.1515 -0.22,0.301 -0.1875,0.46875 0.0325,0.16775 0.14925,0.3265 0.34375,0.5 L 124,184.78124 c 0.476,0.303 0.81525,0.496 1.03125,0.625 0.13,0.043 0.43025,0.1445 0.90625,0.1875 0.433,0.043 0.75175,0.1825 0.96875,0.3125 0.13,0.086 0.35325,0.36275 0.65625,0.96875 0.086,0.086 0.32375,0.322 0.84375,0.625 0.129,0.043 0.2255,0.201 0.3125,0.375 0.087,0.216 0.087,0.40125 0,0.53125 -0.39,0.26 -0.59375,0.5095 -0.59375,0.8125 0,0.13 0.158,0.2255 0.375,0.3125 0.216,0.087 0.4325,0.2215 0.5625,0.4375 l 0,0.34375 c -0.087,0.173 -0.22825,0.33375 -0.53125,0.59375 l -0.0312,0 0,0.0312 c -0.009,0.0606 0.0883,0.0468 0.0937,0.0937 0.0216,0.18794 0.063,0.3406 0.375,0.375 0.433,-0.043 0.65125,-0.0625 0.78125,-0.0625 0.736,0.13 1.18925,0.327 1.40625,0.5 0,0.086 0.0693,0.3355 0.15625,0.8125 0.13,0.433 0.3415,0.5675 0.6875,0.4375 0.173,-0.173 0.3125,-0.409 0.3125,-0.625 0.043,-0.346 0.081,-0.5575 0.125,-0.6875 0.13,-0.26 0.35325,-0.3945 0.65625,-0.4375 0.26,0 0.5145,0.0955 0.6875,0.3125 0.303,0.303 0.58475,0.69975 0.84375,1.21875 0.043,0.087 0.24775,0.32875 0.59375,0.71875 l 0.0312,0.15635 c 0,0.13 -0.038,0.245 -0.125,0.375 0,0.173 0.008,0.3075 0.0937,0.4375 l 0.125,0.0312 c 0.433,-0.043 0.6435,-0.0743 0.6875,-0.0312 0.26,0.13 0.44425,0.2695 0.53125,0.3125 0.649,0.26 1.154,0.2405 1.5,-0.0625 0.217,-0.216 0.452,-0.682 0.625,-1.375 0.043,0 0.2155,0.0955 0.5625,0.3125 0.26,0.13 0.50275,0.13 0.71875,0 0.216,-0.866 0.44025,-1.33875 0.65625,-1.46875 l 0.1875,0 c 0.086,0.086 0.17075,0.20875 0.34375,0.46875 0,0.173 -0.007,0.41575 -0.0937,0.71875 0.043,0.043 0.082,0.1775 0.125,0.4375 l 0.0312,0.25 c -0.303,0.347 -0.457,0.697 -0.5,1 0,0.043 0.0888,0.2595 0.21875,0.5625 l 0.21875,0.40625 c 0.043,0.086 0.2155,0.24 0.5625,0.5 0.606,0.476 1.02125,0.54625 1.28125,0.15625 0.086,-0.13 0.1055,-0.3465 0.0625,-0.5625 -0.129,-0.13 -0.21875,-0.25775 -0.21875,-0.34375 -0.649,-1.169 -0.79525,-1.908 -0.40625,-2.125 0.217,-0.087 0.4275,0.003 0.6875,0.21875 l 0.5,0.375 c 0.13,0.086 0.087,0.5335 0,1.3125 -0.12258,0.73455 -0.0485,1.24414 0.25,1.59375 l 0.0937,0.125 c 0.433,0.303 1.02175,0.3605 1.84375,0.1875 0.823,-0.173 1.33775,-0.2315 1.46875,-0.1875 0.346,0.39 0.64625,0.65125 0.90625,0.78125 0.433,0 0.707,-0.0118 0.75,0.0312 0.563,0.303 0.913,0.4375 1,0.4375 0.13,-0.043 0.29475,-0.17075 0.46875,-0.34375 0.173,-0.216 0.30075,-0.38275 0.34375,-0.46875 l 0.0625,0 c -0.086,-0.087 -0.279,-0.322 -0.625,-0.625 0,-0.476 -0.1775,-0.85325 -0.4375,-1.15625 l 0,-0.125 0.21875,-0.1875 0.1875,0.0625 c 0.13,0 0.2255,-0.008 0.3125,-0.0937 l 0.0312,-0.125 -0.0312,-0.1875 c -0.476,-0.086 -0.788,-0.3025 -0.875,-0.5625 -0.736,-0.26 -1.2255,-0.5105 -1.3125,-0.8125 0.26,-0.433 0.457,-0.9185 0.5,-1.4375 0.043,-0.13 0.043,-0.25675 0,-0.34375 l -0.15615,0.0312 c -0.26,0.39 -0.5095,0.5675 -0.8125,0.4375 -0.086,-0.043 -0.1435,-0.13275 -0.1875,-0.21875 0,-0.303 0.0888,-0.5145 0.21875,-0.6875 l 0,-0.15625 -0.0625,-0.0937 c -0.5195,0.0215 -0.918,-0.0811 -1.15625,-0.28125 -0.23825,-0.20012 -0.32475,-0.5045 -0.28125,-0.9375 0.086,-0.26 0.17575,-0.46475 0.21875,-0.59375 0.043,-0.173 0.043,-0.6575 0,-1.4375 0.216,-0.346 0.34375,-0.577 0.34375,-0.75 -0.043,-0.043 -0.2555,-0.28575 -0.6875,-0.71875 -0.217,-0.216 -0.139,-0.53575 0.25,-0.96875 -0.043,-0.26 -0.0312,-0.413 -0.0312,-0.5 0.433,0.087 0.6815,0.005 0.8125,-0.125 l 0,-0.1875 -0.0312,-0.125 c -0.606,-0.173 -0.9325,-0.33875 -1.0625,-0.46875 -0.043,-0.13 -0.082,-0.23725 -0.125,-0.28125 -0.26,-0.346 -0.38675,-0.496 -0.34375,-0.625 0.043,-0.953 0.082,-1.4755 0.125,-1.5625 0.13,-0.433 0.1875,-0.73325 0.1875,-0.90625 l -0.0625,-0.15625 -0.15625,-0.0625 -0.5625,0.25 -0.125,-0.0312 c -0.086,-0.13 -0.0665,-0.37275 0.0625,-0.71875 0.173,-0.39 0.28125,-0.63175 0.28125,-0.71875 0.043,-0.217 -0.0457,-0.409 -0.21875,-0.625 -0.26,-0.216 -0.36225,-0.36325 -0.40625,-0.40625 0.043,-0.129 0.1015,-0.23825 0.1875,-0.28125 l 0.4375,-0.125 0.0937,-0.125 c 0.043,-0.13 -0.0145,-0.31425 -0.1875,-0.53125 -0.173,-0.216 -0.25,-0.3945 -0.25,-0.4375 l 0.0625,-0.125 c 0.13,-0.087 0.404,-0.087 0.75,0 l 0.0937,-0.125 c -0.043,-0.26 -0.22725,-0.65675 -0.53125,-1.21875 -0.303,-0.477 -0.35375,-0.8845 -0.0937,-1.1875 0.39,-0.303 0.73325,-0.66475 0.90625,-0.96875 0.043,-0.26 -0.0838,-0.649 -0.34375,-1.125 -0.217,-0.477 -0.34375,-0.788 -0.34375,-0.875 0,-0.476 0.0457,-0.8025 0.21875,-1.0625 0.13,-0.217 0.1875,-0.38175 0.1875,-0.46875 -0.043,-0.13 -0.1775,-0.31425 -0.4375,-0.53125 -0.217,-0.216 -0.36325,-0.4275 -0.40625,-0.6875 0.173,-0.649 0.28125,-1.235 0.28125,-1.625 0,-0.39 0.007,-0.582 0.0937,-0.625 0.13,-0.216 0.37275,-0.40125 0.71875,-0.53125 0.26,-0.086 0.42475,-0.163 0.46875,-0.25 0.086,-0.13 0.086,-0.31425 0,-0.53125 -0.043,-0.303 -0.0753,-0.46375 -0.0312,-0.59375 0.39,-0.303 0.47375,-0.62175 0.34375,-0.96875 -0.303,-0.39 -0.577,-0.74 -0.75,-1 -0.13,-0.173 -0.13,-0.366 0,-0.625 0.086,-0.39 0.1875,-0.61325 0.1875,-0.65625 -0.216,-0.606 -0.331,-1.10325 -0.375,-1.40625 0.13,-0.39 0.168,-0.69025 0.125,-0.90625 -0.043,-0.173 -0.279,-0.37775 -0.625,-0.59375 -0.39005,-0.2601 -0.5938,-0.48335 -0.5938,-0.65635 -0.217,-1.125 -0.4275,-1.93025 -0.6875,-2.40625 -0.346,-0.649 -0.5625,-1.0575 -0.5625,-1.1875 -0.086,-0.26 -0.01,-0.687 0.25,-1.25 0.173,-0.476 0.40125,-0.77625 0.53125,-0.90625 l 0.15625,-0.0312 c 0.346,-0.173 0.57025,-0.289 0.65625,-0.375 0.173,-0.13 0.288,-0.476 0.375,-1.125 0.086,-0.823 0.1445,-1.28125 0.1875,-1.28125 0.043,-0.26 0.2595,-0.534 0.5625,-0.75 0.26,-0.216 0.3945,-0.4665 0.4375,-0.8125 0.043,-0.303 -0.12275,-0.572 -0.46875,-0.875 -0.4765,-0.3465 -0.81725,-0.66025 -0.96875,-0.96875 -0.1515,-0.3085 -0.111,-0.5935 0.0625,-0.875 0.13,-0.26 0.206,-0.40625 0.25,-0.40625 l 0.53125,-0.5 c 0.043,-0.13 0.0312,-0.58325 0.0312,-1.40625 -0.043,-0.649 -0.1775,-1.06525 -0.4375,-1.28125 l -0.6875,-0.53125 c -0.346,-0.303 -0.4425,-0.69975 -0.3125,-1.21875 0.216,-0.649 0.26175,-1.06425 0.21875,-1.28125 -0.13,-0.346 -0.29075,-0.60825 -0.59375,-0.78125 -0.303,-0.13 -0.5195,-0.31425 -0.5625,-0.53125 -0.087,-0.173 -0.0665,-0.39725 0.0625,-0.65625 0.173,-0.303 0.28125,-0.5195 0.28125,-0.5625 0.043,-0.26 -0.0447,-0.567 -0.21875,-1 -0.216,-0.477 -0.34375,-0.707 -0.34375,-0.75 l 0.125,-0.375 c 0.087,-0.303 0.6095,-0.54075 1.5625,-0.84375 0.347,-0.087 0.52725,-0.1445 0.65625,-0.1875 0.13,-0.043 0.19525,-0.20875 0.28125,-0.46875 0.043,-0.217 0.0625,-0.3945 0.0625,-0.4375 -0.086,-0.086 -0.27125,-0.125 -0.53125,-0.125 -0.303,-0.043 -0.56525,-0.12 -0.78125,-0.25 -0.087,-0.13 -0.0753,-0.244 -0.0312,-0.375 0.086,-0.173 0.29075,-0.288 0.59375,-0.375 0.173,-0.043 0.33875,-0.24775 0.46875,-0.59375 0.086,-0.303 0.125,-0.44425 0.125,-0.53125 -0.52,-0.346 -0.8075,-0.64625 -0.9375,-0.90625 0,-0.26 0.076,-0.40625 0.25,-0.40625 0.736,0 1.20875,-0.038 1.46875,-0.125 0.346,-0.087 0.5245,-0.3405 0.4375,-0.6875 -0.043,-0.346 -0.20775,-0.60825 -0.46875,-0.78125 -0.303,-0.216 -0.83325,-0.3895 -1.65625,-0.5625 l 0,-0.0937 c 0.216,-0.216 0.49675,-0.332 0.84375,-0.375 l 0.21875,0.5 0.3125,-0.78125 c -0.16109,0.10185 -0.24159,0.12981 -0.46875,0.28125 0.043,-0.13 0.0235,-0.672 -0.0625,-1.625 l -0.0937,-0.0937 -0.8125,-0.125 c -0.173,-0.649 -0.007,-1.26125 0.46875,-1.78125 0.303,-0.303 0.456,-0.539 0.5,-0.625 0,-0.043 -0.0642,-0.2975 -0.28125,-0.6875 l -0.0937,-0.125 -0.125,0.0312 c -0.26,0.346 -0.62175,0.60825 -0.96875,0.78125 l -0.6875,0.21875 c -0.303,0.087 -1.07025,-0.2015 -2.28125,-0.9375 -0.087,0 -0.2595,-0.11325 -0.5625,-0.15625 -0.086,-0.043 -0.514,0.1725 -1.25,0.5625 -0.563,0.26 -1.0855,0.0553 -1.5625,-0.59375 -0.346,-0.13 -0.731,0.0425 -1.25,0.5625 -0.303,0.26 -0.61,0.59825 -1,1.03125 -0.346,0.39 -0.92025,0.9525 -1.65625,1.6875 -0.476,0.52 -1.12125,0.78125 -2.03125,0.78125 -0.13,0 -0.2645,0.0118 -0.4375,-0.0312 -1.429,0 -2.29075,0.115 -2.59375,0.375 -0.13,0.086 -0.3855,0.36 -0.6875,0.75 l -0.125,0.125 c -0.13,0 -0.25675,-0.007 -0.34375,-0.0937 -0.13,-0.129 -0.23725,-0.283 -0.28125,-0.5 l -0.0625,-0.125 -0.15625,0 c -0.347,0.217 -0.82475,0.605 -1.34375,1.125 l -0.1875,-0.0625 c -0.13,-0.086 -0.2265,-0.31025 -0.3125,-0.65625 -0.043,-0.043 -0.27125,0.0263 -0.53125,0.15625 -0.217,0.043 -0.4325,0.0168 -0.5625,-0.15625 -0.043,-0.086 -0.0312,-0.19425 -0.0312,-0.28125 l -0.0625,-0.125 c -0.13,-0.086 -0.595,-0.11325 -1.375,-0.15625 -0.13,0 -0.25775,0.12675 -0.34375,0.34375 -0.39,0.866 -0.39,1.447 0,1.75 0.26,0.26 0.46875,0.3945 0.46875,0.4375 l 0.0937,0.0937 0,0.15625 c -0.303,0.26 -0.375,0.649 -0.375,1.125 -0.13,0.13 -0.437,0.21875 -1,0.21875 l -0.21885,0.2186 -0.0625,0.34375 c 0,0.13 0.0195,0.27125 0.0625,0.53125 0.043,0.173 -0.008,0.562 -0.0937,1.125 l -0.18755,-0.0937 c 0,-0.043 -0.0263,-0.18925 -0.15625,-0.40625 -0.13,-0.086 -0.404,-0.168 -0.75,-0.125 l -0.125,0.0937 c -0.043,0.52 -0.0937,0.85725 -0.0937,1.03125 -0.086,0.086 -0.043,0.2645 0,0.4375 0.086,0.347 0.31425,0.5575 0.53125,0.6875 0.39,0.216 0.61325,0.3515 0.65625,0.4375 0.087,0.26 0.13175,0.4755 0.21875,0.5625 l 0.375,0.4375 c 0.086,0.13 0.1875,0.3025 0.1875,0.5625 0.043,0.216 -0.038,0.38275 -0.125,0.46875 -0.216,0.043 -0.53575,0.043 -0.96875,0 -0.347,0.217 -0.3995,0.51625 -0.3125,0.90625 0.173,0.563 0.3125,0.913 0.3125,1 -0.347,0.953 -0.99725,1.35275 -1.90625,1.09375 -0.173,0.086 -0.37775,0.2205 -0.59375,0.4375 -0.217,0.086 -0.53575,0.164 -0.96875,0.25 -0.216,0.087 -0.55525,0.2595 -1.03125,0.5625 -0.086,0.043 -0.71775,0.16975 -1.84375,0.34375 -0.26,0 -0.5485,0.1395 -0.9375,0.3125 -0.086,0 -0.71775,0.077 -1.84375,0.25 -0.26,0.996 -0.34375,1.50775 -0.34375,1.59375 0.043,0.043 0.077,0.24775 0.25,0.59375 l 0.0937,0.125 c 0.433,0.649 0.6055,1.10225 0.5625,1.40625 -0.087,0.26 -0.30925,0.54575 -0.65625,0.71875 -0.476,0.216 -0.899,0.2745 -1.375,0.1875 -0.043,-0.086 -0.1445,-0.18925 -0.1875,-0.40625 -0.303,-0.043 -0.56025,0.263 -0.90625,1 -0.173,0.39 -0.3455,0.893 -0.5625,1.5 l -0.53125,0.93755 c -0.087,0.13 -0.19525,0.3025 -0.28125,0.5625 -0.217,0.216 -0.82425,0.6675 -1.90625,1.1875 -0.216,0.086 -0.51725,0.27125 -0.90625,0.53125 -0.346,0.13 -0.9085,0.37275 -1.6875,0.71875 -0.26,0.173 -0.4705,0.447 -0.6875,0.75 -0.086,0.043 -0.31025,0.0352 -0.65625,-0.0937 -0.346,-0.129 -0.658,-0.11825 -0.875,-0.0312 l 0,0.5 c -0.043,0.043 -0.0703,0.39 -0.15625,1.125 l 0,0.40625 c -0.0393,0.55401 -0.2147,0.81852 -0.40625,0.96875 z", + "Poltava": "m 327.54,113.982 -0.563,0.043 c -0.13,0.086 -0.216,0.303 -0.303,0.649 l -0.129,0.043 c -0.52,0 -0.866,0 -1.04,0.086 -0.173,0.086 -0.52,0.563 -1.083,1.429 -0.476,0.649 -0.909,0.866 -1.342,0.693 l -0.26,-0.346 -0.217,-0.043 c -0.173,0.173 -0.692,0.216 -1.559,0.086 h -0.086 c 0,0.217 -0.043,0.433 -0.173,0.649 -0.216,0.303 -0.303,0.52 -0.303,0.606 -0.13,0.606 -0.217,0.952 -0.26,0.996 -0.476,0.26 -0.692,0.52 -0.692,0.779 0.303,0.13 0.433,0.347 0.303,0.606 -0.043,0.086 -0.173,0.303 -0.433,0.692 -0.26,0.347 -0.433,0.563 -0.477,0.65 h -0.043 l 0.173,0.13 c 0.303,-0.173 0.563,-0.173 0.736,0 0,0.043 0.043,0.129 0.173,0.216 0.043,0.26 0.13,0.52 0.13,0.736 0.13,0.217 0.39,0.477 0.78,0.736 0.043,0.173 0.129,0.433 0.129,0.779 0.13,0.13 0.477,0.26 1.083,0.346 0.39,0.086 0.649,0.433 0.78,1.039 0.043,0.087 0.129,0.13 0.259,0.173 0.13,0 0.39,-0.13 0.736,-0.39 0.346,-0.303 0.52,-0.433 0.649,-0.433 l 0.433,0.39 c 0.086,0.173 0.13,0.477 0.216,0.953 l -0.086,0.13 c -0.866,0.303 -1.342,0.476 -1.472,0.433 -0.043,0.13 0.086,0.476 0.346,1.039 0.26,0.649 0.347,1.125 0.347,1.515 l 0.216,0.173 1.169,0.433 c 0.13,0.043 0.433,-0.043 0.909,-0.26 l 0.347,0.692 c 0.129,0.217 0.26,0.65 0.39,1.256 0.173,0.563 0.779,1.083 1.775,1.645 0,0 0.043,0.087 0.13,0.217 0.043,0.173 0,0.563 -0.173,1.169 -0.173,0.649 -0.216,1.083 -0.173,1.255 0,0.173 0.13,0.39 0.303,0.65 0,0.13 -0.216,0.346 -0.606,0.649 -0.086,-0.043 -0.216,-0.087 -0.39,-0.26 -0.216,-0.043 -0.39,0.043 -0.52,0.217 -0.086,0.173 -0.13,0.346 -0.086,0.563 0.086,0.13 0.173,0.39 0.346,0.693 0.866,1.602 1.515,2.468 1.948,2.468 0.433,-0.303 0.693,-0.347 0.866,-0.217 0.303,0.347 0.563,0.606 0.692,0.779 0.087,0.043 0.173,0.217 0.26,0.477 0.217,0 0.477,-0.087 0.693,-0.303 0.043,0 0.433,0.303 1.212,0.909 0.13,0.13 0.173,0.563 0.087,1.386 -0.087,0.822 -0.087,1.299 0,1.385 0.173,0.043 1.212,0.477 3.16,1.212 0.433,0.13 0.693,0.26 0.779,0.346 0.087,0.13 0.087,0.433 0.043,0.909 -0.043,0.433 -0.043,0.78 0,0.953 0.087,0.26 0.303,0.477 0.693,0.736 0.39,0.216 0.606,0.433 0.736,0.606 0,0.26 0.086,0.649 0.259,1.256 0.043,0.52 -0.043,0.909 -0.39,1.212 -0.043,0 -0.086,0 -0.13,0 0.086,0.13 0.13,0.303 0.217,0.433 v 0.043 c -0.087,0.216 -0.217,0.39 -0.477,0.52 -0.346,0.346 -0.649,0.953 -0.909,1.818 l 0.13,0.043 c 0.217,0 0.563,0 1.039,0 0.173,0 0.433,0.043 0.779,0.173 0.087,0 0.217,0.043 0.347,0.087 0.26,0.086 0.692,0.476 1.299,1.212 0.13,0.043 0.346,0.086 0.606,0.173 0.39,0.087 0.563,0.26 0.606,0.433 0,0.086 -0.217,0.39 -0.649,0.779 -0.347,0.346 -0.39,0.563 -0.13,0.779 0.13,0 0.39,-0.043 0.779,-0.173 0.346,-0.13 0.606,-0.173 0.736,-0.13 0.346,0.087 0.52,0.347 0.606,0.736 0,0.26 0.043,0.563 0.086,0.996 0,0.087 0.043,0.217 0.173,0.433 l 0.13,0.736 c 0.173,0.347 0.649,0.65 1.342,0.823 0.216,0.13 0.433,0.347 0.736,0.563 l 0.13,0.086 c 0.043,0.043 0.13,0.087 0.216,0.217 0.086,0.26 0.26,0.692 0.52,1.212 0.043,0.173 0.087,0.39 0.13,0.736 0,0.13 0.086,0.216 0.173,0.303 0.303,0.476 0.649,0.822 0.953,1.039 0.043,0.043 0.216,0.086 0.476,0.216 0.303,0.087 0.606,0.39 0.996,0.866 l 0.216,0.736 c 0.216,0.649 0.477,1.169 0.779,1.559 0.13,0.13 0.347,0.303 0.736,0.477 0.346,0.173 0.563,0.346 0.649,0.52 0.086,0.173 0.173,0.476 0.216,0.952 0,0.303 0.173,0.563 0.52,0.823 0.086,0.087 0.303,0.13 0.693,0.173 0.736,0.086 1.255,0.13 1.472,0.086 0.043,0 0.39,-0.043 1.083,-0.13 0.433,-0.043 0.823,-0.043 1.126,0.043 l 0.303,0.173 c 0.173,0.043 0.346,0.087 0.606,0.13 0.26,0.086 1.039,0.736 2.381,1.905 0.39,0.173 0.649,0.303 0.779,0.303 0.086,0 0.173,0 0.346,-0.043 0.39,-0.086 0.823,-0.043 1.299,0.173 0.216,0.043 0.563,0.26 0.996,0.563 0.086,0.043 0.26,0.087 0.52,0.173 0.13,0.043 0.52,0.39 1.126,0.953 0.259,0.13 0.563,0.173 0.952,0.13 0.043,0.086 0.26,0.39 0.52,0.866 0.217,0.346 0.477,0.563 0.779,0.692 0.087,0 0.52,-0.043 1.386,-0.216 0.26,-0.086 0.693,0 1.299,0.216 0.39,0.173 0.953,0.52 1.732,1.126 0.13,0.086 0.346,0.303 0.606,0.606 0.13,0.043 0.303,0.13 0.52,0.173 0.173,0.086 0.346,0.26 0.649,0.476 0.129,0.043 0.346,0.13 0.736,0.173 0.043,0.043 0.216,0.173 0.476,0.39 0.217,0.13 0.433,0.216 0.649,0.26 0.26,0.26 0.953,0 2.165,-0.779 0.086,-0.13 0.216,-0.347 0.303,-0.606 0.216,-0.347 0.563,-0.52 1.039,-0.563 l 0.13,0.086 c 0.043,0.086 0.043,0.26 -0.043,0.563 -0.216,0.649 -0.433,1.083 -0.649,1.299 -0.303,0.216 -0.52,0.39 -0.693,0.52 -0.303,0.26 -0.433,0.563 -0.346,0.866 0.346,0.26 0.606,0.433 0.779,0.52 0.26,0.13 0.693,0.13 1.299,-0.043 0.563,-0.216 0.953,-0.26 1.125,-0.173 l 0.087,0.086 c -0.043,0.26 -0.216,0.433 -0.563,0.52 -0.433,0.13 -0.649,0.26 -0.736,0.433 l 0.13,0.087 c 0.13,0.086 0.39,0.043 0.823,-0.087 0.433,-0.173 0.736,-0.216 0.822,-0.216 0.347,0.043 0.52,0.26 0.563,0.693 0.043,0.216 0.086,0.52 0.086,0.996 0.043,0.043 0.173,0.303 0.433,0.736 0.043,0.043 0.173,0.087 0.26,0.173 0.13,0.043 0.26,0.087 0.52,0.13 0.606,-0.39 0.996,-0.779 1.255,-1.212 l -0.043,-0.13 -0.649,-0.476 c 0,0 0,-0.13 0,-0.303 0.043,-0.346 0.13,-0.563 0.303,-0.736 0.173,-0.13 0.26,-0.346 0.26,-0.606 l 0.173,-0.043 c 0.173,0.13 0.303,0.13 0.477,0.043 l 0.043,-0.173 -0.087,-0.779 v -0.173 c 0,-0.216 -0.216,-0.52 -0.649,-0.953 -0.216,-0.173 -0.39,-0.303 -0.477,-0.39 -0.259,-0.303 -0.216,-0.823 0.043,-1.515 0.173,-0.303 0.26,-0.477 0.303,-0.606 0.39,-1.082 0.606,-1.645 0.649,-1.688 0.26,-0.346 0.779,-0.52 1.559,-0.52 0.217,-0.086 0.303,-0.26 0.217,-0.563 l -0.173,-0.086 -0.303,0.086 c -0.216,-0.043 -0.346,-0.13 -0.346,-0.303 0.043,-0.173 0.39,-0.563 1.039,-1.083 0.563,-0.477 0.909,-0.953 0.909,-1.429 l -0.216,-0.563 c 0.043,-0.13 0.086,-0.216 0.216,-0.216 0.043,0 0.303,0.086 0.823,0.303 0.346,0.087 0.649,0.087 0.953,-0.086 0.216,-0.087 0.476,-0.26 0.866,-0.563 0.216,-0.13 0.606,-0.39 1.083,-0.693 0.303,-0.173 0.736,-0.39 1.342,-0.606 0.13,-0.086 0.303,-0.216 0.606,-0.39 0.086,-0.043 0.39,-0.086 0.953,-0.086 0.303,-0.043 0.736,-0.173 1.342,-0.433 0.39,-0.086 0.952,-0.26 1.775,-0.476 0.087,-0.043 0.173,-0.217 0.347,-0.563 0.086,-0.26 0.476,-0.477 1.039,-0.649 0.216,-0.087 0.476,-0.043 0.866,0.173 0.043,-0.043 0.173,-0.216 0.346,-0.52 0.087,-0.043 0.347,0.043 0.736,0.217 0.346,0.13 0.606,0.26 0.693,0.39 v 0.173 c -0.347,0.217 -0.52,0.433 -0.477,0.693 0.087,0.216 0.26,0.303 0.433,0.303 0.346,0 0.563,-0.13 0.693,-0.433 0.043,-0.043 0.13,-0.346 0.216,-0.866 l 0.13,-0.347 c 0.477,-0.346 1.212,-0.086 2.295,0.736 0,-0.043 0,-0.043 0.043,-0.043 0.26,-0.173 0.26,-0.693 0,-1.515 -0.173,-0.39 -0.259,-0.65 -0.303,-0.823 l -0.13,-0.26 c -0.303,-0.477 -0.477,-0.693 -0.477,-0.736 -0.346,-0.736 0.39,-1.905 2.165,-3.55 0.043,-0.043 0.13,-0.086 0.26,-0.086 0.216,0 0.39,0.086 0.476,0.173 0.043,0.086 0.13,0.216 0.26,0.39 0.217,0.26 0.433,0.39 0.649,0.476 0.563,0.173 1.516,0.26 2.944,0.26 0.26,0 0.649,-0.086 1.169,-0.26 1.126,-0.433 1.949,-1.083 2.555,-1.992 0.13,-0.216 0.346,-0.52 0.563,-0.953 l 0.952,-1.212 c 0.087,-0.087 0.13,-0.217 0.13,-0.347 -0.043,-0.173 -0.217,-0.346 -0.563,-0.476 v -0.173 c 0.173,-0.173 0.26,-0.346 0.303,-0.563 l -0.043,-0.13 c -0.13,-0.086 -0.39,-0.13 -0.779,-0.173 l -0.087,-0.13 0.087,-0.39 c -0.26,-0.303 -0.433,-0.52 -0.52,-0.693 0,-0.433 0.086,-0.779 0.346,-1.039 0.043,-0.043 0.216,-0.087 0.606,-0.13 0.087,-0.043 0.26,-0.086 0.39,-0.173 0.477,0 1.169,0.173 2.079,0.52 0.086,-0.13 0.216,-0.303 0.346,-0.563 0.13,-0.043 0.39,-0.086 0.823,-0.086 0.043,-0.043 0.086,-0.216 0.173,-0.476 -0.129,-0.347 -0.476,-0.563 -1.169,-0.693 -0.043,-0.346 -0.13,-0.563 -0.216,-0.693 -0.476,-0.043 -0.823,-0.086 -0.996,-0.216 -0.173,-0.303 -0.173,-0.477 -0.129,-0.563 1.688,0.086 2.598,-0.043 2.728,-0.39 v -0.173 c -1.299,-2.035 -1.992,-3.377 -1.992,-4.07 0.086,-0.13 0.26,-0.216 0.563,-0.26 -0.087,-0.649 -0.173,-0.996 -0.217,-1.039 -0.043,-0.043 -0.52,-0.043 -1.429,-0.043 -0.086,0.043 -0.173,0.217 -0.216,0.477 -0.043,0.216 -0.13,0.39 -0.173,0.433 -1.039,-0.303 -1.775,-0.476 -2.294,-0.563 l -0.087,-0.087 c 0.087,-0.303 0.087,-0.52 -0.043,-0.649 -0.563,-0.043 -0.996,-0.086 -1.255,-0.216 0,-0.606 0,-1.039 -0.087,-1.299 -0.043,-0.086 -0.259,-0.173 -0.606,-0.347 -0.303,-0.13 -0.476,-0.433 -0.563,-0.822 -0.087,-0.693 -0.173,-1.212 -0.13,-1.602 0.087,-0.693 0.13,-1.169 0.087,-1.429 -0.043,-0.39 -0.26,-0.736 -0.693,-1.083 l -0.13,-0.13 c -0.303,-0.13 -0.476,-0.173 -0.649,-0.086 -0.173,0.086 -0.303,0.173 -0.347,0.216 -0.389,0.26 -1.082,0.086 -2.035,-0.477 -0.563,-0.346 -0.866,-0.52 -0.866,-0.52 0.043,-0.303 -0.043,-0.52 -0.173,-0.606 -0.26,-0.086 -0.649,-0.13 -1.083,-0.086 -0.52,0 -0.866,-0.043 -1.083,-0.087 -0.26,-0.043 -0.476,-0.216 -0.649,-0.433 -0.216,-0.26 -0.346,-0.433 -0.433,-0.433 -0.563,-0.13 -0.866,-0.217 -0.909,-0.26 l -0.087,-0.26 c -0.173,-0.347 -0.39,-0.563 -0.693,-0.606 0.087,-0.216 0.13,-0.39 0.173,-0.476 0,-0.173 -0.086,-0.563 -0.303,-1.212 -0.173,-0.563 -0.346,-0.953 -0.476,-1.212 0.043,-0.303 0.433,-0.779 1.169,-1.429 0.736,-0.693 1.169,-1.169 1.169,-1.472 0,0 -0.043,-0.433 -0.086,-1.255 -0.13,-0.346 -0.173,-0.649 -0.087,-0.953 0.087,-0.433 0.13,-0.693 0.173,-0.736 -0.26,-0.26 -0.346,-0.477 -0.346,-0.606 -0.216,-0.303 -1.126,-0.649 -2.728,-0.996 -0.217,-0.043 -0.52,0.13 -0.866,0.563 l -0.13,0.043 c -0.476,0.39 -0.909,0.649 -1.212,0.779 l -0.216,-0.043 c -0.087,-0.13 -0.347,-0.347 -0.779,-0.693 h -0.173 c -0.173,0.043 -0.303,0.346 -0.39,0.866 -0.086,0.433 -0.26,0.736 -0.563,0.823 -0.866,0.043 -1.516,0.043 -1.949,0 -0.13,0 -0.303,-0.13 -0.563,-0.346 -0.216,-0.173 -0.433,-0.26 -0.649,-0.217 -1.169,0.26 -1.818,0.39 -1.948,0.52 -0.26,0.259 -0.477,0.476 -0.693,0.52 l -0.13,-0.087 -0.043,-0.13 c 0.086,-0.52 0.13,-0.823 0.13,-0.823 -0.173,-0.086 -0.347,-0.086 -0.563,-0.086 -0.086,-0.26 0,-0.779 0.216,-1.516 l 0.13,-0.086 c 0.693,0.173 1.083,-0.043 1.256,-0.649 0.13,-0.563 0.043,-0.953 -0.303,-1.255 -0.26,-0.173 -0.693,-0.347 -1.342,-0.52 0.043,-0.563 0,-0.91 -0.086,-0.996 -0.303,-0.086 -0.433,-0.173 -0.433,-0.216 l -0.043,-0.649 c 0,-0.13 -0.043,-0.26 -0.173,-0.433 -0.043,-0.086 -0.173,-0.13 -0.347,-0.216 -0.259,-0.087 -0.39,0 -0.52,0.216 -0.173,0.346 -0.26,0.52 -0.26,0.52 h -0.173 c -0.303,-0.173 -0.477,-0.736 -0.563,-1.688 0,-0.13 -0.043,-0.347 -0.086,-0.649 0,-0.173 0.086,-0.39 0.26,-0.649 0.216,-0.303 0.303,-0.477 0.26,-0.649 0,-0.303 -0.173,-0.649 -0.52,-1.04 -0.649,-0.433 -1.083,-0.822 -1.342,-1.039 -0.173,-0.303 -0.346,-0.476 -0.477,-0.563 -0.476,-0.52 -0.736,-0.823 -0.779,-0.866 -0.433,-0.606 -0.649,-1.083 -0.649,-1.472 -0.086,-1.559 -0.043,-2.684 0.086,-3.334 l -0.043,-0.129 c -0.649,-0.217 -1.126,-0.39 -1.386,-0.52 -0.086,0.347 -0.173,0.649 -0.26,0.78 -0.303,-0.173 -0.693,-0.173 -1.169,-0.043 l -0.086,0.086 -0.087,0.39 c -0.606,-0.13 -0.952,-0.13 -1.082,-0.043 -0.043,0.086 0,0.303 0.043,0.649 0.087,0.303 0.043,0.52 -0.086,0.649 -0.433,-0.26 -0.736,-0.433 -0.953,-0.433 -0.13,-0.043 -0.346,0.13 -0.606,0.39 -0.087,0.086 -0.043,0.26 0,0.433 0.086,0.173 0.086,0.303 0.043,0.433 -0.173,0.13 -0.347,0.13 -0.606,-0.043 -0.303,-0.173 -0.476,-0.303 -0.606,-0.346 -1.299,-0.563 -2.035,-0.953 -2.251,-1.126 -0.433,-0.39 -0.779,-0.823 -1.04,-1.255 l -0.129,-0.087 c -0.173,0 -0.649,0.13 -1.342,0.433 -0.693,0.216 -1.169,0.433 -1.386,0.563 -0.173,0.086 -0.26,0.216 -0.303,0.39 l 0.043,0.13 c 0.173,0.086 0.52,0.303 1.126,0.649 0,0.173 0,0.346 -0.087,0.563 -0.303,-0.13 -0.692,-0.173 -1.169,-0.217 l -0.779,-0.086 c -0.26,0 -0.52,0.13 -0.736,0.433 -0.26,0.346 -0.433,0.476 -0.563,0.52 -0.173,-0.043 -0.693,-0.303 -1.559,-0.736 -0.26,-0.086 -0.433,-0.173 -0.563,-0.216 -0.346,-0.216 -0.606,-0.347 -0.693,-0.347 -0.996,-0.13 -1.731,-0.216 -2.208,-0.303 l -1.862,-0.347 c -1.515,-0.043 -2.641,-0.13 -3.42,-0.216 -0.26,-0.043 -0.52,-0.173 -0.736,-0.303 -0.217,-0.26 -0.433,-0.433 -0.606,-0.563 -0.043,-0.087 -0.216,-0.087 -0.476,-0.043 -0.26,0.086 -0.433,0.086 -0.52,0.086 -0.13,-0.303 -0.217,-0.52 -0.303,-0.649 -0.13,-0.26 -0.303,-0.346 -0.563,-0.346 l -1.429,-0.043 -0.13,0.13 c -0.086,0.649 -0.216,1.083 -0.39,1.299 -0.13,0.043 -0.303,0.043 -0.649,0.043 -0.303,0 -0.52,-0.043 -0.52,-0.043 -0.216,-0.173 -0.39,-0.303 -0.476,-0.346 -0.346,-0.217 -0.779,-0.13 -1.256,0.216 -0.476,-0.346 -0.779,-0.563 -0.953,-0.606 l -0.476,-0.216 v 0.216 c -0.346,0.52 -0.606,0.909 -0.779,1.169 -0.13,0.52 -0.303,0.866 -0.476,1.126 -0.563,0.173 -0.953,0.303 -1.169,0.39 -0.347,0.13 -0.606,0.563 -0.693,1.299 -0.693,0.173 -1.169,0.346 -1.472,0.52 -0.173,0.086 -0.303,0.303 -0.39,0.736 -0.13,0.433 -0.217,0.736 -0.303,0.823 -0.173,0.13 -0.433,0.216 -0.779,0.216 -0.346,0 -0.649,0.043 -0.823,0.043 -0.043,0.043 -0.346,0.13 -0.909,0.303 -0.173,0.086 -0.303,0.173 -0.39,0.216 -0.606,0.303 -0.996,0.52 -1.083,0.649 v 0.13 c -0.043,0.13 -0.346,0.217 -0.909,0.217 -0.433,0 -0.779,0 -0.996,-0.043 0,-0.216 0,-0.347 -0.087,-0.477 -0.13,-0.086 -0.433,-0.129 -0.909,-0.129 l -0.13,0.346 c -0.303,0.13 -0.996,0.13 -2.122,0.086 -1.082,-0.086 -1.818,-0.173 -2.122,-0.346 -0.13,-0.173 -0.216,-0.303 -0.26,-0.347 -0.129,-0.822 -0.303,-1.212 -0.476,-1.299 l -0.433,-0.086 c -0.216,-0.043 -0.39,-0.043 -0.52,0 -0.043,0 -0.086,0.043 -0.216,0.216 -0.173,0.087 -0.303,0.173 -0.39,0.217 -0.173,0.216 -0.303,0.346 -0.433,0.433 l -0.13,-0.043 c -0.13,-0.13 -0.216,-0.26 -0.303,-0.347 -0.297,-0.35 -0.644,-0.523 -0.99,-0.523", + "Odessa": "m 231.118,214.344 c -0.173,-0.086 -0.736,0.087 -1.688,0.606 -0.13,0.13 -0.13,0.476 0.043,1.082 0.13,0.563 0.173,0.953 0.13,1.126 -0.13,0.13 -0.433,0.346 -0.909,0.606 -0.346,0.217 -0.649,0.563 -0.909,0.996 -0.303,0.52 -0.476,0.779 -0.476,0.823 -0.173,0.13 -0.649,0.303 -1.472,0.563 -0.693,0.217 -1.126,0.347 -1.299,0.347 0,0.086 0.13,0.216 0.303,0.433 0.347,0.519 0.52,0.779 0.563,0.779 0.173,0.26 0.563,0.606 1.039,0.996 0.606,0.693 1.039,1.039 1.342,1.125 0.13,0.043 0.433,0.087 0.866,0.087 0.433,0.043 0.779,-0.087 1.039,-0.39 0.13,-0.13 0.26,-0.563 0.433,-1.342 0.173,-0.216 0.26,-0.39 0.39,-0.52 0.043,0 0.173,0 0.303,-0.086 0.433,-0.13 0.866,-0.13 1.299,-0.087 0.13,0 0.217,0.087 0.433,0.26 0,0.043 0.346,0.563 0.866,1.472 0.216,1.516 0.39,2.338 0.433,2.338 0.13,0.303 0.433,0.477 0.91,0.563 0.563,0.086 0.822,0.173 0.909,0.217 l 0.087,0.129 -0.043,0.173 c -0.13,0.13 -0.39,0.52 -0.779,1.126 -0.086,0.173 -0.303,0.39 -0.563,0.649 -0.52,0.649 -0.692,1.212 -0.52,1.688 0.173,0.173 0.649,0.346 1.602,0.563 0.216,0.086 0.303,0.26 0.303,0.606 -0.043,0.346 -0.173,0.606 -0.39,0.736 0,0.043 0,0.043 0,0.043 -0.13,0.13 -0.347,0.303 -0.649,0.52 -0.39,0.346 -0.477,1.083 -0.39,2.251 l 0.13,0.303 c 0,0.26 -0.043,0.779 -0.173,1.515 -0.086,0.736 -0.216,1.256 -0.303,1.472 -0.13,0.303 -0.433,0.693 -0.909,1.212 -0.086,0 -0.303,0.173 -0.476,0.52 -0.39,0.649 -0.563,1.039 -0.563,1.126 -0.043,0.173 0,0.476 0.13,1.039 0.13,0.563 0.26,0.909 0.346,1.082 h 0.043 c 0.13,0.26 0.39,0.693 0.736,1.342 0.303,0.953 0.433,1.472 0.52,1.516 0.129,0.086 0.346,0.043 0.606,-0.043 0.13,-0.346 0.26,-0.606 0.39,-0.736 0.086,-0.13 0.26,-0.216 0.476,-0.216 0.173,-0.043 0.303,0.129 0.433,0.433 0.043,0.173 0.087,0.433 0.173,0.736 0.216,0.217 0.563,0.347 1.082,0.433 0.087,0.087 0.26,0.433 0.477,1.083 l 0.086,0.216 c 0.043,0.13 0.086,0.347 0.13,0.649 0.217,0.043 0.52,0.043 1.083,0 0.043,0.043 0.087,0.173 0.216,0.347 0.39,0.433 0.52,0.823 0.477,1.083 -0.13,0.476 -0.173,0.779 -0.173,0.909 0.043,0.173 0.217,0.476 0.52,0.909 0.303,0.39 0.477,0.649 0.649,0.736 0.043,0.043 0.303,0.043 0.78,0.043 0.563,-0.043 0.909,-0.13 1.082,-0.303 0.13,-0.173 0.217,-0.606 0.303,-1.212 0.043,-0.606 0.13,-0.953 0.303,-1.04 0.216,-0.086 0.563,-0.086 0.996,-0.043 0.433,0.043 0.736,0.13 0.909,0.216 0.347,0.303 0.693,0.996 0.953,2.078 0.26,1.126 0.173,1.775 -0.26,1.948 -0.433,0.173 -0.693,0.26 -0.736,0.347 -0.173,0.173 -0.216,0.39 -0.173,0.649 0.043,0.173 0.086,0.39 0.173,0.693 l 0.087,1.039 c 0,0.39 0.043,0.909 0.216,1.559 v 0.433 c -0.043,0.173 -0.173,0.303 -0.216,0.39 -0.216,0.173 -0.563,0.303 -0.953,0.346 -0.433,0.043 -0.779,0.086 -0.996,0.13 l -0.087,0.13 c 0,0.086 0,0.217 0.087,0.433 0.173,0.39 0.476,0.909 0.909,1.645 0,0.043 0.086,0.13 0.13,0.26 l 0.13,0.087 0.173,-0.043 c 0.086,-0.693 0.303,-1.169 0.736,-1.342 0.173,-0.13 0.39,-0.086 0.693,0.043 0.216,0.086 0.433,0.26 0.52,0.433 0.043,0.086 0.13,0.39 0.216,0.909 0.13,0.563 0.173,0.866 0.173,0.953 -0.087,0.346 -0.39,0.606 -0.823,0.779 -0.086,0.043 -0.173,0.477 -0.26,1.212 v 0.433 c 0,0 -0.087,0.39 -0.26,1.126 -0.13,0.563 -0.173,0.909 -0.13,0.996 0.216,0.087 0.649,0.13 1.342,0.043 0.086,0.043 0.26,0.216 0.606,0.606 0.346,0.39 0.606,0.606 0.823,0.649 0.26,0.13 0.779,0.13 1.386,0.087 0.259,0.13 0.476,0.433 0.692,0.996 0.173,0.52 0.347,0.866 0.52,0.953 0.087,0.086 0.26,0.13 0.606,0.13 0.26,0.043 0.476,0.086 0.649,0.086 0.39,-0.043 0.909,-0.043 1.515,-0.13 0.52,0.043 0.909,0.347 1.212,0.953 0.173,0.303 0.39,0.779 0.52,1.342 0.216,0.043 0.476,-0.087 0.736,-0.347 0.216,0 0.346,0.13 0.519,0.347 0.043,0.216 0,0.52 -0.129,0.952 0,0.043 0.173,0.477 0.563,1.342 0.043,0.043 0.087,0.26 0.13,0.649 l 0.086,0.606 c 0,0.26 -0.086,0.736 -0.216,1.299 0,0.433 0,0.866 -0.086,1.255 0,0.087 0,0.173 0,0.303 0,0.173 -0.086,0.39 -0.216,0.693 -0.173,0.303 -0.217,0.52 -0.217,0.779 0.086,0.606 0.217,1.212 0.52,1.862 0.043,0.26 0.087,0.39 0.13,0.39 -0.043,0.13 -0.043,0.26 0,0.476 -0.086,0.39 -0.26,0.563 -0.52,0.65 -0.39,-0.043 -0.693,0 -0.909,0.043 -0.086,0 -0.303,0.13 -0.736,0.347 0,0.043 0,0.129 0,0.303 0,0.086 0,0.216 0,0.347 0,0.216 0.216,0.519 0.606,0.996 0.043,0.086 0.173,0.216 0.346,0.433 0.043,0 0.173,0.043 0.477,0.086 0.216,0 0.346,0.043 0.39,0.13 0.044,0.087 0.13,0.216 0.26,0.433 0.086,0.173 0.26,0.173 0.433,0.043 0,0 0.086,-0.129 0.26,-0.346 l 0.13,-0.043 c 0.13,0.043 0.13,0.087 0.13,0.173 0.086,0.043 0.13,0.173 0.173,0.346 0.043,0.043 0.13,0.173 0.26,0.347 0.043,0.216 0.13,0.39 0.13,0.39 l 0.043,0.173 c -0.086,0.087 -0.216,0.13 -0.433,0.13 0,0.086 0,0.173 0.043,0.259 0.086,0.087 0.216,0.173 0.433,0.217 0.13,0.086 0.216,0.216 0.433,0.39 0.086,0.086 0.216,0.086 0.433,0.13 0.13,0 0.26,0.087 0.433,0.26 l 0.13,0.433 0.086,0.086 c 0.217,-0.043 0.39,-0.13 0.563,-0.303 0.13,-0.043 0.39,0 0.693,0.087 0.216,0.043 0.346,0.13 0.433,0.303 l 0.129,0.217 c 0,0.173 -0.043,0.39 -0.173,0.693 l -0.346,0.649 c -0.217,0.086 -0.433,0.173 -0.693,0.26 -0.606,0.043 -1.039,0.043 -1.299,0.043 -0.52,-0.043 -0.866,-0.043 -1.083,0 -0.173,0 -0.303,0 -0.39,0 -0.347,-0.043 -0.606,-0.043 -0.736,-0.043 -1.083,-0.043 -1.645,-0.043 -1.688,-0.043 -0.173,0.086 -0.39,0.39 -0.649,0.909 -0.26,0.433 -0.52,0.649 -0.823,0.649 -0.086,0 -0.26,-0.043 -0.52,-0.086 -0.346,-0.087 -0.563,-0.303 -0.693,-0.649 0.13,-0.477 0.13,-0.866 0.13,-1.126 -0.043,-0.043 -0.087,-0.13 -0.13,-0.26 -0.13,-0.303 -0.346,-0.779 -0.736,-1.429 -0.26,-0.476 -0.649,-0.866 -0.996,-1.125 -0.346,-0.173 -0.563,-0.347 -0.649,-0.433 -0.13,-0.346 -0.259,-0.606 -0.346,-0.736 -0.13,0.129 -0.086,0.606 0.087,1.385 0,0.13 -0.043,0.26 -0.173,0.39 -0.26,0.303 -0.563,0.433 -0.953,0.39 -0.563,-0.043 -0.909,-0.043 -1.083,0 l -0.043,0.173 c 0,0.173 0.173,0.52 0.52,1.039 l -0.173,0.476 c -0.303,0.52 -0.606,0.823 -0.823,0.953 -0.26,0.13 -0.606,0.043 -1.039,-0.216 -0.433,-0.217 -0.693,-0.477 -0.736,-0.779 0.043,-0.52 -0.043,-0.953 -0.259,-1.256 l -0.736,0.086 c -0.39,0 -0.866,-0.216 -1.515,-0.606 -0.26,-0.346 -0.26,-0.779 0.043,-1.385 0.217,-0.563 0.217,-0.953 -0.043,-1.169 -0.433,-0.26 -0.866,-0.173 -1.386,0.347 0,0 -0.216,0.26 -0.649,0.823 -0.086,0.13 -0.173,0.259 -0.303,0.433 -0.043,0.087 -0.173,0.217 -0.303,0.303 l -0.433,0.39 c -0.043,0.13 -0.043,0.39 0.086,0.736 l -0.043,0.173 -0.13,0.043 c -0.303,0 -0.649,-0.433 -0.909,-1.256 -0.087,-0.39 -0.217,-0.692 -0.26,-0.866 l -0.173,-0.52 c -0.087,-0.13 -0.216,-0.173 -0.347,-0.173 -0.303,0.043 -0.606,0.39 -0.822,0.996 -0.043,0.087 -0.13,0.217 -0.173,0.39 -0.043,0.086 0,0.52 0.173,1.212 0.086,0.52 0.043,0.866 -0.26,0.996 -0.259,-0.043 -0.433,-0.086 -0.563,-0.086 -0.26,-0.043 -0.433,0 -0.606,0.173 0,0 -0.13,0.303 -0.347,0.866 -0.173,0.39 -0.39,0.563 -0.736,0.52 -0.477,-0.043 -0.693,-0.303 -0.649,-0.693 0.433,-0.779 0.693,-1.299 0.736,-1.602 0.043,-0.13 0,-0.563 -0.13,-1.342 0.087,-0.433 0.13,-0.736 0.173,-0.909 0,-0.346 0,-0.779 -0.043,-1.429 0,-0.52 -0.086,-0.866 -0.086,-1.083 -0.087,-0.26 -0.26,-0.563 -0.606,-0.909 l -0.086,0.086 c -0.303,-0.043 -0.866,0.13 -1.602,0.606 -1.039,0.563 -1.602,0.866 -1.645,0.909 l -1.083,0.39 c -0.087,0 -0.477,0.26 -1.126,0.649 -0.13,0.087 -0.346,0.173 -0.606,0.303 -0.173,0.13 -0.433,0.346 -0.736,0.649 -0.13,0.13 -0.303,0.303 -0.433,0.563 -0.347,0.389 -0.52,0.649 -0.563,0.692 -0.303,0.477 -0.173,1.516 0.433,3.161 l 0.086,0.26 0.13,0.606 c 0.087,0.606 0.13,0.909 0.13,0.909 0,0.086 0,0.347 0,0.909 -0.086,0.13 -0.173,0.346 -0.39,0.649 -0.13,0.39 0.043,0.996 0.606,1.732 l 0.909,0.779 c 0.39,0.39 0.693,0.736 0.91,1.083 0.043,0.173 0.13,0.26 0.216,0.303 l -0.043,0.043 0.087,0.13 c 0,0.087 0,0.217 0,0.39 -0.043,0.13 -0.217,0.52 -0.606,1.212 -0.346,0.649 -0.606,1.083 -0.692,1.212 -0.043,0.043 -0.26,0.216 -0.649,0.563 -0.26,0.216 -0.433,0.476 -0.52,0.692 -0.043,0.217 -0.043,0.606 0.043,1.256 0.043,0.39 0.216,0.866 0.563,1.472 0.086,0.216 0.13,0.52 0.086,0.952 -0.086,0.433 -0.173,0.736 -0.346,0.823 -0.087,0.087 -0.26,0.173 -0.52,0.217 -1.732,0.563 -2.728,0.822 -2.901,0.779 -0.043,0 -0.303,0.086 -0.736,0.173 -0.086,0.043 -0.173,0.087 -0.216,0.13 -0.433,0.129 -0.693,0.216 -0.693,0.216 -0.173,0.043 -0.216,0.043 -0.303,0.086 -0.519,0.13 -0.866,0.303 -0.996,0.563 -0.173,0.216 -0.216,0.606 -0.173,1.169 0.043,0.173 0.087,0.433 0.217,0.736 0.086,0.216 0.13,0.519 0.173,0.996 0,0.216 0.087,0.563 0.26,1.039 0,0.173 -0.087,0.433 -0.217,0.866 -0.173,0.39 -0.563,0.693 -1.169,0.866 -0.606,0.173 -0.953,0.303 -0.996,0.39 -0.043,0.216 0,0.563 0.173,1.083 -0.086,0.52 -0.303,0.823 -0.693,0.909 -0.433,0.043 -0.736,0.086 -0.909,0.086 l -1.083,0.087 c -0.563,0.173 -0.779,0.433 -0.736,0.909 0.043,0.087 0.086,0.347 0.173,0.693 0.086,0.303 0.043,0.52 -0.087,0.649 l -0.216,0.087 c -0.173,0 -0.303,0 -0.39,0 -0.477,-0.043 -0.823,0 -1.039,0.13 l -0.043,0.13 c -0.173,0.216 -0.346,0.692 -0.606,1.342 -0.087,0.13 -0.13,0.217 -0.13,0.26 -0.216,0.26 -0.303,0.39 -0.303,0.476 0,0.087 0.173,0.216 0.52,0.39 0.303,0.173 0.52,0.347 0.606,0.52 0.043,0.043 0.043,0.303 0.043,0.866 0,0.476 0.13,0.866 0.347,1.169 0,0 0.129,0.13 0.39,0.39 l 0.043,0.13 c -0.129,0.26 -0.606,0.52 -1.299,0.779 -0.086,0.13 -0.086,0.216 -0.043,0.346 0.087,0.217 0.26,0.433 0.52,0.649 0.043,0.043 0.043,0.173 0.043,0.303 0.043,1.125 -0.563,1.602 -1.775,1.472 -0.649,-0.086 -1.126,-0.13 -1.342,-0.173 0.086,0.52 0.086,1.342 -0.043,2.468 0,0.217 0.087,0.563 0.217,1.04 0.043,0.173 0.043,0.52 0,0.909 0.13,1.992 0.086,3.074 -0.13,3.334 -0.043,0 -0.26,0.086 -0.649,0.173 -0.52,0.043 -0.78,0.086 -0.823,0.086 -0.13,-0.476 -0.26,-0.822 -0.39,-0.996 -0.346,-0.13 -0.519,-0.26 -0.649,-0.39 -0.129,-0.216 -0.216,-0.347 -0.303,-0.433 -0.173,-0.13 -0.303,-0.173 -0.347,-0.26 -0.216,-0.173 -0.346,-0.433 -0.346,-0.736 0,-0.347 0.087,-0.563 0.303,-0.779 0.043,-0.087 0.086,-0.13 0.086,-0.13 0.216,-0.303 0.433,-0.39 0.606,-0.39 l 0.477,0.39 c 0.173,0.13 0.347,0.173 0.563,0.043 0.26,0 0.433,0.173 0.649,0.52 l 0.13,-0.043 c 0.043,-0.26 0.086,-0.477 0.086,-0.563 0.217,-0.303 0.347,-0.52 0.347,-0.693 -0.043,-0.476 -0.087,-0.822 -0.087,-0.996 -0.043,-0.26 -0.043,-0.693 0,-1.386 0.043,-0.649 0.087,-1.082 0.173,-1.212 -0.303,0 -0.476,0.043 -0.476,0 -0.866,-0.303 -1.516,-0.477 -1.905,-0.52 -0.303,-0.129 -0.52,-0.173 -0.693,-0.173 -0.346,-0.087 -0.822,0.043 -1.342,0.26 -0.606,0.303 -0.909,0.606 -0.996,0.953 -0.086,0.13 -0.173,0.26 -0.216,0.476 -0.087,0.043 -0.087,0.086 -0.087,0.13 -0.086,0.13 -0.173,0.433 -0.26,0.779 -0.13,0.346 -0.173,0.606 -0.086,0.909 0.086,-0.086 0.39,-0.043 0.953,0.217 0.52,0.216 0.822,0.39 0.952,0.563 0.173,0.303 0.26,0.909 0.173,1.819 0.173,0.779 0.477,1.515 0.953,2.338 0.216,0.39 0.52,0.693 0.779,0.952 0.13,0.13 0.346,0.217 0.649,0.347 0.303,0.26 0.52,0.433 0.606,0.433 0.303,0.13 0.78,0.26 1.429,0.433 0.259,0.13 0.649,0.26 1.212,0.477 l 1.256,0.433 c 0.216,0.086 0.52,0.39 0.909,0.822 0.476,0.217 0.909,0.347 1.386,0.347 0.606,-0.043 0.952,0 1.169,0.086 0.13,0.043 0.476,0.216 0.996,0.52 0.346,0.216 0.693,0.346 1.083,0.346 0.173,0 0.606,-0.086 1.299,-0.216 0,-0.086 0.303,-0.173 0.823,-0.216 0.52,-0.087 0.736,-0.217 0.649,-0.477 -0.043,-0.086 -0.087,-0.13 -0.13,-0.216 l -0.347,-0.173 c -0.26,-0.13 -0.476,-0.216 -0.606,-0.346 -0.086,-0.086 -0.13,-0.217 -0.173,-0.433 l -0.823,-0.476 c 0,0.043 -0.173,0.26 -0.433,0.606 -0.303,0.303 -0.563,0.433 -0.823,0.39 -0.303,-0.173 -0.606,-0.26 -0.866,-0.303 -0.433,0.043 -0.779,0.043 -0.996,0 -0.13,-0.173 -0.216,-0.303 -0.303,-0.303 -0.476,-0.087 -0.779,-0.216 -0.866,-0.39 0,-0.173 0,-0.26 0,-0.347 -0.043,-0.13 -0.043,-0.26 -0.043,-0.303 -0.043,-0.26 0.043,-0.433 0.217,-0.649 0.13,-0.173 0.303,-0.26 0.52,-0.26 0,0.129 0.043,0.26 0.086,0.476 l 0.13,0.043 0.087,-0.043 c 0.13,-0.26 0.216,-0.433 0.216,-0.433 0.433,-0.346 0.649,-0.606 0.693,-0.692 l -0.087,-0.173 c -0.303,0 -0.52,0 -0.649,-0.043 -0.086,-0.043 -0.26,-0.216 -0.476,-0.476 -0.26,-0.303 -0.433,-0.477 -0.433,-0.563 0.087,-0.606 0.173,-0.996 0.173,-1.256 -0.13,-0.39 -0.173,-0.692 -0.173,-0.909 0.173,-0.39 0.26,-0.649 0.26,-0.823 -0.13,-0.389 -0.173,-0.649 -0.216,-0.822 -0.13,-1.299 -0.13,-2.425 0.043,-3.377 0.043,-0.347 0.216,-0.649 0.476,-0.823 0.216,-0.216 0.303,-0.433 0.346,-0.649 -0.173,-0.303 -0.26,-0.52 -0.303,-0.649 0,-0.26 0,-0.477 0,-0.563 -0.389,-0.433 -0.606,-0.736 -0.692,-0.909 -0.13,-0.347 -0.13,-0.823 -0.043,-1.342 0.086,-0.693 0.13,-1.125 0.086,-1.342 -0.086,-0.476 -0.129,-0.736 -0.129,-0.736 0.086,-0.13 0.129,-0.217 0.173,-0.217 h 0.13 c 0.13,0.173 0.347,0.78 0.606,1.862 0.043,0.13 0.13,0.347 0.303,0.649 0,0.13 0,0.347 -0.086,0.65 0.173,0.173 0.303,0.346 0.346,0.476 0.087,0.346 0.087,1.169 0,2.338 0,0.13 0.087,0.433 0.173,0.866 l -0.216,0.129 v 0.087 c 0.39,0.303 0.606,0.476 0.649,0.606 0,0.086 -0.043,0.217 -0.086,0.39 -0.043,0.173 -0.087,0.433 -0.087,0.866 -0.086,0.13 -0.13,0.216 -0.13,0.26 l 0.043,0.173 c 0.043,0 0.173,0.087 0.303,0.26 0.477,0.606 0.563,1.342 0.347,2.208 -0.043,0.173 -0.13,0.433 -0.303,0.736 0.043,0.087 0.086,0.173 0.086,0.303 0.217,0.606 0.347,0.996 0.347,1.169 0,0.13 -0.043,0.303 -0.173,0.563 -0.086,0.26 -0.13,0.433 -0.086,0.563 l 0.086,0.13 c 0.13,-0.13 0.26,-0.173 0.39,-0.173 0.086,0.043 0.217,0.173 0.346,0.346 0.217,0 0.39,0 0.477,0.086 0.043,0.13 0.043,0.26 0.086,0.52 0,0.086 0.173,0.26 0.476,0.433 0.26,0.13 0.39,0.303 0.39,0.477 l -0.13,0.086 c -0.26,-0.086 -0.433,-0.086 -0.606,-0.086 v 0.13 c 0,0.086 0.087,0.216 0.217,0.346 0.086,0.173 0.129,0.303 0.129,0.433 l 0.823,0.476 c -0.043,-0.303 0.173,-0.52 0.606,-0.692 0.433,-0.13 0.606,-0.303 0.563,-0.563 -0.346,-0.433 -0.433,-0.823 -0.346,-1.169 0.043,-0.043 0.217,-0.087 0.52,-0.13 0.347,-0.086 0.693,0 0.866,0.303 0.13,0.13 0.303,0.39 0.52,0.693 0.173,0.043 0.433,0 0.736,-0.086 0.173,0.043 0.39,0.303 0.693,0.736 0.693,0.649 1.212,0.693 1.602,0.173 0.13,-0.173 0.173,-0.433 0.26,-0.823 0.043,-0.433 0.13,-0.693 0.216,-0.866 h 0.086 l 0.043,-0.043 0.953,0.043 c 0.173,-0.043 0.346,-0.173 0.476,-0.477 0.173,-0.303 0.347,-0.433 0.477,-0.52 0.26,-0.043 0.433,-0.13 0.563,-0.173 0.173,-0.129 0.477,-0.346 0.866,-0.692 l -1.862,-1.732 -0.086,0.043 c -0.996,0.087 -1.602,0.043 -1.862,-0.086 -0.087,-0.086 -0.087,-0.303 0,-0.692 0.086,-0.477 0.086,-0.736 0.043,-0.78 l -0.346,-0.779 c -0.086,-0.303 -0.13,-0.433 -0.13,-0.433 -0.173,-0.347 -0.217,-0.606 -0.086,-0.736 h 0.173 c 0.043,0 0.173,0.26 0.347,0.736 0.173,0.433 0.346,0.649 0.52,0.649 -0.087,-0.347 -0.087,-0.606 -0.13,-0.736 0,-0.866 -0.043,-1.385 -0.043,-1.645 -0.13,-0.303 -0.216,-0.52 -0.216,-0.693 -0.347,-1.126 -0.347,-2.078 -0.13,-2.771 0.043,0.043 0.13,0.13 0.303,0.346 0.043,0.043 0.13,0.173 0.26,0.303 0.129,0.13 0.173,0.39 0.129,0.823 0,0.433 0,0.693 0.043,0.866 0.043,0.13 0.217,0.433 0.477,0.823 v 0.216 c 0,0.26 0,0.649 0.086,1.169 0,0.13 0,0.303 -0.043,0.563 0.043,0.13 0.173,0.303 0.347,0.476 0.086,0.043 0.26,-0.043 0.476,-0.216 0.26,-0.26 0.433,-0.39 0.52,-0.433 0.086,-0.086 0.216,-0.043 0.26,0.043 l 2.251,-0.649 c -0.347,-0.216 -0.433,-0.476 -0.26,-0.779 0.39,-0.217 0.606,-0.606 0.693,-1.169 0.043,-0.087 0.13,-0.173 0.216,-0.173 0.043,-0.433 0.13,-0.693 0.217,-0.866 0.563,-0.866 0.866,-1.429 0.952,-1.689 0,-0.13 0.043,-0.433 0,-1.039 0,-0.563 0,-0.952 -0.043,-1.039 -0.043,-0.216 -0.087,-0.39 -0.087,-0.476 -0.043,-0.649 -0.086,-0.996 -0.086,-0.996 -0.217,-0.346 -0.346,-0.52 -0.39,-0.606 0,-0.216 0.086,-0.39 0.216,-0.476 0.087,-0.087 0.303,-0.043 0.52,0.129 l 0.39,0.173 c 0.043,0 0.13,0.173 0.26,0.433 0.13,0.26 0.173,0.39 0.173,0.476 0,0.173 -0.043,0.477 -0.173,0.866 0.173,0.13 0.26,0.216 0.303,0.303 0.043,0.173 0,0.606 -0.173,1.255 -0.13,0.649 -0.26,1.039 -0.346,1.212 -0.086,0.13 -0.26,0.346 -0.433,0.606 -0.043,0.173 -0.13,0.563 -0.216,1.083 -0.087,0.173 -0.26,0.303 -0.52,0.476 -0.173,0.13 -0.346,0.39 -0.39,0.736 -0.043,0.303 -0.043,0.606 0.043,0.823 0.173,0.346 0.476,0.563 0.866,0.52 l -0.043,0.216 -0.086,0.043 c -0.26,0 -0.433,-0.043 -0.563,-0.043 -0.216,0 -0.563,0 -1.039,0 l -2.251,0.649 c 0.043,0 0.043,0.086 0.043,0.173 0,0.39 -0.173,0.779 -0.477,1.039 -0.13,0.476 -0.173,0.693 -0.173,0.736 -0.043,0.13 0,0.347 0.043,0.693 -0.043,0.13 -0.13,0.26 -0.346,0.303 l 1.862,1.732 c 0.433,0 0.866,-0.13 1.255,-0.433 0.043,-0.043 0.217,-0.173 0.39,-0.346 0.52,0.043 0.823,-0.043 0.91,-0.13 0.043,-0.129 0.129,-0.173 0.173,-0.173 l 0.043,-0.043 c 0.13,-0.26 0.216,-0.433 0.346,-0.52 0.26,-0.303 0.433,-0.476 0.477,-0.52 0.173,-0.216 0.303,-0.433 0.346,-0.563 0.173,-0.13 0.39,-0.13 0.649,-0.043 h 0.13 0.173 c 0.649,0.303 1.082,0.346 1.385,0.043 0.39,-0.39 0.606,-0.606 0.649,-0.606 0.13,-0.043 0.477,0.043 1.083,0.26 0.303,0.043 0.649,0.043 1.126,-0.043 0.39,-0.086 0.692,-0.086 0.909,-0.043 0.043,0 0.26,0.13 0.606,0.39 0.39,0.303 0.823,0.433 1.212,0.433 0.389,0 0.909,0.26 1.645,0.736 0.13,0 0.26,0.043 0.347,0.086 0.216,0.13 0.563,0.303 1.083,0.52 0.043,0 0.39,0.346 0.909,0.996 0.563,0.692 0.823,1.082 0.866,1.212 0.606,1.558 0.823,2.771 0.563,3.593 0,0.087 -0.043,0.173 -0.087,0.26 -0.086,0.043 -0.086,0.347 -0.129,0.953 0,0.216 0,0.433 0,0.693 l 0.303,0.13 c 0.13,-0.043 0.303,-0.216 0.52,-0.52 l 0.13,-0.043 c 0.13,0.173 0.26,0.303 0.477,0.39 0.043,-0.043 0.086,-0.173 0.216,-0.433 0.043,-0.043 0.216,-0.086 0.433,-0.086 0.086,-0.13 0.086,-0.303 0,-0.563 -0.086,-0.303 -0.173,-0.52 -0.13,-0.606 -0.043,0 0,-0.086 0.086,-0.26 0.26,-0.909 0.39,-1.602 0.563,-2.035 0.216,-0.433 0.346,-0.736 0.346,-0.953 -0.13,-0.26 -0.216,-0.519 -0.26,-0.692 0.13,-0.433 0.173,-0.649 0.173,-0.693 -0.173,-0.346 -0.26,-0.649 -0.26,-0.866 0,-0.563 0,-0.909 -0.043,-0.996 -0.26,-0.216 -0.433,-0.39 -0.563,-0.52 v -0.086 c 0.129,0 0.346,0.043 0.606,0.13 l 0.13,-0.087 c 0.043,-0.13 0.043,-0.433 0.043,-0.952 0,-0.519 -0.043,-0.866 -0.086,-0.953 -0.086,-0.087 -0.26,-0.303 -0.39,-0.736 -0.086,-0.086 -0.173,-0.129 -0.303,-0.086 0,0.043 -0.043,0.086 -0.173,0.216 -0.13,0.866 -0.26,1.299 -0.347,1.386 0,-0.52 -0.043,-0.909 -0.173,-1.083 l -0.173,-0.043 c -0.13,0 -0.26,0.087 -0.303,0.217 -0.13,0.26 -0.216,0.39 -0.26,0.39 l -0.13,0.043 c -0.043,-0.129 -0.086,-0.346 -0.043,-0.649 0,-0.346 -0.043,-0.563 -0.129,-0.606 l -0.217,-0.043 c -0.216,0.087 -0.346,0.347 -0.433,0.78 0,0.216 0,0.519 0,0.952 h -0.173 c -0.087,-0.043 -0.173,-0.13 -0.26,-0.216 v -0.043 h -0.043 c -0.173,-0.346 -0.303,-0.606 -0.433,-0.736 -0.173,-0.26 -0.346,-0.433 -0.433,-0.563 -0.043,-0.13 -0.087,-0.216 -0.043,-0.303 l 0.086,-0.13 c 0.217,-0.043 0.433,-0.26 0.649,-0.649 0.173,-0.476 0.347,-0.779 0.433,-0.866 0.173,0.043 0.346,-0.043 0.52,-0.26 0.087,-0.26 0.173,-0.52 0.26,-0.693 -0.173,-0.086 -0.303,-0.13 -0.39,-0.173 -0.043,0 -0.216,0 -0.52,0 -0.563,-0.043 -0.953,-0.174 -1.169,-0.52 -0.086,-0.086 -0.13,-0.173 -0.13,-0.346 0.26,-1.169 0.39,-1.992 0.346,-2.425 -0.303,-1.559 -0.346,-2.641 -0.216,-3.247 0.086,-0.216 0.216,-0.39 0.52,-0.563 0.346,-0.173 0.563,-0.346 0.693,-0.39 l -0.043,-0.216 c -0.173,-0.13 -0.346,-0.217 -0.39,-0.347 -0.346,-0.433 -0.216,-1.169 0.39,-2.208 0.13,-0.173 0.26,-0.303 0.347,-0.39 0,-0.086 0.043,-0.173 0.043,-0.216 -0.173,-0.347 -0.303,-0.606 -0.346,-0.736 -0.173,-0.346 -0.217,-0.606 -0.13,-0.822 l 0.13,-0.087 0.086,0.043 0.217,0.216 c 0,0.087 0.086,0.217 0.173,0.433 0.13,0.13 0.39,0.173 0.779,0.13 l 0.087,0.086 c 0.043,0.13 0.043,0.347 0.086,0.649 0.086,0.043 0.173,0.13 0.346,0.26 0.043,0.26 -0.086,0.563 -0.433,0.996 0,0.173 -0.087,0.52 -0.173,1.083 0,0.13 0.13,0.346 0.346,0.649 0,0.216 -0.086,0.563 -0.26,0.996 0,0.173 0.043,0.303 0.173,0.39 0.086,0.087 0.216,0.217 0.476,0.346 0.433,0.477 0.78,0.996 1.04,1.646 0.086,0.217 0.086,0.477 0,0.823 -0.087,0.303 -0.087,0.563 -0.043,0.736 h 0.13 c 0.086,-0.217 0.173,-0.39 0.216,-0.433 0.52,-0.173 0.909,-0.303 1.126,-0.52 -0.043,-0.303 -0.043,-0.52 0,-0.693 0.043,-0.086 0.129,-0.13 0.173,-0.13 0.303,0.13 0.477,0.216 0.52,0.216 0.043,0 0.303,-0.173 0.693,-0.476 0.606,-0.26 0.953,-0.52 0.996,-0.779 -0.043,-0.26 -0.217,-0.39 -0.52,-0.433 -0.39,-0.043 -0.606,-0.13 -0.692,-0.173 -0.347,-0.303 -0.649,-0.692 -0.823,-1.125 -0.13,-0.39 -0.086,-0.736 0.13,-0.996 0,-0.086 0.086,-0.13 0.173,-0.173 0.173,-0.087 0.39,-0.173 0.736,-0.217 0.173,-0.086 0.346,-0.173 0.606,-0.346 0.129,-0.043 0.346,-0.043 0.649,0 0.173,-0.303 0.26,-0.476 0.346,-0.52 l 0.086,-0.087 0.173,0.043 0.087,0.087 c -0.043,0.346 0.043,0.563 0.173,0.649 0.303,0.173 0.433,0.303 0.477,0.303 0.129,0.13 0.216,0.347 0.303,0.693 l 0.13,0.043 c 0.043,-0.087 0.043,-0.26 0.043,-0.563 0,-0.173 0,-0.346 0,-0.433 0,-0.043 -0.086,-0.216 -0.217,-0.52 -0.216,-0.476 -0.303,-0.736 -0.346,-0.822 -0.086,-0.606 0.043,-1.213 0.39,-1.862 h 0.173 c 0.13,0.347 0.13,0.78 0,1.342 0,0 0.13,0.26 0.39,0.693 h 0.086 c 0.303,-0.909 0.52,-1.386 0.52,-1.386 -0.173,-0.216 -0.216,-0.389 -0.26,-0.519 0,-0.13 0,-0.347 0.043,-0.649 0.13,-0.563 0.52,-0.736 1.212,-0.52 l -0.173,-0.649 c -0.043,0.043 -0.26,0.087 -0.606,0.13 l -0.087,-0.087 -0.043,-0.13 c -0.086,-0.13 -0.173,-0.173 -0.259,-0.173 0,-0.39 -0.043,-0.692 -0.043,-0.866 0,-0.086 0.13,-0.173 0.303,-0.303 0,-0.26 0.043,-0.433 0.13,-0.52 0.086,0 0.13,0.087 0.216,0.216 0.086,0.043 0.216,0.087 0.433,0.087 0.043,0.043 0.086,0.13 0.173,0.26 0.087,0.216 0.13,0.346 0.13,0.476 -0.043,0.043 -0.086,0.216 -0.173,0.39 -0.043,0.13 -0.13,0.303 -0.173,0.52 l 0.173,0.649 c 0.303,0.087 0.52,0.173 0.606,0.217 0.086,0.043 0.347,0.433 0.779,1.169 0,0.043 0.13,0.216 0.303,0.477 l 0.173,-0.043 c 0.086,-0.477 0.173,-0.736 0.259,-0.78 0.13,0.043 0.26,0.173 0.433,0.347 l 0.13,-0.043 c 0,-0.216 0.087,-0.39 0.087,-0.476 0.13,-0.217 0.173,-0.346 0.173,-0.477 -0.13,-0.259 -0.26,-0.519 -0.26,-0.649 0.217,-0.39 0.347,-0.649 0.433,-0.822 0.043,-0.736 0.13,-1.126 0.217,-1.212 v -0.043 l 0.173,0.043 c 0.043,0.086 0.173,0.26 0.39,0.563 0,0.13 0.043,0.26 0.087,0.476 0,0.173 -0.13,0.433 -0.303,0.736 0.086,0.086 0.173,0.259 0.303,0.39 0.173,0.346 0.173,0.736 0,1.212 l 0.736,-0.563 c 0.346,-0.303 0.563,-0.52 0.736,-0.649 0.217,-0.13 0.347,-0.26 0.477,-0.347 l 0.52,-0.476 c 0.346,-0.217 0.649,-0.347 0.779,-0.52 0.086,-0.087 0.13,-0.13 0.173,-0.173 0.216,-0.433 0.39,-0.649 0.433,-0.693 0.217,-0.303 0.39,-0.52 0.52,-0.693 0.086,-0.129 0.216,-0.433 0.433,-0.822 0.26,-0.953 0.823,-1.819 1.688,-2.685 0.866,-0.909 1.342,-1.385 1.386,-1.472 0.173,-0.086 0.346,-0.216 0.563,-0.39 0.086,-0.13 0.216,-0.26 0.26,-0.346 0.476,-0.649 0.996,-1.212 1.645,-1.602 0.173,-0.173 0.303,-0.303 0.346,-0.346 0.173,-0.26 0.303,-0.649 0.433,-1.169 0.13,-0.563 0.216,-0.909 0.26,-0.996 l -0.476,-0.216 c 0.043,0.173 -0.086,0.52 -0.347,0.952 -0.086,0.13 -0.26,0.347 -0.476,0.606 -0.52,0.779 -0.953,1.169 -1.342,1.125 -0.216,-0.173 -0.346,-0.433 -0.433,-0.779 -0.086,-0.433 -0.173,-0.736 -0.216,-0.866 -0.692,-0.823 -1.039,-1.342 -1.083,-1.472 0,-0.347 0,-0.563 -0.043,-0.693 -0.13,-0.693 -0.347,-1.212 -0.606,-1.472 -0.303,-0.173 -0.563,-0.26 -0.692,-0.346 -0.303,-0.346 -0.52,-0.606 -0.736,-0.693 -0.216,-0.086 -0.39,-0.13 -0.476,-0.13 l -0.26,-0.173 c -0.996,-0.217 -1.688,-0.477 -2.078,-0.693 -0.216,-0.173 -0.476,-0.39 -0.779,-0.693 -0.26,-0.433 -0.476,-0.736 -0.649,-0.909 l -0.779,-0.823 c -0.173,-0.303 -0.303,-0.52 -0.39,-0.606 -0.39,-0.52 -0.563,-0.779 -0.563,-0.823 -0.043,-0.26 -0.043,-0.52 0.173,-0.823 0.043,-0.086 0.26,-0.39 0.649,-0.866 0.39,-0.477 0.649,-0.736 0.736,-0.779 0.13,0 0.217,-0.043 0.26,-0.043 0.086,-0.043 0.216,-0.13 0.433,-0.173 l 0.736,-0.13 h 0.13 c 0.086,-0.086 0.26,-0.086 0.476,-0.043 0.39,0.129 0.477,0.563 0.173,1.299 -0.043,0.086 -0.13,0.303 -0.13,0.52 0.043,0.216 0.173,0.303 0.433,0.39 0.216,0.043 0.39,0.13 0.433,0.216 0,0 0.173,0.346 0.39,0.91 0.13,0.389 0.303,0.563 0.52,0.519 0.173,0 0.346,-0.173 0.476,-0.519 0.043,-0.043 0,-0.347 0,-0.91 -0.086,-0.693 0,-1.169 0.26,-1.472 0.086,0.086 0.216,0.649 0.433,1.645 0,0.13 0.043,0.303 0.13,0.563 0.043,0.217 0.086,0.65 0.13,1.342 0.043,0.087 0.303,0.26 0.692,0.52 0.347,0.26 0.649,0.39 0.866,0.433 0.216,0.217 0.433,0.433 0.649,0.563 0.13,0.13 0.26,0.39 0.346,0.779 0.087,0.346 0.13,0.649 0.087,0.823 -0.043,0.086 -0.087,0.216 -0.217,0.476 -0.086,0.173 -0.13,0.347 -0.086,0.476 0.043,0.087 0.173,0.217 0.303,0.347 0.129,0.13 0.346,0.26 0.649,0.477 0.129,0.086 0.26,0.346 0.433,0.692 0.043,0.043 0.303,0.26 0.779,0.606 0.39,0.259 0.606,0.476 0.606,0.649 l 0.476,0.216 c 0.39,-0.173 0.649,-0.39 0.779,-0.606 0.433,-1.039 0.779,-1.818 1.126,-2.251 0.13,-0.13 0.216,-0.217 0.303,-0.303 0.26,-0.477 0.477,-0.823 0.606,-1.039 0.476,-0.433 0.779,-0.779 0.996,-0.996 0.173,-0.303 0.433,-0.823 0.736,-1.602 0.26,-0.822 0.39,-1.385 0.346,-1.602 l -0.13,-0.259 c -0.26,-0.087 -0.476,-0.173 -0.693,-0.39 -0.259,-0.216 -0.346,-0.433 -0.173,-0.649 l 0.086,-0.086 c 0.173,-0.043 0.433,0.043 0.779,0.303 0.39,0.26 0.649,0.39 0.823,0.39 0.043,-0.086 0.086,-0.303 0.173,-0.649 0.086,-0.13 0.216,-0.26 0.259,-0.303 l 0.26,-0.13 c 0.26,-0.216 0.563,-0.433 0.822,-0.693 0.173,-0.433 0.26,-0.736 0.303,-0.996 0.173,-0.693 0.216,-1.083 0.26,-1.125 0.173,-0.303 0.26,-0.563 0.346,-0.736 0,-0.087 0.043,-0.216 0,-0.346 -0.173,-0.217 -0.303,-0.347 -0.346,-0.433 0.043,-0.476 0.043,-0.779 -0.043,-1.039 -0.043,-0.086 -0.216,-0.217 -0.476,-0.347 -0.26,-0.129 -0.39,-0.303 -0.476,-0.563 0,-0.13 0,-0.217 0.043,-0.303 0.217,-0.303 0.433,-0.52 0.563,-0.693 0.303,-0.779 0.606,-1.212 0.953,-1.299 l -0.996,-1.169 c -0.433,0.173 -0.779,0.086 -1.039,-0.303 l -0.563,1.169 c -0.043,0.346 -0.216,0.606 -0.563,0.779 -0.347,0.13 -0.649,0.043 -0.866,-0.303 -0.216,-0.433 -0.389,-0.779 -0.563,-0.953 -0.519,-0.649 -0.866,-1.169 -1.082,-1.515 -0.26,-0.823 -0.52,-1.386 -0.823,-1.646 -0.216,-0.173 -0.476,-0.303 -0.779,-0.39 -0.476,-0.13 -0.736,-0.26 -0.866,-0.303 -0.217,-0.13 -0.39,-0.216 -0.39,-0.303 l 0.043,-0.087 c 0.173,-0.043 0.433,0 0.823,0 l 0.086,-0.043 c 0.043,-0.087 0.043,-0.217 0,-0.303 -0.216,-0.303 -0.433,-0.779 -0.606,-1.472 -0.13,-0.303 -0.173,-0.476 -0.173,-0.606 0.217,-0.26 0.26,-0.606 0.173,-0.996 -0.173,-0.649 -0.303,-1.083 -0.303,-1.385 h 0.13 c 0.086,0.043 0.13,0.13 0.173,0.173 v 0.086 c 0.043,0.173 0.173,0.433 0.346,0.78 v 0.346 c 0.043,0.953 0.216,1.688 0.563,2.295 0.13,0.26 0.346,0.476 0.52,0.606 0.13,0.086 0.346,0.217 0.693,0.39 0.13,0.13 0.39,0.39 0.779,0.823 0.173,0.216 0.346,0.606 0.476,1.125 0.087,0.477 0.216,0.823 0.347,0.953 0.043,0.086 0.39,0.39 0.996,0.953 0.477,0.476 0.779,0.779 0.866,0.996 l 0.563,-1.169 c 0,-0.043 -0.043,-0.303 -0.13,-0.822 0,-0.347 -0.216,-1.169 -0.649,-2.468 -0.13,-0.39 -0.216,-0.606 -0.26,-0.693 -0.086,-0.13 -0.346,-0.39 -0.866,-0.692 -0.52,-0.347 -0.866,-0.606 -0.996,-0.736 -0.13,-0.346 -0.216,-0.563 -0.303,-0.693 -0.216,-0.39 -0.346,-0.692 -0.39,-0.822 0,-0.087 0,-0.39 -0.043,-0.953 V 274.7 h 0.173 l 0.13,0.086 0.086,0.13 0.043,0.043 c 0.087,0.823 0.26,1.515 0.477,2.165 0,0.087 0.086,0.217 0.216,0.347 0.13,0.173 0.347,0.303 0.693,0.52 0.216,0.173 0.52,0.52 0.909,0.953 0.606,0.476 0.953,0.779 1.083,0.952 0.26,0.347 0.433,0.953 0.563,1.862 0.043,0.086 0.173,0.173 0.39,0.346 0.13,0.173 0.26,0.346 0.346,0.563 -0.216,0.649 -0.346,1.04 -0.346,1.126 l -0.087,0.13 0.996,1.169 c 0.13,-0.043 0.303,0 0.606,0.13 0.26,0.13 0.52,0.173 0.779,0.043 0.736,-0.26 1.299,-0.52 1.689,-0.823 0.129,-0.086 0.39,-0.303 0.779,-0.563 0.217,-0.13 0.52,-0.086 0.78,0.043 0.736,-0.606 1.299,-0.953 1.732,-1.039 l 0.952,-0.303 c 0.26,-0.086 0.433,-0.173 0.563,-0.173 0.346,-0.043 0.866,-0.043 1.516,0 0.043,-0.043 0.39,-0.13 0.996,-0.347 0.347,-0.13 0.693,-0.173 1.083,-0.13 0,-0.216 -0.086,-0.649 -0.26,-1.386 -0.043,-0.129 -0.043,-0.216 -0.043,-0.26 h -0.086 c -0.13,-0.086 -0.26,-0.173 -0.346,-0.303 -0.173,-0.563 -0.347,-0.953 -0.477,-1.212 l -0.13,-0.217 v -0.173 l 0.13,-0.043 c 0.303,0.043 0.563,0 0.693,-0.216 l 0.043,-0.13 c -0.303,-0.736 -0.433,-1.386 -0.39,-2.035 0.173,-0.433 0.217,-0.823 0.173,-1.039 -0.13,-0.173 -0.173,-0.303 -0.173,-0.39 -0.043,-0.043 -0.13,-0.39 -0.26,-1.039 -0.043,-0.173 -0.086,-0.26 -0.13,-0.303 -0.563,-0.13 -0.909,-0.303 -0.996,-0.52 -0.043,-0.52 -0.216,-0.996 -0.433,-1.385 -0.606,-0.477 -1.082,-0.779 -1.385,-0.953 -0.39,-0.173 -0.563,-0.26 -0.563,-0.26 -0.086,-0.13 -0.086,-0.346 -0.043,-0.693 0,-0.433 0,-0.693 -0.043,-0.822 -0.217,-0.433 -0.303,-0.78 -0.303,-0.996 0.043,-0.39 0.043,-0.649 0,-0.866 -0.173,-0.476 -0.303,-0.866 -0.346,-1.125 0,-0.39 -0.043,-0.649 -0.13,-0.823 -0.043,-0.086 -0.087,-0.173 -0.13,-0.216 -0.129,-0.477 -0.216,-0.996 -0.173,-1.645 l 0.086,-0.087 c 0.26,0.347 0.433,0.779 0.52,1.255 0.043,0.087 0.043,0.173 0,0.347 0.043,0.13 0.13,0.346 0.347,0.649 0.043,0.13 0.086,0.39 0.086,0.736 0.086,0.173 0.173,0.39 0.303,0.736 v 0.693 c 0,0.043 0,0.13 0,0.173 0.173,0 0.433,-0.043 0.779,-0.086 0.346,0 0.606,-0.043 0.866,-0.086 0.13,-0.043 0.26,-0.303 0.433,-0.78 0.173,-0.173 0.39,-0.173 0.606,0 l 0.173,0.26 h 0.13 c 0.173,-0.129 0.563,-0.216 1.083,-0.216 0.043,0 0.086,0 0.173,0.043 0.78,0 1.169,-0.043 1.299,-0.13 0.043,-0.303 0.086,-0.52 0.173,-0.649 0.477,-0.216 0.736,-0.347 0.78,-0.347 0.26,-0.346 0.433,-0.909 0.476,-1.732 0.173,-0.086 0.303,-0.129 0.39,-0.173 0.26,-0.173 0.346,-0.52 0.216,-1.169 -0.043,-0.26 -0.043,-0.433 0,-0.476 0.217,-0.174 0.39,-0.26 0.433,-0.347 0.043,-0.13 0.043,-0.303 0,-0.477 -0.086,-0.303 -0.216,-0.433 -0.433,-0.433 -0.303,0.043 -0.52,0 -0.692,-0.043 -0.087,-0.39 -0.173,-0.693 -0.26,-0.823 -0.086,-0.173 -0.346,-0.476 -0.779,-0.866 -0.043,-0.043 -0.13,-0.173 -0.173,-0.346 0.043,-0.26 0.043,-0.433 -0.043,-0.52 l -0.13,-0.086 c -0.173,-0.043 -0.39,0 -0.649,0.173 -0.26,0.13 -0.476,0.216 -0.606,0.26 l -0.129,-0.043 c -0.303,-0.303 -0.78,-0.563 -1.386,-0.693 -0.346,-0.086 -0.477,-0.303 -0.477,-0.649 0.087,-0.39 0.087,-0.693 0.087,-0.866 0,-0.086 0.173,-0.173 0.39,-0.26 0.303,-0.086 0.476,-0.13 0.52,-0.173 0.346,-0.39 0.606,-0.649 0.823,-0.779 v -0.216 c -0.217,-0.736 -0.433,-1.212 -0.606,-1.429 l -0.173,-0.043 c -0.043,0.043 -0.563,0.13 -1.602,0.39 -0.303,0.043 -0.953,0.26 -1.905,0.736 -0.043,0 -0.086,0 -0.173,0 l -0.087,-0.086 c 0.087,-0.39 0.043,-0.649 -0.13,-0.779 -0.086,-0.086 -0.216,-0.13 -0.346,-0.086 -0.563,0 -0.953,0 -1.256,-0.043 -0.216,-0.087 -0.39,-0.13 -0.476,-0.173 -0.779,-0.086 -1.342,-0.173 -1.732,-0.26 l -1.775,-6.321 c 0.043,-0.086 0.217,-0.433 0.39,-0.996 0.173,-0.52 0.303,-0.823 0.303,-0.953 0.13,-0.649 0.173,-0.953 0.173,-1.039 -0.086,-0.217 -0.13,-0.346 -0.043,-0.433 0.173,-0.043 0.303,-0.173 0.39,-0.216 0.173,-0.823 0.173,-1.516 0,-2.035 l -0.65,-0.216 c -0.216,-0.736 -0.346,-1.169 -0.476,-1.256 -0.823,0 -1.299,0 -1.386,0 l -0.086,-0.13 c 0.303,-0.346 0.52,-0.606 0.649,-0.779 l -0.26,-0.39 v -0.173 c -0.13,-0.346 -0.216,-0.563 -0.216,-0.692 l -0.087,-0.086 c -0.39,0.086 -0.736,0.129 -0.909,0.173 -0.563,0.13 -0.909,0.217 -1.039,0.26 -0.043,0.086 -0.13,0.303 -0.173,0.736 -0.086,0.433 -0.216,0.736 -0.389,0.953 -0.13,0 -0.26,-0.086 -0.433,-0.26 -0.217,-0.216 -0.303,-0.346 -0.303,-0.433 0.173,-0.043 0.303,-0.087 0.347,-0.173 v -0.173 l -0.26,-0.692 c -1.125,0.086 -1.731,0.043 -1.948,-0.087 -0.086,-0.13 -0.13,-0.216 -0.086,-0.303 -0.086,-0.087 -0.26,-0.13 -0.476,-0.217 l -0.173,0.086 c -0.087,0.303 -0.433,0.649 -1.083,0.909 l -0.303,-0.129 -0.26,-0.347 -0.13,-0.043 c -0.692,0.043 -1.212,0.173 -1.515,0.303 -0.303,-0.303 -0.52,-0.52 -0.649,-0.606 -0.649,-0.217 -1.04,-0.39 -1.083,-0.433 -0.043,-0.433 -0.087,-0.736 -0.13,-0.823 -0.26,-0.52 -0.346,-0.866 -0.39,-0.996 0,-0.173 0.086,-0.433 0.303,-0.779 0.173,-0.303 0.216,-0.606 0.129,-0.823 -0.216,-0.303 -0.433,-0.476 -0.563,-0.476 l -0.087,-0.087 c -0.173,-0.086 -0.303,-0.216 -0.433,-0.39 -0.043,-0.346 0.086,-0.606 0.39,-0.866 0.26,-0.217 0.303,-0.693 0.13,-1.516 -0.043,0 -0.39,-0.13 -0.953,-0.39 -0.13,0 -0.173,0 -0.173,0 -0.476,-0.303 -0.779,-0.52 -0.866,-0.736 -0.043,-0.043 -0.13,-0.433 -0.26,-1.083 -0.087,-0.866 -0.173,-1.516 -0.26,-1.948 l -0.217,-1.083 c -0.043,-0.779 -0.086,-1.256 -0.173,-1.472 0,-0.086 -0.13,-0.216 -0.26,-0.346 -0.39,-0.563 -0.736,-0.996 -0.996,-1.212 -0.086,-0.13 -0.26,-0.173 -0.563,-0.217 -0.303,-0.043 -0.476,-0.129 -0.563,-0.173 0,-0.477 0,-0.866 -0.043,-1.039 0.087,-0.217 0.216,-0.303 0.303,-0.303 0,-0.26 0,-0.433 0,-0.52 l 0.043,-0.953 -0.087,-0.086 c -0.26,0.043 -0.39,0 -0.52,-0.086 l -0.086,-0.087 c 0.086,-0.26 0.303,-0.433 0.649,-0.649 l 0.866,-0.39 c 0.173,-0.043 0.303,0.043 0.477,0.173 l 0.13,-0.086 c 0.129,-0.26 0.216,-0.347 0.26,-0.39 0.216,-0.086 0.433,0 0.649,0.173 l 0.216,-0.043 0.086,-0.13 0.087,-0.563 -0.693,-0.217 c -0.086,-0.173 -0.043,-0.433 0.043,-0.909 l -0.043,-0.13 c -0.303,-0.13 -0.563,-0.173 -0.736,-0.086 -0.26,0.086 -0.39,0.13 -0.52,0.13 -0.779,-0.303 -1.342,-0.433 -1.775,-0.477 -0.433,0.26 -0.736,0.39 -0.823,0.347 -0.39,-0.086 -0.649,-0.173 -0.822,-0.217 -0.563,0.217 -0.91,0.303 -1.126,0.217 -1.126,-0.433 -1.688,-0.649 -1.688,-0.649 -0.13,-0.477 -0.26,-0.823 -0.433,-0.996 -0.26,-0.216 -0.476,-0.433 -0.52,-0.649 -0.043,-0.606 -0.13,-0.953 -0.346,-1.125 -0.087,-0.13 -0.13,-0.26 -0.13,-0.26 v -0.13 c -0.563,0.52 -0.953,0.693 -1.256,0.52 -0.13,-0.217 -0.216,-0.39 -0.26,-0.476 -0.173,-0.174 -0.303,-0.26 -0.476,-0.174 -0.173,0.087 -0.39,0.39 -0.606,0.953 -0.303,0.52 -0.52,0.91 -0.736,1.083 -0.216,-0.043 -0.476,-0.26 -0.866,-0.779 -0.347,-0.52 -0.693,-0.736 -0.91,-0.736 -0.086,0 -0.39,0.173 -0.822,0.39 -0.13,0.086 -0.303,0.086 -0.563,0 -0.086,0.13 -0.26,0.303 -0.52,0.476 -0.173,-0.043 -0.477,0.087 -0.866,0.39 -0.433,0.217 -0.693,0.303 -0.78,0.303 -0.13,-0.26 -0.216,-0.39 -0.346,-0.433 -0.087,-0.043 -0.26,0 -0.433,0.13 -0.39,0.26 -0.39,0.649 0,1.126 l 0.433,0.606 c 0.346,0.476 0.346,0.953 0,1.429 0,0.086 -0.087,0.13 -0.173,0.217 0,0.086 0,0.303 0.086,0.692 l -0.086,0.13 -0.086,0.043 c -0.346,-0.216 -0.563,-0.303 -0.779,-0.303 -0.433,0.173 -0.779,0.26 -1.039,0.303 -0.347,0 -1.083,0.043 -2.122,0 -0.779,-0.043 -1.299,-0.086 -1.516,-0.216 0,0 -0.216,-0.13 -0.606,-0.347 -0.39,-0.303 -0.649,-0.433 -0.736,-0.563 -0.043,-0.087 -0.087,-0.173 -0.173,-0.217 h -0.173 c -0.26,0.39 -0.693,0.693 -1.342,0.866 -0.216,0.043 -0.39,0.086 -0.52,0.13 -0.13,0.216 -0.346,0.346 -0.563,0.346 -0.433,0.086 -0.822,0.13 -1.212,0.086 -0.477,-0.086 -0.866,-0.086 -1.126,-0.086 -0.476,0.13 -0.866,0.173 -1.169,0.173 -0.043,-0.087 -0.693,-0.39 -1.905,-0.909 -0.216,-0.043 -0.346,-0.173 -0.433,-0.26 -0.086,-0.216 -0.173,-0.303 -0.217,-0.346 l -0.433,-0.26 c -0.403,-0.264 -0.793,-0.611 -1.096,-1.087", + "Mykolaiv": "m 266.492,215.167 c -0.087,0.477 -0.13,0.736 -0.043,0.909 l 0.693,0.217 -0.087,0.563 -0.086,0.13 -0.216,0.043 c -0.216,-0.173 -0.433,-0.26 -0.649,-0.173 -0.043,0.043 -0.13,0.13 -0.26,0.39 l -0.13,0.086 c -0.173,-0.13 -0.303,-0.217 -0.477,-0.173 l -0.866,0.39 c -0.347,0.216 -0.563,0.39 -0.649,0.649 l 0.086,0.087 c 0.13,0.086 0.26,0.129 0.52,0.086 l 0.087,0.086 -0.043,0.953 c 0,0.086 0,0.26 0,0.52 -0.087,0 -0.216,0.086 -0.303,0.303 0.043,0.173 0.043,0.563 0.043,1.039 0.086,0.043 0.26,0.13 0.563,0.173 0.303,0.043 0.477,0.087 0.563,0.217 0.26,0.216 0.606,0.649 0.996,1.212 0.13,0.13 0.26,0.26 0.26,0.346 0.086,0.216 0.13,0.693 0.173,1.472 l 0.217,1.083 c 0.086,0.433 0.173,1.082 0.26,1.948 0.13,0.649 0.216,1.039 0.26,1.083 0.086,0.216 0.39,0.433 0.866,0.736 0,0 0.043,0 0.173,0 0.563,0.26 0.909,0.39 0.953,0.39 0.173,0.823 0.13,1.299 -0.13,1.516 -0.303,0.26 -0.433,0.52 -0.39,0.866 0.13,0.173 0.26,0.303 0.433,0.39 l 0.087,0.087 c 0.13,0 0.346,0.173 0.563,0.476 0.087,0.217 0.043,0.52 -0.129,0.823 -0.217,0.346 -0.303,0.606 -0.303,0.779 0.043,0.13 0.13,0.476 0.39,0.996 0.043,0.087 0.086,0.39 0.13,0.823 0.043,0.043 0.433,0.216 1.083,0.433 0.13,0.086 0.346,0.303 0.649,0.606 0.303,-0.13 0.823,-0.26 1.515,-0.303 l 0.13,0.043 0.26,0.347 0.303,0.129 c 0.649,-0.26 0.996,-0.606 1.083,-0.909 l 0.173,-0.086 c 0.216,0.086 0.39,0.13 0.476,0.217 -0.043,0.086 0,0.173 0.086,0.303 0.217,0.13 0.823,0.173 1.948,0.087 l 0.26,0.692 v 0.173 c -0.043,0.086 -0.173,0.13 -0.347,0.173 0,0.086 0.086,0.216 0.303,0.433 0.173,0.173 0.303,0.26 0.433,0.26 0.173,-0.216 0.303,-0.52 0.389,-0.953 0.043,-0.433 0.13,-0.649 0.173,-0.736 0.13,-0.043 0.477,-0.13 1.039,-0.26 0.173,-0.043 0.52,-0.086 0.909,-0.173 l 0.087,0.086 c 0,0.13 0.086,0.346 0.216,0.692 v 0.173 l 0.26,0.39 c -0.13,0.173 -0.346,0.433 -0.649,0.779 l 0.086,0.13 c 0.087,0 0.563,0 1.386,0 0.13,0.087 0.26,0.52 0.476,1.256 l 0.65,0.216 c 0.173,0.52 0.173,1.212 0,2.035 -0.087,0.043 -0.217,0.173 -0.39,0.216 -0.087,0.087 -0.043,0.216 0.043,0.433 0,0.086 -0.043,0.39 -0.173,1.039 0,0.13 -0.13,0.433 -0.303,0.953 -0.173,0.563 -0.347,0.909 -0.39,0.996 l 1.775,6.321 c 0.39,0.087 0.953,0.173 1.732,0.26 0.086,0.043 0.26,0.086 0.476,0.173 0.303,0.043 0.693,0.043 1.256,0.043 0.13,-0.043 0.26,0 0.346,0.086 0.173,0.13 0.217,0.39 0.13,0.779 l 0.087,0.086 c 0.086,0 0.13,0 0.173,0 0.953,-0.476 1.602,-0.692 1.905,-0.736 1.039,-0.26 1.559,-0.347 1.602,-0.39 l 0.173,0.043 c 0.173,0.217 0.39,0.693 0.606,1.429 v 0.216 c -0.217,0.13 -0.477,0.39 -0.823,0.779 -0.043,0.043 -0.216,0.087 -0.52,0.173 -0.216,0.086 -0.39,0.173 -0.39,0.26 0,0.173 0,0.476 -0.087,0.866 0,0.347 0.13,0.563 0.477,0.649 0.606,0.13 1.083,0.39 1.386,0.693 l 0.129,0.043 c 0.13,-0.043 0.347,-0.13 0.606,-0.26 0.26,-0.173 0.476,-0.216 0.649,-0.173 l 0.13,0.086 c 0.086,0.087 0.086,0.26 0.043,0.52 0.043,0.173 0.13,0.303 0.173,0.346 0.433,0.39 0.693,0.693 0.779,0.866 0.087,0.13 0.173,0.433 0.26,0.823 0.173,0.043 0.389,0.086 0.692,0.043 0.217,0 0.347,0.13 0.433,0.433 0.043,0.173 0.043,0.347 0,0.477 -0.043,0.086 -0.216,0.173 -0.433,0.347 -0.043,0.043 -0.043,0.216 0,0.476 0.13,0.649 0.043,0.996 -0.216,1.169 -0.087,0.043 -0.216,0.086 -0.39,0.173 -0.043,0.823 -0.216,1.386 -0.476,1.732 -0.043,0 -0.303,0.13 -0.78,0.347 -0.086,0.13 -0.13,0.346 -0.173,0.649 -0.13,0.086 -0.52,0.13 -1.299,0.13 -0.086,-0.043 -0.129,-0.043 -0.173,-0.043 -0.52,0 -0.909,0.087 -1.083,0.216 h -0.13 l -0.173,-0.26 c -0.216,-0.173 -0.433,-0.173 -0.606,0 -0.173,0.477 -0.303,0.736 -0.433,0.78 -0.26,0.043 -0.52,0.086 -0.866,0.086 -0.346,0.043 -0.606,0.086 -0.779,0.086 0.086,1.126 0.433,1.905 1.083,2.338 0.26,0.26 0.476,0.346 0.519,0.389 0.217,0.043 0.563,-0.043 1.04,-0.303 l 0.086,0.043 c 0.173,0.173 0.13,0.52 -0.086,0.996 -0.043,0.13 0.043,0.346 0.216,0.563 0.173,0.26 0.346,0.433 0.476,0.476 0.13,0.087 0.347,0.13 0.693,0.216 0.216,0.26 0.303,0.65 0.216,1.169 -0.043,0.649 -0.043,1.083 0,1.299 0.043,0.043 0.13,0.216 0.347,0.476 0.13,0.173 0.216,0.347 0.216,0.52 0,0.13 -0.13,0.39 -0.346,0.78 -0.173,0.346 -0.26,0.606 -0.26,0.736 0.043,0.173 0.303,0.39 0.779,0.649 l 0.043,0.13 c -0.087,0.13 -0.26,0.26 -0.563,0.476 -0.13,0.26 -0.217,0.606 -0.13,0.953 0.043,0.39 0.043,0.693 -0.13,0.953 l -0.043,0.043 c 0,0.043 0,0.13 0.043,0.26 0.173,0.736 0.26,1.169 0.26,1.386 0.26,0 0.822,0.173 1.602,0.606 0.086,0 0.563,0.087 1.429,0.173 0.26,0.043 0.606,0.13 1.125,0.26 0.087,0.043 0.217,0.043 0.303,0 l 0.303,-0.086 c 0.216,-0.13 0.563,-0.303 0.953,-0.563 0.216,-0.086 0.563,-0.216 0.996,-0.346 0.216,-0.087 0.347,-0.26 0.347,-0.477 0.043,-0.26 0.086,-0.476 0.129,-0.52 0.52,-0.346 0.91,-0.649 1.083,-0.909 0.217,-0.52 0.346,-0.866 0.477,-1.083 0.216,-0.346 0.346,-0.606 0.476,-0.779 0.086,-0.173 0.173,-0.346 0.173,-0.52 0,-0.13 -0.043,-0.26 -0.173,-0.39 -0.303,-0.043 -0.563,-0.173 -0.866,-0.39 -0.39,-0.26 -0.563,-0.563 -0.606,-0.909 0.043,-0.433 0,-0.823 -0.086,-1.083 -0.13,-0.26 -0.173,-0.433 -0.216,-0.563 l 0.086,-0.087 h 0.173 c 0.259,0.173 0.433,0.477 0.476,0.909 0.043,0.477 0.13,0.736 0.26,0.866 0.086,0.043 0.26,0.173 0.563,0.26 l 0.476,0.52 c 0.303,0.13 0.476,0.043 0.563,-0.347 0.086,-0.303 0.086,-0.606 0,-0.866 l 0.043,-0.173 c 0.346,-0.086 0.563,-0.173 0.692,-0.26 0.606,-0.346 0.996,-0.779 1.212,-1.212 0.043,-0.433 0.086,-0.736 0.216,-0.91 0.303,0.043 0.433,0.303 0.39,0.693 -0.086,0.303 -0.26,0.649 -0.563,0.996 -0.217,0.216 -0.477,0.52 -0.78,0.866 -0.26,0.303 -0.39,0.649 -0.39,1.039 0,0.476 -0.043,0.823 -0.086,0.953 -0.173,0.433 -0.52,0.866 -0.996,1.299 -0.087,0.173 -0.13,0.477 -0.13,0.909 -0.043,0.13 -0.173,0.303 -0.347,0.476 -0.303,0.13 -0.52,0.217 -0.606,0.347 -0.173,0.13 -0.26,0.346 -0.26,0.606 -0.043,0.26 0,0.433 0.216,0.52 0.087,0.043 0.347,0.086 0.779,0.129 0.347,0 0.65,0.13 0.909,0.26 l 0.26,0.173 c 0.043,0.13 0.217,0.26 0.477,0.346 0.26,0.087 0.433,0.087 0.563,-0.043 0.13,-0.693 0.303,-1.169 0.477,-1.342 0.26,-0.39 0.693,-0.606 1.255,-0.606 0.52,-0.043 1.212,0.173 2.079,0.692 0.173,0.087 0.433,0.216 0.822,0.477 0.26,0.086 0.606,0.13 0.996,0.043 0.26,0.043 0.606,0.217 1.082,0.477 0.26,0.043 0.78,-0.173 1.473,-0.606 l 0.52,-0.26 c 0.692,-0.26 1.039,-0.649 1.082,-1.125 -0.433,-0.779 -0.563,-1.429 -0.39,-1.992 0.173,-0.736 0.26,-1.126 0.217,-1.212 -0.087,-0.52 -0.347,-0.953 -0.649,-1.255 l -0.26,-0.173 c -0.173,-0.217 -0.347,-0.476 -0.39,-0.693 -0.173,-0.563 -0.087,-1.125 0.303,-1.818 0.217,-0.346 0.563,-0.649 0.996,-0.823 0.563,-0.26 0.866,-0.433 0.953,-0.52 0.129,-0.173 0.39,-0.693 0.649,-1.559 0.303,-0.909 0.433,-1.429 0.39,-1.646 0,-0.129 -0.13,-0.216 -0.303,-0.303 -0.433,0.26 -0.779,0.433 -1.039,0.52 -0.217,0.043 -0.477,0 -0.693,-0.217 -0.477,-0.476 -0.173,-1.385 0.866,-2.728 0.217,-0.26 0.303,-0.52 0.26,-0.693 -0.129,-0.26 -0.389,-0.26 -0.822,0.043 -0.52,0.346 -0.78,0.52 -0.823,0.52 -0.26,0 -0.433,-0.043 -0.563,-0.043 -0.26,-0.043 -0.52,-0.173 -0.649,-0.39 -0.086,-0.086 -0.173,-0.26 -0.216,-0.519 -0.217,-0.606 -0.086,-1.256 0.39,-1.949 0.433,-0.736 0.606,-1.256 0.476,-1.559 -0.173,-0.52 -0.476,-0.866 -0.866,-0.953 -0.477,-0.13 -0.736,-0.303 -0.779,-0.433 -0.087,-0.173 -0.043,-0.563 0.173,-1.169 0.13,-0.606 0.087,-1.125 -0.173,-1.602 -0.173,-0.26 -0.39,-0.433 -0.649,-0.52 -0.39,-0.086 -0.649,-0.13 -0.823,-0.216 -0.476,-0.13 -0.823,-0.39 -1.083,-0.779 -0.173,-0.26 -0.216,-0.606 -0.086,-0.996 0.13,-0.433 0.39,-0.649 0.736,-0.649 l 0.13,0.086 c 0,0.26 -0.043,0.649 -0.173,1.255 0.086,0.347 0.476,0.606 1.168,0.823 0.736,0.217 1.213,0.39 1.342,0.563 0.173,0.26 0.26,0.649 0.173,1.169 -0.086,0.649 -0.086,1.039 -0.086,1.212 0.086,0.303 0.26,0.563 0.649,0.692 0.433,0.173 0.693,0.303 0.779,0.433 0.13,0.13 0.216,0.346 0.303,0.649 0.173,0.779 0,1.688 -0.563,2.771 -0.13,0.26 -0.217,0.477 -0.217,0.649 0.043,0.303 0.347,0.477 0.91,0.52 0.26,-0.217 0.563,-0.303 0.866,-0.347 0.563,-0.13 0.996,-0.086 1.299,0.173 0.433,0.303 0.303,0.779 -0.39,1.472 -0.736,0.692 -0.953,1.299 -0.606,1.775 0.13,0.086 0.52,0.086 1.125,0 0.433,-0.086 0.779,0 0.953,0.347 0.087,0.129 0.13,0.303 0.13,0.433 0,0.26 -0.173,0.866 -0.433,1.862 -0.303,1.039 -0.52,1.646 -0.65,1.818 -0.043,0.043 -0.26,0.26 -0.692,0.649 -0.26,0.26 -0.433,0.52 -0.477,0.866 -0.086,0.216 -0.086,0.433 -0.086,0.693 -0.043,0.303 0,0.649 0.043,1.082 0.26,0.779 0.433,1.212 0.477,1.212 0.043,0.13 0.173,0.303 0.39,0.52 0.13,0 0.433,0.043 0.909,0.086 0.346,0.087 0.649,0.043 0.909,0 0.303,-0.433 0.52,-0.692 0.649,-0.779 0.26,-0.303 0.606,-0.346 1.039,-0.13 0.13,0.043 0.303,0.217 0.477,0.52 0.173,0.087 0.563,0 1.169,-0.173 0.692,-0.217 1.212,-0.606 1.559,-1.212 0.173,-0.217 0.26,-0.476 0.347,-0.779 0.216,-0.606 0.346,-0.909 0.39,-0.996 0.563,-0.347 1.039,-0.39 1.342,-0.26 0.347,0.173 0.649,0.303 0.909,0.39 0.13,0.087 0.347,0.13 0.649,0.26 l 0.563,0.086 c 0.26,0.086 0.477,0.043 0.563,0 0.086,-0.086 0.173,-0.303 0.303,-0.606 0.26,-0.909 0.476,-1.385 0.606,-1.429 1.255,-0.26 1.992,-0.346 2.122,-0.26 0.13,0.13 0.216,0.346 0.303,0.693 0.13,0.216 0.433,0.26 0.996,0.13 0.52,-0.173 0.866,-0.303 0.996,-0.52 0.13,-0.173 0.173,-0.563 0.13,-1.125 v -0.477 c 0.216,0 0.389,0 0.52,0.043 l 0.043,0.303 0.087,0.087 c 0.086,0 0.26,-0.043 0.476,-0.087 0.086,0.043 0.086,0.217 0.086,0.477 0.13,0.13 0.433,0.086 0.953,-0.086 0.52,-0.173 0.823,-0.217 0.909,-0.087 0.086,0.303 0.433,0.52 1.169,0.606 0.13,0.087 0.26,0.347 0.433,0.693 0.173,0.303 0.39,0.39 0.693,0.346 l 1.688,-0.259 c 0.303,-0.043 0.693,0 1.299,0.13 0.173,0.043 0.477,-0.173 0.909,-0.606 0.303,-0.173 0.78,-0.26 1.472,-0.346 0.606,-0.043 0.996,-0.13 1.169,-0.303 l 0.087,-0.39 -0.043,-0.086 c -0.303,0.086 -0.563,0.086 -0.779,-0.043 -0.086,-0.173 -0.173,-0.303 -0.26,-0.346 -0.52,0.216 -1.039,0.303 -1.688,0.346 -0.823,0 -1.256,-0.216 -1.342,-0.649 0,-0.086 0.086,-0.216 0.26,-0.39 0.693,0 1.732,-0.13 3.074,-0.433 0.173,0 0.477,-0.346 0.866,-0.953 0.13,-0.13 0.563,-0.303 1.342,-0.519 0.086,0 0.303,0 0.649,0 0.086,-0.13 0.13,-0.26 0.043,-0.477 -0.043,-0.173 -0.13,-0.26 -0.26,-0.346 -0.606,0.043 -1.083,0.043 -1.342,0 -0.173,-0.087 -0.26,-0.39 -0.303,-0.866 -0.043,-0.476 -0.043,-0.823 0,-0.953 0.26,-0.346 0.476,-0.476 0.736,-0.39 0.173,0.087 0.347,0.347 0.606,0.779 l 0.866,0.606 0.087,0.086 -0.043,-0.433 c 0,-0.13 0.216,-0.433 0.649,-0.953 0.347,-0.433 0.52,-0.736 0.433,-0.909 -0.043,-0.087 -0.26,-0.303 -0.649,-0.693 -0.39,-0.433 -0.649,-0.649 -0.779,-0.693 -1.039,-0.736 -1.688,-1.125 -1.862,-1.125 -0.389,0.086 -0.649,0.086 -0.779,0.043 -0.13,-0.043 -0.173,-0.173 -0.173,-0.303 v -0.39 c -0.087,-0.26 -0.13,-0.433 -0.13,-0.563 0.39,-0.649 0.649,-1.083 0.779,-1.299 0.086,-0.173 0.173,-0.39 0.26,-0.649 0.173,-0.303 0.303,-0.563 0.346,-0.736 0.13,-0.26 0.26,-0.649 0.433,-1.169 h 0.173 c 0.13,0.13 0.26,0.303 0.433,0.606 l -0.043,0.086 c 0.173,-0.13 0.606,-0.13 1.299,-0.086 0,0 0.086,-0.087 0.303,-0.26 0.26,-0.303 0.52,-0.649 0.822,-1.125 0.217,-0.216 0.563,-0.086 1.083,0.347 l 0.173,0.043 c 0.13,-0.043 0.216,-0.173 0.26,-0.476 0.086,-0.347 0.173,-0.563 0.303,-0.736 -0.606,-0.909 -0.953,-1.602 -0.996,-2.035 0,-0.303 0,-0.649 0.13,-1.082 0.043,-0.13 0.13,-0.347 0.26,-0.649 0.173,-0.606 0.217,-1.126 0.086,-1.602 -0.043,-0.216 -0.26,-0.736 -0.606,-1.559 -0.086,-0.13 -0.346,-0.217 -0.866,-0.217 l -0.693,-0.043 c -0.26,0 -0.433,-0.217 -0.563,-0.606 -0.086,-0.346 -0.13,-0.606 -0.086,-0.866 0.39,-0.173 0.606,-0.303 0.693,-0.477 0.043,-0.086 0.086,-0.26 0.043,-0.519 0,-0.217 0.043,-0.347 0.13,-0.433 l 0.13,-0.043 c 0.216,0.26 0.433,0.823 0.736,1.775 0.346,0.086 0.779,0.086 1.299,-0.043 0.216,-0.173 0.13,-0.606 -0.26,-1.299 0.173,-0.649 0.216,-1.126 0.173,-1.472 -0.26,-0.52 -0.433,-0.909 -0.477,-1.212 0.303,-0.433 0.39,-0.736 0.26,-0.953 -0.433,-0.39 -0.736,-0.692 -0.866,-0.909 -0.087,-0.606 -0.043,-1.125 0,-1.602 -0.303,-0.043 -1.083,-0.173 -2.338,-0.303 -0.346,-0.087 -0.563,-0.217 -0.606,-0.477 -0.043,-0.26 0.13,-0.563 0.477,-0.909 0.346,-0.346 0.52,-0.606 0.52,-0.779 0,-0.433 -0.173,-0.996 -0.477,-1.602 -0.476,-0.909 -0.736,-1.385 -0.779,-1.559 0.086,-0.173 0.693,-0.433 1.905,-0.736 h 0.303 c 0.736,-0.087 1.083,-0.13 1.126,-0.13 0,-0.606 0,-0.952 -0.087,-1.039 -0.476,-0.26 -0.779,-0.476 -0.909,-0.563 0.086,-0.779 0.086,-1.212 0.086,-1.429 l -0.086,-0.996 c 0,-0.433 0,-0.693 0.129,-0.909 0.087,-0.26 0.173,-0.476 0.173,-0.606 -0.086,-0.52 -0.086,-0.953 0,-1.169 0.043,-0.129 0.173,-0.303 0.476,-0.563 0,-0.087 0,-0.26 -0.086,-0.52 -0.086,-0.303 -0.13,-0.477 -0.173,-0.52 -0.476,0.086 -0.866,0.173 -1.125,0.13 -0.217,-0.043 -0.346,-0.173 -0.346,-0.26 -0.043,-0.217 0.173,-0.823 0.649,-1.818 -0.043,-0.087 -0.13,-0.173 -0.26,-0.303 h -0.13 c -0.043,0.043 -0.043,0.043 -0.043,0.043 l -0.043,-0.13 c -0.303,-0.086 -0.476,-0.173 -0.563,-0.303 0.086,-0.433 0.086,-0.736 0.043,-0.909 0,-0.13 -0.173,-0.347 -0.433,-0.65 -0.26,-0.303 -0.433,-0.606 -0.52,-0.779 0.043,-0.347 -0.043,-0.563 -0.173,-0.736 l -0.173,-0.043 c -0.39,0.39 -0.649,0.563 -0.779,0.649 -0.173,0 -0.39,0 -0.649,-0.173 -0.303,-0.173 -0.563,-0.217 -0.779,-0.13 -0.433,0.346 -0.563,0.736 -0.477,1.169 0.13,0.52 0.13,0.779 0.087,0.866 -0.087,0.043 -0.26,0.13 -0.563,0.216 -0.303,0.043 -0.52,0.087 -0.649,0.043 l -0.086,0.087 c -0.087,0.39 -0.173,0.649 -0.303,0.866 -0.087,0.086 -0.26,0.13 -0.433,0.086 -0.173,-0.086 -0.303,-0.173 -0.39,-0.26 -0.216,-0.39 -0.39,-0.692 -0.52,-0.866 l -0.13,-0.086 c -0.303,0.216 -0.649,0.346 -0.953,0.346 -0.433,0.043 -0.736,0.086 -0.909,0.216 -0.086,0 -0.26,0.13 -0.606,0.347 -0.217,0.13 -0.347,0.433 -0.433,0.909 -0.043,0.476 0.043,0.736 0.347,0.779 l 0.692,0.086 -0.043,0.909 c -0.043,0.043 -0.303,0.13 -0.693,0.13 -0.477,0.043 -0.736,0.087 -0.779,0.173 -0.173,0.173 -0.13,0.563 0.173,1.083 0.043,0.13 0.043,0.433 -0.043,0.909 l 0.043,0.13 0.346,0.26 c 0.043,0.13 0,0.26 -0.043,0.346 -0.563,0 -0.866,0.087 -0.909,0.13 0,0.996 -0.043,1.602 -0.173,1.731 l -1.948,0.173 c -0.043,0 -0.173,0.043 -0.433,0.13 l -2.468,0.433 c -0.433,0.086 -0.693,0.13 -0.779,0.086 -0.173,-0.043 -0.606,-0.173 -1.169,-0.39 -0.649,-0.303 -0.996,-0.476 -1.083,-0.563 l -0.173,-0.043 c -0.433,0.303 -0.736,0.477 -0.866,0.477 -0.173,-0.346 -0.52,-0.649 -1.039,-0.996 -0.52,-0.347 -0.953,-0.52 -1.342,-0.433 l -0.563,0.13 c -0.346,0.086 -0.563,0.173 -0.693,0.26 -0.129,0.26 -0.26,0.433 -0.303,0.52 l -0.433,0.649 c -0.26,0.563 -0.476,0.996 -0.606,1.212 -0.303,0.433 -0.649,0.649 -1.082,0.693 -0.606,0.043 -1.039,-0.043 -1.299,-0.303 -0.217,-0.736 -0.477,-1.212 -0.693,-1.472 -0.433,-0.216 -0.736,-0.433 -0.909,-0.563 -0.173,-0.26 -0.347,-0.346 -0.433,-0.433 -0.043,-0.043 -0.303,-0.087 -0.822,-0.26 -0.65,-0.13 -0.953,0.129 -0.996,0.822 l -0.13,0.043 c -1.255,0 -2.251,0 -2.901,0.043 -0.13,0 -0.26,0 -0.303,-0.087 -0.043,0 -0.043,-0.39 0.043,-1.125 0,-0.173 -0.043,-0.347 -0.217,-0.52 -0.129,-0.216 -0.216,-0.347 -0.259,-0.52 0,-0.087 0.173,-0.433 0.606,-1.039 0.346,-0.477 0.39,-0.91 0.13,-1.256 l -0.736,-0.866 c -0.13,-0.13 -0.173,-0.433 -0.173,-0.78 -0.26,-0.433 -0.433,-0.649 -0.52,-0.649 -0.303,0 -0.606,0.087 -0.953,0.347 l -0.13,-0.043 -0.823,-1.169 c -0.043,-0.043 -0.303,-0.52 -0.779,-1.385 -0.303,-0.563 -0.476,-0.953 -0.52,-0.996 0.693,-0.216 1.299,-0.52 1.818,-0.953 0.13,-0.13 0.173,-0.346 0.216,-0.692 -0.173,-0.433 -0.26,-0.736 -0.303,-0.953 -0.087,-0.52 -0.216,-0.823 -0.39,-0.866 -0.043,0 -0.39,0.043 -0.996,0.217 -0.563,0.13 -0.909,0.173 -1.039,0.043 l -0.043,-0.26 -0.13,-0.13 c -0.13,-0.086 -0.347,0 -0.649,0.26 l -0.173,-0.043 c -0.52,-0.693 -0.823,-0.996 -0.866,-0.996 -0.043,0 -0.303,0.173 -0.866,0.476 -0.086,0.217 -0.086,0.563 0,0.996 -0.26,0.173 -0.606,0.26 -1.083,0.303 l -0.13,-0.477 -0.086,-0.086 c -0.13,-0.043 -0.303,0 -0.476,0.13 -0.087,0.303 -0.13,0.779 -0.087,1.472 l -0.13,0.13 h -0.649 l -0.13,-0.087 c 0.216,-0.433 0.346,-0.779 0.39,-0.909 0.086,-1.039 0.043,-1.688 -0.086,-1.818 -0.173,-0.086 -0.823,-0.086 -1.992,0 -0.303,0.26 -0.52,0.433 -0.693,0.52 -0.26,0.043 -0.433,-0.043 -0.563,-0.303 -0.086,-0.303 -0.173,-0.52 -0.216,-0.649 -0.173,-0.043 -0.347,0.086 -0.606,0.346 -0.347,0.216 -0.563,0.39 -0.606,0.433 -0.866,-0.216 -1.342,-0.303 -1.472,-0.303 -0.52,0 -0.866,-0.043 -1.083,-0.043 -0.39,-0.043 -0.693,-0.216 -0.866,-0.52 l -0.13,-0.216 0.043,-0.866 c 0.043,-0.216 -0.13,-0.346 -0.433,-0.39 -0.39,-0.043 -0.606,-0.043 -0.649,-0.086 -0.086,-0.086 -0.13,-0.649 -0.216,-1.775 -0.043,-0.217 -0.13,-0.303 -0.303,-0.303 -0.563,0.043 -0.909,0.043 -1.039,-0.043 -0.173,-0.173 -0.26,-0.26 -0.303,-0.26 -0.043,0 -0.477,0.086 -1.255,0.303 -0.433,0.086 -0.65,-0.043 -0.693,-0.477 -0.043,-0.086 -0.346,-0.086 -0.823,0 -0.606,0.13 -0.996,0.26 -1.169,0.26 -0.13,0.043 -0.26,0.173 -0.303,0.39 -0.043,0.91 -0.26,1.342 -0.563,1.299 -0.692,-0.087 -1.083,-0.043 -1.169,0.086 -0.043,0.39 -0.13,0.606 -0.216,0.693 -0.173,0.13 -0.39,0.216 -0.649,0.26 -0.303,0.043 -0.52,-0.087 -0.606,-0.26 l -0.043,-0.693 c -0.043,-0.086 -0.13,-0.216 -0.26,-0.303 -0.173,-0.13 -0.346,-0.216 -0.477,-0.216 -0.346,0.086 -0.606,0.52 -0.779,1.342 -0.173,0.086 -0.39,0.086 -0.649,-0.043 -0.086,-0.346 -0.13,-0.606 -0.173,-0.736 l -0.217,-0.217 c -0.303,0.087 -0.476,0.13 -0.606,0.13 -0.173,0.043 -0.433,0.087 -0.866,0.087 -0.303,-0.173 -0.52,-0.303 -0.736,-0.347 -0.26,0 -0.476,0 -0.606,0.087 -0.13,0.086 -0.26,0.13 -0.303,0.13 -0.736,0.043 -1.126,0.13 -1.212,0.26 0,0.173 -0.13,0.346 -0.303,0.606 -0.043,0.216 -0.13,0.433 -0.216,0.563 -0.216,0.303 -1.256,0.086 -3.118,-0.736 -0.129,-0.043 -0.303,0 -0.476,0.173 -0.13,-0.086 -0.216,-0.086 -0.26,-0.086 -0.346,0 -0.606,0 -0.822,0 -0.563,-0.087 -0.996,-0.13 -1.256,-0.13 -0.303,0.13 -0.563,0.173 -0.779,0.13 -0.173,-0.173 -0.303,-0.303 -0.433,-0.347 -0.563,-0.216 -1.039,0.087 -1.429,0.866 -0.216,0.433 -0.347,0.649 -0.39,0.692 -0.13,0.087 -0.433,0.13 -0.823,0.043 l 0.04,0.142", + "Lviv": "m 55.81,132.167 c -0.563,0.347 -1.169,0.996 -1.818,1.949 -0.26,0.216 -0.39,0.476 -0.39,0.779 -0.13,0.173 -0.346,0.433 -0.693,0.779 -0.13,0.173 -0.433,0.606 -0.823,1.255 -0.173,0.217 -0.52,0.693 -1.125,1.386 -0.13,0.173 -0.347,0.476 -0.563,0.909 -0.173,0.173 -0.476,0.346 -0.909,0.476 -0.173,0.217 -0.26,0.606 -0.26,1.256 -0.043,0.26 -0.346,0.52 -0.909,0.736 -0.606,0.26 -0.953,0.779 -0.996,1.559 -0.043,0.433 -0.217,0.78 -0.519,1.039 -0.433,0.39 -0.693,0.65 -0.78,0.736 -0.086,0.173 -0.217,0.39 -0.303,0.736 -0.217,0.043 -0.52,0.087 -0.909,0.087 -0.346,0.173 -0.52,0.39 -0.65,0.649 -0.087,0.173 -0.173,0.476 -0.303,0.909 -0.303,0.693 -0.823,1.472 -1.602,2.338 -0.087,0.043 -0.346,0.433 -0.909,1.169 -0.173,0.26 -0.26,0.433 -0.303,0.52 -0.043,0.087 -0.086,0.26 -0.13,0.477 -0.087,0.26 -0.217,0.563 -0.476,0.996 0,0.13 0,0.346 0,0.606 0.216,0.216 0.39,0.389 0.476,0.52 l 0.216,0.303 c 0.217,0.39 0.303,0.779 0.303,1.169 0.043,0.216 0.086,0.563 0.13,1.039 0,0.26 -0.043,0.606 -0.087,1.082 0.043,0.13 0.216,0.347 0.606,0.606 0.346,0.303 0.606,0.563 0.736,0.866 0.173,0.303 0.173,1.169 0.087,2.598 0,0.173 0.13,0.477 0.346,0.91 0.173,0.346 0.303,0.692 0.303,1.039 0,0.433 -0.173,0.996 -0.563,1.775 -0.13,0.26 -0.303,0.736 -0.52,1.342 l 0.043,0.13 c 0,0.26 -0.173,0.693 -0.433,1.256 -0.26,0.52 -0.39,0.866 -0.346,1.039 l 0.13,0.13 c 0.13,0.043 0.26,-0.043 0.389,-0.173 0.043,-0.216 0.13,-0.346 0.217,-0.433 0.086,-0.043 0.173,-0.043 0.303,0 l 0.13,0.043 0.043,0.173 c -0.043,0.13 -0.087,0.303 -0.217,0.433 l 0.043,0.173 c 0.043,0.086 0.13,0.173 0.217,0.173 0.433,0.043 0.779,0.086 1.082,0.173 0.173,0.173 0.217,0.433 0.13,0.78 0.563,0.26 0.909,0.476 1.083,0.649 0.216,0.303 0.303,0.433 0.346,0.433 0.303,0 0.52,0 0.606,0.13 0.043,0.087 0.043,0.26 0.087,0.477 0.26,0 0.476,0.043 0.649,0.216 l 0.043,0.13 -0.043,0.173 c -0.303,0.26 -0.476,0.476 -0.476,0.563 0,0.086 0,0.26 0.087,0.563 -0.043,0.39 -0.043,0.606 -0.043,0.693 0.043,0.086 0.087,0.26 0.217,0.39 l -0.043,0.173 c 0.26,0.173 0.389,0.303 0.476,0.39 0.087,0.086 0.087,0.303 0,0.606 h 0.087 c 0.043,0.087 0.216,0.26 0.563,0.563 0,0.13 0,0.216 -0.043,0.346 -0.606,1.256 -0.563,2.295 0.173,3.161 0.433,0.433 0.649,0.693 0.736,0.736 0.476,0.216 0.779,0.39 0.953,0.606 0,0.26 0.043,0.433 0.087,0.52 0.13,0.736 0.52,1.04 1.255,0.909 0.043,0 0.303,-0.086 0.693,-0.303 0.736,-0.217 1.126,-0.347 1.169,-0.39 0.823,-0.303 1.385,-0.13 1.732,0.476 0.303,0.866 0.563,1.516 0.736,1.992 0.649,1.385 1.515,2.035 2.684,1.992 0.303,0 0.476,0 0.563,-0.043 0.087,-0.043 0.347,-0.26 0.736,-0.606 l 0.13,-0.087 0.13,0.087 c 0,0.13 0.043,0.39 0,0.736 0,0.303 0.043,0.563 0.217,0.736 l 0.216,0.043 c 0.086,-0.043 0.303,-0.26 0.52,-0.649 0.217,-0.346 0.39,-0.52 0.563,-0.52 0.26,0 0.433,0.26 0.476,0.779 0.043,0.606 0.173,0.953 0.476,1.039 0,0.043 0.217,0.087 0.693,0.173 0.779,0.216 1.385,0.26 1.905,0.173 0.563,-0.173 0.866,-0.26 0.909,-0.26 0.39,0.173 0.649,0.303 0.823,0.346 0.173,-0.173 0.39,-0.909 0.693,-2.208 0.346,-1.083 0.52,-1.862 0.563,-2.425 0.086,-0.909 -0.217,-1.645 -0.823,-2.208 0.26,-0.909 0.476,-1.472 0.52,-1.688 0.13,-0.477 0.217,-1.299 0.303,-2.468 0,-0.043 0.173,-0.217 0.563,-0.477 0.953,-0.693 1.602,-1.299 1.905,-1.775 0.087,-0.26 0.173,-0.476 0.217,-0.649 0.087,-0.26 0.173,-0.476 0.173,-0.606 0.217,-1.083 0.346,-1.688 0.476,-1.818 0.087,-0.043 0.26,-0.173 0.563,-0.433 H 71.44 c 0.563,-0.433 1.169,-0.606 1.775,-0.563 0.779,0.173 1.385,0.303 1.905,0.347 0.217,0.043 1.039,0 2.468,-0.043 0.173,0 0.346,-0.043 0.433,-0.173 0.26,-0.346 0.39,-0.563 0.433,-0.606 0.217,-0.173 0.606,-0.173 1.169,0.086 0.779,0.303 1.212,0.477 1.342,0.477 0.087,-0.043 0.217,-0.217 0.39,-0.563 0.39,-0.606 0.823,-0.909 1.342,-0.909 0.173,0 0.736,0.173 1.645,0.476 0.26,0.087 0.563,0.043 0.996,-0.173 0.477,-0.217 0.779,-0.39 0.909,-0.477 0.476,0.043 0.866,0.043 1.125,0.043 0.217,-0.043 0.823,-0.303 1.819,-0.779 0.173,-0.173 0.346,-0.26 0.476,-0.347 0.91,-0.39 1.559,-0.52 1.949,-0.39 0.26,0.26 0.433,0.39 0.563,0.433 0.216,0.043 0.39,-0.043 0.563,-0.216 0.563,-0.779 0.779,-1.212 0.693,-1.429 -0.347,-0.216 -0.606,-0.606 -0.779,-1.039 -0.217,0 -0.52,0.087 -0.953,0.217 -0.39,0.043 -0.693,-0.043 -0.909,-0.217 l -0.043,-0.173 c -0.043,-0.606 -0.086,-1.083 -0.086,-1.429 0,-0.043 0.13,-0.26 0.346,-0.693 0.173,-0.26 0.086,-0.52 -0.26,-0.693 -0.216,-0.173 -0.39,-0.216 -0.52,-0.173 -0.043,0 -0.26,0.217 -0.649,0.563 -0.26,0.26 -0.52,0.39 -0.693,0.303 -0.216,-0.087 -0.346,-0.303 -0.39,-0.606 -0.043,-0.39 0.043,-0.606 0.303,-0.692 0.303,-0.13 0.736,-0.217 1.342,-0.26 0.52,0 0.866,-0.087 0.996,-0.13 0.13,-0.043 0.173,-0.173 0.26,-0.39 0.043,-0.26 0.13,-0.39 0.173,-0.477 0.346,-0.26 0.649,-0.433 0.822,-0.563 0.26,-0.216 0.39,-0.476 0.39,-0.866 -0.129,-0.086 -0.39,-0.26 -0.779,-0.52 -0.39,-0.216 -0.563,-0.39 -0.65,-0.563 -0.086,-0.303 0.087,-0.649 0.52,-1.083 0.563,-0.476 0.866,-0.822 0.909,-0.952 0.13,-0.433 0.087,-0.823 -0.129,-1.212 -0.173,-0.347 -0.303,-0.563 -0.26,-0.649 0.087,-0.217 0.173,-0.347 0.217,-0.433 0.13,-0.433 0.346,-0.736 0.563,-0.866 0.606,0.13 1.039,0.173 1.212,0.216 0.26,0.043 1.126,-0.173 2.555,-0.563 0.087,-0.043 0.26,-0.043 0.563,0 0.346,0.043 0.606,0.173 0.779,0.26 0.693,0.693 1.125,1.039 1.299,0.996 l 0.26,-0.173 c 0.26,0.173 0.477,0.26 0.606,0.346 0.26,0.13 0.476,0.13 0.692,0 0.217,-0.13 0.39,-0.476 0.433,-1.082 0,-0.173 0,-0.303 0,-0.39 0.086,-0.736 0.13,-1.082 0.173,-1.125 v -0.52 c 0.216,-0.086 0.52,-0.086 0.866,0.043 0.346,0.129 0.563,0.13 0.649,0.086 0.217,-0.303 0.433,-0.563 0.693,-0.736 0.779,-0.347 1.342,-0.606 1.688,-0.736 0.39,-0.26 0.693,-0.433 0.909,-0.52 1.083,-0.52 1.688,-0.953 1.905,-1.169 0.086,-0.26 0.216,-0.433 0.303,-0.563 l 0.519,-0.952 c 0.217,-0.606 0.39,-1.126 0.563,-1.516 0.347,-0.736 0.606,-1.039 0.909,-0.996 0.043,0.216 0.13,0.346 0.173,0.433 0.476,0.087 0.909,0 1.385,-0.216 0.347,-0.173 0.563,-0.433 0.65,-0.693 0.043,-0.303 -0.13,-0.779 -0.563,-1.429 l -0.087,-0.13 c -0.173,-0.346 -0.216,-0.52 -0.26,-0.563 0,-0.086 0.087,-0.606 0.347,-1.602 1.126,-0.173 1.775,-0.26 1.862,-0.26 0.39,-0.173 0.649,-0.303 0.909,-0.303 1.125,-0.173 1.775,-0.303 1.862,-0.347 0.476,-0.303 0.823,-0.476 1.039,-0.563 0.433,-0.086 0.736,-0.173 0.953,-0.259 0.216,-0.217 0.433,-0.347 0.606,-0.433 0.909,0.26 1.559,-0.13 1.905,-1.083 0,-0.087 -0.13,-0.433 -0.303,-0.996 -0.087,-0.39 -0.043,-0.693 0.303,-0.91 0.433,0.043 0.736,0.043 0.952,0 0.087,-0.086 0.173,-0.26 0.13,-0.476 0,-0.26 -0.087,-0.433 -0.173,-0.563 l -0.39,-0.433 c -0.086,-0.087 -0.13,-0.303 -0.217,-0.563 -0.043,-0.086 -0.26,-0.217 -0.649,-0.433 -0.216,-0.13 -0.433,-0.346 -0.52,-0.693 -0.043,-0.173 -0.086,-0.346 0,-0.433 l -0.13,-0.173 c -0.26,-0.13 -0.736,-0.346 -1.299,-0.649 -0.649,-0.39 -0.953,-0.606 -1.039,-0.649 -0.563,-0.563 -0.909,-0.909 -1.083,-0.996 l -0.086,-0.13 c -0.217,-0.173 -0.52,-0.433 -0.909,-0.736 -0.13,-0.086 -0.347,-0.216 -0.563,-0.347 -0.216,-0.866 -0.346,-1.515 -0.346,-1.948 0,-0.52 0.13,-1.169 0.346,-1.992 0,-0.13 -0.13,-0.303 -0.433,-0.563 -0.346,-0.303 -0.52,-0.52 -0.563,-0.52 0,-0.26 0.173,-0.563 0.563,-0.91 0.433,-0.389 0.736,-0.692 0.823,-0.909 0.13,-0.39 0.13,-0.78 0,-1.126 -0.173,-0.433 -0.433,-0.693 -0.823,-0.779 -0.303,-0.087 -0.476,-0.087 -0.52,-0.087 -0.173,0.043 -0.52,0.217 -0.996,0.52 -0.347,0.217 -0.779,0.26 -1.342,0.13 -0.303,-0.087 -0.476,-0.13 -0.52,-0.13 -0.087,-0.086 -0.087,-0.259 -0.087,-0.52 0,-0.043 0,-0.086 0,-0.173 0,-0.26 0.043,-0.606 0.087,-1.083 0,-0.476 -0.173,-0.866 -0.52,-1.039 -0.13,-0.13 -0.26,-0.173 -0.347,-0.13 l -1.169,0.216 c -0.26,0.043 -0.563,-0.173 -0.952,-0.606 -0.347,-0.433 -0.736,-0.649 -1.04,-0.563 -0.086,0.086 -0.086,0.347 -0.043,0.649 0.086,0.347 0.043,0.563 0,0.736 l -0.13,0.043 c -0.39,0.043 -0.736,0 -0.953,-0.13 l -0.303,-0.26 c -0.346,-0.303 -0.822,-0.39 -1.342,-0.26 -0.26,0.043 -0.476,0.087 -0.649,0.173 -0.043,0 -0.26,0.173 -0.736,0.476 -0.347,0.26 -0.606,0.39 -0.693,0.347 l -0.953,-0.39 c -0.086,-0.043 -0.303,-0.13 -0.606,-0.217 -0.26,-0.13 -0.39,-0.303 -0.346,-0.52 0.043,-0.476 0.043,-0.779 0.043,-0.909 -0.13,-0.303 -0.433,-0.476 -0.952,-0.563 -0.563,-0.086 -0.866,-0.173 -0.91,-0.216 -0.043,-0.043 -0.086,-0.173 -0.043,-0.346 0,-0.217 0,-0.433 -0.13,-0.563 -0.043,-0.043 -0.347,-0.043 -0.909,0 -0.39,0 -0.693,-0.087 -0.779,-0.26 l -0.217,-0.606 c -0.086,-0.216 -0.26,-0.303 -0.563,-0.216 l -0.13,0.086 c -0.043,0.087 -0.043,0.39 -0.043,0.823 0,0.303 -0.173,0.52 -0.477,0.693 -0.26,0.086 -0.476,0.043 -0.606,-0.043 -0.13,-0.26 -0.216,-0.39 -0.216,-0.39 0,-0.13 0.043,-0.346 0.129,-0.649 0.043,-0.346 -0.086,-0.563 -0.346,-0.693 -0.823,-0.606 -1.299,-0.996 -1.342,-1.169 l 0.043,-0.173 0.39,-0.26 c 0.476,-0.087 0.866,-0.173 1.126,-0.217 0.476,-0.13 0.779,-0.346 0.996,-0.649 0.13,-0.303 0.173,-0.563 0.043,-0.866 -0.043,-0.043 -0.26,-0.303 -0.65,-0.866 -0.303,-0.303 -0.563,-0.476 -0.779,-0.563 -0.303,-0.043 -0.52,-0.043 -0.65,0.13 -0.216,0.129 -0.346,0.216 -0.389,0.216 -0.173,0 -0.433,-0.173 -0.823,-0.52 -0.39,-0.303 -0.606,-0.52 -0.692,-0.649 -0.043,-0.26 0.043,-0.52 0.26,-0.823 -0.043,-0.173 -0.303,-0.433 -0.823,-0.693 -0.563,-0.303 -0.909,-0.39 -1.126,-0.26 -0.129,0.087 -0.346,0.347 -0.563,0.693 -0.13,0.086 -0.346,0.086 -0.693,0.13 -0.26,0 -0.52,0.13 -0.823,0.26 -0.173,0.13 -0.346,0.26 -0.433,0.39 -0.173,0.043 -0.563,-0.13 -1.212,-0.476 -0.13,-0.043 -0.26,-0.347 -0.433,-0.779 l -0.692,-0.303 c -0.26,-0.13 -0.39,-0.39 -0.303,-0.779 -0.13,-0.347 -0.39,-0.52 -0.866,-0.52 -0.52,0 -0.822,0.26 -1.039,0.736 -0.086,0.736 -0.173,1.256 -0.173,1.429 l 0.043,0.13 c 0.043,0.13 0.13,0.26 0.13,0.303 0.043,0.26 0.087,0.39 0.087,0.52 0.043,0.13 0.173,0.303 0.433,0.563 0.173,0.216 0.26,0.39 0.26,0.563 -0.26,0.303 -0.606,0.563 -1.083,0.78 0,0.216 -0.13,0.39 -0.346,0.52 -0.26,0.13 -0.606,0.26 -1.083,0.303 -0.13,0.043 -0.26,0.13 -0.433,0.26 -0.26,0.303 -0.39,0.606 -0.26,0.91 0.043,0.086 0.13,0.13 0.217,0.173 0.086,0.173 0.086,0.39 0,0.693 -0.173,0.26 -0.26,0.433 -0.303,0.606 -0.13,0.303 -0.26,0.736 -0.476,1.342 0,0.043 -0.087,0.173 -0.173,0.303 -0.043,0.043 -0.13,0.086 -0.217,0.216 -0.433,0.217 -2.208,0.26 -5.239,0.043 -0.736,0.086 -1.645,0.39 -2.771,0.909 -0.433,0.216 -0.693,0.476 -0.779,0.823 -0.043,0 -0.087,0.39 -0.217,1.125 -0.086,0.303 -0.13,0.477 -0.13,0.52 -0.13,0.217 -0.346,0.347 -0.693,0.477 -0.39,0.13 -0.65,0.26 -0.779,0.346 -0.217,0.216 -0.433,0.606 -0.693,1.212 -0.52,0.649 -1.083,1.169 -1.646,1.516 l -1.602,1.212 c -0.216,0.173 -0.606,0.433 -1.212,0.866 -0.303,0.216 -0.693,0.692 -1.169,1.342 -0.216,0.217 -0.606,0.52 -1.126,0.953 -1.039,0.909 -1.862,1.689 -2.425,2.338 -0.173,0.26 -0.39,0.606 -0.736,1.125 -0.174,0.173 -0.39,0.346 -0.693,0.563 l -0.823,0.779 c -0.217,0.173 -0.39,0.52 -0.39,1.039 -0.166,0.308 -0.469,0.611 -1.032,0.871", + "Luhansk": "m 494.189,140.263 0.043,0.173 c 0.996,0.692 1.516,1.125 1.559,1.299 -0.087,0.173 -0.347,0.346 -0.78,0.433 -0.26,0.259 -0.39,0.606 -0.52,1.169 -0.606,-0.26 -0.953,-0.303 -1.082,-0.217 -0.087,0.043 -0.26,0.217 -0.52,0.606 -0.26,0.346 -0.39,0.606 -0.433,0.693 0.043,0.26 0.13,0.433 0.303,0.476 0.736,-0.39 1.212,-0.476 1.385,-0.346 0.216,0.259 0.303,0.476 0.26,0.779 -0.043,0.13 -0.086,0.346 -0.173,0.692 -0.043,0.13 0,0.433 0.087,0.866 0.086,0.39 0.086,0.693 0,0.866 -0.477,0.347 -0.693,0.693 -0.736,1.039 0,0.39 -0.043,0.563 -0.086,0.606 -0.433,0.216 -0.736,0.39 -0.866,0.563 v 0.173 c 0.087,0.13 0.217,0.39 0.303,0.823 0,0.043 0.087,0.173 0.26,0.346 0.086,0.13 0.13,0.26 0.13,0.39 l -0.086,0.13 c -0.173,-0.043 -0.303,-0.086 -0.39,-0.043 -0.043,0.043 0.086,0.39 0.346,0.996 0.173,0.563 0.217,0.866 0,0.953 -0.476,0.26 -0.779,0.433 -0.866,0.52 -0.26,0.26 -0.347,0.649 -0.347,1.212 -0.043,0.606 -0.086,0.953 -0.173,1.083 -0.563,0.086 -0.953,0.216 -1.169,0.346 -0.043,0.13 -0.217,0.476 -0.52,0.996 0.347,0.39 0.563,0.606 0.606,0.65 0.39,0.563 0.476,1.342 0.173,2.424 -0.043,0.13 -0.13,0.433 -0.259,0.866 -0.087,0.39 0.043,0.692 0.259,0.866 0.173,0.086 0.52,0.173 1.083,0.216 l 0.26,0.347 c -0.043,0.086 0,0.26 0.087,0.433 0,0.26 -0.26,0.563 -0.78,0.91 l 0.174,0.39 -0.13,0.086 c -0.606,0.346 -0.996,0.563 -1.125,0.606 -0.173,0.087 -0.26,0.087 -0.303,0.13 -0.13,0.087 -0.216,0.217 -0.303,0.39 0.52,0 0.996,0.39 1.342,1.169 0.087,0.043 0.477,0.13 1.256,0.216 0.086,0.26 0.13,0.433 0,0.52 -0.779,0 -1.212,0.043 -1.299,0.086 -0.26,0.779 -0.346,1.169 -0.303,1.256 0.086,0.086 0.173,0.173 0.26,0.173 0.823,0.26 1.559,0.606 2.208,1.04 0.173,0.129 0.303,0.173 0.477,0.043 l 0.996,-0.909 c 0,-0.043 0.606,0 1.732,0.086 -0.13,0.39 -0.26,0.953 -0.347,1.646 0.13,0.693 0.087,1.125 -0.129,1.342 -0.433,0.433 -0.606,0.736 -0.563,0.909 0.043,0.086 0.13,0.173 0.26,0.303 0.779,1.342 1.039,2.294 0.822,2.857 -0.173,0.13 -0.476,0.173 -0.952,0.13 -0.043,0.13 -0.043,0.346 0,0.649 -0.347,-0.13 -0.563,-0.13 -0.736,-0.043 -0.086,0.087 -0.173,0.217 -0.26,0.477 -0.086,0.216 -0.13,0.39 -0.086,0.476 l 0.13,0.087 0.476,-0.043 0.173,0.086 c 0.087,0.173 0.216,0.39 0.346,0.693 l 0.087,-0.086 c 0.216,-0.043 0.476,0 0.866,0.086 0.303,0.043 0.779,0.086 1.429,0.13 0.13,0 0.39,0.043 0.693,0.173 0.13,0 0.347,-0.043 0.649,-0.043 0.26,0 0.649,0.13 1.083,0.346 0.39,0.477 0.606,1.212 0.693,2.122 0,0.173 0,0.477 -0.043,0.866 0,0.173 0.216,0.303 0.649,0.39 0.52,0.086 0.823,0.13 0.866,0.216 l 0.13,0.26 c 0,0.043 -0.043,0.216 -0.173,0.477 -0.086,0.173 -0.086,0.346 0.043,0.476 l 0.39,0.433 c 0.347,0.346 0.26,0.952 -0.259,1.731 -0.217,0.26 -0.39,0.477 -0.477,0.649 -0.086,0.217 -0.086,0.563 -0.043,1.04 l 0.086,0.086 c 0.303,-0.303 0.649,-0.39 1.039,-0.26 l 0.13,0.086 0.043,0.13 c -0.087,0.39 -0.346,0.779 -0.779,1.256 -0.693,0.649 -1.04,1.039 -1.04,1.125 -0.086,0.217 -0.043,0.693 0.043,1.472 0,0.13 0.087,0.433 0.173,0.866 0,0.13 -0.086,0.303 -0.13,0.563 l 0.476,1.039 c 0.13,0.173 0.086,0.563 -0.13,1.126 -0.173,0.476 -0.173,0.823 0,0.996 0.173,0.13 0.39,0.217 0.779,0.303 0.347,0.043 0.606,0.13 0.736,0.26 0.043,0.303 0,0.606 -0.043,0.866 -0.043,0.043 -0.086,0.173 -0.13,0.303 -0.13,0.347 -0.216,0.736 -0.216,1.169 0,0.433 0,0.692 0.043,0.779 0.13,0.433 0.606,0.606 1.386,0.563 0.13,0 0.173,0.13 0.26,0.347 0.346,0.173 0.736,-0.043 1.125,-0.649 l 0.173,0.086 c 0.043,0.216 0.216,0.476 0.52,0.823 0.043,0.086 0.087,0.303 0.087,0.606 0.043,0.216 0.086,0.433 0.216,0.563 0.13,0.216 0.476,0.476 0.952,0.779 0.433,0.563 0.65,1.039 0.563,1.429 -0.043,0.433 -0.303,0.649 -0.736,0.779 -0.563,0.086 -0.953,0.13 -1.212,0.13 l -0.13,0.087 -0.13,0.086 0.216,0.736 c 0,0 0.087,0.433 0.303,1.299 0.173,0.173 0.303,0.26 0.39,0.26 0.779,0.043 1.342,0.043 1.646,0 1.169,-0.173 1.861,-0.26 2.165,-0.26 l 0.087,0.043 c 0.216,0.39 0.39,1.039 0.606,1.948 0.086,0.303 0.26,0.65 0.52,1.169 0,0.217 -0.086,0.649 -0.216,1.256 0.086,0.173 0.649,0.476 1.818,0.953 0.216,0.13 0.606,0.26 1.126,0.52 0,0 0.216,0.086 0.563,0.173 0.736,0.217 1.516,0.563 2.295,1.04 0.606,0.346 0.909,0.606 0.952,0.909 0,0 -0.173,0.39 -0.606,1.125 -0.303,0.52 -0.346,0.909 -0.13,1.169 l 0.909,1.126 c 0.043,0.043 0.216,0.086 0.476,0.086 1.516,-0.13 2.901,-0.043 4.244,0.303 0.389,0.086 0.692,0.173 0.952,0.26 0.303,0.13 0.433,0.39 0.39,0.779 0,0.13 -0.13,0.693 -0.346,1.688 -0.043,0.217 0.086,0.39 0.346,0.606 0.39,0.216 0.563,0.39 0.606,0.476 0,0.476 -0.216,1.342 -0.649,2.684 0.346,-0.043 0.649,0 0.866,0.13 0.086,0.086 0.433,0.303 0.996,0.779 0.389,0.346 0.736,0.52 1.039,0.52 0.26,0 0.952,-0.173 2.121,-0.563 0.909,-0.216 1.473,-0.303 1.602,-0.303 0.303,0 0.736,0 1.342,0.087 l 1.429,-0.043 c 0.433,0.043 0.78,0.173 1.039,0.52 0.303,0.303 0.52,0.476 0.606,0.476 0.216,0.043 0.52,0 0.953,-0.173 0.433,-0.216 0.736,-0.303 0.909,-0.26 0.043,0 0.303,0.13 0.779,0.346 0.346,0.086 0.779,0.086 1.385,-0.043 0.693,-0.173 1.212,-0.303 1.516,-0.259 0.346,0 0.953,0.129 1.818,0.433 0.866,0.303 1.516,0.476 1.905,0.52 0.563,0 0.996,-0.216 1.342,-0.736 0.129,-0.13 0.303,-0.39 0.606,-0.779 0.39,-0.433 0.563,-0.953 0.433,-1.472 -0.173,-0.909 -0.26,-1.386 -0.26,-1.429 0,-0.26 0.13,-0.649 0.347,-1.169 0.26,-0.52 0.346,-0.909 0.346,-1.169 0,-0.086 -0.043,-0.26 -0.13,-0.52 -0.086,-0.303 -0.26,-0.606 -0.433,-0.822 -0.476,-0.649 -0.736,-0.996 -0.779,-0.996 l 0.043,-0.173 c 0.086,-0.129 0.39,-0.26 0.953,-0.433 0.563,-0.173 0.909,-0.26 1.082,-0.26 0.174,0 0.39,0 0.693,0.043 0.043,-0.13 0,-0.26 -0.129,-0.52 -0.173,-0.173 -0.26,-0.346 -0.303,-0.476 -0.043,-0.39 -0.086,-0.736 -0.13,-0.909 l -0.087,-0.303 c -0.129,-0.606 0,-1.083 0.39,-1.429 0.52,-0.52 0.823,-0.823 0.866,-0.953 0.043,-0.346 0.086,-0.563 0.13,-0.736 0.216,-0.866 0.606,-1.646 1.169,-2.295 0.26,-0.303 0.779,-0.606 1.646,-0.866 0.216,-0.217 0.346,-0.347 0.433,-0.477 0.173,-0.303 0.26,-0.736 0.303,-1.255 0.043,-0.649 -0.086,-1.039 -0.433,-1.169 -0.13,-0.043 -0.26,-0.087 -0.303,-0.043 -0.606,0.043 -1.083,0.216 -1.429,0.433 -0.303,0.26 -0.52,0.433 -0.692,0.52 l -0.087,-0.043 c -0.303,-0.606 -0.736,-0.996 -1.299,-1.125 -0.606,-0.173 -0.909,-0.303 -0.996,-0.52 0,-0.216 0.216,-0.389 0.649,-0.563 0.606,-0.216 0.953,-0.347 1.039,-0.433 0.303,-0.26 0.563,-0.693 0.866,-1.386 -0.26,-0.129 -0.39,-0.39 -0.433,-0.779 0,-0.52 -0.043,-0.866 -0.087,-0.996 -0.216,-0.26 -0.39,-0.433 -0.39,-0.606 0.043,-0.433 0,-0.736 -0.086,-0.909 -0.043,-0.043 -0.346,-0.39 -0.953,-1.04 -0.476,-0.476 -0.606,-0.866 -0.476,-1.125 l 0.129,-0.13 c 0.087,0 0.26,0 0.477,0 l 0.13,-0.086 0.043,-0.173 c -0.086,-0.303 -0.13,-0.52 -0.173,-0.693 -0.043,-1.039 -0.13,-1.645 -0.303,-1.862 -0.217,-0.173 -0.39,-0.303 -0.52,-0.39 -0.303,-0.39 -0.649,-0.606 -0.996,-0.693 -0.26,-0.086 -0.563,-0.086 -0.996,-0.043 -0.476,0.043 -0.822,0.043 -0.996,0.043 -0.779,-0.303 -1.386,-0.346 -1.862,-0.26 -0.303,-0.52 -0.433,-0.909 -0.39,-1.082 0,-0.13 0.087,-0.347 0.26,-0.65 0.087,-0.173 0.217,-0.476 0.346,-0.866 0.39,-0.563 0.649,-0.996 0.736,-1.342 0.13,-0.303 0.13,-0.692 0.086,-1.169 -0.043,-0.26 -0.086,-0.433 -0.043,-0.476 0.173,-0.347 0.303,-0.606 0.346,-0.823 0.173,-0.606 0.26,-1.039 0.39,-1.299 0.086,-0.13 0.39,-0.216 0.866,-0.173 0.087,-0.13 0.173,-0.346 0.26,-0.736 0.087,-0.217 0.173,-0.433 0.303,-0.649 0.303,-0.52 0.649,-0.866 1.083,-1.083 0.434,-0.217 0.952,-0.173 1.602,0.13 0.346,0.173 0.823,0.476 1.472,0.909 0.13,0.043 0.346,0.13 0.649,0.216 0.39,0.13 0.649,0.217 0.822,0.217 0.477,0 1.083,-0.39 1.862,-1.126 0.693,-0.736 1.169,-1.472 1.386,-2.251 0.086,-0.692 -0.216,-1.125 -0.823,-1.342 -0.52,-0.173 -0.953,0.043 -1.256,0.606 -0.39,0.606 -0.692,0.909 -0.866,0.953 -0.346,0 -0.649,-0.173 -0.953,-0.563 -0.346,-0.433 -0.563,-0.649 -0.606,-0.693 -0.606,0.13 -1.083,0.216 -1.385,0.173 -0.173,0 -0.563,-0.13 -1.212,-0.433 -0.173,-0.13 -0.477,-0.13 -0.866,-0.13 -0.39,0.043 -0.779,-0.086 -1.169,-0.303 -0.13,-0.087 -0.216,-0.347 -0.303,-0.866 -0.086,-0.52 -0.216,-0.909 -0.433,-1.039 -0.217,-0.216 -0.433,-0.39 -0.606,-0.52 -0.26,-0.173 -0.476,-0.303 -0.563,-0.347 -0.173,-0.173 -0.26,-0.39 -0.303,-0.606 0.086,-0.433 0.086,-0.693 0.13,-0.866 0,-0.736 0.086,-1.299 0.173,-1.602 0.216,-0.173 0.692,-0.13 1.559,0.086 0.39,0.043 0.823,-0.086 1.255,-0.39 0.52,-0.346 0.866,-0.52 0.996,-0.563 0.216,-0.043 0.779,0 1.688,0.13 0.736,0.13 1.255,0.043 1.472,-0.13 0.303,-0.26 0.303,-0.692 0,-1.385 0,-0.13 0.13,-0.476 0.39,-0.996 0.043,-0.086 0.26,-0.39 0.649,-0.953 0.26,-0.389 1.039,-1.039 2.381,-1.948 0.173,-0.13 0.433,-0.303 0.823,-0.476 0.303,-0.433 0.649,-1.126 1.125,-2.078 0.216,-0.13 0.433,-0.217 0.736,-0.303 0.217,-0.086 0.433,-0.216 0.649,-0.476 0.043,-0.13 0.043,-0.39 -0.043,-0.736 -0.13,-0.39 -0.173,-0.649 -0.13,-0.779 0,-0.043 0.086,-0.26 0.26,-0.693 0.216,-0.736 0.303,-1.299 0.216,-1.818 -0.043,-0.346 -0.173,-0.649 -0.39,-0.909 -0.26,-0.26 -0.476,-0.52 -0.649,-0.736 l -0.26,-0.347 c -0.303,-0.39 -0.52,-0.693 -0.693,-0.866 -0.173,-0.217 -0.563,-0.823 -1.039,-1.775 -0.26,-0.303 -0.433,-0.563 -0.476,-0.736 -0.217,-0.52 -0.217,-1.083 -0.043,-1.732 0.216,-0.909 0.649,-1.516 1.299,-1.862 0.736,-0.346 1.169,-0.693 1.299,-1.039 0.13,-0.26 0.173,-0.52 0.173,-0.736 -0.173,-0.39 -0.26,-0.649 -0.303,-0.866 -0.476,-0.043 -0.822,-0.086 -1.125,-0.086 0,0 -0.346,-0.173 -0.996,-0.433 -0.649,-0.303 -1.342,-0.303 -2.035,-0.043 -0.303,0.173 -0.477,0.303 -0.606,0.477 -0.692,0.866 -1.082,1.342 -1.212,1.385 -0.043,0.043 -0.39,0.217 -1.083,0.477 -1.256,0.52 -2.295,0.649 -3.118,0.346 -0.476,-0.779 -0.779,-1.212 -0.909,-1.299 -0.086,-0.086 -0.39,-0.216 -0.952,-0.477 -0.563,-0.216 -0.909,-0.39 -1.04,-0.39 -0.39,-0.043 -0.649,-0.043 -0.866,-0.043 -0.303,-0.043 -0.606,-0.217 -0.866,-0.563 -0.216,-0.216 -0.433,-0.996 -0.736,-2.208 -0.303,-0.736 -0.476,-1.299 -0.563,-1.646 -0.086,-0.52 -0.216,-0.822 -0.303,-1.039 -0.043,-0.086 -0.087,-0.173 -0.13,-0.216 -0.823,0 -1.429,-0.043 -1.818,-0.173 -0.26,-0.043 -0.563,-0.303 -0.953,-0.649 -0.346,-0.346 -0.693,-0.476 -1.039,-0.433 -0.303,0.043 -0.736,0.26 -1.299,0.693 -0.52,0.346 -1.082,0.52 -1.602,0.477 -0.13,0 -0.433,-0.087 -0.909,-0.26 -0.477,-0.086 -0.78,-0.216 -0.996,-0.303 -0.563,-0.303 -0.952,-0.649 -1.083,-0.996 -0.086,-0.086 -0.216,-0.563 -0.39,-1.385 -0.043,-0.217 -0.086,-0.347 -0.086,-0.433 -0.347,-0.563 -0.563,-0.996 -0.606,-1.299 -0.043,-0.433 -0.086,-0.779 -0.129,-0.996 -0.087,-0.303 -0.26,-0.563 -0.606,-0.736 -0.086,-0.086 -0.303,-0.13 -0.563,-0.173 -0.39,-0.043 -0.692,0.087 -0.909,0.303 -0.26,0.346 -0.433,0.606 -0.606,0.823 -0.649,0.909 -1.126,1.429 -1.299,1.559 -0.26,0.173 -0.65,0.26 -1.126,0.26 -0.606,0 -0.996,0.043 -1.212,0.086 -0.563,0.217 -1.082,0.303 -1.559,0.26 -0.216,-0.173 -0.476,-0.606 -0.822,-1.342 -0.303,-0.736 -0.606,-1.212 -0.866,-1.386 -0.433,-0.26 -1.169,-0.476 -2.165,-0.563 -1.039,-0.13 -1.602,-0.216 -1.688,-0.26 -0.173,-0.13 -0.346,-0.346 -0.563,-0.649 -0.216,-0.39 -0.39,-0.606 -0.519,-0.736 -0.39,-0.13 -0.649,-0.303 -0.78,-0.39 -0.216,-0.217 -0.259,-0.649 -0.173,-1.256 0.043,-0.563 0.043,-0.909 -0.086,-1.039 -0.13,0 -0.26,0.13 -0.477,0.39 -0.26,0.303 -0.476,0.477 -0.693,0.52 -0.173,0.043 -0.433,0 -0.736,-0.13 -0.39,-0.13 -0.649,-0.216 -0.823,-0.216 -0.043,0 -0.433,0.13 -1.126,0.433 -0.173,0.043 -0.519,0.086 -0.996,0.173 -0.39,0.043 -0.649,0.043 -0.736,0.043 -0.173,-0.086 -0.389,-0.346 -0.649,-0.693 -0.259,-0.433 -0.476,-0.649 -0.649,-0.736 -0.216,-0.13 -0.649,-0.087 -1.385,0.043 -0.563,0.087 -0.996,-0.173 -1.386,-0.779 -0.086,-0.303 -0.173,-0.563 -0.26,-0.866 -0.173,-0.909 -0.303,-1.429 -0.346,-1.559 -0.26,-0.649 -0.649,-0.909 -1.125,-0.866 -0.693,0.39 -1.212,0.606 -1.602,0.606 -0.996,-0.347 -1.602,-0.433 -1.905,-0.217 l -0.086,0.13 c 0,0.043 0.086,0.433 0.216,1.212 0.043,0.26 0.043,0.563 0.086,0.823 0,0.173 0.043,0.39 0.13,0.736 -0.043,0.347 -0.043,0.823 -0.043,1.516 -0.043,0.346 -0.303,0.779 -0.736,1.255 -0.476,0.477 -0.909,0.606 -1.212,0.433 -0.173,-0.26 -0.303,-0.39 -0.39,-0.476 -0.217,-0.043 -0.693,0.173 -1.472,0.693 -0.606,0.259 -0.996,0.563 -1.212,0.909 l -0.13,0.043 c 0.086,0.173 0.216,0.52 0.433,0.953 0.346,0.606 0.606,0.996 0.736,1.039 l 0.606,0.303 0.086,0.13 v 0.173 c -0.043,0.13 -0.173,0.216 -0.346,0.26 -0.26,0 -0.433,0 -0.52,0 -0.952,0.085 -1.515,0.345 -1.732,0.864", + "Kirovohrad": "m 251.03125,211.90624 c 0.26,0.086 0.4325,0.086 0.5625,0 0.433,-0.217 0.75775,-0.375 0.84375,-0.375 0.217,0 0.55925,0.19875 0.90625,0.71875 0.39,0.52 0.62675,0.73825 0.84375,0.78125 0.216,-0.173 0.447,-0.5425 0.75,-1.0625 0.217,-0.563 0.42075,-0.88175 0.59375,-0.96875 0.173,-0.086 0.327,0.0135 0.5,0.1875 0.043,0.086 0.12,0.25175 0.25,0.46875 0.303,0.173 0.687,-0.0112 1.25,-0.53125 l 0,0.15625 c 0,0 0.038,0.12 0.125,0.25 0.216,0.173 0.30075,0.52 0.34375,1.125 0.043,0.217 0.27125,0.44025 0.53125,0.65625 0.173,0.173 0.3075,0.524 0.4375,1 0,0 0.5625,0.192 1.6875,0.625 0.216,0.086 0.562,-0.002 1.125,-0.21875 0.173,0.043 0.4235,0.13175 0.8125,0.21875 0.087,0.043 0.3795,-0.0828 0.8125,-0.34375 0.433,0.043 1.00225,0.16475 1.78125,0.46875 0.129,0 0.27125,-0.038 0.53125,-0.125 0.173,-0.086 0.41575,-0.0352 0.71875,0.0937 0.39,0.086 0.71375,0.0548 0.84375,-0.0312 0.043,-0.043 0.158,-0.2555 0.375,-0.6875 0.39,-0.779 0.8745,-1.092 1.4375,-0.875 0.13,0.043 0.2645,0.16975 0.4375,0.34375 0.216,0.043 0.47825,0.005 0.78125,-0.125 0.26,0 0.686,0.038 1.25,0.125 l 0.8125,0 c 0.043,0 0.15125,0.008 0.28125,0.0937 0.173,-0.173 0.33975,-0.2305 0.46875,-0.1875 1.862,0.823 2.908,1.053 3.125,0.75 0.086,-0.13 0.1445,-0.3465 0.1875,-0.5625 0.173,-0.26 0.3125,-0.452 0.3125,-0.625 0.086,-0.13 0.48275,-0.207 1.21875,-0.25 0.043,0 0.1825,-0.038 0.3125,-0.125 0.13,-0.087 0.33375,-0.0937 0.59375,-0.0937 0.216,0.043 0.447,0.16975 0.75,0.34375 0.433,0 0.67075,-0.0497 0.84375,-0.0937 0.13,0 0.322,-0.038 0.625,-0.125 l 0.21875,0.21875 c 0.043,0.13 0.0693,0.404 0.15625,0.75 0.26,0.13 0.48425,0.11825 0.65625,0.0312 0.173,-0.823 0.43525,-1.25775 0.78125,-1.34375 0.13,0 0.29475,0.0888 0.46875,0.21875 0.13,0.087 0.206,0.2265 0.25,0.3125 l 0.0625,0.6875 c 0.086,0.173 0.29075,0.293 0.59375,0.25 0.26,-0.043 0.48325,-0.12 0.65625,-0.25 0.086,-0.087 0.17575,-0.2975 0.21875,-0.6875 0.086,-0.13 0.46425,-0.18075 1.15625,-0.0937 0.303,0.043 0.5195,-0.4035 0.5625,-1.3125 0.043,-0.216 0.1825,-0.331 0.3125,-0.375 0.173,0 0.55025,-0.119 1.15625,-0.25 0.477,-0.086 0.79975,-0.086 0.84375,0 0.043,0.433 0.2545,0.55475 0.6875,0.46875 0.779,-0.217 1.207,-0.3125 1.25,-0.3125 0.043,0 0.1395,0.076 0.3125,0.25 0.13,0.087 0.46825,0.1065 1.03125,0.0625 0.173,0 0.2695,0.0955 0.3125,0.3125 0.086,1.125 0.13275,1.663 0.21875,1.75 0.043,0.043 0.236,0.0507 0.625,0.0937 0.303,0.043 0.4805,0.18925 0.4375,0.40625 l -0.0312,0.84375 0.125,0.21875 c 0.173,0.303 0.485,0.48825 0.875,0.53125 0.217,0 0.5425,0.0312 1.0625,0.0312 0.13,0 0.634,0.0955 1.5,0.3125 0.043,-0.043 0.24775,-0.2205 0.59375,-0.4375 0.259,-0.26 0.42075,-0.38775 0.59375,-0.34375 0.043,0.129 0.13275,0.35325 0.21875,0.65625 0.13,0.26 0.3025,0.32425 0.5625,0.28125 0.173,-0.086 0.3845,-0.24 0.6875,-0.5 1.169,-0.086 1.826,-0.086 2,0 0.13,0.13 0.18075,0.7735 0.0937,1.8125 -0.043,0.13 -0.18925,0.47425 -0.40625,0.90625 l 0.15625,0.0937 0.625,0 0.15625,-0.125 c -0.043,-0.693 -0.0245,-1.16575 0.0625,-1.46875 0.173,-0.13 0.37,-0.19925 0.5,-0.15625 l 0.0625,0.0937 0.125,0.46875 c 0.476,-0.043 0.83375,-0.10825 1.09375,-0.28125 -0.086,-0.433 -0.086,-0.783 0,-1 0.563,-0.303 0.832,-0.46875 0.875,-0.46875 0.043,0 0.356,0.307 0.875,1 l 0.15625,0.0312 c 0.303,-0.26 0.52625,-0.337 0.65625,-0.25 l 0.125,0.125 0.0312,0.25 c 0.13,0.13 0.5005,0.0987 1.0625,-0.0312 0.606,-0.173 0.957,-0.21875 1,-0.21875 0.173,0.043 0.288,0.32475 0.375,0.84375 0.043,0.216 0.1395,0.53575 0.3125,0.96875 -0.043,0.346 -0.0888,0.5585 -0.21875,0.6875 -0.52,0.433 -1.1195,0.75175 -1.8125,0.96875 0.043,0.043 0.196,0.40575 0.5,0.96875 0.476,0.866 0.73825,1.36325 0.78125,1.40625 l 0.84375,1.15625 0.125,0.0625 c 0.347,-0.26 0.6335,-0.375 0.9375,-0.375 0.086,0 0.27125,0.22425 0.53125,0.65625 0,0.347 0.0263,0.65125 0.15625,0.78125 l 0.75,0.875 c 0.26,0.346 0.221,0.773 -0.125,1.25 -0.433,0.606 -0.625,0.94425 -0.625,1.03125 0.043,0.173 0.15225,0.31425 0.28125,0.53125 0.173,0.173 0.21875,0.35725 0.21875,0.53125 -0.086,0.736 -0.1055,1.125 -0.0625,1.125 0.043,0.087 0.1825,0.0625 0.3125,0.0625 0.649,-0.043 1.65125,-0.0312 2.90625,-0.0312 l 0.125,-0.0312 c 0.043,-0.693 0.35,-0.97475 1,-0.84375 0.519,0.173 0.7695,0.23725 0.8125,0.28125 0.086,0.086 0.2645,0.1775 0.4375,0.4375 0.173,0.13 0.47325,0.3465 0.90625,0.5625 0.216,0.26 0.4705,0.73275 0.6875,1.46875 0.26,0.26 0.7055,0.32425 1.3125,0.28125 0.433,-0.043 0.7595,-0.2545 1.0625,-0.6875 0.13,-0.217 0.366,-0.65575 0.625,-1.21875 l 0.4375,-0.625 c 0.043,-0.086 0.15125,-0.27125 0.28125,-0.53125 0.13,-0.087 0.3415,-0.163 0.6875,-0.25 l 0.59375,-0.125 c 0.39,-0.087 0.7935,0.0592 1.3125,0.40625 0.52,0.346 0.8895,0.653 1.0625,1 0.13,0 0.41075,-0.16475 0.84375,-0.46875 l 0.1875,0.0312 c 0.086,0.087 0.44375,0.2595 1.09375,0.5625 0.563,0.216 0.98325,0.36225 1.15625,0.40625 0.086,0.043 0.34825,-0.008 0.78125,-0.0937 l 2.46875,-0.4375 c 0.26,-0.086 0.3945,-0.125 0.4375,-0.125 l 1.9375,-0.15625 c 0.13,-0.13 0.1875,-0.755 0.1875,-1.75 0.043,-0.043 0.34325,-0.125 0.90625,-0.125 0.043,-0.086 0.0743,-0.21375 0.0312,-0.34375 l -0.34375,-0.25 -0.0312,-0.15625 c 0.086,-0.476 0.0743,-0.77625 0.0312,-0.90625 -0.303,-0.52 -0.33025,-0.8885 -0.15625,-1.0625 0.043,-0.086 0.274,-0.1445 0.75,-0.1875 0.39,0 0.67475,-0.081 0.71875,-0.125 l 0.0313,-0.9062 -0.6875,-0.0937 c -0.303,-0.043 -0.38675,-0.30525 -0.34375,-0.78125 0.086,-0.476 0.2205,-0.77625 0.4375,-0.90625 0.346,-0.217 0.50775,-0.34375 0.59375,-0.34375 0.173,-0.13 0.47325,-0.17575 0.90625,-0.21875 0.303,0 0.66475,-0.12775 0.96875,-0.34375 l 0.125,0.0937 c 0.13,0.173 0.283,0.485 0.5,0.875 0.086,0.087 0.23325,0.163 0.40625,0.25 0.173,0.043 0.3505,-0.008 0.4375,-0.0937 0.13,-0.216 0.19425,-0.485 0.28125,-0.875 l 0.0937,-0.0625 c 0.13,0.043 0.35325,-0.0195 0.65625,-0.0625 0.303,-0.086 0.4755,-0.17575 0.5625,-0.21875 0.043,-0.086 0.0362,-0.32375 -0.0937,-0.84375 -0.086,-0.433 0.0347,-0.8415 0.46875,-1.1875 0.216,-0.087 0.47825,-0.048 0.78125,0.125 0.26,0.173 0.48325,0.1875 0.65625,0.1875 0.13,-0.086 0.39225,-0.26725 0.78125,-0.65625 l 0.1875,0.0312 c 0.13,0.173 0.19925,0.404 0.15625,0.75 0.087,0.173 0.27125,0.47825 0.53125,0.78125 0.259,0.303 0.4375,0.52625 0.4375,0.65625 0.043,0.173 0.0235,0.47325 -0.0625,0.90625 0.086,0.13 0.2595,0.2255 0.5625,0.3125 l 0.0625,0.125 0.0312,-0.0625 c 0.043,-0.173 0.1395,-0.677 0.3125,-1.5 0.087,-0.736 0.2645,-1.21375 0.4375,-1.34375 l 0.5625,0.0312 0.25,-0.125 c 0.043,-0.13 0.17075,-0.437 0.34375,-1 0.087,-0.303 0.38725,-0.42575 0.90625,-0.46875 0.13,-0.13 0.207,-0.3025 0.25,-0.5625 0.086,-0.043 0.40575,-0.043 0.96875,0 0.606,0.087 1.02125,0.0352 1.28125,-0.0937 0.087,-0.086 0.1445,-0.17075 0.1875,-0.34375 0.086,-0.217 0.11325,-0.48425 0.15625,-0.65625 l 0,-0.34375 c -0.043,-0.303 -0.0625,-0.60325 -0.0625,-0.90625 0.13,-0.39 0.207,-0.73325 0.25,-0.90625 0.043,-0.433 0.0937,-0.69025 0.0937,-0.90625 0.086,-0.086 0.2205,-0.13775 0.4375,-0.0937 0.26,0.52 0.34375,1.062 0.34375,1.625 l -0.28125,0.34375 c -0.043,0.13 -0.0235,0.39225 0.0625,0.78125 0.087,0.433 0.21375,0.6435 0.34375,0.6875 l 0.125,-0.0937 c 0.13,-0.216 0.39725,-0.82825 0.65625,-1.78125 0.26,-0.476 0.69375,-0.898 1.34375,-1.375 0.043,-0.086 0.082,-0.31025 0.125,-0.65625 l 0.125,-0.0937 c 0.13,0.043 0.2255,0.1005 0.3125,0.1875 0.043,0.043 0.13175,0.16975 0.21875,0.34375 0.52,0.476 0.99775,0.4185 1.34375,-0.1875 0.086,-0.13 0.15125,-0.3025 0.28125,-0.5625 0.043,-0.216 0.4565,-0.43525 1.0625,-0.78125 0.173,-0.217 0.27625,-0.47325 0.40625,-0.90625 l 1.21875,0 c 0.043,-0.043 0.19425,-0.47775 0.28125,-1.34375 0.13,-0.866 0.21875,-1.42075 0.21875,-1.59375 -0.087,-0.13 -0.30425,-0.25675 -0.78125,-0.34375 -0.043,-0.173 -0.0507,-0.52 -0.0937,-1.125 0,-0.996 -0.0507,-1.5965 -0.0937,-1.8125 -0.173,-0.693 -0.26175,-1.20375 -0.21875,-1.59375 -0.216,0 -0.3945,-0.0693 -0.4375,-0.15625 0,-0.217 -0.0457,-0.45975 -0.21875,-0.71875 l 0.0937,-0.1875 0.4375,-0.125 0.0937,-0.125 c 0,-0.086 -0.153,-0.46325 -0.5,-1.15625 -0.303,-0.692 -0.37325,-1.235 -0.15625,-1.625 l -0.53125,0.0625 c -0.217,-0.303 -0.293,-0.653 -0.25,-1 0.043,-0.087 0.1395,-0.1825 0.3125,-0.3125 0.39,-0.39 1.02075,-0.697 1.84375,-1 0.866,-0.303 1.3885,-0.52725 1.5625,-0.65625 l 0.0937,0.0625 c 0,0.217 0.007,0.3515 0.0937,0.4375 0.086,0.043 0.19425,0.0743 0.28125,0.0312 0.087,0 0.245,-0.16475 0.375,-0.46875 0.173,-0.346 0.37775,-0.60825 0.59375,-0.78125 l 0.0312,-0.0312 c 0.043,0 0.472,-0.22725 1.25,-0.53125 0.953,-0.433 1.66075,-0.79075 2.09375,-1.09375 l 0.65625,-0.5 c 0.13,-0.13 0.3455,-0.39125 0.5625,-0.78125 0.043,-0.043 0.3705,-0.0507 1.0625,-0.0937 0.217,-0.043 0.3895,-0.312 0.5625,-0.875 l -0.0625,-0.0937 c -0.26,-0.13 -0.7395,-0.201 -1.5625,-0.375 -0.043,-0.346 -0.1445,-0.577 -0.1875,-0.75 l -0.125,-0.0625 c -0.477,-0.043 -1.08925,-0.0625 -1.78125,-0.0625 -0.173,0 -0.366,-0.0642 -0.625,-0.28125 -0.303,-0.26 -0.48325,-0.40625 -0.65625,-0.40625 l -1.531,-0.219 c -0.086,0 -0.21375,-0.12 -0.34375,-0.25 -0.086,-0.563 -0.31025,-0.88175 -0.65625,-0.96875 -0.216,-0.173 -0.36325,-0.4995 -0.40625,-1.0625 l 0.125,-0.0937 0.15625,0 0.125,-0.0312 c 0.087,-0.173 0.17475,-0.45875 0.21875,-0.71875 0.086,-0.216 0.279,-0.26275 0.625,-0.21875 l 0.0625,0.15625 c -0.043,0.086 0.0195,0.19425 0.0625,0.28125 0.26,0.043 0.42075,0.1395 0.59375,0.3125 l 0.0937,0 c 0.086,-0.13 0.1825,-0.35325 0.3125,-0.65625 l 0.125,0 0.15625,0.0625 0.15625,-0.0937 c 0.043,-0.347 0.10825,-0.539 0.28125,-0.625 0.13,-0.043 0.36,0.007 0.75,0.0937 0.173,0.173 0.29975,0.48 0.34375,1 0.476,0.13 0.7645,0.0402 0.9375,-0.21875 0.26,-0.52 0.4765,-0.75675 0.5625,-0.84375 0.13,-0.043 0.39225,-0.005 0.78125,0.125 0.043,0.087 0.0548,0.24775 -0.0312,0.59375 -0.043,0.303 -0.0743,0.50775 -0.0312,0.59375 l 0.125,0.15625 0.15625,0 c 0.129,-0.086 0.27625,-0.437 0.40625,-1 l 0.125,-0.0937 0.125,0.0937 c 0.086,0.086 0.11825,0.3805 0.0312,0.8125 l 0.15625,0.0937 c 0.087,0.216 0.087,0.4285 0,0.6875 0.087,0.087 0.19025,0.13175 0.40625,0.21875 0.13,-0.043 0.2645,-0.3365 0.4375,-0.8125 0.173,-0.476 0.28125,-0.79475 0.28125,-0.96875 l 0.15625,0 0.125,0.0937 0.125,-0.0312 0.0625,-0.4375 c 0.043,-0.173 0.0693,-0.30075 0.15625,-0.34375 0.26,-0.043 0.457,-0.0693 0.5,-0.15625 0,0 0.0195,-0.12775 0.0625,-0.34375 0,-0.347 0.0888,-0.64525 0.21875,-0.90625 -0.39,-0.346 -0.69025,-0.50775 -0.90625,-0.59375 -0.347,-0.13 -0.54575,-0.2305 -0.71875,-0.1875 -1.082,0.347 -1.739,0.39675 -2,0.0937 0.043,-0.347 0.043,-0.6385 0,-0.8125 -0.129,-0.217 -0.25275,-0.4325 -0.46875,-0.5625 -0.086,-0.086 -0.31025,-0.2205 -0.65625,-0.4375 -0.043,0 -0.0312,-0.0118 -0.0312,0.0312 -0.087,-0.086 -0.17475,-0.11325 -0.21875,-0.15625 -0.39,-0.173 -0.61325,-0.2695 -0.65625,-0.3125 l -0.0625,0 -0.0312,0.0312 c -0.087,0 -0.13175,0.0888 -0.21875,0.21875 -0.086,0.216 -0.17575,0.524 -0.21875,1 -0.043,0.13 -0.082,0.31925 -0.125,0.40625 l 0,0.15625 -0.125,0.125 -0.0625,0 c -0.043,0 -0.0625,0.0195 -0.0625,0.0625 l -0.0625,-0.0625 -0.125,-0.0312 0,-0.0937 c -0.043,-0.087 -0.0312,-0.15125 -0.0312,-0.28125 0,-0.086 -0.0195,-0.2255 -0.0625,-0.3125 l 0,-0.0937 c -0.043,0 -0.0312,0.0118 -0.0312,-0.0312 -0.086,-0.346 -0.29075,-0.64625 -0.59375,-0.90625 l -0.125,-0.0937 c -0.303,-0.173 -0.539,-0.36225 -0.625,-0.40625 -0.346,-0.086 -0.5585,-0.21375 -0.6875,-0.34375 -0.087,-0.043 -0.125,-0.0185 -0.125,-0.0625 -0.13,0.043 -0.19425,0.13175 -0.28125,0.21875 -0.086,0.303 -0.207,0.50775 -0.25,0.59375 -0.347,0.476 -0.6335,0.5725 -0.9375,0.3125 0,-0.13 -0.0235,-0.3025 0.0625,-0.5625 l -0.0312,-0.15625 c -0.173,-0.13 -0.53075,-0.206 -1.09375,-0.25 -0.52,-0.043 -0.80075,-0.13275 -0.84375,-0.21875 -0.086,-0.043 -0.086,-0.24775 0,-0.59375 l -1.969,-0.6564 c -0.173,-0.043 -0.288,0.0397 -0.375,0.34375 l -0.125,0.625 c -0.26,0 -0.44425,-0.14625 -0.53125,-0.40625 -0.173,-0.346 -0.25675,-0.5195 -0.34375,-0.5625 l -0.34375,0.0312 -0.125,-0.0625 c -0.217,-0.52 -0.73275,-1.101 -1.46875,-1.75 0.477,-0.26 0.6875,-0.54075 0.6875,-0.84375 -0.043,-0.216 -0.0937,-0.37 -0.0937,-0.5 0.13,-0.087 0.42925,-0.17475 0.90625,-0.21875 0.043,-0.13 0.0353,-0.322 -0.0937,-0.625 -0.52,0.087 -0.909,0.0402 -1.125,-0.21875 -0.087,-0.26 -0.125,-0.49 -0.125,-0.75 l -1.34375,0.0312 -0.78125,-0.0312 c -0.563,-0.087 -0.87,-0.13675 -1,-0.0937 -0.217,0.043 -0.45975,0.279 -0.71875,0.625 -0.52,0.822 -0.60875,1.60775 -0.21875,2.34375 0.433,0.779 0.6055,1.31425 0.5625,1.53125 l -0.3125,-0.0625 c -0.303,-0.303 -0.46475,-0.58375 -0.59375,-0.84375 -0.216,-0.433 -0.34375,-0.625 -0.34375,-0.625 -0.303,-0.346 -0.927,-0.31975 -1.75,0.15625 -0.216,0.13 -0.38275,0.2695 -0.46875,0.3125 -1.126,0.606 -1.98775,0.8995 -2.59375,0.8125 l 0,-0.0312 c 0.519,-0.39 1.40025,-0.8795 2.65625,-1.3125 0.173,-0.13 0.4665,-0.29075 0.8125,-0.59375 0.043,-0.13 0.0743,-0.31425 0.0312,-0.53125 -0.086,-0.26 -0.125,-0.4765 -0.125,-0.5625 0.043,-0.39 0.0507,-0.658 0.0937,-0.875 0,-0.52 -0.23,-0.75 -0.75,-0.75 -0.477,0.129 -0.85325,0.16125 -1.15625,0.0312 -0.259,-0.433 -0.56025,-0.61725 -0.90625,-0.53125 -0.217,0 -0.48425,0.18925 -0.65625,0.40625 -0.217,0.303 -0.4665,0.4765 -0.8125,0.5625 -0.259,0.043 -0.3935,0.0625 -0.4375,0.0625 -0.303,-0.043 -0.62175,-0.20375 -0.96875,-0.59375 -0.347,-0.39 -0.7155,-0.59375 -1.0625,-0.59375 -0.086,0 -0.20875,0.0195 -0.46875,0.0625 -0.346,0.086 -0.62,0.13275 -0.75,0.21875 -0.259,0.217 -0.48325,0.3945 -0.65625,0.4375 -0.043,0.043 -0.082,0.0507 -0.125,0.0937 l 0,0.0312 c 0.043,0.086 0.312,0.8455 0.875,2.1875 l 0.78125,0.125 c 0.043,0.433 -0.0145,0.71375 -0.1875,0.84375 -0.216,-0.043 -0.42075,0.0263 -0.59375,0.15625 -0.087,0.13 -0.125,0.3025 -0.125,0.5625 l -0.0937,0.0625 c -0.13,0 -0.25175,0.0693 -0.46875,0.15625 -0.216,0.043 -0.34375,0.1015 -0.34375,0.1875 L 340,178.31249 c -0.173,0.086 -0.47325,0.0675 -0.90625,-0.0625 -0.087,-0.086 -0.164,-0.15625 -0.25,-0.15625 -0.043,-0.13 -0.13275,-0.1445 -0.21875,-0.1875 l -0.125,-0.15625 c -0.433,-0.303 -0.7255,-0.457 -0.8125,-0.5 -0.39,-0.173 -0.663,-0.22375 -0.75,-0.0937 -0.13,0.26 -0.2255,0.534 -0.3125,0.75 -0.086,0.173 -0.2975,0.404 -0.6875,0.75 -0.346,0.26 -0.5195,0.4375 -0.5625,0.4375 -0.347,0.086 -0.735,-0.028 -1.125,-0.375 -0.39,-0.303 -0.69025,-0.3995 -0.90625,-0.3125 -0.13,0.086 -0.15625,0.2975 -0.15625,0.6875 0.043,0.39 -0.0263,0.6445 -0.15625,0.6875 -0.086,0.043 -0.32875,0.043 -0.71875,0 l -0.28125,-0.15625 c -0.173,-1.212 -0.23825,-1.86325 -0.28125,-1.90625 -0.953,-1.169 -1.42575,-1.92075 -1.46875,-2.09375 0,-0.13 -0.0118,-0.58325 0.0312,-1.40625 l -0.0312,-0.1875 c -0.043,-0.0861 -0.15125,-0.1133 -0.28125,-0.1563 -0.346,0.52 -0.736,0.8075 -1.125,0.9375 -0.823,-0.13 -1.25775,-0.25275 -1.34375,-0.46875 0,-0.217 0.0118,-0.40125 -0.0312,-0.53125 -0.216,-0.173 -0.40125,-0.23825 -0.53125,-0.28125 0.086,-0.476 0.086,-0.745 0,-0.875 l -0.28125,-0.1875 -0.125,0.0625 -0.375,0.5 -0.125,0.0625 -0.375,-0.0937 c 0,0.043 -0.0457,0.17075 -0.21875,0.34375 -0.173,0.173 -0.21875,0.31925 -0.21875,0.40625 0.173,0.26 0.2315,0.46475 0.1875,0.59375 -0.044,0.129 -0.13275,0.17575 -0.21875,0.21875 -0.606,-0.303 -1.0145,-0.4375 -1.1875,-0.4375 l -0.125,0.0937 c -0.043,0.086 -0.082,0.17575 -0.125,0.21875 -0.259,0.476 -0.4325,0.81525 -0.5625,1.03125 -0.173,0.173 -0.2695,0.288 -0.3125,0.375 -0.216,0.52 -0.3945,0.788 -0.4375,0.875 -0.606,0.303 -0.991,0.46875 -1.25,0.46875 l -0.46875,1.125 c 0,0.043 0.16475,0.22725 0.46875,0.53125 -0.086,0.909 -0.3025,1.50275 -0.5625,1.71875 -0.13,0.087 -0.33375,0.15625 -0.59375,0.15625 -0.303,-0.043 -0.4765,-0.1395 -0.5625,-0.3125 0.043,-0.13 -0.0195,-0.2265 -0.0625,-0.3125 -0.13,-0.086 -0.322,0.0213 -0.625,0.28125 -0.346,0.173 -0.58975,0.20425 -0.71875,0.0312 l -0.0312,-0.125 0.0937,-0.125 c 0,-0.087 -0.0195,-0.19425 -0.0625,-0.28125 l -0.46875,-0.21875 -0.125,0.0625 c -0.26,0.52 -0.77575,0.87 -1.46875,1 -0.693,0.13 -1.04975,0.245 -1.09375,0.375 -0.216,0.477 -0.42075,0.79575 -0.59375,0.96875 l -0.21875,0.125 c -0.13,0.26 -0.207,0.38175 -0.25,0.46875 -0.13,0.173 -0.283,0.2695 -0.5,0.3125 -0.303,-0.043 -0.456,-0.18925 -0.5,-0.40625 -0.173,-1.125 -0.39725,-1.81425 -0.65625,-2.03125 l -0.9688,-0.5937 c -0.736,-0.26 -1.279,-0.4325 -1.625,-0.5625 -0.303,-0.13 -0.52725,-0.2695 -0.65625,-0.3125 l -0.8125,-0.0937 c -0.173,0.043 -0.33875,0.0625 -0.46875,0.0625 -0.303,0 -0.539,0.038 -0.625,0.125 0.043,0.52 0.005,0.87 -0.125,1 -0.173,0.13 -0.39725,0.19925 -0.65625,0.15625 -0.26,-0.043 -0.48325,-0.0937 -0.65625,-0.0937 -0.39,0.043 -0.67075,0.0548 -0.84375,-0.0312 -0.476,-0.13 -0.822,-0.3075 -1.125,-0.4375 l -0.28125,0 c -0.346,0.173 -0.46875,0.70825 -0.46875,1.53125 0.043,0.476 0.081,1.0775 0.125,1.8125 -0.043,0.606 -0.158,0.98325 -0.375,1.15625 -0.173,0.13 -0.36325,0.19425 -0.40625,0.28125 -0.39,0.26 -0.65025,0.50275 -0.78125,0.71875 l -0.125,0.3125 c -0.043,0.173 -0.0702,0.5055 -0.15625,0.9375 -0.087,0.217 -0.16975,0.5855 -0.34375,1.0625 -0.563,0.303 -1.0145,0.44925 -1.1875,0.40625 -0.346,-0.26 -0.812,-0.063 -1.375,0.5 -0.303,0.043 -0.52725,-0.0263 -0.65625,-0.15625 l -0.15625,0 c -0.043,0.26 -0.1825,0.495 -0.3125,0.625 l -0.1875,-0.0937 -0.0312,-0.0937 c -0.173,-0.433 -0.30075,-0.6445 -0.34375,-0.6875 -0.433,-0.303 -0.82975,-0.42975 -1.21875,-0.34375 -0.216,0.087 -0.33975,0.0753 -0.46875,0.0312 -0.693,-0.173 -1.082,-0.28125 -1.125,-0.28125 -0.173,0.043 -0.31925,0.0937 -0.40625,0.0937 -0.39,-0.043 -0.62675,-0.043 -0.84375,0 -0.217,0.086 -0.529,0.2595 -0.875,0.5625 -0.346,0.26 -0.5955,0.4765 -0.8125,0.5625 -0.606,-0.043 -1.0145,-0.0937 -1.1875,-0.0937 -0.346,0.086 -0.60825,0.11825 -0.78125,0.0312 -0.26,-0.216 -0.3945,-0.331 -0.4375,-0.375 -0.606,-0.346 -1.06025,-0.5195 -1.40625,-0.5625 -0.346,0 -0.62,-0.0195 -0.75,-0.0625 -0.347,-0.216 -0.5955,-0.28125 -0.8125,-0.28125 -0.433,0.13 -0.8415,0.15625 -1.1875,0.15625 l -0.125,0.0937 -0.125,0 c -0.26,-0.26 -0.50275,-0.336 -0.71875,-0.25 -0.13,0.13 -0.39225,0.25775 -0.78125,0.34375 -0.346,0.13 -0.63175,0.11825 -0.71875,0.0312 -0.173,-0.086 -0.288,-0.29075 -0.375,-0.59375 l -0.21875,0 c -0.086,0.173 -0.27125,0.25 -0.53125,0.25 -0.086,-0.043 -0.24,-0.12675 -0.5,-0.34375 -0.173,-0.086 -0.29575,-0.13675 -0.46875,-0.0937 -0.217,0.043 -0.36325,0.0937 -0.40625,0.0937 -0.217,-0.129 -0.4325,-0.17575 -0.5625,-0.21875 -0.433,0.303 -0.7205,0.42475 -0.9375,0.46875 l -0.31255,0.0937 c -0.216,0.086 -0.36225,0.2645 -0.40625,0.4375 -0.129,0.26 -0.206,0.42575 -0.25,0.46875 -0.779,0.26 -1.21375,0.52225 -1.34375,0.78125 l -0.0312,0.3125 c 0.043,0.086 0.12,0.17075 0.25,0.34375 0.086,0.173 0.0743,0.33775 0.0312,0.46875 -0.043,0.563 -0.15125,1.07875 -0.28125,1.46875 -0.043,0.087 -0.1445,0.163 -0.1875,0.25 -0.303,0.087 -0.46375,0.1445 -0.59375,0.1875 -0.649,0.649 -1,1.03125 -1,1.03125 l -0.0937,0.21875 c 0.043,0.13 0.2155,0.31925 0.5625,0.40625 0.346,0.13 0.582,0.25775 0.625,0.34375 l 0,0.84375 c 0,0.606 -0.0575,0.96375 -0.1875,1.09375 -0.13,0.13 -0.46825,0.207 -1.03125,0.25 -0.39,-0.043 -0.97,0.007 -1.75,0.0937 -0.173,-0.477 -0.37775,-0.78125 -0.59375,-0.78125 -0.953,-0.217 -1.5535,-0.1155 -1.8125,0.1875 -0.087,0.26 -0.1875,0.67525 -0.1875,1.28125 -0.086,0.26 -0.15125,0.4765 -0.28125,0.5625 -0.909,0.26 -1.491,0.44425 -1.75,0.53125 -0.303,0.087 -0.5145,0.207 -0.6875,0.25 l -1.03125,0.5625 c -0.13,0.303 -0.3075,0.54575 -0.4375,0.71875 -0.216,0.303 -0.529,0.3175 -0.875,0.1875 -0.217,-0.433 -0.37,-0.6825 -0.5,-0.8125 l -0.59375,-0.0937 c -0.217,0.043 -0.41575,0.2155 -0.71875,0.5625 -0.346,0.303 -0.48725,0.5 -0.53125,0.5 -0.043,0.043 -0.12775,0.14625 -0.34375,0.40625 -0.217,0.216 -0.3945,0.3945 -0.4375,0.4375 l -1.0625,-0.0625 c -0.0921,0.1764 -0.3789,0.50158 -0.71875,0.96875 -0.13,0.087 -0.32875,0.1875 -0.71875,0.1875 -0.476,0.044 -0.789,0.082 -0.875,0.125 -0.086,0.043 -0.11325,0.0457 -0.15625,0.21875 -0.043,0.173 -0.0507,0.43525 -0.0937,0.78125 -0.043,0.216 -0.40075,0.61275 -1.09375,1.21875 -0.087,0.043 -0.2255,0.0625 -0.3125,0.0625 -0.173,-0.087 -0.288,-0.3355 -0.375,-0.8125 -0.13,-0.52 -0.2645,-0.82025 -0.4375,-0.90625 0.173,-0.52 0.212,-0.87675 0.125,-1.09375 -0.13,-0.26 -0.4615,-0.20925 -0.9375,0.0937 -0.39,0.26 -0.658,0.534 -0.875,0.75 -0.086,0.173 -0.25275,0.43525 -0.46875,0.78125 l -0.46875,0.59375 c 0,0.043 -0.317,0.2555 -0.75,0.6875 -0.347,0.303 -0.57025,0.56525 -0.65625,0.78125 -0.086,0.173 -0.13775,0.70325 -0.0937,1.65625 -0.217,0.649 -0.5815,1.33825 -1.1875,2.03125 0.086,0.39 0.55975,0.58875 1.46875,0.71875 l 0.0312,0.15625 c 0,0.043 -0.038,0.18925 -0.125,0.40625 0,0.129 0.082,0.19425 0.125,0.28125 l 0.0625,0.28125 c -0.086,0.173 -0.284,0.43425 -0.5,0.78125 0.086,0.129 0.13775,0.25775 0.0937,0.34375 z ", + "Kiev": "m 276.45,87.961 c -0.346,-0.303 -0.563,-0.433 -0.649,-0.433 -0.39,0.173 -0.649,0.216 -0.823,0.173 -0.26,-0.303 -0.476,-0.52 -0.649,-0.606 -0.043,-0.043 -0.086,-0.043 -0.13,-0.043 -0.13,0.26 -0.216,0.477 -0.26,0.693 -0.043,0.087 -0.043,0.39 -0.043,0.909 0,0.13 -0.043,0.433 -0.087,0.953 -0.086,0.693 -0.043,1.083 0,1.169 l 0.217,0.043 c 0.13,-0.087 0.216,-0.217 0.303,-0.347 l 0.13,-0.043 0.173,0.086 0.043,0.13 c -0.043,0.217 -0.173,0.52 -0.477,0.909 -0.303,0.39 -0.52,0.693 -0.52,0.953 0.086,0.217 0.433,0.433 0.953,0.563 0.086,0.173 0.13,0.52 0.13,1.125 0.043,0.606 0,1.039 -0.13,1.299 -0.173,0.563 -0.649,0.91 -1.299,0.996 l -0.173,0.216 v 0.173 c 0.13,0.086 0.477,0.216 0.909,0.433 v 0.13 c -0.39,0.173 -0.649,0.476 -0.866,0.866 0,0.13 0.086,0.39 0.303,0.779 0.173,0.347 0.259,0.606 0.173,0.823 -0.216,0.13 -0.39,0.26 -0.52,0.303 -0.13,0.216 -0.26,0.692 -0.346,1.342 -0.13,0.649 -0.173,1.126 -0.173,1.429 0.086,0.649 0.217,1.169 0.433,1.515 0.13,0.26 0.216,0.606 0.26,1.126 l -0.043,0.13 c -0.043,0 -0.043,0 -0.086,0 0.043,0.216 -0.087,0.52 -0.303,0.866 -0.173,0.173 -0.303,0.39 -0.39,0.563 l 6.148,0.52 -0.087,-0.217 c -0.043,-0.173 -0.043,-0.346 0.043,-0.433 0.433,-0.52 0.736,-0.649 0.909,-0.477 0.216,0.217 0.563,0.477 0.996,0.779 l 0.563,-0.043 0.996,0.866 0.043,0.606 -1.212,0.779 -0.259,-0.26 -0.433,0.216 v 0.52 l -0.477,0.39 -0.043,0.649 0.433,0.217 0.087,1.559 0.952,0.303 0.736,0.78 -0.173,0.303 0.433,0.606 -0.347,0.216 h -0.519 l -0.13,0.433 -0.563,0.736 c 0.086,0.347 0.043,0.52 -0.043,0.606 -0.26,0.086 -0.39,0.086 -0.476,-0.043 l -0.173,-0.476 h -0.433 l 0.043,0.952 -1.125,0.39 -0.52,-0.39 -0.346,0.087 -0.303,-0.347 -1.255,0.217 0.346,0.476 c 0.173,0.216 0.26,0.346 0.303,0.39 0.216,0.303 0.347,0.52 0.347,0.649 l 0.043,0.693 c 0.303,0.173 0.476,0.433 0.39,0.736 -0.086,0.433 -0.043,0.693 0.217,0.779 0.606,-0.346 0.952,-0.216 1.039,0.347 0.043,0.303 0.043,0.692 0.043,1.255 0.13,0.217 0.39,0.347 0.866,0.477 0.043,0.13 0,0.346 -0.13,0.649 0.086,0.216 0.303,0.476 0.692,0.779 0.087,0.13 0.173,0.433 0.217,0.909 0.173,0.216 0.476,0.303 0.953,0.173 l 0.086,0.087 c 0.043,0.086 0.043,0.216 0.043,0.476 0.043,0.433 0.347,0.649 0.953,0.606 0.736,-0.043 1.169,0.086 1.342,0.39 0.303,0.52 0.823,1.169 1.515,1.948 0.13,0.173 0.26,0.39 0.477,0.736 0.173,0.26 0.476,0.649 0.866,1.169 l 1.602,1.732 c 0.39,0.347 0.65,0.563 0.823,0.649 0.39,0.173 0.693,0.173 0.953,0 0.303,-0.216 0.476,-0.346 0.563,-0.346 0.043,0 0.26,0.043 0.563,0.13 0.217,0.13 0.433,0.433 0.736,0.909 0.346,0.303 0.779,0.52 1.212,0.563 0.217,0.043 0.52,0.086 0.996,0.086 0.173,0.043 0.477,0.13 0.909,0.26 0.303,0 0.476,-0.26 0.563,-0.822 0.086,-0.649 0.26,-1.126 0.433,-1.299 0.26,-0.303 0.779,-0.303 1.559,-0.043 0.216,0 0.52,-0.087 0.952,-0.26 0.217,0.043 0.563,0.173 0.996,0.39 0.13,0 0.303,0.043 0.606,0.043 0.13,0.043 0.217,0.087 0.26,0.173 0.129,0.26 -0.043,0.996 -0.606,2.165 0,0.043 0.086,0.39 0.26,1.082 0.13,-0.043 0.303,-0.043 0.39,0 0.086,0.087 0.173,0.303 0.26,0.693 0.043,0.303 0.216,0.52 0.52,0.649 0.043,0.173 0.087,0.433 0.13,0.823 0.043,0.13 0.173,0.26 0.39,0.433 0.043,0.086 0.13,0.173 0.217,0.346 h 0.173 c 0.086,-0.043 0.13,-0.26 0.173,-0.692 0.043,-0.39 0.216,-0.563 0.433,-0.606 0.216,0.043 0.39,0.216 0.606,0.477 0.216,0.13 0.476,0.086 0.649,-0.043 0.347,-0.173 0.52,-0.476 0.563,-0.909 0,-0.477 0.043,-0.779 0.13,-0.823 0.433,-0.13 0.649,0.086 0.649,0.563 -0.043,0.693 -0.043,1.082 0,1.125 0.043,0.043 0.346,0.13 0.909,0.217 0.173,0.043 0.909,0.173 2.208,0.433 0.173,-0.173 0.477,-0.649 0.866,-1.515 0.043,-0.043 0.26,-0.26 0.606,-0.606 0.13,-0.13 0.13,-0.433 0.043,-0.996 0.043,-0.087 0.173,-0.303 0.476,-0.563 0.347,-0.433 0.606,-0.909 0.823,-1.385 0.086,-0.26 0.086,-0.65 0,-1.169 -0.086,-0.519 -0.086,-0.822 -0.086,-0.909 0.086,-0.043 0.52,-0.173 1.299,-0.346 0.52,-0.13 0.736,-0.39 0.779,-0.779 -0.13,-0.13 -0.26,-0.39 -0.346,-0.823 l -0.087,-0.606 c 0,-0.26 0,-0.433 -0.043,-0.563 -0.13,-0.346 -0.217,-0.649 -0.303,-0.823 v -0.173 c 0.043,-0.217 0.39,-0.477 0.953,-0.736 0.476,-0.216 0.779,-0.736 0.866,-1.472 l 0.13,-0.13 c 0.26,0.347 0.477,0.477 0.736,0.433 0.129,-0.043 0.39,-0.216 0.736,-0.476 0.866,-0.78 1.125,-1.342 0.822,-1.775 -0.346,-0.433 -0.519,-0.693 -0.563,-0.866 -0.087,-0.39 0,-0.78 0.346,-1.169 0.26,-0.347 0.606,-0.563 0.996,-0.606 0.216,-0.043 0.52,0.087 0.909,0.346 0.303,0.173 0.476,0.26 0.563,0.26 h 0.043 c 0.043,-0.087 0.217,-0.303 0.477,-0.65 0.26,-0.39 0.39,-0.606 0.433,-0.692 0.129,-0.26 0,-0.477 -0.303,-0.606 0,-0.26 0.216,-0.52 0.692,-0.779 0.043,-0.043 0.13,-0.39 0.26,-0.996 l -1.732,-2.555 0.043,-0.173 c 0.216,-0.26 0.477,-0.52 0.779,-0.692 0.043,-0.173 0.043,-0.26 0,-0.39 -0.173,-0.129 -0.433,-0.173 -0.736,-0.129 -0.39,0.086 -0.649,0.129 -0.693,0.129 -0.216,-0.043 -0.563,-0.303 -0.996,-0.866 -0.043,-0.173 -0.043,-0.52 0.043,-1.039 -0.173,-0.216 -0.563,-0.563 -1.256,-0.909 0,-0.217 0.13,-0.476 0.346,-0.823 0.173,-0.346 0.346,-0.52 0.52,-0.563 0.086,0 0.259,0 0.519,0.087 0.26,0.043 0.39,0 0.477,-0.13 0.086,-0.13 0.13,-0.347 0.173,-0.693 h 0.173 l 0.13,-0.043 c 0,-0.173 -0.13,-0.563 -0.433,-1.125 -0.043,-0.086 -0.347,-0.13 -0.953,-0.13 -0.606,0.043 -1.039,0 -1.169,-0.043 -0.26,-0.086 -0.477,-0.26 -0.649,-0.52 -0.13,-0.303 -0.26,-0.563 -0.39,-0.736 l -0.52,-0.693 c -0.563,-0.216 -0.952,-0.476 -1.169,-0.779 -0.086,-0.26 -0.173,-0.433 -0.26,-0.52 -0.173,-0.087 -0.52,-0.087 -1.039,0.043 -0.477,0.087 -0.779,0.173 -0.866,0.303 0,0.433 -0.043,0.693 -0.13,0.823 l -0.217,0.173 c -0.13,0.13 -0.086,0.346 0.043,0.606 l -0.043,0.173 c -0.13,0.043 -0.303,0.13 -0.52,0.216 -0.13,0.303 -0.303,0.563 -0.52,0.779 -0.173,0.043 -0.476,0.087 -0.866,0 -0.477,-0.043 -0.823,-0.086 -0.996,0 -0.13,0 -0.26,0.13 -0.433,0.303 -0.129,0.26 -0.26,0.39 -0.303,0.39 -0.303,0.043 -0.52,0.043 -0.693,0.13 -0.173,0.13 -0.346,0.39 -0.563,0.693 -0.086,0.086 -0.259,0.086 -0.476,0.043 -0.216,-0.043 -0.39,-0.043 -0.433,-0.043 -0.216,0.26 -0.433,0.39 -0.606,0.433 -0.39,-0.043 -0.649,-0.086 -0.779,-0.13 -0.346,-0.086 -0.606,-0.173 -0.823,-0.216 -0.476,-0.13 -0.736,-0.13 -0.779,0 -0.563,0.649 -1.039,0.909 -1.429,0.779 -0.217,-0.086 -0.39,-0.173 -0.477,-0.216 -0.433,-0.13 -0.693,-0.217 -0.909,-0.26 -0.433,-0.217 -0.779,-0.303 -0.996,-0.39 l -0.303,0.303 c -0.39,0.26 -0.649,0.303 -0.866,0.087 -0.303,-0.303 -0.477,-0.433 -0.563,-0.433 -0.173,0.13 -0.346,0.173 -0.477,0.13 -0.389,-0.216 -0.606,-0.476 -0.692,-0.779 0.13,-0.606 0.13,-0.953 0.086,-1.083 l -0.13,-0.086 c -0.26,-0.087 -0.563,-0.043 -0.779,0.173 -0.173,0 -0.26,0 -0.346,-0.086 -0.693,-0.736 -1.083,-1.125 -1.256,-1.255 -0.13,-0.347 -0.043,-0.649 0.173,-0.909 l 0.13,-0.043 c 0.216,0.086 0.346,0.086 0.476,0.043 0.087,-0.087 0.173,-0.217 0.26,-0.39 0.217,-0.433 0.173,-1.083 -0.043,-1.905 -0.087,-0.39 -0.26,-0.736 -0.563,-0.996 -0.606,-0.433 -0.953,-0.736 -1.039,-0.866 0.086,-0.39 0.13,-0.649 0.086,-0.736 -0.043,0 -0.39,-0.043 -1.039,0 -0.39,-0.043 -0.52,-0.26 -0.433,-0.736 0.043,-0.13 0.13,-0.346 0.26,-0.606 l -0.52,-0.173 c -0.086,-0.043 -0.13,-0.173 -0.13,-0.26 0.043,-0.13 0.086,-0.26 0.043,-0.303 -0.043,-0.173 -0.303,-0.26 -0.649,-0.216 -0.26,0.216 -0.476,0.39 -0.606,0.433 -0.26,0.173 -0.736,0.173 -1.429,0.13 -0.779,-0.13 -1.212,-0.13 -1.385,-0.13 -0.13,0.043 -0.347,0.173 -0.606,0.39 -0.26,0.26 -0.433,0.39 -0.606,0.476 -0.866,-0.736 -1.429,-0.909 -1.775,-0.563 -0.086,0.52 -0.303,0.822 -0.649,0.822 -0.173,-0.043 -0.346,-0.216 -0.563,-0.52 -0.173,-0.346 -0.39,-0.563 -0.606,-0.649 -0.216,-0.086 -0.52,-0.043 -0.909,0.13 -0.346,0.173 -0.606,0.217 -0.823,0.13 -0.043,-0.043 -0.086,-0.13 -0.13,-0.216 0,-0.043 0.173,-0.433 0.563,-1.169 0.086,-0.173 0.173,-0.39 0.303,-0.606 0.13,-0.433 0.26,-0.909 0.346,-1.472 0.086,-0.346 0.086,-0.52 0.086,-0.563 -0.043,-0.173 -0.216,-0.303 -0.433,-0.477 -0.606,-0.39 -0.909,-0.606 -0.996,-0.649 -1.342,-0.303 -2.078,-0.606 -2.294,-0.953 -0.13,-0.216 -0.13,-0.779 0.086,-1.645 0.173,-0.909 0.216,-1.602 0.043,-2.035 -0.04,-0.176 -0.3,-0.479 -0.733,-0.955 m -8.4,-16.973 c -0.043,-0.649 -0.043,-1.039 -0.086,-1.169 -0.043,-0.086 -0.563,-0.346 -1.472,-0.779 -0.39,-0.173 -0.823,-0.52 -1.256,-1.039 -0.173,-0.173 -0.26,-0.26 -0.303,-0.347 -0.346,-0.52 -0.563,-0.822 -0.692,-0.996 -0.606,-0.606 -1.429,-0.823 -2.511,-0.736 -0.606,0.13 -1.083,0.173 -1.386,0.173 -1.212,-0.086 -2.078,-0.043 -2.684,0.043 -0.433,0.043 -0.78,0.173 -1.083,0.476 -0.347,0.347 -0.649,0.649 -0.866,0.909 l -0.13,0.043 c -0.086,-0.086 -0.173,-0.216 -0.259,-0.346 -0.043,-0.217 -0.13,-0.303 -0.26,-0.39 -0.347,0 -0.65,0.216 -0.866,0.649 -0.303,0.52 -0.52,0.822 -0.606,0.866 -0.173,0.086 -0.39,0.13 -0.563,0 -0.303,-0.13 -0.477,-0.216 -0.649,-0.216 -0.26,-0.043 -0.433,-0.043 -0.563,-0.043 -0.52,0.13 -0.866,0.173 -1.083,0.13 -0.433,0 -0.649,-0.216 -0.822,-0.606 -0.043,-0.173 -0.087,-0.433 -0.13,-0.779 -0.303,-0.563 -0.433,-0.909 -0.433,-0.953 -0.303,-0.303 -0.996,-0.303 -2.078,0 -0.477,0.086 -0.736,0.173 -0.78,0.173 -0.173,0.13 -0.303,0.26 -0.39,0.476 -0.043,0.649 -0.216,1.039 -0.39,1.169 -0.26,0.173 -0.606,0.173 -1.125,0 -0.477,-0.13 -0.823,-0.173 -0.996,0 -0.086,0.043 -0.13,0.13 -0.173,0.216 -0.043,0.347 -0.13,0.606 -0.173,0.736 -0.303,1.125 -0.563,1.732 -0.823,1.818 -0.173,0.043 -0.433,-0.043 -0.823,-0.216 -0.433,-0.26 -0.779,-0.39 -1.039,-0.347 -0.606,0 -1.125,0.26 -1.515,0.736 -0.216,0.216 -0.347,0.39 -0.52,0.476 0.086,0.13 0.216,0.347 0.39,0.606 l 0.13,0.043 c 0.13,0 0.216,-0.086 0.39,-0.303 h 0.13 c 0.13,0.13 0.216,0.649 0.086,1.472 0.043,0.39 0.043,0.736 0.043,0.953 0,0.173 -0.086,0.433 -0.26,0.779 -0.303,0.649 -0.866,1.256 -1.688,1.819 -0.563,0.433 -1.126,0.606 -1.688,0.52 l -0.043,0.13 c 0.173,0.476 0.26,0.822 0.303,0.996 l 0.043,0.043 c 0.173,0.476 0.26,0.822 0.303,1.039 0,0.26 0.086,0.649 0.086,1.169 0.13,0.996 0.303,1.732 0.606,2.294 0.043,0 0.346,-0.433 0.823,-1.255 l 0.173,-0.086 c 0.39,0.086 0.823,0.303 1.299,0.692 0.52,0.433 0.866,0.78 0.953,1.126 0.086,0.086 0.13,0.303 0.173,0.606 l 0.086,0.087 c 0.996,0.26 1.602,0.649 1.732,1.169 0.043,0.216 0.043,0.39 0,0.52 -0.346,0.39 -0.606,0.736 -0.736,0.996 -0.087,0.26 -0.13,0.736 -0.043,1.299 0.13,0.909 0.173,1.385 0.13,1.472 -0.173,0 -0.303,-0.043 -0.52,-0.26 -0.216,-0.173 -0.347,-0.303 -0.433,-0.303 -0.346,-0.087 -0.823,-0.087 -1.299,-0.043 l -0.086,0.13 c 0,0.606 0.043,0.996 0.086,1.212 0.043,0.043 0.216,0.043 0.433,0 0.173,-0.043 0.303,0 0.39,0.086 0.13,0.216 0.346,0.563 0.693,0.953 0.649,1.039 1.039,1.602 1.168,1.732 0.13,0.216 0.39,0.52 0.78,0.866 0.043,0.087 0.043,0.26 0,0.477 l -0.087,0.563 c -0.346,1.169 -0.476,2.122 -0.563,2.858 l 0.086,0.13 h 0.173 c 1.299,-0.217 2.035,-0.13 2.251,0.346 0.043,0.476 0.13,0.823 0.217,1.083 0,0.13 0.086,0.52 0.303,1.212 0.173,0.563 0.173,0.996 -0.043,1.255 -0.173,0.173 -0.606,0.39 -1.299,0.736 -0.043,0 -0.173,0.303 -0.477,0.866 -0.433,0.606 -0.779,1.083 -0.996,1.385 -0.216,0.563 -0.39,0.953 -0.52,1.212 0,0.13 0.173,0.303 0.476,0.563 0.433,0.26 0.649,0.433 0.693,0.52 -0.303,0.996 -0.52,1.559 -0.649,1.732 -0.347,-0.086 -0.563,-0.043 -0.693,0.086 -0.086,0.303 -0.086,0.52 0,0.693 l 0.693,0.26 c 0.216,0.303 0.173,0.779 -0.043,1.385 -0.173,0.347 -0.303,0.563 -0.433,0.693 -0.173,0 -0.433,-0.043 -0.91,-0.216 l -0.129,0.13 -0.087,0.303 0.087,0.13 0.779,0.346 v 0.13 c -0.173,0.303 -0.303,0.476 -0.346,0.476 l -0.866,0.087 c -0.26,0.086 -0.303,0.346 -0.13,0.736 0.173,0.13 0.346,0.173 0.476,0.13 l 0.736,-0.216 c 0.129,-0.043 0.346,-0.13 0.563,-0.26 l 0.303,-0.13 c 0.26,-0.043 0.649,-0.043 1.255,-0.043 0.173,0 0.477,0.216 0.823,0.693 0.347,0.433 0.52,0.779 0.563,0.996 -0.086,0.563 -0.086,0.996 -0.043,1.256 0.13,0.13 0.303,0.216 0.606,0.346 -0.217,0.606 -0.26,1.039 -0.217,1.299 l 0.043,0.13 c 0.086,0.043 0.52,0.043 1.255,0 0.217,0.173 0.563,0.779 1.039,1.862 0.173,0.13 0.39,0.173 0.52,0.173 l 0.26,0.173 v 0.13 c -0.13,0.173 -0.26,0.346 -0.303,0.52 -0.043,0.476 -0.043,0.823 0,1.082 0.043,0.433 0.043,0.78 0.043,0.996 0,0.26 0,0.649 -0.043,1.125 l 0.043,0.13 c 0.13,0.303 0.433,0.563 0.952,0.779 l 0.13,0.26 c 0,0.086 -0.043,0.216 -0.217,0.433 -0.13,0.217 -0.13,0.433 -0.043,0.649 0.087,0.087 0.347,0.173 0.693,0.217 0,0.043 -0.043,0.216 -0.086,0.563 -0.13,0.129 -0.39,0.259 -0.909,0.476 -0.52,0.173 -0.823,0.216 -0.909,0.173 -0.26,0.086 -0.39,0.26 -0.39,0.476 0.043,0.26 0.217,1.083 0.563,2.468 -0.216,0.173 -0.433,0.303 -0.476,0.347 -0.087,0.303 0.563,1.559 2.035,3.723 -0.043,0.52 -0.347,0.953 -0.996,1.299 -0.693,0.303 -1.083,0.52 -1.212,0.649 -0.086,0.13 -0.13,0.39 -0.13,0.649 -0.086,0.13 -0.13,0.216 -0.173,0.216 -0.26,0.26 -0.39,0.39 -0.433,0.433 l -0.13,0.13 -0.087,0.043 -0.606,0.217 c -0.216,0.216 -0.346,0.346 -0.39,0.39 -0.563,0.26 -0.953,0.433 -1.255,0.606 -0.477,0.39 -0.866,0.649 -1.04,0.823 -0.13,0.043 -0.303,0.086 -0.433,0.043 -0.173,-0.087 -0.303,-0.087 -0.389,-0.087 -0.087,0.087 -0.13,0.26 -0.173,0.52 l -0.216,0.217 c -0.303,-0.087 -0.563,-0.087 -0.693,-0.087 -0.26,0.217 -0.477,0.347 -0.606,0.39 0,0.26 0.043,0.52 0.26,0.78 0.173,0.26 0.216,0.476 0.26,0.606 0.043,0.649 -0.217,1.342 -0.736,2.035 -0.086,0.129 -0.173,0.303 -0.346,0.476 0.563,0.043 0.909,0.043 1.039,0 0.216,0 0.52,-0.043 0.866,-0.13 0.217,0.216 0.217,0.736 -0.043,1.559 -0.433,0.086 -0.693,0.216 -0.866,0.346 -0.13,0.26 -0.173,0.52 -0.043,0.736 0.217,0.086 0.606,0.13 1.126,0.13 0.476,0.086 0.779,0.26 0.909,0.563 0,0.303 -0.086,0.649 -0.347,1.083 0,0.086 -0.086,0.173 -0.173,0.259 -0.173,0.606 -0.173,1.212 0,1.732 0.173,0.39 0.52,0.736 1.169,0.996 0.606,0.26 0.866,0.433 0.866,0.563 0.043,0.216 0,0.52 -0.043,0.909 l 0.043,0.13 c 0,0.086 -0.13,0.216 -0.433,0.303 -0.26,0.13 -0.39,0.26 -0.433,0.433 0,0.216 0.173,0.606 0.477,1.169 0.346,0.563 0.476,0.909 0.519,0.996 l -0.043,0.909 c -0.043,0.173 -0.52,0.52 -1.516,1.169 -0.303,0.173 -0.52,0.433 -0.563,0.779 -0.087,0.39 0,0.693 0.216,0.909 0.26,0.26 0.39,0.52 0.433,0.693 0.043,0.779 0.13,1.212 0.216,1.255 0.13,0.13 0.693,0.173 1.688,0.217 0.303,0.043 0.649,0.563 0.866,1.515 0.173,0.173 0.303,0.39 0.563,0.693 0.043,0.13 0.129,0.39 0.173,0.736 0.303,0.173 0.649,0.087 1.083,-0.13 l 0.346,0.043 c 0.13,0.086 0.217,0.346 0.26,0.736 0.433,0.347 0.823,0.39 1.126,0.173 0.173,0.043 0.303,0.217 0.346,0.476 l -0.086,0.13 c -0.26,0.043 -0.39,0.13 -0.52,0.26 -0.13,0.173 -0.13,0.303 0,0.433 0.693,0.736 1.299,1.083 1.732,1.039 0.476,-0.043 0.736,-0.043 0.822,-0.043 0.173,-0.043 0.433,-0.087 0.78,-0.173 0.216,0.043 0.519,0.086 0.909,0.216 0.087,-0.13 0.087,-0.346 0.043,-0.606 -0.086,-0.303 -0.086,-0.476 -0.043,-0.563 l 0.52,-0.52 c 0.346,-0.346 0.649,-0.866 0.822,-1.559 0.52,-0.216 0.866,-0.476 1.039,-0.866 0.26,-0.086 0.736,-0.043 1.429,0.087 l 0.346,-0.13 c 0.043,-0.043 0.173,-0.26 0.347,-0.606 0.129,-0.259 0.303,-0.39 0.519,-0.39 0.087,0.087 0.303,0.26 0.52,0.477 l 0.173,-0.043 0.043,-0.173 c 0.346,-0.216 0.736,-0.086 1.169,0.39 0.13,0 0.216,0 0.347,0 l 0.086,-0.13 c 0,-0.216 -0.13,-0.52 -0.476,-0.952 0,-0.347 0.129,-0.606 0.346,-0.736 l 0.649,-0.086 c 0.043,-0.13 0.13,-0.346 0.13,-0.693 0.13,-0.086 0.563,0.043 1.299,0.39 0,0.13 -0.13,0.39 -0.39,0.779 -0.216,0.303 -0.303,0.606 -0.216,0.823 0.086,0.13 0.952,0.39 2.641,0.693 1.861,0.303 2.857,0.52 3.117,0.649 0,0.563 -0.043,0.909 -0.086,1.039 0.173,0.13 0.476,0.13 0.866,0.043 l 0.087,-0.13 c 0.129,-0.649 0.346,-1.516 0.606,-2.641 0.13,-0.26 0.216,-0.477 0.216,-0.649 -0.043,-0.52 0,-0.953 0.086,-1.212 0.13,-0.346 0.26,-0.52 0.347,-0.563 0.433,-0.346 0.909,-0.173 1.429,0.433 0.087,0.13 0.216,0.39 0.347,0.736 0,0 0.519,-0.13 1.429,-0.476 0.086,-0.043 0.173,-0.216 0.216,-0.476 h 0.13 c 0.086,0.043 0.26,0.173 0.606,0.303 0.259,0.13 0.389,0.26 0.433,0.39 l 0.13,0.043 c 0.173,-0.043 0.477,-0.563 0.866,-1.516 l 0.129,0.043 0.52,0.52 c 0.129,0.13 0.346,0.086 0.606,-0.086 0.303,-0.217 0.52,-0.303 0.693,-0.173 0.13,0.087 0.303,0.39 0.563,0.823 0.173,0.476 0.347,0.693 0.477,0.736 0.216,-0.043 0.39,-0.173 0.563,-0.346 0.173,-0.216 0.303,-0.347 0.39,-0.347 0.476,0.173 0.866,0.087 1.125,-0.303 0.303,-0.39 0.52,-0.606 0.693,-0.606 0.043,0 0.173,0.173 0.303,0.433 0.129,0.043 0.346,0.043 0.649,-0.043 0.086,-0.043 0.173,-0.216 0.26,-0.433 0.086,-0.173 0.216,-0.26 0.476,-0.303 l 0.173,0.043 c 0.13,0.13 0.303,0.433 0.476,0.909 l 0.39,0.086 0.217,-0.086 c 0.13,-0.26 0.173,-0.563 0.173,-0.823 -0.043,-0.39 -0.043,-0.649 0,-0.823 0.303,-0.476 0.477,-0.779 0.563,-0.953 l 0.433,-0.909 c 0.086,-0.173 0.303,-0.26 0.649,-0.303 0.216,-0.217 0.476,-0.606 0.823,-1.126 0.433,-0.086 0.736,-0.433 1.039,-0.996 0.086,-0.13 0.303,-0.217 0.649,-0.347 0.26,-0.086 0.476,-0.259 0.606,-0.433 0.043,-0.087 0.13,-0.26 0.303,-0.606 l 0.26,-0.606 c 0.26,-0.563 0.433,-0.909 0.476,-0.996 0.13,-0.086 0.477,-0.26 1.039,-0.39 0.303,-0.086 0.39,-0.606 0.217,-1.515 -0.087,-0.13 -0.217,-0.216 -0.347,-0.216 -0.26,-0.043 -0.39,-0.043 -0.433,-0.087 -0.087,-0.086 -0.13,-0.26 -0.13,-0.563 -0.043,-0.303 0,-0.52 0.043,-0.606 0.13,-0.173 0.303,-0.346 0.563,-0.433 0.13,-0.476 0.39,-1.125 0.823,-1.905 0.043,-0.173 0.043,-0.303 -0.043,-0.52 -0.13,-0.217 -0.173,-0.347 -0.173,-0.39 0,-0.173 0.217,-0.477 0.52,-0.953 0.086,-0.173 0.216,-0.823 0.346,-1.948 0,-0.043 -0.173,-0.217 -0.52,-0.563 0,-0.216 0.086,-0.477 0.26,-0.779 0.216,-0.347 0.303,-0.606 0.346,-0.779 -0.39,-0.217 -0.606,-0.433 -0.692,-0.563 0.26,-0.303 0.433,-0.563 0.563,-0.736 l 0.216,-0.65 c 0.087,-0.303 0.39,-0.433 0.866,-0.433 0.52,-0.043 0.866,-0.087 0.909,-0.13 0.043,0 0.217,-0.173 0.433,-0.39 0.996,-0.866 1.775,-1.299 2.338,-1.299 0.26,-0.043 0.693,0 1.255,0 0.13,0 0.347,-0.087 0.649,-0.217 0.043,0 0.13,-0.043 0.217,-0.043 -0.173,-0.692 -0.26,-1.039 -0.26,-1.082 0.563,-1.169 0.736,-1.905 0.606,-2.165 -0.043,-0.086 -0.13,-0.13 -0.26,-0.173 -0.303,0 -0.476,-0.043 -0.606,-0.043 -0.433,-0.217 -0.779,-0.346 -0.996,-0.39 -0.433,0.173 -0.736,0.26 -0.952,0.26 -0.779,-0.26 -1.299,-0.26 -1.559,0.043 -0.173,0.173 -0.347,0.65 -0.433,1.299 -0.087,0.563 -0.26,0.822 -0.563,0.822 -0.433,-0.13 -0.736,-0.216 -0.909,-0.26 -0.476,0 -0.779,-0.043 -0.996,-0.086 -0.433,-0.043 -0.866,-0.26 -1.212,-0.563 -0.303,-0.476 -0.52,-0.779 -0.736,-0.909 -0.303,-0.086 -0.52,-0.13 -0.563,-0.13 -0.087,0 -0.26,0.13 -0.563,0.346 -0.26,0.173 -0.563,0.173 -0.953,0 -0.173,-0.086 -0.433,-0.303 -0.823,-0.649 l -1.602,-1.732 c -0.39,-0.52 -0.692,-0.909 -0.866,-1.169 -0.216,-0.346 -0.346,-0.563 -0.477,-0.736 -0.692,-0.779 -1.212,-1.429 -1.515,-1.948 -0.173,-0.303 -0.606,-0.433 -1.342,-0.39 -0.606,0.043 -0.909,-0.173 -0.953,-0.606 0,-0.26 0,-0.39 -0.043,-0.476 l -0.086,-0.087 c -0.477,0.13 -0.78,0.043 -0.953,-0.173 -0.043,-0.477 -0.13,-0.779 -0.217,-0.909 -0.39,-0.303 -0.606,-0.563 -0.692,-0.779 0.13,-0.303 0.173,-0.52 0.13,-0.649 -0.477,-0.13 -0.736,-0.26 -0.866,-0.477 0,-0.563 0,-0.952 -0.043,-1.255 -0.087,-0.563 -0.433,-0.693 -1.039,-0.347 -0.26,-0.086 -0.303,-0.346 -0.217,-0.779 0.086,-0.303 -0.086,-0.563 -0.39,-0.736 v 1.688 l -0.563,0.216 0.346,0.606 -0.303,0.433 0.346,0.39 0.173,0.346 -1.775,0.476 -1.342,-2.554 c 0.043,-0.52 -0.043,-0.779 -0.173,-0.779 -0.52,0 -0.693,-0.13 -0.52,-0.433 0.13,-0.26 0.13,-0.52 0.043,-0.736 -0.173,-0.433 -0.433,-0.606 -0.78,-0.563 -0.043,0 -0.216,-0.13 -0.563,-0.347 -0.087,-0.043 -0.13,-0.13 -0.13,-0.303 0,-0.087 0.043,-0.173 0.043,-0.217 l -0.086,-0.303 -1.212,0.26 -0.13,-0.606 0.39,-0.692 -1.342,-1.429 -0.259,0.173 -0.39,-0.303 0.13,-0.303 -0.606,-1.126 -0.433,-0.043 -0.303,-0.303 -1.819,0.26 -0.303,0.346 c 0.13,0.26 0.13,0.39 -0.043,0.433 l -0.736,-0.086 0.347,-1.472 0.086,-0.693 0.433,-0.693 c 0.13,-0.043 0.173,-0.173 0.086,-0.346 -0.216,-0.476 -0.216,-0.736 0,-0.823 0.39,-0.173 0.649,-0.476 0.866,-0.909 0.173,-0.303 0.303,-0.433 0.433,-0.433 0.173,0 0.389,0.13 0.649,0.433 l 0.216,-0.13 -0.13,-0.52 0.216,-0.303 -1.039,-1.342 5.672,0.477 c 0.087,-0.173 0.216,-0.39 0.39,-0.563 0.216,-0.346 0.347,-0.649 0.303,-0.866 -0.13,0 -0.216,0 -0.303,-0.043 -0.043,-0.173 -0.216,-0.346 -0.476,-0.39 -0.39,-0.173 -0.606,-0.216 -0.606,-0.26 -0.173,-0.606 -0.476,-0.953 -0.823,-1.039 -0.173,-0.217 -0.216,-0.347 -0.26,-0.347 -0.259,-0.13 -0.476,-0.26 -0.563,-0.303 -0.303,-0.217 -0.52,-0.52 -0.649,-0.953 -0.087,-0.217 -0.087,-0.52 0,-0.909 0,-0.217 -0.13,-0.606 -0.433,-1.169 -0.216,-0.52 -0.303,-0.909 -0.26,-1.212 0.26,-0.303 0.347,-0.52 0.303,-0.736 -0.087,-0.346 -0.13,-0.563 -0.087,-0.606 0.087,-0.909 0.303,-1.646 0.606,-2.165 0.043,-0.173 0.173,-0.39 0.39,-0.736 0.13,-0.26 0.216,-0.649 0.346,-1.212 0.043,-0.13 0.13,-0.26 0.346,-0.476 0,-0.173 -0.043,-0.563 -0.216,-1.039 l 0.347,0.043 c 0.303,-0.173 0.216,-0.866 -0.26,-1.992 0,-0.043 0.043,-0.173 0.173,-0.346 0.087,-0.173 0.13,-0.26 0.043,-0.39 -0.13,-0.13 -0.26,-0.216 -0.433,-0.26 -0.086,-0.086 -0.173,-0.346 -0.13,-0.779 -0.043,-0.433 -0.086,-0.736 -0.216,-0.909 -0.13,-0.26 -0.347,-0.39 -0.693,-0.39 -0.476,0.043 -0.779,0.043 -0.779,0 -0.26,-0.173 -0.433,-0.303 -0.52,-0.347 -0.649,-0.303 -1.299,-0.26 -1.862,0.173 -0.736,-0.043 -1.125,-0.216 -1.169,-0.476 0,-0.13 0.043,-0.217 0.086,-0.26 l 0.13,-0.087 c 0.606,0.043 1.039,-0.086 1.256,-0.303 0.303,-0.303 0.476,-0.477 0.52,-0.477 0.086,0 0.303,0.13 0.736,0.346 0.347,0.173 0.563,0.26 0.693,0.173 0.086,-0.043 0.13,-0.13 0.173,-0.303 -0.26,-0.347 -0.303,-0.649 -0.217,-0.823 0,0 0.217,0 0.736,0.086 0.39,0.043 0.693,0 0.822,-0.173 l 0.043,-0.13 c -0.086,-0.13 -0.216,-0.303 -0.346,-0.476 v -0.173 c 0.13,-0.086 0.216,-0.39 0.26,-0.952 0.043,-0.043 0.13,-0.13 0.26,-0.13 l 1.169,-0.173 c 0.086,0.043 0.26,0.043 0.433,0.086 l 0.173,-0.043 0.086,-0.129 c 0,-0.173 0,-0.433 0.043,-0.91 -0.043,-0.086 -0.173,-0.216 -0.476,-0.346 -0.26,-0.13 -0.476,-0.26 -0.52,-0.39 -0.087,-0.173 0,-0.433 0.216,-0.866 0.043,-0.043 0.217,-0.043 0.433,-0.043 0.13,-0.086 0.217,-0.39 0.173,-0.866 0.13,-0.26 0.346,-0.476 0.649,-0.649 0.173,-0.13 0.303,-0.173 0.433,-0.216 -0.043,-0.13 -0.087,-0.26 -0.13,-0.303 0.043,-0.216 0.259,-0.303 0.563,-0.216 0.39,0.043 0.649,0 0.779,-0.216 v -0.173 c -0.13,-0.173 -0.216,-0.476 -0.26,-0.823 -0.216,-0.26 -0.433,-0.433 -0.563,-0.476 -0.736,0.043 -1.256,0 -1.516,-0.216 -0.043,-0.087 -0.13,-0.303 -0.13,-0.606 -0.086,-0.303 -0.216,-0.52 -0.433,-0.606 -0.173,-0.087 -0.433,-0.13 -0.736,-0.087 -0.39,0.043 -0.649,0.043 -0.779,0 -0.216,-0.043 -0.433,-0.13 -0.606,-0.26 -0.347,-0.26 -0.866,-0.866 -1.602,-1.775 0.043,-0.087 0.173,-0.217 0.433,-0.433 0.011,-0.042 0.054,-0.431 0.054,-1.081", + "Kiev City": "m 266.751,110.951 0.26,-0.216 0.692,0.13 0.173,0.433 -0.52,0.476 -0.39,-0.26 -0.215,-0.563 m 5.759,-3.766 -5.672,-0.477 1.039,1.342 -0.216,0.303 0.13,0.52 -0.216,0.13 c -0.26,-0.303 -0.477,-0.433 -0.649,-0.433 -0.13,0 -0.26,0.13 -0.433,0.433 -0.217,0.433 -0.477,0.736 -0.866,0.909 -0.216,0.086 -0.216,0.347 0,0.823 0.087,0.173 0.043,0.303 -0.086,0.346 l -0.433,0.693 -0.086,0.693 -0.347,1.472 0.736,0.086 c 0.173,-0.043 0.173,-0.173 0.043,-0.433 l 0.303,-0.346 1.819,-0.26 0.303,0.303 0.433,0.043 0.606,1.126 -0.13,0.303 0.39,0.303 0.259,-0.173 1.342,1.429 -0.39,0.692 0.13,0.606 1.212,-0.26 0.086,0.303 c 0,0.043 -0.043,0.13 -0.043,0.217 0,0.173 0.043,0.26 0.13,0.303 0.346,0.217 0.52,0.347 0.563,0.347 0.347,-0.043 0.606,0.13 0.78,0.563 0.086,0.217 0.086,0.477 -0.043,0.736 -0.173,0.303 0,0.433 0.52,0.433 0.13,0 0.216,0.26 0.173,0.779 l 1.342,2.554 1.775,-0.476 -0.173,-0.346 -0.346,-0.39 0.303,-0.433 -0.346,-0.606 0.563,-0.216 v -1.688 m 1.556,-11.951 0.087,0.217 -6.148,-0.52 c -0.043,0.13 -0.086,0.26 -0.086,0.39 0,0.173 0.13,0.39 0.39,0.52 0.346,0.173 0.52,0.303 0.563,0.433 0.043,0.173 0.043,0.39 -0.087,0.692 -0.13,0.347 -0.216,0.606 -0.216,0.693 0.26,0.606 0.39,1.039 0.433,1.299 0,0.39 0,0.606 0.043,0.606 0.347,0.216 0.563,0.39 0.693,0.476 0.086,0.086 0.173,0.303 0.303,0.693 0.26,0.649 0.346,1.212 0.346,1.688 -0.043,0.39 -0.043,0.736 -0.043,0.953 -0.043,0.346 0.043,0.649 0.173,0.909 0.996,1.125 1.559,1.818 1.688,2.165 0.086,0.129 0.086,0.346 0.13,0.606 0.043,0.043 0.087,0.086 0.173,0.13 l -0.043,-0.693 c 0,-0.13 -0.13,-0.346 -0.347,-0.649 -0.043,-0.043 -0.13,-0.173 -0.303,-0.39 l -0.346,-0.476 1.255,-0.217 0.303,0.347 0.346,-0.087 0.52,0.39 1.125,-0.39 -0.043,-0.952 h 0.433 l 0.173,0.476 c 0.086,0.13 0.216,0.13 0.476,0.043 0.087,-0.087 0.13,-0.26 0.043,-0.606 l 0.563,-0.736 0.13,-0.433 h 0.519 l 0.347,-0.216 -0.433,-0.606 0.173,-0.303 -0.736,-0.78 -0.952,-0.303 -0.087,-1.559 -0.433,-0.217 0.043,-0.649 0.477,-0.39 v -0.52 l 0.433,-0.216 0.259,0.26 1.212,-0.779 -0.043,-0.606 -0.996,-0.866 -0.563,0.043 c -0.433,-0.303 -0.779,-0.563 -0.996,-0.779 -0.173,-0.173 -0.476,-0.043 -0.909,0.477 -0.085,0.086 -0.085,0.259 -0.042,0.432", + "Khmelnytskyi": "m 146.75,125.21874 -0.3125,0.78125 -0.21875,-0.5 c -0.347,0.043 -0.62775,0.159 -0.84375,0.375 l 0,0.0937 c 0.823,0.173 1.35325,0.3465 1.65625,0.5625 0.261,0.173 0.42575,0.43525 0.46875,0.78125 0.087,0.347 -0.0915,0.6005 -0.4375,0.6875 -0.26,0.087 -0.73275,0.125 -1.46875,0.125 -0.174,0 -0.25,0.14625 -0.25,0.40625 0.13,0.26 0.4175,0.56025 0.9375,0.90625 0,0.087 -0.039,0.22825 -0.125,0.53125 -0.13,0.346 -0.29575,0.55075 -0.46875,0.59375 -0.303,0.087 -0.50775,0.202 -0.59375,0.375 -0.044,0.131 -0.0557,0.245 0.0312,0.375 0.216,0.13 0.47825,0.207 0.78125,0.25 0.26,0 0.44525,0.039 0.53125,0.125 0,0.043 -0.0195,0.2205 -0.0625,0.4375 -0.086,0.26 -0.15125,0.42575 -0.28125,0.46875 -0.129,0.043 -0.30925,0.1005 -0.65625,0.1875 -0.953,0.303 -1.4755,0.54075 -1.5625,0.84375 l -0.12495,0.37505 c 0,0.043 0.12775,0.273 0.34375,0.75 0.174,0.433 0.26175,0.74 0.21875,1 0,0.043 -0.10825,0.2595 -0.28125,0.5625 -0.129,0.259 -0.1495,0.48325 -0.0625,0.65625 0.043,0.217 0.2595,0.40125 0.5625,0.53125 0.303,0.173 0.46375,0.43525 0.59375,0.78125 0.043,0.217 -0.003,0.63225 -0.21875,1.28125 -0.13,0.519 -0.0335,0.91575 0.3125,1.21875 l 0.6875,0.53125 c 0.26,0.216 0.3945,0.63225 0.4375,1.28125 0,0.823 0.0118,1.27625 -0.0312,1.40625 l -0.53125,0.5 c -0.044,0 -0.12,0.14625 -0.25,0.40625 -0.1735,0.2815 -0.214,0.5665 -0.0625,0.875 0.1515,0.3085 0.49225,0.62225 0.96875,0.96875 0.346,0.303 0.51175,0.572 0.46875,0.875 -0.043,0.346 -0.1775,0.5965 -0.4375,0.8125 -0.303,0.216 -0.5195,0.49 -0.5625,0.75 -0.043,0 -0.1015,0.45825 -0.1875,1.28125 -0.087,0.649 -0.202,0.995 -0.375,1.125 -0.086,0.086 -0.31025,0.202 -0.65625,0.375 l -0.1563,0.0312 c -0.13,0.13 -0.35825,0.43025 -0.53125,0.90625 -0.26,0.563 -0.336,0.99 -0.25,1.25 0,0.13 0.2165,0.5385 0.5625,1.1875 0.26,0.476 0.4705,1.28125 0.6875,2.40625 0,0.173 0.20375,0.39625 0.59375,0.65625 0.346,0.216 0.582,0.42075 0.625,0.59375 0.043,0.216 0.005,0.51625 -0.125,0.90625 0.044,0.303 0.159,0.80025 0.375,1.40625 0,0.043 -0.1015,0.26625 -0.1875,0.65625 -0.13,0.259 -0.13,0.452 0,0.625 0.173,0.26 0.447,0.61 0.75,1 0.13,0.347 0.0462,0.66575 -0.34375,0.96875 -0.044,0.13 -0.0118,0.29075 0.0312,0.59375 0.086,0.217 0.086,0.40125 0,0.53125 -0.044,0.087 -0.20875,0.164 -0.46875,0.25 -0.346,0.13 -0.58875,0.31525 -0.71875,0.53125 -0.087,0.043 -0.0937,0.235 -0.0937,0.625 0,0.39 -0.10825,0.976 -0.28125,1.625 0.043,0.26 0.18925,0.4715 0.40625,0.6875 0.26,0.217 0.3945,0.40125 0.4375,0.53125 0,0.087 -0.0575,0.25175 -0.1875,0.46875 -0.173,0.26 -0.21875,0.5865 -0.21875,1.0625 0,0.087 0.12675,0.398 0.34375,0.875 0.26,0.476 0.38675,0.865 0.34375,1.125 -0.173,0.304 -0.51625,0.66575 -0.90625,0.96875 -0.26,0.303 -0.20925,0.7105 0.0937,1.1875 0.304,0.562 0.48825,0.95875 0.53125,1.21875 l -0.0937,0.125 c -0.346,-0.087 -0.62,-0.087 -0.75,0 l -0.0625,0.125 c 0,0.043 0.077,0.2215 0.25,0.4375 0.173,0.217 0.2305,0.40125 0.1875,0.53125 l -0.0937,0.125 -0.4375,0.125 c -0.086,0.043 -0.1445,0.15225 -0.1875,0.28125 0.044,0.043 0.14625,0.19025 0.40625,0.40625 0.173,0.216 0.26175,0.408 0.21875,0.625 0,0.087 -0.10825,0.32875 -0.28125,0.71875 -0.129,0.346 -0.1485,0.58875 -0.0625,0.71875 l 0.125,0.0312 0.5625,-0.25 0.15625,0.0625 0.0625,0.15625 c 0,0.173 -0.0575,0.47325 -0.1875,0.90625 -0.043,0.087 -0.082,0.6095 -0.125,1.5625 -0.043,0.129 0.0838,0.279 0.34375,0.625 0.043,0.044 0.082,0.15125 0.125,0.28125 0.13,0.13 0.4565,0.29575 1.0625,0.46875 l 0.0312,0.125 0,0.1875 c -0.131,0.13 -0.3795,0.212 -0.8125,0.125 0,0.087 -0.0118,0.24 0.0312,0.5 -0.389,0.433 -0.467,0.75275 -0.25,0.96875 0.432,0.433 0.6445,0.67575 0.6875,0.71875 0,0.173 -0.12775,0.404 -0.34375,0.75 0.043,0.78 0.043,1.2645 0,1.4375 -0.043,0.129 -0.13275,0.33375 -0.21875,0.59375 -0.0435,0.433 0.043,0.73738 0.28125,0.9375 0.23825,0.20012 0.63675,0.30275 1.15625,0.28125 l 0.0625,0.0937 0,0.15625 c -0.13,0.173 -0.21875,0.3845 -0.21875,0.6875 0.044,0.086 0.1015,0.17575 0.1875,0.21875 0.303,0.13 0.5525,-0.0475 0.8125,-0.4375 l 0.15625,-0.0312 c 0.043,0.087 0.043,0.21375 0,0.34375 -0.043,0.519 -0.24,1.0045 -0.5,1.4375 0.087,0.302 0.5765,0.5525 1.3125,0.8125 0.087,0.26 0.399,0.4765 0.875,0.5625 l 0.0312,0.1875 -0.0312,0.125 c -0.087,0.086 -0.1825,0.0937 -0.3125,0.0937 l -0.1875,-0.0625 -0.21875,0.1875 0,0.125 c 0.26,0.303 0.4375,0.68025 0.4375,1.15625 0.346,0.303 0.539,0.538 0.625,0.625 0.216,-0.173 0.409,-0.25 0.625,-0.25 l 0.71875,0 c 0.433,-0.217 0.77125,-0.3125 1.03125,-0.3125 0.303,0.043 0.69875,0.30525 1.21875,0.78125 0.39,0.476 0.6825,0.87275 0.8125,1.21875 0.347,0.866 0.6335,1.409 0.9375,1.625 0.217,0.217 0.567,0.26175 1,0.21875 0.433,-0.087 0.668,-0.29075 0.625,-0.59375 -0.043,-0.173 -0.18925,-0.53675 -0.40625,-0.96875 -0.26,-0.52 -0.25225,-0.8075 0.0937,-0.9375 0.173,-0.043 0.332,-0.043 0.375,0 0.347,0.433 0.615,0.63175 0.875,0.71875 0.043,0 0.16575,-0.0195 0.46875,-0.0625 0.26,0.043 0.4755,0.0195 0.5625,0.0625 0.173,0 0.37,-0.0263 0.5,-0.15625 0.086,-0.086 0.125,-0.17575 0.125,-0.21875 0,-0.173 -0.2545,-0.447 -0.6875,-0.75 -0.433,-0.433 -0.71375,-0.6435 -0.84375,-0.6875 -0.086,-0.043 -0.42525,-0.0312 -1.03125,-0.0312 -0.303,0 -0.42975,-0.2505 -0.34375,-0.8125 0.217,-0.347 0.5095,-0.543 0.8125,-0.5 0.477,0 0.83375,0.22825 1.09375,0.53125 0.303,0.433 0.52725,0.63175 0.65625,0.71875 0.216,0.086 0.47825,0.1105 0.78125,-0.0625 0.39,-0.303 0.53625,-0.62275 0.40625,-0.96875 -0.043,-0.087 -0.28575,-0.42525 -0.71875,-1.03125 -0.086,-0.087 -0.0743,-0.27125 -0.0312,-0.53125 l 0.0625,-0.0625 0.34375,0 c 0.39,0.173 0.63175,0.5425 0.71875,1.0625 0.086,0.606 0.11325,0.92475 0.15625,0.96875 0.433,0.086 0.7265,-0.2835 0.8125,-1.0625 -0.216,-0.866 -0.1195,-1.4275 0.3125,-1.6875 0.433,-0.13 0.73325,0.005 0.90625,0.4375 0,0.086 -0.038,0.322 -0.125,0.625 -0.13,0.26 -0.168,0.4325 -0.125,0.5625 0.39,0.736 0.72725,1.21375 1.03125,1.34375 0.736,0.39 1.2985,0.24375 1.6875,-0.40625 0.303,-0.649 0.5965,-1.06525 0.8125,-1.28125 0.173,-0.043 0.3895,-0.043 0.5625,0 0.173,0.086 0.37,0.0625 0.5,0.0625 0.217,-0.173 0.37,-0.25 0.5,-0.25 0.086,0 0.21375,0.115 0.34375,0.375 0.13,0.26 0.27625,0.456 0.40625,0.5 0.13,0.086 0.33375,0.0743 0.59375,0.0312 0.303,-0.086 0.496,-0.125 0.625,-0.125 0.216,0.13 0.3945,0.17475 0.4375,0.21875 0.563,0.043 0.947,0.0937 1.25,0.0937 0.26,0 0.50275,-0.18425 0.71875,-0.53125 0.26,-0.39 0.491,-0.59375 0.75,-0.59375 0.173,-0.043 0.4655,0.0838 0.8125,0.34375 0.216,0.13 0.4665,0.245 0.8125,0.375 0.217,0.086 0.3895,0.13775 0.5625,0.0937 0.303,-0.13 0.52725,-0.2645 0.65625,-0.4375 0.26,-0.779 0.0358,-1.17575 -0.65625,-1.21875 -0.216,-0.173 -0.255,-0.327 -0.125,-0.5 0.217,-0.217 0.491,-0.36325 0.75,-0.40625 0.433,-0.043 0.84825,0.23 1.28125,0.75 0.39,0.433 0.80525,0.471 1.28125,0.125 0.086,-0.26 0.163,-0.46375 0.25,-0.59375 0.086,-0.26 0.25275,-0.3945 0.46875,-0.4375 0.043,-0.346 0.16475,-0.83825 0.46875,-1.53125 0.26,-0.649 0.40625,-1.11 0.40625,-1.5 0,-0.866 -0.0118,-1.38275 0.0312,-1.46875 0.086,-0.216 0.0937,-0.375 0.0937,-0.375 l -0.0937,-0.28125 -0.15625,-1 0.0937,-0.0937 c 0.13,-0.086 0.3415,-0.0352 0.6875,0.0937 0.086,0 0.163,-0.0507 0.25,-0.0937 0,-0.173 0.005,-0.326 -0.125,-0.5 -0.173,-0.26 -0.25,-0.414 -0.25,-0.5 l -0.28125,-0.71875 c -0.303,-0.996 -0.41125,-1.7935 -0.28125,-2.3125 l 0.125,-0.5625 c 0,-0.043 -0.1345,-0.6055 -0.4375,-1.6875 -0.217,-0.39 -0.3515,-0.69025 -0.4375,-0.90625 -0.043,-0.043 -0.043,-0.16975 0,-0.34375 0,-0.173 0.038,-0.25 0.125,-0.25 l 0.5625,-0.28125 c 0.303,-0.173 0.16175,-0.62625 -0.53125,-1.40625 -0.043,-0.043 -0.087,-0.20875 0,-0.46875 0.346,-0.433 0.4805,-0.85325 0.4375,-1.15625 0.043,-0.173 0.1395,-0.25 0.3125,-0.25 0.433,-0.346 0.745,-0.56525 0.875,-0.78125 0.129,-0.433 0.207,-0.77625 0.25,-0.90625 0.087,-0.303 0.399,-0.4805 0.875,-0.4375 l 0.125,-0.0625 0,-0.1875 c -0.13,-0.303 -0.168,-0.52725 -0.125,-0.65625 l 0.375,-0.46875 c 0.043,-0.433 0.0888,-0.7205 0.21875,-0.9375 0,-0.043 0.0497,-0.11225 0.0937,-0.15625 l 0.0312,-0.0312 c 0.26,0 0.61675,0.0118 1.09375,-0.0312 0.303,0.043 0.7065,0.13275 1.3125,0.21875 0.173,-0.13 0.33775,-0.39225 0.46875,-0.78125 0.173,-0.477 0.288,-0.745 0.375,-0.875 0.13,-0.13 0.56475,-0.053 1.34375,0.25 0.216,0.043 0.51625,0.279 0.90625,0.625 0.216,0.086 0.5865,0.163 1.0625,0.25 0.13,0.043 0.3455,0.20875 0.5625,0.46875 0.26,0.13 0.45975,0.2695 0.71875,0.3125 0.303,0.043 0.534,-0.0145 0.75,-0.1875 0.043,-0.086 0.2205,-0.2985 0.4375,-0.6875 l 0.34375,-0.25 c 0.476,-0.259 1.1145,-0.34375 1.9375,-0.34375 0.086,0 0.21375,-0.10725 0.34375,-0.28125 0.043,-0.043 -0.0457,-0.38225 -0.21875,-1.03125 0.086,-0.649 0.0362,-1.072 -0.0937,-1.375 -0.39,-0.476 -0.6445,-0.9225 -0.6875,-1.3125 -0.043,-0.086 -0.043,-0.15125 0,-0.28125 0.043,-0.217 0.2155,-0.49775 0.5625,-0.84375 0.217,-0.26 0.16525,-0.5475 -0.0937,-0.9375 l -0.0625,-0.0937 c -0.347,-0.39 -0.5,-0.663 -0.5,-0.75 0.043,-0.39 0.0497,-0.6395 0.0937,-0.8125 0,-0.303 -0.115,-0.5195 -0.375,-0.5625 l -0.4375,-0.0937 -0.25,-0.125 c 0,-0.433 -0.0693,-0.745 -0.15625,-0.875 l -0.25,-0.46875 c -0.39,-0.52 0.038,-0.8455 1.25,-1.0625 0.043,-0.13 -0.0457,-0.399 -0.21875,-0.875 -0.173,-0.433 -0.288,-0.6875 -0.375,-0.6875 -1.04,0.13 -1.78575,0.0665 -2.21875,-0.0625 -0.26,-0.13 -0.42475,-0.283 -0.46875,-0.5 -0.043,-0.303 0.033,-0.52725 0.25,-0.65625 0.346,-0.173 0.582,-0.31925 0.625,-0.40625 l 0,-0.125 c -0.953,-0.779 -1.40625,-1.1445 -1.40625,-1.1875 0.043,-0.39 0.1005,-0.658 0.1875,-0.875 0.043,-0.347 0.20875,-0.53125 0.46875,-0.53125 0.173,-0.043 0.31925,-0.043 0.40625,0 0.26,0.346 0.5095,0.386 0.8125,0.125 0.216,-0.303 0.30575,-0.5535 0.21875,-0.8125 -0.173,-0.26 -0.3855,-0.534 -0.6875,-0.75 l -0.0625,-0.15625 c 0.216,-0.26 0.36225,-0.44425 0.40625,-0.53125 0.173,-0.26 0.43525,-0.72 0.78125,-1.5 0.26,-0.563 0.375,-0.909 0.375,-1.125 -0.043,-0.26 -0.2545,-0.55925 -0.6875,-0.90625 -0.649,-0.303 -1.115,-0.52225 -1.375,-0.78125 -0.043,-0.13 0.0457,-0.39225 0.21875,-0.78125 0.173,-0.346 0.27625,-0.57025 0.40625,-0.65625 0.216,0 0.606,0.0888 1.125,0.21875 0.563,-0.26 0.9315,-0.59825 1.0625,-1.03125 -0.043,-0.043 -0.394,-0.2975 -1,-0.6875 0.043,-0.13 0.2925,-0.15625 0.8125,-0.15625 0.433,0.043 0.707,0.0118 0.75,-0.0312 0.043,-0.086 0.11325,-0.36 0.15625,-0.75 -0.13,-0.043 -0.4565,-0.1005 -1.0625,-0.1875 -0.693,-0.303 -1.22825,-0.52725 -1.53125,-0.65625 -0.13,-0.043 -0.71775,-0.18925 -1.84375,-0.40625 l -0.53125,-0.125 c -0.043,-0.043 -0.20875,-0.0312 -0.46875,-0.0312 -0.173,0.043 -0.3895,-0.0457 -0.5625,-0.21875 l -0.0937,-0.0625 c -0.173,-0.26 -0.36225,-0.54075 -0.40625,-0.84375 -0.13,-0.39 -0.23325,-0.64625 -0.40625,-0.90625 -0.692,-0.779 -1.0625,-1.3025 -1.0625,-1.5625 0.26,-0.649 0.19475,-1.038 -0.28125,-1.125 -0.563,0.043 -0.9325,-0.0195 -1.0625,-0.0625 l -0.21875,-0.21875 c -0.086,-0.086 -0.086,-0.629 0,-1.625 l 0.0937,-0.125 c 0.563,0 0.90125,-0.0693 1.03125,-0.15625 0,-0.39 -0.20475,-0.812 -0.59375,-1.375 -0.39,-0.563 -0.59375,-0.97825 -0.59375,-1.28125 0.26,0.043 0.6245,0.1015 1.1875,0.1875 0.606,0.043 1.06525,-0.0408 1.28125,-0.34375 0.216,-0.303 0.49275,-0.46875 0.96875,-0.46875 l 0.094,-0.0939 c 0.086,-0.476 0.1445,-0.77125 0.1875,-1.03125 -0.043,-0.39 -0.22825,-0.63175 -0.53125,-0.71875 -0.433,-0.13 -0.67575,-0.23825 -0.71875,-0.28125 -0.173,-0.217 -0.18475,-0.59825 0.0312,-1.03125 0.173,-0.477 0.37775,-0.73725 0.59375,-0.78125 0.087,-0.086 0.13675,-0.21375 0.0937,-0.34375 -0.39,-0.26 -0.6435,-0.44425 -0.6875,-0.53125 -0.043,-0.216 0.008,-0.37 0.0937,-0.5 l 0.5625,-0.21875 c 0.043,-0.043 0.081,-0.13175 0.125,-0.21875 0.086,-0.303 -0.0592,-0.64125 -0.40625,-1.03125 -0.39,-0.433 -0.69525,-0.71375 -0.78125,-0.84375 -0.173,-0.173 -0.2305,-0.43525 -0.1875,-0.78125 0.217,-1.212 0.1975,-1.83875 -0.0625,-1.96875 -0.13,-0.043 -0.3025,-0.0937 -0.5625,-0.0937 l -0.125,0.125 c -0.086,0.346 -0.163,0.50775 -0.25,0.59375 l -0.21875,0.1875 c -0.259,0.52 -0.40625,0.832 -0.40625,0.875 -0.129,0.043 -0.42525,-0.0195 -1.03125,-0.0625 -0.563,-0.086 -0.8935,-0.11325 -0.9375,-0.15625 0,-0.216 -0.0245,-0.51725 0.0625,-0.90625 -0.173,-0.26 -0.41575,-0.457 -0.71875,-0.5 -0.39,-0.043 -0.625,-0.0625 -0.625,-0.0625 -0.086,-0.043 -0.11325,-0.2205 -0.15625,-0.4375 0,-0.217 -0.0507,-0.3945 -0.0937,-0.4375 -0.173,-0.043 -0.33875,-0.0547 -0.46875,0.0312 -0.173,0.086 -0.25675,0.125 -0.34375,0.125 l -0.125,-0.0625 -0.15625,-0.28125 0.0625,-0.15625 c 0.26,-0.216 0.375,-0.33875 0.375,-0.46875 -0.13,-0.13 -0.283,-0.2695 -0.5,-0.3125 l -0.625,-0.46875 c -0.303,-0.26 -0.46475,-0.414 -0.59375,-0.5 -0.216,-0.13 -0.6245,-0.3025 -1.1875,-0.5625 -0.216,-0.13 -0.32025,-0.37275 -0.40625,-0.71875 -0.043,-0.39 -0.19425,-0.664 -0.28125,-0.75 -0.173,-0.13 -0.3845,-0.21875 -0.6875,-0.21875 -0.173,-0.043 -0.39725,-0.0625 -0.65625,-0.0625 -0.476,-0.086 -0.56075,-0.56475 -0.34375,-1.34375 l 0.28125,-0.96875 c 0.173,-0.606 0.41075,-1.12275 0.84375,-1.46875 l 0.0937,-0.125 c 0.563,-0.26 0.91975,-0.495 1.09375,-0.625 l -0.0937,-0.125 c -0.303,-0.087 -0.769,-0.202 -1.375,-0.375 -0.217,-0.259 -0.3505,-0.6675 -0.4375,-1.1875 -0.476,-0.043 -0.745,-0.12 -0.875,-0.25 -0.043,-0.13 -0.0937,-0.31425 -0.0937,-0.53125 -0.086,-0.173 -0.31025,-0.288 -0.65625,-0.375 -0.13,0 -0.43025,-0.0575 -0.90625,-0.1875 -0.563,-0.086 -0.80075,-0.207 -0.84375,-0.25 0,-0.087 -0.0118,-0.32975 0.0312,-0.71875 0,-0.39 -0.008,-0.63175 -0.0937,-0.71875 -0.043,-0.13 -0.2155,-0.1445 -0.5625,-0.1875 -0.303,0 -0.50775,-0.0235 -0.59375,0.0625 -0.217,0.217 -0.3945,0.562 -0.4375,1.125 -0.043,0.086 -0.317,0.21375 -0.75,0.34375 -0.563,0.173 -0.83875,0.31925 -0.96875,0.40625 -0.26,0.173 -0.4325,0.3515 -0.5625,0.4375 -0.173,0.39 -0.3465,0.58875 -0.5625,0.71875 -0.303,0.13 -0.693,0.10375 -1.125,-0.15625 -0.606,-0.347 -0.96375,-0.5195 -1.09375,-0.5625 -0.173,0.043 -0.4665,0.24775 -0.8125,0.59375 -0.173,0.13 -0.442,0.366 -0.875,0.625 -0.043,0.043 -0.34325,0.0312 -0.90625,0.0312 -0.043,0 -0.15125,0.0263 -0.28125,0.15625 -0.26,0.303 -0.32425,0.615 -0.28125,0.875 0.087,0.433 0.0937,0.73325 0.0937,0.90625 l -0.0937,0.0937 c -0.346,0.13 -0.658,0.091 -0.875,-0.125 -0.303,-0.216 -0.5145,-0.34375 -0.6875,-0.34375 -0.173,0.043 -0.3125,0.26725 -0.3125,0.65625 -0.043,0.52 -0.082,0.75675 -0.125,0.84375 -0.389,0.13 -0.61325,0.21375 -0.65625,0.34375 l -0.0937,0.96875 c 0,0.303 -0.2545,0.50775 -0.6875,0.59375 -0.52,0.13 -0.87,0.27625 -1,0.40625 -0.043,0.086 -0.043,0.25275 0,0.46875 0,0.26 -0.0263,0.4715 -0.15625,0.6875 -0.13,0.216 -0.66525,0.57375 -1.53125,1.09375 -0.173,0.13 -0.3465,0.43025 -0.5625,0.90625 -0.216,0.433 -0.37,0.69425 -0.5,0.78125 -0.173,0.13 -0.57375,0.283 -1.09375,0.5 -0.736,0.996 -1.12,1.48725 -1.25,1.53125 l -0.5625,0.0937 c -0.347,0.086 -0.5575,0.0743 -0.6875,0.0312 -0.173,-0.043 -0.485,-0.119 -0.875,-0.25 -0.693,0.347 -1.471,1.14525 -2.25,2.53125 -0.346,0.606 -0.6335,0.996 -0.9375,1.125 -0.173,0.087 -0.43525,0.13175 -0.78125,0.21875 -0.0973,0.0484 -0.38679,0.24416 -0.59375,0.375 z", + "Kherson": "m 382.96,301.371 c -0.13,-0.043 -0.217,-0.043 -0.303,0 -0.303,0.736 -0.476,1.212 -0.563,1.385 -0.303,0.086 -0.39,0.303 -0.39,0.693 0.043,0.433 0,0.693 -0.043,0.736 -0.39,0.13 -0.649,0.217 -0.779,0.26 -0.217,0.39 -0.26,0.779 -0.13,1.212 0.043,0.216 0.173,0.477 0.433,0.779 0.26,0.303 0.477,0.476 0.649,0.52 l 0.173,0 0.043,-0.173 c -0.086,-0.26 -0.173,-0.52 -0.217,-0.736 -0.043,-0.26 0,-0.476 0.087,-0.606 l 0.13,-0.086 0.13,0.043 c 0.216,0.086 0.303,0.39 0.26,0.823 0,0.13 -0.043,0.346 -0.13,0.563 l 0.086,0.129 c 0.26,0 0.52,-0.043 0.736,-0.173 0.043,-0.043 0.087,-0.086 0.173,-0.086 0.303,-0.26 0.433,-0.52 0.39,-0.78 0,-0.043 -0.086,-0.129 -0.26,-0.346 0.433,-1.039 0.563,-1.732 0.303,-1.992 -0.13,0 -0.26,0.217 -0.433,0.563 -0.173,0.39 -0.303,0.649 -0.39,0.736 l -0.173,0 c 0.087,-0.52 0.087,-0.866 0.043,-1.039 -0.173,-0.346 -0.26,-0.563 -0.216,-0.692 0,-0.13 0.216,-0.303 0.606,-0.52 0.131,-0.218 0.045,-0.607 -0.215,-1.213 m -40.959,5.715 c -0.086,0.043 -0.26,0.173 -0.563,0.389 -0.217,0.217 -0.606,0.347 -1.083,0.39 l -2.165,-0.216 c -1.775,-0.52 -2.771,-0.736 -2.987,-0.606 0.043,0.086 0.216,0.173 0.606,0.346 1.256,0.433 1.905,0.649 1.992,0.649 0.26,0.043 0.649,0 1.169,0 0.087,0 0.303,0 0.563,0.043 0.303,0.043 0.736,0.086 1.212,0.173 0.39,0.043 0.953,0.26 1.645,0.563 0.303,0.043 0.909,0.043 1.732,0 0.216,0 0.779,0.086 1.646,0.26 0.649,0.13 1.212,0.173 1.688,0.13 0.26,-0.043 0.476,-0.173 0.649,-0.39 0.173,-0.216 0.13,-0.433 -0.086,-0.606 -0.217,-0.13 -0.39,-0.173 -0.606,-0.086 -0.39,0.086 -0.563,0.173 -0.563,0.173 -0.173,0 -0.303,-0.043 -0.477,-0.13 -0.173,-0.173 -0.303,-0.26 -0.346,-0.26 -0.043,-0.13 -0.13,-0.216 -0.26,-0.303 -0.26,-0.173 -0.606,-0.173 -1.083,0.087 -0.52,0.216 -0.823,0.26 -0.953,0.216 l -0.216,-0.173 c -0.26,-0.303 -0.39,-0.477 -0.433,-0.477 -0.086,-0.086 -0.303,-0.13 -0.649,-0.13 -0.215,-0.042 -0.389,-0.042 -0.432,-0.042 m 65.032,-15.76 c 0,-0.217 -0.043,-0.39 -0.043,-0.476 -0.217,-1.126 -0.347,-1.775 -0.39,-1.949 -0.087,-0.043 -0.52,-0.086 -1.299,-0.086 -0.26,-0.217 -0.477,-0.39 -0.606,-0.433 -0.346,0 -0.606,-0.086 -0.823,-0.26 -0.216,-0.39 -0.433,-0.606 -0.52,-0.649 -0.13,-0.086 -0.433,-0.043 -0.953,0.043 -0.563,0.086 -0.909,0.13 -1.082,0.043 -0.043,-0.086 -0.086,-0.26 -0.086,-0.476 0,-0.26 0,-0.433 0.043,-0.476 0.303,-0.173 0.476,-0.433 0.52,-0.736 l -0.087,-0.13 c -0.086,-0.086 -0.433,-0.173 -1.039,-0.216 -0.606,-0.043 -0.996,-0.043 -1.168,0 -0.563,0.043 -0.866,0.043 -0.91,0 -0.086,-0.39 -0.216,-0.649 -0.303,-0.823 -0.13,-0.216 -0.217,-0.39 -0.26,-0.52 -0.259,-0.217 -0.519,-0.606 -0.649,-1.083 -0.086,-0.216 0,-0.39 0.173,-0.649 0.303,-0.346 0.433,-0.52 0.433,-0.563 0.13,-0.303 0.086,-0.822 -0.216,-1.559 -0.043,-0.216 -0.173,-0.346 -0.39,-0.346 -0.866,-0.13 -1.299,-0.216 -1.342,-0.26 -0.13,-0.303 -0.216,-0.477 -0.303,-0.52 l -0.173,0 c -0.303,0.26 -0.606,0.346 -0.822,0.173 -0.13,-0.13 -0.173,-0.563 -0.173,-1.256 0.13,-0.303 0.39,-0.433 0.736,-0.433 0.52,0 0.866,0 0.953,-0.043 0.086,-0.043 0.217,-0.26 0.39,-0.649 0.13,-0.173 0.346,-0.26 0.606,-0.347 0.173,-0.216 0.303,-0.52 0.389,-0.996 0.303,-0.39 0.433,-0.649 0.433,-0.693 -0.086,-0.606 -0.086,-1.039 0.043,-1.342 0,0 0.173,-0.086 0.52,-0.216 0.043,0 0.39,-0.173 0.996,-0.477 0.043,-0.173 0.043,-0.476 -0.086,-0.996 -0.086,-0.606 -0.346,-0.909 -0.649,-0.953 -0.39,0 -0.606,0 -0.693,-0.086 -0.26,-0.173 -0.433,-0.909 -0.606,-2.122 -0.173,-0.216 -0.779,-0.433 -1.775,-0.779 -0.087,0 -0.303,-0.173 -0.563,-0.433 -0.216,-0.173 -0.606,-0.303 -1.212,-0.346 -0.13,-0.087 -0.173,-0.39 -0.217,-0.909 0,-0.563 -0.173,-0.91 -0.433,-1.04 -0.303,0 -0.52,0 -0.649,-0.043 -0.173,-0.217 -0.26,-0.563 -0.217,-1.083 0,-0.606 0,-0.996 -0.043,-1.169 l -0.087,-0.606 c -0.13,-0.39 -0.216,-0.693 -0.26,-0.866 l -0.13,-0.736 -0.086,-0.13 -0.866,-0.26 -0.087,-0.13 c -0.043,-0.26 -0.043,-0.476 -0.043,-0.606 -0.129,-0.433 -0.173,-0.736 -0.216,-0.909 0.13,-0.779 0.13,-1.386 0.13,-1.775 -0.043,-0.129 -0.086,-0.216 -0.086,-0.303 l -0.217,-1.04 c -0.043,-0.216 0.043,-0.433 0.217,-0.563 0.216,-0.173 0.303,-0.346 0.303,-0.52 0,-0.26 -0.217,-0.476 -0.649,-0.736 -0.39,-0.26 -0.477,-0.736 -0.217,-1.559 0,-0.086 0.173,-0.173 0.476,-0.303 0.26,-0.086 0.433,-0.216 0.477,-0.303 l -0.043,-0.173 c -0.173,-0.173 -0.303,-0.26 -0.39,-0.26 l -1.732,0.173 c -0.173,0 -0.433,0.086 -0.693,0.216 -0.043,0.433 -0.086,0.649 -0.13,0.736 -0.26,0.303 -0.39,0.563 -0.39,0.692 0,0.043 -0.086,0.087 -0.173,0.13 -0.26,0.086 -0.606,0 -1.083,-0.346 -0.216,0.043 -0.39,0.086 -0.433,0.043 -0.433,0.476 -0.823,0.649 -1.212,0.52 -0.086,-0.087 -0.13,-0.173 -0.13,-0.26 l -0.043,-0.866 c -0.173,-0.476 -0.303,-0.822 -0.39,-1.083 -0.13,-0.52 -0.217,-0.909 -0.303,-1.125 -0.346,-1.039 -0.563,-1.602 -0.563,-1.688 -0.173,-0.606 -0.303,-1.126 -0.433,-1.646 -0.433,0.217 -0.866,0.303 -1.386,0.39 -0.433,0.043 -0.779,0 -0.996,-0.086 -0.173,-0.173 -0.347,-0.217 -0.433,-0.26 -0.52,0.086 -0.866,0.173 -1.039,0.216 -0.52,-0.043 -0.909,-0.086 -1.169,-0.086 -0.433,-0.043 -0.779,0.13 -0.953,0.433 -0.087,0.13 -0.13,0.996 -0.173,2.598 l 0.043,0.13 c 0.13,0 0.303,-0.13 0.476,-0.346 0.173,0 0.606,0.043 1.299,0.216 0.52,0.086 1.039,0 1.602,-0.26 0.26,-0.13 0.649,-0.477 1.169,-1.083 l 0.173,0.043 c 0.173,0.13 0.13,0.39 -0.173,0.779 -0.346,0.346 -0.52,0.606 -0.476,0.779 0,0.13 0.26,0.346 0.649,0.649 0.433,0.303 0.693,0.563 0.779,0.779 l -0.086,0.173 -0.087,0.13 c -0.52,-0.303 -0.866,-0.52 -1.125,-0.649 -0.563,-0.26 -1.212,-0.477 -1.905,-0.563 -0.909,-0.173 -1.515,-0.086 -1.862,0.216 -0.173,0.13 -0.346,0.39 -0.476,0.823 -0.216,0.476 -0.39,0.866 -0.476,1.169 -0.043,0.303 -0.13,0.693 -0.173,1.256 -0.086,0.476 -0.26,0.866 -0.477,1.169 -0.086,0.086 -0.433,0.563 -1.125,1.385 -0.216,0.303 -0.39,0.563 -0.52,0.736 -0.303,0.26 -0.52,0.476 -0.606,0.649 -0.217,0.563 -0.39,0.953 -0.563,1.212 -0.043,0.043 -0.303,0.173 -0.693,0.346 -0.433,0.173 -0.692,0.39 -0.823,0.693 -0.086,0.173 -0.173,0.563 -0.216,1.125 -0.086,0.477 -0.173,0.823 -0.303,1.04 -0.433,0.303 -0.736,0.519 -0.909,0.692 -0.52,0.606 -0.866,0.996 -1.082,1.169 -0.217,0.217 -0.39,0.39 -0.52,0.52 -0.39,0.303 -0.649,0.563 -0.822,0.736 -0.433,0.52 -0.65,1.342 -0.693,2.381 0,0.173 0,0.346 0.086,0.649 l 0.173,0.216 c 0.086,0.043 0.606,0.043 1.472,-0.086 0.736,-0.087 1.125,0.043 1.212,0.346 -0.13,0.13 -0.649,0.217 -1.602,0.26 -0.996,0.086 -1.688,0.26 -2.035,0.563 -0.043,0 -0.173,0.13 -0.303,0.346 -0.26,0.347 -0.39,0.65 -0.433,0.866 l 0.13,0.086 0.433,-0.086 c 0.303,-0.087 0.606,-0.043 0.909,0.086 0.303,0.173 0.477,0.39 0.52,0.649 l -0.043,0.173 -0.13,0.086 c -0.173,-0.043 -0.303,-0.086 -0.347,-0.086 -0.649,-0.13 -1.125,-0.043 -1.429,0.173 -0.13,0.086 -0.346,0.346 -0.606,0.822 -0.26,0.347 -0.52,0.563 -0.823,0.649 l -1.169,-0.086 c -0.779,-0.043 -1.342,-0.043 -1.732,-0.043 -0.52,-0.043 -0.909,-0.086 -1.169,-0.043 -0.26,0.043 -0.52,0.13 -0.736,0.216 -0.173,0.13 -0.347,0.303 -0.477,0.52 -0.26,0.39 -0.39,0.563 -0.433,0.649 -0.26,0.13 -0.433,0.303 -0.563,0.39 -0.217,0.26 -0.39,0.433 -0.476,0.52 -0.347,0.303 -0.823,0.477 -1.473,0.606 l -0.216,-0.477 c -0.433,0.26 -1.083,0.13 -2.035,-0.39 -0.13,-0.13 -0.736,-0.26 -1.775,-0.476 -1.125,-0.173 -2.035,0.086 -2.685,0.779 -0.52,0.606 -1.385,0.823 -2.598,0.693 -0.606,-0.043 -1.385,0.216 -2.424,0.736 -0.563,0.26 -1.472,0.866 -2.814,1.775 -0.779,0.52 -1.905,0.779 -3.464,0.779 -0.476,0 -0.953,0.173 -1.472,0.563 0,0 0,0 -0.043,0 -0.26,0.216 -0.477,0.39 -0.649,0.606 0.173,-0.043 0.303,0.043 0.346,0.216 -0.043,0.13 -0.173,0.26 -0.346,0.433 -0.477,0.649 -0.78,0.996 -0.953,1.083 -0.52,0.173 -0.866,0.26 -1.126,0.346 -0.433,0.26 -0.779,0.476 -0.996,0.563 -0.26,0.13 -0.649,0.26 -1.212,0.476 -0.26,0.13 -0.606,0.476 -0.953,1.04 -0.216,0.129 -0.52,0.303 -0.909,0.519 -0.26,0.217 -0.433,0.477 -0.52,0.866 -0.086,0.303 -0.086,0.52 -0.086,0.52 0,0.173 0.086,0.26 0.26,0.39 0.13,0.086 0.26,0.173 0.26,0.26 0,0.13 -0.086,0.26 -0.26,0.39 -0.13,0.087 -0.39,0.216 -0.736,0.347 -0.086,0.043 -0.39,0.303 -0.996,0.822 -0.216,0.043 -0.736,-0.043 -1.429,-0.216 -0.779,-0.173 -1.212,-0.303 -1.386,-0.39 -0.216,-0.52 -0.692,-0.823 -1.299,-0.996 -0.26,-0.043 -0.52,-0.043 -0.779,0.043 -0.303,0.13 -0.52,0.173 -0.606,0.13 -1.083,-0.563 -1.819,-0.866 -2.165,-0.823 -0.26,0.087 -0.433,0.173 -0.563,0.173 -0.563,0.216 -1.082,0.303 -1.515,0.26 -0.823,-0.346 -1.429,-0.52 -1.862,-0.563 -0.693,-0.043 -1.169,-0.043 -1.472,-0.13 -0.303,-0.086 -0.476,-0.13 -0.563,-0.13 -0.346,0.13 -0.692,0.13 -0.909,0.087 -0.173,-0.043 -0.303,-0.173 -0.39,-0.303 -0.086,-0.173 -0.346,-0.26 -0.779,-0.303 -0.303,-0.043 -0.649,-0.26 -1.126,-0.606 -0.433,-0.303 -0.822,-0.477 -1.125,-0.477 l -0.606,0.13 c -0.087,0 -0.347,0 -0.736,0 -0.086,0 -0.173,0.043 -0.216,0.043 l -0.173,0.043 c -0.39,0.173 -0.649,0.26 -0.823,0.303 -0.39,0.043 -0.649,0.043 -0.822,0.043 -0.91,0.086 -1.516,0.043 -1.862,-0.086 -0.347,-0.173 -0.693,-0.433 -1.039,-0.866 -0.303,-0.433 -0.563,-0.693 -0.779,-0.779 l -0.087,0.043 c 0.217,0.216 0.433,0.606 0.736,1.256 0.216,0.26 0.649,0.563 1.299,0.952 0.086,0.087 0.303,0.433 0.693,1.039 0.26,0.39 0.563,0.736 0.909,0.953 0.563,0.347 0.866,0.649 0.996,0.866 0.087,0.217 0.303,0.78 0.563,1.646 l 0.13,-0.043 c 0.043,-0.13 0.043,-0.476 0.043,-1.082 -0.043,-0.563 0.043,-0.996 0.13,-1.212 0.216,-0.217 0.39,-0.39 0.476,-0.476 0.26,-0.043 0.606,-0.043 1.083,0.086 0.303,-0.173 0.606,-0.217 0.953,-0.13 0.13,0.043 0.39,0.13 0.736,0.346 0.563,0.173 1.126,0.433 1.646,0.693 0.259,0.13 0.606,0.303 1.125,0.433 0.216,0.129 0.606,0.346 1.083,0.606 0.346,0.13 0.649,0.043 0.953,-0.303 0.173,0 0.433,0 0.779,0.087 0.13,-0.043 0.26,-0.043 0.347,0 0.043,0.043 0.217,0.346 0.52,0.822 0.043,0.087 0.086,0.13 0.13,0.217 0,0 0,0 0.043,0.043 0.13,0.173 0.303,0.39 0.52,0.649 0.26,0.39 0.433,0.736 0.476,1.039 0,0.13 -0.086,0.217 -0.173,0.26 -0.303,-0.043 -0.52,-0.087 -0.693,-0.043 -0.346,0 -0.52,0.13 -0.606,0.39 -0.13,0.346 -0.217,0.563 -0.217,0.606 -0.26,0.26 -0.649,0.477 -1.255,0.65 -0.13,0.043 -0.217,0.086 -0.347,0.129 -0.649,0.173 -1.342,0.217 -1.992,0.13 -0.779,-0.087 -1.342,-0.13 -1.732,-0.043 l -0.173,0.086 c -0.13,0.043 -0.303,0.173 -0.563,0.347 -0.173,0.086 -0.433,0.216 -0.779,0.39 -0.043,0.043 -0.173,0.129 -0.303,0.26 -0.043,0.086 -0.086,0.173 -0.086,0.303 l 0.563,0.649 c 0.13,0.087 0.216,0.303 0.39,0.563 0.433,0.303 0.996,0.39 1.645,0.26 0.087,-0.043 0.216,-0.043 0.433,-0.086 l 0.822,0 c 0.087,-0.087 0.13,-0.173 0.13,-0.303 -0.433,-0.476 -0.606,-0.866 -0.477,-1.169 l 0.13,-0.086 c 0.173,0 0.606,0.173 1.212,0.649 0.173,0.086 0.39,0.216 0.649,0.433 0.043,0.043 0.13,0.217 0.303,0.52 0.086,0.216 0.216,0.346 0.346,0.39 0.13,0.043 0.39,0.086 0.693,0.173 0.649,0.303 1.039,0.433 1.212,0.433 0.086,0 0.26,0 0.52,-0.086 0.173,-0.043 0.346,0 0.52,0.13 0.39,0.303 0.736,0.736 0.996,1.299 0.173,0.303 0.216,0.476 0.259,0.52 0.043,0.086 0.217,0.216 0.433,0.346 l 1.862,0.779 c 0.173,0.043 0.39,0.043 0.606,-0.043 0.173,-0.043 0.39,0 0.693,0.13 0.173,0 0.52,-0.173 1.039,-0.433 l 0.043,0.13 c 0,0.043 -0.26,0.303 -0.649,0.736 l -0.087,0.173 c 0.043,0.216 0.173,0.52 0.39,0.953 l 0.173,1.039 c 0.173,0.173 0.433,0.303 0.866,0.303 0.692,0.346 1.169,0.52 1.385,0.606 0.043,0 0.173,0.043 0.347,0.086 l 1.299,0.433 c 0.303,0.13 0.433,0.173 0.52,0.216 0.303,0.087 0.779,0.173 1.385,0.303 1.212,0.303 1.905,0.477 2.035,0.477 0.26,-0.043 0.433,-0.173 0.606,-0.433 0.173,-0.26 0.433,-0.433 0.779,-0.52 0.087,0.086 0.39,-0.043 0.866,-0.303 0.043,0 0.13,0 0.303,-0.043 0.649,-0.217 1.039,-0.347 1.082,-0.347 0.217,0 0.52,0.086 0.909,0.173 0.087,0 0.217,-0.087 0.347,-0.173 0.13,-0.043 0.346,-0.043 0.606,-0.086 0.26,-0.087 0.563,-0.26 0.953,-0.606 0.13,-0.043 0.346,-0.086 0.649,-0.13 0.13,0 0.26,0 0.39,0 0.52,-0.043 0.866,-0.043 1.039,0.043 0.173,0.043 0.52,0.173 0.909,0.346 0.173,0.043 0.433,0.043 0.823,-0.043 0.087,0.043 0.216,0.13 0.39,0.26 l 0.043,0.13 c 0.433,0.216 0.909,0.086 1.559,-0.347 0.173,-0.043 0.649,-0.043 1.472,0 0.693,0 1.083,-0.173 1.169,-0.476 0.086,-0.433 0.086,-0.693 0.043,-0.823 -0.129,-0.086 -0.173,-0.26 -0.259,-0.433 l 0.043,-0.13 0.13,-0.086 c 0.086,0 0.26,0.086 0.433,0.216 0.477,0.13 0.693,0.173 0.736,0.173 0.043,0.043 0.26,0.26 0.606,0.693 0.216,0.26 0.476,0.433 0.692,0.476 0.39,0 0.996,-0.39 1.905,-1.169 0.26,-0.173 0.433,-0.26 0.476,-0.26 0.043,-0.086 0.087,-0.26 0.087,-0.563 -0.043,-0.303 0,-0.52 0.043,-0.606 0.086,-0.086 0.129,-0.13 0.26,-0.13 0.13,-0.086 0.259,-0.303 0.39,-0.606 0.086,-0.347 0.173,-0.563 0.303,-0.649 l 0.087,0.086 c 0.043,0.303 -0.043,0.779 -0.26,1.342 0,0.303 0.086,0.822 0.26,1.559 -0.043,0.26 -0.217,0.563 -0.52,0.909 0,0.13 0.043,0.216 0.13,0.26 0.086,0 0.303,-0.13 0.649,-0.39 0.086,-0.086 0.173,-0.13 0.26,-0.216 0.216,-0.087 0.39,-0.13 0.563,-0.13 0.043,0.043 0.087,0.043 0.087,0.086 0.52,0.303 0.909,0.52 1.125,0.649 0.13,0.043 0.216,0.086 0.26,0.13 0.173,0.13 0.173,0.346 0.043,0.649 -0.043,0.086 -0.173,0.217 -0.433,0.39 -0.216,0.087 -0.346,0.216 -0.346,0.346 0.043,0.087 0.216,0.173 0.433,0.173 0.13,-0.043 0.259,-0.173 0.39,-0.433 0.086,-0.217 0.216,-0.39 0.39,-0.39 0.173,0.087 0.476,0.217 0.866,0.303 0.043,0 0.087,0 0.13,0.043 0.043,0 0.13,0.043 0.303,0.13 0.303,0.346 0.39,0.693 0.303,0.953 l 0.433,0.39 c 0.043,0 0.173,0.216 0.39,0.563 0.13,0.217 0.303,0.303 0.563,0.347 0.086,0 0.26,-0.087 0.476,-0.26 0.217,-0.173 0.39,-0.217 0.563,-0.173 0.043,0 0.216,0.13 0.563,0.346 0.26,0.217 0.476,0.303 0.606,0.26 l 0.087,-0.129 c -0.217,-0.347 -0.347,-0.606 -0.433,-0.736 -0.13,-0.216 -0.086,-0.52 0.086,-0.779 0.13,-0.216 0.26,-0.303 0.433,-0.303 0.043,-0.043 0.26,0 0.606,0.087 0.26,0.043 0.477,0 0.563,-0.043 l 0.043,-0.173 c -0.043,-0.13 -0.216,-0.26 -0.433,-0.346 -0.303,-0.13 -0.476,-0.217 -0.52,-0.346 -0.087,-0.087 -0.087,-0.26 -0.043,-0.39 0.087,-0.303 0.217,-0.433 0.347,-0.477 0.086,-0.043 0.26,-0.13 0.433,-0.216 0.086,-0.043 0.173,-0.173 0.216,-0.39 0.086,-0.173 0.216,-0.303 0.476,-0.347 0.043,-0.043 0.13,-0.173 0.173,-0.346 0.043,-0.173 0.13,-0.26 0.26,-0.303 0.173,0 0.39,0.087 0.52,0.26 0.216,0.217 0.39,0.606 0.476,1.212 0,0.043 0,0.043 0.043,0.043 0.173,-0.043 0.346,-0.13 0.476,-0.26 0.26,-0.259 0.347,-0.649 0.303,-1.212 0,-0.217 0,-0.39 -0.043,-0.477 -0.086,-0.26 -0.173,-0.433 -0.173,-0.519 l -0.217,-0.736 c -0.216,-0.866 -0.086,-1.429 0.433,-1.732 l 0.303,0 c 0.173,0.087 0.39,0.303 0.649,0.649 l 0.173,-0.043 c 0.043,0.043 0.216,0.13 0.476,0.26 0.303,0.13 0.433,0.173 0.52,0.173 0.043,-0.173 0.216,-0.433 0.39,-0.823 0.086,-0.086 0.13,-0.216 0.173,-0.303 0.346,-0.043 0.606,-0.173 0.866,-0.477 l 0.303,0 c 0.086,0.043 0.26,0.217 0.563,0.606 0.26,0.26 0.476,0.433 0.692,0.563 0.043,0.043 0.13,0.043 0.217,0.087 0.303,0.086 0.606,0.043 0.866,-0.087 0.043,-0.043 0.086,-0.043 0.086,-0.086 0.13,-0.086 0.303,-0.216 0.52,-0.39 l 0.173,0.086 c 0.043,0.087 0.173,0.217 0.347,0.433 0.13,0.13 0.389,0.173 0.779,0.216 0.13,0 0.216,0 0.39,0 0.52,0 0.909,0.173 1.083,0.477 0.173,0.303 0.346,0.736 0.476,1.429 0.13,0.216 0.346,0.52 0.693,0.909 0.086,0.13 0.26,0.26 0.39,0.433 0.13,0.26 0.173,0.39 0.216,0.39 0,0.043 0.043,0.086 0.086,0.086 l 0.13,0.043 c 0.086,-0.043 0.216,-0.216 0.259,-0.476 0.087,-0.26 0.173,-0.39 0.303,-0.477 0.217,-0.043 0.39,0.13 0.52,0.606 0.13,0.433 0.303,0.692 0.52,0.649 l 0.26,-0.13 0.173,0.043 c 0.087,0.13 0.173,0.217 0.216,0.39 0.13,0.087 0.303,0.087 0.433,0.043 0.087,-0.043 0.13,-0.13 0.216,-0.26 -0.129,-0.303 -0.216,-0.52 -0.26,-0.649 0.043,-0.433 0.043,-0.779 -0.086,-0.996 -0.086,-0.173 -0.26,-0.259 -0.433,-0.346 -0.303,-0.043 -0.477,-0.13 -0.52,-0.173 -0.043,0 -0.043,0 -0.043,-0.043 -0.086,-0.087 -0.216,-0.26 -0.433,-0.52 l 0.086,-0.129 c 0.217,-0.043 0.433,0.043 0.736,0.216 0.303,-0.173 0.476,-0.52 0.649,-1.083 l 0.173,0 c 0,0.043 0.129,0.13 0.303,0.303 l 0.216,0.346 c 0.043,0.087 0.087,0.173 0.087,0.26 0.043,0.217 0,0.477 -0.087,0.823 -0.086,0.433 -0.129,0.736 -0.086,0.866 l 0.086,0.086 0.13,0 c 0.606,-0.303 0.996,-0.779 1.212,-1.386 0.043,-0.216 0.043,-0.346 0,-0.433 -0.216,-0.043 -0.39,-0.087 -0.476,-0.217 -0.086,-0.043 -0.13,-0.13 -0.13,-0.173 -0.39,-0.433 -0.606,-0.78 -0.779,-1.039 -0.173,-0.303 -0.173,-1.212 0.086,-2.728 l 0.087,-0.086 c 0.13,0 0.26,0 0.476,0.13 0.39,0.216 0.866,0.736 1.385,1.472 0.043,0.086 0.13,0.216 0.217,0.39 0.303,0.303 0.476,0.563 0.606,0.779 0.043,0.13 0.13,0.303 0.173,0.52 0.13,0.346 0.26,0.866 0.433,1.472 0.043,0.086 0.303,0.26 0.779,0.476 0.043,0.13 0.086,0.693 0.129,1.602 0,0.866 0.087,1.342 0.217,1.429 0.26,0 0.433,-0.303 0.476,-0.909 0.043,-0.693 0.043,-1.083 0.087,-1.256 0.086,-0.736 0.173,-1.125 0.173,-1.125 -0.13,-0.13 -0.303,-0.216 -0.52,-0.303 -0.259,-0.043 -0.433,-0.129 -0.52,-0.216 -0.13,-0.13 -0.086,-0.433 0.13,-0.823 0.26,-0.433 0.477,-0.649 0.649,-0.649 0.217,0.043 0.477,0.39 0.866,0.953 0.173,0.173 0.346,0.26 0.563,0.216 0.216,0 0.39,0 0.476,0.043 0.216,0.173 0.433,0.476 0.606,0.953 0.173,0.13 0.476,0.26 0.996,0.346 0.173,0.13 0.39,0.347 0.736,0.693 0.303,0.216 0.65,0.216 1.04,-0.043 0.26,-0.13 0.433,-0.433 0.563,-0.909 0.173,-0.52 0.303,-0.866 0.39,-0.996 0.087,-0.043 0.216,-0.043 0.303,-0.043 0.13,0.086 0.303,0.347 0.563,0.779 0.26,0.433 0.39,0.736 0.39,0.823 0.043,0.13 0,0.303 -0.087,0.476 -0.043,0.173 -0.086,0.476 -0.043,0.909 0,0.39 -0.13,0.736 -0.303,1.126 -0.303,0.433 -0.52,0.52 -0.736,0.216 -0.087,-0.086 -0.13,-0.433 -0.13,-0.952 -0.043,-0.217 -0.043,-0.347 -0.043,-0.477 l -0.173,-0.043 c -0.043,0 -0.346,0.433 -0.779,1.299 l -0.13,0.087 -0.13,-0.043 c -0.13,-0.173 -0.086,-0.346 0.043,-0.606 0.129,-0.26 0.173,-0.52 0.13,-0.693 l -0.13,-0.086 c -0.173,0 -0.303,0.043 -0.433,0.216 -0.086,0.216 -0.216,0.39 -0.26,0.476 -0.303,0.13 -0.476,0.26 -0.563,0.39 -0.216,0.217 -0.303,0.563 -0.26,0.996 0,0.39 0.087,0.736 0.26,1.039 0.303,0.086 0.52,0.303 0.606,0.736 l -0.087,0.217 c -0.043,0.086 -0.173,0.086 -0.26,0.043 -0.26,-0.303 -0.476,-0.476 -0.693,-0.563 l -0.129,0.043 c -0.13,0.129 -0.173,0.259 -0.26,0.39 -0.043,0.129 -0.217,0.346 -0.433,0.563 -0.087,0.173 -0.13,0.303 -0.13,0.433 0,0.26 0.13,0.433 0.433,0.52 0.13,0.043 0.303,0 0.563,0 0.043,-0.043 0.13,-0.043 0.217,-0.086 0.346,-0.043 0.606,-0.043 0.779,0.043 0.216,0.217 0.216,0.52 0.043,0.996 -0.086,0.173 -0.13,0.346 -0.13,0.476 0,0.173 0,0.303 0.087,0.433 l 0.173,0.043 c 0.216,-0.043 0.39,-0.217 0.52,-0.477 0,-0.043 0.043,-0.13 0.043,-0.216 0.13,-0.39 0.303,-0.649 0.563,-0.693 0.173,0.086 0.39,0.13 0.606,0.173 0.433,0.043 0.823,0 1.169,-0.087 0.043,-0.043 0.087,-0.086 0.13,-0.173 0.087,-0.13 0.173,-0.303 0.26,-0.477 0.087,-0.216 0.13,-0.433 0.217,-0.649 0.13,-0.693 0.303,-1.169 0.433,-1.429 0.13,-0.13 0.26,-0.39 0.52,-0.736 0.173,-0.26 0.303,-0.563 0.26,-0.779 0,-0.477 -0.043,-0.78 -0.13,-0.953 l -0.173,-0.346 c -0.217,-0.91 -0.217,-1.646 -0.043,-2.208 l 0.087,-0.086 c 0.216,-0.26 0.563,-0.477 0.996,-0.606 0.433,-0.129 0.823,-0.129 1.169,-0.043 0.043,0.043 0.173,0.13 0.39,0.303 0.043,0.043 0.13,0.086 0.303,0.129 0.26,0.173 0.606,0.433 0.996,0.866 0.217,0.216 0.39,0.39 0.52,0.52 0.26,-0.606 0.65,-0.909 1.212,-1.039 -0.043,-0.13 -0.043,-0.303 -0.043,-0.39 -0.043,-0.347 0.043,-0.65 0.26,-0.996 0.13,-0.26 0.433,-0.52 0.91,-0.736 l 0.043,0 c 0.129,-0.086 0.216,-0.13 0.303,-0.173 0.303,-0.173 0.52,-0.346 0.606,-0.52 0.043,-0.043 0.087,-0.303 0.173,-0.823 0.086,-0.346 0.173,-0.563 0.347,-0.563 l 0,-0.043 0.173,0.043 c 0.13,0.129 0.216,0.346 0.26,0.692 0,0.26 0.087,0.477 0.173,0.52 0.39,0.13 0.909,0 1.515,-0.476 1.212,-0.346 1.862,-0.563 1.949,-0.606 0.216,-0.086 0.736,-0.563 1.559,-1.385 0.216,-0.173 0.346,-0.346 0.52,-0.476 -0.736,0 -1.169,-0.043 -1.299,-0.13 -0.13,-0.043 -0.173,-0.26 -0.13,-0.563 -0.173,-0.909 -0.26,-1.559 -0.26,-1.992 0.174,-0.476 0.303,-0.866 0.303,-1.083 -0.003,-0.077 -0.132,-0.596 -0.392,-1.505 m -33.295,-47.973 c -0.13,-0.173 -0.13,-0.389 -0.087,-0.563 0.043,-0.087 0.043,-0.13 0.087,-0.216 -0.173,-0.087 -0.26,-0.13 -0.303,-0.13 -0.433,0 -0.779,0.043 -0.996,0.043 -0.649,0.087 -2.035,0.433 -4.157,1.169 -0.26,0.086 -1.125,0.13 -2.598,0.173 -0.13,0 -0.26,-0.173 -0.39,-0.52 -0.173,-0.52 -0.26,-0.736 -0.26,-0.779 l -0.173,-0.043 c -0.606,0.173 -0.953,0.26 -1.039,0.26 l -0.086,-0.086 c -0.043,-0.39 -0.13,-0.649 -0.173,-0.779 -0.086,-0.087 -0.13,-0.217 -0.13,-0.26 -0.043,-0.13 0.13,-0.477 0.433,-1.039 0.086,-0.087 0,-0.303 -0.217,-0.693 -0.043,-0.173 -0.52,-0.173 -1.342,0 -0.866,0.173 -1.299,0.303 -1.342,0.433 -0.043,0.217 0,0.563 0.086,0.996 0,0.346 -0.779,0.649 -2.295,0.866 l -1.515,0.26 -0.13,0.087 c -0.086,0.13 -0.173,0.39 -0.173,0.779 l -0.13,0.086 c -0.216,0.043 -0.52,-0.043 -0.779,-0.26 -0.346,-0.26 -0.563,-0.476 -0.606,-0.606 -0.129,-0.52 -0.26,-0.866 -0.39,-1.083 -0.173,-0.433 -0.476,-0.649 -0.866,-0.606 -1.255,0.086 -1.992,-0.043 -2.294,-0.26 l -0.52,-0.52 c -0.606,-0.216 -1.342,-0.433 -2.294,-0.649 -0.043,0.477 -0.087,0.996 0,1.602 0.13,0.217 0.433,0.52 0.866,0.909 0.13,0.217 0.043,0.52 -0.26,0.953 0.043,0.303 0.217,0.693 0.477,1.212 0.043,0.346 0,0.823 -0.173,1.472 0.39,0.693 0.476,1.125 0.26,1.299 -0.52,0.13 -0.953,0.13 -1.299,0.043 -0.303,-0.953 -0.52,-1.516 -0.736,-1.775 l -0.13,0.043 c -0.086,0.086 -0.13,0.216 -0.13,0.433 0.043,0.259 0,0.433 -0.043,0.519 -0.087,0.173 -0.303,0.303 -0.693,0.477 -0.043,0.26 0,0.52 0.086,0.866 0.13,0.39 0.303,0.606 0.563,0.606 l 0.693,0.043 c 0.52,0 0.779,0.087 0.866,0.217 0.346,0.822 0.563,1.342 0.606,1.559 0.13,0.476 0.087,0.996 -0.086,1.602 -0.13,0.303 -0.216,0.52 -0.26,0.649 -0.13,0.433 -0.13,0.779 -0.13,1.082 0.043,0.433 0.39,1.126 0.996,2.035 -0.13,0.173 -0.217,0.39 -0.303,0.736 -0.043,0.303 -0.13,0.433 -0.26,0.476 l -0.173,-0.043 c -0.52,-0.433 -0.866,-0.563 -1.083,-0.347 -0.303,0.476 -0.563,0.823 -0.822,1.125 -0.217,0.173 -0.303,0.26 -0.303,0.26 -0.693,-0.043 -1.125,-0.043 -1.299,0.086 l 0.043,-0.086 c -0.173,-0.303 -0.303,-0.477 -0.433,-0.606 l -0.173,0 c -0.173,0.52 -0.303,0.909 -0.433,1.169 -0.043,0.173 -0.173,0.433 -0.346,0.736 -0.086,0.26 -0.173,0.476 -0.26,0.649 -0.13,0.216 -0.39,0.649 -0.779,1.299 0,0.13 0.043,0.303 0.13,0.563 l 0,0.39 c 0,0.13 0.043,0.26 0.173,0.303 0.129,0.043 0.39,0.043 0.779,-0.043 0.174,0 0.823,0.39 1.862,1.125 0.13,0.043 0.39,0.26 0.779,0.693 0.39,0.39 0.606,0.606 0.649,0.693 0.086,0.173 -0.086,0.476 -0.433,0.909 -0.433,0.52 -0.649,0.823 -0.649,0.953 l 0.043,0.433 -0.087,-0.086 -0.866,-0.606 c -0.26,-0.433 -0.433,-0.692 -0.606,-0.779 -0.26,-0.086 -0.476,0.043 -0.736,0.39 -0.043,0.13 -0.043,0.477 0,0.953 0.043,0.476 0.13,0.779 0.303,0.866 0.26,0.043 0.736,0.043 1.342,0 0.129,0.086 0.216,0.173 0.26,0.346 0.086,0.216 0.043,0.346 -0.043,0.477 -0.346,0 -0.563,0 -0.649,0 -0.779,0.216 -1.212,0.389 -1.342,0.519 -0.39,0.606 -0.693,0.953 -0.866,0.953 -1.342,0.303 -2.381,0.433 -3.074,0.433 -0.173,0.173 -0.26,0.303 -0.26,0.39 0.086,0.433 0.52,0.649 1.342,0.649 0.649,-0.043 1.169,-0.13 1.688,-0.346 0.086,0.043 0.173,0.173 0.26,0.346 0.216,0.13 0.476,0.13 0.779,0.043 l 0.043,0.086 -0.087,0.39 c -0.173,0.173 -0.563,0.26 -1.169,0.303 -0.692,0.086 -1.169,0.173 -1.472,0.346 -0.433,0.433 -0.736,0.649 -0.909,0.606 -0.606,-0.13 -0.996,-0.173 -1.299,-0.13 l -1.688,0.259 c -0.303,0.043 -0.52,-0.043 -0.693,-0.346 -0.173,-0.346 -0.303,-0.606 -0.433,-0.693 -0.736,-0.086 -1.083,-0.303 -1.169,-0.606 -0.086,-0.13 -0.39,-0.086 -0.909,0.087 -0.52,0.173 -0.822,0.216 -0.953,0.086 0,-0.26 0,-0.433 -0.086,-0.477 -0.216,0.043 -0.39,0.087 -0.476,0.087 l -0.087,-0.087 -0.043,-0.303 c -0.13,-0.043 -0.303,-0.043 -0.52,-0.043 l 0,0.477 c 0.043,0.563 0,0.952 -0.13,1.125 -0.13,0.216 -0.477,0.346 -0.996,0.52 -0.563,0.13 -0.866,0.086 -0.996,-0.13 -0.087,-0.347 -0.173,-0.563 -0.303,-0.693 -0.13,-0.086 -0.866,0 -2.122,0.26 -0.13,0.043 -0.346,0.52 -0.606,1.429 -0.13,0.303 -0.217,0.52 -0.303,0.606 -0.086,0.043 -0.303,0.086 -0.563,0 l -0.563,-0.086 c -0.303,-0.13 -0.52,-0.173 -0.649,-0.26 -0.26,-0.086 -0.563,-0.216 -0.909,-0.39 -0.303,-0.13 -0.779,-0.086 -1.342,0.26 -0.043,0.086 -0.173,0.39 -0.39,0.996 -0.087,0.303 -0.173,0.563 -0.347,0.779 -0.346,0.606 -0.866,0.996 -1.559,1.212 -0.606,0.173 -0.996,0.26 -1.169,0.173 -0.173,-0.303 -0.347,-0.476 -0.477,-0.52 -0.433,-0.216 -0.779,-0.173 -1.039,0.13 -0.13,0.087 -0.346,0.347 -0.649,0.779 -0.26,0.043 -0.563,0.087 -0.909,0 -0.477,-0.043 -0.779,-0.086 -0.909,-0.086 0.043,0.043 0.086,0.086 0.13,0.173 0.086,0.216 0.086,0.649 0.043,1.212 l 0.563,1.645 c 0.217,0.433 0.477,0.823 0.823,1.169 0.346,0.433 0.779,0.649 1.342,0.649 0.606,-0.043 1.083,0.087 1.429,0.39 0.26,0.217 0.433,0.606 0.52,1.256 0.043,0.52 0.173,0.866 0.303,0.953 l 0.173,-0.043 c 0.303,-0.39 0.606,-0.649 0.822,-0.779 0.693,-0.13 1.083,-0.26 1.256,-0.346 0.173,-0.39 0.346,-0.649 0.476,-0.736 0.13,-0.086 0.303,-0.086 0.52,0 0,0 0.347,0.39 0.996,1.039 0.39,0.52 0.736,0.823 0.909,0.909 0.173,0.043 0.563,0.043 1.212,0.043 0.779,-0.043 1.429,-0.216 1.905,-0.476 0.606,-0.433 1.126,-0.779 1.602,-1.039 0.477,-0.217 0.779,-0.347 0.909,-0.433 0.086,-0.087 0.26,-0.173 0.433,-0.347 l 0.39,-0.13 c 0.26,-0.173 0.563,-0.216 0.952,-0.173 0.303,-0.087 1.04,-0.563 2.122,-1.342 0.173,-0.216 0.39,-0.39 0.649,-0.606 0.043,0 0.043,0 0.043,0 0.52,-0.39 0.996,-0.563 1.472,-0.563 1.559,0 2.685,-0.26 3.464,-0.779 1.342,-0.91 2.251,-1.516 2.814,-1.775 1.039,-0.52 1.818,-0.779 2.424,-0.736 1.212,0.13 2.078,-0.087 2.598,-0.693 0.649,-0.693 1.559,-0.953 2.685,-0.779 1.039,0.216 1.646,0.346 1.775,0.476 0.952,0.52 1.602,0.649 2.035,0.39 l -0.216,-0.52 c 0.736,-0.346 1.212,-0.649 1.472,-0.822 0.173,-0.173 0.433,-0.477 0.736,-0.953 0.26,-0.477 0.52,-0.779 0.736,-0.909 0.173,-0.087 0.736,-0.26 1.645,-0.606 0,-0.476 0.087,-0.822 0.13,-1.083 l 0.13,0 c 0.087,0 0.216,0.043 0.433,0.087 0.26,0.216 0.52,0.476 0.823,0.779 0.303,0.173 0.649,0.303 1.169,0.303 0.303,0.043 0.563,-0.087 0.736,-0.303 0.13,-0.173 0.173,-0.433 0.173,-0.823 0,-0.346 0.043,-0.606 0.13,-0.649 0.043,-0.043 0.173,-0.086 0.433,-0.13 0.129,-0.086 0.26,-0.173 0.303,-0.303 0.043,-0.13 0.043,-0.476 -0.043,-1.125 -0.087,-0.606 -0.043,-1.083 0.086,-1.429 0.043,-0.087 0.173,-0.26 0.346,-0.52 0.087,-0.087 0.26,-0.217 0.563,-0.52 0.216,-0.259 0.216,-0.519 0.043,-0.692 l -0.173,-0.087 c -0.216,0.13 -0.433,0.173 -0.52,0.173 -0.043,0 -0.26,-0.086 -0.563,-0.26 -0.476,-0.303 -0.692,-0.563 -0.649,-0.823 0.043,-0.043 0.086,-0.13 0.217,-0.173 l 0.563,0.173 c 0.347,0.087 0.606,0.087 0.823,0 0.173,-0.173 0.216,-0.476 0.13,-0.996 0.13,-0.779 0.39,-1.255 0.779,-1.429 l 0.13,0.086 c 0.086,0.13 0.043,0.433 -0.13,0.866 -0.173,0.433 -0.216,0.692 -0.086,0.822 l 0.13,0.087 c 0.346,-0.087 0.693,-0.347 0.996,-0.78 0.173,-0.216 0.39,-0.606 0.649,-1.039 0.13,-0.173 0.303,-0.39 0.606,-0.649 0.043,-0.086 0.173,-0.26 0.346,-0.563 0.13,-0.26 0.433,-0.693 0.823,-1.342 0.346,-0.563 0.476,-1.083 0.39,-1.516 -0.043,-0.26 -0.217,-0.476 -0.433,-0.563 -0.346,-0.043 -0.563,-0.087 -0.649,-0.173 l -0.086,-0.13 -0.043,-0.173 0.26,-0.13 c 0.217,0.043 0.606,0.13 1.126,0.216 0.13,0 0.216,0 0.303,-0.043 0.087,-0.087 0.217,-0.26 0.39,-0.433 0.173,-0.173 0.477,-0.39 0.909,-0.693 0.173,-0.173 0.303,-0.26 0.303,-0.303 l 0.26,-0.477 c 0.086,-0.26 0.173,-0.39 0.303,-0.433 0.173,-0.086 0.39,-0.086 0.693,-0.043 0.129,-0.26 0.346,-0.649 0.563,-1.212 0.953,-1.602 1.472,-2.468 1.516,-2.598 0,-0.26 -0.086,-0.606 -0.346,-0.996 -0.26,-0.433 -0.39,-0.692 -0.39,-0.736 l 0.129,-0.173 c 0.043,0 0.217,0 0.477,0 0.173,0.043 0.303,0 0.39,-0.13 0.13,-0.086 0.173,-0.26 0.13,-0.476 0,-0.52 -0.39,-1.212 -1.125,-2.079 -0.693,-0.822 -0.996,-1.342 -0.953,-1.472 0.086,-0.086 0.303,-0.13 0.563,-0.13 0.216,-0.043 0.39,-0.087 0.433,-0.13 l 0.086,-0.173 c 0,-0.086 -0.086,-0.216 -0.26,-0.39 -0.173,-0.173 -0.303,-0.26 -0.39,-0.346 -0.002,-0.039 -0.132,-0.169 -0.305,-0.515 m 22.124,62.087 c -0.13,0.043 -0.217,0.173 -0.26,0.346 l 0.13,0.303 0.606,0.26 c 0.347,0.13 0.477,0.563 0.39,1.255 l 0.606,0.78 c 0.086,0.086 0.26,0.216 0.52,0.346 0.043,0.216 0.13,0.39 0.26,0.476 l 0.173,0.043 c 0.216,-0.086 0.346,-0.303 0.39,-0.649 0,-0.347 0.086,-0.563 0.216,-0.606 l 0.13,0 c 0.086,0.043 0.26,0.303 0.433,0.736 0.346,0.649 0.52,1.515 0.563,2.728 0,0.649 0,1.083 0.043,1.256 0.043,0.173 0.26,0.39 0.606,0.692 0.26,0.173 0.347,0.433 0.26,0.693 -0.173,0.043 -0.303,0.087 -0.39,0.216 0.043,0 0.043,0 0.043,0 0.086,0 0.173,0 0.217,0 l 0.216,3.464 c 0.173,-0.173 0.303,-0.346 0.346,-0.563 0.087,-0.13 0.13,-0.39 0.217,-0.693 l 0.216,-0.173 c 0.13,-0.043 0.303,0.043 0.477,0.173 0.476,0.303 0.779,0.822 0.909,1.515 0.173,0.693 0.259,1.212 0.346,1.472 l 0.996,0 c -0.173,-0.303 -0.303,-0.52 -0.346,-0.736 -0.216,-0.563 -0.346,-0.953 -0.433,-1.256 0.043,-0.043 -0.086,-0.476 -0.303,-1.212 -0.259,-0.692 -0.433,-1.125 -0.519,-1.299 -0.087,-0.173 -0.217,-0.346 -0.39,-0.563 -0.303,-0.39 -0.52,-0.866 -0.649,-1.429 -0.174,-1.255 -0.347,-2.208 -0.477,-2.857 l -0.693,-2.035 c -0.13,-0.52 -0.216,-1.732 -0.26,-3.551 0,-0.13 0,-0.26 0,-0.346 -0.216,-0.693 -0.346,-1.255 -0.39,-1.688 -0.563,0.13 -0.953,0.433 -1.212,1.039 0.087,0.086 0.13,0.173 0.173,0.173 0.216,0.476 0.346,1.125 0.346,2.035 -0.086,0.086 -0.173,0.13 -0.303,0.13 -0.26,0 -0.52,-0.173 -0.736,-0.476 l -0.173,0.736 c 0.13,0.217 0.173,0.477 0.13,0.823 -0.043,0.303 -0.173,0.563 -0.39,0.693 -0.217,0 -0.39,-0.173 -0.39,-0.563 -0.043,-0.346 0,-0.649 0.086,-0.866 l 0.26,-0.173 c 0.173,0.043 0.26,0.043 0.303,0.086 l 0.173,-0.736 c -0.216,-0.346 -0.433,-0.563 -0.52,-0.563 -0.779,0.303 -1.255,0.52 -1.472,0.563 l -0.474,0", + "Kharkiv": "m 478.473,114.458 c 0.13,-0.996 0.086,-1.602 -0.13,-1.775 -0.563,0 -1.083,0.043 -1.516,0.13 -0.26,0.086 -0.433,0.13 -0.563,0.173 -1.169,0 -1.905,0.086 -2.165,0.216 -0.649,0.779 -1.126,1.299 -1.342,1.472 -0.476,0.52 -1.645,1.083 -3.464,1.732 0,0 0,0 -0.043,0 l -0.736,0.303 c -0.043,0.043 -0.13,0.043 -0.216,0.043 -0.477,0.087 -0.736,0.13 -0.779,0.13 -0.823,0.26 -1.299,0.347 -1.386,0.303 l -0.26,-0.173 c -0.303,-0.173 -0.693,-0.303 -1.125,-0.346 h -0.606 c -0.563,0.173 -0.996,0.26 -1.212,0.303 -0.563,0.086 -0.996,0.13 -1.256,0.173 -0.173,0.087 -0.26,0.13 -0.303,0.13 -0.346,0.217 -0.606,0.347 -0.822,0.433 -0.433,0.173 -0.909,0.39 -1.429,0.52 -0.476,0.477 -0.909,0.823 -1.255,0.996 -1.169,0.52 -1.948,0.996 -2.381,1.515 -0.649,1.169 -0.996,1.818 -1.083,1.905 -0.433,0.173 -1.083,0.13 -1.861,-0.043 -0.26,-0.086 -0.477,-0.13 -0.606,-0.173 -0.476,-0.346 -0.649,-0.736 -0.563,-1.169 0,-0.13 0.13,-0.346 0.346,-0.606 0.173,-0.26 0.217,-0.477 0.217,-0.606 -0.086,-0.216 -0.303,-0.303 -0.649,-0.346 -0.347,-0.043 -0.606,-0.043 -0.736,0.086 -0.173,-0.043 -0.39,-0.173 -0.563,-0.39 -0.39,-0.433 -0.736,-0.606 -1.083,-0.649 -0.433,-0.043 -0.823,-0.13 -1.083,-0.303 -0.216,-0.346 -0.346,-0.52 -0.433,-0.52 -0.216,0.043 -0.39,0.173 -0.563,0.39 -0.217,0.39 -0.346,0.606 -0.39,0.606 -0.13,0.173 -0.39,0.303 -0.823,0.52 -0.433,0.173 -0.736,0.303 -0.909,0.303 -0.26,0 -0.52,-0.087 -0.736,-0.217 -0.563,-0.39 -0.909,-0.822 -0.996,-1.212 0,-0.303 -0.043,-0.52 -0.087,-0.606 -0.346,-0.216 -0.606,-0.346 -0.692,-0.476 -0.606,-0.606 -1.039,-1.256 -1.256,-1.949 -0.043,-0.563 -0.13,-0.909 -0.303,-0.996 -0.043,-0.043 -0.303,0.043 -0.693,0.13 0.173,-0.39 0.086,-0.736 -0.303,-0.953 -0.173,-0.13 -0.866,-0.26 -2.122,-0.476 -1.255,-0.217 -2.035,-0.303 -2.251,-0.303 -0.563,0.043 -0.996,0.086 -1.342,0.173 -0.39,-0.043 -0.693,-0.043 -0.866,0 -0.216,0 -0.953,0.086 -2.295,0.303 -0.693,0.217 -1.168,0.52 -1.342,0.823 -0.216,0.477 -0.303,0.693 -0.346,0.693 -0.13,0.13 -0.39,0.173 -0.779,0.216 -0.39,0 -0.649,0.13 -0.823,0.26 0,0.043 -0.043,0.39 -0.13,0.996 0,0.303 -0.303,0.476 -0.822,0.563 -0.173,0 -0.347,0.043 -0.477,0.043 0.087,0.303 0,0.563 -0.173,0.866 -0.303,0.476 -0.78,0.606 -1.429,0.433 -0.952,-0.26 -1.472,-0.39 -1.602,-0.346 -0.173,0.173 -0.347,0.303 -0.433,0.39 -0.217,0.13 -0.866,0.086 -1.905,-0.173 -0.173,-0.043 -0.303,0 -0.433,0.087 0.433,0.346 0.606,0.606 0.606,0.822 l -0.086,0.13 c -0.13,0 -0.606,-0.303 -1.516,-0.909 -0.909,-0.606 -1.516,-0.822 -1.905,-0.606 l -0.086,0.13 c 0.26,0.866 0.173,1.472 -0.173,1.732 -0.173,-0.043 -0.476,-0.173 -0.866,-0.433 -0.39,-0.26 -0.649,-0.346 -0.823,-0.303 -0.476,0.303 -0.736,0.563 -0.736,0.693 l 0.39,0.433 v 0.13 l -0.347,0.303 h -0.173 c -0.087,-0.13 -0.26,-0.173 -0.433,-0.217 -0.39,-0.13 -0.649,-0.086 -0.823,0.173 -0.13,0.173 -0.173,0.303 -0.173,0.39 0.26,0.52 0.303,0.866 0.173,1.039 -0.13,0.13 -0.389,0.26 -0.736,0.39 -0.433,0.173 -0.693,0.26 -0.736,0.26 l -0.477,-0.39 -0.779,-0.39 -0.52,-0.043 c -0.216,-0.086 -0.433,-0.043 -0.563,0 -0.303,0.087 -0.52,0.347 -0.606,0.78 -0.13,0.52 -0.26,0.866 -0.39,0.952 l -0.13,0.043 c -0.347,-0.39 -0.563,-0.563 -0.693,-0.563 -0.216,0.13 -0.433,0.26 -0.693,0.39 -0.26,0.13 -0.433,0.26 -0.433,0.347 0.086,0.216 0.173,0.476 0.39,0.822 -0.13,0.347 -0.217,0.563 -0.303,0.606 -0.086,0 -0.347,-0.087 -0.693,-0.347 -0.303,-0.216 -0.52,-0.39 -0.606,-0.52 -0.13,-0.173 -0.216,-0.303 -0.216,-0.303 l -0.173,0.043 c -0.13,0.13 -0.26,0.52 -0.39,1.212 -0.087,0.173 -0.26,0.39 -0.649,0.563 -0.52,0.216 -0.779,0.346 -0.823,0.346 0,0.13 0.086,0.347 0.346,0.606 -0.043,0.043 -0.086,0.303 -0.173,0.736 -0.086,0.303 -0.043,0.606 0.087,0.953 0.043,0.823 0.086,1.255 0.086,1.255 0,0.303 -0.433,0.779 -1.169,1.472 -0.736,0.649 -1.125,1.126 -1.169,1.429 0.13,0.26 0.303,0.649 0.476,1.212 0.217,0.649 0.303,1.039 0.303,1.212 -0.043,0.086 -0.086,0.26 -0.173,0.476 0.303,0.043 0.52,0.26 0.693,0.606 l 0.087,0.26 c 0.043,0.043 0.346,0.13 0.909,0.26 0.086,0 0.216,0.173 0.433,0.433 0.173,0.216 0.39,0.389 0.649,0.433 0.217,0.043 0.563,0.087 1.083,0.087 0.433,-0.043 0.823,0 1.083,0.086 0.13,0.086 0.216,0.303 0.173,0.606 0,0 0.303,0.173 0.866,0.52 0.953,0.563 1.646,0.736 2.035,0.477 0.043,-0.043 0.173,-0.13 0.347,-0.216 0.173,-0.087 0.346,-0.043 0.649,0.086 l 0.13,0.13 c 0.433,0.346 0.649,0.693 0.693,1.083 0.043,0.26 0,0.736 -0.087,1.429 -0.043,0.39 0.043,0.909 0.13,1.602 0.086,0.39 0.26,0.692 0.563,0.822 0.347,0.173 0.563,0.26 0.606,0.347 0.087,0.26 0.087,0.692 0.087,1.299 0.26,0.13 0.693,0.173 1.255,0.216 0.13,0.13 0.13,0.347 0.043,0.649 l 0.087,0.087 c 0.519,0.086 1.255,0.26 2.294,0.563 0.043,-0.043 0.13,-0.216 0.173,-0.433 0.043,-0.26 0.13,-0.433 0.216,-0.477 0.909,0 1.386,0 1.429,0.043 0.043,0.043 0.13,0.39 0.217,1.039 -0.303,0.043 -0.477,0.13 -0.563,0.26 0,0.693 0.693,2.035 1.992,4.07 v 0.173 c -0.13,0.346 -1.039,0.476 -2.728,0.39 -0.043,0.086 -0.043,0.26 0.129,0.563 0.173,0.13 0.52,0.173 0.996,0.216 0.086,0.13 0.173,0.347 0.216,0.693 0.693,0.13 1.04,0.346 1.169,0.693 -0.086,0.26 -0.129,0.433 -0.173,0.476 -0.433,0 -0.693,0.043 -0.823,0.086 -0.13,0.26 -0.26,0.433 -0.346,0.563 -0.91,-0.346 -1.602,-0.52 -2.079,-0.52 -0.13,0.087 -0.303,0.13 -0.39,0.173 -0.39,0.043 -0.563,0.086 -0.606,0.13 -0.26,0.26 -0.346,0.606 -0.346,1.039 0.086,0.173 0.26,0.39 0.52,0.693 l -0.087,0.39 0.087,0.13 c 0.39,0.043 0.649,0.086 0.779,0.173 l 0.043,0.13 c -0.043,0.217 -0.13,0.39 -0.303,0.563 v 0.173 c 0.346,0.13 0.52,0.303 0.563,0.476 0,0.13 -0.043,0.26 -0.13,0.347 l -0.952,1.212 c -0.217,0.433 -0.433,0.736 -0.563,0.953 -0.606,0.909 -1.429,1.559 -2.555,1.992 -0.52,0.173 -0.909,0.26 -1.169,0.26 -1.429,0 -2.381,-0.086 -2.944,-0.26 -0.216,-0.086 -0.433,-0.216 -0.649,-0.476 -0.129,-0.173 -0.216,-0.303 -0.26,-0.39 -0.086,-0.087 -0.26,-0.173 -0.476,-0.173 -0.13,0 -0.217,0.043 -0.26,0.086 -1.775,1.646 -2.511,2.814 -2.165,3.55 0,0.043 0.173,0.26 0.477,0.736 l 0.13,0.26 c 0.043,0.173 0.13,0.433 0.303,0.823 0.26,0.822 0.26,1.342 0,1.515 0.217,0.346 0.477,0.52 0.78,0.52 0.086,0 0.26,-0.13 0.433,-0.346 0.173,-0.13 0.347,-0.217 0.606,-0.217 0.129,0.043 0.26,0.217 0.433,0.563 l 0.173,0.043 c 0.563,-0.217 0.909,-0.26 1.039,-0.26 0.13,0.043 0.303,0.086 0.606,0.173 0.13,0 0.346,0 0.649,-0.043 0.433,0.086 1.039,0.433 1.818,1.082 0.086,0.043 0.173,0.303 0.26,0.736 0.043,0.086 0.433,0.39 1.083,0.866 l 0.173,0.216 c 0.043,0 0.39,0.13 1.039,0.346 l 0.087,0.13 c -0.043,0.26 -0.087,0.477 -0.087,0.563 -0.043,0 0.26,0.173 0.78,0.52 0.26,0.13 0.692,0.606 1.255,1.429 0.173,0.13 0.52,0.303 0.996,0.39 0.303,0.216 0.693,0.477 1.083,0.866 0.606,0.563 0.953,0.909 0.996,0.909 0.13,0.086 0.39,0.043 0.693,-0.043 0.346,-0.13 0.606,-0.173 0.736,-0.13 l 1.385,0.26 c 0.087,0 0.303,-0.086 0.65,-0.346 0.26,0.13 0.606,0.433 0.996,0.909 0.13,0.043 0.347,0.043 0.606,0 0.26,-0.086 0.52,-0.086 0.736,0 0.086,0 0.173,0.13 0.303,0.303 0.086,0.216 0.173,0.303 0.303,0.303 0.043,0 0.26,-0.13 0.606,-0.433 0.087,-0.043 0.217,-0.043 0.347,0.043 0.043,0.043 0.173,0.13 0.346,0.26 0.217,0.173 0.563,0.217 0.996,0.13 0.13,0.043 0.26,0.13 0.433,0.217 l 0.086,0.043 0.086,0.087 0.13,0.26 0.13,0.043 c 0.13,-0.086 0.39,-0.26 0.866,-0.563 0.086,0.043 0.39,-0.087 0.909,-0.433 0.52,-0.303 0.909,-0.477 1.169,-0.563 0.216,-0.086 0.476,-0.13 0.909,-0.26 0.086,-0.043 0.216,-0.173 0.433,-0.346 0.216,0 0.52,0.216 1.039,0.52 0.433,0.303 0.779,0.563 0.953,0.779 -0.13,0.173 -0.217,0.346 -0.26,0.563 l -0.043,0.39 c -0.043,0.086 0.26,0.476 0.909,1.083 l 0.043,0.129 c -0.173,0.39 -0.39,0.736 -0.563,0.996 -0.043,0.043 -0.303,0.173 -0.779,0.433 -0.39,0.173 -0.563,0.39 -0.563,0.649 l 0.086,0.086 c 0.043,0.043 0.477,0 1.212,-0.13 0.173,0 0.477,0.217 0.909,0.779 0.13,0.13 0.563,0.216 1.299,0.26 0.043,0.13 0,0.347 -0.13,0.693 0.086,0.13 0.26,0.173 0.519,0.216 0.26,0 0.433,0.043 0.477,0.173 l 0.043,0.086 c 0.26,0.087 0.476,0.39 0.649,0.953 0.086,0.13 0.26,0.216 0.52,0.26 0.346,0.086 0.606,0.216 0.779,0.433 0.086,0.346 -0.216,0.736 -0.996,1.212 -0.087,0 -0.13,0.13 -0.217,0.346 -0.086,0.173 -0.086,0.346 -0.043,0.433 0.043,0.043 0.26,0.173 0.693,0.39 0.303,0.216 0.693,0.563 1.125,1.039 0.13,0.13 0.65,0.563 1.516,1.212 0.606,0.52 1.083,0.952 1.299,1.429 -0.086,0.303 -0.346,0.779 -0.692,1.342 l 0.043,0.173 c 0.606,0.433 1.039,0.823 1.299,1.212 -0.26,0.303 -0.649,0.779 -1.169,1.429 l 0.606,0.606 c 0.173,-0.043 0.433,-0.347 0.822,-0.866 0.173,0.043 0.433,0.26 0.823,0.649 0.13,0.043 0.39,-0.13 0.693,-0.433 l 0.563,-0.217 c -0.13,-0.13 -0.39,-0.303 -0.736,-0.52 l -0.043,-0.13 0.087,-0.173 c 0.39,-0.649 0.649,-1.083 0.866,-1.299 l 0.433,-0.433 c 0.217,-0.303 0.563,-0.736 1.039,-1.342 0.173,-0.217 0.52,-0.52 0.996,-0.823 l 0.13,-0.043 c 0.043,0.043 0.433,0.26 1.125,0.693 0.086,0 0.173,0.043 0.346,0.13 0.043,0 0.347,0.216 0.866,0.649 0,0 0.13,0.173 0.303,0.433 0.173,0.216 0.259,0.346 0.39,0.346 l 1.602,-0.13 0.217,-0.173 0.26,-0.649 c 0.216,-0.043 0.909,-0.087 2.035,-0.217 -0.347,-0.563 -0.52,-0.953 -0.477,-1.169 l 0.043,-0.693 c 0.043,-0.606 0.086,-1.039 0.086,-1.299 0.043,-0.346 -0.043,-0.779 -0.26,-1.299 -0.086,-0.26 -0.216,-0.779 -0.346,-1.429 -0.173,-0.953 0.043,-1.386 0.606,-1.342 0.303,0 0.476,0 0.563,0.043 0.563,0.346 0.909,0.52 1.039,0.563 0.087,0.043 0.649,0.087 1.602,0.173 l 0.173,-0.043 c 0.129,-0.13 0.303,-0.346 0.563,-0.692 0.433,-0.477 0.953,-0.649 1.516,-0.52 0.216,0.043 0.736,0.303 1.559,0.736 0.606,0.303 0.996,0.52 1.169,0.606 l 0.217,0.043 c 0.129,0.13 0.346,0.346 0.649,0.649 l 0.173,-0.043 c 0.13,-0.13 0.26,-0.39 0.347,-0.736 -0.087,-0.13 -0.26,-0.216 -0.563,-0.346 -0.347,-0.087 -0.52,-0.217 -0.563,-0.347 v -0.346 c 0.347,-0.606 0.606,-0.953 0.779,-0.909 0.086,0 0.26,0.086 0.52,0.26 0.26,0.13 0.477,0.13 0.563,0.086 0.13,-0.13 0.216,-0.346 0.26,-0.649 0,-0.346 0.043,-0.606 0.13,-0.736 0.13,-0.087 0.26,-0.13 0.476,-0.173 0.26,-0.043 0.477,0.086 0.65,0.303 0.173,0.346 0.346,0.52 0.476,0.563 0.216,0.13 0.692,0.086 1.429,-0.13 0.13,0 0.13,-0.347 0.087,-0.996 -0.087,-0.606 0.043,-0.953 0.303,-0.996 l 0.39,0.087 c 0.043,-0.043 0.173,-0.476 0.433,-1.212 0.433,-0.173 0.909,-0.52 1.429,-0.953 0.649,0.087 1.039,0.087 1.212,0 0.216,-0.173 0.303,-0.39 0.216,-0.649 -0.173,-0.26 -0.303,-0.476 -0.346,-0.649 0.086,-0.346 0.13,-0.606 0.173,-0.736 -0.347,-0.13 -0.563,-0.303 -0.563,-0.52 0,-0.087 0.173,-0.433 0.563,-1.039 0.086,-0.217 0.303,-0.347 0.606,-0.347 0.303,-0.043 0.476,-0.13 0.563,-0.216 0.086,-0.13 0.13,-0.433 0.13,-0.909 0,-0.39 0.346,-0.779 0.996,-1.169 0.216,-0.087 0.52,-0.26 0.909,-0.433 0.173,-0.086 0.39,-0.26 0.649,-0.563 0.173,-0.13 0.433,-0.216 0.866,-0.346 l 1.472,-0.866 c 0,0 0.043,-0.043 0.13,-0.086 1.818,-0.996 2.728,-1.645 2.771,-1.862 -0.26,-0.433 -0.477,-0.779 -0.736,-1.083 l -0.649,0.087 c -0.26,0 -0.606,0 -1.083,-0.087 -0.563,-0.13 -0.866,-0.26 -0.952,-0.39 0.129,-0.13 0.346,-0.39 0.606,-0.866 0.303,-0.476 0.476,-0.779 0.52,-0.909 0.043,-0.043 0.39,-0.043 1.083,-0.087 0.13,0 0.26,-0.043 0.476,-0.086 0.866,0 1.386,0 1.559,0.043 0.26,0.043 0.996,0.26 2.122,0.649 0.953,0.346 1.689,0.476 2.165,0.433 l 1.472,-0.13 c 0.13,-0.173 0.216,-0.52 0.26,-1.083 0.043,-0.043 0.043,-0.087 0.043,-0.087 0.087,-0.173 0.173,-0.303 0.303,-0.39 0.043,-0.043 0.13,-0.043 0.303,-0.13 0.13,-0.043 0.52,-0.26 1.125,-0.606 l 0.13,-0.086 -0.174,-0.39 c 0.52,-0.347 0.78,-0.649 0.78,-0.91 -0.087,-0.173 -0.13,-0.346 -0.087,-0.433 l -0.26,-0.347 c -0.563,-0.043 -0.909,-0.13 -1.083,-0.216 -0.216,-0.173 -0.346,-0.476 -0.259,-0.866 0.129,-0.433 0.216,-0.736 0.259,-0.866 0.303,-1.083 0.217,-1.862 -0.173,-2.424 -0.043,-0.043 -0.26,-0.26 -0.606,-0.65 0.303,-0.52 0.477,-0.866 0.52,-0.996 0.216,-0.13 0.606,-0.26 1.169,-0.346 0.086,-0.13 0.13,-0.477 0.173,-1.083 0,-0.563 0.087,-0.953 0.347,-1.212 0.086,-0.086 0.39,-0.26 0.866,-0.52 0.217,-0.086 0.173,-0.39 0,-0.953 -0.26,-0.606 -0.39,-0.953 -0.346,-0.996 0.086,-0.043 0.216,0 0.39,0.043 l 0.086,-0.13 c 0,-0.13 -0.043,-0.26 -0.13,-0.39 -0.173,-0.173 -0.26,-0.303 -0.26,-0.346 -0.086,-0.433 -0.216,-0.693 -0.303,-0.823 v -0.173 c 0.13,-0.173 0.433,-0.347 0.866,-0.563 0.043,-0.043 0.086,-0.217 0.086,-0.606 0.043,-0.346 0.26,-0.692 0.736,-1.039 0.086,-0.173 0.086,-0.476 0,-0.866 -0.087,-0.433 -0.13,-0.736 -0.087,-0.866 0.087,-0.346 0.13,-0.563 0.173,-0.692 0.043,-0.303 -0.043,-0.52 -0.26,-0.779 -0.173,-0.13 -0.649,-0.043 -1.385,0.346 -0.173,-0.043 -0.26,-0.216 -0.303,-0.476 0.043,-0.087 0.173,-0.347 0.433,-0.693 0.26,-0.39 0.433,-0.563 0.52,-0.606 0.129,-0.086 0.476,-0.043 1.082,0.217 0.13,-0.563 0.26,-0.91 0.52,-1.169 0.433,-0.087 0.693,-0.26 0.78,-0.433 -0.043,-0.173 -0.563,-0.606 -1.559,-1.299 l -0.043,-0.173 c 0.216,-0.52 0.779,-0.779 1.731,-0.866 0.087,0 0.26,0 0.52,0 0.173,-0.043 0.303,-0.13 0.346,-0.26 v -0.173 l -0.086,-0.13 -0.606,-0.303 c -0.13,-0.043 -0.39,-0.433 -0.736,-1.039 -0.217,-0.433 -0.347,-0.779 -0.433,-0.953 h -0.173 l -0.13,-0.086 c 0.043,-0.087 0.043,-0.13 0.043,-0.173 0.13,-0.563 0.173,-0.953 0.086,-1.212 -0.173,-0.216 -0.303,-0.39 -0.346,-0.476 -0.086,-0.043 -0.216,-0.303 -0.39,-0.736 -0.433,-0.563 -0.693,-0.953 -0.823,-1.212 -0.216,-0.173 -0.303,-0.347 -0.39,-0.477 -0.303,-0.476 -0.52,-0.779 -0.563,-0.952 l -0.346,-0.347 c -0.086,-0.043 -0.433,-0.216 -1.169,-0.52 -0.823,-0.52 -1.472,-0.866 -1.948,-1.039 -0.866,-0.216 -1.429,-0.39 -1.732,-0.563 -0.043,0 -0.217,-0.13 -0.52,-0.346 -0.173,-0.173 -0.39,-0.649 -0.52,-1.342 -0.087,-0.346 -0.606,-1.083 -1.472,-2.208 -0.26,-0.39 -0.433,-0.693 -0.563,-0.823 -0.13,-0.173 -0.216,-0.303 -0.26,-0.346 -0.736,-0.606 -1.083,-1.039 -1.083,-1.256 0.043,-0.13 0.13,-0.346 0.303,-0.692 0.043,-0.13 0.13,-0.693 0.216,-1.775 0.043,-0.173 0.087,-0.433 0.173,-0.736 0.043,-0.173 0,-0.347 -0.086,-0.606 -0.13,-0.216 -0.39,-0.39 -0.736,-0.476 -0.39,-0.087 -0.693,-0.13 -0.866,-0.173 -0.217,-0.043 -0.52,-0.173 -0.953,-0.303 -0.303,-0.303 -0.52,-0.52 -0.693,-0.606 -0.26,-0.173 -0.433,-0.26 -0.433,-0.303 l -0.173,-0.173 c -0.343,-0.601 -0.689,-1.294 -0.905,-2.117", + "Donetsk": "m 492.458,167.583 c -0.779,-0.086 -1.169,-0.173 -1.256,-0.216 -0.346,-0.78 -0.822,-1.169 -1.342,-1.169 0,0 0,0.043 -0.043,0.087 -0.043,0.563 -0.13,0.909 -0.26,1.083 l -1.472,0.13 c -0.476,0.043 -1.212,-0.087 -2.165,-0.433 -1.125,-0.39 -1.862,-0.606 -2.122,-0.649 -0.173,-0.043 -0.693,-0.043 -1.559,-0.043 -0.216,0.043 -0.346,0.086 -0.476,0.086 -0.693,0.043 -1.04,0.043 -1.083,0.087 -0.043,0.13 -0.216,0.433 -0.52,0.909 -0.26,0.476 -0.477,0.736 -0.606,0.866 0.086,0.13 0.39,0.26 0.952,0.39 0.477,0.087 0.823,0.087 1.083,0.087 l 0.649,-0.087 c 0.26,0.303 0.477,0.649 0.736,1.083 -0.043,0.217 -0.953,0.866 -2.771,1.862 -0.087,0.043 -0.13,0.086 -0.13,0.086 l -1.472,0.866 c -0.433,0.13 -0.693,0.216 -0.866,0.346 -0.26,0.303 -0.476,0.477 -0.649,0.563 -0.39,0.173 -0.693,0.346 -0.909,0.433 -0.649,0.39 -0.996,0.779 -0.996,1.169 0,0.476 -0.043,0.779 -0.13,0.909 -0.087,0.086 -0.26,0.173 -0.563,0.216 -0.303,0 -0.52,0.13 -0.606,0.347 -0.39,0.606 -0.563,0.952 -0.563,1.039 0,0.216 0.216,0.39 0.563,0.52 -0.043,0.13 -0.087,0.39 -0.173,0.736 0.043,0.173 0.173,0.39 0.346,0.649 0.087,0.26 0,0.477 -0.216,0.649 -0.173,0.087 -0.563,0.087 -1.212,0 -0.52,0.433 -0.996,0.779 -1.429,0.953 -0.26,0.736 -0.39,1.169 -0.433,1.212 l -0.39,-0.087 c -0.26,0.043 -0.39,0.39 -0.303,0.996 0.043,0.649 0.043,0.996 -0.087,0.996 -0.736,0.216 -1.212,0.26 -1.429,0.13 -0.13,-0.043 -0.303,-0.217 -0.476,-0.563 -0.173,-0.217 -0.39,-0.347 -0.65,-0.303 -0.216,0.043 -0.346,0.086 -0.476,0.173 -0.086,0.13 -0.13,0.39 -0.13,0.736 -0.043,0.303 -0.13,0.52 -0.26,0.649 -0.086,0.043 -0.303,0.043 -0.563,-0.086 -0.26,-0.173 -0.433,-0.26 -0.52,-0.26 -0.173,-0.043 -0.433,0.303 -0.779,0.909 v 0.346 c 0.043,0.13 0.216,0.26 0.563,0.347 0.303,0.13 0.476,0.216 0.563,0.346 -0.087,0.346 -0.217,0.606 -0.347,0.736 l -0.173,0.043 c -0.303,-0.303 -0.52,-0.52 -0.649,-0.649 l -0.217,-0.043 c -0.173,-0.086 -0.563,-0.303 -1.169,-0.606 -0.823,-0.433 -1.342,-0.693 -1.559,-0.736 -0.563,-0.13 -1.083,0.043 -1.516,0.52 -0.26,0.346 -0.433,0.563 -0.563,0.692 l -0.173,0.043 c -0.953,-0.086 -1.515,-0.13 -1.602,-0.173 -0.13,-0.043 -0.477,-0.216 -1.039,-0.563 -0.087,-0.043 -0.26,-0.043 -0.563,-0.043 -0.563,-0.043 -0.779,0.39 -0.606,1.342 0.13,0.649 0.26,1.169 0.346,1.429 0.217,0.52 0.303,0.953 0.26,1.299 0,0.26 -0.043,0.693 -0.086,1.299 l -0.043,0.693 c -0.043,0.216 0.13,0.606 0.477,1.169 0.086,0.086 0.173,0.433 0.26,1.039 l 0.13,0.087 c 0.26,0.043 0.736,-0.043 1.342,-0.217 0.173,0.043 0.26,0.217 0.303,0.52 -0.173,0.087 -0.346,0.173 -0.433,0.217 -0.216,0.13 -0.346,0.39 -0.346,0.866 l -0.563,0.13 c -0.13,0.13 -0.173,0.693 0,1.646 l 0.043,0.086 c 0.173,-0.086 0.52,-0.13 1.125,-0.13 0.39,-0.043 0.606,-0.693 0.649,-2.078 0.13,-0.086 0.477,-0.13 0.996,-0.173 0.519,-0.043 0.866,-0.043 1.083,-0.043 l 0.13,0.13 c 0.086,0.216 0.173,0.649 0.216,1.299 0.043,0.606 0.043,0.952 -0.043,1.039 -0.779,0.216 -1.125,0.39 -1.169,0.52 0,0.13 0.13,0.476 0.303,0.996 l -0.043,0.13 -0.779,0.433 c 0.173,0.563 0.13,1.039 -0.086,1.516 0.086,0.216 0.303,0.346 0.649,0.476 -0.173,0.346 -0.649,0.649 -1.342,0.823 v 0.13 c 0,0.216 0.043,0.606 0.26,1.082 0.087,0.823 0.13,1.299 0.13,1.386 0,0.173 -0.043,0.433 -0.173,0.909 -0.087,0.346 -0.087,0.606 0.043,0.866 0,0.129 0.043,0.173 0.13,0.216 h 0.173 c 0.13,-0.087 0.303,-0.173 0.563,-0.216 0.26,-0.087 0.477,-0.087 0.563,0.043 0.087,0.13 0.13,0.347 0.13,0.563 0.477,0 0.823,0.043 1.039,0.173 l 0.087,0.086 0.043,0.823 c 0.043,0.173 0.086,0.39 0.173,0.736 0.043,0.13 0.087,0.346 0.087,0.606 l 0.173,1.039 c 0.13,0.736 0.173,1.255 0.13,1.515 -0.043,0.39 -0.303,0.649 -0.693,0.736 -0.563,0.086 -0.866,0.173 -0.952,0.259 -0.087,0.087 -0.13,0.173 -0.087,0.303 0.173,1.169 0.303,1.905 0.433,2.251 0,0.13 0.086,0.303 0.216,0.52 0.217,1.039 0.173,1.646 -0.13,1.948 -0.952,0.823 -1.472,1.169 -1.645,1.126 l -0.649,-0.26 c -0.26,-0.216 -0.433,-0.346 -0.563,-0.39 -0.346,-0.043 -0.606,-0.13 -0.779,-0.173 -0.433,-0.086 -0.649,-0.26 -0.736,-0.39 l -0.087,-0.476 c -0.13,-0.173 -0.303,-0.303 -0.563,-0.39 -0.26,-0.043 -0.52,-0.087 -0.649,-0.13 -0.736,-0.217 -1.082,-0.347 -1.169,-0.303 -0.433,0.13 -0.779,0.26 -0.996,0.303 l -0.217,-0.043 c -0.303,-0.043 -0.606,0.043 -0.953,0.26 -0.173,0.303 -0.216,0.866 -0.129,1.646 0.086,0.779 0,1.429 -0.217,1.862 0,0.086 0.087,0.216 0.303,0.476 0,0.13 -0.043,0.39 -0.216,0.909 l 0.043,0.13 c 0.78,0.087 1.212,0.216 1.299,0.433 0.39,0.909 0.606,1.385 0.606,1.429 -0.086,0.086 -0.736,0.13 -1.905,0.13 l -0.13,0.346 c -0.216,0.043 -0.476,0 -0.822,0 l -0.217,0.13 c -0.086,0.173 -0.086,0.39 -0.086,0.693 -0.043,0.303 0,0.52 0.13,0.649 l 0.909,0.173 0.086,0.086 c 0.217,0.649 0.26,1.083 0.217,1.212 0.173,0.217 0.129,0.823 -0.173,1.732 -0.043,0.086 0,0.13 0.043,0.216 0.259,0.52 0.736,0.693 1.472,0.606 0.173,-0.043 0.433,-0.087 0.866,-0.217 0.173,0.13 0.26,0.91 0.346,2.295 l 0.52,0.52 c 0.13,0.173 0.26,0.477 0.39,0.996 0.087,0.477 0.217,0.78 0.303,0.91 0.173,0.173 0.606,0.303 1.385,0.433 0,0.13 0,0.217 -0.043,0.26 -0.649,0.173 -1.039,0.347 -1.083,0.39 0.216,0.606 0.39,0.953 0.563,0.996 0.303,-0.043 0.476,-0.043 0.606,0.043 0.087,0.087 0.043,0.303 -0.043,0.649 -0.129,0.433 -0.129,0.693 -0.129,0.91 l 0.129,0.086 c 0.303,0.086 0.866,-0.086 1.775,-0.649 0.13,0.086 0.217,0.173 0.346,0.303 l 0.39,0.65 c 0.259,0.433 0.736,1.082 1.429,1.948 0.13,0 0.346,-0.13 0.693,-0.433 0.26,-0.303 0.606,-0.52 1.039,-0.736 h 0.173 c 0.39,0.692 0.823,1.039 1.299,1.083 0.217,0.173 0.52,0.606 0.91,1.299 0.086,0.086 0.303,0.26 0.606,0.476 0.13,0.086 0.346,0.303 0.563,0.649 0.216,0.13 0.52,0.347 0.909,0.606 0.086,0.086 0.346,0.476 0.779,1.212 0.043,0.043 0.086,0.13 0.13,0.26 l 0.173,0.043 c 0.087,0 0.217,-0.086 0.347,-0.26 l 0.043,-0.303 0.086,-0.13 c 0.39,0 0.866,0.086 1.429,0.26 0.173,0 0.433,-0.043 0.736,-0.13 l 0.13,0.087 c 0,0.39 -0.26,0.866 -0.736,1.515 0,0.13 0,0.39 0.043,0.779 -0.477,0.39 -0.649,0.996 -0.52,1.732 0.043,0.13 0.043,0.347 0.13,0.649 -0.087,0.087 -0.347,0.216 -0.693,0.433 -0.347,-0.866 -0.779,-1.299 -1.299,-1.256 -0.303,0.087 -0.52,0.26 -0.606,0.52 -0.087,0.173 -0.13,0.433 -0.26,0.822 -0.086,0.217 -0.26,0.563 -0.476,1.039 v 0.866 c -0.216,0.216 -0.649,0.39 -1.342,0.52 -0.13,0.043 -0.433,0.043 -0.866,0 -0.477,-0.043 -0.736,-0.13 -0.823,-0.216 0,-0.13 -0.087,-0.217 -0.13,-0.26 -0.303,0.043 -0.476,0.043 -0.649,0 l -0.26,-0.347 c -0.303,0.043 -0.563,0.173 -0.693,0.39 -0.173,0.26 -0.216,0.52 -0.043,0.736 0.087,0.086 0.26,0.303 0.477,0.606 0.13,0.26 0.216,0.693 0.303,1.299 0.13,0.649 0.13,1.083 0.043,1.299 -0.216,0.216 -0.606,0.347 -1.255,0.347 -0.693,0 -1.126,0.043 -1.212,0.173 l -0.086,0.173 c 0.086,0.173 0.346,0.433 0.736,0.866 l 0.433,0.433 c 0,0 0.26,0.087 0.822,0.303 0.693,0.303 1.169,0.606 1.386,0.866 0.303,0.39 0.563,0.996 0.866,1.818 0,0.13 0.129,0.563 0.303,1.299 0.606,0.39 0.996,0.736 1.255,1.039 h 0.13 c 0.043,-0.216 0.173,-0.476 0.39,-0.693 l 0.13,0.043 c 0.086,0.13 0.303,0.346 0.563,0.649 0.217,0.173 0.52,0.433 0.953,0.779 0.043,0.13 -0.086,0.303 -0.346,0.52 -0.303,0.303 -0.477,0.476 -0.52,0.606 0.043,0.13 0.173,0.347 0.433,0.65 0.217,0.26 0.347,0.476 0.39,0.692 -0.043,0.086 -0.347,0.347 -0.866,0.736 h -0.173 c -0.303,-0.303 -0.563,-0.39 -0.736,-0.39 -0.086,0.129 -0.216,0.216 -0.347,0.26 0,0 -0.129,0.13 -0.389,0.433 -0.087,0.043 -0.39,0.39 -0.866,0.996 -0.043,0.13 0,0.303 0.13,0.563 l 0.823,1.688 c 0.043,-0.043 0.086,-0.043 0.13,-0.087 0.303,-0.13 0.779,-0.346 1.385,-0.606 0.347,-0.173 0.91,-0.39 1.732,-0.649 0.39,-0.216 0.953,-0.563 1.689,-1.083 0.563,-0.216 0.996,-0.303 1.299,-0.216 0.303,0.086 0.692,0.39 1.212,0.953 0,0 0.173,0.086 0.52,0.259 0.26,0.087 0.389,0.217 0.433,0.303 0.043,0.173 0,0.346 -0.086,0.606 -0.173,0.26 -0.26,0.433 -0.217,0.52 l 0.043,0.13 0.173,0.043 c 0.303,-0.129 0.779,-0.822 1.385,-2.078 0.433,-0.823 0.736,-1.342 0.91,-1.559 0.086,-0.173 0.303,-0.347 0.606,-0.606 0.26,-0.433 0.693,-1.126 1.212,-2.035 0.39,-0.433 0.909,-1.083 1.688,-1.905 0,0 0.13,-0.26 0.433,-0.693 0.173,-0.303 0.346,-0.52 0.563,-0.649 0.26,-0.13 0.606,-0.173 1.083,-0.087 0.173,0 0.39,0 0.693,0.043 0.26,0.043 0.649,0.216 1.126,0.476 0.303,0.043 0.822,0.087 1.515,0.043 0.26,0.043 0.692,0.13 1.255,0.216 0.347,0 0.779,-0.13 1.386,-0.389 0.086,-0.087 0.216,-0.13 0.39,-0.13 0.736,-0.433 1.299,-0.649 1.732,-0.736 0.13,0 0.346,0 0.649,0.043 0.26,-0.043 0.39,-0.043 0.433,-0.043 0,0 0.433,0.173 1.299,0.52 0.086,0.043 0.346,-0.086 0.692,-0.39 0.13,0 0.217,0 0.26,0.043 0.303,0.129 0.823,0.303 1.602,0.649 0.173,-0.043 0.433,-0.173 0.736,-0.433 0.303,-0.26 0.52,-0.347 0.692,-0.26 0.217,0.173 0.563,0.476 0.996,0.866 0.13,0.13 0.346,0.26 0.649,0.433 l 0.173,0.26 c -0.043,0.346 -0.173,0.649 -0.477,0.909 -0.26,0.303 -0.39,0.52 -0.39,0.693 l 0.173,0.043 c 0.13,-0.043 0.26,-0.13 0.39,-0.217 l 1.039,-1.342 0.303,-0.303 c 0.26,-0.303 0.563,-0.736 0.996,-1.342 l 0.13,-0.13 c 0.173,-0.13 0.433,-0.303 0.779,-0.52 -0.173,-0.433 -0.26,-0.909 -0.346,-1.429 l -0.043,-0.477 c -0.043,-0.303 -0.043,-0.52 -0.086,-0.649 -0.13,-0.649 -0.173,-0.996 -0.173,-1.039 0,-0.043 0,-0.043 0,-0.086 v -0.043 c 0,-0.043 0,-0.043 0.043,-0.086 l 0.823,-1.212 c 0.13,-0.13 0.303,-0.26 0.476,-0.39 0.953,-0.563 1.472,-0.953 1.602,-1.083 0.086,-0.216 0.173,-0.563 0.173,-0.953 0,-0.39 -0.087,-0.692 -0.217,-0.952 -0.086,-0.087 -0.563,-0.087 -1.429,-0.043 -0.043,0 -0.216,0.043 -0.606,0.13 -0.173,0.043 -0.39,0 -0.606,-0.086 -0.173,-0.087 -0.303,-0.173 -0.303,-0.173 -0.26,-0.303 -0.217,-0.736 0.13,-1.342 0.173,-0.303 0.433,-0.693 0.822,-1.169 0.087,-0.217 0.26,-0.477 0.52,-0.866 l 0.606,-0.606 c 0.043,-0.043 0.086,-0.173 0.13,-0.39 v -1.602 c -0.13,-0.693 -0.173,-1.212 -0.217,-1.559 0.043,-0.563 0.043,-0.996 0,-1.256 0,-0.129 0,-0.216 0.043,-0.303 0.173,-0.477 0.26,-0.779 0.346,-1.04 0.043,-0.389 0.087,-0.736 0.13,-0.909 0.303,-0.347 0.563,-0.693 0.693,-0.866 0.086,-0.13 0.173,-0.433 0.346,-0.953 0.13,-0.39 0.346,-0.649 0.649,-0.779 0.303,-0.173 0.606,-0.26 0.909,-0.173 0.433,0.043 0.693,0.087 0.779,0.043 0.216,-0.043 0.476,-0.216 0.823,-0.606 0.303,-0.173 0.909,-0.217 1.775,-0.043 1.386,0.087 2.511,-0.13 3.42,-0.606 0.173,-0.13 0.39,-0.26 0.649,-0.52 0.217,-0.259 0.477,-0.692 0.78,-1.255 0.086,-0.086 0.303,-0.216 0.563,-0.433 0.303,-0.173 0.52,-0.216 0.693,-0.173 0.13,0.043 0.303,0.173 0.606,0.39 0.433,0.303 0.78,0.216 1.039,-0.217 0.13,-0.173 0.217,-0.866 0.303,-2.121 0.043,-0.433 0.303,-1.299 0.823,-2.468 0.216,-0.823 0.433,-1.472 0.606,-1.818 0.26,-0.649 0.736,-1.083 1.386,-1.299 0.39,-0.173 1.472,-0.173 3.247,-0.043 0.173,0.043 0.39,0.087 0.736,0.173 0.086,0 0.303,-0.086 0.563,-0.173 0.173,-0.043 0.347,-0.043 0.52,-0.043 0.433,-1.342 0.649,-2.208 0.649,-2.684 -0.043,-0.086 -0.216,-0.26 -0.606,-0.476 -0.26,-0.217 -0.39,-0.39 -0.346,-0.606 0.216,-0.996 0.346,-1.559 0.346,-1.688 0.043,-0.39 -0.086,-0.649 -0.39,-0.779 -0.26,-0.087 -0.563,-0.173 -0.952,-0.26 -1.342,-0.347 -2.728,-0.433 -4.244,-0.303 -0.26,0 -0.433,-0.043 -0.476,-0.086 l -0.909,-1.126 c -0.216,-0.26 -0.173,-0.649 0.13,-1.169 0.433,-0.736 0.606,-1.125 0.606,-1.125 -0.043,-0.303 -0.346,-0.563 -0.952,-0.909 -0.779,-0.477 -1.559,-0.823 -2.295,-1.04 -0.346,-0.086 -0.563,-0.173 -0.563,-0.173 -0.52,-0.26 -0.91,-0.39 -1.126,-0.52 -1.169,-0.477 -1.732,-0.779 -1.818,-0.953 0.13,-0.606 0.216,-1.039 0.216,-1.256 -0.26,-0.519 -0.433,-0.866 -0.52,-1.169 -0.216,-0.909 -0.39,-1.559 -0.606,-1.948 l -0.087,-0.043 c -0.303,0 -0.996,0.087 -2.165,0.26 -0.303,0.043 -0.866,0.043 -1.646,0 -0.086,0 -0.216,-0.087 -0.39,-0.26 -0.216,-0.866 -0.303,-1.299 -0.303,-1.299 l -0.216,-0.736 0.13,-0.086 0.13,-0.087 c 0.26,0 0.649,-0.043 1.212,-0.13 0.433,-0.13 0.693,-0.346 0.736,-0.779 0.086,-0.39 -0.13,-0.866 -0.563,-1.429 -0.476,-0.303 -0.822,-0.563 -0.952,-0.779 -0.13,-0.13 -0.173,-0.347 -0.216,-0.563 0,-0.303 -0.043,-0.52 -0.087,-0.606 -0.303,-0.347 -0.476,-0.606 -0.52,-0.823 l -0.173,-0.086 c -0.39,0.606 -0.779,0.822 -1.125,0.649 -0.086,-0.217 -0.13,-0.347 -0.26,-0.347 -0.779,0.043 -1.256,-0.13 -1.386,-0.563 -0.043,-0.086 -0.043,-0.346 -0.043,-0.779 0,-0.433 0.086,-0.823 0.216,-1.169 0.043,-0.13 0.086,-0.26 0.13,-0.303 0.043,-0.259 0.086,-0.563 0.043,-0.866 -0.13,-0.13 -0.39,-0.216 -0.736,-0.26 -0.39,-0.086 -0.606,-0.173 -0.779,-0.303 -0.173,-0.173 -0.173,-0.52 0,-0.996 0.216,-0.563 0.26,-0.953 0.13,-1.126 l -0.476,-1.039 c 0.043,-0.26 0.13,-0.433 0.13,-0.563 -0.086,-0.433 -0.173,-0.736 -0.173,-0.866 -0.086,-0.779 -0.13,-1.255 -0.043,-1.472 0,-0.086 0.347,-0.476 1.04,-1.125 0.433,-0.477 0.692,-0.866 0.779,-1.256 l -0.043,-0.13 -0.13,-0.086 c -0.39,-0.13 -0.736,-0.043 -1.039,0.26 l -0.086,-0.086 c -0.043,-0.477 -0.043,-0.823 0.043,-1.04 0.086,-0.173 0.26,-0.389 0.477,-0.649 0.52,-0.779 0.606,-1.385 0.259,-1.731 l -0.39,-0.433 c -0.129,-0.13 -0.129,-0.303 -0.043,-0.476 0.13,-0.26 0.173,-0.433 0.173,-0.477 l -0.13,-0.26 c -0.043,-0.086 -0.346,-0.13 -0.866,-0.216 -0.433,-0.087 -0.649,-0.216 -0.649,-0.39 0.043,-0.39 0.043,-0.693 0.043,-0.866 -0.087,-0.909 -0.303,-1.645 -0.693,-2.122 -0.433,-0.216 -0.823,-0.346 -1.083,-0.346 -0.303,0 -0.52,0.043 -0.649,0.043 -0.303,-0.13 -0.563,-0.173 -0.693,-0.173 -0.649,-0.043 -1.125,-0.086 -1.429,-0.13 -0.39,-0.086 -0.649,-0.13 -0.866,-0.086 l -0.087,0.086 c -0.13,-0.303 -0.259,-0.52 -0.346,-0.693 l -0.173,-0.086 -0.476,0.043 -0.13,-0.087 c -0.043,-0.086 0,-0.26 0.086,-0.476 0.087,-0.26 0.173,-0.39 0.26,-0.477 0.173,-0.086 0.39,-0.086 0.736,0.043 -0.043,-0.303 -0.043,-0.52 0,-0.649 0.476,0.043 0.779,0 0.952,-0.13 0.217,-0.563 -0.043,-1.515 -0.822,-2.857 -0.13,-0.13 -0.217,-0.217 -0.26,-0.303 -0.043,-0.173 0.13,-0.476 0.563,-0.909 0.216,-0.217 0.259,-0.649 0.129,-1.342 0.087,-0.693 0.217,-1.256 0.347,-1.646 -1.125,-0.086 -1.732,-0.13 -1.732,-0.086 l -0.996,0.909 c -0.173,0.13 -0.303,0.086 -0.477,-0.043 -0.649,-0.433 -1.385,-0.78 -2.208,-1.04 -0.086,0 -0.173,-0.086 -0.26,-0.173 -0.043,-0.087 0.043,-0.477 0.303,-1.256 0.087,-0.043 0.52,-0.086 1.299,-0.086 0.134,-0.087 0.091,-0.261 0.005,-0.521", + "Dnipropetrovsk": "m 387.853,173.255 0.216,0.563 c 0,0.476 -0.346,0.952 -0.909,1.429 -0.649,0.52 -0.996,0.909 -1.039,1.083 0,0.173 0.13,0.26 0.346,0.303 l 0.303,-0.086 0.173,0.086 c 0.086,0.303 0,0.477 -0.217,0.563 -0.779,0 -1.299,0.173 -1.559,0.52 -0.043,0.043 -0.26,0.606 -0.649,1.688 -0.043,0.13 -0.13,0.303 -0.303,0.606 -0.26,0.692 -0.303,1.212 -0.043,1.515 0.087,0.086 0.26,0.216 0.477,0.39 0.433,0.433 0.649,0.736 0.649,0.953 v 0.173 l 0.087,0.779 -0.043,0.173 c -0.173,0.087 -0.303,0.087 -0.477,-0.043 l -0.173,0.043 c 0,0.26 -0.087,0.477 -0.26,0.606 -0.173,0.173 -0.26,0.39 -0.303,0.736 0,0.173 0,0.303 0,0.303 l 0.649,0.476 0.043,0.13 c -0.259,0.433 -0.649,0.823 -1.255,1.212 0,0 0,0 0.043,0 0.433,0.216 1.083,0.649 1.905,1.342 0.13,0.13 0.303,0.303 0.52,0.563 0.173,0.173 0.476,0.346 0.909,0.563 0.26,0.216 0.563,0.52 0.952,0.952 0.433,0.347 0.823,0.52 1.169,0.606 0.129,0.043 0.39,0.13 0.736,0.173 0.173,0.13 0.39,0.39 0.649,0.866 0.26,0.52 0.433,0.823 0.606,0.953 0.173,0.13 0.519,0.303 1.082,0.433 0.433,0.087 0.779,0.347 1.083,0.693 0.303,0.39 0.26,0.823 -0.043,1.256 0.13,0.216 0.26,0.346 0.39,0.39 l 0.779,0.173 c 0.13,0.043 0.39,0.087 0.736,0.087 0.173,0.043 0.476,0.216 0.866,0.476 0.477,0.173 0.779,0.26 0.823,0.346 1.039,0.823 1.646,1.256 1.818,1.342 l -0.216,0.347 1.645,0.563 c 0.39,0.217 0.953,0.043 1.602,-0.39 0.173,-0.13 0.736,-0.173 1.689,-0.173 0.52,0 1.125,0.173 1.861,0.52 0.087,0.086 0.606,0.303 1.559,0.736 0.216,0.173 0.692,0.433 1.429,0.779 0.173,0.173 0.26,0.39 0.26,0.736 -0.043,0.173 -0.043,0.476 -0.086,0.909 0,0.433 0.216,0.779 0.736,0.996 0.26,0.13 0.52,0.476 0.736,1.039 0.043,0.173 0.087,0.736 0.087,1.646 0,0.649 0.043,1.039 0.13,1.212 0.476,0.866 0.736,1.342 0.736,1.429 0.086,0.563 0.26,1.083 0.52,1.645 0.26,0.52 0.173,1.126 -0.303,1.775 -0.347,0.563 -0.39,1.212 0,2.078 0.216,0.52 0.129,0.909 -0.303,1.083 0.13,-0.043 0.216,-0.043 0.303,-0.086 0.043,0 0.129,-0.043 0.259,-0.087 l 1.646,-0.303 0.216,0.043 c 0.26,0 0.477,0.043 0.65,0.173 1.082,0.563 1.688,0.909 1.905,0.996 0.216,0.13 1.169,0.217 2.771,0.39 0.39,0.087 0.996,0.217 1.775,0.39 0.043,0 0.173,0.043 0.26,0.13 0.346,0.173 0.779,0.173 1.385,-0.043 0.216,-0.043 0.433,-0.303 0.649,-0.823 0.52,-0.433 1.299,-0.736 2.251,-0.996 0.736,-0.173 1.212,-0.129 1.472,0.13 0.13,0.13 0.433,0.519 0.866,1.083 0.043,0.043 0.563,0.129 1.646,0.346 0.173,0 0.346,0.26 0.563,0.649 0.216,0.39 0.39,0.606 0.649,0.649 0.043,-0.043 0.216,-0.13 0.476,-0.26 0.173,-0.13 0.346,-0.217 0.52,-0.303 1.126,-0.563 2.122,-0.866 2.857,-0.779 0.433,0 0.606,0.173 0.563,0.433 -0.173,0.822 -0.173,1.342 0.043,1.645 -0.086,0.39 -0.043,0.65 0,0.866 0.346,0.173 0.909,-0.13 1.732,-0.953 0.086,-0.043 0.173,-0.043 0.303,-0.043 0.087,0.087 0.13,0.217 0.173,0.433 0,0.173 -0.173,0.433 -0.433,0.736 -0.303,0.303 -0.433,0.563 -0.433,0.779 0.086,0.043 0.216,0.13 0.476,0.13 0.303,0.043 0.477,0.086 0.52,0.173 0.217,0.433 0.26,0.996 0.173,1.688 0,0.087 0,0.217 -0.043,0.39 0.346,-0.043 0.563,0.043 0.649,0.303 0.13,0.346 0.173,0.477 0.217,0.477 0.043,0 0.173,-0.087 0.303,-0.26 0.087,-0.087 0.303,-0.087 0.606,-0.087 l 0.043,0.13 c -0.13,0.303 -0.173,0.563 -0.087,0.823 0.087,0.216 0.13,0.346 0.087,0.39 -0.26,0.606 -0.433,1.169 -0.563,1.732 l -0.087,0.173 c -0.13,0.13 -0.303,0.043 -0.52,-0.173 -0.216,-0.26 -0.39,-0.39 -0.563,-0.303 0,0.476 0,0.736 0.043,0.736 l 0.347,0.129 0.086,0.13 c -0.043,0.216 -0.043,0.346 0,0.476 0.216,-0.043 0.39,0 0.52,0.13 v 0.173 l 0.086,0.13 c 0.866,0.086 1.472,0 1.905,-0.216 0.13,-0.13 0.26,-0.477 0.346,-0.996 0.173,-0.086 0.477,-0.13 0.953,-0.086 l 0.086,0.086 c 0.087,0.433 0.087,0.736 0.13,0.953 0,0.13 0,0.26 0.043,0.476 0.086,0.043 0.433,0.086 0.996,0.086 0.086,0.043 0.26,0.173 0.52,0.433 0.216,0.216 0.52,0.303 0.866,0.303 l 0.866,-0.173 c 0.129,-0.13 0.216,-0.433 0.303,-0.823 0.173,-0.173 0.39,-0.259 0.649,-0.303 0.39,0 0.606,0.043 0.693,0.216 0.13,0.26 0.26,0.433 0.303,0.477 0.346,-0.087 0.779,-0.13 1.429,-0.13 0.043,0 0.086,0 0.13,0 0.346,-0.086 0.823,-0.216 1.429,-0.346 0.563,-0.086 1.429,-0.26 2.555,-0.39 0.043,-0.13 0,-0.563 -0.217,-1.212 l -0.086,-0.086 -0.909,-0.173 c -0.13,-0.13 -0.173,-0.346 -0.13,-0.649 0,-0.303 0,-0.52 0.086,-0.693 l 0.217,-0.13 c 0.346,0 0.606,0.043 0.822,0 l 0.13,-0.346 c 1.169,0 1.819,-0.043 1.905,-0.13 0,-0.043 -0.216,-0.52 -0.606,-1.429 -0.086,-0.217 -0.519,-0.346 -1.299,-0.433 l -0.043,-0.13 c 0.173,-0.52 0.216,-0.779 0.216,-0.909 -0.216,-0.26 -0.303,-0.39 -0.303,-0.476 0.217,-0.433 0.303,-1.083 0.217,-1.862 -0.087,-0.78 -0.043,-1.342 0.129,-1.646 0.347,-0.216 0.65,-0.303 0.953,-0.26 l 0.217,0.043 c 0.216,-0.043 0.563,-0.173 0.996,-0.303 0.087,-0.043 0.433,0.086 1.169,0.303 0.13,0.043 0.39,0.086 0.649,0.13 0.26,0.086 0.433,0.216 0.563,0.39 l 0.087,0.476 c 0.086,0.13 0.303,0.303 0.736,0.39 0.173,0.043 0.433,0.13 0.779,0.173 0.13,0.043 0.303,0.173 0.563,0.39 l 0.649,0.26 c 0.173,0.043 0.693,-0.303 1.645,-1.126 0.303,-0.303 0.347,-0.909 0.13,-1.948 -0.13,-0.216 -0.216,-0.39 -0.216,-0.52 -0.13,-0.346 -0.26,-1.082 -0.433,-2.251 -0.043,-0.13 0,-0.216 0.087,-0.303 0.086,-0.086 0.39,-0.173 0.952,-0.259 0.39,-0.087 0.649,-0.347 0.693,-0.736 0.043,-0.26 0,-0.779 -0.13,-1.515 l -0.173,-1.039 c 0,-0.26 -0.043,-0.477 -0.087,-0.606 -0.086,-0.346 -0.13,-0.563 -0.173,-0.736 l -0.043,-0.823 -0.087,-0.086 c -0.216,-0.13 -0.563,-0.173 -1.039,-0.173 0,-0.216 -0.043,-0.433 -0.13,-0.563 -0.086,-0.13 -0.303,-0.13 -0.563,-0.043 -0.259,0.043 -0.433,0.129 -0.563,0.216 h -0.173 c -0.086,-0.043 -0.13,-0.087 -0.13,-0.216 -0.13,-0.26 -0.13,-0.52 -0.043,-0.866 0.13,-0.476 0.173,-0.736 0.173,-0.909 0,-0.087 -0.043,-0.563 -0.13,-1.386 -0.216,-0.476 -0.26,-0.866 -0.26,-1.082 v -0.13 c 0.693,-0.173 1.169,-0.477 1.342,-0.823 -0.346,-0.13 -0.563,-0.26 -0.649,-0.476 0.216,-0.477 0.26,-0.953 0.086,-1.516 l 0.779,-0.433 0.043,-0.13 c -0.173,-0.52 -0.303,-0.866 -0.303,-0.996 0.043,-0.13 0.39,-0.303 1.169,-0.52 0.087,-0.087 0.087,-0.433 0.043,-1.039 -0.043,-0.649 -0.13,-1.083 -0.216,-1.299 l -0.13,-0.13 c -0.217,0 -0.563,0 -1.083,0.043 -0.52,0.043 -0.866,0.087 -0.996,0.173 -0.043,1.385 -0.26,2.035 -0.649,2.078 -0.606,0 -0.952,0.043 -1.125,0.13 l -0.043,-0.086 c -0.173,-0.953 -0.13,-1.516 0,-1.646 l 0.563,-0.13 c 0,-0.476 0.13,-0.736 0.346,-0.866 0.087,-0.043 0.26,-0.13 0.433,-0.217 -0.043,-0.303 -0.13,-0.476 -0.303,-0.52 -0.606,0.173 -1.082,0.26 -1.342,0.217 l -0.13,-0.087 c -0.087,-0.606 -0.173,-0.953 -0.26,-1.039 -1.126,0.13 -1.819,0.173 -2.035,0.217 l -0.26,0.649 -0.217,0.173 -1.602,0.13 c -0.13,0 -0.217,-0.13 -0.39,-0.346 -0.173,-0.26 -0.303,-0.433 -0.303,-0.433 -0.52,-0.433 -0.823,-0.649 -0.866,-0.649 -0.173,-0.086 -0.26,-0.13 -0.346,-0.13 -0.693,-0.433 -1.083,-0.649 -1.125,-0.693 l -0.13,0.043 c -0.476,0.303 -0.822,0.606 -0.996,0.823 -0.476,0.606 -0.822,1.039 -1.039,1.342 l -0.433,0.433 c -0.216,0.216 -0.476,0.649 -0.866,1.299 l -0.087,0.173 0.043,0.13 c 0.346,0.217 0.606,0.39 0.736,0.52 l -0.563,0.217 c -0.303,0.303 -0.563,0.476 -0.693,0.433 -0.39,-0.39 -0.649,-0.606 -0.823,-0.649 -0.39,0.52 -0.649,0.823 -0.822,0.866 l -0.606,-0.606 c 0.52,-0.649 0.909,-1.125 1.169,-1.429 -0.26,-0.39 -0.692,-0.779 -1.299,-1.212 l -0.043,-0.173 c 0.346,-0.563 0.606,-1.04 0.692,-1.342 -0.216,-0.477 -0.692,-0.909 -1.299,-1.429 -0.866,-0.649 -1.385,-1.083 -1.516,-1.212 -0.433,-0.476 -0.822,-0.823 -1.125,-1.039 -0.433,-0.217 -0.649,-0.347 -0.693,-0.39 -0.043,-0.087 -0.043,-0.26 0.043,-0.433 0.086,-0.216 0.13,-0.346 0.217,-0.346 0.779,-0.477 1.082,-0.866 0.996,-1.212 -0.173,-0.217 -0.433,-0.347 -0.779,-0.433 -0.26,-0.043 -0.433,-0.13 -0.52,-0.26 -0.173,-0.563 -0.39,-0.866 -0.649,-0.953 l -0.043,-0.086 c -0.043,-0.13 -0.216,-0.173 -0.477,-0.173 -0.259,-0.043 -0.433,-0.086 -0.519,-0.216 0.13,-0.346 0.173,-0.563 0.13,-0.693 -0.736,-0.043 -1.169,-0.13 -1.299,-0.26 -0.433,-0.563 -0.736,-0.779 -0.909,-0.779 -0.736,0.13 -1.169,0.173 -1.212,0.13 l -0.086,-0.086 c 0,-0.26 0.173,-0.477 0.563,-0.649 0.476,-0.26 0.736,-0.39 0.779,-0.433 0.173,-0.26 0.39,-0.606 0.563,-0.996 l -0.043,-0.129 c -0.649,-0.606 -0.953,-0.996 -0.909,-1.083 l 0.043,-0.39 c 0.043,-0.217 0.13,-0.39 0.26,-0.563 -0.173,-0.217 -0.52,-0.476 -0.953,-0.779 -0.52,-0.303 -0.823,-0.52 -1.039,-0.52 -0.217,0.173 -0.347,0.303 -0.433,0.346 -0.433,0.13 -0.693,0.173 -0.909,0.26 -0.26,0.086 -0.649,0.26 -1.169,0.563 -0.52,0.346 -0.823,0.476 -0.909,0.433 -0.477,0.303 -0.736,0.476 -0.866,0.563 l -0.13,-0.043 -0.13,-0.26 -0.086,-0.087 -0.086,-0.043 c -0.173,-0.087 -0.303,-0.173 -0.433,-0.217 -0.433,0.087 -0.779,0.043 -0.996,-0.13 -0.173,-0.13 -0.303,-0.216 -0.346,-0.26 -0.13,-0.086 -0.26,-0.086 -0.347,-0.043 -0.346,0.303 -0.563,0.433 -0.606,0.433 -0.13,0 -0.216,-0.086 -0.303,-0.303 -0.13,-0.173 -0.217,-0.303 -0.303,-0.303 -0.217,-0.086 -0.477,-0.086 -0.736,0 -0.259,0.043 -0.476,0.043 -0.606,0 -0.39,-0.477 -0.736,-0.779 -0.996,-0.909 -0.347,0.26 -0.563,0.346 -0.65,0.346 l -1.385,-0.26 c -0.13,-0.043 -0.39,0 -0.736,0.13 -0.303,0.087 -0.563,0.13 -0.693,0.043 -0.043,0 -0.39,-0.347 -0.996,-0.909 -0.39,-0.39 -0.779,-0.65 -1.083,-0.866 -0.476,-0.086 -0.822,-0.26 -0.996,-0.39 -0.563,-0.823 -0.996,-1.299 -1.255,-1.429 -0.52,-0.346 -0.823,-0.52 -0.78,-0.52 0,-0.086 0.043,-0.303 0.087,-0.563 l -0.087,-0.13 c -0.649,-0.216 -0.996,-0.346 -1.039,-0.346 l -0.173,-0.216 c -0.649,-0.477 -1.039,-0.78 -1.083,-0.866 -0.087,-0.433 -0.173,-0.693 -0.26,-0.736 -0.779,-0.649 -1.385,-0.996 -1.818,-1.082 -0.303,0.043 -0.52,0.043 -0.649,0.043 -0.303,-0.086 -0.477,-0.13 -0.606,-0.173 -0.13,0 -0.476,0.043 -1.039,0.26 l -0.173,-0.043 c -0.173,-0.346 -0.303,-0.52 -0.433,-0.563 -0.26,0 -0.433,0.087 -0.606,0.217 -0.173,0.216 -0.346,0.346 -0.433,0.346 -0.303,0 -0.563,-0.173 -0.78,-0.52 -0.043,0 -0.043,0 -0.043,0.043 -1.083,-0.823 -1.818,-1.083 -2.295,-0.736 l -0.13,0.347 c -0.086,0.52 -0.173,0.822 -0.216,0.866 -0.13,0.303 -0.347,0.433 -0.693,0.433 -0.173,0 -0.346,-0.087 -0.433,-0.303 -0.043,-0.26 0.13,-0.476 0.477,-0.693 v -0.173 c -0.087,-0.13 -0.347,-0.26 -0.693,-0.39 -0.39,-0.173 -0.649,-0.26 -0.736,-0.217 -0.173,0.303 -0.303,0.477 -0.346,0.52 -0.39,-0.216 -0.649,-0.26 -0.866,-0.173 -0.563,0.173 -0.953,0.39 -1.039,0.649 -0.173,0.346 -0.26,0.52 -0.347,0.563 -0.823,0.216 -1.385,0.39 -1.775,0.476 -0.606,0.26 -1.04,0.39 -1.342,0.433 -0.563,0 -0.866,0.043 -0.953,0.086 -0.303,0.173 -0.476,0.303 -0.606,0.39 -0.606,0.216 -1.039,0.433 -1.342,0.606 -0.477,0.303 -0.866,0.563 -1.083,0.693 -0.39,0.303 -0.649,0.476 -0.866,0.563 -0.303,0.173 -0.606,0.173 -0.953,0.086 -0.52,-0.216 -0.779,-0.303 -0.823,-0.303 -0.127,-0.002 -0.17,0.084 -0.213,0.214 m -15.155,11.128 c -0.043,0.216 -0.086,0.346 -0.086,0.346 -0.043,0.086 -0.216,0.086 -0.476,0.13 -0.087,0.043 -0.13,0.173 -0.173,0.346 l -0.043,0.433 -0.129,0.043 -0.13,-0.087 h -0.173 c 0,0.173 -0.087,0.477 -0.26,0.953 -0.173,0.476 -0.303,0.779 -0.433,0.823 -0.216,-0.086 -0.346,-0.13 -0.433,-0.217 0.087,-0.259 0.087,-0.476 0,-0.692 l -0.13,-0.087 c 0.087,-0.433 0.043,-0.736 -0.043,-0.822 l -0.13,-0.087 -0.13,0.087 c -0.13,0.563 -0.26,0.909 -0.39,0.996 h -0.173 l -0.13,-0.13 c -0.043,-0.086 0,-0.303 0.043,-0.606 0.087,-0.347 0.087,-0.52 0.043,-0.606 -0.39,-0.13 -0.649,-0.173 -0.779,-0.13 -0.086,0.087 -0.303,0.347 -0.563,0.866 -0.173,0.26 -0.476,0.346 -0.952,0.216 -0.043,-0.52 -0.173,-0.823 -0.347,-0.996 -0.39,-0.087 -0.606,-0.13 -0.736,-0.087 -0.173,0.087 -0.26,0.26 -0.303,0.606 l -0.13,0.086 -0.173,-0.043 h -0.13 c -0.129,0.303 -0.216,0.52 -0.303,0.649 h -0.087 c -0.173,-0.173 -0.346,-0.26 -0.606,-0.303 -0.043,-0.087 -0.086,-0.217 -0.043,-0.303 l -0.086,-0.13 c -0.346,-0.043 -0.52,0 -0.606,0.216 -0.043,0.26 -0.13,0.52 -0.217,0.693 l -0.13,0.043 h -0.173 l -0.13,0.086 c 0.043,0.563 0.217,0.909 0.433,1.083 0.346,0.086 0.563,0.39 0.649,0.953 0.13,0.13 0.26,0.26 0.346,0.26 l 1.516,0.216 c 0.173,0 0.347,0.13 0.649,0.39 0.26,0.217 0.476,0.303 0.649,0.303 0.693,0 1.299,0 1.775,0.043 l 0.13,0.086 c 0.043,0.173 0.13,0.39 0.173,0.736 0.822,0.173 1.299,0.26 1.559,0.39 l 0.086,0.087 c -0.173,0.563 -0.346,0.822 -0.563,0.866 -0.692,0.043 -1.039,0.043 -1.082,0.086 -0.217,0.39 -0.433,0.65 -0.563,0.78 l -0.649,0.52 c -0.433,0.303 -1.126,0.649 -2.079,1.082 -0.779,0.303 -1.212,0.52 -1.255,0.52 l -0.043,0.043 c -0.216,0.173 -0.433,0.433 -0.606,0.779 -0.13,0.303 -0.26,0.477 -0.347,0.477 -0.086,0.043 -0.216,0 -0.303,-0.043 -0.087,-0.086 -0.087,-0.216 -0.087,-0.433 l -0.086,-0.043 c -0.173,0.13 -0.692,0.346 -1.559,0.649 -0.823,0.303 -1.472,0.606 -1.862,0.996 -0.173,0.13 -0.26,0.216 -0.303,0.303 -0.043,0.346 0.043,0.692 0.26,0.996 l 0.519,-0.043 c -0.216,0.389 -0.129,0.909 0.173,1.602 0.347,0.693 0.476,1.083 0.476,1.169 l -0.086,0.13 -0.433,0.13 -0.087,0.173 c 0.173,0.26 0.216,0.52 0.216,0.736 0.043,0.086 0.217,0.13 0.433,0.13 -0.043,0.39 0.043,0.909 0.217,1.602 0.043,0.216 0.086,0.822 0.086,1.818 0.043,0.606 0.043,0.953 0.086,1.125 0.477,0.087 0.693,0.217 0.78,0.347 0,0.173 -0.087,0.736 -0.217,1.602 -0.086,0.866 -0.216,1.299 -0.26,1.342 h -1.212 c -0.13,0.433 -0.26,0.693 -0.433,0.91 -0.606,0.346 -0.996,0.563 -1.039,0.779 -0.13,0.26 -0.216,0.433 -0.303,0.563 -0.347,0.606 -0.823,0.649 -1.342,0.173 -0.087,-0.173 -0.173,-0.303 -0.216,-0.347 -0.087,-0.086 -0.173,-0.129 -0.303,-0.173 l -0.13,0.086 c -0.043,0.347 -0.087,0.563 -0.13,0.649 -0.649,0.477 -1.082,0.91 -1.342,1.386 -0.26,0.953 -0.52,1.559 -0.649,1.775 l -0.13,0.087 c -0.13,-0.043 -0.26,-0.26 -0.347,-0.693 -0.086,-0.39 -0.086,-0.649 -0.043,-0.779 l 0.26,-0.347 c 0,-0.563 -0.087,-1.082 -0.347,-1.602 -0.216,-0.043 -0.346,0 -0.433,0.086 0,0.216 -0.043,0.476 -0.087,0.909 -0.043,0.173 -0.13,0.52 -0.26,0.909 0,0.303 0.043,0.606 0.087,0.909 0,0.13 0,0.217 0,0.347 -0.043,0.173 -0.087,0.433 -0.173,0.649 -0.043,0.173 -0.086,0.26 -0.173,0.346 -0.26,0.13 -0.693,0.173 -1.299,0.086 -0.563,-0.043 -0.866,-0.043 -0.952,0 -0.043,0.26 -0.13,0.433 -0.26,0.563 -0.52,0.043 -0.822,0.173 -0.909,0.476 -0.173,0.563 -0.303,0.866 -0.346,0.996 l -0.26,0.13 -0.563,-0.043 c -0.173,0.13 -0.346,0.606 -0.433,1.342 -0.173,0.823 -0.26,1.342 -0.303,1.516 h 0.13 c 0.13,0.13 0.216,0.216 0.26,0.303 -0.477,0.996 -0.693,1.602 -0.649,1.818 0,0.086 0.129,0.216 0.346,0.26 0.26,0.043 0.649,-0.043 1.125,-0.13 0.043,0.043 0.087,0.216 0.173,0.52 0.086,0.26 0.086,0.433 0.086,0.52 -0.303,0.26 -0.433,0.433 -0.476,0.563 -0.086,0.217 -0.086,0.649 0,1.169 0,0.13 -0.086,0.346 -0.173,0.606 -0.129,0.216 -0.129,0.476 -0.129,0.909 l 0.086,0.996 c 0,0.217 0,0.65 -0.086,1.429 0.129,0.086 0.433,0.303 0.909,0.563 0.087,0.087 0.087,0.433 0.087,1.039 -0.043,0 -0.39,0.043 -1.126,0.13 h -0.303 c -1.212,0.303 -1.819,0.563 -1.905,0.736 0.043,0.173 0.303,0.649 0.779,1.559 0.303,0.606 0.477,1.169 0.477,1.602 0,0.173 -0.173,0.433 -0.52,0.779 -0.347,0.346 -0.52,0.649 -0.477,0.909 0.043,0.26 0.26,0.39 0.606,0.477 1.256,0.13 2.035,0.259 2.338,0.303 0.952,0.217 1.688,0.433 2.294,0.649 l 0.52,0.52 c 0.303,0.216 1.039,0.346 2.294,0.26 0.39,-0.043 0.693,0.173 0.866,0.606 0.13,0.216 0.26,0.563 0.39,1.083 0.043,0.13 0.26,0.346 0.606,0.606 0.26,0.216 0.563,0.303 0.779,0.26 l 0.13,-0.086 c 0,-0.39 0.087,-0.649 0.173,-0.779 l 0.13,-0.087 1.515,-0.26 c 1.516,-0.216 2.295,-0.52 2.295,-0.866 -0.086,-0.433 -0.13,-0.779 -0.086,-0.996 0.043,-0.129 0.476,-0.26 1.342,-0.433 0.823,-0.173 1.299,-0.173 1.342,0 0.217,0.39 0.303,0.606 0.217,0.693 -0.303,0.563 -0.477,0.909 -0.433,1.039 0,0.043 0.043,0.173 0.13,0.26 0.043,0.13 0.13,0.39 0.173,0.779 l 0.086,0.086 c 0.086,0 0.433,-0.086 1.039,-0.26 l 0.173,0.043 c 0,0.043 0.086,0.26 0.26,0.779 0.13,0.346 0.26,0.52 0.39,0.52 1.472,-0.043 2.338,-0.087 2.598,-0.173 2.122,-0.736 3.507,-1.082 4.157,-1.169 0.216,0 0.563,-0.043 0.996,-0.043 0.043,0 0.13,0.043 0.303,0.13 0,-0.13 0.043,-0.26 0.043,-0.347 0,-0.346 -0.043,-0.649 -0.043,-0.866 0,-0.39 0.043,-0.65 0.173,-0.736 l 0.173,0.043 c 0.173,0.13 0.39,0.476 0.563,0.996 l 0.173,0.043 c 0.173,-0.13 0.39,-0.303 0.649,-0.606 0.173,-0.129 0.52,-0.216 0.952,-0.346 0.087,-0.043 0.173,-0.173 0.303,-0.346 0.52,-0.476 1.083,-0.649 1.688,-0.52 0.303,0.086 0.563,0.173 0.736,0.346 0.216,0.173 0.476,0.563 0.736,1.169 0.26,0.52 0.477,0.823 0.606,0.866 0.173,0.043 0.303,0 0.477,-0.173 0.173,-0.173 0.346,-0.216 0.476,-0.173 0.303,0.217 0.477,0.347 0.52,0.347 0.259,0.086 0.433,0 0.606,-0.26 0.043,-0.13 0.173,-0.39 0.303,-0.649 0.043,-0.13 0.173,-0.217 0.347,-0.26 0.303,-0.173 0.433,-0.563 0.26,-1.039 -0.043,-0.173 -0.216,-0.39 -0.52,-0.649 -0.303,-0.303 -0.433,-0.52 -0.433,-0.779 0.043,-0.173 0.173,-0.26 0.303,-0.26 0.346,0.087 0.692,0.087 1.039,0.043 0.086,0.043 0.173,0.13 0.173,0.216 0.043,0.086 -0.043,0.26 -0.173,0.606 -0.087,0.216 -0.087,0.476 0.043,0.649 0.13,0.173 0.259,0.216 0.346,0.26 0.173,-0.087 0.346,-0.216 0.606,-0.433 h 0.173 c 0.086,0.043 0.303,0.173 0.606,0.433 0.173,0.086 0.519,0.173 1.039,0.346 0.216,0.216 0.476,0.563 0.736,1.083 0.173,0.043 0.346,0.043 0.476,0 0.217,-0.433 0.347,-0.736 0.477,-0.866 0.086,-0.086 0.433,-0.129 0.996,-0.173 0.433,0 0.606,-0.173 0.52,-0.477 -0.303,-0.346 -0.476,-0.606 -0.606,-0.822 0.043,-0.217 0.346,-0.347 0.952,-0.433 0.13,0 0.39,0 0.693,0.086 0.217,0 0.563,0 0.996,-0.043 0.13,0 0.433,-0.087 0.823,-0.303 0.346,-0.13 0.649,-0.173 0.909,-0.173 0.433,0.043 0.823,0.26 1.212,0.606 0.433,0.433 0.779,0.649 1.039,0.779 0.216,0.086 0.563,0.13 1.039,0.173 0.216,0.086 0.476,0.26 0.866,0.519 0.26,0 0.649,-0.043 1.126,-0.086 0.173,0.043 0.433,0.086 0.736,0.173 0.736,0.043 1.126,0.086 1.256,0.13 0.129,0.043 0.303,0.13 0.563,0.303 0.216,0.173 0.39,0.26 0.563,0.26 0.173,0 0.39,0 0.649,-0.043 0.259,-0.043 0.477,-0.043 0.649,-0.043 0.043,-0.13 0.086,-0.216 0.086,-0.39 0.087,-0.476 0.087,-0.822 0.043,-0.909 -0.086,-0.173 -0.39,-0.477 -0.996,-0.866 v -0.173 l 0.52,-1.472 c 0.173,-0.953 0.303,-1.602 0.39,-2.078 0.13,-0.303 0.216,-0.52 0.26,-0.649 0.26,-0.909 0.346,-1.689 0.346,-2.468 -0.476,-0.087 -0.822,-0.173 -1.039,-0.217 l -0.736,-0.216 -0.043,-0.087 c 0.043,-0.13 0.087,-0.216 0.087,-0.39 0.086,-0.346 0.129,-0.52 0.129,-0.606 -0.129,-0.52 -0.173,-0.823 -0.173,-0.909 0.39,-0.52 0.563,-0.909 0.563,-1.169 -0.173,-0.26 -0.346,-0.39 -0.519,-0.476 -0.736,-0.347 -1.213,-0.65 -1.472,-0.78 -0.433,-0.346 -0.693,-0.52 -0.736,-0.563 -0.13,-0.217 -0.173,-0.477 -0.13,-0.866 0.043,-0.433 0.173,-0.736 0.39,-0.866 l 0.346,-0.043 c 0.087,-0.13 0.217,-0.303 0.433,-0.649 0.52,-0.173 1.126,-0.26 1.819,-0.303 0.086,-0.086 0.129,-0.346 0.216,-0.736 0.086,-0.563 -0.13,-0.909 -0.693,-1.039 -0.736,-0.13 -1.169,-0.347 -1.299,-0.563 -0.043,0 -0.087,-0.39 -0.173,-1.083 l -0.13,-0.043 h -0.649 c -0.13,-0.173 -0.173,-0.39 -0.13,-0.779 l 0.087,-0.086 0.563,-0.173 c 0.087,-0.086 0.173,-0.649 0.217,-1.688 0.086,-0.173 0.129,-0.26 0.129,-0.346 -0.129,-0.39 -0.259,-0.693 -0.303,-0.909 -0.173,-0.39 -0.216,-0.693 -0.13,-0.953 0.173,-0.13 0.52,-0.173 1.082,-0.13 l 0.087,0.13 c -0.087,0.433 -0.043,0.953 0.087,1.646 0.129,0.086 0.259,0.086 0.346,0.129 1.515,-0.043 2.338,-0.086 2.511,-0.216 0.216,-0.173 0.649,-0.693 1.385,-1.645 0.303,0.13 0.649,0.173 1.039,0.173 0.173,-0.043 0.52,-0.086 1.039,-0.216 0.087,-0.043 0.477,0 1.083,0.086 l 0.347,0.043 c 0.303,0 0.606,0 0.822,0 0.087,0 0.173,0 0.217,0 0.433,-0.173 0.52,-0.563 0.303,-1.083 -0.39,-0.866 -0.347,-1.515 0,-2.078 0.476,-0.649 0.563,-1.255 0.303,-1.775 -0.26,-0.563 -0.433,-1.083 -0.52,-1.645 0,-0.087 -0.26,-0.563 -0.736,-1.429 -0.087,-0.173 -0.13,-0.563 -0.13,-1.212 0,-0.909 -0.043,-1.472 -0.087,-1.646 -0.216,-0.563 -0.476,-0.909 -0.736,-1.039 -0.52,-0.216 -0.736,-0.563 -0.736,-0.996 0.043,-0.433 0.043,-0.736 0.086,-0.909 0,-0.347 -0.086,-0.563 -0.26,-0.736 -0.736,-0.346 -1.212,-0.606 -1.429,-0.779 -0.953,-0.433 -1.472,-0.649 -1.559,-0.736 -0.736,-0.347 -1.342,-0.52 -1.861,-0.52 -0.953,0 -1.516,0.043 -1.689,0.173 -0.649,0.433 -1.212,0.606 -1.602,0.39 l -1.645,-0.563 -0.173,0.26 c -0.649,-0.26 -1.125,-0.477 -1.429,-0.606 -0.26,-0.173 -0.476,-0.303 -0.693,-0.433 -0.13,-0.13 -0.259,-0.26 -0.346,-0.26 -1.126,-0.303 -1.905,-0.52 -2.294,-0.649 -0.693,-0.303 -1.212,-0.476 -1.516,-0.563 l -0.606,-0.13 c -0.519,0.086 -0.952,0.043 -1.212,-0.087 -0.173,-0.086 -0.303,-0.39 -0.303,-0.866 -0.086,-0.563 -0.173,-0.953 -0.303,-1.126 -0.173,-0.13 -0.563,-0.26 -1.255,-0.346 -0.736,-0.086 -1.212,-0.216 -1.429,-0.39 -0.26,-0.216 -0.39,-0.52 -0.433,-0.866 0,-0.433 -0.13,-0.736 -0.26,-0.953 -0.217,-0.13 -0.346,-0.26 -0.433,-0.347 l -0.303,-0.346 c -0.043,-0.086 -0.087,-0.13 -0.087,-0.13 -1.255,0.043 -2.294,-0.216 -3.031,-0.736 -0.216,-0.173 -0.433,-0.563 -0.736,-1.212 -0.303,-0.693 -0.649,-1.169 -1.04,-1.472 -0.259,-0.13 -0.476,-0.173 -0.649,-0.13 -0.476,0.173 -0.822,0.303 -1.083,0.39 -0.433,0.13 -0.822,0.086 -1.039,-0.26 -0.086,-0.216 -0.129,-0.39 -0.129,-0.52 -0.13,-0.39 -0.217,-0.649 -0.39,-0.736 -0.217,-0.173 -0.477,-0.346 -0.693,-0.52 -0.347,-0.173 -0.52,-0.303 -0.52,-0.303 -0.217,0.13 -0.347,0.346 -0.477,0.563 -0.173,0.433 -0.26,0.65 -0.26,0.693 -0.13,0.13 -0.173,0.216 -0.216,0.216 -0.086,0.087 -0.173,0.13 -0.216,0.173 l -0.303,-0.13 c -0.13,-0.26 -0.173,-0.39 -0.173,-0.433 -0.043,-0.39 -0.086,-0.649 -0.13,-0.779 -0.173,-0.216 -0.26,-0.39 -0.303,-0.476 -0.043,-0.13 -0.043,-0.433 0,-0.823 0.043,-0.39 0,-0.649 -0.173,-0.779 -0.347,-0.216 -0.649,-0.346 -0.823,-0.433 -0.125,0.261 -0.212,0.564 -0.212,0.911", + "Chernivtsi": "m 125.907,203.39 c -0.173,-0.087 -0.39,-0.217 -0.736,-0.303 -0.086,-0.043 -0.52,-0.043 -1.342,-0.043 l -0.13,0.043 c -1.212,0.13 -2.208,0.476 -2.987,0.953 -0.217,0.129 -0.52,0.39 -0.866,0.736 -1.039,0.736 -1.732,1.299 -2.078,1.646 -0.216,0.259 -0.476,0.649 -0.822,1.212 -0.087,0.13 -0.173,0.26 -0.347,0.477 -0.26,0.346 -0.606,0.822 -1.039,1.472 -0.043,0.043 -0.346,0.173 -0.866,0.39 -0.433,0.087 -0.736,0.433 -0.952,0.996 -0.043,0.086 -0.043,0.217 -0.043,0.39 0,0.26 0,0.52 0.043,0.693 0,0.086 0.086,0.216 0.216,0.476 0.043,0.13 0.086,0.303 0.043,0.433 -0.043,0.043 -0.347,0.086 -0.866,0.086 -0.173,0.043 -0.39,0.217 -0.606,0.52 -0.086,0.173 -0.26,0.433 -0.433,0.736 -0.043,0.13 -0.303,0.433 -0.693,0.909 -0.216,0.26 -0.649,0.39 -1.299,0.26 -0.346,0.216 -0.606,0.649 -0.692,1.299 -0.087,0.779 -0.217,1.256 -0.347,1.472 -1.039,1.515 -1.515,2.641 -1.385,3.291 0.043,0.26 0.086,0.736 0.13,1.429 0.043,0.649 0.216,1.083 0.433,1.299 0.39,0.433 0.606,0.779 0.606,0.909 0.043,0.173 0.043,0.52 0,1.169 0,0.129 0.13,0.433 0.303,0.952 0.26,0.52 0.216,1.126 -0.087,1.905 -0.043,0.086 -0.13,0.216 -0.26,0.346 l -0.476,0.996 c -0.39,0.649 -0.563,1.385 -0.649,2.165 v 0.433 l 2.165,-0.26 -2.165,0.26 0.043,0.476 c 0.52,-0.173 0.866,-0.26 1.126,-0.346 0.433,-0.043 0.736,-0.086 0.909,-0.086 l 0.043,-0.043 c 0.649,-0.086 1.125,-0.217 1.429,-0.39 l 1.082,-0.477 c 0.13,-0.129 0.26,-0.216 0.347,-0.216 0.866,-0.563 1.516,-1.299 1.905,-2.165 0.173,-0.692 0.346,-1.168 0.519,-1.429 0.13,-0.173 0.39,-0.389 0.823,-0.692 0.173,-0.13 0.303,-0.477 0.347,-1.126 0.216,-0.303 0.39,-0.52 0.563,-0.649 0.043,0 0.649,-0.303 1.862,-0.866 0.303,-0.217 0.563,-0.39 0.779,-0.433 0.217,-0.13 0.52,-0.13 0.866,-0.086 0.433,0.086 0.779,0.13 0.866,0.086 0.606,0 1.126,-0.13 1.646,-0.303 0.216,-0.13 0.39,-0.216 0.52,-0.26 0.216,-0.086 0.563,-0.173 1.083,-0.216 0.736,-0.087 1.429,-0.173 2.165,-0.13 0.866,0.043 1.516,0.086 1.948,0.043 0.39,0.043 0.649,0.043 0.866,0.043 1.299,-0.13 1.992,-0.173 2.122,-0.173 0.649,0.086 0.996,0.129 1.125,0.129 0.26,-0.043 0.563,-0.216 0.909,-0.563 0.433,-0.39 0.693,-0.606 0.866,-0.693 0.216,-0.086 0.52,-0.086 0.909,0 0.477,0.087 0.779,0.087 0.909,0.087 0.217,-0.217 0.39,-0.347 0.563,-0.433 0.26,-0.26 0.779,-0.26 1.559,-0.087 h 0.043 c 0.13,0.043 0.303,0.087 0.476,0.087 0.303,-0.13 0.52,-0.26 0.649,-0.347 0.216,-0.086 0.52,-0.173 0.909,-0.216 h 0.043 c 0.303,0 0.52,0 0.649,0 0.433,-0.043 0.866,0 1.255,0.043 0.736,0.043 1.212,0.043 1.472,-0.043 0.173,-0.043 0.563,-0.303 1.169,-0.736 0.217,-0.13 0.433,-0.563 0.649,-1.169 0.26,-0.822 0.433,-1.255 0.477,-1.255 0.13,-0.26 0.346,-0.476 0.693,-0.606 0.303,-0.13 0.52,-0.26 0.563,-0.347 0.043,-0.476 0.13,-0.823 0.217,-1.083 0.26,-0.52 0.433,-0.866 0.563,-1.125 0.13,-0.476 0.26,-0.823 0.39,-1.039 0.216,-0.39 0.303,-0.563 0.303,-0.606 -0.13,-0.303 -0.173,-0.563 -0.173,-0.736 0,-0.13 0,-0.217 -0.043,-0.303 h 0.086 c 0.649,0.217 1.126,0.13 1.429,-0.346 l 0.13,-0.043 c 0.259,0.217 0.476,0.347 0.692,0.303 0.216,-0.217 0.39,-0.39 0.476,-0.39 0.303,0.043 0.477,0.043 0.52,0.043 0.346,-0.39 0.563,-0.52 0.649,-0.52 l 0.13,-0.086 c 0.086,-0.216 0.216,-0.346 0.433,-0.346 0.217,0.043 0.39,0.043 0.52,0.086 0.173,0 0.303,0 0.39,0 0.476,0.26 0.779,0.346 0.909,0.346 0.736,-0.433 1.169,-0.693 1.212,-0.779 0.13,-0.303 0.217,-0.563 0.347,-0.736 0.13,-0.086 0.26,-0.13 0.39,-0.086 0.043,0.043 0.13,0.173 0.26,0.39 h 0.13 c 0.043,-0.043 0.13,-0.173 0.26,-0.347 0.13,-0.174 0.173,-0.303 0.173,-0.346 0.086,-0.173 0.216,-0.26 0.346,-0.26 v -0.043 c 0,-0.173 0,-0.346 0,-0.39 0,-0.13 0.043,-0.346 0.173,-0.736 0.13,-0.563 0.346,-0.953 0.649,-1.04 0.433,0 0.649,-0.086 0.736,-0.259 0.043,-0.866 0.173,-1.342 0.433,-1.429 0.13,0.043 0.39,0.477 0.822,1.299 0.39,0.693 0.91,1.04 1.516,0.996 0.433,-0.086 0.693,-0.216 0.823,-0.433 0.216,-0.346 0.13,-1.212 -0.26,-2.468 -0.216,-0.693 -0.303,-1.039 -0.26,-1.039 0.043,-0.13 0.26,-0.13 0.606,-0.043 0.39,0.13 0.606,0.173 0.693,0.173 l 0.13,-0.086 c 0.173,-0.693 0.303,-1.04 0.39,-1.083 0.823,0.692 1.299,1.125 1.472,1.212 0.346,0.303 0.953,0.52 1.775,0.779 0.433,0.13 0.779,0.087 0.952,-0.043 l 0.13,-0.086 c 0.173,-0.347 0.347,-0.433 0.606,-0.347 0.433,0.173 0.693,0.26 0.866,0.26 l 0.043,-0.13 c 0,-0.216 -0.043,-0.433 -0.13,-0.693 -0.217,-0.433 -0.217,-0.736 0.043,-0.996 0.087,-0.043 0.217,-0.043 0.347,-0.043 0.52,0.303 0.866,0.52 1.082,0.606 0.13,0.086 0.39,0.173 0.78,0.303 0.822,0.389 1.559,0.649 2.165,0.736 0.433,0.043 0.736,0.043 0.866,0.086 0.303,0 0.563,-0.043 0.909,-0.216 0.26,-0.13 0.476,-0.303 0.606,-0.477 0.173,-0.346 0.26,-0.563 0.39,-0.736 0.39,-0.433 0.649,-0.779 0.823,-1.039 0.26,-0.476 0.52,-0.779 0.736,-0.823 0.129,-0.043 0.519,-0.043 1.125,0.043 h 0.043 l 0.173,0.043 c 0.26,0.086 0.433,0.216 0.476,0.476 0.087,0.303 0.174,0.476 0.26,0.563 h 0.173 c 0.52,-0.649 0.996,-1.083 1.429,-1.256 0.173,-0.043 0.39,-0.216 0.692,-0.476 0.39,-0.13 0.65,-0.217 0.823,-0.303 l 0.086,-0.086 c -0.303,-0.087 -0.52,-0.173 -0.606,-0.303 -0.173,-0.216 -0.39,-1.125 -0.649,-2.771 -0.086,-0.303 -0.173,-0.649 -0.303,-1.083 -0.26,-0.779 -0.433,-1.299 -0.476,-1.429 -0.303,-0.26 -0.563,-0.433 -0.693,-0.563 -0.909,-0.692 -1.515,-1.039 -1.775,-0.996 -0.216,0.043 -0.39,0.173 -0.476,0.433 -0.086,0.13 -0.173,0.346 -0.26,0.606 -0.476,0.346 -0.866,0.303 -1.256,-0.13 -0.433,-0.52 -0.866,-0.779 -1.299,-0.736 -0.259,0.043 -0.519,0.173 -0.736,0.39 -0.13,0.173 -0.086,0.346 0.13,0.52 0.693,0.043 0.909,0.433 0.649,1.212 -0.13,0.173 -0.346,0.303 -0.649,0.433 -0.173,0.043 -0.346,0 -0.563,-0.086 -0.346,-0.13 -0.606,-0.26 -0.822,-0.39 -0.347,-0.26 -0.649,-0.39 -0.823,-0.347 -0.26,0 -0.476,0.217 -0.736,0.606 -0.216,0.346 -0.476,0.52 -0.736,0.52 -0.303,0 -0.693,-0.043 -1.255,-0.086 -0.043,-0.043 -0.217,-0.087 -0.433,-0.217 -0.13,0 -0.303,0.043 -0.606,0.13 -0.26,0.043 -0.476,0.043 -0.606,-0.043 -0.13,-0.043 -0.26,-0.217 -0.39,-0.477 -0.13,-0.26 -0.26,-0.39 -0.346,-0.39 -0.13,0 -0.303,0.087 -0.52,0.26 -0.13,0 -0.303,0 -0.476,-0.086 -0.173,-0.043 -0.39,-0.043 -0.563,0 -0.216,0.216 -0.52,0.649 -0.822,1.299 -0.39,0.649 -0.953,0.779 -1.688,0.39 -0.303,-0.13 -0.65,-0.606 -1.04,-1.342 -0.043,-0.13 0,-0.303 0.13,-0.563 0.087,-0.303 0.13,-0.52 0.13,-0.606 -0.173,-0.433 -0.476,-0.563 -0.909,-0.433 -0.433,0.26 -0.52,0.823 -0.303,1.689 -0.086,0.779 -0.389,1.125 -0.822,1.039 -0.043,-0.043 -0.087,-0.347 -0.173,-0.953 -0.086,-0.52 -0.303,-0.909 -0.693,-1.083 h -0.346 l -0.086,0.086 c -0.043,0.26 -0.043,0.433 0.043,0.52 0.433,0.606 0.693,0.952 0.736,1.039 0.13,0.346 -0.043,0.649 -0.433,0.952 -0.303,0.173 -0.563,0.173 -0.779,0.087 -0.13,-0.087 -0.347,-0.303 -0.649,-0.736 -0.26,-0.303 -0.606,-0.52 -1.083,-0.52 -0.303,-0.043 -0.606,0.13 -0.823,0.477 -0.086,0.563 0.043,0.822 0.347,0.822 0.606,0 0.953,0 1.039,0.043 0.13,0.043 0.39,0.26 0.822,0.693 0.433,0.303 0.693,0.563 0.693,0.736 0,0.043 -0.043,0.13 -0.13,0.216 -0.13,0.13 -0.303,0.173 -0.476,0.173 -0.087,-0.043 -0.303,-0.043 -0.563,-0.086 -0.303,0.043 -0.433,0.086 -0.476,0.086 -0.26,-0.086 -0.52,-0.303 -0.866,-0.736 -0.043,-0.043 -0.216,-0.043 -0.39,0 -0.346,0.13 -0.346,0.433 -0.086,0.953 0.216,0.433 0.346,0.779 0.39,0.952 0.043,0.303 -0.173,0.52 -0.606,0.606 -0.433,0.043 -0.779,0 -0.996,-0.217 -0.303,-0.216 -0.606,-0.779 -0.953,-1.645 -0.13,-0.346 -0.433,-0.736 -0.822,-1.212 -0.52,-0.476 -0.91,-0.736 -1.212,-0.779 -0.26,0 -0.606,0.086 -1.039,0.303 h -0.693 c -0.217,0 -0.433,0.086 -0.649,0.26 0,0 0,0 -0.043,0 -0.043,0.086 -0.173,0.26 -0.346,0.476 -0.173,0.173 -0.347,0.303 -0.477,0.346 -0.086,0 -0.433,-0.13 -0.996,-0.433 -0.043,-0.043 -0.303,-0.043 -0.736,-0.043 -0.259,-0.13 -0.563,-0.39 -0.909,-0.779 -0.13,-0.043 -0.65,0 -1.473,0.173 -0.822,0.173 -1.429,0.13 -1.861,-0.173 l -0.087,-0.13 0.043,0.086 c -0.346,-0.346 -0.433,-0.909 -0.303,-1.688 0.087,-0.779 0.13,-1.212 0,-1.299 l -0.476,-0.39 c -0.26,-0.216 -0.476,-0.303 -0.693,-0.216 -0.39,0.216 -0.26,0.953 0.39,2.122 0,0.086 0.087,0.216 0.216,0.346 0.043,0.216 0.043,0.433 -0.043,0.563 -0.26,0.39 -0.693,0.346 -1.299,-0.13 -0.347,-0.26 -0.52,-0.433 -0.563,-0.52 l -0.216,-0.39 c -0.13,-0.303 -0.217,-0.52 -0.217,-0.563 0.043,-0.303 0.217,-0.649 0.52,-0.996 l -0.043,-0.26 c -0.043,-0.26 -0.087,-0.39 -0.13,-0.433 0.087,-0.303 0.087,-0.563 0.087,-0.736 -0.173,-0.26 -0.26,-0.39 -0.346,-0.476 h -0.173 c -0.217,0.13 -0.433,0.606 -0.649,1.472 -0.217,0.13 -0.476,0.13 -0.736,0 -0.346,-0.217 -0.52,-0.303 -0.563,-0.303 -0.173,0.693 -0.39,1.169 -0.606,1.385 -0.346,0.303 -0.866,0.303 -1.515,0.043 -0.086,-0.043 -0.26,-0.173 -0.52,-0.303 -0.043,-0.043 -0.26,0 -0.693,0.043 l -0.13,-0.043 c -0.086,-0.13 -0.086,-0.26 -0.086,-0.433 0.086,-0.13 0.13,-0.26 0.13,-0.39 l -0.043,-0.13 c -0.346,-0.39 -0.563,-0.649 -0.606,-0.736 -0.26,-0.52 -0.519,-0.909 -0.822,-1.212 -0.173,-0.216 -0.433,-0.303 -0.693,-0.303 -0.303,0.043 -0.52,0.173 -0.649,0.433 -0.043,0.13 -0.086,0.347 -0.13,0.693 0,0.216 -0.13,0.433 -0.303,0.606 -0.346,0.13 -0.563,0 -0.693,-0.433 -0.086,-0.477 -0.173,-0.736 -0.173,-0.823 -0.217,-0.173 -0.649,-0.346 -1.386,-0.476 -0.13,0 -0.346,0 -0.779,0.043 -0.39,-0.043 -0.52,-0.173 -0.476,-0.476 -0.173,0.173 -0.433,0.39 -0.866,0.606 -0.173,0.13 -0.346,0.303 -0.606,0.606 l -0.477,0.563 c -0.173,0.217 -0.043,1.04 0.303,2.468 0.087,0.216 0.173,0.563 0.39,0.996 l 0.347,0.996 c 0.043,0.13 0.13,0.346 0.26,0.563 -0.173,2.338 -0.217,3.551 -0.26,3.637 0,0.086 -0.043,0.346 -0.13,0.736 -0.217,0.909 -0.303,1.386 -0.39,1.516 -0.173,0.13 -0.347,0.13 -0.606,0.086 -0.137,-0.085 -0.31,-0.171 -0.57,-0.301", + "Chernihiv": "m 356.375,27.605 c -0.563,-0.216 -1.039,-0.346 -1.342,-0.39 -0.649,-0.086 -1.125,-0.216 -1.429,-0.303 -0.606,-0.216 -0.952,-0.303 -1.125,-0.346 -0.216,0.086 -0.39,0.26 -0.563,0.563 -0.13,0.39 -0.26,0.649 -0.346,0.779 0,0.043 -0.26,0.26 -0.736,0.563 -0.259,0 -0.52,0.043 -0.866,0.13 -0.303,0.693 -0.606,1.083 -0.823,1.169 -0.216,-0.26 -0.39,-0.39 -0.606,-0.39 -0.346,0 -0.823,0.39 -1.516,1.039 -0.086,0.13 -0.303,0.26 -0.606,0.433 -0.39,0.173 -0.649,0.347 -0.823,0.477 -0.649,0.693 -1.125,1.083 -1.429,1.125 -0.303,0.087 -0.606,-0.086 -0.953,-0.433 -0.346,-0.347 -0.649,-0.563 -0.909,-0.563 -0.173,-0.043 -0.39,0 -0.649,0.13 l -0.347,0.043 c -0.259,0.13 -0.476,0.216 -0.606,0.26 -0.563,0.13 -1.169,0.13 -1.818,0.043 -0.823,-0.26 -1.256,-0.39 -1.299,-0.433 -0.433,-0.259 -0.779,-0.433 -1.039,-0.563 -0.477,-0.217 -0.866,-0.39 -1.083,-0.52 -0.693,-0.39 -1.299,-0.693 -1.775,-0.953 -0.953,-0.433 -1.516,-0.563 -1.732,-0.39 0,0.13 -0.043,0.26 -0.087,0.39 -0.086,0.043 -0.26,0 -0.52,-0.086 -0.26,-0.087 -0.433,-0.13 -0.563,-0.173 -0.563,-0.26 -0.953,-0.433 -1.255,-0.563 -0.433,-0.173 -0.909,-0.173 -1.342,0.043 -0.173,0.086 -0.303,0.173 -0.346,0.216 -0.087,0.086 -0.13,0.216 -0.217,0.39 -0.26,0.52 -0.26,1.083 0.087,1.775 0.346,0.606 0.563,0.953 0.563,1.039 0,0.346 -0.217,0.649 -0.65,0.953 -0.476,0.303 -0.736,0.52 -0.779,0.736 0.13,0.303 0.173,0.563 0.13,0.779 -0.26,0.347 -0.39,0.693 -0.433,0.953 0.173,0.346 0.259,0.563 0.303,0.736 -0.043,0.13 -0.086,0.303 -0.216,0.433 -0.217,0.216 -0.303,0.347 -0.303,0.39 -0.173,0.649 -0.303,1.083 -0.52,1.342 -0.13,0.216 -0.26,0.346 -0.433,0.433 l -0.866,0.433 c -0.736,0.477 -1.299,0.779 -1.688,0.953 -0.52,0.043 -0.909,0.13 -1.126,0.26 -0.563,0.606 -0.953,0.909 -1.169,0.953 -0.26,0.086 -0.606,0.043 -0.996,-0.13 -0.433,-0.173 -0.736,-0.303 -0.953,-0.39 -0.173,-0.043 -0.433,-0.043 -0.779,-0.043 -0.779,0 -1.429,0.13 -1.992,0.433 -0.606,0.303 -0.909,0.476 -0.953,0.476 -0.173,0 -0.39,-0.086 -0.563,-0.26 0,-0.173 -0.13,-0.433 -0.303,-0.692 l 0.13,-0.303 c 0.13,-0.346 0.13,-0.693 0,-1.039 -0.087,-0.26 -0.433,-0.477 -0.996,-0.693 -0.52,-0.216 -0.909,-0.303 -1.255,-0.346 -0.606,0.086 -1.083,0.13 -1.429,0.173 -0.347,-0.043 -0.866,0 -1.472,0.13 -0.606,0.087 -1.083,0.13 -1.386,0.087 -0.649,-0.13 -1.169,-0.173 -1.472,-0.217 -1.039,-0.086 -1.775,-0.13 -2.294,-0.216 -1.516,-0.173 -2.555,-0.303 -3.074,-0.303 l -0.996,-0.043 c -0.259,0.086 -0.519,0.13 -0.649,0.13 -0.736,0 -1.212,0.043 -1.429,0.13 -0.26,0.043 -0.563,0.26 -0.996,0.606 -0.433,0.346 -0.693,0.606 -0.779,0.823 -0.043,0.043 -0.086,0.303 -0.173,0.866 -0.086,0.303 -0.26,0.52 -0.606,0.649 -0.26,0.087 -0.39,0.13 -0.39,0.13 -0.303,0 -0.52,-0.043 -0.693,-0.173 -0.043,0 -0.13,-0.087 -0.216,-0.217 -0.736,-0.736 -1.342,-1.169 -1.775,-1.299 -0.13,-0.043 -0.346,-0.043 -0.649,-0.086 -0.649,-0.13 -1.515,-0.13 -2.598,0.043 -0.736,0.129 -1.212,0.129 -1.516,0.086 -0.476,-0.043 -0.866,0 -1.083,0.043 -0.173,0.173 -0.346,0.26 -0.606,0.347 -0.13,0.216 -0.216,0.433 -0.26,0.606 0.13,0.173 0.216,0.347 0.303,0.477 -0.303,0.26 -0.433,0.563 -0.433,0.866 0.52,-0.086 0.996,0.13 1.385,0.563 0.043,0.26 -0.086,0.476 -0.39,0.649 -0.303,0.173 -0.563,0.216 -0.822,0.173 l -0.26,-0.52 c -0.39,0.303 -0.693,0.476 -0.91,0.563 l -0.086,0.13 c 0,0.217 0.043,0.433 0.173,0.606 l -0.087,0.13 c -0.043,0.043 -0.129,0.086 -0.26,0.086 l -0.086,0.173 v 0.173 l -0.043,0.173 c -0.216,0.043 -0.389,0.086 -0.476,0.13 -0.13,0.173 -0.303,0.303 -0.433,0.346 -0.346,0.087 -0.52,0.087 -0.563,0.13 -0.087,0.043 -0.173,0.13 -0.26,0.13 -0.13,0.086 -0.347,0.129 -0.65,0.173 l -0.043,0.043 0.043,0.476 c 0.13,0.606 0.087,1.04 -0.173,1.299 -0.173,0.173 -0.433,0.26 -0.779,0.26 -0.39,-0.043 -0.606,0 -0.693,0.086 -0.13,0.433 -0.26,0.779 -0.39,0.953 -0.39,0.173 -0.649,0.346 -0.736,0.52 l -0.433,0.692 c -0.087,0.303 -0.173,0.52 -0.26,0.606 -0.043,0.086 -0.26,0.173 -0.606,0.26 -0.173,0.173 -0.173,0.39 -0.043,0.693 0.13,0.346 0.216,0.563 0.216,0.649 -0.13,0.216 -0.173,0.39 -0.216,0.52 -0.13,0.303 -0.173,0.433 -0.173,0.476 -0.13,0.13 -0.303,0.216 -0.563,0.216 -0.346,0 -0.52,0 -0.563,0.087 -0.087,0.086 -0.087,0.216 -0.043,0.303 0.043,0.173 0.303,0.346 0.822,0.52 v 0.13 c -0.216,0.13 -0.346,0.216 -0.346,0.303 -0.086,0.087 -0.13,0.303 -0.13,0.693 0,0.39 -0.086,0.649 -0.173,0.823 -0.086,0.13 -0.303,0.173 -0.606,0.13 -0.39,0 -0.693,0.043 -0.866,0.216 0,0.347 0.043,0.606 0.043,0.823 -0.303,0.26 -0.433,0.563 -0.433,0.866 0.173,0.13 0.216,0.347 0.173,0.52 -0.043,0.217 -0.173,0.347 -0.433,0.433 l -0.043,0.13 c 0,0.043 0.043,0.173 0.173,0.433 l -0.087,0.13 c -0.173,0 -0.303,0.13 -0.476,0.346 -0.216,0.13 -0.39,0.26 -0.477,0.39 -0.346,0.563 -0.173,0.953 0.563,1.126 l 0.086,0.13 -0.086,0.13 c -0.26,0.086 -0.433,0.173 -0.52,0.303 -0.043,0.129 0,0.259 0.13,0.476 0.173,0.433 0.433,0.649 0.693,0.649 0.476,0 0.736,0.043 0.866,0.086 l 0.043,0.13 c 0,0.13 -0.173,0.39 -0.476,0.823 -0.043,0.087 0.086,0.217 0.26,0.39 0.216,0.173 0.346,0.303 0.39,0.39 v 0.043 c -0.043,0.563 -0.043,0.866 0,0.996 0.043,0.13 0.173,0.26 0.433,0.347 0.217,0.086 0.347,0.26 0.39,0.476 l -0.043,0.173 c -0.347,-0.043 -0.563,-0.043 -0.736,0.043 -0.086,0.13 -0.173,0.347 -0.216,0.649 0,0.347 0.043,0.563 0.13,0.693 0.043,0 0.217,0.043 0.563,0.13 0.216,0 0.346,0.087 0.433,0.217 0.086,0.086 0.129,0.433 0.129,0.996 0.433,0.563 0.606,0.953 0.606,1.169 -0.043,0 -0.043,0 -0.043,0.043 l -0.216,0.26 c -0.043,0.086 -0.087,0.173 -0.087,0.216 v 0.173 c 0.26,0.303 0.347,0.563 0.347,0.823 l -0.086,0.13 c -0.477,0.173 -0.736,0.303 -0.866,0.39 -0.173,0.086 -0.433,0.303 -0.736,0.736 -0.303,0.043 -0.433,0.086 -0.476,0.13 -0.173,0.13 -0.173,0.303 -0.087,0.52 0.087,0.303 0.13,0.52 0.13,0.693 -0.043,0.086 -0.13,0.217 -0.303,0.346 -0.173,0.173 -0.303,0.39 -0.303,0.649 -0.043,0 -0.043,-0.043 -0.087,-0.086 0.043,0.347 0.13,0.649 0.26,0.823 v 0.173 c -0.13,0.216 -0.39,0.26 -0.779,0.216 -0.303,-0.086 -0.52,0 -0.563,0.216 0.043,0.043 0.086,0.173 0.13,0.303 0.173,-0.043 0.303,0 0.433,0.043 0.173,0.086 0.303,0.303 0.39,0.692 l 0.217,0.043 c 0.086,-0.043 0.303,-0.173 0.52,-0.433 0.26,-0.26 0.433,-0.39 0.563,-0.346 0.217,0.216 0.217,0.606 0,1.169 -0.173,0.26 -0.26,0.433 -0.26,0.606 -0.043,0.13 -0.043,0.216 0,0.346 0,0 -0.173,0.173 -0.39,0.433 -0.043,0.086 0.043,0.216 0.13,0.433 0,0.173 -0.043,0.303 -0.043,0.39 0.043,0.26 0.043,0.433 0.086,0.52 v 0.217 l -0.043,0.13 c -0.217,0.52 -0.347,0.866 -0.303,0.953 l 0.086,0.13 c 0.173,0 0.39,-0.043 0.606,-0.13 0.347,0.39 0.433,0.866 0.303,1.385 0,0.087 -0.13,0.303 -0.303,0.606 -0.346,0.563 -0.606,1.125 -0.779,1.602 0.043,0 0.087,0 0.13,0.043 0.173,0.086 0.39,0.303 0.649,0.606 0.173,0.043 0.433,0 0.823,-0.173 0.087,0 0.303,0.13 0.649,0.433 0.433,0.476 0.693,0.779 0.736,0.952 0.173,0.433 0.13,1.126 -0.043,2.035 -0.216,0.866 -0.216,1.429 -0.086,1.645 0.216,0.347 0.953,0.65 2.294,0.953 0.087,0.043 0.39,0.26 0.996,0.649 0.216,0.173 0.39,0.303 0.433,0.477 0,0.043 0,0.216 -0.086,0.563 -0.086,0.563 -0.216,1.039 -0.346,1.472 -0.13,0.217 -0.217,0.433 -0.303,0.606 -0.39,0.736 -0.563,1.125 -0.563,1.169 0.043,0.086 0.087,0.173 0.13,0.216 0.217,0.087 0.477,0.043 0.823,-0.13 0.39,-0.173 0.693,-0.216 0.909,-0.13 0.216,0.086 0.433,0.303 0.606,0.649 0.216,0.303 0.39,0.476 0.563,0.52 0.346,0 0.563,-0.303 0.649,-0.822 0.347,-0.347 0.91,-0.173 1.775,0.563 0.173,-0.086 0.346,-0.216 0.606,-0.476 0.26,-0.217 0.477,-0.347 0.606,-0.39 0.173,0 0.606,0 1.385,0.13 0.693,0.043 1.169,0.043 1.429,-0.13 0.13,-0.043 0.347,-0.217 0.606,-0.433 0.346,-0.043 0.606,0.043 0.649,0.216 0.043,0.043 0,0.173 -0.043,0.303 0,0.086 0.043,0.217 0.13,0.26 l 0.52,0.173 c -0.13,0.26 -0.216,0.476 -0.26,0.606 -0.086,0.477 0.043,0.693 0.433,0.736 0.649,-0.043 0.996,0 1.039,0 0.043,0.086 0,0.346 -0.086,0.736 0.086,0.13 0.433,0.433 1.039,0.866 0.303,0.26 0.476,0.606 0.563,0.996 0.216,0.823 0.26,1.472 0.043,1.905 -0.086,0.173 -0.173,0.303 -0.26,0.39 -0.13,0.043 -0.26,0.043 -0.476,-0.043 l -0.13,0.043 c -0.216,0.26 -0.303,0.563 -0.173,0.909 0.173,0.13 0.563,0.52 1.256,1.255 0.086,0.086 0.173,0.086 0.346,0.086 0.216,-0.216 0.52,-0.26 0.779,-0.173 l 0.13,0.086 c 0.043,0.13 0.043,0.477 -0.086,1.083 0.086,0.303 0.303,0.563 0.692,0.779 0.13,0.043 0.303,0 0.477,-0.13 0.086,0 0.26,0.13 0.563,0.433 0.216,0.216 0.476,0.173 0.866,-0.087 l 0.303,-0.303 c 0.216,0.086 0.563,0.173 0.996,0.39 0.216,0.043 0.477,0.13 0.909,0.26 0.087,0.043 0.26,0.13 0.477,0.216 0.39,0.13 0.866,-0.13 1.429,-0.779 0.043,-0.13 0.303,-0.13 0.779,0 0.216,0.043 0.477,0.13 0.823,0.216 0.13,0.043 0.39,0.087 0.779,0.13 0.173,-0.043 0.39,-0.173 0.606,-0.433 0.043,0 0.217,0 0.433,0.043 0.217,0.043 0.39,0.043 0.476,-0.043 0.217,-0.303 0.39,-0.563 0.563,-0.693 0.173,-0.086 0.39,-0.086 0.693,-0.13 0.043,0 0.173,-0.13 0.303,-0.39 0.173,-0.173 0.303,-0.303 0.433,-0.303 0.173,-0.086 0.52,-0.043 0.996,0 0.39,0.087 0.692,0.043 0.866,0 0.217,-0.216 0.39,-0.476 0.52,-0.779 0.216,-0.086 0.39,-0.173 0.52,-0.216 l 0.043,-0.173 c -0.13,-0.26 -0.173,-0.476 -0.043,-0.606 l 0.217,-0.173 c 0.086,-0.13 0.13,-0.39 0.13,-0.823 0.086,-0.13 0.389,-0.216 0.866,-0.303 0.52,-0.13 0.866,-0.13 1.039,-0.043 0.087,0.086 0.173,0.26 0.26,0.52 0.217,0.303 0.606,0.563 1.169,0.779 l 0.52,0.693 c 0.13,0.173 0.26,0.433 0.39,0.736 0.173,0.26 0.39,0.433 0.649,0.52 0.13,0.043 0.563,0.087 1.169,0.043 0.606,0 0.909,0.043 0.953,0.13 0.303,0.563 0.433,0.953 0.433,1.125 l -0.13,0.043 h -0.173 c -0.043,0.346 -0.086,0.563 -0.173,0.693 -0.087,0.13 -0.217,0.173 -0.477,0.13 -0.26,-0.087 -0.433,-0.087 -0.519,-0.087 -0.174,0.043 -0.347,0.217 -0.52,0.563 -0.216,0.347 -0.346,0.606 -0.346,0.823 0.692,0.346 1.083,0.693 1.256,0.909 -0.087,0.52 -0.087,0.866 -0.043,1.039 0.433,0.563 0.779,0.823 0.996,0.866 0.043,0 0.303,-0.043 0.693,-0.129 0.303,-0.043 0.563,0 0.736,0.129 0.043,0.13 0.043,0.217 0,0.39 -0.303,0.173 -0.563,0.433 -0.779,0.692 l -0.043,0.173 1.732,2.555 c 0,-0.087 0.086,-0.303 0.303,-0.606 0.13,-0.216 0.173,-0.433 0.173,-0.649 h 0.086 c 0.866,0.13 1.386,0.087 1.559,-0.086 l 0.217,0.043 0.26,0.346 c 0.433,0.173 0.866,-0.043 1.342,-0.693 0.563,-0.866 0.91,-1.342 1.083,-1.429 0.173,-0.086 0.52,-0.086 1.04,-0.086 l 0.129,-0.043 c 0.087,-0.346 0.173,-0.563 0.303,-0.649 l 0.563,-0.043 c 0.346,0 0.693,0.173 0.996,0.52 0.087,0.087 0.173,0.217 0.303,0.347 l 0.13,0.043 c 0.13,-0.086 0.26,-0.216 0.433,-0.433 0.086,-0.043 0.216,-0.13 0.39,-0.217 0.13,-0.173 0.173,-0.216 0.216,-0.216 0.13,-0.043 0.303,-0.043 0.52,0 l 0.433,0.086 c 0.173,0.087 0.347,0.477 0.476,1.299 0.043,0.043 0.13,0.173 0.26,0.347 0.303,0.173 1.04,0.26 2.122,0.346 1.126,0.043 1.819,0.043 2.122,-0.086 l 0.13,-0.346 c 0.477,0 0.779,0.043 0.909,0.129 0.087,0.13 0.087,0.26 0.087,0.477 0.216,0.043 0.563,0.043 0.996,0.043 0.563,0 0.866,-0.087 0.909,-0.217 v -0.13 c 0.087,-0.13 0.477,-0.346 1.083,-0.649 0.087,-0.043 0.216,-0.13 0.39,-0.216 0.563,-0.173 0.866,-0.26 0.909,-0.303 0.173,0 0.477,-0.043 0.823,-0.043 0.346,0 0.606,-0.086 0.779,-0.216 0.086,-0.086 0.173,-0.39 0.303,-0.823 0.086,-0.433 0.216,-0.649 0.39,-0.736 0.303,-0.173 0.779,-0.347 1.472,-0.52 0.086,-0.736 0.346,-1.169 0.693,-1.299 0.216,-0.087 0.606,-0.217 1.169,-0.39 0.173,-0.26 0.346,-0.606 0.476,-1.126 0.173,-0.26 0.433,-0.649 0.779,-1.169 v -0.216 c 0.043,-0.13 0.043,-0.303 0.043,-0.52 0.086,-0.303 0.303,-0.65 0.52,-1.04 0.563,-0.952 0.823,-1.991 0.823,-3.031 0,-0.043 -0.087,-0.173 -0.173,-0.433 0,-0.217 0,-0.347 -0.087,-0.477 0.043,-0.173 0.303,-0.303 0.78,-0.433 0.086,-0.043 0.086,-0.65 0.086,-1.819 0.086,-0.13 0.347,-0.303 0.779,-0.563 0.303,-0.173 0.433,-0.39 0.433,-0.693 -0.043,-0.347 -0.087,-0.52 -0.087,-0.563 -0.216,-0.086 -0.39,-0.13 -0.476,-0.173 -0.346,-0.346 -0.606,-0.606 -0.779,-0.779 -0.173,-1.039 -0.173,-1.775 0,-2.251 l 0.433,-1.125 c 0.043,-0.173 0.086,-0.433 0.086,-0.823 0.043,-0.216 0.216,-0.52 0.433,-0.953 0.26,0.043 0.433,0.087 0.563,0.043 0.346,-0.216 0.39,-1.125 0.173,-2.685 0.043,-0.13 0.13,-0.346 0.303,-0.649 -0.779,-0.563 -1.126,-0.909 -1.126,-1.039 -0.043,-0.216 0.087,-0.476 0.303,-0.693 0.13,-0.173 0.347,-0.346 0.606,-0.563 0.519,-0.953 0.822,-1.429 0.822,-1.472 l -0.13,-0.13 c -0.52,-0.173 -0.866,-0.303 -1.039,-0.347 -0.433,0.996 -0.693,1.559 -0.866,1.646 -0.173,0.086 -0.693,0 -1.516,-0.303 -0.866,-0.26 -1.385,-0.52 -1.515,-0.779 l 0.043,-0.173 c 0,-0.13 0.26,-0.303 0.736,-0.477 0.086,-0.13 0.043,-0.346 -0.087,-0.563 l -0.129,-0.086 c -0.087,-0.043 -0.303,0.043 -0.78,0.216 -0.736,-0.346 -1.212,-0.52 -1.472,-0.606 -0.389,-0.173 -0.822,-0.26 -1.342,-0.346 l -0.043,-0.087 0.476,-0.866 c 0.087,-0.216 0.303,-0.52 0.606,-0.953 0.043,-0.13 0.043,-0.216 -0.043,-0.303 l -0.39,-0.39 c 0.303,-0.52 0.303,-0.909 0.043,-1.125 0.043,-0.087 0.39,-0.217 0.996,-0.346 0.649,-0.13 0.996,-0.303 1.125,-0.52 0.13,-0.39 0.087,-0.866 -0.129,-1.299 0,-0.173 0.216,-0.346 0.649,-0.476 0.39,-0.173 0.606,-0.303 0.692,-0.477 0,-0.216 -0.086,-0.52 -0.346,-0.996 0.043,-0.086 0.173,-0.303 0.476,-0.606 -0.086,-0.303 -0.39,-0.563 -0.909,-0.823 v -0.173 c 0.043,-0.173 0.173,-0.433 0.347,-0.736 0.043,-0.303 0,-0.563 -0.217,-0.779 -0.086,-0.043 -0.303,-0.043 -0.692,0.043 -0.13,-0.043 -0.217,-0.086 -0.26,-0.173 0.043,-0.39 -0.173,-0.823 -0.563,-1.212 0,-0.303 0.13,-0.649 0.433,-1.126 0.26,0 0.433,0.043 0.563,0.087 0.173,0.216 0.303,0.52 0.433,0.909 0.13,0.346 0.476,0.433 0.996,0.39 0.563,-0.086 0.996,-0.26 1.255,-0.476 0.13,-0.39 0.043,-0.823 -0.173,-1.299 0,-0.173 0.13,-0.39 0.433,-0.606 l -0.043,-0.173 c -0.216,-0.216 -0.476,-0.39 -0.692,-0.433 l -0.087,-0.13 c 0.087,-0.389 0.087,-0.779 0,-1.169 l 0.087,-0.173 c 0.433,-0.13 0.692,-0.303 0.779,-0.433 0.043,-0.39 -0.086,-0.866 -0.433,-1.472 l 0.043,-0.13 c 0.303,0.13 0.736,0.39 1.342,0.693 0.043,-0.086 0.303,-0.346 0.693,-0.866 -0.13,-0.13 -0.26,-0.26 -0.303,-0.347 -0.086,-0.086 -0.346,-0.346 -0.822,-0.693 -0.087,-0.649 -0.13,-0.996 -0.087,-1.125 0.13,-0.173 0.477,-0.26 1.04,-0.347 0,-0.216 -0.043,-0.346 -0.13,-0.433 -0.173,-0.13 -0.39,-0.26 -0.563,-0.303 0,-0.13 0,-0.563 0,-1.212 0,-0.606 -0.043,-0.952 -0.173,-1.169 -0.173,0.043 -0.346,0 -0.52,-0.043 -0.173,-0.086 -0.216,-0.346 -0.13,-0.736 0,-0.043 0.043,-0.13 0.173,-0.216 0.433,-0.563 0.606,-0.91 0.563,-1.083 -0.173,-0.217 -0.433,-0.433 -0.736,-0.649 -0.693,-0.52 -1.083,-0.779 -1.169,-0.866 -0.26,-0.26 -0.433,-0.692 -0.563,-1.299 -0.216,-0.822 -0.303,-1.342 -0.303,-1.515 -0.043,-0.563 0.13,-1.039 0.477,-1.472 0.303,-0.39 0.563,-0.649 0.736,-0.779 0.347,-0.303 0.52,-0.477 0.52,-0.477 0.043,-0.086 0.087,-0.303 0.173,-0.649 0.043,-0.26 0.13,-0.433 0.216,-0.476 0.217,-0.13 0.52,-0.216 0.909,-0.303 l 0.043,-0.173 c -0.13,-0.173 -0.173,-0.303 -0.173,-0.39 0.043,-0.26 0.086,-0.433 0.216,-0.477 0.346,-0.13 0.952,-0.13 1.862,0 0.043,-0.303 0.13,-0.476 0.173,-0.52 0.173,-0.086 0.477,-0.086 0.909,-0.086 l 0.043,-0.13 0.13,-0.087 1.039,-0.346 c 0.347,-0.13 0.606,-0.26 0.736,-0.39 0.129,-0.043 0.476,-0.043 1.039,-0.043 0.086,0 0.173,-0.043 0.26,-0.173 0.086,-0.39 -0.13,-0.952 -0.649,-1.645 -0.043,-0.13 -0.087,-0.216 -0.13,-0.26 l -0.043,-0.043 0.043,-0.086 c 0.26,-0.173 0.476,-0.346 0.563,-0.476 0.043,-0.217 0.043,-0.649 0,-1.342 -0.043,-0.563 0,-0.953 0.086,-1.039 0.173,-0.13 0.303,-0.173 0.433,-0.173 0.13,0.13 0.216,0.303 0.216,0.52 l 0.13,0.13 c 0.996,0.173 1.775,0.043 2.338,-0.346 0.13,-0.909 0.216,-1.386 0.216,-1.516 -0.779,0 -1.212,0 -1.299,-0.086 -0.043,-0.043 -0.13,-0.26 -0.26,-0.563 -0.216,-0.173 -0.346,-0.303 -0.433,-0.39 -0.216,-0.346 -0.389,-0.606 -0.519,-0.736 l -0.52,-0.477 c -0.173,-0.13 -0.26,-0.216 -0.26,-0.216 -0.736,-0.13 -1.212,-0.303 -1.515,-0.476 l -0.086,0.086 c 0,-0.13 -0.043,-0.606 -0.173,-1.386 v -0.563 c -0.043,-0.477 0,-0.78 0.173,-0.996 0.086,-0.13 0.39,-0.346 0.866,-0.606 0.043,-0.043 0.173,-0.173 0.26,-0.39 0.043,-0.087 0,-0.303 -0.086,-0.563 -0.043,-0.26 -0.043,-0.476 0,-0.606 l 0.39,-0.736 c 0.086,-0.173 0.216,-0.39 0.433,-0.693 0.043,-0.13 0.173,-0.606 0.39,-1.429 0.13,-0.649 0.347,-1.083 0.563,-1.255 -0.086,-0.087 -0.13,-0.13 -0.216,-0.13 -0.347,-0.217 -0.693,-0.26 -1.083,-0.087 -0.527,0.218 -0.873,0.304 -1.09,0.304", + "Cherkasy": "m 299.96,136.366 c -0.086,0 -0.173,0.043 -0.217,0.043 -0.303,0.13 -0.519,0.217 -0.649,0.217 -0.563,0 -0.996,-0.043 -1.255,0 -0.563,0 -1.342,0.433 -2.338,1.299 -0.216,0.216 -0.39,0.39 -0.433,0.39 -0.043,0.043 -0.39,0.086 -0.909,0.13 -0.477,0 -0.779,0.13 -0.866,0.433 l -0.216,0.65 c -0.13,0.173 -0.303,0.433 -0.563,0.736 0.086,0.13 0.303,0.346 0.692,0.563 -0.043,0.173 -0.13,0.433 -0.346,0.779 -0.173,0.303 -0.26,0.563 -0.26,0.779 0.346,0.346 0.52,0.52 0.52,0.563 -0.13,1.125 -0.26,1.775 -0.346,1.948 -0.303,0.476 -0.52,0.779 -0.52,0.953 0,0.043 0.043,0.173 0.173,0.39 0.087,0.216 0.087,0.346 0.043,0.52 -0.433,0.779 -0.693,1.429 -0.823,1.905 -0.26,0.087 -0.433,0.26 -0.563,0.433 -0.043,0.086 -0.086,0.303 -0.043,0.606 0,0.303 0.043,0.477 0.13,0.563 0.043,0.043 0.173,0.043 0.433,0.087 0.13,0 0.26,0.086 0.347,0.216 0.173,0.909 0.086,1.429 -0.217,1.515 -0.563,0.13 -0.909,0.303 -1.039,0.39 -0.043,0.087 -0.216,0.433 -0.476,0.996 l -0.26,0.606 c -0.173,0.347 -0.26,0.52 -0.303,0.606 -0.13,0.173 -0.346,0.346 -0.606,0.433 -0.347,0.13 -0.563,0.217 -0.649,0.347 -0.303,0.563 -0.606,0.909 -1.039,0.996 -0.347,0.52 -0.606,0.909 -0.823,1.126 -0.347,0.043 -0.563,0.13 -0.649,0.303 l -0.433,0.909 c -0.086,0.173 -0.26,0.477 -0.563,0.953 -0.043,0.173 -0.043,0.433 0,0.823 0,0.26 -0.043,0.563 -0.173,0.823 l -0.217,0.086 -0.39,-0.086 c -0.173,-0.476 -0.346,-0.779 -0.476,-0.909 l -0.173,-0.043 c -0.26,0.043 -0.39,0.13 -0.476,0.303 -0.087,0.216 -0.173,0.39 -0.26,0.433 -0.303,0.087 -0.52,0.087 -0.649,0.043 -0.13,-0.26 -0.26,-0.433 -0.303,-0.433 -0.173,0 -0.39,0.217 -0.693,0.606 -0.26,0.39 -0.649,0.476 -1.125,0.303 -0.087,0 -0.217,0.13 -0.39,0.347 -0.173,0.173 -0.347,0.303 -0.563,0.346 -0.13,-0.043 -0.303,-0.26 -0.477,-0.736 -0.259,-0.433 -0.433,-0.736 -0.563,-0.823 -0.173,-0.13 -0.39,-0.043 -0.693,0.173 -0.26,0.173 -0.477,0.216 -0.606,0.086 l -0.52,-0.52 -0.129,-0.043 c -0.39,0.953 -0.693,1.472 -0.866,1.516 l -0.13,-0.043 c -0.043,-0.13 -0.173,-0.26 -0.433,-0.39 -0.347,-0.13 -0.52,-0.26 -0.606,-0.303 h -0.13 c -0.043,0.26 -0.13,0.433 -0.216,0.476 -0.91,0.346 -1.429,0.476 -1.429,0.476 -0.13,-0.346 -0.26,-0.606 -0.347,-0.736 -0.52,-0.606 -0.996,-0.779 -1.429,-0.433 -0.087,0.043 -0.216,0.217 -0.347,0.563 -0.086,0.26 -0.13,0.693 -0.086,1.212 0,0.173 -0.086,0.39 -0.216,0.649 -0.26,1.125 -0.477,1.992 -0.606,2.641 l -0.087,0.13 c -0.39,0.086 -0.693,0.086 -0.866,-0.043 0.043,-0.13 0.086,-0.476 0.086,-1.039 -0.26,-0.13 -1.256,-0.347 -3.117,-0.649 -1.689,-0.303 -2.555,-0.563 -2.641,-0.693 -0.087,-0.216 0,-0.52 0.216,-0.823 0.26,-0.39 0.39,-0.649 0.39,-0.779 -0.736,-0.346 -1.169,-0.476 -1.299,-0.39 0,0.347 -0.086,0.563 -0.13,0.693 l -0.649,0.086 c -0.217,0.13 -0.346,0.39 -0.346,0.736 0.346,0.433 0.476,0.736 0.476,0.952 l -0.086,0.13 c -0.13,0 -0.217,0 -0.347,0 -0.433,-0.477 -0.823,-0.606 -1.169,-0.39 l -0.043,0.173 -0.173,0.043 c -0.217,-0.217 -0.433,-0.39 -0.52,-0.477 -0.216,0 -0.39,0.13 -0.519,0.39 -0.173,0.347 -0.303,0.563 -0.347,0.606 l -0.346,0.13 c -0.693,-0.13 -1.169,-0.173 -1.429,-0.087 -0.173,0.39 -0.519,0.65 -1.039,0.866 -0.173,0.693 -0.476,1.212 -0.822,1.559 l -0.52,0.52 c -0.043,0.087 -0.043,0.26 0.043,0.563 0.043,0.26 0.043,0.476 -0.043,0.606 -0.39,-0.13 -0.692,-0.173 -0.909,-0.216 -0.347,0.086 -0.606,0.13 -0.78,0.173 -0.086,0 -0.346,0 -0.822,0.043 -0.433,0.043 -1.039,-0.303 -1.732,-1.039 -0.13,-0.13 -0.13,-0.26 0,-0.433 0.13,-0.13 0.26,-0.217 0.52,-0.26 l 0.086,-0.13 c -0.043,-0.259 -0.173,-0.433 -0.346,-0.476 -0.303,0.217 -0.693,0.173 -1.126,-0.173 -0.086,0 -0.216,0.087 -0.476,0.303 -0.217,0.217 -0.346,0.346 -0.39,0.433 v 0.173 c 0.043,0.086 0.39,0.303 0.909,0.649 0.433,0.216 0.563,0.476 0.39,0.866 -0.39,0.216 -0.52,0.52 -0.303,0.909 0.303,0.476 0.39,0.779 0.347,0.909 -0.78,0.26 -1.212,0.52 -1.299,0.823 0.173,0.649 0.216,0.996 0.216,1.083 l -0.866,0.476 -0.26,0.13 c -0.39,0.217 -0.692,0.39 -0.866,0.563 -0.606,0.476 -0.736,1.039 -0.433,1.646 0.13,0.303 0.26,0.433 0.477,0.476 0.346,0.13 0.822,0.173 1.472,0.173 0.129,0.086 0.216,0.26 0.389,0.563 0.087,0.303 0.173,0.52 0.087,0.649 l -0.087,0.087 c -0.346,-0.043 -0.606,0.043 -0.779,0.216 0.043,0.39 0,0.649 -0.043,0.823 -0.087,0.086 -0.217,0.216 -0.39,0.39 0,0.086 0.13,0.216 0.433,0.39 0.346,0.216 0.563,0.39 0.649,0.563 0.129,0.043 0.346,0.043 0.649,0 0.346,0 0.606,0.303 0.822,0.866 0.13,0.26 0.173,0.476 0.13,0.606 -0.086,0.13 -0.346,0.347 -0.779,0.606 0.13,0.606 0.26,0.953 0.39,1.083 0.087,0.086 0.433,0.173 1.083,0.346 0,0 0.087,0.303 0.216,0.866 0.043,0.173 0.087,0.433 0.173,0.78 0.043,0.13 0.043,0.476 0.043,1.039 0.043,0.476 0.13,0.779 0.303,0.866 0.433,0.216 1.255,0.216 2.511,0.087 l 0.087,0.086 v 0.216 c 0.043,0.043 0.086,0.217 0.086,0.476 0.303,0.043 0.563,0.173 0.779,0.303 l 0.043,0.13 -0.043,0.173 c -0.563,0.216 -0.909,0.476 -1.082,0.736 0,0.087 0,0.217 0,0.39 0.043,0.433 0.433,0.91 1.255,1.472 0.26,0.173 0.433,0.26 0.563,0.303 l 1.169,0.433 0.13,0.086 c 0.043,0.086 0.043,0.39 -0.043,0.909 -0.043,0.476 0.087,0.953 0.303,1.472 0.303,0.563 0.433,0.823 0.433,0.823 l 0.52,0.693 c 0.346,0.303 0.52,0.649 0.563,0.996 l 0.13,0.649 c 0,0.13 -0.043,0.346 -0.173,0.606 -0.13,0.303 -0.347,0.433 -0.649,0.433 -0.087,0.433 -0.173,0.736 -0.347,0.953 -0.303,0.216 -0.52,0.433 -0.649,0.563 -0.26,0.303 -0.303,0.563 -0.13,0.823 0.13,0.13 0.563,0 1.256,-0.347 0.779,-0.39 1.385,-0.433 1.775,-0.086 0.26,0.26 0.433,0.433 0.52,0.606 l 1.083,0.086 c 0.043,-0.043 0.216,-0.216 0.433,-0.433 0.216,-0.26 0.303,-0.39 0.346,-0.433 0.043,0 0.173,-0.173 0.52,-0.476 0.303,-0.347 0.52,-0.52 0.736,-0.563 l 0.563,0.086 c 0.13,0.13 0.303,0.39 0.52,0.823 0.346,0.13 0.649,0.086 0.866,-0.216 0.13,-0.173 0.303,-0.39 0.433,-0.693 l 1.039,-0.563 c 0.173,-0.043 0.39,-0.173 0.693,-0.26 0.26,-0.086 0.822,-0.26 1.731,-0.52 0.13,-0.086 0.217,-0.303 0.303,-0.563 0,-0.606 0.086,-1.039 0.173,-1.299 0.26,-0.303 0.866,-0.39 1.818,-0.173 0.216,0 0.433,0.303 0.606,0.779 0.78,-0.087 1.342,-0.13 1.732,-0.087 0.563,-0.043 0.909,-0.13 1.04,-0.26 0.129,-0.13 0.173,-0.476 0.173,-1.083 v -0.866 c -0.043,-0.086 -0.26,-0.216 -0.606,-0.346 -0.347,-0.087 -0.52,-0.26 -0.563,-0.39 l 0.086,-0.217 c 0,0 0.347,-0.39 0.996,-1.039 0.13,-0.043 0.303,-0.086 0.606,-0.173 0.043,-0.086 0.13,-0.173 0.173,-0.26 0.13,-0.39 0.26,-0.909 0.303,-1.472 0.043,-0.13 0.043,-0.303 -0.043,-0.477 -0.13,-0.173 -0.217,-0.26 -0.26,-0.346 l 0.043,-0.303 c 0.13,-0.26 0.563,-0.52 1.342,-0.779 0.043,-0.043 0.13,-0.216 0.26,-0.476 0.043,-0.173 0.173,-0.347 0.39,-0.433 l 0.303,-0.086 c 0.217,-0.043 0.52,-0.173 0.953,-0.477 0.13,0.043 0.346,0.087 0.563,0.216 0.043,0 0.173,-0.043 0.39,-0.086 0.173,-0.043 0.303,0 0.476,0.086 0.26,0.217 0.433,0.303 0.52,0.347 0.26,0 0.433,-0.086 0.52,-0.26 h 0.216 c 0.087,0.303 0.217,0.52 0.39,0.606 0.087,0.087 0.347,0.087 0.693,-0.043 0.39,-0.086 0.649,-0.216 0.779,-0.346 0.217,-0.086 0.477,0 0.736,0.26 h 0.13 l 0.13,-0.086 c 0.346,0 0.736,-0.043 1.169,-0.173 0.216,0 0.476,0.087 0.823,0.303 0.13,0.043 0.39,0.043 0.736,0.043 0.347,0.043 0.823,0.217 1.429,0.563 0.043,0.043 0.173,0.173 0.433,0.39 0.173,0.087 0.433,0.043 0.779,-0.043 0.173,0 0.563,0.043 1.169,0.086 0.217,-0.086 0.477,-0.303 0.823,-0.563 0.346,-0.303 0.649,-0.476 0.866,-0.563 0.216,-0.043 0.476,-0.043 0.866,0 0.086,0 0.216,-0.043 0.39,-0.087 0.043,0 0.433,0.13 1.126,0.303 0.129,0.043 0.26,0.043 0.476,-0.043 0.39,-0.086 0.779,0.043 1.212,0.347 0.043,0.043 0.173,0.26 0.346,0.692 l 0.043,0.087 0.173,0.086 c 0.13,-0.13 0.26,-0.346 0.303,-0.606 h 0.173 c 0.13,0.13 0.346,0.173 0.649,0.13 0.563,-0.563 1.039,-0.736 1.385,-0.477 0.173,0.043 0.606,-0.13 1.169,-0.433 0.173,-0.477 0.26,-0.823 0.347,-1.04 0.086,-0.433 0.13,-0.779 0.173,-0.952 l 0.129,-0.303 c 0.13,-0.216 0.39,-0.476 0.78,-0.736 0.043,-0.087 0.216,-0.13 0.39,-0.26 0.216,-0.173 0.346,-0.563 0.39,-1.169 -0.043,-0.736 -0.086,-1.342 -0.13,-1.818 0,-0.823 0.13,-1.342 0.476,-1.515 h 0.26 c 0.303,0.13 0.649,0.303 1.125,0.433 0.173,0.087 0.477,0.087 0.866,0.043 0.173,0 0.39,0.043 0.649,0.086 0.26,0.043 0.477,-0.043 0.649,-0.173 0.13,-0.13 0.173,-0.477 0.13,-0.996 0.086,-0.086 0.303,-0.13 0.606,-0.13 0.13,0 0.303,0 0.476,-0.043 l 0.823,0.086 c 0.13,0.043 0.346,0.173 0.649,0.303 0.346,0.13 0.909,0.303 1.645,0.563 l 0.953,0.606 c 0.26,0.216 0.477,0.909 0.649,2.035 0.043,0.217 0.217,0.347 0.52,0.39 0.216,-0.043 0.347,-0.13 0.477,-0.303 0.043,-0.087 0.13,-0.217 0.26,-0.477 l 0.216,-0.13 c 0.173,-0.173 0.39,-0.476 0.606,-0.953 0.043,-0.13 0.39,-0.259 1.083,-0.39 0.693,-0.13 1.212,-0.476 1.472,-0.996 l 0.13,-0.043 0.477,0.217 c 0.043,0.086 0.043,0.173 0.043,0.26 l -0.086,0.13 0.043,0.13 c 0.13,0.173 0.346,0.13 0.692,-0.043 0.303,-0.26 0.52,-0.346 0.649,-0.26 0.043,0.086 0.087,0.173 0.043,0.303 0.086,0.173 0.26,0.26 0.563,0.303 0.26,0 0.476,-0.043 0.606,-0.13 0.26,-0.216 0.477,-0.822 0.563,-1.731 -0.303,-0.303 -0.477,-0.477 -0.477,-0.52 l 0.477,-1.126 c 0.26,0 0.649,-0.173 1.255,-0.476 0.043,-0.087 0.217,-0.347 0.433,-0.866 0.043,-0.086 0.13,-0.216 0.303,-0.39 0.13,-0.216 0.303,-0.563 0.563,-1.039 0.043,-0.043 0.087,-0.13 0.13,-0.216 l 0.129,-0.087 c 0.173,0 0.563,0.13 1.169,0.433 0.086,-0.043 0.173,-0.086 0.216,-0.216 0.043,-0.13 0,-0.347 -0.173,-0.606 0,-0.086 0.043,-0.216 0.217,-0.39 0.173,-0.173 0.216,-0.303 0.216,-0.346 l 0.39,0.086 0.13,-0.043 0.347,-0.52 0.129,-0.043 0.303,0.173 c 0.086,0.13 0.086,0.39 0,0.866 0.13,0.043 0.303,0.13 0.52,0.303 0.043,0.13 0.043,0.303 0.043,0.52 0.086,0.216 0.52,0.346 1.342,0.476 0.39,-0.13 0.779,-0.433 1.125,-0.953 0.13,0.043 0.217,0.087 0.26,0.173 l 0.043,0.173 c -0.043,0.822 -0.043,1.299 -0.043,1.429 0.043,0.173 0.52,0.909 1.472,2.078 0.043,0.043 0.13,0.693 0.303,1.905 l 0.26,0.173 c 0.39,0.043 0.649,0.043 0.736,0 0.13,-0.043 0.173,-0.303 0.13,-0.692 0,-0.39 0.043,-0.606 0.173,-0.693 0.216,-0.086 0.52,0 0.909,0.303 0.39,0.346 0.779,0.476 1.126,0.39 0.043,0 0.216,-0.173 0.563,-0.433 0.39,-0.346 0.606,-0.606 0.693,-0.779 0.087,-0.217 0.173,-0.477 0.303,-0.736 0.086,-0.13 0.346,-0.086 0.736,0.087 0.087,0.043 0.39,0.216 0.823,0.52 l 0.13,0.13 c 0.086,0.043 0.173,0.086 0.216,0.216 0.086,0 0.173,0.043 0.26,0.13 0.433,0.13 0.736,0.173 0.909,0.087 l 0.347,-0.78 c 0,-0.086 0.13,-0.173 0.346,-0.216 0.216,-0.086 0.347,-0.13 0.477,-0.13 l 0.086,-0.086 c 0,-0.26 0.043,-0.433 0.13,-0.563 0.173,-0.13 0.39,-0.173 0.606,-0.13 0.173,-0.13 0.217,-0.433 0.173,-0.866 l -0.779,-0.129 c -0.563,-1.342 -0.823,-2.079 -0.866,-2.165 v -0.043 c -0.173,0.043 -0.39,0 -0.606,-0.13 -0.173,-0.13 -0.216,-0.26 -0.216,-0.52 0.043,-0.303 0,-0.476 0,-0.563 -0.52,-0.433 -0.866,-0.779 -1.083,-0.996 -0.347,-0.779 -0.606,-1.299 -0.736,-1.602 -0.043,0 -0.26,-0.216 -0.736,-0.563 -0.476,-0.563 -0.823,-0.952 -1.125,-1.169 -0.606,-0.346 -1.083,-0.606 -1.386,-0.822 -0.303,-0.26 -0.563,-0.433 -0.779,-0.52 -0.476,-0.217 -0.736,-0.347 -0.736,-0.39 -0.26,-0.346 -0.476,-0.606 -0.692,-0.736 -0.866,-0.173 -1.516,-0.39 -1.949,-0.606 -0.216,-0.13 -0.606,-0.563 -1.212,-1.256 l -0.996,-0.909 c -0.823,-0.476 -1.342,-0.736 -1.689,-0.909 0,0 -0.476,-0.086 -1.299,-0.216 -0.606,-0.087 -1.299,-0.347 -2.078,-0.823 -0.477,-0.52 -0.736,-0.866 -0.866,-0.996 -0.346,-0.26 -0.563,-0.433 -0.736,-0.563 l -0.563,-0.606 c -0.216,-0.13 -0.346,-0.26 -0.39,-0.303 -0.39,-0.433 -0.649,-0.692 -0.866,-0.822 -0.217,-0.13 -0.52,-0.173 -0.909,-0.087 -0.39,0.043 -0.649,-0.043 -0.866,-0.26 -0.13,-0.13 -0.303,-0.52 -0.52,-1.212 -0.216,-0.649 -0.476,-1.082 -0.866,-1.342 -0.173,-0.173 -0.433,-0.26 -0.692,-0.26 -0.347,0 -0.563,0 -0.649,-0.043 -0.216,-0.087 -0.433,-0.346 -0.693,-0.779 -0.303,-0.39 -0.52,-0.649 -0.779,-0.693 -0.086,-0.043 -0.476,-0.043 -1.083,0 -0.52,0 -0.952,-0.086 -1.255,-0.216 -0.303,-0.217 -0.736,-0.736 -1.299,-1.688 -0.519,-0.953 -0.866,-1.429 -0.952,-1.516 -0.347,-0.173 -0.866,-0.303 -1.559,-0.346 -0.649,-0.043 -1.169,-0.173 -1.472,-0.347 -0.26,-0.173 -0.606,-0.52 -0.953,-1.125 -0.563,-0.779 -0.866,-1.212 -0.909,-1.299 -0.173,-0.217 -0.606,-0.606 -1.299,-1.039 -0.649,-0.477 -1.083,-0.823 -1.256,-1.04 -0.39,-0.692 -0.649,-1.212 -0.866,-1.515 -0.346,-0.433 -0.563,-0.736 -0.649,-0.996 -0.043,-0.26 0,-0.649 0.13,-1.169 0.173,-0.563 0.216,-0.952 0.173,-1.169 h 0.043 c -0.173,-0.693 -0.303,-1.082 -0.303,-1.169 -0.173,-0.649 -0.26,-1.125 -0.346,-1.515 m 0.39,0 c -0.086,-0.043 -0.26,-0.043 -0.39,0 0.086,0.39 0.173,0.866 0.347,1.516 0,0.087 0.129,0.476 0.303,1.169 h 0.043 c 0.043,0 0.086,0.087 0.086,0.217 0.043,0.13 0.043,0.303 0.043,0.563 0,0.217 -0.043,0.693 -0.173,1.429 0.043,0.173 0.303,0.563 0.779,1.212 l 0.52,0.693 0.433,0.779 c 0,0.043 0.736,0.563 2.122,1.559 0.13,0.087 0.303,0.26 0.52,0.477 0.303,0.26 0.433,0.606 0.52,1.083 l 0.173,0.216 c 0.173,0.26 0.433,0.433 0.693,0.52 0.129,0.043 0.433,0.13 0.822,0.216 0.736,0.217 1.126,0.347 1.212,0.39 0.173,0 0.433,0 0.823,-0.086 0.303,-0.043 0.606,0 0.909,0.173 0.173,0.086 0.563,0.649 1.125,1.731 0.52,1.04 0.91,1.602 1.169,1.732 0.26,0.087 0.779,0.087 1.515,-0.086 0.13,0 0.39,-0.043 0.736,-0.086 0.303,-0.087 0.52,-0.217 0.693,-0.433 0.043,-0.043 0.087,-0.346 0.216,-0.823 0.043,-0.346 0.217,-0.606 0.477,-0.693 0.13,-0.043 0.346,-0.043 0.52,0.087 0.303,0.13 0.779,0.476 1.472,1.083 0.13,0.13 0.26,0.26 0.39,0.476 l 0.043,0.303 c 0.043,0.26 0.216,0.692 0.519,1.255 0.087,0.043 0.217,0.173 0.303,0.303 l 0.563,0.086 c 0.26,0.043 0.52,0.13 0.909,0.303 0.13,0 0.216,0 0.303,0.043 0.173,0.129 0.433,0.26 0.693,0.39 0.13,0.043 0.303,0 0.563,0 0.217,0 0.563,0 1.083,0.043 0.217,-0.043 0.433,-0.173 0.606,-0.39 0.26,-0.13 0.65,-0.086 1.212,0.13 0.477,0.173 1.126,0.736 1.905,1.688 0.173,0.13 0.433,0.303 0.736,0.563 0.173,0.13 0.433,0.347 0.823,0.649 0,0.043 0.13,0.173 0.303,0.39 0.606,0.563 1.083,0.953 1.515,1.212 0.173,0.087 0.433,0.173 0.823,0.303 0.52,0.216 0.953,0.433 1.342,0.693 l 0.433,0.216 c 0.173,0.043 0.347,-0.043 0.563,-0.216 0.216,-0.217 0.346,-0.26 0.519,-0.173 0.087,0.086 0.173,0.346 0.217,0.693 0.13,0.216 0.346,0.39 0.693,0.606 0.086,0 0.129,0.086 0.26,0.173 0.39,0.303 0.909,0.433 1.559,0.476 0.476,0.043 0.952,0 1.385,-0.13 0.563,-0.216 0.78,-0.52 0.563,-0.953 -0.13,-0.303 -0.347,-0.52 -0.693,-0.649 -0.563,-0.173 -0.866,-0.303 -0.909,-0.346 -0.303,-0.173 -0.433,-0.433 -0.476,-0.736 0,-0.476 -0.043,-0.736 -0.086,-0.822 -0.087,-0.173 -0.39,-0.39 -0.866,-0.736 -0.476,-0.26 -0.736,-0.52 -0.779,-0.736 0.303,-0.649 0.52,-1.039 0.563,-1.212 0.259,-0.606 0.433,-1.169 0.476,-1.602 0.043,-0.476 0.086,-0.866 0.13,-1.083 0.043,-0.173 0.13,-0.303 0.216,-0.39 0.13,-0.086 0.477,-0.173 1.083,-0.26 0.13,-0.043 0.346,-0.13 0.736,-0.26 0.087,0.043 0.173,0.13 0.173,0.217 0.043,0.086 0.086,0.303 0.173,0.606 0.043,0.13 0.13,0.303 0.216,0.476 0.043,0 0.086,0 0.13,0 0.347,-0.303 0.433,-0.692 0.39,-1.212 -0.173,-0.606 -0.259,-0.996 -0.259,-1.256 -0.13,-0.173 -0.347,-0.39 -0.736,-0.606 -0.39,-0.26 -0.606,-0.477 -0.693,-0.736 -0.043,-0.173 -0.043,-0.52 0,-0.953 0.043,-0.476 0.043,-0.779 -0.043,-0.909 -0.086,-0.086 -0.346,-0.216 -0.779,-0.346 -1.948,-0.736 -2.987,-1.169 -3.16,-1.212 -0.087,-0.086 -0.087,-0.563 0,-1.385 0.086,-0.823 0.043,-1.256 -0.087,-1.386 -0.779,-0.606 -1.169,-0.909 -1.212,-0.909 -0.216,0.216 -0.476,0.303 -0.693,0.303 -0.086,-0.26 -0.173,-0.433 -0.26,-0.477 -0.129,-0.173 -0.39,-0.433 -0.692,-0.779 -0.173,-0.13 -0.433,-0.086 -0.866,0.217 -0.433,0 -1.083,-0.866 -1.948,-2.468 -0.173,-0.303 -0.26,-0.563 -0.346,-0.693 -0.043,-0.217 0,-0.39 0.086,-0.563 0.13,-0.173 0.303,-0.26 0.52,-0.217 0.173,0.173 0.303,0.217 0.39,0.26 0.39,-0.303 0.606,-0.52 0.606,-0.649 -0.173,-0.26 -0.303,-0.477 -0.303,-0.65 -0.043,-0.173 0,-0.606 0.173,-1.255 0.173,-0.606 0.217,-0.996 0.173,-1.169 -0.086,-0.13 -0.13,-0.217 -0.13,-0.217 -0.996,-0.563 -1.602,-1.082 -1.775,-1.645 -0.13,-0.606 -0.26,-1.039 -0.39,-1.256 l -0.347,-0.692 c -0.476,0.216 -0.779,0.303 -0.909,0.26 l -1.169,-0.433 -0.216,-0.173 c 0,-0.39 -0.087,-0.866 -0.347,-1.515 -0.26,-0.563 -0.39,-0.909 -0.346,-1.039 0.13,0.043 0.606,-0.13 1.472,-0.433 l 0.086,-0.13 c -0.086,-0.476 -0.13,-0.779 -0.216,-0.953 l -0.433,-0.39 c -0.13,0 -0.303,0.13 -0.649,0.433 -0.346,0.26 -0.606,0.39 -0.736,0.39 -0.13,-0.043 -0.216,-0.086 -0.259,-0.173 -0.13,-0.606 -0.39,-0.953 -0.78,-1.039 -0.606,-0.086 -0.952,-0.216 -1.083,-0.346 0,-0.347 -0.086,-0.606 -0.129,-0.779 -0.39,-0.26 -0.65,-0.52 -0.78,-0.736 0,-0.216 -0.086,-0.476 -0.13,-0.736 -0.129,-0.087 -0.173,-0.173 -0.173,-0.216 -0.173,-0.173 -0.433,-0.173 -0.736,0 l -0.173,-0.13 c -0.087,0 -0.26,-0.087 -0.563,-0.26 -0.39,-0.259 -0.693,-0.39 -0.909,-0.346 -0.39,0.043 -0.736,0.26 -0.996,0.606 -0.346,0.389 -0.433,0.779 -0.346,1.169 0.043,0.173 0.216,0.433 0.563,0.866 0.303,0.433 0.043,0.996 -0.822,1.775 -0.346,0.26 -0.606,0.433 -0.736,0.476 -0.26,0.043 -0.477,-0.086 -0.736,-0.433 l -0.13,0.13 c -0.086,0.736 -0.39,1.256 -0.866,1.472 -0.563,0.26 -0.909,0.52 -0.953,0.736 v 0.173 c 0.086,0.173 0.173,0.477 0.303,0.823 0.043,0.13 0.043,0.303 0.043,0.563 l 0.087,0.606 c 0.086,0.433 0.216,0.693 0.346,0.823 -0.043,0.39 -0.26,0.649 -0.779,0.779 -0.779,0.173 -1.212,0.303 -1.299,0.346 0,0.087 0,0.39 0.086,0.909 0.086,0.519 0.086,0.91 0,1.169 -0.216,0.476 -0.476,0.952 -0.823,1.385 -0.303,0.26 -0.433,0.476 -0.476,0.563 0.086,0.563 0.086,0.866 -0.043,0.996 -0.346,0.347 -0.563,0.563 -0.606,0.606 -0.39,0.866 -0.693,1.342 -0.866,1.515 -1.299,-0.26 -2.035,-0.39 -2.208,-0.433 -0.563,-0.087 -0.866,-0.173 -0.909,-0.217 -0.043,-0.044 -0.043,-0.433 0,-1.125 0,-0.477 -0.216,-0.693 -0.649,-0.563 -0.087,0.043 -0.13,0.346 -0.13,0.823 -0.043,0.433 -0.216,0.736 -0.563,0.909 -0.173,0.13 -0.433,0.173 -0.649,0.043 -0.216,-0.26 -0.39,-0.433 -0.606,-0.477 -0.217,0.043 -0.39,0.216 -0.433,0.606 -0.043,0.433 -0.087,0.649 -0.173,0.692 h -0.173 c -0.087,-0.173 -0.173,-0.26 -0.217,-0.346 -0.216,-0.173 -0.346,-0.303 -0.39,-0.433 -0.043,-0.39 -0.086,-0.649 -0.13,-0.823 -0.303,-0.13 -0.476,-0.346 -0.52,-0.649 -0.09,-0.39 -0.177,-0.606 -0.263,-0.693", + "Crimea": "m 365.944,299.206 h -0.303 c -0.52,0.303 -0.649,0.866 -0.433,1.732 l 0.217,0.736 c 0,0.086 0.086,0.259 0.173,0.519 0.043,0.087 0.043,0.26 0.043,0.477 0.043,0.563 -0.043,0.953 -0.303,1.212 -0.13,0.13 -0.303,0.217 -0.476,0.26 0.086,0.173 0.26,0.476 0.476,0.866 0.217,0.39 0.303,0.736 0.303,0.953 -0.043,0.216 -0.26,0.433 -0.563,0.649 -0.043,0.086 -0.043,0.477 -0.043,1.255 0,0.39 0.216,0.693 0.606,0.91 v 0.173 c -0.043,0.043 -0.13,0.173 -0.303,0.303 -0.216,0.086 -0.346,0.216 -0.39,0.433 0,0.086 0.13,0.303 0.39,0.606 0.173,0.216 0.26,0.433 0.217,0.649 0,0.086 -0.173,0.303 -0.476,0.736 -0.26,0.347 -0.303,0.606 -0.13,0.736 0.173,0.043 0.347,-0.043 0.52,-0.303 0.173,-0.303 0.347,-0.476 0.433,-0.52 0.173,-0.086 0.39,-0.086 0.649,0.043 0.173,0.043 0.39,0.13 0.649,0.216 0.26,0.086 0.563,0.13 0.996,0.173 0.303,0.043 0.606,0.216 0.866,0.476 0.173,0.217 0.26,0.39 0.26,0.563 0,0.087 -0.086,0.173 -0.173,0.216 -0.39,-0.173 -0.866,-0.086 -1.299,0.26 -0.13,0.043 -0.216,0.129 -0.216,0.129 -0.347,-0.043 -0.606,0 -0.779,0.087 -0.13,0.13 -0.13,0.476 0,1.083 0.173,0.563 0.13,0.952 -0.043,1.169 0,0 -0.086,0.043 -0.26,0.086 -0.346,0.087 -0.606,-0.043 -0.909,-0.39 -0.303,-0.433 -0.563,-0.606 -0.779,-0.606 -0.13,0 -0.433,0.086 -0.866,0.303 -0.477,0.173 -0.736,0.303 -0.823,0.39 -0.043,0.043 -0.086,0.217 -0.173,0.563 -0.043,0.217 -0.216,0.39 -0.476,0.477 -0.52,0.173 -0.909,0.129 -1.212,-0.087 -0.39,-0.216 -0.606,-0.346 -0.649,-0.346 -0.13,0.043 -0.217,0.13 -0.303,0.303 -0.043,0.13 -0.13,0.217 -0.173,0.26 -0.26,-0.043 -0.433,-0.043 -0.519,-0.043 -0.39,0 -0.693,0.086 -0.953,0.346 -0.13,0.086 -0.52,0.563 -1.083,1.386 -0.303,0.26 -0.996,0.736 -2.035,1.385 -1.169,0.693 -1.862,1.039 -2.165,1.039 -0.217,0.043 -0.347,0 -0.477,-0.13 -0.13,-0.173 -0.173,-0.303 -0.26,-0.346 -0.433,-0.173 -0.736,-0.39 -0.866,-0.606 -0.043,-0.433 -0.173,-0.693 -0.347,-0.736 -0.13,0.043 -0.216,0.173 -0.259,0.347 -0.087,0.346 0,0.649 0.39,0.996 0.303,0.26 0.39,0.476 0.26,0.649 -0.217,0.173 -0.563,0.26 -1.083,0.347 -0.39,0.216 -0.953,0.519 -1.646,1.039 -0.433,0.216 -1.125,0.519 -2.035,0.909 l -2.122,1.083 c -0.173,0.043 -0.389,0.129 -0.649,0.259 -0.476,0.26 -1.082,0.78 -1.818,1.559 -0.26,0.173 -0.606,0.476 -1.082,0.822 -0.173,0.217 -0.303,0.347 -0.347,0.52 -0.086,0.13 0.043,0.347 0.26,0.649 0.217,0.26 0.173,0.52 -0.086,0.823 -0.173,0.173 -0.52,0.13 -1.125,-0.043 -0.606,-0.216 -0.953,-0.303 -1.126,-0.173 -0.087,0.043 -0.26,0.303 -0.477,0.779 -0.173,0.39 -0.433,0.693 -0.736,0.866 -0.26,0.129 -0.606,0.216 -1.039,0.259 -0.433,0.087 -0.779,0.13 -0.909,0.217 -0.303,0.173 -0.649,0.433 -1.083,0.909 -0.39,0.26 -0.996,0.693 -1.862,1.212 -0.563,0.563 -1.083,1.299 -1.515,2.165 -0.043,0.129 -0.086,0.303 -0.173,0.563 0,0.043 -0.086,0.216 -0.13,0.477 -0.043,0.129 0.13,0.433 0.476,0.909 0.043,0.086 0.087,0.39 0.087,0.822 -0.043,0.39 0.086,0.649 0.26,0.779 0.52,0.087 0.909,0.173 1.169,0.347 0.433,0.39 0.736,0.606 0.866,0.606 0.13,0 0.347,0 0.606,-0.043 0.26,-0.043 0.476,-0.043 0.649,0.043 0.216,0.043 0.52,0.13 0.866,0.303 0.13,0 0.26,-0.043 0.39,-0.086 0.13,-0.347 0.26,-0.606 0.39,-0.693 0.39,-0.346 0.736,-0.606 0.953,-0.779 l 0.433,-0.39 c 0.173,-0.087 0.433,-0.087 0.823,-0.043 0.216,0 0.476,0.043 0.866,0.086 0.26,0 0.736,-0.086 1.472,-0.26 0.173,-0.043 0.476,-0.043 0.866,0.043 0.087,0 0.477,0.13 1.169,0.347 0.736,0.216 1.082,0.346 1.125,0.389 0.26,0.173 0.563,0.433 0.996,0.866 0.129,0.086 0.519,0.346 1.082,0.693 l 0.303,-0.347 c -0.173,0.087 -0.346,0.087 -0.606,-0.086 -0.129,-0.086 -0.346,-0.39 -0.692,-0.823 -0.303,-0.52 -0.476,-0.823 -0.433,-0.953 l 0.086,-0.13 0.13,-0.043 c 0.13,0.043 0.303,0.13 0.477,0.26 0.13,0.086 0.303,0 0.476,-0.217 0.13,-0.13 0.217,-0.26 0.26,-0.346 0.303,-0.043 0.563,-0.087 0.736,-0.13 0.13,-0.216 0.26,-0.39 0.347,-0.476 l 0.26,-0.087 c 0.39,-0.086 0.606,-0.173 0.693,-0.216 0.043,-0.043 0.173,-0.13 0.346,-0.217 0,0 0.173,-0.043 0.39,-0.129 0.26,-0.087 0.649,-0.39 1.212,-0.91 h 0.173 c 0,0.043 -0.043,0.303 -0.26,0.779 -0.173,0.433 -0.347,0.736 -0.433,0.866 -0.13,0.13 -0.476,0.216 -0.953,0.216 -0.476,-0.043 -0.823,0.043 -0.996,0.26 -0.173,0.13 -0.217,0.347 -0.173,0.649 0,0.347 0,0.563 -0.043,0.649 l -0.086,0.087 c -0.26,-0.087 -0.39,-0.13 -0.52,-0.087 -0.086,0.087 -0.173,0.217 -0.173,0.563 -0.043,0.26 -0.086,0.433 -0.216,0.52 l -0.303,0.347 c 0.13,0.086 0.52,0.39 1.126,0.952 0.563,0.52 0.952,0.866 1.039,0.996 0.649,0.823 1.039,1.255 1.169,1.385 0.086,0.087 0.26,0.303 0.52,0.649 0.346,0.433 0.736,0.823 1.083,1.169 0.173,0.129 0.563,0.216 1.125,0.216 0.303,0.086 0.606,0.346 0.953,0.779 0.303,0.39 0.606,0.606 0.953,0.606 0.216,0.043 0.52,-0.216 0.866,-0.649 0.087,-0.086 0.13,-0.173 0.173,-0.216 0.216,-0.086 0.476,-0.086 0.822,0 0.043,-0.043 0.217,-0.13 0.52,-0.303 0.433,-0.346 0.909,-0.39 1.429,-0.086 0.13,0.043 0.303,0.13 0.476,0.303 0.217,0.13 0.736,0.606 1.602,1.515 0.173,0.086 0.477,0.217 0.909,0.39 l 0.476,-1.255 c -0.173,0 -0.389,-0.13 -0.736,-0.347 -0.26,-0.173 -0.52,-0.39 -0.649,-0.649 -0.303,-0.39 -0.476,-0.606 -0.563,-0.736 l -0.52,-0.303 c -0.13,-0.13 -0.216,-0.26 -0.303,-0.303 0,-0.13 0,-0.217 0.043,-0.347 0.043,-0.086 0.477,-0.13 1.169,-0.13 0.173,-0.13 0.259,-0.216 0.346,-0.26 0.433,-0.39 0.693,-0.606 0.736,-0.606 l 0.043,0.13 c -0.173,0.433 -0.26,0.736 -0.217,0.779 0.173,0.043 0.477,-0.13 0.823,-0.433 0.216,-0.043 0.433,0 0.606,0.216 0.173,0.043 0.39,0 0.779,-0.086 l 0.39,0.173 0.043,0.13 c 0.043,0.13 0,0.216 -0.087,0.303 -0.043,0.043 -0.26,0.043 -0.649,0 -0.303,-0.043 -0.563,0.087 -0.736,0.303 -0.087,0.086 -0.087,0.217 -0.043,0.39 l 0.043,0.087 c 0.173,0.086 0.433,0.216 0.736,0.39 0.303,0.303 0.26,0.649 -0.13,0.996 -0.346,0.303 -0.736,0.39 -1.126,0.303 l -0.476,1.255 c 0.087,0.043 0.26,0.173 0.433,0.39 0.823,0.649 1.342,1.299 1.516,1.948 0.086,0.303 0.173,0.78 0.259,1.516 0.043,0.173 0.043,0.52 0,0.996 0,0.433 0.087,0.736 0.26,0.822 0,0.043 0,0.043 0,0.086 0.216,0.39 0.346,0.606 0.389,0.78 0.13,0.303 0.26,0.909 0.433,1.732 0.13,0.822 0.173,1.385 0.13,1.731 -0.043,0.217 -0.173,0.65 -0.346,1.169 -0.13,0.78 -0.217,1.169 -0.26,1.212 -0.086,0.086 -0.303,0.13 -0.736,0.173 -0.043,0 -0.043,0 -0.087,0.043 l 0.13,0.649 c 0,0.13 0.13,0.346 0.303,0.606 0.086,0.13 0.216,0.216 0.346,0.303 l 2.944,0.996 0.043,0.909 -2.425,0.693 0.043,1.516 1.948,0.13 c 0.13,0.216 0.216,0.216 0.26,0.043 l 0.043,-0.433 0.563,-0.043 -0.086,0.303 0.39,0.346 0.303,-0.476 0.26,0.13 0.476,0.606 c 0.086,0.086 0.346,0.173 0.779,0.346 l 0.043,0.52 -0.649,0.563 v 0.477 l -0.823,1.212 -0.216,-0.13 -0.39,0.606 0.216,0.13 -0.26,0.346 0.477,1.083 0.39,0.087 0.303,-0.26 0.216,0.217 0.477,-0.39 0.303,0.39 v 0.303 l 0.692,0.217 -0.043,0.39 c -0.13,0.26 -0.13,0.52 0.043,0.779 l 0.477,0.736 -0.043,0.866 0.563,0.476 0.173,-0.043 0.303,0.216 -0.303,0.346 0.303,0.303 0.086,0.692 0.563,-0.303 0.303,0.216 -0.303,0.477 0.866,1.905 -0.26,0.303 -2.338,-0.736 -1.039,0.563 -0.433,-0.346 -0.433,0.173 0.043,0.692 h -0.39 l -0.26,0.173 v 0.476 c 0.087,-0.043 0.173,-0.043 0.303,-0.043 0.173,0 0.433,0.086 0.779,0.216 0.173,0.043 0.26,0.043 0.303,0.043 0.173,0 0.433,-0.13 0.779,-0.303 0.303,-0.216 0.563,-0.303 0.779,-0.26 0.303,0 0.736,0.173 1.299,0.433 0.563,0.26 0.996,0.39 1.342,0.39 h 0.476 c 0.043,-0.043 0.13,-0.043 0.26,-0.043 0.26,-0.086 0.563,-0.26 0.996,-0.52 0.043,-0.043 0.26,-0.086 0.693,-0.173 0.173,-0.043 0.346,-0.216 0.606,-0.52 0.086,-0.043 0.26,-0.13 0.476,-0.216 0.087,-0.043 0.217,-0.086 0.39,-0.173 0.13,-0.043 0.39,-0.086 0.692,-0.13 0.78,-0.303 1.299,-0.563 1.559,-0.866 0,-0.043 0.217,-0.477 0.65,-1.256 0.216,-0.476 0.433,-0.779 0.649,-0.952 0.043,0 0.173,-0.043 0.433,-0.087 l 0.26,-0.13 c 0.217,-0.043 0.563,-0.086 1.039,-0.086 0.13,-0.26 0.26,-0.433 0.303,-0.563 0.217,-0.996 0.433,-1.515 0.606,-1.559 0.086,-0.043 0.433,0 0.953,0.13 0.476,0.086 0.779,0.043 0.952,-0.26 0.13,-0.649 0.26,-1.126 0.347,-1.342 0.216,-0.433 0.433,-0.779 0.52,-0.953 0.26,-0.779 0.476,-1.342 0.606,-1.688 0.476,-0.606 0.736,-1.039 0.909,-1.385 0.216,-0.606 0.433,-1.083 0.649,-1.429 0.303,-0.692 0.693,-1.039 1.039,-1.082 0.173,-0.087 0.303,-0.13 0.347,-0.13 0.952,-0.693 1.472,-1.039 1.602,-1.083 0.087,-0.043 0.217,-0.043 0.39,-0.043 0.346,-0.086 0.909,-0.26 1.602,-0.476 0.26,-0.13 0.693,-0.217 1.256,-0.303 0.346,-0.173 0.736,-0.52 1.125,-1.039 l 0.433,-0.303 c 0.563,-0.39 1.039,-0.563 1.429,-0.606 0.823,-0.043 1.342,-0.043 1.602,0.043 0.563,0.173 0.823,0.26 0.909,0.217 0,0 0.173,-0.13 0.39,-0.433 l 0.043,-0.086 c 0.216,-0.087 0.476,0 0.693,0.216 0.26,0.217 0.476,0.303 0.693,0.26 0.173,-0.086 0.303,-0.26 0.433,-0.52 0.173,-0.346 0.303,-0.52 0.476,-0.606 0.087,-0.043 0.303,-0.087 0.563,-0.087 0.433,-0.13 0.823,-0.13 1.212,-0.043 0.173,0.043 0.303,0.086 0.433,0.216 0.086,0.043 0.433,0.52 0.996,1.342 0.087,0.043 0.13,0.173 0.217,0.346 0.303,0.39 0.692,0.476 1.125,0.217 0.39,-0.217 0.693,-0.649 0.909,-1.342 0.13,-0.823 0.26,-1.386 0.39,-1.688 0.043,-0.217 0.173,-0.52 0.347,-0.909 0.173,-0.347 0.303,-0.563 0.433,-0.649 0.347,-0.39 0.823,-0.65 1.342,-0.736 0.519,-0.086 0.823,-0.216 0.909,-0.26 0.043,-0.086 0.173,-0.39 0.303,-0.953 0.13,-0.563 0.346,-0.866 0.563,-0.996 0.346,-0.173 0.779,-0.087 1.299,0.173 l 0.563,-0.39 c 0.26,0.087 0.606,0.39 1.125,0.953 l 0.173,0.043 c 0.086,-0.087 0.173,-0.173 0.173,-0.216 0,-0.173 -0.086,-0.433 -0.26,-0.823 -0.173,-0.347 -0.13,-0.649 0.043,-0.909 0.173,-0.303 0.563,-0.433 1.169,-0.39 0.563,0 0.909,-0.087 0.953,-0.347 v -0.13 c -0.086,-0.13 -0.303,-0.216 -0.649,-0.346 -0.26,-0.086 -0.433,-0.26 -0.477,-0.433 -0.043,-0.086 -0.043,-0.346 0.043,-0.736 0.173,-0.736 0.866,-1.516 2.079,-2.338 0.086,-0.043 0.303,-0.217 0.563,-0.347 0.173,-0.13 0.477,-0.39 0.996,-0.779 0.563,-0.216 1.299,-0.216 2.165,-0.043 1.126,0.173 1.948,0.477 2.511,0.823 0.347,0.216 0.563,0.39 0.606,0.433 l 0.606,0.303 c 0.086,0 0.26,0.129 0.52,0.303 0.216,0.13 0.477,0.347 0.823,0.649 0.173,0.13 0.433,0.26 0.736,0.52 0.086,0.087 0.13,0.26 0.26,0.477 l 0.216,0.346 c 0.217,0.303 0.433,0.736 0.606,1.299 0.13,0.303 0.217,0.52 0.26,0.52 0.13,0.086 0.39,0.173 0.649,0.217 0.087,0 0.649,-0.173 1.688,-0.433 0.433,-0.216 0.693,-0.39 0.693,-0.39 0.173,0 0.433,0.086 0.779,0.303 0.346,0.13 0.606,0.173 0.823,0.087 0.173,-0.087 0.39,-0.39 0.606,-0.996 0.217,-0.52 0.477,-0.866 0.78,-0.952 0.173,0 0.476,0 0.996,0 0.52,0.043 0.823,0.086 0.909,0.173 0.606,0.477 0.909,0.693 0.953,0.693 0.39,0.13 1.039,0.26 1.948,0.433 0.173,0 0.476,0.086 0.823,0.216 0.26,0 0.476,-0.26 0.649,-0.693 0.216,-0.52 0.433,-0.779 0.606,-0.822 0.173,-0.087 0.823,-0.087 1.905,0 0.13,0 0.346,0 0.606,-0.043 l 0.303,0.043 c 0.173,0 0.693,-0.347 1.516,-0.909 0.649,-0.303 0.996,-0.433 0.996,-0.477 0.173,-0.13 0.216,-0.346 0.173,-0.606 -0.303,-0.39 -0.476,-0.606 -0.563,-0.779 -0.563,-0.823 -0.866,-1.429 -0.953,-1.905 -0.13,-0.866 -0.043,-1.992 0.39,-3.42 0.173,-0.433 0.303,-0.779 0.347,-0.996 -0.087,-0.52 -0.043,-0.91 0,-1.212 0.086,-0.303 0.389,-0.476 0.909,-0.52 0.606,-0.087 0.909,-0.173 0.996,-0.303 0.13,-0.13 0.13,-0.26 0.086,-0.433 -0.173,-0.303 -0.303,-0.52 -0.39,-0.693 -0.173,-0.259 -0.173,-0.519 0.043,-0.822 0.086,-0.217 0.26,-0.303 0.476,-0.347 0.303,-0.13 0.693,-0.13 1.126,0 0.13,0 0.39,0.13 0.693,0.39 0.173,0.043 0.476,0.087 0.909,0.13 0.476,-0.043 0.779,-0.086 0.952,-0.13 0.13,-0.129 0.26,-0.303 0.303,-0.563 0.043,-0.043 0,-0.563 0,-1.472 -0.216,-0.39 -0.346,-0.649 -0.433,-0.823 -0.173,-0.346 -0.26,-0.606 -0.347,-0.779 -0.173,-0.303 -0.433,-0.476 -0.692,-0.433 -0.13,-0.043 -0.39,0.13 -0.78,0.477 -0.303,0.303 -0.606,0.39 -0.823,0.26 -0.086,0 -0.173,-0.13 -0.346,-0.26 -0.26,-0.347 -0.476,-0.606 -0.606,-0.823 -0.303,-0.303 -0.52,-0.476 -0.779,-0.39 -0.087,0 -0.303,0.043 -0.52,0.173 -0.346,0.087 -0.519,0.13 -0.563,0.173 l -0.39,0.043 c -0.606,0.043 -1.083,-0.086 -1.429,-0.39 -0.433,-0.39 -0.692,-0.563 -0.822,-0.606 -0.217,0 -0.433,0.13 -0.736,0.477 -0.26,0.303 -0.477,0.39 -0.693,0.303 l -0.13,-0.086 c -0.043,-0.173 0.043,-0.346 0.26,-0.476 0.216,-0.13 0.303,-0.346 0.303,-0.563 l -0.086,-0.13 c -0.043,-0.043 -0.26,0 -0.606,0.043 l -1.039,0.086 c -0.563,-0.043 -0.996,0 -1.256,0.043 -0.476,0.173 -0.909,0.216 -1.342,0.173 l -0.822,-0.13 c -0.087,0.043 -0.736,0.52 -2.035,1.429 -0.087,0.086 -0.26,0.563 -0.563,1.429 -0.303,0.822 -0.606,1.342 -0.909,1.515 -0.303,0.173 -0.779,0.217 -1.342,0.13 -0.606,-0.13 -0.996,-0.26 -1.299,-0.476 -0.26,-0.26 -0.476,-0.476 -0.693,-0.563 -0.866,-0.606 -1.342,-0.952 -1.472,-1.039 l -0.477,-0.173 c 0.043,0.217 0.173,0.477 0.347,0.779 0,0.13 0.086,0.26 0.259,0.477 0.087,0.173 0.087,0.303 -0.043,0.476 -0.216,0.043 -0.563,0.39 -1.04,0.996 -0.433,0.52 -0.822,0.692 -1.255,0.563 -0.26,-0.173 -0.346,-0.563 -0.26,-1.169 l 0.087,-0.086 c 0.043,-0.086 0.216,-0.13 0.389,-0.13 l 1.039,-0.736 c 0.087,-0.129 0.13,-0.346 0.087,-0.606 -0.087,-0.346 -0.13,-0.563 -0.13,-0.606 l 0.13,-0.13 h 0.13 l 0.26,0.173 0.477,0.173 c -0.303,-0.39 -0.477,-0.909 -0.477,-1.559 l 0.087,-0.086 c 0,-0.043 0.086,-0.043 0.303,-0.087 0.13,-0.043 0.216,-0.13 0.303,-0.26 -0.043,-0.303 -0.26,-0.52 -0.606,-0.649 -0.39,-0.173 -0.693,-0.13 -0.866,0.087 -0.13,0.129 -0.303,0.563 -0.433,1.212 -0.173,0.736 -0.303,1.256 -0.476,1.472 -0.216,0.39 -0.433,0.649 -0.649,0.823 -0.346,0.26 -0.563,0.433 -0.563,0.52 -0.043,0.086 -0.043,0.216 0,0.39 -0.043,0.173 -0.173,0.303 -0.346,0.39 -0.13,0.39 -0.26,0.649 -0.347,0.823 -0.173,0.216 -0.649,0.433 -1.515,0.649 -0.909,0.173 -1.472,0.303 -1.688,0.39 l -1.342,0.649 c -0.303,0.13 -0.693,0.26 -1.212,0.433 -0.606,0.13 -0.996,0.13 -1.212,0.043 -0.606,-0.216 -1.039,-0.563 -1.342,-0.953 -0.173,-0.303 -0.303,-0.476 -0.433,-0.563 -0.347,-0.13 -0.65,-0.26 -0.779,-0.39 -0.433,-0.26 -1.169,-0.866 -2.165,-1.732 -0.173,-0.216 -0.649,-0.909 -1.386,-2.122 l -0.216,-0.39 c -0.39,-0.477 -0.649,-0.866 -0.866,-1.126 -0.39,-0.606 -0.693,-1.082 -0.823,-1.472 l -1.169,-1.775 c -0.303,-0.649 -0.563,-1.083 -0.693,-1.385 -0.433,-0.477 -0.693,-0.866 -0.866,-1.083 -0.217,-0.303 -0.52,-0.779 -0.909,-1.472 -0.26,-0.346 -0.433,-0.606 -0.563,-0.779 -0.303,-0.477 -0.52,-0.779 -0.563,-0.996 -0.173,-0.477 -0.346,-0.823 -0.433,-1.083 -0.173,-0.26 -0.26,-0.477 -0.346,-0.606 -0.043,-0.216 -0.13,-0.346 -0.13,-0.433 -0.477,-0.563 -0.823,-1.04 -0.953,-1.386 -0.043,-0.13 -0.086,-0.26 -0.13,-0.346 -0.086,0.086 -0.13,0.216 -0.216,0.303 -0.13,0.043 -0.26,0.043 -0.39,0.087 0.043,0.043 0.086,0.13 0.173,0.216 0.043,0.13 0.087,0.346 0.087,0.606 0,0.087 0.043,0.303 0.173,0.563 l 0.087,0.173 c 0.043,0.13 0.173,0.346 0.346,0.563 0.043,0.173 0.173,0.39 0.303,0.692 l 0.086,0.26 c 0.13,0.129 0.433,0.39 0.823,0.736 0.173,0.346 0.303,0.606 0.303,0.822 0.043,0.13 0.086,0.347 0.086,0.606 0.173,0.26 0.563,0.779 1.299,1.516 0.173,0.259 0.433,0.692 0.779,1.342 l 1.126,1.429 c 0.13,0.173 0.26,0.39 0.433,0.736 0.087,0.13 0.477,0.693 1.169,1.775 0,0.043 0.217,0.303 0.563,0.78 0.347,0.476 0.736,1.212 1.212,2.294 0.303,0.39 0.52,0.649 0.606,0.736 0.173,0.086 0.39,0.303 0.736,0.52 0.086,0.173 0.26,0.563 0.52,1.169 0.086,0.13 0.346,0.216 0.736,0.346 0.043,0.087 0.087,0.13 0.173,0.173 0.13,0.173 0.303,0.433 0.476,0.823 0.043,0.043 0.13,0.086 0.217,0.216 0.173,0.043 0.433,0.086 0.779,0.086 0.086,0.087 0.26,0.217 0.606,0.39 0.217,0.173 0.39,0.347 0.433,0.477 0.086,0.13 0.043,0.346 -0.086,0.606 -0.39,0.779 -1.083,0.996 -2.035,0.563 -0.216,-0.13 -0.433,-0.347 -0.606,-0.693 -0.217,-0.39 -0.477,-0.693 -0.736,-0.823 -0.476,-0.043 -0.822,-0.13 -1.082,-0.216 -0.347,-0.216 -0.606,-0.39 -0.78,-0.476 -0.52,-0.13 -0.909,-0.26 -1.169,-0.39 -0.606,-0.433 -1.039,-0.78 -1.342,-0.996 -0.303,-0.216 -0.692,-0.173 -1.125,0.216 -0.39,0.303 -0.693,0.26 -0.996,-0.086 -0.173,-0.303 -0.347,-0.52 -0.477,-0.649 -0.563,-0.303 -0.953,-0.563 -1.125,-0.779 -0.13,-0.173 -0.26,-0.346 -0.303,-0.476 0,-0.52 -0.216,-0.953 -0.606,-1.386 -0.346,-0.39 -0.563,-0.606 -0.519,-0.736 0,-0.173 0.086,-0.303 0.26,-0.389 0.086,-0.043 0.259,-0.087 0.563,-0.13 0.866,-0.303 1.386,-0.736 1.646,-1.299 0.043,-0.173 0.043,-0.39 -0.086,-0.65 -0.13,-0.26 -0.217,-0.476 -0.26,-0.606 0.087,-0.736 0.087,-1.256 0,-1.688 -0.173,-0.52 -0.389,-0.996 -0.692,-1.386 -0.303,-0.303 -0.477,-0.476 -0.563,-0.649 -0.086,-0.086 -0.086,-0.303 -0.086,-0.606 0.043,-0.303 0,-0.477 -0.13,-0.606 -0.39,-0.216 -0.693,-0.433 -0.866,-0.606 -0.173,-0.216 -0.303,-0.346 -0.39,-0.39 -0.086,-0.173 -0.173,-0.477 -0.26,-0.909 -0.043,-0.39 -0.216,-0.649 -0.433,-0.866 -0.216,-0.13 -0.476,-0.173 -0.866,0 -0.39,0.13 -0.649,0.173 -0.779,0.13 -0.303,-0.087 -0.52,-0.347 -0.779,-0.823 -0.173,-0.39 -0.649,-0.692 -1.472,-0.822 V 322.8 c 0.736,-0.52 1.083,-0.953 1.083,-1.342 l -0.087,-0.086 c -0.173,-0.043 -0.346,0 -0.519,0.173 -0.26,0.26 -0.39,0.39 -0.433,0.39 -0.39,0.086 -0.649,0.13 -0.866,0.216 -0.13,0.13 -0.26,0.173 -0.346,0.216 -0.13,0 -0.347,-0.086 -0.693,-0.303 -0.346,-0.217 -0.606,-0.347 -0.823,-0.303 -0.39,0.13 -0.649,0.216 -0.822,0.26 l -0.13,-0.043 c 0,-0.13 0.216,-0.433 0.606,-0.822 0.433,-0.477 0.693,-0.78 0.736,-0.909 0.087,-0.13 0,-0.52 -0.13,-1.083 -0.043,-0.433 -0.086,-0.693 -0.173,-0.909 -0.043,-0.13 -0.13,-0.217 -0.303,-0.217 -0.217,-0.13 -0.433,-0.086 -0.649,0.13 -0.217,0.216 -0.39,0.39 -0.477,0.477 l -0.52,0.216 c -0.26,0.173 -0.433,0.303 -0.563,0.347 l -0.303,0.043 -0.13,-0.086 c -0.043,-0.217 0.043,-0.433 0.173,-0.606 0.259,-0.303 0.39,-0.433 0.39,-0.477 0,-0.563 0,-0.953 0.086,-1.212 0,-0.086 0.303,-0.303 0.866,-0.606 0.477,-0.303 0.823,-0.477 0.996,-0.52 l 0.13,0.043 c 0.173,0.303 0.26,0.433 0.346,0.477 0.173,-0.13 0.217,-0.477 0.217,-0.996 -0.043,-0.476 -0.13,-0.822 -0.303,-0.996 l -0.13,0.043 c -0.173,0.347 -0.347,0.65 -0.476,0.823 -0.043,0 -0.78,0.303 -2.252,0.866 -0.303,0.086 -0.519,0.303 -0.692,0.563 -0.26,0.476 -0.39,0.692 -0.433,0.736 -0.736,0.563 -1.125,0.909 -1.255,1.082 -0.087,0.217 -0.173,0.347 -0.217,0.477 -0.346,-0.043 -0.606,0 -0.779,0.043 -0.216,0.346 -0.433,0.52 -0.563,0.649 -0.39,0.086 -0.649,0.13 -0.866,0.173 -0.217,0.13 -0.39,0.217 -0.476,0.26 -0.173,0.043 -0.26,0.043 -0.347,0 l -0.043,-0.13 c 0,-0.087 0.043,-0.173 0.13,-0.303 0.086,-0.043 0.216,-0.13 0.433,-0.303 0.563,-0.303 0.823,-0.563 0.823,-0.779 0.043,-0.346 0.087,-0.606 0.216,-0.736 0.217,-0.259 0.52,-0.563 0.91,-0.909 0.13,-0.217 0.173,-0.563 0.173,-0.996 0.087,-0.13 0.39,-0.26 0.953,-0.346 0.476,-0.13 0.779,-0.39 0.953,-0.823 0,-0.26 0,-0.433 0.043,-0.52 0.173,-0.217 0.303,-0.39 0.347,-0.477 0.433,-0.736 0.476,-1.212 0.173,-1.429 -0.39,-0.13 -0.649,-0.303 -0.78,-0.476 -0.39,-0.087 -0.606,-0.13 -0.736,-0.173 -0.693,-0.346 -1.125,-0.476 -1.169,-0.39 v 0.13 c 0.086,0.087 0.173,0.173 0.26,0.346 0.693,0.866 0.866,1.473 0.52,1.775 h -0.173 c -0.26,-0.13 -0.52,-0.216 -0.649,-0.173 -0.216,0 -0.476,0.39 -0.779,1.256 -0.303,0.693 -0.563,0.909 -0.909,0.649 -0.476,-0.779 -0.649,-1.342 -0.52,-1.645 0.216,-0.173 0.39,-0.303 0.476,-0.477 -0.086,-0.173 -0.173,-0.303 -0.26,-0.346 -0.13,-0.043 -0.26,-0.043 -0.346,-0.043 -0.087,0 -0.26,0.086 -0.52,0.216 l -0.347,0.173 c -0.086,0.087 -0.173,0.303 -0.26,0.649 -0.086,0.346 -0.129,0.606 -0.129,0.779 0,0.26 0,0.736 0.043,1.472 -0.086,0.043 -0.173,0.043 -0.26,0.043 -0.173,-0.173 -0.216,-0.39 -0.173,-0.736 0.086,-0.433 0.086,-0.692 0.086,-0.736 h -0.13 c -0.043,0 -0.173,0.173 -0.433,0.606 h -0.13 -0.086 c 0.086,-0.563 0.086,-0.866 0.043,-0.909 -0.26,0.433 -0.52,0.649 -0.736,0.693 l -0.087,-0.13 c 0,-0.087 0.087,-0.216 0.217,-0.346 0.086,-0.173 0.216,-0.52 0.303,-1.04 l 0.086,-0.13 0.086,-0.129 0.087,-0.087 c 0.39,0.043 0.606,-0.13 0.736,-0.433 0.086,-0.216 0.173,-0.39 0.216,-0.476 0.087,-0.217 0.043,-0.39 -0.086,-0.52 -0.866,-0.39 -1.385,-0.736 -1.559,-0.996 v -0.173 c 0.13,-0.13 0.346,-0.217 0.693,-0.173 0,-0.043 -0.087,-0.216 -0.26,-0.606 -0.217,-0.433 -0.39,-0.736 -0.563,-0.866 -0.086,-0.043 -0.173,-0.043 -0.216,-0.043 -0.087,-0.043 -0.173,-0.087 -0.26,-0.13 -0.043,0 -0.043,0 -0.087,0.043 -0.086,0.087 -0.173,0.26 -0.216,0.52 -0.043,0.347 -0.086,0.563 -0.13,0.606 -0.087,0.216 -0.347,0.26 -0.693,0.086 -0.346,-0.13 -0.563,-0.303 -0.649,-0.476 -0.087,-0.13 -0.087,-0.433 0.043,-0.823 0.086,-0.347 0.13,-0.606 0.086,-0.779 -0.043,-0.043 -0.043,-0.086 -0.043,-0.086 l -0.13,-0.087 h -0.13 c -0.086,0.087 -0.26,0.477 -0.563,1.169 -0.173,0.433 -0.39,0.693 -0.649,0.823 l -0.346,-0.086 c -0.13,-0.173 -0.086,-0.39 0.13,-0.736 0.173,-0.26 0.173,-0.476 -0.086,-0.649 l -2.079,-0.303 c -0.39,-0.476 -0.736,-0.692 -1.082,-0.606 l -0.086,0.086 v 0.13 l 0.129,0.173 c 0.26,0.303 0.433,0.477 0.477,0.52 0.043,0.043 0.086,0.173 0.216,0.347 0,0 0.087,0.043 0.26,0.173 0.13,0 0.347,0.173 0.736,0.39 0.347,0.26 0.563,0.433 0.606,0.563 0.13,0.13 0.173,0.52 0.26,1.169 0.043,0.606 0.043,0.996 -0.043,1.169 -0.13,0.13 -0.347,0.26 -0.693,0.303 -0.433,0.13 -0.693,0.173 -0.736,0.216 l -0.303,-0.086 c -0.13,-0.13 -0.347,-0.39 -0.563,-0.823 l -0.736,0.52 c 0.043,0.087 0.043,0.26 0,0.477 -0.043,0.086 -0.13,0.26 -0.217,0.476 -0.043,0.173 -0.043,0.433 0,0.823 0,0.043 -0.043,0.13 -0.173,0.216 -0.173,0.087 -0.346,0 -0.52,-0.173 -0.13,-0.173 -0.346,-0.779 -0.649,-1.775 -0.303,-1.039 -0.433,-1.646 -0.39,-1.818 l -0.563,0.13 c -0.086,0.303 -0.086,0.693 -0.043,1.169 0.13,0.476 0.26,0.823 0.39,0.996 0.086,0.13 0.303,0.347 0.52,0.649 0.13,0.303 0.13,0.693 0.13,1.126 -0.043,0.52 -0.216,0.779 -0.52,0.779 -0.217,0 -0.346,-0.043 -0.39,-0.086 -0.173,-0.173 -0.217,-0.477 -0.173,-0.866 0.086,-0.52 0.086,-0.823 0,-0.953 -0.303,-0.303 -0.52,-0.52 -0.563,-0.606 -0.086,-0.173 -0.173,-0.52 -0.216,-1.083 -0.086,-0.606 -0.086,-0.996 -0.043,-1.125 0.13,-0.173 0.173,-0.303 0.26,-0.39 0.043,-0.13 0.13,-0.26 0.173,-0.477 0.216,-0.043 0.39,-0.043 0.476,-0.043 0.043,0.086 0.13,0.13 0.173,0.173 0.043,0.087 0,0.303 -0.173,0.736 l 0.563,-0.13 c 0.26,-0.303 0.433,-0.563 0.476,-0.779 0,-0.043 -0.043,-0.26 -0.043,-0.606 -0.043,-0.26 0,-0.433 0.086,-0.563 0.087,-0.043 0.216,0 0.477,0.043 0.043,0.173 0.173,0.347 0.303,0.606 0.043,0.303 0,0.606 -0.13,0.866 -0.173,0.217 -0.303,0.39 -0.346,0.52 -0.303,0.476 -0.216,0.909 0.173,1.255 0.216,0.173 0.52,0.303 0.953,0.433 l 0.736,-0.52 c -0.26,-0.52 -0.346,-0.822 -0.303,-0.953 h 0.173 c 0,0 0.13,0.043 0.39,0.217 0.173,0.086 0.346,0.086 0.476,0.043 0.347,-0.346 0.52,-0.692 0.52,-0.952 l -0.043,-0.13 c -0.087,-0.043 -0.909,-0.779 -2.425,-2.122 -0.476,-0.433 -0.736,-0.649 -0.736,-0.693 -0.822,-1.039 -1.342,-1.602 -1.515,-1.688 -0.26,-0.173 -0.693,-0.216 -1.299,-0.087 -0.606,0.087 -0.866,0.347 -0.693,0.736 0.086,0.216 0.347,0.346 0.823,0.39 0.476,0 0.779,0.086 0.823,0.216 0,0.173 -0.13,0.346 -0.39,0.477 -0.26,0.13 -0.39,0.303 -0.347,0.563 0.13,0.173 0.303,0.433 0.606,0.78 l -0.043,0.216 c -0.13,0.13 -0.216,0.216 -0.303,0.26 -0.346,0.26 -0.649,0.086 -0.953,-0.39 -0.259,-0.606 -0.433,-0.953 -0.519,-1.083 -0.087,-0.086 -0.217,-0.173 -0.39,-0.216 -0.13,0.086 -0.26,0.216 -0.303,0.39 -0.043,0.216 -0.087,0.346 -0.173,0.39 -0.13,0.086 -0.347,0.13 -0.563,0.13 l -0.216,0.173 h -0.13 l -0.043,-0.086 c 0.043,-0.303 0.087,-0.476 0.087,-0.52 l -0.173,-0.216 0.433,-0.39 c 0.173,-0.173 0.259,-0.433 0.173,-0.736 -0.043,-0.13 -0.303,-0.346 -0.736,-0.693 -0.433,-0.433 -0.649,-0.736 -0.606,-0.952 0.043,-0.13 0.13,-0.26 0.39,-0.477 0.087,-0.303 0.043,-0.822 -0.129,-1.602 -0.347,-0.13 -0.606,-0.259 -0.736,-0.303 -0.26,-0.216 -0.433,-0.347 -0.52,-0.39 l -0.086,0.086 c -0.043,0.216 -0.043,0.649 0,1.299 -0.043,0.606 -0.173,0.953 -0.39,1.126 -0.173,0 -0.26,0 -0.347,-0.043 -0.13,-0.26 -0.26,-0.477 -0.39,-0.563 -0.346,-0.13 -0.606,-0.26 -0.736,-0.303 -0.216,-0.13 -0.433,-0.39 -0.736,-0.736 -0.303,-0.39 -0.476,-0.649 -0.476,-0.866 -0.043,-0.13 0,-0.347 0.086,-0.693 -0.043,-0.173 -0.216,-0.347 -0.563,-0.563 -0.303,-0.216 -0.433,-0.433 -0.39,-0.649 l 0.043,-0.13 h 0.303 c -0.266,-0.345 -0.482,-0.562 -0.656,-0.648" + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/ukraine/vinnytsia_region.js b/lib/mapael-maps/ukraine/vinnytsia_region.js new file mode 100644 index 000000000..9c8cb0f81 --- /dev/null +++ b/lib/mapael-maps/ukraine/vinnytsia_region.js @@ -0,0 +1,55 @@ +/** + * + * Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) + * Requires jQuery and raphael.js + * + * Map of Vinnytsia Region + * + * @author Ievgen Sentiabov https://github.com/joni-jones + * @source http://upload.wikimedia.org/wikipedia/commons/thumb/b/b9/Vinnycya_regions.svg/574px-Vinnycya_regions.svg.png + */ +(function ($) { + $.extend(true, $.fn.mapael, + { + maps: { + vinnytsia_region: { + width: 830, + height: 870, + getCoords : function(lat, lon) { + // @TODO Implement the required code to convert the lat / lon to x / y coordinates + }, + elems: { + "Vinnytsia City": "m 380.531,312.199 c -0.12,0.08 -0.29,0.17 -0.5,0.29 -0.78,0.39 -2.06,0.67 -3.31,1.5 -1.3,0.86 -2.13,1.89 -2.44,2.99 -0.31,1.08 -0.28,1.91 -0.52,3.04 -0.4,2.03 -1.01,4.64 -2.04,6.79 -1.05,2.16 -2.41,3.69 -4.24,4.12 -0.19,0.04 -0.32,0.06 -0.42,0.06 -0.34,-0.01 -0.46,-0.1 -1.18,-0.84 -0.64,-0.68 -1.78,-1.79 -3.61,-2 -0.28,-0.03 -0.55,-0.05 -0.82,-0.05 -2.68,0.04 -4.89,1.38 -6.61,1.84 -1.54,0.5 -4.56,0.27 -6.92,1.44 -1.16,0.63 -1.74,1.54 -2.14,2 -0.46,0.51 -0.41,0.44 -0.59,0.47 -0.05,0 -0.14,-0.01 -0.28,-0.04 -0.75,-3.29 -1.91,-5.96 -3.87,-7.93 -2.13,-2.13 -5.09,-3.23 -8.82,-3.41 -1.49,-0.06 -3.13,-0.11 -4.22,-0.47 -1.11,-0.43 -1.45,-0.66 -1.61,-1.82 -0.01,-0.08 -0.01,-0.14 -0.01,-0.21 -0.01,-0.89 0.47,-1.75 1.29,-2.44 0.81,-0.69 1.94,-1.11 2.83,-1.1 0.08,0 0.15,0 0.23,0.01 0.52,0.03 1.03,-0.21 1.34,-0.64 0.75,-1.08 0.87,-2.24 0.86,-3.08 0,-0.41 -0.02,-0.77 -0.02,-1.07 0.06,-0.83 -0.01,-0.87 0.61,-1.39 0.18,-0.19 1.14,-0.39 2.33,-0.36 0.54,0 1.11,0.02 1.7,0.02 0.8,0 1.61,-0.02 2.43,-0.24 2.21,-0.62 3.76,-1.51 4.72,-2.79 0.96,-1.28 1.17,-2.75 1.16,-4.06 0,-1.43 -0.21,-2.82 -0.2,-4.17 0,-1.17 0.14,-2.29 0.62,-3.43 0.03,-0.06 0.05,-0.12 0.06,-0.17 2.83,-0.2 5.56,-0.7 8.08,-0.69 0.56,0 1.12,0.02 1.66,0.08 2.47,0.24 4.12,0.54 5.16,1.19 1.04,0.64 1.84,1.66 2.62,4.07 0.17,0.57 0.68,0.98 1.29,1.04 0.11,0.01 0.24,0.02 0.38,0.02 1.76,-0.01 2.79,-1.19 3.43,-1.94 0.65,-0.83 1.17,-1.39 1.46,-1.46 0.22,-0.09 0.53,-0.14 0.88,-0.14 0.95,-0.03 2.19,0.48 2.5,0.82 0.3,0.25 0.58,0.95 0.86,1.99 0.3,1.01 0.64,2.34 1.79,3.45 0.97,0.86 2.16,1.32 3.12,1.69 -0.23,0.11 -0.54,0.24 -0.88,0.39 -0.38,0.18 -0.81,0.42 -1.23,0.85 -0.41,0.42 -0.72,1.09 -0.75,1.78 0,0.03 0,0.05 0,0.07 0,0.04 0,0.07 0,0.08 0.03,0.97 0.53,1.56 0.97,2.02 0.85,0.799 1.92,1.4 2.85,1.83 z", + "Vinnytsia": "M326.781,246.539c0.85,0.05,1.36,0.41,2.07,1.47c1.01,1.55,1.77,4.31,2.92,6.78 c0.58,1.24,1.27,2.45,2.3,3.41c1.02,0.96,2.46,1.62,4.1,1.6c0.28,0,0.56-0.02,0.84-0.05c0.76-0.08,1.32-0.71,1.34-1.46 c0.04-2.08,0.18-4.19,0.32-6.33c0.81,0.31,1.77,0.75,2.76,1.2c1.79,0.78,3.71,1.62,5.76,1.64c1.27,0.01,2.64-0.41,3.69-1.43 c1.49-1.53,1.57-3.52,1.6-5.34c0-1.47-0.13-2.92-0.13-4.01c0-0.35,0.01-0.64,0.04-0.87c0.17-1.7,0.07-3.54,0.29-4.98 c0.24-1.42,0.58-2.1,1.27-2.41c0.06,0,0.14,0,0.25,0c0.54,0,1.46,0.05,2.25,0.12c0.39,0.03,0.76,0.07,1.03,0.11 c0.13,0.02,0.25,0.04,0.31,0.05h0.01c0.47,0.21,0.75,0.35,0.85,0.43c0.08,0.24,0.22,0.89,0.6,1.75c1.31,3,2.86,4.77,4.86,5.85 c1.98,1.08,4.12,1.56,7.07,2.65c3.21,1.16,6.18,1.73,8.25,2.67c2.07,0.99,3.15,1.92,3.64,4.5c0.49,3.5,1.96,5.79,5.08,7.67 c2.98,1.92,5.62,2.21,8.59,2.24c0.1,3.16,1,6.05,3.28,8.58c0.79,0.88,1.34,1.31,1.53,1.52c0.17,0.2,0.27,0.28,0.57,1.21 c0.57,1.75,0.66,3.17,1.82,5.26c1.82,3.15,3.89,4.98,4.51,7.86c0.6,2.61,1.31,4.47,2.7,5.94c1.16,1.23,2.61,2.06,4.56,2.99 c-0.13,0.62-0.2,1.23-0.2,1.83c0.07,4.73,3.67,8.38,6.89,10.54c2.97,1.97,5.93,2.56,8.64,2.94c2.73,0.38,5.221,0.58,7.601,1.56 c3.14,1.28,6.31,1.43,9.33,1.43c1.18,0,2.34-0.02,3.489-0.02c0.801,0,1.59,0.01,2.36,0.05c3.99,0.2,6.67,0.63,10.25,1.67 c-0.08,0.66-0.42,1.37-0.96,2.22c-0.61,0.99-1.44,2.08-1.95,3.5c-0.42,1.18-0.66,1.92-0.67,2.75c-0.07,0.91,0.64,1.87,1.08,2.13 c0.44,0.34,0.74,0.52,1.16,0.97c2.46,2.6,2.979,5.27,3.45,8.75c-0.221-0.07-0.46-0.12-0.721-0.12 c-0.75,0.01-1.31,0.28-1.97,0.63c-1.43,0.89-1.83,2.25-2.32,3.6c-0.43,1.36-0.68,2.72-0.76,3.59c-0.02,0.22-0.04,0.45-0.03,0.68 c0.061,2.74,1.261,4.29,1.36,5.92c0.03,0.32,0.05,0.67,0.05,1.04c0.01,1.79-0.38,3.95-0.39,6.16c0,0,0,0.05,0,0.11 c0.01,1.59,0.2,3.68,0.2,5.58c0,1.46-0.141,2.8-0.41,3.47c-0.141,0.45-1.101,1.66-2.18,2.81c-1.08,1.19-2.261,2.39-3,3.6 c-2.49,4.22-6.601,6.97-10.53,11.04c-2.44,2.6-6.63,3.93-10.71,4.19c-0.05-0.76-0.61-1.57-1.221-1.84 c-0.64-0.34-1.239-0.39-1.829-0.4c-2.75,0.04-6.7,1.61-7.23,1.75c-1.41,0.45-2.49,0.65-3.479,0.65c-1.48,0-2.9-0.44-5.07-1.54 c-0.68-0.33-1.66-1.03-2.74-1.67c-1.08-0.63-2.27-1.28-3.73-1.3c-1.29-0.05-2.71,0.77-3.44,2.12c-0.59,1-0.8,1.99-0.79,2.79 c0.01,0.65,0.1,1.19,0.16,1.5c-0.03,0.01-0.07,0.02-0.12,0.04c-0.07,0.02-0.14,0.04-0.23,0.06c-0.38-0.61-0.75-1.19-1.04-1.77 c-0.18-0.35-0.33-0.7-0.45-1.06c-0.39-1.01-0.48-2.15-0.48-3.41c0-0.76,0.04-1.57,0.04-2.4c-0.01-1.33-0.08-2.74-0.66-4.15 c-0.57-1.37-1.61-2.21-2.53-2.92c-0.94-0.69-1.83-1.28-2.27-1.77c-0.98-1.05-1.02-1.34-1.09-1.7c-0.07-0.39,0.05-1.29-0.17-2.69 c-0.63-3.8-2.35-7.94-6.66-9.49c-0.97-0.35-1.92-0.51-2.82-0.51c-3.29,0.01-5.69,2.09-7.54,4.29c-1.86,2.24-3.34,4.81-4.64,6.41 c-1.16,1.42-2.08,2.08-3.16,2.49c-1.09,0.4-2.48,0.54-4.45,0.55c-1.62,0.01-3.39,0.22-5,1.01c-0.9,0.44-1.75,1.12-2.38,2.02 c-1.37-1.55-2.8-3.2-3.65-4.64c-1.15-1.93-0.76-2.77-1.04-5.73c-0.16-1.53-0.34-2.75-1.09-3.89c-0.76-1.13-1.85-1.82-3.36-2.61 c-2.11-1.1-3.73-1.26-4.6-1.56c-0.83-0.33-1.22-0.46-2.2-2.3c-0.72-1.42-1.89-5.05-3.42-8.29c-0.77-1.63-1.63-3.19-2.69-4.44 c-1.04-1.22-2.39-2.26-4.15-2.28c-0.17,0-0.33,0.01-0.49,0.03c-0.88,0.13-1.43,0.55-1.95,0.97c-0.77,0.66-1.45,1.47-2.06,2.22 c-0.59,0.73-1.16,1.41-1.39,1.6c-1.67,1.5-3.64,3.18-5.45,4.23c-0.8-0.95-1.6-2.11-2.39-3.16c-0.51-0.69-1.02-1.33-1.62-1.87 c-0.58-0.52-1.31-1.05-2.35-1.06c-1.16,0-2.08,0.75-2.67,1.64c-0.61,0.92-1.12,2.13-1.64,3.83c-0.62,2.05-1.06,3.56-2.29,4.81 c-1.66,1.8-4.75,3.03-6.49,6.16c-0.39-0.24-0.78-0.45-1.19-0.59c-1.96-0.79-4.12-0.98-5.7-1.35c-4.69-0.97-8.08-5.06-13.36-7.39 c-1-0.43-1.7-0.62-2.23-0.82c-0.52-0.21-0.95-0.42-1.72-1c-1.3-0.96-2.54-2.66-4.35-4.02c-1.71-1.25-3.45-2.26-5.5-2.27 c-1.81-0.01-3.58,0.89-5.15,2.55c-1.63,1.67-2.16,3.54-2.3,5.13c-0.11,1.13-0.11,2.14-0.25,3.16c-0.89-0.47-2.06-1.65-3.01-3.24 c-1.31-2.09-2.32-4.68-2.65-5.98c-0.12-0.48-0.18-0.91-0.18-1.32c0.08-2.03,1.14-3.32,3.8-3.59c0.42-0.03,0.81-0.24,1.08-0.57 c0.26-0.33,0.36-0.77,0.29-1.18c-0.45-2.78-2.75-4.44-4.99-4.41c-1.82-0.06-3.69,1.16-4.39,3.2c-0.49-0.11-1.02-0.41-1.69-0.9 c-0.85-0.62-1.8-1.49-3.12-2.06c-2.79-1.18-6.1-2.04-9.03-2.77c0.22-0.78,0.96-1.82,1.94-3.01c1.15-1.47,2.64-3.21,2.68-5.69 c-0.01-0.03-0.01-0.05-0.01-0.07c-0.04-1.36-0.57-2.38-0.96-3.26c-0.42-0.88-0.69-1.61-0.66-1.96c0-0.15,0.02-0.24,0.08-0.36 c0.04-0.04,0.14-0.11,0.32-0.2c0.75-0.41,2.11-0.74,3.1-1.2c0.47-0.23,0.76-0.67,0.83-1.15c4.83,0.2,9.56,1.28,14.7,1.29 c0,0,0.01,0,0.02,0c1.61-0.01,2.83-0.21,3.85-0.84c1.04-0.6,1.61-1.83,1.57-2.85c-0.04-1.62-0.8-2.98-1.6-4.39 c-0.42-0.72-0.88-1.43-1.31-2.1c1.57-0.52,2.97-1.18,4.16-1.34c0.21-0.03,0.42-0.04,0.62-0.03c0.35,0,0.68,0.05,1.02,0.15 c0.6,0.11,1.8,1.33,3.02,2.7c1.25,1.3,2.65,2.93,5.01,3.01c0.22,0,0.43-0.02,0.64-0.05c1.77-0.39,2.73-1.63,3.89-2.8 c1.08-1.17,2.17-2.43,2.64-2.74c2.68-1.93,6.08-3.33,8.75-6.21c3.55-3.88,6.24-6.52,10.62-9.33c1.99-1.28,3.72-2.25,5.11-3.59 c1.4-1.31,2.33-3.18,2.29-5.5c0-1.07-0.16-2.22-0.47-3.54c-0.12-0.53-0.52-0.95-1.05-1.1c-0.66-0.2-0.96-0.48-1.23-0.91 c-0.25-0.43-0.41-1.09-0.41-1.88c-0.04-2,1.09-4.72,2.06-5.75c0.85-1.11,3.36-1.82,5.19-4.18c1.73-2.47,2.24-5.2,3.51-6.58 c1.4-1.71,3.87-2.63,5.59-5.57c0.64-1.2,0.81-2.32,1.1-2.9c0.37-0.56,0.14-0.51,0.98-0.61 C326.761,246.539,326.781,246.539,326.781,246.539z M384.011,311.438c0.04-0.69-0.4-1.32-1.07-1.52 c-0.34-0.09-1.39-0.51-2.2-0.99c-0.34-0.21-0.66-0.43-0.85-0.6c0.03-0.02,0.06-0.04,0.1-0.06c0.37-0.18,0.99-0.37,1.67-0.82 c0.68-0.4,1.44-1.42,1.4-2.58c0-0.27-0.03-0.53-0.08-0.78c-0.08-0.46-0.38-0.86-0.8-1.07c-1.42-0.67-3.23-1.21-3.68-1.71 c-0.4-0.37-0.68-1.08-0.96-2.1c-0.3-0.98-0.57-2.26-1.68-3.34c-1.18-1.06-2.82-1.61-4.56-1.64c-0.64,0-1.3,0.09-1.95,0.34 c-1.44,0.58-2.11,1.67-2.7,2.33c-0.17,0.21-0.32,0.37-0.44,0.49c-0.81-1.99-1.91-3.41-3.41-4.31c-1.83-1.09-3.9-1.35-6.42-1.62 c-0.66-0.06-1.31-0.09-1.96-0.09c-3.58,0.01-7.03,0.78-10.14,0.77c0,0,0,0-0.01,0c-0.02,0-0.08-0.01-0.24,0.01 c-0.82,0.11-1.39,0.87-1.28,1.69c0.05,0.37,0.23,0.7,0.5,0.93c-0.47,1.37-0.59,2.69-0.59,3.89c0,1.63,0.21,3.06,0.2,4.17 c0,1.05-0.15,1.72-0.56,2.26c-0.41,0.55-1.26,1.18-3.12,1.7c-0.31,0.09-0.92,0.13-1.63,0.13c-0.52,0-1.1-0.02-1.7-0.02 c-1.31,0.03-2.75,0.01-4.09,0.93c-1.54,1.03-1.91,2.77-1.85,3.82c0,0.4,0.02,0.76,0.02,1.07s-0.02,0.54-0.06,0.74 c-1.5,0.15-2.94,0.79-4.12,1.76c-1.34,1.11-2.37,2.77-2.37,4.75c0,0.14,0,0.31,0.02,0.5c0.13,2.39,1.97,3.93,3.69,4.39 c1.73,0.54,3.57,0.53,4.97,0.61c3.29,0.18,5.35,1.04,6.85,2.53c1.51,1.51,2.56,3.85,3.25,7.24c0.09,0.48,0.41,0.87,0.85,1.07 c0.77,0.34,1.48,0.53,2.18,0.54c0.02,0,0.04,0,0.05,0c1.42,0,2.39-0.96,2.85-1.56c0.52-0.64,0.84-1.06,1.24-1.26 c1.07-0.66,4.03-0.61,6.34-1.21c2.2-0.67,4.23-1.76,5.78-1.72c0.16,0,0.31,0.01,0.45,0.03c0.86,0.12,1.16,0.43,1.82,1.1 c0.57,0.6,1.59,1.76,3.34,1.76c0.37,0,0.74-0.05,1.12-0.14c3.11-0.76,5.03-3.21,6.24-5.74c1.23-2.57,1.86-5.4,2.28-7.5 c0.27-1.4,0.3-2.32,0.46-2.76c0.14-0.41,0.23-0.66,1.26-1.39c0.57-0.42,1.69-0.71,2.89-1.26 C382.491,314.719,383.971,313.429,384.011,311.438z", + "Bar": "M110.131,498.329c-0.01,0.29,0,0.729,0,1.29c0,0.859-0.02,1.97-0.1,2.869 c-0.04,0.44-0.09,0.841-0.15,1.08c-0.01,0-0.01,0.011-0.01,0.021c-0.14-0.22-0.33-0.601-0.49-1c-0.25-0.59-0.41-1.16-0.81-1.8 c-2.06-3.091-4.95-5.78-7.62-8.051c-2.73-2.359-4.8-3.72-8.61-3.93c-1.68-0.11-2.6-0.21-3.17-0.45 c-0.57-0.239-1.14-0.67-2.19-1.93c-1.58-1.85-2.2-4.56-2.75-7.59c-0.57-3-1.07-6.3-3-9.13c-1.8-2.57-4.47-3.9-6.78-5.19 c-2.35-1.28-4.3-2.49-5.21-4.26c-0.72-1.33-1.12-2.79-2.02-4.26c-0.88-1.48-2.44-2.82-4.87-3.41c-0.51-0.141-1.04-0.2-1.55-0.2 c-2.46,0.02-4.81,1.36-6.12,3.52c-0.35-0.149-0.65-0.38-0.98-0.729c-0.86-0.9-1.61-2.64-2.51-4.39 c-0.91-1.71-2.11-3.641-4.45-4.351c-0.37-0.109-0.71-0.14-1.03-0.14c-1.07,0.01-2.23,0.3-3.35,0.76 c-1.1,0.49-2.14,1.01-2.85,2.15c-0.4,0.689-0.6,1.439-0.6,2.13c0.01,1.21,0.53,2.1,0.9,2.76c0.4,0.67,0.67,1.17,0.72,1.47 c0.09,0.54,0.14,1.011,0.14,1.4c-0.08,1.439-0.36,1.63-1.03,2.03c-0.72,0.359-2.12,0.5-3.72,0.489c-0.54,0-1.1-0.01-1.67-0.02 c-1.34-0.021-2.89-0.14-4.47-0.14c-0.81,0-1.64,0.029-2.46,0.149c-1.33,0.22-2.36,0.65-3.25,0.96c-0.11-0.22-0.2-0.43-0.32-0.64 c-1.53-2.69-2.96-4.55-3.88-6.271c-0.93-1.72-1.5-3.27-1.64-6c-0.11-2.22-0.64-4.96-0.63-6.899c-0.01-0.79,0.11-1.391,0.16-1.49 c0.26-0.72,1.03-1.7,2.1-2.92c1.04-1.23,2.38-2.71,3.19-4.87c0.35-1.03,1.2-2.79,1.25-5.04c0-0.43-0.04-0.87-0.14-1.32 c-0.17-0.72-0.39-1.39-0.8-2.04c-0.63-1.01-1.62-1.56-1.94-1.73c-0.37-0.21-0.41-0.22-0.68-0.48c-0.9-0.89-1.31-1.57-1.63-2.42 c-0.3-0.85-0.47-1.96-0.55-3.51c-0.18-3.52-0.59-7.35-0.59-10.88c0-2.56,0.22-4.93,0.8-6.84c0.59-2.03,1.76-5.09,2.69-6.58 c0.18-0.3,0.33-0.55,0.45-0.76c0.23-0.06,0.52-0.13,0.85-0.23c0.01,0,0.04-0.01,0.16-0.02c0.11-0.01,0.29-0.02,0.51-0.02 c0.33,0,0.73,0.01,1.19,0.01c0.99-0.03,2.42,0.03,4.03-1.03c0.92-0.66,1.3-1.46,1.51-1.97c0.29-0.79,0.37-1.27,0.46-1.5 c0.54-0.23,2.16-0.55,3.9-0.5c1.7,0,3.46,0.15,4.96,0.15c4.45,0,8.75-0.12,13.22-0.39c1-0.06,1.91-0.61,2.42-1.48 c0.5-0.87,0.54-1.93,0.1-2.83c-0.28-0.52-0.44-1.51-0.66-2.88c-0.24-1.33-0.61-3.22-2.14-4.88c-1.64-1.71-3.44-2.22-4.3-2.69 c-0.11-0.06-0.21-0.11-0.29-0.15c0.01-0.03,0.02-0.06,0.03-0.09c0.1-0.51,0.84-1.31,2.4-2.22c1.5-0.95,3.49-1.77,5.22-3.63 c1.75-1.84,2.22-4.25,2.16-5.82c0-0.35-0.01-0.68-0.02-0.99c0.98,0.1,2.62,0.65,4.82,0.71c0.37,0,0.74-0.02,1.12-0.07 c0.89-0.11,1.67-0.61,2.15-1.37c0.78-1.2,1.08-2.56,1.07-3.6c0-0.27-0.02-0.53-0.04-0.75c0.02,0,0.04,0,0.07,0 c1.19-0.14,3.22,1.12,6.59,1.26c1.06,0.01,2.25-0.21,3.4-0.73c2.07-0.92,3.65-2.42,4.63-4.09c1-1.68,1.47-3.44,1.76-5.14 c0.17-1,0.38-1.55,0.54-1.82c0.23-0.37,0.27-0.44,1.11-0.89c0.81-0.41,2.25-0.93,4.09-1.85c2.15-1.13,4.02-1.96,4.89-1.89 c0.6,0.05,0.89,0.03,1.87,1.12c0.95,1.2,0.9,1.6,1.49,3.11c0.28,0.73,0.86,1.76,1.78,2.51c0.92,0.77,2,1.27,3.31,1.68 c1.7,0.4,3.63,2.47,7.3,3.45c0.59,0.14,1.12,0.17,1.59,0.17c1.14-0.02,1.94-0.16,2.33-0.15c0.13,0,0.2,0.01,0.22,0.01 c0.57,0.1,1.1,0.32,1.9,0.7c0.79,0.38,1.85,0.93,3.26,1.27c1.22,0.29,2.4,0.44,3.53,0.44c4.26,0.04,7.61-2.21,9.71-4.91 c2.13-2.66,3.45-5.78,4.6-8.55c0.6,0.29,1.33,0.55,2.18,0.67c0.28,0.04,0.55,0.06,0.82,0.05c1.45,0.01,2.69-0.55,3.56-1.13 c1.32-0.9,2.14-1.86,2.84-2.44c0.71-0.61,1.05-0.72,1.21-0.73c0.34-0.02,0.68-0.03,1.03-0.03c4.84-0.09,10.38,2.52,16.94,2.61 c1.64,0,3.34-0.2,5.07-0.68c0.01-0.01,0.02-0.01,0.03-0.01c-0.63,2.32-0.96,5.07-1.67,7.35c-0.42,1.39-0.97,2.54-1.62,3.25 c-0.68,0.7-1.35,1.07-2.58,1.09c-0.23,0-0.49-0.01-0.76-0.05c-1.78-0.23-2.92-0.62-4.4-0.63c-1.52-0.02-3.04,0.55-4.95,1.87 c-1.11,0.84-3.3,1.67-4.27,3.96c-0.27,0.73-0.32,1.44-0.33,2.1c0.01,0.92,0.11,1.77,0.1,2.45c0,0.43-0.03,0.77-0.1,1 c-0.27,0.94-0.55,1.46-0.75,1.7c-0.29,0.33-0.37,0.36-1.11,0.52c-0.71,0.13-1.86,0.22-3.25,0.75c-1.17,0.46-2.6,1.4-3.93,2.57 c-1.26,1.22-2.53,2.45-2.64,4.39c0,0.04,0,0.13,0.01,0.26c0.08,0.78,0.38,1.4,0.76,1.88s0.82,0.82,1.16,1.07 c0.37,0.26,0.68,0.47,0.87,0.63c0.1,0.08,0.17,0.14,0.19,0.18h0.02c0.12,0.25,0.23,0.97,0.22,1.81c0,1.59-0.28,3.53-0.29,4.92 c0,0.12,0,0.24,0,0.36c0.02,2.24-0.04,4.07,0.87,5.78c0.97,1.76,2.94,2.58,5.52,2.74c3.94,0.27,6.7,0.2,8.74,0.82 c1.82,0.56,3.31,1.54,5.19,4.23c-1.81,2.28-2.44,4.67-2.41,7.03c0,1.51,0.21,3.02,0.45,4.64c0.33,1.96,0.11,4.29,1.45,6.62 c0.74,1.21,1.66,1.96,2.25,2.63c0.13,0.15,0.24,0.28,0.34,0.41c-1.56,0.11-3.08,0.26-4.56,0.32c-0.53,0.02-1.02,0.32-1.27,0.79 c-1.57,2.95-2.27,6.04-2.27,9.05c0,2.88,0.64,5.689,1.75,8.25c0.71,1.75,2.09,2.649,3.11,3.02c1.04,0.41,1.59,0.561,2,1.011 c0.69,0.68,0.88,2.029,1.17,3.619c0.16,0.771,0.37,1.641,1.03,2.45c0.5,0.63,1.29,1.05,2.17,1.21 c-0.85,3.28-1.72,5.891-1.73,8.95c-0.01,2.23,0.5,4.601,1.75,7.4c0.48,1.05,1.45,4.38,2.61,7.399 c0.59,1.53,1.23,3.011,1.97,4.23c0.53,0.81,1.05,1.6,1.85,2.12c0.02,0.45,0.02,0.92,0.02,1.39c0,0.76-0.01,1.54-0.01,2.33 c0,0.86,0.01,1.74,0.06,2.62c0.04,0.66,0.51,1.22,1.16,1.37c0.47,0.109,0.93,0.17,1.38,0.17c0.5-0.01,0.97-0.08,1.4-0.19 c-0.38,0.891-0.71,1.83-0.74,2.891c-0.02,0.72,0.26,1.64,0.92,2.25c-0.17,0.149-0.34,0.319-0.5,0.51 c-1.17,1.38-1.32,2.93-1.29,3.939c0,0.19,0,0.37,0,0.54c-0.01,0.65-0.04,1.08-0.25,1.591c-0.21,0.359-0.06,0.22-0.57,0.399 c-0.44,0.141-1.5,0.15-2.48,1.11c-1.18,1.12-1.49,2.649-1.43,3.899c0,0.36,0.01,0.74,0.02,1.181c0,0-0.01,0.02-0.01,0.1 c0.01,1.93-0.14,5.42-0.91,8.26c-0.38,1.42-0.92,2.66-1.54,3.431c-0.55,0.64-1.04,0.96-1.7,1.06c-0.04-0.09-0.07-0.18-0.12-0.27 c-0.58-1.03-1.64-1.48-2.39-1.641c-0.79-0.189-1.49-0.25-2.12-0.42c-1.56-0.41-2.06-0.62-2.32-0.81 c-0.27-0.17-0.7-0.7-1.74-1.78c-2.61-2.65-5.16-2.77-7.37-4c-2.11-1.1-3.37-3.46-4.2-6.07c-0.65-1.77-0.49-5.399-2.76-7.92 c-1.15-1.2-2.68-1.8-4.19-1.8c-2.15-0.02-4.33,1.26-5.27,3.57c-0.69,1.71-0.59,3.279-0.66,4.49c-0.07,1.25-0.2,2.039-0.92,2.89 c-0.5,0.6-1.54,0.97-2.88,0.96c-1.06,0.01-2.23-0.23-3.14-0.561c-0.46-0.159-1.09-0.619-1.79-1.18 c-0.72-0.55-1.52-1.22-2.68-1.55c-0.51-0.14-0.97-0.21-1.41-0.21c-0.92-0.04-1.77,0.49-2.09,0.81 c-0.36,0.32-0.45,0.41-0.79,0.561c-0.75,0.31-1.2,0.38-1.54,0.38c-0.72,0.07-1.79-0.63-4.32-1.11 c-0.43-0.069-0.88,0.05-1.22,0.33C110.331,497.469,110.131,497.889,110.131,498.329z", + "Bershad": "M745.271,752.639c0.069,0.58,0.26,2.43,0.25,3.76c0,0.03,0,0.05,0,0.08c-0.021,0-0.03,0-0.05,0 c-0.801,0-1.83-0.13-2.931-0.14c-0.12,0-0.29,0-0.56,0.03c-1.561,0.149-2.74,1.489-2.7,3.069c0,0.01,0.01,0.04,0.01,0.11 c0.04,0.96-0.56,2.99-0.609,5.38c0.01,0.84,0.1,1.77,0.449,2.75c0.61,1.66,1.631,2.71,2.301,3.479 c0.72,0.78,1.119,1.28,1.3,1.73c0.43,1.01,0.649,2.27,0.899,3.84c0.271,1.55,0.591,3.42,1.58,5.37 c0.48,0.93,1.061,1.57,1.311,1.86c-0.03,0.069-0.09,0.21-0.23,0.42c-0.279,0.46-0.79,1.1-1.34,1.84 c-0.54,0.76-1.16,1.59-1.58,2.84c-0.5,1.54-0.6,3.021-0.6,4.32c0.01,1.33,0.1,2.51,0.1,3.52c0,1.09-0.1,1.96-0.38,2.73 c-0.479,1.37-0.9,2.38-1.27,2.89c-0.4,0.49-0.53,0.63-1.351,0.87c-2.97,0.73-6.71,0.76-10.649,1.66 c-4.341,1.04-8.32,2.3-12.24,2.62c-0.94,0.08-1.811,0.1-2.73,0.2c-0.7,0.079-1.439,0.189-2.26,0.51 c-0.49,0.17-0.99,0.47-1.44,0.84c-1.149-0.24-2.119-0.46-2.939-0.78c-1.45-0.58-2.55-1.35-3.87-3.28 c-0.36-0.529-1.02-0.779-1.64-0.609c-0.86,0.229-1.63,0.32-2.37,0.32c-2.561,0.039-5.021-1.2-8.46-1.32 c-4.391-0.08-9.29-0.03-12.53-1.97c-3.53-2.011-6.21-7.021-7.69-11.19c-1.069-2.85-3.09-6.98-3.039-9.29l0.01-0.02 c0.01-0.4-0.141-0.79-0.41-1.08c-0.271-0.301-0.66-0.471-1.05-0.48c-1,0-2.25-0.7-3.67-1.7c-1.431-0.979-2.99-2.199-5.021-2.66 c-0.47-0.109-0.93-0.149-1.359-0.149c-1.4,0-2.511,0.49-3.37,0.899c-0.88,0.421-1.551,0.761-2.23,0.87 c-0.229,0.03-0.47,0.051-0.71,0.051c-2.54,0.069-5.78-2.301-8.59-4.07c-0.92-0.54-2.2-1.67-3.61-2.69c-1.42-1-3.04-2-5.02-2.029 c-0.36,0-0.72,0.04-1.08,0.119c-1.89,0.41-3.01,1.61-3.811,2.36c-0.859,0.811-1.239,1.101-1.939,1.11 c-0.22,0-0.49-0.03-0.84-0.12c-1.79-0.4-4.4-3.33-4.98-5.67c-0.54-1.79-0.33-3.681-1.26-6.29c-0.85-2.311-1.79-4.561-2.39-6.72 c-0.881-3.141-1.61-6.24-1.96-9.37c-0.25-2.15-0.5-3.761-1.25-5c0.659-0.21,1.42-0.32,2.329-0.391 c1.98-0.14,4.4,0.051,6.86-0.77c3.8-1.3,7.33-3.811,9.04-8.01c0.4-1.021,0.63-1.71,0.65-2.511c0.05-0.8-0.5-1.689-0.94-1.989 c-0.439-0.36-0.71-0.49-0.96-0.71c0-0.011,0-0.011,0-0.011c-0.29-0.239-0.63-0.359-0.97-0.359c-0.17,0-0.34,0.029-0.5,0.09 c-0.12-0.03-0.24-0.07-0.351-0.101c-0.14-0.04-0.26-0.069-0.35-0.1c-0.12-0.11-0.35-0.34-0.59-0.6 c-0.37-0.351-0.73-0.771-1.46-1.101c-0.63-0.26-1.28-0.34-1.86-0.34c-1.58,0.03-3,0.46-3.92,0.44c-0.32,0-0.55-0.04-0.7-0.101 c-1.39-0.37-2.52-3.08-2.72-5.38c-0.09-0.729-0.68-1.3-1.41-1.34c-0.439-0.021-0.88-0.03-1.32-0.03 c-3.22,0.01-6.63,0.46-9.729,0.45c-1.56,0-3.03-0.11-4.33-0.41c-2.76-0.71-3.39-1.979-3.41-2.99c0-1.26,1.17-2.81,3.74-2.84 c0.24,0,0.49,0.021,0.76,0.05c0.71,0.091,1.38-0.34,1.601-1.02c0.229-0.67,0.31-1.3,0.31-1.84c-0.02-1.101-0.26-1.78-0.229-2.09 c0.02-0.29-0.011-0.521,0.819-1.45c1.2-1.29,3.17-2.16,5.22-3.45c2.601-1.76,4.671-4.51,6.561-4.9 c0.27-0.069,0.66-0.109,1.14-0.109c1.101-0.01,2.54,0.21,3.96,0.21c0.17,0,0.36,0,0.551-0.01c0.64-0.03,1.18-0.46,1.359-1.07 c0.01-0.04,0.021-0.07,0.03-0.1c0.43-0.78,0.36-1.391,0.41-2.091c-0.011-1.609-0.34-3.67-0.33-4.39c0-0.04,0-0.07,0-0.1 c0.13-2.011,0.71-3.33,1.51-5.511c0.73-2.04,0.85-2.779,1.79-3.68c0.27-0.26,0.61-0.42,1.22-0.7c0.59-0.27,1.44-0.72,2.11-1.609 c1.45-2.021,1.47-4.57,1.88-6.561c0.18-0.979,0.43-1.79,0.68-2.17c0.29-0.38,0.28-0.399,0.78-0.439c0.09,0,0.21,0.01,0.35,0.029 c1.07,0.141,2.49,1.2,3.94,2.61c1.47,1.38,2.94,3.01,4.84,3.939c1.891,0.9,3.67,1.311,5.351,1.311 c3.369-0.01,6.069-1.6,8.529-3.271c2.48-1.699,4.82-3.52,7.45-4.5c1.84-0.689,3.83-1.06,5.79-1.06c1.89,0,3.75,0.34,5.43,1.04 c1.75,0.729,2.881,1.42,4.221,2.01c1.33,0.601,2.85,1.021,4.899,1.01c0.33,0,0.67-0.01,1.04-0.029 c0.641-0.03,1.19-0.48,1.37-1.101c0.12-0.439,0.18-0.89,0.18-1.31c-0.02-1.811-0.949-3.08-1.6-4.12 c-0.64-0.95-1.06-1.7-1.11-2.3c1.46-0.82,2.96-1.391,4.551-1.78c0.55-0.14,0.979-0.58,1.1-1.14c0.13-0.57-0.08-1.141-0.53-1.5 c-0.12-0.03-0.89-1.19-1.34-2.46c-0.5-1.271-0.84-2.771-0.84-3.63c0-0.16,0.02-0.29,0.03-0.391c0.08-0.01,0.199-0.01,0.34-0.01 c0.3-0.01,0.72,0.03,1.2,0.03c0.609-0.011,1.39-0.021,2.22-0.58c1.31-0.851,1.88-2.32,1.82-3.37 c-0.021-0.86-0.16-1.49-0.15-2.01c0-0.12,0.01-0.23,0.02-0.341c0.421-2.909,0.961-3.81,3.41-5.09 c1.19-0.59,3.351-0.87,5.33-1.47c1-0.31,2-0.72,2.851-1.49c0.62-0.55,1.09-1.33,1.3-2.229c1.189-0.04,2.399-0.061,3.62-0.061 c2.58,0,5.189,0.07,7.81,0.07c2.561-0.01,4.04,0.07,4.91,0.49c0.86,0.38,1.64,1.17,2.82,3.38c2.08,3.89,5.63,7.7,9.229,10.18 c1.79,1.2,4.03,1.74,6.13,2.34c2.101,0.57,4.051,1.21,5.011,2c0.819,0.561,1.51,2.38,3.029,3.811c2.7,2.37,5.16,3.5,7.521,3.5 c3.5-0.03,5.93-2.41,7.979-4.9c2.07-2.54,3.92-5.43,5.91-7.28c4.851-4.56,12.24-7.38,17.92-12.56c1.84-1.71,2.84-3.75,3.87-5.13 c1.07-1.41,1.771-2.05,3.41-2.09h0.04c1.26-0.03,2.99,0.62,5.12,0.649c0.35,0,0.72-0.02,1.1-0.069 c1.71-0.271,3.07-0.88,4.33-1.42c0.62,1.6,1.83,2.27,2.37,2.6c0.31,0.17,0.52,0.29,0.62,0.35c0.21,0.301,0.59,0.931,1.01,1.631 c0.53,0.819,1.061,1.77,2.22,2.689c1.521,1.18,3.341,1.41,4.511,1.38c0.729,0,1.31-0.04,1.819-0.04c0.311,0,0.58,0.01,0.83,0.04 c0.891,0.101,1.5,0.25,1.86,0.38c0.189,0.07,0.32,0.13,0.38,0.17c0.01,0.07,0.03,0.2,0.03,0.391c0.02,0.84-0.351,2.58-0.37,4.77 c0,1.16,0.13,2.46,0.54,3.82c0.6,2.02,1.68,3.39,2.399,4.43c0.75,1.061,1.15,1.75,1.301,2.561c0.09,0.489,0.14,1.16,0.14,1.91 c0,0.619-0.03,1.289-0.08,1.979c-1.96,0.14-3.87,0.28-5.64,0.271c0,0-0.08,0-0.271,0.01c-1.21,0.05-2.27,0.83-2.68,1.979 c-0.41,1.141-0.101,2.42,0.8,3.23c1.1,0.979,2.53,1.91,3.72,2.939c0.29,0.25,0.561,0.5,0.78,0.73 c-0.12,0.11-0.229,0.22-0.34,0.33c-1.21,1.28-1.76,2.62-2.26,3.75c-0.471,1.13-0.91,2.12-1.03,2.26 c-1.41,2.08-4.021,4.21-6.09,7.42c-1.87,2.99-3.28,5.62-4.891,7.5c-1.63,1.88-3.27,3.13-6.26,3.88 c-0.18,0.04-0.46,0.08-0.82,0.08c-1.02,0.021-2.6-0.33-4.539-0.35c-1.061,0-2.271,0.13-3.5,0.66c-2.62,1.13-3.95,3.34-4.7,4.949 c-0.75,1.66-1.29,2.92-1.61,3.2c-0.22,0.23-0.3,0.26-0.54,0.351c-0.24,0.08-0.67,0.13-1.3,0.13c-0.54,0-1.21-0.04-2-0.04 c-0.88,0-1.91,0.05-3.05,0.34c-2.04,0.58-3.69,1.82-5.15,3.38c-1.399,1.59-2.67,3.5-2.729,6.08c-3.391,3.11-6.03,6.47-8.87,9.44 c-1.351,1.42-3.23,2.649-5.32,4.06c-2.07,1.4-4.37,3.01-6.22,5.479c-0.99,1.32-0.73,3.19,0.59,4.19 c1.32,0.98,2.57,1.41,3.42,1.82c0.43,0.2,0.75,0.38,0.93,0.51c0.19,0.13,0.221,0.19,0.221,0.19c0.08,0.079,0.25,0.71,0.239,1.71 c0,0.63-0.05,1.369-0.05,2.189c0,0.2,0,0.43,0.021,0.69c0.1,1.609,0.479,2.939,0.449,3.699c-0.18,0-0.409,0.011-0.67,0.011 c-0.71,0.02-1.62-0.04-2.87,0.38c-2.17,0.8-3.949,2.229-5.31,3.89c-0.43,0.54-0.72,0.88-1.01,1.28 c-0.25,0.36-0.78,1.09-0.811,2.29c0.011,0.66,0.181,1.12,0.261,1.33C745.142,751.919,745.121,751.679,745.271,752.639z", + "Chechelnyk": "M686.562,849.229c-1.03,0.88-1.04,1-2.261,1.08c0,0,0,0-0.02,0c-0.01,0-0.03-0.01-0.07,0 c-0.09-0.01-0.33-0.07-0.779-0.22c-0.54-0.16-1.391-0.48-2.58-0.49c-0.21,0-0.48,0.01-0.78,0.05 c-1.44,0.21-2.44,0.76-3.19,1.101c-0.75,0.37-1.25,0.56-1.55,0.59c-1.04,0.149-1.95,0.22-2.77,0.22 c-2.63-0.06-4.05-0.56-6.271-2.54c-1.64-1.58-3.51-2.36-4.92-2.58c-1.41-0.25-2.07-0.24-3.1-0.609 c-0.08-0.101-0.32-0.561-0.73-1.341c-0.439-0.84-1.35-2.18-2.93-2.909c-0.69-0.33-1.48-0.511-2.22-0.511 c-1.62,0.03-2.65,0.681-3.311,1.03c-0.67,0.39-1.06,0.58-1.13,0.58c-0.2,0.05-0.61,0.09-1.11,0.09c-0.89,0-2.04-0.13-3.3-0.13 c-1.58,0.01-3.96-0.29-6.41-0.29c-1.6,0-3.27,0.11-4.96,0.69c-3.47,1.13-5.71,3.77-6.529,6.39c-0.69,2.08-0.841,4.07-0.99,5.87 c-0.521,0.27-1.08,0.39-1.75,0.399c-1.01,0-2.271-0.35-3.53-1.06c-1.83-1.04-3-1.88-4.149-2.6c-1.11-0.7-2.511-1.46-4.301-1.46 c-2.31,0.06-4.01,0.989-6.72,2.439c-2.5,1.4-3.77,1.811-4.39,1.78c-0.58,0.01-1.54-0.271-3.641-1.63 c-0.899-0.54-1.93-1.86-3.149-3.53c-1.24-1.64-2.74-3.66-5.311-4.95c-1.39-0.68-2.83-0.939-4.12-0.939 c-0.21,0-0.42,0.01-0.619,0.02c2.54-1.39,4.899-3.399,6.38-6.42c0.569-1.21,1-2.38,1.02-3.79c0.03-1.16-0.46-2.7-1.64-3.64 c-1.16-0.94-2.46-1.16-3.641-1.16c-0.579,0-1.17,0.05-1.779,0.16c-1.98,0.35-3.391,1.25-4.58,1.91 c-1.181,0.68-2.12,1.13-2.7,1.199c-0.45,0.07-0.97,0.101-1.54,0.101c-1.46,0-3.18-0.221-4.87-0.391 c-1.38-0.09-3.82-1.06-6.609-1.119c-0.061,0-0.19-0.011-0.4,0.01c-1.32,0.069-2.29,0.479-2.92,0.72 c-0.33,0.13-0.57,0.22-0.71,0.26c-0.07,0.021-0.12,0.03-0.141,0.04c-0.029,0-0.079,0-0.13,0c-2.8-0.04-4.359-0.939-6.109-2.569 c-1.721-1.641-3.311-4.101-5.25-6.62c-3.271-4.17-7.4-7.681-11-11.011c-0.75-0.68-1.59-1.77-2.65-2.97 c-1.06-1.18-2.41-2.53-4.4-3.35c-0.76-0.32-1.489-0.54-2.25-0.66c0.03-0.23,0.011-0.47-0.079-0.7 c-0.891-2.16-1.921-3.21-1.921-4.78c0-0.06,0-0.09,0-0.09c-0.079-1.42,1.171-3.1,1.601-5.649c0.02-0.23,0.04-0.44,0.04-0.65 c-0.04-1.47-0.49-2.64-0.45-3.38c0-0.26,0.03-0.44,0.09-0.58c0.05-0.23,0.851-1.06,1.86-1.73c1.01-0.71,2.13-1.359,2.95-1.989 c1.189-0.98,3.439-1.971,4.43-4.48c0.54-1.439,0.56-2.63,0.63-3.47c0.08-0.87,0.15-1.37,0.64-2.2c1.771-2.88,3.62-5.95,4.5-9.59 c0.091,0.13,0.19,0.27,0.28,0.42c0.72,1.05,1.42,2.36,2.58,3.4c0.45,0.409,1.12,0.489,1.67,0.22c0.55-0.28,0.87-0.87,0.82-1.49 c-0.021-0.16-0.03-0.33-0.03-0.49c0-1.14,0.38-2.35,0.99-3.18c0.62-0.82,1.33-1.25,2.27-1.26c0.4-0.01,0.971,0.189,1.73,0.52 c0.76,0.311,1.7,0.75,2.91,0.761c0.149,0,0.26-0.011,0.35-0.011c1.17-0.13,2.01-0.62,2.89-1.04 c0.851-0.43,1.681-0.83,2.091-0.909c2.979-0.601,5.17-1.07,7.88-3.32c0.74-0.62,2.16-1.32,3.529-2.19 c1.351-0.87,2.83-1.97,3.391-3.89c0.14-0.51,0.189-1.01,0.189-1.5c-0.09-2.96-1.689-5.57-1.619-7.59 c0-0.391,0.05-0.74,0.149-1.07c0.46-1.45,0.88-1.81,1.4-2.07c0.56-0.279,1.58-0.359,3.01-0.35c0.24,0,0.479,0,0.74,0 c2.189,0,4.43,0.08,6.7,0.08c1.14,0,2.289-0.03,3.449-0.08c1.351-0.08,2.37-0.27,3.24-0.7c1.34-0.649,1.94-1.83,2.33-2.67 c0.25-0.55,0.49-1.07,0.86-1.63c0.13,0.18,0.27,0.39,0.42,0.63c0.5,0.75,1.029,1.8,2.21,2.561c1.319,0.81,2.75,0.899,4.06,0.909 c1.181,0,2.311-0.1,3.2-0.1c0.47,0,0.9,0,1.31,0c0.98-0.02,1.78,0,2.41,0.05c0.061,0.37,0.25,0.73,0.57,0.98 c0.28,0.2,0.6,0.3,0.91,0.3c0.28,0,0.55-0.08,0.79-0.23c0.27,0.61,0.54,1.7,0.72,3.551c0.37,3.38,1.15,6.64,2.05,9.84 c0.67,2.41,1.65,4.729,2.46,6.95c0.721,1.89,0.521,3.6,1.19,6.079c1.01,3.33,3.72,6.721,7.08,7.74 c0.569,0.16,1.109,0.24,1.63,0.23c1.93,0.01,3.189-1.141,4.01-1.94c0.88-0.84,1.48-1.399,2.39-1.6 c0.141-0.03,0.28-0.05,0.431-0.05c0.819-0.021,2.02,0.56,3.27,1.47c1.261,0.899,2.511,2.02,3.8,2.82 c2.62,1.529,6.03,4.43,10.15,4.5c0.39,0,0.79-0.03,1.18-0.091c1.301-0.22,2.261-0.75,3.051-1.119c0.8-0.391,1.39-0.61,2.08-0.62 c0.22,0.01,0.449,0.029,0.71,0.09c1.149,0.22,2.489,1.149,3.96,2.189c1.149,0.78,2.399,1.66,3.93,2.04 c0.439,3.28,2.32,6.771,3.12,9.09c1.63,4.44,4.34,9.99,9,12.761c4.35,2.51,9.7,2.25,13.97,2.38c2.6,0.02,5.09,1.28,8.53,1.32 c0.68,0,1.39-0.061,2.12-0.19c1.399,1.81,2.979,2.92,4.68,3.56c0.73,0.271,1.47,0.471,2.24,0.65c-0.41,1.23-0.53,2.51-0.54,4.06 c0,0.11,0,0.261,0,0.431c-0.03,2.99,1.52,5.29,2.71,6.45c1.2,1.26,1.8,1.779,2.229,2.979c0.221,0.61,0.351,1.49,0.351,2.521 c0.01,2.409-0.7,5.489-1.15,8.14c-0.72,4.3-1.04,8.45-1.46,12.51c-0.13,1.561-0.27,3.141-0.55,3.92 c-0.03,0.12-0.07,0.21-0.1,0.28c-0.211-0.04-0.591-0.12-1.11-0.35c-0.39-0.19-0.47-0.28-0.71-0.66 c-0.37-0.57-0.63-1.86-1.351-3.521c-0.38-0.83-0.96-1.79-1.93-2.58c-0.97-0.8-2.27-1.29-3.61-1.41 c-0.239-0.029-0.5-0.05-0.77-0.05c-1.44-0.029-2.74,0.57-3.33,0.94c-0.64,0.38-0.66,0.39-0.82,0.43 c-0.08,0.01-0.25,0.03-0.479,0.03c-0.53,0.01-1.41-0.12-2.58-0.14c-0.51,0-1.08,0.039-1.7,0.17 C689.081,846.589,687.461,848.398,686.562,849.229z", + "Chernivtsi": "M251.301,715.469c0.79,0.61,1.26,0.96,1.53,1.51c0.17,0.32,0.22,0.58,0.22,0.891 c0.03,0.55-0.24,1.27-0.54,2.17c-0.15-0.061-0.32-0.12-0.52-0.181c-0.72-0.21-1.54-0.92-2.37-2.12 c-1.26-1.77-2.42-4.39-3.88-6.67c-1.43-2.229-3.41-4.439-6.51-4.46c-0.94,0-1.91,0.21-2.91,0.63 c-2.13,0.99-3.01,3.061-4.1,4.681c-0.51,0.819-1.02,1.55-1.48,1.979c-0.48,0.45-0.79,0.58-1.11,0.58c-0.02,0-0.04,0-0.05,0 c-0.17,0-0.3-0.02-0.38-0.04c-0.07-0.27-0.05-1.01-0.14-1.93c-0.05-0.4-0.06-0.72-0.06-1.021c0-0.489,0.04-0.89,0.04-1.369 c0.02-0.511-0.08-1.33-0.63-1.971c-0.53-0.63-1.16-0.93-1.96-1.24c-1.03-0.399-1.92-0.619-2.77-0.619 c-0.52-0.03-1.05,0.1-1.52,0.319c-1.24-1.25-2.41-2.05-2.44-3.109c-0.01-0.11-0.02-0.221-0.02-0.341 c-0.05-1.909,1.58-4.079,3.09-6.31c0.33-0.51,0.32-1.16-0.02-1.66c-0.34-0.51-0.95-0.75-1.54-0.63 c-3.4,0.74-9.46,3.311-13.72,3.28c-1.18,0-2.16-0.19-2.87-0.57s-1.2-0.88-1.58-1.83c-0.47-1.09-0.17-2.729-0.72-4.819 c-0.32-1.131-0.84-1.961-1.35-2.58c-0.51-0.631-0.95-1.08-1.43-1.801c-0.44-0.64-0.63-1.1-0.7-1.33c0.25-0.1,0.81-0.26,1.5-0.38 c0.95-0.18,2.13-0.359,3.35-0.779c0.73-0.25,1.15-1.011,0.98-1.75c-0.95-4.051-3.03-6.771-4.03-10.141 c-0.48-1.55-0.65-3.27-0.65-5.06c0-2.05,0.23-4.19,0.41-6.29c0.04-0.49-0.15-0.94-0.48-1.24c-0.34-1.54-0.96-2.7-1.21-3.74 c0.08-0.01,0.15-0.02,0.19-0.01c0.04,0,0.04,0,0.04,0c0.15,0.03,0.3,0.04,0.45,0.03c0.01,0,0.02,0,0.04,0 c0.61-0.07,1.14-0.51,1.29-1.141c0.01-0.02,0.01-0.029,0.01-0.039c0.18-0.811-0.33-1.601-1.14-1.78 c-0.06-0.01-0.12-0.021-0.18-0.03c-0.98-0.18-2.11-0.18-3.2-0.25c-1.12-0.03-2.23-0.22-2.31-0.31 c-0.62-0.301-1.13-1.061-1.46-2.24c-0.32-1.16-0.41-2.601-0.41-3.82c0-0.35,0.01-0.68,0.02-1c0.02-0.66-0.41-1.27-1.05-1.47 c-0.64-0.2-1.34,0.04-1.7,0.6c0,0.04-0.55,0.49-1.29,0.761c-0.76,0.31-1.7,0.51-2.46,0.5c-0.36,0.01-0.67-0.04-0.9-0.11 c-0.71-0.22-1.01-0.47-1.14-0.63c-0.13-0.17-0.19-0.33-0.2-0.7c-0.03-0.88,0.68-2.59,1.32-4.35c0.16-0.67,1.08-1.61,1.15-3.381 c0-0.409-0.07-0.84-0.21-1.27c-0.55-1.44-1.69-1.88-2.42-2.28c-0.39-0.18-0.72-0.34-0.93-0.45c-0.05-0.029-0.09-0.06-0.12-0.079 c-0.14-0.28-0.17-0.5-0.18-0.721c-0.09-0.859,1.08-2.3,2.17-4.02c3.34-5.82,1.96-11.15,3.56-16.01 c1.17-3.94,3.87-7.601,3.93-12.2c0-1.67-0.41-3.431-1.38-5.2c-1.73-3.07-3.61-6.76-3.55-8.9c0-0.04,0-0.069,0.01-0.109 c0.04-0.03,0.09-0.05,0.13-0.09c0.5-0.381,0.69-1.011,0.54-1.58c0.03-0.03,0.05-0.07,0.09-0.101c0.56-0.47,1.75-0.93,3.84-1.01 c0.14-0.01,0.26-0.01,0.39-0.01c1.87-0.01,4.79,0.47,7.38,0.479c1.18,0,2.31-0.09,3.37-0.47c1.37-0.53,2.68-1.6,4.02-2.73 c1.32-1.119,2.58-2.319,3.36-2.97c0.96-0.85,1.7-2,2.56-2.96c0.83-0.99,1.67-1.49,1.98-1.43c0.08,0,0.17,0.01,0.29,0.05 c0.19,0.06,0.59,0.4,0.96,1.13c1.18,2.19,1.64,6.79,1.81,8.58c0.38,3.59,2.31,6.11,4.32,8.22c2.04,2.13,4.19,3.98,5.63,6.341 c0.25,0.409,0.7,0.68,1.18,0.71c6.44,0.39,12.7,0.46,18.96,1.05c3.07,0.27,5.95,0.43,7.94,1.95c1.29,0.88,2.15,3.02,4.21,4.729 c1.3,1.05,2.79,1.36,4.07,1.35c1.59-0.01,2.98-0.35,4.22-0.34c1.08,0.011,2,0.19,3.11,0.971c1.07,0.739,2.15,2.09,3.44,3.29 c1.92,1.739,4.08,2.859,5.76,4.159c2.67,2.101,3.65,3.301,4.18,6.301c0.15,0.899,0.04,1.199,0.13,2.029 c0.05,0.41,0.26,0.95,0.59,1.33c0.32,0.391,0.68,0.66,1.13,0.971c1.47,1.029,2.79,1.14,3.29,1.27c0.45,0.16,0.56,0.05,1.5,1.42 c2.05,3.2,3.34,5.07,3.35,8.33c0,0.15,0,0.3-0.01,0.46c-0.06,1.72-0.33,2.88-0.34,4.21c-0.05,1.64,0.72,3.33,2.49,4.91 c1.34,1.22,3.13,1.85,4.69,2.59c1.58,0.69,2.75,1.54,2.87,2c0.16,0.37,0.2,0.65,0.21,0.86c-0.01,0.359-0.12,0.609-0.46,1 c-1.04,1.229-4.25,2.2-6.3,3.33c-1.23,0.72-2.15,1.42-2.81,2.199c-0.66,0.771-1.08,1.7-1.08,2.65c0.03,1.54,0.93,2.62,1.85,3.48 c1.43,1.3,3.3,2.35,4.75,3.409c0.64,0.44,1.14,0.881,1.5,1.271c-0.56,0.54-1.1,1.02-1.76,1.45c-1.01,0.62-1.31,0.62-1.89,0.64 c-0.31,0-0.71-0.03-1.21-0.03c-0.47,0-1.04,0.03-1.67,0.17c-1.58,0.341-2.72,0.91-3.69,1.311c-0.98,0.399-1.77,0.67-3.06,0.67 c-0.09,0-0.17,0-0.24,0c-1.97-0.07-2.54-0.33-4.5-1c-1.5-0.53-3.1-0.93-4.63-0.94c-1.04,0-2.12,0.19-3.05,0.9 c-0.95,0.71-1.45,1.94-1.43,3.22c0,0.92,0.21,1.91,0.59,3.05c0.41,1.2,0.91,1.98,1.18,2.511c0.27,0.54,0.37,0.76,0.38,1.449 c0,0.221-0.01,0.48-0.05,0.79c-0.09,1.351-1.72,3.521-1.81,6.261c0,0.55,0.09,1.14,0.3,1.699c0.64,1.73,2.01,2.83,3.45,3.641 c2.17,1.21,4.72,1.979,6.6,2.95c1.93,1.04,2.8,1.88,2.81,3.33c0,0.46-0.1,1.029-0.34,1.729c-1.01,2.6-1.86,2.89-2.93,2.96 c-1.04,0.021-2.59-0.649-4.12-1.66c-1.53-1-3.05-2.27-4.31-3.229c-1.1-0.84-1.67-2.15-2.26-3.79 c-0.6-1.601-1.15-3.521-2.85-4.95c-0.91-0.75-1.85-1.2-2.86-1.2c-1.59,0.04-2.5,1.021-3.15,1.66c-0.67,0.69-1.21,1.19-1.59,1.29 c-0.22,0.08-0.45,0.11-0.71,0.11c-0.8,0.029-1.73-0.41-3.07-0.46c-0.69-0.04-1.7,0.29-2.26,1.05 c-0.56,0.74-0.78,1.59-0.91,2.689c-0.02,0.16-0.02,0.261-0.02,0.32c0.04,1.14,0.48,2.03,0.87,2.99 c0.41,0.91,0.81,1.84,0.86,2.14c0.21,0.96,0.44,1.88,0.62,2.79c-1.16-0.479-2.48-1.02-4.11-1.06c-1,0-2.09,0.26-3.13,0.859 c-2.11,1.17-3.15,3.351-3.12,5.49c0,0.78,0.12,1.58,0.36,2.36C249.501,713.969,250.551,714.898,251.301,715.469z", + "Haisyn": "M716.001,528.879c1.221,0.859,1.28,1.33,1.261,1.37c0.01,0.06-0.051,0.31-0.421,0.72 c-0.529,0.61-1.579,1.36-2.579,2.15c-0.99,0.819-2.091,1.609-2.49,3.189c-0.13,0.58-0.181,1.17-0.181,1.76 c0.021,2.931,1.131,6.12,1.521,8.21c0.51,2.67,1.07,5.25,2.24,7.74c-0.15,0.08-0.301,0.17-0.44,0.28 c-0.49,0.33-0.86,0.85-1.07,1.43c-2.38,0.021-5.079,0.3-7.079,2.26c-1.521,1.521-2.211,3.23-2.891,4.631 c-0.689,1.43-1.31,2.539-2.609,3.479c-1.75,1.32-4.04,1.7-6.12,4.271c-2.24,2.89-2.771,4.77-5.061,6.25 c-2.439,1.64-4.37,1.189-8.01,1.529c-3.12,0.32-5.33,1.2-7.94,1.32c-0.17,0.01-0.35,0.02-0.529,0.02 c-2.67,0.03-5.061-1.1-7.511-1.159c-1.189-0.051-2.659,0.479-3.47,1.75c-0.64,0.979-0.979,2.189-1.16,3.81 c-2.04,0.01-3.83-1.54-5.88-3.53c-2.02-1.92-4.26-4.33-7.76-4.38c-0.521,0-1.06,0.061-1.6,0.19 c-1.061,0.229-1.681,0.96-1.98,1.29c-0.34,0.37-0.41,0.42-0.58,0.47c0,0-0.01,0.01-0.03,0c-0.04,0.01-0.109,0.01-0.189,0.01 c-0.601,0.01-1.561-0.18-2.32-0.189c-0.149,0.01-0.29-0.03-0.68,0.1c-1.07,0.37-1.7,1.04-2.17,1.44 c-0.49,0.43-0.73,0.54-0.83,0.54c0,0-0.01,0-0.03,0c-0.08,0.029-0.51-0.16-1.05-0.631c-0.6-0.39-1-1.13-2.41-1.34 c-0.02,0-0.08-0.01-0.16-0.01c-0.85,0.03-1.41,0.31-2.13,0.63c-1.04,0.51-2.189,1.23-3.2,1.95c-1.02,0.76-1.79,1.33-2.34,2.13 c-0.47,0.7-0.72,1.49-0.72,2.26c0.04,1.73,1.01,2.811,1.64,3.74c0.69,0.94,1.101,1.68,1.08,2.311c0,0.079,0,0.159-0.02,0.27 c-0.16,1.07-0.521,1.44-1.2,2.3c-0.67,0.811-1.57,2.181-1.53,4.16c0,0.26,0.01,0.54,0.04,0.85c0.21,2.811,1.33,4.801,2.96,6.41 c-0.229,0.33-0.25,0.62-0.25,0.8c0,0.021,0,0.04,0,0.051c0,0.569,0.11,1.56,0.11,2.29c0,0.06,0,0.12,0,0.17 c-0.08,0.02-0.22,0.05-0.46,0.09c-0.57,0.08-1.74,0.28-2.641,1.28c-1.05,1.229-1.13,2.67-1.17,4.13 c0.011,2.3,0.521,4.77,0.811,6.01c0.439,1.92,1.27,3.93,2.02,5.58c0.65,1.42,1.63,2.47,2.45,3.38s1.45,1.69,1.6,2.16 c0.03,0.08,0.07,0.32,0.07,0.649c0.021,1.03-0.39,2.641-0.49,4.15c-1.14,0.771-2.6,1.34-3.63,1.32 c-0.79-0.021-1.229-0.2-1.67-0.78c-0.609-0.85-0.67-1.62-0.83-2.87c-0.13-1.21-0.49-2.92-2.01-4.34 c-0.48-0.46-1.21-0.55-1.79-0.21c-1.9,1.09-3.28,1.57-4.75,1.57c-0.88,0-1.84-0.181-3.02-0.591c-0.71-0.25-1.5,0.061-1.841,0.73 c-0.199,0.41-0.56,0.82-1.01,1.28c-1.58-4.49-4.13-9.16-5.84-13.301c-0.58-1.359-1.41-2.63-2.06-3.8 c-0.671-1.16-1.091-2.22-1.061-2.739c0-0.16,0.021-0.261,0.05-0.351c0.44-1.149,1.17-1.85,2.061-2.92 c0.88-1.04,1.8-2.59,1.779-4.77c0-0.33-0.02-0.66-0.06-1.011c-0.3-2.81-1.729-6.42-2.72-8.63c-0.65-1.359-1.71-2.16-2.44-2.87 c-0.79-0.71-1.04-1.21-0.99-1.279c0-0.07,0-0.19,0.2-0.49c0.12-0.26,0.73-0.53,1.91-0.811c1.08-0.279,2.73-0.67,3.75-2.33 c0.51-0.859,0.73-1.8,0.73-2.68c-0.011-1.35-0.48-2.55-1.12-3.51c-0.98-1.44-2.351-2.1-3.45-2.64 c-1.14-0.54-2.021-0.98-2.49-1.561c-1.49-1.75-1.939-3.06-2.97-4.45c-1.05-1.439-2.82-2.42-5.72-2.75 c-5.11-0.55-9.92-5.279-16.78-5.399c-0.21,0-0.43,0.02-0.64,0.029c-0.54-0.329-1.03-0.59-1.311-0.75 c-0.39-0.229-0.87-0.26-1.29-0.09s-0.75,0.521-0.88,0.96c-0.43,1.42-0.94,2.271-1.38,2.69c-0.45,0.42-0.771,0.52-1.271,0.54 c-1.239,0.08-3.64-1.391-5.93-3.28c-2.34-1.86-4.58-3.979-6.8-4.93c-4.36-1.72-11.05-3.03-13.49-5.72 c-0.75-0.721-1.14-2.261-2.03-3.961c-0.159-0.279-0.31-0.55-0.47-0.819c1.59-0.71,3.25-1.47,4.811-2.96 c1.329-1.32,2.369-3.17,3.329-4.09c1.32-1.32,2.881-2.57,3.471-5.051c0.1-0.42,0.14-0.81,0.14-1.189c0-1.03-0.34-1.83-0.56-2.37 c-0.24-0.56-0.34-0.85-0.33-1.09c0-0.061,0-0.101,0-0.12c0.06-0.49,0.45-1.12,1.1-1.93c0.62-0.811,1.46-1.78,1.83-3.21 c0.18-0.73,0.22-1.44,0.22-2.11c0-1.1-0.12-2.13-0.12-2.96c0-0.13,0.011-0.25,0.011-0.34c0.149-2.24,0.689-2.96,1.62-3.601 c0.97-0.64,2.729-1.01,5.05-1.33c0.68-0.1,1.21-0.659,1.28-1.34c0.05-0.56,0.079-1.05,0.079-1.52 c0.021-1.21-0.27-2.33-0.92-3.19c-0.64-0.85-1.399-1.38-2.33-2.12c-0.89-0.689-1.8-1.199-2.369-1.71 c-0.591-0.529-0.761-0.819-0.771-1.33c0-0.069,0-0.109,0-0.12c0.22-1.819,0.84-2.42,1.98-3c1.159-0.539,2.939-0.699,4.76-0.689 c1.149,0,2.32,0.05,3.39,0.05c0.38,0,0.74-0.01,1.08-0.02c0.62-0.03,1.16-0.44,1.36-1.03c0.37-1.33,2.7-4.05,4.06-4.93 c1.311-0.91,3.12-1.2,5.26-1.49c2.12-0.3,4.57-0.63,6.851-2.16c2.32-1.52,3.39-3.41,3.63-5.24c0.26-1.81,0.03-3.399,0.32-5.34 c0.33-2.04,0.659-2.25,1.13-2.54c0.55-0.33,1.99-0.5,4.029-1c2.48-0.66,4.801-2.24,7.061-3.59c1.99-1.22,3.92-2.19,5.35-2.36 c0.271,0.44,0.74,0.74,1.28,0.74c0.04,0,0.09-0.01,0.13-0.01c0.28-0.03,0.53-0.13,0.74-0.28c0.68,0.43,1.35,1.24,2.12,2.78 c0.77,1.64,1.37,3.46,2.41,5.06c0.979,1.59,2.79,2.99,5.229,2.94c0.98,0,2.04-0.19,3.22-0.561 c3.101-1.01,6.511-3.609,8.61-5.609c3.82-3.7,6.63-8.13,9.79-12.25c1.37-1.78,2.521-3.33,3.79-4.38 c1.27-1.04,2.6-1.67,4.72-1.78c0.49-0.021,1.011-0.03,1.561-0.03c3.609,0,8.33,0.431,11.859,0.78 c1.551,0.14,3.641,0.729,5.351,1.64c1.74,0.91,3.02,2.16,3.37,3.3c0.149,0.45,0.21,0.971,0.21,1.551 c0.01,1.14-0.261,2.5-0.271,3.989c-0.05,1.721,0.561,3.9,2.63,5.261c0.931,0.64,1.931,0.989,2.91,0.979 c1.811-0.02,3.101-1.05,4.13-2.02c1.03-1,1.931-2.101,2.771-2.79c1.97-1.681,4.8-3.4,7.05-4.05c0.54-0.16,1.2-0.25,1.95-0.25 c3.29-0.04,7.95,1.819,9.939,3.739c1.511,1.42,3.94,3.181,6.62,4.641c2.69,1.449,5.561,2.63,8.2,2.649 c0.24,0,0.47-0.01,0.68-0.029c0.561-0.04,1.051-0.4,1.271-0.921c0.35-0.92,1.069-1.96,1.37-3.399 c0.21,0.03,0.399,0.06,0.56,0.08c0.15,0.02,0.28,0.04,0.37,0.06c0.04,0,0.07,0.01,0.09,0.01c1.11,0.25,1.891,0.95,3.021,2.551 c1.109,1.55,2.229,3.77,4.3,5.71c1.09,1.02,1.54,1.819,2.109,3.05c0.57,1.2,1.181,2.87,2.461,4.72 c0.729,1.141,1.859,2.021,2.67,2.34c0.8,0.351,0.64,0.261,0.779,0.37c1.551,1.271,2.25,2.811,3.83,5.29 c1.08,1.67,2.3,2.83,3.351,3.7c1.06,0.89,1.92,1.51,2.71,2.33c0.89,0.88,1.76,2.81,2.25,5.06c0.51,2.24,0.72,4.73,0.81,6.69 c0.04,0.9,0.05,1.87,0.05,2.88c0,1.11-0.01,2.28-0.01,3.49c0,3.09,0.08,6.37,0.84,9.58c0.32,1.35,0.79,2.71,1.431,4 c-0.24,0.16-0.471,0.3-0.69,0.43c-0.81,0.46-1.41,0.7-2.3,0.71c-0.2,0-0.44-0.02-0.7-0.06c-1.88-0.2-3.99-1.96-6.91-2.65 c-2.09-0.44-3.7-0.52-4.87-0.87c-1.18-0.37-2.04-0.84-3.229-2.46c-0.74-0.979-0.92-2.6-1.221-4.39 c-0.159-0.891-0.369-1.84-0.89-2.75c-0.5-0.91-1.41-1.74-2.59-2.15c-0.6-0.22-1.2-0.33-1.8-0.33 c-2.13,0.021-3.65,1.33-4.75,2.67c-1.12,1.36-1.971,2.91-2.681,4.021C715.151,527.519,715.331,528.419,716.001,528.879z", + "Illintsi": "M703.972,413.509c0.329,1.26-0.11,3.22,0.819,6.09c0.25,0.72,0.78,1.32,1.471,1.67 c1.6,0.81,3.229,0.99,4.63,0.99c2.01-0.02,3.729-0.33,5.029-0.31c0.69,0,1.23,0.07,1.641,0.21c0.55,0.19,0.779,0.39,1.109,0.83 c0.49,0.67,0.92,2.08,1.21,3.81c0.32,1.729,0.521,3.71,1.141,5.689c0.399,1.21,0.93,2.061,1.24,2.681 c0.06,0.12,0.109,0.22,0.149,0.319c-0.31,0.301-0.689,0.66-1.06,1.011c-0.83,0.84-1.58,1.47-2.311,2.67 c-1.39,2.54-3.89,5.68-5.3,9.27c-1.24,3.41-1.21,6.38-2.03,8.521c-0.779,2.25-0.83,4.449-0.84,6.41c0,0.699,0.01,1.38,0.01,2.02 c-0.29,0.21-0.6,0.48-0.92,0.91c-0.33,0.439-0.66,1.17-0.649,1.99c0.02,1.5,0.899,2.359,1.38,2.729 c0.91,0.67,1.55,0.82,2.26,1.04c0.24,0.07,0.47,0.13,0.71,0.18c-0.14,0.521-0.43,1.11-0.78,1.86 c-1.68-0.11-4.109-1.03-6.369-2.27c-2.45-1.341-4.761-3.021-6-4.19c-2.82-2.6-7.73-4.51-11.99-4.56 c-0.971,0-1.91,0.109-2.8,0.369c-2.87,0.86-5.87,2.73-8.141,4.631c-1.13,0.97-2.05,2.1-2.91,2.92 c-0.87,0.84-1.56,1.21-2.05,1.189c-0.29,0-0.649-0.08-1.21-0.46c-1.149-0.84-1.28-1.47-1.33-2.78 c-0.01-1.079,0.26-2.46,0.271-3.989c0-0.78-0.08-1.62-0.36-2.471c-0.77-2.319-2.72-3.899-4.81-5.02 c-2.12-1.12-4.471-1.79-6.471-1.99c-3.55-0.35-8.319-0.79-12.149-0.79c-0.59,0-1.15,0.01-1.69,0.04 c-2.72,0.101-4.859,1.08-6.51,2.47c-1.66,1.391-2.9,3.11-4.25,4.86c-3.25,4.26-6.01,8.55-9.49,11.91 c-1.79,1.75-5.2,4.24-7.43,4.91c-0.96,0.3-1.73,0.42-2.32,0.42c-1.42-0.05-1.939-0.49-2.729-1.59 c-0.74-1.11-1.351-2.851-2.2-4.681c-1.05-2.37-2.59-3.899-4.311-4.58c-0.05-1.949,0.04-3.81-0.55-6.25 c-0.609-2.51-0.76-4.909-1.02-7.689c-0.21-2.08-1.11-4.33-2.351-6.22c-1.199-1.74-2.63-3.33-4.739-3.57 c-0.11-0.021-0.221-0.021-0.341-0.03c-1.02-0.01-2.05,0.48-2.77,1.28c-0.021,0.02-0.03,0.04-0.04,0.05 c-0.05-0.149-0.08-0.29-0.12-0.43c-0.16-0.67-0.18-1.851-0.2-3.08c-0.029-1.24-0.05-2.53-0.54-3.78 c-1.08-2.82-3.64-4.08-5.949-4c-1.86,0-3.681,0.58-5.311,1.271c-2.18,0.92-3.57,1.92-4.63,3.06c-1.06,1.13-1.79,2.25-2.96,3.6 c-1.11,1.341-3.21,2.311-5.23,3.28c-0.319-0.77-0.83-1.399-1.319-1.88c-0.82-0.8-1.67-1.38-2.271-1.99 c-1.39-1.38-2.35-2.46-3.529-3.399c-1.181-0.94-2.561-1.641-4.461-2.15c-3.229-0.89-5.069-2.38-6.27-4.39 c-1.19-2.01-1.68-4.681-1.68-7.84c0-0.08,0-0.16,0-0.25c0.01-0.8-0.61-1.47-1.41-1.52c-0.73-0.04-1.45-0.04-2.13-0.05 c0.17-0.45,0.399-0.96,0.64-1.47c0.55-1.23,1.24-2.36,1.3-3.82c0-0.11-0.01-0.22-0.02-0.33c-0.13-1.23-0.59-2.31-1.431-3 c-0.84-0.69-1.84-0.87-2.699-0.87c-1.63,0.04-3.29,0.55-4.431,0.74c-0.67-2.16-2.35-3.75-3.62-4.96 c-0.609-0.57-1.02-0.91-1.439-1.18c-0.38-0.27-0.97-0.45-1.38-0.43c-0.29,0-0.36,0.02-0.36,0.01c-0.01,0,0,0.01-0.109-0.02 c-0.431-0.12-0.841-0.16-1.181-0.16c-0.6,0.01-1.05,0.08-1.33,0.07c-0.25,0-0.35-0.03-0.43-0.07c-0.21-0.07-0.75-0.58-1.28-1.24 c-0.55-0.64-1.109-1.39-1.93-2c-1.5-1.08-2.5-1.86-3.13-2.73c-0.63-0.88-1.061-1.94-1.271-3.95c-0.1-0.94-0.189-2.18-0.189-3.39 c-0.01-1.42,0.16-2.83,0.439-3.46c0.03-0.09,0.061-0.17,0.07-0.26c1.28-0.32,2.47-0.87,3.42-1.29c3.01-1.38,5.16-2,8.44-2.54 c1.989-0.32,3.529-1.1,4.489-2.34c0.971-1.24,1.24-2.72,1.24-4.13c-0.04-3.31-1.35-6.93-1.32-9.5c0-0.01,0-0.02,0-0.03 c0.931-0.08,1.66-0.25,2.36-0.64c0.99-0.58,1.5-1.23,2.51-2.16c0.811-0.76,1.271-1.21,1.54-1.35c0.25-0.14,0.431-0.22,1.28-0.24 c0.21,0,0.47,0.01,0.771,0.03c0.77,0.04,1.449-0.51,1.569-1.28c0.601-3.44,0.9-4.16,3.37-5.82c1.75-1.12,2.98-1.59,4.16-2.73 c1.18-1.18,1.75-2.77,2.18-5.36c0.21-1.27,0.33-2.22,0.33-3.04c0-0.75-0.09-1.5-0.6-2.19c-0.86-1.05-1.92-1.05-2.7-1.14 c-0.84-0.06-1.75-0.1-2.93-0.35c-1.63-0.37-2.57-1.35-3.67-2.85c-0.881-1.2-1.74-2.7-3.051-4.02c0.41-0.91,0.62-1.86,0.71-2.78 c0.5-0.1,1.011-0.16,1.48-0.15c0.95,0,1.67,0.22,2.14,0.68c0.431,0.4,0.44,0.68,0.79,1.6c0.28,0.94,1.41,2.13,3.061,2.44 c0.779,0.19,1.54,0.28,2.29,0.28c3.31-0.02,6.06-1.65,8.54-3.24c2.47-1.61,4.76-3.22,6.83-3.71c2.529-0.63,4.72-0.63,7.05-1 c2.319-0.35,4.779-1.19,7.2-3.45c1.8-1.66,2.779-3.12,2.8-4.81c-0.03-1.75-1.03-2.86-1.82-3.9c-0.47-0.59-0.93-1.18-1.34-1.82 c0.13-0.01,0.26-0.01,0.39-0.01c1.17,0,2.5,0.13,3.851,0.14c0.989,0,2.01-0.09,3.01-0.42c0.72,0.89,1.689,1.53,2.8,1.99 c0.49,1.9,1.771,3.24,2.79,4.34c1.271,1.29,2.11,2.35,2.08,2.92c0,0.03,0,0.09,0,0.12c0.02,0.64-0.4,1.23-1.26,2.22 c-0.79,0.93-1.98,2.26-1.99,4.3c0,0.48,0.07,0.96,0.2,1.45c0.55,2.16,2,3.67,3.51,4.68c1.53,1.03,3.18,1.66,4.48,2.18 c0.779,0.3,1.609,0.45,2.369,0.68c0.761,0.2,1.341,0.55,1.36,0.62c0.26,0.29,0.39,0.78,0.521,1.57c0.02,0.1,0.039,0.2,0.06,0.31 c-3.96,0.2-7.89,0.14-12.021,1c-0.77,0.16-1.289,0.9-1.18,1.68c0.43,2.81,2.38,5.13,4.48,7.22c2.109,2.06,4.479,3.86,5.96,5.11 c0.63,0.54,1.13,1.13,1.739,1.71c0.591,0.56,1.48,1.22,2.681,1.21c0.64,0,1.27-0.17,1.88-0.46c1.34-0.68,2.21-1.83,3.12-2.95 c0.439-0.58,0.89-1.16,1.28-1.64c0.26,0.43,0.5,1.01,0.75,1.71c0.5,1.31,1.02,3.04,2.63,4.29c1.83,1.41,3.68,1.43,4.529,1.59 c0.45,0.08,0.591,0.16,0.69,0.25s0.31,0.34,0.51,1.13c0.101,0.43,0.15,0.83,0.15,1.21c0.02,2.01-1.42,3.82-3.71,5.37 c-2.261,1.52-5.17,2.62-7.29,3.25c-0.61,0.19-1.03,0.72-1.07,1.35c-0.01,0.16-0.01,0.29-0.01,0.39 c0.05,5.33,3.67,9.41,6.03,12.84c0.619,0.87,1.069,1.71,1.619,2.47c0.5,0.7,1.301,1.64,2.681,1.66 c1.189-0.03,2.06-0.64,3.04-1.5c1.2-1.14,1.97-2.92,3.05-4.53c0.52-0.78,1.06-1.49,1.55-1.92c0.5-0.45,0.86-0.58,1.09-0.58 c0.08,0,0.15,0.01,0.25,0.04c0.011,0.02,0.021,0.06,0.05,0.13c0.04,0.14,0.07,0.38,0.07,0.65c0,0.03,0,0.06,0,0.09 c0,0.83-0.38,2.01-0.49,2.13c-0.29,0.45-0.31,1.01-0.069,1.48c0.25,0.47,0.72,0.78,1.239,0.81c1.16,0.07,2.811,0.26,4.521,0.26 c1.3,0,2.66-0.1,3.93-0.51c1.261-0.4,2.511-1.19,3.23-2.54c0.5-0.96,0.53-1.9,0.53-2.69c0-0.46-0.011-0.9-0.011-1.29 c-0.01-0.57,0.04-1.02,0.15-1.3c0.12-0.29,0.21-0.44,0.57-0.67c0.529-0.32,1.05-0.41,1.79-0.42c0.649,0,1.439,0.1,2.34,0.1 c1.3,0.02,2.97-0.28,4.38-1.58c2.35-2.15,3.6-5.26,3.8-8.29c0.84,0.01,1.65,0.03,2.44,0.11c-0.431,1.54-0.761,3.41-0.761,5.28 c0.011,2.31,0.49,4.82,2.57,6.37c0.54,0.39,1.27,0.38,1.8-0.04c1.9-1.51,3.15-1.96,3.65-1.93c0.439,0.02,0.72,0.14,1.37,1.09 c0.59,0.91,1.22,2.43,1.989,4.21c1.9,4.2,5.2,6.89,6.83,10.03c0.42,0.78,0.58,1.92,0.58,3.27c0,1.23-0.12,2.59-0.12,3.98 c0.011,1.63,0.15,3.36,1.181,4.9c0.859,1.25,2.189,1.83,3.5,2.15c1.33,0.32,2.76,0.39,4.149,0.4c1.5,0,2.96-0.09,4.09-0.11 c0.221,0.66,0.421,1.1,0.391,1.44c0.02,0.77,0.609,1.4,1.38,1.46c1.28,0.11,2.44,0.18,3.63,0.18c1.03,0,2.08-0.05,3.23-0.18 c0.739-0.09,1.3-0.69,1.34-1.42c0.01-0.23,0.01-0.45,0.01-0.66c0-0.36-0.01-0.7-0.02-1.03c0.02,0.04,0.06,0.07,0.079,0.1 C703.691,412.789,703.951,413.319,703.972,413.509z", + "Kalynivka": "M479.691,209.188c-0.4,0.31-0.61,0.81-0.57,1.31c0.351,3.15,2.311,6.22,4.17,8.85 c-0.45,0.06-0.92,0.1-1.43,0.1c-0.771,0-1.6-0.05-2.49-0.05c-0.53,0-1.08,0.02-1.649,0.08c-2.73,0.31-5.29,1.28-7.53,2 c-2.82,0.95-5.97,2.63-8.26,2.59c-1.17-0.03-2.011-0.3-2.92-1.29c-0.271-0.31-0.641-0.48-1.051-0.5 c-0.399-0.02-0.79,0.12-1.09,0.4c-1.35,1.27-3.229,2.34-5.1,3.38c-0.61-0.52-1.101-1.11-1.771-1.76 c-0.89-0.88-2.189-1.77-4.1-2.09c-0.89-0.16-1.79-0.2-2.67-0.2c-1.53,0-3.04,0.13-4.28,0.13c-5.12,0-10.25,0-15.38,0 c-1.84,0-4.06-0.2-6.32-0.2c-2.37,0.01-4.82,0.21-7.01,1.25c-1.26,0.61-3.22,2.04-5.07,3.65c-0.92,0.81-1.77,1.64-2.45,2.46 c-0.65,0.85-1.24,1.53-1.31,2.78c0,0.16,0.02,0.32,0.05,0.48c0.1,0.43,0.38,0.8,0.77,1c4.58,2.3,7.71,8.95,10.43,14.06 c0.84,1.51,1.72,4.17,2.97,6.62c0.86,1.65,1.95,3.33,3.51,4.44c-0.39,0.47-0.72,1-1.03,1.55c-0.56,1.04-1,2.16-1.26,3.27 c-0.16-0.01-0.33-0.03-0.49-0.05c-2.5-0.43-5.59-3.04-7.27-5.07l-0.01-0.02c-0.02-0.03-0.05-0.05-0.07-0.07 c-0.06-0.06-0.13-0.12-0.2-0.17c-0.05-0.05-0.13-0.1-0.28-0.16c-0.18-0.07-0.38-0.11-0.58-0.11c-0.4,0-0.78,0.16-1.06,0.44 c-0.28,0.28-0.44,0.66-0.44,1.06c0,0.26,0.07,0.52,0.2,0.74c-0.08,0.1-0.15,0.19-0.24,0.28c-0.13,0.16-0.25,0.31-0.33,0.4 c-0.03,0.04-0.06,0.07-0.07,0.08c-0.17,0.08-0.8,0.22-1.55,0.2c-1.31,0-2.87-0.23-3.98-0.24c0-0.01-0.05-0.01-0.1-0.01 c-0.09,0-0.17,0-0.24,0c-3.67-0.01-5.58-0.01-8.37-1.77c-2.72-1.84-3.12-2.5-3.74-5.64c-0.54-3.55-2.81-5.66-5.38-6.74 c-2.57-1.14-5.52-1.67-8.44-2.75c-3.11-1.13-5.24-1.66-6.65-2.45c-1.4-0.8-2.35-1.76-3.56-4.44c-0.4-0.87-0.31-1.1-0.69-1.96 c-0.2-0.42-0.6-0.83-0.99-1.08c-0.4-0.26-0.82-0.46-1.41-0.72c-0.46-0.17-0.64-0.17-1.02-0.23c-1.02-0.14-2.65-0.26-3.69-0.26 c-0.12,0-0.21,0-0.3,0c-0.24,0-0.43,0-0.89,0.15c-2.26,0.85-3.06,3.02-3.3,4.82c-0.26,1.86-0.16,3.77-0.3,5.09 c-0.05,0.39-0.06,0.79-0.06,1.2c0,1.3,0.13,2.73,0.13,4.01c0.04,1.64-0.3,2.9-0.68,3.18c-0.46,0.43-0.89,0.57-1.61,0.59 c-1.13,0.02-2.83-0.61-4.54-1.38c-1.73-0.76-3.42-1.64-5.17-1.89c-0.41-0.06-0.83,0.06-1.15,0.33 c-0.32,0.26-0.52,0.65-0.54,1.07c-0.13,2.23-0.31,4.49-0.4,6.78c-0.73-0.18-1.25-0.61-1.85-1.36c-1.15-1.48-1.96-4.16-2.97-6.61 c-0.52-1.22-1.11-2.41-1.98-3.4c-0.85-0.98-2.14-1.76-3.67-1.8c-0.07,0-0.16,0-0.21,0c-1.34-0.07-2.45,0.59-3.13,1.4 c-0.53-1.98-1.04-4.46-2.12-6.33c-2-3.19-4.94-4.97-5.9-7.49c-0.31-0.75-1.16-1.12-1.92-0.83c-1.56,0.6-3.15,1.8-4.89,2.83 c-1.7,1.04-3.46,1.83-4.69,1.81c-0.8-0.03-1.37-0.22-2.07-0.96c-0.32-0.37-0.39-0.61-0.4-0.98c-0.08-0.97,1.16-2.84,2.25-4.15 c2.37-3.07,3.48-6.19,5.11-9.43c0.17-0.34,0.2-0.73,0.1-1.09c-0.1-0.34-0.52-1.82-0.83-2.56c-0.15-0.33-0.41-0.6-0.74-0.75 c-0.75-0.35-1.29-1.11-1.7-2.3c-0.4-1.17-0.59-2.63-0.78-3.91c-0.07-0.46-0.35-0.86-0.76-1.08c-1.67-0.93-3.16-1.02-4.03-1.22 c-0.89-0.25-1.09-0.24-1.75-1.27c-0.96-1.58-1.18-4.6-1.56-7.3c1.18-0.12,2.81-0.13,4.39-0.33c1.14-0.17,2.32-0.46,3.37-1.2 c1.06-0.73,1.85-1.99,2.06-3.52c0.03-0.26,0.05-0.5,0.05-0.75c-0.01-0.43-0.07-0.85-0.16-1.25c-0.62-2.83-2.89-5-3.77-6.49 c-0.93-1.48-0.83-1.44-0.85-1.72c0-0.19,0.04-0.58,0.04-1.16c0-0.3-0.01-0.64-0.04-1.05c-0.25-4.22-2.97-7.83-7.49-8.88 c-0.74-0.18-1.46-0.22-2.12-0.22c-0.81,0-1.56,0.06-2.21,0.06c-1.22-0.01-1.97-0.15-2.69-0.82c-0.55-0.59-0.5-0.61-0.54-1.15 c-0.01-0.49,0.16-1.39,0.17-2.6c0-0.03-0.01-0.05-0.01-0.08c0.33,0.02,0.66,0.03,1,0.03c0.47-0.01,0.97-0.02,1.48-0.04 c0.61-0.04,1.13-0.43,1.34-1c0.47-1.32,0.68-2.82,0.68-4.37c-0.02-2.98-0.73-6.13-2.67-8.2c-1.22-1.25-2.42-2.04-3.13-2.74 c-0.71-0.73-0.99-1.12-1.02-2.22c0-0.43,0.06-0.97,0.23-1.65c0.44-1.49,0.96-1.71,2.25-2.32c1.22-0.54,3.16-1.06,4.59-2.97 c1.56-2.13,3.49-5.55,4.24-8.17c0.15-0.53,0.22-1.06,0.22-1.57c-0.01-1.8-0.75-3.25-1.34-4.51c-0.61-1.26-1.06-2.32-1.04-3.07 c0-0.21,0.02-0.38,0.08-0.57c0.22-0.74,0.48-1.04,0.7-1.21c0.22-0.16,0.5-0.25,0.96-0.26c1.2-0.03,3.2,0.88,4.62,1.64 c1.71,0.89,2.4,1.59,3.12,2.55c0.71,0.96,1.4,2.31,2.7,4.1c0.91,1.23,2.42,2.82,4.13,4.24c1.72,1.4,3.51,2.65,5.41,3.01 c0.6,0.11,1.15,0.16,1.67,0.16c1.49,0.03,2.88-0.55,3.58-1.65c0.69-1.06,0.75-2.17,0.76-3.19c0-1.06-0.11-2.09-0.11-2.94 c0-0.6,0.06-1.1,0.17-1.39c0.25-0.7,0.54-0.98,1.02-1.26c0.72-0.42,2.02-0.59,3.5-0.67c1.49-0.12,3.13-0.15,4.7-0.87 c2.96-1.36,4.83-2.97,5.88-5.06c1.05-2.07,1.27-4.33,1.57-7.12c0.37-3.63,2.61-6.35,5.4-9.44c0.44-0.51,1.07-0.97,1.71-1.66 c0.45-0.47,0.89-1.14,1.12-1.95c2.14-0.19,4.24-0.55,6.14-1.47c2.01-0.97,3.72-2.68,4.65-5.18c0.07,0,0.14,0,0.2,0 c0.68,0,1.42,0.07,2.2,0.14c0.49,3.39,1.77,6.19,3.17,9.03c0.62,1.25,1.1,2.11,1.68,2.81c0.54,0.69,1.49,1.24,2.4,1.21 c1.75-0.11,2.66-0.92,4.91-1.49c0.94-0.27,1.75-0.38,2.44-0.38c1.51,0.02,2.43,0.48,3.29,1.3c1.27,1.24,2.18,3.55,2.93,6.11 c0.76,2.56,1.37,5.3,2.54,7.51c2.15,3.9,6.62,8.12,11,9.41c0.93,0.25,1.79,0.38,2.58,0.38c2.25,0.01,3.84-1.04,5.06-1.93 c1.26-0.91,2.28-1.69,3.86-2.05c0.28-0.06,0.56-0.09,0.84-0.09c1.21-0.02,2.66,0.58,4.2,1.39c1.55,0.79,3.15,1.78,4.95,2.26 c0.68,0.17,1.35,0.23,2,0.23c2.15-0.02,4.24-0.57,5.82-0.55c0.72,0,1.29,0.1,1.72,0.31c0.9,0.41,1.76,1.46,2.74,2.79 c0.979,1.29,2.09,2.84,3.979,3.74c1.261,0.57,2.511,0.59,3.65,0.6c0.41,0,0.81-0.01,1.19-0.01c1.17-0.02,2.039,0.14,2.279,0.35 c0.41,0.18,0.79,1.48,0.75,3.1c0,0.77-0.05,1.56-0.05,2.29c0,0.02-0.01,0.04-0.01,0.06c0.01,2.29,0.53,6.93,1.569,11.37 c0.521,2.22,1.16,4.37,1.98,6.14c0.69,1.46,1.43,2.74,2.61,3.55c1.08,5.5,4.359,9.44,5.21,13.91 c0.779,3.72,0.26,7.38,1.779,11.81c0.19,0.56,0.69,0.95,1.29,1c1.42,0.04,3.551,1.85,5.21,4.35c1.681,2.45,2.971,5.44,3.4,7.15 c0.19,0.76,0.95,1.24,1.72,1.1c0.771-0.13,1.311-0.85,1.23-1.62c-0.021-0.19-0.03-0.34-0.03-0.48c0-0.1,0.01-0.18,0.01-0.25 c0.301,0.07,0.82,0.27,1.37,0.6c1.19,0.68,2.63,1.79,3.811,2.76c0.59,0.48,1.12,0.94,1.55,1.29c0.47,0.38,0.66,0.59,1.12,0.85 c1.21,0.62,2.92,1.32,4.34,2.08c0.7,0.38,1.32,0.77,1.72,1.11c0.05,0.05,0.09,0.08,0.13,0.13 C479.731,209.159,479.711,209.168,479.691,209.188z", + "Khmilnyk": "M259.401,190.019c0.01,1.97-1.2,4.86-3.04,7.36c-1.83,2.53-4.3,4.68-6.34,5.47 c-1.53,0.63-5.57,1.33-7.66,1.31c-0.23,0-0.44,0-0.6-0.02c-2.43-0.13-4.37-1.59-7.4-1.67c-1.28-0.01-2.69,0.36-4.14,1.21 c-1.06,0.61-1.6,1.38-1.81,1.57c-0.22,0.15,0.01,0.16-0.85,0.22c-0.01,0-0.02,0-0.03,0h-0.01c-1.37,0.09-2.88-1.47-4.73-3.13 c-2.91-2.52-4.48-3.66-8.04-5.14c-2.13-0.88-4.3-2.48-7.08-3.35c-1.83-0.51-2.38-0.28-3.37-0.86c-0.35-0.18-1.27-0.91-2.25-1.59 c-1.02-0.66-2.12-1.4-3.61-1.44c-0.75-0.02-1.63,0.29-2.22,0.93c-0.29,0.3-0.52,0.64-0.7,1.01c-0.89-0.11-1.64-0.15-2.2-0.28 c-0.84-0.21-1.09-0.32-1.51-1.02c-0.16-0.29-0.26-0.74-0.25-1.34c-0.02-1.25,0.43-2.88,0.46-4.49c0-0.01,0-0.03,0-0.06 c0,0,0-0.01,0-0.02c0-0.41-0.17-0.8-0.47-1.09c-0.29-0.28-0.69-0.43-1.1-0.41c-0.07,0-0.13,0.01-0.17,0.01 c-0.76-0.01-1.37-0.33-2.25-0.95c-0.87-0.59-1.92-1.48-3.49-1.85c-0.49-0.12-0.94-0.17-1.37-0.17c-0.94,0-1.69,0.27-2.25,0.48 c-0.57,0.21-0.98,0.38-1.56,0.46c-0.68,0.09-1.36,0.13-2.07,0.13c-1.35,0-2.76-0.13-4.24-0.13c-1.81,0-3.78,0.21-5.71,1.24 c-0.78,0.42-1.33,0.98-1.86,1.41c-0.25,0.22-0.49,0.4-0.66,0.51c-0.08,0.05-0.14,0.08-0.18,0.09v0.01c0,0-0.02,0-0.03,0 c-0.24,0.03-1.14-0.29-2-0.8c-0.88-0.5-1.76-1.11-2.47-1.53c-3.03-1.76-6.09-2.06-9.12-2.06c-1.73,0-3.47,0.09-5.28,0.1 c-0.46-0.29-1-0.45-1.58-0.45c-0.06,0-0.11,0-0.15,0c-1.94,0.02-5.65-0.72-8.45-2.08c-1.4-0.66-2.59-1.47-3.29-2.24 c-0.71-0.78-0.92-1.34-0.93-1.94c0.01-0.39,0.11-0.91,0.52-1.66c0.74-1.3,1.38-1.83,2.01-2.17c0.64-0.33,1.43-0.48,2.53-0.48 c1.9-0.03,4.46,0.56,7.38,0.58c0.7,0,1.41-0.04,2.15-0.14c1.07-0.15,1.97-0.86,2.37-1.87c0.23-0.65,0.78-1.02,2.31-2.21 c0.71-0.58,1.6-1.4,2.26-2.61c0.68-1.2,1.04-2.7,1.03-4.34c0-0.1,0-0.16,0-0.19c-0.05-2.12-0.17-4.96-0.75-7.36 c-0.97-3.76-3.28-6.15-4.89-8.21c-1.66-2.12-2.65-3.67-2.71-6.01c0-0.1,0-0.14,0-0.15c0.01-1.06,0.2-1.49,0.4-1.82 c0.28-0.49,1.04-1.05,2.45-1.85c1.36-0.8,3.26-1.85,4.85-3.86c1.72-2.18,2.87-4.3,3.5-6.56c0.47-1.67,0.67-3.34,0.76-5.15 c0.41-0.24,0.79-0.53,1.14-0.88c0.98-0.93,1.49-2.35,1.45-3.52c-0.1-2.58-1.39-4.17-2.57-5.64c-1.25-1.44-2.55-2.55-3.67-3.27 c-4.82-3.16-6.36-5.64-8.06-11.48c-0.25-0.91-0.61-1.8-0.89-2.66c-0.14-0.42-0.27-0.81-0.34-1.12 c-0.07-0.29-0.08-0.47-0.09-0.48c0.01-0.24,0.03-0.42,0.05-0.52c0.45-0.2,2.01-0.56,4.01-1.28c1.52-0.63,4.91-0.96,8.11-1.96 c1.61-0.52,3.28-1.25,4.71-2.64c1.43-1.36,2.38-3.51,2.34-5.81c0-0.76-0.08-1.54-0.24-2.34c-0.2-1-0.91-1.83-1.86-2.2 c-1.05-0.4-1.94-0.89-2.37-1.24c-0.03-0.02-0.05-0.05-0.08-0.07c0.09-0.12,0.23-0.28,0.43-0.46c0.38-0.4,1.18-0.72,2.64-1.08 c1.4-0.38,3.43-0.79,5.32-2.39c1.01-0.89,1.5-1.83,1.76-2.24c0.02-0.02,0.03-0.04,0.04-0.06c0.06,0,0.11-0.01,0.18-0.01 c0.83-0.02,2.33,0.3,4.03,0.33c0.35,0,0.7-0.02,1.09-0.07c0.83-0.12,2.84-0.34,4.78-0.69c0.99-0.17,1.96-0.37,2.88-0.65 c0.93-0.35,1.76-0.46,2.93-1.71c0.7-0.91,0.77-1.51,0.9-2c0.15-0.72,0.19-1.29,0.26-1.69c0.02-0.13,0.04-0.24,0.06-0.31 c0.52-0.66,1.93-1.57,2.57-1.69c0.48-0.14,1.25-0.22,2.15-0.22c1.82-0.01,4.08,0.31,6.24,0.32c0.04,0,0.08,0,0.14,0 c4.09-0.04,7.02-1.85,9.21-3.19c2.27-1.39,3.81-2.26,5.7-2.25c0.4,0,0.82,0.03,1.3,0.12c2.59,0.46,5.27,2.01,8.52,3.47 c3.38,1.51,6.01,1.8,9.28,2.17c3.29,0.33,6.63,1.66,11.16,1.7c0.33,0,0.65-0.01,0.98-0.02c3.24-0.17,5.76-0.67,8.46-0.67h0.02 h0.04h0.02c2.42,0.02,4.37-0.35,6.04-1.1c1.67-0.76,2.88-1.66,4.56-2.7c1.77-1.12,3-1.9,3.96-2.33c0.97-0.42,1.66-0.6,2.97-0.62 c0.43,0,0.92,0.03,1.49,0.09c0.84,0.08,1.64,0.12,2.43,0.12c3.88-0.02,7.19-0.78,10.22-0.79h0.09c0.27,0,0.87,0.07,1.6,0.14 c0.74,0.07,1.61,0.14,2.42,0.14c0.89-0.05,1.7,0.05,3.08-0.66c1.74-1.13,2.07-2.46,2.42-3.29c0.15-0.44,0.27-0.81,0.37-1.07 c0.04-0.13,0.08-0.24,0.11-0.29c0.01-0.03,0.02-0.04,0.02-0.05c1.63-2.57,3.41-3.4,4.38-3.36c0.55,0.01,1.05,0.16,1.71,0.73 c0.65,0.57,1.41,1.63,2.02,3.34c0.52,1.48,2.09,2.3,3.6,1.89c2.7-0.73,6.15-1.3,9.43-1.3c3.33-0.01,6.44,0.61,8.51,1.9 c2.43,1.36,4.31,4.49,8.79,6.55c0.56,0.24,1.55,0.68,2.66,1.07c0.85,0.29,1.75,0.58,2.76,0.71c0.69,1.28,1.19,3.03,1.49,4.96 c0.46,2.77,0.61,5.75,1.03,8.09c0.48,2.64,0.87,5.28,1.86,7.73c0.98,2.44,2.7,4.69,5.58,6.08c0.45,0.22,0.98,0.2,1.41-0.04 c0.43-0.25,0.71-0.7,0.75-1.19c0-0.02,0.01-0.07,0.18-0.24c0.59-0.63,2.81-1.31,3.91-1.44c0.53-0.08,0.94-0.11,1.28-0.11 c0.74,0.01,1.02,0.11,1.49,0.4c0.46,0.3,1.07,0.91,1.96,1.83c2.39,2.37,5.43,3.69,7.29,5.34c-0.95,1.03-1.43,2.24-1.91,3.09 c-0.17,0.31-0.32,0.58-0.48,0.8c-0.23-0.16-0.51-0.25-0.81-0.25c-1.56,0-3.38-0.35-5.3-0.36c-0.5,0-1,0.03-1.52,0.1 c-0.59,0.08-1.08,0.51-1.24,1.08c-0.67,2.34-1.8,3.48-3.41,4.3c-1.62,0.81-3.83,1.13-6.27,1.26c-0.83,0.05-1.46,0.76-1.41,1.58 c0,0.08,0,0.15,0,0.19c-0.02,0.48-0.11,0.63-0.47,1.06c-0.36,0.41-1.03,0.91-1.73,1.68c-2.78,3.09-5.64,6.38-6.15,11.13 c-0.28,2.8-0.55,4.72-1.26,6.08c-0.7,1.36-1.83,2.45-4.48,3.7c-1.02,0.53-3.08,0.51-5.18,0.73c-1.06,0.12-2.16,0.33-3.2,0.9 c-1.04,0.56-1.96,1.57-2.41,2.91c-0.28,0.81-0.32,1.61-0.33,2.37c0.01,1.07,0.11,2.1,0.11,2.94c0.01,0.81-0.13,1.37-0.25,1.52 c-0.12,0.12-0.15,0.29-1.09,0.32c-0.31,0-0.7-0.03-1.17-0.11c-0.8-0.1-2.51-1.1-4-2.37c-1.51-1.25-2.94-2.77-3.62-3.7 c-1.17-1.6-1.79-2.84-2.7-4.1c-0.91-1.26-2.15-2.42-4.17-3.45c-1.49-0.74-3.65-1.94-5.99-1.97c-0.91,0-1.9,0.22-2.75,0.85 c-0.85,0.63-1.46,1.6-1.79,2.78c-0.14,0.47-0.2,0.95-0.2,1.41c0.02,1.73,0.76,3.11,1.33,4.36c0.61,1.24,1.06,2.34,1.05,3.22 c0,0.26-0.03,0.5-0.1,0.76c-0.54,1.97-2.43,5.42-3.77,7.19c-0.74,1.01-1.84,1.37-3.36,2c-1.46,0.56-3.39,1.78-3.97,4.35 c-0.22,0.86-0.33,1.65-0.33,2.38c-0.04,1.93,0.9,3.43,1.93,4.38c1.04,0.99,2.13,1.69,3.07,2.67c1.07,1.04,1.85,3.67,1.82,6.11 c0.01,0.85-0.08,1.68-0.23,2.4c-0.09,0-0.18,0.01-0.27,0.01c-2.28-0.01-3.68-0.35-5.21-0.97c-1.53-0.63-3.2-1.61-5.68-2.81 c-1.71-0.82-3.28-1.36-4.84-1.37c-1.34-0.01-2.71,0.49-3.67,1.52c-0.98,1.02-1.57,2.41-1.94,4.16c-0.47,2.48-0.1,4.25-0.8,5.68 c-1.02,2.39-3.61,4.7-5.1,7.94c-1.33,2.97-1.49,5.91-1.49,8.75c0,1.06,0.03,2.12,0.03,3.18c0,0.01,0,0.01,0,0.02 C259.401,189.969,259.401,190.009,259.401,190.019z", + "Koziatyn": "M510.262,63.589c0.029,0.15,0.039,0.4,0.039,0.71c0.011,0.47-0.039,1.07-0.039,1.8 c0,0.22,0.01,0.46,0.02,0.71c0.11,1.41,1.21,2.57,2.62,2.75c0.68,0.02,2.28,0.98,3.729,2.56c1.471,1.54,2.83,3.49,3.761,4.91 c1.479,2.21,2.77,4.88,2.729,7.02c0,0.43-0.04,0.85-0.14,1.27c-0.931,4.11-3.73,7.35-7.181,11.01 c-2.02,2.17-3.029,4.44-4.06,6.03c-1.06,1.63-1.84,2.54-3.51,3.2c-1.03,0.39-1.771,1.32-1.91,2.41 c-0.03,0.2-0.04,0.42-0.04,0.64c0.12,2.57,1.34,4.1,2.4,5.68c1.1,1.5,2.319,2.86,2.819,3.52c1.19,1.53,2.311,2.55,3.05,3.43 c0.74,0.89,1.181,1.54,1.511,2.77c0.26,1.01,1.02,1.81,2.02,2.12c0.95,0.33,1.29,0.7,1.75,1.65c0.41,0.94,0.641,2.46,0.63,4.14 c0,2.25-0.35,4.71-0.55,6.68c-0.05,0.45-0.07,0.91-0.07,1.38c0,1.26,0.171,2.57,0.561,3.84c-0.64-0.07-1.271,0.27-1.54,0.89 c-1.68,3.89-2.76,8.5-2.76,13.09c0,3.46,0.62,6.91,2.12,9.98c1.479,2.93,5.25,9.38,5.18,13.24c0,0.89-0.18,1.57-0.5,2.07 c-0.44,0.78-1.73,1.28-3.561,1.74c-1.75,0.49-3.96,0.95-5.569,2.82c-1.15,1.38-1.86,2.59-1.88,4c0,1.07,0.489,1.98,1.05,2.68 c0.57,0.71,1.25,1.34,2.01,2.06c2.771,2.65,4.07,4.44,4.05,6.51c0,1.02-0.3,2.26-1.069,3.85c-1.381,0-3.021,0.08-4.601,0.57 c-1.58,0.49-3.229,1.58-3.899,3.53c-0.16,0.45-0.181,0.87-0.19,1.27c0.021,1.22,0.3,2.44,0.3,3.38 c-2.81-0.06-6.399-2.25-10.51-2.36c-0.18,0-0.35,0-0.53,0c-0.45,0-0.88,0-1.29,0c-2.109,0-3.83-0.1-5.47-0.9 c-0.9-0.44-2.33-1.42-3.89-2.31c-1.551-0.86-3.23-1.69-5.11-1.74c-0.29-0.59-0.72-1.05-1.17-1.45 c-1.96-1.64-5.11-2.76-6.61-3.57c-0.239-0.17-0.76-0.62-1.439-1.19c-0.681-0.58-1.521-1.27-2.4-1.93 c-1.82-1.31-3.57-2.66-5.64-2.76c-0.311-0.01-0.66,0.05-1,0.18c-0.681-1.54-1.57-3.18-2.62-4.73c-1.7-2.44-3.74-4.73-6.41-5.45 c-0.97-3.34-0.62-6.58-1.41-10.62c-1.22-5.65-4.67-9.66-5.31-14.47c-0.08-0.53-0.431-0.98-0.931-1.18 c-0.31-0.07-1.14-0.95-1.8-2.46c-2.09-4.47-3.29-13.41-3.27-16.26l0.01-0.02c-0.01-0.58,0.04-1.42,0.04-2.33 c-0.04-1.76-0.05-4.03-2-5.54c-1.34-0.91-2.76-0.89-4.02-0.91c-0.421,0-0.82,0.01-1.19,0.01c-1.05,0.01-1.93-0.09-2.37-0.31 c-1.01-0.46-1.89-1.52-2.86-2.83c-0.979-1.28-2.029-2.81-3.85-3.7c-1-0.47-2.03-0.6-3.01-0.6c-2.141,0.01-4.23,0.57-5.82,0.55 c-0.47,0-0.9-0.04-1.25-0.13c-1.17-0.3-2.68-1.16-4.31-2.02c-1.65-0.85-3.48-1.72-5.59-1.73c-0.49,0-0.99,0.05-1.5,0.16 c-2.28,0.51-3.77,1.7-4.95,2.54c-1.22,0.87-1.99,1.36-3.31,1.37c-0.48,0-1.06-0.08-1.78-0.27c-3.12-0.8-7.54-4.81-9.15-7.94 c-1.21-2.2-1.9-6.12-3.19-9.6c-0.67-1.74-1.5-3.41-2.82-4.73c-1.31-1.32-3.18-2.18-5.4-2.17c-1.01,0-2.08,0.16-3.24,0.48 c-2.31,0.68-3.78,1.39-4.06,1.4c-0.05-0.03-0.18-0.15-0.4-0.47c-0.26-0.38-0.61-1.01-1.04-1.88c-1.1-2.23-2.02-4.25-2.56-6.42 c0.85-0.15,1.6-0.54,2.15-1.04c1.11-1.01,1.59-2.22,2.12-3.19c0.52-1,1.01-1.69,1.62-2.02c0.38-0.21,0.65-0.58,0.74-1 c0.09-0.43,0-0.87-0.27-1.22c-2.5-3.18-6.43-4.44-8.5-6.67c-0.89-0.91-1.58-1.65-2.46-2.24c-0.87-0.59-1.97-0.92-3.14-0.9 c-0.54,0-1.1,0.05-1.72,0.15c-0.97,0.14-2.36,0.45-3.67,1.04c-0.65,0.29-1.29,0.65-1.85,1.17c-0.07,0.07-0.15,0.15-0.22,0.22 c-1.39-0.98-2.22-2.22-2.87-3.78c-0.81-1.96-1.21-4.43-1.69-7.12c-0.37-2.03-0.53-5.07-1.02-8.05 c-0.28-1.65-0.66-3.31-1.29-4.81c0.08-0.04,0.16-0.07,0.24-0.11c0.85-0.43,1.67-1.18,2.11-2.08c0.45-0.89,0.51-1.73,0.52-2.32 c-0.02-0.89-0.12-1.42-0.11-1.71c0-0.17,0.02-0.25,0.03-0.3c0.07-0.2,0.15-0.37,0.56-0.79c0.4-0.41,1.09-0.95,1.86-1.83 c0.93-1.08,1.47-2.19,1.79-3c0.33-0.83,0.49-1.28,0.78-1.76c0.73-1.14,1.27-1.46,2.43-1.82c1.14-0.32,2.9-0.38,5.02-0.39 c2.51-0.03,5.05-0.32,7.18-0.31c0.98,0,1.86,0.05,2.58,0.19c0.71,0.11,1.56,0.61,2.83,1.42c1.23,0.76,3.02,1.85,5.48,1.86 c0.77,0,1.57-0.11,2.37-0.34c2.06-0.61,3.33-1.74,4.3-2.38c1-0.7,1.48-0.88,1.93-0.88c0.12,0,0.24,0.01,0.39,0.04 c0.51,0.09,1.11,0.47,1.82,1.37c0.71,0.88,1.38,2.13,2,3.33c0.54,1.04,1.58,3.42,2.76,5.7c0.6,1.15,1.25,2.29,1.97,3.32 c0.74,1.03,1.47,1.98,2.74,2.76c1.25,0.73,2.56,0.94,3.78,0.94c3.71-0.12,7.04-1.66,9.27-3.88c2.57-2.6,3.1-5.74,3.02-7.82 c0-0.59-0.02-1.12-0.02-1.61c0-0.75,0.03-1.42,0.17-2.13c0.21-0.79,0.26-0.67,0.37-0.78c0.14-0.1,0.73-0.28,1.71-0.27 c0.58,0,1.28,0.05,2.03,0.12c1.34,0.14,2.38,0.77,3.87,1.9c1.47,1.07,3.229,2.67,5.96,3.45c0.64,0.17,1.27,0.25,1.87,0.25 c2.51-0.05,4.31-1.09,5.84-1.8c1.521-0.77,2.74-1.23,3.31-1.19c0.101,0,0.171,0.01,0.25,0.02c0.631,0.09,1.4,0.57,2.521,1.43 c0.55,0.42,1.18,0.91,2,1.35c0.8,0.45,1.88,0.86,3.13,0.86c2.11-0.01,3.98-1.14,5.61-2.83c1.12-1.17,2.359-2.92,3.5-4.98 c1.1-2.09,2.109-4.29,2.16-6.82c-0.011-0.58-0.07-1.17-0.24-1.78c-0.28-0.81-0.65-1.4-1.01-1.84 c0.279-0.05,0.569-0.11,0.88-0.18c3.819-1.02,6.449-1.47,10.359-1.49c0.07,0,0.09,0,0.101,0c1.34,0,2.6,0.07,3.95,0.07 c2.239,0.02,4.829-0.26,7.56-1.64c4.47-2.21,7.16-6.32,8.25-10.78c0.54-2.37,0.3-4.47,0.51-5.52c0.01-0.11,0.03-0.19,0.05-0.27 c0.021,0,0.04,0,0.07,0c0.13,0,0.29,0.01,0.5,0.04c0.3-0.01,1.34,0.48,2.41,1.36c1.1,0.86,2.21,1.95,3.39,2.86 c2.34,1.75,3.21,4.03,5.69,7.35c4.29,5.57,8.109,11.28,8.83,17.54c0.41,3.36,2.35,5.53,3.609,7c0.65,0.74,1.16,1.34,1.431,1.79 c0.27,0.45,0.31,0.65,0.31,0.89c0.01,0.28-0.1,0.96-0.99,2.25c-0.47,0.69-1.449,1.72-2.42,2.96c-0.93,1.25-2.05,2.85-2.09,5.18 c-0.01,1.18,0.37,2.45,1.08,3.5c1.08,1.55,2.37,1.89,2.79,2.14c0.12,0.06,0.2,0.1,0.26,0.13 C510.251,63.509,510.262,63.549,510.262,63.589z", + "Kryzhopil": "M533.531,742.238c0.56,0.73,0.88,1.54,0.88,1.96c0,0.011,0,0.04,0,0.101 c-0.01,0.33-0.03,0.57-0.07,0.729c0,0.03-0.01,0.051-0.01,0.07c-0.02,0.01-0.04,0.01-0.069,0.01 c-0.471,0.061-1.62-0.06-2.94,0.48c-1.92,0.84-2.96,2.6-3.35,4.5c-0.221-0.03-0.44-0.04-0.65-0.04 c-1.48-0.04-2.68,0.75-3.32,1.51c-0.68,0.75-1.12,1.42-1.739,1.94c-1.521,1.27-2.4,1.14-5.16,1.39 c-0.94,0.08-1.9,0.12-2.851,0.12c-3.63,0-7.26-0.63-10.39-2.08c-1.2-0.55-1.771-0.73-2.68-1.26 c-0.61-0.351-0.891-0.66-1.471-1.12c-0.56-0.48-1.47-0.94-2.609-1.07c-0.33-0.05-0.66-0.07-0.971-0.07 c-1.699,0.03-2.79,0.49-3.409,0.45c-0.44-0.01-0.79-0.06-1.57-0.649c-1.65-1.271-2.83-2.95-4.37-4.62 c-1.52-1.65-3.55-3.24-6.62-3.771c-0.979-0.18-1.93-0.25-2.85-0.25c-7.11,0.101-11.96,4.261-18.09,4.24 c-3.421,0.05-5.82,1.11-8.45,1.34c-1.82,0.181-2.971,0.08-4.33,0.4c-1.391,0.33-2.59,1.22-3.92,2.77 c-2.181,2.42-3.101,4.141-3.44,7.471c-0.05,0.409-0.1,0.76-0.149,1.06c-0.69-0.44-1.74-0.94-3.04-0.94 c-0.57,0-1.17,0.091-1.79,0.301c-0.641,0.199-1.24,0.54-1.67,1.1c-0.44,0.54-0.591,1.22-0.58,1.76c0.01,0.95,0.3,1.67,0.51,2.36 c0.22,0.67,0.38,1.29,0.37,1.74c0,0.149-0.01,0.279-0.03,0.399c-0.39,1.641-0.76,2-1.2,2.261c-0.46,0.29-1.529,0.46-3.189,0.649 c-1.82,0.25-2.98,0.34-4.141,1.04c-0.569,0.36-1.04,0.97-1.239,1.601c-0.21,0.619-0.25,1.229-0.25,1.89 c0,0.45,0.02,0.93,0.06,1.47c0.01,0.23,0.01,0.44,0.01,0.62c-0.01,1.01-0.13,1.31-0.43,1.94c-0.31,0.619-0.92,1.51-1.68,3 c-0.841,1.71-1.311,2.56-1.69,2.819c-0.34,0.29-1.07,0.54-3.11,0.61c-3.99,0.17-7.25,1.1-10.71,1.34c-0.12,0-0.26,0.01-0.4,0.01 c-1.54,0.021-3.86-0.59-6.07-0.6c-0.75,0-1.51,0.07-2.26,0.32c-1.27,0.38-2.17,1.369-2.47,2.189c-0.33,0.82-0.41,1.29-0.69,1.71 c-1.5,2.36-2.74,3.96-4.69,4.41c-0.38,0.09-0.8,0.12-1.25,0.13c-2.06,0.03-4.65-1.04-7.45-1.08c-0.69,0-1.41,0.08-2.12,0.29 c-0.5,0.15-0.96,0.36-1.37,0.63c-0.06-0.069-0.11-0.14-0.16-0.189c-0.73-0.73-1.41-1.05-1.8-1.42 c-0.39-0.37-0.54-0.521-0.59-1.21c-0.01-0.07-0.01-0.101-0.01-0.15c0.02-0.49,0.06-0.479,0.1-0.58c0-0.06,0.44-0.52,0.46-1.39 c-0.03-0.851-0.34-1.38-0.83-2.24c-0.75-1.28-1.93-2.51-3.57-2.86c0-0.05,0-0.1,0-0.149c-0.01-1.36-0.23-2.53-0.27-3.67 c-0.03-0.78-0.64-1.4-1.42-1.44c-2.95-0.13-5.99-1.52-9.22-2.62c-3.27-1.06-6.35-0.8-8.68-1.609c-0.87-0.28-1.35-0.58-1.52-0.75 c-0.08-0.08-0.1-0.12-0.1-0.12c-0.01-0.011-0.01-0.021-0.01-0.03c0-0.19,0.46-1.06,1.2-1.98c0.76-1.039,1.74-2.18,2.1-3.779 c0.11-0.55,0.15-1.09,0.15-1.641c-0.02-2.369-0.74-4.75-0.79-6.409c-0.02-0.301-0.02-0.591-0.02-0.891 c0-1.359,0.11-2.819,0.11-4.34c0-0.7-0.02-1.41-0.1-2.13c-0.1-0.89-0.14-1.7-0.14-2.47c0-2.391,0.41-4.5,0.97-7.37 c0.02-0.01,0.04-0.01,0.06-0.021c0.51-0.149,0.9-0.56,1.03-1.08c0.15-0.63,0.24-1.239,0.24-1.83c0-0.729-0.14-1.409-0.37-2.029 c0.96-1.09,2.18-2.09,3.61-2.65c0.84-0.34,1.6-0.32,2.72-0.53c1.12-0.17,2.52-1,3.3-2.56c1.36-2.56,1-5.1,1.16-6.98 c0.21-1.939,0.37-2.939,2.55-4.119c0.55-0.28,0.88-0.851,0.83-1.471c-0.22-1.91-1.2-3.31-1.74-4.43 c1.46-1.24,4.04-2.55,5.38-5.01c1.6-3.25,1.92-8.011,2.41-11.15c0.46-3.13,0.4-5.479,1.32-7.939c0.27-0.74,0.48-1.091,0.74-1.69 c0.26-0.59,0.47-1.33,0.6-2.4c0.03-0.33,0.05-0.619,0.05-0.89c-0.01-0.77-0.1-1.29-0.09-1.63c0.01-0.32,0.03-0.55,0.25-1.061 c0.48-1.069,1.24-1.56,2.51-2.069c1.25-0.49,2.85-0.8,4.42-1.62c2.53-1.44,4.2-4.021,5.63-4.54c0.27-0.12,0.64-0.2,1.11-0.2 c1.73-0.03,4.57,1.18,6.77,2.96c2.26,1.75,3.78,4.08,3.74,5.51c0.01,0.65,0.45,1.221,1.08,1.41c0.04,0.011,0.08,0.021,0.11,0.03 c1.01,0.5,1.88,0.41,2.7,0.44c0.16,0,0.34,0,0.51,0c0.75-0.021,1.35,0.09,1.35,0.119c1.2,0.53,2.41,2.83,3.78,4.7 c0.7,0.891,1.81,2.03,3.09,3.04c1.3,1,2.69,1.92,4.32,2.12c0.19,0.021,0.37,0.03,0.56,0.03c2,0,3.42-1.17,4.4-2.24 c0.989-1.1,1.79-2.24,2.51-2.82c2.39-2.02,4.939-3.12,7.43-5.989c1.021-1.16,1.76-1.561,2.811-1.92 c1.04-0.351,2.439-0.57,4.27-1.141c3.11-0.979,4.95-2.59,7.23-3.77c1.31-0.69,2.21-0.67,3.35-0.87 c0.54-0.09,1.35-0.32,1.92-1.061c0.55-0.739,0.66-1.55,0.67-2.46c0-0.42-0.029-0.88-0.08-1.41 c-0.35-2.979-1.529-5.72-1.689-8.06c0.99-0.2,1.85-0.71,2.38-1.45c0.71-0.99,0.85-2.09,0.86-3.06 c-0.011-0.94-0.15-1.83-0.29-2.57c-0.261-1.35-0.391-2.72-0.49-4.17c2.55,0.26,5.45,1.23,8.67,1.29 c2.78,0.02,5.55,0.33,8.55,0.33c0.03,0,0.061,0,0.09,0c3.3-0.03,6.03,1.56,9.471,1.63c1.46,0.01,3.01-0.38,4.52-1.35 c0.32,0.62,0.66,1.399,0.99,2.17c0.67,1.46,1.17,2.939,2.55,3.97c0.63,0.43,1.37,0.67,2.07,0.67c1.59-0.05,2.55-0.93,3.409-1.54 c0.86-0.66,1.601-1.18,2.271-1.3c0.53-0.11,0.96-0.5,1.12-1c0.52,0.46,0.51,0.74,0.609,1.229c0.101,0.771-0.18,2.29,0.511,4.2 c0.7,1.91,2.01,3.07,3.04,4.09c1.069,1.03,1.87,1.891,2.27,3.15c0.561,1.75,1.03,3.31,1.75,4.93c0.49,1.07,1.19,1.91,1.73,2.681 c0.5,0.689,0.83,1.3,0.92,1.71c-0.05,0.13-0.2,0.449-0.38,0.819c-0.21,0.471-0.49,1.08-0.5,1.91 c-0.011,0.521,0.149,1.141,0.51,1.65c1.01,1.399,2.52,1.479,3.57,1.5c0.939-0.01,1.819-0.12,2.25-0.12 c2.579,0,5.29-0.12,7.819-0.12c1.2,0,2.36,0.03,3.45,0.1c1.07,0.101,1.12,0.2,1.48,0.46c0.359,0.28,0.979,1,2.17,1.721 c2.02,1.09,3.939,1.02,4.77,1.77c2,1.561,2.83,3.11,2.84,4.69c0,0.55-0.1,1.12-0.33,1.75c-0.529,1.47-1.819,3.479-2.85,4.97 c-0.41,0.6-0.66,1.061-0.82,1.36c-0.02,0.029-0.04,0.069-0.05,0.1c-0.24,0.04-0.71,0.12-1.36,0.22 c-0.329,0.051-0.739,0.08-1.199,0.08c-1.601,0.011-3.73-0.33-5.79-0.34c-1.79,0.01-3.74,0.23-5.2,1.72 c-1.15,1.28-1.48,2.99-1.521,4.671c0.011,1.05,0.15,2.079,0.69,3.029c0.65,1.09,1.61,1.42,2.08,1.681 c0.54,0.279,0.63,0.35,0.74,0.579c0.01,0.03,0.06,0.211,0.06,0.471c0,0.62-0.22,1.56-0.37,2.35c-0.63,3.811-3.05,6.61-3.1,11.87 c0,0,0,0,0,0.05c0,0.01,0,0.03,0.01,0.05c0,2.15,0,4.28,0.35,6.49c0.49,2.811,1.82,4.72,2.04,6.61 c0.101,0.71,0.69,1.25,1.41,1.29c0.311,0.01,0.62,0.02,0.92,0.02c2.19-0.01,4.4-0.319,6.34-0.319c1.591,0,2.94,0.21,3.95,0.79 C532.211,740.829,532.981,741.499,533.531,742.238z", + "Lityn": "M248.681,309.799l0.04-0.14c0.05-0.23,0.09-0.5,0.09-0.77c-0.02-1.28-0.61-2.3-1.31-3.27 c-2.16-2.84-6.03-5.42-7.51-6.28c-3.52-1.97-7.96-2.56-11.61-2.94c-2.21-0.22-4.48-0.26-6.75-0.26c-1.44,0-2.87,0.02-4.29,0.02 c-3.91,0-7.71-0.13-11.06-0.99c-2-0.49-4.16-1.61-6.79-1.64c-1.13,0-2.35,0.25-3.53,0.87c-2.57,1.38-4.97,4.06-6.81,5.71 c-3.19,2.97-8.13,5.31-11.19,9.45c-0.44,0.59-0.84,1.22-1.19,1.89c-0.87-0.54-1.81-0.87-2.67-1.07 c-1.64-0.38-3.23-0.42-4.69-0.43c0.16-2.35,0.11-4.21,0.73-5.77c0.27-0.75,0.59-1.45,0.92-2.39c0.32-0.93,0.58-2.09,0.58-3.41 c-0.01-0.13-0.01-0.23-0.01-0.29c0-0.29-0.01-0.48-0.01-0.62c0-0.36,0.01-0.58,0.01-0.87c0-0.28,0.02-0.78-0.25-1.5 c-0.2-0.53-0.55-0.98-0.78-1.21c-0.67-0.65-0.77-0.64-1.6-1.45c-1.53-1.47-2.83-4.03-2.77-5.81c0-0.21,0.01-0.39,0.03-0.55 c-0.01-0.04,0.09-0.32,0.55-1.1c0.43-0.74,1.14-2.06,1.14-3.8c0-0.33-0.03-0.64-0.07-0.93c-0.22-1.52-0.95-2.5-1.32-3.04 c-0.2-0.28-0.33-0.47-0.4-0.58c-0.02-0.04-0.04-0.07-0.04-0.08c-0.15-0.57-0.21-1.16-0.21-1.8c-0.11-3.19,2.05-7.41,2.16-12.54 c0-0.8-0.06-1.62-0.22-2.46c-0.44-2.54-2.1-4.3-3.39-5.24c-1.31-0.99-2.28-1.58-2.96-2.4c-0.79-0.91-1.36-2.22-1.88-3.91 c-0.54-1.67-1.02-3.67-2.02-5.72c-0.69-1.35-1.51-2.09-2.05-2.73c-0.21-0.23-0.38-0.44-0.49-0.59c0.42-0.25,0.94-0.59,1.46-1.06 c1.63-1.42,2.64-3.33,2.82-4.99c0.21-1.64,0.06-2.73,0.21-4.19c0.19-1.88,0.9-3.45,2.03-5.26c1.12-1.8,2.65-3.74,4.03-6.15 c0.76-1.45,2.28-3.84,2.36-6.99c0.03-1.51-0.57-3.45-2.08-4.74c-1-0.82-1.82-0.97-2.55-1.13c-0.74-0.13-1.42-0.16-2.07-0.17 c-0.98,0.01-1.84,0.08-2.48,0.18c-1.15,0.17-2.02,0.39-2.58,0.54c-0.27,0.08-0.47,0.12-0.56,0.14c-0.02,0-0.04-0.01-0.07-0.02 c-0.12-0.05-0.33-0.15-0.63-0.31c-0.2-0.09-0.74-0.57-1.41-1.33c-0.7-0.73-1.51-1.79-3.18-2.51c-0.83-0.35-1.61-0.41-2.22-0.41 c-1.02,0.01-1.68,0.14-1.98,0.12c-0.01,0-0.02,0-0.04,0c-0.13-0.18-0.41-0.61-0.75-1.2c-0.5-0.76-1.2-2.02-2.93-2.81 c-0.77-0.33-1.46-0.39-2.02-0.39c-0.79,0.03-1.46,0.12-1.97,0.21c0.29-0.51,0.78-1.19,1.33-1.8c0.85-0.96,1.8-1.84,2.41-2.41 c0.96-0.91,2.1-1.81,3.16-3.11c1.07-1.27,1.99-3.18,1.96-5.35c0-0.3-0.01-0.6-0.04-0.9c1.32-0.03,2.57-0.08,3.75-0.08 c2.86,0,5.23,0.28,7.61,1.65c0.53,0.31,1.47,0.96,2.49,1.55c1.05,0.57,2.14,1.15,3.49,1.19c0.14,0,0.27-0.01,0.4-0.03 c1.18-0.19,1.78-0.8,2.4-1.28c0.58-0.5,1.13-0.97,1.33-1.06c1.34-0.71,2.71-0.89,4.31-0.89c1.3,0,2.71,0.13,4.24,0.13 c0.8,0,1.63-0.04,2.48-0.16c0.97-0.14,1.7-0.44,2.21-0.63c0.52-0.19,0.8-0.28,1.19-0.28c0.19,0,0.4,0.02,0.69,0.09 c0.74,0.16,1.48,0.69,2.44,1.38c0.68,0.48,1.53,1.04,2.6,1.32c-0.13,0.93-0.33,2.07-0.34,3.24c0,0.88,0.12,1.84,0.6,2.75 c0.8,1.58,2.31,2.33,3.55,2.55c1.27,0.25,2.42,0.25,3.48,0.5c0.39,0.09,0.8,0.02,1.14-0.19c0.34-0.22,0.58-0.56,0.66-0.95 c0.14-0.63,0.32-0.9,0.38-0.94c0.05-0.03,0-0.02,0.07-0.02c0.2-0.04,1.09,0.32,1.92,0.92c0.87,0.59,1.67,1.28,2.48,1.74 c1.84,0.98,2.98,0.75,3.96,1.1c2.14,0.64,4.23,2.15,6.79,3.24c3.39,1.44,4.31,2.15,7.25,4.65c1.56,1.26,3.35,3.73,6.6,3.86 c0.02,0,0.03,0,0.05,0h0.09c0.05,0,0.1,0,0.14,0c1.22,0.01,2.29-0.5,2.81-1.09c0.55-0.57,0.64-0.78,1.2-1.11 c1.08-0.63,1.87-0.8,2.63-0.8c1.74-0.08,3.81,1.33,7.15,1.66c0.27,0.03,0.56,0.03,0.85,0.03c2.64-0.02,6.56-0.67,8.76-1.52 c2.86-1.15,5.56-3.63,7.66-6.5c2.05-2.84,3.54-6.02,3.62-9.02c0-0.02,0-0.05,0-0.07c0-0.03,0-0.06,0-0.09 c0-1.13-0.03-2.22-0.03-3.26c0-2.74,0.17-5.17,1.23-7.52c1.05-2.48,3.63-4.76,5.1-7.94c1.08-2.55,0.6-4.66,1-6.29 c0.29-1.42,0.74-2.28,1.16-2.7c0.43-0.42,0.8-0.58,1.51-0.6c0.82,0,2.05,0.34,3.53,1.06c2.37,1.16,4.03,2.14,5.85,2.89 c0.74,0.31,1.51,0.56,2.34,0.76c0.01,0.16,0.02,0.33,0.02,0.49c0,0.89-0.16,1.64-0.17,2.6c-0.05,1.04,0.4,2.39,1.49,3.34 c1.48,1.41,3.31,1.64,4.74,1.63c0.81,0,1.55-0.06,2.21-0.06c0.54,0,1.01,0.04,1.4,0.14c3.34,0.86,4.93,3.01,5.22,6.18 c0.02,0.32,0.03,0.59,0.03,0.83c0,0.44-0.04,0.73-0.04,1.16c-0.02,0.99,0.39,1.95,1.33,3.35c1.2,1.72,2.94,3.84,3.36,5.38 c0.07,0.26,0.11,0.51,0.09,0.73c0,0.1-0.01,0.21-0.02,0.32c-0.15,0.86-0.42,1.19-0.83,1.51c-0.63,0.48-1.96,0.73-3.5,0.8 c-1.53,0.11-3.18,0.06-4.72,0.58c-0.7,0.25-1.11,0.97-0.97,1.7c0.54,2.56,0.44,6.63,2.13,9.68c0.92,1.75,2.51,2.51,3.72,2.71 c0.97,0.2,1.74,0.28,2.57,0.61c0.16,1.09,0.37,2.37,0.79,3.63c0.46,1.37,1.25,2.83,2.69,3.74c0.12,0.35,0.26,0.82,0.37,1.19 c-1.56,3.22-2.6,5.93-4.53,8.4c-1.02,1.38-2.81,3.35-2.88,5.99c-0.01,1.01,0.37,2.13,1.18,3c1.18,1.34,2.79,1.96,4.29,1.94 c2.31-0.03,4.38-1.15,6.24-2.24c1.19-0.73,2.33-1.48,3.22-2c1.7,2.77,4.22,4.42,5.37,6.46c1.04,1.64,1.51,5.45,2.64,8.1 c0.09,0.2,0.22,0.36,0.38,0.49c-1.04,1.79-3.08,2.64-5.13,4.92c-1.94,2.34-2.41,5.14-3.67,6.77c-0.92,1.39-3.16,2.02-5.01,3.95 c-1.57,1.82-2.78,4.81-2.82,7.75c0,1.16,0.21,2.34,0.82,3.39c0.46,0.81,1.19,1.51,2.12,1.95c0.15,0.82,0.22,1.51,0.22,2.09 c-0.03,1.65-0.44,2.39-1.38,3.35c-0.96,0.94-2.58,1.9-4.64,3.22c-4.64,2.97-7.62,5.9-11.22,9.83c-2.04,2.27-5.2,3.63-8.27,5.79 c-1.07,0.78-2.05,2.02-3.1,3.15c-0.51,0.55-1.01,1.06-1.43,1.4c-0.21,0.17-0.4,0.3-0.53,0.38c-0.14,0.08-0.19,0.08-0.19,0.09 c-0.06,0.01-0.12,0.01-0.18,0.01c-0.53,0.08-1.63-0.72-2.81-2.05c-1.21-1.25-2.37-2.86-4.35-3.53c-0.65-0.2-1.28-0.28-1.89-0.28 c-0.34,0.01-0.67,0.03-0.99,0.08c-2.63,0.34-4.74,1.71-6.32,1.85c-0.49,0.07-0.92,0.37-1.15,0.82c-0.22,0.44-0.21,0.97,0.04,1.4 c0.7,1.25,1.63,2.6,2.37,3.85c0.74,1.22,1.21,2.42,1.17,2.86c-0.04,0.28,0.03,0.15-0.16,0.31c-0.21,0.15-0.92,0.38-2.2,0.38 c-0.04,0-0.07,0-0.09,0c-4.51,0.01-9.04-1-14.01-1.27c0.16-0.06,0.33-0.13,0.52-0.19c0.46-0.15,0.82-0.51,0.97-0.96 C248.631,309.958,248.661,309.869,248.681,309.799z", + "Lypovets": "M551.501,346.779c1.88,0.41,3.32,0.36,3.86,0.47c0.01,0.07,0.01,0.17,0.01,0.28 c0.01,0.49-0.09,1.34-0.29,2.54c-0.42,2.45-0.83,3.23-1.34,3.74c-0.52,0.55-1.69,1.1-3.64,2.31c-2.7,1.61-3.971,3.71-4.54,6.62 c-0.9,0.04-1.721,0.23-2.4,0.66c-0.78,0.48-1.28,1.03-2.03,1.73c-1.1,1.04-1.619,1.58-1.93,1.73c-0.28,0.16-0.76,0.3-2.3,0.33 c-0.7,0.01-1.3,0.52-1.44,1.21c-0.109,0.58-0.16,1.16-0.16,1.75c0.04,3.37,1.351,7,1.32,9.5c-0.01,1.06-0.21,1.78-0.6,2.28 c-0.391,0.49-1.08,0.97-2.61,1.23c-3.439,0.56-6.01,1.3-9.21,2.77c-1.26,0.6-3.12,1.31-3.979,1.28 c-0.16,0-0.261-0.02-0.311-0.03h-0.02c-0.63-0.55-1.57-0.48-2.12,0.14c-0.13,0.16-0.23,0.33-0.29,0.52 c-1.37,0.11-2.7,0.52-3.96,0.93c-1.431,0.48-2.78,0.96-3.5,1.05c-1.91,0.26-3.9,0.36-5.891,0.36c-0.54,0-1.08-0.01-1.619-0.02 c0.02-0.19,0.029-0.38,0.029-0.57c-0.029-2.53-1.56-4.38-3.02-5.86c-1.49-1.48-3.101-2.75-3.74-3.68 c-0.74-1.02-1-2.02-1.01-3.12c-0.03-2.57,1.76-5.71,3.35-8.29c2.07-3.45,4.58-6.59,4.94-11.31c0.04-0.49,0.06-0.92,0.06-1.32 c-0.01-1.02-0.109-1.86-0.49-2.64c-0.6-1.25-1.909-1.72-2.83-1.84c-0.979-0.16-1.979-0.19-3.199-0.44 c-2.63-0.5-7.601-2.52-9.75-4.09c-1.23-0.88-1.79-1.71-2.7-2.68c-0.89-0.98-2.28-1.92-4.351-2.17 c-0.369-0.05-0.729-0.07-1.09-0.07c-1.29,0.01-2.479,0.22-3.41,0.22c-0.399,0-0.75-0.04-1.029-0.11c-0.9-0.18-1.57-1-2.7-2.05 c-0.72-4.77-0.69-9.22-4.65-13.46c-0.59-0.63-1.159-1.02-1.409-1.21c0.039-0.26,0.18-0.79,0.47-1.59 c0.29-0.84,0.97-1.8,1.67-2.91c0.689-1.1,1.439-2.44,1.439-4.14c0-0.36-0.029-0.72-0.1-1.07c-0.1-0.55-0.49-1-1.03-1.16 c-4.26-1.33-7.479-1.88-11.979-2.11c-0.851-0.04-1.69-0.05-2.521-0.05c-1.189,0-2.35,0.02-3.489,0.02 c-2.931,0-5.66-0.17-8.19-1.21c-2.93-1.19-5.73-1.38-8.32-1.75c-2.6-0.37-4.97-0.87-7.399-2.47c-2.811-1.82-5.62-5.08-5.55-8.04 c0-0.67,0.119-1.35,0.409-2.06c0.311-0.74-0.029-1.59-0.76-1.93c-2.54-1.16-3.98-1.97-4.83-2.88c-0.85-0.9-1.38-2.1-1.95-4.56 c-0.94-3.94-3.42-6.07-4.82-8.65c-0.88-1.57-0.91-2.55-1.58-4.71c-0.32-1.06-0.72-1.81-1.24-2.35c-0.5-0.52-0.84-0.74-1.47-1.46 c-1.74-1.99-2.4-3.91-2.52-6.5c0.8,0.07,1.77,0.15,2.71,0.16c1.09-0.03,2.18-0.06,3.25-0.73c0.56-0.4,0.74-0.73,0.99-1.02 c1.92,1.82,4.42,3.64,7.28,4.09c0.39,0.07,0.78,0.1,1.18,0.11c0.4,0,0.81-0.03,1.21-0.1c0.65-0.11,1.15-0.64,1.23-1.3 c0.12-1.01,0.55-2.36,1.14-3.43c0.57-1.09,1.37-1.84,1.73-1.94c0.63-0.23,1.029-0.85,0.979-1.52 c-0.04-0.66-0.53-1.22-1.189-1.36c-1.521-0.28-2.83-1.79-3.96-3.99c-1.13-2.17-1.96-4.74-3-6.67 c-2.54-4.59-5.35-11.19-10.55-14.61c0.53-0.7,1.58-1.83,2.71-2.76c1.57-1.35,3.41-2.62,4.08-2.93c1.49-0.72,3.52-0.95,5.71-0.95 c2.08,0,4.28,0.2,6.32,0.2c5.13,0,10.25,0,15.38,0c1.43,0,2.92-0.13,4.28-0.13c0.78,0,1.51,0.04,2.13,0.15 c1.36,0.27,1.86,0.66,2.56,1.31c0.69,0.64,1.48,1.67,2.88,2.62c0.471,0.33,1.091,0.35,1.58,0.07c1.721-0.98,3.71-2.01,5.48-3.39 c1.25,0.93,2.7,1.31,4.07,1.3c3.479-0.05,6.77-1.99,9.18-2.73c2.32-0.76,4.71-1.63,6.95-1.88c0.41-0.04,0.85-0.06,1.31-0.06 c0.771,0,1.61,0.05,2.49,0.05c0.979,0,2.03-0.06,3.12-0.37c0.069-0.02,0.14-0.05,0.21-0.08c0.17,0.25,0.33,0.49,0.49,0.72 c2.159,3.09,4.93,4.74,5.85,6.89c0.56,1.07,0.45,2.49,1.48,4.28c1.569,2.39,3.8,3.4,4.56,4.96c0.8,1.32,0.42,2.94,1.4,5.3 c0.42,0.9,0.8,1.56,1.279,2.1c0.46,0.53,1.19,0.99,2,0.98c1.11-0.04,1.681-0.59,2.16-0.95c0.48-0.4,0.9-0.77,1.32-1.01 c1.819-1.07,3.67-1.32,5.85-1.4c2.16-0.08,4.58,0.07,7.26-0.41c1.86-0.37,2.971-0.85,3.671-0.81c0.39,0.01,0.739,0.07,1.34,0.38 c0.83,0.34,1.77,2.14,3.62,3.44c3.13,2.01,7.27,2.77,10.67,3c0.199,0.01,0.399,0.01,0.609,0.01c0.92,0,2.03-0.07,3.12-0.07 c1.061-0.01,2.11,0.08,2.76,0.3c0.69,0.24,0.771,0.4,0.841,0.61c0.01,0.06,0.02,0.14,0.02,0.22c0.01,0.06,0.01,0.13,0,0.21 c-0.12,0.72-1.07,2.11-2.44,3.23c-1.47,1.28-3.31,2.37-4.14,2.69c-3.3,1.31-6.28,4.35-6.28,8.66c0,0.64,0.061,1.3,0.2,1.97 c0.36,1.8,1.38,3.04,2.28,3.96c0.92,0.93,1.72,1.64,2.17,2.45c0.39,0.7,0.44,1.03,0.43,1.12c0.011,0.1-0.04,0.23-0.34,0.83 c-0.28,0.56-0.63,1.46-0.64,2.62c-0.01,0.05-0.01,0.09-0.01,0.12c-0.011,1.34,0.46,2.5,1.159,3.31 c1.051,1.21,2.301,1.73,3.19,2.34c0.91,0.63,1.44,1.12,1.729,2.22c0.131,0.54,0.561,0.97,1.11,1.1c2.33,0.52,3.61,1.1,5.39,1.12 c1.381,0,2.75-0.43,4.57-1.34c1.98-1.01,3.84-2.39,5.561-3.59c0.159,0.17,0.35,0.31,0.58,0.4c2.939,1.06,4.859,2.09,7.189,2.13 c1.94,0.01,3.76-0.88,5.771-2.63c1.42-1.21,2.409-2.44,3.229-3.72c0.66,0.41,1.33,0.79,2.05,1.08c0.57,1.96,1.61,3.39,2.58,4.62 c1.12,1.42,2.15,2.63,2.851,4.35c0.869,2.14,2.26,3.64,3.39,4.97c1.16,1.34,2.03,2.49,2.37,3.9c0.26,1.06,0.31,1.76,0.5,2.64 c0.18,0.88,0.55,1.85,1.31,2.93c0.61,0.88,1.271,1.52,1.681,2.02c0.439,0.52,0.51,0.77,0.5,0.87c0,0.04,0,0.06,0,0.06 c-0.021,0.29-0.32,0.75-0.931,1.53c-0.58,0.76-1.37,1.9-1.43,3.5c-0.01,0.15-0.01,0.31-0.01,0.44c0,0.49,0.05,0.96,0.13,1.42 c-0.48,0.12-1.101,0.18-1.8,0.18c-1.141,0-2.471-0.14-3.851-0.14c-1,0-2.04,0.07-3.069,0.39c-0.391,0.12-0.721,0.39-0.9,0.76 c-0.18,0.36-0.21,0.79-0.07,1.17c0.69,1.96,1.82,3.34,2.641,4.37c0.85,1.05,1.21,1.71,1.18,2.04c0.02,0.31-0.24,1.14-1.84,2.61 c-2.021,1.83-3.641,2.36-5.641,2.69s-4.38,0.33-7.3,1.04c-2.899,0.74-5.34,2.58-7.74,4.11c-2.399,1.56-4.67,2.77-6.909,2.76 c-0.521-0.01-1.04-0.06-1.58-0.19c-1.061-0.36-0.75-0.28-0.99-0.64c-0.17-0.39-0.39-1.62-1.5-2.67 c-1.23-1.16-2.81-1.51-4.21-1.51c-1.21,0.01-2.36,0.25-3.36,0.55c-0.63,0.19-1.06,0.77-1.06,1.43c0.01,1.21-0.29,2.6-0.891,3.42 c-0.46,0.66-0.319,1.56,0.311,2.05c1.28,0.97,2.229,2.58,3.42,4.26C547.211,344.398,548.821,346.199,551.501,346.779z", + "Mohyliv-Podilskyi": "M219.481,732.479c-0.37-0.14-1.19-0.77-2.03-1.43c-0.92-0.65-1.86-1.47-3.39-1.521 c-0.12,0-0.19,0-0.23,0.011c-0.59,0.05-1.1,0.449-1.29,1.02c-0.53,1.62-1.42,3.82-2.35,5.18c-3.7-1.83-7.69-3.09-10.67-3.42 c-1.05-0.1-2.08-0.13-3.08-0.13c-2.43,0-4.7,0.181-6.8,0.181c-0.96,0-1.88-0.04-2.77-0.131c-3.21-0.34-7.44-1.689-10.99-2.83 c-2.73-0.859-4.87-2.77-6.94-5.39c-2.07-2.6-3.93-5.81-6.16-8.78c-3.09-4.1-5.78-8.779-7.38-13.6c-0.95-2.82-1.61-5.9-2.94-8.94 c-1.3-3.029-3.51-6.069-7.23-7.979c-5.45-2.84-11.15-5.54-16.51-8.33c-1.62-0.83-3.93-2.31-6.37-3.64 c-2.48-1.301-5.06-2.561-7.93-2.771c-0.11-0.01-0.25-0.01-0.42-0.01c-1.75,0-3.15,0.63-4.2,1.21c-1.05,0.6-1.85,1.19-2.43,1.5 c-2.57,1.42-4.67,2.25-7.47,2.66c-1.68,0.229-3.32,0.359-4.9,0.359c-3.47,0-6.66-0.609-9.8-2.17c-4.19-2.04-9.3-3.84-11.98-6.12 c-0.74-0.63-1.05-1.149-1.29-1.84c-0.24-0.699-0.34-1.62-0.34-2.77c0-1.16,0.1-2.53,0.1-4.04c0-1-0.05-2.08-0.23-3.2 c-0.31-1.9-0.87-3.51-2.01-4.82c-1.12-1.33-2.92-2-4.4-1.96c-2.84,0.08-4.94,1.42-7.03,2.71c-2.05,1.32-3.99,2.78-5.33,3.561 c-1.12,0.649-2.32,0.95-3.52,0.96c-2.18-0.01-4.39-1.03-6.03-3.22c-1.76-2.311-3.55-7.131-5.18-10.721 c-1.86-3.88-1.77-10.029-1.99-15.5c-0.29-5.02,0.51-10.899-1.78-16.89c1.46-0.66,3.13-1.16,4.8-1.75 c0.28,0.89,0.41,1.88,0.65,2.87c0.19,0.72,0.44,1.52,1.11,2.22c0.66,0.69,1.66,1.05,2.69,1.05c0.02,0,0.05,0,0.07,0 c0.76,0,1.57-0.14,2.52-0.399c3.41-0.931,5.57-1.141,9.28-1.53c3.58-0.39,8.09-2.03,12.1-4.47c3.97-2.45,7.49-5.65,8.61-9.63 c0.4-1.46,0.34-2.44,0.43-2.78c0.08-0.29,0.06-0.45,1.11-1.41c0.6-0.54,1.76-1.05,3.01-1.69c1.22-0.649,2.66-1.55,3.4-3.27 c0.57-1.38,0.71-2.86,0.72-4.37c-0.01-2.67-0.47-5.49-0.46-7.72c0-0.7,0.05-1.34,0.15-1.87c0.16-0.94,0.16-2.03,0.22-3.1 c0.03-1.04,0.2-2.07,0.3-2.21c0.25-0.551,0.83-0.94,1.9-1.301c1.04-0.35,2.36-0.56,3.63-1.01c1.8-0.67,3.45-1.13,4.93-1.13 c1.24,0.01,2.38,0.29,3.65,1.11c1.12,0.72,2.07,2.1,3.21,3.63c1.14,1.489,2.56,3.18,4.92,3.92c0.8,0.26,1.58,0.33,2.28,0.33 c1.28-0.011,2.32-0.23,3.15-0.221c0.8,0.021,1.37,0.12,2.16,0.66c0.97,0.7,1.26,1.48,1.64,2.811 c0.36,1.279,0.69,3.029,2.03,4.68c1.85,2.24,4.68,3.74,6.92,4.57c0.41,0.149,0.85,0.12,1.22-0.09 c0.38-0.2,0.65-0.551,0.75-0.971c0.59-2.569,1.33-6.979,2.42-8.46c0.88-1.17,1.19-1.16,1.9-1.22c0.85-0.03,2.29,0.51,4.18,0.55 c0.04,0.01,0.08,0.01,0.11,0.01c2.28,0.021,3.83-1.159,4.85-2.08c1.07-0.96,1.75-1.569,2.66-1.71c0.04-0.01,0.09-0.02,0.13-0.02 c0.45-0.04,1.62,0.47,2.92,1.18c1.33,0.67,2.87,1.5,4.7,1.61c1.23,0.06,3.69,0.36,5.93,0.37c1.58-0.03,3.03-0.08,4.33-0.82 c1.86-1.12,2.58-2.97,2.89-4.54c0.32-1.59,0.38-3.1,0.69-4.08c0.48-1.88,3.23-4.2,5.4-4.939c0.14-0.051,0.28-0.09,0.41-0.13 c0.27,0.29,0.66,0.479,1.09,0.479c0.4,0,0.75-0.16,1.02-0.41c0.12,0.07,0.24,0.16,0.38,0.26c0.52,0.4,1.17,1.11,2,2.011 c2.49,2.66,5.05,5.029,5.83,7.72c0.56,1.66,0.02,4.28,0.67,6.96c0.43,1.6,1.28,2.96,2.07,4.07c-0.14,0.529-0.21,1.08-0.21,1.609 c0.06,3.49,2.24,7.2,3.93,10.351c0.74,1.359,1,2.56,1.01,3.75c0.06,3.26-2.34,6.81-3.79,11.31c-1.76,5.95-0.52,10.82-3.28,15.38 c-0.69,1.311-2.5,2.91-2.59,5.54c0,0.73,0.19,1.521,0.59,2.25c0.81,1.23,1.69,1.311,2.34,1.7c0.32,0.16,0.6,0.311,0.75,0.43 c0.07,0.061,0.11,0.101,0.13,0.12c0.04,0.12,0.05,0.21,0.05,0.3c0.07,0.32-0.44,1.03-0.98,2.4c-0.54,1.6-1.45,3.36-1.49,5.33 c0,0.84,0.23,1.79,0.85,2.56c0.62,0.78,1.52,1.301,2.61,1.641c0.59,0.18,1.19,0.25,1.78,0.25c1.23-0.01,2.46-0.29,3.53-0.71 c0.07,0.95,0.2,1.95,0.47,2.93c0.43,1.57,1.26,3.22,2.98,4.11c1.01,0.479,2.04,0.54,3.12,0.609c0.28,2.44,1.48,4.04,1.48,5.41 c0.01,0.24,0.08,0.45,0.18,0.65c-0.15,1.75-0.31,3.59-0.31,5.46c0,1.979,0.17,3.99,0.77,5.939c1.07,3.41,2.7,5.851,3.59,8.54 c-0.82,0.181-1.68,0.311-2.48,0.49c-0.64,0.16-1.27,0.33-1.9,0.76c-0.64,0.4-1.21,1.32-1.17,2.221c0.02,1.09,0.48,2,1.23,3.149 c0.64,0.96,1.22,1.55,1.59,2.021c0.38,0.479,0.59,0.79,0.81,1.54c0.39,1.13,0.04,2.91,0.8,5.04c0.59,1.58,1.68,2.76,2.99,3.43 c1.31,0.68,2.77,0.91,4.26,0.91c3.5-0.021,7.47-1.271,10.56-2.25c-0.74,1.319-1.34,2.819-1.37,4.569c0,0.19,0.01,0.4,0.03,0.631 c0.18,1.899,1.37,3.119,2.22,3.909c0.43,0.4,0.81,0.721,1,0.94c0.06,0.07,0.1,0.12,0.13,0.16c0.02,0.21,0.09,0.399,0.19,0.57 c-0.06,0.43-0.08,0.85-0.09,1.26c0.01,1.399,0.23,2.81,0.23,3.649c0,0.091-0.01,0.16-0.01,0.221c-0.06,1.27-0.59,2.18-1.35,3.43 c-0.72,1.22-1.64,2.8-1.67,4.97c0,0.03,0,0.05,0,0.07c0.02,1.59,0.64,3.22,1.19,4.9c0.56,1.63,1.05,3.289,1.03,4.079 c0,0.261-0.04,0.391-0.04,0.391C219.531,732.398,219.501,732.438,219.481,732.479z", + "Murovani Kurylivtsi": "M162.831,514.729c-1.58,2.33-1.85,5.87-1.89,9.771c0.01,5.979,0.96,12.479,1.6,14.79 c0.55,2,1.16,3.8,2.94,5.649c1.03,1.05,2.26,1.641,3.25,2.26c1.02,0.601,1.69,1.181,1.88,1.681c0.28,0.62,0.44,1.779,0.43,3.13 c0.01,2.26-0.36,4.97-0.54,7.3c-0.37,0.09-0.74,0.2-1.13,0.34c-2.92,1.11-6.17,3.54-7.25,6.891c-0.44,1.54-0.48,3.08-0.75,4.33 c-0.28,1.27-0.64,2.05-1.51,2.59c-0.2,0.17-1.41,0.399-2.77,0.37c-1.99,0.01-4.35-0.28-5.78-0.36 c-0.92-0.03-2.17-0.59-3.47-1.28c-1.31-0.649-2.62-1.46-4.3-1.51c-0.21,0-0.42,0.02-0.64,0.06c-2.01,0.341-3.19,1.61-4.13,2.42 c-0.96,0.82-1.57,1.28-2.78,1.33c-0.03-0.01-0.07-0.01-0.1-0.01c-1.26,0.03-2.57-0.51-4.28-0.55c-1.48-0.05-3.22,0.75-4.37,2.52 c-1.39,2.101-1.99,5.301-2.48,7.73c-1.53-0.76-3.13-1.83-4.04-2.97c-0.8-0.99-1.07-2.141-1.46-3.59c-0.38-1.4-1-3.2-2.8-4.461 c-1.31-0.939-2.72-1.22-3.89-1.199c-1.25,0-2.27,0.22-3.15,0.21c-0.49,0-0.93-0.05-1.39-0.19c-1.37-0.43-2.34-1.46-3.42-2.87 c-1.06-1.39-2.12-3.109-3.95-4.33c-1.73-1.14-3.56-1.609-5.3-1.6c-2.09,0.01-4.05,0.61-5.96,1.31 c-0.86,0.32-2.19,0.551-3.54,0.98c-1.32,0.43-2.86,1.18-3.67,2.85c-0.48,1.09-0.51,2.2-0.59,3.36c-0.05,1.11-0.08,2.24-0.17,2.7 c-0.15,0.779-0.2,1.59-0.2,2.42c0.01,2.58,0.46,5.39,0.46,7.72c0,1.311-0.15,2.43-0.48,3.2c-0.28,0.68-0.95,1.22-2.04,1.78 c-1.06,0.58-2.41,1.08-3.59,2.09c-1.23,1.05-1.9,2.069-2.08,3.109c-0.16,0.99-0.07,1.471-0.37,2.551 c-0.7,2.699-3.63,5.649-7.29,7.859c-3.62,2.23-7.91,3.75-10.84,4.04c-3.67,0.391-6.13,0.63-9.76,1.62 c-0.78,0.22-1.36,0.3-1.73,0.3c-0.54-0.02-0.55-0.1-0.61-0.14c-0.11-0.06-0.37-0.72-0.55-1.79c-0.21-1.05-0.45-2.44-1.2-3.84 c-0.37-0.67-1.18-0.97-1.89-0.68c-1.86,0.77-4.14,1.34-6.34,2.34c-2.1-4.17-4.63-8.09-7.26-11.811 c-4.16-5.83-9.43-10.109-13.7-14.51c-1.56-1.61-2.55-3.14-3.2-5.17c-0.18-0.59-0.26-1.14-0.26-1.73 c-0.01-1.43,0.52-3.159,1.26-5.189c0.72-2.021,1.63-4.32,1.8-7.05c0.11-1.48,0.34-2.011,0.74-2.721 c0.4-0.699,1.22-1.64,2.3-3.12c1.84-2.569,4.12-6.159,5.13-9.949c0.27-1.051,0.42-2.051,0.42-3.011 c0.01-1.96-0.67-3.67-1.44-4.939c-0.77-1.3-1.57-2.32-2.31-3.57c-0.89-1.53-1.07-2.28-1.09-3.319 c-0.01-0.79,0.17-1.86,0.57-3.381c0.38-1.47,0.6-3.13,0.95-4.619c0.29-1.48,0.85-2.7,1.02-2.801 c0.35-0.399,0.84-0.58,2.24-0.979c0.67-0.21,1.54-0.48,2.47-1.07c0.92-0.59,1.83-1.57,2.38-2.76c0.88-1.98,0.95-3.92,1.05-5.75 c0.06-1.8,0.06-3.53,0.21-4.42c0.37-2.41,0.48-4.811,0.48-7.17c0-4.721-0.45-9.32-0.45-13.61c0-3.18,0.35-7,0.35-10.939 c-0.01-3.351-0.25-6.841-1.34-10.15c0.97-0.34,1.77-0.7,2.5-0.771c0.63-0.09,1.32-0.119,2.04-0.119c1.41,0,2.95,0.119,4.44,0.14 c0.56,0.01,1.13,0.02,1.7,0.02c1.71-0.02,3.43-0.06,5.01-0.79c1.62-0.689,2.81-2.52,2.74-4.729c-0.01-0.61-0.07-1.25-0.19-1.94 c-0.22-1.09-0.74-1.83-1.07-2.43c-0.36-0.6-0.51-1-0.5-1.26c0-0.16,0.03-0.33,0.2-0.63c0-0.021,0.13-0.17,0.38-0.351 c0.76-0.56,2.53-1.09,3.22-1.06c0.11,0,0.15,0.01,0.16,0.01c1.34,0.311,2.37,2.18,3.49,4.54c0.58,1.14,1.19,2.34,2.13,3.36 c0.92,1.029,2.31,1.85,3.98,1.87c0.64,0.01,1.21-0.37,1.44-0.96c0.59-1.601,2.35-2.75,3.89-2.73c0.28,0,0.54,0.03,0.79,0.1 c1.84,0.5,2.45,1.131,3.08,2.091c0.61,0.96,1.05,2.42,1.91,4.079c1.49,2.771,4.08,4.19,6.42,5.49c2.38,1.29,4.56,2.5,5.76,4.271 c1.44,2.05,1.96,4.91,2.52,7.97c0.57,3.04,1.19,6.31,3.4,8.97c1.14,1.36,2.11,2.271,3.36,2.78c1.25,0.49,2.44,0.54,4.09,0.66 c3.27,0.29,4.05,0.899,6.89,3.24c2.58,2.17,5.27,4.729,7.06,7.409c0.04,0.011,0.39,1.011,0.81,1.921 c0.22,0.47,0.49,0.96,0.92,1.43c0.41,0.46,1.12,0.93,2,0.92c0.85,0,1.56-0.39,2.17-0.92c0.62-0.61,0.67-1.061,0.81-1.54 c0.28-1.17,0.32-2.72,0.34-4c0.95,0.32,1.76,0.66,3.07,0.71c0.82,0,1.69-0.2,2.68-0.6c0.85-0.351,1.39-0.881,1.61-1.07 c0.1-0.08,0.12-0.09,0.12-0.09l0.01,0.01c0.08,0,0.28,0.01,0.62,0.11c0.35,0.069,0.93,0.46,1.62,1.01 c0.7,0.54,1.5,1.229,2.62,1.64c1.23,0.45,2.68,0.74,4.16,0.74c1.8,0,3.77-0.44,5.15-2c1.35-1.55,1.59-3.32,1.64-4.7 c0.06-1.42,0.04-2.55,0.44-3.49c0.51-1.189,1.46-1.699,2.5-1.72c0.72,0,1.45,0.28,2.03,0.88c1.15,1.04,1.35,4.23,2.06,6.74 c0.92,2.88,2.44,6.09,5.66,7.82c2.98,1.52,4.85,1.569,6.61,3.43c0.96,0.97,1.34,1.54,2.17,2.15c0.84,0.579,1.72,0.84,3.29,1.26 c1.23,0.3,2.22,0.38,2.5,0.54c0.04,0.02,0.06,0.029,0.08,0.04c0,0.01-0.01,0.02-0.01,0.029c0,0.021,0,0.051-0.01,0.08 C163.391,514.049,163.071,514.379,162.831,514.729z", + "Nemyriv": "M468.591,341.519c0.07,0.04,0.141,0.11,0.21,0.16c0.15,0.57,0.601,0.97,1.16,1.08 c0.851,0.86,1.851,1.84,3.551,2.33c0.619,0.16,1.22,0.2,1.789,0.21c1.301-0.01,2.49-0.22,3.41-0.22c0.25,0,0.48,0.02,0.681,0.04 c1.52,0.25,1.89,0.59,2.59,1.27c0.67,0.69,1.5,1.89,3.12,3.05c2.79,1.96,7.689,3.93,10.91,4.6c1.939,0.36,3.39,0.38,3.779,0.56 c0.2,0.1,0.09,0.03,0.16,0.11c0.05,0.1,0.17,0.51,0.17,1.3c0,0.31-0.02,0.68-0.05,1.09c-0.26,3.67-2.28,6.31-4.521,9.99 c-1.55,2.6-3.739,6.02-3.779,9.84c0,1.63,0.46,3.34,1.569,4.87c1.11,1.5,2.75,2.72,4.061,4.05c1.33,1.33,2.16,2.6,2.14,3.74 c0,0.41-0.09,0.85-0.319,1.38c-0.21,0.46-0.181,0.98,0.09,1.4c0.25,0.43,0.71,0.69,1.2,0.72c1.189,0.05,2.399,0.09,3.619,0.09 c2.101,0,4.21-0.11,6.29-0.39c1.301-0.18,2.65-0.72,4.051-1.17c1.369-0.47,2.76-0.84,3.67-0.83c0.239,0,0.43,0.02,0.58,0.06 c-0.141,0.91-0.19,1.86-0.2,2.82c0,1.36,0.1,2.68,0.21,3.7c0.229,2.3,0.81,4.03,1.819,5.41c1.021,1.37,2.301,2.3,3.811,3.39 c0.28,0.19,0.82,0.82,1.39,1.51c0.601,0.69,1.221,1.47,2.23,1.99c0.64,0.32,1.27,0.39,1.77,0.38c0.59,0,1.04-0.07,1.33-0.07 c0.16,0,0.271,0.02,0.34,0.04c0.36,0.11,0.7,0.15,0.95,0.14c0.08,0,0.15,0,0.2,0c0.15,0.1,0.47,0.36,0.95,0.8 c1.479,1.32,2.95,3.12,2.93,4.37c0.04,0.72,0.59,1.32,1.311,1.41c0.22,0.03,0.43,0.04,0.64,0.04c1.96-0.04,3.99-0.83,5.2-0.79 c0.489,0,0.699,0.1,0.79,0.17c0.08,0.07,0.26,0.25,0.359,1.01v0.01c0.05,0.15-0.41,1.35-1.01,2.54 c-0.57,1.25-1.26,2.59-1.29,4.17c0,0,0,0.12,0.021,0.24c0.1,0.71,0.68,1.25,1.39,1.29c0.87,0.05,1.71,0.05,2.51,0.06 c0.11,3,0.68,5.79,2.08,8.17c1.57,2.71,4.26,4.75,8.07,5.771c1.62,0.45,2.49,0.91,3.38,1.609c0.89,0.69,1.83,1.721,3.26,3.16 c0.87,0.851,1.75,1.46,2.3,2.01c0.561,0.58,0.721,0.881,0.73,1.37c0,0.11-0.01,0.25-0.04,0.42c-0.11,0.58,0.13,1.16,0.61,1.5 c0.479,0.33,1.109,0.36,1.619,0.07c1.971-1.189,5.641-2.26,8.011-4.939c1.29-1.511,2.04-2.65,2.859-3.5 c0.811-0.851,1.71-1.54,3.62-2.36c1.42-0.61,2.94-1.04,4.141-1.03c1.529,0.07,2.39,0.4,3.18,2.141 c0.2,0.449,0.3,1.529,0.31,2.699c0.03,1.19,0.011,2.471,0.28,3.7c0.33,1.39,0.91,2.96,1.43,4.061 c0.271,0.56,0.851,0.899,1.471,0.85c0.609-0.04,1.14-0.46,1.319-1.05c0.351-1.12,0.75-1.8,1.05-2.11 c0.32-0.32,0.421-0.31,0.58-0.33c0.021,0,0.04-0.01,0.061-0.01c0.41,0,1.609,0.81,2.52,2.27c0.99,1.471,1.74,3.45,1.87,4.851 c0.26,2.7,0.4,5.27,1.09,8.109c0.45,1.83,0.41,3.33,0.45,5.19c-2.34,0.28-4.479,1.53-6.56,2.76c-2.3,1.4-4.55,2.83-6.261,3.25 c-1.789,0.49-3.189,0.53-4.659,1.25c-1.561,0.771-2.44,2.46-2.73,4.79c-0.31,2.351-0.1,4.12-0.3,5.3 c-0.23,1.16-0.5,1.9-2.36,3.21c-1.56,1.061-3.45,1.381-5.569,1.671c-2.101,0.3-4.431,0.55-6.54,1.989 c-1.69,1.21-3.7,3.301-4.79,5.45c0,0-0.011,0-0.021,0c-0.97,0-2.149-0.05-3.39-0.05c-1.96,0-4.09,0.11-6,0.96 c-1.92,0.81-3.53,2.72-3.72,5.41c-0.021,0.149-0.021,0.31-0.021,0.439c-0.02,1.63,0.92,2.86,1.811,3.61 c0.909,0.76,1.859,1.29,2.47,1.79c0.97,0.75,1.56,1.229,1.78,1.55c0.21,0.311,0.319,0.51,0.329,1.4c0,0.029,0,0.05,0,0.08 c-1.859,0.3-3.55,0.67-5.02,1.58c-1.82,1.109-2.92,3.21-3,5.96c-0.01,0.159-0.021,0.34-0.021,0.51 c0.011,1.07,0.12,2.09,0.12,2.96c0,0.54-0.04,1.01-0.13,1.38c-0.13,0.58-0.63,1.271-1.29,2.1c-0.63,0.83-1.46,1.811-1.689,3.301 c-0.03,0.189-0.04,0.399-0.04,0.59c0,0.99,0.35,1.729,0.56,2.24c0.22,0.529,0.33,0.85,0.33,1.22c0,0.14-0.02,0.3-0.06,0.5 c-0.351,1.46-1.13,2.1-2.66,3.609c-1.37,1.391-2.44,3.261-3.3,4.061c-1.24,1.21-2.75,1.84-4.58,2.66 c-0.04-0.03-0.07-0.07-0.101-0.101c-1.029-0.949-2.479-1.489-4.13-1.47c-0.439,0-0.89,0.03-1.38,0.09 c-3.49,0.53-5.41,2.21-7.729,2.13c-0.511,0-1.061-0.069-1.69-0.229c-1.49-0.32-3.05-1.74-5.6-2.24 c-0.44-0.08-0.86-0.1-1.261-0.1c-1.729,0.01-3.18,0.449-4.21,0.449c-0.02-0.01-0.06-0.01-0.1,0c-1.95-0.01-3.29-0.67-4.83-1.699 c-1.53-1.021-3.15-2.431-5.37-3.521c-0.38-0.18-0.71-0.21-0.979-0.21c-0.45,0.01-0.82,0.08-1.061,0.13 c-0.189-0.31-0.439-0.95-1.17-1.62c-0.31-0.239-0.729-0.85-1.35-1.54c-0.61-0.67-1.681-1.46-3.09-1.449 c-0.131,0.01-0.29,0.01-0.49,0.029c-1.32,0.181-2.141,0.94-2.94,1.561c-0.76,0.63-1.5,1.21-1.81,1.3 c-1.07,0.5-2.73,0.05-4.94,0.73c-2.069,0.72-3.16,2.189-3.93,3.1c-0.851,0.979-1.101,1.24-1.89,1.27 c-0.33,0-0.801-0.069-1.44-0.29c-1.95-0.659-3.5-1.359-4.47-2.239c-0.96-0.891-1.511-1.88-1.62-3.79 c-0.16-3.261-0.87-7.45-3.67-10.33c-0.84-0.87-1.851-1.19-2.471-1.34c-0.659-0.17-0.939-0.23-1.39-0.561 c-0.1-0.04-0.61-0.68-1.03-1.359c-0.449-0.71-0.89-1.471-1.3-2.051c-2.39-3.399-3.58-5.189-7.07-7.76 c-4.329-3.18-8.76-7.16-8.67-11.72c0-0.15,0-0.28,0.011-0.391c0.06-1.109,0.149-2.069,0.149-3.05c0.05-1.84-0.51-3.83-2.31-5.68 c-2.101-2.26-4.62-4.44-6.7-6.49c-0.3-0.3-0.71-0.45-1.13-0.43c-0.42,0.02-0.811,0.22-1.08,0.55c-0.8,0.99-1.43,2.311-2.16,3.48 c-0.689,1.18-1.54,2.01-1.78,2.02c-0.04,0.01-0.189,0.04-0.409,0.04c-1.641,0.06-5.74-1.69-6.99-2.5 c-0.93-0.56-2.26-1.71-3.7-2.75c-1.47-1.01-3.09-2.03-5.07-2.06c-1.65-0.03-3.29,0.92-4.44,2.64c-0.33-0.03-0.68-0.06-1.07-0.08 c-0.26-1.16-0.37-2.34-0.37-3.55c0-1.28,0.12-2.58,0.33-3.9c0.06-0.439-0.07-0.88-0.36-1.22c-0.29-0.33-0.72-0.521-1.16-0.51 c-0.29-0.261-0.99-1.87-1.27-3.62c-0.34-1.74-0.5-3.68-0.52-4.9c0.04-0.01,0.06-0.02,0.08-0.02c0.59-0.13,1.05-0.62,1.14-1.221 c0.07-0.42,0.1-0.84,0.1-1.25c-0.01-2.42-1.05-4.46-1.93-6.34c-0.91-1.88-1.66-3.6-1.65-5.189c0.01-0.811,0.18-1.62,0.65-2.55 c0.43-0.87,1.35-1.671,2.43-2.521c1.06-0.87,2.31-1.76,3.03-3.32c1.15-2.88,0.48-5.89,1.31-7.5c0.07-0.239,1.21-1.689,2.25-3.05 c1.03-1.479,2.16-2.81,2.26-4.67c0.01-0.27-0.03-0.57-0.14-0.88c-0.42-1.12-1.24-1.72-2.06-2.27 c-1.24-0.801-2.74-1.44-3.99-2.13c-1.26-0.65-2.15-1.42-2.26-1.79c-0.18-0.41-0.23-0.71-0.23-0.96 c0.01-0.47,0.19-0.89,0.71-1.48c0.77-0.87,2.22-1.79,3.58-2.92c1.2-1.01,2.48-2.38,2.72-4.32c1.3-0.71,2.24-2.03,2.26-3.66 c0-0.71-0.19-1.43-0.58-2.1c-0.81-1.38-2.27-1.7-3.15-1.76c-0.92-0.05-1.63-0.11-1.63-0.16c-2.12-1.11-2.38-1.92-2.36-2.2 c-0.02-0.28,0.24-0.88,0.99-1.57c0.73-0.69,1.81-1.39,2.93-1.99c0.41-0.22,0.69-0.62,0.77-1.08c0.07-0.42,0.11-0.85,0.11-1.27 c-0.01-0.31-0.03-0.62-0.08-0.91c-0.13-1-0.43-1.89-0.81-2.72c0.24-0.09,0.46-0.2,0.68-0.33c0.77-0.4,1.28-1.49,1.21-2.15 c-0.03-0.89-0.22-1.32-0.2-1.78c0-0.35,0.05-0.7,0.38-1.27c0.44-0.66,0.51-0.6,0.85-0.64c0.4-0.03,1.28,0.31,2.2,0.88 c0.94,0.55,1.91,1.26,2.91,1.77c2.33,1.18,4.29,1.86,6.431,1.86c1.399,0,2.81-0.28,4.399-0.79c0.59-0.21,4.24-1.52,6.07-1.6 c-0.28,0.47-0.29,1.05-0.021,1.52c0.271,0.47,0.771,0.76,1.311,0.76c0.109,0,0.24,0,0.39,0c5.07-0.01,10.78-1.33,14.49-5.16 c3.59-3.79,7.96-6.64,10.939-11.58c0.41-0.71,1.53-1.93,2.631-3.12c1.109-1.23,2.21-2.38,2.77-3.75 c0.51-1.37,0.59-2.94,0.61-4.55c-0.011-2.11-0.2-4.3-0.2-5.67c0-0.04,0-0.07,0-0.11c0-1.82,0.38-3.93,0.39-6.07 c0-0.45-0.02-0.9-0.06-1.35c-0.34-2.62-1.42-4.04-1.351-5.61c0-0.13,0-0.27,0.021-0.41c0.04-0.57,0.27-1.85,0.63-2.95 c0.17-0.55,0.38-1.06,0.58-1.42c0.1-0.18,0.189-0.31,0.26-0.39c0.04-0.04,0.061-0.07,0.07-0.08c0.17-0.09,0.3-0.15,0.39-0.19 C467.551,340.619,467.981,341.059,468.591,341.519z", + "Orativ": "M719.321,387.579c-1.18-0.47-2.64-1.19-4.66-1.23c-0.09,0.01-0.189,0-0.41,0.03 c-0.8,0.1-1.52,0.51-2.01,1.14c-0.49,0.64-0.7,1.44-0.59,2.23c0.01,0.13,0.02,0.24,0.02,0.36c0.021,0.8-0.47,1.64-1.77,3.09 c-1.19,1.4-3.101,3.1-3.851,6.09c-0.149,0.64-0.159,1.14-0.17,1.66c0.011,1.22,0.141,2.5,0.17,3.68 c-0.489-0.55-1.13-1.05-1.949-1.39c-0.931-0.38-1.99-0.27-2.82,0.3c-0.83,0.56-1.33,1.5-1.32,2.51 c0.011,0.96,0.271,1.8,0.59,2.5c-0.47,0.97-0.56,1.99-0.55,2.81c0,0.3,0.011,0.58,0.011,0.85c-0.53,0.04-1.04,0.05-1.561,0.05 c-0.72,0-1.45-0.03-2.229-0.08c-0.21-0.79-0.511-1.33-0.54-1.73c-0.11-0.7-0.7-1.22-1.4-1.26c-0.26-0.01-0.52-0.02-0.8-0.02 c-1.34,0-2.95,0.12-4.521,0.12c-1.27,0-2.51-0.08-3.449-0.31c-0.95-0.23-1.5-0.59-1.721-0.93c-0.47-0.67-0.67-1.78-0.66-3.21 c0-1.2,0.12-2.58,0.12-3.98c-0.01-1.54-0.14-3.17-0.93-4.68c-2.09-3.82-5.28-6.45-6.73-9.83c-0.77-1.73-1.39-3.31-2.22-4.62 c-0.77-1.27-2.08-2.49-3.89-2.47c-1.42,0.03-2.78,0.63-4.391,1.75c-0.399-0.74-0.64-1.84-0.63-3.15 c-0.01-2.14,0.601-4.61,1.13-5.95c0.171-0.42,0.141-0.88-0.069-1.27s-0.59-0.67-1.021-0.75c-1.6-0.33-3.18-0.41-4.75-0.41 c-0.5,0-1.01,0-1.51,0.02c-0.41,0.01-0.79,0.19-1.06,0.49c-0.28,0.3-0.42,0.69-0.391,1.1c0.01,0.19,0.021,0.39,0.021,0.59 c0.01,2.49-1.05,5.26-2.84,6.85c-0.801,0.69-1.391,0.79-2.37,0.81c-0.66,0-1.44-0.09-2.34-0.1c-1,0-2.2,0.15-3.351,0.85 c-0.92,0.54-1.54,1.39-1.83,2.22c-0.3,0.84-0.33,1.62-0.33,2.32c0,0.47,0.021,0.91,0.021,1.29c0,0.66-0.08,1.1-0.19,1.29 c-0.26,0.48-0.7,0.82-1.5,1.08c-0.8,0.26-1.88,0.37-3.01,0.37c-0.79,0-1.6-0.05-2.38-0.11c0.09-0.44,0.149-0.9,0.16-1.4 c0.02-0.08,0.02-0.17,0.02-0.26c0-0.65-0.08-1.32-0.38-1.99c-0.29-0.67-0.92-1.37-1.78-1.63c-0.39-0.13-0.8-0.2-1.21-0.2 c-1.279,0.01-2.31,0.63-3.109,1.35c-1.2,1.1-2.08,2.54-2.86,3.83c-0.74,1.27-1.48,2.44-1.72,2.62 c-0.38,0.34-0.681,0.55-0.87,0.65c-0.04,0.03-0.08,0.04-0.11,0.06c-0.27-0.26-0.97-1.44-1.899-2.84 c-2.381-3.33-5.131-6.78-5.46-10.32c2.149-0.71,4.739-1.77,7.01-3.29c2.64-1.77,5.02-4.33,5.04-7.86c0-0.63-0.08-1.27-0.24-1.92 c-0.27-1.13-0.71-2.02-1.42-2.66c-1.1-0.95-2.271-0.96-3.061-1.1c-0.85-0.13-1.5-0.26-2.34-0.89 c-0.689-0.49-1.149-1.55-1.64-2.94c-0.51-1.33-1.08-3.06-2.85-4.13c-0.551-0.32-1.25-0.26-1.74,0.16 c-0.96,0.85-1.771,2.02-2.61,3.09c-0.81,1.06-1.7,1.97-2.04,2.08c-0.34,0.16-0.52,0.18-0.6,0.18c-0.09,0-0.181,0.01-0.63-0.4 c-0.42-0.39-1-1.08-1.851-1.8c-1.58-1.35-3.87-3.08-5.8-4.98c-1.42-1.35-2.58-2.81-3.18-4.1c3.85-0.58,7.8-0.45,12.149-0.8 c0.61-0.05,1.13-0.48,1.311-1.07c0.18-0.58-0.03-1.23-0.51-1.61c-0.011,0-0.021-0.01-0.07-0.14c-0.26-0.46-0.061-2.2-1.36-3.84 c-0.859-0.96-1.89-1.27-2.8-1.56c-0.92-0.27-1.8-0.46-2.11-0.59c-1.319-0.53-2.77-1.11-3.92-1.88c-1.16-0.8-1.96-1.69-2.29-2.95 c-0.069-0.28-0.1-0.5-0.1-0.7c0-0.78,0.43-1.38,1.27-2.35c0.761-0.91,1.96-2.16,1.98-4.17c0-0.11,0-0.21,0-0.28 c-0.24-2.29-1.771-3.56-2.9-4.82c-1.21-1.25-2.08-2.38-2.159-3.53c-0.051-0.61-0.471-1.13-1.051-1.31 c-1.12-0.34-1.81-0.8-2.229-1.32c-0.42-0.53-0.67-1.2-0.67-2.29c0-0.11,0-0.2,0-0.25c0.04-0.74,0.31-1.19,0.83-1.88 c0.479-0.67,1.3-1.51,1.51-2.94c0.03-0.18,0.03-0.33,0.03-0.46c-0.011-1.26-0.66-2.14-1.19-2.79c-0.57-0.67-1.13-1.22-1.52-1.8 c-0.58-0.86-0.721-1.27-0.851-1.86c-0.13-0.59-0.21-1.46-0.51-2.72c-0.55-2.21-1.84-3.77-3.01-5.14 c-1.19-1.38-2.271-2.61-2.891-4.15c-0.91-2.23-2.229-3.74-3.27-5.07c-1.05-1.35-1.84-2.48-2.2-4.2 c-0.11-0.52-0.49-0.94-0.99-1.11c-0.84-0.29-1.59-0.67-2.34-1.15c0.19-0.38,0.38-0.76,0.58-1.15c0.71-1.47,1.17-2.41,1.6-2.87 c0.431-0.44,0.87-0.73,2.32-0.99c0.91-0.15,2.101-0.23,3.32-0.22c1.39,0,2.81,0.09,3.92,0.23c1.439,0.21,1.81,0.49,2.36,0.98 c0.55,0.5,1.22,1.46,2.52,2.46c2.32,1.79,4.69,2.76,7.12,2.75c2.189,0,4.32-0.77,6.42-2.1c3.62-2.29,8.28-6.11,11.19-9.32 c1.55-1.67,2.319-3.31,2.289-5.04c-0.01-1.22-0.289-2.36-0.59-3.79c-0.09-0.41-0.13-0.79-0.13-1.16 c0.03-2.02,1.13-3.78,3.84-4.99c0.83-0.36,1.61-0.5,2.42-0.5c2.15-0.03,4.57,1.13,7.15,2.46c2.59,1.3,5.35,2.77,8.51,2.79 c1.07,0,2.181-0.19,3.271-0.61c1.56-0.63,3.3-2.09,5.09-3.68c1.75-1.59,3.36-3.23,4.16-4.21c1.47-1.84,2.1-4.1,2.8-6.1 c0.68-2.03,1.42-3.75,2.46-4.61c0.67-0.57,1.36-0.79,2.21-0.79c0.25-0.01,0.51,0.02,0.78,0.06c1.7,0.29,3.71,1.5,4.97,2.86 c0.98,1,2,2.62,3.17,4.2c0.42,0.55,0.87,1.1,1.351,1.62c-1.58,2.35-2.681,5.13-2.711,8.21c0,1.74,0.391,3.56,1.25,5.28 c0.69,1.29,1.511,1.75,1.87,2.06c0.051,0.04,0.101,0.08,0.141,0.11c0,0.01,0,0.02,0.01,0.03c0.02,0.15,0.04,0.4,0.04,0.69 c0,0.73-0.12,1.72-0.13,2.86c0,0.01,0,0.1,0.01,0.25c0.05,1.45,0.41,3.06,0.96,5.08c0.86,3.09,2.19,6.83,3.84,9.99 c0.83,1.58,1.721,3.02,2.811,4.23c1.08,1.15,2.46,2.36,4.68,2.42c0.29,0,0.57-0.03,0.82-0.07c1.279-0.22,2.279-1.24,2.47-2.52 c0.04,0,0.09-0.01,0.15-0.01c0.399-0.02,0.8,0.26,0.8,0.29c0.46,0.68,1.18,1.14,2,1.27c0.81,0.13,1.64-0.08,2.29-0.58 c1.22-0.93,1.8-1.05,2.109-1.05c0.341-0.02,1.19,0.21,2.79,1.46c1.03,0.79,1.86,1.56,2.4,2.26c0.53,0.69,0.78,1.26,0.88,1.93 c-0.01,0.07-0.06,0.23-0.15,0.53c-0.13,0.43-0.329,1.13-0.329,2.01c0,0.33,0.029,0.68,0.09,1.04 c0.229,1.33,0.81,2.26,1.069,2.77c-0.449,0.52-0.96,1.46-0.93,2.44c0,0.92,0.31,1.63,0.63,2.18c0.84,1.38,2.01,1.87,2.9,2.15 c-0.12,0.81-0.221,1.67-0.23,2.64c-0.06,1.98,0.69,4.5,2.62,6.39c0.96,0.98,2.69,2.81,4.63,4.45 c0.98,0.83,2.021,1.61,3.141,2.25c1.109,0.61,2.29,1.16,3.83,1.2c0.029,0,0.06,0,0.079,0c0.011,0,0.021,0,0.03,0 c0,0,0.01,0,0.021,0c0.02,0,0.029,0,0.05,0c0.02,0,0.03,0,0.03,0c1.6-0.05,2.569-0.75,3.1-1.05c0.28-0.18,0.47-0.29,0.56-0.33 c0.011-0.01,0.011-0.01,0.021-0.01c0.24-0.03,0.42-0.04,0.6-0.04c0.34-0.01,0.721,0.05,1.42,0.05c1,0.03,2.391-0.28,3.641-0.99 c1.54-0.84,2.68-1.82,3.569-2.44c0.9-0.65,1.4-0.77,1.41-0.74c0,0.01,0.28-0.1,1.34,1c-0.109,0.44-0.159,0.9-0.159,1.36 c0,0.08,0,0.21,0.01,0.37c0.04,0.68,0.14,1.31,0.229,2.02c0.061,0.41,0.101,0.83,0.13,1.17c-0.84,0.28-1.75,0.82-2.3,1.53 c-1.52,1.59-1.779,3.79-1.72,4.95c0,0.32,0,0.62,0,0.91c0,0.17,0,0.34,0,0.5c-0.03,0.73-0.06,1.48-0.06,2.24 c0,1.31,0.09,2.71,0.6,4.16c0.51,1.45,1.47,2.83,2.78,3.99c0.84,0.75,1.67,1.31,2.29,1.74c-0.32,0.2-0.841,0.49-1.53,0.95 c-0.521,0.36-1.16,0.9-1.66,1.72c-0.51,0.82-0.78,1.87-0.77,2.87c0,0.6,0.079,1.21,0.229,1.84c0.71,2.66,2.49,3.88,3.47,4.85 c0.521,0.47,0.9,0.87,1.051,1.08c0.02,0.02,0.029,0.03,0.029,0.05c-0.2,0.16-0.83,0.47-1.689,0.89 c-0.931,0.49-2.32,1.2-3.29,2.85c-0.96,1.8-0.98,3.42-1.021,5.02c0.011,1.97,0.24,3.93,0.29,4.94 c0.061,1.19,0.811,2.21,1.88,2.63c-1.229,0.68-3.399,1.24-5.72,2.17c-1.36,0.58-2.83,1.37-4.06,2.75 c-1.23,1.37-2.03,3.31-2.15,5.47c-0.02,0.24-0.02,0.49-0.02,0.74c0.01,1.92,0.329,3.65,0.319,4.99 c-0.02,1.36-0.24,1.93-0.649,2.34c-0.2,0.15-0.181,0.15-0.2,0.14c-0.021,0-0.04,0-0.09,0.01 C721.381,388.369,720.481,388.109,719.321,387.579z", + "Pishchanka": "M482.901,842.009c0.02,1.689-0.11,2.36-0.17,2.41c-0.01,0.05-0.2,0.41-1.55,1.3 c-1.551,1.02-2.631,1.36-4.011,1.59c-1.37,0.22-3.109,0.22-5.42,0.33c-1.439,0.17-4.149-0.25-6.92,1.69 c-0.34,0.229-0.649,0.52-0.91,0.829c0.021-0.92,0.04-1.84,0.04-2.779c0.021-3-0.319-6.48-2.58-9.76 c-0.779-1.131-1.869-2.761-3.17-4.311c-1.319-1.55-2.76-3.1-4.87-4.04c-1.85-0.74-3.699-0.79-5.739-0.82 c-2.811,0-5.73,0.301-7.471,0.551c-1.55,0.239-2.739,0.77-3.699,1.12c-0.96,0.369-1.65,0.55-2.061,0.539 c-0.05,0-0.12,0-0.2-0.01c-0.399-0.04-0.54-0.1-0.56-0.1c-0.15-0.13-0.92-1.24-2.42-2.3c-1.851-1.28-3.93-1.62-5.75-1.62 c-2.641,0.01-5.05,0.649-6.8,1c-1.36,0.27-3.15,0.5-4.82,0.5c-1.8,0.02-3.46-0.32-4.2-0.76c0,0-0.01-0.011-0.05-0.051 c-0.23-0.199-0.75-1.08-1.34-2.18c-0.63-1.06-1.28-2.51-3.18-3.59c-1.42-0.72-2.63-0.74-3.72-0.76c-0.54,0-1.06,0.029-1.54,0.05 c-0.41-1.101-0.96-2.09-1.88-3.01c-1.59-1.471-3.39-1.82-5.26-2.141c-3.32-0.51-6.75-2.28-10.7-3.78 c-2.9-1.079-6.96-1.88-11.08-1.89c-0.04,0-0.09,0-0.13,0.01c0.01-3.29,0.03-6.43,0.04-9.56c0.37,0,0.75-0.01,1.13-0.01 c0.59,0,1.19,0.01,1.8,0.01c0.84,0,1.69-0.01,2.56-0.05c0.79-0.04,1.41-0.67,1.43-1.46c0-0.141,0-0.271,0-0.38 c0-1.24-0.14-2.301-0.14-3.021c0-0.58,0.09-0.87,0.17-1c0.08-0.11,0.2-0.28,0.86-0.49c0.38-0.12,0.8-0.17,1.26-0.17 c1.93-0.04,4.56,1.04,7.45,1.08c0.64,0,1.29-0.06,1.94-0.21c3.32-0.81,5.03-3.38,6.53-5.71c0.6-0.979,0.76-1.82,0.91-2.13 c0.19-0.31,0.04-0.271,0.69-0.55c0.31-0.101,0.75-0.16,1.29-0.16c1.64-0.021,3.93,0.58,6.07,0.6c0.2,0,0.4-0.01,0.59-0.02 c3.88-0.28,7.09-1.2,10.64-1.33c2.14-0.08,3.61-0.29,4.85-1.26c1.2-0.99,1.68-2.2,2.51-3.82c0.67-1.34,1.2-2.08,1.67-2.98 c0.47-0.88,0.78-1.97,0.76-3.31c0-0.25,0-0.51-0.02-0.78c-0.03-0.54-0.05-0.97-0.05-1.31c0-0.521,0.05-0.82,0.09-0.91 c0.01-0.04,0.01-0.04,0.01-0.05c0,0,0.17-0.12,0.67-0.24c0.48-0.12,1.24-0.229,2.24-0.35c1.59-0.221,2.939-0.28,4.3-1.021 c1.38-0.77,2.22-2.25,2.63-4.229c0.08-0.36,0.12-0.71,0.11-1.04c0-1.05-0.29-1.931-0.51-2.65c-0.221-0.64-0.36-1.18-0.381-1.39 c0.051-0.021,0.11-0.04,0.19-0.07c0.35-0.12,0.62-0.15,0.86-0.15c0.55,0,0.989,0.2,1.489,0.511c0.24,0.16,0.48,0.33,0.78,0.52 c0.3,0.17,0.65,0.431,1.38,0.46c0.49,0.021,1.08-0.25,1.391-0.59c0.85-1.04,0.85-1.88,1.13-3.66c0.439-3.1,0.64-3.37,2.72-5.859 c1.23-1.391,1.75-1.66,2.39-1.83c0.67-0.19,1.87-0.15,3.88-0.33c3.221-0.33,5.49-1.32,8.2-1.32 c7.431-0.189,12.351-4.35,18.061-4.24c0.75,0,1.52,0.061,2.33,0.2c2.319,0.44,3.59,1.44,4.949,2.87 c1.351,1.43,2.641,3.31,4.71,4.94c1.15,0.909,2.37,1.3,3.421,1.279c1.52-0.04,2.42-0.479,3.409-0.45 c0.17,0,0.36,0.011,0.561,0.04c0.74,0.12,0.83,0.21,1.17,0.45c0.33,0.25,0.87,0.82,1.82,1.37c1.149,0.67,1.89,0.91,2.93,1.39 c3.62,1.671,7.67,2.351,11.64,2.351c1.04,0,2.09-0.05,3.11-0.14c2.35-0.2,4.55-0.11,6.84-2.091c1-0.859,1.561-1.729,2-2.18 c0.47-0.45,0.51-0.52,1.12-0.55c0.16,0,0.35,0.01,0.58,0.05c0.3,2.01,1.3,3.99,3.26,5.12c1.32,0.75,2.561,0.7,3.28,0.72 c0.76,0.05,0.97,0.04,1.56,0.5c0.63,0.54,0.95,1.181,1.33,2.11c0.29,0.689,0.61,1.55,1.21,2.38c-0.68,3.3-2.38,6.24-4.25,9.27 c-0.819,1.301-1.01,2.561-1.08,3.521c-0.069,0.99-0.09,1.7-0.449,2.67c-0.32,1.06-1.841,1.98-3.45,3.15 c-0.54,0.43-1.721,1.13-2.84,1.909c-1.131,0.83-2.28,1.641-2.91,3.04c-0.25,0.591-0.32,1.19-0.32,1.73 c0.03,1.5,0.48,2.7,0.45,3.38c0,0.1-0.01,0.18-0.021,0.26c-0.12,1.5-1.55,3.3-1.62,6.04c0,0.09,0,0.15,0,0.2 c0.12,2.72,1.551,4.25,2.061,5.61c-0.48,0.18-0.94,0.42-1.32,0.72c-1.27,1.01-1.75,2.12-2.2,2.97 c-0.42,0.891-0.77,1.62-1.18,2.23c-0.229,0.319-0.35,0.42-0.86,0.77c-0.47,0.33-1.369,0.851-2.239,1.84 c-1.33,1.45-1.95,3.391-1.9,4.9c0.061,2.12,0.54,3.33,0.5,4.49c0,0.069,0,0.16,0.01,0.25c0,0.569,0,1.18,0,1.8 c0.011,2.06-0.08,4.33-0.43,5.71c-0.08,0.37-0.19,0.66-0.27,0.85c-0.03-0.01-0.061-0.02-0.08-0.029 c-0.29-0.11-0.721-0.34-1.271-0.71c-1.95-1.33-3.72-3.681-5.649-6.28c-1.95-2.561-4.101-5.43-7.5-7.25 c-1.511-0.79-3.021-1.26-4.561-1.26c-2.34-0.04-4.399,1.26-5.54,2.779c-1.76,2.28-2.439,4.971-3.03,7.49 c-0.54,2.49-0.93,4.91-1.3,5.99c-0.46,1.41-0.99,2.52-1.5,3.97s-0.899,3.2-0.89,5.34v0.021c0,0.03,0,0.06,0,0.1 C482.901,841.608,482.901,841.818,482.901,842.009z", + "Pohrebyshche": "M656.762,123.789c0.329-0.09,0.77-0.16,1.149-0.15h0.021c1.109,0,2.05,0.52,3.55,1.78 c1.46,1.2,3.17,3.04,5.859,4.19c2.221,0.9,5.091,1.68,7.811,1.7h0.02h0.021c1.359-0.03,2.25-0.41,2.96-0.63 c0.35-0.12,0.64-0.22,0.82-0.27c0.02,0,0.04-0.01,0.05-0.01c0.05,0.01,0.12,0.04,0.189,0.07c0.79,0.29,2.351,1.34,3.601,2.53 c0.02,0.02,0.04,0.04,0.06,0.06c-0.47,0.16-0.92,0.35-1.35,0.55c-0.681,0.33-1.15,0.55-1.71,0.91 c-0.41,0.25-0.94,0.66-1.37,1.31c-0.641,1.04-0.63,1.85-0.69,2.27c-0.04,0.46-0.069,0.87-0.21,1.59 c-0.029,0.48-0.8,1.69-1.96,3.12c-1.05,1.45-2.63,3.22-2.71,6.15c0,0.18,0,0.41,0.04,0.69c0.29,2.34,1.61,3.79,2.58,4.86 c1.03,1.07,1.9,1.93,2.1,2.33c0.96,1.61,2.2,4.31,2.82,6.1c1.55,4.43,3.7,10.2,4.49,14.46c0.1,0.55,0.14,1.14,0.14,1.8 c0.01,1.04-0.109,2.24-0.109,3.62c-0.021,1.89,0.279,4.29,1.81,6.5c1.48,2.1,3.55,3.9,5.9,5.03c1.159,0.56,2.31,0.66,2.899,0.69 c0.63,0.04,0.721,0.05,0.95,0.13c0.53,0.21,0.93,0.41,1.21,0.59c-0.32,0.2-0.79,0.43-1.39,0.61 c-1.141,0.39-2.61,0.44-4.521,1.01c-1.92,0.51-4.189,2.19-5.229,4.84c-0.08,0.14,0.04-0.03-0.24,0.34 c-0.31,0.33-0.89,1.64-0.82,2.54c0,0.21,0.021,0.46,0.05,0.72c0.23,1.32,0.601,1.63,0.94,2.23c1.01,1.53,2.64,3.35,3.06,3.88 c1.221,1.52,2.11,2.46,2.591,3.2c0.479,0.75,0.779,1.35,1.05,2.93c0.149,0.93,0.22,1.72,0.22,2.48c0,1.11-0.149,2.2-0.43,3.59 c-0.17,0.87-0.181,1.61-0.2,2.48c-0.02,1.27-0.01,2.7-0.08,3.85c-0.03,0.39-0.06,0.74-0.1,1.01c-0.5,0.01-1.24,0.07-2.011,0.36 c-0.76,0.29-1.119,0.35-1.93,0.78c-0.8,0.47-1.149,0.85-1.84,1.46c-1.3,1.17-2.14,2.27-2.83,3.02s-1.16,1.18-1.979,1.58 c-1.54,0.81-4.011,1.14-6.53,3.49c-0.28,0.28-0.561,0.57-0.83,0.86c-0.28-0.32-0.561-0.66-0.84-1.04 c-1.08-1.42-2.101-3.11-3.4-4.47c-1.7-1.74-4.1-3.35-6.78-3.74c-0.38-0.06-0.76-0.1-1.14-0.1c-1.43-0.01-2.93,0.45-4.16,1.51 c-1.85,1.61-2.63,3.85-3.35,5.92c-0.69,2.08-1.34,4.03-2.29,5.18c-0.61,0.75-2.2,2.39-3.851,3.88 c-1.609,1.48-3.479,2.88-4.14,3.1c-0.75,0.29-1.46,0.41-2.2,0.41c-2.14,0.02-4.56-1.14-7.149-2.47 c-2.59-1.29-5.34-2.76-8.511-2.79c-1.18,0-2.399,0.23-3.609,0.76c-3.53,1.48-5.67,4.43-5.65,7.74c0,0.59,0.07,1.19,0.2,1.79 c0.32,1.45,0.52,2.46,0.52,3.16c-0.029,0.93-0.199,1.53-1.51,3.02c-2.63,2.93-7.24,6.71-10.569,8.81 c-1.801,1.13-3.351,1.63-4.82,1.63c-1.62,0-3.3-0.61-5.3-2.13c-0.94-0.72-1.41-1.42-2.28-2.26c-0.85-0.84-2.17-1.57-4.05-1.78 c-1.26-0.16-2.78-0.25-4.29-0.25c-1.33,0-2.65,0.07-3.811,0.26c-1.76,0.27-3.12,0.89-4.05,1.94c-0.92,1.03-1.37,2.16-2.07,3.54 c-1.42,2.85-2.279,4.6-4.529,6.55c-1.82,1.53-2.82,1.89-3.82,1.9c-0.88,0.02-2.08-0.39-3.8-1.05c0.34-0.54,0.57-1.18,0.6-1.92 c0.011-0.03,0.011-0.06,0.011-0.08v-0.01v-0.01c0-0.37-0.141-0.74-0.4-1.03c-0.43-0.45-1.1-0.6-1.67-0.36 c-3.41,1.45-6.49,4.41-9.41,5.83c-1.67,0.83-2.51,1.03-3.23,1.03c-0.81,0.03-1.89-0.34-3.88-0.84 c-0.859-2.1-2.64-3.08-3.779-3.77c-0.681-0.41-1.19-0.76-1.471-1.1c-0.27-0.34-0.42-0.63-0.439-1.34c0-0.01,0-0.01,0-0.02 c0-0.01,0-0.03,0-0.04c0.01-0.7,0.13-0.96,0.34-1.41c0.19-0.41,0.63-1.09,0.64-2.14c0-0.84-0.29-1.66-0.819-2.6 c-0.801-1.38-1.86-2.26-2.63-3.06c-0.78-0.82-1.28-1.47-1.49-2.46c-0.101-0.49-0.141-0.95-0.141-1.38 c0-2.81,1.881-4.83,4.41-5.88c1.3-0.53,3.21-1.69,4.971-3.2c1.59-1.43,3.18-3.07,3.439-5.26c0.021-0.15,0.03-0.3,0.04-0.45 c0-0.32-0.04-0.62-0.1-0.91c-0.38-1.57-1.69-2.44-2.851-2.78c-1.2-0.38-2.47-0.44-3.67-0.44c-1.21,0-2.37,0.08-3.12,0.07 c-0.16,0-0.319,0-0.439-0.01c-3.05-0.17-6.86-0.97-9.21-2.51c-0.971-0.53-1.851-2.4-3.84-3.58c-0.94-0.5-1.881-0.74-2.75-0.73 c-1.65,0.03-2.74,0.61-4.2,0.85c-2.25,0.42-4.49,0.3-6.83,0.38c-2.34,0.07-4.83,0.37-7.271,1.81c-0.75,0.44-1.3,0.94-1.689,1.25 c-0.061,0.06-0.12,0.1-0.17,0.14c-0.16-0.22-0.391-0.61-0.65-1.18c-0.62-1.14-0.24-3.03-1.5-5.49 c-1.53-2.61-3.89-3.69-4.62-5.08c-0.55-0.78-0.5-2.09-1.33-3.98c-1.6-3.27-4.52-4.88-6.09-7.31c-2.02-2.91-5.12-6.86-5.88-9.82 c0.11-0.02,0.24-0.03,0.38-0.04c0.89-0.02,2.311,0.55,3.71,1.36c1.42,0.81,2.8,1.77,4.04,2.39c2.34,1.14,4.64,1.21,6.8,1.21 c0.431,0,0.86-0.01,1.29-0.01c0.16,0,0.33,0.01,0.49,0.01c3.06-0.06,6.7,2.27,10.82,2.36c0.41,0,0.83-0.03,1.25-0.09 c0.55-0.08,1.01-0.46,1.2-0.99c0.229-0.65,0.279-1.28,0.279-1.87c-0.01-1.4-0.31-2.75-0.3-3.43c0-0.17,0.021-0.25,0.021-0.27 c0.3-0.84,0.89-1.3,1.979-1.67c1.07-0.34,2.5-0.44,3.78-0.43c0.27,0,0.54,0,0.79,0.01c0.56,0.01,1.09-0.3,1.35-0.79 c1.21-2.24,1.84-4.19,1.84-6.07c-0.02-3.49-2.16-5.99-4.979-8.68c-0.771-0.73-1.391-1.32-1.73-1.76 c-0.35-0.45-0.399-0.64-0.399-0.81c-0.021-0.23,0.18-0.9,1.18-2.07c0.71-0.9,2.22-1.38,4.05-1.85c1.76-0.5,3.94-0.97,5.311-3.02 c0.72-1.13,0.97-2.41,0.97-3.69c-0.061-5.35-4.17-11.77-5.48-14.56c-1.26-2.56-1.819-5.56-1.819-8.66 c0-3.98,0.93-8.1,2.37-11.55c0.699,1.2,1.659,2.28,2.909,3.14c1.7,1.17,3.601,1.68,5.29,1.66c3.221-0.06,5.53-1.35,7.38-1.77 c0.351-0.09,0.62-0.12,0.87-0.12c0.58,0,1.2,0.17,2.181,0.55c0.979,0.36,2.279,0.93,3.97,1.22c3.8,0.63,7.4,0.52,10.36,1.01 c2.85,0.44,5.25,1.51,8.59,2.56c1.6,0.51,3,0.73,4.279,0.73c2.61-0.05,4.021-0.73,5.99-0.96c0.271-0.03,0.561-0.05,0.88-0.05 c2.341-0.07,5.75,1.24,9.761,1.31c0.939,0,1.93-0.09,2.93-0.33c0.88,0.39,1.82,0.57,2.66,0.56c2.63-0.07,4.41-1.19,5.529-1.53 c1.41-0.51,2.211-0.65,2.601-0.64c0.34,0.01,0.49,0.03,0.979,0.25c0.471,0.22,1.21,0.69,2.24,1.37c0.01,0,0.141,0.12,0.601,0.6 c0.38,0.43,1.569,1.45,3.18,1.43c1.35-0.02,2.3-0.53,3.25-1.13c1.55-1.01,2.32-2.57,2.64-3.82c0.33-1.28,0.351-2.42,0.36-3.3 c0-0.11,0-0.11,0-0.11c-0.03-3.34-0.73-6.22-0.93-8.81c0.75-0.11,1.529-0.16,2.319-0.16c1.69,0,3.45,0.24,5.11,0.64 c0.25,0.03,0.89,0.44,1.82,1.28c0.939,0.78,2.149,2.01,4.279,2.54c0.511,0.12,1.021,0.17,1.5,0.17 c2.061-0.02,3.48-0.87,4.48-1.38c1.02-0.57,1.67-0.85,2.05-0.87c0.55-0.05,1.03-0.07,1.49-0.07c0.68,0,1.31,0.04,2.069,0.04 c0.931,0.01,2.15-0.09,3.37-0.61c1.23-0.5,2.351-1.31,3.54-2.44c3.521-3.39,4.19-7.14,5.431-10.12 c0.479-1.14,0.729-1.22,0.84-1.29c0.12-0.08,0.62-0.21,1.72-0.2c0.62,0,1.39,0.03,2.28,0.03c0.54,0,1.13-0.02,1.77-0.05 c1.01-0.06,1.91-0.62,2.42-1.5C656.871,125.379,656.972,124.559,656.762,123.789z", + "Sharhorod": "M342.241,505.289c0.23,0.51,0.46,3.21,3,5.199c2.77,2.091,7.47,2.641,10.52,2.98 c1.47,0.13,4.56,0.37,7.52,0.37c0.5-0.01,0.98-0.021,1.45-0.03c-0.01,2.09-0.06,4.1-0.32,5.96c-0.06,0.46-0.07,0.88-0.07,1.21 c0,0.17,0.01,0.3,0.01,0.41c-0.02,0.64-0.01,0.66-0.25,1.03c0,0.01-0.01,0.02-0.13,0.069c-0.21,0.101-0.71,0.19-1.37,0.42 c-0.65,0.211-1.54,0.761-2,1.73c-0.33,0.65-0.51,1.35-0.5,2.02c-0.01,1.36,0.69,2.44,1.45,3.211c1.15,1.17,2.6,1.979,3.66,2.779 c0.88,0.63,1.32,1.17,1.45,1.49c-0.76-0.09-1.81-0.39-2.9-0.74c-1.34-0.399-2.73-0.88-4.2-0.89c-0.66,0-1.36,0.11-2.03,0.46 c-1.04,0.47-1.65,1.71-1.59,2.63c0.04,1.33,0.58,2.37,1,3.4c0.09,0.199,0.18,0.399,0.25,0.59c-0.27-0.13-0.57-0.29-0.88-0.47 c-1.05-0.57-2.37-1.341-4.13-1.351c-0.38,0-0.79,0.04-1.19,0.13c-0.41,0.08-0.76,0.33-0.98,0.69c-0.93,1.52-1.34,3.14-1.34,4.72 c0.13,6.49,6.17,11.9,9.52,15.17c0.46,0.44,0.84,0.73,1.1,0.92c0.11,0.07,0.19,0.12,0.25,0.16c0.04,0.16,0.12,0.5,0.22,1.03 c0.04,0.21,0.06,0.43,0.06,0.649c0.03,1.141-0.63,2.521-0.98,4.41c-0.1,0.58-0.14,1.19-0.14,1.811 c0.02,2.33,0.58,4.97,1.57,7.34c-1.51-0.141-2.9-0.2-3.96-0.58c-2.74-0.86-5.08-2.46-8.65-2.48c-0.41,0-0.83,0.021-1.25,0.07 c-3.76,0.42-6.54,2.38-9.24,3.86c-2.69,1.479-5.37,3.319-7.81,4.989c-2.83,2.03-4.75,5.461-6.34,6.24 c-1.12,0.641-2.05,0.641-3.34,0.99c-0.63,0.17-1.38,0.51-1.98,1.16c-0.6,0.64-1,1.49-1.26,2.54c-0.21,0.8-0.28,1.609-0.28,2.39 c0.01,2.42,0.64,4.61,0.63,6.48c-2.14,0.3-3.6,1.609-4.63,2.68c-1.23,1.27-2.12,2.19-3.2,2.39c0-0.01-0.01-0.01-0.01-0.01 c-0.02,0.03-0.5-0.16-1.14-0.63c-0.66-0.4-1.45-1.09-2.81-1.13c-0.58-0.01-1.21,0.189-1.72,0.55c-1.1,0.79-1.2,1.98-1.2,2.71 c0,0.771,0.11,1.45,0.1,1.83c0,0.11,0,0.18-0.01,0.22h0.01c-0.27,0.73-1.42,1.761-2.95,2.7c-1.52,0.98-3.29,1.91-4.71,3.04 c-1.63,1.34-2.45,1.97-3.22,2.25c-0.76,0.3-1.81,0.42-4.06,0.41c-0.18,0-0.34,0.04-0.5,0.09c-0.89-2.35-2.49-4.08-4.68-5.71 c-1.97-1.49-4.03-2.58-5.55-3.99c-1.06-0.939-2.17-2.39-3.72-3.51c-1.65-1.19-3.38-1.54-4.86-1.53 c-1.7,0.011-3.13,0.351-4.22,0.34c-0.9-0.02-1.49-0.149-2.21-0.699c-1.3-0.94-2.15-3.11-4.28-4.78 c-3.02-2.22-6.56-2.24-9.44-2.53c-6.18-0.59-12.23-0.67-18.31-1.02c-1.71-2.521-3.86-4.351-5.57-6.17 c-1.89-1.99-3.23-3.82-3.52-6.471c-0.13-1.18-0.34-3.71-0.91-6.14c-0.29-1.229-0.66-2.44-1.22-3.51 c-0.55-1.05-1.31-2.05-2.56-2.54c-0.44-0.17-0.9-0.26-1.35-0.26c-1.99,0.06-3.23,1.359-4.23,2.46 c-0.98,1.12-1.85,2.34-2.24,2.64c-0.9,0.76-2.13,1.92-3.38,2.99c-1.21,1.06-2.54,2.01-3.11,2.189 c-0.48,0.19-1.33,0.301-2.33,0.29c-2.23,0.011-5.1-0.47-7.38-0.479c-0.18,0-0.36,0-0.54,0.01c-2.34,0.1-4.13,0.59-5.44,1.6 c-0.45-0.72-0.82-1.46-1-2.159c-0.49-1.65,0.08-4.33-0.69-7.061c-1.18-3.81-4.19-6.36-6.49-8.88c-0.82-0.88-1.51-1.68-2.37-2.35 c-0.47-0.37-1.03-0.681-1.64-0.891c0.17-2.149,0.54-4.92,0.54-7.39c0-1.55-0.12-3.01-0.67-4.311 c-0.69-1.56-1.98-2.39-3.08-3.069c-1.13-0.66-2.16-1.24-2.64-1.76c-1.35-1.45-1.64-2.391-2.22-4.4 c-0.52-1.771-1.51-8.37-1.49-13.97c-0.01-2.44,0.18-4.721,0.61-6.301c0.2-0.779,0.47-1.38,0.71-1.72 c0.26-0.34,0.4-0.39,0.53-0.42c0.36-0.07,0.66-0.26,0.88-0.52c1.65-0.141,3.03-1.04,3.95-2.21 c2.94-3.83,3.05-10.421,3.11-13.561c0-0.01,0-0.02,0-0.11c0-0.47-0.01-0.85-0.01-1.17c0.07-1.239-0.03-1.08,0.59-1.819 c0.01,0,0.01-0.021,0.18-0.08c0.24-0.09,0.78-0.13,1.49-0.4c0.72-0.24,1.59-0.939,1.98-1.939c0.45-1.051,0.49-2.03,0.49-2.761 c0-0.18,0-0.359,0-0.54c0.02-0.909,0.01-1.26,0.61-2.05c0.01-0.04,0.65-0.52,1.24-0.83c0.21-0.13,0.42-0.239,0.62-0.35 c1.31,0.76,2.33,1.2,3.1,1.65c0.93,0.539,1.64,1.079,2.76,2.569c1.16,1.58,2.45,3.23,4.54,4.09 c0.68,0.271,1.32,0.311,1.82,0.311c0.44,0,0.79-0.03,1.02-0.03c0.08,0,0.13,0.01,0.17,0.01c0.04,0.08,0.1,0.25,0.15,0.54 c0.11,0.57,0.53,1.021,1.09,1.181c0.52,0.14,1.04,0.22,1.54,0.22c0.02,0,0.04,0,0.06,0c1.06,0,2.05-0.44,2.7-1.07 c1.01-0.97,1.4-2.149,1.76-3.17c0.32-1.03,0.61-1.97,0.86-2.32c1.49-2.43,5.99-6.02,9.02-8.09c1.15-0.8,2.23-1.39,3.21-2.26 c0.98-0.84,1.76-2.22,1.72-3.84c0-0.88-0.17-1.82-0.5-2.91c-0.6-1.84-1.32-2.63-1.57-4c-0.28-1.37-0.48-2.75-0.86-4.19 c2.63-0.56,4.97-1.21,7.04-1.199c1.77,0.02,3.32,0.399,5.02,1.699c3.59,2.681,8.29,7.891,13.93,9.021 c0.56,0.11,1.12,0.18,1.7,0.21c0.49,0.01,0.97,0.01,1.47,0.01c5.49,0,11.22-0.68,16.57-0.68c2.17,0,3.53-0.18,4.71-0.87 c1.16-0.68,1.77-1.46,3.13-2.55c1.11-0.91,2.34-1.53,3.56-2.61c1.23-1.08,2.28-2.689,2.76-5.09c0.1-0.53,0.14-1.05,0.14-1.57 c0-1.83-0.52-3.529-0.84-4.84c-0.28-1.02-0.82-1.85-1.27-2.6c-0.23-0.37-0.44-0.71-0.59-0.97c-0.07-0.131-0.12-0.23-0.15-0.301 c-0.01-0.029-0.02-0.05-0.03-0.06c-0.05-0.26-0.06-0.48-0.07-0.69c0.02-0.899,0.34-1.569,1.01-2.359 c0.3-0.351,0.66-0.69,1.07-1.051c0.27,0.771,0.6,1.57,0.99,2.351c0.83,1.61,1.88,3.18,3.59,4.02c0.81,0.36,1.6,0.42,2.31,0.42 c0.37,0,0.73-0.02,1.07-0.04c0.57,1.65,0.96,3.65,2.29,5.591c1.64,2.189,3.59,2.84,4.48,4.069c2.03,2.551,2.31,5.19,2.32,8.561 c0,1.109-0.04,2.279-0.04,3.51c0,0.74,0.02,1.5,0.06,2.27c0.17,3.851,1.68,6.65,3.44,9.061c1.76,2.43,3.75,4.56,5.35,7.41 c1.51,2.7,4.06,5.95,8.36,5.979c0.23,0,0.47-0.01,0.71-0.029c1.77-0.171,3.31-1.141,4.51-2.4c1.05-1.16,1.87-2.59,2.03-4.19 c0.69-0.229,1.22-0.479,1.65-0.63c0.11,1.25,0.32,2.721,0.79,4.11c0.62,1.92,2.2,4.05,4.93,4.13l0.14-0.01c0.02,0,0.04,0,0.06,0 c1.41-0.07,2.3-0.811,3.01-1.28c0.72-0.55,1.27-0.78,1.3-0.75c0,0,0,0,0.01,0c0.02,0,0.14,0,0.59,0.58 c0.24,0.36,0.3,0.61,0.31,0.97c0.08,0.891-0.78,2.261-0.95,4.16c-0.02,0.12-0.02,0.23-0.03,0.351 c-0.01,0.729,0.2,1.56,0.69,2.289c1.43,1.961,3.75,2.23,5.77,2.261c1.86,0,3.66-0.33,4.82-0.63c0.63-0.17,1.09-0.721,1.12-1.37 c0.03-0.681,0.04-1.271,0.04-1.771c0-0.34,0-0.63,0-0.91c-0.02-1.029,0.1-1.39,0.16-1.449c0.04-0.091,0.46-0.45,1.8-0.86 c0.92-0.3,1.53-0.4,1.8-0.39C342.191,505.289,342.221,505.289,342.241,505.289z", + "Teplyk": "M783.621,576.639c0.42,0.92,0.73,1.83,1.3,2.8c1.44,2.38,3.65,5.34,6.28,7.95 c2.66,2.56,5.62,4.9,9.28,5.54c0.77,0.13,1.479,0.15,2.12,0.15c0.96,0,1.79-0.061,2.46-0.061c1.09,0,1.6,0.15,1.92,0.36 c0.359,0.21,1.46,1.39,2.35,2.689c0.91,1.29,1.75,2.74,2.24,3.66c0.05,0.16,0.21,0.94,0.31,1.82c0.2,1.54,0.381,3.54,0.83,5.41 c0.25,0.939,0.53,1.87,1.17,2.85c0.061,0.1,0.131,0.2,0.21,0.3c-0.5,1.45-0.689,2.931-0.689,4.37c0,0.15,0,0.29,0,0.44 c-1.21,0.189-2.521,0.479-3.811,0.96c-1.31,0.5-2.64,1.189-3.77,2.38c-1.13,1.149-1.92,2.899-1.91,4.76 c-1.6,0.63-2.87,1.3-4.21,1.47c-0.22,0.03-0.45,0.04-0.68,0.04c-1.4,0.03-3.08-0.609-5.11-0.649c-0.01,0-0.02,0-0.03,0 c-2.83-0.04-4.699,1.66-5.859,3.319c-1.21,1.69-2.13,3.471-3.48,4.69c-5.05,4.7-12.42,7.5-17.92,12.58 c-2.399,2.24-4.27,5.24-6.189,7.57c-1.931,2.369-3.74,3.83-5.66,3.8c-1.351,0-3.141-0.65-5.54-2.76 c-0.771-0.58-1.47-2.48-3.141-3.9c-1.72-1.35-3.949-1.93-6.069-2.54c-2.12-0.57-4.16-1.16-5.24-1.93 c-3.18-2.16-6.52-5.761-8.28-9.11c-1.26-2.36-2.45-3.9-4.239-4.71c-1.771-0.77-3.591-0.74-6.141-0.75 c-2.57,0-5.18-0.07-7.81-0.07c-1.69,0-3.4,0.03-5.101,0.12c-0.399,0.021-0.779,0.21-1.04,0.51c-0.27,0.301-0.399,0.7-0.37,1.101 c0,0.08,0.011,0.16,0.011,0.24c-0.03,0.619-0.15,0.81-0.45,1.109c-0.44,0.45-1.61,0.87-3.01,1.181 c-1.4,0.34-2.99,0.609-4.431,1.29c-3.21,1.43-4.81,4.05-5.1,7.439c-0.03,0.24-0.04,0.47-0.04,0.69 c0.01,0.93,0.16,1.63,0.15,2.01c-0.07,0.46,0.06,0.399-0.54,0.91c-0.061,0.01-0.24,0.04-0.5,0.04c-0.311,0-0.721-0.03-1.2-0.03 c-0.67,0.01-1.69,0.02-2.561,0.92c-0.72,0.81-0.779,1.67-0.8,2.48c0.01,1.5,0.45,3.17,1.03,4.71c0.25,0.609,0.5,1.189,0.77,1.72 c-1.359,0.479-2.68,1.11-3.97,1.92c-0.34,0.21-0.59,0.55-0.67,0.94c-0.08,0.35-0.12,0.699-0.12,1.039 c0.021,1.811,0.95,3.091,1.601,4.12c0.51,0.761,0.869,1.38,1.029,1.91c-1.39-0.06-2.22-0.319-3.189-0.74 c-1.08-0.47-2.33-1.229-4.271-2.04c-2.09-0.859-4.34-1.27-6.59-1.27c-2.34,0-4.67,0.43-6.85,1.25 c-3.19,1.21-5.71,3.23-8.07,4.83c-2.38,1.61-4.5,2.76-6.85,2.75c-0.051,0-0.101-0.01-0.15-0.01c-0.15-2.21-0.85-5.11-2.09-7.74 c-0.7-1.47-1.57-2.84-2.69-3.91c-1.04-1.01-2.39-1.77-3.93-1.86c-0.98-2.39-2.31-4.54-2.62-6.329 c-0.46-2.25,0.09-5.011-0.68-8.11c-0.73-2.75-1.54-4.48-1.62-7v-0.09c0,0,0,0,0-0.021c-0.03-1.01,0.49-2.939,0.51-4.7 c-0.01-0.529-0.05-1.069-0.25-1.64c-0.479-1.34-1.39-2.26-2.189-3.17c-0.82-0.9-1.57-1.77-1.95-2.62 c-0.71-1.55-1.471-3.439-1.83-5.02c-0.26-1.11-0.73-3.48-0.73-5.33c-0.029-1.17,0.28-2.08,0.38-2.11 c0.221-0.21,0.301-0.229,0.921-0.34c0.529-0.08,1.75-0.26,2.539-1.36c0.341-0.51,0.341-0.79,0.391-1.069 c0.03-0.271,0.04-0.53,0.04-0.79c0-0.36-0.021-0.761-0.04-1.12c0.09-0.03,0.18-0.061,0.24-0.07c0.02-0.01,0.04-0.02,0.06-0.02 c0.56-0.08,1.04-0.471,1.22-1.021c0.2-0.62-0.02-1.29-0.54-1.68c-2.479-1.88-3.439-2.9-3.779-5.931 c-0.021-0.21-0.021-0.38-0.021-0.56c0.04-1.22,0.3-1.5,0.891-2.29c0.579-0.729,1.59-1.9,1.819-3.8 c0.021-0.22,0.04-0.43,0.04-0.64c-0.02-1.82-0.97-3.091-1.64-4.061c-0.73-0.97-1.13-1.689-1.08-1.99c0-0.14,0.02-0.3,0.229-0.63 c0,0,0,0,0.04-0.04c0.29-0.35,1.53-1.33,2.71-2.069c0.601-0.37,1.2-0.71,1.681-0.94c0.239-0.11,0.45-0.2,0.6-0.24 c0.01-0.01,0.01-0.01,0.021-0.01c0.189,0.14,0.58,0.47,1.02,0.83c0.61,0.46,1.46,1.09,2.71,1.11c0.09,0,0.19-0.011,0.3-0.011 c1.24-0.14,2.011-0.83,2.53-1.279c0.44-0.391,0.771-0.66,1.01-0.79c0.391,0.04,1.351,0.18,2.19,0.189 c0.31,0,0.62-0.01,1.02-0.109c1.04-0.29,1.67-0.99,1.99-1.351c0.36-0.38,0.37-0.37,0.44-0.38c0.34-0.08,0.64-0.12,0.93-0.12 c1.84-0.05,3.61,1.5,5.68,3.54c2.04,1.94,4.41,4.34,8.021,4.37c0.529,0,1.069-0.05,1.63-0.17c0.67-0.13,1.16-0.7,1.2-1.38 c0.1-2.05,0.47-3.181,0.76-3.58c0.3-0.37,0.33-0.39,0.979-0.43c1.33-0.061,4.131,1.13,7.511,1.159c0.22,0,0.449-0.01,0.689-0.02 c3.19-0.19,5.45-1.09,8.08-1.34c3-0.33,5.93,0.26,9.37-2.01c3.13-2.11,3.88-4.57,5.75-6.891c1.3-1.71,3.01-1.97,5.521-3.7 c1.909-1.359,2.85-3.109,3.569-4.609c0.72-1.521,1.271-2.79,2.3-3.811c0.96-1.02,2.891-1.399,5.08-1.38 c0.38,0,0.771,0.01,1.16,0.021c0.45,0.02,0.891-0.16,1.19-0.511c0.3-0.34,0.43-0.79,0.35-1.239 c-0.01-0.051-0.01-0.091-0.01-0.141c0-0.109,0.02-0.13,0.02-0.13c0-0.01,0.011-0.02,0.091-0.06 c0.109-0.061,0.359-0.12,0.71-0.12c0,0,0.029,0,0.079,0c0.561,0.03,1.08-0.26,1.36-0.74c0.28-0.479,0.271-1.07-0.02-1.54 c-1.551-2.52-2.21-5.27-2.841-8.55c-0.47-2.39-1.47-5.47-1.46-7.65c0-0.43,0.04-0.81,0.11-1.13c-0.09-0.13,0.99-1.24,2.38-2.21 c0.681-0.53,1.391-1.08,2-1.76c0.601-0.67,1.17-1.561,1.181-2.72c-0.011-1.12-0.551-2.08-1.44-2.94 c0.56-0.91,1.14-1.84,1.76-2.58c0.9-1.08,1.71-1.59,2.44-1.58c0.22,0,0.47,0.04,0.779,0.15c0.561,0.22,0.771,0.439,1.011,0.82 c0.359,0.579,0.54,1.699,0.739,3.039c0.23,1.33,0.5,2.921,1.53,4.36c1.44,2.05,3.13,3.12,4.83,3.59 c1.69,0.48,3.271,0.53,5.09,0.92c1.92,0.351,4.07,2.19,7.11,2.69c0.39,0.06,0.76,0.09,1.12,0.09c1.55,0,2.8-0.53,3.81-1.12 c0.271-0.16,0.53-0.319,0.78-0.479c0.62,0.8,1.34,1.56,2.17,2.239c1.17,1.021,2.6,1.721,3.82,1.83 c1.149,0.13,1.489,0.051,2.569,0.271c0.98,0.2,1.641,0.5,2.69,0.95c1.02,0.439,2.44,0.979,4.25,1.13 c0.61,0.05,1.17,0.06,1.71,0.06c0.96,0,1.81-0.04,2.56-0.04c0.881,0,1.601,0.061,2.23,0.221c1.33,0.329,2.37,0.81,3.74,1.35 c0.14,0.06,0.29,0.11,0.439,0.17c-0.319,0.63-0.55,1.4-0.52,2.18c0,1.011,0.27,1.931,0.68,2.87c0.43,0.97,0.811,1.7,1.01,2.2 c0.21,0.52,0.25,0.74,0.261,1.02c0,0.271-0.061,0.69-0.391,1.49c-0.38,0.891-1.399,3.391-2.35,6.38 c-0.94,3.011-1.84,6.42-1.86,9.57c0.021,1.46,0.17,2.94,1,4.42c0.79,1.5,2.681,2.69,4.51,2.73c1.4,0.08,2.66-0.82,3.061-2.141 c0.13-0.16,0.52-0.58,0.939-0.85c0.16-0.11,0.311-0.2,0.46-0.271C783.031,575.369,783.352,575.988,783.621,576.639z", + "Tomashpil": "M373.021,681.969c0,0.71,0.1,1.17,0.09,1.63c0,0.16-0.01,0.33-0.03,0.54c-0.12,0.88-0.22,1.19-0.38,1.57 s-0.46,0.92-0.8,1.84c-1.13,3.09-1.03,5.74-1.47,8.52c-0.46,3.261-0.92,7.95-2.12,10.25c-0.63,1.49-3.57,2.9-5.56,4.98 c-0.35,0.39-0.47,0.93-0.32,1.43c0.52,1.561,1.33,2.8,1.71,3.75c-2.39,1.601-3.11,4.04-3.17,6.021 c-0.12,2.3,0.05,4.26-0.79,5.739c-0.59,0.95-0.68,0.881-1.28,1.061c-0.6,0.14-1.78,0.12-3.22,0.68c-1.76,0.7-3.2,1.8-4.34,2.98 c-2.46-1.99-5.98-2.551-8.5-2.92c0.23-0.46,0.54-0.94,0.91-1.48c0.71-1.07,1.66-2.439,1.66-4.35c0-0.101,0-0.2,0-0.311 c-0.12-2.149-1.3-3.72-2.53-4.81c-1.24-1.101-2.59-1.891-3.5-2.67c-0.6-0.49-0.93-0.83-1.04-0.971 c0.03-0.21,0.14-0.739,0.14-1.479c0-0.021,0-0.05,0-0.08c0.06-0.13,0.14-0.31,0.22-0.49c0.15-0.37,0.33-0.689,0.39-1.33v-0.149 v-0.011c0-0.02,0-0.05-0.01-0.1c-0.09-1.04-0.58-1.479-0.79-1.83c-0.12-0.16-0.2-0.29-0.24-0.359 c0.14-1.58,1.9-3.051,3.87-3.591c0.62-0.17,1.06-0.72,1.1-1.359c0.05-0.96,0.11-2,0.11-3.07c0-1.77-0.15-3.62-0.93-5.32 c-0.77-1.699-2.32-3.159-4.56-3.75c-0.57-0.159-1.15-0.21-1.75-0.21c-4.27,0.04-10.59,2.681-13.31,3.66 c-2.15,0.891-3.32,1.9-3.8,1.771c-0.12,0-0.24-0.021-0.43-0.091c0,0-0.03-0.01-0.13-0.09c-0.84-0.56-2.68-2.92-3.11-3.569 c-0.43-0.61-0.78-1.04-0.98-1.301c0.13-0.25,0.37-0.68,0.69-1.26c0.59-1.1,1.5-2.27,2.36-2.91c0.59-0.439,0.77-1.25,0.43-1.899 c-0.96-1.8-2.2-3.63-2.61-5.07c-0.11-0.38-0.13-0.63-0.13-0.92c0-0.25,0.03-0.53,0.03-0.92c0.01-0.49-0.09-1.24-0.51-1.88 c-0.41-0.65-1-1.16-1.82-1.71c-1.34-0.891-2.46-1.141-3-1.391c-0.52-0.26-0.71-0.29-1.34-1.439c-0.96-1.7-0.8-3.93-2.87-6.36 c-0.27-0.3-0.66-0.479-1.06-0.5c-0.04,0-0.08,0.01-0.12,0.01c-0.19-0.22-0.4-0.43-0.6-0.63c-1.44-1.35-3.31-2.41-4.77-3.46 c-0.73-0.51-1.34-1.02-1.7-1.439c-0.37-0.431-0.44-0.7-0.44-0.82c0.01-0.11,0.02-0.29,0.36-0.7c0.34-0.399,1-0.95,2.04-1.56 c0.91-0.54,2.83-1.19,4.56-2.11c0.88-0.47,1.73-1.01,2.44-1.78c0.71-0.75,1.25-1.819,1.25-3.029c0-0.681-0.17-1.37-0.46-2.05 c-0.91-1.931-2.73-2.721-4.36-3.521c-1.65-0.76-3.31-1.47-3.9-2.07c-1.47-1.449-1.49-1.8-1.54-2.72 c-0.02-0.81,0.26-2.14,0.34-4.11c0.01-0.199,0.01-0.39,0.01-0.56c0.01-4.22-1.87-6.89-3.82-9.95c-1.01-1.68-2.25-2.5-3.3-2.71 c-1-0.24-1.32-0.17-2.34-0.84c-0.22-0.15-0.36-0.27-0.43-0.33c-0.02-0.22,0.01-0.8-0.09-1.59c2.18-0.01,3.58-0.09,4.95-0.61 c1.41-0.55,2.43-1.42,4.03-2.72c1.05-0.86,2.78-1.79,4.43-2.84c1.64-1.061,3.3-2.2,4.11-4.09c0.21-0.53,0.23-0.971,0.23-1.36 c0-0.74-0.11-1.39-0.1-1.83c0-0.1,0-0.18,0.01-0.25c0.05,0.021,0.12,0.05,0.22,0.101c0.7,0.25,1.65,1.52,3.64,1.649 c0.2,0,0.38-0.02,0.54-0.05c2.4-0.5,3.69-2.13,4.8-3.23c1.17-1.149,1.96-1.819,3.43-1.84c0.12,0,0.23,0.01,0.32,0.021 c0.79,0.069,1.5-0.48,1.63-1.261c0.09-0.569,0.12-1.13,0.12-1.67c-0.02-2.449-0.65-4.659-0.63-6.51c0-0.58,0.05-1.13,0.19-1.649 c0.19-0.761,0.4-1.091,0.54-1.24c0.18-0.19,0.44-0.3,1.29-0.47c0.8-0.16,2-0.37,3.31-1.101c2.77-1.67,4.51-5.06,6.57-6.38 c2.43-1.67,5.05-3.46,7.56-4.85c2.88-1.601,5.3-3.21,8.11-3.5c0.33-0.04,0.63-0.051,0.93-0.051c2.53-0.029,4.49,1.261,7.73,2.33 c2.35,0.7,4.82,0.65,6.68,0.99c0.23,0.32,0.47,0.63,0.72,0.92c0.3,0.33,0.7,0.49,1.11,0.49c0.27,0,0.52-0.09,0.76-0.23 c0.71,0.681,1.21,1.67,1.74,2.87c0.73,1.58,1.37,3.561,3.34,4.78c0.42,0.26,0.95,0.29,1.4,0.07c0.46-0.21,0.77-0.63,0.85-1.13 c0.06-0.431,0.3-0.83,0.8-1.45c0.3-0.391,0.7-0.84,1.06-1.431c0.45,0.15,0.98,0.431,1.65,0.82c0.98,0.57,2.28,1.33,4.03,1.37 c0.1,0,0.17,0,0.24,0c3.39-0.04,6.19-1.38,8.67-1.34l0.04,0.01c2.9,0,4.66,0.021,6.07,1.34c0.58,0.521,1.12,1.54,1.67,2.74 c0.57,1.18,1.14,2.54,2.3,3.64c1.04,0.98,2.17,1.45,3.07,1.931c0.91,0.479,1.58,0.91,2.09,1.64c1.09,1.46,1.9,4.64,3.57,7.12 c1.47,2.13,2.86,3.89,3.69,5.979c0.27,0.66,0.43,1.71,0.69,2.851c0.28,1.12,0.71,2.46,1.96,3.42c0.39,0.29,0.9,0.38,1.36,0.229 c0.46-0.149,0.83-0.51,0.97-0.979c0.62-1.74,1.05-1.72,1.32-1.75c0.46-0.08,1.85,0.75,2.89,2.16 c0.82,1.05,1.471,2.37,1.74,3.399c-2.18,1.561-4.36,4.12-6,5.601c-0.94,0.859-2.54,2.18-3.94,3.689 c-1.38,1.53-2.72,3.221-2.83,5.391c-0.01,0.59,0.32,1.13,0.85,1.39c2.16,1.05,4.1,1.24,5.85,1.23c0.88,0,1.72-0.04,2.58-0.04 c0.39,0,0.78,0.01,1.18,0.029c0.279,0.011,0.55,0.021,0.81,0.021c3.08-0.01,5.3-0.891,7.561-1.47 c0.52,0.46,1.149,0.76,1.76,0.939c0.99,0.3,2.04,0.37,3.149,0.37c2.66,0,5.71-0.47,7.87-0.47c0.4,0,0.761,0.02,1.07,0.05 c0,0.76-0.12,1.6-0.29,2.3c-0.19,0.75,0.23,1.51,0.95,1.771c1.62,0.579,2.649,0.68,3.17,0.859c0.5,0.17,0.84,0.311,1.91,1.45 c2.1,2.37,2.319,3.18,2.55,6.41c0.01,0.1,0.01,0.2,0.02,0.3c-0.239,0.28-0.38,0.65-0.35,1.05c0.021,0.391,0.2,0.73,0.46,0.98 c0.1,1.74,0.23,3.45,0.57,5.2c0.13,0.659,0.24,1.39,0.24,2.01c0,0.649-0.141,1.109-0.28,1.28c-0.13,0.14-0.23,0.3-1.05,0.329 c-0.101,0-0.2,0-0.301-0.01c-0.81-0.05-1.51,0.55-1.59,1.36c-0.029,0.31-0.04,0.609-0.04,0.92c0.04,3.41,1.49,6.45,1.721,9 c0.05,0.45,0.069,0.81,0.069,1.1c0,0.271-0.02,0.46-0.04,0.57c-0.479,0.09-2.3,0.12-4.31,1.17c-2.641,1.41-4.24,2.8-6.72,3.561 c-1.601,0.5-2.921,0.689-4.32,1.159c-1.4,0.45-2.83,1.271-4.12,2.801c-2,2.329-4.29,3.34-7.09,5.649c-1.18,1-1.99,2.22-2.8,3.08 c-0.83,0.89-1.44,1.28-2.19,1.28c-0.07,0-0.16,0-0.25-0.01c-0.51-0.021-1.72-0.641-2.77-1.49c-1.07-0.84-2.08-1.891-2.58-2.53 c-1.14-1.38-2.22-4.12-4.76-5.52c-1.02-0.5-1.91-0.431-2.74-0.46c-0.16,0-0.34,0-0.51,0c-0.41,0-0.77,0-1.02-0.04 c-0.52-2.591-2.47-4.851-4.74-6.69c-2.63-2.07-5.77-3.58-8.64-3.61c-0.79,0-1.57,0.12-2.31,0.44c-2.66,1.26-4.27,3.91-5.84,4.64 c-1.02,0.561-2.52,0.88-4.09,1.471c-1.54,0.58-3.29,1.6-4.18,3.659C373.151,680.528,373.011,681.318,373.021,681.969z", + "Trostianets": "M556.451,760.349c-0.81,0.43-1.6,0.74-1.76,0.73c-0.04,0-0.101,0-0.13,0c-0.4,0.01-0.98-0.19-1.74-0.521 c-0.75-0.31-1.68-0.75-2.9-0.76c-2.01-0.01-3.68,1.08-4.699,2.5c-0.4,0.56-0.73,1.17-0.98,1.82 c-0.04-0.061-0.08-0.131-0.12-0.19c-0.79-1.14-1.689-2.46-3.39-3.021c-0.141-0.039-0.29-0.05-0.44-0.05 c-0.06-0.149-0.12-0.3-0.189-0.46c-0.4-0.97-0.95-2.22-2.16-3.25c-1.18-1.04-2.561-1.2-3.41-1.21c-0.9-0.02-1.3-0.01-1.89-0.33 c-1.15-0.62-1.851-2.149-1.851-3.79c-0.01-1.71,0.79-3.14,1.69-3.46c0.649-0.3,1.31-0.149,2.5-0.319 c0.59-0.08,1.45-0.5,1.88-1.271c0.43-0.729,0.53-1.52,0.55-2.5v-0.02c0-0.011,0-0.03,0-0.061c0-0.01,0-0.03-0.01-0.05 c-0.04-1.44-0.71-2.66-1.47-3.7c-0.811-1.06-1.75-1.93-2.71-2.47c-1.71-0.96-3.601-1.17-5.421-1.18 c-2.09,0.01-4.159,0.279-5.97,0.31c-0.569-2.13-1.56-3.74-1.78-5.38c-0.31-1.93-0.31-3.91-0.31-6.09l-0.01-0.03v-0.02 c0-0.04,0-0.08,0-0.11c0-4.061,2.13-6.51,3.05-11.21c0.11-0.62,0.41-1.7,0.42-2.88c-0.01-0.51-0.06-1.061-0.3-1.65 c-0.521-1.22-1.55-1.8-2.15-2.08c-0.63-0.3-0.83-0.46-0.83-0.5c-0.14-0.21-0.3-0.83-0.29-1.529 c-0.04-1.11,0.44-2.421,0.681-2.601c0.439-0.49,1.489-0.8,3.04-0.79c1.729,0,3.83,0.33,5.79,0.34c0.56,0,1.12-0.029,1.68-0.12 c0.7-0.109,1.15-0.17,1.56-0.26c0.311-0.069,0.641-0.149,1-0.37c0.591-0.38,0.811-0.87,0.96-1.14c0.16-0.3,0.33-0.62,0.71-1.17 c1.061-1.561,2.44-3.65,3.181-5.64c0.34-0.921,0.52-1.851,0.52-2.78c0-2.75-1.55-5.19-4.01-7.061 c-2.08-1.479-4.3-1.39-5.04-1.97c-0.85-0.51-1.15-0.9-1.83-1.47c-0.68-0.601-1.78-1.07-3.189-1.13 c-1.181-0.08-2.4-0.101-3.641-0.101c-2.62,0-5.319,0.11-7.819,0.11c-0.78,0.01-1.57,0.12-2.25,0.12 c-0.391,0-0.721-0.04-0.9-0.101c-0.12-0.04-0.16-0.069-0.18-0.08c0.01-0.1,0.109-0.409,0.3-0.779 c0.189-0.471,0.54-0.91,0.59-1.891c0-0.06,0-0.14-0.01-0.239c-0.181-1.37-0.87-2.37-1.471-3.24 c-0.619-0.851-1.199-1.61-1.439-2.16c-0.62-1.41-1.07-2.84-1.63-4.61c-0.65-2.06-1.96-3.35-3.03-4.399 c-1.1-1.061-1.939-1.88-2.32-2.96c-0.43-1.16-0.239-2.04-0.35-3.471c-0.07-1.47-1.05-3.189-3.21-4.35 c-0.7-0.41-1.61-0.18-2.03,0.521c-0.05,0.09-0.149,0.18-0.45,0.51c-0.149,0.16-0.319,0.399-0.47,0.689 c-1.109,0.41-1.95,1.091-2.63,1.601c-0.85,0.68-1.47,0.97-1.6,0.93c-0.08-0.01-0.15,0-0.391-0.16 c-0.17-0.02-0.92-1.26-1.479-2.67c-0.63-1.42-1.2-2.99-2.28-4.17c-0.55-0.59-1.47-0.63-2.08-0.1 c-1.53,1.319-2.64,1.62-3.899,1.64c-1.771,0.05-3.971-0.91-6.79-1.38c1.13-2.34,1.909-4.9,1.92-7.94c0-0.12,0-0.22,0-0.33 c0-0.42-0.011-0.79-0.011-1.119c0-1.03,0.07-1.58,0.261-1.971c0.189-0.399,0.6-0.899,1.75-1.64c2.979-1.99,7.12-1.62,11.54-2.19 c0.279-0.04,0.529-0.05,0.77-0.06c1.061,0,1.95,0.32,3.05,0.74c1.08,0.41,2.38,0.939,4.021,0.939c0.12,0,0.229,0,0.34,0 c1.65-0.06,2.8-0.819,3.49-1.38c0.72-0.56,1.04-0.85,1.819-1.01c0.74-0.15,1.53-0.21,2.351-0.21 c3.529-0.021,7.7,1.21,11.79,1.22c0.31,0,0.63,0,0.95-0.02c0.81-0.04,1.439-0.721,1.42-1.53c0-0.17,0-0.34,0-0.49 c-0.021-1.439,0.189-2.29,0.35-2.47c0.12-0.15,0.15-0.29,1.18-0.32c0.34,0,0.78,0.03,1.301,0.101 c3.029,0.399,5.689,1.069,9.029,1.08c0.34,0,0.69-0.011,1.04-0.021c0.72-0.03,1.311-0.56,1.431-1.27 c0.06-0.41,0.09-0.811,0.09-1.21c-0.021-2.19-0.88-3.971-1.67-5.521c0.59-0.08,1.189-0.12,1.79-0.12c2.1,0,4.29,0.44,6.21,1.08 c4.05,1.35,8.02,2.07,12.31,2.07c0.59,0,1.19-0.021,1.79-0.04c0.55-0.021,1.03-0.34,1.28-0.83c0.359-0.71,0.54-1.45,0.54-2.15 c-0.03-1.76-0.98-2.939-1.62-3.87c-0.7-0.949-1.09-1.64-1.061-2.069c0-0.08,0.011-0.15,0.03-0.21 c0.061-0.28,0.13-0.38,0.82-0.801c0.609-0.369,1.74-0.85,2.42-2.189c0.28-0.59,0.399-1.22,0.399-1.79 c-0.079-2.13-1.279-3.6-1.31-4.23c-0.12-0.649-0.18-1.319-0.18-1.989c-0.03-4.38,2.51-9.49,3.83-14.351 c0.96-3.729,3.529-8.39,4.25-12.979c1.33,0.54,3.02,1.38,4.89,1.529c0.3,0.011,0.57,0.011,0.82,0.011 c0.71,0,1.29-0.04,1.92-0.28c0.46-0.17,0.939-0.55,1.2-1c0.68-1.37,0.369-2.13,0.63-3.44c0.02-0.369,0.67-1.88,1.319-3.25 c0.33-0.699,0.66-1.409,0.91-2.079c0.26-0.681,0.48-1.24,0.5-2c0-0.141-0.01-0.271-0.03-0.421c0,0-0.01-0.01-0.01-0.02 c4.36,0.96,8.53,4.3,13.96,5.11c2.61,0.39,3.09,0.84,3.73,1.6c0.649,0.81,1.31,2.48,3.06,4.57c1.08,1.25,2.41,1.8,3.47,2.319 c1.08,0.521,1.86,0.971,2.271,1.61c0.37,0.54,0.62,1.23,0.61,1.84c0,0.4-0.091,0.771-0.311,1.15 c-0.229,0.43-0.79,0.68-1.92,0.96c-1.02,0.29-2.58,0.51-3.65,2.05c-0.449,0.65-0.72,1.4-0.71,2.15 c0.051,1.729,1.15,2.699,1.94,3.46c0.84,0.77,1.56,1.46,1.76,1.939c0.92,1.99,2.28,5.62,2.471,7.67 c0.02,0.261,0.039,0.5,0.039,0.721c-0.029,1.43-0.399,1.97-1.1,2.869c-0.689,0.86-1.83,1.921-2.53,3.73 c-0.189,0.479-0.26,0.979-0.26,1.44c0.021,1.59,0.74,2.92,1.44,4.199c0.72,1.28,1.5,2.511,1.91,3.49 c1.909,4.58,4.6,9.5,6.01,13.82c0.109,0.34,0.33,0.63,0.63,0.81c0.35,0.21,0.61,0.3,0.95,0.44c0.33,0.13,0.64,0.24,0.85,0.31 c0.53,0.17,1.11,0.04,1.51-0.359c0.471-0.471,1.08-0.99,1.641-1.7c0.989,0.27,1.949,0.41,2.89,0.41c1.79,0,3.43-0.511,5.12-1.36 c0.27,0.5,0.35,0.99,0.46,1.72c0.14,1.07,0.22,2.67,1.36,4.25c1,1.41,2.59,2.03,4.02,2.03c0.03,0,0.061,0,0.09-0.01 c1.391-0.011,2.721-0.431,3.91-1.021c0.37,1.87,0.98,3.42,1.42,5.12c0.61,2.22,0.101,4.88,0.63,7.9 c0.601,2.979,2.41,5.529,3.12,7.8c0.23,0.71,0.94,1.14,1.68,1.01c0.16-0.02,0.301-0.04,0.44-0.04c0.74,0.01,1.43,0.32,2.19,1.03 c1.939,1.76,3.39,6.03,3.779,8.84c-0.27-0.11-0.55-0.22-0.83-0.36c-1.13-0.51-2.56-1.949-4.08-3.409 c-1.539-1.44-3.21-2.99-5.52-3.391c-0.28-0.05-0.56-0.069-0.83-0.069c-1.439-0.04-2.72,0.81-3.31,1.84 c-0.931,1.51-1.091,3.26-1.37,4.88c-0.23,1.62-0.58,3.08-1.05,3.63c-0.271,0.34-0.49,0.47-1,0.72 c-0.49,0.23-1.271,0.53-2.021,1.25c-1.6,1.53-1.9,3.101-2.53,4.811c-0.739,2.04-1.52,3.79-1.68,6.34 c-0.01,0.08-0.01,0.18-0.01,0.3c0.01,1.22,0.33,3.13,0.33,4.39c0,0.091-0.011,0.181-0.011,0.261c-0.979-0.061-2.14-0.2-3.3-0.2 c-0.62,0-1.26,0.04-1.91,0.21c-3.42,0.99-5.47,4.14-7.409,5.27c-1.73,1.141-3.96,2.03-5.771,3.92 c-1.149,1.171-1.67,2.421-1.649,3.511c0.02,0.91,0.199,1.449,0.229,1.91c-3.729,0.149-6.41,2.77-6.41,5.829 c-0.03,2.641,2.101,5.11,5.73,5.91c1.62,0.38,3.31,0.49,5.01,0.49c3.35,0,6.75-0.45,9.68-0.45c0.48,2.48,1.561,5.37,4.46,6.57 c0.601,0.22,1.19,0.28,1.74,0.28c1.57-0.021,3-0.46,3.92-0.44c0.33,0,0.561,0.05,0.71,0.11v0.01c0.11,0.07,0.42,0.37,0.72,0.69 c0.311,0.26,0.45,0.539,0.98,0.84c0.01,0,0.01,0,0.02,0.01c0.07,0.05,0.101,0.07,0.131,0.08c0.08,0.04,0.17,0.08,0.26,0.1 c0.01,0.01,0.01,0.01,0.01,0.01c0.021,0.011,0.04,0.011,0.061,0.021c0.17,0.05,0.46,0.14,0.8,0.229 c0.39,0.091,0.7,0.19,1.149,0.23c0.04,0.03,0.08,0.05,0.11,0.07c-0.05,0.22-0.17,0.63-0.4,1.199 c-1.319,3.2-3.97,5.16-7.239,6.301c-1.67,0.6-3.811,0.489-6.07,0.62c-1.57,0.09-3.33,0.39-4.86,1.39 c-1.239-0.34-2.64-0.311-4.41-0.33c-0.409,0-0.85,0-1.31,0c-1.08,0-2.2,0.1-3.2,0.1c-1.109,0.011-2.02-0.149-2.47-0.449 c-0.33-0.181-0.75-0.78-1.26-1.62c-0.521-0.811-1.2-1.92-2.57-2.54c-0.58-0.26-1.27-0.12-1.71,0.34 c-1.7,1.83-2.18,3.53-2.6,4.189c-0.221,0.341-0.301,0.431-0.601,0.601c-0.31,0.149-0.939,0.33-2.06,0.38 c-1.09,0.05-2.19,0.08-3.3,0.08c-2.2,0-4.44-0.08-6.69-0.08c-0.25,0-0.5,0-0.75,0c-1.47,0.01-2.87-0.01-4.271,0.63 c-1.42,0.63-2.479,2.021-3.01,3.92c-0.2,0.65-0.279,1.311-0.279,1.94c0.079,3.17,1.71,5.92,1.619,7.59 c0,0.27-0.029,0.5-0.09,0.71c-0.14,0.64-0.899,1.4-2.1,2.15c-1.18,0.76-2.62,1.439-3.811,2.399c-2.319,1.86-3.5,2.04-6.6,2.71 C558.211,759.429,557.301,759.929,556.451,760.349z", + "Tulchyn": "M565.881,569.799c1.181,0.01,2.44-0.46,3.37-1.4c0.59-0.58,1.08-1.31,1.49-2.189 c0.07,0.05,0.14,0.09,0.22,0.13c0.07,0.05,0.15,0.1,0.23,0.149c0.33,0.23,0.63,0.471,0.81,0.66c0.04,0.04,0.07,0.07,0.101,0.101 c-0.011,0.029-0.021,0.06-0.03,0.1c-0.17,0.63-0.75,1.89-1.32,3.12c-0.569,1.26-1.14,2.4-1.33,3.55 c-0.109,0.71-0.14,1.3-0.17,1.72c-0.02,0.17-0.029,0.301-0.04,0.41c-0.13,0.01-0.319,0.03-0.569,0.021 c-0.2,0-0.431,0-0.681-0.011c-1.39,0.011-3.649-1.529-6.14-1.949c-0.42-0.061-0.85,0.06-1.18,0.34 c-0.32,0.28-0.511,0.68-0.521,1.109c-0.04,4-3.03,9.4-4.34,14.181c-1.14,4.43-3.9,9.689-3.93,15.12 c0,0.85,0.069,1.699,0.239,2.56c0.431,1.72,1.33,2.95,1.25,3.66c0,0.18-0.029,0.32-0.109,0.5c-0.061,0.18-0.42,0.45-1.22,0.89 c-0.711,0.4-1.94,1.2-2.25,2.78c-0.061,0.26-0.091,0.55-0.091,0.82c0.03,1.739,0.98,2.89,1.62,3.81 c0.69,0.95,1.08,1.641,1.061,2.13c0,0.011,0,0.011,0,0.011c-0.21,0.01-0.41,0.01-0.61,0.01c-3.96,0-7.56-0.66-11.37-1.91 c-2.17-0.72-4.64-1.24-7.149-1.24c-1.471,0-2.96,0.18-4.4,0.62c-0.41,0.12-0.75,0.42-0.93,0.81 c-0.181,0.391-0.181,0.841-0.011,1.23c0.96,2.08,2.03,3.83,2.2,5.47c-2.71-0.05-5.109-0.62-8.16-1.04 c-0.62-0.08-1.18-0.13-1.71-0.13c-1.42-0.04-2.899,0.431-3.689,1.67c-0.59,0.95-0.76,1.971-0.82,3.16 c-3.34-0.11-7.28-1.2-11.18-1.22c-0.98,0-1.96,0.08-2.931,0.27c-1.529,0.28-2.489,1.12-3.09,1.59 c-0.649,0.48-0.87,0.671-1.75,0.74c-0.069,0-0.149,0-0.229,0c-0.98,0-1.84-0.31-2.95-0.74c-1.09-0.409-2.43-0.93-4.12-0.939 c-0.38,0-0.78,0.03-1.189,0.09c-3.86,0.59-8.551-0.02-12.75,2.64c-1.36,0.87-2.301,1.761-2.82,2.87 c-0.53,1.11-0.55,2.181-0.55,3.261c0,0.369,0,0.729,0,1.119c0,0.11,0,0.21,0,0.32c-0.021,2.97-0.851,5.28-2.15,7.69 c-2.64-0.03-5.25-0.29-8.06-0.32c-2.71,0-5.66-1.06-8.87-1.3c-0.11-3.351-0.88-5.69-3.33-8.24c-1.19-1.3-2.19-1.97-3.23-2.28 c-0.66-0.189-1.18-0.27-1.83-0.439c0.07-0.521,0.11-1.07,0.11-1.62c0-0.49-0.03-0.99-0.12-1.48c-0.09-0.54-0.46-0.97-0.96-1.159 c-0.939-0.33-1.93-0.4-2.99-0.4c-2.52,0-5.55,0.47-7.87,0.46c-0.949,0.01-1.77-0.08-2.29-0.24 c-0.539-0.17-0.659-0.33-0.699-0.42c-0.311-0.62-1-0.95-1.67-0.8c-3.011,0.689-5.04,1.63-7.811,1.62c-0.22,0-0.43,0-0.66-0.021 c-0.46-0.02-0.91-0.029-1.33-0.029c-0.95,0-1.8,0.04-2.58,0.04c-1.23-0.011-2.27-0.08-3.45-0.48c0.33-0.729,0.96-1.63,1.78-2.49 c1.23-1.33,2.73-2.58,3.77-3.52c2-1.87,4.689-4.891,6.34-5.78c0.51-0.29,0.8-0.83,0.76-1.41c-0.149-2-1.149-4.08-2.5-5.85 c-1.37-1.71-3.02-3.25-5.26-3.33c-1.05-0.021-1.99,0.439-2.73,1.21c-0.21-0.89-0.35-1.99-0.79-3.1 c-1.05-2.591-2.62-4.54-4-6.561c-1.29-1.81-2.05-4.899-3.59-7.16c-0.93-1.31-2.14-2.029-3.15-2.55 c-1.03-0.53-1.85-0.93-2.41-1.46c-0.55-0.5-1.08-1.53-1.63-2.74c-0.57-1.189-1.17-2.56-2.36-3.67 c-2.46-2.24-5.34-2.109-8.02-2.13c-0.07-0.01-0.11-0.01-0.12-0.01c-3.39,0.05-6.19,1.38-8.67,1.34c-0.07,0-0.13,0-0.18,0 c-0.86-0.02-1.62-0.4-2.6-0.97c-0.95-0.53-2.12-1.3-3.77-1.32c-0.15,0-0.27,0.01-0.38,0.021c-0.59,0.039-1.1,0.43-1.3,0.989 c-0.16,0.48-0.55,0.98-1.1,1.65c-0.11,0.14-0.22,0.28-0.34,0.439c-0.31-0.56-0.62-1.26-0.95-2.05c-0.74-1.66-1.7-3.76-3.99-4.95 c-0.4-0.199-0.82-0.359-1.24-0.489c-1.32-2.261-2.26-5.58-2.22-8c-0.01-0.49,0.03-0.931,0.09-1.301c0.19-1.319,1-2.84,1.03-4.92 c0-0.399-0.04-0.8-0.11-1.199c-0.12-0.62-0.2-1.021-0.32-1.41c-0.12-0.58-0.72-1.3-1.07-1.48c-0.32-0.229-0.52-0.34-1.06-0.84 c-3.42-3.15-8.71-8.59-8.58-13c0-0.86,0.16-1.689,0.56-2.54c0.78,0.01,1.58,0.4,2.62,0.98c1.04,0.56,2.32,1.33,4.05,1.35 c0.14,0,0.25-0.01,0.32-0.01c0.76-0.03,1.38-0.61,1.45-1.37c0.01-0.14,0.01-0.26,0.01-0.36c-0.02-1.38-0.57-2.5-0.99-3.55 c-0.45-0.979-0.77-1.91-0.76-2.189c0.12-0.061,0.32-0.11,0.62-0.11c0.74-0.01,1.99,0.34,3.31,0.76 c1.33,0.41,2.74,0.88,4.22,0.89c0.35,0,0.71-0.029,1.06-0.1c0.45-0.09,0.82-0.37,1.03-0.77c0.33-0.62,0.51-1.28,0.51-1.94 c-0.01-1.34-0.73-2.36-1.48-3.09c-1.15-1.11-2.57-1.9-3.62-2.72c-1.1-0.82-1.54-1.48-1.5-1.881c0-0.159,0.04-0.369,0.2-0.68 c0.09-0.149,0.07-0.17,0.7-0.37c0.54-0.17,1.67-0.29,2.54-1.42c0.74-0.979,0.84-2.109,0.81-2.8c0-0.16,0-0.3,0-0.41 c0-0.29,0.01-0.53,0.05-0.79c0.29-2.18,0.34-4.399,0.34-6.62c0.83-0.14,1.59-0.35,2.25-0.689c2.49-1.5,3.24-4.221,4.14-6.5 c0.86-2.36,1.79-4.181,3.03-4.62c0.34-0.15,0.53-0.17,0.67-0.17c0.19,0,0.39,0.06,0.88,0.33c0.49,0.25,1.2,0.67,2.18,0.92 c1.01,0.25,2.07,0.38,3.16,0.38c1.17,0,2.38-0.15,3.59-0.46c2.45-0.66,4.08-1.22,6.02-1.22c0.77,0,1.61,0.09,2.6,0.31 c2.96,0.63,5.06,1.58,8.45,1.59c0.28,0,0.58-0.01,0.9-0.02c0.43-0.021,0.83-0.23,1.1-0.57s0.38-0.78,0.3-1.2 c-0.25-1.399-0.86-2.35-1.22-2.95c-0.37-0.63-0.48-0.819-0.5-1.47c0-0.29,0.04-0.67,0.16-1.189c0.51-2.36,2.63-4.79,3.53-7.971 c0.02-0.06,0.02-0.13,0.03-0.199c0.81-1.15,1.34-1.301,1.96-1.33c0.78-0.03,2.04,0.569,3.33,1.51c1.3,0.92,2.59,2.07,3.88,2.859 c1.76,1.021,5.57,2.87,8.55,2.94c0.42-0.01,0.85-0.04,1.29-0.18c1.739-0.601,2.609-2.021,3.449-3.3 c0.37-0.61,0.721-1.23,1.03-1.771c1.82,1.72,3.74,3.45,5.3,5.12c1.34,1.51,1.46,2.21,1.5,3.64c0.01,0.761-0.08,1.7-0.14,2.87 c-0.021,0.18-0.021,0.38-0.021,0.57c0.08,6.54,5.57,10.859,9.881,14.12c3.22,2.42,3.92,3.58,6.42,7.09 c0.27,0.38,0.72,1.16,1.21,1.93c0.51,0.78,0.979,1.53,1.75,2.141c0.939,0.729,1.899,0.939,2.449,1.079 c0.58,0.16,0.721,0.19,1.08,0.53c1.92,1.891,2.71,5.45,2.82,8.37c0.08,2.521,1.07,4.53,2.61,5.88 c1.529,1.36,3.43,2.13,5.5,2.851c0.87,0.29,1.66,0.449,2.41,0.449c2.119,0.021,3.42-1.38,4.189-2.35 c0.85-1.02,1.46-1.78,2.61-2.18c1.01-0.45,2.779,0.029,5.05-0.771c1.1-0.45,1.87-1.2,2.61-1.77 c0.689-0.61,1.359-0.94,1.399-0.91c0.04,0,0.07,0,0.141,0c0.359,0.01,0.479,0.08,0.899,0.5c0.4,0.399,0.83,1.1,1.61,1.78 c0.01,0,0.029,0.02,0.1,0.13c0.24,0.279,0.47,1.16,1.53,1.92c0.479,0.28,0.87,0.319,1.18,0.319c0.58-0.02,1.021-0.13,1.22-0.17 c1.711,0.86,3.141,2.08,4.801,3.21c1.72,1.171,3.8,2.221,6.51,2.21c0.04,0,0.08,0,0.13,0c1.65-0.05,3.04-0.47,4.18-0.449 c0.261,0,0.511,0.01,0.74,0.05c1.49,0.21,2.98,1.52,5.38,2.2c0.851,0.22,1.67,0.319,2.431,0.319 c3.64-0.08,5.699-1.93,8.119-2.149c0.37-0.05,0.69-0.07,0.99-0.07c1.021,0.021,1.5,0.21,1.99,0.6 c0.01,0.221,0.05,0.44,0.16,0.65c0.21,0.43,0.6,0.7,1.03,0.79c0.229,0.37,0.479,0.78,0.75,1.271 c0.659,1.1,0.989,2.96,2.479,4.569c3.75,3.78,10.68,4.771,14.521,6.42c1.34,0.521,3.689,2.57,6.069,4.5 C560.521,567.759,562.991,569.719,565.881,569.799z", + "Tyvriv": "M322.991,500.349c-0.71,0.53-1.26,0.78-1.37,0.74c-0.01,0-0.03,0-0.04,0 c-1.08-0.061-1.59-0.66-2.16-2.12c-0.51-1.42-0.66-3.34-0.74-4.72c-0.04-0.67-0.52-1.23-1.17-1.37 c-0.35-0.08-0.7-0.12-1.04-0.12c-2.06,0.08-3.2,1.05-4.08,1.1c-0.4,0.07-0.75,0.28-0.99,0.61c-0.24,0.34-0.33,0.74-0.26,1.14 c0.02,0.11,0.03,0.221,0.03,0.351c0.02,0.739-0.46,1.819-1.26,2.67c-0.79,0.859-1.84,1.42-2.56,1.46 c-0.15,0.02-0.3,0.02-0.46,0.02c-2.54,0.03-4.36-1.989-5.75-4.45c-1.81-3.21-3.94-5.479-5.54-7.689 c-1.6-2.24-2.7-4.311-2.87-7.46c-0.03-0.71-0.05-1.42-0.05-2.12c0-1.17,0.04-2.35,0.04-3.51c0.01-3.48-0.31-7.12-2.98-10.44 c-1.71-2-3.52-2.609-4.37-3.93c-0.73-0.98-1.09-2.3-1.56-3.79c0.33-0.08,0.64-0.25,0.86-0.54c4.52-5.95,6.97-14.23,7.06-21.54 c0.04-5.34,1.65-9.57,1.67-15.19c0-0.03,0-0.08,0-0.15v-0.04c0.01-2.35,1.17-3.78,2.8-5.67c1.57-1.82,3.59-4.04,3.86-7.58 c0.05-0.55,0.06-1.09,0.06-1.62c0-2.62-0.39-5.08-0.39-7.42c-0.01-2.07,0.66-3.69,1-5.83c0.19-1.28,0.32-2.91,0.32-4.6 c-0.01-2.43-0.22-4.93-1.09-6.85c-0.62-1.23-1.6-1.98-2.36-2.8c-0.79-0.8-1.18-1.53-1.13-1.71c0-0.06,0.01-0.11,0.06-0.21 c0.09-0.07,0.66-0.27,1.37-0.35c0.78-0.12,1.63-0.13,2.57-0.5c1.61-0.67,3.21-1.84,4.51-3.28c1.29-1.45,2.32-3.17,2.42-5.14 c0-0.11,0.01-0.21,0.01-0.34c0.02-0.91-0.18-1.7-0.49-2.41c0.02-0.05,0.05-0.1,0.07-0.15c0.41-1.3,1.33-2.24,2.49-3.18 c1.16-0.94,2.56-1.88,3.91-3.18c1.86-1.91,2.42-4.09,3.02-6.04c0.46-1.54,0.92-2.53,1.25-3.01c0.1-0.14,0.17-0.23,0.23-0.29 c0.11,0.07,0.28,0.2,0.49,0.43c1.1,1.08,2.56,3.65,4.45,5.55c0.45,0.44,1.12,0.56,1.69,0.29c2.65-1.23,5.12-3.42,7.13-5.2 c0.77-0.7,1.51-1.73,2.31-2.65c0.39-0.46,0.78-0.87,1.08-1.13c0.15-0.12,0.29-0.21,0.36-0.26c0.03-0.01,0.04-0.02,0.05-0.02 c0.04-0.01,0.07-0.01,0.1-0.01c0.42-0.01,1.08,0.31,1.86,1.23c1.17,1.35,2.33,3.75,3.29,6.09c0.96,2.36,1.73,4.62,2.43,6.03 c1.04,2.23,2.49,3.38,3.94,3.81c1.4,0.44,2.49,0.5,4.15,1.37c1.42,0.73,1.99,1.2,2.25,1.61c0.27,0.39,0.46,1.07,0.61,2.54 c0.25,2.26-0.21,4.19,1.44,6.96c1.5,2.49,3.93,4.95,5.51,6.85c0.37,0.44,0.96,0.63,1.52,0.48c0.56-0.14,0.99-0.59,1.1-1.16 c0.28-1.29,0.86-1.89,1.82-2.4c0.96-0.49,2.33-0.7,3.68-0.7c2.07-0.02,3.81-0.13,5.47-0.74c1.66-0.61,3.09-1.73,4.45-3.42 c1.52-1.9,2.97-4.4,4.61-6.36c1.67-1.99,3.36-3.24,5.24-3.22c0.54,0,1.14,0.09,1.81,0.33c2.76,0.96,4.13,3.75,4.71,7.16 c0.17,1,0.04,1.55,0.16,2.59c0.12,1.07,0.71,2.17,1.88,3.38c0.85,0.88,1.83,1.48,2.64,2.1c0.82,0.6,1.39,1.19,1.57,1.66 c0.33,0.8,0.43,1.81,0.43,3.01c0,0.74-0.04,1.55-0.04,2.4c0,1.39,0.09,2.92,0.67,4.47c0.15,0.37,0.32,0.74,0.49,1.08 c0.5,1.05,1.07,1.97,1.58,2.83c0.08,0.24,0.2,0.45,0.37,0.62c0.63,1.07,1.11,2.03,1.23,2.98c0.02,0.18,0.03,0.37,0.02,0.55 c0,0.03,0,0.07,0,0.1c-1.03,0.59-2.02,1.27-2.86,2.05c-1.02,0.96-1.91,2.16-1.94,3.76c0.03,2.02,1.53,3.61,3.99,4.86 c1.16,0.55,2.09,0.4,2.73,0.49c0.69,0.09,0.73,0.14,0.83,0.29c0.13,0.24,0.17,0.41,0.17,0.58c0.03,0.43-0.45,1.04-1.08,1.18 c-0.74,0.17-1.23,0.86-1.15,1.61c0,0.09,0.01,0.18,0.01,0.26c-0.01,0.61-0.23,1.09-0.74,1.71c-0.77,0.92-2.19,1.85-3.53,2.93 c-1.29,1.06-2.75,2.48-2.78,4.69c0,0.71,0.16,1.43,0.48,2.15c1.03,2.14,3.16,2.99,4.98,3.96c0.92,0.46,1.79,0.9,2.39,1.29 c0.31,0.2,0.54,0.38,0.68,0.52c0.09,0.091,0.14,0.15,0.16,0.19c-0.07,0.33-0.77,1.68-1.67,2.79c-1,1.37-2.05,2.52-2.59,3.63 c-1.21,2.97-0.54,6.05-1.32,7.51c-0.23,0.58-1.05,1.33-2.15,2.19c-1.07,0.86-2.39,1.87-3.23,3.49 c-0.68,1.319-0.98,2.66-0.98,3.92c0.02,2.5,1.05,4.59,1.94,6.479c0.9,1.87,1.64,3.54,1.64,5.011 c-0.05,0.02-0.07,0.029-0.09,0.02c-0.65,0.13-1.14,0.67-1.2,1.34c-0.02,0.26-0.03,0.57-0.03,0.91c0,1.62,0.21,4.24,0.75,6.6 c0.28,1.181,0.62,2.29,1.14,3.23c0.29,0.52,0.7,1.09,1.28,1.479c-0.12,1.021-0.19,2.061-0.19,3.101 c0,1.81,0.22,3.649,0.78,5.479c0.21,0.67,0.85,1.11,1.55,1.051c0.09-0.011,0.19-0.011,0.3-0.011c0.2,0,0.42,0.011,0.67,0.03 c-0.88,1.78-2.23,3.79-2.86,6.25c-0.16,0.69-0.24,1.31-0.24,1.88c-0.02,1.351,0.53,2.37,0.93,3.021 c0.02,0.04,0.05,0.08,0.07,0.12c-2.01-0.211-3.69-0.851-6.39-1.461c-1.18-0.25-2.25-0.369-3.24-0.369 c-2.55,0.01-4.5,0.72-6.78,1.31c-0.96,0.26-1.91,0.37-2.83,0.37c-0.85,0-1.67-0.1-2.42-0.29c-0.54-0.13-0.95-0.36-1.5-0.66 c-0.54-0.29-1.3-0.68-2.3-0.68c-0.59,0-1.2,0.13-1.83,0.399c-2.81,1.24-3.76,4.021-4.67,6.33c-0.86,2.4-1.75,4.44-2.82,4.94 c-0.38,0.3-2.81,0.62-5.22,0.58c-2.81,0-5.84-0.24-7.25-0.36c-2.79-0.22-7.47-1.08-8.92-2.34c-1.24-1.01-1.45-1.87-1.77-2.94 c-0.16-0.529-0.28-1.13-0.78-1.81c-0.49-0.71-1.52-1.14-2.41-1.1c-0.79,0-1.63,0.189-2.71,0.529c-1.49,0.48-2.59,0.96-3.34,1.99 c-0.73,1.07-0.7,2.14-0.71,3.18c0,0.28,0,0.58,0,0.91c0,0.15,0,0.311,0,0.48c-0.88,0.16-1.96,0.29-2.98,0.29 c-1.71,0.029-3.05-0.46-3.28-0.95c-0.14-0.21-0.17-0.34-0.18-0.6c0-0.03-0.01-0.07-0.01-0.11c0-0.82,0.91-2.351,0.98-4.4 c0.01-0.87-0.24-1.85-0.86-2.71c-0.76-1.09-1.85-1.85-3.04-1.83C324.571,499.119,323.721,499.879,322.991,500.349z", + "Yampil": "M335.491,713.389c-0.02,0.15-0.02,0.29-0.01,0.39c0,0.07,0,0.13,0,0.19c0.01,0.59-0.12,0.79-0.15,1.58 c-0.02,0.53,0.23,1.24,0.61,1.7c0.37,0.479,0.83,0.89,1.52,1.47c1.19,0.99,2.49,1.76,3.42,2.61 c0.94,0.859,1.45,1.609,1.53,2.729c0,0.04,0,0.1,0,0.15c0.01,0.819-0.42,1.6-1.15,2.68c-0.7,1.06-1.67,2.38-1.8,4.27 c-0.06,0.771,0.49,1.45,1.25,1.57c1.79,0.3,4.46,0.59,6.57,1.36c1.05,0.38,1.92,0.87,2.46,1.41c0.53,0.56,0.79,1.08,0.81,1.949 c0,0.04-0.01,0.08-0.01,0.12c-0.54,0.16-0.95,0.601-1.05,1.16c-0.66,3.38-1.23,5.93-1.24,9.021c0,0.88,0.05,1.8,0.16,2.79 c0.06,0.58,0.08,1.18,0.08,1.81c0,1.36-0.11,2.82-0.11,4.34c0,0.34,0.01,0.681,0.02,1.04c0.12,2.2,0.81,4.53,0.79,6.26 c0,0.391-0.03,0.73-0.09,1.051c-0.08,0.529-0.76,1.54-1.56,2.56c-0.74,1.07-1.72,2.11-1.79,3.82c-0.02,0.83,0.4,1.739,1.07,2.33 c0.66,0.6,1.51,1.02,2.61,1.39c3.16,1,6.18,0.73,8.66,1.6c2.65,0.881,5.5,2.21,8.7,2.65c0.08,0.84,0.17,1.58,0.17,2.24 c0,0.439-0.04,0.87-0.14,1.29c-0.11,0.5,0.04,1.02,0.39,1.38c0.36,0.359,0.87,0.52,1.37,0.42c0.16-0.03,0.3-0.04,0.42-0.04 c0.69,0,1.26,0.39,1.95,1.5c0.17,0.27,0.27,0.479,0.34,0.62c-0.06,0.1-0.13,0.24-0.2,0.41c-0.18,0.43-0.29,0.979-0.29,1.64 c0,0.08,0.01,0.19,0.01,0.33c0.04,2.03,1.47,3.29,2.33,3.85c0.44,0.311,0.77,0.54,0.89,0.681c0.12,0.149,0.07,0.05,0.09,0.14 c0,0.021-0.01,0.08-0.03,0.18c-0.1,0.53,0.1,1.04,0.47,1.38c0,0.051,0,0.101,0,0.15c0,0.65,0.06,1.28,0.1,1.9 c-0.31,0.01-0.63,0.01-0.95,0.01c-0.6,0-1.2,0-1.8,0c-0.89,0-1.79,0-2.71,0.05c-0.79,0.05-1.41,0.7-1.42,1.5 c0,3.66-0.03,7.311-0.04,11.19c-2.88,0.33-5.68,1.199-7.9,3.3c-2.21,2.32-3.27,4.79-4.33,5.56c-0.06,0.07-0.47,0.32-1.09,0.63 c-0.62,0.33-1.45,0.7-2.34,1.601c-0.97,0.97-1.59,2.17-1.87,3.229c-0.42,1.601-0.33,2.75-0.45,3.46 c-0.12,0.73-0.18,1.03-0.78,1.75c-0.93,1.07-1.94,1.74-3.25,2.74c-1.28,0.98-2.85,2.44-3.82,4.69 c-0.74,1.64-1.13,3.22-1.12,4.75c0.03,2.569,0.92,4.359,1.63,6.46c0.84,2.27,2.49,6.71,2.44,8.93c0,0.49-0.08,0.8-0.11,0.86 c-0.05,0.26-1.16,1.529-2.65,2.34c-1.47,0.87-3.28,1.42-4.32,1.399c-0.39,0-0.65-0.06-0.77-0.109 c-0.93-0.271-2.9-2.43-4.39-5.18c-1.55-2.73-2.86-5.83-3.82-7.91c-3.01-6.42-3.25-13.681-3.24-21.641c0-0.609,0-1.22,0.01-1.819 c0-0.021,0-0.03,0-0.04c0.01-4.04-1.11-6.33-2.08-9.21c-0.08-0.19-0.21-1.07-0.39-2.11c-0.22-1.03-0.44-2.39-1.65-3.79 c-0.9-1.04-2.35-1.97-3.88-1.94c-1.01,0.011-1.62,0.28-1.91,0.36c-0.14,0.05-0.22,0.07-0.25,0.07 c-0.17-0.021-0.34-0.03-0.51-0.03c-0.49-0.729-1.29-1.229-2.21-1.32c-0.02,0-0.1-0.01-0.31-0.01 c-2.32,0.04-4.03,1.101-5.43,2.17c-1.39,1.101-2.51,2.34-3.32,3.37c-1.74,2.14-2.36,4.51-2.54,6.4 c-0.19,1.93-0.15,3.43-0.46,4.85c-0.29,1.87-2.95,5.11-5.29,6.811c-0.5,0.38-0.89,0.63-1.14,0.76c-0.26-0.28-0.7-0.8-1.22-1.51 c-2.51-3.24-4.52-6.671-4.44-9.2c0.03-1.431,0.42-2.74,1.97-4.46c1.89-2.061,4.44-3.71,7.19-5.61c2.74-1.91,5.71-4.11,7.96-7.52 c1.24-1.86,1.85-3.98,1.85-6.051c0-1.46-0.29-2.88-0.8-4.229c0.28-0.43,0.53-0.851,0.76-1.29c0.48-0.9,0.83-1.99,0.83-3.14 c-0.06-2.221-0.99-3.62-1.98-5.421c-0.69-1.149-0.86-2.109-1.91-3.609c-0.54-0.73-1.45-1.46-2.44-1.82 c-0.99-0.38-1.99-0.5-3.1-0.51c-0.16-0.01-0.35-0.01-0.55-0.01c-4.64,0.01-9.33,0.779-13.42,0.76 c-3.25-0.01-5.71,0.47-7.78,1.68c-2.03,1.2-3.36,2.61-5.48,4.38c-2.3,1.94-5.05,4.591-7.96,6.7c-2.89,2.15-5.88,3.57-8.08,3.521 c-0.85,0-1.61-0.16-2.41-0.551c-0.43-0.239-0.28-0.159-0.35-0.25c-0.07-0.1-0.24-0.609-0.44-1.55 c-0.45-1.859-0.52-3.84-1.34-6.3c-0.35-0.99-0.76-1.61-0.98-2.05c-0.11-0.21-0.18-0.37-0.21-0.45 c-0.01-0.03-0.01-0.05-0.02-0.06c0-0.04,0-0.061,0-0.07c-0.01-0.43,0.18-1.37,0.46-2.51c0.26-1.15,0.6-2.53,0.6-4.13 c0-0.19,0-0.33,0-0.431l-0.01-0.09c-0.19-2.92-0.65-6.83-3.54-9.89c-1.85-1.88-3.9-3.141-6.28-3.16 c-2.55,0.02-4.43,1.5-5.68,2.97c-1.92,2.28-3.19,5.11-4.45,7.601c-1.18,2.47-2.55,4.56-3.04,4.79 c-1.63,1.149-2.68,1.449-3.5,1.449c-0.81,0-1.81-0.31-3.35-1.39c-1.46-1-2.14-1.6-2.16-1.68c0,0-0.01,0-0.03-0.13 c-0.02-0.131-0.04-0.391-0.04-0.771c0-0.44,0.03-1.04,0.06-1.77c0.29-5.71,0.3-11.301,0.34-16.921 c-0.01-2.109,0.73-5.149,0.76-8.489c0-1.681-0.22-3.511-1-5.311c-0.82-1.819-2.16-3.1-3.68-4.29c-0.77-0.58-1.61-1.12-2.48-1.64 c0.88-1.33,1.54-2.88,2.05-4.271c0.33,0.2,0.72,0.48,1.1,0.801c1.01,0.699,1.91,1.71,3.64,1.81c1.15,0.05,2.24-0.87,2.66-1.91 c0.25-0.569,0.32-1.13,0.32-1.66c-0.02-1.649-0.64-3.35-1.19-5.029c-0.54-1.561-1.01-3.12-1.03-3.84c0-0.04,0-0.08,0-0.11 c0.02-1.36,0.52-2.26,1.25-3.5c0.71-1.2,1.67-2.7,1.77-4.84c0-0.12,0-0.24,0-0.351c0-1.229-0.23-2.59-0.22-3.649 c-0.01-0.66,0.11-1.15,0.19-1.26c0.03-0.04,0.03-0.04,0.03-0.04s0.07-0.04,0.28-0.04c0.3-0.011,0.87,0.09,1.68,0.409 c0.31,0.12,0.52,0.221,0.64,0.29c0.01,0.011,0.03,0.021,0.04,0.03c0,0.03,0,0.061,0,0.101c0,0.239-0.04,0.729-0.04,1.369 c0,0.391,0.02,0.841,0.08,1.36c0.1,0.73-0.02,1.53,0.28,2.6c0.16,0.53,0.57,1.16,1.19,1.521c0.61,0.37,1.27,0.49,1.99,0.51 c0.06,0,0.07,0,0.09,0c1.32,0,2.41-0.66,3.19-1.41c1.17-1.149,1.96-2.609,2.74-3.83c0.74-1.239,1.53-2.119,1.92-2.229 c0.7-0.3,1.27-0.4,1.75-0.4c1,0,1.78,0.431,2.69,1.37c1.33,1.41,2.54,3.88,3.84,6.22c1.33,2.301,2.73,4.671,5.37,5.53 c0.29,0.09,0.39,0.16,0.75,0.33c0.35,0.18,0.95,0.36,1.57,0.36c0.29,0.01,0.58-0.061,0.84-0.21c0.36-0.221,0.61-0.561,0.7-0.971 c0.19-1.069,1.02-2.46,1.06-4.369c0.01-0.721-0.16-1.521-0.55-2.261c-0.68-1.33-1.71-1.989-2.35-2.5 c-0.67-0.54-0.99-0.83-1.22-1.55c-0.15-0.52-0.23-1.04-0.23-1.5c0.03-1.3,0.48-2.22,1.6-2.88c0.65-0.36,1.14-0.47,1.65-0.47 c1.37-0.07,3.12,1.13,5.6,1.71c0.45,0.09,0.92-0.03,1.27-0.33s0.55-0.75,0.53-1.21c-0.1-2.07-0.62-3.891-0.97-5.53 c-0.22-0.93-0.66-1.81-1.04-2.71c-0.35-0.75-0.61-1.56-0.63-1.75v-0.02c0.06-0.601,0.18-0.94,0.24-1.091 c0.39,0,1.56,0.44,3.02,0.471c0.52,0,1.08-0.07,1.66-0.261c1.38-0.489,2.15-1.43,2.76-2.029c0.63-0.65,0.98-0.811,1.03-0.771 c0.07,0,0.35,0.021,0.96,0.521c0.82,0.64,1.34,1.949,1.93,3.649c0.6,1.65,1.34,3.681,3.27,5.16c1.17,0.89,2.75,2.22,4.49,3.351 c1.74,1.119,3.64,2.119,5.75,2.149c2.43,0.061,4.7-1.72,5.75-4.96c0.34-0.96,0.52-1.87,0.52-2.729c0.02-2-1.02-3.62-2.32-4.65 c-1.96-1.57-4.51-2.37-6.66-3.3c-2.19-0.9-3.73-1.931-4.07-3c-0.07-0.21-0.11-0.431-0.11-0.67c-0.09-1.32,1.36-3.4,1.78-5.87 c0.06-0.431,0.08-0.82,0.08-1.181c0.02-1.189-0.35-2.149-0.72-2.84c-0.37-0.699-0.69-1.199-1-2.09 c-0.32-0.92-0.43-1.62-0.43-2.08c0.02-0.66,0.15-0.74,0.27-0.85c0.13-0.12,0.54-0.28,1.21-0.271 c0.97-0.01,2.33,0.301,3.63,0.761c1.83,0.649,3.11,1.13,5.43,1.18c0.12,0,0.22,0,0.31,0c1.76,0.01,3.11-0.44,4.21-0.9 c1.11-0.46,1.98-0.89,3.17-1.149c0.4-0.08,0.71-0.101,1.04-0.101c0.35,0,0.73,0.03,1.21,0.03c0.94,0.021,2.19-0.24,3.52-1.13 c0.62-0.4,1.14-0.82,1.61-1.24c0.15,0.08,0.32,0.13,0.49,0.15c0.19,0.02,0.36,0,0.53-0.04c0.31,0.979,0.59,2.13,1.29,3.58 c0.74,1.55,1.84,2.45,2.83,2.83c0.97,0.409,1.59,0.51,2.53,1.13c0.63,0.42,0.87,0.7,0.92,0.8c0.05,0.09,0.05,0.03,0.06,0.29 c0,0.17-0.03,0.49-0.03,0.92c0,0.47,0.05,1.09,0.25,1.77c0.51,1.69,1.48,3.24,2.27,4.591c-0.91,0.909-1.64,1.979-2.2,3 c-0.6,1.199-1.05,1.55-1.15,2.79c0.01,0.79,0.4,1.31,0.64,1.64c0.27,0.35,0.56,0.7,0.96,1.28c0.33,0.47,1.04,1.43,1.86,2.38 c0.87,0.95,1.59,1.85,2.78,2.37c0.5,0.199,1.01,0.29,1.5,0.29c2.33-0.13,3.38-1.511,4.84-1.95c2.69-1.03,9.14-3.53,12.27-3.48 c0.41,0,0.74,0.04,0.95,0.101c1.49,0.43,2.13,1.109,2.64,2.13c0.48,1.02,0.66,2.47,0.65,4.05c0,0.62-0.02,1.26-0.05,1.9 c-2.42,0.96-4.76,2.93-5.02,6.029c0,0-0.01,0.061-0.01,0.16c0.03,1.08,0.55,1.65,0.8,2.03c0.08,0.11,0.14,0.2,0.19,0.27 c-0.05,0.131-0.12,0.29-0.19,0.44c-0.06,0.14-0.12,0.27-0.18,0.4c-0.03,0.069-0.06,0.13-0.09,0.22 C335.561,713.139,335.521,713.179,335.491,713.389z", + "Zhmerynka": "M253.371,339.849c0.38,0,0.76-0.04,1.15-0.13c0.63-0.14,1.09-0.67,1.16-1.32 c0.21-1.44,0.85-1.72,1.67-1.79c0.48,0.02,0.96,0.18,1.35,0.54c-2.76,0.91-4.59,3.35-4.53,6.21c0,0.67,0.09,1.36,0.27,2.06 c0.44,1.7,1.5,4.39,3.01,6.83c1.54,2.36,3.42,4.74,6.38,4.86c0.19,0,0.36-0.01,0.51-0.03c0.61-0.06,1.12-0.5,1.29-1.08 c0.56-2,0.47-3.67,0.61-4.96c0.16-1.3,0.38-2.16,1.49-3.35c1.26-1.3,2.15-1.62,2.98-1.63c0.94-0.02,2.19,0.55,3.72,1.69 c1.33,0.95,2.56,2.63,4.32,3.99c0.94,0.72,1.74,1.13,2.46,1.4c0.72,0.28,1.3,0.43,2.12,0.79c4.42,1.81,7.95,6.18,13.89,7.56 c1.83,0.4,3.85,0.63,5.22,1.2c1.37,0.65,1.89,1.05,1.97,2.67c0,0.05-0.01,0.14-0.01,0.26c-0.02,0.84-0.64,2.1-1.65,3.22 c-0.99,1.11-2.33,2.07-3.42,2.51c-0.16,0.1-1.19,0.21-2.24,0.36c-1,0.19-2.43,0.4-3.26,1.94c-0.23,0.48-0.36,1.02-0.36,1.53 c0.06,1.77,1.13,2.86,1.97,3.78c0.88,0.88,1.71,1.73,1.8,2.01c0.53,1.07,0.83,3.38,0.81,5.57c0,1.54-0.12,3.05-0.28,4.15 c-0.24,1.64-1.02,3.57-1.04,6.28c0.01,2.65,0.4,5.11,0.39,7.42c0,0.47-0.01,0.93-0.05,1.39c-0.19,2.43-1.5,3.95-3.15,5.85 c-1.59,1.84-3.53,4.11-3.52,7.63c0,0,0,0.03,0,0.12c0,0.02,0,0.04,0,0.07c0.02,4.96-1.58,9.209-1.67,15.15 c-0.06,6.36-2.2,13.78-5.9,19.021c-0.24-0.021-0.47-0.03-0.69-0.03c-0.37-0.15-0.81-0.16-1.2,0.02 c-0.01,0.011-0.02,0.021-0.04,0.03c-0.49,0.03-0.95,0.06-1.34,0.06c-0.52,0-0.89-0.069-1.05-0.149 c-0.62-0.25-1.52-1.3-2.17-2.641c-0.67-1.319-1.16-2.869-1.38-3.899c-0.11-0.5-0.47-0.91-0.96-1.09 c-0.48-0.181-1.03-0.09-1.43,0.229c-1.09,0.86-2.26,1.721-3.23,2.84c-0.97,1.101-1.75,2.57-1.74,4.33 c0,0.4,0.03,0.83,0.12,1.271c0.23,1,0.72,1.56,1.15,2.33c0.45,0.7,0.86,1.45,0.92,1.76c0.35,1.37,0.76,2.86,0.76,4.1 c0,0.351-0.03,0.67-0.09,0.971c-0.42,1.909-1,2.699-1.82,3.449c-0.82,0.75-2.04,1.4-3.45,2.521c-1.51,1.25-2.22,2.01-2.73,2.28 c-0.48,0.279-1.15,0.47-3.23,0.47c-5.58,0.01-11.32,0.689-16.56,0.68c-0.47,0.01-0.94,0-1.41-0.01c-0.41,0-0.84-0.05-1.26-0.13 c-4.12-0.851-8.83-5.48-12.6-8.47c-2.21-1.73-4.59-2.341-6.85-2.33c-3.19,0.02-6.19,1.05-9.21,1.58 c-0.43,0.069-0.81,0.34-1.03,0.72c-0.23,0.38-0.27,0.84-0.12,1.25c0.6,1.71,0.84,3.42,1.24,5.43c0.45,2.12,1.33,3.15,1.64,4.29 c0.27,0.891,0.37,1.55,0.37,2.03c-0.04,0.85-0.19,1.07-0.74,1.63c-0.57,0.52-1.62,1.13-2.89,2.01 c-3.19,2.221-7.76,5.69-9.86,8.95c-0.79,1.31-1.03,2.78-1.49,3.83c-0.21,0.52-0.44,0.9-0.64,1.07s-0.31,0.239-0.68,0.26 c-0.2-0.51-0.5-0.95-0.93-1.311c-0.72-0.569-1.52-0.64-2.05-0.63c-0.41,0-0.74,0.03-1.02,0.03c-0.32,0-0.53-0.04-0.7-0.11 c-1.14-0.439-2.14-1.55-3.25-3.08c-1.27-1.739-2.47-2.72-3.68-3.399c-1.16-0.66-2.22-1.08-3.64-1.96 c-0.2-0.15-0.42-0.25-0.67-0.29c-0.08-0.021-0.16-0.03-0.24-0.03c-0.03,0-0.05-0.01-0.08-0.01c-0.17,0.01-0.32,0.01-0.46,0.02 c-0.66,0-1-0.119-1.1-0.159c0-0.021,0-0.051,0-0.08c-0.03-0.4,0.39-1.551,0.92-2.69c0.51-1.189,1.14-2.31,1.18-3.72 c0-0.03,0.01-0.07,0-0.141c-0.02-0.569-0.37-1.09-0.9-1.319c-0.54-0.23-1.16-0.13-1.59,0.26c-1.19,1.06-2.02,1.73-2.86,1.88 c-0.01-0.38-0.01-0.75-0.01-1.13c0-0.76,0.01-1.54,0.01-2.33c0-0.81-0.01-1.63-0.05-2.46c-0.04-0.71-0.57-1.29-1.27-1.4v-0.01 c-0.5-0.13-1.99-2.76-2.92-5.49c-1.04-2.76-1.85-5.59-2.47-7.01c-1.12-2.51-1.49-4.39-1.49-6.17 c-0.02-2.85,1.06-5.71,2.12-10.149c0.11-0.49-0.03-1-0.37-1.37c-0.34-0.36-0.85-0.53-1.34-0.45c-0.35,0.06-0.63,0.08-0.83,0.08 c-0.63-0.03-0.62-0.11-0.72-0.19c-0.17-0.13-0.41-1.01-0.59-2.21c-0.23-1.17-0.52-2.7-1.72-3.99 c-1.11-1.17-2.38-1.439-3.07-1.739c-0.72-0.33-0.99-0.42-1.48-1.431c-0.96-2.22-1.5-4.62-1.5-7.06c0-2.29,0.48-4.62,1.55-6.89 c1.96-0.11,3.84-0.33,5.64-0.36c0.4-0.01,0.78-0.17,1.06-0.46c0.28-0.29,0.42-0.68,0.41-1.08c-0.03-1.69-0.89-2.95-1.68-3.79 c-0.79-0.86-1.51-1.5-1.89-2.15c-0.79-1.24-0.74-3.13-1.06-5.53c-0.24-1.6-0.43-2.98-0.42-4.2c0.02-2.15,0.46-3.77,2.39-5.89 c0.46-0.5,0.53-1.25,0.16-1.83c-2.32-3.71-4.7-5.62-7.48-6.42c-2.76-0.79-5.6-0.65-9.37-0.93c-2.27-0.2-2.8-0.66-3.12-1.21 c-0.38-0.6-0.52-2.1-0.49-4.32c0-0.11,0-0.23,0-0.35c-0.01-1,0.28-3.06,0.29-4.93c-0.01-1.02-0.07-2.01-0.46-2.97 c-0.61-1.27-1.53-1.63-2.06-2.07c-0.6-0.45-0.71-0.64-0.71-0.79v-0.01c0-0.05,0.09-0.36,0.36-0.74 c0.85-1.31,3.37-3.11,4.28-3.41c1.32-0.51,2.29-0.42,3.67-0.83c0.68-0.21,1.43-0.67,1.97-1.38c0.55-0.7,0.94-1.57,1.28-2.72 c0.18-0.65,0.22-1.26,0.22-1.84c0-0.92-0.1-1.78-0.1-2.45c0-0.48,0.06-0.84,0.14-1.04c0.12-0.63,1.69-1.63,3.15-2.54 c1.74-1.17,2.48-1.34,3.26-1.36c0.8-0.01,1.99,0.33,4,0.61c0.4,0.06,0.78,0.08,1.16,0.08c1.99,0.02,3.68-0.82,4.79-2.07 c1.68-1.88,2.35-4.39,2.9-6.81c0.52-2.41,0.88-4.79,1.42-6.14c0.09-0.24,0.12-0.48,0.09-0.72c0.75-0.28,1.5-0.61,2.25-1.05 c1.9-1.06,3.74-3.14,4.21-5.88c0.22-1.16,0.28-2.3,0.28-3.4c0-2.18-0.23-4.26-0.23-5.83c0.01-1.67-0.34-3.24-1.15-4.56 c-0.01-0.02-0.03-0.04-0.05-0.07c0.32-0.87,0.79-1.67,1.37-2.43c2.51-3.26,7.07-5.67,10.76-8.91c1.96-1.8,4.38-4.35,6.2-5.28 c0.75-0.39,1.41-0.53,2.13-0.53c1.66-0.03,3.65,0.9,6.04,1.54c3.8,0.98,7.84,1.09,11.81,1.09c1.44,0,2.88-0.02,4.29-0.02 c2.24,0,4.41,0.04,6.45,0.25c3.54,0.34,7.67,0.98,10.43,2.56c0.76,0.43,2.75,1.75,4.44,3.23c0.84,0.74,1.62,1.53,2.14,2.23 c0.34,0.44,0.54,0.84,0.64,1.12c-0.54,0.25-1.05,0.56-1.5,0.98c-0.72,0.65-1.23,1.69-1.21,2.78c0,0.26,0.02,0.53,0.07,0.79 c-0.28,0.09-0.57,0.19-0.86,0.3c-0.9,0.39-1.89,0.66-2.65,1.86c-0.33,0.59-0.48,1.25-0.47,1.85c0.02,1.32,0.55,2.33,0.93,3.21 c0.42,0.87,0.7,1.62,0.69,2.03c0,0,0,0.02,0,0.05c0.04,1.07-0.82,2.36-2.01,3.82c-1.12,1.45-2.62,3.03-2.67,5.4 c0,0.31,0.03,0.64,0.1,0.98c0.12,0.55,0.56,0.99,1.11,1.13c3.19,0.79,6.9,1.7,9.72,2.9c0.71,0.29,1.54,0.98,2.52,1.71 C250.471,339.029,251.711,339.839,253.371,339.849z" + } + } + } + } + ); +})(jQuery); diff --git a/lib/mapael-maps/united_kingdom/united_kingdom.js b/lib/mapael-maps/united_kingdom/united_kingdom.js new file mode 100644 index 000000000..2a65f6e65 --- /dev/null +++ b/lib/mapael-maps/united_kingdom/united_kingdom.js @@ -0,0 +1,39 @@ +/** +* +* Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) +* Requires jQuery and raphael.js +* +* Map 'United Kingdom' + +* @author Vincent Brouté +*/ +(function($) { + $.extend(true, $.fn.mapael, + { + maps :{ + united_kingdom : { + width : 819.18506, + height : 1239.183, + getCoords : function (lat, lon) { + var xfactor = 66.859448835909 + , xoffset = 700.45654250395 + , x = (lon * xfactor) + xoffset + , yfactor = -113.75590782327 + , yoffset = 6921.9371320376 + , y = (lat * yfactor) + yoffset; + + return {'x' : x, 'y' : y}; + }, + elems : { + "irl" : "m 209.53,622.66 c -0.12,0.02 -0.22,0.09 -0.34,0.13 -0.13,1.3 -0.53,3.04 0.34,4.19 0.86,0.33 0.22,1.7 1.19,1.88 1.29,0.76 2.52,1.88 3.97,2.31 0.36,0.48 1.01,1.35 0.66,1.88 -1.53,0.65 -3.19,0.34 -4.63,-0.34 -0.73,-0.25 -2.73,-0.01 -2.03,-1.28 0.93,0.09 1.95,-0.94 1.06,-1.75 -0.67,-0.96 -2.34,-0.94 -2.5,0.41 -0.16,0.88 -0.61,1.9 -1.69,1.63 -1.06,-0.18 -1.72,0.64 -2.25,1.38 -0.8,0.46 -1.16,-1.09 -2.03,-0.5 -1.17,0.9 -2.39,-0.83 -3.53,-0.19 -0.52,0.82 0.93,1.49 0.44,2.47 -0.47,1.06 -0.64,2.22 -0.88,3.34 -1.28,1.24 -1.93,3.53 -0.41,4.88 1.28,0.97 1.66,2.71 2.91,3.69 0.41,0.82 0.85,1.71 1.53,2.28 0.04,0.98 0.89,2 -0.06,2.84 -0.59,0.86 -1.52,2.04 -0.44,2.94 1.07,1.26 1.76,3.06 1.56,4.69 -0.78,0.77 -1.82,0.78 -2.81,0.81 -0.94,0.11 -1.95,0.67 -1.91,1.72 -0.31,1.09 -1.52,0.6 -2.16,1.31 -2.13,1.49 -3.59,3.66 -5.13,5.63 -1.19,-0.04 -2.22,0.85 -3.38,1.06 -0.08,0.35 -0.77,1.08 -1.03,0.53 -0.22,-0.88 0.37,-1.89 1.31,-1.91 0.71,-0.64 0.62,-1.78 1.41,-2.41 0.2,-0.79 0.55,-1.45 1.38,-1.75 1.59,-1.13 3.45,-2.3 4.28,-4.13 0.19,-1.23 -1.3,-1.31 -1.97,-0.63 -0.91,0.49 -2,0.31 -2.88,0.84 -0.98,0.06 -0.2,-1.43 0.16,-1.78 0.6,-0.84 2.26,-0.54 2.16,-1.91 0.8,-1.8 2.97,-2.21 4.34,-3.34 0.46,-0.7 -0.37,-1.68 0.53,-2.19 0.9,-1.9 -1.47,-3.11 -2.31,-4.5 -0.77,-0.78 -1.02,-1.83 -1.44,-2.75 -0.73,-0.5 -1.88,-0.27 -2.28,-1.28 -0.72,-0.7 -0.68,-1.82 0.13,-2.44 0.7,-0.79 0.54,-1.86 -0.03,-2.63 -0.35,-1.43 -0.59,-3.4 -2.06,-4.06 -1.52,0.23 -2.42,1.65 -3.28,2.75 -1.05,0.86 -2.39,10e-4 -3.5,0.31 -0.44,0.49 0.06,1.26 -0.72,1.63 -0.62,0.94 -1.98,1.12 -2.41,2.13 -0.01,0.96 1.36,0.73 1.38,1.72 0.47,0.86 1.19,0.08 1.75,-0.06 1.44,0.35 2.01,-0.69 1.5,-1.97 -0.17,-0.78 0.68,-2.12 1.5,-1.34 0.74,1.03 0.31,2.61 0.75,3.81 0.06,1.11 1.18,1.69 1.16,2.81 0.41,0.74 1.16,1.35 0.72,2.31 -0.4,1.9 -1.47,3.63 -1.53,5.59 -0.43,0.45 -2.17,0.52 -1.75,-0.47 0.35,-1.8 1.44,-3.89 0.59,-5.66 -0.55,-0.57 -0.87,-1.59 -1.84,-1.53 -0.59,-0.76 -1.8,-0.57 -2.38,-1.41 -0.95,-0.24 -1.87,0.5 -2.84,0.47 -1.67,0.71 -1.4,3.12 -2.84,4 -0.57,0.54 0.69,1.23 -0.19,1.53 -0.49,0.39 -1.26,0.42 -1.31,-0.34 -0.56,-0.8 -1.8,0.14 -2.31,-0.31 -0.18,-0.91 1.73,-1.81 0.44,-2.38 -0.44,0.17 -1.79,-0.17 -0.78,-0.63 1.16,-0.5 0.91,-2.52 -0.34,-2.56 -0.5,0.35 -1.01,0.92 -1.66,0.41 -0.86,-0.63 -2.9,-0.62 -2.72,0.75 -1.87,0.49 -4.2,-0.35 -5.72,1.22 -1.13,0.63 -3.25,0.24 -3.34,2 0.16,1.44 -1.58,2.42 -2.81,2.41 -1.04,-0.42 0.08,-1.78 -1.03,-2.19 -1.74,-0.63 -3.64,-0.42 -5.38,-1.09 -1.29,-0.42 -2.53,0.59 -2.5,1.91 0.39,1.59 -1.88,2.37 -1.22,3.94 0.15,0.74 1.31,1.22 1.25,1.88 -0.58,0.35 -1.63,0.63 -1.16,1.56 0.56,0.79 -0.73,1.72 0.22,2.44 0.37,0.31 0.75,0.82 0.03,0.97 -1.01,0.28 -0.89,1.28 -0.88,2.06 -0.35,0.5 -1.4,0.42 -1.19,-0.44 0.04,-1.1 -1.29,-1.8 -2.06,-0.88 -0.5,0.52 -1.53,0.4 -1.59,1.38 -0.39,0.5 -0.84,1.01 -0.53,1.75 0.25,0.52 -0.02,1.09 -0.63,0.78 -0.73,-0.25 -2.58,-1 -2.31,0.41 0.96,1.85 2.07,4.11 4.41,4.41 0.71,0.03 1.67,0.66 0.81,1.28 -0.7,0.78 -1.86,0.45 -2.63,1.06 -1.09,-0.14 -1.74,0.81 -2.69,1.06 -1.18,0.72 -0.06,2.12 0.94,2.31 0.97,0.14 1.63,1.16 2.56,1.16 0.64,-0.29 0.04,-1.46 1.06,-1.28 0.68,0.14 1.53,0.13 1.94,-0.41 0.99,0.2 0.46,2.52 1.88,2.13 0.53,-0.66 1.63,0.68 0.78,0.97 -0.55,0.45 -0.78,1.46 -1.69,1 -0.67,-0.27 -1.35,-0.66 -2.09,-0.16 -1.03,0.16 -1.81,1.8 -0.5,2.16 0.83,-0.05 1.68,0.31 1.84,1.16 1.36,0.59 2.58,-0.97 3.66,-1.59 0.48,-0.27 1.44,-1.16 1.88,-0.94 -0.3,1.75 -2.21,2.02 -3.38,3.03 -1.41,1.2 -3.78,1.8 -5.25,0.38 -1.1,-0.77 -2.53,-0.83 -3.56,0.06 -1.31,0.97 -2.54,-1.65 -3.78,-0.31 -0.17,0.6 0.02,1.53 -0.88,1.66 -0.89,0.21 -0.6,1.22 0.16,1.31 0.98,0.75 1.82,1.91 3.22,1.75 1.09,0.72 1.46,2.64 3.06,2.56 0.72,0.37 -0.34,1.44 -0.56,1.88 -1.04,1.79 -3.25,0.5 -4.81,0.41 -0.92,0.08 -1.74,-0.13 -2.44,-0.69 -1.32,-0.12 -2.3,-1.33 -3.72,-1.19 -1.74,0.1 -3.66,0.41 -5.13,1.38 -0.64,0.72 -2.16,0.74 -2.13,2 -0.9,0.61 -2.36,0.57 -2.78,1.81 -0.58,0.76 0.58,1.61 0.16,2.25 -0.94,0.67 -2.66,0.36 -3.09,1.5 0.43,1.31 -0.05,2.98 1.34,3.81 1.14,0.82 2.52,1.12 3.81,1.72 1.24,0.18 2.04,1.31 2.47,2.38 0.96,0.76 2.22,-0.54 1.59,-1.56 -0.21,-0.16 -0.35,-1.63 0.19,-1.22 0.79,0.98 0.94,2.98 2.66,2.66 0.28,0.45 0.79,1.2 1.56,1.16 0.84,0.02 1.49,-0.57 2.38,-0.5 1.59,-0.26 2.84,-2.03 4.5,-1.78 0.55,0.86 -0.69,2.39 0.53,2.81 1.14,-0.37 1.06,-1.83 1.28,-2.72 0.86,-0.28 0.75,-1.67 1.84,-1.47 0.08,0.71 0.11,1.9 1.19,1.63 0.61,-0.15 1.37,-0.35 1.44,0.53 0.23,0.63 0.48,2.35 1.47,1.44 0.44,-1.07 1.24,-1.83 2.38,-2.09 1,-0.3 1.82,-1.44 2.84,-1.47 0.99,0.72 0.9,2.07 0.06,2.88 -0.75,0.73 0.14,1.96 1,1.25 0.84,-0.71 2.02,-0.8 2.72,-1.75 1.32,-0.29 2,-1.58 3.22,-2 0.66,-1.07 2.39,0.39 2.78,-0.97 0.69,-0.27 1.92,-0.01 1.41,0.97 -0.22,0.97 0.75,1.47 0.63,2.44 0.5,0.75 0.09,1.84 -0.88,1.78 -0.85,0.38 -1.49,1.05 -2.44,1.16 -0.81,0.55 -1.13,1.54 -2.06,1.97 -0.89,0.79 -2.07,1.87 -1.34,3.13 -0.41,1.52 -2.45,1.85 -3.28,3.13 -0.94,1.23 1.12,1.89 2.03,1.97 0.8,-0.11 1.66,0.02 1.78,0.97 -1.53,0.52 -3.78,-0.46 -4.63,1.44 -0.28,0.84 -1.08,1.75 -2.06,1.44 -1.35,0.27 -2.54,1.13 -4,1.03 -1.65,-0.08 -3.01,0.87 -4.47,1.41 -0.84,0.34 -1.48,-0.08 -2.13,-0.5 -0.95,0.03 -0.92,1.52 -0.34,2.09 -0.14,0.05 -0.28,0.11 -0.41,0.19 -0.23,0.76 -1.27,1.04 -1.22,1.97 -1,1.1 -2.76,1.3 -3.56,2.69 -0.6,0.82 -1.8,0.2 -2.5,0.97 -1.06,0.66 -2.41,1.12 -3,2.28 -1.03,0.15 -3.02,0.22 -2.91,1.66 0.68,1.49 2.65,2.25 4.03,1.19 2.49,-0.73 5.03,0.64 6.88,2.16 0.21,0.75 -0.28,1.29 -0.94,1.44 -0.83,1.16 1.13,1.48 1.75,2.06 0.74,0.5 1.28,1.76 0.91,2.5 -0.86,-0.33 -1.72,-1.08 -2.63,-0.5 -1.92,0.21 -3.99,-0.12 -5.84,0.44 -0.71,1.15 1.14,1.97 1.59,2.91 0.45,0.71 0.83,1.64 1.81,1.66 1,0.58 2.01,1.14 3.13,1.38 0.81,0.41 -0.56,0.78 -0.91,0.75 -1.38,0.05 -2.91,-0.22 -4,0.81 -1.09,0.27 -0.85,-1.44 -1.78,-1.63 -0.78,-0.27 -0.68,-1.38 -1.59,-1.59 -0.83,-0.67 -1.37,-1.58 -1.38,-2.63 -0.53,-1.74 -2.79,-1.36 -4,-0.63 -1.37,0.48 -2.76,-0.39 -3.88,-0.91 -1.23,0.68 -1.99,2.15 -3.56,2.22 -1.61,0.06 -2.72,-1.53 -4.22,-1.78 -1.35,-0.88 -2.3,-2.6 -4.16,-2.44 -2.09,-0.1 -4.29,-0.57 -6.34,-0.09 -0.61,1 -0.41,2.33 -1.22,3.28 -0.54,1.77 -1.79,3.34 -1.97,5.19 0.04,0.79 -1.37,0.99 -1.16,1.91 -0.41,0.34 -1.19,0.43 -0.97,1.22 0.43,1.32 -0.64,2.45 -0.53,3.78 -0.14,0.64 -0.14,1.79 -0.78,2.06 -0.39,-1.46 -0.19,-3.06 -0.59,-4.5 -0.01,-0.97 -1.25,-1.21 -1.16,-2.22 -0.84,-1.44 -3.32,-0.86 -3.94,-2.44 0.36,-0.53 0.56,-1.62 -0.44,-1.53 -0.73,-0.01 -1.65,0.93 -2.28,0.44 0.48,-0.97 1.49,-1.45 2.41,-1.81 0.81,-1 1.19,-2.59 0.72,-3.81 -0.65,-0.74 -1.18,0.33 -1.34,0.78 -0.8,0.3 -1.32,-0.39 -1.09,-1.16 0.15,-1.17 0.48,-3.22 -1.19,-3.41 -1.75,0.14 -3.7,-2 -5.22,-0.34 -0.82,0.49 -1.07,1.77 -1.91,2.09 -0.92,-0.17 -0.99,-1.55 -2.06,-1.59 -1.37,-0.36 -2.91,0.69 -4.16,-0.41 -0.61,-0.66 -1.52,-0.58 -2.13,0 -1.74,0.47 -3.63,0.19 -5.13,-0.78 -1.36,-0.64 -2.9,-0.72 -4.22,0.06 -1.9,0.35 -4.09,0.38 -5.66,-0.84 -0.85,-0.16 -1.54,-0.59 -2.16,-1.09 -0.87,-0.25 -2.01,0.96 -2.47,-0.28 -0.51,-0.65 -1.01,-0.04 -1.31,0.34 -0.91,0.58 -2.58,1.01 -2.66,2.22 0.76,1.37 2.4,2 3.91,1.63 0.88,0.29 1.8,1.08 2.19,1.91 -0.65,0.51 -0.86,1.6 0.13,1.88 0.48,0.46 1.6,0.26 1.88,0.81 -0.24,0.7 -1,1.18 -1.69,0.66 -1.48,-0.7 -3.17,-1.34 -3.88,-2.97 -1.03,-0.43 -2.21,0.65 -3.13,1.19 -0.8,0.87 -0.51,2.24 -0.59,3.34 0.01,0.95 2.08,1.08 1.44,2.03 -0.71,0.01 -1.43,0.19 -1.97,0.75 -1.23,0.89 -2.93,0.29 -4.19,0.97 -0.58,1.14 0.93,1.07 1.59,1.09 0.51,0.67 -0.74,1.39 -1.03,1.94 -0.73,0.62 -1.19,1.64 -0.22,2.28 0.39,0.46 1.33,1.24 0.69,1.84 0.01,1.34 1.96,2.03 1.94,3.28 -1.54,0.42 -3.2,0.7 -4.69,1.34 -0.87,0.89 0.06,2.3 0.34,3.31 0.95,2.15 4.97,0.45 3.81,-1.75 -0.36,-0.98 0.92,-0.84 1.47,-1.03 0.78,-0.4 -0.07,-2.18 1.19,-1.84 1.08,0.3 1.68,-0.64 2.25,-1.28 0.61,0.05 0.26,1.44 0.53,1.88 0.41,1.1 -1.84,-0.26 -1.44,1.16 0.2,0.48 1.06,0.8 0.34,1.28 -0.77,0.65 -0.41,1.48 -0.13,2.19 -0.32,0.38 -1.01,0.73 -1.09,1.41 -0.18,0.63 -0.82,0.91 -1.25,0.34 -1.42,-0.02 -2.23,2.37 -0.88,3.19 0.65,0.43 1.52,0.57 1.78,1.41 0.47,0.38 1.21,0.23 1.34,1 0.2,0.81 1.56,1.33 1.28,2.19 -0.78,0.24 -2.11,1.29 -0.97,2 0.68,0.33 1.53,0.06 1.91,-0.5 1.09,-0.51 0.99,1.05 1.13,1.69 -0.04,1.49 0.99,3.15 0.13,4.5 -0.33,0.88 0.36,1.77 1.28,1.63 2.14,1.13 4.8,0.11 7.03,0.88 0.7,-0.38 1.37,-0.29 2.06,0.03 1.32,0.2 3.43,0.72 4.03,-0.78 0.85,0.17 0.82,1.65 1.78,1.72 0.8,1.44 -0.58,2.78 -0.53,4.25 -0.03,1.21 -1.25,1.04 -2.03,1.31 -0.48,0.62 -0.4,1.5 -0.81,2.19 0.25,1.65 2.51,1.15 3.63,1.72 0.75,0.74 -0.17,1.69 -0.94,1.94 -0.62,0.62 -1.05,1.56 -2.09,1.41 -1.2,0.27 -2.32,0.07 -3.44,-0.28 -1.47,-0.15 -2.97,-0.07 -4.25,0.69 -1.6,0.27 -3.58,0.75 -4.94,-0.38 -1.38,-0.22 -2.3,1.38 -3.69,1.25 -1.41,0.37 -3.26,0 -4.41,1 0.08,0.72 0.73,1.39 0.53,2.25 0.1,1.37 -0.61,2.52 -1.16,3.69 0.12,0.88 -0.54,1.75 0.13,2.59 0.81,1.09 -0.96,2.63 0.47,3.44 0.83,0.32 1.74,0.64 1.75,1.69 1.43,1.61 3.87,1.86 5.44,3.34 1.22,0.91 2.65,-0.14 3.91,0.44 1,0.15 2.16,-0.28 3.06,-0.06 0.34,0.83 -0.2,1.92 -1.19,1.47 -1.81,-0.72 -3.79,0.23 -5.59,-0.13 -0.47,-0.49 -1.15,-0.4 -1.44,-1.06 -1.38,-0.76 -3.06,-0.69 -4.56,-0.94 -1.04,0.66 -2.03,1.82 -3.44,1.66 -1.75,0.08 -3.32,-0.74 -4.97,-1.09 -0.81,0.31 -2.71,-0.1 -2.16,1.34 0.88,1.58 2.59,2.41 4.38,2.38 0.63,-0.02 0.99,0.19 0.75,0.84 -0.25,0.68 0.63,1.4 0.47,1.91 -1.14,-0.01 -2.27,0.45 -3.31,0.72 -1.12,-0.91 -1.54,-3.39 -3.47,-2.78 -0.9,0.34 -2.44,-1.18 -2.75,0.28 -0.17,0.62 1.36,0.99 0.75,1.44 -2.1,0.04 -4.25,-0.82 -6.34,-0.28 -0.89,1.02 0.91,1.17 1.59,1.19 1.55,-0.23 0.81,2.23 2.31,2.28 1.82,0.19 3.6,1.04 5.34,1.41 0.74,1.28 -1.51,0.76 -1.31,1.91 0.5,1.05 2.24,0.47 2.75,1.06 0.16,1.06 0.54,2.39 -0.66,3 -0.67,0.45 -1.61,0.64 -1.75,1.63 -0.33,0.82 -1.75,1.33 -2.44,0.81 -0.19,-1.34 -2.31,-1.86 -2.91,-0.59 0.09,1.08 -0.61,2.81 0.56,3.44 1.34,0.19 2.72,-0.52 3.69,-1.31 1.07,0.69 3.25,1.3 2.75,3 -0.11,1.66 2.2,1.49 3.31,1.66 1.18,-0.14 2.92,0.6 3.75,-0.5 0.44,-1.5 0.21,-3.76 2,-4.44 0.45,0.35 1.4,1.11 1.63,0.09 -0.04,-0.6 -0.03,-1.42 0.78,-1.06 1.06,0.25 2.12,0.75 2.66,1.69 0.72,0.21 1.77,-0.21 2.09,0.84 0.42,0.99 0.68,2.87 -0.56,3.31 -0.88,0.01 -1,1.28 -1.63,1.5 -1.11,-0.58 -2.49,0.3 -3.44,0.91 -0.42,0.64 0.42,1.3 -0.03,2.06 -0.19,1.77 2.05,2.42 3.44,2.53 1.28,-0.34 0.9,1.43 1.88,1.78 1.13,0.77 2.38,-0.18 3.56,-0.22 0.81,-0.57 0.12,-1.91 1.09,-2.41 0.63,-0.65 0.77,-1.57 1.47,-2.19 0.17,-0.59 0.33,-0.99 0.59,-1.5 -0.03,-0.46 -0.64,-1.18 0.22,-1.19 1.13,0.22 1.79,-0.65 2.16,-1.56 0.46,-0.19 1.28,-0.61 1.66,-0.31 0.25,1.07 1.34,1.04 2.16,0.78 1.3,0.28 3.17,-1.18 4.03,0.34 0.39,0.95 -0.96,0.5 -1.44,0.56 -1.06,-0.02 -2.6,1.42 -1.31,2.25 0.78,0.54 2.2,0.57 2.66,1.44 -0.86,1.59 -2.8,2.14 -4.47,2.28 -0.79,0.79 0.75,1.06 0.47,1.94 0.51,1.06 0.64,2.25 1.06,3.31 1.09,0.23 1.51,-1.54 2.44,-1.63 0.5,0.47 1.76,1.22 0.88,1.94 -0.81,1.28 0.15,2.77 0,4.19 0.09,0.81 0.99,0.79 1.34,1.41 1.19,0.26 2.33,-0.69 3.56,-0.44 1.86,-1.1 4.24,-0.43 6.19,-1.22 3.52,-0.49 7.12,-0.53 10.63,-1.13 1.88,-0.31 4.06,0.52 5.72,-0.63 0.54,-0.83 1.67,-0.76 2.44,-0.34 1.66,0.2 2.46,-1.88 4.19,-1.41 2.17,0.08 4.34,-0.09 6.47,-0.34 1.21,0.13 0.14,1.76 -0.38,2.16 -0.88,0.1 -1.29,1.37 -0.22,1.53 0.93,0.41 -0.34,1.29 -0.94,1.03 -1.53,0.05 -0.87,2.6 0.53,2.09 1.84,0.22 3.07,-1.58 4.78,-1.72 0.57,0.62 -0.8,1.14 -0.97,1.69 -0.34,1.07 -1.58,0.96 -2.03,1.91 -0.86,1.24 -1.44,2.83 -0.63,4.22 0.18,0.73 0.23,1.59 0.97,1.97 -0.1,1.12 -1.65,0.37 -1.91,-0.31 -0.36,-0.93 -2.49,-1.72 -2.53,-0.25 0.32,0.83 -1.02,1.02 -1.59,1.09 -1.89,-0.92 -3.86,-2.25 -6.06,-1.88 -0.43,0.55 0.82,1.84 -0.22,2.19 -1.45,0.15 -1.76,2.54 -3.41,2.16 -1.45,-0.59 -2.36,-2.13 -4.03,-2.19 -1.3,-0.13 -2.19,-1.75 -3.5,-1.38 -1.78,1.35 -0.87,4 -2.25,5.63 -0.59,2.25 -3.75,2.38 -4.13,4.75 0.22,1.92 -2.41,2.6 -2.25,4.53 0.23,0.44 0.37,1.05 0.72,1.38 l -0.19,0 -0.22,0.09 -0.13,0.06 c -1.13,1.11 -2.34,2.41 -2.31,4.09 -0.59,1.25 -2.06,1.92 -2.63,3.19 0.63,1.1 2.24,-0.34 3.06,0.66 1.54,0.49 2.7,-1.47 4.19,-1.13 0.89,0.89 1.3,2.6 0.22,3.47 -1,0.78 -1.59,2.02 -2.88,2.47 -1.05,0.46 -2.99,1.37 -1.94,2.78 0.04,0.91 -1.07,1.88 -0.41,2.78 0.15,0.81 -0.11,1.48 -0.84,1.81 -0.56,1.03 -1.26,2.01 -2.31,2.59 -0.89,1.19 0.34,2.82 -0.56,4.06 0.03,1.26 -0.61,2.52 -1.81,3.03 -0.57,0.3 -1.22,1.59 -1.84,0.63 -0.6,-1.01 -1.82,-1.91 -2.91,-0.97 -0.76,0.27 -1.2,1.02 -1.63,1.53 -1,0.22 -0.62,1.42 -0.66,2.06 -1.34,0.47 -2.8,2.09 -1.78,3.5 -0.03,1.34 -1.61,0.16 -2.25,0.94 -2.06,1.93 -4.08,3.98 -6.63,5.25 -1.51,1.1 -1.72,3.82 -3.94,3.91 -1.83,-0.02 -2.68,2.18 -4.47,2.31 -0.81,0.17 -1.76,1.63 -0.47,1.81 1.42,0.41 2.3,-0.84 3.31,-1.5 1.22,-0.39 2.38,0.28 3.56,0.25 1.7,-0.26 3.22,-1.2 4.53,-2.25 0.84,0.06 2.45,0.62 1.97,-0.84 -0.63,-1.12 0.37,-2.47 1.59,-2.25 1.7,0.21 3.24,-0.62 4.91,-0.69 0.97,-0.76 2.19,-1.19 3.31,-1.66 0.74,-1.08 -0.54,-2.1 -1.53,-2.28 -0.45,-0.25 -1.15,-1.32 -0.16,-1.28 1.08,-0.03 2.5,-0.44 3.44,0.13 0.14,1.08 -0.47,2.83 0.88,3.28 0.56,0.88 1.85,-0.23 2.41,0.47 -0.06,1.58 2.18,1.83 3.31,2.19 0.93,0.62 2.37,1.55 3.19,0.22 0.42,-1.27 2.17,-0.05 2.78,-1.25 0.87,-0.91 2.45,-0.65 3.34,-1.63 0.76,-0.35 1.96,-0.83 2.66,-0.31 -0.41,1.46 -2.26,2.05 -3.25,3.09 -0.94,0.5 -1.93,1.99 -0.47,2.53 2.06,0.9 3.57,-1.43 3.97,-3.16 0.91,-1.15 2.71,-0.25 3.94,-0.41 0.95,0.05 1.88,-0.17 2.78,-0.25 1.07,-0.82 1.7,-2.12 2.72,-2.97 0.57,-0.66 0.51,-1.7 0.88,-2.38 0.77,-0.04 1.72,-0.27 1.69,-1.25 1.18,-1.23 0.53,-3.37 2.13,-4.28 0.8,-0.35 1.36,-1.76 0.09,-1.81 -0.48,0.08 -1.37,-0.07 -0.78,-0.66 1.33,-1.33 2.84,-2.77 4.84,-2.75 1.22,-0.13 3.07,-1.33 1.75,-2.56 -0.33,-0.41 -0.01,-1.48 0.47,-0.84 0.39,0.92 2.07,-0.37 2.06,0.69 -1.18,0.93 -0.88,2.67 -2.22,3.47 -0.36,1.17 1.76,1.94 1.31,3.25 -0.83,0.5 -0.32,1.52 0.47,1.59 0.93,0.73 -0.87,1.49 -1.13,2.16 -1.03,1.24 0.93,1.17 1.72,0.81 1.39,-0.37 2.75,-1.68 4.25,-0.84 1.08,0.55 2.3,1.15 3.47,0.5 0.56,0.03 0.16,1.09 0.91,1.13 2.01,0.7 4.51,-0.04 6.22,1.34 0.28,0.79 0.6,1.86 1.69,1.41 1.16,-0.28 3.06,-0.17 2.75,-1.91 0.12,-0.49 0.04,-1.98 0.81,-1.75 0.19,1.47 0.34,3.82 -1.56,4.16 -1.32,0.23 -3.04,1.09 -4.25,0.19 -0.64,-1.45 -2.35,-2.4 -3.81,-1.5 -1.31,0.36 -0.57,2.15 -1.69,2.63 -0.56,-0.88 -1.48,-1.51 -1.91,-2.44 -1.65,-0.7 -3.6,-0.03 -5.03,0.84 -0.93,-0.14 -1.85,0.09 -2.63,0.56 -1.34,-0.77 -2.81,0.64 -3.41,1.75 -0.33,0.78 0.82,2.01 -0.38,2.31 -0.63,0.07 -1.33,0.81 -1.94,0.09 -1.16,-0.91 -3.5,0.49 -2.25,1.81 0.32,0.99 -1.57,0.72 -1.97,0.34 0.02,-1.35 -1.4,-1.71 -2.5,-1.5 -1.45,0.24 -2.74,1.11 -4.19,1.41 -1.38,1.26 -3.45,0.81 -4.94,1.91 -1.48,1.08 -3.18,1.67 -5.03,1.44 -1.21,-0 -2.56,0.14 -3.44,-0.84 -1.64,-0.35 -3.62,-0.56 -5.16,0.25 -1.11,0.78 -0.27,2.87 -1.75,3.31 -0.52,-0.57 -0.2,-1.97 -1.16,-2.41 -1.31,-0.96 -2.53,0.79 -3.91,0.09 -1.73,-0.4 -3.79,-1.97 -5.44,-0.44 -1.39,0.79 -2.17,2.33 -2.06,3.88 -0.35,1.7 -0.82,3.5 -0.63,5.22 0.85,0.15 1.99,-0.23 2.59,0.72 0.4,0.51 1.01,1.63 0.41,2.09 -0.51,-0.27 -1.1,-0.92 -1.78,-0.88 -1.69,-1.22 -4.28,-0.31 -5.63,1.06 -0.57,1.44 -2.06,2.17 -3.44,2.66 -2.24,1.3 -4.76,1.89 -7.34,1.53 -1.07,0.08 -2.94,0.96 -2.41,2.25 1.79,1.74 4.61,1.29 6.78,2 0.91,1.16 0.2,2.95 0.38,4.31 -0.06,1.23 -0.1,2.56 0.56,3.59 -0.02,1.5 -0.68,2.94 -1.16,4.25 0.66,1.12 2.58,1.11 3.84,1.03 1.2,-0.29 2.04,0.83 2.88,1.38 0.57,0.11 1.94,-0.59 1.66,0.5 -0.52,0.85 -1.99,0.3 -2.63,1.19 -0.6,1.05 -1.66,-0.51 -2.5,0.19 -0.87,0.56 -2.11,0.99 -2.97,0.25 -1.01,0.13 -1.59,1.24 -2.66,1.38 -1.82,0.77 -3.92,0.49 -5.75,-0.03 -1.75,-1.25 -3.68,-2.51 -4.66,-4.47 -1.06,-0.17 -1.43,1.52 -2.31,2 -1.32,1.38 -3.33,1.45 -5.03,2.09 -0.96,-0.07 -2.01,0.55 -2.75,0.69 -0.42,-1.4 1.78,-1.97 1.41,-3.44 -0.28,-1 0.31,-2.44 -0.53,-3.19 -1.38,-0.23 -1.94,1.36 -2.78,2.06 -0.75,-0.14 -1.67,-0.7 -2.38,0.03 -0.9,0.42 -0.91,1.82 -2.09,1.66 -1.14,0.45 -1.25,2.11 -2.59,2.25 -1.01,0.48 -2.32,0.41 -3.19,1.06 -0.29,0.86 1.43,1.14 0.69,2.03 -0.84,0.67 -1.32,1.75 -0.5,2.63 0.38,0.83 -0.8,2.39 -1.47,1.28 -0.69,-0.53 -2.41,-0.17 -2.25,-1.47 -0.46,-1.08 -1.99,-0.18 -2.59,0.25 -0.29,0.98 2,0.61 1.19,1.66 -0.88,0.8 -1.73,1.79 -1.44,3.09 0.16,1.5 -0.12,3.24 0.56,4.59 1.3,0.57 2.78,-0.15 4,-0.56 1.07,0.12 0.96,-1.04 1,-1.72 0.24,-0.98 1.28,-1.42 2.09,-0.75 0.75,0.51 2.41,1.25 2.47,-0.22 0.71,-0.93 2.39,-1.57 3.09,-0.25 0.23,0.96 1.28,1.75 2.28,1.28 0.66,-0.4 -0.22,-1.7 0.91,-1.66 1.3,0.09 0.26,1.55 1.03,2.16 0.7,1.05 1.7,0.12 2.47,-0.22 0.8,-0.39 1.53,0.05 2.22,0.31 0.91,-0.15 1.09,-1.57 2.16,-1.19 2.86,-0.77 5.67,-2.13 8.69,-2 2.33,-0.81 4.81,-1.31 7.19,-1.84 1.42,0.41 2.88,-0.38 4.25,-0.03 0.6,0.61 1.39,0.44 2,0.03 1.05,-0.3 1.74,1.06 1.16,1.81 -0.87,0.16 -2.46,-0.96 -2.75,0.41 0.05,1.09 1.31,1.27 1.78,2 0.13,0.83 -0.92,1.66 -1.63,1.59 0.24,-0.85 -0.11,-2.31 -1.28,-1.91 -0.53,0.54 -1,0.85 -1.78,0.5 -1.08,-0.24 -0.46,1.59 -1.41,1.31 -2.02,-0.3 -4.13,1.1 -5,2.84 -0.08,0.78 1.17,1.68 0.72,2.38 -1.2,-0.08 -2.45,0.11 -3.34,1 -1.85,1.49 -4.07,2.56 -6.5,2.38 -1.28,0.22 -1.99,1.74 -3.44,1.47 -1.72,-0.27 -2.64,1.4 -4.16,1.75 -0.93,0.49 -1.67,1.39 -2.25,2.19 -1.54,-0.93 -3.85,0.43 -3.28,2.28 0.32,0.83 -1.6,0.41 -1.13,1.44 1.25,0.78 3.21,0.49 4.22,-0.63 0.61,-0.27 1.74,-1.22 2.28,-0.53 0.47,0.88 -0.79,1.17 -1.22,1.72 -1.36,0.11 -2.6,0.78 -3.63,1.63 -1.03,0.26 -0.19,1.14 0.22,1.56 0.36,0.6 0.44,2.08 -0.34,2.16 -0.9,-1.13 -1.82,0.33 -2.5,0.91 -1.1,0.53 -2.51,0.44 -3.5,1.25 -0.83,0.31 -2.63,-0.25 -2.5,1.19 0.16,0.95 0.16,1.94 -0.16,2.84 0.45,1.2 1.71,-0.26 2.59,0.06 1.09,-0.32 1.61,1.12 1.16,1.91 -0.12,1.32 0.13,2.71 -0.38,3.94 0.31,1.19 1.75,-0.03 2.19,-0.63 0.62,-0.82 2,-0.98 1.84,-2.25 0.42,-0.79 1.21,-1.37 1.34,-2.28 1.05,-0.57 2.58,-0.73 3.69,-0.22 0.96,0.8 2.28,1.68 1.84,3.13 0.17,0.91 0.22,1.7 -0.22,2.56 0.05,0.78 -0.69,0.98 -1.09,1.44 -0.23,1.48 1.86,1.32 2.78,1.75 0.61,0.58 1.43,0.68 1.94,-0.09 0.63,0.17 1.14,1 1.97,0.81 0.91,0.12 1.72,-0.45 1.94,-1.28 0.83,-0.78 1.99,-0.54 2.97,-0.38 1.6,-0.79 2.76,-2.35 4.47,-3.03 0.86,-0.71 3.07,-0.03 2.66,-1.66 0.02,-0.65 -0.56,-2.1 0.28,-2.41 0.54,0.42 0.21,2.03 1.41,1.81 0.78,0.78 2.38,1.07 2.94,-0.13 0.86,-0.84 1.96,-1.14 3.06,-1.38 2.7,-1.89 6,-2.85 9.06,-4.06 1.99,-0.24 4.25,0.11 5.88,-1.34 0.49,-0.42 1.61,-0.32 1.13,0.53 -0.53,1.15 -2.17,1.05 -3.06,1.84 -1.64,0.59 -2.58,2.57 -4.5,2.31 -1.91,0.15 -4.22,0.48 -5.19,2.38 -0.78,0.7 -1.89,1.24 -1.81,2.47 -0.57,0.42 -1.72,0.2 -2.16,1 -0.62,0.92 0.54,1.31 1.13,1.69 0.63,0.59 0.4,1.59 -0.53,1.63 -1.07,0.25 -2.23,-0.95 -3.25,-0.06 -0.69,0.56 -0.84,1.65 -1.84,1.78 -0.36,0.7 -1.52,0.78 -1.72,-0.06 -1,-0.83 -1.59,0.67 -2.5,0.75 -1.01,0.09 -1.73,0.72 -2.72,0.78 -0.96,0.19 -1.31,1.84 -0.06,1.78 0.7,0.17 2.22,-0.44 1.72,0.72 -0.5,0.72 -1.05,1.48 -1.22,2.41 -0.34,1.14 -1.97,0.64 -2.41,1.75 -1.05,0.09 -2.15,0.12 -3.13,0.56 -1.26,-0.33 -2.26,0.95 -0.63,1.38 0.68,0.66 0.24,1.94 0.25,2.81 -0.26,2.05 -3.11,1.12 -4.06,2.47 0.05,1.35 1.86,0.5 2.69,0.56 1.31,-0.25 2.48,0.23 3.66,0.66 1.51,-0.38 2.33,-2.15 3.75,-2.69 0.66,0.34 1.84,0.86 2.06,-0.28 0.1,-0.68 -0.17,-1.57 0.72,-1.81 0.7,-0.66 1.47,-1.65 2.56,-1.38 1.46,-0.51 2.98,-0.84 4.56,-0.72 1.55,-0.1 3.22,-0.35 4.47,-1.25 1.08,0.03 1.4,-1.21 0.94,-1.94 0.37,-0.59 1.06,-1.17 1.44,-0.22 0.29,0.6 0.58,1.35 1.47,1.13 0.67,0.15 1.55,-0.76 2.06,-0.34 0.78,1.16 2.26,0.11 2.94,-0.59 0.98,-0.61 2.01,-1.32 2.41,-2.41 0.82,-0.33 2.07,-0.47 1.94,-1.69 0.08,-1.04 -0.21,-3.16 1.25,-3.31 1.14,0.58 0.56,2 1.63,2.63 0.68,0.75 1.89,1.68 2.75,0.63 0.47,-0.19 1.37,-1.78 1.56,-0.69 0.69,1.38 -0.56,2.75 0.25,4.09 0.06,0.93 -0.98,1.77 -1.81,2.13 -1.59,0.36 -2.58,1.93 -4.22,2.22 -2.64,0.79 -4.85,2.55 -7.47,3.38 -1.77,0.85 -3.67,1.89 -5,3.25 -1.57,0.56 -3.05,1.54 -4.28,2.66 0.03,0.65 -0.32,0.99 -0.97,1.16 -1.15,0.85 0.78,1.8 1.53,1.13 1.51,-1.14 3.36,-1.71 5.03,-2.47 0.8,-1.46 3.2,-0.46 3.84,-2.19 0.12,-0.99 1.36,-0.39 1.91,-0.97 1.1,-0.69 2.24,-1.25 3.56,-1.28 0.56,-0.16 1.52,-1.08 1.75,-0.06 0.37,0.96 -0.53,2.07 -1.5,1.59 -1.26,0.07 -1.24,1.52 -2.25,1.94 -1.07,0.68 -1.69,1.82 -2.94,2.28 -0.83,0.48 -0.36,1.61 -1.19,2.06 -0.26,1.44 -2.05,1.47 -3.09,2.06 -1.68,0.63 -3.79,0.69 -4.81,2.41 -0.74,1.12 -2.31,1.38 -2.91,2.53 0.09,0.69 1.14,1.48 0.28,2.09 -0.54,0.73 0.12,2.25 1,1.31 1.11,-0.59 0.46,-2.06 1.34,-2.72 0.47,-0.35 1.64,-0.38 0.94,0.47 -0.27,1 1.03,0.94 1.44,0.31 1.04,-0.54 2.36,-1.34 1.84,-2.72 0.32,-0.66 1.5,-0.16 1.72,-0.94 1.04,-0.2 1.07,-1.53 2.03,-1.78 0.29,-0.62 1.29,-0.47 1.25,0.28 0.78,0.69 0.73,2.04 1.94,2.31 1.03,0.28 0.65,-1.28 1.63,-1.19 1.05,0.03 2.71,-0.12 2.63,-1.56 -0.26,-0.83 0.73,-1.67 1.41,-1.19 0.06,0.98 1.09,1.51 1.91,0.88 0.7,-0.15 1.2,-1 1.75,-1.19 0.73,0.64 2.04,0.16 1.41,-0.88 -0.21,-0.68 -1.26,-1.96 -0.44,-2.5 0.73,0.02 0.98,1.18 1.88,1 0.8,0.05 2.06,0.18 2.44,0.94 0.27,1.46 -1.09,2.65 -1,4.03 0.83,0.82 2.32,-0.4 2.22,-1.44 0.36,-0.53 0.94,-0.88 1.13,-1.53 0.41,-0.49 1.01,0.65 1.47,-0.03 0.14,-0.56 0.32,-1.25 1.09,-1.16 0.44,0.83 0.09,1.94 -0.72,2.41 -0.34,1.06 -1.43,1.81 -1.41,3.06 -0.02,0.81 -0.04,1.58 -0.63,2.19 0.03,1.38 1.81,0.44 2.41,-0.03 1.07,-0.6 1.1,-1.96 1.16,-2.97 0.92,-0.16 1.57,0.93 2.56,0.5 0.78,-0.34 0.69,1.05 1.56,0.91 1.34,0.21 2.03,-1.1 2.91,-1.75 0.92,-0.22 0.6,-1.49 1.47,-1.84 0.81,-0.63 0.49,-1.76 0.09,-2.47 0.28,-0.69 0.96,-0.61 1.13,0.09 0.15,0.76 0.07,2.16 1.28,1.84 1.25,-0.04 2.05,-1.39 1.28,-2.44 -0.44,-0.54 -1.3,-0.54 -1.41,-1.38 -0.22,-0.56 -1.02,-2.15 0.22,-1.88 0.55,0.71 0.75,1.77 1.88,1.78 0.79,0.48 1.08,1.82 2.25,1.63 0.84,0.12 0.45,-1.32 1.28,-0.88 0.92,0.79 2.24,0.02 2.13,-1.16 0.05,-0.56 0.01,-1.23 0.44,-1.66 0.64,0.56 0.48,1.79 1.59,1.72 1.57,0.36 2.73,1.5 4.13,2.16 1.12,0.46 2.69,0.11 2.75,-1.31 0.06,-1.02 0.74,-1.68 1.53,-2.19 0.71,-0.87 -0.31,-1.64 -1.16,-1.59 -0.81,-0.78 0.58,-1.44 0.75,-2.16 0.13,-0.45 -0.94,-1.54 0.09,-1.28 0.79,0.3 1.46,1.06 2.22,1.28 0.57,0.62 -0.06,1.95 1.16,1.94 1.36,-0.13 2.61,0.29 3.78,0.91 0.68,0.34 1.16,-1.22 1.56,-0.25 0.23,1.21 1.34,2.04 2.56,1.63 1.06,-0.49 -0.01,-1.79 0.72,-2.56 0.63,-0.75 0.28,-1.63 -0.13,-2.34 0.83,-1.02 -0.49,-1.92 -1.47,-1.69 -0.79,-0.26 -1.53,-0.78 -2.38,-0.69 -0.69,-0.25 0.24,-1.2 0.75,-0.84 1.46,0.07 3.04,0.15 4.31,-0.56 0.35,-0.48 0.16,-1.79 1.13,-1.44 0.67,0.84 -0.23,2.3 1.09,2.66 1.73,0.78 3.4,-0.46 5.13,-0.38 0.57,0.79 1.68,0.43 1.75,-0.53 0.89,-1.1 1.57,-2.48 1.72,-3.88 -0.73,-0.93 -1.9,-1.27 -3,-0.94 -1.54,0.37 -2.8,-0.8 -3.34,-2.13 0.33,-1.38 -1.96,-2.16 -1.13,-3.53 0.43,-0.59 0.99,-0.06 0.94,0.53 0.4,1.22 1.97,1.77 1.72,3.22 0.31,1.65 2.15,0.86 3.06,0.34 0.78,0.66 1.64,0.29 2.31,-0.25 0.77,0.13 1.9,0 1.72,-1.06 1.13,0.18 2.31,0.76 3.5,0.81 0.17,0.73 1,1.12 1.53,0.47 1.42,0.08 2.12,-1.7 3.63,-1.31 0.92,0.18 1.35,-0.6 1.47,-1.34 0.37,-0.99 1.62,-0.72 1.84,-1.81 0.58,-0.71 0.52,-2.4 -0.75,-2.03 -0.51,0.27 -1.84,0.66 -1.59,-0.38 1.64,-0.47 3.25,-1.63 4.09,-3.13 -0.12,-1.34 -2.02,-0.71 -2.94,-0.97 -1.38,-0.21 -2.97,-0.45 -4.09,-1.25 0.2,-0.64 1.37,-0.35 1.94,-0.53 0.76,-0.13 1.79,1.06 2.09,-0.22 0.21,-1.09 -0.88,-1.55 -1.47,-2.16 0.09,-0.53 1.05,-0.69 0.94,-1.44 0.28,-1.2 -0.13,-2.99 -1.69,-2.84 -1.57,0.03 -3.39,0.33 -4.78,-0.25 -0.2,-1.06 1.51,-0.34 2.06,-0.66 1.31,-1.15 -1.33,-1.25 -2.06,-1.81 -0.1,-0.71 1.28,-0.2 1.75,-0.38 1.67,-0.11 2.95,1.32 4.69,1.19 1.37,-0.13 0.23,-1.12 -0.31,-1.56 -0.3,-0.63 1.29,-0.19 1.59,-0.34 0.68,0.16 2.22,-0.26 2.41,0.69 0.06,1.25 1.66,0.99 2.38,1.69 0.96,0.32 1.89,-0.27 2.84,-0.13 0.46,-0.35 0.76,-0.81 1.31,-1.06 0.32,-0.4 0.45,-1.42 0.91,-0.5 0.48,0.82 -0.55,1.71 0.13,2.56 -0.7,0.48 -2.49,0.68 -1.97,1.97 0.39,0.66 2.21,-0.44 1.78,0.75 -0.62,0.33 -1.2,0.82 -1.31,1.53 -0.84,0.59 -2.5,0.15 -2.63,1.59 0.38,0.84 -0.35,1.21 -1.13,1.16 -0.83,0.28 -0.44,1.22 0.09,1.56 0.4,1.87 2.78,0.93 4.09,1.19 0.71,0.14 1.44,0.96 2.09,0.09 1.18,-1.68 3.27,-1.9 5.16,-1.75 1.16,-0.08 1.79,-1.3 3.03,-1.22 1.36,-0.3 0.17,-1.58 0.44,-2.41 0.53,-1.79 2.55,-2.57 4.13,-3.22 1.67,-0.2 3.45,-0.48 4.91,-1.34 0.56,-1.11 -1.12,-0.81 -1.56,-1.47 -0.48,-0.17 -1.49,-0.27 -0.97,-1 0.74,-0.44 0.63,-1.77 1.59,-1.78 0.69,1.22 1.82,-0.1 2.16,-0.84 0.44,-0.95 2.05,-1.47 1.5,-2.72 -0.29,-1.21 -1.34,-1.93 -1.63,-3.13 -0.5,-0.61 -1.23,-1.66 -0.78,-2.41 0.5,-0.65 2.47,-0.84 1.56,0.28 -0.85,0.34 -0.6,1.46 0.28,1.38 1.28,0.71 3.02,2.12 2.13,3.75 -0.56,0.85 0.47,1.77 1.25,1.09 0.88,-0.71 2.25,-1.54 3.22,-0.5 0.56,0.79 2.18,1.11 2.28,-0.19 -0.2,-0.99 0.8,-1.43 1.03,-2.25 1.51,-1.53 3.86,-0.68 5.66,-1.59 1.61,-0.41 3.44,-1.72 2.75,-3.63 -0.03,-1.27 0.88,-2.23 1.38,-3.28 -0.24,-1.01 -1.63,-0.3 -2.16,-1.13 -0.75,-1.08 -1.97,-0.28 -2.94,-0.53 -0.69,-0.62 0.64,-1.4 0.28,-2.19 0.01,-0.86 1.52,-1.8 0.16,-2.41 -0.91,-0.18 0.05,-1.16 0.66,-0.88 0.76,0.14 1.31,1.73 1.97,0.63 -0.45,-1 1.72,-1.1 1.22,-0.13 0.08,0.94 1.4,2.67 2,1.16 0.65,-1.29 2.15,-1.85 3.5,-1.81 1.72,-1.09 3.36,-2.46 5.47,-2.75 1.24,-0.01 2.44,-0.41 3.53,-0.88 1.59,-0.09 3.21,0.17 4.78,-0.06 2.69,0.22 5.78,1.41 8.31,-0.03 0.63,-0.56 0.21,-1.64 1.19,-1.94 0.73,-0.33 1.7,-0.37 2.03,-1.25 0.74,-0.5 1.7,-0.29 2.28,0.31 0.56,0.2 1.4,-0.88 1.5,0.25 0.73,1.34 -2.17,1.79 -1.09,3.06 0.93,0.34 1.84,-0.67 2.81,-0.09 1.22,0.3 3.06,-0.26 3.06,-1.75 0.79,-0.9 1.97,-2.29 0.84,-3.41 -0.4,-1.97 0.98,-3.99 0.41,-5.91 -0.67,-0.89 -1.96,-1.57 -1.5,-2.91 0.15,-0.68 -0.74,-1.51 -0.03,-2.03 0.69,-0.13 2.39,-0.65 2.16,0.53 0.16,1.03 -1.13,2.46 0.22,3.09 1.65,0.72 2.25,2.59 3.47,3.78 1.33,1.63 0.46,3.9 1.31,5.66 1.74,0.31 3.92,-1.27 3.75,-3.22 0.35,-0.73 0.27,-1.72 -0.66,-1.88 0.04,-0.81 0.78,-1.53 0.88,-2.34 1.15,-0.02 1.9,-0.95 2.34,-1.84 1.07,0.09 2.27,-0.6 2.16,-1.81 0.08,-0.72 0.68,-0.52 0.75,0.09 0.46,0.93 0.49,1.88 -0.53,2.44 -0.67,0.87 -1.91,2.1 -1.25,3.25 0.94,0.46 1.82,-0.69 2.84,-0.53 1.46,-0.21 2.93,-1.04 4.41,-0.34 0.7,0.49 1.29,-0.82 1.81,-0.38 0.11,0.77 0.68,1.26 1.28,1.66 0.29,0.53 -2.6e-4,1.21 0.69,1.59 0.99,0.85 2.03,2.74 3.47,1.56 1.41,-0.9 3.23,-0.8 4.59,-1.69 0.46,-0.55 -0.23,-2.09 0.88,-2.03 0.53,0.75 1.66,0.12 2.09,1 0.81,0.2 0.99,0.96 1.41,1.53 0.96,0.5 2.03,0.57 2.91,1.28 1.49,0.72 2.07,-1.35 2.13,-2.44 -0.1,-1.86 2.2,-2.98 1.72,-4.84 -0.78,-1.22 -2.76,-0.31 -3.31,-1.81 -0.63,-1.06 -0.86,-3.31 -2.56,-3 -0.43,0.14 -1.02,0.97 -1.19,0.13 -0.08,-1.7 -1.58,-3.01 -1.34,-4.75 -0.15,-1.51 -1.62,-2.26 -2.78,-2.81 -0.55,-0.02 -1.88,0.08 -0.97,-0.72 0.74,-0.57 1.09,-1.47 1.63,-2.13 0.49,-0.47 1.86,-0.88 1.69,0.22 -0.5,0.68 -0.75,2.42 0.56,2.22 1.71,-1.07 3.79,-0.12 5.63,-0.5 0.1,-1.36 -0.18,-2.87 0.25,-4.25 0.41,-2.97 3.02,-4.86 4.25,-7.47 1.79,-3.17 3.81,-6.17 5.63,-9.31 0.92,-1.43 1.12,-3.26 0.13,-4.72 -0.09,-1.56 -0.46,-3.06 -1.06,-4.5 -0.5,-1.85 0.17,-3.65 0.91,-5.31 0.6,-2.32 2.19,-4.3 3.56,-6.22 1.45,-1.8 0.77,-4.33 1.06,-6.47 -0.06,-1.64 0.44,-3.15 1.44,-4.44 0.44,-1.73 1.78,-3.28 3.22,-4.28 1.24,-0.54 0.42,-2.32 1.16,-3.28 0.6,-1.01 1.18,-2.04 1.25,-3.25 1.04,-1.51 1.19,-3.31 1.91,-4.91 0.79,-0.54 0.46,-1.76 -0.53,-1.63 -1.43,-0.83 -2,-2.53 -2.34,-4 -0.04,-4.5e-4 -0.08,4.5e-4 -0.13,0 0.47,-0.81 0.1,-2.13 0.41,-3.06 0.54,-2.72 0.97,-5.55 0.5,-8.34 -0.08,-3.07 -2.77,-5.39 -2.47,-8.53 -0.1,-1.45 -1.61,-2.24 -1.72,-3.69 -0.34,-1.8 -0.95,-3.79 -0.47,-5.59 0.64,-0.66 1.31,-2.06 0.06,-2.53 -2.02,-1.29 -4.77,-1.44 -6.25,-3.5 -0.35,-1.32 -0.86,-2.59 -1.72,-3.66 -0.2,-0.86 -0.38,-2.27 0.94,-1.81 1.24,0.05 2.64,0.12 3.16,-1.31 0.62,-0.97 1.63,-1.48 2.66,-1.91 0.51,-1.05 -1.07,-2.12 -0.59,-3.16 1.56,-0.81 0.66,-2.84 -0.69,-3.31 -1.18,-0.75 -3.25,-0.69 -3.91,-2.06 0.27,-0.84 1.32,0.03 1.91,-0.5 0.97,-0.2 1.86,-1.27 2.84,-0.53 1.31,0.31 2.62,-2.3 0.84,-2.5 -1.02,-0.24 -2.52,0.31 -3.28,-0.47 0.98,-1.88 3.49,-1 4.94,-2.09 0.72,-1.2 1.18,-2.92 0.69,-4.28 -0.59,-0.67 -0.91,-1.47 -1.38,-2.19 -0.95,-1.03 -2.67,-0.5 -3.41,-1.81 -0.43,-0.63 -0.49,-1.45 -1.28,-1.81 -0.71,-0.91 -0.83,-2.33 -2.13,-2.72 -1.22,-1.54 -1.46,-3.72 -2.06,-5.56 -0.61,-1.42 -0.08,-3.21 -1,-4.47 -1.47,-0.53 -2.98,0.74 -4.53,0.56 -0.67,0.26 -1.07,-0.52 -0.28,-0.63 1.42,-0.38 2.75,-1.08 3.81,-2.06 1.11,0.43 1.44,-0.88 1.31,-1.72 0.13,-1.56 0.76,-3.05 1.06,-4.53 -0.38,-0.84 -1.74,-0.82 -1.78,-1.94 -0.42,-1.94 0.73,-3.81 0.78,-5.69 -0.74,-0.88 -1.98,-0.78 -2.84,-1.31 -0.95,-0.89 -2.48,0.16 -3.38,-0.97 -2.39,-2.12 -2.26,-5.58 -2.53,-8.47 0.6,-0.82 1.45,-1.69 1,-2.81 0.18,-1.02 2.24,-1.71 1.25,-2.84 -1.09,-0.64 -2.85,-0.03 -3.66,-1.06 0.22,-0.87 1.1,-0.75 1.75,-0.44 1.94,0.35 4.3,-0.63 5.84,1.06 1.61,1.43 3.52,2.38 5.66,2.69 1.74,0.33 3.82,0.74 5.13,-0.81 0.81,-0.51 1.66,-1.63 0.59,-2.38 -0.91,-0.47 -0.59,-2.09 -1.88,-1.94 -1.02,-0.41 -2,-1.09 -2.75,-1.84 -0.64,-1.67 -2.15,-2.59 -3.53,-3.56 -0.74,-0.71 -1.23,-1.7 -2.31,-1.88 -0.58,-0.87 -1.66,-1.25 -1.88,0.06 -0.83,0.94 -2.12,0.64 -3.16,0.88 -0.59,0.65 -0.08,1.8 -1.03,2.28 -1.57,1.14 -3.59,1.09 -5.34,1.72 -1.21,0.21 -1.12,-2.11 -2.25,-1.19 -1.81,2.11 -4.74,1.6 -7.19,2.03 -1.11,0.77 -3.08,1.69 -4.03,0.19 -0.85,-1.29 -2.75,-2.29 -2.19,-4.03 0.02,-1.53 0.81,-2.98 0.25,-4.5 0.37,-1.93 2.59,-3.86 1.22,-5.84 -0.6,-1.1 -2.01,-3.02 -3.38,-1.84 -0.93,1.27 -3.2,1.27 -3.78,-0.31 -1.86,-0.85 -3.54,-2.27 -4.41,-4.16 -0.11,-1.27 -1.09,-2.23 -1.19,-3.5 -0.92,-0.89 -2.81,-1.37 -2.94,-2.84 -0.11,-1.28 1.91,-1.73 1.22,-3.13 -0.66,-1.4 -0.46,-3.93 -2.47,-4.16 -1.29,-0.58 -0.24,-2.57 -1.72,-3 -1.58,-1.35 -2.85,-3.25 -4.94,-3.84 -0.76,-0.73 -2.13,-0.87 -2.53,0.31 -0.68,1.68 -1.89,3.03 -2.88,4.5 -0.53,2.31 -3.16,2.95 -4.78,4.25 -0.47,0.82 -0.18,1.93 -0.97,2.63 -0.21,0.7 0.53,1.17 0.56,1.84 0.5,0.58 1.41,0.65 1.63,1.53 1.02,1.73 0.74,3.94 0.25,5.78 -0.59,0.82 -1.49,1.34 -2.5,1.03 -1.53,0.02 -3.03,0.98 -3.41,2.47 -0.91,0.2 -1.01,1.25 -0.44,1.91 0.1,1.6 -0.8,3.1 -1.44,4.53 -0.64,1.42 -2.07,2.49 -3.69,2.19 -1.1,0.14 -2.28,0.47 -3.22,-0.34 -0.92,-0.56 -2.13,0.68 -2.94,-0.16 0.01,-0.83 -0.61,-1.31 -1.38,-1.38 -0.78,-0.8 -1.79,-1.41 -2.34,0.03 -0.59,0.79 -1.23,2.07 -2.44,1.53 -1.04,-0.18 -2.28,-1.4 -3.16,-0.25 -0.9,0.21 -2.02,-0.57 -2.56,-1.19 -0.7,-0.78 -2.02,-0.47 -2.69,-1.41 -0.96,-0.59 -1.07,-1.66 -1.5,-2.56 -0.57,-1.01 -1.73,-1.1 -2.69,-1.38 -0.97,-0.69 -0.43,-2.87 -2.16,-2.34 -1.83,0.27 -3.51,-0.98 -5.31,-0.16 -1.83,0.82 -3.71,-0.31 -5.03,-1.5 -0.59,-2.25 -0.45,-4.68 -1.31,-6.84 0.06,-0.87 -0.25,-2.01 -1.38,-1.78 -1.32,-0.47 -2.58,-1.19 -3.91,-1.63 -1.03,-1.53 -1.41,-3.72 -3.16,-4.69 -0.04,-0.8 -0.53,-1.53 -1.44,-1.38 -2.98,-0.8 -3.59,-4.26 -5.66,-6.19 -1.22,-1.39 -3.1,-2.33 -3.75,-4.09 0.95,-0.72 -0.84,-1.59 -0.97,-2.41 0.12,-1.71 2.35,-0.96 3.47,-1.22 1.56,-0.36 2.28,-2.51 4.13,-2 1.07,0.21 1.45,-0.79 1.38,-1.66 0.5,-1.47 1.43,-2.81 2.09,-4.19 1.14,-0.7 2.71,-0.86 4,-0.59 1.84,1.54 4.43,0.75 6.63,0.91 1,0.15 1.4,-0.71 1.47,-1.53 0.46,-1.27 2.13,-1.71 2.25,-3.13 0.57,-0.99 2.45,-0.1 2.53,-1.56 0.32,-0.69 1.89,-1.52 0.69,-2.06 -1.49,0.33 -2.05,-1.8 -3.63,-1.38 -1.04,0.07 -2.8,1.05 -3.28,-0.44 -0.23,-1.01 -0.72,-2.17 -1.94,-2.09 -1.66,-0.43 -2.33,-2.14 -2.16,-3.72 0.26,-0.84 -0.67,-2.55 0.66,-2.75 1.54,-0.13 2.47,-1.35 3.22,-2.56 0.93,-0.95 2.84,-2.22 4.03,-1.06 0.35,0.98 1.21,1.31 2,1.78 0.75,1.22 1.95,1.36 2.72,0.03 1.24,-1.28 3.37,-1.22 4.44,-2.75 0.82,-0.56 1.96,-1.49 2.97,-1.13 1.17,0.86 2.76,-0.14 4.09,0.06 1.04,-0.75 0.22,-2.48 0.53,-3.66 -0.06,-2.8 3.34,-3.41 4.69,-5.38 0.98,-1.38 1.08,-3.08 1.91,-4.56 0.41,-1.38 -0.35,-2.81 -0.13,-4.25 0.19,-1.4 -0.47,-3.44 1.13,-4.19 0.69,-0.47 1.86,-0.41 1.84,-1.53 0.36,-1.32 -0.29,-2.73 0.47,-3.97 -0.18,-2.87 2.37,-4.86 4.09,-6.78 1.2,-1.18 3.69,0.31 4.84,-1.28 0.25,-1.14 1.68,-0.39 2.13,-1.38 1.24,-2.23 3.08,-4.07 4.41,-6.25 1.21,-1.61 2.7,-2.88 4.63,-3.5 2.21,-1.26 4.23,-2.94 6.69,-3.72 2.01,-1.06 4.32,-2 5.72,-3.84 0.15,-1.87 -2.07,-2.68 -3.63,-2.72 -1.12,0.03 -1.93,-0.58 -2.69,-1.34 -0.86,-0.77 -2.04,-0.53 -3,-0.69 -1.1,-0.6 -1.68,-2.01 -3.09,-1.91 -0.73,-0.89 -2.25,0.06 -3,-0.5 0.21,-1.15 -0.14,-2.3 -0.97,-3.16 -0.34,-0.62 0.58,-1.4 -0.19,-1.97 -1.34,-1.45 -3.48,-1.63 -5.03,-2.72 -1.8,-0.25 -3.46,-1.15 -5.34,-1.09 -0.13,-0.05 -0.26,-0.06 -0.38,-0.03 z M 30.43,745.38 c -1.25,0.29 -2.01,1.55 -3.34,1.75 -1.94,0.64 -1.51,3.3 -0.53,4.59 0.65,0.86 1.05,2.23 -0.03,2.94 -0.9,0.48 -2.06,1.09 -1.59,2.34 -0.12,0.89 0.06,2.72 1.38,2.09 0.67,0.06 1.79,-0.28 1.25,-1.16 -0.5,-0.48 -0.61,-1.19 0.13,-1.41 0.76,-0.03 2.41,0.19 2.09,-1.06 -0.28,-0.43 -1.4,-0.97 -0.78,-1.56 0.78,-0.23 0.21,-1.51 1.16,-1.34 0.74,0.02 2.57,0.03 1.94,-1.19 -0.48,-0.38 -0.72,-1.87 0.22,-1.47 0.62,1.08 1.01,2.65 2.53,2.63 1.04,0.22 0.75,-1.23 1.66,-1.38 0.93,-0.29 1.62,-2.2 0.16,-2.09 -0.73,0.01 -1.06,1.32 -1.78,0.91 0.05,-0.76 0.29,-1.94 -0.81,-2.06 -1.05,-0.13 -1.58,-1.13 -1.94,-1.97 -0.44,-0.42 -1.08,-0.62 -1.69,-0.56 z m -5.81,16 c -1.65,0.39 -2.14,2.17 -1.94,3.66 0.08,0.89 -0.72,2.03 0.44,2.5 0.76,0.53 2.63,1.41 2.88,-0.06 -0.03,-1.26 -2.41,-1.19 -1.72,-2.66 0.57,-0.94 2.02,-2.32 0.91,-3.38 -0.17,-0.09 -0.37,-0.09 -0.56,-0.06 z m 1.94,14.84 c -1.36,0.27 -1.77,1.85 -2.84,2.44 -0.99,0.21 -2.57,0.6 -3.16,-0.44 -0.93,-0.51 -2.25,-0.14 -2.38,1 -0.26,0.91 -2.01,1.98 -0.91,2.72 1.63,0.29 3.31,0.3 4.84,-0.31 0.85,0.56 1.83,1.51 2.66,0.34 1.07,-0.93 2.6,0.37 3.06,1.41 0.2,0.99 -0.54,2.01 -0.41,3.06 -0.33,0.75 0.18,2.29 1.09,1.41 1.17,-0.65 1.42,0.97 2.19,1.47 0.89,0.47 0.33,1.54 1.13,2.09 0.54,0.63 1.85,1.8 2.44,0.63 0.57,-1 0.49,-2.38 -0.72,-2.78 -0.23,-0.81 1.05,-1.33 0.97,-2.22 0.34,-0.99 -0.02,-2.27 -1.22,-2.28 -0.64,-0.3 0.28,-1.29 0.16,-1.84 0.21,-1.01 -0.33,-2.13 -0.16,-3.06 1.35,-0.23 1.48,-2.08 0.28,-2.66 -0.59,-0.62 -1.79,-0.82 -2,0.19 -1.33,0.15 -2.94,0.36 -3.88,-0.81 -0.34,-0.21 -0.75,-0.4 -1.16,-0.34 z m 13.84,7.72 c -1.34,-0.03 -3.39,0.62 -2.94,2.34 0.31,0.86 -0.75,1.3 -0.72,2.13 -1.09,0.59 -1.17,1.92 -0.53,2.88 -0.33,0.79 -1.02,2.09 0.25,2.47 1.8,0.65 3.71,0.03 5.38,-0.66 1.42,-0.46 2.37,-1.81 3.13,-2.91 0.03,-1 -1.33,-1.02 -1.44,-2.03 -1.25,-1.27 0.46,-1.7 0.38,-2.78 -0.94,-0.25 -2.03,-0.35 -2.56,-1.28 -0.28,-0.19 -0.61,-0.18 -0.94,-0.16 z m 12.63,77.56 c -0.13,-0.01 -0.28,0.06 -0.44,0.19 -0.12,1.09 -2.39,0.79 -1.69,2.13 0.38,0.19 0.71,0.53 0.16,0.78 -1.31,0.65 -0.09,2.25 1.03,2.09 0.97,1.22 2.35,-0.41 2.44,-1.47 0.32,-1.03 -0.28,-1.98 -0.81,-2.75 -0.06,-0.4 -0.3,-0.94 -0.69,-0.97 z m 4.88,0.47 c -0.09,7.1e-4 -0.19,0.03 -0.28,0.06 -1.18,0.51 -2.36,2.54 -1.06,3.47 1.33,0.24 2.66,-0.84 2.34,-2.25 -0.01,-0.55 -0.4,-1.29 -1,-1.28 z", + "nir" : "m 266.65,636.53 c -1.23,0.88 -2.57,1.74 -3.09,3.22 -0.91,1.19 -2.6,0.66 -3.72,1.54 -1.65,0.56 -3.54,0.17 -5.08,1.11 -1.68,0.33 -3.9,0.98 -4.01,3.08 -0.3,1.03 1.28,1.07 1.28,1.85 -1.02,0.51 -2.22,-0.71 -3.37,-0.35 -0.9,-0.24 -1.48,-1.28 -2.56,-0.99 -3.47,0.3 -7.57,0.54 -9.98,-2.47 -1.36,-0.67 -0.79,1.37 -1,2.16 -0.13,2.11 -1.05,4.01 -1.59,5.97 -0.19,0.53 1.22,1.23 0.26,1.37 -1.09,-2.7e-4 -3.04,0.32 -2.63,1.87 0.54,0.76 0.49,1.69 -0.24,2.31 -0.83,0.61 -0.54,2.02 -1.67,2.23 -1.98,0.56 -4.16,1.27 -6.22,0.76 -0.92,-0.38 -0.96,-1.83 -2.18,-1.82 -1.27,0 -3.11,-0.04 -3.83,1.2 0.15,0.75 -0.47,1.09 -1.13,0.81 -1.52,0.04 -2.39,1.83 -2.76,3.1 -0.21,1.11 -1.99,1.08 -1.84,2.44 -0.15,1.2 -1.86,1.25 -2.24,2.39 -0.83,1.59 -2.18,3 -3.77,3.84 -1.08,-0.21 -3.2,0.15 -2.67,1.7 0.56,1.38 -0.54,2.97 0.42,4.28 0.26,1.99 -1.4,3.69 -1.78,5.61 -0.65,2.08 -2.59,3.2 -4.33,4.26 -1.68,1.67 -0.52,4.25 -0.48,6.29 -0.24,1.56 -2.19,1.01 -3.25,0.9 -1.43,0.1 -2.84,-0.24 -4.23,-0.29 -1.43,0.8 -2.61,2.11 -4.26,2.54 -1.49,0.61 -2.16,2.56 -4.02,2.32 -1.3,0.2 -1.77,-1.62 -3.05,-1.74 -0.82,-0.31 -0.97,-1.92 -2.1,-1.27 -1.31,0.84 -1.6,2.75 -3.07,3.37 -0.42,0.93 -1.32,2.53 -0.28,3.32 1.21,0.08 2.8,0.69 2.87,2.11 0.63,1.15 1.76,-0.07 2.58,-0.06 1.17,0.42 2.06,1.23 3.03,1.9 1.35,0.42 2.53,-0.72 3.76,-0.83 1.28,0.59 1.89,2.51 1.32,3.72 -1.62,0.88 -3.77,1.05 -4.78,2.8 -1.44,0.96 -3.26,1.88 -3.81,3.64 0.23,1.63 -1.75,2.62 -3.17,2.42 -2.52,-0.01 -5.2,0.44 -7.5,-0.82 -2.06,-0.45 -3.1,2 -3.73,3.53 -0.21,0.91 -0.07,2.78 -1.48,2.55 -0.9,-0.04 -1.89,0.03 -2.42,0.82 -1.3,0.83 -3.58,1.58 -3.16,3.54 1.34,1.83 3.28,3.21 4.48,5.19 0.78,1.26 1.38,3.05 3.15,3.17 1.08,-0.24 2.49,0.11 2.45,1.44 0.66,1.61 1.72,3.04 2.46,4.61 1.21,1.11 3.03,0.76 4.45,1.11 0.62,0.97 1.77,1.75 1.52,3.07 0.28,1.98 0.76,3.89 0.82,5.92 0.2,2.07 2.82,1.89 4.3,1.53 1.92,-0.53 3.72,0.73 5.66,0.19 0.72,-0.11 2.16,-0.41 1.77,0.86 0.02,1.44 1.9,1.44 2.51,2.54 1.12,0.86 1.48,2.21 2.19,3.32 0.77,0.88 2.26,0.46 2.88,1.59 0.67,0.73 1.14,-0.56 1.91,-0.15 1.26,-0.02 2.63,1.92 3.51,0.29 1.2,-1.51 3.31,-3.15 5.31,-2.37 0.48,0.73 1.3,0.93 2.03,1.28 0.77,0.28 0.85,2.08 1.83,1.18 0.12,-1.47 1,-2.91 1.96,-3.96 1.21,-0.4 3.27,0.12 3.13,-1.77 0.25,-1.23 0.59,-3.09 2.17,-3.06 1.32,-0.3 2.23,-1.63 3.51,-1.86 0.44,0.52 1.45,0.39 1.27,-0.46 -0.5,-1.18 0.92,-2.69 -0.42,-3.54 -1.24,-0.09 -1.52,-1.38 -2.13,-2.2 -1.15,-0.69 -1.37,-2.65 0.08,-3.1 2.01,-0.56 -1.01,-2.7 0.58,-3.41 0.79,-0.95 1.85,0.54 2.72,-0.3 1.09,-0.59 2.08,-1.41 2.39,-2.61 0.78,-1.48 2.33,-2.3 2.84,-3.96 0.49,-1.3 1.77,-2.96 3.32,-2.59 1.05,0.66 2.17,1.29 3.38,1.55 1.55,1.23 2.84,2.83 4.41,4 0.44,1.07 1.12,2.04 2.19,2.54 1.18,2.03 1.63,4.47 2.15,6.78 0.12,0.98 -1.71,2.47 -0.07,2.68 0.93,-0.06 2.12,0.73 1.66,1.78 -0.26,1.05 0.81,1.59 0.91,2.57 0.59,1.52 1.65,3.08 3.28,3.48 0.56,0.47 1.7,1.74 2.23,0.53 0.56,-1.08 1.89,-1.09 2.81,-0.45 1.71,0.83 3.17,2.44 3.65,4.31 0.17,1.21 0.12,2.46 -0.47,3.5 -0.3,0.95 -1.42,1.83 -0.79,2.92 0.82,1.37 -0.51,2.57 -0.46,3.92 0.28,0.91 1.14,1.46 1.49,2.34 1.13,0.8 1.74,-1.22 2.97,-0.78 1.72,0.13 3.42,-0.33 5.02,-0.82 1.21,-0.77 2.92,-2.07 4.31,-0.9 1.16,1.28 3.11,0.35 4.27,-0.44 0.72,-1.27 -0.75,-3.12 0.3,-4.25 1.1,-0.63 2.44,-0.46 3.38,0.34 1.12,0.43 1.65,-0.99 1.01,-1.77 -0.32,-1.67 -2.03,-2.88 -1.92,-4.61 0.33,-0.33 0.88,0.74 1.14,0.99 1.61,2.28 2.44,5.86 5.62,6.39 1.31,0.11 3.55,-0.23 3.76,1.61 0.47,1.73 2.39,3.02 4.12,2.18 0.73,0.36 1.57,0.43 2.29,0.78 0.53,0.38 1.45,1.36 1.03,1.99 -0.99,-0.04 -1.02,1.3 -0.05,1.35 1.87,0.77 3.42,-0.99 4.45,-2.31 0.9,-1.12 2.76,-0.75 3.22,-2.28 1.25,-2.03 4.43,-2.74 4.48,-5.46 -0.14,-2.57 2.1,-4.92 0.92,-7.46 -0.64,-1.07 -1.39,-2.62 -0.15,-3.57 0.69,-0.84 2.52,-1.95 1.48,-3.12 -0.01,-1.09 1.38,-1.62 1.69,-2.63 0.43,-0.49 0.68,-1.87 1.43,-1.82 0.49,0.78 -0.42,1.86 0.22,2.69 -0.28,0.64 -0.39,1.61 0.65,1.51 2.12,0.23 3.93,-1.31 6.03,-0.79 1.29,0.04 2.86,0.39 3.14,1.9 0.61,1.04 1.6,-0.2 1.4,-1.01 -0.04,-0.73 -0.41,-1.86 0.74,-1.77 0.67,0.56 1.41,0.11 1.82,-0.5 2.08,-0.45 3.04,-2.69 3.71,-4.5 1.18,-1.4 0.03,-3.37 -0.03,-4.96 0.01,-0.92 -0.57,-1.48 -1.28,-1.86 -0.67,-0.38 -0.77,-1.93 -1.79,-1.23 -0.65,0.34 -1.56,-0.03 -2.06,0.7 -0.81,0.13 -1.1,1.12 -2.06,0.97 -1.19,0.02 -1.87,1.25 -2.84,1.57 -0.85,-0.86 0.69,-1.57 0.8,-2.45 0.77,-1.41 2.84,-2.26 2.77,-4.02 -0.74,-1.85 1.26,-4.03 -0.29,-5.62 0.25,-0.8 -0.65,-1.45 -0.18,-2.28 0.35,-1.62 -2.29,-1.98 -1.63,-3.64 0.31,-1.78 -1.22,-3.12 -2.84,-3.4 -0.24,-0.98 1.78,-1.14 1.47,-2.38 -0.01,-1.12 0.14,-3.01 1.47,-3.26 1.06,0.28 1.47,1.58 2.55,1.86 0.86,0.81 2.23,0.73 2.88,1.87 0.56,1.03 1.36,2.02 2.64,1.91 0.9,1.19 0.73,2.94 1.45,4.26 0.34,0.89 0.96,1.73 0.47,2.66 0.05,1.88 0.46,4.13 -0.52,5.77 -1.3,-0.38 -2.6,0.76 -2.4,2.1 0.46,1.67 2.08,2.72 2.65,4.37 0.67,0.56 0.6,1.35 0.81,2.11 0.65,1.02 1.9,-0.04 1.76,-0.98 0.24,-1.19 0.03,-3.2 1.61,-3.4 1.03,-1.54 -0.39,-3.3 -0.7,-4.82 0.39,-1.09 1.85,-1.33 2.09,-2.59 0.56,-1.44 1.17,-3.78 -0.61,-4.6 -0.79,-1.44 -0.93,-3.17 -1.64,-4.66 -0.4,-1.16 0.07,-2.33 0.14,-3.44 -0.52,-1.04 -1.51,-1.79 -1.93,-2.87 -1.12,-0.64 -1.04,-2.18 -1.63,-3.18 0.04,-1.76 -0.26,-3.65 -1.84,-4.71 -0.66,-0.74 -1.07,-1.87 -2.29,-1.73 -0.88,-0.09 -2.08,-0.23 -2.42,0.74 -0.87,0.43 -1.96,0.32 -2.83,0.68 -1.32,-0.65 -2.93,-0.06 -4.15,-0.99 -1.93,-0.01 -3.74,1.2 -5.32,2.19 -1.28,1.03 -2.51,2.1 -3.74,3.14 -0.44,0.82 -1.35,0.83 -1.96,1.33 -0.19,0.78 -1.08,1.62 -1.73,1.79 -0.32,-2.76 0.56,-5.38 1.74,-7.82 0.43,-1.69 2.11,-2.74 3.17,-4.05 1.21,-1.52 3.23,-1.87 4.87,-2.69 1.32,-0.24 2.55,-0.75 3.42,-1.84 2.34,-1.8 2.64,-5.02 2.2,-7.73 -0.7,-1.88 -1.49,-4.53 -3.74,-4.97 -1.13,-0.16 -1.83,1.37 -0.74,1.96 0.72,0.43 1.31,0.92 1.55,1.71 1.15,1.23 1.91,3.08 1.58,4.77 -0.08,0.6 -0.6,0.63 -0.75,0.02 -0.82,-1.35 -1.33,-3.15 -2.55,-4.11 -1.12,-0.07 -2.43,-0.61 -3.13,-1.5 -0.36,-0.9 -0.62,-2.18 0.22,-2.86 0.49,-1.88 -2.13,-2.43 -2.29,-4.17 -0.28,-1.14 -1.7,-0.79 -2.16,-1.82 -1.49,-2.1 -1.74,-5.06 -3.81,-6.77 -0.75,-0.46 -1.91,-0.01 -2.15,-1.11 -0.56,-0.5 -1.55,-0.23 -1.86,-1.11 -0.08,-1.9 1.26,-3.52 1.31,-5.45 0.45,-0.93 0.47,-2.28 -0.78,-2.53 -1.28,-0.46 -2.66,0.04 -3.89,0.2 -0.82,-0.34 -1.55,-1.04 -1.18,-2.02 -0.04,-2 1.59,-3.68 1.31,-5.7 -0.35,-0.47 -0.66,-0.95 -0.24,-1.55 1.27,-1.34 1,-3.55 -0.52,-4.57 -0.66,-1.69 -2.07,-3.23 -3.83,-3.87 -1.39,-0.06 -1.73,-2.38 -3.07,-2.08 -1.4,1.46 -3.52,2.2 -5.43,2.53 -1.52,-0.88 -2.88,-1.98 -4.47,-2.74 -1.69,-0.31 -3.33,-2.06 -5.13,-1.19 -0.75,0.54 -1.62,1.18 -2.56,0.54 -1.17,-0.42 -2.66,-0.22 -3.38,-1.46 -0.25,-0.3 -0.63,-0.75 -1.06,-0.48 z", + "imn" : "m 407.92,731.85 c -1.8,0.94 -3.78,1.34 -5.67,2.02 -2.14,1.36 -4.59,2.75 -5.79,5.07 -0.74,2.73 -2.25,5.25 -3.2,7.93 -1.65,3.06 -4.3,5.59 -7.36,7.19 -0.81,1.38 -0.38,3.32 -1.33,4.71 -0.8,0.74 -0.57,1.75 -0.23,2.63 0.26,1.89 -0.39,3.82 -1.27,5.43 -0.78,-0.01 -2.1,0.84 -1.05,1.55 0.74,0.26 0.58,1.11 -0.1,1.35 -0.63,0.39 -1.67,1.85 -0.41,2.05 1.53,-0.37 2.12,-2.38 3.59,-2.76 0.88,0.15 1.94,0.03 2.32,1.07 0.74,1.74 2.16,-0.15 3.4,-0.15 1.66,-0.78 2.63,-2.96 4.69,-2.83 1.34,-0.25 1.46,-1.87 2.35,-2.57 1.24,-0.44 3.28,-0.7 3.2,-2.45 -0.45,-1.54 1.12,-2.59 2.45,-2.62 1.29,-0.54 2.66,-1.56 3.2,-2.88 -0.26,-0.77 -0.99,-1.53 -0.5,-2.43 0.29,-1.26 2.12,-1.48 1.99,-2.93 0.32,-1.31 1.63,-2.03 1.98,-3.31 0.72,-0.6 0.61,-1.69 1.02,-2.34 1.03,-0.97 -0.84,-1.53 -1.55,-1.69 -1.93,-0.33 -2.38,-2.54 -2.47,-4.17 0.33,-2.51 1.85,-5.03 1.39,-7.59 -0.11,-0.25 -0.4,-0.36 -0.66,-0.28 z", + "wls" : "m 404.34,844.34 c -1.13,0.14 -0.99,1.98 -2.41,1.47 -2.25,0.32 -4.41,1.01 -6.63,1.28 -0.68,0.79 0.61,1.42 0.38,2.31 0.89,2.55 -1.96,5.55 0.28,7.84 1.19,0.44 0.62,1.6 -0.22,2.06 -1.76,0.64 -1.33,1.82 -0.06,2.56 0.73,1.32 0.75,3.02 2.22,3.94 0.28,1.08 1.12,1.84 1.59,2.81 0.1,1.31 0.06,3.3 1.97,3.03 1.47,-0.18 1.18,2.92 2.91,1.91 0.88,-0.75 1.43,-2.95 2.91,-2.53 0.62,1.03 0.47,2.89 -0.97,3.03 -1.45,0.85 -0.11,2.28 1.03,2.53 1.1,1.05 2.39,0.47 2.94,-0.66 1.5,-0.09 3.03,-0.53 3.94,-1.88 1.27,-1.63 4.33,-2.09 4.22,-4.59 1.33,-2.41 4.45,-3.1 6.28,-5.16 1.34,-0.99 2.4,-2.2 2.88,-3.78 0.42,-0.85 2.14,-2.75 0.38,-3.09 -1.54,-0.27 -3.82,-0.98 -4.63,0.88 -1.35,0.41 -2.85,0.93 -4.28,1.19 -1.22,-0.66 -0.29,-2.45 -1.16,-3.44 -1,-1.12 -0.59,-2.74 -1.44,-3.81 -1.11,0.22 -1.86,-1.19 -3,-0.75 -0.12,-1.6 1.51,-3.23 0.28,-4.78 -1.23,-1.81 -3.86,-0.44 -5.44,-1.13 -0.56,-1.57 -2.5,0.13 -3.13,-1.13 -0.19,-0.1 -0.42,-0.15 -0.63,-0.13 -0.09,-0.01 -0.14,-0.01 -0.22,0 z m 74.13,8.44 c -0.07,-0 -0.15,0.02 -0.22,0.03 -4.79,0.73 -8.96,3.47 -13.34,5.31 -2.71,0.58 -5.24,2.2 -8.16,1.63 -1.86,-0.33 -4.48,0.19 -5.88,-1.22 -1.17,-2.18 -4.36,-2.43 -6.56,-2.06 -1.22,1.33 0.71,3.2 1.72,4.09 1.2,0.32 0.78,2.11 0.25,2.84 -1.2,0.92 1.11,2.98 -0.69,3.19 -0.55,-0.85 -1.5,-2.35 -0.88,-3.19 1.44,-1.34 -0.91,-3.73 -2.56,-3.25 -2.28,0.48 -3.87,2.51 -6.22,2.84 -2.89,1.34 -5.54,3.98 -8.84,3.94 -2.57,-1.28 -4.79,1.21 -6.94,2.19 -1.53,0.83 -0.48,3.01 -2.06,3.91 -1.77,2.32 -4.82,3.93 -5.72,6.84 0.16,1.27 -0.65,2.03 -1.44,2.78 -0.76,2.51 0.08,5.61 -2.28,7.47 -1.45,1.52 -2.73,3.38 -4.78,4.03 -1.51,1.26 -2.25,3.2 -3.88,4.44 -1.08,1.58 -2.86,1.85 -4.63,1.84 -1.23,0.6 -2.48,1.26 -3.56,2.06 -0.5,1.72 -3.19,2.08 -3.09,4.19 -1.04,1.05 -1.76,2.45 -3.13,3.13 -0.71,1.26 -1.05,2.78 -2.06,3.94 -0.43,0.77 -1.61,2.69 -0.13,3 1.17,-0.23 0.99,-2.21 2.47,-1.78 2.03,-0.02 4.95,0.57 5.81,-1.91 1.03,-1.56 2.97,0.25 4.03,0.88 1.08,1.01 2.66,3.07 4.28,1.75 0.22,-0.95 -1.29,-1.38 -0.91,-2.47 0.05,-1.64 1.3,-2.91 1.78,-4.41 0.94,-1.52 2.7,-1.86 4,-2.78 1.22,-1.68 3.52,-1.65 5.41,-1.5 0.97,-0.13 0.76,-1.55 1.97,-1.41 2.18,-0.17 4.31,-1.07 6.47,-1 1.69,0.43 4.35,1.98 5.41,-0.28 0.35,-1.37 1.89,-0.54 2.72,-0.16 0.82,0.32 2.37,-0.52 2.84,0.03 -0.36,1.03 -1.75,1.5 -1.91,2.59 -1.1,1.13 -2.92,0.47 -4,1.34 0.06,1.68 1.77,3 1.72,4.81 0.5,1.7 -0.47,3.22 -1.59,4.41 0.79,2.41 2.95,4.41 4.06,6.78 0.59,0.94 1.64,3.5 3,2.19 0.37,-1.56 2.45,-1.06 3.47,-2.03 0.8,-0.28 2.73,-1.58 3.25,-0.34 0.05,0.94 -1.62,0.25 -2.06,1 -1.56,0.54 -2.15,2.33 -3.38,3.13 -2.27,0.75 -2.57,3.37 -4.28,4.75 -1.27,1.94 -3.08,4.21 -2.84,6.56 0.45,0.77 2.63,0.31 2.22,1.56 -1.62,1.62 0.61,3.82 1.03,5.5 0.81,1.89 3.28,0.24 4.69,0.09 1.22,-0.06 2.66,-1.4 3.78,-1 0.89,0.75 -1.16,1.54 -1.47,2.16 -1.4,1.39 -3.04,2.97 -5.25,2.44 -1.13,1.13 0.07,3.32 -0.59,4.88 -1.17,2.46 -1.54,5.2 -1.91,7.88 -0.62,2.73 -2.24,5.12 -2.63,7.91 -0.81,2.02 -2.13,3.79 -3.19,5.66 -1.6,2.31 -3.36,4.48 -5.94,5.69 -2.12,1.27 -4.09,4 -6.78,3.75 -1.52,-0.71 -2.52,1.6 -3.53,2.38 -1.6,2.2 -4.24,3.04 -5.75,5.34 -1.27,1.11 -3.11,1.19 -4.63,0.59 -2.11,-0.41 -4.17,-0.02 -6.13,0.66 -1.77,-0.02 -2.31,2.06 -1,3.06 0.16,0.63 0.06,2.02 -0.56,2.09 -0.38,-1.39 -1.76,-3.25 -3.44,-2.56 -0.62,1.13 -0.67,2.6 -1.72,3.59 -0.97,1.38 -2.4,2.54 -4.16,2.59 -1.57,0.77 -0.19,2.49 -0.13,3.53 -1.61,0.31 -3.65,0.54 -5,-0.38 -1.33,0.04 -0.38,2.11 -1.78,1.84 -1.06,0.62 -3.16,1.73 -3.75,0 -0.37,-1.6 -2.05,-1.17 -3.13,-1.47 -0.8,-0.57 -3.29,-1.04 -3.16,0.47 0.63,0.75 0.85,1.44 0.03,2.09 -0.75,0.98 0.38,3.07 -1.03,3.47 -0.79,0.32 -1.28,1.05 -2.28,1.03 -1.15,0.57 -2.19,1.38 -3.59,1.19 -1.57,0.27 -1.98,2.37 -3.69,2.34 -0.89,1.36 -2.75,1.53 -4,2.38 -0.19,0.87 0.08,1.73 -0.63,2.44 -0.58,1.33 0.92,1.99 1.91,1.25 2.89,-0.5 5.79,-0.03 8.53,0.84 2.58,0.52 2.12,3.85 3,5.72 0.17,1.71 0.49,4.17 -1,5.38 -1.16,0.46 -3.03,-0.73 -3.63,0.81 -1.93,0.87 -3.11,3.62 -1.44,5.28 1.2,0.66 1.23,-1.88 1.84,-1.69 0.41,1.55 3.39,1.81 3.69,0.13 1.38,0.33 2.06,2.45 3.81,1.63 2.03,-0.26 3.8,1.79 5.84,0.66 0.79,-0.34 3.19,-1.06 2.47,0.66 -0.98,0.66 -0.73,1.88 0.38,2.22 0.86,1.03 -1.28,1.14 -1.88,1.13 -1.54,0.29 -2.63,-0.62 -3.75,-1.44 -0.96,-0.61 -2.24,-0.22 -2.19,0.97 -0.8,0.28 -2.03,0.8 -1.25,1.88 1.17,1.4 -0.43,4.02 1.63,4.72 2.05,0.68 4.21,0.75 6.09,1.97 1.39,0.53 0.79,-1.49 1.97,-1.63 1.15,-1.91 3.16,-4.15 5.69,-3.63 1.44,0.48 3.88,1.02 4.5,-0.75 1.28,-0.06 3,0.27 3.06,-1.47 0.91,-1.79 0.97,-3.76 0.97,-5.66 1.49,-2.98 5.62,-2.36 8.38,-2.84 2.82,-0.7 5.8,1.3 8.5,0.22 1.24,-0.62 0.2,-1.75 -0.72,-1.97 -0.9,-0.65 -0.67,-1.69 -0.22,-2.47 0.01,-0.62 -1.53,-1.14 -0.34,-1.44 1.95,-0.29 1.76,2.15 2.91,2.97 2.65,0.6 2.96,-5.07 5.63,-3.78 -1.25,1.51 -2.69,3.81 -2.22,5.94 1.16,1.02 3.44,0.51 4.09,2.22 -0.87,1.56 -3.5,-1.18 -3.97,0.81 0.93,2.13 2.67,4.21 4.75,5.31 1.18,0.32 1.63,-1.35 2.94,-0.81 1.3,-0.03 2.3,-1.16 3.66,-0.56 2.19,0.36 3.39,3.69 6,2.53 0.81,-0.86 2.62,-0.29 2.38,0.84 -0.98,0.44 -2.04,0.7 -2.69,1.59 -0.93,0.43 -1.89,1 -2.38,1.81 -2.96,1.33 -7.04,-1.1 -9.34,1.91 -0.87,1.28 0.55,2.73 0.31,4.16 0.53,1.74 2.53,2.95 4.25,3.19 1.02,-0.55 2.17,-0.49 3.28,-0.53 0.74,-0.55 0.41,-1.79 1.53,-2.09 1.83,-1.4 3.71,0.66 5.59,0.44 1.15,-0.7 2.49,-0.64 3.75,-0.69 0.97,-1.01 0.35,-3.04 1.78,-3.84 3.02,-2.15 7.09,-1.38 10.38,-2.84 -0.38,1.99 0.67,4.63 3.03,4.34 0.98,0.19 0.53,1.32 0.19,1.78 0.81,2.7 1.94,5.32 2.84,8 0.81,0.93 1.12,2.24 2.03,3.03 1.54,0.38 4.27,-0.98 4.91,1.16 1.11,2.16 3.91,3.19 4.41,5.66 1.28,2.69 4.49,1.98 6.81,2.78 3.18,0.47 6.58,1.7 9.75,0.75 1.83,-1.28 4.32,0.05 6.06,-1.53 1.27,-0.77 3.51,0.82 4.03,-1.13 0.51,-1.51 -0.11,-3.54 0.63,-4.81 1.34,-0.26 1.64,-1.54 1.84,-2.63 0.45,-1.25 1.48,-2.03 2.72,-2.31 2.03,-1.73 4.6,-2.79 6.5,-4.66 0.67,-1.01 0.81,-2.47 1.38,-3.41 0.85,0.12 2.06,1.37 1.09,2.13 -0.18,1.7 2.33,1.01 3.34,1.09 3.2,0.03 5.71,-1.99 8.28,-3.56 1.46,-1.02 3.31,-1.05 4.81,-1.81 0.93,-1.29 2.08,-2.33 3.19,-3.44 0.32,-2.1 -1.81,-3.95 -1.31,-6.09 1.35,-0.61 1.07,-2.43 0.31,-3.34 0.22,-1.71 -1.07,-3.71 0.56,-5.03 0.65,-1.28 -0.87,-2.38 -0.53,-3.75 -0.17,-1.83 -0.03,-3.64 1.09,-5.13 0.61,-1.24 -0.97,-1.38 -1.81,-1.13 -1.53,-0.88 -3.97,-0.06 -4.78,-2.13 -1.15,-1.5 -1.23,-3.55 -2.91,-4.69 -1.11,-0.94 -2.19,-2.26 -3.72,-2.44 0.27,-1.75 -1.76,-1.54 -2.66,-0.72 -1.43,0.54 -2.93,2.15 -4.53,1.69 -0.32,-0.81 -0.61,-2.18 -1.81,-1.75 -1.56,-0.31 -1.12,-2.4 -2.25,-3.28 -2.25,-2.96 -4.75,-6.3 -4.19,-10.28 -0.15,-2.04 -2.84,-3.17 -2.03,-5.44 0.11,-1.33 1.3,-2.98 -0.22,-4 -0.94,-0.55 -0.91,-2.15 0.44,-2.03 2.22,0.34 1.29,-1.17 0.16,-1.81 -0.87,-1.54 1.69,-2.41 1.25,-4.09 0.29,-1.76 1.71,-3.11 1.84,-4.94 1.23,-0.25 1,-2.1 2.38,-2.25 2.68,-0.37 1.35,-3.51 1.81,-5.38 -0.5,-2.21 2.43,-2.55 2.84,-4.28 -0.62,-1.91 -3.08,-0.4 -4.41,-0.31 -3.19,0.41 -4.74,-3.07 -7.22,-4.41 -1.53,-1.82 -3.73,-2.8 -5.53,-4.25 -1.81,-2.57 0.18,-6.09 2.94,-6.91 2.58,-1.6 5.45,-2.45 8.47,-2.41 1.34,-0.34 0.43,-2.65 2,-2.81 1.71,-0.64 1.54,-3.26 1.03,-4.69 -1.42,-0.8 -2.76,1.2 -3.81,1.94 -0.88,1.07 -1.38,2.42 -2.94,2.72 -0.78,0.65 -2.55,0.15 -1.78,-1 1.58,-1.07 0.52,-2.79 -0.09,-4.03 -0.28,-1.06 -0.16,-2.37 1.19,-2.47 2.37,-1.08 2.25,-3.93 2.69,-6.06 2.13,-0.89 2.15,-3.48 1.84,-5.47 0.3,-0.81 1.58,-1.16 1.47,-2.34 -0.3,-1.53 2.46,-1.48 1.56,-3.09 -1.31,-0.59 -1.38,-2.54 -3,-2.69 -1.11,-0.15 -2.57,-0.14 -2.47,-1.59 -0.82,-1.1 -2.51,-0.19 -3.59,-1 -2.18,-0.45 -1.48,-3.3 -1.38,-4.88 0.16,-1.28 -0.03,-2.69 1.19,-3.5 0.5,-1.12 -1.11,-2.28 -0.13,-3.44 0.5,-0.92 2.16,-0.85 1.97,-2.22 0.13,-1.5 1.47,-3.07 3.09,-2.31 2.79,0.32 3.34,-3.18 5.59,-4.03 0.84,-0.81 1.53,-0.29 1.72,0.69 0.78,1.64 3.02,2.05 4.28,0.72 0.92,-0.31 1.86,0.62 2.81,0.69 1.71,1.11 2.71,2.92 3.75,4.56 1.45,-0.69 2.48,-2.29 4.06,-2.81 0.88,-1.52 1.52,-3.5 1.28,-5.25 -1.16,-0.95 -2.88,-0.76 -4.25,-1.31 -1.8,0.27 -4.03,-0.37 -4.34,-2.41 -0.84,-0.9 -1.68,-1.8 -1.34,-3.19 0.27,-1.51 -0.52,-2.7 -1.34,-3.81 -0.06,-0.87 -0.5,-1.62 -1.13,-2.13 -0.22,-0.81 1.44,-1.94 -0.13,-2.19 -2.41,-0.4 -4.18,-2.57 -5.59,-4.38 -0.29,-0.76 -0.31,-1.85 0.81,-1.56 1.12,-0.42 3.77,-0.73 3.25,-2.41 -1.57,-3.03 -4.11,-5.66 -7.19,-7.13 -1.41,-0.06 -0.96,1.83 -1.06,2.44 -2.21,-0.78 -4.11,-2.36 -5.72,-3.97 -2,-1.09 -3.32,-3.29 -5.31,-4.5 -2.19,-2 -5.79,-2.98 -6.56,-6.06 -0.14,-0.14 -0.33,-0.24 -0.53,-0.25 z", + "eng" : "m 564.31,573.38 -0.09,0.03 c -2.28,0.35 -2.22,2.86 -2.28,4.59 -0.82,0.62 -1.78,1.35 -2.16,2.47 -0.57,0.81 -2.38,0.18 -2.19,1.69 -0.17,0.75 -1.72,0.73 -1.31,1.88 -1.18,1.83 -3.29,3.24 -3.59,5.47 -1.37,0.33 -0.17,2.71 -1.75,2.5 -1.5,0.2 -3.15,-0.44 -4.56,0.13 -0.09,0.73 0.54,1.41 0.59,2.28 1.19,1.69 1.02,3.97 2.75,5.31 2.04,1.38 2.6,3.8 2.56,6.13 0.52,1.31 1.35,2.44 1.56,3.84 0.62,0.96 3.05,0.75 2.16,2.34 -1.25,1.58 -2.18,4.08 -4.63,4.03 -2.48,-0.03 -4.11,2.17 -6.25,3 -0.93,1.74 0.57,4.5 -1.91,5.34 -1.13,0.95 -2.76,1.92 -3.94,0.44 -1.53,-0.82 -3.4,0.22 -4.81,0.75 -0.89,1.48 -2.09,2.68 -3.56,3.63 -1.9,1.92 -4.45,3.58 -5.56,6.06 -0.04,0.88 1.7,1.15 0.88,2.03 -1.45,0.39 -1.24,2.37 -2.66,2.81 -2.38,1.79 -2.53,5.5 -5.59,6.47 -1.8,1.25 -3.6,2.61 -5.72,3.13 -2.39,3.8 -5.88,6.82 -9.22,9.84 -1.36,0.31 -4.76,-1.51 -4.78,0.53 0.74,2.31 -1.47,4.31 -0.81,6.69 0.48,0.74 0.02,1.67 -0.88,1.31 -1.36,0.3 -1.62,2.91 0.19,2.03 0.73,0.19 1.49,1.81 0.06,1.44 -1.54,0.87 -3.16,2.33 -5.09,2.06 -1.68,-0.51 -3.31,-1.49 -4.38,-2.75 -1.91,-0.39 -3.39,1.29 -5.25,1.47 -1.34,0.25 -3.17,2.76 -1.03,3.19 1.48,0.09 2.83,-1.54 4.19,-0.19 0.47,0.42 0.26,1.53 -0.47,0.81 -1.41,-0.19 -1.52,1.76 -2.78,2.09 -0.59,0.74 0.17,2.22 -0.88,2.66 -0.94,-1.24 -1.68,-2.95 -3.5,-3 -1.65,-0.96 -2.86,1.48 -3.66,2.59 -0.61,1.74 -1.07,3.49 -2,5.16 -1.04,2.84 0.66,6.55 -2.06,8.72 -1.66,1.55 -3.41,3.08 -4.09,5.34 -1.14,2.36 -3.63,4.2 -3.47,7.13 0.36,2.49 -0.77,4.77 -0.72,7.22 -0.63,1.72 -1.26,3.55 -2.13,5.19 -0.89,0.59 -1.8,1.62 -0.91,2.69 0.63,1.09 2.13,1.2 2.59,2.5 2.48,4.22 6.19,7.77 8.47,12.13 0.7,0.48 1.65,0.13 2.34,0.84 0.59,0.51 1.94,-1.03 1.75,0.25 -0.46,0.92 -0.01,1.99 1,2.03 0.43,1.61 -2.22,1.05 -2.09,2.59 -0.41,3.37 0.54,6.85 3,9.22 1.52,1.67 1.95,4.7 4.25,5.47 0.93,0.15 1.4,-1.32 2.25,-0.28 1.22,0.72 2.26,-0.87 1.13,-1.66 -0.06,-1.89 1.72,-3.48 1.41,-5.5 -0.07,-0.56 0.41,-2.33 0.91,-0.81 1.31,2.16 2.71,4.75 1.31,7.25 -0.58,1.52 -0.54,3.48 -2.03,4.34 -0.58,2.1 -0.75,4.58 -0.03,6.66 0.97,1.09 1.81,-1.56 2.75,-0.09 0.96,0.4 0.57,2.45 1.91,1.75 3.16,-2.17 4.86,-5.89 6.53,-9.16 -0.56,-2.02 1.97,-3.87 0.63,-5.72 -0.36,-1.2 0.67,-3.34 2.06,-2.72 0.13,1.62 0.45,3.33 0.78,4.94 -0.63,0.86 -0.36,1.94 0.69,2.41 1.64,0.48 -0.24,2.77 1.56,2.94 3.28,0.51 3.47,-3.73 5.66,-5.09 1.19,-0.93 3.23,-0.35 3.75,-2.16 0.61,-0.72 2.07,-0.88 1.63,-2.19 -0.38,-0.66 -0.13,-1.66 0.72,-1.19 0.77,0.66 0.71,2.08 1.28,2.75 l -0.31,0 -0.34,0.13 c -1.53,1.02 -1.81,3.02 -3.78,3.47 -1.22,0.97 0.66,2.65 1.19,3.75 0.63,0.62 0.34,2.15 1.66,2 1.05,0.48 1.8,2.01 0.59,2.78 -0.58,1.86 -1.07,4.08 -3.16,4.88 -2.3,0.67 -3.55,3.1 -4.31,5.16 0.66,0.81 0.39,1.94 0.81,2.88 1.1,0.9 2.95,-0.46 3.66,-1.22 0.09,-1.07 -0.67,-2.78 -0.19,-3.59 1.8,0.86 1.34,3.62 1.16,5.25 -0.48,1.15 -2.57,0.32 -2.66,2 -0.56,1.17 0.99,1.32 1.38,1.94 -0.34,0.89 -1.83,1.1 -1.91,2.19 -0.95,0.66 -2.39,0.99 -3.28,0.22 -1.58,0.38 -3.46,1 -4.5,2.22 -0.07,2.33 1.33,4.25 2.31,6.16 -0.27,1.76 2.2,1.17 3.16,0.75 0.61,0.92 -1.28,1.93 -2.13,1.94 -1.14,-0.5 -3.32,-1.19 -2.66,-2.84 -0.47,-1.19 -1.99,-1.84 -1.81,-3.41 0.17,-0.97 -1.03,-3.2 -1.84,-1.59 -1.19,5.67 -0.81,11.57 -0.91,17.34 1.28,1.82 3.34,3.54 5.78,2.94 2.28,0.15 4.55,0.51 6.78,-0.34 0.53,-0.03 2.33,-0.76 2.28,0.03 -0.71,0.68 0.05,2.18 -0.38,2.59 -1.25,-0.9 -3.2,-1.47 -4.41,-0.13 -0.33,1.23 -2.72,-0.58 -2.47,1.25 -0.81,2.1 -3.06,2.68 -4.06,4.72 -1,1.77 -2.87,2.83 -3.19,4.94 -1.1,3.01 -4.25,5.94 -3.13,9.34 0.84,1.32 2.76,1.72 2.38,3.66 0.04,2.2 1.74,3.74 2.63,5.53 -0.37,1.09 0.46,1.86 0.81,2.78 0.31,2.87 0.96,6.46 3.94,7.69 2.4,1.21 3.84,4.47 6.72,4.5 1.06,-0.46 2.17,-0.61 3.06,0.28 1.66,0.34 0.83,-2.31 2.34,-2.63 0.5,-0.41 2.48,0.03 1.81,0.75 -1.52,0.25 -1.96,1.95 -0.81,2.97 0.39,0.95 -1.31,1.57 -1.78,2.25 -0.95,1.01 -2.07,0.15 -3.03,-0.19 -1.01,-0.11 -1.67,0.88 -2.28,1.25 -3.69,-0.41 -6.81,-2.96 -8.22,-6.38 -1.49,-1.82 -2.17,-3.98 -2.63,-6.25 -0.64,-1.14 -0.88,-3.49 -2.41,-3.63 -2.1,1.01 -3.89,2.55 -6.13,3.34 -0.84,1.04 -3.39,0.68 -3,2.5 1.4,3.12 5.01,4.97 5.59,8.47 0.6,1.5 2.59,2.44 3.09,3.72 -1.2,-0.44 -2.88,1.44 -1.06,1.75 2.92,0.61 5.47,2.28 7.53,4.44 1.17,1.32 2.63,2.74 3.06,4.47 -0.45,1.89 -2.84,2.21 -4,3.44 0.97,1.7 2.93,4.08 5.16,3.63 0.55,-0.64 2.16,-0.48 1.5,0.66 -0.48,1.23 -0.98,2.7 0.22,3.66 0.01,1.24 1.28,1.81 1.13,3.13 0.09,1.54 0.07,3.29 1.31,4.38 0.04,1.24 0.9,2.51 2.34,2.25 1.89,-0.67 3.48,1.05 5.31,1.09 1.81,0.44 1.03,2.94 0.59,4.19 -0.77,1.11 -0.26,3.44 -2.19,3.22 -1.85,0.23 -2.29,2.31 -3.53,3.22 -1.16,-0.79 -1.02,-2.82 -2.19,-3.78 -1.42,-2.1 -4.21,-2.49 -6.34,-1.34 -1.8,0.15 -3.12,-3.23 -4.94,-1.63 -1.22,1.26 -1.86,3.36 -4,3.09 -1.87,-0.15 -3.47,0.36 -3.13,2.56 0.26,1.53 -2.92,1.94 -1.59,3.56 1.36,0.93 -0.28,1.76 -0.88,2.5 -0.31,1.31 -0.71,2.66 -0.88,4.03 0.78,0.81 0.37,2.7 2.03,2.66 0.96,0.27 1.89,-0.92 2.66,-0.72 0.79,0.92 0.3,2.8 2,2.81 2.59,0.17 3.34,3.33 5.78,4 1.04,0.36 1.5,2.86 -0.03,2.66 -1.16,-0.68 -3.39,-0.75 -3.28,1.06 -1.55,1.62 -1.31,3.96 -1.78,6 -0.93,0.97 -1.54,2.12 -1.72,3.47 -0.57,2.05 -1.95,3.84 -3.84,4.78 -0.09,1.26 1.15,2.65 1.88,3.63 2.32,-0.45 3.79,-3.03 6.13,-3.22 1.47,0.8 0.94,3.17 0.97,4.63 -0.26,0.93 0.3,2.99 -1.28,2.47 -1.51,0.05 -0.54,2.68 -2.28,2.09 -3.32,-0.11 -6.37,1.4 -9.19,2.91 -2.26,0.74 -3.57,4.63 -1.09,6 1.73,0.8 3.07,2.06 4.47,3.28 2.32,1.22 3.79,4.5 6.69,4.66 1.57,-0.35 4.2,-1.59 5.28,0.19 0.61,1.97 -1.73,2.66 -2.66,3.88 -0.23,1.34 -0.92,3.45 0.41,4.34 0.76,0.15 2.84,-0.19 2.63,1 -0.74,1.29 -2.14,1.15 -3.41,1.03 -1.28,0.11 -2.52,0.91 -2.72,2.19 -1.01,0.58 -1.77,1.4 -1.94,2.59 -0.33,0.79 -1.98,2.39 -0.5,2.75 l -0.31,0.19 -0.13,0.09 c -0.51,0.93 -2.09,3.22 0.03,3.06 1.21,-0.38 0.89,1.86 0.03,2.06 -0.99,0.32 -3.07,1.56 -1.44,2.44 0.67,0.74 1.22,1.89 0,2.41 -1.53,1.84 0.16,4.08 1.31,5.59 1.03,1.73 -0.45,3.69 0.66,5.47 0.9,3.18 4.27,4.94 4.91,8.19 0.77,1.05 3.15,-0.14 2.72,1.88 0.98,1.04 2.41,-0.83 3.5,-1.25 0.93,-0.9 2.19,-1.76 3.44,-0.75 1.77,0.96 2.54,3.02 4.28,4.09 2.25,1.26 1.7,4.74 4.09,5.69 1.84,0.04 3.74,0.27 5.34,1.16 0.47,2.38 -1.67,4.19 -1.25,6.59 -0.26,1.41 1.51,2.09 0.81,3.53 -0.27,1.2 -1.64,2.52 -0.5,3.69 0.29,1.56 0.69,3.12 0.94,4.66 -0.33,1.17 -1.41,3.37 0.31,3.94 1.49,-0.87 1.12,-3.35 2.78,-4.25 2.58,-2.21 6.34,-3.31 7.78,-6.59 1.02,-0.48 0.92,-1.86 2.19,-2.13 0.83,-0.75 3.86,-2.32 1.66,-3.09 -2.64,-0.8 -1.19,-4.81 1.03,-5 1.16,0.39 2.5,3.21 3.59,1.41 0.09,-0.51 -0.03,-2.13 0.72,-1.13 1.02,0.95 1.45,3.45 -0.59,3.34 -1.02,-0.35 -2.16,0.64 -1.25,1.5 0.43,1.04 0.82,2.57 -0.59,3.06 -1.21,1.05 -2.69,1.57 -4.16,2.03 -1.99,1.22 -1.45,4.08 -3.5,5.31 -2.14,1.7 -4.19,3.63 -4.91,6.38 -1.05,2.08 -3.17,3.41 -4.09,5.53 -1.8,1.46 -1.22,4.04 -2.63,5.78 -0.95,1.45 -1.93,3.3 -0.59,4.84 -0.96,0.37 -2.18,-1.16 -3.03,-0.03 -4.05,-0.19 -6.63,3.56 -8.72,6.5 -0.94,2.22 -2.52,4.98 -5.28,4.88 -1.43,0.65 -0.08,3.13 -1.81,3.56 -0.97,1.22 0.08,3.07 -0.94,4.38 -1.55,1.18 -1.49,3.51 -1.66,5.34 0.22,2.14 2.08,4.56 0.38,6.56 -0.56,0.4 -1.54,-0.03 -2.06,0.78 -1.2,1.43 -3.09,1.57 -4.66,0.69 -2.29,-0.69 -4.39,0.85 -6.66,0.94 -3.96,2.64 -9.1,2.08 -13.63,1.59 -1.38,-0.86 -2.29,-2.43 -3.94,-2.81 -1.92,-1.54 -4.61,-2.94 -7.16,-2.5 -1.13,1.2 -3.01,1.87 -4.56,1 -3.35,-0.64 -6.71,-1.82 -10.09,-1.91 -1.05,1.04 -2.43,0.56 -3.75,0.59 -1.28,0.55 -2.59,1.2 -4.06,0.72 -1.98,-0.26 -3.6,1.22 -5.59,1.06 -1.38,0.01 -2.58,0.78 -3.78,1.19 -1.3,-0.89 -2.85,-1.22 -4.25,-0.38 -2.13,0.45 -4.7,0.61 -6.38,2.06 -0.85,1.61 0.24,4.07 -1.25,5.28 -1.62,0.22 -0.69,2.4 0.16,3.03 0.58,1.42 -0.55,4.3 1.5,4.69 1.28,-0.15 1.73,-1.77 3.19,-1.28 1.07,-0.01 1.36,-1.39 2.59,-0.91 1.13,0.05 2.62,1.07 2.81,2 -1.31,0.27 -2.53,-0.88 -3.84,-0.03 -1.67,0.34 -3.51,1.23 -3.41,3.22 -9.5e-4,0.66 -1.05,2.53 -1.63,1.66 0.64,-1.25 -0.97,-2.64 -1.81,-1.25 -0.54,1.16 -2.07,1.2 -2.59,2.53 -1.2,2.07 -2.89,4.36 -5.63,4.06 -1.47,0.32 -2.89,-0.06 -3.72,-1.38 -2.16,-1.65 -5.09,-2.62 -7.75,-2 -0.57,3.96 -0.39,8.29 -2.22,11.88 -0.28,3.24 0.32,6.69 0.66,9.78 -1.04,2.06 0.39,5.35 -2.19,6.5 -2.25,1.71 -4.18,3.9 -5.06,6.56 -0.92,0.82 -1.18,2.19 -2.44,2.53 -0.53,0.56 -0.82,1.13 -1.63,1.31 -0.51,0.77 -1.22,1.19 -2.09,1.34 -0.86,1.1 -0.13,2.71 -1.09,3.78 -0.05,2.36 -1.57,5.08 -4.28,4.81 -1.47,-0.21 -2.49,0.93 -3.75,1.25 -2.1,-0.81 -2.6,2.14 -2.22,3.59 0.67,0.68 1.11,1.91 0.09,2.5 -0.78,0.59 -1.78,0.74 -1.5,-0.69 0.14,-1.12 -1.09,-3.04 -2.16,-1.69 -0.35,1.38 -1.73,1.05 -2.75,1.28 -1.37,0.96 0.21,3.11 -1.13,3.94 -0.36,1.91 0.39,3.97 -0.5,5.75 -0.02,1.78 -1.16,3.38 -2.44,4.41 0.14,1.06 -0.71,1.81 -1.78,1.47 -1.46,-0.64 -2.91,0.29 -2.91,1.91 -0.37,1.83 0.4,4.41 -1.75,5.31 -1.04,1.01 -1.61,2.81 -3.41,2.47 -1.09,0.41 -0.28,1.94 -1.03,2.72 -1.17,2.47 -4.15,3.4 -5.59,5.63 -1.27,1.24 -3.19,0.56 -4.5,1.53 -0.6,2.07 -2.68,3.39 -2.91,5.59 -0.17,0.92 -1.28,0.71 -1.03,-0.22 -0.37,-1.23 -1.92,-1.22 -2.22,-2.44 -1.72,-2.33 -4.58,-0.06 -6.25,1.09 -1.4,0.86 -2.69,2.11 -3.69,3.22 -1.44,0.64 -3.39,0.54 -4.09,2.31 -0.51,1.44 -1.12,2.87 -0.5,4.44 0.46,1.63 0.5,3.63 -1.22,4.59 -0.5,1.23 1.8,0.87 1.63,2.19 0.69,1.96 2.69,0.11 3.91,-0.22 2.37,-0.29 5.86,-1.36 5.78,-4.34 -0.11,-1.01 -1.6,-2.18 -0.09,-2.81 0.55,-0.93 0.94,-2.02 2.28,-1.94 3.11,-0.59 4.87,3.13 7.94,2.81 1.29,0.4 2.28,1.62 3.78,1.47 2.62,1.4 4.24,4.04 5.13,6.81 0.69,1.64 -0.24,3.56 1.06,5.06 0.51,1.15 2.01,1.37 2.25,2.63 1.59,0.58 1.35,-1.91 1.94,-2.72 0.43,-1.24 0.83,-2.73 2.5,-2.38 1.44,0.07 3.17,-0.38 3.28,-2.06 0.84,-1.14 2.66,-2.56 1.34,-4.06 -1.01,-0.55 -0.02,-2.24 -1.53,-2.16 -1.02,0.23 -0.94,-1.26 -2,-1.28 -0.37,-1.14 1.13,-1.37 1.88,-1.59 0.57,-0.77 -10e-4,-1.92 0.78,-2.69 0.6,-0.94 1.98,-2.92 0.16,-3.41 -0.93,-0.13 -1.03,-1.37 0,-1.41 0.78,-0.47 0.48,-1.48 1.31,-1.84 0.2,-0.95 1.2,-2.31 2,-2.31 0.51,0.87 1.13,1.77 1.72,2.56 -0.49,1.03 0.01,2.52 1.38,2 1.3,-0.67 0.84,-2.63 2,-3.56 0.96,-1.25 2.79,-0.15 3.75,-1.5 1.49,-0.9 2.55,-3.58 4.66,-2.47 1.49,0.74 3.11,-0.05 3.41,-1.69 0.18,-0.96 -0.68,-1.81 -0.34,-2.91 -0.13,-1.79 1.95,-3.01 1.19,-4.88 0.11,-2.43 3.54,-1.92 4.59,-3.56 1.3,0.19 1.42,1.63 1.84,2.53 2.72,0.57 5.61,-1.51 8.31,-0.09 1.75,0.25 3.1,-1.43 4.81,-1.34 1.42,-0.66 1.69,-2.91 3.56,-2.72 3.44,-0.03 7.24,-0.51 10.41,1.09 1.38,0.63 2.61,2.91 4.22,2.34 0.64,-1.07 -1.12,-1.38 -1.09,-2.44 -0.35,-0.56 -1.96,-1.08 -0.63,-1.59 1.11,-0.21 2.09,-1.45 1,-2.28 -0.02,-1.39 -0.35,-3.33 0.56,-4.44 1.62,-0.72 0.95,1.87 1.03,2.66 0.32,0.99 0.84,1.86 0.66,2.94 0.84,2.19 4.21,0.42 5.22,2.25 0.16,0.99 -1.37,1.35 -0.84,2.53 -0.07,1.23 0.81,2.18 2,2.19 1.55,0.56 2.57,3.48 4.41,1.81 1.73,-0.96 4.55,-0.24 5.31,-2.59 -0.12,-0.69 1.3,-1.37 0.97,-0.25 0.11,1.05 -1.22,3.02 0.53,3.22 1.58,1.37 3.68,2.71 4.25,4.75 -0.26,1.13 -0.26,2.43 1,2.84 1.1,1.24 3.05,2.59 4.34,0.78 1.64,-0.15 2.83,1.43 4.22,1.91 1.09,-0.41 1.75,-1.63 2.94,-1.91 1.4,-2.93 0.8,-6.56 2.72,-9.31 1.02,-1.87 3.33,-2.25 4.72,-3.72 1.57,0.1 2.7,-1.25 2.72,-2.81 0.06,-1.29 1.85,-3.04 0,-3.88 -0.96,-0.4 -2.64,-0.17 -2.63,-1.69 -0.28,-2.04 -0.19,-4.74 1.81,-5.78 1.04,1.16 2.83,-0.25 1.63,-1.41 -1.24,-2.11 -0.24,-4.88 0.41,-7.06 0.95,-1.8 2.11,-3.49 2.75,-5.44 1.8,-1.52 0.84,-4.11 0.5,-6.09 -0.23,-2.1 -1.96,-3.99 -1.88,-6.03 1.52,-0.13 2.63,1.86 3.28,3.09 0.11,1.76 1.59,3.02 1.84,4.78 0.53,1.35 2.65,1.29 3.28,0.09 1.48,-0.72 3.26,-1.61 3.19,-3.5 2.17,-0.24 2.78,-3.2 5.09,-3.38 2.84,-1.01 5.91,-0.57 8.78,-1.28 0.75,-0.82 1.49,-1.93 2.84,-1.53 3.71,1.16 6.93,-1.61 9.84,-3.44 5.09,0.87 10.31,2.39 14.69,5.31 5.08,2.93 9.18,7.14 13.72,10.81 1.75,0.78 2,-1.78 2.25,-2.94 0.67,-1.56 2.22,-2.87 4.03,-2.25 1.92,0.11 3.69,0.69 5.41,1.31 2.2,-0.18 4.46,1.43 6.53,0.44 1.82,-0.38 3.23,0.93 5,1.06 1.51,0.83 2.99,1.86 4.78,2 1.12,-0.01 0.4,2.2 1.91,1.41 1.49,-1.59 3.89,-0.93 5.72,-1.56 -0.08,-1.44 -0.3,-2.85 0.47,-4.13 0.32,-1.45 -0.57,-3.13 -2.03,-3.25 -0.58,-0.69 -1.56,-0.41 -2.09,-1.09 -1.07,0.26 -2.33,0.64 -3.06,-0.56 -0.25,-1.09 -2.45,-0.3 -1.69,-1.88 0.31,-1.75 1.41,-3.42 2.75,-4.5 1.2,0.17 2.76,-1.21 3.53,0.22 0.21,1.07 1.03,1.55 1.97,1.63 1.14,0.82 2.2,2.87 3.47,0.94 2.54,-1.72 5.68,-1.45 8.56,-1.44 0.8,-0.19 0.5,-1.61 1.53,-0.97 1.48,0.1 2.59,-1.2 4.16,-0.78 2.93,-0.24 5.58,1.4 8.41,1.53 2.24,-0.33 2.25,-2.86 2.69,-4.5 1.95,1.73 4.4,-0.18 6.53,-0.56 2.03,-0.27 1.37,-2.66 0.28,-3.63 -0.38,-0.68 -1.71,-1.51 -1.38,-2.34 1.01,-0.08 1.73,1.07 2.56,1.53 0.64,0.9 0.6,2.58 2.19,2.31 2.12,0.63 4.18,-1.84 3,-3.75 -0.8,-2.27 -3.06,-3.25 -4.22,-5.31 -1.26,-2.13 -3.35,-3.45 -5.28,-4.84 -0.59,-0.58 0.02,-1.86 0.66,-0.84 0.85,1.05 2.26,0.73 3.28,1.69 1.26,0.8 2.21,-0.6 2,-1.75 1.17,-0.39 1.53,1.05 0.91,1.88 -0.18,2.22 2.48,3.36 3.53,5.03 2.19,3.3 6.7,3.72 8.91,7 0.71,0.95 3.22,1.94 3.09,-0.06 0.01,-1.18 0.11,-2.87 -1.25,-3.03 0.19,-1.1 -1.25,-1.23 -1.5,-1.97 0.33,-1.84 2.51,-0.05 3.56,-0.38 0.57,-0.97 2.24,-0.6 2.28,0.63 0.65,0.65 1.12,1.46 0.31,2.16 0.05,1.25 -1,3.18 0.28,4 1.75,0.47 3.02,-1.25 2.53,-2.88 -0.07,-1.3 -0.78,-3.23 1.13,-3.53 0.93,-0.61 1.85,-1.15 2.84,-0.5 1.49,0.37 3.3,-0.98 4.5,0.19 0.87,0.15 1.85,0.2 2.5,0.78 0.7,0.1 0.94,-1.16 1.72,-0.44 1.37,0.81 -0.63,2.35 0.47,3.22 1.73,0.5 1.59,-2.22 2.72,-2.72 0.54,1.48 -0.09,4.24 -2.22,3.91 -1.65,-0.36 -3.47,0.44 -3.59,2.25 0.14,1.86 2.79,1.83 3.81,3.09 1.36,0.84 2.1,2.43 3.44,3.22 0.76,-0.66 2.38,-2.87 0.72,-3.5 -1.72,-0.15 0,-2.33 1.03,-1.97 2.84,0.38 5.3,-1.51 8.09,-1.78 3.61,-0.91 7.13,-1.96 10.91,-1.91 4.76,-0.11 9.84,-0.74 13.78,-3.56 5.81,1.01 11.73,1.87 17.06,4.5 2.23,1.07 4.74,1.26 7.03,1.97 1.57,0.94 2.9,2.54 4.88,2.38 2.19,0.54 4.03,2.64 6.31,2.56 2.12,-1.78 3.61,-4.22 5.5,-6.25 1.14,-2.27 3.29,-3.62 5.72,-4.25 3.82,-0.95 7.59,-2.33 11.47,-3.09 2.76,-0.74 5.42,-2.02 7.13,-4.38 1.25,-1.46 3.23,-2.55 4.44,-3.84 0.01,-1.02 -1.87,-1.79 -1.41,-2.69 4.17,2.43 9.03,3.47 13.75,4.28 2.43,0.74 1.78,-1.67 1.31,-3.09 -0.81,-4.18 0.62,-8.68 3.94,-11.44 2.49,-2.87 6.26,-3.34 9.75,-4 2.03,-0.5 3.01,-2.89 5.31,-2.78 3.05,-0.76 5.55,-2.78 8.19,-4.38 2.87,-2.64 2.02,-7.04 1.91,-10.53 -0.49,-2.55 -1.34,-5.03 -1.91,-7.56 -0.92,-0.77 -1.49,-2.27 -0.09,-2.94 1.38,-0.55 3.44,-0.23 4.06,-2.03 0.45,-1.41 1.63,-3.7 0.16,-4.81 -3.6,-0.59 -7.18,1.03 -10.81,1.06 -3.22,0.08 -6.43,0.18 -9.56,0.88 -2.73,0.29 -5.88,0.44 -8,2.31 -2.3,1.28 -4.89,0.14 -7.25,1.09 -1.19,-0.44 -2.24,-1.96 -3.75,-1.44 -1.9,-0.24 -4.03,-0.52 -5.69,-1.31 -0.01,-1.22 -0.46,-3.75 -2.19,-3 -0.8,1.14 -2.37,1.97 -3.72,1.75 -0.74,-1.34 -2.08,-0.66 -2.84,0.09 -1.94,-1.4 -5.08,-1.89 -5.81,-4.5 1.51,-0.71 4.46,0.12 4.81,-2.06 0.83,-1.18 2.58,-2.22 4,-1.81 0.53,1.31 2.74,1.86 3.06,0.13 0.52,-2.48 -2.54,-3.01 -4.34,-3.03 -3.77,-0.26 -7.53,-1.79 -11.34,-1.06 -1.58,0.89 -0.34,3.67 -2.47,3.97 -2.09,0.6 -4.76,1.17 -6.72,0.06 -0.16,-1.35 1.94,-1.15 2.81,-1.31 1.4,0.08 3.35,0.06 3.31,-1.81 0.18,-1.51 0.45,-4.06 2.59,-3.81 1.26,0.28 3.39,-0.58 2.5,-2.13 -0.54,-0.58 -0.57,-1.89 0.5,-1.31 1.02,0.33 1.18,-0.71 1.41,-1.34 2.06,-0.24 4.07,1.49 6.28,0.94 3.31,0.11 6.6,0.89 9.78,1.44 3,-1.61 5.18,-4.38 8.03,-6.28 1.13,-1.06 2.46,-2.14 3,-3.63 -0.95,-0.75 -2.36,0.55 -3.59,0.16 -1.61,-0.18 -3.85,0.25 -5.13,-0.78 -0.1,-1.25 2.03,-0.37 2.75,-0.66 1.68,-0.06 4.49,0.27 4.69,-2.09 0.66,-3.47 1.17,-7.15 0.63,-10.66 -0.89,-1.77 -2.82,0.05 -3.56,1 -1.14,1.52 -2.99,1.99 -4.78,1.69 -2.15,0.17 -3.05,3.53 -5.19,2.97 -0.41,-1.02 1.77,-1.7 0.31,-2.41 -1.32,-0.25 -3.02,-1.04 -3.5,-2.25 0.92,-0.84 2.05,-1.43 3.16,-0.66 1.08,-0.11 1.54,-1.6 2.84,-1.09 1.78,-0.06 4.5,0.75 5.66,-1 -0.38,-1.2 -1.25,-2.38 -0.47,-3.72 2.45,-0.17 5.11,-1.97 6.03,-4.34 0.91,-0.59 2.48,-1.36 1.47,-2.66 -0.63,-1.12 1.15,-0.48 1.19,0.25 0.46,1.44 0.74,2.95 2,4 0.95,0.99 2.26,2.06 1.81,3.59 1,1.16 3.04,0.24 4.38,0.25 4.25,-1.48 8.24,-4.4 10.63,-8.25 0.14,-1.36 -1.66,-0.29 -2.31,-1.16 -0.91,-0.55 -2.25,-0.89 -3.09,-1.19 0.3,-1.36 1.72,-2.17 1.94,-3.56 0.95,-0.65 2.42,-0.5 2.97,-1.78 1.09,-0.95 0.64,-3.52 -1.09,-2.88 -2.08,1.29 -4.68,-0.51 -6.91,0.34 -1.8,-0.12 -4.04,0.02 -5.53,-0.97 -0.46,-1.27 1.73,-1.23 2.47,-1.31 1.8,0.18 3.52,-0.64 4.81,-1.75 1.39,1.93 4.16,2.17 6.19,1.16 1.17,-0.88 0.42,-2.88 -1.03,-2.72 -2.57,-1.15 -5.73,-2.54 -6.38,-5.59 -0.23,-0.9 0.87,-1.6 1.19,-0.5 0.68,2.73 4.1,3.4 6.25,4.59 1.2,0.35 2.34,1.03 2.06,2.47 0.19,1.51 1.97,3.02 3.47,2.63 0.95,-0.88 2.28,-1.2 2.88,-2.53 0.59,-1.69 2.5,-2.44 3.13,-4.19 0.93,-1.2 1.15,-3.01 2.09,-4.09 1.61,-0.69 2.86,-2.07 4.63,-2.63 1.72,-0.75 3.91,-1.68 3.69,-3.97 0.49,-3.05 1.18,-6.12 2.09,-9 -0.34,-0.08 -0.68,-0.14 -1.03,-0.19 l 0.75,0 c 1.22,-1.39 0.28,-3.62 0.75,-5.31 0.29,-3.32 0.38,-7.2 3.19,-9.47 1.3,-2.24 1.82,-4.8 2.97,-7.16 1.14,-3.7 0.44,-7.94 2.78,-11.22 -0.03,-3.96 -2.27,-7.7 -1.41,-11.72 0.46,-4.41 -0.01,-8.86 -1.75,-12.97 -1.33,-5.15 -5.49,-8.88 -9.28,-12.31 -6.97,-5.6 -12.89,-13.54 -22.16,-15.31 -4.63,-0.53 -9.15,-1.6 -13.66,-2.78 -3.46,0.57 -7.03,0.05 -10.53,0 -0.67,0.11 -1.85,1.55 -2.28,0.41 0.06,-1.16 -0.98,-1.93 -1.97,-1.22 -1.5,-0.03 -3.17,-0.68 -4.41,0.53 -0.76,0.31 -1.33,0.02 -1.38,-0.72 -1.76,-1.19 -3.3,1.6 -5.03,0.44 -2.57,-0.64 -5.51,-0.62 -8.06,0.09 -3.23,1.89 -3.44,6 -4.81,9.09 -0.94,2.03 -0.04,5.23 -2.69,6.03 -1.95,1.04 -3.05,3.26 -3.22,5.28 -2.32,-0.41 -3.53,-4.08 -6.19,-2.41 -1.68,0.67 -3.65,-0.13 -4.81,-1.38 -0.76,-1.68 -1.54,-3.45 -2.56,-4.94 -0.38,-1.28 -2.02,-1.45 -2.84,-2.31 -2.61,-0.7 -5.35,-1.69 -7.97,-0.53 -1.4,-0.39 0.59,-1.53 0.53,-2.38 0.1,-0.89 0.14,-2.02 1.38,-1.81 2.21,-0.04 2.19,-3.03 3.34,-4.41 3.15,-4.97 7.94,-8.63 12,-12.88 1.2,-1.01 2.34,-2.78 4.09,-2.41 1.43,-1.37 0.78,-3.87 1.31,-5.66 0.73,-3.3 0.08,-6.57 -0.81,-9.75 -0.96,-4.63 -3.53,-8.75 -5.28,-13.09 -1.39,-2.12 -1.46,-4.8 -2.84,-6.84 -1.22,-0.35 -0.67,-2.06 -1.72,-2.69 -0.92,-1.79 -0.66,-4.44 -2.94,-5.25 -1.62,-1.3 -4.28,-0.98 -5.19,-3.13 -1.1,-1.36 -3.52,-0.78 -4,-2.75 -1.56,-1.88 -2.93,-4.46 -5.31,-5.31 -1.79,-0.02 -3.22,-1.94 -4.66,-2.91 -3.93,-3.21 -7.21,-7.18 -9.88,-11.56 -1.54,-1.77 -4.03,0.03 -5.84,0.34 -2.89,0.75 -6.47,-0.1 -8.72,2.31 -2.85,1.27 -5.9,-0.99 -7.41,-3.41 -1.91,-0.2 -3.64,1.39 -5.38,1.94 -1.81,-0.9 0.32,-3.06 1.41,-3.66 2.19,-1.54 5.24,-1.28 7.09,0.69 2.07,1.43 4.68,-0.29 6.97,-0.09 3.09,-0.26 6.23,-0.69 8.91,-2.28 1.99,-0.55 4.76,-0.65 6.31,0.84 1.17,3.25 4.21,5.41 6.44,7.94 1.71,1.85 4.08,4.22 6.81,2.84 2.41,-1.1 5.18,-2.2 7.72,-0.78 1.02,0.22 3.27,2.33 3.47,0.31 -2.14,-5.35 -6.4,-9.48 -9.41,-14.38 -4.58,-6.84 -9.92,-13.4 -12.06,-21.5 -1.6,-4.23 -2.77,-9.35 -0.69,-13.59 1.21,-1.74 2.68,-4.09 5.16,-3.56 1.01,0.12 3.3,-0.46 2.19,-1.84 -2.2,-1.23 -4.48,-2.36 -6.81,-3.31 -3.17,-0.61 -6.23,-3.05 -6.22,-6.53 0,-1.45 -1.05,-1.61 -2.28,-1.53 0.18,-1.69 -2.63,-1.7 -3.41,-2.97 -0.84,-1.5 -2.08,-2.77 -2.31,-4.53 -0.97,-1.62 -1.13,-3.45 -1.5,-5.22 -0.9,-0.68 -0.34,-2.22 -1.38,-2.66 -0.63,-2.57 -2.12,-5 -4.63,-6.06 -2.03,-1.38 -0.02,-4.55 -2.38,-5.75 -1.02,-1.61 -2.51,-2.82 -4.41,-3.25 -1.67,-0.57 -3.97,-1.03 -4.44,-2.97 -1.02,-1.3 -2.72,-1.04 -4.06,-1.44 -1.09,-0.61 -0.99,-2.22 -2.31,-2.72 -1.41,-0.79 -3.07,-0.95 -4.56,-1.63 -1.89,-0.22 -3.78,-0.49 -5.28,-1.75 -1.47,-0.39 -3.1,-0.05 -4.44,-1.03 -2.48,-1.17 -4.36,-3.52 -7.28,-3.69 -0.99,-0.56 -2.66,-0.57 -2.5,1 0.04,0.97 -0.08,1.98 -1.25,2.03 -1.37,0.91 -3,3.03 -4.72,1.53 -0.59,-0.22 -1.54,-1.4 -0.28,-1.13 0.95,0.2 2,1.17 2.75,-0.06 1.09,-0.96 2.46,-2.91 -0.06,-2.91 -1.17,-0.35 0.21,-2.02 0.91,-2.13 1.39,-0.4 0.45,-1.73 -0.13,-2.38 -0.7,-1.39 -1.93,-2.87 -1.25,-4.44 -1.1,-2.01 -3.64,-2.9 -4.66,-5.06 -1.95,-1.76 -2.71,-4.37 -2.94,-6.94 -0.96,-3.86 -3.11,-7.35 -3.06,-11.44 -0.21,-2.05 -0.22,-4.2 0.19,-6.16 -0.99,-1.87 -2.41,-3.77 -4.19,-4.94 -1.45,0.11 -1.09,2.94 -2.94,2.59 -0.88,-0.26 -1.25,-1.94 0.22,-1.53 0.94,-0.71 1.42,-1.95 2.19,-2.91 0.48,-2.13 -1.83,-3.61 -2.06,-5.69 -1.04,-2.02 -2.71,-3.75 -2.91,-6.13 -0.26,-1.28 -2.13,-1.06 -2.59,-1.94 0.6,-0.53 2.06,-1.58 0.66,-2.13 -0.71,-0.28 -2.39,-0.73 -2.53,-1.22 1.59,0.09 3.46,-0.2 3.84,-2.06 0.3,-2.27 -1.62,-4.26 -2.53,-6.22 -1.43,-2.3 -2.23,-5.42 -0.72,-7.84 0.7,-1.17 0.18,-2.53 -1.19,-2.84 -2.09,-0.3 -2.02,-1.92 -1.94,-3.66 0.3,-1.18 -1.06,-1.55 -1.13,-2.5 0.41,-0.76 1.72,-0.89 2,-1.94 0.8,-1.15 1.05,-2.73 0.16,-3.81 -0.59,-2.24 0.35,-5.17 -1.63,-6.81 -0.18,-1.52 -0.3,-3.15 -1.47,-4.28 -0.28,-1.8 0.41,-4.61 -1.53,-5.66 -1.7,-1.11 -3.15,-3.63 -5.41,-3.53 -0.7,0.61 -1.83,2.08 -2.53,0.59 -1.38,-1 0.9,-1.28 0.47,-2.41 -0.74,-1.67 -2.41,0.48 -3.53,-0.47 -2.09,-1.29 -3.3,-3.48 -4.09,-5.72 -2.24,-2.81 -5.7,-4.7 -7.06,-8.22 -0.85,-1.86 -1.61,-4.56 -3.75,-5.19 z m 49.31,574.69 c -0.08,0 -0.14,0.01 -0.22,0.03 -1.69,0.82 -2.19,3.05 -4.19,3.41 -1.09,0.87 1.29,1.38 0.13,2.22 -0.8,0.23 -1.88,0.1 -2.59,0.81 -0.69,0.45 -1.37,-0.04 -1.09,-0.84 -0.93,-1.1 -2.5,0.37 -3.44,0.94 -1.28,0.93 -1.89,3.25 -0.13,4 2.34,2.77 6.22,3.69 8.53,6.47 1.55,0.9 2.38,2.53 3.69,3.63 2.47,-0.11 5,-1.17 7.09,-2.47 1.76,-1.61 0.15,-4.63 2.31,-6.06 1.09,-1.4 3.99,-1.17 4.19,-3.13 -0.36,-0.72 -1.5,-1.04 -0.94,-2.06 0.34,-2.57 -3.01,-3.11 -4.88,-3.53 -1.21,0.05 -2.21,-0.27 -3.22,-0.78 -1.44,-0.11 -2.02,-2.94 -3.47,-2.09 0.08,1.9 1.21,4.62 -0.69,6.03 -0.18,-2.09 0.52,-4.76 -0.88,-6.5 -0.07,-0.04 -0.14,-0.06 -0.22,-0.06 z", + "sct" : "m 645,0 c -0.86,0.48 -0.22,1.81 -1,2.47 -0.18,0.86 -1.62,1.37 -1.81,0.31 -0.07,-0.75 1.03,-1.81 -0.06,-2.25 -1.06,0.18 -2.18,0.97 -2.66,1.94 -0.23,1.1 -2.26,1.99 -0.69,3.06 0.77,1.32 -0.38,2.87 -0.31,4.25 -0.63,0.82 -1.37,1.7 -1,2.84 0.25,0.72 -0.03,1.01 -0.66,1.22 -0.87,0.7 0.5,1.28 0.16,2.09 -0.34,1.08 1.05,2.48 1.84,1.25 0.31,-0.92 1.69,-1.87 2.28,-0.63 0.85,0.76 2.41,0.91 3.34,0.31 0.44,-0.93 -0.75,-1.26 -1.28,-1.63 -0.43,-1.02 0.18,-2.36 0.97,-3.06 0.86,-0.6 2.41,-1.25 2.28,-2.47 -0.71,-0.97 -3,0.1 -3.09,-1.44 1.06,-0.65 2.82,0.67 3.47,-0.5 -0.05,-0.97 -1.28,-1.55 -1.22,-2.47 0.76,-1.1 2.52,0.69 3.28,-0.47 0.37,-1.01 -1.3,-1.4 -1.25,-2.22 0.73,-0.51 1.84,-1.59 0.31,-1.94 C 646.99,0.38 646,-0.1 645,0 z m -17.66,12.09 c -1.08,0.63 -1.51,2.29 -1.25,3.47 0.19,1.52 -0.75,3.11 -0.63,4.69 -0.11,0.8 -0.81,1.44 -0.41,2.34 0.35,1.28 1.82,2.13 1.91,3.47 -0.76,0.97 -1.21,-0.61 -1.72,-1.06 -0.55,-0.59 -1.53,-0.75 -1.56,-1.75 0.26,-1.37 -1.8,-1.27 -1.75,0 0.11,1.43 -1.16,2.62 -0.44,4.06 0.94,1.83 1.2,4 0.81,6 0.31,1.87 0.82,3.69 1.91,5.28 0.36,1.21 2.41,0.52 1.78,-0.72 -0.11,-0.78 0.61,-1.86 1.38,-1.06 1.05,0.66 2.32,2.24 3.59,1.09 1.24,-0.87 1.28,-2.56 0.44,-3.72 -0.17,-0.54 -0.98,-2.04 0.03,-2.13 0.88,0.4 1.67,-0.34 1.5,-1.25 0.3,-0.45 0.86,-0.95 0.47,-1.63 -0.3,-0.74 -1.03,-1.11 -1.44,-1.72 -1.06,-0.67 -2.48,-0.47 -3.53,-1.03 -0.4,-0.88 1.24,-1.21 1.88,-1.19 0.9,0.76 2.83,0.35 2.41,-1.09 -0.29,-0.85 -1.4,-0.92 -1.69,-1.84 -0.26,-0.88 -0.98,-1.81 -0.84,-2.69 0.9,-0.26 1.77,0.6 1.94,1.44 0.61,0.99 2.4,0.73 2.19,-0.59 -0.01,-2.03 -10e-4,-4.25 -0.91,-6.06 0.32,-1.62 -0.79,-2.24 -2.25,-1.91 -0.8,-0.15 -1.58,0.3 -2,0.81 -0.59,-0.39 -0.96,-1.32 -1.81,-1.22 z m -20.06,13.34 c -1.19,-0.09 -0.75,1.42 -1.72,1.72 -1.06,0.81 0.7,2.64 -0.78,3.19 -0.93,0.37 -1.62,1.12 -2.09,1.91 -0.69,0.25 -1.81,0.91 -0.97,1.69 1.08,1.11 2,3.13 3.84,2.41 0.69,0.23 2.18,-0.85 2.47,0.09 -0.41,0.88 -1.82,0.81 -2.66,1 -2.4,0.27 -4.17,-1.84 -5.88,-3.19 -0.8,-0.51 -0.04,-2.27 -1.38,-2.03 -1.36,0.53 -1.51,2.02 -1.5,3.25 -0.41,0.66 -0.16,1.42 0.13,2.03 -0.73,0.69 -0.11,1.73 0.84,1.5 0.83,0.77 2.04,0.99 3.16,0.63 0.81,0.3 1.71,0.36 2.31,-0.44 0.45,-0.37 1.06,-0.16 0.78,0.56 -0.1,1.13 1.4,0.68 1.66,1.41 -0.1,0.78 -1.96,1.3 -0.66,1.91 0.48,-0.21 2.07,0.25 0.94,0.75 -1.28,0.48 -2.31,2.86 -0.66,3.47 1.15,0.4 2.72,-0.69 3.53,0.53 1.04,0.5 1.21,-0.99 0.97,-1.69 0.2,-0.45 0.46,-0.97 0.56,-1.47 0.87,-0.25 0.3,-1.4 0.56,-1.78 1.05,-0.24 1.86,-2.3 0.34,-2.38 -1.02,-0.28 0.38,-1.14 0.31,-1.75 0.31,-0.9 0.11,-2.65 -1.22,-2.13 -0.25,-0.76 -1.11,-1.81 -0.16,-2.44 0.13,-0.88 0.84,-0.96 1.59,-0.88 1.81,-0.2 1.5,-2.9 0.56,-3.88 -0.46,-0.68 -0.56,-1.56 -0.81,-2.28 0.03,-1.65 -2.01,-0.69 -2.84,-1.53 -0.39,-0.19 -0.83,-0.21 -1.25,-0.19 z m 11.75,13.63 -0.09,0.03 c -1.25,0.79 -2.69,2.15 -2.66,3.75 0.07,0.64 1.27,0.85 0.44,1.5 -0.75,0.45 -1.82,-0.14 -2.63,0.44 -1.16,0.46 -3.12,1.34 -2.72,2.88 0.31,0.22 1.28,0.45 0.69,0.97 -0.93,0.15 -1.59,1 -1.13,1.97 -0.11,1.6 0.68,2.72 2.34,2 0.94,-0.09 1.85,0.33 2.22,1.19 0.19,0.44 1.49,0.52 1.19,1.06 -1.38,0.99 -3.1,-1.37 -4.41,0 -0.5,0.65 0.18,2.24 -1.03,2.16 -0.5,-0.74 -1.75,-0.45 -1.53,0.53 -0.2,1.69 0.62,3.72 -0.41,5.19 -0.66,0.33 -1.22,-0.2 -1.09,-0.91 -0.12,-1.11 0.03,-3.29 -1.72,-2.41 -0.67,0.03 -1.71,-0.77 -1.75,0.47 0.06,0.65 0.01,2.06 -1,1.5 -1.52,0.02 -0.1,2.46 -1.59,2.47 -1.19,0.33 -0.61,-1.37 -0.94,-1.97 -0.37,-0.88 -0.34,-2.77 -1.66,-2.66 -0.9,0.32 -1.16,1.36 -1.09,2.22 -1.44,-0.15 -3.26,0.3 -4.53,-0.34 -0.19,-1.45 -2.12,-0.7 -3.09,-0.72 -1.1,0.2 -3.19,0.26 -3.16,1.75 0.18,0.62 1.41,0.15 0.91,1.06 -0.68,1.41 -1.31,3.45 0.22,4.59 0.56,0.73 1.51,0.89 2.31,0.78 0.39,0.62 -0.04,1.73 1.06,1.78 0.82,0.13 1.01,-0.88 1.84,-0.75 0.56,-0.6 1.46,-0.3 2.19,-0.53 1.05,-0.14 1.62,1.91 2.53,0.75 0.45,-0.9 -1.05,-1.78 0.03,-2.47 0.43,-0.42 1.36,-0.12 0.97,0.56 0.31,0.6 1.22,0.59 1.28,1.41 0.36,0.62 1.95,-0.21 1.56,0.94 -0.57,0.37 -0.34,1.37 -0.69,1.69 -0.99,0.34 -1.85,-0.21 -2.78,-0.13 -1.24,0.05 -1.97,2.35 -0.31,2.19 0.54,-0.11 1.18,-0.35 1.25,0.44 0.59,1.21 1.75,1.92 2.94,2.31 1.1,-0.34 0.26,-1.89 1.13,-2.56 0.25,-0.49 1.14,-1.32 0.91,-0.19 -0.46,1.15 1.19,1.95 1.53,0.66 0.1,-1.14 0.13,-2.26 0.56,-3.38 0.17,-0.65 0.1,-1.56 1.03,-1.44 0.9,-0.59 -0.06,-1.44 -0.72,-1.66 -0.7,-0.68 -1.36,-1.56 -2.19,-2 -0.07,-0.9 1.39,-0.47 1.94,-0.41 0.67,0.75 1.81,0.03 2.47,0.78 1.15,-0.1 0.9,1.36 0.91,2.09 0.11,0.82 0.46,3.23 1.53,1.97 0.92,-1.03 0.47,-2.52 1.34,-3.59 0.33,-0.44 0.63,-1.26 1.19,-1.38 0.84,1.14 -0.95,2.32 -0.63,3.59 0.1,1.12 0.02,2.5 0.91,3.25 0.65,1.39 -0.12,2.76 -0.59,4.06 0.07,0.84 0.56,1.8 1.25,2.31 0.62,-0.02 1.11,0.36 0.91,1.06 -0.18,2.09 -0.53,4.09 -1.41,6 -1.06,2.75 -1.22,5.86 -2.59,8.44 -0.72,0.33 -1.45,1.11 -0.78,1.91 0.79,1.25 0.42,2.94 0.28,4.34 -0.27,0.89 -1.19,0.74 -1.88,0.72 -1.18,0.66 0.76,2.48 -0.81,2.94 -1.23,0.32 -1.22,1.75 -0.31,2.44 0.96,0.73 1.93,-0.27 2.75,-0.66 1.7,0.26 1.44,3.03 3.34,3 1.26,-0.42 -0.05,-1.85 0.34,-2.78 -0.12,-0.9 -1.58,-1.77 -0.94,-2.72 1.84,-0.28 1.85,-2.81 1.72,-4.25 0.04,-1.18 -0.96,-2.3 -0.66,-3.44 0.85,0.02 1.15,-1.59 1.97,-0.63 0.78,0.72 2.02,-0.07 1.5,-1.06 -0.3,-0.92 -1.05,-2.37 -0.28,-3.19 0.7,-0.44 0.71,-1.45 1.5,-1.88 0.44,-1.09 -1.53,-2.12 -0.56,-3.22 0.58,-1.05 -1.34,-1.99 -0.47,-2.88 0.94,-0.22 1.7,-1.37 0.94,-2.16 -0.02,-1.17 1.72,-0.94 2.19,-1.88 1.01,-0.79 1.73,-2.25 0.69,-3.31 -0.18,-0.78 0.9,-1.99 -0.28,-2.41 -1.49,0.16 -2.38,2.2 -3.78,2.28 0.32,-1.23 2.36,-1.96 2.03,-3.38 -0.6,-0.78 -1.63,0.59 -2.16,0.19 -0.05,-1.24 1.94,-2.05 1.28,-3.19 -0.36,-0.1 -2.21,-0.04 -1.44,-0.91 0.41,-0.74 2.01,-0.52 1.53,-1.69 -0.28,-0.85 -0.72,-2.33 0.63,-2.47 0.87,0.11 1.43,1.42 2.47,0.88 0.99,-0.67 -0.66,-1.94 0.44,-2.53 1.06,-1.16 2.44,-2 3.88,-2.53 0.68,-1.27 -1.4,-1.26 -2.16,-1.22 -1,0.39 -0.68,-1.23 -1.66,-0.88 -0.22,0.49 -0.84,0.95 -1.22,0.31 -0.72,-0.87 0.26,-2.27 -0.94,-2.91 -0.52,-0.6 0.9,-0.7 1.19,-0.63 1.88,-0.03 4.44,0.62 5.78,-1.09 0.09,-0.8 0.13,-1.95 -0.56,-2.5 C 626.51,50.4 626.43,53.23 625,52.75 c -0.01,-0.66 -0.31,-2.01 -1.28,-1.41 -0.5,0.86 -1.5,-0.07 -1.13,-0.84 0.53,-1.49 -0.45,-2.62 -1.81,-1.47 -0.77,0.41 -1.66,0.74 -2.13,-0.19 -0.85,-0.47 -1.4,1.1 -2.09,0.84 0,-1.73 2.25,-2.09 3.25,-3.09 0.86,-0.28 1.39,-1.65 0.19,-1.81 -0.85,-0.4 0.24,-1.38 -0.06,-2.06 0.11,-1.2 0.75,-3.26 -0.91,-3.66 z m -118.63,132.47 c -0.1,-0.01 -0.2,-0 -0.34,0.03 l -0.16,0.03 c -1.14,-0.27 -2.04,0.88 -1.19,1.78 1.05,1.25 -0.04,3.71 1.91,4.31 1.25,0.92 2.3,-0.68 1.91,-1.81 0.81,-0.86 2.58,0.55 3.06,-0.69 -0.23,-0.71 -1.18,-0.65 -1.5,-1.28 -0.99,-0.15 -1.83,-0.82 -2.78,-0.97 -0.52,-0.37 -0.22,-1.36 -0.91,-1.41 z m -5.09,15.16 c -1.31,0.33 -2.14,1.85 -2.31,3.09 1.08,1.62 2.47,3.3 4.34,4 1.62,0.29 3.7,0.34 4.94,-0.91 0.37,-1.22 -1.33,-2.56 -0.06,-3.69 0.64,-0.68 -0.24,-1.78 -0.94,-0.97 -1.41,1.11 -3.93,0.66 -4.69,-1.06 -0.32,-0.34 -0.81,-0.53 -1.28,-0.47 z m -9.03,4.78 c -2.21,0.22 -4.05,1.54 -6.19,1.88 -1.1,0.53 -1.2,2.01 -2.34,2.56 -0.99,1.39 -0.38,3.31 -0.47,4.91 -0.21,0.92 1.39,1.49 0.53,2.31 -0.8,1.03 -0.85,2.4 -1.5,3.53 0.04,1.24 0.19,2.59 0.34,3.88 0.33,1.45 1.38,3.07 2.91,3.38 1.09,0.04 0.67,-2 1.88,-1.34 1.15,0.17 1.3,-2.11 2.56,-1.06 0.88,0.5 1.69,1.16 1.22,2.28 -0.38,1.81 0.58,4.25 2.75,4.06 1.43,-0.13 3.19,0.25 4.16,-1.06 0.89,-0.49 2,-0.57 2.69,-1.38 0.87,-0.52 1.55,0.5 2.47,0.13 1.66,-0.17 3.08,-1.26 4.03,-2.5 0.68,-0.28 1.69,0.04 1.34,0.94 -0.46,2.47 1.87,4.25 2.75,6.31 0.7,0.72 1.76,0.21 2.44,-0.16 1.53,-0.09 2.67,2.2 4.19,1.28 1,-0.68 2.33,-2.61 0.97,-3.53 -0.66,-0.41 -2.13,0.39 -2.25,-0.59 1,-0.65 0.76,-2.38 -0.34,-2.66 6.1e-4,-0.66 -0.12,-1.59 0.81,-1.56 1.03,-0.19 1.04,-1.65 -0.06,-1.66 -1.2,-0.52 -1.74,0.85 -2.41,1.53 -0.02,1.2 -1.71,0.47 -2.38,0.38 -1,-0.18 -0.63,-1.76 -0.75,-2.59 0.72,-0.69 0.5,-2.8 -0.84,-2.22 -0.68,0.67 -0.72,2.22 -2.03,2.09 -0.69,-0.06 -0.24,-1.28 -1.03,-1.47 -0.65,-0.2 -1.21,-0.32 -1.63,-0.91 -1.19,-0.63 -2.64,0.26 -3.09,1.38 -1.55,-0.08 -3.47,-0.48 -4.47,-1.72 -0.03,-0.85 1.16,-0.66 1.5,-1.34 0.74,-0.76 2.59,-0.94 2.06,-2.41 -0.46,-0.47 -0.36,-1.34 0.47,-1.25 0.96,-0.37 2.39,0.81 2.91,-0.56 0.43,-1.02 0.15,-2.43 -1.06,-2.69 -0.78,-0.64 -1.81,-1.13 -2.44,-1.88 -0.02,-1.03 -0.35,-2.56 -1.72,-2.28 -2.23,-0.88 -4.37,-2.27 -6.53,-3.34 -0.27,-0.53 -0.87,-0.71 -1.44,-0.66 z m -9.31,25.5 c -1.02,0.22 -1.84,0.96 -2.91,1.03 -1.38,0.66 -1.45,2.27 -1.78,3.53 -0.97,0.63 -0.36,1.95 0.72,1.84 0.93,0.03 2.57,-0.2 2.53,1.19 -0.22,1.49 0.55,2.83 1.75,3.66 1.03,0.75 1.63,1.83 1.72,3.09 0.46,1.39 2.33,3.31 3.75,1.94 0.7,-0.79 0.91,-2.19 2.22,-2.19 0.77,-0.46 2.75,-0.66 2.28,-1.91 -0.55,-0.21 -0.82,-0.55 -0.75,-1.19 -0.4,-0.41 -0.71,-1.19 -0.06,-1.56 0.99,-0.94 -0.83,-1.27 -1.03,-2.09 -0.66,-0.71 0.41,-1.69 -0.59,-2.22 -1.71,-1.23 -3.64,-2.35 -5.75,-2.59 -0.33,-0.52 -0.18,-1.34 -0.72,-1.69 -0.1,-0.64 -0.79,-0.93 -1.38,-0.84 z m 29.38,10.63 c -1.33,0.22 -2.59,0.93 -3.63,1.69 -0.45,0.9 -0.68,1.89 -1.59,2.44 -0.54,0.69 0.25,1.23 0.81,1.31 0.37,1.29 0.21,2.72 -0.03,4 0.33,1.47 2.64,2.98 3.59,1.19 0.97,-1.22 -0.67,-1.97 -1.22,-2.84 0.11,-0.78 1.36,-1.34 0.81,-2.28 -0.77,-1.25 1.14,-1.8 1.28,-2.94 0.75,-0.52 1.7,-1.85 0.56,-2.47 -0.19,-0.09 -0.39,-0.13 -0.59,-0.09 z m -31.38,19.34 c -1.78,0.39 -2.24,2.89 -0.5,3.69 0.84,0.91 3.58,0.96 2.69,2.75 -0.43,0.67 -1.15,2.45 -2.13,2.06 -1.07,-1.49 -3.32,-0.31 -4.38,-1.66 -2.45,-1.19 -4.92,2.37 -7.13,0.47 -0.91,-0.48 0.15,-2.19 -1.31,-1.81 -2.08,0.85 -4.82,-0.2 -6.59,1.28 -0.34,0.87 -1.83,0.19 -2.44,1 -1.44,1.16 -2.92,2.31 -4.38,3.34 -0.58,1.26 -2.09,0.67 -3,0.25 -1.83,0.47 -3.77,0.34 -5.59,0.69 -0.69,0.34 -1.17,1.2 -1.84,0.25 -1.67,-1.2 -3.96,-0.77 -5.75,-0.78 -0.43,-0.81 -0.69,-3.49 -2.06,-2.41 -0.34,1.08 -0.64,2.1 -1.63,2.75 -0.2,1.5 -1.69,1.18 -2.66,0.63 -1.23,-0.78 -3.21,-0.86 -3.53,0.84 -0.77,1.15 -2.15,0.74 -3.22,0.97 -0.37,0.52 -0.38,1.15 -1.13,1.38 -0.72,0.6 1.25,2.13 -0.31,1.97 -0.92,-0.69 -1.83,-1.44 -2.88,-2 -1.06,-1.79 -3.72,-1.11 -5.41,-0.88 -1.47,1.04 -1.99,3.02 -3.69,3.84 -1.41,0.8 -0.87,2.48 -2.06,3.41 -1.04,0.99 -1.81,3.01 -3.06,3.44 -0.96,-1.41 1.04,-2.97 1.06,-4.47 0.32,-1.37 0.3,-2.94 1.81,-3.63 1.08,-0.87 -0.18,-2.05 0.06,-3.13 -0.27,-1.03 -1.78,-0.49 -1.75,-1.72 -2.13,-1.93 -5.6,-2.78 -8.31,-1.72 -1.56,1.48 0.52,4.34 -1.63,5.56 -1.33,0.26 -3,0.63 -3.31,2.25 -0.3,0.98 0.12,2.38 -1.19,2.72 -1.58,0.91 -2.83,2.4 -3.97,3.69 -0.94,0.62 -2.29,-0.44 -1.28,-1.41 1.52,-3.11 3.66,-5.77 5.44,-8.66 1.45,-1.33 -1.22,-2.27 -2.28,-2.38 -0.51,-1.19 -2.1,-0.86 -2.69,-2.03 -0.97,-0.7 -3.62,-0.28 -3.09,1.25 0.65,0.56 1.7,1.11 1.03,2.13 -0.54,1.1 -1.38,2.62 -2.44,2.97 -0.13,-0.85 -1.97,-0.32 -1,-1.22 0.98,-0.79 2.39,-2.37 0.69,-3.31 -0.87,-1.42 0.39,-3.98 -1.78,-4.53 -2.38,-2.27 -5.85,-0.99 -8.66,-1.97 -0.59,-1.01 -2.21,-1.08 -1.97,0.38 -0.26,1.72 0.39,3.81 -1.16,5.03 -0.52,2.62 -3.4,3.5 -5.06,5.22 -0.94,1.3 -1.9,3.99 0.41,4.44 1,0.58 1.49,1.74 2.69,1.97 1.28,1.2 3.61,1.05 4.25,3.03 0.61,0.53 0.11,2.59 -0.72,1.5 -0.98,-1.47 -3.1,-3.44 -4.88,-1.88 -1.14,0.49 -1.2,2.17 0.19,2.34 0.79,0.33 3.49,0.48 2.22,1.88 -0.29,1.15 1.57,2.28 0.91,3.28 -0.77,0.56 -1.75,0.54 -2.13,-0.38 -1.45,-0.2 -2.15,-1.99 -3.78,-1.94 -0.59,-0.52 -2.14,-1.59 -2.06,-0.03 0.39,1.06 0.08,1.79 -0.72,2.47 -1.14,1.41 0.86,2.72 2.22,2.38 0.88,0.02 1.77,0.05 2.66,0.06 -1.5,0.03 -3,0.04 -4.5,0.09 -1.52,0.65 0.05,2.53 1.09,2.66 0.77,1.39 -0.18,3.4 1,4.56 1.64,3.04 5.36,2.82 8.31,2.84 1.53,0.31 3.71,-0.3 4.94,0.72 -0.13,1.27 -2.52,-0.06 -2.72,1.41 -0.16,1.28 2.41,2.25 1.44,3.41 -1.23,-0.06 -2.39,-1.11 -3.34,-1.88 -0.94,-1.61 -2.71,-2.03 -4.44,-1.69 -1.41,0.28 -2.81,-2.44 -3.84,-0.75 -0.04,1.09 -1.3,0.89 -1.72,0.22 -1.39,-0.71 -1.93,0.88 -1.91,1.91 -1.51,-1.56 -3.97,-1.88 -5.88,-0.78 -1.39,0.41 -2.46,2.15 -3.88,2.19 -0.35,-1.16 -1.35,-1.84 -2.38,-2.34 -0.5,-1.47 -3.82,-1.06 -2.69,0.75 0.86,1.12 2.02,1.99 2.5,3.34 1.33,0.52 0.92,2.33 2.34,2.78 1.53,0.78 0.92,3.62 3.09,3.63 0.67,-0.06 1.86,-0.95 2.25,-0.13 -0.61,1.16 -2.07,2.08 -1.69,3.56 -1.07,0.24 -0.71,1.29 -0.38,1.97 -0.19,1.77 -0.57,4.44 -2.84,4.66 -1.01,-0.5 -2.51,-0.77 -2.78,0.69 -1.07,0.15 -1.27,-1.71 -2.06,-2.22 -0.84,-1.01 -2.58,-3.61 -3.84,-1.69 -1.07,1.65 0.36,3.31 1.72,4.13 0.13,1 0.16,2.59 1.66,2.41 1.56,-0.57 2.89,0.73 2.94,2.22 0.39,0.83 1.6,0.3 1.63,1.41 1.05,1.07 1.47,2.72 3.25,2.81 2.25,0.64 4.24,2.38 6.63,2.44 0.99,1.46 -1.04,2.92 -1.78,3.88 1.48,2.1 4.06,2.85 5.75,4.75 1.81,1.46 3.11,3.76 3.5,6.03 0.02,0.87 -1.09,1.56 -1.44,0.44 -1.42,-2.17 -2.18,-5.26 -5,-5.97 -2.46,-1.12 -4.19,-4.7 -7.25,-3.97 -1,0.9 -3.02,-0.2 -3.5,1.19 0.26,1.95 1.97,3.2 3.88,3.22 1.2,0.14 1.91,0.93 2.31,1.94 0.73,0.18 1.52,1.85 0.28,1.66 -2.46,-0.85 -5.31,-1.18 -7.34,-2.88 -1.03,-1.88 -3.31,-2.95 -5.19,-3.88 -1.88,-0.14 -0.85,2.52 -1.78,3.47 -0.7,0.76 -0.32,2.72 -1.84,2.28 -1.64,-0.39 -3.21,-1.2 -4.88,-1.56 -1.64,-1.48 -1.23,-4.41 -3.41,-5.53 -1.17,-1.59 -2.44,-0.58 -3.09,0.75 -0.73,1.72 -0.97,4.59 0.91,5.63 1.94,0.61 3.27,2.49 2.53,4.53 -0.6,0.9 -0.1,1.85 0.47,2.56 -0.68,0.77 -1.47,1.62 -1.16,2.66 -1.06,1.75 -3.25,0.02 -3.91,-1.19 -1.46,-1.16 -1.46,-2.98 -1.75,-4.63 -0.61,-1.41 -2.17,-2.63 -1.25,-4.34 -0.62,-1.27 -2.76,-0.32 -4,-0.34 -1.07,0.5 -2.63,0.42 -3.28,1.5 -1.05,2.98 0.65,6.03 0.09,9.09 -0.11,1.15 -0.04,2.47 1.28,2.72 1.61,1.52 3.86,1.38 5.84,1.69 1.37,0.95 2.44,3.76 0.97,4.97 -1.98,-0.28 -4.14,-3.07 -5.97,-0.94 -1.04,0.97 -1.24,2.44 -2.16,3.53 -0.79,1.41 0.3,2.87 1.66,3.31 1.68,1.15 3.26,2.65 3.5,4.75 0.47,1.68 3.34,0.91 3.22,2.81 -0.7,2.51 2.72,1.08 4.09,1.34 2.29,0.17 5.37,-0.63 7.09,1.22 0.67,1.47 -0.97,2.17 -2.19,2 -2.36,-0.04 -5.08,0.14 -6.66,2.09 -0.88,0.21 -1.76,-0.13 -1.97,-1 -1.16,-0.68 -2.32,-1.37 -3.19,-2.44 -0.89,-0.59 -2.35,-0.08 -2.72,-1.38 -1.43,-0.64 -2.35,-2.7 -4.06,-2.41 -1.06,0.67 -0.65,2.23 -1.66,3 -0.33,2.03 -0.9,3.96 -1.31,5.97 0.11,1.77 -0.04,3.99 0.94,5.38 0.91,0.21 3.62,-0.22 2.78,1.53 -0.74,0.76 -1.12,1.89 -0.22,2.75 0.46,0.93 0.64,2.1 0,2.84 0.41,1.13 0.69,2.33 1.28,3.34 2.58,1.29 5.05,-1.26 6.91,-2.78 1.8,-1.33 4.11,-2.26 5.13,-4.34 1.47,-0.16 0.16,1.65 1,2.16 1.14,0.57 -0.19,2.19 -1.16,2.31 -0.98,1.28 1.24,0.93 1.84,1.56 2.73,0.99 4.18,-2.46 5.84,-3.94 1.12,-0.58 1.81,-1.75 2.56,-2.63 0.83,0.01 2.77,0.68 1.47,1.69 -0.88,2.64 -3.37,4.36 -5.44,6.06 -1.8,0.22 -3.68,0.47 -5.22,1.59 -1.53,0.86 -3.99,0.27 -4.94,1.91 -1.59,0.68 -3.38,1.92 -2.81,3.94 1.15,1.4 3.29,0.36 4.75,0.13 1.29,0.81 2.99,0.28 4.16,1.19 1.67,-0.36 3.61,-0.45 4.84,-1.75 1.5,-0.31 0.69,-2.5 2.34,-2.59 0.85,-0.16 2.61,-1.08 3.19,-0.13 -0.5,1.49 -3.26,0.87 -3.66,2.56 -0.72,1.02 -2.72,2.02 -0.78,3.06 1.66,1.72 3.46,3.88 6.13,3.53 0.64,-0.05 1.65,0.46 0.69,0.97 -1.06,0.38 -1.81,2.91 -3.09,1.78 -2.26,-1.73 -4.16,-3.94 -6.03,-6 -2.03,0.15 -3.88,1.58 -5.94,1.91 -1.33,0.05 -2.26,1.63 -0.97,2.5 1.7,1.47 -0.54,3.41 -1.59,4.47 -1.13,0.79 -2.98,2.48 -1.41,3.78 1.56,1.66 4.09,0.04 5.88,1.28 1.91,0.4 2.81,2.12 3.44,3.81 2.58,0.78 5.32,-0.44 7.91,-0.84 0.81,-0.09 2.64,0.41 2.28,1.38 -2.83,0.27 -5.99,0.32 -8.47,1.81 -0.31,1.52 -1.89,0.24 -2.69,-0.16 -1.84,-1.08 -2.96,-3.23 -5.31,-3.41 -1.77,-0.27 -3.4,0.39 -5.16,0.47 -1.23,0.68 -1.08,2.55 -2.53,3.09 -1.07,1.01 -3.11,2.21 -2.81,3.88 0.6,0.95 2.28,-0.34 2.34,1.13 1.47,1.41 5.71,-0.86 5.78,2.13 -1.66,0.76 -0.03,3.1 1.09,3.66 0.99,0.18 1.78,1.1 2.91,0.5 2.12,-0.27 4.07,-1.96 6.19,-1.75 0.48,0.49 1.25,2.08 -0.13,1.75 -2.27,0.46 -4.39,1.26 -6.59,1.84 -1.79,1.39 -4.21,-0.17 -5.78,-1.16 -1.68,-0.72 -1.46,-3.93 -3.69,-3.22 -1.91,0.27 -4.99,-0 -5.25,2.63 -0.62,1.38 1.07,1.82 1.03,3.16 -0.23,0.67 -2.01,-0.15 -2.13,1.19 -0.6,1.09 -0.51,2.38 -1.06,3.44 0.04,1.05 2.35,0.97 1.22,2.19 -0.97,0.61 -0.61,2.21 0.63,1.63 2.31,-0.22 4.71,-1.43 7,-0.91 0.8,0.39 1.13,1.82 -0.13,1.53 -0.93,0.29 -3.21,1.34 -2.22,2.34 1.44,0.62 3.22,0.48 4,-1.06 0.33,-0.97 2.6,-1.88 2.56,-0.28 -0.69,1.07 -2.28,1.47 -2.53,2.94 -1.12,1.62 -3.48,-0.25 -4.84,1.22 -0.86,0.31 -1.86,0.33 -2.56,0.84 -1.07,-0.43 -3.46,-0.16 -2.38,1.47 1.83,1.92 4.73,2.03 6.81,3.38 0.46,1.47 -2.01,0.36 -2.97,0.56 -1.34,-0.4 -2,0.65 -2.41,1.66 -1.29,-0.04 -1.03,1.41 -0.44,1.97 0.18,1.64 -1.84,1.45 -2.75,0.88 0.04,-0.97 -1.03,-1.77 -1.59,-0.78 -1.3,0.49 -1.05,-1.61 -2.19,-1.88 -2.14,-1.74 -4.49,0.67 -6.78,0.56 -2.77,0.45 -5.94,-0.49 -8.41,1.06 -1.36,0.35 -1.02,2.34 -2.47,2.59 -1.54,0.74 -1.43,2.75 0,3.56 1.48,1.21 3.71,1.39 5.16,0.13 2.25,-0.25 4.47,0.24 6.5,1.06 1.98,0.42 4.05,0.08 5.94,-0.28 2.06,1.26 4.78,1.03 7.06,0.91 1.74,-1.55 3.2,-4.42 6,-3.72 3.04,-0.06 4.96,4.18 8.13,2.72 1.95,-0.47 4.53,-0.66 6.16,0.47 -2.27,1.06 -5.18,0.93 -7.72,1.19 -1.97,0.02 -4.26,-0.02 -5.53,-1.81 -1.33,-1.3 -3.15,0.28 -3.97,1.41 -1.63,1.17 -3.44,2.52 -5.44,2.66 -1.05,1.41 1.43,1.56 2.13,2.28 0.9,0.39 0.9,2.56 -0.28,1.31 -1.36,-1.17 -3.37,-1.51 -4.44,-2.91 -2.05,-0.14 -4.46,-0.16 -6.28,0.88 -1.17,1.74 1.33,2.73 1.91,4 1.07,2.46 3.06,4.69 5.44,5.91 2.41,0.08 4.67,2.31 7.09,1.53 0.86,-0.82 1.5,-3.4 3.06,-2.69 0.25,1.28 -2.12,2.91 -0.72,4.03 1.07,0.33 1.92,1.41 3.19,1.41 0.99,0.52 2.02,1.41 3.22,0.66 4.48,-2.18 8.17,-6.13 10.09,-10.69 -0.38,-0.39 -2.47,-0.79 -1.47,-1.56 1.82,0.14 3.94,0.3 5.03,-1.53 0.91,-1.16 2.11,-2.02 3.5,-2.44 1.43,-0.73 2.11,-2.15 2.72,-3.47 1.58,-0.85 2.51,-2.66 4.16,-3.31 1.43,0.37 2.93,-0.67 2.53,-2.22 0.59,-1.28 1.67,-2.47 1.44,-4 2.76,-1.55 5.14,-3.96 7.09,-6.44 0.16,-1.31 -1.66,-1.01 -2.41,-1.69 -3.72,-0.85 -8.12,0.44 -11.47,-1.69 -0.58,-0.85 1.55,-0.38 2,-0.53 3.16,0.3 6.62,-0.14 9.59,0.94 1.38,1.18 3.67,0.19 4.72,1.94 0.26,0.33 0.55,0.56 0.88,0.72 -0.23,6e-5 -0.46,-6e-5 -0.69,0 -3.26,3.43 -5.63,7.75 -8.59,11.5 -0.88,0.74 -1.11,2.5 0.41,2.5 1.91,-0.39 2.97,1.92 4.94,1.25 2.65,-1 5.38,-1.54 8.09,-2.38 0.86,-0.12 2.07,-0.51 2.75,0.09 -2.82,1.36 -6.46,1.43 -8.88,3.72 -1.33,0.7 -2.91,0.74 -4.09,-0.22 -1.88,-0.65 -3.87,0.05 -4.97,1.63 -1.06,0.69 -3.45,0.04 -3.25,2.03 0.74,2.24 -2.23,3.19 -3.22,4.75 -1.15,1.24 -3.06,3.42 -1.38,4.91 -0.79,0.54 -2.81,0.7 -1.91,2.16 0.31,1.65 2.26,2.1 3.28,0.78 1.11,-1.41 2.78,-1.81 4.47,-1.84 0.71,0.16 1.93,-1.61 2.22,-0.56 0.59,1.65 -1.29,1.96 -2.47,1.94 -1.7,0.53 -2.3,2.62 -4.13,3.06 -1.36,0.77 -2.96,0.89 -4.38,0.41 -1.46,0.73 0.21,2.68 0.44,3.75 0.05,1.03 1.81,2.89 0.13,3.34 -1.68,0.61 -4.84,0.21 -5.03,2.69 0.11,0.81 0.98,2.51 -0.56,2.34 -2.15,0.71 -2.85,3.52 -3.09,5.5 1.05,1.36 1.83,-1.59 2.94,-0.47 0.89,0.2 2.19,-1.44 2.75,-0.41 -0.57,1.91 -3.23,1.59 -4.44,2.81 -1.4,0.14 -3.37,-0.69 -3.97,1.19 -1.23,2.35 -0.64,5.23 -1.16,7.72 1.28,1 3.39,0 4.69,-0.59 0.81,-0.49 1.95,-0.49 1.81,0.72 0.77,0.39 0.52,0.94 -0.22,1.22 -1.36,0.99 -4.57,1.03 -3.41,3.38 0.5,1.85 -1.68,2.94 -2.06,4.63 -0.61,0.55 -0.86,2.47 0.44,1.81 1.38,-0.8 2.41,-3.26 4.22,-2.84 1.19,0.88 -0.92,2.27 -1.06,3.25 -0.77,1.75 -2.4,3.49 -2.38,5.34 1.53,0.83 2.37,2.36 1.94,4.09 0.06,1.15 -2,0.73 -2.16,-0.22 -1.21,-1.42 -2.59,0.61 -2.97,1.72 -0.9,1.09 -2.47,2.45 -1.97,4.09 1.45,1.17 2.21,-1.56 2.91,-2.44 0.97,-1.12 1.55,1.14 1.69,1.78 0.48,1.79 -0.96,3.16 -2.28,4.03 -1.19,2.28 -2.55,4.47 -4.03,6.59 -0.53,1.34 -1.89,2.99 -1.22,4.41 2.19,0.88 3.16,-2.12 4.81,-2.94 0.55,-0.38 2.61,-1.71 2.44,-0.16 -0.75,2.11 -3.07,3.34 -3.44,5.63 -1.93,2.81 -3.69,6.7 -2.13,10.03 0.8,1.23 2.15,-0.1 3.03,0.03 -0.13,0.97 0.55,3.16 1.78,2.03 1.19,-0.52 2.54,-1.15 3.44,-2.28 2.41,-2.05 3.72,-5.37 6.38,-7.09 0.3,1.06 -0.86,1.83 -0.75,2.94 -0.54,0.92 -1.37,1.69 -1.5,2.78 -1.93,2.24 -4.28,4.27 -6.72,5.81 -1.96,2.83 -3.33,6.06 -5.81,8.53 -0.88,1.67 -0.44,3.77 -1.16,5.56 -0.5,2.4 -0.81,4.96 -2.34,6.91 -0.06,5.47 0.26,11.15 -0.91,16.53 -0.31,1.12 -1.87,0.74 -2.38,1.84 -3.71,2.99 -2.49,8.21 -2.84,12.34 1.19,1.35 3.77,1.92 5.38,0.91 0.87,-1.41 3.11,-1.27 4.59,-1.53 2.34,0.27 5.09,-0.55 6.03,-2.84 1.51,-1.59 3.24,-3.95 1.81,-6.16 -0.55,-1.91 -2.27,-2.87 -4.09,-3 -0.72,-0.18 -1.72,-1.43 -0.44,-1.59 2.31,0.19 3.31,-2.23 3.5,-4.16 0.89,-1.85 2.18,-3.57 2.38,-5.72 0.97,-2.1 1.12,-4.43 1.19,-6.75 -0.27,-1.44 2.21,-0.37 1.63,-1.88 -0.76,-1.93 -1.11,-4.21 -0.88,-6.28 1.12,-1.58 0.91,-3.75 2.03,-5.34 0.02,-1.12 -0.05,-2.25 0.94,-3.09 1.05,-1.18 1.94,-2.73 2.97,-3.81 1.69,-0 2.86,-1.54 4.5,-1.69 1.19,-1.55 -0.01,-3.58 -0.63,-5.09 -0.61,-1.75 -2.26,-2.91 -3.13,-4.56 -0.33,-0.79 -1.53,-0.7 -1.91,-1.06 0.19,-2.35 -1.12,-4.44 -1.03,-6.81 0.13,-2.28 -1.92,-3.86 -1.53,-6.16 0.16,-2.22 -0.44,-4.83 0.66,-6.81 1.36,-0.2 0.49,1.94 1.34,2.56 1,1.55 2.82,0.21 3.47,-0.97 1.58,-0.88 1.92,-2.63 1.91,-4.31 -0.07,-1.03 0.8,-1.88 1.66,-0.97 1.62,0.25 1.02,-2.31 2.34,-2.88 1.51,-1.36 1.55,-3.73 3.41,-4.81 2.19,-2.48 6.65,-2.34 7.81,-5.78 -0.12,-2.49 1.98,-4.52 3.28,-6.47 0.41,-0.73 1,-0.92 1.5,-0.19 2.43,0.74 4.59,-1.59 6.56,-2.69 0.33,-0.6 2.14,-1 1.5,0.09 -1.98,2.87 -5.36,4.09 -8,6.19 -1.68,1.44 -2.66,3.54 -2.84,5.69 -1.86,1.78 -4.2,3.18 -6.75,3.59 -1.3,0.49 -1.41,1.98 -1.28,3.09 -2.44,2.85 -5.49,5.52 -6.38,9.31 -0.83,1.59 -2.54,2.78 -2.31,4.78 -0.5,0.93 -0.36,1.9 0.38,2.63 0.5,1.61 -0.93,2.94 -0.72,4.63 -0.46,1.75 0.2,3.47 1.69,4.5 0.76,0.99 0.94,2.46 2.44,2.72 1.1,0.07 1.91,0.41 2.47,1.38 1.02,0.96 2.26,-0.48 1.47,-1.53 -0.42,-1.64 -1.84,-3.21 -1.72,-4.88 1.19,-1.73 3.32,-3.14 2.78,-5.56 0.17,-1.24 -0.2,-3.36 1.03,-4.03 1.38,1.48 -0.77,4.63 1.5,5.78 1.68,1.05 2.99,3.5 5.13,3.5 1.25,-1.16 0.09,-3.26 -0.22,-4.66 -1.43,-2.25 -2.98,-4.79 -2.59,-7.53 0.56,-1.51 0.97,0.92 1.22,1.53 0.8,3.12 3.85,5.11 4.13,8.44 0.82,1.91 -0.17,5.17 2.13,6.16 2.46,0.99 3.29,-2.18 4.13,-3.78 0.97,-2.52 1.33,-5.16 3.09,-7.28 -0.24,-1.75 -3.35,-1.31 -3.75,-3 0.18,-0.72 0.86,-1.87 1.63,-0.88 0.66,0.63 3.02,2.12 2.78,0.16 -0.38,-2.2 -1.48,-4.56 -1.06,-6.78 1.11,-1.31 3.02,-3.56 1.09,-5.03 -2.14,-1.6 0.19,-4.7 -1.34,-6.47 -0.2,-0.62 0.36,-2.45 1.13,-2 1.62,2.24 0.94,5.24 1.28,7.75 1.36,-0.1 2.3,-2.01 2.97,-3.19 1.31,-3.11 2.8,-6.84 5.88,-8.56 0.87,0.67 -0.38,2.14 -1.03,2.66 -1.42,1.99 -2.33,4.31 -3.56,6.41 -0.42,1.66 -2.36,2.84 -2.19,4.72 0.89,0.45 1.71,1.03 1.91,2.16 1,2.51 1.98,5.48 4.5,6.78 0.99,0.73 2.46,0.56 3.22,1.78 1.69,1.89 3.03,4.2 5.63,5 2.91,1.49 6.45,1.55 9.28,2.94 -1.38,1.2 -3.82,0.23 -5.53,0.28 -4.95,-0.56 -10.18,-0.99 -14.41,-3.69 -1.94,-0.02 -4.36,0.34 -5.66,1.91 -0.46,1.64 0.24,3.6 -1,5 -0.49,3.89 -0.33,8.08 1.06,11.78 1.34,1.44 1.11,3.8 0.63,5.53 -0.94,1.34 -3.66,3.07 -2,4.88 2.09,2.04 3.77,4.36 5.53,6.69 1.25,1.34 3.34,0.58 4.63,1.88 1.4,0.45 0.77,-1.52 1.47,-1.91 0.87,0.14 0.37,1.68 1.25,2.09 1.24,1.27 0.99,3.23 2.09,4.63 0.8,2.23 -0.3,5.24 2.03,6.84 1.72,1.98 0.63,4.92 -0.44,7 -0.14,1.31 -0.56,2.74 -2.09,2.97 -2.85,0.79 -6.65,2.45 -6.34,6.03 0.2,1.74 -0.7,3.26 -2.22,4.06 -0.46,1.23 -1.77,1.76 -2.34,2.88 -0.03,2.64 0.03,5.3 -0.94,7.81 -0.27,1.68 -0.34,3.48 -1.81,4.66 -1.84,1.66 -2.89,3.97 -4.31,5.88 -1.8,0.96 -3.62,2.87 -3.44,5.03 -0.56,1.04 -0.61,2.21 -0.88,3.28 -2.04,2.71 -4.34,6.44 -2.34,9.81 1.23,3.19 3.41,6.2 3.72,9.63 -0.55,1.46 -2.49,2.44 -3.66,1.06 -3.01,-2.12 -1.81,-6.12 -2.56,-9.19 -1,-0.68 -0.61,-2.7 -2.09,-2.69 -1.2,0.95 -3.12,0.77 -3.66,2.44 -1.07,2.52 -0.83,5.43 -0.91,8.13 0.67,2.36 2.08,4.49 2.75,6.84 0.89,1.66 2.38,2.85 3.81,3.91 0.96,1.36 2.75,1.87 3.28,3.59 1.06,0.96 2.6,1.8 2.47,3.5 0.06,1.02 1.41,1.18 0.78,2.31 0.04,1.41 2.53,0.85 1.97,2.44 -0.31,1.03 0.52,1.86 0.69,2.66 -0.74,0.56 -2.23,1.34 -1.09,2.31 0.35,2.06 2.49,3.91 4.56,4 0.9,-0.76 -0.04,-2.27 0.59,-3.31 0.17,-1.61 -1.9,-2.35 -1.72,-4.03 -0.58,-3.2 -2.17,-6.06 -2.91,-9.22 -0.52,-1.01 -1.41,-2.19 -0.22,-3.13 0.95,-3.02 5.07,-3.07 6.38,-5.75 0.22,-0.81 1.86,0.09 2.56,-0.16 1.92,1 1.93,4.56 4.63,4.13 3.08,-0.54 4.41,2.86 6.72,4.13 1.33,1.24 3.46,1.32 4.19,3.19 0.55,1.35 1.03,2.83 2.47,3.5 2.05,1.97 4.1,4 6.94,4.72 1.31,0.72 3.69,2.61 4.72,0.56 0.56,-1.15 1.94,-2.35 0.53,-3.47 -0.73,-1.65 0.37,-3.36 0.06,-4.97 -0.53,-1.25 -0.64,-3.32 0.66,-4.22 0.16,-1.61 -2.44,-1.55 -3.38,-2.41 -1.36,-1.1 -1.24,-3.29 -1.94,-4.84 -0.61,-1.65 0.81,-2.5 1.63,-3.59 0.63,-2.01 -1.93,-3.01 -2.94,-4.25 -0.58,-0.62 0.09,-2.1 0.84,-1.31 0.74,0.86 2.21,1.23 2.16,2.56 0.75,0.45 1.5,0.92 1.66,1.94 0.49,1.17 0.05,2.74 1.22,3.5 1.3,2.22 4.13,3.33 6.59,3.59 1.85,-0.29 2.83,-3.63 4.84,-2.56 -1.06,1.72 -1.31,4.21 -0.03,5.91 0.53,0.64 1.86,-0.09 1.5,1.16 0.19,1.19 1.81,3.41 2.97,2.03 0.56,-0.64 1.17,-0.02 1.59,0.38 1.77,-0.9 0.6,-3.49 1.78,-4.88 0.78,-1.32 2.02,-2.48 1.94,-4.09 1.7,0.15 1.04,2.38 0.31,3.28 -0.15,1.22 0.88,2.46 -0.06,3.59 -0.81,1.08 -0.53,2.89 1.03,2.94 1.84,0.19 4.21,0.72 5.44,-1 2.03,-1.31 4.47,-2.23 6.38,-3.75 1.67,-0.03 0.6,-1.92 -0.28,-2.34 -0.86,-0.66 -0.5,-1.33 0.31,-1.72 0.28,-1.61 2.13,-2.57 2.13,-4.28 1.29,0.5 0.96,2.61 2.31,3.31 1.57,1.33 3,-0.86 3.97,-1.88 1.05,-0.81 2.45,-1.24 3.59,-0.47 1.63,-0.02 3.22,0.63 4.81,0.56 0.47,-0.61 0.74,-1.31 1.53,-1.69 1.7,-1.99 -1.39,-4.09 -0.47,-6.25 0.21,-2.96 1.04,-6.26 -0.78,-8.88 0.32,-0.89 1.46,0.53 1.66,1.03 0.72,1.9 0.94,4.71 3.19,5.44 1.55,0.1 4.58,0.6 4.91,-1.53 -0.61,-1.56 2.14,-1.56 2.53,-0.34 1.79,1.55 4.41,1.33 6.5,0.69 1.54,0.49 3.14,1.7 4.78,0.78 2.26,-0.85 4.57,-0.36 6.75,0.34 1.28,-0.08 2.27,-1.13 3.63,-1.03 1.9,-0.4 3.02,-2.15 3.03,-3.97 0.69,-1.22 1.38,-2.97 -0.06,-3.94 -0.74,-1.32 1.42,-1.3 2.19,-1.13 1.83,0.17 4.02,1.13 5.13,-0.94 1.38,-1.33 3.07,-2.22 3.94,-4.03 1.08,-1.22 2.74,-2.02 3.13,-3.81 0.77,-1.4 2.71,-0.64 3.72,-1.88 1.53,-1.39 3.71,-1.96 5.03,-3.53 1.14,-1.34 1.27,-3.67 2.78,-4.56 1.96,-0.05 2.42,-3.02 1.16,-4.03 -0.24,-1 1.36,-1.03 1.41,-2.13 1.16,-1.7 3.17,-2.64 4.22,-4.47 1.16,-1.09 3.09,-1.21 3.66,-2.97 0.59,-1.89 2.9,-1.35 4.19,-2.34 1.44,-0.35 2.46,0.73 3.63,1.19 2.1,-0.62 3.3,-2.79 3.19,-4.91 0.07,-1.24 0.79,-2.25 2.03,-2.38 1.66,-1.01 3.15,-2.54 5.25,-2.34 1.82,-0.34 3.73,-2.33 3.41,-4.19 -0.6,-0.49 -1.73,-0.25 -1.69,-1.31 -0.52,-2 -2.13,-3.59 -1.72,-5.81 -0.15,-3.08 -4.28,-4.1 -4.19,-7.25 -0.46,-1.15 -1.29,-2.06 -1.88,-3.13 -1,-0.87 -0.47,-2.58 0.97,-2.56 1.35,-0.34 2.96,0.75 4.13,-0.53 1.99,-1.82 2.74,-4.77 4.78,-6.44 -0.33,-1.11 0.47,-2.04 1.5,-2.28 0.54,-0.6 0.4,-1.78 1.56,-1.59 1.49,-0.39 1.23,-2.51 2.78,-2.72 1,-1.06 -0.66,-2.92 1,-3.66 0.84,-0.67 2.35,-1.15 1.59,-2.53 -0.72,-1.79 -1.56,-3.54 -2.19,-5.34 -0.78,-1.14 -2.6,-0.62 -3.13,-2.16 -0.78,-0.82 -0.08,-2.79 -1.75,-2.69 -1.8,-0.11 -3.12,-1.55 -4.72,-2.03 -1.09,0.41 -2.07,1.3 -3.34,0.69 -2.77,-0.25 -5.28,-1.34 -7.38,-3.09 -1.59,-1.83 -3.6,-3.36 -5.75,-4.34 -0.71,-0.98 -2.28,-0.71 -3.19,-1.59 -1.16,-0.46 -1.68,1.5 -2.84,0.41 -1.01,-0.32 -2.42,1.01 -2.94,-0.47 -0.24,-1.09 1.11,-2.33 -0.34,-3.13 -0.78,-1.19 -1.49,-2.68 -3.13,-2.81 -3.07,-0.57 -6.29,-0.49 -9.38,-0.69 -1.59,0.37 -1.93,2.34 -3.59,2.69 -1.29,0.72 0.13,1.7 0.47,2.38 -0.91,0.75 -2.38,1.24 -2.44,2.69 -0.88,3 -4.75,1.91 -6.56,3.88 -1.84,0.97 -4.01,1.05 -5.94,1.75 -2.68,-0.63 -4.39,-2.97 -6.59,-4.38 -3.37,0.07 -7.15,1.04 -10.38,-0.38 -0.9,-0.85 -2.18,-1.78 -3.31,-0.69 -1.53,1.03 -3.26,-0.6 -4.94,-0.38 -3.55,-0.11 -6.82,-1.31 -10.03,-2.66 -1.78,-0.71 -3.4,2.02 -5.06,0.38 -0.81,-0.42 -0.67,-2.16 -1.84,-1.28 -0.71,0.49 -2.72,0.73 -2.31,-0.75 0.45,-3.32 -2.49,-5.51 -4.84,-7.22 -1.24,-0.35 -2.46,-0.35 -3.59,-1.03 -1.27,0.26 -1.07,-1.61 -0.72,-2.16 1.94,-0.41 3.96,0.79 5.44,1.72 1.51,2.41 4.24,3.4 5.97,5.59 1.92,1.84 4.69,-0.15 6.94,-0.06 1.43,-0.68 2.33,0.42 3.34,1.19 0.99,0.6 2.18,0.35 3.06,1.13 2.23,-0.03 4.2,2 6.38,1.59 0.9,-1.48 3.22,-0.24 4.16,-1.88 0.74,-0.6 2.03,0.03 2.63,-1.06 1.35,-0.84 3.13,-1.73 4.66,-1 1.67,-0.68 4.24,-0.46 4.66,-2.72 0.5,-1.71 0.26,-4.61 2.53,-4.84 1.28,-1.08 2.43,-2.25 3.72,-3.31 1.59,-1.75 3.76,-2.73 5.16,-4.72 1.78,-2.57 5.95,-2.77 8.09,-0.59 1.56,1.91 4.6,0.96 6.25,-0.38 2.95,-1.28 6.11,-2.3 8.31,-4.81 1.05,-1.44 3.08,-1.97 3.88,-3.53 -0.04,-1.22 -1.85,-0.71 -2.38,-1.72 -1.36,-0.6 -1.67,-2.27 -3,-2.75 -0.73,-0.12 -1.23,-1.05 -2.22,-0.78 -2.05,-0.26 -4.28,-0.62 -5.75,-2.06 -1.03,-0.1 -1.42,-1.72 -2.66,-1.22 -1.25,-0.4 -2.54,-0.8 -3.75,-1.19 -0.37,-1.33 2.07,-1.07 2.81,-1.56 2.85,-1.01 2.63,-4.88 2.69,-7.25 -1.48,-0.34 -3.46,0.95 -4.59,-0.66 -1.82,-1.22 -3.82,0.24 -4.97,1.66 -1.45,0.64 -2.74,1.72 -4.44,1.78 -2.05,0.8 -3.62,2.4 -5.81,3.03 -3.42,1.49 -6.4,3.93 -10.19,4.41 -2.69,0.88 -5.29,-1.28 -6.69,-3.38 1.26,-0.43 2.59,1.32 3.75,1.84 1.73,0.46 3.16,-1.23 4.84,-1.41 4.18,-2.75 6.8,-7.61 11.56,-9.41 0.96,-0.58 1.55,0.09 2.31,0.44 2.96,0.33 5.36,-2.1 8.38,-1.66 2.85,0.31 5.56,-2.62 8.34,-1.03 0.77,0.56 2.83,1.9 3,0.09 -0.3,-1.86 1.03,-3.2 2.63,-3.91 2.18,-1.05 3.55,-3.18 5.22,-4.69 2.04,-0.85 4.34,-1.59 5.22,-3.84 0.56,-1.43 2.95,-2.92 2.06,-4.59 -1.51,-1.71 -0.75,-4.69 1.38,-5.56 0.83,-0.35 3,-1.38 1.63,-2.38 -2.06,-0.53 -4.76,0.49 -6.06,-1.78 -1.1,-1.17 1.31,-0.92 1.81,-1.56 1.14,0 3.21,-0.32 3.47,1.19 1.43,0.83 1.31,-1.79 1.66,-2.63 0.31,-2.35 2.16,-4.4 4.44,-5 1.87,-1.47 4.61,-2.49 5.34,-4.94 -0.46,-0.18 -0.96,-0.29 -1.47,-0.34 0.83,-0.11 1.66,-0.27 2.47,-0.5 0.82,-0.43 -0.06,-1.68 1.09,-1.81 2.44,-1.86 3.44,-4.84 4.28,-7.63 0.41,-2.17 -0.71,-4.62 0.16,-6.66 1.61,-1.84 1.86,-4.53 3.5,-6.31 0.13,-1 1.61,-1.18 1.59,-2.34 1.99,-2.67 3.44,-5.89 4.41,-9.06 -0.01,-1.18 -2.11,-0.28 -1.5,-1.56 0.23,-1.31 0.44,-2.9 -0.75,-3.84 2.1,-2.95 2.53,-6.83 4.31,-10 0.91,-2.31 3.06,-5 1.78,-7.53 -1.27,-0.77 -0.47,-2.54 -1.03,-3.72 1.28,-0.04 2.62,1 2.13,2.41 -0.34,1.3 1.1,1.87 1.78,0.75 2.05,-2.51 4.97,-4.38 6.5,-7.28 -0.31,-1.47 0.99,-1.93 2,-2.5 1.1,-1.17 1.03,-3 2.5,-4 0.98,-0.77 1.02,-2.06 0.09,-2.84 -0.25,-1.41 0.94,-3.26 -0.56,-4.25 -0.35,-2.09 -0.07,-4.44 -1.47,-6.19 -0.84,-1.78 0.72,-4.64 -1.78,-5.44 -2.54,-0.85 -3.38,-3.43 -4.72,-5.44 -1.33,-1.65 -4.49,0.26 -5.41,-1.91 -0.62,-1.67 -2.74,-0.17 -3.94,-1.03 -1.5,-0.59 -3.14,-0.14 -4.59,0.09 -1.13,1.57 -3.37,2.94 -5.31,2.31 -1.7,-0.94 -4.01,-0.1 -5.53,-1.53 -0.98,-0.67 -2.05,-0.07 -2.13,0.94 -2.14,1.97 -5.55,0.86 -8.22,1.16 -1.6,0.04 -3.55,-0.8 -4.59,0.88 -2.64,-1.43 -6.14,-1.87 -9.22,-2.28 -1.64,0.1 -3.33,-0.78 -4.88,-0.34 -1.13,1.13 -2.41,-1.01 -3.72,-0.81 -1.74,-0.31 -3.79,0.2 -5.09,-1.13 -2.98,-0.12 -5.59,2.09 -8.31,3.06 -1.63,0.94 -3.45,1.59 -5.28,0.84 -0.97,-0.59 -1.96,1.16 -2.66,0.22 -1.87,-2.07 -5.09,-2.13 -7.44,-3.53 -1.88,-0.81 -3.75,-1.88 -5.47,-2.81 -3.59,-0.22 -7.08,0.86 -10.47,1.78 -1.36,0.47 -2.54,1.4 -2.66,2.88 -1.26,2.17 -3.95,2.35 -6.16,2.56 -0.92,0.73 1.02,2.03 -0.16,2.81 -1.33,0.09 -3.86,0.66 -4.41,-1 -0.02,-0.88 2,-0.91 0.88,-1.88 -1.75,-0.51 -3.54,0.19 -4.63,1.56 -1.67,1.48 -4.01,1.68 -5.47,3.47 -3.42,3.13 -8.38,3.35 -12.78,3 -1.04,-0.34 -2.04,-1.09 -3.13,-0.31 -0.74,-0.17 -1.95,-0.04 -1.47,1.06 1.52,2.24 -1.21,3.76 -2.84,4.69 -1.5,0.57 -0.83,2.9 -2.59,3 -1.65,0.63 -1.9,2.78 -3.72,3.25 -1.27,0.51 -2.48,-1.55 -3.59,-0.38 -2.3,-0.31 -4.42,1.14 -6.78,0.78 -1.67,-0.09 -3.9,0.46 -4.88,-1.34 -1.11,-0.37 -1.42,1.56 -2.66,1.5 -0.77,0.42 -1.85,0.26 -1.09,-0.72 0.89,-0.77 2,-1.38 2.81,-2.31 1.92,-1.54 4.42,-1.04 6.53,-0.28 1.81,0.17 3.66,0.06 5.44,0.31 0.82,-1.02 2.06,-1.94 2.63,-3.16 -0.49,-1.39 -3.12,-0.76 -3.53,-2.06 1.61,-0.83 4.68,1.02 5.25,-1.47 0.94,-1.38 2.54,-1.83 3.84,-2.53 0.98,-3.94 4.72,-6.32 7.13,-9.38 0.3,-1.64 -2.07,-0.81 -2.81,-0.41 -2.29,1.03 -4.89,2.14 -7.41,1.66 -0.4,-0.82 -0.86,-1.76 -2.06,-1.5 -3.69,0.26 -6.14,3.56 -8.91,5.66 -2.16,1.88 -4,4.26 -6.53,5.59 -0.34,0.71 -1.53,0.95 -1,-0.16 0.97,-1.18 1.13,-2.69 1.66,-4 2.16,-1.72 3.92,-3.95 6.22,-5.47 1.59,-0.24 0.42,-2.36 1.91,-2.81 1.64,-0.52 3.39,-0.6 5,-1.28 1.85,-0.22 3.99,0.47 5.44,-1.13 1.89,-1.46 3.36,-3.9 6.03,-3.78 0.82,0.09 2.3,-0.54 2.84,0.13 0.12,1.34 -1.7,3.13 0.03,4.09 2.39,1.04 3.9,-2.03 4.88,-3.69 1.76,-4.1 5.93,-6.6 7.63,-10.69 -0.75,-1.4 -2.43,0.6 -3.53,0.53 -1.73,0.41 -3.77,1.01 -5.41,0.91 0.16,-0.97 2.04,-1.63 0.75,-2.69 -1.96,-1.36 -3.83,1.36 -5.56,2 -1.79,1.79 -3.25,-1.05 -5.09,-1.16 -1.46,-0.1 -3.72,0.57 -4.66,-0.78 -0.79,-1.64 -2.56,-3.07 -4.38,-2.03 -1.8,0.47 -4.18,1.01 -5.53,-0.66 -1.42,-0.73 -3.44,-1.78 -2.97,-3.69 -0.49,-0.96 -1.91,-0.58 -2.34,-1.75 -0.54,-0.5 -0.99,-2.29 0.19,-1.81 0.91,1.21 2.83,1.45 3.34,3.09 1.25,1.61 3.36,3.85 5.56,2.63 2.28,-0.5 4.79,-0.16 6.88,0.88 0.89,0.01 0.86,-1.99 1.81,-0.94 0.47,1 1,2.62 2.31,1.16 1.42,-1.26 3.78,0.01 4.97,-1.44 0.42,-1.86 2.39,-3.96 1.06,-5.81 -0.96,0.07 -2.01,0.36 -2.94,-0.34 -1.24,-0.56 -2.66,-2.04 -2.31,-3.38 1.71,-0.34 3.24,1.56 5.06,0.84 1.49,-0.28 1.4,-2.19 2.84,-2.66 1.86,-1.57 4.57,-1.17 6.25,-2.97 1.5,-0.52 1.93,-1.95 2.34,-3.34 1.04,-2.11 2.9,-4.06 5.31,-4.31 2.67,-1.49 4.98,-3.46 7.38,-5.34 1.41,-0.38 2.16,-1.65 3.47,-2.34 1.99,-1.53 4.02,-2.99 6,-4.5 0.75,-1.04 1.66,-1.87 2.47,-2.75 0.61,-2.09 2.19,-3.97 3.59,-5.53 1,-0.39 1.2,-1.77 2.31,-2.22 1.75,-1.5 3.82,-2.33 5.94,-3 1.84,-1.43 4.59,-0.65 6.16,-2.66 0.97,-1.09 1.81,-2.37 2.69,-3.5 -0.08,-0.11 -0.18,-0.21 -0.28,-0.28 1.63,-0.36 2.88,-1.76 4.06,-2.88 0.48,-2.33 1.81,-4.61 1.78,-7.03 -0.69,-0.68 -0.05,-0.98 0.66,-1.03 1.37,-0.54 1.48,-3.36 -0.41,-3.03 -1.42,0.18 -3.19,-0.19 -3.31,-1.88 -0.56,-1.97 -0.55,-4.34 1.28,-5.63 1.44,-1.57 3.66,-3.68 2.5,-5.97 0.43,-0.98 2.3,-1 2.06,-2.5 -0.14,-1.12 0.94,-3.12 -0.91,-3.22 -2.5,-0.78 -4.91,0.99 -7.31,0.5 -0.49,-1.41 -1.85,-2.14 -3.22,-1.44 -1.93,0.12 -3.93,0.12 -5.72,0.78 -1.24,-0.28 -3.28,0.42 -3.69,-1.22 -0.27,-0.66 -0.69,-1.62 -1.56,-1.5 z m -193.38,18.16 c -0.84,0.22 -0.42,1.38 -1.19,1.78 -0.87,1.03 -2.02,1.72 -3.31,1.97 -1.12,0.9 -1.85,2.28 -3.38,2.63 -2.35,0.99 -4.1,2.86 -6.03,4.44 -1.11,0.7 -1.94,1.82 -3.19,2.22 -1.07,0.86 -1.21,2.59 -2.38,3.28 -2.33,0.01 -3.81,2.31 -6.13,2.31 -0.39,-0.36 -1.27,-0.9 -1.59,0 -0.16,0.8 -1.25,1.05 -1.63,1.72 -1.46,-0.39 -2.36,1.15 -3.19,2 -0.77,0.3 -1.3,0.93 -2.22,0.69 -1.07,-0.08 -2.5,1.7 -1.41,2.44 0.29,0.11 1.62,-0.09 1.22,0.47 -0.97,0.56 -2.69,1.26 -1.91,2.72 0.5,0.39 0.68,0.88 0.91,1.47 0.57,0.69 1.57,0.94 1.81,1.91 0.33,0.76 1.91,1.02 1.56,2.03 -0.77,0.77 0.36,1.45 1.03,1.66 0.41,0.42 1.65,0.98 0.88,1.59 -0.02,0.58 0.24,1.58 -0.69,1.53 -1.07,0.41 -1.34,-0.66 -1.66,-1.41 -0.64,-1.23 -2.28,-0.88 -3.28,-1.69 -1,-0.37 -2.4,-1.11 -3.19,-0.09 -0.92,0.05 -1.11,0.96 -1,1.69 -0.61,0.43 -0.46,1.26 -1.16,1.56 -0.82,1.68 0.94,3.24 0.91,4.94 0.12,0.49 0.23,1.52 -0.47,0.75 -1.07,-0.8 -0.83,-2.34 -1.5,-3.41 -0.62,-1.36 0.56,-3.71 -1.31,-4.28 -1.55,-0.04 -3.04,-1.1 -3.78,-2.41 0.63,-0.26 2.09,0.19 1.84,-1 -0.2,-1.05 -1.17,-0.98 -1.81,-0.53 -1.43,-0.24 -2.48,-1.82 -4.09,-1.41 -0.92,-0.13 -1.17,0.76 -1.16,1.44 -0.56,0.43 0.09,1.14 -0.47,1.56 -0.28,1.47 1.68,0.58 2.31,1.34 0.45,0.27 0.83,1.19 0.16,1.38 -0.78,-0.73 -1.5,0.17 -1.78,0.81 -1.05,-0.48 -2.2,-1.31 -3.41,-1 -1.01,0.91 1.11,1.41 0.38,2.44 -0.63,1.15 -1.24,2.57 -2.38,3.25 -0.54,1.32 1.52,1.83 1.25,3.16 0.61,1.22 0.31,2.82 1.25,3.88 1.31,0.66 2.77,-0.5 3.72,-1.19 0.52,0.37 1.23,1.3 0.31,1.66 -0.66,0.85 0.56,1.5 0.94,2.16 1.58,0.24 3.11,-0.76 4.72,-0.72 0.68,0.06 1.78,-0.42 2.28,0.09 0.25,1.02 -1.29,0.32 -1.81,0.66 -1.09,0.23 -1.89,1.34 -3.09,0.91 -1.58,0.34 -3.36,1.01 -4.31,2.38 -0.28,0.56 -0.17,1.76 -1.13,1.22 -0.44,-0.4 -1.12,-1.48 -1.56,-0.41 0.1,1.49 0.17,3.7 1.75,4.38 0.74,0.64 1.29,2.06 2.56,1.69 0.73,-0.12 0.6,-1.48 1.53,-0.81 1.73,0.9 3.7,2.01 5.69,1.63 0.73,-0.47 1.08,0.16 0.78,0.84 0.63,1.51 2.79,0.44 3.88,1.22 1.04,0.78 -1.42,1.33 -0.34,2.16 0.99,0.34 1.83,0.95 2.56,1.59 1.13,0.2 2.72,-0.44 3.56,0.53 0.91,1.03 2.59,0.66 3.78,1.22 1.26,0.51 2.04,-1.22 0.97,-1.94 -0.46,-0.85 -2.09,-0.71 -2.16,-1.69 0.72,-0.37 2.73,-0.08 2.03,-1.38 -0.44,-0.88 -1.27,-1.42 -1.75,-2.19 -0.62,-0.45 -2.04,0.11 -2.25,-0.78 0.24,-0.56 1.3,-0.47 1.09,-1.38 -0.02,-1.25 -0.87,-2.62 -1.97,-3.03 -0.21,-0.87 -0.11,-1.86 0.97,-2.03 1.87,-0.86 2.63,-2.97 4.38,-4 0.63,-1.23 -1.3,-0.56 -1.38,-1.41 0.62,-0.64 1.94,-0.13 2.78,-0.28 1.53,0.18 3.35,0.08 4.69,0.81 0.18,0.76 -1.2,0.43 -1.59,0.69 -0.71,0.44 -1.24,0.14 -1.69,-0.44 -0.7,-0.7 -2.03,-0.08 -1.66,0.91 -0.33,1.04 -1.67,0.96 -2.09,2 -0.84,0.84 -1.27,2.03 -0.66,3.13 0.12,1.18 -0.96,2.51 0.19,3.5 1.18,1.46 1.49,3.57 2.94,4.78 1.32,0.52 2.17,-1.2 1.38,-2.19 -0.23,-0.55 -1.29,-1.81 -0.5,-2.22 0.91,0.36 1.55,1.33 2.44,1.72 0.01,1.34 0.87,2.92 2.41,2.75 0.53,0.29 1.44,1.16 1.69,0.06 0.1,-1.01 -0.77,-1.75 -0.44,-2.81 -0.2,-0.55 0.25,-1.57 0.56,-0.66 0.29,1.01 1.51,2.47 2.59,1.59 0.84,-0.08 2.28,0.09 2.16,-1.19 -0.36,-1.33 1.64,-2.21 0.91,-3.44 -0.16,-0.8 -0.33,-1.97 -1.47,-1.84 -2.27,-0.37 -4.74,0.21 -6.94,-0.47 -0.65,-0.7 0.96,-0.5 1.28,-0.66 0.97,-0.02 1.93,-0.52 2.53,-1.16 0.52,0.63 1.4,0.82 1.91,0.16 0.84,0.45 1.73,0.24 2.38,-0.41 0.58,0.19 1.22,0.97 1.84,0.28 1.17,0.54 2.79,1.42 3.78,0.06 0.84,-0.56 1.67,-2.37 0.09,-2.5 -0.76,-0.35 -2.46,0.3 -2.69,-0.81 0.33,-0.68 1.66,-0.12 2.28,-0.63 0.82,-0.23 0.89,-1.19 0.31,-1.66 0.13,-0.87 -0.37,-1.68 -1.22,-1.81 -0.36,-0.68 -0.42,-2.38 -1.44,-1.38 -0.32,0.41 -0.89,1.08 -1.31,0.41 -0.82,-0.35 -1.88,-0.12 -2.59,0.22 -0.91,-0.65 -2.02,-0.33 -2.84,0.28 -1.06,0.21 -2.32,0.17 -3.03,1.09 -0.6,-0.09 -1.05,-1.15 -0.84,-1.63 0.74,-0.6 1.86,-0.3 2.47,-1.09 1.91,-0.7 4.6,0.1 5.97,-1.72 0.61,-0.89 -0.41,-1.27 -1.09,-1 -0.5,-0.31 -0.35,-1.3 -1.22,-1.25 -0.39,-0.18 -1.21,-1.26 -0.19,-0.94 1.35,-0.08 2.54,1.04 3.84,0.78 0.88,-1.21 2.61,-1.01 3.72,-1.84 0.34,-1.37 -0.93,-2.63 -0.81,-4.03 0.03,-0.63 -0.82,-1.43 -0.47,-1.97 0.76,-0.11 1.92,-0.37 2.47,0.25 0.18,1.29 1.39,1.62 2.03,0.38 0.99,-0.58 0.79,-2.16 -0.47,-2.13 -0.95,-0.24 -2.25,0.15 -3.03,-0.34 -0.24,-0.83 1.3,-0.77 0.81,-1.72 0.43,-0.9 2.5,0.26 2.56,-1.38 0.28,-0.76 -0.29,-2.56 0.97,-2.59 0.74,0.23 1.94,0.21 1.84,-0.88 -0.43,-1.27 0.83,-1.94 1.91,-2 0.79,-0.11 0.75,-0.96 0.72,-1.5 0.69,-0.31 0.58,-1.26 1.47,-1.34 0.74,-0.88 1.6,-1.81 2.31,-2.72 -0.23,-1.17 -2.32,-1.99 -1.5,-3.5 0.32,-1.38 1.19,-2.53 1.66,-3.81 0.93,-0.67 1.52,-2.02 0.53,-2.94 -1.13,-0.79 -1.15,-2.41 -0.66,-3.44 -0.41,-1.35 -2.09,-1.91 -2.56,-3.16 0.36,-1.21 -1.17,-1.45 -2,-1.59 z m 5.63,29.22 c -1.37,0.27 -2.52,1.48 -3,2.72 -1.16,0.93 -3.2,0.9 -3.75,2.5 0.22,1.5 2.12,3.08 3.56,1.91 0.9,-0.32 0.5,-1.53 1.5,-1.69 1.36,-0.28 2.67,-1.23 2.5,-2.78 0.03,-0.84 0.92,-2.68 -0.59,-2.66 l -0.22,0 z m -49.25,39.16 c -0.13,-0 -0.25,0.02 -0.38,0.03 -0.94,0.32 -2.14,1.2 -2.09,2.28 0.77,0.84 2.43,1 2.91,2.09 -0.38,0.99 -1.6,0.39 -2.34,0.34 -1.45,0.03 -3.49,0.08 -3.91,1.81 -0.89,1.96 -3.51,2.19 -4.44,4.03 -0.16,0.67 -0.68,1.28 -0.25,2.03 0.38,1.77 2.47,1.99 3.69,2.84 0.1,1.92 2.33,3.65 4.19,3.16 0.58,-0.6 0.29,-2.01 1.5,-2.03 0.96,0.28 1.34,-0.99 0.41,-1.28 -0.34,-0.82 0.74,-1.48 1.47,-1.16 1.01,-0.28 0.73,-1.78 1.78,-2.06 0.73,-0.39 0.13,-1.53 1.03,-1.59 0.85,-0.85 -0.79,-1.45 -0.75,-2.13 1.02,-0.41 2.28,0.06 2.56,1.19 0.43,1.07 2.09,0.93 2.09,-0.31 -0.04,-0.55 -0.07,-1.42 0.69,-1 0.93,0.82 2.51,-0.34 1.63,-1.41 -0.61,-0.38 -0.4,-1 -0.69,-1.5 -0.68,-0.33 -1.67,-0.07 -2.09,-0.94 -0.35,-0.59 -1.11,-1.64 -0.09,-2.03 0.88,-1 -0.7,-1.64 -1.53,-1.44 -1.46,-0.02 -3.02,0.19 -4.25,-0.72 -0.36,-0.11 -0.74,-0.21 -1.13,-0.22 z m 39.16,23.63 c -1.41,0.52 -0.66,2.57 -1.91,3.38 -0.69,1.12 -2.01,1.13 -2.97,1.75 -1.22,1 -0.95,2.66 0.03,3.69 0.76,1.1 -0.11,3.64 1.97,3.41 1.64,-0.1 0.08,1.84 -0.09,2.53 -0.39,0.83 -1.46,1.37 -0.69,2.41 0.8,1.84 1.4,3.8 3.09,5.06 0.55,0.75 2.01,1.68 1.75,2.66 -1.31,0.77 0.45,2.09 -0.28,2.91 -1.59,0.59 -1.49,-1.4 -1.81,-2.34 -0.58,-0.46 -0.88,-0.91 -1,-1.66 -0.92,-1.63 -3.99,-2.58 -4.63,-0.22 -0.43,0.76 -0.2,1.79 -0.25,2.5 -1.27,-0.01 -1.86,-1.43 -1.78,-2.5 -1.51,-2.15 -3.46,-4.21 -5.72,-5.56 -1.54,0.47 -2.59,-1.21 -2.38,-2.59 -0.34,-1.8 -1.52,-3.67 -3.38,-4.13 -0.74,1.47 -0.72,3.6 -0.66,5.25 1.62,1.87 4.04,3.26 5.22,5.41 0.07,0.81 -0.73,2.11 -1.56,1.22 -0.83,-1.43 -3.07,-0.62 -2.75,0.97 0.28,1.38 0.9,2.62 1.88,3.56 0.56,1.11 1.99,3.11 0.63,4.09 -1.26,0.09 -0.22,-2.46 -1.81,-1.78 -1.23,1.01 -2.12,-1.19 -3,-1.78 -1.52,-1.92 -2.4,-4.43 -4.56,-5.81 -1.52,-0.07 -1.03,2.28 -0.94,3.28 0.09,1.11 1.54,1.74 1.53,2.72 -1.19,0.64 -2.19,-0.28 -3.16,-0.69 -1.45,0.7 -0.73,2.95 0.72,3.25 1.68,1.18 1.58,3.39 2.22,5.09 2.35,2.43 5.88,3.06 8.75,4.66 1.66,0.47 1.05,-1.98 1.06,-2.91 -0.24,-1.2 -0.94,-3.31 1.03,-3.22 1.08,-0.16 0.53,-2.13 1.5,-2 0.69,0.48 1.33,2.35 2.31,1.19 0.76,-1.39 1.51,0.84 1.38,1.56 0.13,0.9 1.33,0.92 1.16,1.94 0.42,1.45 2.18,2.99 3.44,1.41 0.41,-0.72 2.46,-1.24 1.75,0.09 -1.56,0.79 0.34,2.51 1.13,3.09 0.99,1.28 1.97,2.78 3.69,3.13 1.12,0.87 -0.95,1.16 -1.59,1 -2.16,-0.42 -2.95,-3.61 -5.16,-3.72 -0.86,1.27 -2.68,0.86 -3.66,2.13 -1.27,1.12 0.58,1.97 0.97,2.94 0.13,1.66 1.23,2.89 2.19,4.13 0.67,2.08 3.97,1.17 4.69,-0.5 1.02,-0.58 0.68,1.49 0.63,2 -0.01,1.61 -2.74,0.47 -2.31,2.28 0.56,1.11 1.43,2.85 2.69,2.94 0.99,-0.37 2.41,-2.31 3.53,-1.44 0.58,1.06 -0.32,2.08 -0.44,3.06 1.14,1.15 3.02,-0.33 4.38,-0.38 1.09,-0.71 2.74,0.58 3.47,-0.59 -0.1,-0.85 -0.02,-2.84 1.31,-2.09 0.72,0.96 1.71,0.94 2.84,0.84 1.41,1.38 0.33,3.84 0.84,5.59 0.1,1.49 1.75,0.58 1.88,-0.44 0.8,-1.07 0.68,-2.59 1.31,-3.63 1.3,-0.31 1.93,-1.69 1.19,-2.88 -0.19,-0.79 -1.37,-2.33 0.03,-2.56 1.45,1.76 2.74,3.82 3.19,6.03 1.31,0.72 2.94,-0.57 4.41,-0.25 1.21,-0.36 2.4,-0.35 3.59,-0.63 0.59,-0.13 1.94,-1.38 2.28,-0.53 -1.61,2.78 -5.38,2.51 -7.38,4.88 -1.66,0.81 -3.36,2.43 -2.84,4.44 -1,0.87 -1.28,2.2 -1.09,3.53 -0.2,1.06 -2.13,1.12 -1.81,2.56 0.14,1.31 1.05,3.78 2.75,2.69 2.99,-1.08 5.87,-3.29 6.84,-6.38 1.11,-0.45 1.14,-1.66 1.66,-2.56 0.68,-1.32 2.55,-0.06 3.06,-1.59 1.07,-1.97 0.17,-4.68 1.06,-6.53 1.51,1.8 3.65,-0.41 5.19,-1.06 2.36,-1.17 3.8,-3.49 3.97,-6.09 0.46,-0.85 0.72,-2.45 -0.78,-2.19 -1.47,-0.13 -3.56,0.96 -4.5,-0.66 -2.07,-0.72 -4.04,1.34 -5.94,1.91 -1.62,0.69 -3.95,2.52 -5.53,0.97 0.01,-1.14 -0.83,-2.13 -2.06,-1.91 -1.1,-0.37 -2.09,-1.11 -3.34,-1.13 -0.87,-0.63 -2.09,-2.49 -3.13,-1.06 -0.72,0.73 -2.54,2.17 -3.16,0.72 0.66,-1.2 3.47,-2.83 1.63,-4.22 -2.02,-0.71 -4.29,-0.18 -5.88,1.16 -0.56,0.34 -2.26,0.26 -1.03,-0.59 0.86,-1.59 3.4,-1.65 3.78,-3.47 -0.52,-1.05 -1.64,-1.93 -2.03,-3.19 -0.48,-0.73 -0.86,-1.82 0.19,-2.19 1.26,-1.53 -0.87,-3.78 -2.47,-2.47 -0.54,0.18 -1.51,1.84 -2,0.97 -0.43,-1.7 0.76,-3.11 2.34,-3.53 1.7,-1.24 2.12,-3.95 1.44,-5.81 -0.66,-2.23 0.15,-4.87 0.03,-7.22 0.23,-3.01 -0.83,-5.85 -2.25,-8.44 -0.13,-1.89 -2.34,-2.17 -3.78,-2.47 -0.99,-1.07 -0.25,-3 -1.56,-4.03 -1.01,-1.49 -2.85,-2.09 -4,-3.31 -0.18,-0.05 -0.35,-0.06 -0.53,-0.03 z m -68.44,4.34 c -1.73,0.29 -0.41,3.61 -2.38,3.16 -1.16,0.03 -2.03,-0.6 -2.59,-1.56 -1.11,-0.79 -3.64,-2.65 -3.91,-0.19 -0.35,2.22 -2.48,3.73 -2.31,6 0.62,1.21 2.28,-1.05 2.59,0.69 -0.27,1.17 0.66,2.99 1.94,1.81 0.71,-0.45 0.21,-2 1.44,-1.56 1.16,-0.07 1.72,0.73 2.13,1.66 1.42,1.48 3.74,1.87 5.56,1.84 0.42,1.22 -2.28,0.83 -1.09,2.06 1.14,0.3 1.34,2.04 2.72,2.16 1.83,1.06 4.78,0.65 5.13,-1.78 0.39,-1.06 -0.69,-1.62 -1.41,-1.75 -0.2,-1.62 1.73,-1.89 2.94,-1.59 1.56,0.1 3.58,1.06 4.59,-0.78 0.97,-1.2 -0.55,-2.29 -1.69,-1.59 -0.81,0.17 -3.34,-0.54 -1.91,-1.5 1.35,-1.08 -0.81,-1.71 -1.59,-2.16 -0.56,-0.5 -0.38,-1.45 -1,-1.97 0.23,-1.21 -0.78,-2.16 -1.97,-1.63 -1.1,-0.1 -2.09,1.31 -3.06,1.06 -1.18,-0.94 -2.66,-1.47 -3.78,-2.38 -0.11,-0.01 -0.24,-0.02 -0.34,0 z m -1.75,34.91 c -1.58,0.87 -0.57,3.27 -0.97,4.72 0.14,2.15 -1.68,3.63 -1.84,5.75 -1.3,4.89 0.79,9.77 1.63,14.53 0.77,1 0.5,2.76 2.06,3.13 2.34,0.9 5.22,-1.45 7.28,0.47 1.18,0.88 2.38,-1.19 0.88,-1.56 -0.42,-1.76 -2.43,-3.03 -4.16,-2.16 -1.31,0.43 -2.78,0.17 -3.13,-1.38 -0.81,-0.95 0.96,-1.42 1.03,-2.41 1.42,-0.51 2.47,1.81 3.94,1.84 1.99,0.1 2.14,-2.71 1.03,-3.88 -0.74,-0.96 -0.09,-3.01 -1.88,-2.88 -1.1,-0.11 -1.98,-0.99 -3.16,-0.97 -1.12,-0.1 -2.35,-1.92 -1.47,-2.72 1.06,0.1 1.69,1.94 2.91,0.91 0.95,-1.12 1.76,-0.05 2.44,0.72 1.42,0.12 1.38,-2.25 1.78,-3.34 0.66,-1.38 1.83,-2.49 3.09,-3.16 0.6,-1.26 -1.44,-0.87 -1.25,-2.06 -0.45,-1.91 -2.95,-1.31 -4.06,-2.66 -1.15,-1.2 -2.63,-1.87 -4.19,-2.25 -0.53,-0.46 -1.26,-0.72 -1.97,-0.66 z m 69.72,34.53 c -1.13,0.82 -2.86,0.37 -3.81,1.69 -1.06,1.14 -2.57,2.09 -3.09,3.59 0.86,1.86 3.1,2.58 4.38,4 0.17,1.37 1.2,2.16 2.31,2.81 0.59,1.09 1.85,1.24 2.5,0.13 1.96,-1.47 3.92,-4.21 2.72,-6.69 -0.51,-0.36 -2.72,-0.87 -1.28,-1.56 1.96,-0.27 2.04,-1.89 0,-2.22 -1.29,-0.41 -2.33,-1.72 -3.72,-1.75 z m -74.47,3.91 c -0.16,0.01 -0.34,-0.01 -0.5,0.03 -2,0.04 -3.66,1.56 -3.53,3.66 0.2,1.29 -0.95,1.78 -2.03,1.72 -2.04,0.94 0.88,3.31 1.88,1.56 1.05,-0.58 2.29,0.1 2.88,0.97 1.39,-0.26 1.89,-2.17 2.94,-3 0.69,-0.84 -0.11,-1.77 0.03,-2.63 -0.98,-0.36 0.05,-2.45 -1.66,-2.31 z m 87.34,9.19 c -1.36,0.43 0.14,2.64 -1.41,2.88 -1.05,-0.26 -2.43,0.16 -2.5,1.44 -0.12,1.75 2.05,2.85 3.56,2.72 1.04,-0.3 0.94,-1.66 1.59,-2.34 0.17,-1.34 0.86,-2.98 0.03,-4.19 -0.35,-0.27 -0.82,-0.56 -1.28,-0.5 z m -22.03,28.5 c -0.09,-0.01 -0.19,0.01 -0.28,0.03 -1.8,0.81 -3.86,1.37 -5.03,3.09 -0.5,0.3 -1.17,0.38 -1.34,1.06 -1.12,0.82 -2.87,1.35 -3,2.97 -0.37,0.83 -1.53,0.75 -1.66,1.81 -0.59,0.81 -0.14,1.93 0.94,1.66 0.68,0.29 1.29,1.13 2.09,0.34 1.88,-0.75 4.49,-1.94 4.19,-4.38 -0.08,-1.15 0.94,-0.2 1.31,0.09 1.36,-0.05 1.66,-1.92 2.31,-2.84 0.35,-1.12 1.66,-2.63 0.72,-3.75 -0.08,-0.05 -0.16,-0.09 -0.25,-0.09 z m 21.81,4.28 c -0.89,0.45 -1.56,1.24 -2.69,1.13 -1.15,0.21 0.37,2.44 -0.97,1.88 -0.76,-1.07 -1.95,-0 -1.28,1.03 0.07,1.52 1.86,1.91 2.31,3.06 -0.49,0.99 -1.9,-0.19 -2.31,-0.75 -1.62,-1.46 -4.11,-1.19 -6.06,-0.84 -1.12,1.19 0.85,2.07 1.84,2.28 0.92,0.59 -0.83,1.5 -1.09,1.97 -0.6,0.92 -1.74,0.9 -2.44,1.53 -0.24,1.94 2.53,1.77 3.72,2.5 1.65,0.13 3.59,-1.19 4.84,0.44 1.5,0.72 2.82,1.86 4.25,2.56 0.87,0.82 0.3,3.45 2.16,2.69 0.94,-0.88 2.62,-0.33 3.72,-1.16 1.22,-0.41 3.39,-2.48 4.38,-0.75 0.28,1.45 -1.23,2.94 -2.44,3.44 -1.39,0.68 -2.15,2.61 -4,2.03 -2.02,-0.82 -2.79,0.96 -3.41,2.5 -0.37,2.64 -3.8,3.11 -4.5,5.53 -0.1,1.7 1.8,2.09 3,1.31 1.95,-0.62 4.3,-0.15 5.66,-2 0.83,-0.45 1.84,-0.41 2.5,-1.25 1.17,-0.31 3.5,-0.65 4,0.78 -0.27,0.72 -1.67,0.72 -1.88,1.72 -1.21,1.8 -3.86,1.62 -5.44,3.06 -2.92,1.17 -6.13,1.19 -9.16,1.69 -0.83,0.35 -0.28,1.86 -1.53,1.5 -1.04,-0.11 -2.72,0.01 -3.41,-0.75 0.5,-1.1 -0.5,-1.89 -1.56,-1.75 -1.75,-1.44 -3.47,1.35 -2.69,2.97 0.43,0.9 1.93,0.31 1.13,1.72 -0.09,1.29 1.68,1.01 1.88,2.19 1.32,0.99 3.52,0.42 4.13,-1.09 2.82,-1.13 6.17,0.09 8.97,-1.28 1.47,-0.22 3.25,-0.87 4.47,0.16 2.54,0.01 3.51,-4.08 6.28,-3 2.84,0.4 3.01,-4.31 5.94,-3.84 1.2,-0.34 2.54,0.65 1.75,1.84 -0.8,0.55 -2.41,2.75 -0.59,2.84 2.64,-0.43 4.79,-2.23 7.13,-3.28 0.68,-1.4 2.54,-1.76 3,-3.22 -0.06,-1.74 -1.99,-0.52 -2.69,0.09 -0.96,0.37 -2.51,1.54 -3.44,0.78 -0.03,-1.23 1.94,-1.16 2.09,-2.47 0.05,-1.07 1.12,-0.8 1.66,-1.31 0.34,-0.77 -1.54,-1.53 -0.13,-1.94 1.14,-0.28 2.64,-0.11 3.03,-1.56 0.91,-1.46 0.99,-3.98 -1,-4.53 -0.6,-0.84 -1.42,-1.38 -2.5,-1.44 -1.7,-0.6 -2.3,-2.52 -3.63,-3.44 -0.98,0.06 -2.16,1.35 -2.91,0 -2.27,-1.75 -5.76,0.48 -7.94,-1.44 -1.11,-1.34 -0.73,-3.3 -1.88,-4.69 -0.2,-0.98 -0.6,-1.79 -1.41,-2.38 -0.71,-1.24 -1.5,-2.76 -3.09,-2.84 -1.52,-0.49 0.27,-2.6 -1.38,-2.81 -1.58,-0.05 -2.82,-1.5 -4.41,-1.41 z m -45.06,12.5 c -1.74,0.16 -2.7,2.5 -4.47,2.28 -1.09,-0.68 -2.71,-1.09 -3.94,-0.59 -0.45,0.66 -1.66,0.28 -1.81,1.31 -0.22,1.74 -0.14,3.7 0.59,5.31 0.61,0.55 1.63,0.49 1.91,1.47 0.42,1.15 2.29,1.31 2.38,-0.13 0.28,-1.1 -0.66,-2.36 0.5,-3.19 0.81,-1.13 2.31,-1.87 3.63,-1.16 1.31,0.45 2.72,-1.8 1.31,-2.41 -0.14,-1.04 1.94,-1.8 0.72,-2.75 -0.24,-0.17 -0.53,-0.18 -0.81,-0.16 z m 118.03,16.72 c 1.4,0.29 0.33,2.39 -0.22,3.06 -1.41,2.07 -3.98,2.86 -6.09,3.94 -2.25,1 -4.68,2.79 -4.78,5.44 -0.66,2.05 -3.5,2.41 -3.63,4.75 -1.58,3.85 -5.52,6 -9.19,7.47 -1.26,0.42 -0.76,-1.2 0.06,-1.41 1.62,-1.16 3.49,-1.95 4.81,-3.59 1.73,-1.34 2.88,-3.2 3.22,-5.34 0.22,-1.49 2.05,-1.29 2.28,-2.78 0.6,-2.89 3.04,-5.2 5.75,-6.13 2.38,-0.38 4.34,-2.34 5.09,-4.53 0.91,-0.2 1.79,-0.72 2.69,-0.88 z M 386.5,519.41 c 1.38,0.89 1.15,3.16 1.5,4.66 0.2,2.51 0.05,5.16 1.5,7.34 0.78,2.67 2.62,4.82 4.91,6.31 0.74,1.61 2.12,2.87 3.5,3.88 0.98,1.29 0.39,3.64 -1.5,3.47 -1.78,0.22 -3.27,2.08 -2.06,3.75 0.55,0.95 -0.32,1.34 -1,0.81 -1.13,-0.87 -3.12,-1.71 -3.16,-3.31 0.93,-5.2 -1.08,-10.37 -2.81,-15.19 -0.97,-1.58 -1.43,-3.22 -1.03,-5.06 -0.23,-2.15 -1.04,-4.69 0.16,-6.66 z m -68,15.06 c -1.48,0.86 -2.61,2.19 -4.06,3.03 -0.9,1.26 -2.64,1.74 -3.34,3.13 -3.37,1.96 -6.62,4.39 -9.16,7.34 -0.17,0.67 -0.04,1.24 -0.78,1.66 -0.94,1.11 -2.53,3.53 -0.41,4.34 1.05,0.38 3.17,1.61 3.69,0.09 1.24,-1.39 3.38,-0.28 4.44,-1.91 0.82,-0.3 0.28,1.75 1.28,1.81 1.82,-0.5 1.41,-3.2 2.41,-4.53 2.36,-2.67 3.65,-6.15 5.56,-9.16 1.08,-1.56 1.76,-3.79 0.94,-5.63 -0.13,-0.2 -0.35,-0.22 -0.56,-0.19 z m -32.25,4.94 c -2.53,0.23 -3.82,2.78 -3.47,5.13 -0.65,2.05 3.48,2.55 3.34,0.56 -0.9,-0.97 -0.16,-1.88 0.59,-2.66 0.99,-0.98 1.75,-3.19 -0.47,-3.03 z m 22.63,14.69 c -2.15,0.75 -3.94,2.55 -6.41,2.31 -2.52,0.48 -5.91,0.38 -7.06,3.22 -0.5,1.25 -1.44,2.26 -2.03,3.34 0.04,3.09 -0.46,6.81 1.66,9.34 1.61,1.02 3.69,1.53 5.56,1.56 2.29,-1.74 1.29,-5.19 2.53,-7.53 0.37,-1.4 2.37,-1.11 2.66,-2.63 1.36,-1.41 1.76,-3.34 2.88,-4.88 -0.24,-1.63 1.68,-3.01 0.97,-4.53 -0.2,-0.2 -0.48,-0.27 -0.75,-0.22 z m -19.81,4.63 c -0.96,0.38 -1.71,1.06 -2.75,1.25 -1.69,1.29 -3.4,2.61 -4.94,4.06 -0.61,1.39 -2.64,1.33 -2.94,3.03 -0.83,1.23 -0.09,3.28 -1.03,4.25 -1.79,0.88 -2.01,-2 -1.53,-3.06 0.29,-0.93 0.72,-3.6 -1,-3 -1.5,1.19 -2.98,3.07 -5.16,2.47 -1.67,0.85 -0.43,3.36 -1.16,4.84 -0.29,0.88 -2.49,1.68 -0.75,2.22 1.68,0.01 0.16,2.17 0.47,3.06 0.25,2.19 -3.57,3.23 -1.91,5.44 -0.63,1.12 -2.34,3.12 -0.56,4.06 2.49,-0.31 4.13,-2.78 5.81,-4.44 2.22,-1.96 2.43,-5.03 3.88,-7.41 1.75,-1.34 4.28,-0.22 6.31,-0.19 1.13,1.12 -0.15,2.75 -1.5,2.97 -1.23,1.03 -3.15,2.06 -3.34,3.78 0.48,0.99 2.01,0.58 2.5,1.72 1.25,1.74 2.81,3.93 2.41,6.16 -0.79,1.33 -2.79,0.6 -3.47,2.16 -1.06,1.62 -2.11,4.78 0.41,5.66 1.03,0.9 2.37,0.6 2.88,-0.66 0.84,-0.2 1.33,-0.76 1.53,-1.59 1.29,-0.84 0.38,-3.42 2.44,-3.22 3.23,1.11 6.94,-0.62 8.53,-3.59 1.36,-0.59 3.01,-1.96 2.13,-3.63 -0.24,-1.4 0.35,-3 -0.63,-4.19 -0.54,-1.57 0.03,-3.71 -1.81,-4.59 -2.45,-2.43 -1.85,-6.05 -2.47,-9.13 -0.22,-1.92 -2.17,-3.53 -1.13,-5.53 0.42,-1.25 0.8,-3.2 -1.22,-2.91 z m 58.91,24.22 c -1.19,0.17 -0.07,2.21 -1.5,1.75 -1.69,-0.05 -1.77,2.18 -3.34,2.53 -2.38,1.29 -2.12,4.5 -2.78,6.75 -0.35,3.14 4.02,4.92 3.16,8.19 -0.25,1.95 -0.63,4.22 0.97,5.69 0.37,1.45 0.3,3.15 1.78,4.06 1.39,1.08 2.85,1.99 4.47,2.69 1.86,0.69 3.85,0.43 5.53,-0.5 1.54,-0.1 4.3,0.32 4.25,-2 -0.38,-1.7 -0.6,-3.42 -0.69,-5.16 -0.6,-1.12 -3.04,-1.79 -1.88,-3.38 0.6,-1.02 3.2,-1.8 1.41,-2.94 -0.89,-1.44 -2.91,-1.06 -3.78,-2.31 0.45,-1.49 2.51,-2.72 1.69,-4.56 -0.76,-4.96 -4.18,-9.81 -9.28,-10.81 z" + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/lib/mapael-maps/wales/wales_county.js b/lib/mapael-maps/wales/wales_county.js new file mode 100644 index 000000000..52cea199c --- /dev/null +++ b/lib/mapael-maps/wales/wales_county.js @@ -0,0 +1,69 @@ +/** + * + * Jquery Mapael - Dynamic maps jQuery plugin (based on raphael.js) + * Requires jQuery and raphael.js + * + * Map of Wales by county + * Equirectangular projection + + * @author Pinkal V. + */ +(function ($) { + $.extend(true, $.fn.mapael, + { + maps: { + wales_county: { + width: 250, + height: 250, + elems: { + "Newport": "M163.226 207.337c0.7562,0.2183 0.7816,0.1916 1.3012,0.7434 0.1535,0.1631 0.8961,0.6458 1.1188,0.5118 0,-0.5156 -0.3191,-0.9229 -0.073,-1.5111 0.1306,-0.3121 0.8118,0.3192 0.9851,0.4265 0.3586,0.2219 0.914,0.2737 1.3255,0.1706 0.6254,-0.1568 0.7315,-0.8698 1.4107,-1.0968 0.4637,-0.155 0.9913,-0.0328 1.4593,0.061l0.3283 -0.4631 0 0c0.3002,0.1499 0.7063,0.0531 0.8999,0.3899 0.175,0.3046 -0.1035,0.6473 0.377,0.7434 0.7641,0.1527 1.1345,-0.9289 1.7633,-0.8409 0.2684,0.0376 0.7878,-0.1466 0.9972,-0.3046 0.4849,-0.3657 0.6828,-0.9273 1.2404,-1.2065 0.8163,-0.4086 1.8552,0.057 2.6754,-0.7921 0.1729,-0.1791 1.5085,1.9361 1.7877,2.2667 0.6041,0.7151 0.3498,0.7337 -0.45,0.9627 -0.9234,0.2643 -0.9484,1.0175 -1.2647,1.8036 -0.1865,0.4633 -0.5611,0.6296 -0.8148,0.9871 -0.1039,0.1463 -0.0171,0.8068 -0.0608,1.0603 -0.0325,0.1885 -0.2463,0.5864 -0.0166,0.7572 0.2028,0.1507 0.8348,0.069 1.0529,0.3082 0.4573,0.5013 0.7455,1.3137 0.9965,1.6678l0 0c-2.0648,1.5086 -4.6796,2.8767 -7.1647,2.1048 -0.962,0 -2.7278,0.3661 -3.3321,-0.5605 -0.3053,-0.4681 0.2433,-1.448 0.2433,-2.084 -0.1508,0.2011 -0.8513,1.3393 -0.8513,1.5599 0,1.2561 -0.6963,1.2476 -1.5688,1.8768l-1.9943 1.438c-0.4246,0.3061 -1.3996,1.0278 -2.1954,1.4559l0 0 -0.3706 -0.81c0.146,-0.2227 0.379,-0.6013 0.5959,-0.7434 0.1354,-0.0888 0.4986,-0.3463 0.4986,-0.524 -0.3843,-0.0964 -0.5222,-0.3651 -0.5716,-0.719 -0.0896,-0.6407 -0.5551,-0.643 -0.985,-1.0115 -0.4392,-0.3763 -0.9437,-0.6108 -1.2404,-1.1212l0 0c0.1333,-0.2004 0.1214,-0.4403 0.2554,-0.6581 0.2035,-0.3309 0.4665,-0.6157 0.681,-0.9383 0.3813,-0.5731 0.2106,-0.8095 -0.3648,-1.1943 -0.6061,-0.4053 -1.2402,-0.4615 -1.2891,-1.3405 0.2326,-0.2746 0.6482,-1.214 1.131,-0.7312 0.3656,0.3656 0.5971,-0.196 0.9607,-0.3413 0.2873,-0.1149 0.7022,-0.1794 0.9485,-0.3412 0.1446,-0.0951 0.3743,-0.1795 0.3892,-0.3778 0.0057,-0.0756 -0.462,-0.4064 -0.5594,-0.5118 -0.243,-0.2631 -0.578,-0.7086 -0.2554,-1.0724l0 0z", + + "Torfaen": "M160.867 200.183c0,-0.6223 0.3749,-1.0276 0.5716,-1.5965 0.1293,-0.3743 0.0261,-0.801 0.0243,-1.1821l-0.0122 -2.3885c-0.0034,-0.6887 -0.1824,-1.2954 -0.1824,-1.9621 0.108,-0.1652 0.4641,-0.7731 0.2067,-0.9018 -0.571,-0.2854 -1.2247,-0.7982 -1.6052,-1.3283 -0.1747,-0.2435 -0.4174,-0.5102 -0.4013,-0.8287 0.0128,-0.2527 0.2793,-0.6689 0.4013,-0.914l0 0c0.821,-0.0392 1.7007,-0.1937 2.4443,0.2194 0.4945,0.2748 1.134,0.3491 1.6539,0.6093 0.3144,0.1573 1.631,0.9597 1.6052,1.3283 -0.0205,0.2921 -0.2704,0.5152 -0.2189,0.8653 0.0613,0.4173 0.2605,0.758 0.6081,1.0115 0.107,0.1608 0.1792,0.2501 0.304,0.3656 0.3049,0.2825 0.5111,0.4077 0.377,0.914 -0.1537,0.5798 -0.2668,1.7192 -0.0243,2.2545 0.5212,0.2996 0.7037,0.1957 1.2647,0.1218 0.2922,-0.0384 1.4209,0.1172 1.5809,0.3778 0.1511,0.2462 -0.9526,1.503 -0.9729,1.9986 -0.035,0.8554 1.3505,0.3407 1.8363,0.4631 0,0.2502 -0.1411,0.5992 -0.2189,0.8531 -0.0495,0.1613 -0.0114,1.3976 -0.4986,0.9627 -0.3462,-0.3089 -0.8181,-0.4884 -1.1552,-0.0244 -0.1806,1.1733 1.0783,1.182 1.2525,2.2302 0.0749,0.4508 0.0773,0.896 0.3041,1.3039 0.1729,0.3111 0.5863,0.5565 0.8755,0.7678l0.1946 0.4753 0 0 -0.3283 0.4631c-0.468,-0.0938 -0.9956,-0.216 -1.4593,-0.061 -0.6792,0.227 -0.7853,0.94 -1.4107,1.0968 -0.4115,0.1031 -0.9669,0.0513 -1.3255,-0.1706 -0.1733,-0.1073 -0.8545,-0.7386 -0.9851,-0.4265 -0.2461,0.5882 0.073,0.9955 0.073,1.5111 -0.2227,0.134 -0.9653,-0.3487 -1.1188,-0.5118 -0.5196,-0.5518 -0.545,-0.5251 -1.3012,-0.7434l0 0c-0.1626,-0.6846 -0.262,-0.7657 -0.8634,-1.0237 -0.2102,-0.0901 -0.3895,-0.1184 -0.5229,-0.3046 -0.1177,-0.1641 0.5625,-0.4514 0.7174,-0.6216 0.3338,-0.3665 0.9561,-1.0551 1.058,-1.5355 0.0691,-0.326 0.1511,-0.6395 0.1703,-0.9749 0.0244,-0.425 -0.1095,-0.8256 -0.1095,-1.2552 -0.0797,-0.5073 -0.2774,-1.0083 -0.3769,-1.5111 -0.1296,0 -0.2294,0.2513 -0.3041,0.3412 -0.5195,0.626 -1.6586,0.2613 -2.1281,-0.2681l0 0z", + + "Blaenau_Gwent": "M158.654 186.815c0.1669,0.2262 0.3413,0.502 0.2311,0.7922 -0.1109,0.2924 -0.3763,0.5738 -0.3892,0.9018 -0.0226,0.5765 0.4851,0.4021 0.8878,0.4021l0.4864 0.1706 0 0c-0.122,0.2451 -0.3885,0.6613 -0.4013,0.914 -0.0161,0.3185 0.2266,0.5852 0.4013,0.8287 0.3805,0.5301 1.0342,1.0429 1.6052,1.3283 0.2574,0.1287 -0.0987,0.7366 -0.2067,0.9018 0,0.6667 0.179,1.2734 0.1824,1.9621l0.0122 2.3885c0.0018,0.3811 0.105,0.8078 -0.0243,1.1821 -0.1967,0.5689 -0.5716,0.9742 -0.5716,1.5965l0 0 -0.4986 0.5362c-1.0403,0.9119 -0.4132,-0.5891 -0.2432,-1.0359 0.3559,-0.9358 -0.9034,-0.6946 -1.0945,-1.5111 -0.1333,-0.57 -0.5679,-0.4631 -1.058,-0.4631 -0.5474,0 -1.0607,-1.1765 -1.3255,-1.6208 -0.1926,-0.323 -1.6688,-2.4251 -1.8363,-2.4251 -0.3559,0.7148 -0.6057,0.4539 -0.2676,1.4014 0.1424,0.3989 0.4487,1.1374 -0.4377,0.914 -0.2818,-1.1274 -1.6564,-1.4117 -2.2133,-2.352 -0.0389,-0.5051 -0.5724,-0.9231 -0.6689,-1.4746 -0.1076,-0.6153 -0.4152,-0.8975 -0.7539,-1.4014 -0.2573,-0.3826 -0.3786,-0.5875 -0.5108,-1.0359 -0.164,-0.5566 -0.899,-0.7401 -1.3863,-0.914l0 0c0,-0.9722 0.3909,-1.2462 0.9485,-1.9498 0.4166,-0.5255 0.552,-1.2064 1.2039,-0.6459 1.0797,0.9285 2.1808,1.4522 3.624,1.2308 1.1943,-0.1833 2.2873,-0.524 3.5145,-0.524l0.7904 -0.0975 0 0z", + + "Caerphilly": "M148.572 188.801c0.4873,0.1739 1.2223,0.3574 1.3863,0.914 0.1322,0.4484 0.2535,0.6533 0.5108,1.0359 0.3387,0.5039 0.6463,0.7861 0.7539,1.4014 0.0965,0.5515 0.63,0.9695 0.6689,1.4746 0.5569,0.9403 1.9315,1.2246 2.2133,2.352 0.8864,0.2234 0.5801,-0.5151 0.4377,-0.914 -0.3381,-0.9475 -0.0883,-0.6866 0.2676,-1.4014 0.1675,0 1.6437,2.1021 1.8363,2.4251 0.2648,0.4443 0.7781,1.6208 1.3255,1.6208 0.4901,0 0.9247,-0.1069 1.058,0.4631 0.1911,0.8165 1.4504,0.5753 1.0945,1.5111 -0.17,0.4468 -0.7971,1.9478 0.2432,1.0359l0.4986 -0.5362 0 0c0.4695,0.5294 1.6086,0.8941 2.1281,0.2681 0.0747,-0.0899 0.1745,-0.3412 0.3041,-0.3412 0.0995,0.5028 0.2972,1.0038 0.3769,1.5111 0,0.4296 0.1339,0.8302 0.1095,1.2552 -0.0192,0.3354 -0.1012,0.6489 -0.1703,0.9749 -0.1019,0.4804 -0.7242,1.169 -1.058,1.5355 -0.1549,0.1702 -0.8351,0.4575 -0.7174,0.6216 0.1334,0.1862 0.3127,0.2145 0.5229,0.3046 0.6014,0.258 0.7008,0.3391 0.8634,1.0237l0 0c-0.3226,0.3638 0.0124,0.8093 0.2554,1.0724 0.0974,0.1054 0.5651,0.4362 0.5594,0.5118 -0.0149,0.1983 -0.2446,0.2827 -0.3892,0.3778 -0.2463,0.1618 -0.6612,0.2263 -0.9485,0.3412 -0.3636,0.1453 -0.5951,0.7069 -0.9607,0.3413 -0.4828,-0.4828 -0.8984,0.4566 -1.131,0.7312 0.0489,0.879 0.683,0.9352 1.2891,1.3405 0.5754,0.3848 0.7461,0.6212 0.3648,1.1943 -0.2145,0.3226 -0.4775,0.6074 -0.681,0.9383 -0.134,0.2178 -0.1221,0.4577 -0.2554,0.6581l0 0 -0.4986 -0.0731c-0.1614,0 -0.3698,-0.1184 -0.5229,-0.1828 -0.1396,-0.0586 -0.3553,-0.1218 -0.4743,-0.195 -0.3244,-0.1994 -0.8676,0.0676 -1.0945,-0.3168 -0.217,-0.3674 -0.449,-0.2947 -0.8512,-0.3656 -0.8197,0 -1.7389,0.0913 -2.4808,0.4752 -0.7072,0.3658 -1.2634,0.9351 -1.8606,0.1463l0 0 -0.146 -0.4144c-0.2352,-0.5316 -0.4369,-1.2064 -1.1309,-1.2064 -0.161,0 -0.4358,0.0922 -0.5716,0.0243 -0.3321,-0.1663 -0.3618,-0.6719 -0.3705,-0.9987l0.0057 0.0604c-0.0549,-0.6042 -0.1096,-0.5183 -0.6445,-0.6215 -0.5689,-0.1097 -0.6693,-0.61 -0.8635,-1.0968 -0.3431,-0.8603 -1.0218,-2.573 -0.8877,-3.4854 0.0392,-0.2669 0.0333,-0.7026 -0.0608,-0.9505 -0.1167,-0.3077 -0.4791,-0.3458 -0.5959,-0.7556l0 0c1.0285,-0.6016 1.1674,-0.8738 1.1674,-2.0108 0.3442,-0.086 0.466,0.6848 0.6932,0.6215 0.225,-0.0628 0.2139,-0.5801 0.2067,-0.7799 -0.0236,-0.6518 -0.1053,-1.5641 0.3892,-2.0595 0.4051,-0.406 -1.2948,-3.8979 -1.4715,-4.6797 -0.0318,-0.3555 -0.2611,-0.6711 -0.6202,-0.4631 -0.5518,0.3198 -0.3813,-0.4263 -0.3648,-0.719 0.0205,-0.3621 -0.2743,-0.5696 -0.5108,-0.7921 -0.4537,-0.4266 -0.4599,-1.1313 -0.5837,-1.7061 -0.1999,-0.9284 0.1661,-1.8482 0.0122,-2.7054l0 0 1.3742 -0.7922 0 0z", + + "Merthyr_Tydfil": "M147.198 189.593c0.1539,0.8572 -0.2121,1.777 -0.0122,2.7054 0.1238,0.5748 0.13,1.2795 0.5837,1.7061 0.2365,0.2225 0.5313,0.43 0.5108,0.7921 -0.0165,0.2927 -0.187,1.0388 0.3648,0.719 0.3591,-0.208 0.5884,0.1076 0.6202,0.4631 0.1767,0.7818 1.8766,4.2737 1.4715,4.6797 -0.4945,0.4954 -0.4128,1.4077 -0.3892,2.0595 0.0072,0.1998 0.0183,0.7171 -0.2067,0.7799 -0.2272,0.0633 -0.349,-0.7075 -0.6932,-0.6215 0,1.137 -0.1389,1.4092 -1.1674,2.0108l0 0 -0.0486 -0.914c-0.4055,-0.6496 -0.6984,0.1413 -1.1553,-0.3169 -0.5499,-0.5513 -0.7807,-1.4026 -1.1553,-2.0595 -0.8303,-1.4556 -1.0466,-3.3032 -2.5781,-4.3262 -0.3202,-0.2139 -0.8597,-0.2591 -1.0337,-0.6215l-0.6202 -1.2918c-0.4415,-0.4424 -0.8399,-1.0991 -1.2282,-1.6086 -0.1532,-0.2009 -1.2923,-0.9567 -1.1188,-1.0724 0.2185,-0.1456 0.497,-0.1554 0.7418,-0.0975 0.2972,0.0702 0.7216,0.3023 1.0093,0.2193 1.4331,-0.4139 -1.0773,-3.715 -1.2282,-4.4724l-0.1216 -1.5721 0 0c0.469,0.0403 1.0034,-0.5365 1.2039,-0.9384 0.0672,-0.1346 0.4039,-0.9875 0.4864,-0.853 0.1802,0.2935 0.4796,0.4688 0.7662,0.6459 0.2846,0.176 -0.3078,1.2124 0.3648,1.3161 0.6325,0.0976 2.3519,0.6368 2.493,1.3283 0.2857,1.3993 0.3239,1.3284 1.6538,1.3284l0.4865 0.0122 0 0z", + + "Rhondda_Cynon_Taf": "M139.744 186.754l0.1216 1.5721c0.1509,0.7574 2.6613,4.0585 1.2282,4.4724 -0.2877,0.083 -0.7121,-0.1491 -1.0093,-0.2193 -0.2448,-0.0579 -0.5233,-0.0481 -0.7418,0.0975 -0.1735,0.1157 0.9656,0.8715 1.1188,1.0724 0.3883,0.5095 0.7867,1.1662 1.2282,1.6086l0.6202 1.2918c0.174,0.3624 0.7135,0.4076 1.0337,0.6215 1.5315,1.023 1.7478,2.8706 2.5781,4.3262 0.3746,0.6569 0.6054,1.5082 1.1553,2.0595 0.4569,0.4582 0.7498,-0.3327 1.1553,0.3169l0.0486 0.914 0 0c0.1168,0.4098 0.4792,0.4479 0.5959,0.7556 0.0941,0.2479 0.1,0.6836 0.0608,0.9505 -0.1341,0.9124 0.5446,2.6251 0.8877,3.4854 0.1942,0.4868 0.2946,0.9871 0.8635,1.0968 0.5349,0.1032 0.5896,0.0173 0.6445,0.6215l-0.0057 -0.0604c0.0087,0.3268 0.0384,0.8324 0.3705,0.9987 0.1358,0.0679 0.4106,-0.0243 0.5716,-0.0243 0.694,0 0.8957,0.6748 1.1309,1.2064l0.146 0.4144 0 0c-0.6035,0.3348 -1.0833,1.5477 -1.7634,1.5477 -0.6352,0 -0.646,-1.1456 -1.0823,-1.1456 -0.5725,0 -0.9808,0.1656 -1.5079,0.3412 -0.8184,0.2728 -0.8603,0.7604 -1.4958,1.2309 -0.3128,0.2317 -0.9395,-0.0083 -1.0945,0.134 -0.3101,0.2845 0.4603,1.8697 0.2432,2.4861l0 0 -0.7418 0.1097c-0.9993,0 -2.1637,-0.7448 -2.9916,0.2925 -0.0786,0.0986 -0.5236,0.7433 -0.608,0.7433 -0.1286,-0.5124 -1.113,-0.6634 -1.5201,-0.7312 -0.8968,-0.1493 -1.4237,-0.1037 -2.189,-0.6458 -0.5362,-0.3799 -1.1229,-0.0975 -1.7511,-0.0975l0 0 0.0973 -0.8531c0,-0.5076 0.1475,-0.9757 0.3891,-1.4136 0.2251,-0.4082 0.8196,-0.5085 0.9364,-0.8897 0.2714,-0.886 -0.8819,-1.4661 -0.9242,-2.4007 -0.0282,-0.6217 -0.619,-0.9798 -0.2189,-1.3162 0.579,-0.4866 0.8214,-1.4904 0.5958,-2.2057 -0.3136,-0.9474 -0.7297,-0.8649 -1.5565,-1.1821 -0.634,-0.2433 -1.1362,-1.222 -1.3985,-1.7914 -0.2332,-0.506 -0.5409,-0.6413 -0.8391,-1.0725 -0.4582,-0.6628 -1.1116,-0.4764 -1.8242,-0.524l0 0 -0.1824 -0.719c-0.1309,-0.484 -0.3634,-0.9405 -0.6323,-1.3771 -0.2899,-0.4708 -0.7006,-0.9955 -0.827,-1.5355 -0.0823,-0.3515 0.1273,-0.6492 0.0973,-0.9993 0.2185,-0.8758 0.1251,-1.8756 0.304,-2.7785 0.1716,-0.866 0.202,-1.8113 -0.1946,-2.6201 -0.2369,-0.4829 -0.6057,-0.9705 -0.5715,-1.5355l0 0c1.1631,-0.5633 1.3686,-0.6407 1.7633,-1.8646 0.2658,-0.8245 0.3494,-0.6642 1.1188,-0.5362 0.3646,0.0607 0.8915,0.1374 0.5837,-0.4021 -0.2699,-0.4733 1.0781,-0.7564 1.3985,-1.1943 0.4997,-0.6827 1.1559,-0.8171 1.6904,-1.3527 0.5383,-0.2627 0.9334,-0.2557 1.0458,-0.9628 0.0997,-0.6276 0.0974,-1.4014 0.9486,-1.4014 0.5654,0 0.5265,0.8166 0.8999,1.0846l0 0z", + + "Bridgend": "M132.301 204.948c0.7126,0.0476 1.366,-0.1388 1.8242,0.524 0.2982,0.4312 0.6059,0.5665 0.8391,1.0725 0.2623,0.5694 0.7645,1.5481 1.3985,1.7914 0.8268,0.3172 1.2429,0.2347 1.5565,1.1821 0.2256,0.7153 -0.0168,1.7191 -0.5958,2.2057 -0.4001,0.3364 0.1907,0.6945 0.2189,1.3162 0.0423,0.9346 1.1956,1.5147 0.9242,2.4007 -0.1168,0.3812 -0.7113,0.4815 -0.9364,0.8897 -0.2416,0.4379 -0.3891,0.906 -0.3891,1.4136l-0.0973 0.8531 0 0c-0.8409,0.279 -1.5866,1.5684 -2.4322,1.4136 -1.2138,-0.2221 -0.2567,1.4858 -0.3648,1.9255 -0.3051,0 -0.6611,-0.3538 -0.8513,-0.5606 -0.3078,-0.3345 -0.5774,-0.4013 -0.985,-0.5971 -1.2797,-0.6145 -2.0734,0.756 -2.9551,1.2674l-2.1925 1.2657 0 0c-0.2614,-0.5865 -0.6718,-1.0815 -1.3828,-1.1073 -1.0432,-0.038 -1.8165,0.6536 -2.8456,-0.0488 -0.5443,-0.3716 -2.3499,-2.3907 -2.4809,-3.0466 -0.4943,-0.8056 -0.8014,-1.7039 -1.0878,-2.6122l0 0 1.7202 0.2602c0.3549,0.0344 0.6133,-0.0943 0.9972,-0.0122 0.9737,0.2081 0.83,0.4004 1.6539,-0.3778 0.7777,-0.7347 2.6053,0.2675 2.7362,-1.3161 0.0289,-0.3499 -0.6574,-2.2095 -0.9607,-2.4251 -0.5285,-0.3759 -0.933,-0.797 -1.1675,-1.4137 -0.1545,-0.4061 -0.1264,-0.8809 -0.304,-1.2674 -0.4831,-1.0515 1.0542,-0.1779 0.6324,-1.0724 -0.3662,-0.7764 0.0364,-1.4148 0.0972,-2.218 0.4559,-0.3653 0.4671,-1.5282 1.0945,-1.6208 0.4935,-0.0728 1.1374,0.3169 1.6904,0.3169 0.5766,0 0.8416,0.0986 1.362,0.3046 0.7875,0.3119 1.0755,-0.3093 1.7512,-0.4752 0.4549,-0.1116 1.1388,0.0755 1.5322,-0.2316l0 0z", + + + "Cardiff": "M163.402 219.773l-0.3706 -0.81c0.146,-0.2227 0.379,-0.6013 0.5959,-0.7434 0.1354,-0.0888 0.4986,-0.3463 0.4986,-0.524 -0.3843,-0.0964 -0.5222,-0.3651 -0.5716,-0.719 -0.0896,-0.6407 -0.5551,-0.643 -0.985,-1.0115 -0.4392,-0.3763 -0.9437,-0.6108 -1.2404,-1.1212l0 0 -0.4986 -0.0731c-0.1614,0 -0.3698,-0.1184 -0.5229,-0.1828 -0.1396,-0.0586 -0.3553,-0.1218 -0.4743,-0.195 -0.3244,-0.1994 -0.8676,0.0676 -1.0945,-0.3168 -0.217,-0.3674 -0.449,-0.2947 -0.8512,-0.3656 -0.8197,0 -1.7389,0.0913 -2.4808,0.4752 -0.7072,0.3658 -1.2634,0.9351 -1.8606,0.1463l0 0c-0.6035,0.3348 -1.0833,1.5477 -1.7634,1.5477 -0.6352,0 -0.646,-1.1456 -1.0823,-1.1456 -0.5725,0 -0.9808,0.1656 -1.5079,0.3412 -0.8184,0.2728 -0.8603,0.7604 -1.4958,1.2309 -0.3128,0.2317 -0.9395,-0.0083 -1.0945,0.134 -0.3101,0.2845 0.4603,1.8697 0.2432,2.4861l0 0c0.602,0.1887 1.7984,0.3401 2.2376,0.7799 0.6383,0.6394 0.9562,1.5488 1.3256,2.352 0.1964,0.4269 0.2108,1.1849 0.5107,1.5355 0.2868,0.3351 1.6815,-0.0027 2.043,-0.1462 0.678,-0.2693 1.0002,-1.1825 1.7755,-0.9871 0.1372,0.549 0.4859,0.8427 0.6932,1.3405 0.2804,0.6736 0.7787,0.8448 1.0945,1.499l1.0215 0.2071 0 0c-0.3671,-0.368 -0.7607,-1.7497 0.0608,-0.9261 0.6423,0.6438 0.9826,0.3829 1.3377,-0.256 0.2389,-0.4297 0.6179,-0.6675 0.9607,-1.0114 0.4007,-0.4018 0.1547,-1.4447 0.5594,-1.9986 0.3628,-0.4964 1.4664,-0.6401 2.0308,-1.2065 0.2192,-0.0068 0.544,-0.1409 0.9057,-0.3355l0 0z", + + "Vale_of_Glamorgan": "M137.044 218.597c0.6282,0 1.2149,-0.2824 1.7511,0.0975 0.7653,0.5421 1.2922,0.4965 2.189,0.6458 0.4071,0.0678 1.3915,0.2188 1.5201,0.7312 0.0844,0 0.5294,-0.6447 0.608,-0.7433 0.8279,-1.0373 1.9923,-0.2925 2.9916,-0.2925l0.7418 -0.1097 0 0c0.602,0.1887 1.7984,0.3401 2.2376,0.7799 0.6383,0.6394 0.9562,1.5488 1.3256,2.352 0.1964,0.4269 0.2108,1.1849 0.5107,1.5355 0.2868,0.3351 1.6815,-0.0027 2.043,-0.1462 0.678,-0.2693 1.0002,-1.1825 1.7755,-0.9871 0.1372,0.549 0.4859,0.8427 0.6932,1.3405 0.2804,0.6736 0.7787,0.8448 1.0945,1.499l1.0215 0.2071 0 0c0.7033,0.7048 0.243,2.0019 0.2189,2.8517 -0.0257,0.909 0.031,1.2636 -0.7905,1.7183 -0.4901,0.2153 -1.3814,0.8131 -1.9214,0.4631 -0.507,-0.3285 -0.827,-0.5565 -1.435,-0.1828 -1.5481,0.9518 -2.4423,1.5739 -4.2076,0.7068 -0.9905,-0.4866 -1.6822,0.8709 -2.6389,1.0846 -0.6557,0.1464 -3.1112,0.2217 -3.7091,-0.0244 -0.5589,-0.1637 -1.1137,-0.4591 -1.666,-0.5849 -0.6651,-0.1516 -1.3966,0.0484 -2.0552,-0.1341 -1.2339,-0.3421 -2.6707,-1.1309 -3.9645,-1.0236 -0.7884,0.0653 -1.8321,0.4065 -2.4808,-0.2438 -0.6536,-0.6553 -0.9782,-1.3215 -1.4106,-2.1204 -0.5568,-0.9568 -1.1254,-1.7402 -1.9823,-2.4617 -0.8863,-0.7462 -1.7199,-0.9077 -2.1646,-2.0595 -0.024,-0.0622 -0.0495,-0.124 -0.0765,-0.1845l0 0 2.1925 -1.2657c0.8817,-0.5114 1.6754,-1.8819 2.9551,-1.2674 0.4076,0.1958 0.6772,0.2626 0.985,0.5971 0.1902,0.2068 0.5462,0.5606 0.8513,0.5606 0.1081,-0.4397 -0.849,-2.1476 0.3648,-1.9255 0.8456,0.1548 1.5913,-1.1346 2.4322,-1.4136l0 0z", + + "Neath_Port_Talbot": "M130.295 193.383c-0.0342,0.565 0.3346,1.0526 0.5715,1.5355 0.3966,0.8088 0.3662,1.7541 0.1946,2.6201 -0.1789,0.9029 -0.0855,1.9027 -0.304,2.7785 0.03,0.3501 -0.1796,0.6478 -0.0973,0.9993 0.1264,0.54 0.5371,1.0647 0.827,1.5355 0.2689,0.4366 0.5014,0.8931 0.6323,1.3771l0.1824 0.719 0 0c-0.3934,0.3071 -1.0773,0.12 -1.5322,0.2316 -0.6757,0.1659 -0.9637,0.7871 -1.7512,0.4752 -0.5204,-0.206 -0.7854,-0.3046 -1.362,-0.3046 -0.553,0 -1.1969,-0.3897 -1.6904,-0.3169 -0.6274,0.0926 -0.6386,1.2555 -1.0945,1.6208 -0.0608,0.8032 -0.4634,1.4416 -0.0972,2.218 0.4218,0.8945 -1.1155,0.0209 -0.6324,1.0724 0.1776,0.3865 0.1495,0.8613 0.304,1.2674 0.2345,0.6167 0.639,1.0378 1.1675,1.4137 0.3033,0.2156 0.9896,2.0752 0.9607,2.4251 -0.1309,1.5836 -1.9585,0.5814 -2.7362,1.3161 -0.8239,0.7782 -0.6802,0.5859 -1.6539,0.3778 -0.3839,-0.0821 -0.6423,0.0466 -0.9972,0.0122l-1.7202 -0.2602 0 0c-0.2299,-0.7293 -0.4467,-1.4651 -0.7363,-2.1649 -0.484,-1.1691 -1.3603,-3.0333 -2.3592,-3.8266 -0.7791,-0.5208 -1.9208,-2.4898 -2.6389,-2.5957 -0.994,-0.1467 -1.7206,-0.1233 -2.5011,0.0523l0 0 0.1541 -1.795c0.2078,-0.7302 0.535,-1.0208 0.535,-1.8402 0,-0.9184 0.9372,-1.824 1.4593,-2.4617 0.4191,-0.512 0.6567,-1.8947 0.6567,-2.5713 -0.421,0 -1.5812,-0.2341 -1.8484,-0.585 -0.2467,-0.3242 -0.864,-2.1867 -0.7175,-2.5226 -0.1182,-0.9493 -0.5138,-1.3453 -1.131,-1.9986 -0.5016,-0.5308 -1.416,-1.1855 -1.6417,-1.9011l-0.3648 -0.5972 0 0c0.8245,-0.3462 0.7087,-0.3824 1.5201,0.0244 0.35,0.1755 0.8822,0.1463 1.2769,0.1463 0.5038,0 0.3647,-0.4757 0.3526,-0.8531 -0.0173,-0.5353 0.1009,-1.0256 -0.231,-1.4624 -0.1972,-0.2597 -0.5837,-1.0492 -0.5837,-1.3649 0.6234,0 0.7897,0.056 1.4106,-0.195 0.8739,-0.3532 1.2625,-0.2388 2.1525,-0.1828 0.8427,0.0531 1.0439,0.3619 1.5444,0.9262l0.4013 0.8165 0 0c-0.0271,0.4512 1.0425,1.2433 1.4229,1.4015 0.8871,0.3688 0.4893,1.6241 1.216,2.352 0.6761,0.6771 1.5445,0.5437 2.0309,-0.2803 0.4825,-0.8176 0.0339,-1.4763 1.1796,-1.8036 0.8753,-0.25 2.5248,-1.0359 3.3442,-1.0359 1.1773,0 1.9656,0.9215 3.0524,1.1943 0.3128,-0.0153 0.7888,0.0278 1.0945,0.0975 0.2188,0.0498 0.3094,0.0454 0.3648,0.2681 0.0355,0.1424 0.0335,0.2834 0.0608,0.4265 0.0285,0.1499 0.1186,0.4287 0.1824,0.5606 0.1108,0.2294 0.1106,0.4196 0.1703,0.6581l0 0z", + + "Swansea": "M111.23 207.962c-0.4089,0.0919 -0.8326,0.2257 -1.3174,0.3986 -0.8815,0.3143 -1.6604,0.3029 -2.5903,0.4021 -1.2044,0.1284 -2.2804,0.4062 -2.7483,1.6818 -0.5115,1.3946 0.821,1.9974 1.7511,2.5591 -1.13,0.2848 -2.3006,0.2546 -3.4537,0.1463 -1.4242,-0.1101 -2.006,1.1675 -2.8942,0.8043 -1.1689,-0.4781 -2.6798,-1.391 -3.9645,-0.9628 -0.667,0.2222 -1.8204,0.6692 -1.4471,1.5477 0.1085,0.2553 0.7682,0.8498 0.7418,0.8653 -0.2813,0.1662 -1.0277,0.2767 -1.3499,0.1828 -1.1865,-0.3457 -2.5294,-1.2315 -2.5294,0.7068 -0.4141,0 -1.0189,-0.5746 -1.5201,-0.6581 -0.8743,-0.1456 -1.5094,-0.4313 -2.116,-1.1089 -0.9636,-0.4836 -1.152,-0.9711 -2.2984,-0.8653 -0.8005,0.0739 -1.3581,-0.2803 -2.0552,-0.2803 0.0589,-0.2359 1.113,-0.0627 1.3134,-0.0244 0.4461,0.0853 0.5933,-0.2122 0.8391,-0.4996 0.7383,-0.8629 -0.1489,-2.4338 -0.5351,-3.2416 -0.5222,-1.0924 -1.5027,-0.8593 0.1216,-1.2065 0.8067,-0.1725 2.005,-1.0599 2.5538,-1.6817 0.568,-0.3423 1.5006,-1.7029 2.0065,-1.3406 0.9247,0.6621 2.3501,1.1044 3.478,1.0237 0.6052,-0.0433 4.3415,-2.3582 4.3415,-2.8638l-0.0122 -0.0122 1.0823 -0.5606c0.2373,-0.1188 1.0247,-0.573 0.7053,-0.914 -0.2463,-0.2631 -0.6445,-0.7221 -0.6445,-1.109 0,-0.0536 0.7024,-0.2246 0.8634,-0.4387 0.3911,-0.5197 0.3729,-1.264 0.9486,-1.7305 1.031,-0.8352 -0.2243,-2.7475 0.7661,-3.205 0.5577,-0.2577 0.669,-0.8044 1.0094,-1.2309 0.378,-0.4738 0.9209,-0.8211 1.2282,-1.3527 0.181,-0.3928 0.2621,-1.127 0.3162,-1.5599 0.2158,-0.0541 0.7788,0.5465 0.9242,0.719 0.1703,0.2019 0.6611,0.4116 0.9121,0.5241 0.5596,0.2507 1.0473,-0.2203 1.4715,-0.4875 0.4528,-0.2851 0.6731,-0.3999 1.2039,-0.4997l0 0 0.3648 0.5972c0.2257,0.7156 1.1401,1.3703 1.6417,1.9011 0.6172,0.6533 1.0128,1.0493 1.131,1.9986 -0.1465,0.3359 0.4708,2.1984 0.7175,2.5226 0.2672,0.3509 1.4274,0.585 1.8484,0.585 0,0.6766 -0.2376,2.0593 -0.6567,2.5713 -0.5221,0.6377 -1.4593,1.5433 -1.4593,2.4617 0,0.8194 -0.3272,1.11 -0.535,1.8402l-0.1541 1.795 0 0z", + + "Pembrokeshire": "M19.2903 182.793c-0.0405,-0.2158 -0.0122,-0.5516 -0.0122,-0.78 0,-0.1937 -0.0122,-0.3817 -0.0122,-0.5727 0,-0.1122 0.0734,-0.4795 -0.0121,-0.5484 -0.2079,-0.1674 -0.743,-0.047 -0.8878,0.1706 -0.2011,0.3024 -0.0605,0.8924 0.0122,1.2064 0.0512,0.2216 -0.0148,0.4642 0.0608,0.6825 0.1099,0.3176 0.4118,0.3188 0.681,0.2193l0.1703 -0.3777zm41.4928 22.3501c-0.2761,0.2559 -0.5816,0.2182 -0.9364,0.195 -0.1355,-0.0089 -0.3775,-0.1113 -0.5107,-0.1584 -0.2309,-0.0816 -0.3424,-0.0547 -0.5594,0 0.0362,0.1466 0.6178,0.293 0.7053,0.524 0.0672,0.1777 0.1809,0.3568 0.3405,0.4631 0.202,0.1347 0.6012,0.0712 0.8513,0.1218 0.0927,0.0188 0.3205,-0.0071 0.377,-0.0853 0.072,-0.0999 0.0477,-0.4731 -0.0122,-0.5727l-0.2554 -0.4875zm-37.8324 -6.203c-0.1361,0.0682 -0.2265,0.0893 -0.3162,0.2194 -0.0546,0.0793 -0.0549,0.1681 -0.1095,0.2437 -0.1117,0.1549 -0.5017,0.2112 -0.5472,0.4022 -0.0482,0.2028 0.1614,0.2559 0.3162,0.2559 0.1298,0 0.2763,-0.0613 0.3648,-0.1584 0.169,-0.1857 0.1736,-0.2964 0.4378,-0.3778 0.1053,-0.0325 0.1529,-0.0583 0.1946,-0.1584 0.0194,-0.0468 0.0522,-0.2155 -0.0122,-0.2316l-0.3283 -0.195zm-0.5351 -4.0459c-0.2644,0.1837 -1.1026,-0.5655 -1.3012,-0.2437 -0.0987,0.1601 -0.2191,0.3082 -0.4013,0.3778 -0.4146,0.1586 -0.0503,0.5016 0.2067,0.5727 0.2856,0.0789 0.4475,0.107 0.6081,0.3534 0.2942,0.4511 0.3678,-0.278 0.6688,-0.3899 0.3183,-0.1182 0.6526,0.1687 0.9364,0.0975 0.0646,-0.3232 -0.351,-0.4141 -0.4135,-0.6337l-0.304 -0.1341zm40.7321 0.9374c-1.1923,0.3972 -2.3367,1.1058 -2.8024,2.0605 -0.7352,1.5075 1.1492,1.5529 -0.2797,2.8882 -0.2739,0.2559 -0.3345,1.3775 -0.0243,1.6086 0,0.2363 -0.6762,0.7206 -0.8756,0.8044 -0.6267,0.501 -0.3743,1.4789 -1.5809,1.0358 -0.6626,-0.2434 -1.4699,-0.1921 -1.8849,0.4509 -1.2292,1.9047 -2.1968,0.5991 -3.7821,0.2681 -0.5233,-0.1093 -2.3352,-0.2486 -2.6632,0.1584 -0.2288,0.2841 -0.6615,0.968 -0.9728,1.109 -1.4181,0.6422 -1.3738,1.2595 -1.0702,2.4739 -0.2107,-0.1268 -0.6894,-0.2028 -0.9364,-0.1828 -0.4375,0.2196 -0.8914,1.3216 -1.0458,1.2918 -0.3927,-0.0757 -1.7427,-0.1064 -1.9214,-0.3413 -0.3097,-0.4068 -0.647,-0.3831 -1.0702,-0.5605 -0.642,-0.269 -0.6496,-0.7615 -1.5201,-0.4509 -1.1531,0.4116 -1.2952,-0.2875 -2.3349,-0.6337 -0.9869,-0.3285 -2.2086,-0.2653 -1.8606,-1.6574 0.4504,0 0.9968,0.0638 0.7783,-0.7434 -0.1652,-0.6101 -0.4595,-1.0885 -0.7905,-1.6452 -0.5098,-0.6562 -1.3275,-0.8462 -2.1281,-0.9871 -1.0481,-0.1846 -1.0908,-0.8155 -1.6052,-1.5111 -0.6284,-0.85 2.4221,-1.3275 2.5416,-0.8165l0.231 0.9871c0.077,0.3294 0.9558,-0.0853 1.3012,-0.0853 0.3263,0 1.0426,0.4967 0.827,-0.2559 -0.1068,-0.3732 -0.7694,-0.853 -0.4378,-1.0237 0.5466,-0.2813 4.5006,0.3702 4.6698,0.6093 0.1552,0.2195 0.1204,0.7678 0.3526,0.7678 0.136,0 0.9945,-0.138 1.0094,-0.1828l0.0243 0c0,-0.1827 -0.6665,-0.6997 -0.8269,-0.78 -0.2625,-0.1313 0.5958,-0.5305 0.8269,-0.6946 0.7055,-0.5008 1.5238,-1.0115 2.3957,-1.0115l0 -0.0243c-0.3823,0 -0.7941,-0.2194 -1.1796,-0.2194 -0.5308,0 -0.9267,0.5885 -1.4228,0.2803 -0.3068,-0.1907 -0.7195,0.0205 -0.9972,0.2072 -0.5043,0.3389 -1.2508,0.2912 -1.7998,0.0853 -0.7467,-0.2799 -1.3476,-0.7556 -2.1647,-0.7556 -1.2745,0 -1.9545,0.3439 -3.2348,0.0244 -0.5007,-0.3593 -0.4914,-0.9505 -0.7783,-1.4502 -0.1627,0 -0.7827,0.731 -1.0336,0.9261 -0.729,0.5666 -0.4242,-0.372 -1.0702,-0.2193 -0.3756,0.0888 -0.7324,0.3853 -1.1188,0.4387 -0.4295,0.0593 -1.0894,-0.5245 -1.1188,-0.4875 -0.3016,0.3782 0.3756,1.2317 0.5108,1.633 0.3028,0.8989 -0.2367,1.0559 -0.7054,1.7549 -0.4254,0.6346 -1.1723,-1.3439 -1.0823,-1.8889 0.1639,-0.9928 -0.3204,-0.8464 -1.0823,-1.1821 -0.5404,-0.2382 -0.3828,-1.1949 -1.3742,-1.0359 -0.7539,0.121 -1.2157,-0.8064 -1.8241,-1.243 0,-0.4681 2.0893,-0.1051 2.4322,-0.0122 1.2291,0.333 0.5753,-2.1326 1.3863,-2.1326 0.7581,0 1.5834,-0.9807 1.9579,-1.5965 1.3406,-0.8925 2.9165,1.2387 3.4902,-0.3899 0.3505,-0.9953 0.3637,-2.6443 0.2432,-3.7047 -0.1106,-0.9724 -0.6212,-1.8564 -0.7418,-2.7786 -0.0665,-0.7969 -0.7721,-2.0606 -1.508,-2.3885 -0.8154,-0.3632 -2.2761,0.0355 -2.8578,-0.4875 -0.4939,-0.4442 -1.3604,-0.0163 -1.8849,-0.3169 -1.0502,-0.6018 -1.8256,-0.4906 -3.0159,-0.2193 -0.4258,0.0971 -3.2382,1.5089 -3.4902,1.109 -0.1788,-0.2836 0.2166,-0.99 0.2433,-1.3284 0.114,-0.4302 -0.289,-1.0583 -0.073,-1.1943 0.7032,-0.4426 0.96,-0.2676 0.9121,-1.2552 -0.0223,-0.4618 -0.8756,-0.6761 -0.8756,-0.7434 0.6107,-0.1514 1.1586,-0.8234 1.8241,-0.9261 0.9376,-0.1446 1.8753,-0.1703 2.6024,-0.8653 0.285,-0.2723 0.6829,-0.8612 0.9851,-1.0358 0.2055,-0.1186 0.5437,-0.0031 0.7904,-0.1219 0.58,-0.2791 1.1441,-1.7619 1.5444,-1.8767 0.3429,-0.0984 0.7516,0.2055 1.1553,0.0487 1.8738,0 1.3872,-0.2998 2.3957,-1.3892 0.3411,-0.3686 2.0906,0.6376 2.4444,-0.2316 0.3406,-0.8371 0.757,-0.1535 0.9363,-0.5606 0.1019,-0.2312 -0.0622,-0.6574 -0.0486,-0.9262 0.0126,-0.2476 0.2033,-0.6259 0.0973,-0.8165 -0.1061,-0.191 -0.7231,-0.5999 -0.6202,-0.8165 0.3419,-0.719 2.0295,-0.3818 0.754,-1.6573 -0.5779,-0.5779 -0.6711,-0.4487 0.0364,-1.0968 0.5449,-0.499 0.604,-0.8618 1.3499,-0.9018 0.5311,-0.0285 1.3297,0.5615 2.0917,0.4996 0.7844,0.1573 1.556,0.1341 2.347,0.1341 0.4379,0 0.3244,0.7256 0.4013,1.0358 0.053,0.0133 0.1663,0.0182 0.2067,0.0488 -0.0874,0.3557 -0.8026,0.9576 -0.8026,1.1577 0.9871,0.329 1.8756,0.1485 2.9065,-0.195 0.6667,-0.2222 2.5844,-1.1032 2.3592,-2.0229 -0.1196,-0.4882 -0.2413,-1.1399 0.6567,-0.8287 0.5953,0.2062 0.6522,1.0934 1.3741,1.3161 0.7683,0.2369 2.7484,-0.507 2.7484,-1.4624 -0.8248,-0.207 -0.6664,-0.2723 -0.5716,-1.0602 0.7013,-0.9355 1.4579,-0.9492 2.5295,-1.1943 0.9671,-0.2213 1.2073,-0.5525 1.7876,-1.2796 0.7699,-0.9649 1.934,-2.204 2.262,-3.4 0.2016,-0.7349 0.7661,-0.9977 0.7661,-1.8889l0.0122 -0.0122c0.1179,-0.0297 0.2814,0.1994 0.3769,0.2803 0.1205,0.1927 0.5195,0.5023 0.9539,0.7414l0 0 -0.4917 1.0256c0.0376,0.3883 0.3168,0.8896 0.7661,0.8896 0.1524,0 0.2835,-0.095 0.3891,-0.1949 0.1295,-0.1227 0.3863,-0.1657 0.5594,-0.1828l0.3071 0.0356 0.1728 0.4245c-0.2118,0.3666 -1.1599,0.4979 -1.55,0.7585 -0.2972,0.1984 -1.357,0.1235 -0.7053,0.4753 0.4105,0.2215 0.7128,0.3263 1.1674,0.39 0.2596,0.0363 0.6549,0.0298 0.8269,0.2559 0.8448,1.1098 1.1537,0.1686 1.6539,-0.6337l0.3551 -0.5714c0.1111,0.0232 0.2229,0.0572 0.3377,0.1083 0.6531,0.2911 0.2474,0.9631 0.8026,1.2918 1.1488,0.6803 2.6428,0.0374 3.7213,1.2674 0.4993,0.5695 0.799,0.879 1.3039,0.9621l0 0 0.0466 0.7315c0.3146,1.1836 0.4044,1.2198 1.3985,1.9133 0.7591,0.5297 0.5522,1.4545 1.0458,2.1692 0.3396,0.4919 0.896,0.4312 1.3985,0.5605 0.3269,0.084 0.0317,1.7811 0.073,2.1692 0.1172,1.1018 -1.4366,0.5798 -1.9944,0.6337 -0.6108,0.0591 -1.0278,0.5666 -1.5687,0.7677 -0.4665,0.3642 -1.022,0.6651 -1.2404,1.2674 -0.1533,0.4226 -0.5,1.0778 -0.9972,1.1821 -1.1786,0.2472 -0.8328,-1.381 -1.8484,-0.5728l-1.2404 0.9871c-0.2566,0.2042 -0.3062,0.7638 -0.6202,0.8409 -0.5114,0.1255 -2.0277,-0.7102 -2.189,-1.1943 -0.0223,-0.0056 -0.0188,-0.0021 -0.0243,-0.0244l-0.0121 -0.0121c-0.0246,0 -0.0182,-0.0065 -0.0244,0.0121 -0.1317,0 -1.0557,0.7752 -1.4593,0.8531 -0.8833,0.1704 -1.0038,0.9014 -1.6781,1.1333 -0.4705,0.5571 -0.0178,0.7722 -0.7905,1.1333 -0.4817,0.2252 -0.3819,0.6403 -0.7661,0.9262 -0.3295,0.2451 -0.2311,0.3034 -0.2311,0.6703 0,0.2574 -0.3529,0.7294 -0.1824,0.853 0.2915,0.2115 1.0374,0.1916 1.3863,0.1219 0.9054,-0.181 0.399,1.0921 0.5108,1.6817 0.0543,0.2868 0.4743,0.6787 0.4743,0.853 -0.5139,0 -1.1334,-0.034 -1.6174,0.0975 -0.3741,0.1017 -1.3107,1.0485 -1.5809,0.4753 -0.1304,-0.2765 0.1596,-0.5815 0.0851,-0.8774 -0.5482,0 -1.5826,1.3502 -1.3863,1.8645 0.3618,0.9483 1.6562,0.1 2.1641,-0.0482 0.6907,0.2595 0.1954,0.9872 0.5473,0.9872 0.5497,0 1.0715,-0.5845 1.4836,-0.4875 0.4405,0.1038 0.7878,0.486 1.2891,0.3168 0.4032,-0.1362 0.8557,-0.9473 1.1796,-0.853 0.6925,0.2018 1.2143,0.5633 1.9822,0.6702 0.2225,0.031 1.1081,1.49 1.4836,1.7671 1.5581,1.1495 -1.0945,1.1775 -1.0945,1.7914 0,0.6868 0.6819,1.097 0.1824,1.7305 -0.8642,1.0963 0.8512,0.9993 0.9243,1.2187l0.0243 0c0,0.5519 -0.2849,0.969 -0.4743,1.4624 -0.139,0.3624 0.1392,1.0949 -0.1216,1.4867l-0.0919 1.3883 0 0z", + + "Carmarthenshire": "M97.5576 203.547l-0.0122 -0.0122c-0.8717,0 -1.8503,0.6507 -2.7362,0.3656 -1.1326,-0.3644 -1.4555,-1.4444 -2.2133,-2.2423 -1.6552,-1.743 -6.1502,1.799 -6.7857,1.2308l-3.3929 -3.0345c-0.7973,-0.8974 -1.8971,-1.8333 -1.8971,-3.1563 0,-1.2256 1.2701,-0.9209 0.1824,-1.8036 -0.5787,-0.4695 -0.7269,-0.7598 -0.4378,-1.4867 0.3964,-0.9969 0.4864,-1.4483 0.4864,-2.4861 -0.1158,0.039 -0.247,0.8402 -0.3648,1.0115 -0.198,0.2881 -0.5847,0.4889 -0.8634,0.6946 -1.504,1.1096 -1.2415,0.4033 -2.7848,0.1219 -0.3904,-0.0711 0.1058,0.7755 0.1459,0.8409 0.1544,0.2521 0.5047,0.4463 0.7175,0.6702 0.2697,0.2836 -1.577,1.2658 -1.9336,1.4137 -1.1379,0.4723 -3.4104,-0.1231 -4.5846,-0.39 -2.0188,-0.5061 -3.8712,0.1828 -5.8737,0.1828 -0.6139,0 -1.3466,0.1263 -2.062,0.3646l0 0 0.0919 -1.3883c0.2608,-0.3918 -0.0174,-1.1243 0.1216,-1.4867 0.1894,-0.4934 0.4743,-0.9105 0.4743,-1.4624l-0.0243 0c-0.0731,-0.2194 -1.7885,-0.1224 -0.9243,-1.2187 0.4995,-0.6335 -0.1824,-1.0437 -0.1824,-1.7305 0,-0.6139 2.6526,-0.6419 1.0945,-1.7914 -0.3755,-0.2771 -1.2611,-1.7361 -1.4836,-1.7671 -0.7679,-0.1069 -1.2897,-0.4684 -1.9822,-0.6702 -0.3239,-0.0943 -0.7764,0.7168 -1.1796,0.853 -0.5013,0.1692 -0.8486,-0.213 -1.2891,-0.3168 -0.4121,-0.097 -0.9339,0.4875 -1.4836,0.4875 -0.3519,0 0.1434,-0.7277 -0.5473,-0.9872 -0.5079,0.1482 -1.8023,0.9965 -2.1641,0.0482 -0.1963,-0.5143 0.8381,-1.8645 1.3863,-1.8645 0.0745,0.2959 -0.2155,0.6009 -0.0851,0.8774 0.2702,0.5732 1.2068,-0.3736 1.5809,-0.4753 0.484,-0.1315 1.1035,-0.0975 1.6174,-0.0975 0,-0.1743 -0.42,-0.5662 -0.4743,-0.853 -0.1118,-0.5896 0.3946,-1.8627 -0.5108,-1.6817 -0.3489,0.0697 -1.0948,0.0896 -1.3863,-0.1219 -0.1705,-0.1236 0.1824,-0.5956 0.1824,-0.853 0,-0.3669 -0.0984,-0.4252 0.2311,-0.6703 0.3842,-0.2859 0.2844,-0.701 0.7661,-0.9262 0.7727,-0.3611 0.32,-0.5762 0.7905,-1.1333 0.6743,-0.2319 0.7948,-0.9629 1.6781,-1.1333 0.4036,-0.0779 1.3276,-0.8531 1.4593,-0.8531 0.0062,-0.0186 -0.0002,-0.0121 0.0244,-0.0121l0.0121 0.0121c0.0055,0.0223 0.002,0.0188 0.0243,0.0244 0.1613,0.4841 1.6776,1.3198 2.189,1.1943 0.314,-0.0771 0.3636,-0.6367 0.6202,-0.8409l1.2404 -0.9871c1.0156,-0.8082 0.6698,0.82 1.8484,0.5728 0.4972,-0.1043 0.8439,-0.7595 0.9972,-1.1821 0.2184,-0.6023 0.7739,-0.9032 1.2404,-1.2674 0.5409,-0.2011 0.9579,-0.7086 1.5687,-0.7677 0.5578,-0.0539 2.1116,0.4681 1.9944,-0.6337 -0.0413,-0.3881 0.2539,-2.0852 -0.073,-2.1692 -0.5025,-0.1293 -1.0589,-0.0686 -1.3985,-0.5605 -0.4936,-0.7147 -0.2867,-1.6395 -1.0458,-2.1692 -0.9941,-0.6935 -1.0839,-0.7297 -1.3985,-1.9133l-0.0466 -0.7315 0 0c0.2464,0.0406 0.5422,0.0273 0.9337,-0.036 0.681,-0.11 1.388,0.6456 1.8971,0.2925 1.0275,-0.7129 1.8041,0.4387 2.8457,0.4387 0.6403,0 1.2266,-0.3732 1.9214,-0.3412 0.7363,0.0339 1.4161,0.4169 2.1647,0.39 0.3177,-0.0114 0.8884,0.0653 1.2647,0.3168 0.7524,0.5028 0.8755,1.4739 2.3106,0.1463 0.5961,-0.5514 1.6187,-1.1824 2.3592,-1.4624 1.284,-0.4856 2.1156,1.5781 3.7699,1.1699 1.391,-0.3432 1.698,-2.1692 2.9673,-2.1692 1.5577,0 3.4552,-2.0146 4.7671,-2.9248 1.5712,-1.0901 4.2482,-1.7978 5.3995,-3.1441l0.8999 1.2429c0.866,0.0748 0.7703,0.5115 1.5566,-0.3046 0.7596,-0.7882 1.5691,-1.0175 2.2984,-1.8036 0.3464,-0.3735 1.4452,-1.7248 1.9092,-1.7914 0.3745,0.749 1.9806,2.0027 2.7119,1.3162l1.9214 -1.8037c0.304,-0.2854 1.1443,0.592 1.4472,0.7434 0.4678,0.2679 0.8647,0.4685 1.289,0.8043 0.2543,0.2013 0.3441,0.5152 0.6081,0.6947 0.4025,0.2738 0.8726,0.4702 1.2769,0.7312 0.244,0.1574 0.4278,0.5061 0.6567,0.7068l0.5757 0.3249c0.4697,-0.7692 1.2586,-1.6081 1.6565,-2.4555l0 0 1.0755 0.8023c0.6906,0.3813 1.0434,0.2949 1.0945,1.1942 0.0267,0.4714 -0.4656,0.6396 -0.6081,1.0115 -0.0665,0.1738 0.1698,0.7632 0.2068,0.9871 0.0786,0.4764 1.3215,0.6551 1.7511,1.0603 0.3284,0.3096 1.2877,0.4265 1.739,0.4265l0.0122 0.0122c0,0.3434 -0.6764,0.8269 -0.7418,1.2552 -0.0831,0.5449 0.6155,0.5931 0.8512,0.9262 0.1735,0.2454 0.2306,0.5601 0.4257,0.8165 0.1831,0.2405 0.9633,0.5846 0.7175,0.9018l-0.8026 1.0358c-0.0906,0.3131 -0.7905,0.6499 -0.7905,0.9018 1.2817,0.2572 -0.4609,1.9705 -0.7783,2.4983l-0.5351 0.8896c-0.2268,0.3771 -0.055,0.6971 -0.1702,1.0724 -0.2308,0.7515 -0.779,0.7272 -0.5716,1.7183 0.1624,0.7766 0.0064,1.176 -0.7175,1.499 -0.9713,0.4333 -0.1305,1.1436 -0.1824,1.8523 -0.139,0.4433 -0.2209,0.7756 -0.4378,1.1943 -0.4288,0.828 0.5229,0.6305 0.5229,1.5233 0,0.5524 0.1606,0.9293 0.2068,1.438 0.0545,0.6006 -0.7132,1.5906 -1.0702,2.0596 -0.6844,0.8993 -1.6924,1.4051 -2.493,2.2057 -0.3221,0.4845 -0.3713,0.9558 -0.5958,1.4624 -0.1933,0.4364 -0.0688,0.8879 -0.1581,1.3284 -0.0974,0.48 -0.5606,1.1911 -0.8635,1.5964 -0.3714,0.4967 -0.7384,1.0436 -1.0215,1.6086l0 0 -0.4013 -0.8165c-0.5005,-0.5643 -0.7017,-0.8731 -1.5444,-0.9262 -0.89,-0.056 -1.2786,-0.1704 -2.1525,0.1828 -0.6209,0.251 -0.7872,0.195 -1.4106,0.195 0,0.3157 0.3865,1.1052 0.5837,1.3649 0.3319,0.4368 0.2137,0.9271 0.231,1.4624 0.0121,0.3774 0.1512,0.8531 -0.3526,0.8531 -0.3947,0 -0.9269,0.0292 -1.2769,-0.1463 -0.8114,-0.4068 -0.6956,-0.3706 -1.5201,-0.0244l0 0c-0.5308,0.0998 -0.7511,0.2146 -1.2039,0.4997 -0.4242,0.2672 -0.9119,0.7382 -1.4715,0.4875 -0.251,-0.1125 -0.7418,-0.3222 -0.9121,-0.5241 -0.1454,-0.1725 -0.7084,-0.7731 -0.9242,-0.719 -0.0541,0.4329 -0.1352,1.1671 -0.3162,1.5599 -0.3073,0.5316 -0.8502,0.8789 -1.2282,1.3527 -0.3404,0.4265 -0.4517,0.9732 -1.0094,1.2309 -0.9904,0.4575 0.2649,2.3698 -0.7661,3.205 -0.5757,0.4665 -0.5575,1.2108 -0.9486,1.7305 -0.161,0.2141 -0.8634,0.3851 -0.8634,0.4387 0,0.3869 0.3982,0.8459 0.6445,1.109 0.3194,0.341 -0.468,0.7952 -0.7053,0.914l-1.0823 0.5606 0.0122 0.0122z", + + "Powys": "M137.202 76.8065l-0.6081 0.2803c-0.0331,0.3672 -0.321,1.6062 -0.5351,1.9011 -0.4612,0.6349 -0.8309,0.9365 -1.593,0.6093 -0.7868,-0.3379 -2.054,0.4648 -2.493,1.0603 -0.5382,0.7298 -1.0872,-0.0551 -1.7025,0.1462 -0.1858,0.0607 -0.4701,1.389 -0.5594,1.633 -0.3095,0.8461 -1.1851,1.4243 -0.6446,2.3398 0.6464,1.0947 0.589,1.4279 0.8878,2.6201 -0.0828,0.9655 0.6526,1.8336 0.2067,2.7298 -0.3117,0.6263 -0.7245,1.1863 -0.8269,1.8889 -0.0659,0.4519 0.0905,1.1396 -0.2432,1.4746 -0.241,0.2418 -0.5976,0.3948 -0.8635,0.6459 -0.251,0.2372 -0.6548,0.0218 -0.9485,0.134 -0.485,0.1852 -0.7547,0.646 -1.2526,0.7678 -0.4626,0.1131 -1.2271,-0.1529 -1.6539,-0.3291 -0.9043,0.1556 -1.0113,1.2744 -1.3863,1.9012 -0.6035,1.0084 -0.2558,-0.2957 -1.0701,-0.195 -0.506,0.0626 -1.1368,-0.4474 -1.3621,-0.3534 -0.5179,0.2159 -0.6492,0.8959 -1.289,1.1089 -0.3075,0.1023 -1.2444,0.1155 -1.5566,0.0366 -0.2296,-0.0581 -1.7409,-1.0779 -1.9093,-0.2681 -0.1961,0.9435 -2.4232,2.4555 -1.5809,3.5463 0.5767,0.7469 0.2311,0.2669 -0.2553,1.243 -0.1933,0.3881 -0.2804,1.7294 -0.1338,2.1205 0.1459,0.3384 0.5204,0.5362 -0.073,0.5362 -0.7759,0 -0.5535,0.4084 -0.9972,0.8043 -0.1417,0.1265 -0.4269,0.1 -0.4986,0.2315 -0.2167,0.3969 -0.1959,0.8023 -0.6688,1.109 -0.5477,0.3551 -1.1612,0.1868 -1.739,0.4997 -0.5061,0.2742 -1.1675,0.6486 -1.1675,1.3283l0.1703 0.6093 0 0c1.6161,-0.0705 3.8436,-0.7101 5.2413,0.4753 0.8853,0.7507 0.1883,3.1843 0.1095,4.1434 0.1325,0.5318 0.1834,1.0464 0.4864,1.5112 0.3604,0.5526 0.5902,1.2519 0.9729,1.7548 0.397,0.5215 0.8325,-0.1829 1.3863,-0.3046 0.4037,-0.0886 0.9862,-0.0281 1.2769,-0.3778 0.7173,-0.8625 1.5611,-2.0232 2.8943,-1.694 0.0841,0.342 -0.1997,0.645 -0.304,0.9628 -0.2394,0.7296 0.0219,1.6716 -0.5838,2.2789 -0.2251,0.2256 -1.3203,0.6117 -1.3133,0.7433 0.0248,0.4646 0.1702,0.7679 0,1.2796 -0.7676,2.308 1.2373,1.4865 1.9579,2.9248 0.1182,0.5423 0.1549,0.8115 0.6445,1.0968 0.4602,0.2683 0.63,0.1201 0.7418,0.7068 0.1397,0.7336 0.78,4.5611 1.3377,4.5822 0.8749,0.033 1.1512,0.4857 1.7025,1.1089 0.8384,0.9475 0.4111,0.8904 -0.5715,1.3527 -0.2548,0.7429 -1.434,-0.1227 -1.8728,0.2072 -0.584,0.4389 -1.0724,1.1027 -1.6782,1.5477 -0.5683,0.4176 -1.1512,0.9804 -0.3527,1.438 0.8084,0.4634 0.4568,0.5489 0.2068,1.2918 -0.2029,0.6033 0.8188,1.5371 1.1188,2.0717 0.0812,0.1446 0.8527,0.8769 0.3283,0.9018 -0.3949,0.0188 -1.4198,0.2661 -1.739,0.4631 -0.1444,0.089 -0.2841,0.6508 -0.4864,0.8531 -0.4386,0.4386 -0.3927,0.5725 -0.2068,1.1333l0.3164 0.8409c-0.1595,1.9124 0.0589,3.919 -0.1703,5.8739 -0.0829,0.7078 -0.3176,1.4106 -0.2432,2.1448 0.0971,0.9587 0.1947,1.9175 0.2918,2.8761 0.0285,0.282 -0.1316,0.8251 -0.2365,1.111l0 0 1.0755 0.8023c0.6906,0.3813 1.0434,0.2949 1.0945,1.1942 0.0267,0.4714 -0.4656,0.6396 -0.6081,1.0115 -0.0665,0.1738 0.1698,0.7632 0.2068,0.9871 0.0786,0.4764 1.3215,0.6551 1.7511,1.0603 0.3284,0.3096 1.2877,0.4265 1.739,0.4265l0.0122 0.0122c0,0.3434 -0.6764,0.8269 -0.7418,1.2552 -0.0831,0.5449 0.6155,0.5931 0.8512,0.9262 0.1735,0.2454 0.2306,0.5601 0.4257,0.8165 0.1831,0.2405 0.9633,0.5846 0.7175,0.9018l-0.8026 1.0358c-0.0906,0.3131 -0.7905,0.6499 -0.7905,0.9018 1.2817,0.2572 -0.4609,1.9705 -0.7783,2.4983l-0.5351 0.8896c-0.2268,0.3771 -0.055,0.6971 -0.1702,1.0724 -0.2308,0.7515 -0.779,0.7272 -0.5716,1.7183 0.1624,0.7766 0.0064,1.176 -0.7175,1.499 -0.9713,0.4333 -0.1305,1.1436 -0.1824,1.8523 -0.139,0.4433 -0.2209,0.7756 -0.4378,1.1943 -0.4288,0.828 0.5229,0.6305 0.5229,1.5233 0,0.5524 0.1606,0.9293 0.2068,1.438 0.0545,0.6006 -0.7132,1.5906 -1.0702,2.0596 -0.6844,0.8993 -1.6924,1.4051 -2.493,2.2057 -0.3221,0.4845 -0.3713,0.9558 -0.5958,1.4624 -0.1933,0.4364 -0.0688,0.8879 -0.1581,1.3284 -0.0974,0.48 -0.5606,1.1911 -0.8635,1.5964 -0.3714,0.4967 -0.7384,1.0436 -1.0215,1.6086l0 0c-0.0271,0.4512 1.0425,1.2433 1.4229,1.4015 0.8871,0.3688 0.4893,1.6241 1.216,2.352 0.6761,0.6771 1.5445,0.5437 2.0309,-0.2803 0.4825,-0.8176 0.0339,-1.4763 1.1796,-1.8036 0.8753,-0.25 2.5248,-1.0359 3.3442,-1.0359 1.1773,0 1.9656,0.9215 3.0524,1.1943 0.3128,-0.0153 0.7888,0.0278 1.0945,0.0975 0.2188,0.0498 0.3094,0.0454 0.3648,0.2681 0.0355,0.1424 0.0335,0.2834 0.0608,0.4265 0.0285,0.1499 0.1186,0.4287 0.1824,0.5606 0.1108,0.2294 0.1106,0.4196 0.1703,0.6581l0 0c1.1631,-0.5633 1.3686,-0.6407 1.7633,-1.8646 0.2658,-0.8245 0.3494,-0.6642 1.1188,-0.5362 0.3646,0.0607 0.8915,0.1374 0.5837,-0.4021 -0.2699,-0.4733 1.0781,-0.7564 1.3985,-1.1943 0.4997,-0.6827 1.1559,-0.8171 1.6904,-1.3527 0.5383,-0.2627 0.9334,-0.2557 1.0458,-0.9628 0.0997,-0.6276 0.0974,-1.4014 0.9486,-1.4014 0.5654,0 0.5265,0.8166 0.8999,1.0846l0 0c0.469,0.0403 1.0034,-0.5365 1.2039,-0.9384 0.0672,-0.1346 0.4039,-0.9875 0.4864,-0.853 0.1802,0.2935 0.4796,0.4688 0.7662,0.6459 0.2846,0.176 -0.3078,1.2124 0.3648,1.3161 0.6325,0.0976 2.3519,0.6368 2.493,1.3283 0.2857,1.3993 0.3239,1.3284 1.6538,1.3284l0.4865 0.0122 0 0 1.3742 -0.7922 0 0c0,-0.9722 0.3909,-1.2462 0.9485,-1.9498 0.4166,-0.5255 0.552,-1.2064 1.2039,-0.6459 1.0797,0.9285 2.1808,1.4522 3.624,1.2308 1.1943,-0.1833 2.2873,-0.524 3.5145,-0.524l0.7904 -0.0975 0 0c0.4031,-0.4538 1.6215,-2.3708 2.189,-2.2789 0.2006,0.0324 0.9008,0.7425 0.9485,0.5484 0.2306,-0.0569 0.3734,-1.2577 0.8756,-1.5477 0.4741,-0.2739 0.9362,-1.2816 1.3499,-1.7304 0.3968,-0.4303 -0.3406,-0.9358 -0.3406,-1.304 0.4856,-0.2086 2.2107,-0.5598 2.0552,-1.0968 0.3246,-1.0539 0.0162,-1.6854 -0.6323,-2.4982 -0.4768,-0.5975 -1.8097,-1.5249 -1.9823,-2.2302 -0.1326,-0.5416 -0.0309,-1.0749 -0.2188,-1.6086 -0.2454,-0.6966 0.1853,-1.4825 -0.5594,-1.9499 -0.0248,-0.1983 0.2646,-0.3673 0.3526,-0.5605l0.9152 -0.9817 0 0c-0.2123,-0.2505 -0.4061,-0.4998 -0.5625,-0.7366 -0.2457,-0.3719 -0.3384,-1.1665 -0.4621,-1.6087 -0.1535,-0.4588 -0.3679,-1.0415 -0.2919,-1.5355 0.0738,-0.4791 0.3443,-0.8882 0.4013,-1.3527 0.1522,-1.2411 -0.489,-1.7428 -1.3255,-2.486 -0.4998,-0.4442 -0.9024,-0.9878 -1.1918,-1.6087 -0.2517,-0.5398 0.3633,-1.6575 0.1946,-2.3763 0.0931,-0.7448 1.1405,-1.3781 0.9607,-2.1327 -0.1826,-0.7667 -2.1204,-1.1185 -1.9579,-1.6208 0.1298,-0.4011 1.3239,-0.5386 1.739,-0.6824 0.4248,-0.1471 1.7998,-0.6839 1.7998,-1.2309 -0.644,0 -1.4849,-0.3913 -2.0065,-0.7677 -1.013,-0.7308 -0.4112,-0.845 0.3891,-1.5965 0.5697,-0.5348 0.5229,-0.9412 0.5229,-1.6817 0,-1.2658 0.9429,-2.2582 1.6053,-3.2538 0.7332,-1.1022 -0.257,-1.722 1.5079,-1.7915 1.0172,-0.0401 -0.1585,-0.8537 -0.1338,-1.2064 0.0128,-0.182 0.811,-0.2372 0.9729,-0.2681 0.9386,-0.1792 2.1849,-1.1933 3.1254,-0.9506 0.6889,0.1778 1.1566,0.3136 1.6538,-0.2803 0.078,-0.0933 0.4721,-0.4154 0.45,-0.4265 0.0461,-0.0232 -0.3262,-0.0748 -0.3527,-0.0853 -0.1477,-0.0585 -0.3626,-0.0906 -0.5229,-0.0975l-1.1188 -0.0487c-1.1043,-0.048 -1.6479,-0.2296 -1.7268,-1.4259 0,-0.6753 0.8732,-0.8695 0.7175,-1.7305 -0.1152,-0.6366 -0.7551,-1.207 -0.0973,-1.7914 0.9229,-0.8201 2.4335,-1.191 2.7848,-2.5592 0.183,-0.7126 -1.2406,-1.0082 -1.7268,-0.9871 -0.3606,0.0156 -1.0669,0.2923 -1.3621,0.1341 -0.8147,0.1534 -1.9542,0.8165 -2.6632,0.8165 -0.5552,0 -1.3665,-1.09 -1.9214,-1.3893 -1.3237,-0.7142 -2.1763,-2.6747 -3.5996,-3.1441 -0.4183,-0.138 -1.1312,-0.2449 -1.3499,-0.6581 -0.2485,-0.4697 -0.4833,-0.7686 -0.8026,-1.2065 -1.2348,-1.3898 -3.022,-1.0269 -3.5266,-3.1807 -0.4058,-1.7324 0.3886,-2.705 1.5809,-3.8997 0.3871,-0.3878 0.2883,-0.2375 0.8148,-0.1462 1.11,0.1924 2.2042,-0.875 2.8699,-1.6574 0.4821,-0.3005 1.9039,-0.4295 2.5416,-0.5849 0.939,-0.2287 1.7744,-0.3641 2.7484,-0.2559 1.8371,0.204 2.0309,-1.3195 2.0309,-2.7908 0.6225,-0.1543 1.3982,0.8819 2.0551,0.7191 0.1526,-0.6107 -0.3283,-1.5994 -0.3283,-2.2667 -0.0997,-0.8979 -0.1235,-1.4187 0.1216,-2.3155 0.2193,-0.802 -0.8648,-1.1859 -1.2404,-1.6574 -0.2338,0 -1.871,1.6298 -2.2254,1.9011 -0.7435,0.569 -2.1176,0.7685 -2.0674,1.8768 0.0312,0.6879 -0.6713,0.6128 -1.1917,0.853 -0.5529,0.2551 -0.9146,0.1594 -1.0702,-0.4631 0.0155,-0.0206 0.0122,-0.0229 0.0122,-0.0487 0.1201,-0.0809 0.2331,-0.5947 0.3283,-0.6581 0,-1.015 -0.0445,-2.1935 -0.9121,-2.9126 -0.5174,-0.4287 -0.2497,-0.501 -0.2918,-1.0358 -0.0533,-0.6772 -0.1102,-0.524 0.7175,-0.524 0.1701,0 1.5408,-0.6983 1.7025,-0.8287 0.4509,-0.3639 0.2049,-0.6155 0.3526,-1.0725 0.3734,-0.5571 0.6115,-1.3829 0.9608,-1.9864 0.3699,-0.6393 0.4515,-1.3889 -0.0852,-1.962 -0.3253,-0.3475 0.6231,-0.4269 0.8148,-0.5118 0.4616,-0.2044 1.0556,-0.604 1.1796,-1.1334 0.1121,-0.479 0.413,-1.8989 0.3405,-2.352 -0.0718,-0.4481 -0.3971,-0.7679 -0.5351,-1.1943 0.492,-0.3074 1.4338,-1.1709 1.6053,-1.7548 0.136,-0.4627 -0.0531,-1.0749 0.1337,-1.4746 0.209,-0.4475 2.6713,-0.1954 3.0403,0.0366 0.1858,0.1167 0.5009,0.3387 0.681,0.134 0.3622,-0.4114 -0.7175,-0.8779 -0.7175,-1.1212 -0.112,-0.0373 -0.3566,-0.3979 -0.4383,-0.5067l-0.6546 -0.2995 -0.9841 -0.9278 -0.6224 -0.1774 -0.6692 -1.3424c-0.6498,-1.1413 -2.3139,-0.9749 -3.3685,-0.9749 -0.494,0 -0.3346,-2.061 -0.45,-2.5226 -0.711,0 -1.3338,0.5488 -2.0065,0.719 -0.9002,0.2279 -0.8985,-0.4014 -1.6296,-0.5728 -0.4124,-0.0967 -0.5585,-0.2943 -0.6932,-0.6946 -0.1817,-0.5404 0.1981,-1.0899 0.0973,-1.4502 -0.1633,-0.584 -0.7251,0.0104 -0.377,-1.0724 0.1711,-0.5984 0.6446,-1.5054 0.6446,-2.1205 0,-0.5418 -1.1974,-0.8075 -0.0365,-1.1943 0.4965,-0.1655 0.8119,-0.5032 1.2404,-0.7433 0.736,-0.4123 0.6358,-0.1834 0.0122,-0.8897 -0.2989,-0.3384 -1.3169,-1.2123 -0.8513,-1.6451 0.154,-0.1431 0.3517,-0.5105 0.5067,-0.7159l0 0 -1.2607 -0.8318c-0.406,-0.3648 -0.9935,-0.8645 -1.4958,-0.39 -0.5062,0.4781 -1.2026,0.5185 -1.8606,0.5484 -0.455,0.0206 -0.5781,0.8035 -0.7418,1.1455 -0.2678,0.5598 -1.3573,1.4697 -2.0309,1.4137l-2.2011 -0.1828c-0.9153,-0.076 -0.4864,-0.5331 -1.0093,-0.9506 -0.6659,-0.5315 -1.4068,-0.1693 -2.2133,-0.9384 -0.6936,-0.6613 -1.9773,0.0822 -2.797,-0.329l0 0 -0.2189 0.7556c-0.4364,1.0001 -1.6026,1.4745 -2.6267,1.7305 -1.1205,0.28 -2.6564,0.8311 -3.7577,0.4265l0 0z", + + "Ceredegion": "M59.0859 156.882c0.4922,0.271 1.03,0.4518 1.2594,0.2701 0.1579,-0.1252 0.2054,-2.1169 0.2919,-2.4617 0.4391,0 0.6297,0.2268 1.1796,0.1218 0.5958,-0.1137 1.1623,-0.4977 1.7512,-0.6946 1.4036,-0.4692 2.5885,-0.073 3.9157,-0.2437 0.4695,-0.0604 1.0789,-0.8778 1.4107,-0.3413 0.4948,0.8003 1.4788,0.8082 2.3957,0.6459 1.1574,-0.129 1.1982,-0.9834 1.739,-1.6939 0.4865,-0.639 1.3089,-0.8759 1.7633,-1.5721 0.2,-0.3066 0.4598,0.2393 0.7662,0.0488 1.9037,-1.1832 3.7665,-3.5762 5.2778,-5.2646 0.1263,-0.141 0.802,-0.282 0.8391,-0.1706 0.2214,0 0.0227,0.8275 0.681,0.7921 0.6073,-0.0326 1.3761,-0.5029 1.8728,-0.8287 1.1235,-0.589 2.0133,-1.2966 2.9186,-2.157 0.9442,-0.8972 0.8189,-0.9202 2.1038,-1.2065 1.6247,-0.3619 2.6851,-2.9805 3.4658,-4.2409 0.2884,-0.4655 0.8008,-0.2232 1.0459,-0.719l0.6688 -1.3527c1.5168,-1.6715 2.1159,-3.643 2.5173,-5.8617 0.1419,-0.7843 0.5894,-1.1875 0.8999,-1.8402 0.4379,-0.9207 0.65,-1.2734 0.8756,-2.2789 0.1981,-0.7913 0.2038,-1.6471 0.3891,-2.4617l0.5351 -2.352c0.2981,-1.3107 1.3194,-2.7389 1.2283,-4.0581 0.0936,-1.1408 0.2159,-2.7756 -0.2676,-3.8266 -0.6102,-1.3267 0.8379,-0.1559 1.1796,0.0244 1.3251,0.699 5.667,-2.0537 5.667,-3.4366l0 0 0.8877 0.0609 0.5108 -0.8165 0 0c1.6161,-0.0705 3.8436,-0.7101 5.2413,0.4753 0.8853,0.7507 0.1883,3.1843 0.1095,4.1434 0.1325,0.5318 0.1834,1.0464 0.4864,1.5112 0.3604,0.5526 0.5902,1.2519 0.9729,1.7548 0.397,0.5215 0.8325,-0.1829 1.3863,-0.3046 0.4037,-0.0886 0.9862,-0.0281 1.2769,-0.3778 0.7173,-0.8625 1.5611,-2.0232 2.8943,-1.694 0.0841,0.342 -0.1997,0.645 -0.304,0.9628 -0.2394,0.7296 0.0219,1.6716 -0.5838,2.2789 -0.2251,0.2256 -1.3203,0.6117 -1.3133,0.7433 0.0248,0.4646 0.1702,0.7679 0,1.2796 -0.7676,2.308 1.2373,1.4865 1.9579,2.9248 0.1182,0.5423 0.1549,0.8115 0.6445,1.0968 0.4602,0.2683 0.63,0.1201 0.7418,0.7068 0.1397,0.7336 0.78,4.5611 1.3377,4.5822 0.8749,0.033 1.1512,0.4857 1.7025,1.1089 0.8384,0.9475 0.4111,0.8904 -0.5715,1.3527 -0.2548,0.7429 -1.434,-0.1227 -1.8728,0.2072 -0.584,0.4389 -1.0724,1.1027 -1.6782,1.5477 -0.5683,0.4176 -1.1512,0.9804 -0.3527,1.438 0.8084,0.4634 0.4568,0.5489 0.2068,1.2918 -0.2029,0.6033 0.8188,1.5371 1.1188,2.0717 0.0812,0.1446 0.8527,0.8769 0.3283,0.9018 -0.3949,0.0188 -1.4198,0.2661 -1.739,0.4631 -0.1444,0.089 -0.2841,0.6508 -0.4864,0.8531 -0.4386,0.4386 -0.3927,0.5725 -0.2068,1.1333l0.3164 0.8409c-0.1595,1.9124 0.0589,3.919 -0.1703,5.8739 -0.0829,0.7078 -0.3176,1.4106 -0.2432,2.1448 0.0971,0.9587 0.1947,1.9175 0.2918,2.8761 0.0285,0.282 -0.1316,0.8251 -0.2365,1.111l0 0c-0.3979,0.8474 -1.1868,1.6863 -1.6565,2.4555l-0.5757 -0.3249c-0.2289,-0.2007 -0.4127,-0.5494 -0.6567,-0.7068 -0.4043,-0.261 -0.8744,-0.4574 -1.2769,-0.7312 -0.264,-0.1795 -0.3538,-0.4934 -0.6081,-0.6947 -0.4243,-0.3358 -0.8212,-0.5364 -1.289,-0.8043 -0.3029,-0.1514 -1.1432,-1.0288 -1.4472,-0.7434l-1.9214 1.8037c-0.7313,0.6865 -2.3374,-0.5672 -2.7119,-1.3162 -0.464,0.0666 -1.5628,1.4179 -1.9092,1.7914 -0.7293,0.7861 -1.5388,1.0154 -2.2984,1.8036 -0.7863,0.8161 -0.6906,0.3794 -1.5566,0.3046l-0.8999 -1.2429c-1.1513,1.3463 -3.8283,2.054 -5.3995,3.1441 -1.3119,0.9102 -3.2094,2.9248 -4.7671,2.9248 -1.2693,0 -1.5763,1.826 -2.9673,2.1692 -1.6543,0.4082 -2.4859,-1.6555 -3.7699,-1.1699 -0.7405,0.28 -1.7631,0.911 -2.3592,1.4624 -1.4351,1.3276 -1.5582,0.3565 -2.3106,-0.1463 -0.3763,-0.2515 -0.947,-0.3282 -1.2647,-0.3168 -0.7486,0.0269 -1.4284,-0.3561 -2.1647,-0.39 -0.6948,-0.032 -1.2811,0.3412 -1.9214,0.3412 -1.0416,0 -1.8182,-1.1516 -2.8457,-0.4387 -0.5091,0.3531 -1.2161,-0.4025 -1.8971,-0.2925 -0.3915,0.0633 -0.6873,0.0766 -0.9337,0.036l0 0c-0.5049,-0.0831 -0.8046,-0.3926 -1.3039,-0.9621 -1.0785,-1.23 -2.5725,-0.5871 -3.7213,-1.2674 -0.5552,-0.3287 -0.1495,-1.0007 -0.8026,-1.2918 -0.1148,-0.0511 -0.2266,-0.0851 -0.3377,-0.1083l-0.3551 0.5714c-0.5002,0.8023 -0.8091,1.7435 -1.6539,0.6337 -0.172,-0.2261 -0.5673,-0.2196 -0.8269,-0.2559 -0.4546,-0.0637 -0.7569,-0.1685 -1.1674,-0.39 -0.6517,-0.3518 0.4081,-0.2769 0.7053,-0.4753 0.3901,-0.2606 1.3382,-0.3919 1.55,-0.7585l-0.1728 -0.4245 -0.3071 -0.0356c-0.1731,0.0171 -0.4299,0.0601 -0.5594,0.1828 -0.1056,0.0999 -0.2367,0.1949 -0.3891,0.1949 -0.4493,0 -0.7285,-0.5013 -0.7661,-0.8896l0.4917 -1.0256 0 0z", + + "Conwy": "M103.909 36.2538l1.0663 0.7514c1.2314,1.326 1.7975,2.1514 3.6726,2.6201 0.149,0.6063 0.196,1.572 -0.2554,2.0961 -0.3366,0.391 -0.9677,0.5628 -1.2039,1.0359 -0.4415,0.8846 -0.3351,1.7537 -0.6081,2.6444 -0.2975,0.971 -1.7763,1.0816 -2.2254,2.0474 0.0193,0.3416 -0.482,0.8774 -0.6324,1.2186 -0.2895,0.6571 0.5837,0.4929 0.5837,0.8165 0,0.0726 -0.3533,0.158 -0.4378,0.2072 -0.4101,0.2387 -1.0378,1.3411 -1.1188,1.7914 -0.067,0.372 0.7459,0.1747 0.8756,0.8287 0.2223,1.12 0.8894,1.2224 1.5688,2.0352 0.6127,0.7328 1.03,1.0707 0.6202,2.0595 -0.1886,0.6808 -0.7278,0.5159 -0.681,1.5477 0.041,0.9033 -0.4581,3.1186 0.535,3.5585 1.8131,0.803 3.7109,-2.1524 5.6184,-0.3534 0.5941,0.5602 -0.5019,1.3253 0.2797,2.1082 0.649,0.6499 2.1738,1.259 2.5173,2.0839 0.1189,0.8136 1.6365,2.819 2.6024,2.4495 0.8483,-0.3244 2.2587,-0.521 2.7605,-1.2796 1.2405,-1.8749 2.639,-2.2006 4.7063,-2.4007 0.7283,-0.0704 0.5062,-1.09 1.4957,-0.9627 0.9395,0.1208 1.3949,-1.0122 2.1647,-1.2674l1.0336 -0.2681c0.4905,-0.1272 1.0774,-0.4533 0.7297,0.3777 -0.4124,0.9854 0.1634,1.855 0.4135,2.8761 0.5087,2.0774 3.1452,0.3696 4.3171,0.7433 0.7501,0.2391 1.6623,0.8908 2.4686,0.4022 0.5809,-0.3521 1.6158,-1.5917 1.9458,-2.1692l0 0 -0.0852 -0.7799c-0.17,-0.2561 -0.1999,-0.6859 -0.2675,-0.9872 -0.0752,-0.3357 -0.226,-0.4183 -0.4256,-0.6702 -0.1976,-0.2492 -0.2824,-0.4771 -0.4135,-0.7678 -0.1868,-0.5635 -1.167,-2.5196 -0.073,-2.6932 0.1393,-0.0221 0.9459,-0.1661 0.8756,-0.3778 -0.118,-0.3549 -0.5367,-0.7323 -0.8026,-0.9993 -0.5232,-0.5251 -0.683,-1.1895 -0.6567,-1.9133 0.0559,-1.5333 -0.6986,-0.2559 -1.5931,-0.2559 -0.0998,-0.2507 -0.1126,-1.2326 -0.3769,-1.2308l-1.7634 0.0122c-1.5062,0.0104 -1.3316,-0.2304 -2.3835,1.0967 -0.6193,0.7815 -1.0689,-1.2236 -1.0215,-1.2552 0.3078,-0.2052 2.5952,-1.531 2.5173,-1.767 -0.1074,-0.325 -0.3583,-0.0974 -0.1581,-0.585 0.2165,-0.7048 0.3226,-0.6012 0.681,-1.1577 0.3235,-0.5025 0.2074,-0.9309 0.7661,-1.3161l3.4294 -2.3642c0.3051,-0.2103 1.1884,-0.6432 1.1066,-0.9262 -0.0901,-0.3113 -0.2822,-0.6316 -0.4134,-0.9262 -0.2776,-0.6229 -0.0038,-1.9669 0.1702,-2.6323 0.1162,-0.2621 0.2954,-1.3207 0.2554,-1.6208 -0.064,-0.4805 -0.5752,-0.6484 -0.9485,-0.9018 -0.8253,-0.5604 -1.6548,-1.8347 -2.6633,-1.633 -0.539,0.1077 -0.6301,-1.212 -0.4256,-1.3771 1.1035,-0.8915 0.0652,-0.8285 0.2067,-1.9742 0.1464,-1.1848 1.3926,-1.9054 1.6539,-2.9004l-0.4782 -1.4584 0 0c-0.1776,-0.0315 -0.3511,-0.03 -0.6406,0.1422 -1.7066,0.6426 -3.8164,2.7153 -5.7399,2.4495 -0.4133,-0.0571 -1.1031,-0.524 -1.3377,-0.524 -0.7159,0 -1.4635,0.2925 -2.2376,0.2925 -1.3802,0 -2.32,-0.2415 -3.551,-0.7434 -0.2245,-0.3953 -0.6547,-0.431 -0.754,-0.9505 -0.0598,-0.3134 0.1517,-0.9748 -0.2553,-0.9993 -0.6777,-0.0408 -1.643,-0.0268 -1.9579,-0.7312 -0.3014,-0.674 -0.5427,-0.4553 -1.131,-0.2194 -0.2852,0.1144 -0.6838,0.2681 -0.9972,0.2681 -1.0362,0 -1.3372,-0.2997 -1.5444,-1.2918 -0.0893,-0.428 -0.6551,-0.2502 -1.0337,-0.2681 -0.2461,-0.0117 -1.6446,-0.3859 -1.7147,-0.3046 -1.2205,1.4135 1.6281,1.681 1.7512,2.6688 0.1554,0.4144 0.4009,1.3036 0.4378,1.7549 0.0501,0.6111 -0.4365,0.2666 -0.8999,0.4143 -0.9517,0.3033 -2.2901,0.6992 -3.101,1.304 -0.8175,0.6096 -1.7024,1.3387 -2.6389,1.7549 -0.4915,0.2185 -1.05,-0.063 -1.5323,0.0731 -1.0397,0.3465 -1.7964,1.1081 -2.6472,1.6737l0 0z", + + "Denbighshire": "M138.722 63.8522c0.2361,0.2282 0.5556,0.4098 0.7418,0.6581 -0.5243,0.6559 0.2132,1.7265 -0.5229,2.3763 -0.3932,0.3472 -0.86,0.5498 -1.2404,0.914 -0.5179,0.496 -0.6674,0.8781 -0.9486,1.5234 0.0602,0.8228 0.5896,0.9368 1.2891,1.1699 0,0.2513 0.0402,0.5574 0.0851,0.8043 0.0656,0.3609 -0.4707,0.7245 -0.6689,1.0115 -0.6327,0.9166 -0.5806,1.4093 -0.0973,2.3885 0.4807,0.9737 0.3813,1.2581 -0.158,2.1083l0 0c1.1013,0.4046 2.6372,-0.1465 3.7577,-0.4265 1.0241,-0.256 2.1903,-0.7304 2.6267,-1.7305l0.2189 -0.7556 0 0 0.3527 -1.0968c1.2266,-0.3891 0.9485,-0.6237 0.9485,-1.6817 0.5392,-0.387 0.9592,-0.6278 1.4593,-1.1456 0.4283,-0.4436 0.4996,-1.3774 0.7905,-1.6695 0.8767,0 1.842,0.2872 2.724,0.2072 0.7977,-0.0724 1.5629,-0.5508 2.3714,-0.6581 1.1442,-0.152 2.0859,0.6629 3.2348,0.3656l3.7212 -0.9628c0.8925,-0.1187 2.4618,0.1543 2.9672,-0.719 0.1826,-0.3154 0.0652,-0.4499 -0.1094,-0.7555 -0.3077,-0.5388 -0.2021,-0.877 -0.6932,-1.3771 -0.706,-0.7191 -1.9077,-0.371 -2.7483,-0.78 -1.2071,-0.5872 -0.8214,-2.3109 -0.2189,-3.1806 0.2789,-0.1771 0.6188,-0.8302 0.4986,-1.17 -0.169,-0.4775 -1.5089,-0.8479 -1.0215,-1.377 0.6846,-0.7434 0.8848,-1.4312 0.9363,-2.4252l0.1825 -0.6337 0 0 -0.6932 -0.658c-0.2391,-0.6603 -0.3892,-1.2379 -0.3892,-1.9499 0,-0.9084 -0.6757,-0.7517 -1.3741,-0.8287 -1.3709,-0.1511 -1.2575,-3.4899 -1.1188,-4.4968 0.1363,-0.9887 -1.2513,-1.09 -1.9336,-0.6825 -0.8118,0.4847 -3.0279,0.3923 -3.5388,-0.5118 -0.0421,-0.5046 -0.2012,-1.8818 -0.45,-2.2789 -0.3893,-0.6215 -1.3202,-0.8535 -1.7998,-1.5355 -0.3313,-0.4713 0.0243,-0.7807 -0.0973,-1.1455 -0.8033,0 -0.7084,-0.8766 -0.5107,-1.499 0.2502,-0.7879 1.0523,-1.3746 -0.45,-1.5964 -0.8458,-0.1248 -0.7178,-0.3815 -1.2039,-0.9384 -0.133,-0.2126 -0.3336,-0.3589 -0.5108,-0.524 -0.0635,-0.0591 -0.4515,-0.2312 -0.4134,-0.3168 0.1318,-0.2954 0.616,-0.7591 0.8877,-0.9628 1.5148,-1.1361 0.4736,-0.9819 -0.4135,-1.6939 -0.5683,-0.456 -0.5062,-1.0969 -0.6566,-1.7061 -0.318,0 -0.5556,0.4191 -0.9364,0.3412 -0.3362,-0.0687 -0.1609,-0.4311 -0.3892,-0.6459 -1.0839,-1.0202 -0.0729,-0.5842 -0.0729,-1.5842 -1.1311,0 -1.2156,0.6017 -0.8635,-0.9018 0.1276,-0.5448 1.5341,-0.3393 1.6539,-1.3649l0.4007 -1.6597 0 0c-0.5694,0.0632 -1.1224,0.1669 -1.6046,0.4166l-3.247 1.6818c-0.8691,0.4501 -3.3049,0.4798 -3.5631,1.767 -0.1995,0 -0.3402,-0.0446 -0.4782,-0.0691l0 0 0.4782 1.4584c-0.2613,0.995 -1.5075,1.7156 -1.6539,2.9004 -0.1415,1.1457 0.8968,1.0827 -0.2067,1.9742 -0.2045,0.1651 -0.1134,1.4848 0.4256,1.3771 1.0085,-0.2017 1.838,1.0726 2.6633,1.633 0.3733,0.2534 0.8845,0.4213 0.9485,0.9018 0.04,0.3001 -0.1392,1.3587 -0.2554,1.6208 -0.174,0.6654 -0.4478,2.0094 -0.1702,2.6323 0.1312,0.2946 0.3233,0.6149 0.4134,0.9262 0.0818,0.283 -0.8015,0.7159 -1.1066,0.9262l-3.4294 2.3642c-0.5587,0.3852 -0.4426,0.8136 -0.7661,1.3161 -0.3584,0.5565 -0.4645,0.4529 -0.681,1.1577 -0.2002,0.4876 0.0507,0.26 0.1581,0.585 0.0779,0.236 -2.2095,1.5618 -2.5173,1.767 -0.0474,0.0316 0.4022,2.0367 1.0215,1.2552 1.0519,-1.3271 0.8773,-1.0863 2.3835,-1.0967l1.7634 -0.0122c0.2643,-0.0018 0.2771,0.9801 0.3769,1.2308 0.8945,0 1.649,-1.2774 1.5931,0.2559 -0.0263,0.7238 0.1335,1.3882 0.6567,1.9133 0.2659,0.267 0.6846,0.6444 0.8026,0.9993 0.0703,0.2117 -0.7363,0.3557 -0.8756,0.3778 -1.094,0.1736 -0.1138,2.1297 0.073,2.6932 0.1311,0.2907 0.2159,0.5186 0.4135,0.7678 0.1996,0.2519 0.3504,0.3345 0.4256,0.6702 0.0676,0.3013 0.0975,0.7311 0.2675,0.9872l0.0852 0.7799 0 0z", + + "Wrexham": "M159.416 74.4089l-1.2607 -0.8318c-0.406,-0.3648 -0.9935,-0.8645 -1.4958,-0.39 -0.5062,0.4781 -1.2026,0.5185 -1.8606,0.5484 -0.455,0.0206 -0.5781,0.8035 -0.7418,1.1455 -0.2678,0.5598 -1.3573,1.4697 -2.0309,1.4137l-2.2011 -0.1828c-0.9153,-0.076 -0.4864,-0.5331 -1.0093,-0.9506 -0.6659,-0.5315 -1.4068,-0.1693 -2.2133,-0.9384 -0.6936,-0.6613 -1.9773,0.0822 -2.797,-0.329l0 0 0.3527 -1.0968c1.2266,-0.3891 0.9485,-0.6237 0.9485,-1.6817 0.5392,-0.387 0.9592,-0.6278 1.4593,-1.1456 0.4283,-0.4436 0.4996,-1.3774 0.7905,-1.6695 0.8767,0 1.842,0.2872 2.724,0.2072 0.7977,-0.0724 1.5629,-0.5508 2.3714,-0.6581 1.1442,-0.152 2.0859,0.6629 3.2348,0.3656l3.7212 -0.9628c0.8925,-0.1187 2.4618,0.1543 2.9672,-0.719 0.1826,-0.3154 0.0652,-0.4499 -0.1094,-0.7555 -0.3077,-0.5388 -0.2021,-0.877 -0.6932,-1.3771 -0.706,-0.7191 -1.9077,-0.371 -2.7483,-0.78 -1.2071,-0.5872 -0.8214,-2.3109 -0.2189,-3.1806 0.2789,-0.1771 0.6188,-0.8302 0.4986,-1.17 -0.169,-0.4775 -1.5089,-0.8479 -1.0215,-1.377 0.6846,-0.7434 0.8848,-1.4312 0.9363,-2.4252l0.1825 -0.6337 0 0c0.6165,-0.108 1.6044,0.0707 2.0795,-0.4509 0.3891,-0.4273 0.9959,-1.0976 1.5444,-1.2795 0.2936,-0.0974 0.4955,0.44 0.9242,0.329 0.4217,-0.1091 0.8631,-0.5971 1.2283,-0.8409 0.7209,-0.4815 0.5653,-0.971 1.2404,-1.4502 0.846,-0.6007 0.8372,-1.8386 1.4836,-2.4251 0.1164,-0.1057 0.5276,-0.2044 0.5229,-0.2072l1.8606 -0.2763 0 0c0.5381,0.5481 1.0458,1.0681 1.1918,1.2878 0.1847,0.584 1.103,0.7236 1.5687,1.0602 0.2518,0.1819 0.3318,0.4562 0.6202,0.6215 0.2751,0.1576 0.6147,0.2621 0.9243,0.3169l0.666 0.2834c-0.0251,0.4299 0.0542,0.8127 0.0643,1.3496 0.0127,0.681 1.0196,0.8121 0.8756,1.438 -0.113,0.4912 -0.3694,0.9638 0.0486,1.438 0.7488,0.8494 1.3054,1.0995 0.681,2.2423 -0.399,0.7303 0.5411,1.1273 0.1703,1.828l0.9478 0.7922c0.5336,0.4354 0.166,1.0727 0.5351,1.5355 0.6754,0.8471 1.9014,1.8416 3.0402,1.3527 0.7724,-0.3317 0.5608,-0.4729 1.2526,-0.0366 0.5789,0.3652 3.7364,0.787 3.8307,1.0724 0.472,1.4286 -0.8148,3.0524 -0.9242,4.4969 0,0.4718 -0.0385,0.9227 -0.146,1.3527 -1.2322,0.1546 -1.7898,-0.142 -2.6632,0.7677 -0.3486,0.3632 -1.6006,1.4229 -1.7268,1.8036 -0.2559,0 -2.4545,-4.0684 -3.7699,-4.5577 -2.8868,-1.0737 -4.3936,1.7228 -6.7614,-0.8531l-0.5836 -0.7652 -1.6892 0.2451 -1.3139 0.6076c-0.2385,1.2938 -0.8641,2.8068 -2.4695,2.8495 -0.7363,0.0196 -1.3545,-0.6143 -2.0916,-0.3291 -0.7227,0.2797 -1.3626,1.1246 -1.7147,1.7915 -0.023,0.4842 0.38,1.4022 0.2554,1.7792 -0.1642,0.4972 -1.0341,0.1212 -1.3499,0.2681 -0.0391,0.0182 -0.0861,0.0688 -0.1378,0.1372l0 0z", + + "Flintshire": "M170.085 48.233l-1.8606 0.2763c0.0047,0.0028 -0.4065,0.1015 -0.5229,0.2072 -0.6464,0.5865 -0.6376,1.8244 -1.4836,2.4251 -0.6751,0.4792 -0.5195,0.9687 -1.2404,1.4502 -0.3652,0.2438 -0.8066,0.7318 -1.2283,0.8409 -0.4287,0.111 -0.6306,-0.4264 -0.9242,-0.329 -0.5485,0.1819 -1.1553,0.8522 -1.5444,1.2795 -0.4751,0.5216 -1.463,0.3429 -2.0795,0.4509l0 0 -0.6932 -0.658c-0.2391,-0.6603 -0.3892,-1.2379 -0.3892,-1.9499 0,-0.9084 -0.6757,-0.7517 -1.3741,-0.8287 -1.3709,-0.1511 -1.2575,-3.4899 -1.1188,-4.4968 0.1363,-0.9887 -1.2513,-1.09 -1.9336,-0.6825 -0.8118,0.4847 -3.0279,0.3923 -3.5388,-0.5118 -0.0421,-0.5046 -0.2012,-1.8818 -0.45,-2.2789 -0.3893,-0.6215 -1.3202,-0.8535 -1.7998,-1.5355 -0.3313,-0.4713 0.0243,-0.7807 -0.0973,-1.1455 -0.8033,0 -0.7084,-0.8766 -0.5107,-1.499 0.2502,-0.7879 1.0523,-1.3746 -0.45,-1.5964 -0.8458,-0.1248 -0.7178,-0.3815 -1.2039,-0.9384 -0.133,-0.2126 -0.3336,-0.3589 -0.5108,-0.524 -0.0635,-0.0591 -0.4515,-0.2312 -0.4134,-0.3168 0.1318,-0.2954 0.616,-0.7591 0.8877,-0.9628 1.5148,-1.1361 0.4736,-0.9819 -0.4135,-1.6939 -0.5683,-0.456 -0.5062,-1.0969 -0.6566,-1.7061 -0.318,0 -0.5556,0.4191 -0.9364,0.3412 -0.3362,-0.0687 -0.1609,-0.4311 -0.3892,-0.6459 -1.0839,-1.0202 -0.0729,-0.5842 -0.0729,-1.5842 -1.1311,0 -1.2156,0.6017 -0.8635,-0.9018 0.1276,-0.5448 1.5341,-0.3393 1.6539,-1.3649l0.4007 -1.6597 0 0c0.9813,-0.1091 2.0111,-0.0984 2.8098,-0.5095 0.2113,-0.1088 1.3863,-0.2232 1.3863,0.0731 0,1.0796 0.3258,1.1139 0.6932,1.9986 0.2627,0.4432 0.6103,0.7365 1.0215,1.0358 0.8437,0.6139 1.2526,0.2071 1.9944,1.0359 0.3489,0.3897 1.1671,1.0667 1.6782,1.2552 0.8574,0.3161 1.7484,1.2651 2.42,1.9377 0.4292,0.4297 0.7473,0.9563 1.2404,1.3405 0.4257,0.3318 1.0271,0.6936 1.3377,1.1211 0.2193,0.3407 0.9894,0.9024 1.3498,1.17 0.6017,0.4469 1.2994,0.8811 1.9215,1.2552 0.5155,0.3099 1.0384,0.8051 1.5687,1.0724l0 -0.0366c-0.1578,-0.0397 -1.1807,-2.3293 -1.2769,-2.6445l0 0 1.1675 0.0366c0.3659,0.0344 0.7337,0.1958 1.0823,0.329 0.813,0.3105 1.7768,0.4823 2.5416,0.8653 0.9451,0.4732 2.0774,1.3012 2.7484,2.1204 0.0128,0.4185 1.0725,1.9869 1.3863,2.3277 0.4758,0.5165 0.72,1.0424 1.2647,1.5233 2.1166,1.8685 -3.9446,3.013 -4.086,3.5097l-0.0243 0.0122c0,0.1553 0.7948,0.9591 1.5322,1.7101l0 0z", + + "Isle_of_Anglesey": "M66.8879 31.046c0.1305,-0.526 -1.1435,-0.2864 -1.4958,-0.4631 -0.5183,-0.2598 -0.8819,-0.7669 -1.2526,-1.2187 -0.4772,-0.5814 -3.0273,-0.7185 -3.3077,0.0122 -0.3226,0.8403 -1.1749,0.4264 -0.5594,1.2674 0.1797,0.2455 0.322,0.5484 0.6566,0.5484 0.005,0.015 0.0094,0.0194 0.0244,0.0244l0 0.0366c0.1206,0.0299 -0.1604,0.806 -0.3041,0.9018 -0.3413,0.2275 -0.0121,0.4841 -0.0121,0.7555l0.0121 0.0122c0.7826,0 1.4635,-0.0758 2.2133,-0.2193 0.2947,-0.0563 0.5524,0.2301 0.7662,0.3777 0.5,0.345 0.4894,0.2316 1.0701,0.2316 0,0.4057 -0.1592,0.7457 -0.1094,1.1943 0.1095,0.4867 0.9784,0.7648 0.5715,1.377 -0.3907,0.588 -0.1089,0.6471 0.4621,0.914 0.2976,0.139 0.4355,0.4872 0.681,0.5728 0.5506,0.1919 1.674,-0.4631 2.2863,-0.4631 0.0998,-0.3084 -0.4583,-0.5613 -0.4743,-0.9871l-0.0365 -0.9627c-0.0152,-0.0051 -0.5473,-0.966 -0.6199,-1.0395 -0.5047,-0.5102 -1.2446,-0.9796 -1.2893,-1.1541 -0.1506,-0.5868 0.7613,-0.9456 0.8877,-1.5843l-0.1702 -0.134zm23.9845 12.5387c0.1136,-0.5641 -1.4656,0.4976 -2.8494,1.1895 -0.6758,0.3379 -1.4468,0.384 -1.6899,0.6275 -0.784,0.7853 -0.7303,1.3278 -2.0187,1.694 -0.7701,0.2188 -1.9891,0.068 -2.4808,0.8896 -0.7725,1.2909 -1.3594,0.1581 -2.2498,-0.4022 -0.6887,-0.4335 -2.4812,-0.9219 -1.9336,-2.0229 0.2625,-0.5277 3.0298,-2.1596 0.8513,-1.7061 -1.0016,0.2085 -0.6823,0.6108 -1.3255,1.0724l-0.9 0.6459c-0.8481,0.6086 -0.6873,0.0953 -1.0215,-0.6581 -0.4524,-1.2198 -3.7828,-1.7878 -3.4658,-2.9857 0.5017,-1.8962 -0.7455,-2.5027 -1.4107,-4.0947 -0.1829,-0.4376 -0.6255,-0.3292 -0.912,-0.7312 -0.1423,-0.3788 -0.8406,-0.6219 -1.0337,-1.0602 -0.1522,-0.3452 -0.1824,-0.6804 -0.1824,-1.0603 0,-0.3515 -0.7573,-1.4241 -1.058,-1.5842 -0.2082,-0.1109 -0.9903,-0.5129 -0.681,-0.8287l1.289 -1.3161c0.5726,-0.5846 0.4876,-1.5985 0.1338,-2.2911 -0.2319,-0.4538 -0.6658,-0.4271 -0.9607,-0.8409 0.0529,-0.6331 0.6989,-0.5952 0.9364,-1.0724 0.2314,-0.4652 0.0153,-1.0143 0.0973,-1.5233 0.117,-0.7253 1.0214,-1.8198 0.7053,-2.5348 -0.0908,-0.2053 -0.3303,-0.247 -0.4378,-0.4631 -0.11,-0.2213 -0.0816,-0.5838 -0.0608,-0.8409 -0.1351,-0.4738 -0.469,-0.9607 -0.5229,-1.4624 -0.0617,-0.5752 0.6722,-0.3198 1.1066,-0.3778 0.6262,-0.0837 1.0476,-0.0622 1.5931,-0.4265 0.3568,-0.2384 0.7525,-0.6778 1.1188,-0.8043 0.2187,-0.0756 0.5312,0.7422 1.4715,0.1341 0.2846,-0.1841 0.88,-1.0363 1.1552,-0.6581 0.6767,0.9297 0.9953,0.2923 1.739,-0.195 0.2521,-0.1652 0.7258,-0.678 1.0945,-0.524 0.3421,0.1428 0.9821,0.5118 1.3256,0.5118 0.7195,0.2096 1.5176,-0.6841 2.2376,-0.4996 0.7186,0.1841 1.5835,0.2678 2.2862,0.5362 0.5203,0.1988 0.8828,0.5927 1.4593,0.7555 0.9575,0.2703 1.6609,0.1835 2.0187,1.1943 0.435,1.2292 0.204,1.9608 -0.5472,2.9735 -0.5367,0.7236 0.4152,0.5586 0.8026,0.8043 0.2873,0.1823 0.3294,0.5051 0.7296,0.585 0.1648,0.0329 0.8219,-0.0224 0.8999,0.0366 0.6037,0.3119 0.9486,0.4727 0.9486,1.2308 0,0.6345 0.308,0.9055 0.4743,1.4502 0.2783,0.912 0.2251,1.3067 0.912,2.0473 0.1999,0.2154 0.2333,0.6244 0.1946,0.9262 -0.0511,0.3988 0.0847,0.5705 0.1338,0.914 0.6996,0.5562 1.4887,0.3556 2.2011,-0.0731 0.7159,-0.4307 1.0481,-0.9186 1.97,-1.2552 1.3539,-0.4942 2.7727,-0.5728 4.1955,-0.5728 0.458,0 1.3128,0.2829 1.7998,0.3778 0.8005,0.1559 -1.4418,2.1328 -1.6903,2.5957 -0.2844,0.53 -0.5867,0.8745 -0.7662,1.4868 -0.1954,0.6662 -0.2325,1.2578 -0.8755,1.7427 -0.6839,1.3021 -3.0516,1.8401 -3.4659,3.0832l0 0c-0.6273,0.6291 -1.8279,1.0733 -2.4078,1.6817 -0.6762,0.7094 -1.0126,1.3558 -1.0825,2.3276l0.1531 1.3291 -0.0037 0.0224z", + + "Gwynedd": "M90.8724 43.5847l-0.1494 -1.3515c0.0699,-0.9718 0.4063,-1.6182 1.0825,-2.3276 0.5799,-0.6084 1.7805,-1.0526 2.4078,-1.6817l0 0c0.3415,0 1.0458,-0.3915 1.4107,-0.5119 0.4969,-0.1639 2.2349,-0.0758 2.5416,0.3656 0.4431,0.6375 0.9408,-0.0487 1.6417,-0.0487 1.3252,0 2.1004,-0.8417 3.2834,-1.3284 0.289,-0.1189 0.5583,-0.2737 0.8187,-0.4467l0 0 1.0663 0.7514c1.2314,1.326 1.7975,2.1514 3.6726,2.6201 0.149,0.6063 0.196,1.572 -0.2554,2.0961 -0.3366,0.391 -0.9677,0.5628 -1.2039,1.0359 -0.4415,0.8846 -0.3351,1.7537 -0.6081,2.6444 -0.2975,0.971 -1.7763,1.0816 -2.2254,2.0474 0.0193,0.3416 -0.482,0.8774 -0.6324,1.2186 -0.2895,0.6571 0.5837,0.4929 0.5837,0.8165 0,0.0726 -0.3533,0.158 -0.4378,0.2072 -0.4101,0.2387 -1.0378,1.3411 -1.1188,1.7914 -0.067,0.372 0.7459,0.1747 0.8756,0.8287 0.2223,1.12 0.8894,1.2224 1.5688,2.0352 0.6127,0.7328 1.03,1.0707 0.6202,2.0595 -0.1886,0.6808 -0.7278,0.5159 -0.681,1.5477 0.041,0.9033 -0.4581,3.1186 0.535,3.5585 1.8131,0.803 3.7109,-2.1524 5.6184,-0.3534 0.5941,0.5602 -0.5019,1.3253 0.2797,2.1082 0.649,0.6499 2.1738,1.259 2.5173,2.0839 0.1189,0.8136 1.6365,2.819 2.6024,2.4495 0.8483,-0.3244 2.2587,-0.521 2.7605,-1.2796 1.2405,-1.8749 2.639,-2.2006 4.7063,-2.4007 0.7283,-0.0704 0.5062,-1.09 1.4957,-0.9627 0.9395,0.1208 1.3949,-1.0122 2.1647,-1.2674l1.0336 -0.2681c0.4905,-0.1272 1.0774,-0.4533 0.7297,0.3777 -0.4124,0.9854 0.1634,1.855 0.4135,2.8761 0.5087,2.0774 3.1452,0.3696 4.3171,0.7433 0.7501,0.2391 1.6623,0.8908 2.4686,0.4022 0.5809,-0.3521 1.6158,-1.5917 1.9458,-2.1692l0 0c0.2361,0.2282 0.5556,0.4098 0.7418,0.6581 -0.5243,0.6559 0.2132,1.7265 -0.5229,2.3763 -0.3932,0.3472 -0.86,0.5498 -1.2404,0.914 -0.5179,0.496 -0.6674,0.8781 -0.9486,1.5234 0.0602,0.8228 0.5896,0.9368 1.2891,1.1699 0,0.2513 0.0402,0.5574 0.0851,0.8043 0.0656,0.3609 -0.4707,0.7245 -0.6689,1.0115 -0.6327,0.9166 -0.5806,1.4093 -0.0973,2.3885 0.4807,0.9737 0.3813,1.2581 -0.158,2.1083l0 0 -0.6081 0.2803c-0.0331,0.3672 -0.321,1.6062 -0.5351,1.9011 -0.4612,0.6349 -0.8309,0.9365 -1.593,0.6093 -0.7868,-0.3379 -2.054,0.4648 -2.493,1.0603 -0.5382,0.7298 -1.0872,-0.0551 -1.7025,0.1462 -0.1858,0.0607 -0.4701,1.389 -0.5594,1.633 -0.3095,0.8461 -1.1851,1.4243 -0.6446,2.3398 0.6464,1.0947 0.589,1.4279 0.8878,2.6201 -0.0828,0.9655 0.6526,1.8336 0.2067,2.7298 -0.3117,0.6263 -0.7245,1.1863 -0.8269,1.8889 -0.0659,0.4519 0.0905,1.1396 -0.2432,1.4746 -0.241,0.2418 -0.5976,0.3948 -0.8635,0.6459 -0.251,0.2372 -0.6548,0.0218 -0.9485,0.134 -0.485,0.1852 -0.7547,0.646 -1.2526,0.7678 -0.4626,0.1131 -1.2271,-0.1529 -1.6539,-0.3291 -0.9043,0.1556 -1.0113,1.2744 -1.3863,1.9012 -0.6035,1.0084 -0.2558,-0.2957 -1.0701,-0.195 -0.506,0.0626 -1.1368,-0.4474 -1.3621,-0.3534 -0.5179,0.2159 -0.6492,0.8959 -1.289,1.1089 -0.3075,0.1023 -1.2444,0.1155 -1.5566,0.0366 -0.2296,-0.0581 -1.7409,-1.0779 -1.9093,-0.2681 -0.1961,0.9435 -2.4232,2.4555 -1.5809,3.5463 0.5767,0.7469 0.2311,0.2669 -0.2553,1.243 -0.1933,0.3881 -0.2804,1.7294 -0.1338,2.1205 0.1459,0.3384 0.5204,0.5362 -0.073,0.5362 -0.7759,0 -0.5535,0.4084 -0.9972,0.8043 -0.1417,0.1265 -0.4269,0.1 -0.4986,0.2315 -0.2167,0.3969 -0.1959,0.8023 -0.6688,1.109 -0.5477,0.3551 -1.1612,0.1868 -1.739,0.4997 -0.5061,0.2742 -1.1675,0.6486 -1.1675,1.3283l0.1703 0.6093 0 0 -0.5108 0.8165 -0.8877 -0.0609 0 0c-0.6031,0 -1.3786,0.4056 -1.9579,0.5849 -1.0104,0.3126 -2.1821,0.3007 -3.1375,0.5972 -0.5287,0.1641 -1.4045,0.6176 -1.9336,0.5118 -0.7566,-0.1512 -1.3653,-2.2764 -1.6903,-3.1197 -0.5442,-1.4178 -1.3061,-2.4076 -2.189,-3.5829 -0.7811,-1.0397 0.0416,-2.425 0.5229,-3.4366 0.2715,-0.5709 1.066,-2.0219 0.9121,-2.6567 0.436,-0.5333 0.8254,-0.8231 1.3742,-1.243 0.4467,-0.3419 0.4167,-1.0451 0.8999,-1.2308 0.426,-0.1638 0.6825,-0.0936 0.8147,-0.6337 0.1117,-0.456 0.0256,-0.9461 0.073,-1.4137 0.0723,-0.7137 0.7853,-0.7114 1.2769,-1.0237 0.9306,-0.5914 1.4661,-0.6862 2.2133,-1.6329 0.031,-0.0392 0.3596,-0.4189 0.231,-0.451l-2.4929 1.4502c-1.2275,0.714 -1.492,1.1942 -2.0431,-0.5483 -0.1948,-0.6162 -0.5992,-1.1388 -0.7783,-1.7671 -0.7502,-2.112 -3.1266,-3.5253 -4.0739,-5.4961 -0.1292,-0.2687 -1.1174,-1.3577 -1.0458,-1.4746 0.3323,-0.5431 0.9637,-0.6794 1.2647,-1.2674 1.114,-1.0464 1.4779,-2.6237 0.8148,-4.0094 -0.1853,-0.3872 -0.4955,-1.0656 -0.8148,-1.3283 -0.3152,-0.5711 -0.9284,-0.9478 -1.1309,-1.6086 -0.1714,-0.5597 0.1094,-0.7315 0.1094,-1.17 -0.3635,0.0916 -0.7083,0.4725 -0.8756,0.0975 -0.1766,-0.3961 -0.6192,-0.6938 -0.9607,-0.9505 -1.2277,-0.9226 -2.3241,-1.355 -3.8428,-0.8409 -1.2611,0.427 -1.6913,0.6044 -3.0159,0.4631 -1.683,-0.1795 -1.9721,1.6317 -3.0888,1.7305 -1.2146,0 -4.1712,-0.688 -4.1712,1.304l-0.0122 0.0121c-0.9702,0 -1.6849,0.4298 -2.5659,0.7678 -1.0305,0.3955 -1.455,1.2393 -2.189,1.9986 0.04,0.6396 0.7682,0.8489 -0.1216,1.243 -0.3742,0.1658 -0.9062,0.6361 -1.058,1.0359 -0.3964,1.0433 -0.465,2.2051 0.5837,2.7907 0.6644,0.3711 -0.0848,1.3047 -0.3648,1.6817 -0.1619,0.2181 -0.4204,-0.0551 -0.6323,-0.1096 -1.1638,-0.2994 -1.3911,1.8665 -1.8485,1.5842 -1.1394,-0.703 -0.1888,-2.0592 -0.9364,-2.7541 -0.5328,-0.4951 -1.1651,-0.947 -1.7755,-1.3406 -0.6948,-0.5048 -2.2706,-1.2942 -2.6632,-0.1584 -0.2081,0.602 -1.4047,2.4942 -2.2133,1.9011 -0.5717,-0.4192 -0.4446,-0.6318 -1.3377,-0.2315 -0.8886,0.3982 -1.2488,1.4591 -1.9457,0.3534 -0.7692,-1.2202 -2.0065,1.3099 -2.0065,1.9133l-0.0244 0 -1.593 -1.0359c-0.9735,-0.6329 -0.5459,-0.4693 0.0364,-1.1821 0.3171,-0.3883 0.3608,-0.8682 0.5473,-1.3161 0.2995,-0.7196 0.7408,-1.158 1.1431,-1.7915 0.2204,-0.5294 0.4763,-0.7452 0.377,-1.3649 -0.0256,-0.1604 -0.2822,-1.0577 -0.073,-1.0724 0.6879,-0.0484 1.7761,-0.2911 2.0917,-0.9627 0.101,-0.2148 0.1401,-1.304 0.2189,-1.304 0.9913,0 1.1763,0.2624 1.435,-0.914 0.0845,-0.3841 1.0153,-2.3602 1.2404,-2.2788 0.6368,0.2301 1.1678,0.1151 1.4714,-0.5363 0.3583,-0.7685 0.2964,-0.976 1.0094,-1.4136 0.5759,-0.2064 1.351,-0.5404 1.6782,-1.0724 0.2794,-0.4541 0.5472,-0.2726 0.8148,-0.6337 0.0555,-0.075 0.2054,-0.589 0.2189,-0.5484l0.0243 0c0.0233,0.095 0.1034,0.8309 0.2675,0.7068 0.5732,0.5756 2.6899,0.0219 3.1983,-0.4874 0.9936,-0.9951 2.2433,-2.2455 2.9186,-3.4732 0.516,-0.5638 0.8767,-1.3516 1.3742,-1.8889 0.5629,-0.6081 0.9004,-0.4088 1.6417,-0.4509 1.1155,-0.0635 2.2703,-1.9436 3.0281,-2.6689 0.5327,-0.5097 1.3725,-1.1636 1.3255,-1.962 0.1288,-0.4845 0.4978,-0.805 0.6324,-1.2431 0.1386,-0.4515 0.0851,-0.8874 0.0851,-1.3648 0,-0.9507 0.0911,-1.9611 -0.1094,-2.8639 -0.0898,-0.4048 -0.3938,-1.2606 -0.6567,-1.5721 0,-1.1331 0.1881,-1.6086 1.3133,-1.6086 -0.1135,0.4615 0.046,3.0284 0.5716,2.0352 0.404,-0.7632 0.2695,-1.6884 0.4621,-2.5105 0.1097,-0.4687 1.1927,-1.1068 1.6174,-1.4502 0.5907,-0.4775 1.082,-1.5408 1.5931,-2.1813 0.3368,-0.4221 3.3135,-2.0652 3.3597,-2.268l0 0zm-37.702 46.103c0.2884,-0.3757 0.5465,-1.0836 0.4378,-1.5721 -0.0231,-0.1042 -0.1106,-0.4059 0.0122,-0.4753 0.0339,-0.0192 0.3719,0.0244 0.4378,0.0244 0.3225,0 0.6378,0.0637 0.5715,0.4753 -0.0471,0.2921 -0.0645,0.4932 -0.2675,0.7312 -0.2316,0.2713 -0.5805,0.306 -0.7418,0.6702 -0.1034,0.2337 -0.298,0.7104 -0.6446,0.5119l0.1946 -0.3656z", + + "Monmouthshire": "M163.606 169.576c0.467,0.5512 1.0237,1.1088 1.4683,1.5544 0.9728,0.9753 2.0322,2.3592 2.2741,3.7413 0.2657,1.5179 2.4079,-0.1293 2.4079,1.8524 0.1696,1.4589 0.6453,0.9353 1.6782,0.6337 1.2983,-0.379 2.3327,-1.0594 3.4293,-1.7915 1.2282,-0.8201 1.4462,-0.4746 2.8943,-0.1096 0.0346,0.2413 -0.4688,0.8574 -0.2189,0.9749 0.2473,0.1164 0.7278,-0.0036 0.8756,0.2925 0.4625,0.9268 0.3896,0.3823 1.2283,1.1577l2.2011 2.0351c0.8525,0.7881 0.041,2.108 1.3377,2.8273 0.3948,0.6446 0.5886,1.1633 1.2039,1.6208 0.6844,0.5088 1.0936,0.0666 1.812,-0.0487 0.616,-0.0988 0.6325,0.4614 1.058,0.6824 0.6788,0.3524 1.7055,-0.8298 2.1403,-0.2559 0.5147,0.6792 0.4935,0.3805 0.2553,1.2187 -0.1068,0.3758 0.1553,0.6641 0.0487,1.048 -0.1236,0.4455 -0.904,0.8481 -1.1553,1.2552 -0.1667,0.2702 0.4753,1.4468 0.5594,1.7549 0.3481,0.8726 0.0301,0.8358 -0.5229,1.3527 -0.3759,0.3512 1.4067,1.5814 1.3742,2.3642 -0.0366,0.8829 -0.7148,1.2834 -1.4472,1.4989 -0.5382,0.1583 0.0045,0.7331 0.0487,1.109 0.0509,0.4324 -0.0896,0.7144 0.2432,1.0481 0.4898,0.4909 0.7228,0.9168 -0.0243,1.0846 -0.6804,0.1529 0.1531,0.8046 0.3405,1.2064 -0.0734,0.8516 1.9527,2.2867 -0.1216,2.6323 -0.5694,0.0949 -0.7577,-0.3348 -0.7054,0.3047 0.017,0.2094 -0.1581,0.5224 -0.1581,0.8043 0.0464,0.0154 -0.0729,0.4915 -0.0729,0.719 0.174,0.035 0.9796,-0.446 0.9972,-0.195 0.0483,0.688 -0.3003,1.4203 0.0851,2.0474 0.1937,0.3153 0.4959,0.3905 0.5959,0.7921 0.0626,0.2515 0.7744,1.3994 1.0215,1.5233l0 0c-0.025,0.2875 -1.5743,0.7645 -1.9093,0.9627 -0.4074,0.2409 -0.7532,0.7625 -1.1553,0.9384 -0.4274,0.4292 -0.3784,1.0682 -0.9971,1.3405 -0.4585,0.2017 -1.1684,0.1219 -1.6661,0.1219 -1.2407,0 -2.9645,0.8998 -3.9158,1.6574 -0.2705,0.2154 -0.5544,0.4338 -0.8493,0.6493l0 0c-0.251,-0.3541 -0.5392,-1.1665 -0.9965,-1.6678 -0.2181,-0.2392 -0.8501,-0.1575 -1.0529,-0.3082 -0.2297,-0.1708 -0.0159,-0.5687 0.0166,-0.7572 0.0437,-0.2535 -0.0431,-0.914 0.0608,-1.0603 0.2537,-0.3575 0.6283,-0.5238 0.8148,-0.9871 0.3163,-0.7861 0.3413,-1.5393 1.2647,-1.8036 0.7998,-0.229 1.0541,-0.2476 0.45,-0.9627 -0.2792,-0.3306 -1.6148,-2.4458 -1.7877,-2.2667 -0.8202,0.8491 -1.8591,0.3835 -2.6754,0.7921 -0.5576,0.2792 -0.7555,0.8408 -1.2404,1.2065 -0.2094,0.158 -0.7288,0.3422 -0.9972,0.3046 -0.6288,-0.088 -0.9992,0.9936 -1.7633,0.8409 -0.4805,-0.0961 -0.202,-0.4388 -0.377,-0.7434 -0.1936,-0.3368 -0.5997,-0.24 -0.8999,-0.3899l0 0 -0.1946 -0.4753c-0.2892,-0.2113 -0.7026,-0.4567 -0.8755,-0.7678 -0.2268,-0.4079 -0.2292,-0.8531 -0.3041,-1.3039 -0.1742,-1.0482 -1.4331,-1.0569 -1.2525,-2.2302 0.3371,-0.464 0.809,-0.2845 1.1552,0.0244 0.4872,0.4349 0.4491,-0.8014 0.4986,-0.9627 0.0778,-0.2539 0.2189,-0.6029 0.2189,-0.8531 -0.4858,-0.1224 -1.8713,0.3923 -1.8363,-0.4631 0.0203,-0.4956 1.124,-1.7524 0.9729,-1.9986 -0.16,-0.2606 -1.2887,-0.4162 -1.5809,-0.3778 -0.561,0.0739 -0.7435,0.1778 -1.2647,-0.1218 -0.2425,-0.5353 -0.1294,-1.6747 0.0243,-2.2545 0.1341,-0.5063 -0.0721,-0.6315 -0.377,-0.914 -0.1248,-0.1155 -0.197,-0.2048 -0.304,-0.3656 -0.3476,-0.2535 -0.5468,-0.5942 -0.6081,-1.0115 -0.0515,-0.3501 0.1984,-0.5732 0.2189,-0.8653 0.0258,-0.3686 -1.2908,-1.171 -1.6052,-1.3283 -0.5199,-0.2602 -1.1594,-0.3345 -1.6539,-0.6093 -0.7436,-0.4131 -1.6233,-0.2586 -2.4443,-0.2194l0 0 -0.4864 -0.1706c-0.4027,0 -0.9104,0.1744 -0.8878,-0.4021 0.0129,-0.328 0.2783,-0.6094 0.3892,-0.9018 0.1102,-0.2902 -0.0642,-0.566 -0.2311,-0.7922l0 0c0.4031,-0.4538 1.6215,-2.3708 2.189,-2.2789 0.2006,0.0324 0.9008,0.7425 0.9485,0.5484 0.2306,-0.0569 0.3734,-1.2577 0.8756,-1.5477 0.4741,-0.2739 0.9362,-1.2816 1.3499,-1.7304 0.3968,-0.4303 -0.3406,-0.9358 -0.3406,-1.304 0.4856,-0.2086 2.2107,-0.5598 2.0552,-1.0968 0.3246,-1.0539 0.0162,-1.6854 -0.6323,-2.4982 -0.4768,-0.5975 -1.8097,-1.5249 -1.9823,-2.2302 -0.1326,-0.5416 -0.0309,-1.0749 -0.2188,-1.6086 -0.2454,-0.6966 0.1853,-1.4825 -0.5594,-1.9499 -0.0248,-0.1983 0.2646,-0.3673 0.3526,-0.5605l0.9152 -0.9817 0 0z" + + } + } + } + } + ); +})(jQuery); \ No newline at end of file diff --git a/scripts/console-ui.php b/scripts/console-ui.php index 30556a95f..7e39cf319 100755 --- a/scripts/console-ui.php +++ b/scripts/console-ui.php @@ -22,10 +22,6 @@ while ($end == 0) { passthru('clear'); $tbl = new Console_Table(CONSOLE_TABLE_ALIGN_RIGHT); foreach (dbFetchRows('SELECT * FROM `devices` ORDER BY `hostname`') as $device) { - if (get_dev_attrib($device, 'override_sysLocation_bool')) { - $device['real_location'] = $device['location']; - $device['location'] = get_dev_attrib($device, 'override_sysLocation_string'); - } $devices['count']++; diff --git a/sql-schema/058.sql b/sql-schema/058.sql new file mode 100644 index 000000000..956926219 --- /dev/null +++ b/sql-schema/058.sql @@ -0,0 +1,5 @@ +CREATE TABLE `locations` ( `id` INT NOT NULL AUTO_INCREMENT ,`location` TEXT NOT NULL ,`lat` FLOAT( 10, 6 ) NOT NULL ,`lng` FLOAT( 10, 6 ) NOT NULL ,`timestamp` DATETIME NOT NULL ,INDEX ( `id` )) ENGINE = INNODB; +LOCK TABLES `devices` WRITE; +ALTER TABLE `devices` ADD `override_sysLocation` bool DEFAULT false; +UNLOCK TABLES; +UPDATE `devices` LEFT JOIN devices_attribs AS sysloc_bool ON(devices.device_id=sysloc_bool.device_id and sysloc_bool.attrib_type = 'override_sysLocation_bool') LEFT JOIN devices_attribs AS sysloc_string ON(devices.device_id=sysloc_string.device_id and sysloc_string.attrib_type = 'override_sysLocation_string') SET `override_sysLocation` = true, `location` = sysloc_string.attrib_value WHERE sysloc_bool.attrib_value = 1;