Multilayer map (canvas + svg)Edit
A canvas layer and an SVG layer. This technique is useful if you have a background layer that would require a large number of DOM nodes. Rendering that layer with canvas will speed up the page. The shapes you actually care about are in SVG to make styling and mouse interaction easier.
- +page.svelte
- ./_components/Map.svg.svelte
- ./_components/Map.canvas.svelte
- ./_components/MapLabels.html.svelte
- ./_data/us-states.topojson.json
- ./_data/us-states-data.json
- ./_data/us-states-labels.json
<script>
import { LayerCake, Svg, Canvas, Html } from 'layercake';
import { feature } from 'topojson-client';
import { geoAlbersUsa } from 'd3-geo';
import { scaleQuantize } from 'd3-scale';
// For a map example with a tooltip, check out https://layercake.graphics/example/MapSvg
import MapSvg from './_components/Map.svg.svelte';
import MapCanvas from './_components/Map.canvas.svelte';
import MapLabels from './_components/MapLabels.html.svelte';
// This example loads json data as json using @rollup/plugin-json
import usStates from './_data/us-states.topojson.json';
import stateData from './_data/us-states-data.json';
import stateLabels from './_data/us-states-labels.json';
const colorKey = 'myValue';
const labelCoordinatesKey = 'center';
const labelNameKey = 'abbr';
const geojson = feature(usStates, usStates.objects.collection);
const projection = geoAlbersUsa;
/* --------------------------------------------
* Create lookups to more easily join our data
* `dataJoinKey` is the name of the field in the data
* `mapJoinKey` is the name of the field in the map file
*/
const dataJoinKey = 'name';
const mapJoinKey = 'name';
const dataLookup = new Map();
stateData.forEach(d => {
dataLookup.set(d[dataJoinKey], d[colorKey]);
});
// Exclude some for space reasons
const labelsToExclude = ['VT', 'MD', 'NJ', 'RI', 'DC', 'DE', 'WV', 'MA', 'CT', 'NH'];
const labelsToDisplay = stateLabels.filter(d => {
return !labelsToExclude.includes(d[labelNameKey]);
});
// Create a flat array of objects that LayerCake can use to measure
// extents for the color scale
const flatData = geojson.features.map(d => d.properties);
const colors = ['#ffdecc', '#ffc09c', '#ffa06b', '#ff7a33'];
</script>
<style>
/*
The wrapper div needs to have an explicit width and height in CSS.
It can also be a flexbox child or CSS grid element.
The point being it needs dimensions since the <LayerCake> element will
expand to fill it.
*/
.chart-container {
width: 100%;
height: 250px;
}
</style>
<div class="chart-container">
<LayerCake
data={geojson}
z={d => dataLookup.get(d[mapJoinKey])}
zScale={scaleQuantize()}
zRange={colors}
{flatData}
>
<Canvas>
<MapCanvas
{projection}
fill='#fff'
/>
</Canvas>
<Svg>
<MapSvg
{projection}
features={geojson.features.slice(40, 50)}
/>
</Svg>
<Html
pointerEvents={false}
>
<MapLabels
{projection}
features={labelsToDisplay}
getCoordinates={d => d[labelCoordinatesKey]}
getLabel={d => d[labelNameKey]}
/>
</Html>
</LayerCake>
</div>
<!--
@component
Generates an SVG map using the `geoPath` function from [d3-geo](https://github.com/d3/d3-geo).
-->
<script>
import { getContext, createEventDispatcher } from 'svelte';
import { geoPath } from 'd3-geo';
import { raise } from 'layercake';
const { data, width, height, zGet } = getContext('LayerCake');
/** @type {Function} projection - A D3 projection function. Pass this in as an uncalled function, e.g. `projection={geoAlbersUsa}`. */
export let projection;
/** @type {Number} [fixedAspectRatio] - By default, the map fills to fit the $width and $height. If instead you want a fixed-aspect ratio, like for a server-side rendered map, set that here. */
export let fixedAspectRatio = undefined;
/** @type {String} [fill] - The shape's fill color. By default, the fill will be determined by the z-scale, unless this prop is set. */
export let fill = undefined;
/** @type {String} [stroke='#333'] - The shape's stroke color. */
export let stroke = '#333';
/** @type {Number} [strokeWidth=0.5] - The shape's stroke width. */
export let strokeWidth = 0.5;
/** @type {Array} [features] - A list of GeoJSON features. Use this if you want to draw a subset of the features in `$data` while keeping the zoom on the whole GeoJSON feature set. By default, it plots everything in `$data.features` if left unset. */
export let features = undefined;
/* --------------------------------------------
* Here's how you would do cross-component hovers
*/
const dispatch = createEventDispatcher();
$: fitSizeRange = fixedAspectRatio ? [100, 100 / fixedAspectRatio] : [$width, $height];
$: projectionFn = projection()
.fitSize(fitSizeRange, $data);
$: geoPathFn = geoPath(projectionFn);
function handleMousemove(feature) {
return function handleMousemoveFn(e) {
raise(this);
// When the element gets raised, it flashes 0,0 for a second so skip that
if (e.layerX !== 0 && e.layerY !== 0) {
dispatch('mousemove', { e, props: feature.properties });
}
}
}
</script>
<g
class="map-group"
on:mouseout={(e) => dispatch('mouseout')}
on:blur={(e) => dispatch('mouseout')}
>
{#each (features || $data.features) as feature}
<path
class="feature-path"
fill="{fill || $zGet(feature.properties)}"
stroke={stroke}
stroke-width={strokeWidth}
d="{geoPathFn(feature)}"
on:mouseover={(e) => dispatch('mousemove', { e, props: feature.properties })}
on:focus={(e) => dispatch('mousemove', { e, props: feature.properties })}
on:mousemove={handleMousemove(feature)}
></path>
{/each}
</g>
<style>
/* .feature-path {
stroke: #333;
stroke-width: 0.5px;
} */
.feature-path:hover {
stroke: #000;
stroke-width: 2px;
}
/**
* Disable the outline on feature click.
* Depending on map funtionality and accessiblity issues,
* you may not want this rule. Read more:
* https://developer.mozilla.org/en-US/docs/Web/CSS/:focus
* https://github.com/mhkeller/layercake/issues/63
*/
.feature-path:focus {
outline: none;
}
</style>
<!--
@component
Generates a canvas map using the `geoPath` function from [d3-geo](https://github.com/d3/d3-geo).
-->
<script>
import { getContext } from 'svelte';
import { scaleCanvas } from 'layercake';
import { geoPath } from 'd3-geo';
const { data, width, height, zGet } = getContext('LayerCake');
const { ctx } = getContext('canvas');
/** @type {Function} projection - A D3 projection function. Pass this in as an uncalled function, e.g. `projection={geoAlbersUsa}`. */
export let projection;
/** @type {String} [stroke='#ccc'] - The shape's stroke color. */
export let stroke = '#ccc';
/** @type {Number} [strokeWidth=1] - The shape's stroke width. */
export let strokeWidth = 1;
/** @type {String} [fill] - The shape's fill color. By default, the fill will be determined by the z-scale, unless this prop is set. */
export let fill = undefined;
/** @type {Array} [features] - A list of GeoJSON features. Use this if you want to draw a subset of the features in `$data` while keeping the zoom on the whole GeoJSON feature set. By default, it plots everything in `$data.features` if left unset. */
export let features = undefined;
$: projectionFn = projection()
.fitSize([$width, $height], $data);
$: geoPathFn = geoPath(projectionFn);
$: featuresToDraw = features || $data.features;
$: {
if ($ctx && geoPath) {
scaleCanvas($ctx, $width, $height);
$ctx.clearRect(0, 0, $width, $height);
featuresToDraw.forEach(feature => {
$ctx.beginPath();
// Set the context here since setting it in `$: geoPath` is a circular reference
geoPathFn.context($ctx);
geoPathFn(feature);
$ctx.fillStyle = fill || $zGet(feature.properties);
$ctx.fill();
$ctx.lineWidth = strokeWidth;
$ctx.strokeStyle = stroke;
$ctx.stroke();
});
}
}
</script>
<!--
@component
Adds HTML text labels based features in the data or a custom GeoJSON Feature Collection.
-->
<script>
import { getContext } from 'svelte';
const { data, width, height } = getContext('LayerCake');
/** @type {Function} projection - A D3 projection function. Pass this in as an uncalled function, e.g. `projection={geoAlbersUsa}`. */
export let projection;
/** @type {Number} [fixedAspectRatio] - By default, the map fills to fit the $width and $height. If instead you want a fixed-aspect ratio, like for a server-side rendered map, set that here. */
export let fixedAspectRatio = undefined;
/** @type {Function} getLabel - An accessor function to get the field to display. */
export let getLabel;
/** @type {Function} [getCoordinates=d => d.geometry.coordinates] - An accessor function to get the `[x, y]` coordinate field. Defaults to a GeoJSON feature format. */
export let getCoordinates;
/** @type {Array} [features] - A list of labels as GeoJSON features. If unset, the plotted features will defaults to those in `$data.features`, assuming this field a list of GeoJSON features. */
export let features = undefined;
$: fitSizeRange = fixedAspectRatio ? [100, 100 / fixedAspectRatio] : [$width, $height];
$: projectionFn = projection()
.fitSize(fitSizeRange, $data);
$: units = fixedAspectRatio ? '%': 'px';
</script>
<div
class="map-labels"
style:aspect-ratio={fixedAspectRatio ? 1 : null}
>
{#each (features || $data.features) as d}
{@const coords = projectionFn(getCoordinates(d))}
<div
class="map-label"
style="
left: {coords[0]}{units};
top: {coords[1]}{units};
"
>{getLabel(d)}</div>
{/each}
</div>
<style>
.map-labels {
pointer-events: none;
position: relative;
}
.map-label {
position: absolute;
text-align: center;
font-size: 8px;
color: #333;
margin-top: -3px; /* To match the SVG labels, it needs a slight tweak */
transform: translate(-50%, -50%);
}
</style>
{"type":"Topology","objects":{"collection":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4]],"properties":{"name":"Alabama"}},{"type":"MultiPolygon","arcs":[[[5]],[[6]],[[7]],[[8]],[[9]],[[10]],[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]],[[48]],[[49]],[[50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62]],[[63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76]],[[77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]]],"properties":{"name":"Alaska"}},{"type":"Polygon","arcs":[[106,107,108,109,110]],"properties":{"name":"Arizona"}},{"type":"Polygon","arcs":[[111,112,113,114,115,116,117,118,119,120]],"properties":{"name":"Arkansas"}},{"type":"MultiPolygon","arcs":[[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127,-109,128,129]]],"properties":{"name":"California"}},{"type":"Polygon","arcs":[[130,131,132,133,134,135]],"properties":{"name":"Colorado"}},{"type":"Polygon","arcs":[[136,137,138,139]],"properties":{"name":"Connecticut"}},{"type":"Polygon","arcs":[[140,141,142,143]],"properties":{"name":"Delaware"}},{"type":"Polygon","arcs":[[144,145]],"properties":{"name":"District of Columbia"}},{"type":"MultiPolygon","arcs":[[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152,-2,153]]],"properties":{"name":"Florida"}},{"type":"Polygon","arcs":[[154,155,156,-154,-1,157]],"properties":{"name":"Georgia"}},{"type":"MultiPolygon","arcs":[[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]]],"properties":{"name":"Hawaii"}},{"type":"Polygon","arcs":[[166,167,168,169,170,171,172]],"properties":{"name":"Idaho"}},{"type":"Polygon","arcs":[[173,174,175,176,177,178]],"properties":{"name":"Illinois"}},{"type":"Polygon","arcs":[[179,-175,180,181,182]],"properties":{"name":"Indiana"}},{"type":"Polygon","arcs":[[183,-178,184,185,186,187]],"properties":{"name":"Iowa"}},{"type":"Polygon","arcs":[[-132,188,189,190]],"properties":{"name":"Kansas"}},{"type":"MultiPolygon","arcs":[[[191,192]],[[193,194,195,-176,-180,196,197]]],"properties":{"name":"Kentucky"}},{"type":"Polygon","arcs":[[198,-121,199,200]],"properties":{"name":"Louisiana"}},{"type":"MultiPolygon","arcs":[[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208,209]]],"properties":{"name":"Maine"}},{"type":"MultiPolygon","arcs":[[[210]],[[211,212]],[[-146,213,214,215,-143,216,217,218,219]]],"properties":{"name":"Maryland"}},{"type":"MultiPolygon","arcs":[[[220]],[[221]],[[222,223,224,225,226,-140,227,228]]],"properties":{"name":"Massachusetts"}},{"type":"MultiPolygon","arcs":[[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[-182,236,237]],[[238,239]]],"properties":{"name":"Michigan"}},{"type":"Polygon","arcs":[[-188,240,241,242,243]],"properties":{"name":"Minnesota"}},{"type":"Polygon","arcs":[[244,-4,245,-200,-120,-119,-118,-117,-116]],"properties":{"name":"Mississippi"}},{"type":"Polygon","arcs":[[-114,246,-190,247,-185,-177,-196,248,-193,249]],"properties":{"name":"Missouri"}},{"type":"Polygon","arcs":[[-172,250,251,252,253]],"properties":{"name":"Montana"}},{"type":"Polygon","arcs":[[254,255,-186,-248,-189,-131]],"properties":{"name":"Nebraska"}},{"type":"Polygon","arcs":[[-110,-128,256,-168,257]],"properties":{"name":"Nevada"}},{"type":"Polygon","arcs":[[258,-209,259,-223,260]],"properties":{"name":"New Hampshire"}},{"type":"Polygon","arcs":[[261,262,263,264,-141,265]],"properties":{"name":"New Jersey"}},{"type":"Polygon","arcs":[[266,-107,-134,267,268]],"properties":{"name":"New Mexico"}},{"type":"MultiPolygon","arcs":[[[269,270]],[[271]],[[272,-228,-139,273,-262,274,275]]],"properties":{"name":"New York"}},{"type":"MultiPolygon","arcs":[[[276]],[[277]],[[278,279,-155,280,281]]],"properties":{"name":"North Carolina"}},{"type":"Polygon","arcs":[[-252,282,-242,283]],"properties":{"name":"North Dakota"}},{"type":"MultiPolygon","arcs":[[[284]],[[-197,-183,-238,285,286,287]]],"properties":{"name":"Ohio"}},{"type":"Polygon","arcs":[[-268,-133,-191,-247,-113,288]],"properties":{"name":"Oklahoma"}},{"type":"Polygon","arcs":[[-169,-257,-130,289,290]],"properties":{"name":"Oregon"}},{"type":"Polygon","arcs":[[-287,291,-275,-266,-144,-216,292]],"properties":{"name":"Pennsylvania"}},{"type":"MultiPolygon","arcs":[[[293,-225]],[[294]],[[-227,295,-137]]],"properties":{"name":"Rhode Island"}},{"type":"Polygon","arcs":[[-156,-280,296]],"properties":{"name":"South Carolina"}},{"type":"Polygon","arcs":[[-253,-284,-241,-187,-256,297]],"properties":{"name":"South Dakota"}},{"type":"Polygon","arcs":[[-281,-158,-5,-245,-115,-250,-192,-249,-195,298]],"properties":{"name":"Tennessee"}},{"type":"MultiPolygon","arcs":[[[299]],[[-269,-289,-112,-199,300]]],"properties":{"name":"Texas"}},{"type":"Polygon","arcs":[[-135,-111,-258,-167,301]],"properties":{"name":"Utah"}},{"type":"Polygon","arcs":[[-229,-273,302,-261]],"properties":{"name":"Vermont"}},{"type":"MultiPolygon","arcs":[[[303,-213]],[[304,-218]],[[305,-282,-299,-194,306,-214,-145,-220]]],"properties":{"name":"Virginia"}},{"type":"MultiPolygon","arcs":[[[307]],[[308]],[[309]],[[310]],[[311]],[[-170,-291,312]]],"properties":{"name":"Washington"}},{"type":"Polygon","arcs":[[-215,-307,-198,-288,-293]],"properties":{"name":"West Virginia"}},{"type":"MultiPolygon","arcs":[[[313]],[[314]],[[315]],[[316]],[[317]],[[-179,-184,-244,318,-240,319]],[[320]]],"properties":{"name":"Wisconsin"}},{"type":"Polygon","arcs":[[-173,-254,-298,-255,-136,-302]],"properties":{"name":"Wyoming"}}]}},"arcs":[[[-85.60310469926992,34.98378251365136],[-85.56720898349835,34.74869712311231],[-85.45952183618361,34.32661199009901],[-85.35183468886888,33.74958421332133],[-85.3159389730973,33.4824417240724],[-85.24414754155416,33.129813638263826],[-85.172356110011,32.86801399879988],[-85.172356110011,32.841299749874985],[-85.172356110011,32.814585500950095],[-85.13646039423942,32.777185552455244],[-85.10056467846785,32.68101425632563],[-85.06466896269626,32.57950011041104],[-84.99287753115311,32.5153859129913],[-84.99287753115311,32.45127171557156],[-84.95698181538154,32.4405860160016],[-84.99287753115311,32.376471818581855],[-84.99287753115311,32.344414719871985],[-84.99287753115311,32.32304332073207],[-84.92108609960995,32.29632907180718],[-84.88519038383838,32.26427197309731],[-84.92108609960995,32.221529174817476],[-84.99287753115311,32.18412922632263],[-85.06466896269626,32.130700728472846],[-85.06466896269626,32.08261508040804],[-85.06466896269626,32.01315803320332],[-85.10056467846785,31.92767243664366],[-85.13646039423942,31.858215389438943],[-85.13646039423942,31.815472591159114],[-85.13646039423942,31.783415492449244],[-85.13646039423942,31.735329844384438],[-85.13646039423942,31.69258704610461],[-85.06466896269626,31.61778714911491],[-85.06466896269626,31.569701501050105],[-85.02877324692469,31.54298725212521],[-85.06466896269626,31.468187355135512],[-85.10056467846785,31.36667320922092],[-85.10056467846785,31.2972161620162],[-85.10056467846785,31.265159063306328],[-85.10056467846785,31.22775911481148],[-85.10056467846785,31.163644917391736],[-85.06466896269626,31.158302067606762],[-85.02877324692469,31.110216419541953],[-85.02877324692469,31.05144507190719],[-84.99287753115311,30.998016574057402]],[[-84.99287753115311,30.998016574057402],[-85.24414754155416,31.003359423842383],[-85.49541755195519,30.998016574057402],[-85.89027042544254,30.99267372427243],[-86.10564472007201,30.99267372427243],[-86.53639330933093,30.99267372427243],[-86.71587188818881,30.998016574057402],[-87.14662047744774,30.998016574057402],[-87.61326478247824,30.998016574057402],[-87.57736906670667,30.965959475347532],[-87.64916049824983,30.864445329432943],[-87.61326478247824,30.821702531153115],[-87.54147335093509,30.784302582658263],[-87.54147335093509,30.74155978437844],[-87.50557763516352,30.720188385238522],[-87.39789048784878,30.677445586958697],[-87.39789048784878,30.629359938893888],[-87.43378620362036,30.55990289168917],[-87.43378620362036,30.5278457929793],[-87.43378620362036,30.47976014491449],[-87.36199477207721,30.431674496849684],[-87.43378620362036,30.40496024792479],[-87.46968191939193,30.33550320072007],[-87.50557763516352,30.324817501150115],[-87.50557763516352,30.282074702870286]],[[-87.50557763516352,30.282074702870286],[-87.64916049824983,30.250017604160416],[-87.82863907710771,30.228646205020503],[-87.97222194019402,30.23398905480548],[-87.93632622442244,30.260703303730374],[-87.90043050865086,30.239331904590458],[-87.86453479287928,30.239331904590458],[-87.75684764556455,30.260703303730374],[-87.75684764556455,30.292760402440244],[-87.79274336133614,30.330160350935092],[-87.82863907710771,30.3782459989999],[-87.90043050865086,30.41030309770977],[-87.93632622442244,30.485102994699467],[-87.90043050865086,30.54921719211921],[-87.90043050865086,30.613331389538953],[-87.93632622442244,30.65607418781878],[-88.00811765596559,30.68278843674367],[-88.07990908750875,30.645388488248823],[-88.04401337173717,30.613331389538953],[-88.07990908750875,30.565245741474147],[-88.07990908750875,30.5278457929793],[-88.11580480328033,30.511817243624364],[-88.11580480328033,30.3782459989999],[-88.1517005190519,30.319474651365134],[-88.18759623482347,30.319474651365134],[-88.18759623482347,30.362217449644966],[-88.25938766636664,30.383588848784875],[-88.33117909790978,30.36756029942994],[-88.33117909790978,30.388931698569856],[-88.40297052945294,30.36756029942994]],[[-88.40297052945294,30.36756029942994],[-88.40297052945294,30.864445329432943],[-88.43886624522452,31.249130513951393],[-88.47476196099609,31.697929895889587],[-88.47476196099609,31.89561533793379],[-88.40297052945294,32.45127171557156],[-88.36707481368137,32.7130713550355],[-88.33117909790978,33.071042290629066],[-88.29528338213821,33.51449882278228],[-88.25938766636664,33.71752711461146],[-88.22349195059506,34.027412402140214],[-88.1517005190519,34.620468728272826],[-88.11580480328033,34.89295406730673],[-88.1517005190519,34.9250111660166],[-88.18759623482347,34.994468213221325]],[[-88.18759623482347,34.994468213221325],[-88.18759623482347,35.01049676257625],[-87.64916049824983,35.00515391279128],[-87.43378620362036,35.00515391279128],[-86.85945475127512,34.994468213221325],[-86.32101901470146,34.989125363436344],[-85.81847899389939,34.989125363436344],[-85.60310469926992,34.98378251365136]],[[-166.1171951749175,53.98829919881988],[-166.1171951749175,53.95624210011001],[-166.18898660646065,53.961584949894984],[-166.18898660646065,53.998984898389836],[-166.1171951749175,53.98829919881988]],[[-161.34306497729773,55.217154649364936],[-161.34306497729773,55.15838330173017],[-161.45075212461248,55.20112610001],[-161.4148564088409,55.22249749914991],[-161.34306497729773,55.217154649364936]],[[-161.66612641924195,55.243868898289826],[-161.52254355615563,55.249211748074806],[-161.5584392719272,55.206468949794974],[-161.70202213501352,55.20112610001],[-161.66612641924195,55.243868898289826]],[[-159.5123834729473,54.78972666656665],[-159.5123834729473,54.75766956785678],[-159.58417490449045,54.75766956785678],[-159.62007062026203,54.81644091549155],[-159.58417490449045,54.8271266150615],[-159.5123834729473,54.78972666656665]],[[-162.24045787158718,54.9767264090409],[-162.24045787158718,54.960697859685965],[-162.24045787158718,54.89124081248124],[-162.27635358735876,54.84315516441644],[-162.3481450189019,54.837812314631456],[-162.41993645044505,54.88589796269627],[-162.41993645044505,54.928640760976094],[-162.31224930313033,54.987412108610854],[-162.24045787158718,54.9767264090409]],[[-159.3329048940894,54.928640760976094],[-159.26111346254626,54.95001216011601],[-159.18932203100312,54.928640760976094],[-159.2252177467747,54.87521226312631],[-159.29700917831784,54.86452656355635],[-159.3329048940894,54.88589796269627],[-159.3329048940894,54.928640760976094]],[[-160.0149234937494,55.15838330173017],[-160.05081920952097,55.20112610001],[-159.94313206220625,55.19044040044004],[-159.87134063066307,55.28661169656965],[-159.8354449148915,55.26524029742974],[-159.87134063066307,55.22784034893489],[-159.90723634643464,55.217154649364936],[-159.90723634643464,55.16372615151515],[-159.79954919911992,55.179754700870085],[-159.8354449148915,55.1263262030203],[-159.87134063066307,55.09426910431043],[-159.94313206220625,55.10495480388038],[-159.94313206220625,55.06755485538554],[-160.05081920952097,55.00344065796579],[-160.1226106410641,54.987412108610854],[-160.19440207260726,54.91795506140614],[-160.19440207260726,54.87521226312631],[-160.26619350415044,54.896583662266224],[-160.23029778837883,54.93932646054605],[-160.1226106410641,55.01412635753575],[-160.08671492529254,55.03549775667567],[-160.1585063568357,55.0515263060306],[-160.19440207260726,55.12098335323532],[-160.1226106410641,55.15838330173017],[-160.05081920952097,55.13166905280528],[-160.0149234937494,55.15838330173017]],[[-159.44059204140416,55.06221200560056],[-159.368800609861,55.06221200560056],[-159.3329048940894,55.04618345624562],[-159.3329048940894,54.9767264090409],[-159.44059204140416,54.94466931033103],[-159.44059204140416,54.9767264090409],[-159.40469632563259,54.998097808180816],[-159.44059204140416,55.03549775667567],[-159.44059204140416,55.06221200560056]],[[-159.54827918871888,55.185097550655065],[-159.5123834729473,55.174411851085104],[-159.5123834729473,55.13701190259025],[-159.5123834729473,55.10495480388038],[-159.54827918871888,55.056869155815576],[-159.62007062026203,55.03549775667567],[-159.6559663360336,55.06755485538554],[-159.62007062026203,55.115640503450344],[-159.58417490449045,55.15838330173017],[-159.5123834729473,55.25455459785978],[-159.5123834729473,55.23318319871987],[-159.54827918871888,55.185097550655065]],[[-161.70202213501352,55.15304045194519],[-161.66612641924195,55.10495480388038],[-161.7379178507851,55.0515263060306],[-161.77381356655667,55.056869155815576],[-161.8815007138714,55.15838330173017],[-161.84560499809982,55.179754700870085],[-161.70202213501352,55.15304045194519]],[[-160.51746351455148,55.32935449484948],[-160.55335923032305,55.33469734463446],[-160.58925494609463,55.302640245924586],[-160.51746351455148,55.25455459785978],[-160.48156779877988,55.19578325022502],[-160.51746351455148,55.13166905280528],[-160.66104637763777,55.15838330173017],[-160.69694209340935,55.211811799579955],[-160.7687335249525,55.19578325022502],[-160.80462924072407,55.13701190259025],[-160.84052495649567,55.206468949794974],[-160.84052495649567,55.29195454635463],[-160.84052495649567,55.31866879527952],[-160.80462924072407,55.38278299269927],[-160.69694209340935,55.40415439183918],[-160.66104637763777,55.38278299269927],[-160.6251506618662,55.34538304420442],[-160.58925494609463,55.38812584248424],[-160.51746351455148,55.36141159355935],[-160.40977636723673,55.34004019441944],[-160.33798493569358,55.36141159355935],[-160.302089219922,55.302640245924586],[-160.33798493569358,55.249211748074806],[-160.37388065146516,55.28661169656965],[-160.48156779877988,55.28661169656965],[-160.51746351455148,55.32935449484948]],[[-160.19440207260726,55.457582889688965],[-160.1226106410641,55.452240039903984],[-160.1585063568357,55.38812584248424],[-160.33798493569358,55.393468692269224],[-160.33798493569358,55.42018294119411],[-160.26619350415044,55.462925739473945],[-160.19440207260726,55.457582889688965]],[[-165.7941337329733,54.16995609150915],[-165.75823801720173,54.15927039193919],[-165.72234230143016,54.121870443444344],[-165.6864465856586,54.09515619451945],[-165.75823801720173,54.06844194559456],[-165.7941337329733,54.07378479537954],[-165.86592516451645,54.03638484688469],[-165.90182088028803,54.06309909580958],[-165.9736123118312,54.06309909580958],[-166.04540374337435,54.04172769666966],[-166.1171951749175,54.121870443444344],[-166.08129945914592,54.17529894129412],[-165.9736123118312,54.223384589358936],[-165.86592516451645,54.218041739573955],[-165.86592516451645,54.185984640864085],[-165.83002944874488,54.15927039193919],[-165.7941337329733,54.16995609150915]],[[-165.25569799639965,54.09515619451945],[-165.25569799639965,54.057756246024596],[-165.36338514371437,54.07378479537954],[-165.47107229102912,54.06844194559456],[-165.47107229102912,54.07912764516451],[-165.25569799639965,54.09515619451945]],[[-164.96853227022703,54.1325561430143],[-164.93263655445546,54.11118474387438],[-164.96853227022703,54.07912764516451],[-165.04032370177018,54.06844194559456],[-165.21980228062807,54.08981334473447],[-165.1839065648565,54.11652759365936],[-165.14801084908493,54.1325561430143],[-165.04032370177018,54.121870443444344],[-164.96853227022703,54.1325561430143]],[[-165.5069680068007,54.29818448634863],[-165.47107229102912,54.282155936993696],[-165.54286372257226,54.25544168806881],[-165.5069680068007,54.212698889788975],[-165.39928085948597,54.212698889788975],[-165.39928085948597,54.17529894129412],[-165.47107229102912,54.180641791079104],[-165.54286372257226,54.11118474387438],[-165.6146551541154,54.1325561430143],[-165.650550869887,54.20201319021902],[-165.6864465856586,54.22872743914391],[-165.6864465856586,54.26612738763876],[-165.650550869887,54.29818448634863],[-165.57875943834384,54.282155936993696],[-165.5069680068007,54.29818448634863]],[[-162.81478932393242,54.490527078607855],[-162.59941502930295,54.44778428032803],[-162.56351931353137,54.39435578247824],[-162.59941502930295,54.36764153355335],[-162.70710217661767,54.399698632263224],[-162.77889360816084,54.37298438333833],[-162.850685039704,54.426412881188114],[-162.81478932393242,54.490527078607855]],[[-175.77314271747176,51.92595918181818],[-175.80903843324333,51.9206163320332],[-175.91672558055808,51.9954162290229],[-175.80903843324333,51.9954162290229],[-175.77314271747176,51.93664488138813],[-175.77314271747176,51.92595918181818]],[[-170.28109820442046,57.12989487238723],[-170.31699392019203,57.15660912131213],[-170.42468106750675,57.1619519710971],[-170.42468106750675,57.194009069806974],[-170.31699392019203,57.22072331873187],[-170.28109820442046,57.21003761916191],[-170.1734110571057,57.231409018301825],[-170.1734110571057,57.18332337023702],[-170.28109820442046,57.12989487238723]],[[-179.07554856845687,51.263445808480846],[-179.11144428422844,51.226045859985994],[-179.14734,51.231388709770975],[-179.14734,51.2741315080508],[-179.11144428422844,51.3008457569757],[-179.07554856845687,51.263445808480846]],[[-178.96786142114212,51.33824570547054],[-179.0037571369137,51.38098850375037],[-178.93196570537054,51.38098850375037],[-178.89606998959897,51.33824570547054],[-178.96786142114212,51.33824570547054]],[[178.76884195839588,51.632102443644364],[178.91242482148223,51.61607389428943],[178.91242482148223,51.58401679557956],[179.02011196879695,51.55195969686969],[179.0919034003401,51.4985311990199],[179.12779911611167,51.471816950095004],[179.19959054765482,51.46113125052505],[179.2354862634264,51.413045602460244],[179.27138197919797,51.40770275267526],[179.3790691265127,51.40235990289029],[179.45086055805584,51.37564565396539],[179.41496484228426,51.35961710461046],[179.3790691265127,51.37030280418041],[179.27138197919797,51.35961710461046],[179.2354862634264,51.386331353535354],[179.05600768456853,51.45578840074007],[178.9483205372538,51.541273997299726],[178.84063338993903,51.57867394579458],[178.76884195839588,51.573331096009596],[178.69705052685273,51.59470249514951],[178.6252590953096,51.6214167440744],[178.66115481108116,51.65881669256925],[178.7329462426243,51.632102443644364],[178.76884195839588,51.632102443644364]],[[-176.77822275907593,51.86718783418342],[-176.8141184748475,51.92595918181818],[-176.77822275907593,51.95801628052805],[-176.74232704330436,51.968701980098004],[-176.6346398959896,51.968701980098004],[-176.59874418021803,51.9954162290229],[-176.56284846444646,51.99007337923792],[-176.59874418021803,51.90458778267826],[-176.6346398959896,51.86184498439844],[-176.56284846444646,51.84047358525852],[-176.4910570329033,51.8458164350435],[-176.38336988558856,51.86718783418342],[-176.27568273827384,51.87253068396839],[-176.27568273827384,51.819102186118606],[-176.27568273827384,51.74430228912891],[-176.347474169817,51.733616589558956],[-176.5269527486749,51.760330838483846],[-176.59874418021803,51.690873791279124],[-176.70643132753275,51.68553094149414],[-176.74232704330436,51.63744529342934],[-176.8141184748475,51.61607389428943],[-176.8141184748475,51.65881669256925],[-176.85001419061908,51.68553094149414],[-176.92180562216222,51.59470249514951],[-176.99359705370537,51.60004534493449],[-176.99359705370537,51.65881669256925],[-176.88590990639065,51.733616589558956],[-176.88590990639065,51.765673688268826],[-176.92180562216222,51.787045087408735],[-176.92180562216222,51.81375933633363],[-176.77822275907593,51.819102186118606],[-176.77822275907593,51.86718783418342]],[[-177.78330280068008,51.77635938783878],[-177.85509423222322,51.733616589558956],[-177.81919851645165,51.70690234063406],[-177.85509423222322,51.68018809170917],[-177.89098994799483,51.690873791279124],[-177.9268856637664,51.65347384278427],[-177.89098994799483,51.60538819471947],[-177.9268856637664,51.60004534493449],[-177.96278137953797,51.6481309929993],[-178.10636424262427,51.68018809170917],[-178.10636424262427,51.701559490849085],[-177.96278137953797,51.71758804020402],[-177.96278137953797,51.77635938783878],[-178.03457281108112,51.77635938783878],[-178.0704685268527,51.80841648654865],[-178.21405138993902,51.85650213461346],[-178.21405138993902,51.90458778267826],[-178.14225995839584,51.9206163320332],[-177.99867709530955,51.909930632463244],[-177.96278137953797,51.915273482248224],[-177.9268856637664,51.87787353375337],[-177.9268856637664,51.85650213461346],[-177.85509423222322,51.82444503590359],[-177.7474070849085,51.82978788568857],[-177.6038242218222,51.85650213461346],[-177.63971993759378,51.819102186118606],[-177.78330280068008,51.792387937193716],[-177.78330280068008,51.77635938783878]],[[-177.35255421142116,51.728273739773975],[-177.46024135873589,51.722930889988994],[-177.49613707450746,51.70690234063406],[-177.63971993759378,51.696216641064105],[-177.63971993759378,51.65347384278427],[-177.71151136913693,51.701559490849085],[-177.63971993759378,51.733616589558956],[-177.5679285060506,51.722930889988994],[-177.46024135873589,51.74964513891389],[-177.280762779878,51.78170223762376],[-177.20897134833484,51.81375933633363],[-177.20897134833484,51.8458164350435],[-177.20897134833484,51.92595918181818],[-177.17307563256327,51.941987731173114],[-177.10128420102012,51.93664488138813],[-177.02949276947697,51.89924493289329],[-177.06538848524855,51.85650213461346],[-177.1371799167917,51.81375933633363],[-177.1371799167917,51.728273739773975],[-177.1371799167917,51.70690234063406],[-177.24486706410642,51.68018809170917],[-177.3166584956496,51.690873791279124],[-177.35255421142116,51.728273739773975]],[[-178.78838284228425,51.74430228912891],[-178.8601742738274,51.78170223762376],[-178.8601742738274,51.819102186118606],[-178.82427855805582,51.84047358525852],[-178.75248712651268,51.80841648654865],[-178.75248712651268,51.760330838483846],[-178.78838284228425,51.74430228912891]],[[178.37398908490857,51.765673688268826],[178.30219765336537,51.77635938783878],[178.23040622182222,51.819102186118606],[178.30219765336537,51.819102186118606],[178.37398908490857,51.765673688268826]],[[-175.98851701210123,51.88855923332333],[-175.98851701210123,51.851159284828476],[-176.06030844364437,51.8458164350435],[-176.09620415941595,51.80841648654865],[-176.13209987518752,51.80307363676367],[-176.23978702250227,51.82444503590359],[-176.2038913067307,51.87253068396839],[-176.16799559095912,51.883216383538354],[-176.13209987518752,51.86184498439844],[-176.09620415941595,51.85650213461346],[-176.06030844364437,51.90458778267826],[-175.98851701210123,51.915273482248224],[-175.98851701210123,51.88855923332333]],[[177.58428333793384,52.01678762816282],[177.54838762216227,51.979387679667965],[177.54838762216227,51.95801628052805],[177.6201790537054,51.95267343074307],[177.6201790537054,51.92595918181818],[177.54838762216227,51.915273482248224],[177.40480475907597,51.93130203160316],[177.33301332753283,51.90458778267826],[177.29711761176125,51.8458164350435],[177.18943046444647,51.89390208310831],[177.29711761176125,51.9206163320332],[177.33301332753283,51.96335913031303],[177.5124919063907,51.9954162290229],[177.5124919063907,52.038159027302726],[177.54838762216227,52.12364462386238],[177.6201790537054,52.13967317321732],[177.69197048524856,52.09158752515251],[177.6201790537054,52.06487327622762],[177.58428333793384,52.01678762816282]],[[179.77392200000006,51.947330580958095],[179.73802628422848,51.909930632463244],[179.66623485268533,51.87253068396839],[179.63033913691376,51.87253068396839],[179.52265198959904,51.89924493289329],[179.48675627382747,51.93664488138813],[179.48675627382747,51.98473052945294],[179.52265198959904,51.98473052945294],[179.5944434211422,52.01678762816282],[179.66623485268533,52.02213047794779],[179.77392200000006,51.968701980098004],[179.77392200000006,51.947330580958095]],[[178.44578051645172,51.979387679667965],[178.4816762322233,51.99007337923792],[178.55346766376644,51.974044829882985],[178.589363379538,51.947330580958095],[178.55346766376644,51.90458778267826],[178.51757194799487,51.89924493289329],[178.4816762322233,51.93130203160316],[178.44578051645172,51.979387679667965]],[[-176.0244127278728,52.02213047794779],[-176.0244127278728,51.974044829882985],[-176.09620415941595,51.968701980098004],[-176.16799559095912,52.000759078807874],[-176.2038913067307,52.06487327622762],[-176.13209987518752,52.1183017740774],[-176.06030844364437,52.10761607450745],[-175.98851701210123,52.038159027302726],[-176.0244127278728,52.02213047794779]],[[178.1227190745075,52.04884472687269],[178.19451050605065,52.03281617751775],[178.19451050605065,52.006101928592855],[178.1227190745075,51.98473052945294],[178.08682335873593,52.03281617751775],[178.1227190745075,52.04884472687269]],[[-174.3014183708371,52.27858726762676],[-174.37320980238025,52.27858726762676],[-174.4450012339234,52.30530151655165],[-174.4450012339234,52.32667291569157],[-174.37320980238025,52.315987216121606],[-174.3014183708371,52.3427014650465],[-174.33731408660867,52.380101413541354],[-174.19373122352238,52.4175013620362],[-174.08604407620763,52.39078711311131],[-173.9783569288929,52.32667291569157],[-173.9783569288929,52.2946158169817],[-174.05014836043605,52.225158769776975],[-174.19373122352238,52.23584446934693],[-174.19373122352238,52.198444520852085],[-174.1219397919792,52.16638742214221],[-174.08604407620763,52.12898747364736],[-174.15783550775078,52.12364462386238],[-174.22962693929395,52.10227322472247],[-174.33731408660867,52.11295892429243],[-174.40910551815182,52.04884472687269],[-174.4450012339234,52.05953042644264],[-174.55268838123814,52.038159027302726],[-174.6244798127813,52.03281617751775],[-174.732166960096,52.006101928592855],[-174.7680626758676,52.03281617751775],[-174.87574982318233,52.04350187708771],[-174.98343697049705,52.038159027302726],[-175.01933268626863,52.006101928592855],[-175.0911241178118,52.000759078807874],[-175.16291554935495,52.011444778377836],[-175.30649841244127,52.01678762816282],[-175.19881126512652,52.04884472687269],[-175.12701983358338,52.05953042644264],[-175.0911241178118,52.03281617751775],[-175.05522840204023,52.05953042644264],[-174.98343697049705,52.05953042644264],[-174.94754125472548,52.08090182558256],[-174.9116455389539,52.1183017740774],[-174.83985410741076,52.09158752515251],[-174.80395839163918,52.09158752515251],[-174.66037552855286,52.10761607450745],[-174.55268838123814,52.13967317321732],[-174.51679266546657,52.17707312171217],[-174.40910551815182,52.18241597149715],[-174.4450012339234,52.219815919991994],[-174.3014183708371,52.21447307020702],[-174.26552265506552,52.24118731913191],[-174.26552265506552,52.27324441784178],[-174.3014183708371,52.27858726762676]],[[-173.61939977117714,52.15570172257225],[-173.5117126238624,52.10761607450745],[-173.47581690809082,52.1183017740774],[-173.3681297607761,52.10761607450745],[-173.3681297607761,52.09693037493749],[-173.11685975037506,52.10761607450745],[-173.0091726030603,52.09693037493749],[-173.0450683188319,52.07555897579758],[-173.11685975037506,52.08090182558256],[-173.22454689768978,52.06487327622762],[-173.29633832923292,52.05953042644264],[-173.54760833963397,52.02747332773277],[-173.61939977117714,52.04884472687269],[-173.72708691849186,52.06487327622762],[-173.83477406580658,52.038159027302726],[-173.90656549734976,52.04884472687269],[-173.9783569288929,52.09693037493749],[-174.01425264466448,52.09693037493749],[-174.05014836043605,52.12898747364736],[-173.90656549734976,52.12364462386238],[-173.798878350035,52.10761607450745],[-173.72708691849186,52.12898747364736],[-173.61939977117714,52.15570172257225]],[[-172.65021544534454,52.2679015680568],[-172.61431972957297,52.29995866676667],[-172.5784240138014,52.34804431483148],[-172.43484115071507,52.39078711311131],[-172.32715400340035,52.36407286418642],[-172.29125828762878,52.33201576547655],[-172.3989454349435,52.27858726762676],[-172.54252829802982,52.251873018701865],[-172.61431972957297,52.251873018701865],[-172.65021544534454,52.2679015680568]],[[175.8971846966697,52.33735861526152],[175.8971846966697,52.37475856375637],[175.96897612821286,52.35873001440144],[175.8971846966697,52.33735861526152]],[[173.59985888728878,52.476272709670965],[173.63575460306035,52.508329808380836],[173.7793374661467,52.51367265816582],[173.7075460346035,52.476272709670965],[173.7075460346035,52.444215610961095],[173.7075460346035,52.42284421182118],[173.74344175037507,52.35873001440144],[173.63575460306035,52.35873001440144],[173.59985888728878,52.40147281268126],[173.45627602420248,52.38544426332633],[173.38448459265933,52.40147281268126],[173.38448459265933,52.43352991139113],[173.45627602420248,52.45490131053105],[173.52806745574563,52.44955846074607],[173.59985888728878,52.476272709670965]],[[-171.2861782460246,52.44955846074607],[-171.32207396179618,52.4923012590259],[-171.25028253025303,52.52970120752075],[-171.17849109870988,52.49764410881088],[-171.25028253025303,52.44955846074607],[-171.2861782460246,52.44955846074607]],[[-170.8554296567657,52.55641545644564],[-170.81953394099412,52.63655820322032],[-170.71184679367937,52.67930100150015],[-170.64005536213622,52.695329550855085],[-170.56826393059308,52.67395815171517],[-170.56826393059308,52.6419010530053],[-170.60415964636465,52.59915825472547],[-170.6759510779078,52.60450110451045],[-170.74774250945094,52.58312970537053],[-170.78363822522255,52.540386907090706],[-170.8554296567657,52.55641545644564]],[[-170.1734110571057,52.786157997199716],[-170.065723909791,52.77547229762976],[-170.065723909791,52.722043799779975],[-170.1734110571057,52.722043799779975],[-170.1734110571057,52.786157997199716]],[[172.77425742454253,52.82355794569457],[172.73836170877095,52.876986443544354],[172.63067456145617,52.92507209160916],[172.52298741414145,52.90370069246924],[172.4511959825983,52.92507209160916],[172.63067456145617,52.999871988598855],[172.73836170877095,53.01055768816882],[173.0973188664867,52.99452913881388],[173.2050060138014,52.941100640964095],[173.3126931611162,52.92507209160916],[173.4203803084309,52.84492934483448],[173.4203803084309,52.82890079547955],[173.3126931611162,52.82355794569457],[173.24090172957304,52.85561504440444],[173.2050060138014,52.85027219461946],[173.16911029802984,52.79684369676967],[173.13321458225826,52.786157997199716],[172.98963171917197,52.79684369676967],[172.91784028762882,52.759443748274826],[172.8101531403141,52.7915008469847],[172.77425742454253,52.82355794569457]],[[-169.95803676247627,52.86095789418942],[-169.85034961516152,52.86095789418942],[-169.77855818361837,52.89301499289929],[-169.70676675207523,52.88767214311431],[-169.67087103630365,52.86630074397439],[-169.70676675207523,52.7915008469847],[-169.7426624678468,52.7915008469847],[-169.85034961516152,52.818215095909586],[-169.95803676247627,52.7915008469847],[-170.02982819401942,52.82890079547955],[-169.99393247824784,52.85561504440444],[-169.95803676247627,52.86095789418942]],[[-168.19914668966896,53.256328778277826],[-168.27093812121214,53.24030022892289],[-168.3427295527553,53.186871731073104],[-168.3427295527553,53.154814632363234],[-168.45041670007,53.08535758515851],[-168.4863124158416,53.037271937093706],[-168.59399956315633,53.02658623752375],[-168.70168671047105,52.967814889888984],[-168.73758242624262,52.95178634053405],[-168.91706100510052,52.88232929332933],[-169.02474815241524,52.8395864950495],[-169.06064386818684,52.86095789418942],[-168.9529567208721,52.88767214311431],[-168.84526957355737,52.967814889888984],[-168.7734781420142,53.08001473537353],[-168.8093738577858,53.10672898429843],[-168.8093738577858,53.14412893279328],[-168.7734781420142,53.18152888128812],[-168.6298952789279,53.2616716280628],[-168.52220813161318,53.250985928492845],[-168.45041670007,53.26701447784778],[-168.37862526852686,53.250985928492845],[-168.37862526852686,53.30975727612761],[-168.41452098429843,53.34715722462246],[-168.37862526852686,53.432642821182114],[-168.3427295527553,53.475385619461946],[-168.19914668966896,53.534156967096706],[-168.0196681108111,53.56621406580658],[-167.94787667926795,53.53949981688169],[-167.91198096349638,53.51812841774177],[-167.80429381618163,53.51812841774177],[-167.76839810041005,53.502099868386836],[-167.87608524772477,53.437985670967095],[-167.8401895319532,53.38455717311731],[-168.05556382658267,53.30441442634263],[-168.19914668966896,53.256328778277826]],[[-169.99393247824784,52.89301499289929],[-170.065723909791,52.85561504440444],[-170.10161962556256,52.87164359375937],[-170.10161962556256,52.90370069246924],[-170.10161962556256,52.92507209160916],[-169.99393247824784,52.909043542254224],[-169.99393247824784,52.89301499289929]],[[-169.70676675207523,52.94644349074907],[-169.77855818361837,52.978500589458946],[-169.7426624678468,53.02124338773877],[-169.67087103630365,53.037271937093706],[-169.67087103630365,52.99452913881388],[-169.70676675207523,52.94644349074907]],[[-166.7274223430343,54.004327748174816],[-166.65563091149116,54.01501344774477],[-166.583839479948,53.9829563490349],[-166.65563091149116,53.92418500140014],[-166.61973519571958,53.89212790269026],[-166.54794376417644,53.88144220312031],[-166.4402566168617,53.908156452045205],[-166.4402566168617,53.95624210011001],[-166.36846518531854,54.00967059795979],[-166.36846518531854,53.97761349924992],[-166.33256946954697,53.961584949894984],[-166.2966737537754,53.9829563490349],[-166.22488232223225,53.934870700970095],[-166.22488232223225,53.88144220312031],[-166.33256946954697,53.87075650355035],[-166.40436090109012,53.8333565550555],[-166.40436090109012,53.811985155915586],[-166.54794376417644,53.747870958495845],[-166.54794376417644,53.715813859785975],[-166.47615233263326,53.73718525892589],[-166.40436090109012,53.76389950785078],[-166.22488232223225,53.81732800570057],[-166.18898660646065,53.83869940484048],[-166.1171951749175,53.85472795419542],[-166.08129945914592,53.83869940484048],[-166.1171951749175,53.77458520742074],[-166.15309089068907,53.73184240914091],[-166.26077803800382,53.70512816021602],[-166.2966737537754,53.683756761076104],[-166.4402566168617,53.64101396279628],[-166.47615233263326,53.64635681258125],[-166.54794376417644,53.624985413441344],[-166.583839479948,53.528814117311725],[-166.65563091149116,53.4860713190319],[-166.7274223430343,53.507442718171816],[-166.76331805880588,53.496757018601855],[-166.79921377457748,53.45401422032203],[-166.87100520612063,53.42729997139713],[-166.94279663766378,53.45401422032203],[-166.97869235343535,53.42729997139713],[-167.12227521652167,53.42729997139713],[-167.30175379537954,53.36318577397739],[-167.30175379537954,53.3364715250525],[-167.37354522692272,53.34181437483748],[-167.44533665846586,53.32044297569757],[-167.48123237423744,53.26701447784778],[-167.58891952155216,53.2883858769877],[-167.66071095309533,53.250985928492845],[-167.80429381618163,53.283043027202716],[-167.8401895319532,53.315100125912586],[-167.80429381618163,53.3364715250525],[-167.6966066688669,53.38990002290229],[-167.62481523732373,53.38455717311731],[-167.48123237423744,53.42195712161216],[-167.44533665846586,53.443328520752075],[-167.37354522692272,53.42195712161216],[-167.26585807960797,53.48072846924692],[-167.19406664806482,53.464699919891984],[-167.15817093229325,53.502099868386836],[-167.0863795007501,53.51278556795679],[-167.12227521652167,53.55018551645164],[-167.15817093229325,53.60361401430143],[-167.15817093229325,53.624985413441344],[-167.0504837849785,53.61964256365636],[-167.01458806920692,53.6356711130113],[-167.0863795007501,53.66772821172117],[-167.0504837849785,53.69978531043104],[-167.01458806920692,53.721156709570955],[-166.9069009218922,53.715813859785975],[-166.87100520612063,53.67307106150615],[-166.79921377457748,53.66772821172117],[-166.79921377457748,53.73718525892589],[-166.97869235343535,53.77458520742074],[-167.01458806920692,53.75855665806581],[-167.15817093229325,53.82801370527052],[-167.15817093229325,53.86541365376537],[-167.01458806920692,53.94555640054005],[-166.87100520612063,53.98829919881988],[-166.83510949034905,53.993642048604855],[-166.76331805880588,54.01501344774477],[-166.7274223430343,54.004327748174816]],[[-169.5631838889889,56.60629559345934],[-169.49139245744576,56.58492419431943],[-169.59907960476048,56.53683854625462],[-169.63497532053208,56.5421813960396],[-169.67087103630365,56.58492419431943],[-169.7426624678468,56.59026704410441],[-169.77855818361837,56.62232414281428],[-169.59907960476048,56.60629559345934],[-169.5631838889889,56.60629559345934]],[[-173.0450683188319,60.624118631763174],[-173.11685975037506,60.66151858025802],[-173.08096403460348,60.693575678967896],[-173.0450683188319,60.624118631763174]],[[-165.72234230143016,60.16997640004],[-165.6864465856586,60.14860500090008],[-165.6864465856586,60.05777655455545],[-165.650550869887,59.99366235713571],[-165.57875943834384,59.966948108210815],[-165.54286372257226,59.966948108210815],[-165.57875943834384,59.902833910791074],[-165.6864465856586,59.89214821122112],[-165.75823801720173,59.8974910610061],[-166.00950802760278,59.84940541294129],[-166.08129945914592,59.80666261466146],[-166.04540374337435,59.76926266616661],[-166.04540374337435,59.7478912670267],[-166.15309089068907,59.7478912670267],[-166.18898660646065,59.79063406530653],[-166.36846518531854,59.84940541294129],[-166.4402566168617,59.86009111251125],[-166.61973519571958,59.84940541294129],[-166.65563091149116,59.8707768120812],[-166.76331805880588,59.89214821122112],[-166.9069009218922,59.96160525842584],[-166.97869235343535,59.99366235713571],[-167.12227521652167,59.99366235713571],[-167.2299623638364,60.05777655455545],[-167.33764951115114,60.07380510391039],[-167.37354522692272,60.14860500090008],[-167.4094409426943,60.19669064896489],[-167.30175379537954,60.23943344724472],[-167.12227521652167,60.23409059745974],[-166.94279663766378,60.20737634853485],[-166.79921377457748,60.22874774767477],[-166.83510949034905,60.27683339573957],[-166.76331805880588,60.30889049444944],[-166.65563091149116,60.32491904380438],[-166.583839479948,60.3195761940194],[-166.54794376417644,60.35697614251425],[-166.47615233263326,60.3943760910091],[-166.36846518531854,60.35697614251425],[-166.2966737537754,60.378347541654165],[-166.18898660646065,60.399718940794074],[-166.1171951749175,60.378347541654165],[-166.08129945914592,60.32491904380438],[-165.93771659605963,60.3195761940194],[-165.86592516451645,60.34629044294429],[-165.72234230143016,60.30889049444944],[-165.6864465856586,60.27683339573957],[-165.72234230143016,60.16997640004]],[[-173.0450683188319,60.5172616360636],[-173.0450683188319,60.54931873477347],[-172.93738117151716,60.60809008240824],[-172.93738117151716,60.60274723262326],[-172.9014854557456,60.53329018541854],[-172.79379830843087,60.45849028842884],[-172.54252829802982,60.38903324122412],[-172.36304971917193,60.38369039143914],[-172.21946685608563,60.3195761940194],[-172.36304971917193,60.33560474337433],[-172.47073686648667,60.33560474337433],[-172.5784240138014,60.3195761940194],[-172.7220068768877,60.35697614251425],[-172.93738117151716,60.47986168756875],[-173.0450683188319,60.495890236923685],[-173.0450683188319,60.5172616360636]],[[-160.91231638803882,58.74877835723572],[-160.84052495649567,58.754121207020695],[-160.69694209340935,58.81823540444044],[-160.69694209340935,58.81289255465546],[-160.87642067226724,58.58315001390139],[-160.9482121038104,58.55109291519152],[-161.0917949668967,58.55109291519152],[-161.0917949668967,58.58849286368636],[-161.0558992511251,58.700692709170916],[-160.91231638803882,58.74877835723572]],[[-135.35456675867587,59.02126369626962],[-135.28277532713273,58.95714949884988],[-135.3186710429043,58.946463799279925],[-135.35456675867587,59.02126369626962]],[[-150.78972454045405,59.33114898379838],[-150.68203739313932,59.411291730573055],[-150.61024596159618,59.39526318121812],[-150.61024596159618,59.35786323272327],[-150.68203739313932,59.30443473487348],[-150.7179331089109,59.29374903530353],[-150.78972454045405,59.30977758465846],[-150.78972454045405,59.33114898379838]],[[-151.9383874451445,60.5172616360636],[-151.8307002978298,60.48520453735373],[-151.9383874451445,60.431776039503944],[-151.97428316091612,60.38903324122412],[-151.9383874451445,60.3676618420842],[-152.08197030823084,60.36231899229923],[-151.97428316091612,60.41574749014901],[-151.9383874451445,60.51191878627862],[-151.9383874451445,60.5172616360636]],[[-153.5536946548655,59.38992033143314],[-153.51779893909392,59.38992033143314],[-153.41011179177917,59.416634580358036],[-153.33832036023603,59.379234631863184],[-153.3742160760076,59.33649183358335],[-153.41011179177917,59.32046328422842],[-153.51779893909392,59.32046328422842],[-153.58959037063707,59.3738917820782],[-153.5536946548655,59.38992033143314]],[[-131.1906637291729,55.11029765366536],[-131.1906637291729,55.08892625452545],[-131.22655944494448,55.04618345624562],[-131.22655944494448,55.09426910431043],[-131.1906637291729,55.11029765366536]],[[-131.26245516071606,54.987412108610854],[-131.22655944494448,54.928640760976094],[-131.1906637291729,54.91261221162116],[-131.26245516071606,54.85918371377137],[-131.3701423080308,54.85918371377137],[-131.47782945534556,54.91261221162116],[-131.47782945534556,54.95001216011601],[-131.26245516071606,54.998097808180816],[-131.26245516071606,54.987412108610854]],[[-131.76499518151815,55.38278299269927],[-131.65730803420342,55.30798309570957],[-131.693203749975,55.28126884678468],[-131.693203749975,55.22249749914991],[-131.72909946574657,55.20112610001],[-131.76499518151815,55.1263262030203],[-131.83678661306132,55.20112610001],[-131.8726823288329,55.29195454635463],[-131.8726823288329,55.366754443344334],[-131.83678661306132,55.42018294119411],[-131.80089089728972,55.41484009140914],[-131.76499518151815,55.38278299269927]],[[-158.79446915751575,55.89035372227222],[-158.75857344174418,55.87432517291729],[-158.68678201020103,55.84226807420742],[-158.7226777259726,55.82623952485248],[-158.86626058905892,55.87966802270227],[-158.79446915751575,55.89035372227222]],[[-159.15342631523154,55.87432517291729],[-159.08163488368837,55.85295377377737],[-159.11753059945997,55.82623952485248],[-159.18932203100312,55.84226807420742],[-159.15342631523154,55.87432517291729]],[[-159.368800609861,55.80486812571257],[-159.3329048940894,55.81555382528253],[-159.29700917831784,55.76212532743274],[-159.368800609861,55.75143962786278],[-159.368800609861,55.80486812571257]],[[-157.82528483168318,56.37121020292029],[-157.7893891159116,56.32312455485548],[-157.82528483168318,56.31243885528553],[-157.89707626322632,56.3444959539954],[-157.82528483168318,56.37121020292029]],[[-157.03557908470847,56.55820994539454],[-157.10737051625165,56.55286709560956],[-157.1791619477948,56.53149569646964],[-157.3227448108811,56.52615284668467],[-157.3227448108811,56.5421813960396],[-157.25095337933794,56.579581344534446],[-157.07147480048005,56.579581344534446],[-157.03557908470847,56.55820994539454]],[[-133.23671952815283,55.40949724162416],[-133.30851095969598,55.41484009140914],[-133.30851095969598,55.44689719011901],[-133.23671952815283,55.452240039903984],[-133.23671952815283,55.40949724162416]],[[-131.58551660266028,55.28661169656965],[-131.47782945534556,55.25455459785978],[-131.47782945534556,55.22249749914991],[-131.40603802380238,55.211811799579955],[-131.33424659225923,55.16372615151515],[-131.3701423080308,55.15838330173017],[-131.33424659225923,55.06755485538554],[-131.40603802380238,55.01412635753575],[-131.47782945534556,55.00878350775077],[-131.5496208868887,55.03549775667567],[-131.62141231843185,55.00878350775077],[-131.65730803420342,55.03549775667567],[-131.58551660266028,55.08892625452545],[-131.58551660266028,55.1263262030203],[-131.5496208868887,55.14235475237523],[-131.58551660266028,55.179754700870085],[-131.62141231843185,55.238526048504845],[-131.58551660266028,55.28661169656965]],[[-133.34440667546755,55.56978273517351],[-133.2726152439244,55.53772563646364],[-133.30851095969598,55.48429713861386],[-133.34440667546755,55.452240039903984],[-133.38030239123913,55.4736114390439],[-133.48798953855385,55.43621149054905],[-133.4161981070107,55.42018294119411],[-133.4161981070107,55.38812584248424],[-133.48798953855385,55.366754443344334],[-133.55978097009702,55.3240116450645],[-133.5956766858686,55.243868898289826],[-133.70336383318332,55.302640245924586],[-133.63157240164017,55.36141159355935],[-133.63157240164017,55.430868640764075],[-133.7392595489549,55.4736114390439],[-133.7751552647265,55.457582889688965],[-133.7751552647265,55.53772563646364],[-133.7392595489549,55.55909703560356],[-133.63157240164017,55.5484113360336],[-133.5956766858686,55.50566853775377],[-133.63157240164017,55.489639988398835],[-133.63157240164017,55.457582889688965],[-133.55978097009702,55.489639988398835],[-133.52388525432542,55.527039936893686],[-133.48798953855385,55.51101138753875],[-133.45209382278227,55.55909703560356],[-133.34440667546755,55.56978273517351]],[[-133.84694669626964,55.90638227162716],[-133.8828424120412,55.8476109239924],[-133.9187381278128,55.8476109239924],[-133.95463384358436,55.895696572057204],[-133.9187381278128,55.922410820982094],[-133.84694669626964,55.93309652055205],[-133.84694669626964,55.90638227162716]],[[-133.0931366650665,55.425525790979094],[-133.16492809660966,55.5003256879688],[-133.12903238083808,55.51101138753875],[-133.16492809660966,55.58581128452845],[-133.2726152439244,55.56978273517351],[-133.30851095969598,55.59115413431343],[-133.45209382278227,55.644582632163214],[-133.38030239123913,55.69266828022802],[-133.4161981070107,55.740753928292825],[-133.52388525432542,55.75678247764776],[-133.48798953855385,55.708696829582955],[-133.52388525432542,55.69266828022802],[-133.63157240164017,55.73006822872287],[-133.70336383318332,55.77815387678768],[-133.66746811741174,55.8208966750675],[-133.55978097009702,55.83692522442244],[-133.4161981070107,55.78883957635763],[-133.34440667546755,55.80486812571257],[-133.38030239123913,55.87432517291729],[-133.45209382278227,55.90638227162716],[-133.52388525432542,55.97583931883188],[-133.63157240164017,55.922410820982094],[-133.70336383318332,55.895696572057204],[-133.81105098049807,55.927753670767075],[-133.81105098049807,55.965153619261926],[-133.7751552647265,55.98118216861686],[-133.70336383318332,56.07201061496149],[-133.55978097009702,56.141467662166214],[-133.55978097009702,56.16283906130613],[-133.63157240164017,56.200239009800974],[-133.66746811741174,56.31243885528553],[-133.63157240164017,56.3444959539954],[-133.5956766858686,56.34983880378037],[-133.4161981070107,56.33381025442544],[-133.34440667546755,56.33381025442544],[-133.16492809660966,56.3177817050705],[-133.05724094929494,56.237638958295825],[-133.05724094929494,56.18421046044604],[-133.05724094929494,56.12543911281128],[-132.9136580862086,56.03461066646664],[-132.84186665466547,56.023924966896686],[-132.62649236003602,55.922410820982094],[-132.4829094969497,55.78349672657265],[-132.44701378117813,55.681982580658065],[-132.37522234963495,55.649925481948195],[-132.33932663386338,55.58046843474347],[-132.3034309180918,55.5484113360336],[-132.19574377077709,55.51101138753875],[-132.1598480550055,55.46826858925892],[-132.19574377077709,55.452240039903984],[-132.23163948654866,55.494982838183816],[-132.51880521272128,55.57512558495849],[-132.51880521272128,55.5484113360336],[-132.62649236003602,55.48429713861386],[-132.55470092849285,55.47895428882888],[-132.51880521272128,55.521697087108706],[-132.4829094969497,55.50566853775377],[-132.41111806540655,55.51101138753875],[-132.37522234963495,55.47895428882888],[-132.3034309180918,55.46826858925892],[-132.3034309180918,55.43621149054905],[-132.4829094969497,55.425525790979094],[-132.37522234963495,55.40415439183918],[-132.26753520232023,55.42018294119411],[-132.23163948654866,55.37744014291429],[-132.1598480550055,55.36141159355935],[-132.12395233923394,55.28661169656965],[-132.1598480550055,55.238526048504845],[-132.19574377077709,55.217154649364936],[-132.12395233923394,55.20112610001],[-132.08805662346236,55.206468949794974],[-132.08805662346236,55.238526048504845],[-132.0162651919192,55.275925996999696],[-131.98036947614762,55.25989744764476],[-131.98036947614762,55.211811799579955],[-131.98036947614762,55.16372615151515],[-132.0162651919192,55.15304045194519],[-132.0162651919192,55.12098335323532],[-132.08805662346236,55.04084060646064],[-132.19574377077709,55.00344065796579],[-132.12395233923394,54.987412108610854],[-132.0521609076908,55.03549775667567],[-131.98036947614762,55.03015490689069],[-131.98036947614762,54.8538408639864],[-131.94447376037604,54.78972666656665],[-132.0162651919192,54.69889822022202],[-132.1598480550055,54.69355537043704],[-132.26753520232023,54.73629816871687],[-132.3034309180918,54.720269619361936],[-132.33932663386338,54.81644091549155],[-132.3034309180918,54.84849801420142],[-132.37522234963495,54.91261221162116],[-132.4829094969497,54.901926512051205],[-132.62649236003602,54.966040709470946],[-132.59059664426442,54.998097808180816],[-132.55470092849285,55.09961195409541],[-132.62649236003602,55.115640503450344],[-132.62649236003602,55.15304045194519],[-132.73417950735075,55.13166905280528],[-132.69828379157917,55.04618345624562],[-132.73417950735075,54.998097808180816],[-132.9136580862086,55.04618345624562],[-132.9136580862086,55.08358340474047],[-132.87776237043704,55.1263262030203],[-132.9495538019802,55.211811799579955],[-133.02134523352336,55.206468949794974],[-133.05724094929494,55.249211748074806],[-133.12903238083808,55.249211748074806],[-133.05724094929494,55.185097550655065],[-133.02134523352336,55.1263262030203],[-132.9854495177518,55.06755485538554],[-133.02134523352336,55.03549775667567],[-132.9495538019802,55.01946920732073],[-132.87776237043704,54.896583662266224],[-132.8059709388939,54.869869413341334],[-132.8059709388939,54.92329791119111],[-132.73417950735075,54.93932646054605],[-132.6623880758076,54.901926512051205],[-132.62649236003602,54.88589796269627],[-132.62649236003602,54.779040966996696],[-132.6623880758076,54.76301241764176],[-132.73417950735075,54.8271266150615],[-132.77007522312232,54.82178376527652],[-132.6623880758076,54.682869670867085],[-132.77007522312232,54.67218397129712],[-132.87776237043704,54.69889822022202],[-132.87776237043704,54.75232671807181],[-132.9495538019802,54.78972666656665],[-133.02134523352336,54.8538408639864],[-133.12903238083808,54.93932646054605],[-133.16492809660966,54.960697859685965],[-133.16492809660966,55.03015490689069],[-133.20082381238126,55.04084060646064],[-133.23671952815283,55.09426910431043],[-133.12903238083808,55.09961195409541],[-133.16492809660966,55.1263262030203],[-133.20082381238126,55.13701190259025],[-133.23671952815283,55.185097550655065],[-133.16492809660966,55.20112610001],[-133.23671952815283,55.22784034893489],[-133.34440667546755,55.206468949794974],[-133.38030239123913,55.22784034893489],[-133.45209382278227,55.211811799579955],[-133.48798953855385,55.249211748074806],[-133.45209382278227,55.31866879527952],[-133.38030239123913,55.34004019441944],[-133.34440667546755,55.34538304420442],[-133.30851095969598,55.29195454635463],[-133.23671952815283,55.30798309570957],[-133.2726152439244,55.3507258939894],[-133.23671952815283,55.38278299269927],[-133.12903238083808,55.37744014291429],[-133.05724094929494,55.35606874377437],[-133.05724094929494,55.40415439183918],[-133.0931366650665,55.425525790979094]],[[-147.48731868946896,60.618775781978194],[-147.48731868946896,60.656175730473045],[-147.48731868946896,60.72563277767777],[-147.37963154215421,60.7416613270327],[-147.30784011061107,60.666861430043],[-147.34373582638264,60.62946148154815],[-147.48731868946896,60.618775781978194]],[[-147.34373582638264,60.30354764466446],[-147.34373582638264,60.27683339573957],[-147.48731868946896,60.223404897889786],[-147.48731868946896,60.26614769616961],[-147.34373582638264,60.30354764466446]],[[-147.20015296329635,60.29286194509451],[-147.20015296329635,60.3195761940194],[-147.20015296329635,60.34629044294429],[-147.12836153175317,60.378347541654165],[-147.05657010021002,60.340947593159314],[-147.02067438443845,60.32491904380438],[-147.0924658159816,60.29286194509451],[-147.0924658159816,60.26614769616961],[-146.9488829528953,60.31423334423442],[-146.91298723712373,60.29820479487948],[-146.98477866866688,60.23409059745974],[-147.20015296329635,60.14860500090008],[-147.37963154215421,60.04174800520052],[-147.37963154215421,60.004348056705666],[-147.48731868946896,59.95626240864086],[-147.48731868946896,59.92420530993099],[-147.4514229736974,59.913519610361035],[-147.4514229736974,59.8707768120812],[-147.52321440524054,59.85474826272627],[-147.63090155255526,59.86543396229622],[-147.7026929840984,59.81734831423142],[-147.73858869986998,59.8226911640164],[-147.8821715629563,59.785291215521546],[-147.91806727872788,59.80131976487648],[-147.8821715629563,59.8707768120812],[-147.81038013141315,59.88680536143614],[-147.81038013141315,59.934891009500944],[-147.73858869986998,59.966948108210815],[-147.7026929840984,59.966948108210815],[-147.63090155255526,60.004348056705666],[-147.5591101210121,60.05243370477047],[-147.4155272579258,60.095176503050304],[-147.30784011061107,60.191347799179916],[-147.30784011061107,60.223404897889786],[-147.23604867906792,60.22874774767477],[-147.20015296329635,60.27149054595459],[-147.20015296329635,60.29286194509451]],[[-147.5591101210121,60.58137583348334],[-147.5591101210121,60.53329018541854],[-147.59500583678368,60.50657593649365],[-147.63090155255526,60.437118889288925],[-147.7026929840984,60.405061790579055],[-147.63090155255526,60.3676618420842],[-147.7026929840984,60.28751909530953],[-147.7026929840984,60.2447762970297],[-147.77448441564158,60.153947850685064],[-147.84627584718473,60.19669064896489],[-147.84627584718473,60.218062048104805],[-147.95396299449945,60.22874774767477],[-147.91806727872788,60.27149054595459],[-147.81038013141315,60.474518837783776],[-147.73858869986998,60.474518837783776],[-147.73858869986998,60.50657593649365],[-147.63090155255526,60.56534728412841],[-147.5591101210121,60.58137583348334]],[[-147.95396299449945,60.7416613270327],[-147.91806727872788,60.73631847724772],[-147.84627584718473,60.69891852875287],[-147.8821715629563,60.67220427982798],[-147.91806727872788,60.656175730473045],[-148.02575442604262,60.72563277767777],[-147.95396299449945,60.7416613270327]],[[-147.12836153175317,60.91263252015201],[-147.05657010021002,60.8912611210121],[-147.12836153175317,60.85386117251725],[-147.30784011061107,60.88057542144214],[-147.23604867906792,60.91263252015201],[-147.12836153175317,60.91263252015201]],[[-132.55470092849285,56.63300984238423],[-132.51880521272128,56.670409790879084],[-132.44701378117813,56.65438124152415],[-132.33932663386338,56.64903839173917],[-132.41111806540655,56.58492419431943],[-132.44701378117813,56.58492419431943],[-132.55470092849285,56.63300984238423]],[[-132.9136580862086,56.09872486388638],[-132.9854495177518,56.15215336173617],[-132.9854495177518,56.242981808080806],[-132.9495538019802,56.237638958295825],[-132.9136580862086,56.210924709370936],[-132.87776237043704,56.13078196259626],[-132.9136580862086,56.09872486388638]],[[-132.51880521272128,56.56355279517951],[-132.51880521272128,56.5421813960396],[-132.59059664426442,56.451352949694964],[-132.6623880758076,56.47272434883488],[-132.59059664426442,56.51012429732973],[-132.51880521272128,56.56355279517951]],[[-132.55470092849285,56.40326730163016],[-132.4829094969497,56.44066725012501],[-132.41111806540655,56.40326730163016],[-132.41111806540655,56.38723875227522],[-132.4829094969497,56.35518165356535],[-132.55470092849285,56.36586735313531],[-132.55470092849285,56.40326730163016]],[[-132.9854495177518,56.44066725012501],[-132.87776237043704,56.456695799479945],[-132.8059709388939,56.44066725012501],[-132.73417950735075,56.456695799479945],[-132.6623880758076,56.44066725012501],[-132.62649236003602,56.392581602060204],[-132.69828379157917,56.3444959539954],[-132.6623880758076,56.301753155715566],[-132.6623880758076,56.27503890679068],[-132.73417950735075,56.25901035743574],[-132.87776237043704,56.242981808080806],[-133.05724094929494,56.33381025442544],[-133.05724094929494,56.37121020292029],[-132.9854495177518,56.44066725012501]],[[-136.03658535833586,58.32135037443744],[-136.03658535833586,58.27326472637263],[-136.108376789879,58.257236177017695],[-136.14427250565058,58.27860757615761],[-136.108376789879,58.3053218250825],[-136.03658535833586,58.32135037443744]],[[-135.6417324848485,58.380121722072204],[-135.53404533753377,58.3320360740074],[-135.6417324848485,58.32669322422242],[-135.71352391639164,58.36409317271727],[-135.6417324848485,58.380121722072204]],[[-134.7084438747875,58.21983622852285],[-134.7084438747875,58.161064880888084],[-134.63665244324432,58.161064880888084],[-134.56486101170117,58.193121979597954],[-134.5289652959296,58.17709343024302],[-134.45717386438645,58.171750580458045],[-134.3853824328433,58.15037918131813],[-134.2059038539854,58.161064880888084],[-134.17000813821383,58.134350631963194],[-134.2059038539854,58.08092213411341],[-134.09821670667066,58.01680793669367],[-134.09821670667066,57.974065138413835],[-134.0264252751275,57.93132234013401],[-133.95463384358436,57.856522443144314],[-133.9187381278128,57.8084367950795],[-133.8828424120412,57.685551250025],[-133.81105098049807,57.63212275217521],[-133.81105098049807,57.58403710411041],[-133.84694669626964,57.57869425432543],[-133.84694669626964,57.62143705260526],[-133.99052955935593,57.71760834873487],[-134.0264252751275,57.81912249464946],[-134.09821670667066,57.85117959335933],[-134.13411242244226,57.89392239163916],[-134.2059038539854,57.89392239163916],[-134.09821670667066,57.8084367950795],[-134.09821670667066,57.77637969636963],[-134.13411242244226,57.760351147014696],[-134.09821670667066,57.728294048304825],[-134.0264252751275,57.6588370011001],[-133.9187381278128,57.61609420282028],[-133.95463384358436,57.56800855475547],[-133.84694669626964,57.46649440884088],[-133.9187381278128,57.455808709270926],[-133.8828424120412,57.38100881228122],[-133.8828424120412,57.35963741314131],[-133.95463384358436,57.30620891529153],[-134.0264252751275,57.32758031443144],[-134.09821670667066,57.295523215721566],[-134.17000813821383,57.21003761916191],[-134.27769528552855,57.135237722172214],[-134.3853824328433,57.1138663230323],[-134.3853824328433,57.08715207410741],[-134.49306958015802,57.03372357625762],[-134.60075672747274,57.03372357625762],[-134.63665244324432,57.108523473247324],[-134.63665244324432,57.22606616851685],[-134.60075672747274,57.27415181658166],[-134.5289652959296,57.31689461486148],[-134.56486101170117,57.34360886378637],[-134.56486101170117,57.40238021142114],[-134.49306958015802,57.37032311271127],[-134.45717386438645,57.391694511851185],[-134.60075672747274,57.514580056905686],[-134.60075672747274,57.56266570497049],[-134.6725481590159,57.61609420282028],[-134.7084438747875,57.685551250025],[-134.74433959055906,57.72295119851985],[-134.7084438747875,57.82980819421942],[-134.74433959055906,57.89926524142414],[-134.74433959055906,57.979407988198815],[-134.78023530633064,58.05955073497349],[-134.78023530633064,58.09695068346834],[-134.85202673787379,58.17709343024302],[-134.92381816941696,58.21449337873787],[-134.95971388518853,58.28395042594259],[-134.95971388518853,58.36943602250225],[-134.95971388518853,58.412178820782074],[-134.8161310221022,58.32135037443744],[-134.78023530633064,58.27860757615761],[-134.7084438747875,58.26792187658766],[-134.7084438747875,58.21983622852285]],[[-156.6766219269927,56.06666776517651],[-156.6766219269927,56.02926781668167],[-156.74841335853586,56.03461066646664],[-156.6766219269927,56.06666776517651]],[[-151.86659601360137,58.257236177017695],[-151.79480458205822,58.24655047744774],[-151.8307002978298,58.182436280028],[-151.90249172937294,58.193121979597954],[-151.86659601360137,58.257236177017695]],[[-151.9383874451445,58.914406700570055],[-152.08197030823084,58.914406700570055],[-152.04607459245926,58.946463799279925],[-152.0101788766877,58.941120949494945],[-151.9383874451445,58.914406700570055]],[[-155.67154188538854,55.85829662356235],[-155.63564616961696,55.895696572057204],[-155.5997504538454,55.91172512141214],[-155.56385473807381,55.88501087248724],[-155.5997504538454,55.8476109239924],[-155.56385473807381,55.81021097549755],[-155.5997504538454,55.76212532743274],[-155.70743760116014,55.772811027002696],[-155.7433333169317,55.82623952485248],[-155.67154188538854,55.85829662356235]],[[-152.22555317131713,58.24120762766276],[-152.2973446028603,58.21983622852285],[-152.2614488870887,58.134350631963194],[-152.33324031863188,58.11832208260826],[-152.47682318171817,58.12900778217821],[-152.58451032903292,58.11297923282328],[-152.54861461326135,58.161064880888084],[-152.58451032903292,58.17709343024302],[-152.6204060448045,58.08092213411341],[-152.65630176057607,58.05955073497349],[-152.7639889078908,58.04886503540354],[-152.79988462366236,58.08092213411341],[-152.9434674867487,58.11832208260826],[-153.01525891829183,58.134350631963194],[-153.08705034983498,58.09695068346834],[-153.01525891829183,58.043522185618556],[-152.87167605520554,58.00077938733873],[-152.9434674867487,57.984750837983796],[-153.08705034983498,58.00612223712371],[-153.30242464446445,58.04886503540354],[-153.3742160760076,58.03817933583358],[-153.41011179177917,58.07023643454345],[-153.30242464446445,58.13969348174817],[-153.26652892869288,58.14503633153315],[-153.19473749714973,58.102293533253324],[-153.15884178137816,58.12900778217821],[-153.2306332129213,58.161064880888084],[-153.19473749714973,58.20915052895289],[-153.15884178137816,58.21449337873787],[-153.08705034983498,58.193121979597954],[-153.01525891829183,58.21983622852285],[-153.08705034983498,58.257236177017695],[-153.0511546340634,58.3053218250825],[-152.9434674867487,58.27860757615761],[-152.87167605520554,58.28395042594259],[-152.9434674867487,58.3320360740074],[-152.9075717709771,58.34272177357735],[-152.83578033943394,58.32669322422242],[-152.7639889078908,58.36943602250225],[-152.83578033943394,58.37477887228722],[-152.87167605520554,58.40149312121212],[-152.79988462366236,58.412178820782074],[-152.72809319211922,58.46026446884688],[-152.6204060448045,58.476293018201815],[-152.65630176057607,58.508350116911686],[-152.65630176057607,58.56712146454645],[-152.58451032903292,58.62054996239623],[-152.51271889748975,58.59383571347134],[-152.4409274659466,58.62054996239623],[-152.36913603440345,58.636578511751175],[-152.33324031863188,58.58849286368636],[-152.36913603440345,58.5297215160516],[-152.40503175017503,58.51369296669667],[-152.51271889748975,58.42820737013701],[-152.47682318171817,58.353407473147314],[-152.36913603440345,58.36409317271727],[-152.36913603440345,58.42286452035203],[-152.2973446028603,58.417521670567055],[-152.18965745554556,58.353407473147314],[-152.1178660240024,58.39615027142714],[-152.08197030823084,58.36943602250225],[-152.15376173977398,58.29463612551255],[-151.97428316091612,58.34806462336233],[-151.97428316091612,58.32669322422242],[-151.97428316091612,58.26792187658766],[-151.97428316091612,58.21449337873787],[-152.08197030823084,58.15572203110311],[-152.1178660240024,58.15037918131813],[-152.18965745554556,58.171750580458045],[-152.18965745554556,58.21449337873787],[-152.22555317131713,58.24120762766276]],[[-154.41519183338335,56.57423849474947],[-154.37929611761177,56.55286709560956],[-154.52287898069807,56.50478144754475],[-154.63056612801282,56.47272434883488],[-154.73825327532754,56.40326730163016],[-154.81004470687068,56.43532440034003],[-154.70235755955596,56.520809996899686],[-154.52287898069807,56.60095274367436],[-154.45108754915492,56.60095274367436],[-154.41519183338335,56.57423849474947]],[[-153.94854752835283,56.55820994539454],[-153.8767560968097,56.53149569646964],[-153.94854752835283,56.50478144754475],[-154.12802610721073,56.49943859775977],[-154.1639218229823,56.51012429732973],[-154.23571325452545,56.488752898189816],[-154.3434004018402,56.51012429732973],[-154.37929611761177,56.5421813960396],[-154.30750468606863,56.59560989388939],[-154.23571325452545,56.611638443244324],[-154.19981753875388,56.60629559345934],[-154.09213039143916,56.6169812930293],[-154.05623467566758,56.55820994539454],[-153.94854752835283,56.55820994539454]],[[-152.40503175017503,57.81377964486448],[-152.33324031863188,57.8351510440044],[-152.2973446028603,57.78172254615461],[-152.4409274659466,57.77637969636963],[-152.51271889748975,57.73897974787479],[-152.4409274659466,57.669522700670065],[-152.47682318171817,57.605408503250324],[-152.4409274659466,57.59472280368036],[-152.36913603440345,57.62143705260526],[-152.2614488870887,57.62677990239023],[-152.15376173977398,57.62143705260526],[-152.15376173977398,57.58403710411041],[-152.2973446028603,57.514580056905686],[-152.33324031863188,57.43978015991599],[-152.36913603440345,57.42909446034603],[-152.51271889748975,57.450465859485945],[-152.51271889748975,57.43443731013101],[-152.58451032903292,57.46649440884088],[-152.65630176057607,57.4611515590559],[-152.72809319211922,57.477180108410835],[-152.72809319211922,57.50389435733573],[-152.9075717709771,57.487865807980796],[-152.7639889078908,57.455808709270926],[-152.58451032903292,57.38100881228122],[-152.6204060448045,57.32223746464646],[-152.69219747634764,57.27949466636663],[-152.7639889078908,57.29018036593659],[-152.83578033943394,57.263466117011696],[-152.87167605520554,57.29018036593659],[-152.9075717709771,57.32223746464646],[-153.01525891829183,57.3382660140014],[-153.08705034983498,57.32223746464646],[-153.08705034983498,57.28483751615161],[-153.01525891829183,57.30086606550655],[-152.9434674867487,57.25812326722672],[-153.01525891829183,57.231409018301825],[-153.08705034983498,57.21003761916191],[-153.19473749714973,57.22072331873187],[-153.15884178137816,57.17798052045204],[-152.9434674867487,57.188666220022],[-152.87167605520554,57.167294820882084],[-152.9075717709771,57.12455202260226],[-152.97936320252026,57.11920917281728],[-153.12294606560658,57.09249492389239],[-153.15884178137816,57.10318062346234],[-153.2306332129213,57.07646637453745],[-153.19473749714973,57.03372357625762],[-153.2306332129213,57.00700932733273],[-153.30242464446445,56.990980777977796],[-153.33832036023603,57.00700932733273],[-153.33832036023603,57.0390664260426],[-153.41011179177917,57.08180922432243],[-153.3742160760076,57.11920917281728],[-153.26652892869288,57.172637670667065],[-153.33832036023603,57.194009069806974],[-153.48190322332235,57.08715207410741],[-153.58959037063707,57.09249492389239],[-153.66138180218022,57.08715207410741],[-153.66138180218022,57.05509497539754],[-153.58959037063707,57.04975212561256],[-153.5536946548655,56.99632362776277],[-153.58959037063707,56.94289512991299],[-153.69727751795182,56.926866580558055],[-153.7331732337234,56.89480948184818],[-153.69727751795182,56.87343808270827],[-153.76906894949497,56.83603813421342],[-153.8408603810381,56.83603813421342],[-153.91265181258126,56.766581087008696],[-154.020338959896,56.74520968786879],[-154.020338959896,56.76123823722372],[-154.12802610721073,56.739866838083806],[-154.12802610721073,56.78260963636363],[-154.05623467566758,56.8413809839984],[-154.020338959896,56.857409533353334],[-153.94854752835283,56.916180880988094],[-153.8408603810381,56.958923679267926],[-153.91265181258126,56.96960937883788],[-153.9844432441244,56.953580829482945],[-153.9844432441244,56.99632362776277],[-153.94854752835283,57.06043782518252],[-153.80496466526654,57.1138663230323],[-153.8767560968097,57.11920917281728],[-153.9844432441244,57.06578067496749],[-154.09213039143916,56.96960937883788],[-154.1639218229823,56.94289512991299],[-154.19981753875388,56.91083803120312],[-154.23571325452545,56.87878093249324],[-154.30750468606863,56.84672383378337],[-154.30750468606863,56.916180880988094],[-154.37929611761177,56.958923679267926],[-154.52287898069807,56.990980777977796],[-154.52287898069807,57.07646637453745],[-154.52287898069807,57.194009069806974],[-154.63056612801282,57.268808966796676],[-154.70235755955596,57.28483751615161],[-154.73825327532754,57.31689461486148],[-154.70235755955596,57.40238021142114],[-154.70235755955596,57.445123009700964],[-154.63056612801282,57.509237207120705],[-154.55877469646964,57.54129430583058],[-154.52287898069807,57.57869425432543],[-154.45108754915492,57.56800855475547],[-154.3434004018402,57.63212275217521],[-154.23571325452545,57.6588370011001],[-154.09213039143916,57.64815130153015],[-154.020338959896,57.6588370011001],[-153.9844432441244,57.64815130153015],[-153.9844432441244,57.55198000540054],[-153.91265181258126,57.53060860626062],[-153.91265181258126,57.423751610561055],[-153.80496466526654,57.34895171357135],[-153.76906894949497,57.37032311271127],[-153.80496466526654,57.413065910991094],[-153.8767560968097,57.445123009700964],[-153.8767560968097,57.50389435733573],[-153.8767560968097,57.54129430583058],[-153.80496466526654,57.58937995389539],[-153.8767560968097,57.63212275217521],[-153.8408603810381,57.65349415131513],[-153.66138180218022,57.637465601960194],[-153.66138180218022,57.669522700670065],[-153.8767560968097,57.706922649164916],[-153.94854752835283,57.701579799379935],[-153.94854752835283,57.81377964486448],[-153.8408603810381,57.86720814271427],[-153.7331732337234,57.888579541854185],[-153.66138180218022,57.87789384228422],[-153.5536946548655,57.82980819421942],[-153.5536946548655,57.78706539593959],[-153.5536946548655,57.71760834873487],[-153.48190322332235,57.728294048304825],[-153.44600750755077,57.84049389378937],[-153.33832036023603,57.8084367950795],[-153.33832036023603,57.85117959335933],[-153.44600750755077,57.883236692069204],[-153.5536946548655,57.93132234013401],[-153.51779893909392,57.96872228862886],[-153.44600750755077,57.96337943884388],[-153.26652892869288,57.888579541854185],[-153.2306332129213,57.89392239163916],[-153.12294606560658,57.856522443144314],[-153.08705034983498,57.86720814271427],[-153.19473749714973,57.93132234013401],[-153.26652892869288,57.9580365890589],[-153.30242464446445,57.99543653755375],[-153.2306332129213,57.99543653755375],[-153.12294606560658,57.947350889488945],[-153.08705034983498,57.93666518991899],[-153.01525891829183,57.9580365890589],[-152.87167605520554,57.93132234013401],[-152.87167605520554,57.99543653755375],[-152.72809319211922,57.99009368776877],[-152.72809319211922,57.947350889488945],[-152.9075717709771,57.84049389378937],[-152.9075717709771,57.77103684658466],[-152.83578033943394,57.73897974787479],[-152.83578033943394,57.81912249464946],[-152.79988462366236,57.856522443144314],[-152.72809319211922,57.8351510440044],[-152.6204060448045,57.883236692069204],[-152.6204060448045,57.920636640564055],[-152.54861461326135,57.89926524142414],[-152.47682318171817,57.96337943884388],[-152.4409274659466,57.93132234013401],[-152.33324031863188,57.915293790779074],[-152.36913603440345,57.883236692069204],[-152.40503175017503,57.89926524142414],[-152.47682318171817,57.888579541854185],[-152.40503175017503,57.81377964486448]],[[-134.27769528552855,55.927753670767075],[-134.17000813821383,55.89035372227222],[-134.27769528552855,55.82623952485248],[-134.34948671707173,55.84226807420742],[-134.34948671707173,55.927753670767075],[-134.27769528552855,55.927753670767075]],[[-134.13411242244226,56.07201061496149],[-134.09821670667066,56.050639215821576],[-134.13411242244226,56.00255356775677],[-134.2059038539854,56.05598206560656],[-134.24179956975698,56.06666776517651],[-134.27769528552855,56.1200962630263],[-134.24179956975698,56.16283906130613],[-134.24179956975698,56.22161040894089],[-134.24179956975698,56.269696057005696],[-134.31359100130013,56.29106745614561],[-134.27769528552855,56.35518165356535],[-134.2059038539854,56.40861015141514],[-134.13411242244226,56.40861015141514],[-134.06232099089908,56.392581602060204],[-134.0264252751275,56.419295850985094],[-134.09821670667066,56.47272434883488],[-134.13411242244226,56.488752898189816],[-134.27769528552855,56.58492419431943],[-134.27769528552855,56.62232414281428],[-134.3853824328433,56.675752640664065],[-134.3853824328433,56.72383828872887],[-134.42127814861487,56.83603813421342],[-134.34948671707173,56.90015233163316],[-134.27769528552855,56.90549518141814],[-134.17000813821383,56.85206668356835],[-134.13411242244226,56.88412378227822],[-134.2059038539854,56.90549518141814],[-134.13411242244226,56.926866580558055],[-134.09821670667066,56.93220943034303],[-134.0264252751275,56.89480948184818],[-133.95463384358436,56.798638185718566],[-133.9187381278128,56.76123823722372],[-133.95463384358436,56.734523988298825],[-133.8828424120412,56.72383828872887],[-133.84694669626964,56.80932388528853],[-133.7392595489549,56.77192393679368],[-133.7751552647265,56.729181138513844],[-133.7751552647265,56.675752640664065],[-133.7392595489549,56.643695541954195],[-133.70336383318332,56.59026704410441],[-133.7392595489549,56.57423849474947],[-133.84694669626964,56.57423849474947],[-133.8828424120412,56.488752898189816],[-133.84694669626964,56.43532440034003],[-133.8828424120412,56.429981550555055],[-133.9187381278128,56.37655305270527],[-133.84694669626964,56.34983880378037],[-133.84694669626964,56.32312455485548],[-133.9187381278128,56.210924709370936],[-133.95463384358436,56.200239009800974],[-133.95463384358436,56.168181911091104],[-133.95463384358436,56.09338201410141],[-134.0264252751275,56.08803916431643],[-134.0264252751275,56.114753413241324],[-134.0264252751275,56.16283906130613],[-134.06232099089908,56.22695325872587],[-134.09821670667066,56.22695325872587],[-134.09821670667066,56.178867610661065],[-134.17000813821383,56.16283906130613],[-134.09821670667066,56.141467662166214],[-134.13411242244226,56.07201061496149]],[[-132.55470092849285,56.60629559345934],[-132.55470092849285,56.58492419431943],[-132.6623880758076,56.55286709560956],[-132.73417950735075,56.515467147114705],[-132.8059709388939,56.4940957479748],[-132.87776237043704,56.51012429732973],[-133.05724094929494,56.520809996899686],[-133.0931366650665,56.579581344534446],[-133.02134523352336,56.60629559345934],[-133.0931366650665,56.670409790879084],[-133.20082381238126,56.707809739373936],[-133.2726152439244,56.8146667350735],[-133.30851095969598,56.79329533593359],[-133.30851095969598,56.739866838083806],[-133.2726152439244,56.734523988298825],[-133.23671952815283,56.707809739373936],[-133.23671952815283,56.64903839173917],[-133.16492809660966,56.638352692169214],[-133.0931366650665,56.6169812930293],[-133.0931366650665,56.52615284668467],[-133.16492809660966,56.462038649264926],[-133.20082381238126,56.44601009990999],[-133.34440667546755,56.4673814990499],[-133.4161981070107,56.4940957479748],[-133.45209382278227,56.456695799479945],[-133.52388525432542,56.43532440034003],[-133.5956766858686,56.43532440034003],[-133.66746811741174,56.44601009990999],[-133.66746811741174,56.53683854625462],[-133.66746811741174,56.60095274367436],[-133.70336383318332,56.68109549044904],[-133.66746811741174,56.80932388528853],[-133.70336383318332,56.8413809839984],[-133.7751552647265,56.80932388528853],[-133.8828424120412,56.84672383378337],[-133.9187381278128,56.916180880988094],[-133.9187381278128,56.958923679267926],[-134.06232099089908,57.02838072647264],[-134.0264252751275,57.07646637453745],[-133.8828424120412,57.09783777367736],[-133.70336383318332,57.06578067496749],[-133.63157240164017,57.06043782518252],[-133.45209382278227,57.017695026902686],[-133.34440667546755,57.00166647754775],[-133.30851095969598,57.012352177117705],[-133.0931366650665,57.00700932733273],[-132.9854495177518,56.94289512991299],[-132.9495538019802,56.87343808270827],[-132.9495538019802,56.82535243464346],[-132.9136580862086,56.80398103550355],[-132.8059709388939,56.79329533593359],[-132.77007522312232,56.75589538743874],[-132.73417950735075,56.71315258915891],[-132.62649236003602,56.670409790879084],[-132.59059664426442,56.611638443244324],[-132.55470092849285,56.60629559345934]],[[-134.6725481590159,56.168181911091104],[-134.7084438747875,56.173524760876084],[-134.8161310221022,56.237638958295825],[-134.85202673787379,56.30709600550055],[-134.95971388518853,56.38723875227522],[-134.9956096009601,56.456695799479945],[-135.06740103250326,56.5421813960396],[-135.03150531673168,56.6169812930293],[-135.10329674827483,56.59560989388939],[-135.17508817981798,56.675752640664065],[-135.28277532713273,56.702466889588955],[-135.35456675867587,56.77192393679368],[-135.39046247444745,56.77726678657866],[-135.42635819021902,56.80932388528853],[-135.35456675867587,56.89480948184818],[-135.3186710429043,56.916180880988094],[-135.39046247444745,56.953580829482945],[-135.39046247444745,56.980295078407835],[-135.3186710429043,57.00700932733273],[-135.3186710429043,57.044409275827576],[-135.39046247444745,57.09783777367736],[-135.42635819021902,57.167294820882084],[-135.35456675867587,57.199351919591955],[-135.35456675867587,57.24743756765676],[-135.46225390599062,57.25812326722672],[-135.56994105330534,57.231409018301825],[-135.60583676907692,57.30086606550655],[-135.67762820062006,57.3382660140014],[-135.67762820062006,57.36498026292629],[-135.56994105330534,57.42909446034603],[-135.53404533753377,57.450465859485945],[-135.53404533753377,57.509237207120705],[-135.42635819021902,57.56266570497049],[-135.35456675867587,57.55198000540054],[-135.28277532713273,57.509237207120705],[-135.28277532713273,57.482522958195815],[-135.21098389558955,57.487865807980796],[-135.1391924640464,57.43978015991599],[-135.06740103250326,57.418408760776074],[-134.92381816941696,57.423751610561055],[-134.85202673787379,57.40772306120612],[-134.8161310221022,57.34360886378637],[-134.8161310221022,57.30086606550655],[-134.88792245364536,57.32758031443144],[-134.95971388518853,57.3115517650765],[-134.88792245364536,57.29018036593659],[-134.85202673787379,57.24743756765676],[-134.74433959055906,57.012352177117705],[-134.74433959055906,56.948237979697964],[-134.7084438747875,56.90015233163316],[-134.7084438747875,56.85206668356835],[-134.6725481590159,56.82535243464346],[-134.63665244324432,56.729181138513844],[-134.60075672747274,56.638352692169214],[-134.63665244324432,56.55286709560956],[-134.6725481590159,56.5421813960396],[-134.63665244324432,56.47272434883488],[-134.63665244324432,56.40326730163016],[-134.63665244324432,56.264353207220715],[-134.6725481590159,56.168181911091104]],[[-135.60583676907692,57.89926524142414],[-135.46225390599062,57.8351510440044],[-135.39046247444745,57.80309394529453],[-135.3186710429043,57.74966544744474],[-135.21098389558955,57.728294048304825],[-135.10329674827483,57.75500829722972],[-135.03150531673168,57.74432259765976],[-134.9956096009601,57.765693996799676],[-134.92381816941696,57.74432259765976],[-134.92381816941696,57.68020840024002],[-134.85202673787379,57.62143705260526],[-134.8161310221022,57.49855150755075],[-134.88792245364536,57.4611515590559],[-135.03150531673168,57.455808709270926],[-135.06740103250326,57.46649440884088],[-135.1391924640464,57.49855150755075],[-135.24687961136115,57.54663715561556],[-135.46225390599062,57.63212275217521],[-135.56994105330534,57.67486555045504],[-135.6417324848485,57.65349415131513],[-135.67762820062006,57.62677990239023],[-135.60583676907692,57.60006565346534],[-135.53404533753377,57.482522958195815],[-135.56994105330534,57.450465859485945],[-135.60583676907692,57.43978015991599],[-135.6417324848485,57.40772306120612],[-135.67762820062006,57.37566596249625],[-135.85710677947796,57.391694511851185],[-135.89300249524953,57.40772306120612],[-135.89300249524953,57.43978015991599],[-135.9288982110211,57.4611515590559],[-136.03658535833586,57.51992290669067],[-136.00068964256425,57.54663715561556],[-136.07248107410743,57.59472280368036],[-136.14427250565058,57.62677990239023],[-136.21606393719372,57.637465601960194],[-136.32375108450844,57.760351147014696],[-136.32375108450844,57.78172254615461],[-136.35964680028002,57.82980819421942],[-136.46733394759477,57.856522443144314],[-136.46733394759477,57.89392239163916],[-136.5750210949095,57.92597949034903],[-136.53912537913791,58.07557928432843],[-136.46733394759477,58.09695068346834],[-136.4314382318232,58.134350631963194],[-136.35964680028002,58.15037918131813],[-136.35964680028002,58.193121979597954],[-136.39554251605162,58.27326472637263],[-136.28785536873687,58.26792187658766],[-136.28785536873687,58.225179078307825],[-136.2519596529653,58.171750580458045],[-136.21606393719372,58.182436280028],[-136.14427250565058,58.225179078307825],[-136.03658535833586,58.21983622852285],[-135.96479392679268,58.203807679167916],[-135.9288982110211,58.24655047744774],[-135.8212110637064,58.28395042594259],[-135.78531534793478,58.289293275727566],[-135.7494196321632,58.24120762766276],[-135.60583676907692,58.21449337873787],[-135.4981496217622,58.166407730673065],[-135.53404533753377,58.102293533253324],[-135.6417324848485,58.03817933583358],[-135.6417324848485,57.99543653755375],[-135.60583676907692,57.99009368776877],[-135.56994105330534,58.043522185618556],[-135.4981496217622,58.08626498389839],[-135.46225390599062,58.134350631963194],[-135.39046247444745,58.14503633153315],[-135.28277532713273,58.09695068346834],[-135.10329674827483,58.08626498389839],[-135.06740103250326,58.05955073497349],[-134.95971388518853,58.04886503540354],[-134.92381816941696,58.02215078647865],[-134.92381816941696,57.979407988198815],[-134.92381816941696,57.920636640564055],[-134.9956096009601,57.883236692069204],[-135.1391924640464,57.92597949034903],[-135.17508817981798,57.89926524142414],[-135.06740103250326,57.86720814271427],[-134.95971388518853,57.81377964486448],[-135.03150531673168,57.78172254615461],[-135.21098389558955,57.77637969636963],[-135.3186710429043,57.80309394529453],[-135.39046247444745,57.85117959335933],[-135.4981496217622,57.883236692069204],[-135.60583676907692,57.89926524142414]],[[-135.4981496217622,57.140580571957194],[-135.53404533753377,57.15660912131213],[-135.53404533753377,57.21003761916191],[-135.4981496217622,57.236751868086806],[-135.39046247444745,57.236751868086806],[-135.39046247444745,57.204694769376935],[-135.4981496217622,57.140580571957194]],[[-135.71352391639164,57.32223746464646],[-135.6417324848485,57.30086606550655],[-135.56994105330534,57.24209471787179],[-135.60583676907692,57.22606616851685],[-135.60583676907692,57.1619519710971],[-135.56994105330534,57.14592342174217],[-135.56994105330534,57.09249492389239],[-135.6417324848485,57.02303787668767],[-135.85710677947796,56.99632362776277],[-135.8212110637064,57.09249492389239],[-135.7494196321632,57.11920917281728],[-135.7494196321632,57.15660912131213],[-135.78531534793478,57.17798052045204],[-135.8212110637064,57.172637670667065],[-135.85710677947796,57.22072331873187],[-135.85710677947796,57.263466117011696],[-135.8212110637064,57.3382660140014],[-135.7494196321632,57.34360886378637],[-135.71352391639164,57.32223746464646]],[[-162.59941502930295,63.27417212511251],[-162.41993645044505,63.3756862710271],[-162.41993645044505,63.40774336973697],[-162.3481450189019,63.455829017801776],[-162.27635358735876,63.487886116511646],[-162.31224930313033,63.54131461436143],[-162.24045787158718,63.54131461436143],[-162.09687500850086,63.50925751565156],[-162.0250835769577,63.487886116511646],[-162.0250835769577,63.44514331823182],[-161.84560499809982,63.44514331823182],[-161.66612641924195,63.46651471737173],[-161.59433498769877,63.450486168016795],[-161.30716926152616,63.47185756715671],[-161.1276906826683,63.50391466586658],[-161.0917949668967,63.54665746414641],[-160.91231638803882,63.65885730963096],[-160.7687335249525,63.77105715511551],[-160.7687335249525,63.83517135253525],[-160.84052495649567,63.952714047804776],[-160.87642067226724,63.984771146514646],[-160.9482121038104,64.09162814221422],[-160.9482121038104,64.19314228812881],[-160.98410781958196,64.23588508640864],[-161.235377829983,64.36945633103309],[-161.27127354575458,64.39617057995798],[-161.4148564088409,64.42288482888289],[-161.52254355615563,64.42288482888289],[-161.48664784038405,64.50837042544254],[-161.3789606930693,64.53508467436743],[-161.235377829983,64.50302757565757],[-161.02000353535354,64.49768472587257],[-161.0558992511251,64.54042752415242],[-160.9482121038104,64.55111322372237],[-160.80462924072407,64.60988457135713],[-160.7687335249525,64.7167415670567],[-160.9482121038104,64.82359856275627],[-161.0917949668967,64.87168421082109],[-161.19948211421143,64.91976985888589],[-161.19948211421143,64.88236991039103],[-161.30716926152616,64.85565566146614],[-161.3789606930693,64.77551291469146],[-161.52254355615563,64.75414151555155],[-161.66612641924195,64.7915414640464],[-161.8815007138714,64.71139871727172],[-161.95329214541454,64.70071301770176],[-162.168666440044,64.67934161856185],[-162.20456215581558,64.65797021942194],[-162.24045787158718,64.62057027092709],[-162.3481450189019,64.5938560220022],[-162.52762359775977,64.52974182458246],[-162.59941502930295,64.47097047694768],[-162.59941502930295,64.44959907780778],[-162.63531074507452,64.38548488038803],[-162.70710217661767,64.35877063146314],[-162.81478932393242,64.35342778167816],[-162.81478932393242,64.40685627952794],[-162.850685039704,64.47631332673268],[-162.850685039704,64.49768472587257],[-162.9583721870187,64.54042752415242],[-163.03016361856186,64.54042752415242],[-163.06605933433343,64.58851317221722],[-163.20964219741975,64.63125597049705],[-163.31732934473447,64.58851317221722],[-163.24553791319133,64.55111322372237],[-163.17374648164818,64.54577037393739],[-163.10195505010503,64.50837042544254],[-163.03016361856186,64.5190561250125],[-163.03016361856186,64.47631332673268],[-163.10195505010503,64.40685627952794],[-163.17374648164818,64.40151342974298],[-163.24553791319133,64.42822767866787],[-163.24553791319133,64.47097047694768],[-163.4609122078208,64.53508467436743],[-163.6044950709071,64.56179892329232],[-163.81986936553656,64.57248462286228],[-163.96345222862288,64.55111322372237],[-164.14293080748075,64.56714177307731],[-164.32240938633865,64.56179892329232],[-164.43009653365337,64.54577037393739],[-164.82494940714074,64.44959907780778],[-165.0044279859986,64.43357052845283],[-165.21980228062807,64.47097047694768],[-165.39928085948597,64.49768472587257],[-165.75823801720173,64.53508467436743],[-165.90182088028803,64.55111322372237],[-166.22488232223225,64.58317032243224],[-166.40436090109012,64.63659882028202],[-166.47615233263326,64.73277011641164],[-166.47615233263326,64.79688431383138],[-166.40436090109012,64.83428426232624],[-166.40436090109012,64.87168421082109],[-166.54794376417644,64.93579840824083],[-166.69152662726273,64.98388405630563],[-166.69152662726273,65.03731255415542],[-166.87100520612063,65.0907410520052],[-166.9069009218922,65.12814100050005],[-166.76331805880588,65.11211245114511],[-166.65563091149116,65.11211245114511],[-166.61973519571958,65.13348385028502],[-166.51204804840486,65.14951239963996],[-166.47615233263326,65.17622664856485],[-166.47615233263326,65.22431229662965],[-166.33256946954697,65.27774079447944],[-166.36846518531854,65.29911219361935],[-166.47615233263326,65.33116929232924],[-166.54794376417644,65.3365121421142],[-166.65563091149116,65.32582644254424],[-166.79921377457748,65.3365121421142],[-167.01458806920692,65.38459779017901],[-167.4094409426943,65.40062633953394],[-167.48123237423744,65.4113120391039],[-167.6966066688669,65.49679763566357],[-167.91198096349638,65.55022613351335],[-168.09145954235424,65.57694038243824],[-168.12735525812582,65.62502603050305],[-168.09145954235424,65.68379737813781],[-167.98377239503952,65.72654017641764],[-167.73250238463848,65.77462582448244],[-167.55302380578058,65.82271147254724],[-167.30175379537954,65.886825669967],[-167.12227521652167,65.94559701760176],[-166.97869235343535,65.99368266566657],[-166.83510949034905,66.05245401330133],[-166.51204804840486,66.14328245964596],[-166.33256946954697,66.19136810771076],[-165.7941337329733,66.33562505190518],[-165.39928085948597,66.42111064846483],[-165.11211513331335,66.47453914631463],[-164.717262259826,66.54399619351935],[-164.3942008178818,66.5813961420142],[-163.96345222862288,66.59208184158416],[-163.8916607970797,66.55468189308931],[-163.74807793399341,66.54933904330433],[-163.71218221822184,66.51728194459446],[-163.74807793399341,66.45316774717472],[-163.85576508130814,66.42111064846483],[-163.85576508130814,66.38905354975498],[-163.85576508130814,66.3302822021202],[-163.81986936553656,66.27151085448544],[-163.8916607970797,66.22876805620561],[-164.0711393759376,66.20205380728072],[-163.99934794439446,66.18068240814081],[-163.9275565128513,66.19136810771076],[-163.85576508130814,66.12191106050605],[-163.783973649765,66.0845111120112],[-163.783973649765,66.06313971287128],[-163.64039078667867,66.05779686308631],[-163.49680792359237,66.0845111120112],[-163.35322506050605,66.0845111120112],[-163.17374648164818,66.05779686308631],[-162.99426790279028,66.07916826222622],[-162.74299789238924,66.08985396179617],[-162.63531074507452,66.04176831373137],[-162.45583216621662,66.05779686308631],[-162.38404073467348,66.03108261416142],[-162.3481450189019,66.03108261416142],[-162.13277072427243,66.06848256265627],[-162.0250835769577,66.06313971287128],[-161.84560499809982,66.02039691459146],[-161.77381356655667,66.07382541244124],[-161.66612641924195,66.11122536093609],[-161.63023070347035,66.1539681592159],[-161.5584392719272,66.23945375577557],[-161.48664784038405,66.2608251549155],[-161.34306497729773,66.2554823051305],[-161.30716926152616,66.22342520642064],[-161.19948211421143,66.21273950685068],[-160.98410781958196,66.2554823051305],[-161.0558992511251,66.2821965540554],[-161.1276906826683,66.33562505190518],[-161.34306497729773,66.37836785018501],[-161.52254355615563,66.39439639953994],[-161.70202213501352,66.39439639953994],[-161.80970928232824,66.36233930083009],[-161.91739642964296,66.35165360126013],[-161.84560499809982,66.44248204760476],[-161.8815007138714,66.51193909480948],[-162.0250835769577,66.58673899179917],[-162.09687500850086,66.60811039093909],[-162.168666440044,66.68825313771376],[-162.27635358735876,66.72031023642364],[-162.4917278819882,66.74168163556355],[-162.52762359775977,66.7790815840584],[-162.63531074507452,66.84853863126312],[-162.59941502930295,66.89662427932794],[-162.4917278819882,66.91799567846783],[-162.3481450189019,66.93402422782277],[-162.27635358735876,66.91799567846783],[-162.24045787158718,66.86456718061805],[-162.09687500850086,66.78976728362835],[-162.0250835769577,66.7577101849185],[-162.09687500850086,66.69359598749875],[-162.0609792927293,66.64551033943394],[-161.95329214541454,66.60276754115411],[-161.91739642964296,66.54933904330433],[-161.63023070347035,66.44782489738974],[-161.5584392719272,66.43713919781977],[-161.45075212461248,66.45316774717472],[-161.34306497729773,66.4798819960996],[-161.30716926152616,66.52262479437942],[-161.48664784038405,66.52796764416442],[-161.48664784038405,66.56002474287428],[-161.70202213501352,66.61879609050905],[-161.8815007138714,66.71496738663866],[-161.84560499809982,66.79511013341335],[-161.77381356655667,66.85922433083309],[-161.66612641924195,66.96073847674768],[-161.5584392719272,66.93402422782277],[-161.48664784038405,66.93936707760776],[-161.52254355615563,66.98745272567257],[-161.63023070347035,67.00882412481248],[-161.70202213501352,67.00882412481248],[-161.80970928232824,67.05156692309231],[-161.8815007138714,67.05156692309231],[-162.13277072427243,67.02485267416742],[-162.24045787158718,66.99279557545754],[-162.45583216621662,66.98745272567257],[-162.45583216621662,67.02485267416742],[-162.63531074507452,67.00882412481248],[-162.70710217661767,67.05690977287728],[-162.850685039704,67.03553837373737],[-162.88658075547556,67.00882412481248],[-163.10195505010503,67.04088122352235],[-163.56859935513552,67.09430972137213],[-163.74807793399341,67.13170966986698],[-163.74807793399341,67.21185241664166],[-163.74807793399341,67.2545952149215],[-163.8916607970797,67.41488070847083],[-163.99934794439446,67.53776625352535],[-164.0711393759376,67.58585190159016],[-164.2147222390239,67.63928039943994],[-164.53778368096812,67.7247659959996],[-164.78905369136913,67.8209372921292],[-165.1839065648565,67.96519423632363],[-165.25569799639965,67.9972513350335],[-165.5069680068007,68.06136553245324],[-165.7941337329733,68.08273693159316],[-165.9736123118312,68.12013688008801],[-166.00950802760278,68.1468511290129],[-166.26077803800382,68.24302242514251],[-166.36846518531854,68.28042237363735],[-166.69152662726273,68.33919372127212],[-166.69152662726273,68.371250819982],[-166.36846518531854,68.42467931783179],[-166.2966737537754,68.46207926632663],[-166.2966737537754,68.51016491439142],[-166.22488232223225,68.56359341224122],[-166.18898660646065,68.68113610751075],[-166.18898660646065,68.77730740364035],[-166.22488232223225,68.87882154955494],[-165.650550869887,68.85745015041503],[-165.3274894279428,68.85745015041503],[-164.82494940714074,68.89485009890988],[-164.64547082828284,68.91087864826483],[-164.2506179547955,68.93225004740474],[-163.96345222862288,68.98567854525453],[-163.81986936553656,69.03910704310431],[-163.71218221822184,69.0658212920292],[-163.53270363936394,69.1406211890189],[-163.4609122078208,69.19404968686868],[-163.2814336289629,69.27419243364335],[-163.24553791319133,69.28487813321331],[-163.10195505010503,69.37570657955794],[-163.10195505010503,69.4131065280528],[-163.03016361856186,69.53599207310731],[-163.10195505010503,69.58942057095709],[-163.03016361856186,69.61079197009701],[-162.92247647124714,69.69093471687168],[-163.03016361856186,69.72833466536653],[-163.03016361856186,69.75504891429142],[-162.92247647124714,69.79779171257125],[-162.850685039704,69.8138202619262],[-162.4917278819882,69.97410575547553],[-162.45583216621662,70.04356280268027],[-162.38404073467348,70.04356280268027],[-162.31224930313033,70.10767700010001],[-162.168666440044,70.16110549794979],[-162.0250835769577,70.22521969536953],[-161.91739642964296,70.28933389278927],[-161.70202213501352,70.26796249364935],[-161.63023070347035,70.24124824472446],[-161.3789606930693,70.24124824472446],[-161.27127354575458,70.2572767940794],[-161.02000353535354,70.32673384128412],[-160.98410781958196,70.31604814171416],[-160.73283780918092,70.37481948934894],[-160.48156779877988,70.4549622361236],[-160.48156779877988,70.46564793569357],[-160.23029778837883,70.5564763820382],[-160.05081920952097,70.6312762790279],[-159.79954919911992,70.7327904249425],[-159.6559663360336,70.79690462236223],[-159.5123834729473,70.81827602150214],[-159.2252177467747,70.87170451935194],[-159.15342631523154,70.86101881978198],[-159.15342631523154,70.81827602150214],[-159.3329048940894,70.8075903219322],[-159.29700917831784,70.75950467386738],[-159.00984345214522,70.76484752365236],[-158.97394773637365,70.79690462236223],[-158.65088629442945,70.78621892279227],[-158.3996162840284,70.8022474721472],[-158.3996162840284,70.82361887128712],[-158.25603342094212,70.81827602150214],[-158.04065912631265,70.83430457085709],[-157.75349340014003,70.8770473691369],[-157.502223389739,70.94650441634164],[-157.25095337933794,71.0533614120412],[-157.10737051625165,71.1281613090309],[-156.820204790079,71.28844680258025],[-156.568934779678,71.352561],[-156.53303906390641,71.29378965236523],[-156.35356048504852,71.26173255365536],[-156.2099776219622,71.26173255365536],[-156.0663947588759,71.24036115451545],[-156.03049904310433,71.2029612060206],[-155.95870761156118,71.18693265666566],[-155.7433333169317,71.19227550645064],[-155.5997504538454,71.17090410731072],[-155.52795902230224,71.09610421032103],[-155.56385473807381,71.05870426182618],[-155.70743760116014,71.02130431333133],[-155.81512474847486,70.96787581548153],[-155.99460332733275,70.96253296569657],[-156.03049904310433,70.89841876827683],[-155.95870761156118,70.86101881978198],[-155.99460332733275,70.8075903219322],[-155.886916180018,70.8289617210721],[-155.63564616961696,70.82361887128712],[-155.49206330653067,70.86101881978198],[-155.49206330653067,70.94116156655664],[-155.34848044344434,71.00527576397639],[-155.16900186458648,71.02664716311631],[-155.2766890119012,71.06404711161116],[-155.24079329612962,71.08007566096609],[-155.02541900150015,71.14418985838583],[-154.7741489910991,71.08541851075107],[-154.63056612801282,71.02664716311631],[-154.55877469646964,70.98924721462146],[-154.6664618437844,70.9037616180618],[-154.63056612801282,70.87170451935194],[-154.52287898069807,70.82361887128712],[-154.3434004018402,70.83430457085709],[-154.27160897029705,70.81293317171716],[-154.1639218229823,70.77019037343734],[-153.9844432441244,70.82361887128712],[-153.8767560968097,70.88773306870686],[-153.7331732337234,70.89307591849185],[-153.51779893909392,70.88773306870686],[-153.41011179177917,70.88773306870686],[-153.2306332129213,70.92513301720172],[-153.12294606560658,70.92513301720172],[-153.01525891829183,70.9037616180618],[-152.7639889078908,70.88773306870686],[-152.58451032903292,70.88773306870686],[-152.2614488870887,70.84499027042705],[-152.18965745554556,70.8022474721472],[-152.2973446028603,70.78621892279227],[-152.36913603440345,70.71676187558755],[-152.47682318171817,70.69004762666266],[-152.40503175017503,70.60990487988798],[-152.33324031863188,70.61524772967297],[-152.2614488870887,70.59387633053305],[-152.15376173977398,70.58853348074807],[-151.8307002978298,70.54579068246824],[-151.72301315051507,70.49770503440344],[-151.90249172937294,70.47099078547853],[-151.86659601360137,70.42824798719872],[-151.54353457165718,70.43359083698368],[-151.43584742434246,70.42290513741374],[-151.1845774139414,70.38550518891888],[-151.1845774139414,70.42824798719872],[-151.07689026662666,70.41756228762875],[-151.0409945508551,70.43893368676868],[-150.82562025622562,70.46030508590859],[-150.75382882468247,70.49770503440344],[-150.35897595119513,70.49236218461846],[-150.35897595119513,70.43359083698368],[-150.25128880388039,70.44427653655364],[-150.1077059407941,70.43359083698368],[-149.85643593039305,70.50839073397339],[-149.82054021462147,70.49236218461846],[-149.67695735153515,70.50839073397339],[-149.56927020422043,70.49770503440344],[-149.4615830569057,70.51907643354335],[-149.4256873411341,70.49236218461846],[-149.1744173307331,70.48701933483348],[-148.95904303610362,70.42290513741374],[-148.85135588878887,70.42290513741374],[-148.77956445724573,70.40153373827383],[-148.70777302570258,70.42824798719872],[-148.60008587838786,70.42290513741374],[-148.4923987310731,70.358790939994],[-148.4923987310731,70.32139099149914],[-148.34881586798681,70.3053624421442],[-148.2052330049005,70.34810524042405],[-147.95396299449945,70.31604814171416],[-147.81038013141315,70.27864819321931],[-147.77448441564158,70.21987684558455],[-147.66679726832683,70.19850544644464],[-147.52321440524054,70.19850544644464],[-147.34373582638264,70.18781974687468],[-147.23604867906792,70.21987684558455],[-147.23604867906792,70.17713404730472],[-147.16425724752474,70.15576264816481],[-146.98477866866688,70.14507694859486],[-146.87709152135216,70.18781974687468],[-146.73350865826583,70.17713404730472],[-146.51813436363636,70.18781974687468],[-146.26686435323535,70.17713404730472],[-146.08738577437745,70.14507694859486],[-146.01559434283428,70.13973409880987],[-145.80022004820484,70.15041979837983],[-145.76432433243326,70.12370554945494],[-145.62074146934694,70.08630560096009],[-145.51305432203222,70.07561990139013],[-145.40536717471747,70.03287710311031],[-145.26178431163117,70.01684855375538],[-145.18999288008803,69.99547715461546],[-145.01051430123013,69.97944860526053],[-144.93872286968698,69.9580772061206],[-144.8669314381438,69.97410575547553],[-144.6156614277428,69.96876290569057],[-144.47207856465647,70.02753425332533],[-144.22080855425543,70.03821995289528],[-144.07722569116913,70.0595913520352],[-143.89774711231124,70.12904839923992],[-143.61058138613862,70.14507694859486],[-143.5028942388239,70.13973409880987],[-143.5028942388239,70.09164845074507],[-143.35931137573758,70.09699130053005],[-143.25162422842286,70.11836269966996],[-143.10804136533653,70.07561990139013],[-143.03624993379339,70.09164845074507],[-142.74908420762077,70.04356280268027],[-142.49781419721972,69.97410575547553],[-142.390127049905,69.91533440784079],[-142.28243990259026,69.90464870827083],[-142.06706560796079,69.85122021042105],[-141.99527417641764,69.80313456235623],[-141.85169131333134,69.8138202619262],[-141.70810845024502,69.78710601300129],[-141.52862987138715,69.73367751515151],[-141.4209427240724,69.69627756665666],[-141.4209427240724,69.66422046794679],[-141.38504700830083,69.63216336923692],[-141.24146414521454,69.63216336923692],[-141.20556842944296,69.68559186708671],[-140.9901941348135,69.64819191859186],[-140.9901941348135,68.49947921482148],[-140.9901941348135,65.83874002190218],[-140.9901941348135,62.12545942134213],[-140.9901941348135,61.676660039403934],[-140.9901941348135,60.38903324122412],[-140.9901941348135,60.30354764466446],[-140.52354982978298,60.223404897889786],[-140.4876541140114,60.30889049444944],[-139.98511409320932,60.186004949394935],[-139.6979483670367,60.340947593159314],[-139.0877211989199,60.35697614251425],[-139.0877211989199,60.32491904380438],[-139.19540834623461,60.08983365326532],[-139.01592976737675,59.99366235713571],[-138.80055547274728,59.92954815971597],[-138.69286832543256,59.908176760576055],[-138.65697260966095,59.81200546444644],[-138.62107689388938,59.76926266616661],[-138.01084972577257,59.45403452885288],[-137.61599685228524,59.24566338723872],[-137.5083097049705,58.98920659755975],[-137.5442054207421,58.909063850785074],[-137.43651827342734,58.909063850785074],[-137.25703969456947,58.99989229712971],[-136.8621868210821,59.13880639153915],[-136.82629110531053,59.160177790679064],[-136.5750210949095,59.165520640464045],[-136.46733394759477,59.28306333573357],[-136.46733394759477,59.46472022842284],[-136.35964680028002,59.448691679067906],[-136.28785536873687,59.46472022842284],[-136.2519596529653,59.5234915760576],[-136.2519596529653,59.59294862326232],[-136.2519596529653,59.625005721972194],[-136.18016822142215,59.64103427132713],[-135.9288982110211,59.662405670467045],[-135.46225390599062,59.80131976487648],[-135.24687961136115,59.69980561896189],[-135.1391924640464,59.625005721972194],[-135.10329674827483,59.625005721972194],[-135.03150531673168,59.56623437433743],[-135.03150531673168,59.475405927992796],[-135.06740103250326,59.45403452885288],[-135.06740103250326,59.42197743014301],[-135.03150531673168,59.39526318121812],[-135.03150531673168,59.347177533153314],[-134.95971388518853,59.27772048594859],[-134.7084438747875,59.24566338723872],[-134.6725481590159,59.192234889388935],[-134.56486101170117,59.128120691969194],[-134.49306958015802,59.128120691969194],[-134.3853824328433,59.037292245624556],[-134.3853824328433,58.978520897989796],[-134.31359100130013,58.95714949884988],[-134.31359100130013,58.91974955035503],[-134.24179956975698,58.85563535293529],[-133.84694669626964,58.727406958095806],[-133.70336383318332,58.60986426282628],[-133.55978097009702,58.52437866626662],[-133.38030239123913,58.42820737013701],[-133.45209382278227,58.385464571857185],[-133.34440667546755,58.27326472637263],[-133.16492809660966,58.15037918131813],[-133.0931366650665,58.00077938733873],[-132.87776237043704,57.84049389378937],[-132.77007522312232,57.706922649164916],[-132.6623880758076,57.62143705260526],[-132.55470092849285,57.50389435733573],[-132.37522234963495,57.34895171357135],[-132.26753520232023,57.21538046894689],[-132.3034309180918,57.1619519710971],[-132.37522234963495,57.09783777367736],[-132.23163948654866,57.06043782518252],[-132.0521609076908,57.04975212561256],[-132.08805662346236,56.93755228012801],[-132.12395233923394,56.87343808270827],[-132.08805662346236,56.85206668356835],[-131.94447376037604,56.83603813421342],[-131.8726823288329,56.80398103550355],[-131.90857804460447,56.75055253765376],[-131.8726823288329,56.702466889588955],[-131.83678661306132,56.60095274367436],[-131.58551660266028,56.611638443244324],[-131.47782945534556,56.547524245824576],[-131.15476801340134,56.44601009990999],[-131.0829765818582,56.40861015141514],[-130.79581085568557,56.36586735313531],[-130.61633227682768,56.269696057005696],[-130.47274941374138,56.237638958295825],[-130.4368536979698,56.141467662166214],[-130.32916655065506,56.12543911281128],[-130.2573751191119,56.09872486388638],[-130.1137922560256,56.114753413241324],[-130.00610510871087,56.018582117111706],[-130.04200082448244,55.91706797119711],[-130.07789654025402,55.82623952485248],[-130.1137922560256,55.80486812571257],[-130.1496879717972,55.767468177217715],[-130.1496879717972,55.714039679367936],[-130.1137922560256,55.681982580658065],[-130.1137922560256,55.58046843474347],[-130.07789654025402,55.489639988398835],[-130.04200082448244,55.452240039903984],[-130.00610510871087,55.34004019441944],[-129.9702093929393,55.28661169656965],[-130.1137922560256,55.19578325022502],[-130.18558368756877,55.09426910431043],[-130.18558368756877,55.06221200560056],[-130.2932708348835,54.97138355925592],[-130.32916655065506,54.92329791119111],[-130.47274941374138,54.837812314631456],[-130.5804365610561,54.78972666656665],[-130.65222799259925,54.779040966996696],[-130.61633227682768,54.741641018501845],[-130.68812370837082,54.720269619361936],[-130.72401942414243,54.75232671807181],[-130.759915139914,54.80041236613661],[-130.83170657145715,54.76301241764176],[-130.9034980030003,54.78972666656665],[-130.9393937187719,54.84315516441644],[-130.97528943454347,54.933983610761075],[-130.9393937187719,54.966040709470946],[-131.01118515031504,54.998097808180816],[-130.97528943454347,55.06755485538554],[-131.04708086608662,55.115640503450344],[-131.0829765818582,55.19044040044004],[-130.97528943454347,55.249211748074806],[-130.9393937187719,55.302640245924586],[-130.86760228722872,55.29195454635463],[-130.86760228722872,55.36141159355935],[-130.9034980030003,55.430868640764075],[-130.86760228722872,55.53238278667867],[-130.9034980030003,55.698011130013],[-130.9393937187719,55.75678247764776],[-131.0829765818582,55.895696572057204],[-131.15476801340134,55.90103942184218],[-131.0829765818582,55.82623952485248],[-131.04708086608662,55.76212532743274],[-130.97528943454347,55.68732543044304],[-130.9393937187719,55.57512558495849],[-130.97528943454347,55.53772563646364],[-131.01118515031504,55.4736114390439],[-130.97528943454347,55.393468692269224],[-130.9393937187719,55.34004019441944],[-130.97528943454347,55.33469734463446],[-131.01118515031504,55.398811542054204],[-131.04708086608662,55.37744014291429],[-131.01118515031504,55.34538304420442],[-131.04708086608662,55.28661169656965],[-131.15476801340134,55.19578325022502],[-131.22655944494448,55.19044040044004],[-131.29835087648766,55.23318319871987],[-131.22655944494448,55.29729739613961],[-131.1906637291729,55.36141159355935],[-131.1906637291729,55.393468692269224],[-131.29835087648766,55.38278299269927],[-131.26245516071606,55.3240116450645],[-131.29835087648766,55.28661169656965],[-131.40603802380238,55.238526048504845],[-131.44193373957395,55.238526048504845],[-131.47782945534556,55.33469734463446],[-131.5496208868887,55.29195454635463],[-131.62141231843185,55.34004019441944],[-131.693203749975,55.35606874377437],[-131.72909946574657,55.398811542054204],[-131.83678661306132,55.457582889688965],[-131.83678661306132,55.521697087108706],[-131.72909946574657,55.5484113360336],[-131.65730803420342,55.58046843474347],[-131.72909946574657,55.63923978237823],[-131.693203749975,55.698011130013],[-131.72909946574657,55.73006822872287],[-131.65730803420342,55.767468177217715],[-131.693203749975,55.78883957635763],[-131.72909946574657,55.895696572057204],[-131.83678661306132,55.87432517291729],[-131.80089089728972,55.83692522442244],[-131.76499518151815,55.81021097549755],[-131.83678661306132,55.71938252915291],[-131.83678661306132,55.66595403130313],[-131.90857804460447,55.60183983388338],[-131.98036947614762,55.61786838323832],[-131.94447376037604,55.53772563646364],[-131.98036947614762,55.5003256879688],[-132.0521609076908,55.54306848624862],[-132.1598480550055,55.56443988538854],[-132.19574377077709,55.58581128452845],[-132.23163948654866,55.703353979797974],[-132.26753520232023,55.73006822872287],[-132.19574377077709,55.75143962786278],[-132.19574377077709,55.79952527592759],[-132.12395233923394,55.81021097549755],[-132.08805662346236,55.83158237463746],[-132.0521609076908,55.959810769476945],[-132.08805662346236,56.0452963660366],[-131.98036947614762,56.114753413241324],[-131.94447376037604,56.178867610661065],[-132.0162651919192,56.18421046044604],[-132.0521609076908,56.13078196259626],[-132.08805662346236,56.10941056345634],[-132.1598480550055,56.05598206560656],[-132.12395233923394,55.959810769476945],[-132.1598480550055,55.922410820982094],[-132.26753520232023,55.922410820982094],[-132.3034309180918,55.88501087248724],[-132.33932663386338,55.85295377377737],[-132.37522234963495,55.85295377377737],[-132.41111806540655,55.87966802270227],[-132.41111806540655,55.949125069906984],[-132.44701378117813,56.018582117111706],[-132.51880521272128,56.07735346474647],[-132.62649236003602,56.05598206560656],[-132.62649236003602,56.03461066646664],[-132.69828379157917,56.114753413241324],[-132.73417950735075,56.146810511951195],[-132.73417950735075,56.21626755915591],[-132.69828379157917,56.237638958295825],[-132.59059664426442,56.237638958295825],[-132.59059664426442,56.29641030593059],[-132.51880521272128,56.33915310421042],[-132.44701378117813,56.35518165356535],[-132.37522234963495,56.31243885528553],[-132.33932663386338,56.33915310421042],[-132.41111806540655,56.483410048404835],[-132.37522234963495,56.488752898189816],[-132.26753520232023,56.451352949694964],[-132.23163948654866,56.39792445184518],[-132.19574377077709,56.39792445184518],[-132.19574377077709,56.456695799479945],[-132.3034309180918,56.488752898189816],[-132.37522234963495,56.53149569646964],[-132.37522234963495,56.59560989388939],[-132.26753520232023,56.638352692169214],[-132.3034309180918,56.675752640664065],[-132.44701378117813,56.670409790879084],[-132.51880521272128,56.702466889588955],[-132.51880521272128,56.729181138513844],[-132.37522234963495,56.8146667350735],[-132.44701378117813,56.82000958485848],[-132.55470092849285,56.75589538743874],[-132.62649236003602,56.78260963636363],[-132.77007522312232,56.83603813421342],[-132.8059709388939,56.89480948184818],[-132.87776237043704,56.926866580558055],[-132.9136580862086,56.99632362776277],[-132.84186665466547,57.00700932733273],[-132.8059709388939,57.02838072647264],[-132.84186665466547,57.08180922432243],[-132.9136580862086,57.0390664260426],[-133.02134523352336,57.05509497539754],[-133.0931366650665,57.08180922432243],[-133.20082381238126,57.08715207410741],[-133.20082381238126,57.12455202260226],[-133.23671952815283,57.135237722172214],[-133.30851095969598,57.1138663230323],[-133.52388525432542,57.17798052045204],[-133.55978097009702,57.24209471787179],[-133.48798953855385,57.30620891529153],[-133.4161981070107,57.28483751615161],[-133.30851095969598,57.29018036593659],[-133.2726152439244,57.33292316421642],[-133.34440667546755,57.33292316421642],[-133.45209382278227,57.35429456335633],[-133.45209382278227,57.39703736163616],[-133.52388525432542,57.487865807980796],[-133.52388525432542,57.57869425432543],[-133.55978097009702,57.56266570497049],[-133.63157240164017,57.57869425432543],[-133.66746811741174,57.62677990239023],[-133.66746811741174,57.71226549894989],[-133.5956766858686,57.71760834873487],[-133.52388525432542,57.685551250025],[-133.4161981070107,57.664179850885084],[-133.23671952815283,57.6107513530353],[-133.16492809660966,57.6107513530353],[-133.30851095969598,57.664179850885084],[-133.55978097009702,57.77637969636963],[-133.55978097009702,57.86186529292929],[-133.63157240164017,57.84583674357435],[-133.63157240164017,57.792408245724566],[-133.70336383318332,57.792408245724566],[-133.84694669626964,57.93666518991899],[-134.06232099089908,58.05955073497349],[-134.09821670667066,58.182436280028],[-134.13411242244226,58.198464829382935],[-134.27769528552855,58.193121979597954],[-134.49306958015802,58.21449337873787],[-134.63665244324432,58.24655047744774],[-134.78023530633064,58.39615027142714],[-134.78023530633064,58.49232156755675],[-134.92381816941696,58.60986426282628],[-135.03150531673168,58.732749807880786],[-135.1391924640464,58.84494965336533],[-135.17508817981798,58.99989229712971],[-135.21098389558955,59.07469219411941],[-135.28277532713273,59.192234889388935],[-135.39046247444745,59.29374903530353],[-135.46225390599062,59.27772048594859],[-135.42635819021902,59.24032053745374],[-135.35456675867587,59.21360628852885],[-135.28277532713273,59.08537789368936],[-135.39046247444745,59.09072074347434],[-135.39046247444745,59.04263509540954],[-135.39046247444745,59.02126369626962],[-135.39046247444745,58.973178048204815],[-135.28277532713273,58.81823540444044],[-135.24687961136115,58.78083545594559],[-135.24687961136115,58.73809265766576],[-135.1391924640464,58.61520711261126],[-135.1391924640464,58.58849286368636],[-135.17508817981798,58.57780716411641],[-135.10329674827483,58.42286452035203],[-135.03150531673168,58.31066467486748],[-135.10329674827483,58.29463612551255],[-135.10329674827483,58.198464829382935],[-135.17508817981798,58.20915052895289],[-135.21098389558955,58.23586477787779],[-135.28277532713273,58.23586477787779],[-135.35456675867587,58.27326472637263],[-135.39046247444745,58.32669322422242],[-135.42635819021902,58.40149312121212],[-135.4981496217622,58.385464571857185],[-135.6417324848485,58.42820737013701],[-135.71352391639164,58.39615027142714],[-135.89300249524953,58.380121722072204],[-135.89300249524953,58.449578769276926],[-136.00068964256425,58.46560731863186],[-136.00068964256425,58.481635867986796],[-135.89300249524953,58.508350116911686],[-135.9288982110211,58.57246431433143],[-135.9288982110211,58.62054996239623],[-136.00068964256425,58.71137840874087],[-136.00068964256425,58.74343550745074],[-136.07248107410743,58.81823540444044],[-136.03658535833586,58.83426395379538],[-136.03658535833586,58.914406700570055],[-136.108376789879,58.92509240014001],[-136.108376789879,58.86632105250525],[-136.14427250565058,58.759464056805676],[-136.2519596529653,58.754121207020695],[-136.39554251605162,58.81289255465546],[-136.50322966336634,58.83960680358035],[-136.53912537913791,58.93043524992499],[-136.64681252645266,58.88769245164516],[-136.79039538953896,58.935778099709964],[-136.82629110531053,58.91974955035503],[-136.8621868210821,58.96249234863486],[-136.93397825262525,58.946463799279925],[-136.93397825262525,58.89837815121512],[-136.75449967376738,58.87166390229022],[-136.75449967376738,58.877006752075204],[-136.5750210949095,58.83960680358035],[-136.46733394759477,58.78083545594559],[-136.35964680028002,58.690007009600954],[-136.39554251605162,58.65260706110611],[-136.46733394759477,58.636578511751175],[-136.46733394759477,58.60986426282628],[-136.35964680028002,58.64726421132113],[-136.32375108450844,58.668635610461045],[-136.21606393719372,58.67397846024602],[-136.18016822142215,58.58315001390139],[-136.108376789879,58.51369296669667],[-136.03658535833586,58.380121722072204],[-136.108376789879,58.34272177357735],[-136.2519596529653,58.31600752465246],[-136.28785536873687,58.33737892379238],[-136.28785536873687,58.36409317271727],[-136.32375108450844,58.380121722072204],[-136.39554251605162,58.36409317271727],[-136.35964680028002,58.32669322422242],[-136.39554251605162,58.29463612551255],[-136.53912537913791,58.31600752465246],[-136.5750210949095,58.29463612551255],[-136.5750210949095,58.24655047744774],[-136.5750210949095,58.21983622852285],[-136.64681252645266,58.20915052895289],[-136.7186039579958,58.21983622852285],[-136.7186039579958,58.28395042594259],[-136.79039538953896,58.289293275727566],[-136.93397825262525,58.39080742164216],[-137.00576968416843,58.40683597099709],[-137.11345683148315,58.39080742164216],[-137.18524826302632,58.42820737013701],[-137.29293541034104,58.46026446884688],[-137.5083097049705,58.55643576497649],[-137.68778828382838,58.62054996239623],[-137.68778828382838,58.663292760676065],[-137.79547543114313,58.727406958095806],[-137.93905829422943,58.78083545594559],[-137.93905829422943,58.86632105250525],[-137.974954010001,58.909063850785074],[-138.11853687308732,58.98920659755975],[-138.11853687308732,59.02126369626962],[-138.26211973617362,59.04797794519452],[-138.62107689388938,59.128120691969194],[-138.7646597569757,59.192234889388935],[-138.90824262006203,59.251006237023695],[-139.2671997777778,59.33649183358335],[-139.41078264086408,59.379234631863184],[-139.73384408280828,59.502120176917686],[-139.84153123012302,59.534177275627556],[-139.84153123012302,59.56089152455245],[-139.73384408280828,59.64103427132713],[-139.66205265126513,59.630348571757175],[-139.59026121972198,59.64103427132713],[-139.51846978817883,59.70514846874687],[-139.59026121972198,59.71049131853185],[-139.59026121972198,59.77460551595159],[-139.62615693549355,59.876119661866184],[-139.59026121972198,59.902833910791074],[-139.51846978817883,59.940233859285925],[-139.48257407240726,59.99366235713571],[-139.51846978817883,60.04174800520052],[-139.5543655039504,60.04174800520052],[-139.59026121972198,59.95626240864086],[-139.6979483670367,59.934891009500944],[-139.80563551435145,59.82803401380138],[-140.16459267206722,59.73720556745674],[-140.27227981938194,59.69980561896189],[-140.37996696669668,59.69980561896189],[-140.73892412441245,59.721177018101805],[-140.91840270327032,59.7478912670267],[-141.1696727136714,59.81200546444644],[-141.4209427240724,59.876119661866184],[-141.4209427240724,59.91886246014601],[-141.31325557675768,59.934891009500944],[-141.2773598609861,60.01503375627562],[-141.31325557675768,60.05243370477047],[-141.38504700830083,60.004348056705666],[-141.6004213029303,59.96160525842584],[-141.74400416601662,59.96160525842584],[-141.9234827448745,60.00969090649065],[-142.13885703950396,60.031062305630556],[-142.24654418681868,60.05243370477047],[-142.5337099129913,60.08449080348034],[-142.7131884918492,60.095176503050304],[-142.8926670707071,60.08983365326532],[-143.07214564956496,60.06846225412541],[-143.43110280728075,60.05243370477047],[-143.68237281768177,60.02571945584558],[-143.89774711231124,59.98831950735073],[-144.04132997539756,60.0203766060606],[-144.18491283848385,59.999005206920685],[-144.4361828488849,59.89214821122112],[-144.4361828488849,59.8707768120812],[-144.57976571197122,59.79597691509151],[-144.57976571197122,59.84940541294129],[-144.4361828488849,59.940233859285925],[-144.22080855425543,60.04174800520052],[-144.04132997539756,60.04174800520052],[-144.04132997539756,60.05777655455545],[-144.1131214069407,60.10051935283528],[-144.29259998579857,60.13791930133013],[-144.32849570157015,60.16463355025502],[-144.4361828488849,60.16463355025502],[-144.54386999619962,60.191347799179916],[-144.57976571197122,60.180662099609954],[-144.65155714351437,60.20737634853485],[-144.65155714351437,60.2447762970297],[-144.79514000660066,60.29286194509451],[-144.93872286968698,60.28751909530953],[-144.90282715391538,60.36231899229923],[-144.83103572237223,60.442461739073906],[-145.01051430123013,60.44780458885888],[-145.08230573277328,60.437118889288925],[-145.08230573277328,60.399718940794074],[-145.0464100170017,60.35697614251425],[-145.11820144854485,60.30354764466446],[-145.26178431163117,60.30889049444944],[-145.51305432203222,60.3943760910091],[-145.51305432203222,60.42109033993399],[-145.58484575357537,60.45314743864386],[-145.7284286166617,60.474518837783776],[-145.8361157639764,60.44780458885888],[-145.94380291129113,60.45314743864386],[-145.90790719551956,60.49054738713871],[-145.80022004820484,60.52260448584858],[-145.7284286166617,60.58137583348334],[-145.76432433243326,60.592061533053304],[-145.8361157639764,60.54931873477347],[-146.12328149014903,60.469175987998796],[-146.23096863746375,60.44780458885888],[-146.3386557847785,60.45314743864386],[-146.3386557847785,60.410404640364035],[-146.12328149014903,60.431776039503944],[-146.08738577437745,60.410404640364035],[-146.19507292169217,60.36231899229923],[-146.30276006900692,60.35163329272927],[-146.4822386478648,60.29286194509451],[-146.5899257951795,60.23943344724472],[-146.6617172267227,60.2447762970297],[-146.69761294249426,60.282176245524546],[-146.5899257951795,60.3195761940194],[-146.55403007940794,60.35697614251425],[-146.6617172267227,60.340947593159314],[-146.73350865826583,60.35163329272927],[-146.73350865826583,60.3943760910091],[-146.6258215109511,60.469175987998796],[-146.5899257951795,60.49054738713871],[-146.51813436363636,60.49054738713871],[-146.44634293209322,60.463833138213815],[-146.37455150055007,60.47986168756875],[-146.30276006900692,60.5172616360636],[-146.1591772059206,60.52794733563356],[-145.94380291129113,60.57603298369837],[-145.80022004820484,60.592061533053304],[-145.8361157639764,60.61343293219321],[-145.94380291129113,60.62946148154815],[-146.01559434283428,60.61343293219321],[-146.01559434283428,60.666861430043],[-146.1591772059206,60.62946148154815],[-146.26686435323535,60.624118631763174],[-146.26686435323535,60.64549003090308],[-146.12328149014903,60.70960422832283],[-146.05149005860585,60.7416613270327],[-146.05149005860585,60.779061275527546],[-146.1591772059206,60.72563277767777],[-146.23096863746375,60.73631847724772],[-146.30276006900692,60.714947078107805],[-146.3386557847785,60.73631847724772],[-146.41044721632164,60.693575678967896],[-146.51813436363636,60.67754712961296],[-146.6617172267227,60.693575678967896],[-146.69761294249426,60.7416613270327],[-146.5899257951795,60.75768987638764],[-146.55403007940794,60.752347026602656],[-146.51813436363636,60.77371842574257],[-146.37455150055007,60.78440412531253],[-146.26686435323535,60.81111837423742],[-146.19507292169217,60.84851832273227],[-146.26686435323535,60.869889721872184],[-146.3386557847785,60.82180407380738],[-146.41044721632164,60.81111837423742],[-146.55403007940794,60.81111837423742],[-146.6258215109511,60.869889721872184],[-146.6617172267227,60.869889721872184],[-146.73350865826583,60.81111837423742],[-146.80530008980898,60.80577552445244],[-146.80530008980898,60.85386117251725],[-146.7694043740374,60.88057542144214],[-146.73350865826583,60.91263252015201],[-146.73350865826583,60.95537531843184],[-146.69761294249426,60.98743241714171],[-146.6258215109511,61.08360371327132],[-146.26686435323535,61.088946563056304],[-146.30276006900692,61.121003661766174],[-146.6258215109511,61.121003661766174],[-146.69761294249426,61.06223231413141],[-146.7694043740374,61.0408609149915],[-146.87709152135216,60.97674671757175],[-146.98477866866688,60.934003919291925],[-147.05657010021002,60.94468961886188],[-147.05657010021002,60.99277526692669],[-147.0924658159816,61.00880381628163],[-147.12836153175317,60.98208956735673],[-147.12836153175317,60.939346769076906],[-147.20015296329635,60.95003246864686],[-147.2719443948395,60.97674671757175],[-147.2719443948395,60.91797536993699],[-147.37963154215421,60.875232571657165],[-147.4514229736974,60.896603970797074],[-147.4514229736974,60.939346769076906],[-147.5591101210121,60.907289670367035],[-147.52321440524054,61.01948951585158],[-147.48731868946896,61.07291801370137],[-147.5591101210121,61.08360371327132],[-147.63090155255526,60.971403867786776],[-147.59500583678368,60.875232571657165],[-147.59500583678368,60.84851832273227],[-147.66679726832683,60.843175472947294],[-147.66679726832683,60.88591827122712],[-147.77448441564158,60.91263252015201],[-147.77448441564158,60.875232571657165],[-147.73858869986998,60.8164612240224],[-147.77448441564158,60.81111837423742],[-147.91806727872788,60.82714692359235],[-147.91806727872788,60.81111837423742],[-148.02575442604262,60.78440412531253],[-148.13344157335735,60.79508982488248],[-148.13344157335735,60.82714692359235],[-148.0616501418142,60.939346769076906],[-147.95396299449945,61.03017521542154],[-147.95396299449945,61.07291801370137],[-147.77448441564158,61.179775009400934],[-147.77448441564158,61.211832108110805],[-147.7026929840984,61.249232056605656],[-147.73858869986998,61.26526060596059],[-147.81038013141315,61.20648925832583],[-147.98985871027105,61.08360371327132],[-147.98985871027105,61.05154661456145],[-148.09754585758577,61.00346096649665],[-148.13344157335735,61.07291801370137],[-148.16933728912892,61.06757516391639],[-148.16933728912892,60.998118116711666],[-148.24112872067207,60.939346769076906],[-148.27702443644364,60.91797536993699],[-148.27702443644364,60.8645468720872],[-148.34881586798681,60.80577552445244],[-148.42060729952996,60.82714692359235],[-148.45650301530154,60.78974697509751],[-148.3847115837584,60.76837557595759],[-148.3847115837584,60.688232829182915],[-148.34881586798681,60.682889979397935],[-148.27702443644364,60.752347026602656],[-148.24112872067207,60.76303272617261],[-148.13344157335735,60.75768987638764],[-148.09754585758577,60.7416613270327],[-148.09754585758577,60.66151858025802],[-148.13344157335735,60.624118631763174],[-148.24112872067207,60.59740438283828],[-148.34881586798681,60.52794733563356],[-148.31292015221524,60.474518837783776],[-148.24112872067207,60.495890236923685],[-148.2052330049005,60.56000443434343],[-148.09754585758577,60.59740438283828],[-147.98985871027105,60.5172616360636],[-147.98985871027105,60.47986168756875],[-147.95396299449945,60.442461739073906],[-148.02575442604262,60.27683339573957],[-148.13344157335735,60.282176245524546],[-148.13344157335735,60.32491904380438],[-148.31292015221524,60.26080484638464],[-148.24112872067207,60.223404897889786],[-148.16933728912892,60.21271919831983],[-148.09754585758577,60.218062048104805],[-147.98985871027105,60.17531924982498],[-148.09754585758577,60.121890751975194],[-148.02575442604262,60.11120505240524],[-147.95396299449945,60.14326215111511],[-147.91806727872788,60.13257645154515],[-147.8821715629563,60.10051935283528],[-147.98985871027105,60.06311940434043],[-148.02575442604262,60.00969090649065],[-147.98985871027105,59.999005206920685],[-147.8821715629563,60.06311940434043],[-147.81038013141315,60.05777655455545],[-147.8821715629563,60.004348056705666],[-148.02575442604262,59.95626240864086],[-148.0616501418142,59.98831950735073],[-148.16933728912892,59.95626240864086],[-148.24112872067207,59.95626240864086],[-148.16933728912892,60.02571945584558],[-148.27702443644364,60.01503375627562],[-148.31292015221524,60.031062305630556],[-148.27702443644364,60.05777655455545],[-148.27702443644364,60.153947850685064],[-148.34881586798681,60.153947850685064],[-148.3847115837584,59.999005206920685],[-148.45650301530154,59.96160525842584],[-148.4923987310731,59.999005206920685],[-148.56419016261628,59.98297665756575],[-148.63598159415943,59.940233859285925],[-148.70777302570258,59.96160525842584],[-148.74366874147415,59.98831950735073],[-148.88725160456048,59.95091955885588],[-148.95904303610362,59.999005206920685],[-148.9949387518752,59.98297665756575],[-149.10262589918992,59.99366235713571],[-149.03083446764677,60.04174800520052],[-149.06673018341834,60.06311940434043],[-149.13852161496152,60.0470908549855],[-149.21031304650467,60.00969090649065],[-149.24620876227624,59.940233859285925],[-149.2821044780478,59.908176760576055],[-149.3180001938194,59.98831950735073],[-149.35389590959096,60.07914795369537],[-149.4256873411341,60.08983365326532],[-149.4256873411341,59.999005206920685],[-149.4615830569057,59.95091955885588],[-149.49747877267728,59.966948108210815],[-149.56927020422043,59.86543396229622],[-149.605165919992,59.81200546444644],[-149.53337448844886,59.77994836573657],[-149.53337448844886,59.70514846874687],[-149.64106163576358,59.74254841724172],[-149.67695735153515,59.84940541294129],[-149.71285306730675,59.908176760576055],[-149.74874878307833,59.86009111251125],[-149.74874878307833,59.73186271767177],[-149.71285306730675,59.694462769176916],[-149.74874878307833,59.63569142154215],[-149.85643593039305,59.69980561896189],[-149.85643593039305,59.73720556745674],[-149.89233164616462,59.76391981638164],[-150.03591450925094,59.79063406530653],[-150.00001879347934,59.753234116811676],[-149.9282273619362,59.721177018101805],[-149.9282273619362,59.66774852025202],[-150.17949737233724,59.534177275627556],[-150.287184519652,59.45403452885288],[-150.287184519652,59.42732027992799],[-150.3948716669667,59.38992033143314],[-150.43076738273828,59.405948880788074],[-150.32308023542356,59.58760577347734],[-150.35897595119513,59.598291473047304],[-150.3948716669667,59.55554867476747],[-150.46666309850985,59.45937737863786],[-150.50255881428143,59.46472022842284],[-150.57435024582458,59.57692007390739],[-150.64614167736775,59.5234915760576],[-150.57435024582458,59.49677732713271],[-150.57435024582458,59.443348829282925],[-150.64614167736775,59.42197743014301],[-150.75382882468247,59.42732027992799],[-150.75382882468247,59.3738917820782],[-150.8974116877688,59.30977758465846],[-150.8974116877688,59.26703478637864],[-150.93330740354037,59.23497768766876],[-151.00509883508352,59.251006237023695],[-151.0409945508551,59.29909188508851],[-151.11278598239824,59.26169193659366],[-151.11278598239824,59.218949138313825],[-151.1845774139414,59.20292058895889],[-151.22047312971299,59.224291988098805],[-151.29226456125613,59.20826343874387],[-151.43584742434246,59.256349086808676],[-151.5076388558856,59.224291988098805],[-151.57943028742875,59.197577739173916],[-151.57943028742875,59.160177790679064],[-151.75890886628665,59.160177790679064],[-151.75890886628665,59.218949138313825],[-151.8307002978298,59.20826343874387],[-151.97428316091612,59.256349086808676],[-151.97428316091612,59.31512043444344],[-151.97428316091612,59.347177533153314],[-151.90249172937294,59.35786323272327],[-151.90249172937294,59.42197743014301],[-151.6512217189719,59.48074877777778],[-151.54353457165718,59.46472022842284],[-151.47174314011403,59.470063078207815],[-151.47174314011403,59.502120176917686],[-151.43584742434246,59.53952012541254],[-151.25636884548456,59.55554867476747],[-151.29226456125613,59.598291473047304],[-151.1845774139414,59.59294862326232],[-151.22047312971299,59.64637712111211],[-151.11278598239824,59.66774852025202],[-151.11278598239824,59.694462769176916],[-150.96920311931194,59.785291215521546],[-151.0409945508551,59.79597691509151],[-151.11278598239824,59.77460551595159],[-151.3281602770277,59.683777069606954],[-151.43584742434246,59.66774852025202],[-151.5076388558856,59.63569142154215],[-151.6512217189719,59.64637712111211],[-151.8307002978298,59.721177018101805],[-151.86659601360137,59.77994836573657],[-151.8307002978298,59.844062563156314],[-151.79480458205822,59.876119661866184],[-151.75890886628665,59.91886246014601],[-151.68711743474347,60.031062305630556],[-151.61532600320032,60.10051935283528],[-151.54353457165718,60.127233601760175],[-151.43584742434246,60.21271919831983],[-151.39995170857085,60.26614769616961],[-151.36405599279928,60.35697614251425],[-151.29226456125613,60.38369039143914],[-151.29226456125613,60.51191878627862],[-151.25636884548456,60.5439758849885],[-151.3281602770277,60.57603298369837],[-151.36405599279928,60.656175730473045],[-151.39995170857085,60.720289927892786],[-151.29226456125613,60.7416613270327],[-151.22047312971299,60.779061275527546],[-151.07689026662666,60.78974697509751],[-150.8974116877688,60.85386117251725],[-150.7179331089109,60.939346769076906],[-150.61024596159618,60.97674671757175],[-150.3948716669667,61.0408609149915],[-150.35897595119513,61.02483236563656],[-150.25128880388039,60.95003246864686],[-150.17949737233724,60.92331821972197],[-150.03591450925094,60.92331821972197],[-149.9282273619362,60.939346769076906],[-149.85643593039305,60.966061018001795],[-149.7846444988499,60.966061018001795],[-149.64106163576358,60.928661069506944],[-149.56927020422043,60.939346769076906],[-149.35389590959096,60.896603970797074],[-149.10262589918992,60.88057542144214],[-149.10262589918992,60.907289670367035],[-149.21031304650467,60.939346769076906],[-149.3180001938194,60.928661069506944],[-149.49747877267728,60.98208956735673],[-149.605165919992,60.98208956735673],[-149.74874878307833,61.01948951585158],[-149.82054021462147,61.07826086348634],[-149.85643593039305,61.07826086348634],[-150.07181022502252,61.158403610261026],[-150.00001879347934,61.20114640854085],[-149.9282273619362,61.211832108110805],[-149.82054021462147,61.31868910381038],[-149.71285306730675,61.33471765316531],[-149.71285306730675,61.38280330123012],[-149.4256873411341,61.44691749864986],[-149.4256873411341,61.468288897789776],[-149.53337448844886,61.48966029692969],[-149.71285306730675,61.45226034843484],[-149.82054021462147,61.39348900080007],[-149.89233164616462,61.38280330123012],[-149.9282273619362,61.26526060596059],[-150.00001879347934,61.2385463570357],[-150.07181022502252,61.25457490639064],[-150.2153930881088,61.25991775617561],[-150.287184519652,61.249232056605656],[-150.46666309850985,61.243889206820675],[-150.57435024582458,61.28128915531553],[-150.64614167736775,61.29731770467046],[-150.7179331089109,61.249232056605656],[-150.82562025622562,61.22786065746574],[-151.0409945508551,61.179775009400934],[-151.07689026662666,61.14237506090608],[-151.1486816981698,61.04620376477647],[-151.29226456125613,61.03551806520652],[-151.36405599279928,61.00880381628163],[-151.47174314011403,61.00880381628163],[-151.61532600320032,60.95537531843184],[-151.79480458205822,60.85386117251725],[-151.79480458205822,60.81111837423742],[-151.68711743474347,60.73097562746274],[-151.72301315051507,60.70960422832283],[-151.8307002978298,60.73631847724772],[-151.90249172937294,60.720289927892786],[-152.0101788766877,60.67220427982798],[-152.1178660240024,60.592061533053304],[-152.18965745554556,60.57069013391339],[-152.2973446028603,60.50657593649365],[-152.33324031863188,60.442461739073906],[-152.2973446028603,60.41574749014901],[-152.22555317131713,60.3943760910091],[-152.33324031863188,60.35697614251425],[-152.36913603440345,60.35163329272927],[-152.40503175017503,60.30354764466446],[-152.51271889748975,60.250119146814676],[-152.54861461326135,60.223404897889786],[-152.6204060448045,60.218062048104805],[-152.65630176057607,60.23943344724472],[-152.7639889078908,60.23409059745974],[-152.72809319211922,60.17531924982498],[-152.69219747634764,60.16463355025502],[-152.69219747634764,60.13791930133013],[-152.58451032903292,60.10051935283528],[-152.58451032903292,60.07380510391039],[-152.6204060448045,60.00969090649065],[-152.69219747634764,59.966948108210815],[-152.69219747634764,59.913519610361035],[-152.79988462366236,59.8974910610061],[-152.79988462366236,59.876119661866184],[-152.9434674867487,59.876119661866184],[-153.01525891829183,59.88680536143614],[-153.15884178137816,59.86009111251125],[-153.2306332129213,59.86543396229622],[-153.30242464446445,59.8226911640164],[-153.19473749714973,59.8226911640164],[-153.15884178137816,59.80666261466146],[-153.08705034983498,59.83337686358635],[-153.01525891829183,59.83337686358635],[-152.97936320252026,59.79063406530653],[-153.0511546340634,59.689119919391935],[-153.12294606560658,59.67843421982198],[-153.2306332129213,59.63569142154215],[-153.26652892869288,59.64103427132713],[-153.33832036023603,59.61966287218721],[-153.41011179177917,59.63569142154215],[-153.3742160760076,59.66774852025202],[-153.3742160760076,59.73186271767177],[-153.44600750755077,59.76391981638164],[-153.44600750755077,59.689119919391935],[-153.48190322332235,59.64103427132713],[-153.5536946548655,59.60363432283228],[-153.58959037063707,59.55020582498249],[-153.66138180218022,59.55554867476747],[-153.76906894949497,59.54486297519752],[-153.69727751795182,59.46472022842284],[-153.7331732337234,59.438005979497945],[-153.8408603810381,59.416634580358036],[-153.91265181258126,59.416634580358036],[-153.9844432441244,59.38457748164816],[-154.05623467566758,59.38992033143314],[-154.09213039143916,59.34183468336833],[-154.020338959896,59.3258061340134],[-154.12802610721073,59.29909188508851],[-154.12802610721073,59.26169193659366],[-154.12802610721073,59.20826343874387],[-154.19981753875388,59.14949209110911],[-154.1639218229823,59.101406443044304],[-154.19981753875388,59.06934934433443],[-154.1639218229823,59.01592084648465],[-154.05623467566758,59.07469219411941],[-154.020338959896,59.07469219411941],[-153.8408603810381,59.05332079497949],[-153.80496466526654,59.06934934433443],[-153.69727751795182,59.07469219411941],[-153.62548608640864,59.005235146914686],[-153.5536946548655,58.98386374777478],[-153.48190322332235,58.99454944734473],[-153.41011179177917,58.96783519841984],[-153.33832036023603,58.91974955035503],[-153.30242464446445,58.86632105250525],[-153.33832036023603,58.84494965336533],[-153.41011179177917,58.74343550745074],[-153.5536946548655,58.68466415981598],[-153.58959037063707,58.64192136153615],[-153.66138180218022,58.60986426282628],[-153.91265181258126,58.6045214130413],[-153.94854752835283,58.49232156755675],[-154.05623467566758,58.48697871777178],[-154.05623467566758,58.438893069706964],[-153.9844432441244,58.37477887228722],[-154.09213039143916,58.34272177357735],[-154.1639218229823,58.35875032293229],[-154.1639218229823,58.32135037443744],[-154.09213039143916,58.27860757615761],[-154.12802610721073,58.20915052895289],[-154.23571325452545,58.182436280028],[-154.3434004018402,58.09160783368336],[-154.45108754915492,58.15037918131813],[-154.45108754915492,58.13969348174817],[-154.45108754915492,58.09160783368336],[-154.45108754915492,58.05955073497349],[-154.52287898069807,58.05420788518852],[-154.59467041224124,58.01680793669367],[-154.63056612801282,58.0328364860486],[-154.6664618437844,58.06489358475847],[-154.70235755955596,58.05420788518852],[-154.7741489910991,58.00612223712371],[-154.88183613841386,58.02749363626362],[-154.98952328572858,58.011465086908686],[-155.13310614881487,57.952693739273926],[-155.06131471727173,57.90460809120912],[-155.0972104330433,57.86720814271427],[-155.24079329612962,57.82446534443444],[-155.31258472767277,57.82980819421942],[-155.34848044344434,57.78172254615461],[-155.2766890119012,57.75500829722972],[-155.31258472767277,57.72295119851985],[-155.38437615921595,57.71226549894989],[-155.56385473807381,57.78706539593959],[-155.5997504538454,57.77103684658466],[-155.63564616961696,57.71760834873487],[-155.63564616961696,57.6588370011001],[-155.70743760116014,57.63212275217521],[-155.7433333169317,57.55198000540054],[-155.95870761156118,57.54663715561556],[-156.03049904310433,57.56266570497049],[-156.0663947588759,57.49855150755075],[-156.03049904310433,57.43978015991599],[-156.10229047464748,57.43978015991599],[-156.13818619041905,57.47183725862586],[-156.2099776219622,57.47183725862586],[-156.2099776219622,57.43978015991599],[-156.35356048504852,57.418408760776074],[-156.4971433481348,57.3382660140014],[-156.53303906390641,57.32758031443144],[-156.568934779678,57.29018036593659],[-156.4971433481348,57.27949466636663],[-156.35356048504852,57.3382660140014],[-156.31766476927694,57.295523215721566],[-156.35356048504852,57.24743756765676],[-156.3894562008201,57.24209471787179],[-156.3894562008201,57.21538046894689],[-156.31766476927694,57.18332337023702],[-156.35356048504852,57.15126627152715],[-156.42535191659167,57.12989487238723],[-156.42535191659167,57.08715207410741],[-156.53303906390641,57.04975212561256],[-156.568934779678,57.017695026902686],[-156.568934779678,56.985637928192816],[-156.64072621122114,56.99632362776277],[-156.74841335853586,56.990980777977796],[-156.78430907430743,56.96960937883788],[-156.78430907430743,56.91083803120312],[-156.8561005058506,56.90015233163316],[-156.89199622162218,56.953580829482945],[-156.92789193739375,56.953580829482945],[-156.92789193739375,56.921523730773075],[-156.9996833689369,56.90549518141814],[-157.07147480048005,56.83603813421342],[-157.14326623202322,56.83603813421342],[-157.14326623202322,56.79329533593359],[-157.21505766356637,56.766581087008696],[-157.28684909510952,56.798638185718566],[-157.39453624242424,56.86275238313831],[-157.43043195819584,56.857409533353334],[-157.4663276739674,56.83069528442844],[-157.43043195819584,56.798638185718566],[-157.43043195819584,56.766581087008696],[-157.502223389739,56.76123823722372],[-157.57401482128213,56.702466889588955],[-157.53811910551056,56.675752640664065],[-157.4663276739674,56.670409790879084],[-157.4663276739674,56.62232414281428],[-157.57401482128213,56.62232414281428],[-157.68170196859688,56.611638443244324],[-157.75349340014003,56.675752640664065],[-157.75349340014003,56.68109549044904],[-157.9329719789979,56.65438124152415],[-158.04065912631265,56.59560989388939],[-158.04065912631265,56.57423849474947],[-157.89707626322632,56.59026704410441],[-157.82528483168318,56.55820994539454],[-157.82528483168318,56.515467147114705],[-157.86118054745475,56.483410048404835],[-157.96886769476947,56.515467147114705],[-158.04065912631265,56.51012429732973],[-158.1124505578558,56.520809996899686],[-158.1124505578558,56.462038649264926],[-158.25603342094212,56.4673814990499],[-158.32782485248526,56.483410048404835],[-158.3996162840284,56.456695799479945],[-158.50730343134313,56.38189590249024],[-158.50730343134313,56.3444959539954],[-158.32782485248526,56.32312455485548],[-158.22013770517052,56.29641030593059],[-158.22013770517052,56.269696057005696],[-158.32782485248526,56.232296108510845],[-158.25603342094212,56.210924709370936],[-158.18424198939894,56.237638958295825],[-158.1124505578558,56.232296108510845],[-158.32782485248526,